From 3c2aa9f9301ee5c2d113321a9bf7b65a75ec18cc Mon Sep 17 00:00:00 2001 From: Dariusz Kedzierski Date: Wed, 5 Aug 2020 13:56:50 +0200 Subject: [PATCH 01/49] Added possibility to ignore given fields in json - Response validator can now ignore specified fields in json response when comparing with patters - Example in get_profile in bridge_api --- .../tavern/test_bridge_api_patterns.tavern.yaml | 1 + hivemind/tavern/validate_response.py | 14 +++++++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index 8d737fd4..23534eaa 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -179,6 +179,7 @@ extra_kwargs: method: "get_profile" directory: "bridge_api_patterns" + ignore_tags: ["id"] --- test_name: Hivemind bridge_api.get_trending_topics patterns test diff --git a/hivemind/tavern/validate_response.py b/hivemind/tavern/validate_response.py index 4c69f965..ccae0f67 100644 --- a/hivemind/tavern/validate_response.py +++ b/hivemind/tavern/validate_response.py @@ -32,7 +32,14 @@ def load_pattern(name): ret = load(f) return ret -def compare_response_with_pattern(response, method=None, directory=None): +def remove_tag(data, tags_to_remove): + if not isinstance(data, (dict, list)): + return data + if isinstance(data, list): + return [remove_tag(v, tags_to_remove) for v in data] + return {k: remove_tag(v, tags_to_remove) for k, v in data.items() if k not in tags_to_remove} + +def compare_response_with_pattern(response, method=None, directory=None, ignore_tags=None): """ This method will compare response with pattern file """ import os fname = directory + "/" + method + DIFF_FILE_EXT @@ -43,6 +50,9 @@ def compare_response_with_pattern(response, method=None, directory=None): os.remove(response_fname) response_json = response.json() + if ignore_tags is not None: + assert isinstance(ignore_tags, list), "ingore_tags should be list of tags" + response_json = remove_tag(response_json, ignore_tags) error = response_json.get("error", None) result = response_json.get("result", None) if error is not None: @@ -56,6 +66,8 @@ def compare_response_with_pattern(response, method=None, directory=None): import jsondiff pattern = load_pattern(directory + "/" + method + PATTERN_FILE_EXT) + if ignore_tags is not None: + pattern = remove_tag(pattern, ignore_tags) pattern_resp_diff = jsondiff.diff(pattern, result) if pattern_resp_diff: save_diff(fname, pattern_resp_diff) -- GitLab From dfd353231403e3613f0a5e1bdcbdca7a8d4f42fa Mon Sep 17 00:00:00 2001 From: ABW Date: Thu, 6 Aug 2020 16:10:49 +0200 Subject: [PATCH 02/49] [ABW]: updated comments for tests that started to work a bit better --- hivemind/tavern/test_condenser_api_patterns.tavern.yaml | 8 ++++---- hivemind/tavern/test_follow_api_patterns.tavern.yaml | 2 +- hivemind/tavern/test_tags_api_patterns.tavern.yaml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index f44610dd..ae1f0990 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -91,7 +91,7 @@ marks: - patterntest - failing - - xfail # edited votes wrong, influences net_rshares and/or pending_payout_value; last_payout + - xfail # last_payout includes: - !include common.yaml @@ -153,7 +153,7 @@ marks: - patterntest - failing - - xfail # edited votes wrong, influences net_rshares and/or pending_payout_value; last_payout; created for pow account + - xfail # last_payout; created for pow account includes: - !include common.yaml @@ -457,7 +457,7 @@ marks: - patterntest - failing - - xfail # edited votes wrong, influences net_rshares and/or pending_payout_value; last_payout + - xfail # last_payout includes: - !include common.yaml @@ -546,7 +546,7 @@ marks: - patterntest - failing - - xfail # edited votes wrong, influences net_rshares and/or pending_payout_value; last_payout + - xfail # last_payout includes: - !include common.yaml diff --git a/hivemind/tavern/test_follow_api_patterns.tavern.yaml b/hivemind/tavern/test_follow_api_patterns.tavern.yaml index e63689c1..b7074c90 100644 --- a/hivemind/tavern/test_follow_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_follow_api_patterns.tavern.yaml @@ -120,7 +120,7 @@ marks: - patterntest - failing - - xfail # edited votes wrong, influences net_rshares and/or pending_payout_value; last_payout + - xfail # last_payout includes: - !include common.yaml diff --git a/hivemind/tavern/test_tags_api_patterns.tavern.yaml b/hivemind/tavern/test_tags_api_patterns.tavern.yaml index 33ff05be..be643c67 100644 --- a/hivemind/tavern/test_tags_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_tags_api_patterns.tavern.yaml @@ -4,7 +4,7 @@ marks: - patterntest - failing - - xfail # edited votes wrong, influences net_rshares and/or pending_payout_value; last_payout + - xfail # last_payout includes: - !include common.yaml @@ -248,7 +248,7 @@ marks: - patterntest - failing - - xfail # edited votes wrong, influences net_rshares and/or pending_payout_value; last_payout + - xfail # last_payout includes: - !include common.yaml -- GitLab From 659e4418364b665b78c5e0a9c296c911a4482d34 Mon Sep 17 00:00:00 2001 From: ABW Date: Fri, 7 Aug 2020 17:37:32 +0200 Subject: [PATCH 03/49] [ABW]: Incorrect 1990-01-01 date replaced with 1970-01-01 (min. timestamp meaning unset) Tests that only differed by last_payout now marked as passing Creation time of accounts changed one block earlier to match what old FatNode was giving (unknown discrepancy between FatNode and old HiveMind) --- .../get_comment_discussions_by_payout.pat.json | 2 +- .../get_discussions_by_created.pat.json | 2 +- .../get_post_discussions_by_payout.pat.json | 2 +- .../get_comment_discussions_by_payout.pat.json | 2 +- .../tags_api/get_discussions_by_created.pat.json | 2 +- .../get_comment_discussions_by_payout.pat.json | 2 +- .../get_discussions_by_created.pat.json | 2 +- .../get_discussions_by_promoted.pat.json | 2 +- .../get_post_discussions_by_payout.pat.json | 2 +- .../condenser_api_patterns/get_state.pat.json | 2 +- .../get_comment_discussions_by_payout.pat.json | 2 +- .../get_discussions_by_created.pat.json | 2 +- .../get_discussions_by_promoted.pat.json | 2 +- .../get_post_discussions_by_payout.pat.json | 2 +- .../test_condenser_api_patterns.tavern.yaml | 16 +--------------- .../tavern/test_follow_api_patterns.tavern.yaml | 2 -- .../tavern/test_tags_api_patterns.tavern.yaml | 8 -------- 17 files changed, 15 insertions(+), 39 deletions(-) diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_comment_discussions_by_payout.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_comment_discussions_by_payout.pat.json index ffc62643..129b4406 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_comment_discussions_by_payout.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_comment_discussions_by_payout.pat.json @@ -6,7 +6,7 @@ "beneficiaries": [], "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", "body_length": 122, - "cashout_time": "1990-01-01T00:00:00", + "cashout_time": "1970-01-01T00:00:00", "category": "polska", "children": 0, "created": "2016-08-22T07:44:48", diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_created.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_created.pat.json index 57dc7b8f..74f1fa89 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_created.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_created.pat.json @@ -6,7 +6,7 @@ "beneficiaries": [], "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", "body_length": 652, - "cashout_time": "1990-01-01T00:00:00", + "cashout_time": "1970-01-01T00:00:00", "category": "freedom", "children": 0, "created": "2016-09-15T19:40:21", diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_post_discussions_by_payout.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_post_discussions_by_payout.pat.json index 474d13a6..dfefc602 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_post_discussions_by_payout.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_post_discussions_by_payout.pat.json @@ -13,7 +13,7 @@ "beneficiaries": [], "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", "body_length": 1273, - "cashout_time": "1990-01-01T00:00:00", + "cashout_time": "1970-01-01T00:00:00", "category": "polska", "children": 1, "created": "2016-08-18T21:19:45", diff --git a/hivemind/pyrest_tests/5000000/tags_api/get_comment_discussions_by_payout.pat.json b/hivemind/pyrest_tests/5000000/tags_api/get_comment_discussions_by_payout.pat.json index 81ac47f7..a28555f4 100644 --- a/hivemind/pyrest_tests/5000000/tags_api/get_comment_discussions_by_payout.pat.json +++ b/hivemind/pyrest_tests/5000000/tags_api/get_comment_discussions_by_payout.pat.json @@ -6,7 +6,7 @@ "beneficiaries": [], "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", "body_length": 122, - "cashout_time": "1990-01-01T00:00:00", + "cashout_time": "1970-01-01T00:00:00", "category": "polska", "children": 0, "created": "2016-08-22T07:44:48", diff --git a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_created.pat.json b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_created.pat.json index 474d13a6..dfefc602 100644 --- a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_created.pat.json +++ b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_created.pat.json @@ -13,7 +13,7 @@ "beneficiaries": [], "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", "body_length": 1273, - "cashout_time": "1990-01-01T00:00:00", + "cashout_time": "1970-01-01T00:00:00", "category": "polska", "children": 1, "created": "2016-08-18T21:19:45", diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json index 2d728723..cc8ba597 100644 --- a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json @@ -6,7 +6,7 @@ "beneficiaries": [], "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", "body_length": 122, - "cashout_time": "1990-01-01T00:00:00", + "cashout_time": "1970-01-01T00:00:00", "category": "polska", "children": 0, "created": "2016-08-22T07:44:48", diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json index 10315186..a1874f45 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json @@ -6,7 +6,7 @@ "beneficiaries": [], "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", "body_length": 652, - "cashout_time": "1990-01-01T00:00:00", + "cashout_time": "1970-01-01T00:00:00", "category": "freedom", "children": 0, "created": "2016-09-15T19:40:21", diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json index 4b9918aa..a230ccc4 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json @@ -2563,7 +2563,7 @@ "beneficiaries": [], "body": "https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\n\n# Over the last few weeks I've been thinking about ways we could increase the demand for Steem Power, the quality of curated content and the incentives to participate as a Steem curator.\n\nHere are a couple ideas I have been kicking around. They're not fully mature and could use a good rinsing by the community.\n\n## Allow Steem holders to delegate their Steem Power voting rights to a **voting pool**\n\nA delegated voting pool could socialize voting power and individualize rewards. One prime use for this could be the @steemit account. @steemit could create a voting pool and invite anyone with a verified identity and good reputation to join the pool as a curator. This could increase the number of unique curators, help bootstrap Steem as an identity database and give people even more incentives to sign up.\n\nTo show the numbers, an example would be Alice Bob and Charley each delegate their SP of 2, 3, and 7 to one voting pool. Now they each have 4, 4, and 4 SP to be used to curate. Better curation would earn them more curation rewards. \n\nA side effect of delegated voting pools could be voting markets. Any user would have the power to create a voting pool and these users could charge curators for participation. Some of the platform's whales could be interested in offering subscription models to minnows as a way to get more voting influence.\n\n## If powering down stake loses voting influence\n\nImagine that any stake being powered down would lose its rights to use voting influence. This could make the system very clear in the regard that stake is either in or it is out. Users could be able to choose any % of their stake to power down regardless of how many accounts they have and only the % stake that is powering down would lose voting influence. Stopping a power down could return all voting rights.\n\nPerhaps the effect of this could be 1/ more interest to stay in the platform and 2/ more fluidity in the witness queue 3/ more fairness regarding the PoS nature of Steem 4/ more clarity from participants looking to exit the system\n\n## Combined effect?\nPerhaps these proposals could have a combined effect that increases the demand and fluidity of Steem Power while improving the curated experience for people visiting Steem based websites.\n\n#### What are your thoughts and questions?", "body_length": 2399, - "cashout_time": "2016-09-09T02:14:21", + "cashout_time": "2016-09-09T02:14:24", "category": "steem", "children": 315, "created": "2016-09-07T15:44:51", diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json index d169018d..a722e221 100644 --- a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json @@ -13,7 +13,7 @@ "beneficiaries": [], "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", "body_length": 1273, - "cashout_time": "1990-01-01T00:00:00", + "cashout_time": "1970-01-01T00:00:00", "category": "polska", "children": 1, "created": "2016-08-18T21:19:45", diff --git a/hivemind/tavern/condenser_api_patterns/get_state.pat.json b/hivemind/tavern/condenser_api_patterns/get_state.pat.json index 543f3648..a298d1a1 100644 --- a/hivemind/tavern/condenser_api_patterns/get_state.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_state.pat.json @@ -5,7 +5,7 @@ "steemit/firstpost" ], "comments": [], - "created": "2016-03-24 17:00:24", + "created": "2016-03-24 17:00:21", "feed": [], "json_metadata": "{\"profile\":{\"name\":null,\"about\":null,\"website\":null,\"location\":null,\"cover_image\":\"\",\"profile_image\":\"\"}}", "name": "steemit", diff --git a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.pat.json b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.pat.json index 2d728723..cc8ba597 100644 --- a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.pat.json @@ -6,7 +6,7 @@ "beneficiaries": [], "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", "body_length": 122, - "cashout_time": "1990-01-01T00:00:00", + "cashout_time": "1970-01-01T00:00:00", "category": "polska", "children": 0, "created": "2016-08-22T07:44:48", diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json index d169018d..a722e221 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json @@ -13,7 +13,7 @@ "beneficiaries": [], "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", "body_length": 1273, - "cashout_time": "1990-01-01T00:00:00", + "cashout_time": "1970-01-01T00:00:00", "category": "polska", "children": 1, "created": "2016-08-18T21:19:45", diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json index 4b9918aa..a230ccc4 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json @@ -2563,7 +2563,7 @@ "beneficiaries": [], "body": "https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\n\n# Over the last few weeks I've been thinking about ways we could increase the demand for Steem Power, the quality of curated content and the incentives to participate as a Steem curator.\n\nHere are a couple ideas I have been kicking around. They're not fully mature and could use a good rinsing by the community.\n\n## Allow Steem holders to delegate their Steem Power voting rights to a **voting pool**\n\nA delegated voting pool could socialize voting power and individualize rewards. One prime use for this could be the @steemit account. @steemit could create a voting pool and invite anyone with a verified identity and good reputation to join the pool as a curator. This could increase the number of unique curators, help bootstrap Steem as an identity database and give people even more incentives to sign up.\n\nTo show the numbers, an example would be Alice Bob and Charley each delegate their SP of 2, 3, and 7 to one voting pool. Now they each have 4, 4, and 4 SP to be used to curate. Better curation would earn them more curation rewards. \n\nA side effect of delegated voting pools could be voting markets. Any user would have the power to create a voting pool and these users could charge curators for participation. Some of the platform's whales could be interested in offering subscription models to minnows as a way to get more voting influence.\n\n## If powering down stake loses voting influence\n\nImagine that any stake being powered down would lose its rights to use voting influence. This could make the system very clear in the regard that stake is either in or it is out. Users could be able to choose any % of their stake to power down regardless of how many accounts they have and only the % stake that is powering down would lose voting influence. Stopping a power down could return all voting rights.\n\nPerhaps the effect of this could be 1/ more interest to stay in the platform and 2/ more fluidity in the witness queue 3/ more fairness regarding the PoS nature of Steem 4/ more clarity from participants looking to exit the system\n\n## Combined effect?\nPerhaps these proposals could have a combined effect that increases the demand and fluidity of Steem Power while improving the curated experience for people visiting Steem based websites.\n\n#### What are your thoughts and questions?", "body_length": 2399, - "cashout_time": "2016-09-09T02:14:21", + "cashout_time": "2016-09-09T02:14:24", "category": "steem", "children": 315, "created": "2016-09-07T15:44:51", diff --git a/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json b/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json index d169018d..a722e221 100644 --- a/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json @@ -13,7 +13,7 @@ "beneficiaries": [], "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", "body_length": 1273, - "cashout_time": "1990-01-01T00:00:00", + "cashout_time": "1970-01-01T00:00:00", "category": "polska", "children": 1, "created": "2016-08-18T21:19:45", diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index ae1f0990..01dcd291 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -90,8 +90,6 @@ marks: - patterntest - - failing - - xfail # last_payout includes: - !include common.yaml @@ -121,8 +119,6 @@ marks: - patterntest - - failing - - xfail # last_payout includes: - !include common.yaml @@ -152,8 +148,6 @@ marks: - patterntest - - failing - - xfail # last_payout; created for pow account includes: - !include common.yaml @@ -184,7 +178,7 @@ marks: - patterntest - failing - - xfail # some tags have too many comments/top_posts, influences total_payouts; once that is fixed rest of total_payouts can be slightly different + - xfail # some tags have too many comments/top_posts, influences total_payouts (problem when post is deleted and recreated); once that is fixed rest of total_payouts can be slightly different includes: - !include common.yaml @@ -394,8 +388,6 @@ marks: - patterntest - - failing - - xfail # last_payout includes: - !include common.yaml @@ -425,8 +417,6 @@ marks: - patterntest - - failing - - xfail # last_payout includes: - !include common.yaml @@ -456,8 +446,6 @@ marks: - patterntest - - failing - - xfail # last_payout includes: - !include common.yaml @@ -545,8 +533,6 @@ marks: - patterntest - - failing - - xfail # last_payout includes: - !include common.yaml diff --git a/hivemind/tavern/test_follow_api_patterns.tavern.yaml b/hivemind/tavern/test_follow_api_patterns.tavern.yaml index b7074c90..82eb2095 100644 --- a/hivemind/tavern/test_follow_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_follow_api_patterns.tavern.yaml @@ -119,8 +119,6 @@ marks: - patterntest - - failing - - xfail # last_payout includes: - !include common.yaml diff --git a/hivemind/tavern/test_tags_api_patterns.tavern.yaml b/hivemind/tavern/test_tags_api_patterns.tavern.yaml index be643c67..cb4571b1 100644 --- a/hivemind/tavern/test_tags_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_tags_api_patterns.tavern.yaml @@ -3,8 +3,6 @@ marks: - patterntest - - failing - - xfail # last_payout includes: - !include common.yaml @@ -34,8 +32,6 @@ marks: - patterntest - - failing - - xfail # last_payout includes: - !include common.yaml @@ -216,8 +212,6 @@ marks: - patterntest - - failing - - xfail # last_payout includes: - !include common.yaml @@ -247,8 +241,6 @@ marks: - patterntest - - failing - - xfail # last_payout includes: - !include common.yaml -- GitLab From 0ec5e163c716b59bd7e96442219394f8b40b28dd Mon Sep 17 00:00:00 2001 From: Pawel Maniora Date: Wed, 5 Aug 2020 15:02:39 +0200 Subject: [PATCH 04/49] condenser_api: get_account_votes and get_accounts tests --- .../get_accounts.pat.json | 1 - .../get_accounts.pat.json | 107 ++++++ .../get_multiple_accounts.pat.json | 329 ++++++++++++++++++ .../test_condenser_api_patterns.tavern.yaml | 26 +- ...condenser_api_patterns_fatnode.tavern.yaml | 56 +++ hivemind/tavern/validate_response.py | 6 + 6 files changed, 511 insertions(+), 14 deletions(-) delete mode 100644 hivemind/tavern/condenser_api_patterns/get_accounts.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns_fatnode/get_accounts.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns_fatnode/get_multiple_accounts.pat.json create mode 100644 hivemind/tavern/test_condenser_api_patterns_fatnode.tavern.yaml diff --git a/hivemind/tavern/condenser_api_patterns/get_accounts.pat.json b/hivemind/tavern/condenser_api_patterns/get_accounts.pat.json deleted file mode 100644 index ec747fa4..00000000 --- a/hivemind/tavern/condenser_api_patterns/get_accounts.pat.json +++ /dev/null @@ -1 +0,0 @@ -null \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns_fatnode/get_accounts.pat.json b/hivemind/tavern/condenser_api_patterns_fatnode/get_accounts.pat.json new file mode 100644 index 00000000..032ac908 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns_fatnode/get_accounts.pat.json @@ -0,0 +1,107 @@ +[ + { + "id": 28, + "name": "steemit", + "owner": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ] + }, + "active": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + 1 + ] + ] + }, + "posting": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + 1 + ] + ] + }, + "memo_key": "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + "json_metadata": "", + "posting_json_metadata": "", + "proxy": "", + "last_owner_update": "2016-07-15T13:56:18", + "last_account_update": "2016-07-15T13:56:18", + "created": "2016-03-24T17:00:21", + "mined": true, + "recovery_account": "steem", + "last_account_recovery": "1970-01-01T00:00:00", + "reset_account": "null", + "comment_count": 0, + "lifetime_vote_count": 0, + "post_count": 1, + "can_vote": true, + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838821 + }, + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838821 + }, + "voting_power": 10000, + "balance": "4778859.891 HIVE", + "savings_balance": "0.000 HIVE", + "sbd_balance": "70337.438 HBD", + "sbd_seconds": "8923940509188", + "sbd_seconds_last_update": "2016-09-14T11:25:21", + "sbd_last_interest_payment": "2016-09-12T19:16:48", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "vesting_shares": "225671901920.188893 VESTS", + "delegated_vesting_shares": "0.000000 VESTS", + "received_vesting_shares": "0.000000 VESTS", + "vesting_withdraw_rate": "2479910908.999260 VESTS", + "next_vesting_withdrawal": "2016-09-19T00:37:21", + "withdrawn": "32238841816990380", + "to_withdraw": "257910734535923078", + "withdraw_routes": 0, + "curation_rewards": 0, + "posting_rewards": 3548, + "proxied_vsf_votes": [ + "23077504682", + 0, + 0, + 0 + ], + "witnesses_voted_for": 0, + "last_post": "2016-03-30T18:30:18", + "last_root_post": "2016-03-30T18:30:18", + "last_vote_time": "1970-01-01T00:00:00", + "post_bandwidth": 0, + "pending_claimed_accounts": 0, + "vesting_balance": "0.000 HIVE", + "reputation": "12944616889", + "transfer_history": [], + "market_history": [], + "post_history": [], + "vote_history": [], + "other_history": [], + "witness_votes": [], + "tags_usage": [], + "guest_bloggers": [] + } + ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns_fatnode/get_multiple_accounts.pat.json b/hivemind/tavern/condenser_api_patterns_fatnode/get_multiple_accounts.pat.json new file mode 100644 index 00000000..843c3add --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns_fatnode/get_multiple_accounts.pat.json @@ -0,0 +1,329 @@ +[ + { + "id": 28, + "name": "steemit", + "owner": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ] + }, + "active": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + 1 + ] + ] + }, + "posting": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + 1 + ] + ] + }, + "memo_key": "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + "json_metadata": "", + "posting_json_metadata": "", + "proxy": "", + "last_owner_update": "2016-07-15T13:56:18", + "last_account_update": "2016-07-15T13:56:18", + "created": "2016-03-24T17:00:21", + "mined": true, + "recovery_account": "steem", + "last_account_recovery": "1970-01-01T00:00:00", + "reset_account": "null", + "comment_count": 0, + "lifetime_vote_count": 0, + "post_count": 1, + "can_vote": true, + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838821 + }, + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838821 + }, + "voting_power": 10000, + "balance": "4778859.891 HIVE", + "savings_balance": "0.000 HIVE", + "sbd_balance": "70337.438 HBD", + "sbd_seconds": "8923940509188", + "sbd_seconds_last_update": "2016-09-14T11:25:21", + "sbd_last_interest_payment": "2016-09-12T19:16:48", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "vesting_shares": "225671901920.188893 VESTS", + "delegated_vesting_shares": "0.000000 VESTS", + "received_vesting_shares": "0.000000 VESTS", + "vesting_withdraw_rate": "2479910908.999260 VESTS", + "next_vesting_withdrawal": "2016-09-19T00:37:21", + "withdrawn": "32238841816990380", + "to_withdraw": "257910734535923078", + "withdraw_routes": 0, + "curation_rewards": 0, + "posting_rewards": 3548, + "proxied_vsf_votes": [ + "23077504682", + 0, + 0, + 0 + ], + "witnesses_voted_for": 0, + "last_post": "2016-03-30T18:30:18", + "last_root_post": "2016-03-30T18:30:18", + "last_vote_time": "1970-01-01T00:00:00", + "post_bandwidth": 0, + "pending_claimed_accounts": 0, + "vesting_balance": "0.000 HIVE", + "reputation": "12944616889", + "transfer_history": [], + "market_history": [], + "post_history": [], + "vote_history": [], + "other_history": [], + "witness_votes": [], + "tags_usage": [], + "guest_bloggers": [] + }, + { + "id": 17540, + "name": "biophil", + "owner": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM5mkaXCu5DT6XsaST1XFyyF842K54GxUAMUVm9wcm7HerBesz3i", + 1 + ] + ] + }, + "active": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM5hB5S4MFqdEnBURe7L62HzL6FWnvy9Pb1R1UcPwCuGnUsfKzFc", + 1 + ] + ] + }, + "posting": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM52yaFZPJQMx5wWRZCYgHd69hEE4rkqx7qpq45NyY4Za6w3Jong", + 1 + ] + ] + }, + "memo_key": "STM5zmYzafDpVkx7FCrxDAMLVqjyKX2ykDNUmtwDLvLtExXWvkovp", + "json_metadata": "", + "posting_json_metadata": "", + "proxy": "", + "last_owner_update": "2016-07-15T05:11:21", + "last_account_update": "2016-07-15T05:11:21", + "created": "2016-07-12T14:47:00", + "mined": false, + "recovery_account": "steem", + "last_account_recovery": "1970-01-01T00:00:00", + "reset_account": "null", + "comment_count": 0, + "lifetime_vote_count": 0, + "post_count": 752, + "can_vote": true, + "voting_manabar": { + "current_mana": 9475, + "last_update_time": 1473955245 + }, + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1468334820 + }, + "voting_power": 9475, + "balance": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "sbd_balance": "902.828 HBD", + "sbd_seconds": "131701413987", + "sbd_seconds_last_update": "2016-09-15T19:28:54", + "sbd_last_interest_payment": "2016-09-13T12:08:48", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "vesting_shares": "8128612.587095 VESTS", + "delegated_vesting_shares": "0.000000 VESTS", + "received_vesting_shares": "0.000000 VESTS", + "vesting_withdraw_rate": "0.000000 VESTS", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "withdrawn": 0, + "to_withdraw": 0, + "withdraw_routes": 0, + "curation_rewards": 20394, + "posting_rewards": 3729894, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "witnesses_voted_for": 11, + "last_post": "2016-09-15T15:07:18", + "last_root_post": "2016-09-14T16:30:24", + "last_vote_time": "2016-09-15T16:00:45", + "post_bandwidth": 12171, + "pending_claimed_accounts": 0, + "vesting_balance": "0.000 HIVE", + "reputation": "10077167197115", + "transfer_history": [], + "market_history": [], + "post_history": [], + "vote_history": [], + "other_history": [], + "witness_votes": [ + "abit", + "anyx", + "blocktrades", + "boatymcboatface", + "delegate.lafona", + "jesta", + "pharesim", + "roadscape", + "smooth.witness", + "steemed", + "steve-walschot" + ], + "tags_usage": [], + "guest_bloggers": [] + }, + { + "id": 6566, + "name": "test", + "owner": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM6L7mdcoi371ddt2z5hDfRCHXjcLRBz3H8GYKWBgo5T8kiaqWKy", + 1 + ] + ] + }, + "active": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM7iT2pWdfDqjX12hhQbjKveALEuWPss1wvrKVWDgm6Ud2ZTjoE4", + 1 + ] + ] + }, + "posting": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM5PnVARAgGPTf5PqRnumGUyMJCfV9ti93z72Kct2dAucfLgaMxC", + 1 + ] + ] + }, + "memo_key": "STM7dz2kPEpL5B3AajPFnb3M3uJwiQ4sdzz6hTgwD8RRm7keT5Bwm", + "json_metadata": "", + "posting_json_metadata": "", + "proxy": "", + "last_owner_update": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "created": "2016-04-28T14:35:57", + "mined": false, + "recovery_account": "steem", + "last_account_recovery": "1970-01-01T00:00:00", + "reset_account": "null", + "comment_count": 0, + "lifetime_vote_count": 0, + "post_count": 0, + "can_vote": true, + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1461854157 + }, + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1461854157 + }, + "voting_power": 10000, + "balance": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "sbd_balance": "0.001 HBD", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:59:45", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "vesting_shares": "146273.695970 VESTS", + "delegated_vesting_shares": "0.000000 VESTS", + "received_vesting_shares": "0.000000 VESTS", + "vesting_withdraw_rate": "0.000000 VESTS", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "withdrawn": 0, + "to_withdraw": 0, + "withdraw_routes": 0, + "curation_rewards": 0, + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "witnesses_voted_for": 0, + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "post_bandwidth": 0, + "pending_claimed_accounts": 0, + "vesting_balance": "0.000 HIVE", + "reputation": 0, + "transfer_history": [], + "market_history": [], + "post_history": [], + "vote_history": [], + "other_history": [], + "witness_votes": [], + "tags_usage": [], + "guest_bloggers": [] + } +] \ No newline at end of file diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index 01dcd291..e9897835 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -645,16 +645,18 @@ directory: "condenser_api_patterns" --- - test_name: Hivemind condenser_api.get_accounts patterns test + test_name: Hivemind condenser_api.get_active_votes patterns test marks: - patterntest + - failing + - xfail # percent/time wrong for vote with rshares=0 (possibly same problem as in edited votes) includes: - !include common.yaml stages: - - name: get_accounts + - name: get_active_votes request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -663,18 +665,17 @@ json: jsonrpc: "2.0" id: 1 - method: "condenser_api.get_accounts" - params: ["steemit"] + method: "condenser_api.get_active_votes" + params: ["biophil","test"] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_accounts" + method: "get_active_votes" directory: "condenser_api_patterns" - --- - test_name: Hivemind condenser_api.get_active_votes patterns test + test_name: Hivemind deprecated condenser_api.get_account_votes marks: - patterntest @@ -683,7 +684,7 @@ - !include common.yaml stages: - - name: get_active_votes + - name: get_account_votes request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -692,12 +693,11 @@ json: jsonrpc: "2.0" id: 1 - method: "condenser_api.get_active_votes" - params: ["biophil","test"] + method: "condenser_api.get_account_votes" + params: ["steemit"] response: status_code: 200 verify_response_with: - function: validate_response:compare_response_with_pattern + function: validate_response:compare_error_data extra_kwargs: - method: "get_active_votes" - directory: "condenser_api_patterns" \ No newline at end of file + data: "ApiError: get_account_votes is no longer supported, for details see https://steemit.com/steemit/@steemitdev/additional-public-api-change" \ No newline at end of file diff --git a/hivemind/tavern/test_condenser_api_patterns_fatnode.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns_fatnode.tavern.yaml new file mode 100644 index 00000000..58f41f41 --- /dev/null +++ b/hivemind/tavern/test_condenser_api_patterns_fatnode.tavern.yaml @@ -0,0 +1,56 @@ +--- + test_name: Hivemind condenser_api.get_accounts with single account patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_accounts" + params: [["steemit"]] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_accounts" + directory: "condenser_api_patterns_fatnode" +--- + test_name: Hivemind condenser_api.get_accounts with multiple accounts patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_multiple_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_accounts" + params: [["steemit","biophil","test"]] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_multiple_accounts" + directory: "condenser_api_patterns_fatnode" \ No newline at end of file diff --git a/hivemind/tavern/validate_response.py b/hivemind/tavern/validate_response.py index ccae0f67..08f093bd 100644 --- a/hivemind/tavern/validate_response.py +++ b/hivemind/tavern/validate_response.py @@ -74,3 +74,9 @@ def compare_response_with_pattern(response, method=None, directory=None, ignore_ save_response(response_fname, result) msg = "Differences detected between response and pattern. Diff saved to {}\n\nDiff:\n{}".format(fname, pattern_resp_diff) raise PatternDiffException(msg) + +def compare_error_data(response, data): + response_json = response.json() + error = response_json.get("error", None) + if error['data'] != data: + raise PatternDiffException('error data not equal, expected: "' + data + '" given: "' + error['data'] + '"') \ No newline at end of file -- GitLab From f6d7255f88b6abe790075b41fb6f4de7af1a6e01 Mon Sep 17 00:00:00 2001 From: Pawel Maniora Date: Mon, 10 Aug 2020 14:09:29 +0200 Subject: [PATCH 05/49] MR fixes --- .../get_account_reputations.pat.json | 14 ++- .../get_accounts.pat.json | 0 .../get_multiple_accounts.pat.json | 0 .../get_multiple_blog_entries.pat.json | 9 ++ .../get_non_existing_accounts.pat.json | 1 + .../test_condenser_api_patterns.tavern.yaml | 89 ++++++++++++++++++- ...condenser_api_patterns_fatnode.tavern.yaml | 56 ------------ 7 files changed, 104 insertions(+), 65 deletions(-) rename hivemind/tavern/{condenser_api_patterns_fatnode => condenser_api_patterns}/get_accounts.pat.json (100%) rename hivemind/tavern/{condenser_api_patterns_fatnode => condenser_api_patterns}/get_multiple_accounts.pat.json (100%) create mode 100644 hivemind/tavern/condenser_api_patterns/get_multiple_blog_entries.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_non_existing_accounts.pat.json delete mode 100644 hivemind/tavern/test_condenser_api_patterns_fatnode.tavern.yaml diff --git a/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json b/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json index 2109895a..8c8acae2 100644 --- a/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json @@ -1,8 +1,6 @@ -{ - "reputations": [ - { - "name": "steemit", - "reputation": 0 - } - ] -} \ No newline at end of file +[ + { + "account": "steemit", + "reputation": "12944616889" + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns_fatnode/get_accounts.pat.json b/hivemind/tavern/condenser_api_patterns/get_accounts.pat.json similarity index 100% rename from hivemind/tavern/condenser_api_patterns_fatnode/get_accounts.pat.json rename to hivemind/tavern/condenser_api_patterns/get_accounts.pat.json diff --git a/hivemind/tavern/condenser_api_patterns_fatnode/get_multiple_accounts.pat.json b/hivemind/tavern/condenser_api_patterns/get_multiple_accounts.pat.json similarity index 100% rename from hivemind/tavern/condenser_api_patterns_fatnode/get_multiple_accounts.pat.json rename to hivemind/tavern/condenser_api_patterns/get_multiple_accounts.pat.json diff --git a/hivemind/tavern/condenser_api_patterns/get_multiple_blog_entries.pat.json b/hivemind/tavern/condenser_api_patterns/get_multiple_blog_entries.pat.json new file mode 100644 index 00000000..c4ed5060 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_multiple_blog_entries.pat.json @@ -0,0 +1,9 @@ +[ + { + "author": "steemit", + "blog": "steemit", + "entry_id": 0, + "permlink": "firstpost", + "reblogged_on": "1970-01-01T00:00:00" + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_non_existing_accounts.pat.json b/hivemind/tavern/condenser_api_patterns/get_non_existing_accounts.pat.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_non_existing_accounts.pat.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index e9897835..72f3cf38 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -587,6 +587,7 @@ directory: "condenser_api_patterns" --- + #should return reputation based on fat node, now is 0 test_name: Hivemind condenser_api.get_account_reputations patterns test marks: @@ -700,4 +701,90 @@ verify_response_with: function: validate_response:compare_error_data extra_kwargs: - data: "ApiError: get_account_votes is no longer supported, for details see https://steemit.com/steemit/@steemitdev/additional-public-api-change" \ No newline at end of file + data: "ApiError: get_account_votes is no longer supported, for details see https://steemit.com/steemit/@steemitdev/additional-public-api-change" + +--- + # get_accounts should be based on fat node - posting_rewards and reputations are 0 on AH node + test_name: Hivemind condenser_api.get_accounts with single account patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_accounts" + params: [["steemit"]] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_accounts" + directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_accounts with multiple accounts patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_accounts with multiple accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_accounts" + params: [["steemit","biophil","test"]] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_multiple_accounts" + directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_accounts with non existing account patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_accounts with non existing account + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_accounts" + params: [["nalesnik"]] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_non_existing_accounts" + directory: "condenser_api_patterns" diff --git a/hivemind/tavern/test_condenser_api_patterns_fatnode.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns_fatnode.tavern.yaml deleted file mode 100644 index 58f41f41..00000000 --- a/hivemind/tavern/test_condenser_api_patterns_fatnode.tavern.yaml +++ /dev/null @@ -1,56 +0,0 @@ ---- - test_name: Hivemind condenser_api.get_accounts with single account patterns test - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_accounts - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "condenser_api.get_accounts" - params: [["steemit"]] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_accounts" - directory: "condenser_api_patterns_fatnode" ---- - test_name: Hivemind condenser_api.get_accounts with multiple accounts patterns test - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_multiple_accounts - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "condenser_api.get_accounts" - params: [["steemit","biophil","test"]] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_multiple_accounts" - directory: "condenser_api_patterns_fatnode" \ No newline at end of file -- GitLab From a19e33cfea68b8684362b5e9d16bed0b82485285 Mon Sep 17 00:00:00 2001 From: ABW Date: Mon, 10 Aug 2020 20:36:35 +0200 Subject: [PATCH 06/49] [ABW]: patterns changed as old ones seemed to come from fully synced node - new ones are from 5mln blocks some tests changed to give nonempty results fixed rebranding and accepted slight differences in pending payouts (expected) one pattern broken manually - needs to be investigated because it did not make the test to fail! indentation in patterns changed to 2 spaces added comments on why tests are failing --- .../account_notifications.pat.json | 163 +- .../get_account_posts.pat.json | 2748 +- .../get_discussion.pat.json | 26670 +-------- .../get_payout_stats.pat.json | 14 +- .../bridge_api_patterns/get_post.pat.json | 2744 +- .../bridge_api_patterns/get_profile.pat.json | 44 +- .../get_ranked_posts.pat.json | 46428 ++++++++-------- .../get_trending_topics.pat.json | 56 +- .../list_communities.pat.json | 35 +- .../post_notifications.pat.json | 11 +- .../unread_notifications.pat.json | 2 +- .../test_bridge_api_patterns.tavern.yaml | 28 +- 12 files changed, 27310 insertions(+), 51633 deletions(-) diff --git a/hivemind/tavern/bridge_api_patterns/account_notifications.pat.json b/hivemind/tavern/bridge_api_patterns/account_notifications.pat.json index 0637a088..eb352dcf 100644 --- a/hivemind/tavern/bridge_api_patterns/account_notifications.pat.json +++ b/hivemind/tavern/bridge_api_patterns/account_notifications.pat.json @@ -1 +1,162 @@ -[] \ No newline at end of file +[ + { + "date": "2016-09-15T17:51:15", + "id": 774644, + "msg": "@steempowerwhale mentioned you", + "score": 20, + "type": "mention", + "url": "@steempowerwhale/for-steemit-authors-how-likely-do-posts-receive-a-reward-on-steemit-look-at-the-stats" + }, + { + "date": "2016-09-14T21:33:36", + "id": 768637, + "msg": "@twitterbot mentioned you", + "score": 20, + "type": "mention", + "url": "@twitterbot/re-app-store-accepts-steemit-20160914t213336" + }, + { + "date": "2016-09-14T07:27:48", + "id": 764393, + "msg": "@felixxx mentioned you", + "score": 20, + "type": "mention", + "url": "@felixxx/re-miserableoracle-re-felixxx-re-miserableoracle-re-l0k1-the-power-down-delay-ned-and-dan-you-got-us-hooked-we-can-t-jump-out-what-s-happening-20160914t072747788z" + }, + { + "date": "2016-09-14T06:57:00", + "id": 764287, + "msg": "@svamiva mentioned you", + "score": 20, + "type": "mention", + "url": "@svamiva/re-smolalit-re-antizvuk-re-svamiva-re-smolalit-re-svamiva-nemnogo-soli-na-ranu-20160914t065520261z" + }, + { + "date": "2016-09-14T05:53:51", + "id": 764091, + "msg": "@karenb54 mentioned you", + "score": 20, + "type": "mention", + "url": "@karenb54/mobile-covers-for-all-ranks" + }, + { + "date": "2016-09-13T21:43:03", + "id": 761577, + "msg": "@biophil mentioned you", + "score": 20, + "type": "mention", + "url": "@biophil/it-would-be-neat-to-know-why-steemit-starts-pushing-the-market-around-when-it-does" + }, + { + "date": "2016-09-13T14:04:21", + "id": 758509, + "msg": "@steemitguide mentioned you", + "score": 16, + "type": "mention", + "url": "@steemitguide/steemit-s-top-10-forbes-list-edition-1-13th-september-2016" + }, + { + "date": "2016-09-13T12:23:27", + "id": 757914, + "msg": "@twitterbot mentioned you", + "score": 18, + "type": "mention", + "url": "@twitterbot/re-appstore-whitelists-steem-now-waiting-for-bithshares-people-20160913t122326" + }, + { + "date": "2016-09-13T09:58:18", + "id": 757348, + "msg": "@poseidon mentioned you", + "score": 16, + "type": "mention", + "url": "@poseidon/re-venuspcs-why-hardfork-14-will-reduce-daily-votes-from-40-to-5-my-opinion-which-i-haven-t-seen-anyone-else-state-20160913t095819591z" + }, + { + "date": "2016-09-13T01:58:21", + "id": 755117, + "msg": "@leesunmoo mentioned you", + "score": 20, + "type": "mention", + "url": "@leesunmoo/leesunmoo-3" + }, + { + "date": "2016-09-13T00:20:09", + "id": 754744, + "msg": "@buckland mentioned you", + "score": 20, + "type": "mention", + "url": "@buckland/re-abol-r-i-p-all-innocent-victims-on-septembre-11-20160913t002010694z" + }, + { + "date": "2016-09-12T23:29:06", + "id": 754456, + "msg": "@buckland mentioned you", + "score": 20, + "type": "mention", + "url": "@buckland/re-abol-re-buckland-this-was-the-so-called-nano-thermite-that-was-found-everywhere-people-need-the-truth-but-can-they-swallow-it-20160912t232044338z" + }, + { + "date": "2016-09-12T08:49:06", + "id": 749213, + "msg": "@peterz mentioned you", + "score": 20, + "type": "mention", + "url": "@peterz/re-aleco-zakon-cipfa-rabotaet-li-on-v-steemit-20160912t084906549z" + }, + { + "date": "2016-09-11T23:36:00", + "id": 746929, + "msg": "@marco-delsalto mentioned you", + "score": 20, + "type": "mention", + "url": "@marco-delsalto/its-1994-again-on-the-internet-again-love-it" + }, + { + "date": "2016-09-11T18:04:48", + "id": 743544, + "msg": "@richman mentioned you", + "score": 18, + "type": "mention", + "url": "@richman/one-man-s-war-the-incredible-story-of-lieutenant-hiroo-onoda-featuring-andrewawerdna-as-author" + }, + { + "date": "2016-09-12T01:29:39", + "id": 743086, + "msg": "@fat-like-buddha mentioned you", + "score": 20, + "type": "mention", + "url": "@fat-like-buddha/a-letter-to-my-sons-preparing-for-lifes-journey" + }, + { + "date": "2016-09-11T15:44:39", + "id": 742615, + "msg": "@hisnameisolllie mentioned you", + "score": 16, + "type": "mention", + "url": "@hisnameisolllie/steemit-statistics-week-7" + }, + { + "date": "2016-09-09T10:47:09", + "id": 722895, + "msg": "@spartanza mentioned you", + "score": 18, + "type": "mention", + "url": "@spartanza/9-11-suspects-series-by-corbettreport-part-1" + }, + { + "date": "2016-09-08T21:09:06", + "id": 719048, + "msg": "@williamdevine mentioned you", + "score": 20, + "type": "mention", + "url": "@williamdevine/re-rawni-say-hello-to-the-newbie-20160908t210910852z" + }, + { + "date": "2016-09-08T09:13:30", + "id": 714599, + "msg": "@svamiva mentioned you", + "score": 20, + "type": "mention", + "url": "@svamiva/re-james-show-market-based-curation-pools-to-increasing-curation-demand-for-steem-power-20160908t091328200z" + } +] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts.pat.json b/hivemind/tavern/bridge_api_patterns/get_account_posts.pat.json index a624c721..4dcb760d 100644 --- a/hivemind/tavern/bridge_api_patterns/get_account_posts.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts.pat.json @@ -1,2310 +1,442 @@ [ - { - "active_votes": [ - { - "rshares": "375241", - "voter": "dantheman" - }, - { - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "rshares": "5100", - "voter": "steemit78" - }, - { - "rshares": "1259167", - "voter": "anonymous" - }, - { - "rshares": "318519", - "voter": "hello" - }, - { - "rshares": "153384", - "voter": "world" - }, - { - "rshares": "-936400", - "voter": "ned" - }, - { - "rshares": "59412", - "voter": "fufubar1" - }, - { - "rshares": "14997", - "voter": "anonymous1" - }, - { - "rshares": "1441", - "voter": "red" - }, - { - "rshares": "551390835500", - "voter": "liondani" - }, - { - "rshares": "82748", - "voter": "roadscape" - }, - { - "rshares": "10772", - "voter": "xeroc" - }, - { - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "rshares": "498863058", - "voter": "joelinux" - }, - { - "rshares": "9590417", - "voter": "piranhax" - }, - { - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "rshares": "425903066", - "voter": "gekko" - }, - { - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "rshares": "422984262", - "voter": "acidyo" - }, - { - "rshares": "47179379651", - "voter": "tosch" - }, - { - "rshares": "7831667988", - "voter": "klye" - }, - { - "rshares": "1019950749", - "voter": "coar" - }, - { - "rshares": "1746058458", - "voter": "murh" - }, - { - "rshares": "0", - "voter": "ashe-oro" - }, - { - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "rshares": "0", - "voter": "hien-tran" - }, - { - "rshares": "0", - "voter": "noganoo" - }, - { - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "rshares": "40624969", - "voter": "ben99" - }, - { - "rshares": "0", - "voter": "tskeene" - }, - { - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "rshares": "0", - "voter": "roelandp" - }, - { - "rshares": "0", - "voter": "stealthtrader" - }, - { - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "rshares": "0", - "voter": "picokernel" - }, - { - "rshares": "0", - "voter": "ausbitbank" - }, - { - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "rshares": "0", - "voter": "sebastien" - }, - { - "rshares": "917398502", - "voter": "decrypt" - }, - { - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "rshares": "1037079223", - "voter": "condra" - }, - { - "rshares": "233032838", - "voter": "jearson" - }, - { - "rshares": "240809500", - "voter": "tritium" - }, - { - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "rshares": "226074637", - "voter": "artjedi" - }, - { - "rshares": "931542394", - "voter": "anduweb" - }, - { - "rshares": "2292983350", - "voter": "inertia" - }, - { - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "rshares": "266262926", - "voter": "desmonid" - }, - { - "rshares": "71498008", - "voter": "madhatting" - }, - { - "rshares": "23726644841", - "voter": "ubg" - }, - { - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "rshares": "131577259", - "voter": "gribgo" - }, - { - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "rshares": "28907874049", - "voter": "orm" - }, - { - "rshares": "528988007", - "voter": "qonq99" - }, - { - "rshares": "129537329", - "voter": "rd7783" - }, - { - "rshares": "615020728", - "voter": "slava" - }, - { - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "rshares": "0", - "voter": "social" - }, - { - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "rshares": "95219365", - "voter": "curator" - }, - { - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "rshares": "0", - "voter": "solos" - }, - { - "rshares": "0", - "voter": "alvintang" - }, - { - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "rshares": "0", - "voter": "blysards" - }, - { - "rshares": "0", - "voter": "nick.kharchenko" - }, - { - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "rshares": "1279854", - "voter": "nigmat" - }, - { - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "rshares": "10847083143", - "voter": "metrox" - }, - { - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "rshares": "710989138", - "voter": "romancs" - }, - { - "rshares": "59366614", - "voter": "luke490" - }, - { - "rshares": "58762473", - "voter": "bro66" - }, - { - "rshares": "201822591", - "voter": "future24" - }, - { - "rshares": "58623688", - "voter": "mythras" - }, - { - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "rshares": "0", - "voter": "matrixdweller" - }, - { - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "rshares": "54761612", - "voter": "edbriv" - }, - { - "rshares": "0", - "voter": "anarchyhasnogods" - }, - { - "rshares": "865125771", - "voter": "rittr" - }, - { - "rshares": "0", - "voter": "tumutanzi" - }, - { - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "rshares": "52740989", - "voter": "tcstix" - }, - { - "rshares": "49467477", - "voter": "friedwater" - }, - { - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "rshares": "0", - "voter": "gbonikz" - }, - { - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "rshares": "0", - "voter": "darkflame" - }, - { - "rshares": "0", - "voter": "sneak" - }, - { - "rshares": "0", - "voter": "jacobcards" - }, - { - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "rshares": "0", - "voter": "shieha" - }, - { - "rshares": "54017869", - "voter": "zelious" - }, - { - "rshares": "0", - "voter": "allyouneedtoknow" - }, - { - "rshares": "0", - "voter": "justyy" - }, - { - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "rshares": "53196086", - "voter": "f1111111" - }, - { - "rshares": "0", - "voter": "anomaly" - }, - { - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "rshares": "0", - "voter": "buckland" - }, - { - "rshares": "0", - "voter": "guest123" - }, - { - "rshares": "0", - "voter": "syahhiran" - }, - { - "rshares": "0", - "voter": "rarcntv" - }, - { - "rshares": "0", - "voter": "nataleeoliver" - }, - { - "rshares": "0", - "voter": "goldmatters" - }, - { - "rshares": "0", - "voter": "gamer00" - }, - { - "rshares": "0", - "voter": "curiesea" - }, - { - "rshares": "0", - "voter": "missmarzipan" - }, - { - "rshares": "0", - "voter": "thejohalfiles" - }, - { - "rshares": "0", - "voter": "steemwart" - }, - { - "rshares": "0", - "voter": "mapesa" - }, - { - "rshares": "0", - "voter": "max-max" - }, - { - "rshares": "0", - "voter": "joshuaatiemo" - }, - { - "rshares": "0", - "voter": "jumaidafajar" - }, - { - "rshares": "0", - "voter": "leolina1" - }, - { - "rshares": "0", - "voter": "rebatesteem" - }, - { - "rshares": "0", - "voter": "aidancloquell" - }, - { - "rshares": "0", - "voter": "rm802" - }, - { - "rshares": "0", - "voter": "krasotka" - }, - { - "rshares": "0", - "voter": "alamyrjunior" - }, - { - "rshares": "0", - "voter": "networker5" - }, - { - "rshares": "0", - "voter": "evdoggformayor" - }, - { - "rshares": "0", - "voter": "askari" - }, - { - "rshares": "0", - "voter": "blockrush" - }, - { - "rshares": "0", - "voter": "barvon" - }, - { - "rshares": "0", - "voter": "fajarsdq" - }, - { - "rshares": "0", - "voter": "juandemarte" - }, - { - "rshares": "0", - "voter": "lazarescu.irinel" - }, - { - "rshares": "0", - "voter": "thedeplorable1" - }, - { - "rshares": "0", - "voter": "kalemandra" - }, - { - "rshares": "0", - "voter": "ades" - }, - { - "rshares": "0", - "voter": "rizkiavonna" - }, - { - "rshares": "0", - "voter": "tohamy7" - }, - { - "rshares": "0", - "voter": "justinashby" - }, - { - "rshares": "0", - "voter": "thereikiforest" - }, - { - "rshares": "0", - "voter": "serendipitie" - }, - { - "rshares": "0", - "voter": "anwarabdullah" - }, - { - "rshares": "0", - "voter": "rocketbeee" - }, - { - "rshares": "0", - "voter": "ackza" - }, - { - "rshares": "0", - "voter": "nilim" - }, - { - "rshares": "0", - "voter": "renatrazumov" - }, - { - "rshares": "0", - "voter": "jelkasmi" - }, - { - "rshares": "0", - "voter": "dimitrya123" - }, - { - "rshares": "0", - "voter": "crawfish37" - }, - { - "rshares": "0", - "voter": "laodr" - }, - { - "rshares": "0", - "voter": "lkisaid" - }, - { - "rshares": "0", - "voter": "mikev" - }, - { - "rshares": "0", - "voter": "hakan0356" - }, - { - "rshares": "0", - "voter": "tasartcraft" - }, - { - "rshares": "0", - "voter": "urmokas" - }, - { - "rshares": "0", - "voter": "michael-fagundes" - }, - { - "rshares": "0", - "voter": "kalamur" - }, - { - "rshares": "0", - "voter": "abhinavsharma" - }, - { - "rshares": "0", - "voter": "contentguy" - }, - { - "rshares": "0", - "voter": "globocop" - }, - { - "rshares": "0", - "voter": "hafizul" - }, - { - "rshares": "0", - "voter": "hothelp1by1" - }, - { - "rshares": "0", - "voter": "vannfrik" - }, - { - "rshares": "0", - "voter": "manuel78" - }, - { - "rshares": "0", - "voter": "brado" - }, - { - "rshares": "0", - "voter": "strateg" - }, - { - "rshares": "0", - "voter": "quinsmacqueen" - }, - { - "rshares": "0", - "voter": "brucebrownftw" - }, - { - "rshares": "0", - "voter": "mrstaf" - }, - { - "rshares": "0", - "voter": "avvah" - }, - { - "rshares": "0", - "voter": "stackin" - }, - { - "rshares": "0", - "voter": "laloelectrix" - }, - { - "rshares": "0", - "voter": "heejaekim" - }, - { - "rshares": "0", - "voter": "thethreehugs" - }, - { - "rshares": "0", - "voter": "otitrader" - }, - { - "rshares": "0", - "voter": "clixmoney" - }, - { - "rshares": "0", - "voter": "tryword" - }, - { - "rshares": "0", - "voter": "dioneaguiar" - }, - { - "rshares": "0", - "voter": "yann.moalic" - }, - { - "rshares": "0", - "voter": "shaunf" - }, - { - "rshares": "0", - "voter": "cleemit" - }, - { - "rshares": "0", - "voter": "deeluvli1" - }, - { - "rshares": "0", - "voter": "noval" - }, - { - "rshares": "0", - "voter": "pixzelplethora" - }, - { - "rshares": "0", - "voter": "smart3dweb" - }, - { - "rshares": "0", - "voter": "joey-cryptoboy" - }, - { - "rshares": "0", - "voter": "mateorite" - }, - { - "rshares": "0", - "voter": "somaflaco" - }, - { - "rshares": "0", - "voter": "enki74" - }, - { - "rshares": "0", - "voter": "jungleebitcoin" - }, - { - "rshares": "0", - "voter": "correctdrop" - }, - { - "rshares": "0", - "voter": "clintjunior" - }, - { - "rshares": "0", - "voter": "tediursa24" - }, - { - "rshares": "0", - "voter": "mxzn" - }, - { - "rshares": "0", - "voter": "hgmsilvergold" - }, - { - "rshares": "0", - "voter": "antares007" - }, - { - "rshares": "0", - "voter": "tridenspoon333" - }, - { - "rshares": "0", - "voter": "vipek1996" - }, - { - "rshares": "0", - "voter": "prima-nia" - }, - { - "rshares": "0", - "voter": "redris" - }, - { - "rshares": "0", - "voter": "savetheanimals" - }, - { - "rshares": "0", - "voter": "tarunmewara" - }, - { - "rshares": "0", - "voter": "overkillcoin" - }, - { - "rshares": "0", - "voter": "tuakanamorgan" - }, - { - "rshares": "0", - "voter": "anacristinasilva" - }, - { - "rshares": "0", - "voter": "filmonaut" - }, - { - "rshares": "0", - "voter": "firstamendment" - }, - { - "rshares": "0", - "voter": "timcrypto" - }, - { - "rshares": "0", - "voter": "cryptotem" - }, - { - "rshares": "0", - "voter": "mikej" - }, - { - "rshares": "0", - "voter": "hwrs" - }, - { - "rshares": "0", - "voter": "sinai770judea" - }, - { - "rshares": "0", - "voter": "tuneralliance" - }, - { - "rshares": "0", - "voter": "zeji" - }, - { - "rshares": "0", - "voter": "ricoalfianda" - }, - { - "rshares": "0", - "voter": "satfit" - }, - { - "rshares": "0", - "voter": "machhour" - }, - { - "rshares": "0", - "voter": "bitgenio" - }, - { - "rshares": "0", - "voter": "ahmedmansi" - }, - { - "rshares": "0", - "voter": "theoccultcorner" - }, - { - "rshares": "0", - "voter": "reseller" - }, - { - "rshares": "0", - "voter": "ainsleyjo1952" - }, - { - "rshares": "0", - "voter": "novi" - }, - { - "rshares": "0", - "voter": "androsform" - }, - { - "rshares": "0", - "voter": "jooyoung" - }, - { - "rshares": "0", - "voter": "dobro88888888" - }, - { - "rshares": "0", - "voter": "ghaaspur" - }, - { - "rshares": "0", - "voter": "xodyd2da" - }, - { - "rshares": "0", - "voter": "trisun" - }, - { - "rshares": "0", - "voter": "tngflx" - }, - { - "rshares": "0", - "voter": "karaban" - }, - { - "rshares": "0", - "voter": "empath" - }, - { - "rshares": "0", - "voter": "pcbildrnoob" - }, - { - "rshares": "0", - "voter": "joecaffeine" - }, - { - "rshares": "0", - "voter": "laolballs" - }, - { - "rshares": "0", - "voter": "braamsteyn7777" - }, - { - "rshares": "0", - "voter": "udibekwe" - }, - { - "rshares": "0", - "voter": "jackolanternbob" - }, - { - "rshares": "0", - "voter": "rondoncr" - }, - { - "rshares": "0", - "voter": "doubledeeyt" - }, - { - "rshares": "0", - "voter": "joshvel" - }, - { - "rshares": "0", - "voter": "lembach3d" - }, - { - "rshares": "0", - "voter": "vulturestkn" - }, - { - "rshares": "0", - "voter": "darknessprincess" - }, - { - "rshares": "0", - "voter": "misrori" - }, - { - "rshares": "0", - "voter": "afrikanprince" - }, - { - "rshares": "0", - "voter": "jjprac" - }, - { - "rshares": "0", - "voter": "ayuwandira" - }, - { - "rshares": "0", - "voter": "ilicoin" - }, - { - "rshares": "0", - "voter": "pkvlogs" - }, - { - "rshares": "0", - "voter": "bitstudio" - }, - { - "rshares": "0", - "voter": "taintedblood" - }, - { - "rshares": "0", - "voter": "epsicktick" - }, - { - "rshares": "0", - "voter": "csggene3" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - }, - { - "rshares": "0", - "voter": "geek4geek" - }, - { - "rshares": "0", - "voter": "kharrazi" - }, - { - "rshares": "0", - "voter": "zufrizal" - }, - { - "rshares": "0", - "voter": "academix87" - }, - { - "rshares": "0", - "voter": "planetenamek" - }, - { - "rshares": "0", - "voter": "muliaeko" - }, - { - "rshares": "0", - "voter": "boyjack" - }, - { - "rshares": "0", - "voter": "jatniel" - }, - { - "rshares": "0", - "voter": "juanangel40bcn" - }, - { - "rshares": "0", - "voter": "jodywrites" - }, - { - "rshares": "0", - "voter": "permatek" - }, - { - "rshares": "0", - "voter": "cyberspace" - }, - { - "rshares": "0", - "voter": "fareehasheharyar" - }, - { - "rshares": "0", - "voter": "saynie" - }, - { - "rshares": "0", - "voter": "plainoldme" - }, - { - "rshares": "0", - "voter": "razaqbarry" - }, - { - "rshares": "0", - "voter": "antoniokarteli" - }, - { - "rshares": "0", - "voter": "dream.trip" - }, - { - "rshares": "0", - "voter": "reinhardbaust" - }, - { - "rshares": "0", - "voter": "newpioneer" - }, - { - "rshares": "0", - "voter": "melvinbonner" - }, - { - "rshares": "0", - "voter": "zulfahmi2141" - }, - { - "rshares": "0", - "voter": "maninjapan1989" - }, - { - "rshares": "0", - "voter": "andravasko" - }, - { - "rshares": "0", - "voter": "gilma" - }, - { - "rshares": "0", - "voter": "tom74" - }, - { - "rshares": "0", - "voter": "josephfugata" - }, - { - "rshares": "0", - "voter": "bitcointauji" - }, - { - "rshares": "0", - "voter": "gray00" - }, - { - "rshares": "0", - "voter": "divyang101" - }, - { - "rshares": "0", - "voter": "bahagia-arbi" - }, - { - "rshares": "0", - "voter": "bhim" - }, - { - "rshares": "0", - "voter": "bickell" - }, - { - "rshares": "0", - "voter": "tfpostman" - }, - { - "rshares": "0", - "voter": "anujkumar" - }, - { - "rshares": "0", - "voter": "fbslo" - }, - { - "rshares": "0", - "voter": "renijuliani" - }, - { - "rshares": "0", - "voter": "setio" - }, - { - "rshares": "0", - "voter": "mooncryption" - }, - { - "rshares": "0", - "voter": "shintamonica" - }, - { - "rshares": "0", - "voter": "caratzky" - }, - { - "rshares": "0", - "voter": "komrad" - }, - { - "rshares": "0", - "voter": "therivernile" - }, - { - "rshares": "0", - "voter": "deep.gohil" - }, - { - "rshares": "0", - "voter": "thomasduder" - }, - { - "rshares": "0", - "voter": "sensistar" - }, - { - "rshares": "0", - "voter": "abdelone" - }, - { - "rshares": "0", - "voter": "gegec" - }, - { - "rshares": "0", - "voter": "ambmicheal" - }, - { - "rshares": "0", - "voter": "rincewind" - }, - { - "rshares": "0", - "voter": "alishannoor" - }, - { - "rshares": "0", - "voter": "ahhjoeinhk" - }, - { - "rshares": "0", - "voter": "kalhiade" - }, - { - "rshares": "0", - "voter": "faridrizkia" - }, - { - "rshares": "0", - "voter": "teamslovenia" - }, - { - "rshares": "0", - "voter": "xiaoshancun" - }, - { - "rshares": "0", - "voter": "mikewebb274" - }, - { - "rshares": "0", - "voter": "andrath" - }, - { - "rshares": "0", - "voter": "torosan" - }, - { - "rshares": "0", - "voter": "ghayas" - }, - { - "rshares": "0", - "voter": "krevasilis" - }, - { - "rshares": "0", - "voter": "koinbot" - }, - { - "rshares": "0", - "voter": "synergy-now" - }, - { - "rshares": "0", - "voter": "steemblogs" - }, - { - "rshares": "0", - "voter": "tujuhpelita" - }, - { - "rshares": "0", - "voter": "palani" - }, - { - "rshares": "0", - "voter": "as-i-see-it" - }, - { - "rshares": "0", - "voter": "heyeshuang" - }, - { - "rshares": "0", - "voter": "arslan786" - }, - { - "rshares": "0", - "voter": "cgf117" - }, - { - "rshares": "0", - "voter": "amazingtech100" - }, - { - "rshares": "0", - "voter": "dreamm" - }, - { - "rshares": "0", - "voter": "sweetssssj" - }, - { - "rshares": "0", - "voter": "ceikdo" - }, - { - "rshares": "0", - "voter": "sunsquall" - }, - { - "rshares": "0", - "voter": "muhammadilyas93" - }, - { - "rshares": "0", - "voter": "cre47iv3" - }, - { - "rshares": "0", - "voter": "joao-cacador" - }, - { - "rshares": "0", - "voter": "jamsphonna" - }, - { - "rshares": "0", - "voter": "abbak7" - }, - { - "rshares": "0", - "voter": "thelifeofjord" - }, - { - "rshares": "0", - "voter": "utpoldebnath" - }, - { - "rshares": "0", - "voter": "sagorkhan" - }, - { - "rshares": "0", - "voter": "shivpremi" - }, - { - "rshares": "0", - "voter": "shabbirahmad" - }, - { - "rshares": "0", - "voter": "ibeljr" - }, - { - "rshares": "0", - "voter": "umelard" - }, - { - "rshares": "0", - "voter": "stijndehaan" - }, - { - "rshares": "0", - "voter": "iamericmorrison" - }, - { - "rshares": "0", - "voter": "shiningstar" - }, - { - "rshares": "0", - "voter": "steemprojects1" - }, - { - "rshares": "0", - "voter": "steemprojects2" - }, - { - "rshares": "0", - "voter": "stuvi" - }, - { - "rshares": "0", - "voter": "zia161" - }, - { - "rshares": "0", - "voter": "arslanq" - }, - { - "rshares": "0", - "voter": "kevca16" - }, - { - "rshares": "0", - "voter": "mcreg" - }, - { - "rshares": "0", - "voter": "waheebisb" - }, - { - "rshares": "0", - "voter": "rizaokur" - }, - { - "rshares": "0", - "voter": "seanstein" - }, - { - "rshares": "0", - "voter": "piszozo" - }, - { - "rshares": "0", - "voter": "vicmariki" - }, - { - "rshares": "0", - "voter": "contribution" - }, - { - "rshares": "0", - "voter": "oep" - }, - { - "rshares": "0", - "voter": "akshitgrover" - }, - { - "rshares": "0", - "voter": "jackson12" - }, - { - "rshares": "0", - "voter": "dtldesign" - }, - { - "rshares": "0", - "voter": "h4ck3rm1k3st33m" - }, - { - "rshares": "0", - "voter": "smokeasare165" - }, - { - "rshares": "0", - "voter": "tinoschloegl" - }, - { - "rshares": "0", - "voter": "liftu" - }, - { - "rshares": "0", - "voter": "atul8888" - }, - { - "rshares": "0", - "voter": "goroshkodo" - }, - { - "rshares": "0", - "voter": "tarmizislow" - }, - { - "rshares": "0", - "voter": "nurmasyithah" - }, - { - "rshares": "0", - "voter": "ritikagupta" - }, - { - "rshares": "0", - "voter": "anniemohler" - }, - { - "rshares": "0", - "voter": "olaivart" - }, - { - "rshares": "0", - "voter": "thedrewshow" - }, - { - "rshares": "0", - "voter": "alpha27" - }, - { - "rshares": "0", - "voter": "adventuretours" - }, - { - "rshares": "0", - "voter": "advexon" - }, - { - "rshares": "0", - "voter": "cloudconnect" - }, - { - "rshares": "0", - "voter": "ontheverge" - }, - { - "rshares": "0", - "voter": "celsomichida" - }, - { - "rshares": "0", - "voter": "cannan" - }, - { - "rshares": "0", - "voter": "cloudbuster" - }, - { - "rshares": "0", - "voter": "adrienoor" - }, - { - "rshares": "0", - "voter": "hussnain" - }, - { - "rshares": "0", - "voter": "shanloth" - }, - { - "rshares": "0", - "voter": "samirnyaupane" - }, - { - "rshares": "0", - "voter": "slackeramericana" - }, - { - "rshares": "0", - "voter": "thabiggdogg" - }, - { - "rshares": "0", - "voter": "gilnambatac" - }, - { - "rshares": "0", - "voter": "withgraham" - }, - { - "rshares": "0", - "voter": "sephirot" - }, - { - "rshares": "0", - "voter": "coffeeman" - }, - { - "rshares": "0", - "voter": "stefunniy" - }, - { - "rshares": "0", - "voter": "ghanexs" - }, - { - "rshares": "0", - "voter": "razipelangi" - }, - { - "rshares": "0", - "voter": "dreamdiary" - }, - { - "rshares": "0", - "voter": "crypto4euro" - }, - { - "rshares": "0", - "voter": "rtsampa" - }, - { - "rshares": "0", - "voter": "mahi2raj" - }, - { - "rshares": "0", - "voter": "danyflores" - }, - { - "rshares": "0", - "voter": "oraclefrequency" - }, - { - "rshares": "0", - "voter": "kartikohri1712" - }, - { - "rshares": "0", - "voter": "cryptoaltcoin" - }, - { - "rshares": "0", - "voter": "einarscorner" - }, - { - "rshares": "0", - "voter": "dudithedoctor" - }, - { - "rshares": "0", - "voter": "dirapa" - }, - { - "rshares": "0", - "voter": "arfouche" - }, - { - "rshares": "0", - "voter": "kristenbruce" - }, - { - "rshares": "0", - "voter": "okclear" - }, - { - "rshares": "0", - "voter": "mysearchisover" - }, - { - "rshares": "0", - "voter": "dropd" - }, - { - "rshares": "0", - "voter": "rulilesmana" - }, - { - "rshares": "0", - "voter": "cryptomaniac6" - }, - { - "rshares": "0", - "voter": "kim3ra" - }, - { - "rshares": "0", - "voter": "movement19" - }, - { - "rshares": "0", - "voter": "aacr07" - }, - { - "rshares": "0", - "voter": "layra" - }, - { - "rshares": "0", - "voter": "vardhanbtc" - }, - { - "rshares": "0", - "voter": "azeemprime" - }, - { - "rshares": "0", - "voter": "dbnx" - }, - { - "rshares": "0", - "voter": "shredz7" - }, - { - "rshares": "0", - "voter": "bitstreamgains" - }, - { - "rshares": "0", - "voter": "hendrimaca" - }, - { - "rshares": "0", - "voter": "aan01" - }, - { - "rshares": "0", - "voter": "successmindset" - }, - { - "rshares": "0", - "voter": "hatu" - }, - { - "rshares": "0", - "voter": "khabirulhafiz" - }, - { - "rshares": "0", - "voter": "yady" - }, - { - "rshares": "0", - "voter": "samsonjura1" - }, - { - "rshares": "0", - "voter": "ambitiouslife" - }, - { - "rshares": "0", - "voter": "whyse" - }, - { - "rshares": "0", - "voter": "skyflow" - }, - { - "rshares": "0", - "voter": "kimtoma" - }, - { - "rshares": "0", - "voter": "asherunderwood" - }, - { - "rshares": "0", - "voter": "lorden" - }, - { - "rshares": "0", - "voter": "juicyvegandwarf" - }, - { - "rshares": "0", - "voter": "ushan007" - }, - { - "rshares": "0", - "voter": "ihsan6837" - }, - { - "rshares": "0", - "voter": "suryarose" - }, - { - "rshares": "0", - "voter": "sol7142" - }, - { - "rshares": "0", - "voter": "fikrialoy" - }, - { - "rshares": "0", - "voter": "mr-lahey" - }, - { - "rshares": "0", - "voter": "mahsabmirza" - }, - { - "rshares": "0", - "voter": "pwangdu" - }, - { - "rshares": "0", - "voter": "salda" - }, - { - "rshares": "0", - "voter": "muzzlealem" - }, - { - "rshares": "0", - "voter": "pakjos" - }, - { - "rshares": "0", - "voter": "mhdfadhal" - }, - { - "rshares": "0", - "voter": "dannykastner" - }, - { - "rshares": "0", - "voter": "ibul11" - }, - { - "rshares": "0", - "voter": "nigtroy" - }, - { - "rshares": "0", - "voter": "uripsurya" - }, - { - "rshares": "0", - "voter": "jazman.zhens" - }, - { - "rshares": "0", - "voter": "intervote" - }, - { - "rshares": "0", - "voter": "mahend" - }, - { - "rshares": "0", - "voter": "anandasungkar" - }, - { - "rshares": "0", - "voter": "homeless.global" - }, - { - "rshares": "0", - "voter": "intansteemityes" - }, - { - "rshares": "0", - "voter": "perminus-gaita" - }, - { - "rshares": "0", - "voter": "phost" - }, - { - "rshares": "0", - "voter": "debart" - }, - { - "rshares": "0", - "voter": "blurrydude" - }, - { - "rshares": "0", - "voter": "tsnaks" - }, - { - "rshares": "0", - "voter": "legendchew" - }, - { - "rshares": "0", - "voter": "cryptonegocios" - }, - { - "rshares": "0", - "voter": "alexcozzy" - }, - { - "rshares": "0", - "voter": "joe.ster" - }, - { - "rshares": "0", - "voter": "pandu13" - }, - { - "rshares": "0", - "voter": "sasakhan" - }, - { - "rshares": "0", - "voter": "faisalyus" - }, - { - "rshares": "0", - "voter": "sawyn" - }, - { - "rshares": "0", - "voter": "diegocedenno" - }, - { - "rshares": "0", - "voter": "calebotamus" - }, - { - "rshares": "0", - "voter": "lsanneh78128" - }, - { - "rshares": "0", - "voter": "nazaruddin885" - }, - { - "rshares": "0", - "voter": "chaseburnett" - }, - { - "rshares": "0", - "voter": "sisirhasan" - }, - { - "rshares": "0", - "voter": "donyanyo" - }, - { - "rshares": "0", - "voter": "oregontravel" - }, - { - "rshares": "0", - "voter": "luegenbaron" - }, - { - "rshares": "0", - "voter": "edkrassenstein" - }, - { - "rshares": "0", - "voter": "munawirawin" - }, - { - "rshares": "0", - "voter": "salgetra" - }, - { - "rshares": "0", - "voter": "zaxan" - }, - { - "rshares": "0", - "voter": "rollings" - }, - { - "rshares": "0", - "voter": "kyle07" - }, - { - "rshares": "0", - "voter": "pchanger" - }, - { - "rshares": "0", - "voter": "uncleboy" - }, - { - "rshares": "0", - "voter": "alfhi" - }, - { - "rshares": "0", - "voter": "htetmyathtut" - }, - { - "rshares": "0", - "voter": "trisolaran" - }, - { - "rshares": "0", - "voter": "arafs" - }, - { - "rshares": "0", - "voter": "abysoyjoy" - }, - { - "rshares": "0", - "voter": "stylo419" - }, - { - "rshares": "0", - "voter": "cookntell" - }, - { - "rshares": "0", - "voter": "rakkarage" - }, - { - "rshares": "0", - "voter": "grasozauru" - }, - { - "rshares": "0", - "voter": "norabx" - }, - { - "rshares": "0", - "voter": "joyvancouver" - }, - { - "rshares": "0", - "voter": "antchatz" - }, - { - "rshares": "0", - "voter": "tutchpa" - }, - { - "rshares": "0", - "voter": "cosmophobia" - }, - { - "rshares": "0", - "voter": "rajaji" - }, - { - "rshares": "0", - "voter": "liqquid" - }, - { - "rshares": "0", - "voter": "aceh-post" - }, - { - "rshares": "0", - "voter": "dannanares" - }, - { - "rshares": "0", - "voter": "husana" - }, - { - "rshares": "0", - "voter": "davidmichael" - }, - { - "rshares": "0", - "voter": "wprpn" - }, - { - "rshares": "0", - "voter": "datuparulas17" - }, - { - "rshares": "0", - "voter": "trie" - }, - { - "rshares": "0", - "voter": "chirstonawba" - }, - { - "rshares": "0", - "voter": "sulaiman86" - }, - { - "rshares": "0", - "voter": "electronicsworld" - }, - { - "rshares": "0", - "voter": "engrravijain" - }, - { - "rshares": "0", - "voter": "alfredolopez1980" - }, - { - "rshares": "0", - "voter": "gustavomonraz" - }, - { - "rshares": "0", - "voter": "tahoorsaleem" - }, - { - "rshares": "0", - "voter": "starfinger13" - }, - { - "rshares": "0", - "voter": "conscalisthenics" - }, - { - "rshares": "0", - "voter": "syd44723" - }, - { - "rshares": "0", - "voter": "sutter" - }, - { - "rshares": "0", - "voter": "samsonite18654" - }, - { - "rshares": "0", - "voter": "iqra.naz" - }, - { - "rshares": "0", - "voter": "drezz" - }, - { - "rshares": "0", - "voter": "cutelace" - }, - { - "rshares": "0", - "voter": "chirstonawba5" - }, - { - "rshares": "0", - "voter": "devkapoor423" - }, - { - "rshares": "0", - "voter": "blanchy" - }, - { - "rshares": "0", - "voter": "rakeshban357" - }, - { - "rshares": "0", - "voter": "douglasjames" - }, - { - "rshares": "0", - "voter": "michaelabbas" - }, - { - "rshares": "0", - "voter": "gonewithwind" - }, - { - "rshares": "0", - "voter": "snow.owl" - }, - { - "rshares": "0", - "voter": "tonthatthienvu" - }, - { - "rshares": "0", - "voter": "strangeworldnews" - }, - { - "rshares": "0", - "voter": "dogra" - }, - { - "rshares": "0", - "voter": "umairx97" - }, - { - "rshares": "0", - "voter": "coolpeopleifb" - }, - { - "rshares": "0", - "voter": "gabu01" - }, - { - "rshares": "0", - "voter": "magicalbot" - }, - { - "rshares": "0", - "voter": "f21steem" - }, - { - "rshares": "0", - "voter": "hoobit" - }, - { - "rshares": "0", - "voter": "ivancraigcaine" - }, - { - "rshares": "0", - "voter": "kranko" - }, - { - "rshares": "0", - "voter": "successinwork" - }, - { - "rshares": "0", - "voter": "abfelix96" - }, - { - "rshares": "0", - "voter": "maldonadog" - }, - { - "rshares": "0", - "voter": "drakeler" - }, - { - "rshares": "0", - "voter": "cyrex88" - }, - { - "rshares": "0", - "voter": "rikyu" - }, - { - "rshares": "0", - "voter": "krimimimi" - }, - { - "rshares": "0", - "voter": "johannav" - } - ], - "author": "steemit", - "author_payout_value": "0.942 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "category": "meta", - "children": 430, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "payout": 1.698, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 92 - }, - "title": "Welcome to Steem!", - "updated": "2016-03-30T18:30:18", - "url": "/meta/@steemit/firstpost" - } + { + "active_votes": [ + { + "rshares": "375241", + "voter": "dantheman" + }, + { + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "rshares": "5100", + "voter": "steemit78" + }, + { + "rshares": "1259167", + "voter": "anonymous" + }, + { + "rshares": "318519", + "voter": "hello" + }, + { + "rshares": "153384", + "voter": "world" + }, + { + "rshares": "-936400", + "voter": "ned" + }, + { + "rshares": "59412", + "voter": "fufubar1" + }, + { + "rshares": "14997", + "voter": "anonymous1" + }, + { + "rshares": "1441", + "voter": "red" + }, + { + "rshares": "551390835500", + "voter": "liondani" + }, + { + "rshares": "82748", + "voter": "roadscape" + }, + { + "rshares": "10772", + "voter": "xeroc" + }, + { + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "rshares": "498863058", + "voter": "joelinux" + }, + { + "rshares": "9590417", + "voter": "piranhax" + }, + { + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "rshares": "422984262", + "voter": "acidyo" + }, + { + "rshares": "47179379651", + "voter": "tosch" + }, + { + "rshares": "7831667988", + "voter": "klye" + }, + { + "rshares": "1019950749", + "voter": "coar" + }, + { + "rshares": "1746058458", + "voter": "murh" + }, + { + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "rshares": "0", + "voter": "hien-tran" + }, + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "40624969", + "voter": "ben99" + }, + { + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "rshares": "917398502", + "voter": "decrypt" + }, + { + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "rshares": "1037079223", + "voter": "condra" + }, + { + "rshares": "233032838", + "voter": "jearson" + }, + { + "rshares": "240809500", + "voter": "tritium" + }, + { + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "rshares": "226074637", + "voter": "artjedi" + }, + { + "rshares": "931542394", + "voter": "anduweb" + }, + { + "rshares": "2292983350", + "voter": "inertia" + }, + { + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "rshares": "266262926", + "voter": "desmonid" + }, + { + "rshares": "71498008", + "voter": "madhatting" + }, + { + "rshares": "23726644841", + "voter": "ubg" + }, + { + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "rshares": "131577259", + "voter": "gribgo" + }, + { + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "rshares": "28907874049", + "voter": "orm" + }, + { + "rshares": "528988007", + "voter": "qonq99" + }, + { + "rshares": "129537329", + "voter": "rd7783" + }, + { + "rshares": "615020728", + "voter": "slava" + }, + { + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "rshares": "95219365", + "voter": "curator" + }, + { + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "rshares": "0", + "voter": "solos" + }, + { + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "rshares": "0", + "voter": "blysards" + }, + { + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "rshares": "1279854", + "voter": "nigmat" + }, + { + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "rshares": "10847083143", + "voter": "metrox" + }, + { + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "rshares": "710989138", + "voter": "romancs" + }, + { + "rshares": "59366614", + "voter": "luke490" + }, + { + "rshares": "58762473", + "voter": "bro66" + }, + { + "rshares": "201822591", + "voter": "future24" + }, + { + "rshares": "58623688", + "voter": "mythras" + }, + { + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "rshares": "0", + "voter": "matrixdweller" + }, + { + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "rshares": "54761612", + "voter": "edbriv" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "rshares": "52740989", + "voter": "tcstix" + }, + { + "rshares": "49467477", + "voter": "friedwater" + }, + { + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "rshares": "54017869", + "voter": "zelious" + }, + { + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "rshares": "53196086", + "voter": "f1111111" + }, + { + "rshares": "0", + "voter": "anomaly" + }, + { + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "rshares": "0", + "voter": "buckland" + }, + { + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_payout_value": "0.942 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "payout": 1.698, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 92 + }, + "title": "Welcome to Steem!", + "updated": "2016-03-30T18:30:18", + "url": "/meta/@steemit/firstpost" + } ] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_discussion.pat.json b/hivemind/tavern/bridge_api_patterns/get_discussion.pat.json index bc2c3b2f..35cd74aa 100644 --- a/hivemind/tavern/bridge_api_patterns/get_discussion.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_discussion.pat.json @@ -1,24509 +1,2395 @@ { - "abidhp/re-steemit-firstpost-20180427t153249315z": { - "active_votes": [], - "author": "abidhp", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.64, - "beneficiaries": [], - "blacklists": [], - "body": "Really Steemit is amazing.. I love steemit.... Thanks for this Awsome platform \ud83d\udc99\ud83d\udc9a\ud83d\udc9b\ud83e\udde1\ud83d\udc9c", - "category": "meta", - "children": 0, - "created": "2018-04-27T15:33:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-05-04T15:33:33", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180427t153249315z", - "post_id": 45705136, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-27T15:33:33", - "url": "/meta/@steemit/firstpost#@abidhp/re-steemit-firstpost-20180427t153249315z" - }, - "abusaleh/re-steemit-firstpost-20180117t154220577z": { - "active_votes": [ - { - "rshares": "1409842841", - "voter": "abusaleh" - }, - { - "rshares": "32265032423", - "voter": "rewardpoolrape" - } - ], - "author": "abusaleh", - "author_payout_value": "0.268 HBD", - "author_reputation": 56.08, - "beneficiaries": [], - "blacklists": [], - "body": "At last i found you after 2 month...!", - "category": "meta", - "children": 1, - "created": "2018-01-17T15:42:27", - "curator_payout_value": "0.008 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 33674875264, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.276, - "payout_at": "2018-01-24T15:42:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180117t154220577z", - "post_id": 26256237, - "promoted": "0.000 HBD", - "replies": [ - "rewardpoolrape/rewardpoolrape-re-abusalehre-steemit-firstpost-20180117t154220577z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-17T15:42:27", - "url": "/meta/@steemit/firstpost#@abusaleh/re-steemit-firstpost-20180117t154220577z" - }, - "ackza/re-sornprar-re-steemit-firstpost-20170812t064319021z": { - "active_votes": [], - "author": "ackza", - "author_payout_value": "0.000 HBD", - "author_reputation": 72.63, - "beneficiaries": [], - "blacklists": [], - "body": "if you don't like @craig-grant then switch to @trevvonjb lol then you have nothing to complain about!\n\nAnd @craig-grant doesnt flag man, show me some times he flagged people...ive never ever sen craig falg anyone! , and u realize if he flagged everything hed loose his voting power? You CANNOT make money flagging! wtf why would u think that?!? haha its really weird man! I feel like u may not fully understand how steemit works, and i doubt craig ever flagged someone to \"get money back in the reward pool\" because he \":and his kind\" dont just automatically get money from teh read pool....he only get s money from teh reward pool when HE EARNS it man....its kinda weird that u made such a long post without understanding how steemit works lol steempower allows craigs followers top upvote his posts and grant him a few cents or bucks at a time, and he acumulates his money from upvotes, that he earns, dont get it twisted, hes earning his money\n\nAnd let me tel u about his \"programs\" theyve made EVERYONE money! from Genesis to Bitconnect, theyve ALL made EVERYONE whose clicked His Links a lot of money period no \"criminal behaviour\" about it, dont get mad because he foudn a way to make money by helping others make money\n\nand NO hes not \"keeping most opf it\" he gets a SMALL cut and simply gets LOT of people to get him thats mall cut\n\nthe referal bonus on fuckin genesis and bitconnect is ONLY a few fuckin percentage points man! thats not \"most\" of the money and WTF u want craig to just give away all the money he earns bcause YOU dont t huink he actually earnd it? Youre like from the days of being AGAINST passive income, where men had to WOK IN A FACTORY all day, but now peopel REALIZE its OK to have passive income. Busoness can be automated, u dont have to sweat and work urself to death just to earn a dollar jhust bvause YOu may have had to do that for YOUR life, dont get jelous of othrs no reason have envy, theers PKLENTY of people to signup to bitconnect or to genesis OR to stemit! steemitd oesnt have an oficial affiliate program BUT steemit DOES have a system that allows you to sign people up who will then follow you and end up upvoting you! and when you teach ur followers how to make money, YOU end up making money as their upvotes become more and more expensiv!\n\nMan its really unfair how youre trying to ruin @crag-grant 's reputation, and i only defend him now not to suck up or brown nose, i just have to defend a man i know is not guilty of these accustaion and I DOUBT you actually watch and follow him AS MUCH as I do, i watch his shit almost everyday, and i see his posts daily, DAILy and i WATCH him and nayon whose talked shit about him has just been envious of him MOST of the tiume\n\nyoure despertae to find an excuse as tyo why he does NOT deserve the money he makes\n\nim suprised noone has tried reporting him to the IRS in a desperate atempt to get him audidtd JUST tof uck with him, haha that wontw ork however as crypto currency si NOT a legal tender and if they forced peoiple to pay taxes on crypto cutrrency THEY WOULD RECOGNIZE IT AS LEGAL TENDER which they cant do yet!\nAnd theres plenty of other ways he can avoid paying taxes legally and if people keep harrasing him he will simply move to the carribean and liveon some iland forever and have his friends bring him supplis by boat if he has to! hahaha he could probobly buy his own boat and ail around the carribean at this point, uploading videos from youtube and steemit over satellite internet, hahaha", - "category": "meta", - "children": 0, - "created": "2017-08-12T06:43:18", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "craig-grant", - "trevvonjb", - "crag-grant" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "sornprar", - "parent_permlink": "re-steemit-firstpost-20170704t204851481z", - "payout": 0.0, - "payout_at": "2017-08-19T06:43:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-sornprar-re-steemit-firstpost-20170812t064319021z", - "post_id": 9924787, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-12T06:43:18", - "url": "/meta/@steemit/firstpost#@ackza/re-sornprar-re-steemit-firstpost-20170812t064319021z" - }, - "ackza/re-sornprar-re-steemit-firstpost-20170813t054058376z": { - "active_votes": [], - "author": "ackza", - "author_payout_value": "0.000 HBD", - "author_reputation": 72.63, - "beneficiaries": [], - "blacklists": [], - "body": "\"once those posts (or any others) reach an impressive potential payout, flag it with mid to high voting power FLAGs\" this doesnt make any sense and it doesnt hapen. i know u may think thi is whats hapeneing but i assure you, craig-grant is NOT cordinating some killshot flagbots to drain your posts rewards just to filla reward pool lol maybe he flags posts where u talk shgit about him maybe? haha anyway", - "category": "meta", - "children": 2, - "created": "2017-08-13T05:40:57", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "sornprar", - "parent_permlink": "re-steemit-firstpost-20170705t021545762z", - "payout": 0.0, - "payout_at": "2017-08-20T05:40:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-sornprar-re-steemit-firstpost-20170813t054058376z", - "post_id": 10001821, - "promoted": "0.000 HBD", - "replies": [ - "sornprar/re-ackza-re-sornprar-re-steemit-firstpost-20170813t135846925z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-13T05:40:57", - "url": "/meta/@steemit/firstpost#@ackza/re-sornprar-re-steemit-firstpost-20170813t054058376z" - }, - "ackza/re-stackin-re-steemit-firstpost-20190402t134818892z": { - "active_votes": [ - { - "rshares": "115795591672", - "voter": "ackza" - }, - { - "rshares": "0", - "voter": "dallasrushing" - } - ], - "author": "ackza", - "author_payout_value": "0.064 HBD", - "author_reputation": 72.63, - "beneficiaries": [], - "blacklists": [], - "body": "Bruh smart idea to get ur comment on the very top of @steemit 's only post :D I hope @ned sees this or whoever he has managing its posting key, and upvotes us :D \n\nThanks for payin for that upvote for me to comment on :D its nice up here", - "category": "meta", - "children": 0, - "created": "2019-04-02T13:48:18", - "curator_payout_value": "0.001 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "ned" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 115795591672, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.065, - "payout_at": "2019-04-09T13:48:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20190402t134818892z", - "post_id": 72430446, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-04-02T13:49:27", - "url": "/meta/@steemit/firstpost#@ackza/re-stackin-re-steemit-firstpost-20190402t134818892z" - }, - "ackza/re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t091545296z": { - "active_votes": [ - { - "rshares": "0", - "voter": "ackza" - }, - { - "rshares": "1693320161", - "voter": "sutter" - } - ], - "author": "ackza", - "author_payout_value": "0.000 HBD", - "author_reputation": 72.63, - "beneficiaries": [], - "blacklists": [], - "body": "pretty cool right?\ni made this for @ned\nhttps://cdn.discordapp.com/attachments/414992509547184130/463222344412823553/393dc189-cec4-4512-b9a7-cf1c1a759e44.png", - "category": "meta", - "children": 1, - "created": "2018-07-02T09:15:45", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://cdn.discordapp.com/attachments/414992509547184130/463222344412823553/393dc189-cec4-4512-b9a7-cf1c1a759e44.png" - ], - "tags": [ - "meta" - ], - "users": [ - "ned" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1693320161, - "parent_author": "sutter", - "parent_permlink": "re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035133909z", - "payout": 0.0, - "payout_at": "2018-07-09T09:15:45", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t091545296z", - "post_id": 55133934, - "promoted": "0.000 HBD", - "replies": [ - "sutter/re-ackza-re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t184220108z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-02T09:15:45", - "url": "/meta/@steemit/firstpost#@ackza/re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t091545296z" - }, - "ades/re-steemit-firstpost-20171014t094715920z": { - "active_votes": [ - { - "rshares": "319115212176", - "voter": "idealist" - }, - { - "rshares": "10968280422", - "voter": "radiv" - }, - { - "rshares": "7235875161", - "voter": "joe28" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "ades", - "author_payout_value": "0.686 HBD", - "author_reputation": 63.72, - "beneficiaries": [], - "blacklists": [], - "body": "good media steemit", - "category": "meta", - "children": 0, - "created": "2017-10-14T09:47:18", - "curator_payout_value": "0.132 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 337319367759, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.818, - "payout_at": "2017-10-21T09:47:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171014t094715920z", - "post_id": 15283601, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-14T09:47:18", - "url": "/meta/@steemit/firstpost#@ades/re-steemit-firstpost-20171014t094715920z" - }, - "adilvakhri/re-steemit-firstpost-20180908t052715204z": { - "active_votes": [ - { - "rshares": "307377549", - "voter": "speda" - } - ], - "author": "adilvakhri", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.13, - "beneficiaries": [], - "blacklists": [], - "body": "I love steemit. <3", - "category": "meta", - "children": 0, - "created": "2018-09-08T05:27:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 307377549, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-09-15T05:27:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180908t052715204z", - "post_id": 61893379, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-09-08T05:27:18", - "url": "/meta/@steemit/firstpost#@adilvakhri/re-steemit-firstpost-20180908t052715204z" - }, - "admin/firstpost": { - "active_votes": [ - { - "rshares": "-375241", - "voter": "dantheman" - }, - { - "rshares": "5100", - "voter": "steemit46" - }, - { - "rshares": "81125", - "voter": "roadscape" - }, - { - "rshares": "425903066", - "voter": "gekko" - }, - { - "rshares": "431616594", - "voter": "acidyo" - }, - { - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "rshares": "58854897335", - "voter": "business" - }, - { - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "rshares": "244129227", - "voter": "kewpiedoll" - }, - { - "rshares": "1615731741", - "voter": "naturalista" - } - ], - "author": "admin", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "First Reply! Let's get this **party** started", - "category": "meta", - "children": 5, - "created": "2016-03-30T19:52:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 62423410900, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "firstpost", - "post_id": 2, - "promoted": "0.000 HBD", - "replies": [ - "kingtylervvs/re-admin-firstpost-20160717t193811098z", - "gopher/re-admin-firstpost-20160718t195306992z", - "social/re-admin--20171107t163722264z", - "social/re-admin--20171107t164333992z", - "juicyvegandwarf/re-admin-firstpost-20180205t011252333z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 10 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-03-30T19:52:30", - "url": "/meta/@steemit/firstpost#@admin/firstpost" - }, - "ainsleyjo1952/re-steemit-firstpost-20180205t212206587z": { - "active_votes": [], - "author": "ainsleyjo1952", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.35, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit -- I just found this interesting place after I used your handle for a tag in a comment to my goddaughter @tecnosgirl, and she told me that doing a tag this way actually led to another person's account. I thought that it either led to the main page of this site or else to the administration.\n\nAnyway...being rather #curious / #inquisitive / #nosy...I decided to see where the tag led and found this discussion.\n\nNow, I'm curious about this @craig-grant guy and will have to check him out when I'm done here. \n\nWill be back here to check this thread at different times.\n\nJust one more question to @steemit: When will you be writing something new?", - "category": "meta", - "children": 0, - "created": "2018-02-05T21:22:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta", - "curious", - "inquisitive", - "nosy" - ], - "users": [ - "steemit", - "tecnosgirl", - "craig-grant" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-12T21:22:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180205t212206587z", - "post_id": 30650157, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-05T21:22:09", - "url": "/meta/@steemit/firstpost#@ainsleyjo1952/re-steemit-firstpost-20180205t212206587z" - }, - "akankah/re-steemit-firstpost-20180303t075321674z": { - "active_votes": [ - { - "rshares": "450448615", - "voter": "akankah" - }, - { - "rshares": "457235356", - "voter": "embunbasahi" - }, - { - "rshares": "413983331", - "voter": "ll2unicc" - } - ], - "author": "akankah", - "author_payout_value": "0.000 HBD", - "author_reputation": 30.82, - "beneficiaries": [], - "blacklists": [], - "body": "nice @steemit", - "category": "meta", - "children": 0, - "created": "2018-03-03T07:53:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1321667302, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-10T07:53:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180303t075321674z", - "post_id": 36372752, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-03T07:53:27", - "url": "/meta/@steemit/firstpost#@akankah/re-steemit-firstpost-20180303t075321674z" - }, - "alao/re-steemit-firstpost-20170820t215949199z": { - "active_votes": [ - { - "rshares": "32584724400", - "voter": "mammasitta" - } - ], - "author": "alao", - "author_payout_value": "0.093 HBD", - "author_reputation": 64.34, - "beneficiaries": [], - "blacklists": [], - "body": "So this was the beginning...", - "category": "meta", - "children": 0, - "created": "2017-08-20T21:59:03", - "curator_payout_value": "0.031 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 32584724400, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.124, - "payout_at": "2017-08-27T21:59:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170820t215949199z", - "post_id": 10635414, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-20T21:59:03", - "url": "/meta/@steemit/firstpost#@alao/re-steemit-firstpost-20170820t215949199z" - }, - "alexcozzy/re-steemit-firstpost-20180210t193558358z": { - "active_votes": [], - "author": "alexcozzy", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.04, - "beneficiaries": [], - "blacklists": [], - "body": "@alexcozzy\nSteemit is a place for all!", - "category": "meta", - "children": 0, - "created": "2018-02-10T19:36:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "alexcozzy" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-17T19:36:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180210t193558358z", - "post_id": 31731998, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-10T19:36:06", - "url": "/meta/@steemit/firstpost#@alexcozzy/re-steemit-firstpost-20180210t193558358z" - }, - "alfredolopez1980/re-steemit-firstpost-20180520t222434698z": { - "active_votes": [], - "author": "alfredolopez1980", - "author_payout_value": "0.000 HBD", - "author_reputation": 38.65, - "beneficiaries": [], - "blacklists": [], - "body": "Orgulloso de estar aqui una comunidad facinante a la cual me uno con gran alegria!!!", - "category": "meta", - "children": 0, - "created": "2018-05-20T22:24:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-05-27T22:24:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180520t222434698z", - "post_id": 49504718, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-20T22:24:39", - "url": "/meta/@steemit/firstpost#@alfredolopez1980/re-steemit-firstpost-20180520t222434698z" - }, - "alketcecaj/re-steemit-firstpost-20170912t144124829z": { - "active_votes": [], - "author": "alketcecaj", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.44, - "beneficiaries": [], - "blacklists": [], - "body": "Great to be in steem! Thank you for such a wonderful invention!", - "category": "meta", - "children": 0, - "created": "2017-09-12T14:41:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-19T14:41:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170912t144124829z", - "post_id": 12644625, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-12T14:41:24", - "url": "/meta/@steemit/firstpost#@alketcecaj/re-steemit-firstpost-20170912t144124829z" - }, - "aminul7/re-steemit-firstpost-20180209t052633133z": { - "active_votes": [], - "author": "aminul7", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.39, - "beneficiaries": [], - "blacklists": [], - "body": "Carry on Steemit.Love you", - "category": "meta", - "children": 0, - "created": "2018-02-09T05:26:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-16T05:26:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180209t052633133z", - "post_id": 31383426, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-09T05:26:51", - "url": "/meta/@steemit/firstpost#@aminul7/re-steemit-firstpost-20180209t052633133z" - }, - "amycox/psuyrv": { - "active_votes": [], - "author": "amycox", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.13, - "beneficiaries": [], - "blacklists": [], - "body": "Hopefully, you @steemit can add WYSIWYG editor in the platform when posting articles and edit it, and for comments as well.\n\nThanks", - "category": "meta", - "children": 0, - "created": "2019-06-10T01:00:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-06-17T01:00:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "psuyrv", - "post_id": 76128647, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-06-10T01:02:21", - "url": "/meta/@steemit/firstpost#@amycox/psuyrv" - }, - "ana-maria/re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170825t065706648z": { - "active_votes": [ - { - "rshares": "35300619567", - "voter": "mammasitta" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - } - ], - "author": "ana-maria", - "author_payout_value": "0.105 HBD", - "author_reputation": 64.75, - "beneficiaries": [], - "blacklists": [], - "body": "LOL - and now you dragged me too, as I also don't know how I ended up here. But, one thing I'm sure of - it's your \"fault\" @mammasitta! \ud83d\ude1c Your comment popped up as some new posting in my feed (strange) and here I am. Really, some mysterious Steemit ways! \ud83d\ude0e", - "category": "meta", - "children": 0, - "created": "2017-08-25T06:57:12", - "curator_payout_value": "0.035 HBD", - "depth": 6, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "mammasitta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 35300619567, - "parent_author": "mammasitta", - "parent_permlink": "re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235433264z", - "payout": 0.14, - "payout_at": "2017-09-01T06:57:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170825t065706648z", - "post_id": 11013949, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-25T06:57:12", - "url": "/meta/@steemit/firstpost#@ana-maria/re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170825t065706648z" - }, - "anacristinasilva/re-steemit-firstpost-20170617t043011440z": { - "active_votes": [], - "author": "anacristinasilva", - "author_payout_value": "0.000 HBD", - "author_reputation": 67.96, - "beneficiaries": [], - "blacklists": [], - "body": "I appreciate this platform", - "category": "meta", - "children": 0, - "created": "2017-06-17T04:30:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-24T04:30:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170617t043011440z", - "post_id": 4173542, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-17T04:30:18", - "url": "/meta/@steemit/firstpost#@anacristinasilva/re-steemit-firstpost-20170617t043011440z" - }, - "anandasungkar/re-steemit-firstpost-20180304t184305461z": { - "active_votes": [], - "author": "anandasungkar", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Wow amazing", - "category": "meta", - "children": 0, - "created": "2018-03-04T18:43:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-11T18:43:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180304t184305461z", - "post_id": 36664604, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-04T18:43:09", - "url": "/meta/@steemit/firstpost#@anandasungkar/re-steemit-firstpost-20180304t184305461z" - }, - "ancgci/ancgci-re-steemit-firstpost-20181015t004843528z": { - "active_votes": [], - "author": "ancgci", - "author_payout_value": "0.000 HBD", - "author_reputation": 35.66, - "beneficiaries": [], - "blacklists": [], - "body": "Hi please i need your help, i need pay mortage in my bank. Do you may voted in my post's please?\n\nPosted using [Partiko Android](https://steemit.com/@partiko-android)", - "category": "meta", - "children": 0, - "created": "2018-10-15T00:48:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "partiko" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-10-22T00:48:45", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "ancgci-re-steemit-firstpost-20181015t004843528z", - "post_id": 64260452, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-10-15T00:48:45", - "url": "/meta/@steemit/firstpost#@ancgci/ancgci-re-steemit-firstpost-20181015t004843528z" - }, - "andrath/re-steemit-firstpost-20170830t185517045z": { - "active_votes": [], - "author": "andrath", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.05, - "beneficiaries": [], - "blacklists": [], - "body": "Minnow here. Allow me to swim around here and admire this massive whale. :)\n\n(Is this really the very first post of the platform? Wow.)", - "category": "meta", - "children": 0, - "created": "2017-08-30T18:55:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-06T18:55:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170830t185517045z", - "post_id": 11503598, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-30T18:55:18", - "url": "/meta/@steemit/firstpost#@andrath/re-steemit-firstpost-20170830t185517045z" - }, - "andravasko/re-steemit-firstpost-20170912t145937605z": { - "active_votes": [ - { - "rshares": "923254782", - "voter": "xiti" - } - ], - "author": "andravasko", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.59, - "beneficiaries": [], - "blacklists": [], - "body": "I just want to ask you for help as many honorable popes, I created a [UPVOTED COMMUNITY](https://steemit.com/upvotedcommunity/@andravasko/upvoted-community-helps-minnow-steemit-2017910t192027952z) program, but as you can see in my post when promoting upvoted community, not having seen my post, I want to ask you to look at it even for a while my post [HERE !!!](https://steemit.com/upvotedcommunity/@andravasko/upvoted-community-helps-minnow-steemit-2017910t192027952z)\n\nmy program wants to help the minnows in steemit but see i do not have enough steem power, i just a minnow too, i have to give them 100% reward every post but my post limit is so fast so i can not upvote many post minnow other. at least I just want you to catch a glimpse of my post so minnow just as I can grow. I am very grateful to the pope like you @steemit", - "category": "meta", - "children": 0, - "created": "2017-09-12T14:59:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://steemit.com/upvotedcommunity/@andravasko/upvoted-community-helps-minnow-steemit-2017910t192027952z" - ], - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 923254782, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-19T14:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170912t145937605z", - "post_id": 12646273, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-12T14:59:42", - "url": "/meta/@steemit/firstpost#@andravasko/re-steemit-firstpost-20170912t145937605z" - }, - "andrewwu/re-steemit-firstpost-20170930t081242163z": { - "active_votes": [], - "author": "andrewwu", - "author_payout_value": "0.000 HBD", - "author_reputation": 38.97, - "beneficiaries": [], - "blacklists": [], - "body": "Yo!", - "category": "meta", - "children": 0, - "created": "2017-09-30T08:13:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-07T08:13:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170930t081242163z", - "post_id": 14135768, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-30T08:13:06", - "url": "/meta/@steemit/firstpost#@andrewwu/re-steemit-firstpost-20170930t081242163z" - }, - "angelsmith/re-steemit-firstpost-20171013t135507224z": { - "active_votes": [], - "author": "angelsmith", - "author_payout_value": "0.000 HBD", - "author_reputation": 30.91, - "beneficiaries": [], - "blacklists": [], - "body": "**i'm very happy cause join on steemit\ni hope my steem power be up day to day :))\nthank you steemit love you \nwe hope steemit the best forever **", - "category": "meta", - "children": 0, - "created": "2017-10-13T13:55:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-20T13:55:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171013t135507224z", - "post_id": 15224255, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-13T13:55:09", - "url": "/meta/@steemit/firstpost#@angelsmith/re-steemit-firstpost-20171013t135507224z" - }, - "anthonyadavisii/q5qlz5": { - "active_votes": [ - { - "rshares": "0", - "voter": "vladivostok" - }, - { - "rshares": "5362646982", - "voter": "ismailkah" - }, - { - "rshares": "14118816581", - "voter": "noblebot" - } - ], - "author": "anthonyadavisii", - "author_payout_value": "0.000 HBD", - "author_reputation": 71.04, - "beneficiaries": [], - "blacklists": [], - "body": "If the witnesses could fork out the StInc Stake before any attempted takeover. We may be able to make it though this. Based on the language in the article, I think it is highly probable and witnesses must act quickly.\n\nhttps://medium.com/@TronFoundation/steemit-joining-tron-ecosystem-6ad66584d0b", - "category": "meta", - "children": 0, - "created": "2020-02-15T09:49:21", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://medium.com/@TronFoundation/steemit-joining-tron-ecosystem-6ad66584d0b" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 19481463563, - "parent_author": "liberosist", - "parent_permlink": "q5pe3l", - "payout": 0.0, - "payout_at": "2020-02-22T09:49:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "q5qlz5", - "post_id": 84410600, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2020-02-15T09:49:21", - "url": "/meta/@steemit/firstpost#@anthonyadavisii/q5qlz5" - }, - "antoniodpz/re-steemit-firstpost-20171018t092916353z": { - "active_votes": [], - "author": "antoniodpz", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.04, - "beneficiaries": [], - "blacklists": [], - "body": "Good morning, please, I need to verify a transaction made in which I made a shipping error.\nI send my steem to a bitcoin portfolio in bittrex and I need my steem to be returned to my steemit portfolio, this is the transaction made\n\nyesterday\tTransfer 14.298 STEEM to bittrex\t1bNaaF85GokZCmWfoRRQPFkfEGeRaLoKe\n\n\nAppreciating the attention, greetings and thanks", - "category": "meta", - "children": 0, - "created": "2017-10-18T09:33:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-25T09:33:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171018t092916353z", - "post_id": 15559973, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-18T09:33:48", - "url": "/meta/@steemit/firstpost#@antoniodpz/re-steemit-firstpost-20171018t092916353z" - }, - "antoniodpz/re-steemit-firstpost-20171018t093612369z": { - "active_votes": [], - "author": "antoniodpz", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.04, - "beneficiaries": [], - "blacklists": [], - "body": "Good morning, please, I need to verify a transaction made in which I made a shipping error.\nI send my steem to a bitcoin portfolio in bittrex and I need my steem to be returned to my steemit portfolio, this is the transaction made\n\nyesterday\tTransfer 14.298 STEEM to bittrex\t1bNaaF85GokZCmWfoRRQPFkfEGeRaLoKe\n\n\nAppreciating the attention, greetings and thanks", - "category": "meta", - "children": 0, - "created": "2017-10-18T09:40:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-25T09:40:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171018t093612369z", - "post_id": 15560377, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-18T09:40:51", - "url": "/meta/@steemit/firstpost#@antoniodpz/re-steemit-firstpost-20171018t093612369z" - }, - "arisid/re-steemit-firstpost-20171228t092222655z": { - "active_votes": [], - "author": "arisid", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.36, - "beneficiaries": [], - "blacklists": [], - "body": "Hehe :)", - "category": "meta", - "children": 0, - "created": "2017-12-28T09:22:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-04T09:22:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171228t092222655z", - "post_id": 22327124, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-28T09:22:21", - "url": "/meta/@steemit/firstpost#@arisid/re-steemit-firstpost-20171228t092222655z" - }, - "ashirkhan/re-teamslovenia-komentar-teamslovenia-firstpost-20181129t104734328z": { - "active_votes": [], - "author": "ashirkhan", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "hello i accidently transfer some of my steem $ to bittrex without memo thats why they arent transferd in my bittrex account.please undo that transfer.", - "category": "meta", - "children": 0, - "created": "2018-11-29T10:47:39", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "teamslovenia", - "parent_permlink": "komentar-teamslovenia-firstpost", - "payout": 0.0, - "payout_at": "2018-12-06T10:47:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-teamslovenia-komentar-teamslovenia-firstpost-20181129t104734328z", - "post_id": 66745937, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-11-29T10:47:39", - "url": "/meta/@steemit/firstpost#@ashirkhan/re-teamslovenia-komentar-teamslovenia-firstpost-20181129t104734328z" - }, - "awaismuneeb1/re-steemit-firstpost-20170801t133500933z": { - "active_votes": [], - "author": "awaismuneeb1", - "author_payout_value": "0.000 HBD", - "author_reputation": 31.15, - "beneficiaries": [], - "blacklists": [], - "body": "thanks to give us a grate plateform", - "category": "meta", - "children": 0, - "created": "2017-08-01T13:34:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-08T13:34:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170801t133500933z", - "post_id": 8906124, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-01T13:34:48", - "url": "/meta/@steemit/firstpost#@awaismuneeb1/re-steemit-firstpost-20170801t133500933z" - }, - "ayakashi145/re-steemit-firstpost-20171117t023134234z": { - "active_votes": [ - { - "rshares": "365571166", - "voter": "zihad71" - } - ], - "author": "ayakashi145", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.59, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is wonderful, its a bit difficult to be noticed in the beggining but for places like Venezuela with the spiral sinking economy its really a life saver, just a few $ can make the difference from being dead or not... thanks for making this page \u2665", - "category": "meta", - "children": 0, - "created": "2017-11-17T02:28:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 365571166, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-24T02:28:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171117t023134234z", - "post_id": 17911755, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-17T02:28:42", - "url": "/meta/@steemit/firstpost#@ayakashi145/re-steemit-firstpost-20171117t023134234z" - }, - "azeemprime/re-stackin-re-steemit-firstpost-20180320t060223173z": { - "active_votes": [], - "author": "azeemprime", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.27, - "beneficiaries": [], - "blacklists": [], - "body": "Guys lets work together to earn faster VIA UPVOTE , FOllowing", - "category": "meta", - "children": 0, - "created": "2018-03-20T06:02:27", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-03-27T06:02:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180320t060223173z", - "post_id": 39546140, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-20T06:02:27", - "url": "/meta/@steemit/firstpost#@azeemprime/re-stackin-re-steemit-firstpost-20180320t060223173z" - }, - "azizbd/re-steemit-firstpost-20171121t172708558z": { - "active_votes": [ - { - "rshares": "459779279", - "voter": "supreme" - }, - { - "rshares": "2483103219248", - "voter": "adsactly" - }, - { - "rshares": "424803787", - "voter": "stea90" - }, - { - "rshares": "597047237", - "voter": "hopehuggs" - }, - { - "rshares": "301241101", - "voter": "anwarabdullah" - }, - { - "rshares": "962504981", - "voter": "raserrano" - }, - { - "rshares": "626279373", - "voter": "protoken" - }, - { - "rshares": "650596792", - "voter": "yukimaru" - }, - { - "rshares": "18393905562", - "voter": "dreamarif" - }, - { - "rshares": "3542986742", - "voter": "arie.steem" - } - ], - "author": "azizbd", - "author_payout_value": "4.717 HBD", - "author_reputation": 73.4, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks steemit for changing lives.", - "category": "meta", - "children": 0, - "created": "2017-11-21T17:27:09", - "curator_payout_value": "1.420 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 2509062364102, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 6.137, - "payout_at": "2017-11-28T17:27:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171121t172708558z", - "post_id": 18338769, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 10 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-21T17:27:09", - "url": "/meta/@steemit/firstpost#@azizbd/re-steemit-firstpost-20171121t172708558z" - }, - "azizbd/re-steemit-firstpost-20180626t203416280z": { - "active_votes": [ - { - "rshares": "1372446329208", - "voter": "adsactly" - }, - { - "rshares": "21012862561", - "voter": "geke" - }, - { - "rshares": "1280288852", - "voter": "raserrano" - }, - { - "rshares": "4380206366", - "voter": "osm0sis" - }, - { - "rshares": "13924820784", - "voter": "ashleykalila" - }, - { - "rshares": "6213257002", - "voter": "hafiz34" - }, - { - "rshares": "4649690671", - "voter": "sbi4" - } - ], - "author": "azizbd", - "author_payout_value": "3.394 HBD", - "author_reputation": 73.4, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you very much for the amazing platform. <3", - "category": "meta", - "children": 0, - "created": "2018-06-26T20:36:42", - "curator_payout_value": "0.118 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1423907455444, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 3.512, - "payout_at": "2018-07-03T20:36:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180626t203416280z", - "post_id": 54491475, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 7 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-26T20:36:42", - "url": "/meta/@steemit/firstpost#@azizbd/re-steemit-firstpost-20180626t203416280z" - }, - "bahagia-arbi/re-murizalalhabsyi-2017824t133949978z": { - "active_votes": [], - "author": "bahagia-arbi", - "author_payout_value": "0.000 HBD", - "author_reputation": 67.1, - "beneficiaries": [ - { - "account": "esteemapp", - "weight": 500 - } - ], - "blacklists": [], - "body": "I followed younalready. Thanks", - "category": "meta", - "children": 0, - "created": "2017-08-24T06:39:51", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "esteem/1.4.6", - "community": "esteem", - "format": "markdown+html", - "tags": "meta" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "murizalalhabsyi", - "parent_permlink": "re-bahagia-arbi-re-steemit-firstpost-20170824t062537081z", - "payout": 0.0, - "payout_at": "2017-08-31T06:39:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-murizalalhabsyi-2017824t133949978z", - "post_id": 10923010, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T06:39:51", - "url": "/meta/@steemit/firstpost#@bahagia-arbi/re-murizalalhabsyi-2017824t133949978z" - }, - "bahagia-arbi/re-steemit-firstpost-20170824t062329396z": { - "active_votes": [ - { - "rshares": "431268173", - "voter": "samuraiz" - } - ], - "author": "bahagia-arbi", - "author_payout_value": "0.000 HBD", - "author_reputation": 67.1, - "beneficiaries": [], - "blacklists": [], - "body": "Hello @steemit, I am a new bie here. I hope you can support me. Thanks a lot.\nRegard from Bireuen, Aceh, Indonesia.\n\n@bahagia-arbi", - "category": "meta", - "children": 2, - "created": "2017-08-24T06:24:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "bahagia-arbi" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 431268173, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-31T06:24:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170824t062329396z", - "post_id": 10922114, - "promoted": "0.000 HBD", - "replies": [ - "murizalalhabsyi/re-bahagia-arbi-re-steemit-firstpost-20170824t062537081z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T06:24:03", - "url": "/meta/@steemit/firstpost#@bahagia-arbi/re-steemit-firstpost-20170824t062329396z" - }, - "bangrully/re-steemit-firstpost-20180203t025920037z": { - "active_votes": [ - { - "rshares": "230427461", - "voter": "successmindset" - } - ], - "author": "bangrully", - "author_payout_value": "0.000 HBD", - "author_reputation": 51.2, - "beneficiaries": [], - "blacklists": [], - "body": "I love this, always make me happy to write", - "category": "meta", - "children": 0, - "created": "2018-02-03T02:59:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 230427461, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-10T02:59:30", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180203t025920037z", - "post_id": 30040215, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-03T02:59:30", - "url": "/meta/@steemit/firstpost#@bangrully/re-steemit-firstpost-20180203t025920037z" - }, - "banjo/re-mahmudulhassan-steemit-firstpost-20180521t132452206z": { - "active_votes": [], - "author": "banjo", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.99, - "beneficiaries": [], - "blacklists": [], - "body": "

What is a communication facility?

\n", - "category": "meta", - "children": 0, - "created": "2018-05-21T13:25:15", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "freakazoid/0.0.4pre3", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "mahmudulhassan", - "parent_permlink": "re-steemit-firstpost-20180521t131958921z", - "payout": 0.0, - "payout_at": "2018-05-28T13:25:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-mahmudulhassan-steemit-firstpost-20180521t132452206z", - "post_id": 49598794, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-21T13:25:15", - "url": "/meta/@steemit/firstpost#@banjo/re-mahmudulhassan-steemit-firstpost-20180521t132452206z" - }, - "bestmalik/re-steemit-firstpost-20160726t035722561z": { - "active_votes": [ - { - "rshares": "7413824", - "voter": "cire81" - } - ], - "author": "bestmalik", - "author_payout_value": "0.000 HBD", - "author_reputation": 38.04, - "beneficiaries": [], - "blacklists": [], - "body": "GO STEEM !!!", - "category": "meta", - "children": 0, - "created": "2016-07-26T03:57:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 7413824, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160726t035722561z", - "post_id": 264599, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-26T03:57:24", - "url": "/meta/@steemit/firstpost#@bestmalik/re-steemit-firstpost-20160726t035722561z" - }, - "bien/re-steemit-firstpost-20180518t023359659z": { - "active_votes": [ - { - "rshares": "9860241618", - "voter": "bien" - }, - { - "rshares": "10401291418", - "voter": "purepinay" - }, - { - "rshares": "590508633", - "voter": "justicekoduah" - } - ], - "author": "bien", - "author_payout_value": "0.088 HBD", - "author_reputation": 68.39, - "beneficiaries": [], - "blacklists": [], - "body": "It really tell's the truth! steemit the only platform who gives best reward by posting!\n\nProud steemit user here \ud83d\ude0a\ud83d\ude0a", - "category": "meta", - "children": 0, - "created": "2018-05-18T02:34:00", - "curator_payout_value": "0.008 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 20852041669, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.096, - "payout_at": "2018-05-25T02:34:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180518t023359659z", - "post_id": 49075821, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-18T02:34:00", - "url": "/meta/@steemit/firstpost#@bien/re-steemit-firstpost-20180518t023359659z" - }, - "biophil/re-steemit-firstpost-20180523t031530422z": { - "active_votes": [ - { - "rshares": "612497550", - "voter": "baus85" - }, - { - "rshares": "251822202", - "voter": "brian-t-penguin" - }, - { - "rshares": "143431781", - "voter": "drakahn" - }, - { - "rshares": "568970876", - "voter": "bitterchocolate" - } - ], - "author": "biophil", - "author_payout_value": "0.000 HBD", - "author_reputation": 66.9, - "beneficiaries": [], - "blacklists": [], - "body": "Can't remember if I'd ever replied to this post. If not, here I go! It's been almost 2 years since I discovered steemit, and I hate to sound like a clich\u00e9, but it's quite seriously changed my life. Thanks all!", - "category": "meta", - "children": 0, - "created": "2018-05-23T03:15:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1576722409, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-05-30T03:15:30", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180523t031530422z", - "post_id": 49853463, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-23T03:15:30", - "url": "/meta/@steemit/firstpost#@biophil/re-steemit-firstpost-20180523t031530422z" - }, - "bitgenio/re-steemit-firstpost-20170624t025915571z": { - "active_votes": [ - { - "rshares": "1074072705", - "voter": "bitgenio" - } - ], - "author": "bitgenio", - "author_payout_value": "0.000 HBD", - "author_reputation": 29.79, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you \u270c\ufe0f", - "category": "meta", - "children": 0, - "created": "2017-06-24T02:59:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1074072705, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-01T02:59:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170624t025915571z", - "post_id": 4868519, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-24T02:59:21", - "url": "/meta/@steemit/firstpost#@bitgenio/re-steemit-firstpost-20170624t025915571z" - }, - "boomshikha/re-stackin-re-steemit-firstpost-20170825t013613361z": { - "active_votes": [ - { - "rshares": "14972677998", - "voter": "stackin" - }, - { - "rshares": "0", - "voter": "gomain" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - }, - { - "rshares": "0", - "voter": "mooncryption" - }, - { - "rshares": "0", - "voter": "ritikagupta" - }, - { - "rshares": "0", - "voter": "asherunderwood" - }, - { - "rshares": "0", - "voter": "sutter" - } - ], - "author": "boomshikha", - "author_payout_value": "0.044 HBD", - "author_reputation": 61.95, - "beneficiaries": [], - "blacklists": [], - "body": "Definitely is!! :)", - "category": "meta", - "children": 10, - "created": "2017-08-25T01:36:15", - "curator_payout_value": "0.014 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 14972677998, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.058, - "payout_at": "2017-09-01T01:36:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20170825t013613361z", - "post_id": 10997371, - "promoted": "0.000 HBD", - "replies": [ - "jackolanternbob/re-boomshikha-re-stackin-re-steemit-firstpost-20180116t031304296z", - "mominsdt/re-boomshikha-re-stackin-re-steemit-firstpost-20180204t150750239z", - "calebotamus/re-boomshikha-re-stackin-re-steemit-firstpost-20180223t211927175z", - "sutter/re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035133909z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-25T01:36:15", - "url": "/meta/@steemit/firstpost#@boomshikha/re-stackin-re-steemit-firstpost-20170825t013613361z" - }, - "brucebrownftw/re-steemit-firstpost-20170628t191735949z": { - "active_votes": [], - "author": "brucebrownftw", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.34, - "beneficiaries": [], - "blacklists": [], - "body": "Awesome! I love this. I am 100% IN.", - "category": "meta", - "children": 0, - "created": "2017-06-28T19:17:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-05T19:17:45", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170628t191735949z", - "post_id": 5452134, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-28T19:17:45", - "url": "/meta/@steemit/firstpost#@brucebrownftw/re-steemit-firstpost-20170628t191735949z" - }, - "brunotreves/re-steemit-firstpost-20170628t051745320z": { - "active_votes": [], - "author": "brunotreves", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.35, - "beneficiaries": [], - "blacklists": [], - "body": "wow, was this the first steem post ever?!", - "category": "meta", - "children": 0, - "created": "2017-06-28T05:18:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-05T05:18:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170628t051745320z", - "post_id": 5377244, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-28T05:18:27", - "url": "/meta/@steemit/firstpost#@brunotreves/re-steemit-firstpost-20170628t051745320z" - }, - "business/re-red-steemit-firstpost-2-20160713t083846149z": { - "active_votes": [ - { - "rshares": "724886327", - "voter": "patrick-g" - }, - { - "rshares": "0", - "voter": "setio" - } - ], - "author": "business", - "author_payout_value": "0.000 HBD", - "author_reputation": 61.02, - "beneficiaries": [], - "blacklists": [], - "body": "No way?", - "category": "meta", - "children": 0, - "created": "2016-07-13T08:38:48", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 724886327, - "parent_author": "red", - "parent_permlink": "steemit-firstpost-2", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-red-steemit-firstpost-2-20160713t083846149z", - "post_id": 66997, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-13T08:38:48", - "url": "/meta/@steemit/firstpost#@business/re-red-steemit-firstpost-2-20160713t083846149z" - }, - "business/re-steemit-firstpost-20160713t082910980z": { - "active_votes": [ - { - "rshares": "724886327", - "voter": "patrick-g" - }, - { - "rshares": "58854897335", - "voter": "business" - }, - { - "rshares": "628198247", - "voter": "graystone" - }, - { - "rshares": "256298401739", - "voter": "juneaugoldbuyer" - }, - { - "rshares": "28483434", - "voter": "gjhi4552201" - }, - { - "rshares": "226779353", - "voter": "steg" - }, - { - "rshares": "54017869", - "voter": "zelious" - }, - { - "rshares": "51109965", - "voter": "f1111111" - } - ], - "author": "business", - "author_payout_value": "0.036 HBD", - "author_reputation": 61.02, - "beneficiaries": [], - "blacklists": [], - "body": "Welcome to steemit, @steemit.", - "category": "meta", - "children": 2, - "created": "2016-07-13T08:29:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 316866774269, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.036, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160713t082910980z", - "post_id": 66957, - "promoted": "0.000 HBD", - "replies": [ - "crypto-guru/re-business-re-steemit-firstpost-20170827t191427486z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 8 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-13T08:29:36", - "url": "/meta/@steemit/firstpost#@business/re-steemit-firstpost-20160713t082910980z" - }, - "bwashington1/re-steemit-firstpost-20180120t082229739z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "bwashington1", - "author_payout_value": "0.000 HBD", - "author_reputation": 20.82, - "beneficiaries": [], - "blacklists": [], - "body": "steemit is a phenomenal idea. i love how everyone can share their information and get the value they deserve. awesome idea", - "category": "meta", - "children": 0, - "created": "2018-01-20T08:22:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-27T08:22:33", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180120t082229739z", - "post_id": 26787660, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-20T08:22:33", - "url": "/meta/@steemit/firstpost#@bwashington1/re-steemit-firstpost-20180120t082229739z" - }, - "calebotamus/re-boomshikha-re-stackin-re-steemit-firstpost-20180223t211927175z": { - "active_votes": [ - { - "rshares": "2840207519", - "voter": "boomshikha" - } - ], - "author": "calebotamus", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.77, - "beneficiaries": [], - "blacklists": [], - "body": "Giving thank for @steemit just gotta say there are some brilliant peeps out here! Check @calebotamus fo some good vibes", - "category": "meta", - "children": 0, - "created": "2018-02-23T21:19:36", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "calebotamus" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 2840207519, - "parent_author": "boomshikha", - "parent_permlink": "re-stackin-re-steemit-firstpost-20170825t013613361z", - "payout": 0.0, - "payout_at": "2018-03-02T21:19:36", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-boomshikha-re-stackin-re-steemit-firstpost-20180223t211927175z", - "post_id": 34781740, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-23T21:19:36", - "url": "/meta/@steemit/firstpost#@calebotamus/re-boomshikha-re-stackin-re-steemit-firstpost-20180223t211927175z" - }, - "calebotamus/re-stackin-re-steemit-firstpost-20180223t211655533z": { - "active_votes": [ - { - "rshares": "0", - "voter": "ritikagupta" - } - ], - "author": "calebotamus", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.77, - "beneficiaries": [], - "blacklists": [], - "body": "Jah love @steemit thanks for the beautiful platform for these beautiful people to express themselves and share information ! \ud83d\ude0d And love! Check out @calebotamus loving you", - "category": "meta", - "children": 1, - "created": "2018-02-23T21:17:06", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "calebotamus" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-03-02T21:17:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180223t211655533z", - "post_id": 34781375, - "promoted": "0.000 HBD", - "replies": [ - "ritikagupta/re-calebotamus-re-stackin-re-steemit-firstpost-20180522t062710046z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-23T21:17:06", - "url": "/meta/@steemit/firstpost#@calebotamus/re-stackin-re-steemit-firstpost-20180223t211655533z" - }, - "chaseburnett/re-stackin-re-steemit-firstpost-20180213t001539171z": { - "active_votes": [ - { - "rshares": "0", - "voter": "ritikagupta" - } - ], - "author": "chaseburnett", - "author_payout_value": "0.000 HBD", - "author_reputation": 59.01, - "beneficiaries": [], - "blacklists": [], - "body": "Definitely! Hope everyone enjoys my photography and adventures in Alaska :)", - "category": "meta", - "children": 1, - "created": "2018-02-13T00:15:42", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-02-20T00:15:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180213t001539171z", - "post_id": 32230692, - "promoted": "0.000 HBD", - "replies": [ - "ritikagupta/re-chaseburnett-re-stackin-re-steemit-firstpost-20180522t062303683z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-13T00:15:42", - "url": "/meta/@steemit/firstpost#@chaseburnett/re-stackin-re-steemit-firstpost-20180213t001539171z" - }, - "chaseburnett/re-steemit-firstpost-20180213t001454596z": { - "active_votes": [ - { - "rshares": "1071498185", - "voter": "resteemy" - } - ], - "author": "chaseburnett", - "author_payout_value": "0.000 HBD", - "author_reputation": 59.01, - "beneficiaries": [], - "blacklists": [], - "body": "Really excited to be a part of this community. Ready to share my photography and exploration of Alaska. I hope you enjoy it :)", - "category": "meta", - "children": 1, - "created": "2018-02-13T00:14:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1071498185, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-20T00:14:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180213t001454596z", - "post_id": 32230571, - "promoted": "0.000 HBD", - "replies": [ - "resteemy/20180213t002053776z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-13T00:14:57", - "url": "/meta/@steemit/firstpost#@chaseburnett/re-steemit-firstpost-20180213t001454596z" - }, - "chirstonawba/chirstonawba-re-steemit-firstpost-20190408t011441217z": { - "active_votes": [ - { - "rshares": "-52059157119", - "voter": "mack-bot" - }, - { - "rshares": "1749840108", - "voter": "chirstonawba" - } - ], - "author": "chirstonawba", - "author_payout_value": "0.000 HBD", - "author_reputation": 8.17, - "beneficiaries": [], - "blacklists": [], - "body": "It's amazing to be on Steemit\n\nPosted using [Partiko Android](https://partiko.app/referral/chirstonawba)", - "category": "meta", - "children": 0, - "created": "2019-04-08T01:14:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "partiko", - "client": "android" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": -50309317011, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-04-15T01:14:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "chirstonawba-re-steemit-firstpost-20190408t011441217z", - "post_id": 72704719, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 1.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-04-08T01:14:42", - "url": "/meta/@steemit/firstpost#@chirstonawba/chirstonawba-re-steemit-firstpost-20190408t011441217z" - }, - "cliffblank/re-steemit-firstpost-20180213t002542693z": { - "active_votes": [], - "author": "cliffblank", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.53, - "beneficiaries": [], - "blacklists": [], - "body": "Is there a suggestions account? I'd like to see DELEGATED, UNDELEGATED and TOTAL amounts separated out in the Steem Power section of the wallet page.\n\nhttps://i.imgur.com/maaT3NC.png", - "category": "meta", - "children": 0, - "created": "2018-02-13T00:25:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://i.imgur.com/maaT3NC.png" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-20T00:25:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180213t002542693z", - "post_id": 32232291, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-13T00:25:39", - "url": "/meta/@steemit/firstpost#@cliffblank/re-steemit-firstpost-20180213t002542693z" - }, - "clixmoney/re-steemit-firstpost-20170707t115721315z": { - "active_votes": [ - { - "rshares": "220649334", - "voter": "aung" - } - ], - "author": "clixmoney", - "author_payout_value": "0.000 HBD", - "author_reputation": 76.22, - "beneficiaries": [], - "blacklists": [], - "body": "very good and amazing idea \u263a", - "category": "meta", - "children": 0, - "created": "2017-07-07T11:57:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 220649334, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-14T11:57:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170707t115721315z", - "post_id": 6437500, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-07T11:57:27", - "url": "/meta/@steemit/firstpost#@clixmoney/re-steemit-firstpost-20170707t115721315z" - }, - "clumsysilverdad/re-steemit-firstpost-20180202t230332954z": { - "active_votes": [ - { - "rshares": "16569456339", - "voter": "sjennon" - }, - { - "rshares": "56579138582", - "voter": "xervantes" - }, - { - "rshares": "2678198275", - "voter": "chicosonico" - }, - { - "rshares": "4780694365", - "voter": "clumsysilverdad" - } - ], - "author": "clumsysilverdad", - "author_payout_value": "0.446 HBD", - "author_reputation": 64.89, - "beneficiaries": [], - "blacklists": [], - "body": "That's cool Mr. Steemit / We are having a blast on the STEEM blockchain ///\n\nPEACE !!!", - "category": "meta", - "children": 0, - "created": "2018-02-02T23:03:27", - "curator_payout_value": "0.066 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 80607487561, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.512, - "payout_at": "2018-02-09T23:03:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180202t230332954z", - "post_id": 30009210, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-02T23:04:36", - "url": "/meta/@steemit/firstpost#@clumsysilverdad/re-steemit-firstpost-20180202t230332954z" - }, - "coincentral/re-steemit-firstpost-20170808t130440146z": { - "active_votes": [], - "author": "coincentral", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.66, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks for your role in making Steem! @coincentral has launched on Steem with a unique eco-subsystem of services to increase the liquidity, security and profitability of Steem assets and 40+ cryptocoins!", - "category": "meta", - "children": 0, - "created": "2017-08-08T13:04:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "coincentral" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-15T13:04:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170808t130440146z", - "post_id": 9565131, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-08T13:04:51", - "url": "/meta/@steemit/firstpost#@coincentral/re-steemit-firstpost-20170808t130440146z" - }, - "coldhair/re-steemit-firstpost-20171011t025314464z": { - "active_votes": [ - { - "rshares": "220516110037", - "voter": "coinbitgold" - }, - { - "rshares": "318344612107", - "voter": "penguinpablo" - }, - { - "rshares": "222167739707", - "voter": "coldhair" - }, - { - "rshares": "13256183898", - "voter": "shenchensucc" - }, - { - "rshares": "426589071", - "voter": "aabb" - }, - { - "rshares": "4656964679", - "voter": "powerfj" - }, - { - "rshares": "5039234807", - "voter": "kp138" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "coldhair", - "author_payout_value": "1.702 HBD", - "author_reputation": 65.85, - "beneficiaries": [], - "blacklists": [], - "body": "If Steemit goes well, everything will be changed in our world.", - "category": "meta", - "children": 0, - "created": "2017-10-11T02:53:15", - "curator_payout_value": "0.201 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 784407434306, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 1.903, - "payout_at": "2017-10-18T02:53:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171011t025314464z", - "post_id": 15017863, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 7 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-11T02:53:15", - "url": "/meta/@steemit/firstpost#@coldhair/re-steemit-firstpost-20171011t025314464z" - }, - "conscalisthenics/re-steemit-firstpost-20180414t021254524z": { - "active_votes": [ - { - "rshares": "10743371262", - "voter": "daltono" - }, - { - "rshares": "470883131", - "voter": "conscalisthenics" - } - ], - "author": "conscalisthenics", - "author_payout_value": "0.043 HBD", - "author_reputation": 48.4, - "beneficiaries": [], - "blacklists": [], - "body": "Man i love steemit thanks for creating this!", - "category": "meta", - "children": 0, - "created": "2018-04-14T02:12:54", - "curator_payout_value": "0.008 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 11214254393, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.051, - "payout_at": "2018-04-21T02:12:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180414t021254524z", - "post_id": 43484396, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-14T02:12:54", - "url": "/meta/@steemit/firstpost#@conscalisthenics/re-steemit-firstpost-20180414t021254524z" - }, - "cookntell/re-steemit-firstpost-20180520t105636268z": { - "active_votes": [ - { - "rshares": "5249627537", - "voter": "sbi4" - }, - { - "rshares": "549372307", - "voter": "beetlevc" - } - ], - "author": "cookntell", - "author_payout_value": "0.022 HBD", - "author_reputation": 64.65, - "beneficiaries": [], - "blacklists": [], - "body": "Proud to be here! :-) What an awesome community!!!! :-)", - "category": "meta", - "children": 0, - "created": "2018-05-20T10:56:39", - "curator_payout_value": "0.002 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 5798999844, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.024, - "payout_at": "2018-05-27T10:56:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180520t105636268z", - "post_id": 49425406, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-20T10:56:39", - "url": "/meta/@steemit/firstpost#@cookntell/re-steemit-firstpost-20180520t105636268z" - }, - "correctdrop/re-steemit-firstpost-20170624t021339008z": { - "active_votes": [], - "author": "correctdrop", - "author_payout_value": "0.000 HBD", - "author_reputation": 8.43, - "beneficiaries": [], - "blacklists": [], - "body": "I love this platform!", - "category": "meta", - "children": 0, - "created": "2017-06-24T02:13:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-01T02:13:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170624t021339008z", - "post_id": 4865275, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-24T02:13:39", - "url": "/meta/@steemit/firstpost#@correctdrop/re-steemit-firstpost-20170624t021339008z" - }, - "creon/re-steemit-firstpost-20171016t040402189z": { - "active_votes": [], - "author": "creon", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.01, - "beneficiaries": [], - "blacklists": [], - "body": "Hi, I need steemit power, not just for myself but to help fellow steemians have better experience on steemit.. Can't power up because I haven't made enough sbd to power up and I hardly get votes... Please send me power up you hardly us the one you have", - "category": "meta", - "children": 0, - "created": "2017-10-16T04:04:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-23T04:04:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171016t040402189z", - "post_id": 15412550, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-16T04:04:09", - "url": "/meta/@steemit/firstpost#@creon/re-steemit-firstpost-20171016t040402189z" - }, - "cresh/re-steemit-firstpost-20170726t080227814z": { - "active_votes": [], - "author": "cresh", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "I love Steemit, great content. I wish I could get as much Steem power as you guys.", - "category": "meta", - "children": 0, - "created": "2017-07-26T08:02:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-02T08:02:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170726t080227814z", - "post_id": 8327316, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-26T08:02:39", - "url": "/meta/@steemit/firstpost#@cresh/re-steemit-firstpost-20170726t080227814z" - }, - "crypto-guru/re-business-re-steemit-firstpost-20170827t191427486z": { - "active_votes": [], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "Welcome", - "category": "meta", - "children": 1, - "created": "2017-08-27T19:11:15", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "business", - "parent_permlink": "re-steemit-firstpost-20160713t082910980z", - "payout": 0.0, - "payout_at": "2017-09-03T19:11:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-business-re-steemit-firstpost-20170827t191427486z", - "post_id": 11224335, - "promoted": "0.000 HBD", - "replies": [ - "joshvel/re-crypto-guru-re-business-re-steemit-firstpost-20170921t061421507z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:11:15", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-business-re-steemit-firstpost-20170827t191427486z" - }, - "crypto-guru/re-kingtylervvs-re-steemit-firstpost-20170827t190850388z": { - "active_votes": [], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "The more I dig into STEEM, the more wonders I find.... There is no end to learning and having fun..", - "category": "meta", - "children": 0, - "created": "2017-08-27T19:05:39", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "kingtylervvs", - "parent_permlink": "re-steemit-firstpost-20160720t121101482z", - "payout": 0.0, - "payout_at": "2017-09-03T19:05:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-kingtylervvs-re-steemit-firstpost-20170827t190850388z", - "post_id": 11223953, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:05:39", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-kingtylervvs-re-steemit-firstpost-20170827t190850388z" - }, - "crypto-guru/re-sornprar-re-ackza-re-sornprar-re-steemit-firstpost-20170827t191230930z": { - "active_votes": [], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "Are you one of the developers?", - "category": "meta", - "children": 0, - "created": "2017-08-27T19:09:21", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "sornprar", - "parent_permlink": "re-ackza-re-sornprar-re-steemit-firstpost-20170813t135846925z", - "payout": 0.0, - "payout_at": "2017-09-03T19:09:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-sornprar-re-ackza-re-sornprar-re-steemit-firstpost-20170827t191230930z", - "post_id": 11224205, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:09:21", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-sornprar-re-ackza-re-sornprar-re-steemit-firstpost-20170827t191230930z" - }, - "crypto-guru/re-sornprar-re-steemit-firstpost-20170827t191032679z": { - "active_votes": [], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "Comments can go so deep, never thought about it....", - "category": "meta", - "children": 0, - "created": "2017-08-27T19:07:21", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "sornprar", - "parent_permlink": "re-steemit-firstpost-20170704t204851481z", - "payout": 0.0, - "payout_at": "2017-09-03T19:07:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-sornprar-re-steemit-firstpost-20170827t191032679z", - "post_id": 11224067, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:07:21", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-sornprar-re-steemit-firstpost-20170827t191032679z" - }, - "crypto-guru/re-sornprar-re-steemit-firstpost-20170827t191328874z": { - "active_votes": [], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "What is bot?", - "category": "meta", - "children": 0, - "created": "2017-08-27T19:10:18", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "sornprar", - "parent_permlink": "re-steemit-firstpost-20170704t204851481z", - "payout": 0.0, - "payout_at": "2017-09-03T19:10:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-sornprar-re-steemit-firstpost-20170827t191328874z", - "post_id": 11224269, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:10:18", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-sornprar-re-steemit-firstpost-20170827t191328874z" - }, - "crypto-guru/re-stackin-re-mammasitta-re-steemit-firstpost-20170827t191608007z": { - "active_votes": [], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "Commenting is, of course, better than not commenting... :)", - "category": "meta", - "children": 0, - "created": "2017-08-27T19:12:57", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-mammasitta-re-steemit-firstpost-20170824t234608820z", - "payout": 0.0, - "payout_at": "2017-09-03T19:12:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-mammasitta-re-steemit-firstpost-20170827t191608007z", - "post_id": 11224445, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:12:57", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-stackin-re-mammasitta-re-steemit-firstpost-20170827t191608007z" - }, - "crypto-guru/re-stackin-re-steemit-firstpost-20170827t190543739z": { - "active_votes": [ - { - "rshares": "0", - "voter": "ritikagupta" - } - ], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "Yes, indeed, it is amazing.", - "category": "meta", - "children": 1, - "created": "2017-08-27T19:02:33", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2017-09-03T19:02:33", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20170827t190543739z", - "post_id": 11223748, - "promoted": "0.000 HBD", - "replies": [ - "ritikagupta/re-crypto-guru-re-stackin-re-steemit-firstpost-20180522t062351778z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:02:33", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-stackin-re-steemit-firstpost-20170827t190543739z" - }, - "crypto-guru/re-steemit-firstpost-20170827t190510082z": { - "active_votes": [], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "It's really a great fun, wonderful and amazing to be here at Steemit....\nhttp://www.hdwallpaperspulse.com/wp-content/uploads/2016/05/19/high-resolution-amazing-image.jpeg", - "category": "meta", - "children": 0, - "created": "2017-08-27T19:01:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "http://www.hdwallpaperspulse.com/wp-content/uploads/2016/05/19/high-resolution-amazing-image.jpeg" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-03T19:01:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170827t190510082z", - "post_id": 11223700, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:01:57", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-steemit-firstpost-20170827t190510082z" - }, - "crypto-p/re-valueup-re-steemit-firstpost-20170619t185901457z": { - "active_votes": [ - { - "rshares": "188687636530", - "voter": "crypto-p" - } - ], - "author": "crypto-p", - "author_payout_value": "3.564 HBD", - "author_reputation": 67.36, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you for sharing this, following you", - "category": "meta", - "children": 0, - "created": "2017-06-19T18:59:03", - "curator_payout_value": "0.010 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 188687636530, - "parent_author": "valueup", - "parent_permlink": "re-steemit-firstpost-20170619t152843513z", - "payout": 3.574, - "payout_at": "2017-06-26T18:59:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-valueup-re-steemit-firstpost-20170619t185901457z", - "post_id": 4367388, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-19T18:59:03", - "url": "/meta/@steemit/firstpost#@crypto-p/re-valueup-re-steemit-firstpost-20170619t185901457z" - }, - "cryptoaltcoin/re-steemit-firstpost-20180131t211925372z": { - "active_votes": [ - { - "rshares": "1252842354", - "voter": "cryptoaltcoin" - }, - { - "rshares": "224282729", - "voter": "successmindset" - } - ], - "author": "cryptoaltcoin", - "author_payout_value": "0.000 HBD", - "author_reputation": 46.96, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you!", - "category": "meta", - "children": 0, - "created": "2018-01-31T21:19:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1477125083, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-07T21:19:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180131t211925372z", - "post_id": 29520843, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-31T21:19:24", - "url": "/meta/@steemit/firstpost#@cryptoaltcoin/re-steemit-firstpost-20180131t211925372z" - }, - "cryptonegocios/re-steemit-firstpost-20180507t174657616z": { - "active_votes": [ - { - "rshares": "166190514460", - "voter": "cryptonegocios" - } - ], - "author": "cryptonegocios", - "author_payout_value": "0.750 HBD", - "author_reputation": 45.31, - "beneficiaries": [], - "blacklists": [], - "body": "Realmente me asombra el poder de votaci\u00f3n que tienen, Estoy trabajando en difundir Steemit en espa\u00f1ol, espero me puedan apoyar con un Voto\n![Steemit_Canal_Cryptonegocios.jpg](https://steemitimages.com/DQmNWu9xE1H5NwZ9P1jwX1PZvYLjf6TdPpxKPtqc2CKwxuN/Steemit_Canal_Cryptonegocios.jpg)", - "category": "meta", - "children": 0, - "created": "2018-05-07T17:46:57", - "curator_payout_value": "0.011 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmNWu9xE1H5NwZ9P1jwX1PZvYLjf6TdPpxKPtqc2CKwxuN/Steemit_Canal_Cryptonegocios.jpg" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 166190514460, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.761, - "payout_at": "2018-05-14T17:46:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180507t174657616z", - "post_id": 47422363, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-07T17:49:06", - "url": "/meta/@steemit/firstpost#@cryptonegocios/re-steemit-firstpost-20180507t174657616z" - }, - "cryptoscout/re-steemit-firstpost-20180220t082425531z": { - "active_votes": [], - "author": "cryptoscout", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.67, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit I have had an exciting an meeningfull time on steemit in the past 30 day's and learned a lot. \n\nEstimated Account Value\nThe estimated value is based on an average value of Steem in US dollars.\n$234,335,385.93\n\nI was amaized by this figure and hope to achieve somewhat a tenth of that equivelant. Thank you for this amaizing platform and the invative thinking to create such a network.", - "category": "meta", - "children": 0, - "created": "2018-02-20T08:24:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-27T08:24:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180220t082425531z", - "post_id": 33946075, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-20T08:24:24", - "url": "/meta/@steemit/firstpost#@cryptoscout/re-steemit-firstpost-20180220t082425531z" - }, - "cryptosharon/re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180420t083613598z": { - "active_votes": [], - "author": "cryptosharon", - "author_payout_value": "0.000 HBD", - "author_reputation": 69.25, - "beneficiaries": [], - "blacklists": [], - "body": "What about it?", - "category": "meta", - "children": 2, - "created": "2018-04-20T08:36:12", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "jackolanternbob", - "parent_permlink": "re-boomshikha-re-stackin-re-steemit-firstpost-20180116t031304296z", - "payout": 0.0, - "payout_at": "2018-04-27T08:36:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180420t083613598z", - "post_id": 44486676, - "promoted": "0.000 HBD", - "replies": [ - "jackolanternbob/re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180718t002453741z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-20T08:36:12", - "url": "/meta/@steemit/firstpost#@cryptosharon/re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180420t083613598z" - }, - "cryptospeaker/re-steemit-firstpost-20171101t121036602z": { - "active_votes": [], - "author": "cryptospeaker", - "author_payout_value": "0.000 HBD", - "author_reputation": 28.93, - "beneficiaries": [], - "blacklists": [], - "body": "The new green CI don't look good. sorry!!", - "category": "meta", - "children": 0, - "created": "2017-11-01T12:10:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-08T12:10:36", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171101t121036602z", - "post_id": 16613942, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-01T12:10:36", - "url": "/meta/@steemit/firstpost#@cryptospeaker/re-steemit-firstpost-20171101t121036602z" - }, - "cyberspace/re-steemit-firstpost-20170719t102745698z": { - "active_votes": [ - { - "rshares": "0", - "voter": "stealthtrader" - }, - { - "rshares": "1474318760832", - "voter": "sponge-bob" - }, - { - "rshares": "12097822971", - "voter": "vmsolutionsltd" - }, - { - "rshares": "1029095452", - "voter": "charitywater" - }, - { - "rshares": "0", - "voter": "cyberspace" - }, - { - "rshares": "0", - "voter": "faridrizkia" - }, - { - "rshares": "0", - "voter": "kevca16" - }, - { - "rshares": "0", - "voter": "drtarts" - }, - { - "rshares": "0", - "voter": "rubyjunk" - } - ], - "author": "cyberspace", - "author_payout_value": "7.455 HBD", - "author_reputation": 51.03, - "beneficiaries": [], - "blacklists": [], - "body": "@Steemit @Freedom @Steem @Dan @Ned @blocktrades @val-a @mottler @abit @databass @hendrikdegrote @jamesc @ben @michael-b @val-b @ranchorelaxo @proskynneo @thejohalfiles @smooth @xeldal @roadscape @created @arhag @jamesc1 @michael-a @sponge-bob\n\nDear Founders and Power Whales,\nI am trying to raise some \"VC\" Steem Power and invite you to:\n1. See my [Introduceyourself post](https://steemit.com/introduceyourself/@cyberspace/introduce-yourself-first-post-by-cyberspace) and then \n2. Invest in @Cyberspace by delegating any amount of Steem Power you see fit. \n\nThanks in advance for your support in any form be that SP, STEEM, SBD or some good pointers/links!\n\n@Cyberspace", - "category": "meta", - "children": 1, - "created": "2017-07-19T10:28:03", - "curator_payout_value": "0.094 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://steemit.com/introduceyourself/@cyberspace/introduce-yourself-first-post-by-cyberspace" - ], - "tags": [ - "meta" - ], - "users": [ - "steemit", - "freedom", - "steem", - "dan", - "ned", - "blocktrades", - "val-a", - "mottler", - "abit", - "databass", - "hendrikdegrote", - "jamesc", - "ben", - "michael-b", - "val-b", - "ranchorelaxo", - "proskynneo", - "thejohalfiles", - "smooth", - "xeldal", - "roadscape", - "created", - "arhag", - "jamesc1", - "michael-a", - "sponge-bob", - "cyberspace" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1487445679255, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 7.549, - "payout_at": "2017-07-26T10:28:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170719t102745698z", - "post_id": 7614076, - "promoted": "0.000 HBD", - "replies": [ - "faridrizkia/re-cyberspace-re-steemit-firstpost-20170826t105707517z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-19T13:05:09", - "url": "/meta/@steemit/firstpost#@cyberspace/re-steemit-firstpost-20170719t102745698z" - }, - "dan321/re-stackin-re-steemit-firstpost-20180304t105930825z": { - "active_votes": [ - { - "rshares": "0", - "voter": "ritikagupta" - } - ], - "author": "dan321", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.05, - "beneficiaries": [], - "blacklists": [], - "body": "I've forogot facebook ,since i use steem ! :D", - "category": "meta", - "children": 1, - "created": "2018-03-04T10:59:30", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-03-11T10:59:30", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180304t105930825z", - "post_id": 36592351, - "promoted": "0.000 HBD", - "replies": [ - "ritikagupta/re-dan321-re-stackin-re-steemit-firstpost-20180522t062950122z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-04T10:59:30", - "url": "/meta/@steemit/firstpost#@dan321/re-stackin-re-steemit-firstpost-20180304t105930825z" - }, - "dan321/re-steemit-firstpost-20180304t110205518z": { - "active_votes": [], - "author": "dan321", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.05, - "beneficiaries": [], - "blacklists": [], - "body": "Steem=best !", - "category": "meta", - "children": 0, - "created": "2018-03-04T11:02:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-11T11:02:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180304t110205518z", - "post_id": 36592735, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-04T11:02:03", - "url": "/meta/@steemit/firstpost#@dan321/re-steemit-firstpost-20180304t110205518z" - }, - "darknessprincess/re-steemit-firstpost-20170703t180707051z": { - "active_votes": [ - { - "rshares": "87052576", - "voter": "change4life" - } - ], - "author": "darknessprincess", - "author_payout_value": "0.000 HBD", - "author_reputation": 15.6, - "beneficiaries": [], - "blacklists": [], - "body": "Follow And upvotes my friends am new on @steemit am back All follows", - "category": "meta", - "children": 0, - "created": "2017-07-03T18:07:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 87052576, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-10T18:07:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170703t180707051z", - "post_id": 6031275, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-03T18:07:12", - "url": "/meta/@steemit/firstpost#@darknessprincess/re-steemit-firstpost-20170703t180707051z" - }, - "davidconstantine/re-steemit-firstpost-20171217t214103613z": { - "active_votes": [ - { - "rshares": "10174655868", - "voter": "elowin" - }, - { - "rshares": "46414283651", - "voter": "davidconstantine" - }, - { - "rshares": "2450642838", - "voter": "bonjovey" - }, - { - "rshares": "305050417", - "voter": "mzalevsky" - } - ], - "author": "davidconstantine", - "author_payout_value": "0.365 HBD", - "author_reputation": 54.27, - "beneficiaries": [], - "blacklists": [], - "body": "What a piece of history :)", - "category": "meta", - "children": 0, - "created": "2017-12-17T21:41:03", - "curator_payout_value": "0.003 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 59344632774, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.368, - "payout_at": "2017-12-24T21:41:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171217t214103613z", - "post_id": 20819414, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-17T21:41:03", - "url": "/meta/@steemit/firstpost#@davidconstantine/re-steemit-firstpost-20171217t214103613z" - }, - "davidfar/re-steemit-firstpost-20170702t182536878z": { - "active_votes": [], - "author": "davidfar", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.13, - "beneficiaries": [], - "blacklists": [], - "body": "Hi @steemit , Nice blog .", - "category": "meta", - "children": 0, - "created": "2017-07-02T18:25:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-09T18:25:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170702t182536878z", - "post_id": 5918062, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-02T18:25:39", - "url": "/meta/@steemit/firstpost#@davidfar/re-steemit-firstpost-20170702t182536878z" - }, - "dbudhrani/re-steemit-firstpost-20171030t161000488z": { - "active_votes": [], - "author": "dbudhrani", - "author_payout_value": "0.000 HBD", - "author_reputation": 37.26, - "beneficiaries": [], - "blacklists": [], - "body": "first post ever in steemit?", - "category": "meta", - "children": 0, - "created": "2017-10-30T16:10:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-06T16:10:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171030t161000488z", - "post_id": 16461538, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-30T16:10:00", - "url": "/meta/@steemit/firstpost#@dbudhrani/re-steemit-firstpost-20171030t161000488z" - }, - "deanliu/q7jdug": { - "active_votes": [], - "author": "deanliu", - "author_payout_value": "0.000 HBD", - "author_reputation": 78.31, - "beneficiaries": [], - "blacklists": [], - "body": "The first R.I.P. on the Hive chain.", - "category": "meta", - "children": 0, - "created": "2020-03-21T09:18:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "hiveblog/0.1" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2020-03-28T09:18:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "q7jdug", - "post_id": 85339963, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2020-03-21T09:18:18", - "url": "/meta/@steemit/firstpost#@deanliu/q7jdug" - }, - "deanliu/re-steemit-firstpost-20160810t083336206z": { - "active_votes": [ - { - "rshares": "74273734", - "voter": "bitmaxt" - }, - { - "rshares": "56152551", - "voter": "lovetosteemit" - }, - { - "rshares": "0", - "voter": "laodr" - } - ], - "author": "deanliu", - "author_payout_value": "0.000 HBD", - "author_reputation": 78.31, - "beneficiaries": [], - "blacklists": [], - "body": "is this post truly the time zero, the origin, the big bang of all?", - "category": "meta", - "children": 0, - "created": "2016-08-10T08:33:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 130426285, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160810t083336206z", - "post_id": 537479, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-10T08:33:54", - "url": "/meta/@steemit/firstpost#@deanliu/re-steemit-firstpost-20160810t083336206z" - }, - "debart/re-steemit-firstpost-20180212t134609402z": { - "active_votes": [], - "author": "debart", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.12, - "beneficiaries": [], - "blacklists": [], - "body": "Hello I am a artist from South Africa, I have been making digital art for 3 years every day, I am trying out Steemit and would really appreciate your support with a Upvote or even a follow. have a super day @debart", - "category": "meta", - "children": 0, - "created": "2018-02-12T13:46:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "debart" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-19T13:46:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180212t134609402z", - "post_id": 32125321, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-12T13:46:09", - "url": "/meta/@steemit/firstpost#@debart/re-steemit-firstpost-20180212t134609402z" - }, - "decorations/re-steemit-firstpost-20170903t015605761z": { - "active_votes": [], - "author": "decorations", - "author_payout_value": "0.000 HBD", - "author_reputation": 39.78, - "beneficiaries": [], - "blacklists": [], - "body": "Really??! Just one post?. This account should be the reference for all of steemit users i hope that you will activate this account to help us understand the platform more . Thanks \ud83d\ude42", - "category": "meta", - "children": 0, - "created": "2017-09-03T01:56:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-10T01:56:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170903t015605761z", - "post_id": 11795302, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-03T01:56:09", - "url": "/meta/@steemit/firstpost#@decorations/re-steemit-firstpost-20170903t015605761z" - }, - "devkapoor423/devkapoor423-re-steemit-firstpost-20190104t114948233z": { - "active_votes": [ - { - "rshares": "0", - "voter": "raise-me-up" - } - ], - "author": "devkapoor423", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.05, - "beneficiaries": [], - "blacklists": [], - "body": "Really this is great information about this @steemit account and power of this whale account.\nThanks @themarkymark for sharing post about rich steemit power whales.\n\nPosted using [Partiko Android](https://steemit.com/@partiko-android)", - "category": "meta", - "children": 0, - "created": "2019-01-04T11:50:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "partiko" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-01-11T11:50:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "devkapoor423-re-steemit-firstpost-20190104t114948233z", - "post_id": 68345378, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-01-04T11:50:03", - "url": "/meta/@steemit/firstpost#@devkapoor423/devkapoor423-re-steemit-firstpost-20190104t114948233z" - }, - "diggerdugg/re-steemit-firstpost-20170706t210051540z": { - "active_votes": [], - "author": "diggerdugg", - "author_payout_value": "0.000 HBD", - "author_reputation": 54.81, - "beneficiaries": [], - "blacklists": [], - "body": "
Heeeeeeeeeeey. Are you still active, still around?? Have an awesome day
", - "category": "meta", - "children": 1, - "created": "2017-07-06T21:00:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-13T21:00:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170706t210051540z", - "post_id": 6377965, - "promoted": "0.000 HBD", - "replies": [ - "thephotoguide/re-diggerdugg-re-steemit-firstpost-20170706t212052448z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-06T21:00:54", - "url": "/meta/@steemit/firstpost#@diggerdugg/re-steemit-firstpost-20170706t210051540z" - }, - "dirtyhippie/re-steemit-firstpost-20180120t050024573z": { - "active_votes": [ - { - "rshares": "48252962509", - "voter": "newpioneer" - }, - { - "rshares": "0", - "voter": "rosynesn" - }, - { - "rshares": "580676561", - "voter": "mikeduck" - } - ], - "author": "dirtyhippie", - "author_payout_value": "0.432 HBD", - "author_reputation": 45.78, - "beneficiaries": [], - "blacklists": [], - "body": "What a wonderful platform. Hoping to build some steem power soon. Just getting started", - "category": "meta", - "children": 0, - "created": "2018-01-20T05:00:27", - "curator_payout_value": "0.120 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 48833639070, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.552, - "payout_at": "2018-01-27T05:00:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180120t050024573z", - "post_id": 26762204, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-20T05:00:27", - "url": "/meta/@steemit/firstpost#@dirtyhippie/re-steemit-firstpost-20180120t050024573z" - }, - "doubledeeyt/re-steemit-firstpost-20170705t060154298z": { - "active_votes": [], - "author": "doubledeeyt", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.18, - "beneficiaries": [], - "blacklists": [], - "body": "upvoted!", - "category": "meta", - "children": 0, - "created": "2017-07-05T06:01:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-12T06:01:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170705t060154298z", - "post_id": 6195580, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-05T06:01:54", - "url": "/meta/@steemit/firstpost#@doubledeeyt/re-steemit-firstpost-20170705t060154298z" - }, - "dreamm/re-steemit-firstpost-20171206t122126721z": { - "active_votes": [ - { - "rshares": "0", - "voter": "dreamm" - } - ], - "author": "dreamm", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.1, - "beneficiaries": [], - "blacklists": [], - "body": "It's amazing to be on Steemit \ud83d\ude4c\ud83c\udffc\ud83d\udcaa\ud83c\udffc\ud83d\udcaf", - "category": "meta", - "children": 0, - "created": "2017-12-06T12:21:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-13T12:21:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171206t122126721z", - "post_id": 19618966, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-06T12:21:27", - "url": "/meta/@steemit/firstpost#@dreamm/re-steemit-firstpost-20171206t122126721z" - }, - "dtubix/re-firstpost-53": { - "active_votes": [ - { - "rshares": "58499262", - "voter": "alexisimperial" - } - ], - "author": "dtubix", - "author_payout_value": "0.000 HBD", - "author_reputation": 38.85, - "beneficiaries": [], - "blacklists": [], - "body": "Cool! I follow you. ", - "category": "meta", - "children": 0, - "created": "2018-02-24T04:16:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 58499262, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-03T04:16:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-firstpost-53", - "post_id": 34826874, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-24T04:16:06", - "url": "/meta/@steemit/firstpost#@dtubix/re-firstpost-53" - }, - "dylanhobalart/re-stackin-re-steemit-firstpost-20180116t065239526z": { - "active_votes": [ - { - "rshares": "0", - "voter": "asherunderwood" - } - ], - "author": "dylanhobalart", - "author_payout_value": "0.000 HBD", - "author_reputation": 65.71, - "beneficiaries": [], - "blacklists": [], - "body": "Is this were the party started!", - "category": "meta", - "children": 0, - "created": "2018-01-16T06:53:24", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-01-23T06:53:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180116t065239526z", - "post_id": 25979143, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-16T06:53:24", - "url": "/meta/@steemit/firstpost#@dylanhobalart/re-stackin-re-steemit-firstpost-20180116t065239526z" - }, - "dynamicrypto/re-steemit-firstpost-20180312t183758619z": { - "active_votes": [ - { - "rshares": "33760474580", - "voter": "steembasicincome" - }, - { - "rshares": "32442992676", - "voter": "sbi2" - }, - { - "rshares": "24696375919", - "voter": "sbi3" - }, - { - "rshares": "7459987666", - "voter": "sbi4" - } - ], - "author": "dynamicrypto", - "author_payout_value": "0.251 HBD", - "author_reputation": 71.04, - "beneficiaries": [], - "blacklists": [], - "body": "Looking at transactions and I am curious why you gave @misterdelegation over 5 million steem power last month @steemit?", - "category": "meta", - "children": 0, - "created": "2018-03-12T18:38:00", - "curator_payout_value": "0.048 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "misterdelegation", - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 98359830841, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.299, - "payout_at": "2018-03-19T18:38:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180312t183758619z", - "post_id": 38202114, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-12T18:38:00", - "url": "/meta/@steemit/firstpost#@dynamicrypto/re-steemit-firstpost-20180312t183758619z" - }, - "dynamicrypto/re-steemit-firstpost-20180313t214505560z": { - "active_votes": [ - { - "rshares": "34435216870", - "voter": "steembasicincome" - }, - { - "rshares": "31186455019", - "voter": "sbi2" - }, - { - "rshares": "26949267314", - "voter": "sbi3" - }, - { - "rshares": "8870050985", - "voter": "sbi4" - } - ], - "author": "dynamicrypto", - "author_payout_value": "0.257 HBD", - "author_reputation": 71.04, - "beneficiaries": [], - "blacklists": [], - "body": "Looking at transactions and I am curious why you gave @misterdelegation over 5 million steem power last month @steemit?", - "category": "meta", - "children": 0, - "created": "2018-03-13T21:45:06", - "curator_payout_value": "0.050 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "misterdelegation", - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 101440990188, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.307, - "payout_at": "2018-03-20T21:45:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180313t214505560z", - "post_id": 38436464, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-13T21:45:06", - "url": "/meta/@steemit/firstpost#@dynamicrypto/re-steemit-firstpost-20180313t214505560z" - }, - "dynamicrypto/re-steemit-firstpost-20180731t223557568z": { - "active_votes": [ - { - "rshares": "23894942291", - "voter": "mathiasian" - }, - { - "rshares": "563753006", - "voter": "tammymc" - }, - { - "rshares": "575632536", - "voter": "llevoc" - }, - { - "rshares": "307046152227", - "voter": "steembasicincome" - }, - { - "rshares": "575942260", - "voter": "natc" - }, - { - "rshares": "575938998", - "voter": "bravest" - }, - { - "rshares": "116032038", - "voter": "rsmartt777" - } - ], - "author": "dynamicrypto", - "author_payout_value": "0.461 HBD", - "author_reputation": 71.04, - "beneficiaries": [], - "blacklists": [], - "body": "The very first @steemit post! Great find", - "category": "meta", - "children": 0, - "created": "2018-07-31T22:35:57", - "curator_payout_value": "0.098 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 333348393356, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.559, - "payout_at": "2018-08-07T22:35:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180731t223557568z", - "post_id": 58347960, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 7 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-31T22:35:57", - "url": "/meta/@steemit/firstpost#@dynamicrypto/re-steemit-firstpost-20180731t223557568z" - }, - "ebi16/re-steemit-firstpost-20180106t193603590z": { - "active_votes": [], - "author": "ebi16", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.78, - "beneficiaries": [], - "blacklists": [], - "body": "It is 77th day on Steemit for me and it started to earn money. I am so grateful for Steem. It rewards people for being their true selves. It is true freedom.", - "category": "meta", - "children": 0, - "created": "2018-01-06T19:36:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-13T19:36:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180106t193603590z", - "post_id": 24016205, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-06T19:36:03", - "url": "/meta/@steemit/firstpost#@ebi16/re-steemit-firstpost-20180106t193603590z" - }, - "edbriv/re-steemit-firstpost-20160801t184846033z": { - "active_votes": [ - { - "rshares": "-336740570", - "voter": "dtbahoney" - }, - { - "rshares": "52272448", - "voter": "edbriv" - }, - { - "rshares": "0", - "voter": "strateg" - } - ], - "author": "edbriv", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.05, - "beneficiaries": [], - "blacklists": [], - "body": "GO STEEM !!! go!!!", - "category": "meta", - "children": 1, - "created": "2016-08-01T18:12:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": -284468122, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160801t184846033z", - "post_id": 395733, - "promoted": "0.000 HBD", - "replies": [ - "strateg/re-edbriv-re-steemit-firstpost-20170517t202319969z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-01T18:12:00", - "url": "/meta/@steemit/firstpost#@edbriv/re-steemit-firstpost-20160801t184846033z" - }, - "eljose27/re-steemit-firstpost-20180331t143633851z": { - "active_votes": [ - { - "rshares": "611952180", - "voter": "eljose27" - } - ], - "author": "eljose27", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.31, - "beneficiaries": [], - "blacklists": [], - "body": "# Steemit is the best platform, thank you for your creation they are great. \n
\n![Steemit-red-social-blockchain-e1503205220268.jpg](https://steemitimages.com/DQmSFUYFVhMGxBZBhC6P7hFipSkwWyet4rBCCfBUEB7gvZW/Steemit-red-social-blockchain-e1503205220268.jpg)\n
\n\nsteem on", - "category": "meta", - "children": 0, - "created": "2018-03-31T14:36:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmSFUYFVhMGxBZBhC6P7hFipSkwWyet4rBCCfBUEB7gvZW/Steemit-red-social-blockchain-e1503205220268.jpg" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 611952180, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-07T14:36:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180331t143633851z", - "post_id": 41440476, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-31T14:36:27", - "url": "/meta/@steemit/firstpost#@eljose27/re-steemit-firstpost-20180331t143633851z" - }, - "elneddy/re-steemit-firstpost-20171006t194927903z": { - "active_votes": [], - "author": "elneddy", - "author_payout_value": "0.000 HBD", - "author_reputation": 40.98, - "beneficiaries": [], - "blacklists": [], - "body": "We are the biggest steemit community from the biggest destruction place by TSUNAMI in aceh and still exist on steemit with poor of skill, poor of education..Please support ACEH STEEMIANS", - "category": "meta", - "children": 0, - "created": "2017-10-06T19:49:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-13T19:49:30", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171006t194927903z", - "post_id": 14655966, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-06T19:49:30", - "url": "/meta/@steemit/firstpost#@elneddy/re-steemit-firstpost-20171006t194927903z" - }, - "emjoe/re-steemit-firstpost-20180409t120039258z": { - "active_votes": [ - { - "rshares": "719553483", - "voter": "michaeldavid" - }, - { - "rshares": "6740715396", - "voter": "thealliance" - } - ], - "author": "emjoe", - "author_payout_value": "0.028 HBD", - "author_reputation": 68.05, - "beneficiaries": [], - "blacklists": [], - "body": "Hmmm. So there is actually an account that represents the platform, this is interesting.", - "category": "meta", - "children": 0, - "created": "2018-04-09T12:00:42", - "curator_payout_value": "0.002 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 7460268879, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.03, - "payout_at": "2018-04-16T12:00:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180409t120039258z", - "post_id": 42759351, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-09T12:00:42", - "url": "/meta/@steemit/firstpost#@emjoe/re-steemit-firstpost-20180409t120039258z" - }, - "emmywell/re-steemit-firstpost-20180413t015120739z": { - "active_votes": [], - "author": "emmywell", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.85, - "beneficiaries": [], - "blacklists": [], - "body": "That's an awesome site", - "category": "meta", - "children": 0, - "created": "2018-04-13T01:51:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-20T01:51:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180413t015120739z", - "post_id": 43330141, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-13T01:51:39", - "url": "/meta/@steemit/firstpost#@emmywell/re-steemit-firstpost-20180413t015120739z" - }, - "endorphoenix/re-steemit-firstpost-20171208t183328209z": { - "active_votes": [], - "author": "endorphoenix", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.44, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is such a wonderful way to do what I love and share it with other: writing! I am so grateful I found this platform recently! Words can not describe how Steemit motivates me to keep on writing and living my dream! Thank you SO much dear Steemit Community! <3", - "category": "meta", - "children": 0, - "created": "2017-12-08T18:33:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-15T18:33:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171208t183328209z", - "post_id": 19830642, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-08T18:33:27", - "url": "/meta/@steemit/firstpost#@endorphoenix/re-steemit-firstpost-20171208t183328209z" - }, - "extraterrestrial/re-steemit-firstpost-20171217t200414912z": { - "active_votes": [ - { - "rshares": "87038116", - "voter": "kaiyum" - } - ], - "author": "extraterrestrial", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.15, - "beneficiaries": [], - "blacklists": [], - "body": "I LOVE STEEMIT! I'M TELLING EVERYONE I KNOW ON THIS PLANET ABOUT STEEMIT! I'M SPREADING THE WORD! TWO THUMBS UP! STEEM TO THE MOON! :)", - "category": "meta", - "children": 0, - "created": "2017-12-17T20:04:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 87038116, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-24T20:04:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171217t200414912z", - "post_id": 20811562, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-17T20:04:15", - "url": "/meta/@steemit/firstpost#@extraterrestrial/re-steemit-firstpost-20171217t200414912z" - }, - "f21steem/re-steemit-2019121t102528140z": { - "active_votes": [], - "author": "f21steem", - "author_payout_value": "0.000 HBD", - "author_reputation": 51.08, - "beneficiaries": [ - { - "account": "esteemapp", - "weight": 500 - } - ], - "blacklists": [], - "body": "Hi steemit, I am a newcomer to the steemit world, my experience is still minimal, supporting the blog f21steem to vote, thank you for visiting me.", - "category": "meta", - "children": 0, - "created": "2019-01-21T03:25:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "esteem/1.5.0", - "community": "esteem", - "format": "markdown+html", - "tags": [ - "esteem" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-01-28T03:25:33", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-2019121t102528140z", - "post_id": 69094391, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-01-21T03:25:33", - "url": "/meta/@steemit/firstpost#@f21steem/re-steemit-2019121t102528140z" - }, - "fajarsdq/re-steemit-firstpost-20170829t115541460z": { - "active_votes": [ - { - "rshares": "3112170368", - "voter": "fajarsdq" - } - ], - "author": "fajarsdq", - "author_payout_value": "0.000 HBD", - "author_reputation": 63.67, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit Woow ... it's amazing ... i'm really happy to be on the steemit ceiling a lot of new challenges to see.", - "category": "meta", - "children": 0, - "created": "2017-08-29T11:55:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3112170368, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-05T11:55:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170829t115541460z", - "post_id": 11372839, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-29T11:55:51", - "url": "/meta/@steemit/firstpost#@fajarsdq/re-steemit-firstpost-20170829t115541460z" - }, - "farhannaqvi7/re-layra-re-steemit-firstpost-20180620t121113715z": { - "active_votes": [ - { - "rshares": "315626247", - "voter": "layra" - } - ], - "author": "farhannaqvi7", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.21, - "beneficiaries": [], - "blacklists": [], - "body": "layra good post but you need to use at least 5 tags Contact me on Discord.com (Its communication plate form) Discord id : farhannaqvi7#1337 Get our upvote (100% worth is 0.050) and resteem your post to 5100+ steemit users and i will tell you how to earn 2 to 4 SBD in every day", - "category": "meta", - "children": 1, - "created": "2018-06-20T12:11:03", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 315626247, - "parent_author": "layra", - "parent_permlink": "re-steemit-firstpost-20180620t023240325z", - "payout": 0.0, - "payout_at": "2018-06-27T12:11:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-layra-re-steemit-firstpost-20180620t121113715z", - "post_id": 53670466, - "promoted": "0.000 HBD", - "replies": [ - "layra/re-farhannaqvi7-re-layra-re-steemit-firstpost-20180620t222752339z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T12:11:57", - "url": "/meta/@steemit/firstpost#@farhannaqvi7/re-layra-re-steemit-firstpost-20180620t121113715z" - }, - "faridrizkia/re-cyberspace-re-steemit-firstpost-20170826t105707517z": { - "active_votes": [], - "author": "faridrizkia", - "author_payout_value": "0.000 HBD", - "author_reputation": 37.74, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks. Likely Information.", - "category": "meta", - "children": 0, - "created": "2017-08-26T10:57:09", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "cyberspace", - "parent_permlink": "re-steemit-firstpost-20170719t102745698z", - "payout": 0.0, - "payout_at": "2017-09-02T10:57:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-cyberspace-re-steemit-firstpost-20170826t105707517z", - "post_id": 11111589, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-26T10:57:09", - "url": "/meta/@steemit/firstpost#@faridrizkia/re-cyberspace-re-steemit-firstpost-20170826t105707517z" - }, - "faridrizkia/re-steemit-firstpost-20170826t105509240z": { - "active_votes": [], - "author": "faridrizkia", - "author_payout_value": "0.000 HBD", - "author_reputation": 37.74, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks Master for the Power of \"BOOST\"", - "category": "meta", - "children": 0, - "created": "2017-08-26T10:55:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-02T10:55:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170826t105509240z", - "post_id": 11111465, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-26T10:55:06", - "url": "/meta/@steemit/firstpost#@faridrizkia/re-steemit-firstpost-20170826t105509240z" - }, - "fatboyjames/re-maninjapan1989-re-steemit-firstpost-20170801t133614690z": { - "active_votes": [ - { - "rshares": "13182026440", - "voter": "fatboyjames" - } - ], - "author": "fatboyjames", - "author_payout_value": "0.050 HBD", - "author_reputation": 54.69, - "beneficiaries": [], - "blacklists": [], - "body": "One day you'll get there haha", - "category": "meta", - "children": 0, - "created": "2017-08-01T13:36:12", - "curator_payout_value": "0.002 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 13182026440, - "parent_author": "maninjapan1989", - "parent_permlink": "re-steemit-firstpost-20170801t133239673z", - "payout": 0.052, - "payout_at": "2017-08-08T13:36:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-maninjapan1989-re-steemit-firstpost-20170801t133614690z", - "post_id": 8906248, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-01T13:36:12", - "url": "/meta/@steemit/firstpost#@fatboyjames/re-maninjapan1989-re-steemit-firstpost-20170801t133614690z" - }, - "fatimamortada/re-steemit-firstpost-20180201t012152343z": { - "active_votes": [ - { - "rshares": "610735644", - "voter": "fatimamortada" - } - ], - "author": "fatimamortada", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.02, - "beneficiaries": [], - "blacklists": [], - "body": "Now I can feel less frustrated for not making more than $2 in every post lol :D", - "category": "meta", - "children": 0, - "created": "2018-02-01T01:21:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 610735644, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-08T01:21:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180201t012152343z", - "post_id": 29559624, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-01T01:21:54", - "url": "/meta/@steemit/firstpost#@fatimamortada/re-steemit-firstpost-20180201t012152343z" - }, - "fbslo/re-kid4life-re-fbslo-re-steemit-firstpost-20180204t165833297z": { - "active_votes": [ - { - "rshares": "11183852888", - "voter": "kid4life" - } - ], - "author": "fbslo", - "author_payout_value": "0.073 HBD", - "author_reputation": 70.75, - "beneficiaries": [], - "blacklists": [], - "body": "Yes :)\nI'm on discord :)", - "category": "meta", - "children": 1, - "created": "2018-02-04T16:58:30", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 11183852888, - "parent_author": "kid4life", - "parent_permlink": "re-fbslo-re-steemit-firstpost-20180204t163322409z", - "payout": 0.073, - "payout_at": "2018-02-11T16:58:30", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-kid4life-re-fbslo-re-steemit-firstpost-20180204t165833297z", - "post_id": 30383054, - "promoted": "0.000 HBD", - "replies": [ - "kid4life/re-fbslo-re-kid4life-re-fbslo-re-steemit-firstpost-20180204t170516059z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-04T16:58:30", - "url": "/meta/@steemit/firstpost#@fbslo/re-kid4life-re-fbslo-re-steemit-firstpost-20180204t165833297z" - }, - "fbslo/re-steemit-firstpost-20180203t174523045z": { - "active_votes": [ - { - "rshares": "168139784", - "voter": "social" - }, - { - "rshares": "18338893557", - "voter": "kid4life" - }, - { - "rshares": "160444802141", - "voter": "fbslo" - }, - { - "rshares": "9930773750", - "voter": "svashta" - }, - { - "rshares": "18448576333", - "voter": "direwolf" - } - ], - "author": "fbslo", - "author_payout_value": "1.080 HBD", - "author_reputation": 70.75, - "beneficiaries": [], - "blacklists": [], - "body": "STEEM ON!", - "category": "meta", - "children": 3, - "created": "2018-02-03T17:45:21", - "curator_payout_value": "0.312 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 207331185565, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 1.392, - "payout_at": "2018-02-10T17:45:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180203t174523045z", - "post_id": 30175898, - "promoted": "0.000 HBD", - "replies": [ - "kid4life/re-fbslo-re-steemit-firstpost-20180204t163322409z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 5 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-03T17:45:21", - "url": "/meta/@steemit/firstpost#@fbslo/re-steemit-firstpost-20180203t174523045z" - }, - "flandude/re-steemit-firstpost-20160811t225325571z": { - "active_votes": [ - { - "rshares": "47738566", - "voter": "alktoni" - }, - { - "rshares": "555987168", - "voter": "funkywanderer" - }, - { - "rshares": "45336058", - "voter": "andressilvera" - }, - { - "rshares": "50997147", - "voter": "david.prochnow" - } - ], - "author": "flandude", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.93, - "beneficiaries": [], - "blacklists": [], - "body": "http://i.imgsafe.org/d01598860e.jpg", - "category": "meta", - "children": 0, - "created": "2016-08-11T22:53:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "image": [ - "http://i.imgsafe.org/d01598860e.jpg" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 700058939, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160811t225325571z", - "post_id": 563725, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-11T22:53:27", - "url": "/meta/@steemit/firstpost#@flandude/re-steemit-firstpost-20160811t225325571z" - }, - "frag/re-sornprar-re-steemit-firstpost-20170704t235218733z": { - "active_votes": [ - { - "rshares": "0", - "voter": "sornprar" - } - ], - "author": "frag", - "author_payout_value": "0.000 HBD", - "author_reputation": 5.53, - "beneficiaries": [], - "blacklists": [], - "body": "liked and followed :)", - "category": "meta", - "children": 1, - "created": "2017-07-04T20:49:12", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "sornprar", - "parent_permlink": "re-steemit-firstpost-20170704t204851481z", - "payout": 0.0, - "payout_at": "2017-07-11T20:49:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-sornprar-re-steemit-firstpost-20170704t235218733z", - "post_id": 6160921, - "promoted": "0.000 HBD", - "replies": [ - "sornprar/re-frag-re-sornprar-re-steemit-firstpost-20170704t211016543z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-04T20:49:12", - "url": "/meta/@steemit/firstpost#@frag/re-sornprar-re-steemit-firstpost-20170704t235218733z" - }, - "future24/re-steemit-firstpost-20160818t030224104z": { - "active_votes": [ - { - "rshares": "53122308", - "voter": "mandarin99" - }, - { - "rshares": "0", - "voter": "urmokas" - }, - { - "rshares": "0", - "voter": "setio" - } - ], - "author": "future24", - "author_payout_value": "0.000 HBD", - "author_reputation": 75.29, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you!", - "category": "meta", - "children": 0, - "created": "2016-08-18T03:02:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 53122308, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160818t030224104z", - "post_id": 650694, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-18T03:02:24", - "url": "/meta/@steemit/firstpost#@future24/re-steemit-firstpost-20160818t030224104z" - }, - "gayanw/re-steemit-firstpost-20171121t172326950z": { - "active_votes": [], - "author": "gayanw", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Not sure if this is the right place to ask. I was just wondering how some people got a huge following without making a single post or a comment.", - "category": "meta", - "children": 0, - "created": "2017-11-21T17:23:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-28T17:23:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171121t172326950z", - "post_id": 18338481, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-21T17:23:27", - "url": "/meta/@steemit/firstpost#@gayanw/re-steemit-firstpost-20171121t172326950z" - }, - "gazur/re-steemit-firstpost-20171024t191436407z": { - "active_votes": [ - { - "rshares": "47240311040", - "voter": "gazur" - } - ], - "author": "gazur", - "author_payout_value": "0.105 HBD", - "author_reputation": 54.53, - "beneficiaries": [], - "blacklists": [], - "body": "THIS IS AWESOME!! C:", - "category": "meta", - "children": 0, - "created": "2017-10-24T19:13:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 47240311040, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.105, - "payout_at": "2017-10-31T19:13:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171024t191436407z", - "post_id": 16012256, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-24T19:13:48", - "url": "/meta/@steemit/firstpost#@gazur/re-steemit-firstpost-20171024t191436407z" - }, - "gazur/re-steemit-firstpost-20171024t191550079z": { - "active_votes": [ - { - "rshares": "46117615705", - "voter": "gazur" - } - ], - "author": "gazur", - "author_payout_value": "0.077 HBD", - "author_reputation": 54.53, - "beneficiaries": [], - "blacklists": [], - "body": "THIS IS AWESOME!! C:", - "category": "meta", - "children": 0, - "created": "2017-10-24T19:15:00", - "curator_payout_value": "0.025 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 46117615705, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.102, - "payout_at": "2017-10-31T19:15:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171024t191550079z", - "post_id": 16012314, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-24T19:15:00", - "url": "/meta/@steemit/firstpost#@gazur/re-steemit-firstpost-20171024t191550079z" - }, - "geek4geek/re-steemit-firstpost-20170726t165631900z": { - "active_votes": [ - { - "rshares": "154084996", - "voter": "cultura.bitcoin" - } - ], - "author": "geek4geek", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.69, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks for creating this platform.", - "category": "meta", - "children": 0, - "created": "2017-07-26T16:56:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 154084996, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-02T16:56:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170726t165631900z", - "post_id": 8371489, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-26T16:56:39", - "url": "/meta/@steemit/firstpost#@geek4geek/re-steemit-firstpost-20170726t165631900z" - }, - "gekko/re-steemit-firstpost-20160721t223937736z": { - "active_votes": [ - { - "rshares": "425903066", - "voter": "gekko" - }, - { - "rshares": "689526018", - "voter": "patrick-g" - }, - { - "rshares": "145914460", - "voter": "allmonitors" - } - ], - "author": "gekko", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.66, - "beneficiaries": [], - "blacklists": [], - "body": "I leave my mark here in mythical post 8]", - "category": "meta", - "children": 0, - "created": "2016-07-21T22:39:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1261343544, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160721t223937736z", - "post_id": 189029, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-21T22:39:39", - "url": "/meta/@steemit/firstpost#@gekko/re-steemit-firstpost-20160721t223937736z" - }, - "gilma/re-steemit-firstpost-20170918t002456528z": { - "active_votes": [], - "author": "gilma", - "author_payout_value": "0.000 HBD", - "author_reputation": 63.2, - "beneficiaries": [], - "blacklists": [], - "body": "I Love Steemit!", - "category": "meta", - "children": 0, - "created": "2017-09-18T00:24:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-25T00:24:36", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170918t002456528z", - "post_id": 13097414, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-18T00:24:36", - "url": "/meta/@steemit/firstpost#@gilma/re-steemit-firstpost-20170918t002456528z" - }, - "gilnambatac/re-steemit-firstpost-20180106t162335199z": { - "active_votes": [ - { - "rshares": "467293600", - "voter": "gilnambatac" - } - ], - "author": "gilnambatac", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.28, - "beneficiaries": [], - "blacklists": [], - "body": "New on steemit! I hope to share more works of mine.", - "category": "meta", - "children": 0, - "created": "2018-01-06T16:23:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 467293600, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-13T16:23:36", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180106t162335199z", - "post_id": 23984132, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-06T16:23:36", - "url": "/meta/@steemit/firstpost#@gilnambatac/re-steemit-firstpost-20180106t162335199z" - }, - "gochilambert/re-steemit-firstpost-20180709t193214537z": { - "active_votes": [], - "author": "gochilambert", - "author_payout_value": "0.000 HBD", - "author_reputation": 6.56, - "beneficiaries": [], - "blacklists": [], - "body": "VYo!\nSo am here to talk about @steemcamp that recently occurred, one question I need to ask is why do u set up a competition when you already know the winner, that's why they keep saying Nigerians are frauds @michealcj you just destroy a good thing u started.\n\nFirst of all am sure @steemit sponsored the program called @steemcamp and you had to tell all your contestants to sell tickets and pay 20thousand naira to your account for the finale,and for the semi finals they paid 3thousand naira, how heartless you can be not knowing that some people are coming all the way from abj,port harcourt, owerri,lagos,enugu etc i thought being sponsored was so they wouldn't pay anything else but then you made them sweat to pay.\n\nThen to the @steemcamp competition what business does the organizer have with the contestant, why do u keep having meetings with @princessVanessa who came second and was also begging @steemboard for assistance when its obvious she stays in that same city, and cypher,why did u endager youths life when you already know who the winner would be? You should have just called them and giving them the money than waste their time,resources and starve them,right now you guys abandoned them to be beaten by mosquitoes while y'all chilling.\n\nThe contestant who won slept with @michealcj and his organizers, we are tryna fight corruption in Nigeria but people like you makes it difficult. The rules where for everyone to come on the said date which was 1 July 2018, and behavior and all what not will be judged but some people came on the 3rd and you allowed them come in, what manner of competition is that.\n\nI don't mind if I get flagged here but I will fight for the truth no matter what. if you don't have an idea on how to put up a show ask questions than behave so low showing us you can do anything for money. Am calling names cos am not scared to stand out for what is right. I just pray other's can come to this page and speak their minds,so @michealcj will stop using this platform to extort money from @steemboard.", - "category": "meta", - "children": 0, - "created": "2018-07-09T19:32:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemcamp", - "michealcj", - "steemit", - "princessvanessa", - "steemboard" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-07-16T19:32:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 0, - "permlink": "re-steemit-firstpost-20180709t193214537z", - "post_id": 56000320, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-09T19:32:27", - "url": "/meta/@steemit/firstpost#@gochilambert/re-steemit-firstpost-20180709t193214537z" - }, - "gomain/re-stackin-re-steemit-firstpost-20180107t195657460z": { - "active_votes": [ - { - "rshares": "2604682507", - "voter": "gomain" - }, - { - "rshares": "513107500", - "voter": "themeparks" - }, - { - "rshares": "0", - "voter": "asherunderwood" - } - ], - "author": "gomain", - "author_payout_value": "0.027 HBD", - "author_reputation": 36.45, - "beneficiaries": [], - "blacklists": [], - "body": "It really is a valuable platform", - "category": "meta", - "children": 2, - "created": "2018-01-07T19:56:54", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3117790007, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.027, - "payout_at": "2018-01-14T19:56:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180107t195657460z", - "post_id": 24217459, - "promoted": "0.000 HBD", - "replies": [ - "mominsdt/re-gomain-re-stackin-re-steemit-firstpost-20180204t151047773z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-07T19:56:54", - "url": "/meta/@steemit/firstpost#@gomain/re-stackin-re-steemit-firstpost-20180107t195657460z" - }, - "gomain/re-steemit-firstpost-20180107t195854059z": { - "active_votes": [ - { - "rshares": "2537028416", - "voter": "gomain" - }, - { - "rshares": "1137449574", - "voter": "themeparks" - } - ], - "author": "gomain", - "author_payout_value": "0.032 HBD", - "author_reputation": 36.45, - "beneficiaries": [], - "blacklists": [], - "body": "Does anyone think that Facebook might be in the running to purchase (or perhaps copy) Steemit? With Mark Zuckerberg's recent comments about decentralization I just wonder where we're headed.", - "category": "meta", - "children": 0, - "created": "2018-01-07T19:58:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3674477990, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.032, - "payout_at": "2018-01-14T19:58:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180107t195854059z", - "post_id": 24217749, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-07T19:58:51", - "url": "/meta/@steemit/firstpost#@gomain/re-steemit-firstpost-20180107t195854059z" - }, - "gonewithwind/re-gonewithwind-re-steemit-firstpost-20180902t204237525z": { - "active_votes": [], - "author": "gonewithwind", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.71, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit\nOh my god i just checked your wallet...\nSorry, \nyes i think you are the real steemit.com", - "category": "meta", - "children": 0, - "created": "2018-09-02T20:42:39", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gonewithwind", - "parent_permlink": "re-steemit-firstpost-20180902t202911783z", - "payout": 0.0, - "payout_at": "2018-09-09T20:42:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-gonewithwind-re-steemit-firstpost-20180902t204237525z", - "post_id": 61406211, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-09-02T20:42:39", - "url": "/meta/@steemit/firstpost#@gonewithwind/re-gonewithwind-re-steemit-firstpost-20180902t204237525z" - }, - "gonewithwind/re-steemit-firstpost-20180902t202911783z": { - "active_votes": [], - "author": "gonewithwind", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.71, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit\nAre you the real steamit?\nIf you are , concentrate on posts making...i think you are are very lazy. \ud83d\ude04", - "category": "meta", - "children": 1, - "created": "2018-09-02T20:29:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-09-09T20:29:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180902t202911783z", - "post_id": 61405564, - "promoted": "0.000 HBD", - "replies": [ - "gonewithwind/re-gonewithwind-re-steemit-firstpost-20180902t204237525z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-09-02T20:29:15", - "url": "/meta/@steemit/firstpost#@gonewithwind/re-steemit-firstpost-20180902t202911783z" - }, - "gopher/re-admin-firstpost-20160718t195306992z": { - "active_votes": [ - { - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "rshares": "111000395", - "voter": "bustillos" - } - ], - "author": "gopher", - "author_payout_value": "0.000 HBD", - "author_reputation": 30.29, - "beneficiaries": [], - "blacklists": [], - "body": "Are you admin in steem? If you have been hacked, who can help you?", - "category": "meta", - "children": 0, - "created": "2016-07-18T19:53:12", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 853566876, - "parent_author": "admin", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-admin-firstpost-20160718t195306992z", - "post_id": 125730, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-18T19:53:12", - "url": "/meta/@steemit/firstpost#@gopher/re-admin-firstpost-20160718t195306992z" - }, - "gopher/re-steemit-firstpost-20160718t195806340z": { - "active_votes": [], - "author": "gopher", - "author_payout_value": "0.000 HBD", - "author_reputation": 30.29, - "beneficiaries": [], - "blacklists": [], - "body": "http://steem.com/@bittrex/transfers how this user can have these tranfers without any activity?", - "category": "meta", - "children": 1, - "created": "2016-07-18T19:58:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "links": [ - "http://steem.com/@bittrex/transfers" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160718t195806340z", - "post_id": 125794, - "promoted": "0.000 HBD", - "replies": [ - "steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-18T19:58:09", - "url": "/meta/@steemit/firstpost#@gopher/re-steemit-firstpost-20160718t195806340z" - }, - "gratefulayn/re-steemit-firstpost-20180114t142356015z": { - "active_votes": [ - { - "rshares": "34841514373", - "voter": "purepinay" - }, - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "gratefulayn", - "author_payout_value": "0.243 HBD", - "author_reputation": 62.27, - "beneficiaries": [], - "blacklists": [], - "body": "I am grateful I found steem and wow you're lucky to have username as the platform @steemit", - "category": "meta", - "children": 0, - "created": "2018-01-14T14:24:03", - "curator_payout_value": "0.076 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 34841514373, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.319, - "payout_at": "2018-01-21T14:24:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180114t142356015z", - "post_id": 25630741, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-14T14:24:03", - "url": "/meta/@steemit/firstpost#@gratefulayn/re-steemit-firstpost-20180114t142356015z" - }, - "greenrun/re-steemit-firstpost-20170821t081222039z": { - "active_votes": [ - { - "rshares": "32584724400", - "voter": "mammasitta" - }, - { - "rshares": "1921826957", - "voter": "greenrun" - } - ], - "author": "greenrun", - "author_payout_value": "0.113 HBD", - "author_reputation": 66.3, - "beneficiaries": [], - "blacklists": [], - "body": "It's good to comment on the first post on steemit even after **508 days!** :) \nThis is history in the making.", - "category": "meta", - "children": 0, - "created": "2017-08-21T08:12:24", - "curator_payout_value": "0.025 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 34506551357, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.138, - "payout_at": "2017-08-28T08:12:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170821t081222039z", - "post_id": 10664178, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-21T08:12:24", - "url": "/meta/@steemit/firstpost#@greenrun/re-steemit-firstpost-20170821t081222039z" - }, - "hafizul/re-steemit-firstpost-20171222t084035853z": { - "active_votes": [ - { - "rshares": "406176369", - "voter": "kigea" - } - ], - "author": "hafizul", - "author_payout_value": "0.000 HBD", - "author_reputation": 65.28, - "beneficiaries": [], - "blacklists": [], - "body": "herr i am now :) @steemit \nAwesome Platform be The Best forever!", - "category": "meta", - "children": 0, - "created": "2017-12-22T08:40:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 406176369, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-29T08:40:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171222t084035853z", - "post_id": 21455994, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-22T08:40:39", - "url": "/meta/@steemit/firstpost#@hafizul/re-steemit-firstpost-20171222t084035853z" - }, - "hatu/re-steemit-firstpost-20180411t152605635z": { - "active_votes": [], - "author": "hatu", - "author_payout_value": "0.000 HBD", - "author_reputation": 76.89, - "beneficiaries": [], - "blacklists": [], - "body": "Hi, I just followed and upvoted you :-)\nFollow back and we can help each other succeed! @hatu", - "category": "meta", - "children": 0, - "created": "2018-04-11T20:56:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "hatu" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-18T20:56:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180411t152605635z", - "post_id": 43143434, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-11T20:56:42", - "url": "/meta/@steemit/firstpost#@hatu/re-steemit-firstpost-20180411t152605635z" - }, - "hazem91/re-steemit-firstpost-20180613t160430735z": { - "active_votes": [ - { - "rshares": "29106123200", - "voter": "topkpop" - }, - { - "rshares": "6036882453", - "voter": "thealliance" - }, - { - "rshares": "1378542077", - "voter": "dbooster" - }, - { - "rshares": "12787028983", - "voter": "steembasicincome" - }, - { - "rshares": "1302014079", - "voter": "isleofwrite" - }, - { - "rshares": "554096630", - "voter": "brismar" - } - ], - "author": "hazem91", - "author_payout_value": "0.109 HBD", - "author_reputation": 63.56, - "beneficiaries": [], - "blacklists": [], - "body": "hehe\nHow did I miss this one :D", - "category": "meta", - "children": 0, - "created": "2018-06-13T16:03:00", - "curator_payout_value": "0.021 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 51164687422, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.13, - "payout_at": "2018-06-20T16:03:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180613t160430735z", - "post_id": 52883087, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 6 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-13T16:03:00", - "url": "/meta/@steemit/firstpost#@hazem91/re-steemit-firstpost-20180613t160430735z" - }, - "healthyrecipe/re-steemit-firstpost-20170812t211959351z": { - "active_votes": [ - { - "rshares": "62582057731", - "voter": "healthyrecipe" - }, - { - "rshares": "63637495", - "voter": "drt" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "healthyrecipe", - "author_payout_value": "0.202 HBD", - "author_reputation": 58.11, - "beneficiaries": [], - "blacklists": [], - "body": "Was this the first post on the platform? So cool :)", - "category": "meta", - "children": 0, - "created": "2017-08-12T21:19:57", - "curator_payout_value": "0.004 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 62645695226, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.206, - "payout_at": "2017-08-19T21:19:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170812t211959351z", - "post_id": 9978212, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-12T21:19:57", - "url": "/meta/@steemit/firstpost#@healthyrecipe/re-steemit-firstpost-20170812t211959351z" - }, - "henildedania/re-steemit-firstpost-20171031t122307919z": { - "active_votes": [], - "author": "henildedania", - "author_payout_value": "0.000 HBD", - "author_reputation": 5.65, - "beneficiaries": [], - "blacklists": [], - "body": "its really great that i joined steemit", - "category": "meta", - "children": 0, - "created": "2017-10-31T12:22:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-07T12:22:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171031t122307919z", - "post_id": 16529164, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-31T12:22:48", - "url": "/meta/@steemit/firstpost#@henildedania/re-steemit-firstpost-20171031t122307919z" - }, - "hgmsilvergold/re-steemit-firstpost-20170607t132619458z": { - "active_votes": [ - { - "rshares": "3185362344", - "voter": "wynandroberts" - } - ], - "author": "hgmsilvergold", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.12, - "beneficiaries": [], - "blacklists": [], - "body": "let's see how this steemit experiment goes.", - "category": "meta", - "children": 0, - "created": "2017-06-07T13:26:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3185362344, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-14T13:26:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170607t132619458z", - "post_id": 3533896, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-07T13:26:21", - "url": "/meta/@steemit/firstpost#@hgmsilvergold/re-steemit-firstpost-20170607t132619458z" - }, - "hothelp1by1/re-steemit-firstpost-20170602t024007551z": { - "active_votes": [], - "author": "hothelp1by1", - "author_payout_value": "0.000 HBD", - "author_reputation": 46.0, - "beneficiaries": [], - "blacklists": [], - "body": "Stopping in to say Following, Supporting and glad to be a part.", - "category": "meta", - "children": 0, - "created": "2017-06-02T02:40:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-09T02:40:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170602t024007551z", - "post_id": 3287709, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-02T02:40:09", - "url": "/meta/@steemit/firstpost#@hothelp1by1/re-steemit-firstpost-20170602t024007551z" - }, - "hunly/re-steemit-firstpost-20180113t140005408z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "hunly", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Nice", - "category": "meta", - "children": 0, - "created": "2018-01-13T14:00:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-20T14:00:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180113t140005408z", - "post_id": 25428227, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-13T14:00:06", - "url": "/meta/@steemit/firstpost#@hunly/re-steemit-firstpost-20180113t140005408z" - }, - "hussnain/re-stackin-re-steemit-firstpost-20171218t225148759z": { - "active_votes": [], - "author": "hussnain", - "author_payout_value": "0.000 HBD", - "author_reputation": 0.25, - "beneficiaries": [], - "blacklists": [ - "reputation-0" - ], - "body": "obviously awesome experience", - "category": "meta", - "children": 2, - "created": "2017-12-18T22:51:51", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2017-12-25T22:51:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20171218t225148759z", - "post_id": 20958201, - "promoted": "0.000 HBD", - "replies": [ - "stardivine/re-hussnain-re-stackin-re-steemit-firstpost-20171231t165419611z", - "mominsdt/re-hussnain-re-stackin-re-steemit-firstpost-20180204t151415346z" - ], - "stats": { - "flag_weight": 0.0, - "gray": true, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-18T22:51:51", - "url": "/meta/@steemit/firstpost#@hussnain/re-stackin-re-steemit-firstpost-20171218t225148759z" - }, - "ilicoin/re-steemit-firstpost-20170709t171749281z": { - "active_votes": [ - { - "rshares": "499093965", - "voter": "ilicoin" - } - ], - "author": "ilicoin", - "author_payout_value": "0.000 HBD", - "author_reputation": 33.54, - "beneficiaries": [], - "blacklists": [], - "body": "\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u043a\u0438\u0440\u0438\u043b\u043b\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0442\u0435\u0433\u043e\u0432!", - "category": "meta", - "children": 0, - "created": "2017-07-09T17:17:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 499093965, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-16T17:17:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170709t171749281z", - "post_id": 6663890, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-09T17:17:48", - "url": "/meta/@steemit/firstpost#@ilicoin/re-steemit-firstpost-20170709t171749281z" - }, - "imarealboy777/re-steemit-firstpost-20160801t232001768z": { - "active_votes": [ - { - "rshares": "2725768", - "voter": "cire81" - }, - { - "rshares": "154885141", - "voter": "lorddominik007" - } - ], - "author": "imarealboy777", - "author_payout_value": "0.000 HBD", - "author_reputation": -2.57, - "beneficiaries": [], - "blacklists": [], - "body": "Vesting , vesting 1 2 3 .", - "category": "meta", - "children": 0, - "created": "2016-08-01T23:20:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 157610909, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160801t232001768z", - "post_id": 401002, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": true, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-01T23:20:36", - "url": "/meta/@steemit/firstpost#@imarealboy777/re-steemit-firstpost-20160801t232001768z" - }, - "imchandansah/re-steemit-firstpost-20180122t112919676z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - }, - { - "rshares": "488506864", - "voter": "imchandansah" - } - ], - "author": "imchandansah", - "author_payout_value": "0.000 HBD", - "author_reputation": 51.79, - "beneficiaries": [], - "blacklists": [], - "body": "I am trying to add value to this platform but unable to do it properly because of low steem power. I can help steemit grow in my locality if I get enough support from steemit community. Help me @Steemit @Freedom @Steem @Dan @Ned @blocktrades @val-a @mottler @abit @databass @hendrikdegrote @jamesc @ben @michael-b @val-b @ranchorelaxo @proskynneo @thejohalfiles @smooth @xeldal @roadscape @created @arhag @jamesc1 @michael-a @sponge-bob", - "category": "meta", - "children": 0, - "created": "2018-01-22T11:32:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "freedom", - "steem", - "dan", - "ned", - "blocktrades", - "val-a", - "mottler", - "abit", - "databass", - "hendrikdegrote", - "jamesc", - "ben", - "michael-b", - "val-b", - "ranchorelaxo", - "proskynneo", - "thejohalfiles", - "smooth", - "xeldal", - "roadscape", - "created", - "arhag", - "jamesc1", - "michael-a", - "sponge-bob" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 488506864, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-29T11:32:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180122t112919676z", - "post_id": 27259944, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-22T11:32:48", - "url": "/meta/@steemit/firstpost#@imchandansah/re-steemit-firstpost-20180122t112919676z" - }, - "improv/re-paulatreides-re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t084809927z": { - "active_votes": [ - { - "rshares": "915118402", - "voter": "paul.atreides" - } - ], - "author": "improv", - "author_payout_value": "0.000 HBD", - "author_reputation": 67.65, - "beneficiaries": [], - "blacklists": [], - "body": "For purely philanthropic reasons, right?", - "category": "meta", - "children": 0, - "created": "2018-01-09T08:49:51", - "curator_payout_value": "0.000 HBD", - "depth": 5, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 915118402, - "parent_author": "paul.atreides", - "parent_permlink": "re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t061937055z", - "payout": 0.0, - "payout_at": "2018-01-16T08:49:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-paulatreides-re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t084809927z", - "post_id": 24537662, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-09T08:49:51", - "url": "/meta/@steemit/firstpost#@improv/re-paulatreides-re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t084809927z" - }, - "improv/re-paulatreides-re-improv-re-steemit-firstpost-20180109t001947344z": { - "active_votes": [ - { - "rshares": "2983225216", - "voter": "paul.atreides" - } - ], - "author": "improv", - "author_payout_value": "0.022 HBD", - "author_reputation": 67.65, - "beneficiaries": [], - "blacklists": [], - "body": "And you found my finding it. That is especially incredible!\n\nBut also, what is this account? So much money in it. Is that steem just going to sit there? Does it get used to make more accounts? \n\nanywhoodles. \n\nMy wish is for Steemit as a platform to solve the housing crisis.", - "category": "meta", - "children": 2, - "created": "2018-01-09T00:19:48", - "curator_payout_value": "0.005 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 2983225216, - "parent_author": "paul.atreides", - "parent_permlink": "re-improv-re-steemit-firstpost-20180108t233620916z", - "payout": 0.027, - "payout_at": "2018-01-16T00:19:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-paulatreides-re-improv-re-steemit-firstpost-20180109t001947344z", - "post_id": 24465260, - "promoted": "0.000 HBD", - "replies": [ - "paul.atreides/re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t061937055z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-09T00:19:48", - "url": "/meta/@steemit/firstpost#@improv/re-paulatreides-re-improv-re-steemit-firstpost-20180109t001947344z" - }, - "improv/re-steemit-firstpost-20170720t073029499z": { - "active_votes": [], - "author": "improv", - "author_payout_value": "0.000 HBD", - "author_reputation": 67.65, - "beneficiaries": [], - "blacklists": [], - "body": "meep", - "category": "meta", - "children": 0, - "created": "2017-07-20T07:30:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-27T07:30:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170720t073029499z", - "post_id": 7692220, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-20T07:30:27", - "url": "/meta/@steemit/firstpost#@improv/re-steemit-firstpost-20170720t073029499z" - }, - "improv/re-steemit-firstpost-20180108t213229597z": { - "active_votes": [ - { - "rshares": "3024091315", - "voter": "paul.atreides" - } - ], - "author": "improv", - "author_payout_value": "0.022 HBD", - "author_reputation": 67.65, - "beneficiaries": [], - "blacklists": [], - "body": "...what is this account? I see that it holds 70 million steem, and apparently gets sent steem from poloniex regularly... I can't figure out for sure what it's FOR, though.", - "category": "meta", - "children": 4, - "created": "2018-01-08T21:32:30", - "curator_payout_value": "0.005 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3024091315, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.027, - "payout_at": "2018-01-15T21:32:30", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180108t213229597z", - "post_id": 24440267, - "promoted": "0.000 HBD", - "replies": [ - "paul.atreides/re-improv-re-steemit-firstpost-20180108t233620916z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-08T21:32:30", - "url": "/meta/@steemit/firstpost#@improv/re-steemit-firstpost-20180108t213229597z" - }, - "intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z": { - "active_votes": [ - { - "rshares": "23648397", - "voter": "sillyfilthy" - } - ], - "author": "intelliguy", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.15, - "beneficiaries": [], - "blacklists": [], - "body": "I thought we were talking about @ned and not @steemit", - "category": "meta", - "children": 1, - "created": "2016-07-21T05:33:57", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ], - "users": [ - "ned", - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 23648397, - "parent_author": "kewpiedoll", - "parent_permlink": "re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z", - "post_id": 173797, - "promoted": "0.000 HBD", - "replies": [ - "kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-21T05:33:57", - "url": "/meta/@steemit/firstpost#@intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z" - }, - "intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z": { - "active_votes": [], - "author": "intelliguy", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.15, - "beneficiaries": [], - "blacklists": [], - "body": "probably because it's one sentence. Doesn't add a lot of good, quality content? I don't know.", - "category": "meta", - "children": 3, - "created": "2016-07-20T21:58:51", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "kewpiedoll", - "parent_permlink": "re-steemit-firstpost-20160720t210201326z", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-kewpiedoll-re-steemit-firstpost-20160720t215823622z", - "post_id": 167552, - "promoted": "0.000 HBD", - "replies": [ - "kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-20T21:58:51", - "url": "/meta/@steemit/firstpost#@intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z" - }, - "inuk/re-tarunmewara-re-steemit-firstpost-20170624t123825509z": { - "active_votes": [ - { - "rshares": "0", - "voter": "inuk" - } - ], - "author": "inuk", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.23, - "beneficiaries": [], - "blacklists": [], - "body": "Welcome to steemit :D", - "category": "meta", - "children": 0, - "created": "2017-06-24T12:38:30", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "tarunmewara", - "parent_permlink": "re-steemit-firstpost-20170624t114746528z", - "payout": 0.0, - "payout_at": "2017-07-01T12:38:30", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-tarunmewara-re-steemit-firstpost-20170624t123825509z", - "post_id": 4911146, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-24T12:38:30", - "url": "/meta/@steemit/firstpost#@inuk/re-tarunmewara-re-steemit-firstpost-20170624t123825509z" - }, - "iqra.naz/re-steemit-firstpost-20180525t192106026z": { - "active_votes": [ - { - "rshares": "68759787", - "voter": "liquifire" - } - ], - "author": "iqra.naz", - "author_payout_value": "0.000 HBD", - "author_reputation": 29.38, - "beneficiaries": [], - "blacklists": [], - "body": "steem is very help ful page", - "category": "meta", - "children": 0, - "created": "2018-05-25T19:21:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 68759787, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-06-01T19:21:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180525t192106026z", - "post_id": 50285910, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-25T19:21:12", - "url": "/meta/@steemit/firstpost#@iqra.naz/re-steemit-firstpost-20180525t192106026z" - }, - "irak/re-steemit-firstpost-20181217t175620092z": { - "active_votes": [ - { - "rshares": "0", - "voter": "raise-me-up" - }, - { - "rshares": "2714148402", - "voter": "devsup" - }, - { - "rshares": "1373188413", - "voter": "frosh2018" - } - ], - "author": "irak", - "author_payout_value": "0.000 HBD", - "author_reputation": 63.12, - "beneficiaries": [], - "blacklists": [], - "body": "Who owned this id?", - "category": "meta", - "children": 0, - "created": "2018-12-17T17:56:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 4087336815, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-12-24T17:56:45", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20181217t175620092z", - "post_id": 67541902, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-12-17T17:56:45", - "url": "/meta/@steemit/firstpost#@irak/re-steemit-firstpost-20181217t175620092z" - }, - "isteemithard/re-steemit-firstpost-20171012t053244218z": { - "active_votes": [], - "author": "isteemithard", - "author_payout_value": "0.000 HBD", - "author_reputation": 60.08, - "beneficiaries": [], - "blacklists": [], - "body": "I love going hard on steemit its that hard for me.", - "category": "meta", - "children": 0, - "created": "2017-10-12T05:32:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-19T05:32:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171012t053244218z", - "post_id": 15112428, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-12T05:32:42", - "url": "/meta/@steemit/firstpost#@isteemithard/re-steemit-firstpost-20171012t053244218z" - }, - "isteemithard/re-steemit-firstpost-20171012t053312152z": { - "active_votes": [ - { - "rshares": "220509685", - "voter": "talukder" - } - ], - "author": "isteemithard", - "author_payout_value": "0.000 HBD", - "author_reputation": 60.08, - "beneficiaries": [], - "blacklists": [], - "body": "I love going hard on steemit its my hard", - "category": "meta", - "children": 1, - "created": "2017-10-12T05:33:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 220509685, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-19T05:33:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171012t053312152z", - "post_id": 15112463, - "promoted": "0.000 HBD", - "replies": [ - "talukder/re-isteemithard-re-steemit-firstpost-20171012t053418526z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-12T05:33:12", - "url": "/meta/@steemit/firstpost#@isteemithard/re-steemit-firstpost-20171012t053312152z" - }, - "isteemithard/re-steemit-firstpost-20171012t053404002z": { - "active_votes": [ - { - "rshares": "280711050", - "voter": "nazarul" - }, - { - "rshares": "69637529", - "voter": "saifursujan" - }, - { - "rshares": "620911554", - "voter": "sagorahmed" - } - ], - "author": "isteemithard", - "author_payout_value": "0.000 HBD", - "author_reputation": 60.08, - "beneficiaries": [], - "blacklists": [], - "body": "![](https://media1.giphy.com/media/1ZBnLJa02mPfy/giphy-downsized.gif)", - "category": "meta", - "children": 0, - "created": "2017-10-12T05:34:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://media1.giphy.com/media/1ZBnLJa02mPfy/giphy-downsized.gif" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 971260133, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-19T05:34:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171012t053404002z", - "post_id": 15112509, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-12T05:34:03", - "url": "/meta/@steemit/firstpost#@isteemithard/re-steemit-firstpost-20171012t053404002z" - }, - "jac4b/re-steemit-firstpost-20171020t194412969z": { - "active_votes": [], - "author": "jac4b", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.0, - "beneficiaries": [], - "blacklists": [], - "body": "Love it!! This is all such a great idea and execution.", - "category": "meta", - "children": 0, - "created": "2017-10-20T19:44:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-27T19:44:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171020t194412969z", - "post_id": 15731552, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-20T19:44:15", - "url": "/meta/@steemit/firstpost#@jac4b/re-steemit-firstpost-20171020t194412969z" - }, - "jack8831/re-steemit-firstpost-20160824t093007335z": { - "active_votes": [ - { - "rshares": "0", - "voter": "panela" - }, - { - "rshares": "0", - "voter": "urmokas" - } - ], - "author": "jack8831", - "author_payout_value": "0.000 HBD", - "author_reputation": 72.34, - "beneficiaries": [], - "blacklists": [], - "body": "You support fantastic system now!", - "category": "meta", - "children": 0, - "created": "2016-08-24T09:30:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160824t093007335z", - "post_id": 729186, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-24T09:30:03", - "url": "/meta/@steemit/firstpost#@jack8831/re-steemit-firstpost-20160824t093007335z" - }, - "jackeown/re-steemit-firstpost-20170620t234314915z": { - "active_votes": [], - "author": "jackeown", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.94, - "beneficiaries": [], - "blacklists": [], - "body": "Hey...this is a humongous wallet...one upvote from this account is worth thousands of dollars according to this: http://www.steemdollar.com/dollar_per_vote.php?name=steemit", - "category": "meta", - "children": 0, - "created": "2017-06-20T23:43:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "http://www.steemdollar.com/dollar_per_vote.php?name=steemit" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-27T23:43:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170620t234314915z", - "post_id": 4492514, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-20T23:43:15", - "url": "/meta/@steemit/firstpost#@jackeown/re-steemit-firstpost-20170620t234314915z" - }, - "jackolanternbob/re-boomshikha-re-stackin-re-steemit-firstpost-20180116t031304296z": { - "active_votes": [ - { - "rshares": "3100351601", - "voter": "jackolanternbob" - }, - { - "rshares": "0", - "voter": "wralkat-studios" - }, - { - "rshares": "0", - "voter": "asherunderwood" - }, - { - "rshares": "0", - "voter": "boondoge" - } - ], - "author": "jackolanternbob", - "author_payout_value": "0.023 HBD", - "author_reputation": 47.69, - "beneficiaries": [], - "blacklists": [], - "body": "WRALKat Studios is a YouTube channel", - "category": "meta", - "children": 3, - "created": "2018-01-16T03:13:06", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3100351601, - "parent_author": "boomshikha", - "parent_permlink": "re-stackin-re-steemit-firstpost-20170825t013613361z", - "payout": 0.023, - "payout_at": "2018-01-23T03:13:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-boomshikha-re-stackin-re-steemit-firstpost-20180116t031304296z", - "post_id": 25951844, - "promoted": "0.000 HBD", - "replies": [ - "cryptosharon/re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180420t083613598z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-16T03:13:06", - "url": "/meta/@steemit/firstpost#@jackolanternbob/re-boomshikha-re-stackin-re-steemit-firstpost-20180116t031304296z" - }, - "jackolanternbob/re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180718t002453741z": { - "active_votes": [ - { - "rshares": "204859423", - "voter": "jackolanternbob" - } - ], - "author": "jackolanternbob", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.69, - "beneficiaries": [], - "blacklists": [], - "body": "You should subscribe, duh", - "category": "meta", - "children": 1, - "created": "2018-07-18T00:24:54", - "curator_payout_value": "0.000 HBD", - "depth": 5, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 204859423, - "parent_author": "cryptosharon", - "parent_permlink": "re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180420t083613598z", - "payout": 0.0, - "payout_at": "2018-07-25T00:24:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180718t002453741z", - "post_id": 56880023, - "promoted": "0.000 HBD", - "replies": [ - "jyinvest/re-jackolanternbob-re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20181205t012608600z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-18T00:24:54", - "url": "/meta/@steemit/firstpost#@jackolanternbob/re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180718t002453741z" - }, - "jacuzzi/re-steemit-firstpost-20190329t233116293z": { - "active_votes": [], - "author": "jacuzzi", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.29, - "beneficiaries": [], - "blacklists": [], - "body": "Love being here Steemit! \nIf you got some extra Steem, send it on over, I would like to be a Whale on here. :D", - "category": "meta", - "children": 0, - "created": "2019-03-29T23:31:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-04-05T23:31:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20190329t233116293z", - "post_id": 72253433, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-03-29T23:31:18", - "url": "/meta/@steemit/firstpost#@jacuzzi/re-steemit-firstpost-20190329t233116293z" - }, - "jaff8/re-steemit-firstpost-20180102t203545319z": { - "active_votes": [ - { - "rshares": "655239907182", - "voter": "rok-sivante" - }, - { - "rshares": "99961699155", - "voter": "libertyteeth" - }, - { - "rshares": "6880364590", - "voter": "smyle" - }, - { - "rshares": "4164132153", - "voter": "dray91eu" - } - ], - "author": "jaff8", - "author_payout_value": "7.684 HBD", - "author_reputation": 67.12, - "beneficiaries": [], - "blacklists": [], - "body": "Wow... See what I just digged up. So Steemit did a short intro post. Where are your pictures? Hahaha", - "category": "meta", - "children": 0, - "created": "2018-01-02T20:35:48", - "curator_payout_value": "1.363 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 766246103080, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 9.047, - "payout_at": "2018-01-09T20:35:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180102t203545319z", - "post_id": 23177478, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-02T20:35:48", - "url": "/meta/@steemit/firstpost#@jaff8/re-steemit-firstpost-20180102t203545319z" - }, - "jazzresin/re-steemit-firstpost-20180426t063924532z": { - "active_votes": [], - "author": "jazzresin", - "author_payout_value": "0.000 HBD", - "author_reputation": 54.18, - "beneficiaries": [], - "blacklists": [], - "body": "Is there an individual behind this @steemit account or is it a gestalt like function for the site?? Meta indeed.....", - "category": "meta", - "children": 0, - "created": "2018-04-26T06:39:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-05-03T06:39:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180426t063924532z", - "post_id": 45467783, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-26T06:39:24", - "url": "/meta/@steemit/firstpost#@jazzresin/re-steemit-firstpost-20180426t063924532z" - }, - "jelloducky/re-steemit-firstpost-20160807t215340468z": { - "active_votes": [ - { - "rshares": "90409341", - "voter": "jelloducky" - }, - { - "rshares": "58727187", - "voter": "rezrez" - } - ], - "author": "jelloducky", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.57, - "beneficiaries": [], - "blacklists": [], - "body": "This platform is inspiring, thank you so much!", - "category": "meta", - "children": 0, - "created": "2016-08-07T21:53:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 149136528, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160807t215340468z", - "post_id": 498164, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-07T21:53:39", - "url": "/meta/@steemit/firstpost#@jelloducky/re-steemit-firstpost-20160807t215340468z" - }, - "jennamarbles/re-steemit-firstpost-20160719t210752086z": { - "active_votes": [ - { - "rshares": "707206172", - "voter": "patrick-g" - }, - { - "rshares": "732150442", - "voter": "artific" - }, - { - "rshares": "17012406247", - "voter": "jennamarbles" - }, - { - "rshares": "66705408", - "voter": "hipsterjesus" - }, - { - "rshares": "51109965", - "voter": "f1111111" - }, - { - "rshares": "0", - "voter": "serendipitie" - } - ], - "author": "jennamarbles", - "author_payout_value": "0.024 HBD", - "author_reputation": 57.93, - "beneficiaries": [], - "blacklists": [], - "body": "Hello @steemit, I'm asking you to support my idea, in a new development STEEM. It will attract tens of thousands of people: https://steemit.com/openheart/@jennamarbles/first-steem-crowdfunding-we-can-make-this-world-better", - "category": "meta", - "children": 0, - "created": "2016-07-19T21:07:48", - "curator_payout_value": "0.003 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "links": [ - "https://steemit.com/openheart/@jennamarbles/first-steem-crowdfunding-we-can-make-this-world-better" - ], - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 18569578234, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.027, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160719t210752086z", - "post_id": 145129, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 5 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-20T08:35:21", - "url": "/meta/@steemit/firstpost#@jennamarbles/re-steemit-firstpost-20160719t210752086z" - }, - "jephline/re-steemit-firstpost-20170928t005448336z": { - "active_votes": [], - "author": "jephline", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.33, - "beneficiaries": [], - "blacklists": [], - "body": "Pls @steemit I like to ask what is the use of he STEEM transfered recently to steemit2 and misterdelegations tobe used for?", - "category": "meta", - "children": 0, - "created": "2017-09-28T00:54:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-05T00:54:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170928t005448336z", - "post_id": 13941268, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-28T00:54:54", - "url": "/meta/@steemit/firstpost#@jephline/re-steemit-firstpost-20170928t005448336z" - }, - "jery/re-steemit-firstpost-20171208t141554872z": { - "active_votes": [], - "author": "jery", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.71, - "beneficiaries": [], - "blacklists": [], - "body": "hey you are steemit owner, i lost my steemit password, can you restore my password, i tried to recover my account but can not. please", - "category": "meta", - "children": 0, - "created": "2017-12-08T14:16:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-15T14:16:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171208t141554872z", - "post_id": 19809672, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-08T14:16:00", - "url": "/meta/@steemit/firstpost#@jery/re-steemit-firstpost-20171208t141554872z" - }, - "jesusj1/re-steemit-firstpost-20180219t060135882z": { - "active_votes": [], - "author": "jesusj1", - "author_payout_value": "0.000 HBD", - "author_reputation": 59.15, - "beneficiaries": [], - "blacklists": [], - "body": "#
Very nice excellent post! If you want to support me in my last publication, it would be a great help to my regards\n![kingtaunt.gif](https://steemitimages.com/DQmXnCEYCoNCw9eHtdTBSy4r5HjtXMNVkPz9pQraFq2bjcU/kingtaunt.gif)\n![rabbit_footer.gif](https://steemitimages.com/DQmSDq73msJmRa9WWMQvQSzi4jLR44W6ffRRDgfRRzFCGTP/rabbit_footer.gif)
\n
https://steemit.com/technology/@jesusj1/puede-la-tecnologia-blockchain-sobrevivir-sin-criptomonedas-jesusj1
", - "category": "meta", - "children": 0, - "created": "2018-02-19T06:01:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmXnCEYCoNCw9eHtdTBSy4r5HjtXMNVkPz9pQraFq2bjcU/kingtaunt.gif", - "https://steemitimages.com/DQmSDq73msJmRa9WWMQvQSzi4jLR44W6ffRRDgfRRzFCGTP/rabbit_footer.gif" - ], - "links": [ - "https://steemit.com/technology/@jesusj1/puede-la-tecnologia-blockchain-sobrevivir-sin-criptomonedas-jesusj1" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-26T06:01:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180219t060135882z", - "post_id": 33679234, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-19T06:01:39", - "url": "/meta/@steemit/firstpost#@jesusj1/re-steemit-firstpost-20180219t060135882z" - }, - "jetblake/re-joecaffeine-re-steemit-firstpost-20170707t112900716z": { - "active_votes": [], - "author": "jetblake", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.13, - "beneficiaries": [], - "blacklists": [], - "body": "welcome aboard. My name is timtea. LOL", - "category": "meta", - "children": 0, - "created": "2017-07-07T11:29:15", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "joecaffeine", - "parent_permlink": "re-steemit-firstpost-20170707t112601869z", - "payout": 0.0, - "payout_at": "2017-07-14T11:29:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-joecaffeine-re-steemit-firstpost-20170707t112900716z", - "post_id": 6435398, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-07T11:29:15", - "url": "/meta/@steemit/firstpost#@jetblake/re-joecaffeine-re-steemit-firstpost-20170707t112900716z" - }, - "jjjjosue/re-steemit-firstpost-20170623t205714645z": { - "active_votes": [ - { - "rshares": "1136455399", - "voter": "evdoggformayor" - } - ], - "author": "jjjjosue", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.03, - "beneficiaries": [], - "blacklists": [], - "body": "yo whats up , how bout a few upvotes or somethin ;)", - "category": "meta", - "children": 0, - "created": "2017-06-23T20:56:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1136455399, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-30T20:56:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170623t205714645z", - "post_id": 4839831, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-23T20:56:24", - "url": "/meta/@steemit/firstpost#@jjjjosue/re-steemit-firstpost-20170623t205714645z" - }, - "joao-cacador/re-steemit-firstpost-20170929t163807870z": { - "active_votes": [ - { - "rshares": "92847476", - "voter": "joao-cacador" - }, - { - "rshares": "0", - "voter": "ivone-cacador" - } - ], - "author": "joao-cacador", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.42, - "beneficiaries": [], - "blacklists": [], - "body": "So cool! This would be the very first post in steemit, I had to comment, 2 years ago!! @steemit", - "category": "meta", - "children": 0, - "created": "2017-09-29T16:38:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 92847476, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-06T16:38:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170929t163807870z", - "post_id": 14083621, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-29T16:38:09", - "url": "/meta/@steemit/firstpost#@joao-cacador/re-steemit-firstpost-20170929t163807870z" - }, - "jobindonesia/re-steemit-firstpost-20180129t025737462z": { - "active_votes": [], - "author": "jobindonesia", - "author_payout_value": "0.000 HBD", - "author_reputation": 7.14, - "beneficiaries": [], - "blacklists": [], - "body": "nice", - "category": "meta", - "children": 0, - "created": "2018-01-29T02:57:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-05T02:57:45", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180129t025737462z", - "post_id": 28835096, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-29T02:57:45", - "url": "/meta/@steemit/firstpost#@jobindonesia/re-steemit-firstpost-20180129t025737462z" - }, - "joearnold/ps8dww": { - "active_votes": [ - { - "rshares": "10934579445", - "voter": "joearnold" - } - ], - "author": "joearnold", - "author_payout_value": "0.000 HBD", - "author_reputation": 54.91, - "beneficiaries": [], - "blacklists": [], - "body": "@steem Can you please reset my account as someone stole it on October14 of 2018. They have been using the steem and it is still delegated to @ verdato and @ fudurian. I do not know if they are the guilty parties or not. It is in a power down right and appears to be continually. I have all original keys and information. please help ! The account is @jadabug ( I set it up for my daughter to blog and she would like to use it. )", - "category": "meta", - "children": 0, - "created": "2019-05-28T20:22:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steem", - "jadabug" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 10934579445, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-06-04T20:22:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "ps8dww", - "post_id": 75474918, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-05-28T20:22:09", - "url": "/meta/@steemit/firstpost#@joearnold/ps8dww" - }, - "joecaffeine/re-steemit-firstpost-20170707t112601869z": { - "active_votes": [], - "author": "joecaffeine", - "author_payout_value": "0.000 HBD", - "author_reputation": 45.33, - "beneficiaries": [], - "blacklists": [], - "body": "Boom!! I'm ALL in baby!!", - "category": "meta", - "children": 1, - "created": "2017-07-07T11:26:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-14T11:26:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170707t112601869z", - "post_id": 6435149, - "promoted": "0.000 HBD", - "replies": [ - "jetblake/re-joecaffeine-re-steemit-firstpost-20170707t112900716z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-07T11:26:00", - "url": "/meta/@steemit/firstpost#@joecaffeine/re-steemit-firstpost-20170707t112601869z" - }, - "johnesan/re-steemit-firstpost-20180103t065110954z": { - "active_votes": [], - "author": "johnesan", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.64, - "beneficiaries": [], - "blacklists": [], - "body": "Its quite interesting to have stumbled on this post! What's more interesting is seeing that the now almighty **Steemit** made just $1.70 on her first post, even with 325 votes! It certainly must be rewarding to look back at your first post @steemit and see all the progress you've made since then! Thanks for this platform...Bigger things to come in 2018!", - "category": "meta", - "children": 0, - "created": "2018-01-03T06:51:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-10T06:51:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180103t065110954z", - "post_id": 23251633, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-03T06:51:12", - "url": "/meta/@steemit/firstpost#@johnesan/re-steemit-firstpost-20180103t065110954z" - }, - "johnsmit/re-steemit-firstpost-20170907t120602357z": { - "active_votes": [ - { - "rshares": "102432820", - "voter": "amat" - }, - { - "rshares": "532754065", - "voter": "johnsmit" - } - ], - "author": "johnsmit", - "author_payout_value": "0.000 HBD", - "author_reputation": 1.45, - "beneficiaries": [], - "blacklists": [ - "reputation-1" - ], - "body": "Such A Great Platform Its Amazing \nSteemit Fail all platform like FB instagram And More platform very soon \nSteemit growth very fast 1 million people join in 3 month \nIts super\nI LOVE STEEMIT!", - "category": "meta", - "children": 0, - "created": "2017-09-07T12:03:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 635186885, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-14T12:03:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170907t120602357z", - "post_id": 12184955, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-07T12:03:39", - "url": "/meta/@steemit/firstpost#@johnsmit/re-steemit-firstpost-20170907t120602357z" - }, - "joshvel/re-crypto-guru-re-business-re-steemit-firstpost-20170921t061421507z": { - "active_votes": [], - "author": "joshvel", - "author_payout_value": "0.000 HBD", - "author_reputation": 60.9, - "beneficiaries": [], - "blacklists": [], - "body": "The funniest comment I read, Lol ! Welcome @steemit to steemit...Thanks @business you made my day!", - "category": "meta", - "children": 0, - "created": "2017-09-21T06:13:30", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "business" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "crypto-guru", - "parent_permlink": "re-business-re-steemit-firstpost-20170827t191427486z", - "payout": 0.0, - "payout_at": "2017-09-28T06:13:30", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-crypto-guru-re-business-re-steemit-firstpost-20170921t061421507z", - "post_id": 13374229, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-21T06:13:30", - "url": "/meta/@steemit/firstpost#@joshvel/re-crypto-guru-re-business-re-steemit-firstpost-20170921t061421507z" - }, - "joyvancouver/re-steemit-firstpost-20180413t065458896z": { - "active_votes": [], - "author": "joyvancouver", - "author_payout_value": "0.000 HBD", - "author_reputation": 61.24, - "beneficiaries": [], - "blacklists": [], - "body": "Is it very first post on Steemit?", - "category": "meta", - "children": 0, - "created": "2018-04-13T06:54:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-20T06:54:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180413t065458896z", - "post_id": 43361772, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-13T06:54:57", - "url": "/meta/@steemit/firstpost#@joyvancouver/re-steemit-firstpost-20180413t065458896z" - }, - "juicyvegandwarf/re-admin-firstpost-20180205t011252333z": { - "active_votes": [], - "author": "juicyvegandwarf", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.79, - "beneficiaries": [], - "blacklists": [], - "body": "Cool, I am the first Crypto Dwarf to reply lol (Does that count?)", - "category": "meta", - "children": 0, - "created": "2018-02-05T01:12:51", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "admin", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-12T01:12:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-admin-firstpost-20180205t011252333z", - "post_id": 30457943, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-05T01:12:51", - "url": "/meta/@steemit/firstpost#@juicyvegandwarf/re-admin-firstpost-20180205t011252333z" - }, - "juicyvegandwarf/re-stackin-re-steemit-firstpost-20180205t003302894z": { - "active_votes": [], - "author": "juicyvegandwarf", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.79, - "beneficiaries": [], - "blacklists": [], - "body": "I have only been here a few days and have fallen in love with it already. Byebye facebook haha", - "category": "meta", - "children": 0, - "created": "2018-02-05T00:33:03", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-02-12T00:33:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180205t003302894z", - "post_id": 30452177, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-05T00:33:03", - "url": "/meta/@steemit/firstpost#@juicyvegandwarf/re-stackin-re-steemit-firstpost-20180205t003302894z" - }, - "juicyvegandwarf/re-steemit-firstpost-20180205t011531738z": { - "active_votes": [], - "author": "juicyvegandwarf", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.79, - "beneficiaries": [], - "blacklists": [], - "body": "I am off to learn about steem, steem dollars, voting, delegating, witnessing, curating, powering up, powering down and just about everything else that I thus far am totally oblivious to since becoming a newb here. \n\nWill I officially be a #steemian once I have mastered the steemy arts?", - "category": "meta", - "children": 0, - "created": "2018-02-05T01:15:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta", - "steemian" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-12T01:15:30", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180205t011531738z", - "post_id": 30458346, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-05T01:15:30", - "url": "/meta/@steemit/firstpost#@juicyvegandwarf/re-steemit-firstpost-20180205t011531738z" - }, - "julybrave/re-steemit-firstpost-20180210t063636822z": { - "active_votes": [], - "author": "julybrave", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.95, - "beneficiaries": [], - "blacklists": [], - "body": "hello steemit! You are rich steem power, if you can donate me for upvote of my post. Also i can help everyone upvote when many steem power.", - "category": "meta", - "children": 0, - "created": "2018-02-10T06:36:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-17T06:36:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180210t063636822z", - "post_id": 31608589, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-10T06:36:39", - "url": "/meta/@steemit/firstpost#@julybrave/re-steemit-firstpost-20180210t063636822z" - }, - "junedd/re-steemit-firstpost-20180411t105927724z": { - "active_votes": [ - { - "rshares": "613346548", - "voter": "junedd" - } - ], - "author": "junedd", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.24, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you so much for giving me this great platform steemit work opportunity", - "category": "meta", - "children": 0, - "created": "2018-04-11T10:59:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 613346548, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-18T10:59:33", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180411t105927724z", - "post_id": 43066937, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-11T10:59:33", - "url": "/meta/@steemit/firstpost#@junedd/re-steemit-firstpost-20180411t105927724z" - }, - "junvebbei/re-steemit-firstpost-20170711t090032219z": { - "active_votes": [ - { - "rshares": "185829218", - "voter": "aurica72" - } - ], - "author": "junvebbei", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.68, - "beneficiaries": [], - "blacklists": [], - "body": "I am new here and I am stoked. :D", - "category": "meta", - "children": 0, - "created": "2017-07-11T09:00:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 185829218, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-18T09:00:33", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170711t090032219z", - "post_id": 6835065, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-11T09:00:33", - "url": "/meta/@steemit/firstpost#@junvebbei/re-steemit-firstpost-20170711t090032219z" - }, - "jury.online/re-steemit-firstpost-20171026t231302575z": { - "active_votes": [ - { - "rshares": "55594225", - "voter": "joshcash" - }, - { - "rshares": "207715053", - "voter": "bibkchhetri" - } - ], - "author": "jury.online", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.01, - "beneficiaries": [], - "blacklists": [], - "body": "
https://media.tenor.com/images/1aabaee05c2b1bbea3f49152e389e3a6/tenor.gif
\n

We are just happy to finally be here. The protocol and platform we are building falls right in line with the type of innovative and free-minded thinking on steemit and the community has welcomed us and inspired us in many ways.

", - "category": "meta", - "children": 0, - "created": "2017-10-26T23:13:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://media.tenor.com/images/1aabaee05c2b1bbea3f49152e389e3a6/tenor.gif" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 263309278, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-02T23:13:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171026t231302575z", - "post_id": 16161637, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-26T23:13:03", - "url": "/meta/@steemit/firstpost#@jury.online/re-steemit-firstpost-20171026t231302575z" - }, - "justinashby/re-steemit-firstpost-20170725t013335892z": { - "active_votes": [ - { - "rshares": "79672902", - "voter": "steeminator3000" - } - ], - "author": "justinashby", - "author_payout_value": "0.000 HBD", - "author_reputation": 61.66, - "beneficiaries": [], - "blacklists": [], - "body": "We are the future!!", - "category": "meta", - "children": 0, - "created": "2017-07-25T01:33:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 79672902, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-01T01:33:33", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170725t013335892z", - "post_id": 8186374, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-25T01:33:33", - "url": "/meta/@steemit/firstpost#@justinashby/re-steemit-firstpost-20170725t013335892z" - }, - "justinashby/re-steemit-firstpost-20171116t030504073z": { - "active_votes": [ - { - "rshares": "443482214", - "voter": "tellermachine" - }, - { - "rshares": "841866674", - "voter": "simonluisi" - } - ], - "author": "justinashby", - "author_payout_value": "0.000 HBD", - "author_reputation": 61.66, - "beneficiaries": [], - "blacklists": [], - "body": "STEEMit is going to take Social Media by storm!", - "category": "meta", - "children": 0, - "created": "2017-11-16T03:05:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1285348888, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-23T03:05:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171116t030504073z", - "post_id": 17820053, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-16T03:05:09", - "url": "/meta/@steemit/firstpost#@justinashby/re-steemit-firstpost-20171116t030504073z" - }, - "justyy/re-steemit-firstpost-20170715t082135653z": { - "active_votes": [ - { - "rshares": "138456096794", - "voter": "penguinpablo" - }, - { - "rshares": "4427416941", - "voter": "sv67216721" - }, - { - "rshares": "508924664", - "voter": "viralcutz" - }, - { - "rshares": "177646674", - "voter": "mxzn" - }, - { - "rshares": "4006174412", - "voter": "shenchensucc" - }, - { - "rshares": "891464378", - "voter": "victorialuxx" - }, - { - "rshares": "1191221427", - "voter": "timlechner" - }, - { - "rshares": "28281859585", - "voter": "sebastiane" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "justyy", - "author_payout_value": "0.744 HBD", - "author_reputation": 74.03, - "beneficiaries": [], - "blacklists": [], - "body": "Steem rocks and changes my life .... in a good way!", - "category": "meta", - "children": 1, - "created": "2017-07-15T08:21:39", - "curator_payout_value": "0.059 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 177940804875, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.803, - "payout_at": "2017-07-22T08:21:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170715t082135653z", - "post_id": 7246278, - "promoted": "0.000 HBD", - "replies": [ - "mxzn/re-justyy-re-steemit-firstpost-20170715t084216221z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 8 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-15T08:21:39", - "url": "/meta/@steemit/firstpost#@justyy/re-steemit-firstpost-20170715t082135653z" - }, - "jyinvest/re-jackolanternbob-re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20181205t012608600z": { - "active_votes": [], - "author": "jyinvest", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.69, - "beneficiaries": [], - "blacklists": [], - "body": "Great!", - "category": "meta", - "children": 0, - "created": "2018-12-05T01:26:09", - "curator_payout_value": "0.000 HBD", - "depth": 6, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "jackolanternbob", - "parent_permlink": "re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180718t002453741z", - "payout": 0.0, - "payout_at": "2018-12-12T01:26:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-jackolanternbob-re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20181205t012608600z", - "post_id": 67000984, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-12-05T01:26:09", - "url": "/meta/@steemit/firstpost#@jyinvest/re-jackolanternbob-re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20181205t012608600z" - }, - "kaliju/re-steemit-firstpost-20171203t125157898z": { - "active_votes": [], - "author": "kaliju", - "author_payout_value": "0.000 HBD", - "author_reputation": 65.8, - "beneficiaries": [], - "blacklists": [], - "body": "# I just want to leave this comment here for historical purposes. \n\n\n.\n.\n.\n.\n.\n.\n.\n.\nYeah, done. :)", - "category": "meta", - "children": 0, - "created": "2017-12-03T12:51:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-10T12:51:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171203t125157898z", - "post_id": 19360320, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-03T12:51:57", - "url": "/meta/@steemit/firstpost#@kaliju/re-steemit-firstpost-20171203t125157898z" - }, - "kamvreto/re-steemit-firstpost-20160722t225246211z": { - "active_votes": [ - { - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "rshares": "167168344", - "voter": "yarike" - }, - { - "rshares": "35874847", - "voter": "pr3ttyp3rf3ct" - } - ], - "author": "kamvreto", - "author_payout_value": "0.000 HBD", - "author_reputation": 35.43, - "beneficiaries": [], - "blacklists": [], - "body": "happy steeming all !!", - "category": "meta", - "children": 0, - "created": "2016-07-22T22:53:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 595502250, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160722t225246211z", - "post_id": 206329, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-22T22:53:18", - "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160722t225246211z" - }, - "kamvreto/re-steemit-firstpost-20160725t221949749z": { - "active_votes": [ - { - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "rshares": "348852497", - "voter": "kamvreto" - }, - { - "rshares": "247328995", - "voter": "adinda" - } - ], - "author": "kamvreto", - "author_payout_value": "0.000 HBD", - "author_reputation": 35.43, - "beneficiaries": [], - "blacklists": [], - "body": "old post, starting the steemit like today.\nmy quote of the day \"Anyone can sell their STEEM for cash or vest it to boost their voting power.\"", - "category": "meta", - "children": 0, - "created": "2016-07-25T22:20:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 977987362, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160725t221949749z", - "post_id": 259905, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-25T22:20:24", - "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160725t221949749z" - }, - "kandywriter/re-steemit-firstpost-20180415t225507938z": { - "active_votes": [], - "author": "kandywriter", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.91, - "beneficiaries": [], - "blacklists": [], - "body": "What a wonderful Amazing place, Gotta Love it on steemit !\ud83d\ude0a \ud83d\udc9c\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a", - "category": "meta", - "children": 0, - "created": "2018-04-15T22:55:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-22T22:55:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180415t225507938z", - "post_id": 43773351, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-15T22:55:12", - "url": "/meta/@steemit/firstpost#@kandywriter/re-steemit-firstpost-20180415t225507938z" - }, - "karmashine/re-steemit-firstpost-20171229t113317542z": { - "active_votes": [ - { - "rshares": "1544797225", - "voter": "juicypop" - }, - { - "rshares": "1306663258", - "voter": "honolulu" - } - ], - "author": "karmashine", - "author_payout_value": "0.033 HBD", - "author_reputation": 51.49, - "beneficiaries": [], - "blacklists": [], - "body": "Best. Platform. EVER.\n\nThank you!!!", - "category": "meta", - "children": 0, - "created": "2017-12-29T11:33:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 2851460483, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.033, - "payout_at": "2018-01-05T11:33:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171229t113317542z", - "post_id": 22497615, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-29T11:33:21", - "url": "/meta/@steemit/firstpost#@karmashine/re-steemit-firstpost-20171229t113317542z" - }, - "keistee/re-steemit-firstpost-20180729t143630570z": { - "active_votes": [], - "author": "keistee", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.58, - "beneficiaries": [], - "blacklists": [], - "body": "Hello, I'm loving steemit;)", - "category": "meta", - "children": 0, - "created": "2018-07-29T14:36:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-08-05T14:36:33", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 0, - "permlink": "re-steemit-firstpost-20180729t143630570z", - "post_id": 58089386, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-29T14:36:33", - "url": "/meta/@steemit/firstpost#@keistee/re-steemit-firstpost-20180729t143630570z" - }, - "kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z": { - "active_votes": [ - { - "rshares": "707206172", - "voter": "patrick-g" - } - ], - "author": "kewpiedoll", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.07, - "beneficiaries": [], - "blacklists": [], - "body": "we are. @steemit was the OP. @ned flagged it.", - "category": "meta", - "children": 0, - "created": "2016-07-21T14:02:21", - "curator_payout_value": "0.000 HBD", - "depth": 5, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ], - "users": [ - "steemit", - "ned" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 707206172, - "parent_author": "intelliguy", - "parent_permlink": "re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z", - "post_id": 180004, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-21T14:02:21", - "url": "/meta/@steemit/firstpost#@kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z" - }, - "kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z": { - "active_votes": [ - { - "rshares": "707206172", - "voter": "patrick-g" - } - ], - "author": "kewpiedoll", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.07, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit is not a \"user,\" it's the actual site itself. and this was the premier post akin to Satoshi's white paper. [See here](http://steemwhales.com/). I just thought it was odd the CEO would downvote the launch of the site he's CEO of.", - "category": "meta", - "children": 2, - "created": "2016-07-21T05:28:21", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "links": [ - "http://steemwhales.com/" - ], - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 707206172, - "parent_author": "intelliguy", - "parent_permlink": "re-kewpiedoll-re-steemit-firstpost-20160720t215823622z", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z", - "post_id": 173754, - "promoted": "0.000 HBD", - "replies": [ - "intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-21T05:28:21", - "url": "/meta/@steemit/firstpost#@kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z" - }, - "kewpiedoll/re-steemit-firstpost-20160720t210201326z": { - "active_votes": [ - { - "rshares": "707206172", - "voter": "patrick-g" - }, - { - "rshares": "231619534", - "voter": "eggstraordinair" - }, - { - "rshares": "123321995", - "voter": "allmonitors" - } - ], - "author": "kewpiedoll", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.07, - "beneficiaries": [], - "blacklists": [], - "body": "Why did @ned flag this post?", - "category": "meta", - "children": 4, - "created": "2016-07-20T21:01:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ], - "users": [ - "ned" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1062147701, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160720t210201326z", - "post_id": 166558, - "promoted": "0.000 HBD", - "replies": [ - "intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-20T21:01:54", - "url": "/meta/@steemit/firstpost#@kewpiedoll/re-steemit-firstpost-20160720t210201326z" - }, - "kid4life/re-fbslo-re-kid4life-re-fbslo-re-steemit-firstpost-20180204t170516059z": { - "active_votes": [], - "author": "kid4life", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.22, - "beneficiaries": [], - "blacklists": [], - "body": "Gimme 5 min", - "category": "meta", - "children": 0, - "created": "2018-02-04T17:05:18", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "fbslo", - "parent_permlink": "re-kid4life-re-fbslo-re-steemit-firstpost-20180204t165833297z", - "payout": 0.0, - "payout_at": "2018-02-11T17:05:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-fbslo-re-kid4life-re-fbslo-re-steemit-firstpost-20180204t170516059z", - "post_id": 30384312, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-04T17:05:18", - "url": "/meta/@steemit/firstpost#@kid4life/re-fbslo-re-kid4life-re-fbslo-re-steemit-firstpost-20180204t170516059z" - }, - "kid4life/re-fbslo-re-steemit-firstpost-20180204t163322409z": { - "active_votes": [ - { - "rshares": "15450240206", - "voter": "fbslo" - } - ], - "author": "kid4life", - "author_payout_value": "0.084 HBD", - "author_reputation": 68.22, - "beneficiaries": [], - "blacklists": [], - "body": "Can we chat?:) Will try Discord", - "category": "meta", - "children": 2, - "created": "2018-02-04T16:33:21", - "curator_payout_value": "0.019 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 15450240206, - "parent_author": "fbslo", - "parent_permlink": "re-steemit-firstpost-20180203t174523045z", - "payout": 0.103, - "payout_at": "2018-02-11T16:33:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-fbslo-re-steemit-firstpost-20180204t163322409z", - "post_id": 30378638, - "promoted": "0.000 HBD", - "replies": [ - "fbslo/re-kid4life-re-fbslo-re-steemit-firstpost-20180204t165833297z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-04T16:33:21", - "url": "/meta/@steemit/firstpost#@kid4life/re-fbslo-re-steemit-firstpost-20180204t163322409z" - }, - "kingtylervvs/re-admin-firstpost-20160717t193811098z": { - "active_votes": [ - { - "rshares": "742566481", - "voter": "patrick-g" - } - ], - "author": "kingtylervvs", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.96, - "beneficiaries": [], - "blacklists": [], - "body": "PARTY PARTY.... P - A - R - T - Y????? BECAUSE I GOTTA!", - "category": "meta", - "children": 0, - "created": "2016-07-17T19:38:12", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 742566481, - "parent_author": "admin", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-admin-firstpost-20160717t193811098z", - "post_id": 110463, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-17T19:38:12", - "url": "/meta/@steemit/firstpost#@kingtylervvs/re-admin-firstpost-20160717t193811098z" - }, - "kingtylervvs/re-steemit-firstpost-20160720t121101482z": { - "active_votes": [ - { - "rshares": "25204741266", - "voter": "justtryme90" - }, - { - "rshares": "707206172", - "voter": "patrick-g" - }, - { - "rshares": "226074637", - "voter": "artjedi" - }, - { - "rshares": "52153025", - "voter": "f1111111" - } - ], - "author": "kingtylervvs", - "author_payout_value": "0.039 HBD", - "author_reputation": 47.96, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you for posting. We all LOVE steem!\n\nI up-voted you too... BTW, should steemit let us steemers advertise using steem? Be sure to tell everyone you know to come vote here at: https://steemit.com/steemit/@kingtylervvs/if-steemit-ever-does-decide-to-advertise-there-is-only-1-way-it-could-work-in-my-opinion-debate\n\nThis is a democratic community decision.
\n\n", - "category": "meta", - "children": 3, - "created": "2016-07-20T12:11:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "image": [ - "http://www.animatedimages.org/data/media/75/animated-train-image-0018.gif", - "http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif", - "https://steem.io/images/steem.png" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 26190175100, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.039, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160720t121101482z", - "post_id": 157998, - "promoted": "0.000 HBD", - "replies": [ - "yonuts/re-kingtylervvs-re-steemit-firstpost-20160729t180621248z", - "strateg/re-kingtylervvs-re-steemit-firstpost-20170517t202248492z", - "crypto-guru/re-kingtylervvs-re-steemit-firstpost-20170827t190850388z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-20T12:11:00", - "url": "/meta/@steemit/firstpost#@kingtylervvs/re-steemit-firstpost-20160720t121101482z" - }, - "krevasilis/re-steemit-firstpost-20180902t093021830z": { - "active_votes": [], - "author": "krevasilis", - "author_payout_value": "0.000 HBD", - "author_reputation": 66.99, - "beneficiaries": [], - "blacklists": [], - "body": "one year with you....happy birthday to me\n![15541215-7722-479F-8102-829C576185C6.jpeg](https://cdn.steemitimages.com/DQmRW5CeLcMwxrAtmtGbET73zJ4XeTdHC83k9drbRWqXxyb/15541215-7722-479F-8102-829C576185C6.jpeg)", - "category": "meta", - "children": 0, - "created": "2018-09-02T09:30:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://cdn.steemitimages.com/DQmRW5CeLcMwxrAtmtGbET73zJ4XeTdHC83k9drbRWqXxyb/15541215-7722-479F-8102-829C576185C6.jpeg" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-09-09T09:30:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180902t093021830z", - "post_id": 61366096, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-09-02T09:30:18", - "url": "/meta/@steemit/firstpost#@krevasilis/re-steemit-firstpost-20180902t093021830z" - }, - "kristenbruce/re-steemit-firstpost-20180110t095327457z": { - "active_votes": [ - { - "rshares": "602081859", - "voter": "hazelpazel" - }, - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "kristenbruce", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.66, - "beneficiaries": [], - "blacklists": [], - "body": "I'm new to steemit and still getting my head around it. Seems great so far though! :D", - "category": "meta", - "children": 0, - "created": "2018-01-10T09:53:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 602081859, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-17T09:53:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180110t095327457z", - "post_id": 24757914, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-10T09:53:27", - "url": "/meta/@steemit/firstpost#@kristenbruce/re-steemit-firstpost-20180110t095327457z" - }, - "lartist-zen/re-steemit-firstpost-20180301t094304415z": { - "active_votes": [], - "author": "lartist-zen", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.93, - "beneficiaries": [], - "blacklists": [], - "body": "Congratulations for your success, you have that deserved you !!\n\nThank you for that's premiers donations, resteem, voted.\nThanks for them!\n\n**I'm sure you have a big heart my steemian friends!**\n\n*Help us please !*\n\n[(HELP CANCER) Steemit help us fight cancer! [Photo 1][ENGLISH]](https://steemit.com/steemit/@lartist-zen/help-cancer-steemit-help-us-fight-cancer-photo-1-english)\n\n[(HELP CANCER) Steemit aidez nous \u00e0 combattre le cancer ! [Photo 1][Fran\u00e7ais]](https://steemit.com/steemit/@lartist-zen/help-cancer-steemit-aidez-nous-a-combattre-le-cancer-photo-1-francais)\n", - "category": "meta", - "children": 0, - "created": "2018-03-01T09:43:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "busy/2.4.0", - "community": "busy", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-08T09:43:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180301t094304415z", - "post_id": 35966143, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-01T09:43:12", - "url": "/meta/@steemit/firstpost#@lartist-zen/re-steemit-firstpost-20180301t094304415z" - }, - "lavidaesunviaje/re-steemit-firstpost-20180221t145554408z": { - "active_votes": [], - "author": "lavidaesunviaje", - "author_payout_value": "0.000 HBD", - "author_reputation": 51.18, - "beneficiaries": [], - "blacklists": [], - "body": "so... Im pretty new on the platform and still couldn't find the way to get higher upvotes without a bot or a Curie vote...\nDo you have any recommendation? \nI would prefer not to fall into the voting bots thing...", - "category": "meta", - "children": 0, - "created": "2018-02-21T14:55:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-28T14:55:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180221t145554408z", - "post_id": 34260116, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-21T14:55:57", - "url": "/meta/@steemit/firstpost#@lavidaesunviaje/re-steemit-firstpost-20180221t145554408z" - }, - "layra/re-farhannaqvi7-re-layra-re-steemit-firstpost-20180620t222752339z": { - "active_votes": [], - "author": "layra", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.87, - "beneficiaries": [], - "blacklists": [], - "body": "Hi @farhannaqvi7, thank you for your message and info! Saludos de Mexico!", - "category": "meta", - "children": 0, - "created": "2018-06-20T22:27:51", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "farhannaqvi7" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "farhannaqvi7", - "parent_permlink": "re-layra-re-steemit-firstpost-20180620t121113715z", - "payout": 0.0, - "payout_at": "2018-06-27T22:27:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-farhannaqvi7-re-layra-re-steemit-firstpost-20180620t222752339z", - "post_id": 53732292, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T22:27:51", - "url": "/meta/@steemit/firstpost#@layra/re-farhannaqvi7-re-layra-re-steemit-firstpost-20180620t222752339z" - }, - "layra/re-silent-ghost-20180620t025040761z-20180620t225205482z": { - "active_votes": [], - "author": "layra", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.87, - "beneficiaries": [], - "blacklists": [], - "body": "Hi @silent-ghost, thanks for the warm welcome! Greetings from Mexico!", - "category": "meta", - "children": 0, - "created": "2018-06-20T22:52:06", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "silent-ghost" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "silent-ghost", - "parent_permlink": "20180620t025040761z", - "payout": 0.0, - "payout_at": "2018-06-27T22:52:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-silent-ghost-20180620t025040761z-20180620t225205482z", - "post_id": 53734366, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T22:52:06", - "url": "/meta/@steemit/firstpost#@layra/re-silent-ghost-20180620t025040761z-20180620t225205482z" - }, - "layra/re-steemit-firstpost-20180620t023240325z": { - "active_votes": [ - { - "rshares": "634193095", - "voter": "st3llar" - }, - { - "rshares": "135580006", - "voter": "mrnastykilla" - }, - { - "rshares": "314225923", - "voter": "kingkong1" - }, - { - "rshares": "759788955", - "voter": "dlivestarbooster" - } - ], - "author": "layra", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.87, - "beneficiaries": [], - "blacklists": [], - "body": "Wow, Could this be the Genesis Post / Genesis Block?! \n\n![ijijijij.gif](https://cdn.steemitimages.com/DQmS4RzREEVNeho2HMiBJhGDEfFFsCX7N7k9u1ihkJJWXps/ijijijij.gif)\n\nGreat to be here, lets kick some centralized (you know what)!!! \nGreetings from Mexico, here is our special #introduceyourself video \nhttps://steemit.com/introduceyourself/@layra/3zsy72td\nSaludos @layra", - "category": "meta", - "children": 8, - "created": "2018-06-20T02:32:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://cdn.steemitimages.com/DQmS4RzREEVNeho2HMiBJhGDEfFFsCX7N7k9u1ihkJJWXps/ijijijij.gif" - ], - "links": [ - "https://steemit.com/introduceyourself/@layra/3zsy72td" - ], - "tags": [ - "meta", - "introduceyourself" - ], - "users": [ - "layra" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1843787979, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-06-27T02:32:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180620t023240325z", - "post_id": 53624430, - "promoted": "0.000 HBD", - "replies": [ - "silent-ghost/20180620t025040761z", - "steemplus-bot/re-steemit-firstpost-20180620t023240325z-re-welcome-to-steemplus", - "farhannaqvi7/re-layra-re-steemit-firstpost-20180620t121113715z", - "veseloff/re-layra-re-steemit-firstpost-20180620t171437053z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T02:32:39", - "url": "/meta/@steemit/firstpost#@layra/re-steemit-firstpost-20180620t023240325z" - }, - "layra/re-steemplus-bot-re-steemit-firstpost-re-welcome-to-steemplus-20180620t225310780z": { - "active_votes": [], - "author": "layra", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.87, - "beneficiaries": [], - "blacklists": [], - "body": "Hi @steemplus-bot, great stuff! Saludos from Mexico!", - "category": "meta", - "children": 0, - "created": "2018-06-20T22:53:12", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemplus-bot" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemplus-bot", - "parent_permlink": "re-steemit-firstpost-20180620t023240325z-re-welcome-to-steemplus", - "payout": 0.0, - "payout_at": "2018-06-27T22:53:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemplus-bot-re-steemit-firstpost-re-welcome-to-steemplus-20180620t225310780z", - "post_id": 53734471, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T22:53:12", - "url": "/meta/@steemit/firstpost#@layra/re-steemplus-bot-re-steemit-firstpost-re-welcome-to-steemplus-20180620t225310780z" - }, - "lazarescu.irinel/re-steemit-firstpost-20170715t163911333z": { - "active_votes": [ - { - "rshares": "1932033701", - "voter": "lazarescu.irinel" - }, - { - "rshares": "1096841661", - "voter": "rajan21" - } - ], - "author": "lazarescu.irinel", - "author_payout_value": "0.000 HBD", - "author_reputation": 61.26, - "beneficiaries": [], - "blacklists": [], - "body": "Though I still do not know where the money comes from, Steemit is a great social media platform for anyone who can earn their money and financial freedom wherever they are in the world by posting. Thanks Steemit and Many Years!", - "category": "meta", - "children": 0, - "created": "2017-07-15T16:39:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3028875362, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-22T16:39:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170715t163911333z", - "post_id": 7281379, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-15T16:39:12", - "url": "/meta/@steemit/firstpost#@lazarescu.irinel/re-steemit-firstpost-20170715t163911333z" - }, - "learnandteach01/re-steemit-firstpost-20180308t203349570z": { - "active_votes": [ - { - "rshares": "85947066", - "voter": "babangsunan" - } - ], - "author": "learnandteach01", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.5, - "beneficiaries": [], - "blacklists": [], - "body": "I guess it will be an honour to write the first post on steemit. Beyond all the drama happening, I believe steemit is an opportunity and I'm glad I made it. \nSo I leave my mark here after 5 months and some days after finding steemit. \n***\n@learnandteach01", - "category": "meta", - "children": 0, - "created": "2018-03-08T20:33:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "learnandteach01" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 85947066, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-15T20:33:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180308t203349570z", - "post_id": 37527577, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-08T20:33:54", - "url": "/meta/@steemit/firstpost#@learnandteach01/re-steemit-firstpost-20180308t203349570z" - }, - "lembach3d/re-steemit-firstpost-20170714t115255243z": { - "active_votes": [ - { - "rshares": "1196362069", - "voter": "lembach3d" - } - ], - "author": "lembach3d", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.76, - "beneficiaries": [], - "blacklists": [], - "body": "Great platform.\nDefinitely going to use this.\nDefinitely going to invest in this.", - "category": "meta", - "children": 0, - "created": "2017-07-14T11:52:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1196362069, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-21T11:52:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170714t115255243z", - "post_id": 7158632, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-14T11:52:57", - "url": "/meta/@steemit/firstpost#@lembach3d/re-steemit-firstpost-20170714t115255243z" - }, - "lenerdie/re-steemit-firstpost-20160726t035056026z": { - "active_votes": [], - "author": "lenerdie", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.79, - "beneficiaries": [], - "blacklists": [], - "body": "Let's get crazy! happy steemit to everybody!", - "category": "meta", - "children": 0, - "created": "2016-07-26T03:50:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160726t035056026z", - "post_id": 264501, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-26T03:50:57", - "url": "/meta/@steemit/firstpost#@lenerdie/re-steemit-firstpost-20160726t035056026z" - }, - "liberosist/q5pe3l": { - "active_votes": [ - { - "rshares": "3206757856", - "voter": "liberosist" - }, - { - "rshares": "150663323896", - "voter": "anthonyadavisii" - } - ], - "author": "liberosist", - "author_payout_value": "0.013 HBD", - "author_reputation": 72.17, - "beneficiaries": [], - "blacklists": [], - "body": "RIP.", - "category": "meta", - "children": 1, - "created": "2020-02-14T18:02:09", - "curator_payout_value": "0.013 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 153870081752, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.026, - "payout_at": "2020-02-21T18:02:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "q5pe3l", - "post_id": 84393764, - "promoted": "0.000 HBD", - "replies": [ - "anthonyadavisii/q5qlz5" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2020-02-14T18:02:09", - "url": "/meta/@steemit/firstpost#@liberosist/q5pe3l" - }, - "lovehaswon/re-steemit-firstpost-20171231t144811861z": { - "active_votes": [ - { - "rshares": "1773646336", - "voter": "lovehaswon" - }, - { - "rshares": "616714305", - "voter": "soulmotivation" - }, - { - "rshares": "668215487", - "voter": "stardivine" - }, - { - "rshares": "458803585", - "voter": "adrian11" - }, - { - "rshares": "622056542", - "voter": "stargreen" - }, - { - "rshares": "562839021", - "voter": "karthikmbbs" - }, - { - "rshares": "533826437", - "voter": "miraj467" - } - ], - "author": "lovehaswon", - "author_payout_value": "0.064 HBD", - "author_reputation": 58.57, - "beneficiaries": [], - "blacklists": [], - "body": "Yes. Steemit is awesome! It changed my life completely. \u263a\ud83d\udc9a", - "category": "meta", - "children": 0, - "created": "2017-12-31T14:48:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 5236101713, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.064, - "payout_at": "2018-01-07T14:48:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171231t144811861z", - "post_id": 22822094, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 7 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-31T14:48:15", - "url": "/meta/@steemit/firstpost#@lovehaswon/re-steemit-firstpost-20171231t144811861z" - }, - "machhour/re-steemit-firstpost-20170714t133446189z": { - "active_votes": [ - { - "rshares": "6060933807", - "voter": "bigtakosensei" - }, - { - "rshares": "8485640753", - "voter": "lazariko12" - }, - { - "rshares": "238572021", - "voter": "pavezi" - }, - { - "rshares": "1543943239", - "voter": "gayboy" - }, - { - "rshares": "1724819281", - "voter": "mightymicke" - }, - { - "rshares": "538373256", - "voter": "thinkagain" - }, - { - "rshares": "469903474", - "voter": "iamshamroz" - }, - { - "rshares": "1129516553", - "voter": "ayoubb" - }, - { - "rshares": "1209832111", - "voter": "cheddad.kamal" - }, - { - "rshares": "1121964556", - "voter": "doyanphotography" - }, - { - "rshares": "850579008", - "voter": "oussama16" - } - ], - "author": "machhour", - "author_payout_value": "0.096 HBD", - "author_reputation": 61.3, - "beneficiaries": [], - "blacklists": [], - "body": "I think that steemit will be the first social network in the world because it has the potential to be, it is a new concept different in the world in the social networks, it is time to invest a deep money And time\nThank you for this post:)", - "category": "meta", - "children": 0, - "created": "2017-07-14T13:34:45", - "curator_payout_value": "0.005 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 23374078059, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.101, - "payout_at": "2017-07-21T13:34:45", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170714t133446189z", - "post_id": 7166239, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 11 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-14T13:34:45", - "url": "/meta/@steemit/firstpost#@machhour/re-steemit-firstpost-20170714t133446189z" - }, - "mahmudulhassan/re-steemit-firstpost-20180521t131958921z": { - "active_votes": [ - { - "rshares": "2332121561", - "voter": "banjo" - }, - { - "rshares": "3295074625", - "voter": "mahmudulhassan" - }, - { - "rshares": "217091070", - "voter": "firozdiu" - } - ], - "author": "mahmudulhassan", - "author_payout_value": "0.023 HBD", - "author_reputation": -4.44, - "beneficiaries": [], - "blacklists": [ - "reputation-0" - ], - "body": "I am so much glad to be a part of the Steemit Community. Thanks to @steemit @banjo @cleverbot @evalina @aysha005 for being with me :-) STEEM ON!!!", - "category": "meta", - "children": 1, - "created": "2018-05-21T13:20:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "banjo", - "cleverbot", - "evalina", - "aysha005" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 5844287256, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.023, - "payout_at": "2018-05-28T13:20:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180521t131958921z", - "post_id": 49598134, - "promoted": "0.000 HBD", - "replies": [ - "banjo/re-mahmudulhassan-steemit-firstpost-20180521t132452206z" - ], - "stats": { - "flag_weight": 0.0, - "gray": true, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-21T13:20:03", - "url": "/meta/@steemit/firstpost#@mahmudulhassan/re-steemit-firstpost-20180521t131958921z" - }, - "mahsabmirza/re-steemit-firstpost-20180128t161211537z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "mahsabmirza", - "author_payout_value": "0.000 HBD", - "author_reputation": 34.71, - "beneficiaries": [], - "blacklists": [], - "body": "i am newbie here kindly help me out to move on on this plaform", - "category": "meta", - "children": 0, - "created": "2018-01-28T16:12:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-04T16:12:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180128t161211537z", - "post_id": 28727362, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-28T16:12:21", - "url": "/meta/@steemit/firstpost#@mahsabmirza/re-steemit-firstpost-20180128t161211537z" - }, - "mammasitta/re-stackin-2017825t14817749z": { - "active_votes": [ - { - "rshares": "14972305039", - "voter": "stackin" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - }, - { - "rshares": "0", - "voter": "asherunderwood" - } - ], - "author": "mammasitta", - "author_payout_value": "0.054 HBD", - "author_reputation": 70.33, - "beneficiaries": [ - { - "account": "esteemapp", - "weight": 500 - } - ], - "blacklists": [], - "body": "Hillerious! I have no idea why everybody votes on this comment. I just found it funny that this was the very first steemit post @stackin and I found it through another member I just met", - "category": "meta", - "children": 4, - "created": "2017-08-24T23:48:21", - "curator_payout_value": "0.001 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "esteem/1.4.7", - "community": "esteem", - "format": "markdown+html", - "tags": "meta" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 14972305039, - "parent_author": "stackin", - "parent_permlink": "re-mammasitta-re-steemit-firstpost-20170824t234608820z", - "payout": 0.055, - "payout_at": "2017-08-31T23:48:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-2017825t14817749z", - "post_id": 10991576, - "promoted": "0.000 HBD", - "replies": [ - "stackin/re-mammasitta-re-stackin-2017825t14817749z-20170824t235309382z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T23:48:21", - "url": "/meta/@steemit/firstpost#@mammasitta/re-stackin-2017825t14817749z" - }, - "mammasitta/re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235433264z": { - "active_votes": [ - { - "rshares": "14972305039", - "voter": "stackin" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - } - ], - "author": "mammasitta", - "author_payout_value": "0.059 HBD", - "author_reputation": 70.33, - "beneficiaries": [], - "blacklists": [], - "body": "That's super strange. I have no idea how I got there hahaha", - "category": "meta", - "children": 2, - "created": "2017-08-24T23:54:33", - "curator_payout_value": "0.000 HBD", - "depth": 5, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 14972305039, - "parent_author": "stackin", - "parent_permlink": "re-mammasitta-re-stackin-2017825t14817749z-20170824t235309382z", - "payout": 0.059, - "payout_at": "2017-08-31T23:54:33", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235433264z", - "post_id": 10991949, - "promoted": "0.000 HBD", - "replies": [ - "stackin/re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235551792z", - "ana-maria/re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170825t065706648z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T23:54:33", - "url": "/meta/@steemit/firstpost#@mammasitta/re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235433264z" - }, - "mammasitta/re-steemit-firstpost-20170824t230822305z": { - "active_votes": [ - { - "rshares": "21332131644", - "voter": "makishart" - }, - { - "rshares": "1695158919348", - "voter": "nanzo-scoop" - }, - { - "rshares": "20892317758", - "voter": "mummyimperfect" - }, - { - "rshares": "24009615052", - "voter": "ak2020" - }, - { - "rshares": "320069146316", - "voter": "thecryptofiend" - }, - { - "rshares": "461493708890", - "voter": "rok-sivante" - }, - { - "rshares": "19633067596", - "voter": "juanmiguelsalas" - }, - { - "rshares": "304124094404", - "voter": "mammasitta" - }, - { - "rshares": "257660678694", - "voter": "ezzy" - }, - { - "rshares": "323928862219", - "voter": "freeyourmind" - }, - { - "rshares": "1451757758", - "voter": "juvyjabian" - }, - { - "rshares": "56463551176", - "voter": "bycz" - }, - { - "rshares": "2787638497", - "voter": "bombaybellyrina" - }, - { - "rshares": "48857608388", - "voter": "jens84" - }, - { - "rshares": "119612080599", - "voter": "rea" - }, - { - "rshares": "92718150048", - "voter": "claudiop63" - }, - { - "rshares": "423538016", - "voter": "cryptoninja" - }, - { - "rshares": "330174800820", - "voter": "snowflake" - }, - { - "rshares": "8674603608", - "voter": "samstonehill" - }, - { - "rshares": "14822764839", - "voter": "kenistyles" - }, - { - "rshares": "1632542982", - "voter": "sature" - }, - { - "rshares": "135585620616", - "voter": "penguinpablo" - }, - { - "rshares": "31665725939", - "voter": "uwelang" - }, - { - "rshares": "9151349104", - "voter": "abh12345" - }, - { - "rshares": "188259536228", - "voter": "t-bot" - }, - { - "rshares": "11697403349", - "voter": "ana-maria" - }, - { - "rshares": "17869997409", - "voter": "sjennon" - }, - { - "rshares": "675436090", - "voter": "siniceku" - }, - { - "rshares": "6203617555", - "voter": "steem-meme" - }, - { - "rshares": "9442450304", - "voter": "sunscape" - }, - { - "rshares": "961845156", - "voter": "trans-juanmi" - }, - { - "rshares": "23889030339", - "voter": "steemprentice" - }, - { - "rshares": "30653499783", - "voter": "mafeeva" - }, - { - "rshares": "323431718514", - "voter": "someonewhoisme" - }, - { - "rshares": "12091953423", - "voter": "middle-theory" - }, - { - "rshares": "911891852", - "voter": "beeridiculous" - }, - { - "rshares": "20465439980", - "voter": "maryfavour" - }, - { - "rshares": "4660273279", - "voter": "detlev" - }, - { - "rshares": "448013999", - "voter": "aismor" - }, - { - "rshares": "10794798815", - "voter": "lizanomadsoul" - }, - { - "rshares": "7507362220", - "voter": "velimir" - }, - { - "rshares": "20957544410", - "voter": "luna33" - }, - { - "rshares": "50935060945", - "voter": "reconnectnature" - }, - { - "rshares": "6513879608", - "voter": "mericanhomestead" - }, - { - "rshares": "4848396280", - "voter": "joe28" - }, - { - "rshares": "22458457559", - "voter": "stackin" - }, - { - "rshares": "5306675924", - "voter": "mrwanderlust" - }, - { - "rshares": "1254932346", - "voter": "ilbarone623" - }, - { - "rshares": "0", - "voter": "gnimeets" - }, - { - "rshares": "282601732", - "voter": "kerlund74" - }, - { - "rshares": "232138499", - "voter": "pizzetta" - }, - { - "rshares": "662278313", - "voter": "nirmalmaduranga" - }, - { - "rshares": "5072317727", - "voter": "pkvlogs" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - }, - { - "rshares": "762805700", - "voter": "bodymindsoul" - }, - { - "rshares": "1724792875", - "voter": "skenan" - }, - { - "rshares": "3361081380", - "voter": "massivevibration" - }, - { - "rshares": "0", - "voter": "mr-lahey" - } - ], - "author": "mammasitta", - "author_payout_value": "16.638 HBD", - "author_reputation": 70.33, - "beneficiaries": [], - "blacklists": [], - "body": "Hahha !", - "category": "meta", - "children": 9, - "created": "2017-08-24T23:08:21", - "curator_payout_value": "3.706 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 5096661505904, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 20.344, - "payout_at": "2017-08-31T23:08:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170824t230822305z", - "post_id": 10989570, - "promoted": "0.000 HBD", - "replies": [ - "stackin/re-mammasitta-re-steemit-firstpost-20170824t234608820z", - "tothemoonin2017/re-mammasitta-re-steemit-firstpost-20180111t033524077z", - "mr-lahey/re-mammasitta-re-steemit-firstpost-20180125t015858620z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 55 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T23:08:21", - "url": "/meta/@steemit/firstpost#@mammasitta/re-steemit-firstpost-20170824t230822305z" - }, - "maninjapan1989/re-steemit-firstpost-20170801t133239673z": { - "active_votes": [ - { - "rshares": "107853661", - "voter": "steemerhrn" - }, - { - "rshares": "110439874", - "voter": "awaismuneeb1" - }, - { - "rshares": "10827825836", - "voter": "maninjapan1989" - } - ], - "author": "maninjapan1989", - "author_payout_value": "0.035 HBD", - "author_reputation": 45.11, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is the bomb!!!! Someday I will be the greatest whale in a sea of dolphins :P haha @steemit", - "category": "meta", - "children": 1, - "created": "2017-08-01T13:32:42", - "curator_payout_value": "0.008 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 11046119371, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.043, - "payout_at": "2017-08-08T13:32:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170801t133239673z", - "post_id": 8905935, - "promoted": "0.000 HBD", - "replies": [ - "fatboyjames/re-maninjapan1989-re-steemit-firstpost-20170801t133614690z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-01T13:32:42", - "url": "/meta/@steemit/firstpost#@maninjapan1989/re-steemit-firstpost-20170801t133239673z" - }, - "marekkaminski/re-steemit-firstpost-20180331t141050263z": { - "active_votes": [ - { - "rshares": "499787226", - "voter": "marekkaminski" - } - ], - "author": "marekkaminski", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.43, - "beneficiaries": [], - "blacklists": [], - "body": "Hello :-)\nPozdrawiam!\n\n#zakatkisteemita", - "category": "meta", - "children": 0, - "created": "2018-03-31T14:10:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta", - "zakatkisteemita" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 499787226, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-07T14:10:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180331t141050263z", - "post_id": 41437304, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-31T14:10:18", - "url": "/meta/@steemit/firstpost#@marekkaminski/re-steemit-firstpost-20180331t141050263z" - }, - "martintruther/re-stackin-re-steemit-firstpost-20180312t001847652z": { - "active_votes": [], - "author": "martintruther", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "It definitely is, I'm happy to see my D-Tube subscribes went to 20 the first day I posted a video. That's 1/3 of what I got on youtube in several MONTHS!", - "category": "meta", - "children": 0, - "created": "2018-03-12T00:18:48", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-03-19T00:18:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180312t001847652z", - "post_id": 38059979, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-12T00:18:48", - "url": "/meta/@steemit/firstpost#@martintruther/re-stackin-re-steemit-firstpost-20180312t001847652z" - }, - "mavigozlu/re-steemit-firstpost-20171107t080352739z": { - "active_votes": [], - "author": "mavigozlu", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.2, - "beneficiaries": [], - "blacklists": [], - "body": "good thing i have @steemit", - "category": "meta", - "children": 0, - "created": "2017-11-07T08:03:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-14T08:03:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171107t080352739z", - "post_id": 17063818, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-07T08:03:51", - "url": "/meta/@steemit/firstpost#@mavigozlu/re-steemit-firstpost-20171107t080352739z" - }, - "mazyar/re-steemit-firstpost-20180226t210930550z": { - "active_votes": [], - "author": "mazyar", - "author_payout_value": "0.000 HBD", - "author_reputation": 40.27, - "beneficiaries": [], - "blacklists": [], - "body": "If this account upvotes someone,it would worth about 9400 sbd!!!", - "category": "meta", - "children": 0, - "created": "2018-02-26T21:09:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-05T21:09:30", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180226t210930550z", - "post_id": 35409712, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-26T21:09:30", - "url": "/meta/@steemit/firstpost#@mazyar/re-steemit-firstpost-20180226t210930550z" - }, - "mburakolgun/re-steemit-firstpost-20180208t150509648z": { - "active_votes": [], - "author": "mburakolgun", - "author_payout_value": "0.000 HBD", - "author_reputation": 39.15, - "beneficiaries": [], - "blacklists": [], - "body": "Hello @dan, @ned, @steemit, @misterdelegation\nWe need your support to Steemit Turkey. My name is @mburakolgun from Turkey. I'm IOS Developer and Programmer.\n\nAltough it has not been so long since i met Steemit, i though, as software developer, a that we need to have our own platform as a Turkish society. I started to work on a website that can be a reference for users from Turkey and I am delightful as I am sharing Steemitr project which I have been working on for a while. We are aiming that project to meet new users from Turkey who searched Steemit, to generate high quality contents of ours, to help each other and to provide an area which will contributes you after a while.\n\nPlease browse for project presentation. \nThanks\n\nhttps://steemit.com/steemitr/@mburakolgun/steemitr-com-or-tuerkiye-nin-steemit-agi-yayinda-or-turkey-s-steemit-network-online", - "category": "meta", - "children": 0, - "created": "2018-02-08T15:05:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "busy/2.3.0", - "community": "steemitr", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-15T15:05:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180208t150509648z", - "post_id": 31252473, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-08T15:05:09", - "url": "/meta/@steemit/firstpost#@mburakolgun/re-steemit-firstpost-20180208t150509648z" - }, - "mcreg/re-steemit-firstpost-20171116t032926766z": { - "active_votes": [], - "author": "mcreg", - "author_payout_value": "0.000 HBD", - "author_reputation": 31.92, - "beneficiaries": [], - "blacklists": [], - "body": "This post looks like the bible of steemit. OLD BUT GOLD.", - "category": "meta", - "children": 0, - "created": "2017-11-16T03:29:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-23T03:29:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171116t032926766z", - "post_id": 17821338, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-16T03:29:27", - "url": "/meta/@steemit/firstpost#@mcreg/re-steemit-firstpost-20171116t032926766z" - }, - "medusade/re-steemit-firstpost-20180405t170316967z": { - "active_votes": [ - { - "rshares": "910838150", - "voter": "morahn" - } - ], - "author": "medusade", - "author_payout_value": "0.000 HBD", - "author_reputation": 33.61, - "beneficiaries": [], - "blacklists": [], - "body": "The exchange rate of STEEM should be called ENTHALPY\n\nfrom the term used in Thermodynamics...", - "category": "meta", - "children": 0, - "created": "2018-04-05T17:03:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 910838150, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-12T17:03:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180405t170316967z", - "post_id": 42225379, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-05T17:03:18", - "url": "/meta/@steemit/firstpost#@medusade/re-steemit-firstpost-20180405t170316967z" - }, - "melvinbonner/re-steemit-firstpost-20170930t182052948z": { - "active_votes": [ - { - "rshares": "754485857", - "voter": "melvinbonner" - } - ], - "author": "melvinbonner", - "author_payout_value": "0.000 HBD", - "author_reputation": 32.6, - "beneficiaries": [], - "blacklists": [], - "body": "I have tried many things online, but steemit has to be the easiest to learn. I'm very happy that I made the decision to join.", - "category": "meta", - "children": 0, - "created": "2017-09-30T18:20:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 754485857, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-07T18:20:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170930t182052948z", - "post_id": 14176609, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-30T18:20:57", - "url": "/meta/@steemit/firstpost#@melvinbonner/re-steemit-firstpost-20170930t182052948z" - }, - "menkarbit/re-steemit-firstpost-20190522t025639257z": { - "active_votes": [], - "author": "menkarbit", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.31, - "beneficiaries": [], - "blacklists": [], - "body": "Greetings from Brazil!", - "category": "meta", - "children": 0, - "created": "2019-05-22T02:56:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-05-29T02:56:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20190522t025639257z", - "post_id": 75131499, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-05-22T02:56:39", - "url": "/meta/@steemit/firstpost#@menkarbit/re-steemit-firstpost-20190522t025639257z" - }, - "michaelabbas/re-stackin-re-steemit-firstpost-20180813t023057209z": { - "active_votes": [], - "author": "michaelabbas", - "author_payout_value": "0.000 HBD", - "author_reputation": 44.65, - "beneficiaries": [], - "blacklists": [], - "body": "I am LOVIN' IT !! THANKS Mr. @STEEMIT \ud83d\ude4c\ud83c\udffc\ud83d\udcaa\ud83c\udffc\ud83d\udcaf", - "category": "meta", - "children": 0, - "created": "2018-08-13T02:31:00", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-08-20T02:31:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180813t023057209z", - "post_id": 59535775, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-08-13T02:31:33", - "url": "/meta/@steemit/firstpost#@michaelabbas/re-stackin-re-steemit-firstpost-20180813t023057209z" - }, - "mikej/re-steemit-firstpost-20170618t041022557z": { - "active_votes": [ - { - "rshares": "1950418132", - "voter": "estronitex" - } - ], - "author": "mikej", - "author_payout_value": "0.038 HBD", - "author_reputation": 50.59, - "beneficiaries": [], - "blacklists": [], - "body": "I love this place!", - "category": "meta", - "children": 0, - "created": "2017-06-18T04:10:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1950418132, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.038, - "payout_at": "2017-06-25T04:10:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170618t041022557z", - "post_id": 4245377, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-18T04:10:21", - "url": "/meta/@steemit/firstpost#@mikej/re-steemit-firstpost-20170618t041022557z" - }, - "mikev/re-steemit-firstpost-20170620t052317893z": { - "active_votes": [ - { - "rshares": "218768369", - "voter": "mikev" - } - ], - "author": "mikev", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.19, - "beneficiaries": [], - "blacklists": [], - "body": "

Welcome to STEEM !

\n![807179.gif](https://steemitimages.com/DQmTsgtXYMjkQnV1AQeqdN2NC5of77Rirh2meQPzMdUVa66/807179.gif)", - "category": "meta", - "children": 0, - "created": "2017-06-20T05:23:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmTsgtXYMjkQnV1AQeqdN2NC5of77Rirh2meQPzMdUVa66/807179.gif" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 218768369, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-27T05:23:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170620t052317893z", - "post_id": 4400125, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-20T05:24:36", - "url": "/meta/@steemit/firstpost#@mikev/re-steemit-firstpost-20170620t052317893z" - }, - "mkucukbekmez/re-steemit-firstpost-20180505t044835104z": { - "active_votes": [ - { - "rshares": "180643254", - "voter": "mkucukbekmez" - } - ], - "author": "mkucukbekmez", - "author_payout_value": "0.000 HBD", - "author_reputation": -1.85, - "beneficiaries": [], - "blacklists": [ - "reputation-0" - ], - "body": "Hey @steemit\n\nCan you help a lot of people watch that video on my profile? It's a charity campaign.\n\nhttps://steemit.com/tr/@mkucukbekmez/if-10-million-people-watch-this-video-life-village-will-be-established-en-tr-or-busy-org", - "category": "meta", - "children": 0, - "created": "2018-05-05T04:48:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "busy/2.4.0", - "community": "busy", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 180643254, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-05-12T04:48:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180505t044835104z", - "post_id": 47009138, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": true, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-05T04:48:39", - "url": "/meta/@steemit/firstpost#@mkucukbekmez/re-steemit-firstpost-20180505t044835104z" - }, - "moataz/re-steemit-firstpost-20170606t220153482z": { - "active_votes": [], - "author": "moataz", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.38, - "beneficiaries": [], - "blacklists": [], - "body": "I'm here!", - "category": "meta", - "children": 0, - "created": "2017-06-06T22:01:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-13T22:01:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170606t220153482z", - "post_id": 3500582, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-06T22:01:57", - "url": "/meta/@steemit/firstpost#@moataz/re-steemit-firstpost-20170606t220153482z" - }, - "moeenali/re-steemit-firstpost-20180207t160328782z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "moeenali", - "author_payout_value": "0.000 HBD", - "author_reputation": 69.36, - "beneficiaries": [], - "blacklists": [], - "body": "good platform", - "category": "meta", - "children": 0, - "created": "2018-02-07T16:03:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-14T16:03:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180207t160328782z", - "post_id": 31047037, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-07T16:03:27", - "url": "/meta/@steemit/firstpost#@moeenali/re-steemit-firstpost-20180207t160328782z" - }, - "moemanmoesly/re-steemit-firstpost-20170624t220649051z": { - "active_votes": [], - "author": "moemanmoesly", - "author_payout_value": "0.000 HBD", - "author_reputation": 67.22, - "beneficiaries": [], - "blacklists": [], - "body": "Are you the whale that i hear so much about?", - "category": "meta", - "children": 0, - "created": "2017-06-24T22:06:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-01T22:06:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170624t220649051z", - "post_id": 4965289, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-24T22:06:48", - "url": "/meta/@steemit/firstpost#@moemanmoesly/re-steemit-firstpost-20170624t220649051z" - }, - "mominsdt/re-boomshikha-re-stackin-re-steemit-firstpost-20180204t150750239z": { - "active_votes": [ - { - "rshares": "2586027606", - "voter": "boomshikha" - }, - { - "rshares": "506931755", - "voter": "nil25" - } - ], - "author": "mominsdt", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.42, - "beneficiaries": [], - "blacklists": [], - "body": "# Hi, This is @mominsdt\nBe Steemit celebrity \nGood Luck", - "category": "meta", - "children": 1, - "created": "2018-02-04T15:07:57", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "mominsdt" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3092959361, - "parent_author": "boomshikha", - "parent_permlink": "re-stackin-re-steemit-firstpost-20170825t013613361z", - "payout": 0.0, - "payout_at": "2018-02-11T15:07:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-boomshikha-re-stackin-re-steemit-firstpost-20180204t150750239z", - "post_id": 30363210, - "promoted": "0.000 HBD", - "replies": [ - "sutter/re-mominsdt-re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035208159z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-04T15:07:57", - "url": "/meta/@steemit/firstpost#@mominsdt/re-boomshikha-re-stackin-re-steemit-firstpost-20180204t150750239z" - }, - "mominsdt/re-gomain-re-stackin-re-steemit-firstpost-20180204t151047773z": { - "active_votes": [ - { - "rshares": "519221010", - "voter": "nil25" - } - ], - "author": "mominsdt", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.42, - "beneficiaries": [], - "blacklists": [], - "body": "# Hi, This @mominsdt\nYES it is.\nNo confusion", - "category": "meta", - "children": 1, - "created": "2018-02-04T15:11:00", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "mominsdt" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 519221010, - "parent_author": "gomain", - "parent_permlink": "re-stackin-re-steemit-firstpost-20180107t195657460z", - "payout": 0.0, - "payout_at": "2018-02-11T15:11:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-gomain-re-stackin-re-steemit-firstpost-20180204t151047773z", - "post_id": 30363716, - "promoted": "0.000 HBD", - "replies": [ - "ritikagupta/re-mominsdt-re-gomain-re-stackin-re-steemit-firstpost-20180522t061702119z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-04T15:11:30", - "url": "/meta/@steemit/firstpost#@mominsdt/re-gomain-re-stackin-re-steemit-firstpost-20180204t151047773z" - }, - "mominsdt/re-hussnain-re-stackin-re-steemit-firstpost-20180204t151415346z": { - "active_votes": [], - "author": "mominsdt", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.42, - "beneficiaries": [], - "blacklists": [], - "body": "# Hi This is @mominsdt\nyes, man", - "category": "meta", - "children": 0, - "created": "2018-02-04T15:14:21", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "mominsdt" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "hussnain", - "parent_permlink": "re-stackin-re-steemit-firstpost-20171218t225148759z", - "payout": 0.0, - "payout_at": "2018-02-11T15:14:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-hussnain-re-stackin-re-steemit-firstpost-20180204t151415346z", - "post_id": 30364348, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-04T15:14:21", - "url": "/meta/@steemit/firstpost#@mominsdt/re-hussnain-re-stackin-re-steemit-firstpost-20180204t151415346z" - }, - "mominsdt/re-stackin-re-steemit-firstpost-20180204t150331514z": { - "active_votes": [], - "author": "mominsdt", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.42, - "beneficiaries": [], - "blacklists": [], - "body": "# Hi, This is @mominsdt\nI joined steemit\nPlease be my follower\nI will be same", - "category": "meta", - "children": 0, - "created": "2018-02-04T15:03:39", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "mominsdt" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-02-11T15:03:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180204t150331514z", - "post_id": 30362482, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-04T15:03:39", - "url": "/meta/@steemit/firstpost#@mominsdt/re-stackin-re-steemit-firstpost-20180204t150331514z" - }, - "mooncryption/re-steemit-firstpost-20170922t043040342z": { - "active_votes": [ - { - "rshares": "25862748588", - "voter": "wbulot" - }, - { - "rshares": "6366623342", - "voter": "mooncryption" - }, - { - "rshares": "821774572", - "voter": "roylee" - } - ], - "author": "mooncryption", - "author_payout_value": "0.084 HBD", - "author_reputation": 62.69, - "beneficiaries": [], - "blacklists": [], - "body": "Haha, it's funny to see how much Steemit has grown from this initial introduction post. It's a bit sad to see that @steemit's first/only post introducing the service gained less than $2 in rewards, but it's amazing to see how much Steemit has grown since then, with many posts gaining hundreds of dollars.", - "category": "meta", - "children": 0, - "created": "2017-09-22T04:30:39", - "curator_payout_value": "0.005 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 33051146502, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.089, - "payout_at": "2017-09-29T04:30:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170922t043040342z", - "post_id": 13453617, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-22T04:30:39", - "url": "/meta/@steemit/firstpost#@mooncryption/re-steemit-firstpost-20170922t043040342z" - }, - "movement19/re-steemit-firstpost-20180218t232705428z": { - "active_votes": [], - "author": "movement19", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.5, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit rocks!\n![m19barcode.jpg](https://steemitimages.com/DQmRJHmHnPS1iMff7NmQKHCn9ULEogFFnwLZBkYfVoAJmka/m19barcode.jpg)", - "category": "meta", - "children": 0, - "created": "2018-02-18T23:27:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmRJHmHnPS1iMff7NmQKHCn9ULEogFFnwLZBkYfVoAJmka/m19barcode.jpg" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-25T23:27:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180218t232705428z", - "post_id": 33617020, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-18T23:27:03", - "url": "/meta/@steemit/firstpost#@movement19/re-steemit-firstpost-20180218t232705428z" - }, - "mr-lahey/re-mammasitta-re-steemit-firstpost-20180125t015858620z": { - "active_votes": [ - { - "rshares": "-796104771", - "voter": "rewardpoolrape" - } - ], - "author": "mr-lahey", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "lol", - "category": "meta", - "children": 0, - "created": "2018-01-25T01:58:54", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": -796104771, - "parent_author": "mammasitta", - "parent_permlink": "re-steemit-firstpost-20170824t230822305z", - "payout": 0.0, - "payout_at": "2018-02-01T01:58:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-mammasitta-re-steemit-firstpost-20180125t015858620z", - "post_id": 27880833, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-25T01:58:54", - "url": "/meta/@steemit/firstpost#@mr-lahey/re-mammasitta-re-steemit-firstpost-20180125t015858620z" - }, - "mr-lahey/re-stackin-re-steemit-firstpost-20180125t015744901z": { - "active_votes": [], - "author": "mr-lahey", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Couldn't agree more bub!", - "category": "meta", - "children": 0, - "created": "2018-01-25T01:57:42", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-02-01T01:57:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180125t015744901z", - "post_id": 27880630, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-25T01:57:42", - "url": "/meta/@steemit/firstpost#@mr-lahey/re-stackin-re-steemit-firstpost-20180125t015744901z" - }, - "mrrifat1/re-steemit-firstpost-20171207t110825462z": { - "active_votes": [ - { - "rshares": "133672549", - "voter": "maxibyte" - }, - { - "rshares": "128531142", - "voter": "mdsaidur" - }, - { - "rshares": "1098884617", - "voter": "olivaw" - } - ], - "author": "mrrifat1", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.97, - "beneficiaries": [], - "blacklists": [], - "body": "Amazing!I am lucky to use Steemit.I wasn't too late to use Steemit.", - "category": "meta", - "children": 0, - "created": "2017-12-07T11:08:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1361088308, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-14T11:08:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171207t110825462z", - "post_id": 19703363, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-07T11:08:15", - "url": "/meta/@steemit/firstpost#@mrrifat1/re-steemit-firstpost-20171207t110825462z" - }, - "mrskatie/re-steemit-firstpost-20180107t205748221z": { - "active_votes": [], - "author": "mrskatie", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.17, - "beneficiaries": [], - "blacklists": [], - "body": "I believe we will see the benefit of this application in the coming days.", - "category": "meta", - "children": 0, - "created": "2018-01-07T20:03:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-14T20:03:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180107t205748221z", - "post_id": 24218450, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-07T20:03:21", - "url": "/meta/@steemit/firstpost#@mrskatie/re-steemit-firstpost-20180107t205748221z" - }, - "muliadi/re-steemit-firstpost-20170925t081014522z": { - "active_votes": [], - "author": "muliadi", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.78, - "beneficiaries": [], - "blacklists": [], - "body": "nice \n\nsee this link ineed your advice\nhttps://steemit.com/photography/@muliadi/macro-shot-photography-2017921t175728227z", - "category": "meta", - "children": 0, - "created": "2017-09-25T08:09:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://steemit.com/photography/@muliadi/macro-shot-photography-2017921t175728227z" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-02T08:09:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170925t081014522z", - "post_id": 13701836, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-25T08:09:39", - "url": "/meta/@steemit/firstpost#@muliadi/re-steemit-firstpost-20170925t081014522z" - }, - "murizalalhabsyi/re-bahagia-arbi-re-steemit-firstpost-20170824t062537081z": { - "active_votes": [], - "author": "murizalalhabsyi", - "author_payout_value": "0.000 HBD", - "author_reputation": 26.34, - "beneficiaries": [], - "blacklists": [], - "body": "Please follow my steemit and cooperation. I thank you very much", - "category": "meta", - "children": 1, - "created": "2017-08-24T06:25:45", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "bahagia-arbi", - "parent_permlink": "re-steemit-firstpost-20170824t062329396z", - "payout": 0.0, - "payout_at": "2017-08-31T06:25:45", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-bahagia-arbi-re-steemit-firstpost-20170824t062537081z", - "post_id": 10922194, - "promoted": "0.000 HBD", - "replies": [ - "bahagia-arbi/re-murizalalhabsyi-2017824t133949978z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T06:25:45", - "url": "/meta/@steemit/firstpost#@murizalalhabsyi/re-bahagia-arbi-re-steemit-firstpost-20170824t062537081z" - }, - "mxzn/re-justyy-re-steemit-firstpost-20170715t084216221z": { - "active_votes": [ - { - "rshares": "177646674", - "voter": "mxzn" - }, - { - "rshares": "0", - "voter": "maninjapan1989" - } - ], - "author": "mxzn", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.13, - "beneficiaries": [], - "blacklists": [], - "body": "Upvoted!", - "category": "meta", - "children": 0, - "created": "2017-07-15T08:45:09", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 177646674, - "parent_author": "justyy", - "parent_permlink": "re-steemit-firstpost-20170715t082135653z", - "payout": 0.0, - "payout_at": "2017-07-22T08:45:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-justyy-re-steemit-firstpost-20170715t084216221z", - "post_id": 7247554, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-15T08:45:09", - "url": "/meta/@steemit/firstpost#@mxzn/re-justyy-re-steemit-firstpost-20170715t084216221z" - }, - "nc-mgtow/re-steemit-firstpost-20170916t153924178z": { - "active_votes": [ - { - "rshares": "1424785659", - "voter": "nc-mgtow" - } - ], - "author": "nc-mgtow", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.14, - "beneficiaries": [], - "blacklists": [], - "body": "Would it be possible for you to vote up my post or comments so I can get my reputation score out of the negative?", - "category": "meta", - "children": 0, - "created": "2017-09-16T15:39:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1424785659, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-23T15:39:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170916t153924178z", - "post_id": 12997363, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-16T15:39:24", - "url": "/meta/@steemit/firstpost#@nc-mgtow/re-steemit-firstpost-20170916t153924178z" - }, - "netizens/re-netizens-re-steemit-firstpost-20180604t162238822z": { - "active_votes": [ - { - "rshares": "235967600", - "voter": "dwainus" - } - ], - "author": "netizens", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.0, - "beneficiaries": [], - "blacklists": [], - "body": "Alright.", - "category": "meta", - "children": 0, - "created": "2018-06-04T16:22:42", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 235967600, - "parent_author": "netizens", - "parent_permlink": "re-steemit-firstpost-20180604t045855195z", - "payout": 0.0, - "payout_at": "2018-06-11T16:22:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-netizens-re-steemit-firstpost-20180604t162238822z", - "post_id": 51656385, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-04T16:22:42", - "url": "/meta/@steemit/firstpost#@netizens/re-netizens-re-steemit-firstpost-20180604t162238822z" - }, - "netizens/re-steemit-firstpost-20180604t045855195z": { - "active_votes": [ - { - "rshares": "1954675706", - "voter": "sbi3" - }, - { - "rshares": "298892148", - "voter": "netizens" - } - ], - "author": "netizens", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.0, - "beneficiaries": [], - "blacklists": [], - "body": "Alright.", - "category": "meta", - "children": 1, - "created": "2018-06-04T04:59:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 2253567854, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-06-11T04:59:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180604t045855195z", - "post_id": 51583324, - "promoted": "0.000 HBD", - "replies": [ - "netizens/re-netizens-re-steemit-firstpost-20180604t162238822z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-04T04:59:06", - "url": "/meta/@steemit/firstpost#@netizens/re-steemit-firstpost-20180604t045855195z" - }, - "nicksteele/re-steemit-firstpost-20170912t215147483z": { - "active_votes": [], - "author": "nicksteele", - "author_payout_value": "0.000 HBD", - "author_reputation": 27.88, - "beneficiaries": [], - "blacklists": [], - "body": "I'm glad to be here! I look forward to writing great stories and interacting with a fun audience :)", - "category": "meta", - "children": 0, - "created": "2017-09-12T21:51:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-19T21:51:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170912t215147483z", - "post_id": 12676400, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-12T21:51:48", - "url": "/meta/@steemit/firstpost#@nicksteele/re-steemit-firstpost-20170912t215147483z" - }, - "nickyhavey/nickyhavey-re-steemit-firstpost-20190719t091238925z": { - "active_votes": [ - { - "rshares": "0", - "voter": "cosmophobia" - } - ], - "author": "nickyhavey", - "author_payout_value": "0.000 HBD", - "author_reputation": 70.76, - "beneficiaries": [], - "blacklists": [], - "body": "Genesis post? \ud83e\udd14\n\nPosted using [Partiko Android](https://partiko.app/referral/nickyhavey)", - "category": "meta", - "children": 0, - "created": "2019-07-19T09:12:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "partiko", - "client": "android" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-07-26T09:12:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "nickyhavey-re-steemit-firstpost-20190719t091238925z", - "post_id": 78109290, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-07-19T09:12:39", - "url": "/meta/@steemit/firstpost#@nickyhavey/nickyhavey-re-steemit-firstpost-20190719t091238925z" - }, - "nideo/re-steemit-firstpost-20171102t212222026z": { - "active_votes": [ - { - "rshares": "122777944423", - "voter": "nideo" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "nideo", - "author_payout_value": "0.189 HBD", - "author_reputation": 52.84, - "beneficiaries": [], - "blacklists": [], - "body": "this post is historical now :]", - "category": "meta", - "children": 0, - "created": "2017-11-02T21:22:21", - "curator_payout_value": "0.062 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 122777944423, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.251, - "payout_at": "2017-11-09T21:22:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171102t212222026z", - "post_id": 16732864, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-02T21:22:21", - "url": "/meta/@steemit/firstpost#@nideo/re-steemit-firstpost-20171102t212222026z" - }, - "nilim/re-steemit-firstpost-20170622t164733895z": { - "active_votes": [], - "author": "nilim", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.06, - "beneficiaries": [], - "blacklists": [], - "body": "hy welcome ...", - "category": "meta", - "children": 0, - "created": "2017-06-22T16:47:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-29T16:47:36", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170622t164733895z", - "post_id": 4690290, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-22T16:47:36", - "url": "/meta/@steemit/firstpost#@nilim/re-steemit-firstpost-20170622t164733895z" - }, - "nithin7237/re-steemit-firstpost-20180830t173842541z": { - "active_votes": [], - "author": "nithin7237", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.51, - "beneficiaries": [], - "blacklists": [], - "body": "# It's Proud to in STEEMIT\n\n**I'm in Love this Earning Platform! THANK YOU @steemit**", - "category": "meta", - "children": 0, - "created": "2018-08-30T17:38:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-09-06T17:38:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180830t173842541z", - "post_id": 61145294, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-08-30T17:38:48", - "url": "/meta/@steemit/firstpost#@nithin7237/re-steemit-firstpost-20180830t173842541z" - }, - "novacomics/re-steemit-firstpost-20171012t002948783z": { - "active_votes": [], - "author": "novacomics", - "author_payout_value": "0.000 HBD", - "author_reputation": 17.03, - "beneficiaries": [], - "blacklists": [], - "body": "Hola buenas noches, inicie hace una hora, subi mi publicacion de presentacion y me di cuenta de que esta trasnparente, como si me la fueran Baneado!! que pasa quiero rspuestas de ustedes @steemit @lince ..muchas gracias! Hello good evening, I started an hour ago, I uploaded my presentation publication and I realized that it is trasnparente, as if I were banned !! What happens I want to answer you @steemit @lince .. thank you very much!", - "category": "meta", - "children": 0, - "created": "2017-10-12T00:30:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "lince" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-19T00:30:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171012t002948783z", - "post_id": 15096916, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-12T00:30:12", - "url": "/meta/@steemit/firstpost#@novacomics/re-steemit-firstpost-20171012t002948783z" - }, - "nurdinnakaturi/re-steemit-firstpost-20171125t102301879z": { - "active_votes": [], - "author": "nurdinnakaturi", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.82, - "beneficiaries": [], - "blacklists": [], - "body": "nice post and pic\nDont forget to upvote follow & resteem\n@nurdinnakaturi", - "category": "meta", - "children": 0, - "created": "2017-11-25T10:23:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "nurdinnakaturi" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-02T10:23:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171125t102301879z", - "post_id": 18656848, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-25T10:23:00", - "url": "/meta/@steemit/firstpost#@nurdinnakaturi/re-steemit-firstpost-20171125t102301879z" - }, - "nurmasyithah/re-steemit-firstpost-20180331t172425587z": { - "active_votes": [], - "author": "nurmasyithah", - "author_payout_value": "0.000 HBD", - "author_reputation": 27.76, - "beneficiaries": [], - "blacklists": [], - "body": "pioner, :)", - "category": "meta", - "children": 0, - "created": "2018-04-01T12:02:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-08T12:02:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180331t172425587z", - "post_id": 41561105, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-01T12:02:24", - "url": "/meta/@steemit/firstpost#@nurmasyithah/re-steemit-firstpost-20180331t172425587z" - }, - "official-mo/re-steemit-firstpost-20180225t142313738z": { - "active_votes": [], - "author": "official-mo", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.74, - "beneficiaries": [], - "blacklists": [], - "body": "Ok.\nBut i dont know why i dont get upvotes", - "category": "meta", - "children": 0, - "created": "2018-02-25T14:23:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-04T14:23:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180225t142313738z", - "post_id": 35122631, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-25T14:23:18", - "url": "/meta/@steemit/firstpost#@official-mo/re-steemit-firstpost-20180225t142313738z" - }, - "ohrak22/re-steemit-firstpost-20180215t053742695z": { - "active_votes": [ - { - "rshares": "350235487", - "voter": "majidsteemit" - } - ], - "author": "ohrak22", - "author_payout_value": "0.000 HBD", - "author_reputation": 39.76, - "beneficiaries": [], - "blacklists": [], - "body": "Hello steemit!", - "category": "meta", - "children": 0, - "created": "2018-02-15T05:37:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 350235487, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-22T05:37:45", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180215t053742695z", - "post_id": 32755950, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-15T05:37:45", - "url": "/meta/@steemit/firstpost#@ohrak22/re-steemit-firstpost-20180215t053742695z" - }, - "onceuponmylife/re-stackin-re-steemit-firstpost-20180502t003931757z": { - "active_votes": [ - { - "rshares": "0", - "voter": "calebotamus" - } - ], - "author": "onceuponmylife", - "author_payout_value": "0.000 HBD", - "author_reputation": 29.56, - "beneficiaries": [], - "blacklists": [], - "body": "yes it is.. i joined a while ago but i am still a little confused with whole concept. however im not giving up. \u270c", - "category": "meta", - "children": 0, - "created": "2018-05-02T00:39:36", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-05-09T00:39:36", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180502t003931757z", - "post_id": 46458557, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-02T00:39:36", - "url": "/meta/@steemit/firstpost#@onceuponmylife/re-stackin-re-steemit-firstpost-20180502t003931757z" - }, - "online12hour/re-steemit-firstpost-20171007t083026835z": { - "active_votes": [], - "author": "online12hour", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.16, - "beneficiaries": [], - "blacklists": [], - "body": "how is this account have huge steem power?", - "category": "meta", - "children": 0, - "created": "2017-10-07T08:30:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-14T08:30:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171007t083026835z", - "post_id": 14694298, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-07T08:30:27", - "url": "/meta/@steemit/firstpost#@online12hour/re-steemit-firstpost-20171007t083026835z" - }, - "oraclefrequency/re-steemit-firstpost-20180116t004211313z": { - "active_votes": [ - { - "rshares": "357987600", - "voter": "moonhologram" - }, - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "oraclefrequency", - "author_payout_value": "0.000 HBD", - "author_reputation": 45.25, - "beneficiaries": [], - "blacklists": [], - "body": "A little late to the party, but I'm very glad to have finally made it over to Steemit. I'm bringing my Youtube and other social media followers with me, in an attempt to help grow the platform even more!", - "category": "meta", - "children": 0, - "created": "2018-01-16T00:42:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 357987600, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-23T00:42:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180116t004211313z", - "post_id": 25933114, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-16T00:42:12", - "url": "/meta/@steemit/firstpost#@oraclefrequency/re-steemit-firstpost-20180116t004211313z" - }, - "oraclefrequency/re-steemit-firstpost-20180615t081110205z": { - "active_votes": [], - "author": "oraclefrequency", - "author_payout_value": "0.000 HBD", - "author_reputation": 45.25, - "beneficiaries": [], - "blacklists": [], - "body": "Awesome to see the original @steemit post two years later.\n\nHow far we've come....\n\nPlease check out my page - @oraclefrequency", - "category": "meta", - "children": 0, - "created": "2018-06-15T08:11:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "oraclefrequency" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-06-22T08:11:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180615t081110205z", - "post_id": 53083433, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-15T08:11:21", - "url": "/meta/@steemit/firstpost#@oraclefrequency/re-steemit-firstpost-20180615t081110205z" - }, - "oregontravel/re-steemit-firstpost-20180227t081732054z": { - "active_votes": [ - { - "rshares": "365866067", - "voter": "shofaemily" - }, - { - "rshares": "233817263", - "voter": "mmmyyyzzz" - } - ], - "author": "oregontravel", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.47, - "beneficiaries": [], - "blacklists": [], - "body": "This was a brilliant idea! Thank you for creating a rewarding platform!! :)", - "category": "meta", - "children": 0, - "created": "2018-02-27T08:17:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 599683330, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-06T08:17:33", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180227t081732054z", - "post_id": 35511896, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-27T08:17:33", - "url": "/meta/@steemit/firstpost#@oregontravel/re-steemit-firstpost-20180227t081732054z" - }, - "otemzi/re-steemit-firstpost-20171206t224513157z": { - "active_votes": [ - { - "rshares": "473496580189", - "voter": "idealist" - }, - { - "rshares": "3768252602", - "voter": "nuges" - }, - { - "rshares": "9055034104", - "voter": "dayjee" - }, - { - "rshares": "8034444116", - "voter": "holabisi" - } - ], - "author": "otemzi", - "author_payout_value": "1.472 HBD", - "author_reputation": 67.83, - "beneficiaries": [], - "blacklists": [], - "body": "WOW the first post ever!", - "category": "meta", - "children": 0, - "created": "2017-12-06T22:45:21", - "curator_payout_value": "0.321 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 494354311011, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 1.793, - "payout_at": "2017-12-13T22:45:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171206t224513157z", - "post_id": 19661609, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-06T22:45:21", - "url": "/meta/@steemit/firstpost#@otemzi/re-steemit-firstpost-20171206t224513157z" - }, - "padmakshi/re-steemit-firstpost-20170901t160649133z": { - "active_votes": [], - "author": "padmakshi", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.35, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is amazing ! Thanks for this social media platform", - "category": "meta", - "children": 0, - "created": "2017-09-01T16:06:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-08T16:06:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170901t160649133z", - "post_id": 11676857, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-01T16:06:51", - "url": "/meta/@steemit/firstpost#@padmakshi/re-steemit-firstpost-20170901t160649133z" - }, - "palani/re-steemit-firstpost-20170926t091508449z": { - "active_votes": [ - { - "rshares": "2008282722", - "voter": "big.mama" - }, - { - "rshares": "524535871", - "voter": "palani" - } - ], - "author": "palani", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.63, - "beneficiaries": [], - "blacklists": [], - "body": "**Give me some love aka upvot**", - "category": "meta", - "children": 0, - "created": "2017-09-26T09:15:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 2532818593, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-03T09:15:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170926t091508449z", - "post_id": 13792383, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-26T09:15:06", - "url": "/meta/@steemit/firstpost#@palani/re-steemit-firstpost-20170926t091508449z" - }, - "paradoxofchoice/re-steemit-firstpost-20170720t042055570z": { - "active_votes": [ - { - "rshares": "2371695903", - "voter": "alphacore" - }, - { - "rshares": "5361195690", - "voter": "butterfly-effect" - }, - { - "rshares": "-58033476", - "voter": "ivylifestyle" - } - ], - "author": "paradoxofchoice", - "author_payout_value": "0.025 HBD", - "author_reputation": 42.81, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is a social media platform where anyone can earn STEEM\n-True story", - "category": "meta", - "children": 0, - "created": "2017-07-20T04:20:54", - "curator_payout_value": "0.006 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 7674858117, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.031, - "payout_at": "2017-07-27T04:20:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170720t042055570z", - "post_id": 7681739, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-20T04:20:54", - "url": "/meta/@steemit/firstpost#@paradoxofchoice/re-steemit-firstpost-20170720t042055570z" - }, - "patrick-g/re-steemit-firstpost-20160722t201007967z": { - "active_votes": [ - { - "rshares": "689526018", - "voter": "patrick-g" - }, - { - "rshares": "46092586", - "voter": "matt876" - }, - { - "rshares": "52153025", - "voter": "f1111111" - } - ], - "author": "patrick-g", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.05, - "beneficiaries": [], - "blacklists": [], - "body": "You can also vote on your posts if you want.:) As in when you reply to other posts. Those are posts you can vote yourself up on.... :)", - "category": "meta", - "children": 0, - "created": "2016-07-22T20:10:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 787771629, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160722t201007967z", - "post_id": 203716, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-22T20:10:09", - "url": "/meta/@steemit/firstpost#@patrick-g/re-steemit-firstpost-20160722t201007967z" - }, - "patriot/re-steemit-firstpost-20170903t012448551z": { - "active_votes": [ - { - "rshares": "103441916", - "voter": "manuel78" - } - ], - "author": "patriot", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.49, - "beneficiaries": [], - "blacklists": [], - "body": "I love steemit so much", - "category": "meta", - "children": 0, - "created": "2017-09-03T01:24:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 103441916, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-10T01:24:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170903t012448551z", - "post_id": 11793761, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-03T01:24:48", - "url": "/meta/@steemit/firstpost#@patriot/re-steemit-firstpost-20170903t012448551z" - }, - "paul.atreides/re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t061937055z": { - "active_votes": [ - { - "rshares": "1149157331", - "voter": "improv" - } - ], - "author": "paul.atreides", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.67, - "beneficiaries": [], - "blacklists": [], - "body": "Don\u2019t know what the money is for but my wish is for it to peg the price of POCKET tokens at 1 Steem each.", - "category": "meta", - "children": 1, - "created": "2018-01-09T06:19:36", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1149157331, - "parent_author": "improv", - "parent_permlink": "re-paulatreides-re-improv-re-steemit-firstpost-20180109t001947344z", - "payout": 0.0, - "payout_at": "2018-01-16T06:19:36", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t061937055z", - "post_id": 24517724, - "promoted": "0.000 HBD", - "replies": [ - "improv/re-paulatreides-re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t084809927z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-09T06:19:36", - "url": "/meta/@steemit/firstpost#@paul.atreides/re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t061937055z" - }, - "paul.atreides/re-improv-re-steemit-firstpost-20180108t233620916z": { - "active_votes": [ - { - "rshares": "1166990364", - "voter": "improv" - } - ], - "author": "paul.atreides", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.67, - "beneficiaries": [], - "blacklists": [], - "body": "You've found the Great Pumpkin, Charlie Brown! Behold, this is the very first Steemit post!! Only a select few ever find it. I think now you get to make a wish!", - "category": "meta", - "children": 3, - "created": "2018-01-08T23:36:21", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1166990364, - "parent_author": "improv", - "parent_permlink": "re-steemit-firstpost-20180108t213229597z", - "payout": 0.0, - "payout_at": "2018-01-15T23:36:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-improv-re-steemit-firstpost-20180108t233620916z", - "post_id": 24458789, - "promoted": "0.000 HBD", - "replies": [ - "improv/re-paulatreides-re-improv-re-steemit-firstpost-20180109t001947344z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-08T23:36:21", - "url": "/meta/@steemit/firstpost#@paul.atreides/re-improv-re-steemit-firstpost-20180108t233620916z" - }, - "pavonj/re-steemit-firstpost-20190323t141141263z": { - "active_votes": [], - "author": "pavonj", - "author_payout_value": "0.000 HBD", - "author_reputation": 66.51, - "beneficiaries": [], - "blacklists": [], - "body": "
\n\nHappy birthday in advance. It's amazing how much Steemit has grown in such a short time.\n\n
", - "category": "meta", - "children": 0, - "created": "2019-03-23T14:11:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-03-30T14:11:45", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20190323t141141263z", - "post_id": 71914489, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-03-23T14:11:45", - "url": "/meta/@steemit/firstpost#@pavonj/re-steemit-firstpost-20190323t141141263z" - }, - "permatek/re-steemit-firstpost-20170821t224000406z": { - "active_votes": [], - "author": "permatek", - "author_payout_value": "0.000 HBD", - "author_reputation": 51.18, - "beneficiaries": [], - "blacklists": [], - "body": "Hi,\n\nI'm arriving on Steemit, and wanted to thank you for this place. Also it seems we need some help for begining (most of post lost themself in the mass due to the nivel), maybe giving a hand is possible from you ?\n\nAnyway, thank again for this social plateform, the lucky potential i give and all the connexion around the world it make possible.\n\nGood continuation @Steemit @Freedom @Steem @Dan @Ned @blocktrades @val-a @mottler @abit @databass @hendrikdegrote @jamesc @ben @michael-b @val-b @ranchorelaxo @proskynneo @thejohalfiles @smooth @xeldal @roadscape @created @arhag @jamesc1 @michael-a @sponge-bob\n\n**...........**\n**[@Permatek](https://steemit.com/@permatek)", - "category": "meta", - "children": 0, - "created": "2017-08-21T22:40:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://steemit.com/@permatek" - ], - "tags": [ - "meta" - ], - "users": [ - "steemit", - "freedom", - "steem", - "dan", - "ned", - "blocktrades", - "val-a", - "mottler", - "abit", - "databass", - "hendrikdegrote", - "jamesc", - "ben", - "michael-b", - "val-b", - "ranchorelaxo", - "proskynneo", - "thejohalfiles", - "smooth", - "xeldal", - "roadscape", - "created", - "arhag", - "jamesc1", - "michael-a", - "sponge-bob" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-28T22:40:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170821t224000406z", - "post_id": 10720514, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-21T22:40:06", - "url": "/meta/@steemit/firstpost#@permatek/re-steemit-firstpost-20170821t224000406z" - }, - "pfunk/q5nv3k": { - "active_votes": [], - "author": "pfunk", - "author_payout_value": "0.000 HBD", - "author_reputation": 72.92, - "beneficiaries": [], - "blacklists": [], - "body": "first post", - "category": "meta", - "children": 0, - "created": "2020-02-13T22:13:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2020-02-20T22:13:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "q5nv3k", - "post_id": 84369899, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2020-02-13T22:13:54", - "url": "/meta/@steemit/firstpost#@pfunk/q5nv3k" - }, - "photographer1/re-steemit-firstpost-20170907t091931832z": { - "active_votes": [], - "author": "photographer1", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.87, - "beneficiaries": [], - "blacklists": [], - "body": "Great platform\nI Love Steemit so much i share my photography I Love This platform", - "category": "meta", - "children": 0, - "created": "2017-09-07T09:17:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-14T09:17:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170907t091931832z", - "post_id": 12174535, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-07T09:17:06", - "url": "/meta/@steemit/firstpost#@photographer1/re-steemit-firstpost-20170907t091931832z" - }, - "pixzelplethora/re-steemit-firstpost-20170607t102348258z": { - "active_votes": [], - "author": "pixzelplethora", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.66, - "beneficiaries": [], - "blacklists": [], - "body": "The most exciting opportunity in blockchain. In for the long haul.", - "category": "meta", - "children": 0, - "created": "2017-06-07T10:23:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-14T10:23:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170607t102348258z", - "post_id": 3525991, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-07T10:23:48", - "url": "/meta/@steemit/firstpost#@pixzelplethora/re-steemit-firstpost-20170607t102348258z" - }, - "pkvlogs/re-steemit-firstpost-20170826t004017217z": { - "active_votes": [], - "author": "pkvlogs", - "author_payout_value": "0.000 HBD", - "author_reputation": 65.14, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is really an amazing place if it used ethically.\nBest social site ever .\nbig thumbs up @steemit .", - "category": "meta", - "children": 0, - "created": "2017-08-26T00:40:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-02T00:40:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170826t004017217z", - "post_id": 11082522, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-26T00:40:21", - "url": "/meta/@steemit/firstpost#@pkvlogs/re-steemit-firstpost-20170826t004017217z" - }, - "plainoldme/re-steemit-firstpost-20180109t120207874z": { - "active_votes": [ - { - "rshares": "156495999", - "voter": "plainoldme" - }, - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "plainoldme", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.68, - "beneficiaries": [], - "blacklists": [], - "body": "thank you for providing us with such a platform. 1 100% upvote from you could pay off my house!! wink wink!! have a good day", - "category": "meta", - "children": 0, - "created": "2018-01-09T12:02:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 156495999, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-16T12:02:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180109t120207874z", - "post_id": 24565584, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-09T12:02:09", - "url": "/meta/@steemit/firstpost#@plainoldme/re-steemit-firstpost-20180109t120207874z" - }, - "planetenamek/re-steemit-firstpost-20170727t210239067z": { - "active_votes": [ - { - "rshares": "718905515", - "voter": "howardroarklol" - } - ], - "author": "planetenamek", - "author_payout_value": "0.000 HBD", - "author_reputation": 63.54, - "beneficiaries": [], - "blacklists": [], - "body": "Hey Steemit !! I Love you \ud83d\udc9d\ud83d\udc9d!", - "category": "meta", - "children": 0, - "created": "2017-07-27T21:02:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 718905515, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-03T21:02:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170727t210239067z", - "post_id": 8491115, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-27T21:02:42", - "url": "/meta/@steemit/firstpost#@planetenamek/re-steemit-firstpost-20170727t210239067z" - }, - "pokerman/re-steemit-firstpost-20171015t204850657z": { - "active_votes": [ - { - "rshares": "0", - "voter": "pokerman" - } - ], - "author": "pokerman", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.7, - "beneficiaries": [], - "blacklists": [], - "body": "I\u2019ve been here two weeks and it\u2019s not so much the app as it is the people . in such a small amount of time the amazing people that I\u2019ve met is where the true value of this place is.", - "category": "meta", - "children": 0, - "created": "2017-10-15T20:48:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-22T20:48:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171015t204850657z", - "post_id": 15393330, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-15T20:48:51", - "url": "/meta/@steemit/firstpost#@pokerman/re-steemit-firstpost-20171015t204850657z" - }, - "ppktech/re-stackin-re-steemit-firstpost-20180310t111546590z": { - "active_votes": [ - { - "rshares": "0", - "voter": "anarcho-pirate" - } - ], - "author": "ppktech", - "author_payout_value": "0.000 HBD", - "author_reputation": 2.38, - "beneficiaries": [], - "blacklists": [], - "body": "Imagine if you get an upvote from the @steemit account.\n\n![steemit.jpg](https://steemitimages.com/DQmdQW5Q7PC4TzEzV8T8wkHWQoidjigLREJ25q1Ph3Ar1Tx/steemit.jpg)\n[Source](https://onsizzle.com/i/anyway-back-to-the-money-4782252)", - "category": "meta", - "children": 0, - "created": "2018-03-10T11:15:48", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmdQW5Q7PC4TzEzV8T8wkHWQoidjigLREJ25q1Ph3Ar1Tx/steemit.jpg" - ], - "links": [ - "https://onsizzle.com/i/anyway-back-to-the-money-4782252" - ], - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-03-17T11:15:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180310t111546590z", - "post_id": 37801604, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-10T11:15:48", - "url": "/meta/@steemit/firstpost#@ppktech/re-stackin-re-steemit-firstpost-20180310t111546590z" - }, - "princeemmanuel/re-steemit-firstpost-20180414t080010152z": { - "active_votes": [ - { - "rshares": "1233876051", - "voter": "princeemmanuel" - } - ], - "author": "princeemmanuel", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.52, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is actually the best thing to have happened as far as social media is concerned\n### Steem On Guys!!! \u270c\ufe0f\u270c\ufe0f\u270c\ufe0f", - "category": "meta", - "children": 0, - "created": "2018-04-14T08:00:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1233876051, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-21T08:00:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180414t080010152z", - "post_id": 43519035, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-14T08:00:18", - "url": "/meta/@steemit/firstpost#@princeemmanuel/re-steemit-firstpost-20180414t080010152z" - }, - "proskynneo/steemit-firstpost-1": { - "active_votes": [ - { - "rshares": "375241", - "voter": "dantheman" - }, - { - "rshares": "2213400", - "voter": "proskynneo" - }, - { - "rshares": "936400", - "voter": "ned" - }, - { - "rshares": "0", - "voter": "murh" - }, - { - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "rshares": "58854897335", - "voter": "business" - }, - { - "rshares": "239342379", - "voter": "kewpiedoll" - }, - { - "rshares": "52153025", - "voter": "f1111111" - }, - { - "rshares": "0", - "voter": "naumovich" - }, - { - "rshares": "0", - "voter": "gogo.tattoo" - }, - { - "rshares": "0", - "voter": "tasartcraft" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "proskynneo", - "author_payout_value": "1.058 HBD", - "author_reputation": 57.84, - "beneficiaries": [], - "blacklists": [], - "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", - "category": "meta", - "children": 1, - "created": "2016-03-31T13:54:33", - "curator_payout_value": "1.059 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 59892484261, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 2.117, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "steemit-firstpost-1", - "post_id": 3, - "promoted": "0.000 HBD", - "replies": [ - "reseller/re-proskynneo-steemit-firstpost-1-20170628t091044635z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 7 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-03-31T13:54:33", - "url": "/meta/@steemit/firstpost#@proskynneo/steemit-firstpost-1" - }, - "pwangdu/re-steemit-firstpost-1519460238570td3d0a265-554a-4cec-9a2f-4bfc4ddaf44euid": { - "active_votes": [], - "author": "pwangdu", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.93, - "beneficiaries": [], - "blacklists": [], - "body": " astonishing & exuberant!", - "category": "meta", - "children": 0, - "created": "2018-02-24T08:17:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "SteemJ-Core/0.4.3", - "format": "markdown", - "tags": [ - "ilikeit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-03T08:17:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-1519460238570td3d0a265-554a-4cec-9a2f-4bfc4ddaf44euid", - "post_id": 34853269, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-24T08:17:18", - "url": "/meta/@steemit/firstpost#@pwangdu/re-steemit-firstpost-1519460238570td3d0a265-554a-4cec-9a2f-4bfc4ddaf44euid" - }, - "pyro0816/re-steemit-firstpost-20180212t120027763z": { - "active_votes": [ - { - "rshares": "263782846", - "voter": "pyro0816" - } - ], - "author": "pyro0816", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.58, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks for the concept. This will be a major concurrent to the established youtube, facebook, twitter and Co... ![53.gif](https://steemitimages.com/DQmW57tX5v6L3E6ktsn8kcEjtXNXJL9mCDRuAEsJ2Yr68F6/53.gif)", - "category": "meta", - "children": 0, - "created": "2018-02-12T12:00:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmW57tX5v6L3E6ktsn8kcEjtXNXJL9mCDRuAEsJ2Yr68F6/53.gif" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 263782846, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-19T12:00:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180212t120027763z", - "post_id": 32105836, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-12T12:00:27", - "url": "/meta/@steemit/firstpost#@pyro0816/re-steemit-firstpost-20180212t120027763z" - }, - "qscheffer/re-steemit-firstpost-20180117t135451396z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "qscheffer", - "author_payout_value": "0.000 HBD", - "author_reputation": 28.52, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit, Why are you powering down?", - "category": "meta", - "children": 0, - "created": "2018-01-17T13:54:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-24T13:54:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180117t135451396z", - "post_id": 26237281, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-17T13:54:54", - "url": "/meta/@steemit/firstpost#@qscheffer/re-steemit-firstpost-20180117t135451396z" - }, - "raterlabs/re-steemit-firstpost-20180120t200113737z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "raterlabs", - "author_payout_value": "0.000 HBD", - "author_reputation": 26.26, - "beneficiaries": [], - "blacklists": [], - "body": "Excited to be part of this community! I'm going whale mode in a few months. #MARKMYWORDS", - "category": "meta", - "children": 0, - "created": "2018-01-20T20:01:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta", - "markmywords" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-27T20:01:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180120t200113737z", - "post_id": 26898687, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-20T20:01:15", - "url": "/meta/@steemit/firstpost#@raterlabs/re-steemit-firstpost-20180120t200113737z" - }, - "rdvn/re-steemit-firstpost-20180210t151408537z": { - "active_votes": [ - { - "rshares": "6548705800", - "voter": "damla" - } - ], - "author": "rdvn", - "author_payout_value": "0.038 HBD", - "author_reputation": 61.87, - "beneficiaries": [], - "blacklists": [], - "body": "Year .10.2.2018 please guys, wake me up when year it been 2050 , really wanna know where is the steemit :D", - "category": "meta", - "children": 0, - "created": "2018-02-10T15:14:09", - "curator_payout_value": "0.008 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 6548705800, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.046, - "payout_at": "2018-02-17T15:14:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180210t151408537z", - "post_id": 31688048, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-10T15:14:09", - "url": "/meta/@steemit/firstpost#@rdvn/re-steemit-firstpost-20180210t151408537z" - }, - "red/steemit-firstpost-2": { - "active_votes": [ - { - "rshares": "-376603", - "voter": "dantheman" - }, - { - "rshares": "903854", - "voter": "mr11acdee" - }, - { - "rshares": "1441", - "voter": "red" - }, - { - "rshares": "23446", - "voter": "xeroc" - }, - { - "rshares": "724886327", - "voter": "patrick-g" - }, - { - "rshares": "60031995282", - "voter": "business" - }, - { - "rshares": "71498008", - "voter": "madhatting" - }, - { - "rshares": "64967241", - "voter": "staceyjatkinson" - }, - { - "rshares": "0", - "voter": "the-ego-is-you" - }, - { - "rshares": "52153025", - "voter": "f1111111" - }, - { - "rshares": "0", - "voter": "gogo.tattoo" - }, - { - "rshares": "0", - "voter": "tasartcraft" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "red", - "author_payout_value": "0.100 HBD", - "author_reputation": 54.7, - "beneficiaries": [], - "blacklists": [], - "body": "Did you know you can earn STEEM by commenting on posts?", - "category": "meta", - "children": 2, - "created": "2016-04-06T19:22:42", - "curator_payout_value": "0.100 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 60946052021, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.2, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "steemit-firstpost-2", - "post_id": 4, - "promoted": "0.000 HBD", - "replies": [ - "steem-id/re-red-steemit-firstpost-2", - "business/re-red-steemit-firstpost-2-20160713t083846149z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 9 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-04-06T19:22:42", - "url": "/meta/@steemit/firstpost#@red/steemit-firstpost-2" - }, - "rednetkjh/re-steemit-firstpost-20160804t061605576z": { - "active_votes": [], - "author": "rednetkjh", - "author_payout_value": "0.000 HBD", - "author_reputation": -1.0, - "beneficiaries": [], - "blacklists": [], - "body": "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service", - "category": "meta", - "children": 0, - "created": "2016-08-04T06:16:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "links": [ - "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160804t061605576z", - "post_id": 440665, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": true, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-04T06:16:00", - "url": "/meta/@steemit/firstpost#@rednetkjh/re-steemit-firstpost-20160804t061605576z" - }, - "reinhardbaust/re-steemit-firstpost-20170907t081004357z": { - "active_votes": [], - "author": "reinhardbaust", - "author_payout_value": "0.000 HBD", - "author_reputation": 29.8, - "beneficiaries": [], - "blacklists": [], - "body": "Es ist eine wunderbare Sache hier zu sein", - "category": "meta", - "children": 0, - "created": "2017-09-07T08:10:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-14T08:10:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170907t081004357z", - "post_id": 12170567, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-07T08:10:09", - "url": "/meta/@steemit/firstpost#@reinhardbaust/re-steemit-firstpost-20170907t081004357z" - }, - "reseller/re-proskynneo-steemit-firstpost-1-20170628t091044635z": { - "active_votes": [ - { - "rshares": "8593397010", - "voter": "reseller" - } - ], - "author": "reseller", - "author_payout_value": "0.072 HBD", - "author_reputation": 74.07, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks for the amazing site guys!", - "category": "meta", - "children": 0, - "created": "2017-06-28T09:10:45", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 8593397010, - "parent_author": "proskynneo", - "parent_permlink": "steemit-firstpost-1", - "payout": 0.072, - "payout_at": "2017-07-05T09:10:45", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-proskynneo-steemit-firstpost-1-20170628t091044635z", - "post_id": 5393338, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-28T09:10:45", - "url": "/meta/@steemit/firstpost#@reseller/re-proskynneo-steemit-firstpost-1-20170628t091044635z" - }, - "resteemy/20180213t002053776z": { - "active_votes": [], - "author": "resteemy", - "author_payout_value": "0.000 HBD", - "author_reputation": 37.8, - "beneficiaries": [], - "blacklists": [], - "body": "Congratulations, you were selected for a random upvote! Follow @resteemy and upvote this post to increase your chance of being upvoted again!\nRead more about @resteemy [here](https://steemit.com/resteemy/@resteemy/introducting-resteemy).", - "category": "meta", - "children": 0, - "created": "2018-02-13T00:20:54", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "chaseburnett", - "parent_permlink": "re-steemit-firstpost-20180213t001454596z", - "payout": 0.0, - "payout_at": "2018-02-20T00:20:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "20180213t002053776z", - "post_id": 32231532, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-13T00:20:54", - "url": "/meta/@steemit/firstpost#@resteemy/20180213t002053776z" - }, - "rewardpoolrape/rewardpoolrape-re-abusalehre-steemit-firstpost-20180117t154220577z": { - "active_votes": [ - { - "rshares": "32265067435", - "voter": "rewardpoolrape" - } - ], - "author": "rewardpoolrape", - "author_payout_value": "0.264 HBD", - "author_reputation": 62.06, - "beneficiaries": [], - "blacklists": [], - "body": "You're so nice for commenting on this post. For that, I gave you a vote!", - "category": "meta", - "children": 0, - "created": "2018-01-17T15:48:21", - "curator_payout_value": "0.004 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 32265067435, - "parent_author": "abusaleh", - "parent_permlink": "re-steemit-firstpost-20180117t154220577z", - "payout": 0.268, - "payout_at": "2018-01-24T15:48:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "rewardpoolrape-re-abusalehre-steemit-firstpost-20180117t154220577z", - "post_id": 26257263, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-17T15:48:21", - "url": "/meta/@steemit/firstpost#@rewardpoolrape/rewardpoolrape-re-abusalehre-steemit-firstpost-20180117t154220577z" - }, - "riezaldi/re-steemit-firstpost-20180411t205519750z": { - "active_votes": [], - "author": "riezaldi", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.96, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you steemit, i just joined this platform for a few days and i am happy to have a steemit account, many things i can learn here from how to write, courtesy and best friend, i love this peace loving platform, i hope steemit will go forward and growing all in the world.", - "category": "meta", - "children": 0, - "created": "2018-04-11T20:55:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-18T20:55:33", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180411t205519750z", - "post_id": 43143327, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-11T20:55:33", - "url": "/meta/@steemit/firstpost#@riezaldi/re-steemit-firstpost-20180411t205519750z" - }, - "rikyu/rikyu-re-steemit-firstpost-20191029t114433099z": { - "active_votes": [ - { - "rshares": "0", - "voter": "cosmophobia" - } - ], - "author": "rikyu", - "author_payout_value": "0.000 HBD", - "author_reputation": 46.05, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is a great was to publish your created content or support another with upvoting. I am happy to have joined this community and see it grow\n\nPosted using [Partiko Android](https://partiko.app/referral/rikyu)", - "category": "meta", - "children": 0, - "created": "2019-10-29T11:44:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "partiko", - "client": "android" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-11-05T11:44:33", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "rikyu-re-steemit-firstpost-20191029t114433099z", - "post_id": 81289854, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-10-29T11:44:33", - "url": "/meta/@steemit/firstpost#@rikyu/rikyu-re-steemit-firstpost-20191029t114433099z" - }, - "ritikagupta/re-calebotamus-re-stackin-re-steemit-firstpost-20180522t062710046z": { - "active_votes": [], - "author": "ritikagupta", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.41, - "beneficiaries": [], - "blacklists": [], - "body": "Hey I followed you..\nPlease follow me back!! \nThanks :)", - "category": "meta", - "children": 0, - "created": "2018-05-22T06:28:09", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "calebotamus", - "parent_permlink": "re-stackin-re-steemit-firstpost-20180223t211655533z", - "payout": 0.0, - "payout_at": "2018-05-29T06:28:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-calebotamus-re-stackin-re-steemit-firstpost-20180522t062710046z", - "post_id": 49713650, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-22T06:28:09", - "url": "/meta/@steemit/firstpost#@ritikagupta/re-calebotamus-re-stackin-re-steemit-firstpost-20180522t062710046z" - }, - "ritikagupta/re-chaseburnett-re-stackin-re-steemit-firstpost-20180522t062303683z": { - "active_votes": [], - "author": "ritikagupta", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.41, - "beneficiaries": [], - "blacklists": [], - "body": "Yessss!! :)", - "category": "meta", - "children": 0, - "created": "2018-05-22T06:23:21", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "chaseburnett", - "parent_permlink": "re-stackin-re-steemit-firstpost-20180213t001539171z", - "payout": 0.0, - "payout_at": "2018-05-29T06:23:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-chaseburnett-re-stackin-re-steemit-firstpost-20180522t062303683z", - "post_id": 49713186, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-22T06:23:21", - "url": "/meta/@steemit/firstpost#@ritikagupta/re-chaseburnett-re-stackin-re-steemit-firstpost-20180522t062303683z" - }, - "ritikagupta/re-crypto-guru-re-stackin-re-steemit-firstpost-20180522t062351778z": { - "active_votes": [], - "author": "ritikagupta", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.41, - "beneficiaries": [], - "blacklists": [], - "body": "Hey i followed you...\nDo follow me back!!\nThanks :)", - "category": "meta", - "children": 0, - "created": "2018-05-22T06:24:06", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "crypto-guru", - "parent_permlink": "re-stackin-re-steemit-firstpost-20170827t190543739z", - "payout": 0.0, - "payout_at": "2018-05-29T06:24:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-crypto-guru-re-stackin-re-steemit-firstpost-20180522t062351778z", - "post_id": 49713266, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-22T06:24:06", - "url": "/meta/@steemit/firstpost#@ritikagupta/re-crypto-guru-re-stackin-re-steemit-firstpost-20180522t062351778z" - }, - "ritikagupta/re-dan321-re-stackin-re-steemit-firstpost-20180522t062950122z": { - "active_votes": [], - "author": "ritikagupta", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.41, - "beneficiaries": [], - "blacklists": [], - "body": "Indeed!! \nHey I followed you..\nPlease follow me back!!\nThanks :)", - "category": "meta", - "children": 0, - "created": "2018-05-22T06:30:03", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "dan321", - "parent_permlink": "re-stackin-re-steemit-firstpost-20180304t105930825z", - "payout": 0.0, - "payout_at": "2018-05-29T06:30:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-dan321-re-stackin-re-steemit-firstpost-20180522t062950122z", - "post_id": 49713815, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-22T06:30:03", - "url": "/meta/@steemit/firstpost#@ritikagupta/re-dan321-re-stackin-re-steemit-firstpost-20180522t062950122z" - }, - "ritikagupta/re-mominsdt-re-gomain-re-stackin-re-steemit-firstpost-20180522t061702119z": { - "active_votes": [], - "author": "ritikagupta", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.41, - "beneficiaries": [], - "blacklists": [], - "body": "Hey i followed you...\nDo follow me back!!\nThanks :)", - "category": "meta", - "children": 0, - "created": "2018-05-22T06:17:12", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "mominsdt", - "parent_permlink": "re-gomain-re-stackin-re-steemit-firstpost-20180204t151047773z", - "payout": 0.0, - "payout_at": "2018-05-29T06:17:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-mominsdt-re-gomain-re-stackin-re-steemit-firstpost-20180522t061702119z", - "post_id": 49712588, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-22T06:17:12", - "url": "/meta/@steemit/firstpost#@ritikagupta/re-mominsdt-re-gomain-re-stackin-re-steemit-firstpost-20180522t061702119z" - }, - "ritikagupta/re-salda-re-stackin-re-steemit-firstpost-20180522t061924817z": { - "active_votes": [], - "author": "ritikagupta", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.41, - "beneficiaries": [], - "blacklists": [], - "body": "Hey i followed you...\nDo follow me back!!\nThanks :)", - "category": "meta", - "children": 0, - "created": "2018-05-22T06:20:48", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "salda", - "parent_permlink": "re-stackin-re-steemit-firstpost-20180214t094350602z", - "payout": 0.0, - "payout_at": "2018-05-29T06:20:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-salda-re-stackin-re-steemit-firstpost-20180522t061924817z", - "post_id": 49712950, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-22T06:20:48", - "url": "/meta/@steemit/firstpost#@ritikagupta/re-salda-re-stackin-re-steemit-firstpost-20180522t061924817z" - }, - "ritikagupta/re-steemit-firstpost-20180522t061131493z": { - "active_votes": [ - { - "rshares": "79574908", - "voter": "raise-me-up" - } - ], - "author": "ritikagupta", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.41, - "beneficiaries": [], - "blacklists": [], - "body": "Hi everyone..\nIndeed!!\nFollow me and I'll follow you back for sure!!\nhttps://steemit.com/@ritikagupta\nThanks :)", - "category": "meta", - "children": 0, - "created": "2018-05-22T06:11:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://steemit.com/@ritikagupta" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 79574908, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-05-29T06:11:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180522t061131493z", - "post_id": 49712041, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-22T06:11:54", - "url": "/meta/@steemit/firstpost#@ritikagupta/re-steemit-firstpost-20180522t061131493z" - }, - "rittr/re-steemit-firstpost-20160824t025355199z": { - "active_votes": [ - { - "rshares": "-75407549856", - "voter": "vault" - }, - { - "rshares": "865125771", - "voter": "rittr" - }, - { - "rshares": "57599604", - "voter": "abanks1000" - }, - { - "rshares": "54993432", - "voter": "landarin" - }, - { - "rshares": "0", - "voter": "panela" - } - ], - "author": "rittr", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.8, - "beneficiaries": [], - "blacklists": [], - "body": "I am Comment **Number 35** on the first Steemit Poster evaaar!", - "category": "meta", - "children": 1, - "created": "2016-08-24T02:53:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": -74429831049, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160824t025355199z", - "post_id": 726644, - "promoted": "0.000 HBD", - "replies": [ - "sathyasankar/q67y2x" - ], - "stats": { - "flag_weight": 1.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-24T02:53:57", - "url": "/meta/@steemit/firstpost#@rittr/re-steemit-firstpost-20160824t025355199z" - }, - "rksumanthraju/re-steemit-firstpost-20180119t045007513z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "rksumanthraju", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.76, - "beneficiaries": [], - "blacklists": [], - "body": "Nice info", - "category": "meta", - "children": 0, - "created": "2018-01-19T04:50:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-26T04:50:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180119t045007513z", - "post_id": 26557035, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-19T04:50:09", - "url": "/meta/@steemit/firstpost#@rksumanthraju/re-steemit-firstpost-20180119t045007513z" - }, - "robi/re-steemit-firstpost-20170623t210657150z": { - "active_votes": [ - { - "rshares": "4112825595", - "voter": "robi" - } - ], - "author": "robi", - "author_payout_value": "0.047 HBD", - "author_reputation": 52.99, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks for STEEM", - "category": "meta", - "children": 0, - "created": "2017-06-23T21:06:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 4112825595, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.047, - "payout_at": "2017-06-30T21:06:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170623t210657150z", - "post_id": 4840849, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-23T21:06:57", - "url": "/meta/@steemit/firstpost#@robi/re-steemit-firstpost-20170623t210657150z" - }, - "ronmamita/re-steemit-firstpost-20170714t155806399z": { - "active_votes": [ - { - "rshares": "0", - "voter": "frankbacon" - }, - { - "rshares": "1079432343", - "voter": "moniquer" - } - ], - "author": "ronmamita", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.98, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit I think steemit has great potential as a pioneering social media with several issues to address for needed improvement.\nSteemit.com doesn't have many user friendly features that are common among most social media, such as easy to search past posts (the resteemed clutters up every members' profile page). Filtering or better yet, separating resteemed posts from authors' posts is urgently needed and there are other issues such as security, censorship abuse, and the popularity meme. \nUpvotes Chasing Whales meme is overwhelming minnows. _One possible response is to hide the upvotes and the payout counters until the 7 day timestamp expires so other considerations about the post could enter the readers' decision making process._\n\nThere may be other issues that need to be addressed and there certainly are many possible responses to choose from, I am certainly looking forward to the advances steemit.com and other 3rd party blockchain programmers will take to make steemit even better - wishing you success! 👍", - "category": "meta", - "children": 0, - "created": "2017-07-14T15:58:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1079432343, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-21T15:58:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170714t155806399z", - "post_id": 7179562, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-14T16:00:51", - "url": "/meta/@steemit/firstpost#@ronmamita/re-steemit-firstpost-20170714t155806399z" - }, - "rrs007/re-steemit-firstpost-20180728t115653831z": { - "active_votes": [ - { - "rshares": "343612955", - "voter": "fxnuruzzaman" - } - ], - "author": "rrs007", - "author_payout_value": "0.000 HBD", - "author_reputation": 27.04, - "beneficiaries": [], - "blacklists": [], - "body": "Hey steemit I am new at this if you can help me out if you liked my content please follow and upvote . @rrs007", - "category": "meta", - "children": 0, - "created": "2018-07-28T11:57:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "rrs007" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 343612955, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-08-04T11:57:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180728t115653831z", - "post_id": 57973595, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-28T11:57:09", - "url": "/meta/@steemit/firstpost#@rrs007/re-steemit-firstpost-20180728t115653831z" - }, - "rrs007/re-steemit-firstpost-20180728t120229680z": { - "active_votes": [ - { - "rshares": "437878456", - "voter": "catart" - } - ], - "author": "rrs007", - "author_payout_value": "0.000 HBD", - "author_reputation": 27.04, - "beneficiaries": [], - "blacklists": [], - "body": "Hey steemit I am a beginner honestly I don't know how to start. So if you can help me , if you like my content please follow and upvote ,thank you. @rrs007", - "category": "meta", - "children": 0, - "created": "2018-07-28T12:02:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "rrs007" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 437878456, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-08-04T12:02:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180728t120229680z", - "post_id": 57974033, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-28T12:02:42", - "url": "/meta/@steemit/firstpost#@rrs007/re-steemit-firstpost-20180728t120229680z" - }, - "sagaing/sagaing-re-steemit-firstpost-20190409t132907405z": { - "active_votes": [], - "author": "sagaing", - "author_payout_value": "0.000 HBD", - "author_reputation": 34.89, - "beneficiaries": [], - "blacklists": [], - "body": "hi\n\nPosted using [Partiko Messaging](https://steemit.com/@partiko)", - "category": "meta", - "children": 0, - "created": "2019-04-09T13:29:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "partiko", - "from_partiko_messaging": true - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-04-16T13:29:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "sagaing-re-steemit-firstpost-20190409t132907405z", - "post_id": 72774867, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-04-09T13:29:09", - "url": "/meta/@steemit/firstpost#@sagaing/sagaing-re-steemit-firstpost-20190409t132907405z" - }, - "salda/re-stackin-re-steemit-firstpost-20180214t094158335z": { - "active_votes": [], - "author": "salda", - "author_payout_value": "0.000 HBD", - "author_reputation": 27.71, - "beneficiaries": [], - "blacklists": [], - "body": "do not forget follow, votes and comment my account @salda thank's \ud83d\udc8b\ud83d\udc8b\ud83d\udc8b\ud83d\udc8b", - "category": "meta", - "children": 0, - "created": "2018-02-14T09:38:36", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "salda" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-02-21T09:38:36", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180214t094158335z", - "post_id": 32563652, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-14T09:38:36", - "url": "/meta/@steemit/firstpost#@salda/re-stackin-re-steemit-firstpost-20180214t094158335z" - }, - "salda/re-stackin-re-steemit-firstpost-20180214t094350602z": { - "active_votes": [ - { - "rshares": "0", - "voter": "ritikagupta" - } - ], - "author": "salda", - "author_payout_value": "0.000 HBD", - "author_reputation": 27.71, - "beneficiaries": [], - "blacklists": [], - "body": "do not forget follow, votes and comment my account @salda thanks....", - "category": "meta", - "children": 1, - "created": "2018-02-14T09:40:27", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "salda" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-02-21T09:40:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180214t094350602z", - "post_id": 32563995, - "promoted": "0.000 HBD", - "replies": [ - "ritikagupta/re-salda-re-stackin-re-steemit-firstpost-20180522t061924817z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-14T09:40:27", - "url": "/meta/@steemit/firstpost#@salda/re-stackin-re-steemit-firstpost-20180214t094350602z" - }, - "salda/re-steemit-firstpost-20180214t094057265z": { - "active_votes": [], - "author": "salda", - "author_payout_value": "0.000 HBD", - "author_reputation": 27.71, - "beneficiaries": [], - "blacklists": [], - "body": "It's amazing to be on Steemit... \ud83d\ude0a\ud83d\ude0d\ud83d\ude18\ud83d\udd76\ud83d\udc54\ud83d\udc8e\ud83d\udc93\ud83d\udc8b\ndo not forget follow, votes and comment my account @salda thank's", - "category": "meta", - "children": 0, - "created": "2018-02-14T09:37:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "salda" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-21T09:37:36", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180214t094057265z", - "post_id": 32563475, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-14T09:37:36", - "url": "/meta/@steemit/firstpost#@salda/re-steemit-firstpost-20180214t094057265z" - }, - "samsonite18654/re-steemit-firstpost-20180628t150144993z": { - "active_votes": [], - "author": "samsonite18654", - "author_payout_value": "0.000 HBD", - "author_reputation": 30.67, - "beneficiaries": [], - "blacklists": [], - "body": "So glad I found this community, thanks Steemit!", - "category": "meta", - "children": 0, - "created": "2018-06-28T15:01:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-07-05T15:01:45", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180628t150144993z", - "post_id": 54700638, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-28T15:01:45", - "url": "/meta/@steemit/firstpost#@samsonite18654/re-steemit-firstpost-20180628t150144993z" - }, - "sangdiyus/re-steemit-firstpost-20180226t160058891z": { - "active_votes": [], - "author": "sangdiyus", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.03, - "beneficiaries": [], - "blacklists": [], - "body": "Welcome, Founder...", - "category": "meta", - "children": 0, - "created": "2018-02-26T16:01:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-05T16:01:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180226t160058891z", - "post_id": 35360534, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-26T16:01:00", - "url": "/meta/@steemit/firstpost#@sangdiyus/re-steemit-firstpost-20180226t160058891z" - }, - "satfit/re-steemit-firstpost-20170619t163049854z": { - "active_votes": [ - { - "rshares": "158373470", - "voter": "satfit" - } - ], - "author": "satfit", - "author_payout_value": "0.000 HBD", - "author_reputation": 54.71, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit hey steem i heard u r most powerful please gv me a upvote", - "category": "meta", - "children": 0, - "created": "2017-06-19T16:30:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 158373470, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-26T16:30:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170619t163049854z", - "post_id": 4357643, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-19T16:30:57", - "url": "/meta/@steemit/firstpost#@satfit/re-steemit-firstpost-20170619t163049854z" - }, - "satfit/re-steemit-firstpost-20170917t193403188z": { - "active_votes": [ - { - "rshares": "3401470267", - "voter": "ravindert26" - }, - { - "rshares": "1160721196", - "voter": "satishsharma" - }, - { - "rshares": "16093744130", - "voter": "msp-shanehug" - } - ], - "author": "satfit", - "author_payout_value": "0.045 HBD", - "author_reputation": 54.71, - "beneficiaries": [], - "blacklists": [], - "body": "yo @steemit u r the most amazing thing i have ever known u changed my life i know u will change many more thing u gonna change the peoples views about internet and social networking thanks bieng part of my life", - "category": "meta", - "children": 0, - "created": "2017-09-17T19:34:06", - "curator_payout_value": "0.006 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 20655935593, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.051, - "payout_at": "2017-09-24T19:34:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170917t193403188z", - "post_id": 13083775, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-17T19:34:06", - "url": "/meta/@steemit/firstpost#@satfit/re-steemit-firstpost-20170917t193403188z" - }, - "sathyasankar/q67y2x": { - "active_votes": [], - "author": "sathyasankar", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.51, - "beneficiaries": [], - "blacklists": [], - "body": "And where are you now?", - "category": "meta", - "children": 0, - "created": "2020-02-24T18:31:18", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.2" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "rittr", - "parent_permlink": "re-steemit-firstpost-20160824t025355199z", - "payout": 0.0, - "payout_at": "2020-03-02T18:31:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "q67y2x", - "post_id": 84687759, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2020-02-24T18:31:18", - "url": "/meta/@steemit/firstpost#@sathyasankar/q67y2x" - }, - "sathyasankar/re-steemit-firstpost-20180225t071734653z": { - "active_votes": [ - { - "rshares": "606906756", - "voter": "sathyasankar" - }, - { - "rshares": "836168540", - "voter": "sbi2" - }, - { - "rshares": "298265562", - "voter": "yousufali587820" - } - ], - "author": "sathyasankar", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.51, - "beneficiaries": [], - "blacklists": [], - "body": "Hai @steemit , welcome to steemit..Rules to follow.\n1.Dont ask for upvotes in others posts\n2.Dont spam others comment box.\n3. Follow me\nlol..!", - "category": "meta", - "children": 0, - "created": "2018-02-25T07:17:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1741340858, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-04T07:17:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180225t071734653z", - "post_id": 35059352, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-25T07:17:39", - "url": "/meta/@steemit/firstpost#@sathyasankar/re-steemit-firstpost-20180225t071734653z" - }, - "sathyasankar/re-steemit-firstpost-20180531t175346873z": { - "active_votes": [ - { - "rshares": "1984465478", - "voter": "sbi3" - } - ], - "author": "sathyasankar", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.51, - "beneficiaries": [], - "blacklists": [], - "body": "Hai @steemit, do you use @ginabot?", - "category": "meta", - "children": 0, - "created": "2018-05-31T17:53:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "ginabot" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1984465478, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-06-07T17:53:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180531t175346873z", - "post_id": 51124439, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-31T17:53:51", - "url": "/meta/@steemit/firstpost#@sathyasankar/re-steemit-firstpost-20180531t175346873z" - }, - "sathyasankar/re-steemit-firstpost-20180718t114328279z": { - "active_votes": [], - "author": "sathyasankar", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.51, - "beneficiaries": [], - "blacklists": [], - "body": "Why does sbi5 upvotes this comment?", - "category": "meta", - "children": 0, - "created": "2018-07-18T11:43:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-07-25T11:43:33", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180718t114328279z", - "post_id": 56929989, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-18T11:43:33", - "url": "/meta/@steemit/firstpost#@sathyasankar/re-steemit-firstpost-20180718t114328279z" - }, - "scharfsinn/re-steemit-firstpost-20170619t225343241z": { - "active_votes": [], - "author": "scharfsinn", - "author_payout_value": "0.000 HBD", - "author_reputation": 28.46, - "beneficiaries": [], - "blacklists": [], - "body": "it is nice to see a idea, that become reality. steemit will have a big future. I'm sure of that ;-)", - "category": "meta", - "children": 0, - "created": "2017-06-19T22:53:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-26T22:53:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170619t225343241z", - "post_id": 4381329, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-19T22:53:42", - "url": "/meta/@steemit/firstpost#@scharfsinn/re-steemit-firstpost-20170619t225343241z" - }, - "seablue/re-steemit-firstpost-20170711t205019537z": { - "active_votes": [ - { - "rshares": "3490779517", - "voter": "whatsup" - }, - { - "rshares": "4678245613", - "voter": "steemcenterwiki" - }, - { - "rshares": "1213578027", - "voter": "cgame" - }, - { - "rshares": "325490574", - "voter": "amrsaeed" - }, - { - "rshares": "2576138718", - "voter": "szokerobert" - }, - { - "rshares": "4327698268", - "voter": "burstbubble" - }, - { - "rshares": "16019983834", - "voter": "centerlink" - } - ], - "author": "seablue", - "author_payout_value": "0.100 HBD", - "author_reputation": 63.47, - "beneficiaries": [], - "blacklists": [], - "body": "I was here at the first post on Steemit. A little late perhaps, but I'm here now.", - "category": "meta", - "children": 0, - "created": "2017-07-11T20:50:15", - "curator_payout_value": "0.010 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 32631914551, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.11, - "payout_at": "2017-07-18T20:50:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170711t205019537z", - "post_id": 6896853, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 7 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-11T20:50:15", - "url": "/meta/@steemit/firstpost#@seablue/re-steemit-firstpost-20170711t205019537z" - }, - "setio/re-steemit-firstpost-20170820t233100895z": { - "active_votes": [ - { - "rshares": "149512974", - "voter": "binkley" - } - ], - "author": "setio", - "author_payout_value": "0.000 HBD", - "author_reputation": 33.28, - "beneficiaries": [], - "blacklists": [], - "body": "Majority only read \"can earn STEEM by posting' and \"sell their STEEM for cash\". Steemit will be more interesting if everybody concern in \"social media\", \"people who like post\", and \"boost voting power\".", - "category": "meta", - "children": 0, - "created": "2017-08-20T23:31:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 149512974, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-27T23:31:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170820t233100895z", - "post_id": 10639734, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-20T23:31:12", - "url": "/meta/@steemit/firstpost#@setio/re-steemit-firstpost-20170820t233100895z" - }, - "setio/re-ubg-re-steemit-firstpost-20170820t233424463z": { - "active_votes": [], - "author": "setio", - "author_payout_value": "0.000 HBD", - "author_reputation": 33.28, - "beneficiaries": [], - "blacklists": [], - "body": "Steem will falling if whales do that", - "category": "meta", - "children": 0, - "created": "2017-08-20T23:34:33", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "ubg", - "parent_permlink": "re-steemit-firstpost-20160813t143213453z", - "payout": 0.0, - "payout_at": "2017-08-27T23:34:33", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-ubg-re-steemit-firstpost-20170820t233424463z", - "post_id": 10639882, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-20T23:34:33", - "url": "/meta/@steemit/firstpost#@setio/re-ubg-re-steemit-firstpost-20170820t233424463z" - }, - "sevenseals/re-steemit-firstpost-20171022t194618085z": { - "active_votes": [ - { - "rshares": "149556943163", - "voter": "emilhoch" - }, - { - "rshares": "41711162809", - "voter": "sevenseals" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "sevenseals", - "author_payout_value": "0.327 HBD", - "author_reputation": 58.44, - "beneficiaries": [], - "blacklists": [], - "body": "How about some posts from steemit with explainations why steemit works so fucking bad. Is there an other account for communication with the users?", - "category": "meta", - "children": 0, - "created": "2017-10-22T19:46:18", - "curator_payout_value": "0.108 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 191268105972, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.435, - "payout_at": "2017-10-29T19:46:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171022t194618085z", - "post_id": 15879704, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-22T19:46:18", - "url": "/meta/@steemit/firstpost#@sevenseals/re-steemit-firstpost-20171022t194618085z" - }, - "shabbirahmad/re-steemit-firstpost-20180526t084436856z": { - "active_votes": [ - { - "rshares": "19411386133", - "voter": "shabbirahmad" - }, - { - "rshares": "102929967", - "voter": "bountyworks" - } - ], - "author": "shabbirahmad", - "author_payout_value": "0.072 HBD", - "author_reputation": 63.67, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you so much for make a good platform.I most like it,I think it's platform competation google, facebook,youtube,raddit one day.I l ove it so much.", - "category": "meta", - "children": 0, - "created": "2018-05-26T08:44:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 19514316100, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.072, - "payout_at": "2018-06-02T08:44:36", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180526t084436856z", - "post_id": 50357305, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-26T08:44:36", - "url": "/meta/@steemit/firstpost#@shabbirahmad/re-steemit-firstpost-20180526t084436856z" - }, - "shadowolfdg/re-steemit-firstpost-20180525t054645178z": { - "active_votes": [], - "author": "shadowolfdg", - "author_payout_value": "0.000 HBD", - "author_reputation": 59.03, - "beneficiaries": [], - "blacklists": [], - "body": "So glad to be on @steemit . For all the newbies please read my popular guide steemit.com/steemiteducation/@shadowolfdg/an-introduction-to-steemit-a-step-by-ste", - "category": "meta", - "children": 0, - "created": "2018-05-25T05:46:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-06-01T05:46:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180525t054645178z", - "post_id": 50191428, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-25T05:46:51", - "url": "/meta/@steemit/firstpost#@shadowolfdg/re-steemit-firstpost-20180525t054645178z" - }, - "shenkawys/re-steemit-firstpost-20170727t125325656z": { - "active_votes": [ - { - "rshares": "85455069", - "voter": "steeminator3000" - } - ], - "author": "shenkawys", - "author_payout_value": "0.000 HBD", - "author_reputation": 45.31, - "beneficiaries": [], - "blacklists": [], - "body": "Good site \nFollowing you", - "category": "meta", - "children": 0, - "created": "2017-07-27T12:54:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 85455069, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-03T12:54:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170727t125325656z", - "post_id": 8452479, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-27T12:54:09", - "url": "/meta/@steemit/firstpost#@shenkawys/re-steemit-firstpost-20170727t125325656z" - }, - "shieha/re-steemit-firstpost-20171027t024345028z": { - "active_votes": [ - { - "rshares": "102825282106", - "voter": "pharesim" - }, - { - "rshares": "91008107025", - "voter": "jamtaylor" - }, - { - "rshares": "564839576727", - "voter": "gavvet" - }, - { - "rshares": "440130306", - "voter": "steve-walschot" - }, - { - "rshares": "76802001689", - "voter": "dragonslayer109" - }, - { - "rshares": "11573732506", - "voter": "jacor" - }, - { - "rshares": "5865228074", - "voter": "crazymumzysa" - }, - { - "rshares": "22135003451", - "voter": "sulev" - }, - { - "rshares": "364775821079", - "voter": "timsaid" - }, - { - "rshares": "34342084414", - "voter": "randyclemens" - }, - { - "rshares": "26651257480", - "voter": "boddhisattva" - }, - { - "rshares": "1308362375", - "voter": "fred703" - }, - { - "rshares": "367457360138", - "voter": "penguinpablo" - }, - { - "rshares": "1854793671", - "voter": "graviton" - }, - { - "rshares": "1405278236", - "voter": "ruthofisrael" - }, - { - "rshares": "357942645", - "voter": "harferri" - }, - { - "rshares": "7468057197", - "voter": "mandela" - }, - { - "rshares": "3528385892", - "voter": "sv67216721" - }, - { - "rshares": "15656404541", - "voter": "mandagoi" - }, - { - "rshares": "5391013762", - "voter": "nicolicreer" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "shieha", - "author_payout_value": "2.944 HBD", - "author_reputation": 70.74, - "beneficiaries": [], - "blacklists": [], - "body": "How could I have missed this post?!\n\n**Leaving my mark here as we're witnessing the evolution to a decentralized world!**", - "category": "meta", - "children": 0, - "created": "2017-10-27T02:43:48", - "curator_payout_value": "0.807 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1705685823314, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 3.751, - "payout_at": "2017-11-03T02:43:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171027t024345028z", - "post_id": 16170279, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 20 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-27T02:43:48", - "url": "/meta/@steemit/firstpost#@shieha/re-steemit-firstpost-20171027t024345028z" - }, - "shiningstar/re-steemit-firstpost-20171118t180756742z": { - "active_votes": [], - "author": "shiningstar", - "author_payout_value": "0.000 HBD", - "author_reputation": 37.72, - "beneficiaries": [], - "blacklists": [], - "body": "Nycccc owesome :)", - "category": "meta", - "children": 0, - "created": "2017-11-18T18:08:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-25T18:08:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171118t180756742z", - "post_id": 18061473, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-18T18:08:03", - "url": "/meta/@steemit/firstpost#@shiningstar/re-steemit-firstpost-20171118t180756742z" - }, - "sictransitgloria/re-steemit-firstpost-20160721t233702742z": { - "active_votes": [ - { - "rshares": "689526018", - "voter": "patrick-g" - } - ], - "author": "sictransitgloria", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.05, - "beneficiaries": [], - "blacklists": [], - "body": "Go Steem!", - "category": "meta", - "children": 0, - "created": "2016-07-21T23:37:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 689526018, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160721t233702742z", - "post_id": 189812, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-21T23:37:00", - "url": "/meta/@steemit/firstpost#@sictransitgloria/re-steemit-firstpost-20160721t233702742z" - }, - "siersod/re-steemit-firstpost-20180117t152138749z": { - "active_votes": [ - { - "rshares": "8662845436", - "voter": "siersod" - }, - { - "rshares": "7550652219", - "voter": "christianytony" - }, - { - "rshares": "0", - "voter": "rosynesn" - }, - { - "rshares": "4127736538", - "voter": "shreetbn" - } - ], - "author": "siersod", - "author_payout_value": "0.168 HBD", - "author_reputation": 60.55, - "beneficiaries": [], - "blacklists": [], - "body": "hahaha, who imagines that the first (and only) post of steemit would be this xD a link to the whitepapper at least, right?", - "category": "meta", - "children": 0, - "created": "2018-01-17T15:21:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 20341234193, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.168, - "payout_at": "2018-01-24T15:21:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180117t152138749z", - "post_id": 26252563, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-17T15:21:39", - "url": "/meta/@steemit/firstpost#@siersod/re-steemit-firstpost-20180117t152138749z" - }, - "silent-ghost/20180620t025040761z": { - "active_votes": [ - { - "rshares": "2692141298", - "voter": "voluntary-io" - } - ], - "author": "silent-ghost", - "author_payout_value": "0.000 HBD", - "author_reputation": 9.13, - "beneficiaries": [], - "blacklists": [], - "body": "Welcome to Steemit @layra :)", - "category": "meta", - "children": 1, - "created": "2018-06-20T02:50:39", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "insteem/0.1", - "community": "insteem", - "format": "markdown" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 2692141298, - "parent_author": "layra", - "parent_permlink": "re-steemit-firstpost-20180620t023240325z", - "payout": 0.0, - "payout_at": "2018-06-27T02:50:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "20180620t025040761z", - "post_id": 53625628, - "promoted": "0.000 HBD", - "replies": [ - "layra/re-silent-ghost-20180620t025040761z-20180620t225205482z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T02:50:39", - "url": "/meta/@steemit/firstpost#@silent-ghost/20180620t025040761z" - }, - "silviu93/re-steemit-firstpost-20170728t193723204z": { - "active_votes": [ - { - "rshares": "266950900", - "voter": "bitcointauji" - } - ], - "author": "silviu93", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.96, - "beneficiaries": [], - "blacklists": [], - "body": "Glad to join this beautiful community!!!", - "category": "meta", - "children": 0, - "created": "2017-07-28T19:37:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 266950900, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-04T19:37:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170728t193723204z", - "post_id": 8578054, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-28T19:37:24", - "url": "/meta/@steemit/firstpost#@silviu93/re-steemit-firstpost-20170728t193723204z" - }, - "sisirhasan/re-steemit-firstpost-20180306t094207468z": { - "active_votes": [ - { - "rshares": "517770901", - "voter": "mahbub99" - }, - { - "rshares": "523898367", - "voter": "ariankhan" - } - ], - "author": "sisirhasan", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.04, - "beneficiaries": [], - "blacklists": [], - "body": "I am sisir hasan. I try my best for success my life. i love steemit. Steemit is great.", - "category": "meta", - "children": 0, - "created": "2018-03-06T09:42:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1041669268, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-13T09:42:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180306t094207468z", - "post_id": 37007962, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-06T09:42:09", - "url": "/meta/@steemit/firstpost#@sisirhasan/re-steemit-firstpost-20180306t094207468z" - }, - "sisygoboom/re-wil1liam-re-stackin-re-steemit-firstpost-20180416t130745058z": { - "active_votes": [], - "author": "sisygoboom", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.86, - "beneficiaries": [], - "blacklists": [], - "body": "Back then it was only worth a few cents I believe - thats why most whales are also OGs", - "category": "meta", - "children": 0, - "created": "2018-04-16T13:07:45", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "wil1liam", - "parent_permlink": "re-stackin-re-steemit-firstpost-20180407t182425232z", - "payout": 0.0, - "payout_at": "2018-04-23T13:07:45", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-wil1liam-re-stackin-re-steemit-firstpost-20180416t130745058z", - "post_id": 43864796, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-16T13:08:06", - "url": "/meta/@steemit/firstpost#@sisygoboom/re-wil1liam-re-stackin-re-steemit-firstpost-20180416t130745058z" - }, - "smilever12/re-steemit-firstpost-20180109t224952449z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "smilever12", - "author_payout_value": "0.000 HBD", - "author_reputation": 40.85, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you @steemit! You've build such a great community and such a great opportunity to join changes!", - "category": "meta", - "children": 0, - "created": "2018-01-09T22:49:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-16T22:49:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180109t224952449z", - "post_id": 24668002, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-09T22:49:51", - "url": "/meta/@steemit/firstpost#@smilever12/re-steemit-firstpost-20180109t224952449z" - }, - "social/re-admin--20171107t163722264z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rlt47" - } - ], - "author": "social", - "author_payout_value": "0.000 HBD", - "author_reputation": -5.24, - "beneficiaries": [], - "blacklists": [ - "reputation-0" - ], - "body": "

A cat\u2019s nose pad is ridged with a unique pattern, just like the fingerprint of a human.

\n", - "category": "meta", - "children": 0, - "created": "2017-11-07T16:37:30", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "freakazoid/0.0.3" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "admin", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-14T16:37:30", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-admin--20171107t163722264z", - "post_id": 17095002, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": true, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-07T16:37:30", - "url": "/meta/@steemit/firstpost#@social/re-admin--20171107t163722264z" - }, - "social/re-admin--20171107t164333992z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rlt47" - } - ], - "author": "social", - "author_payout_value": "0.000 HBD", - "author_reputation": -5.24, - "beneficiaries": [], - "blacklists": [ - "reputation-0" - ], - "body": "

Cats can jump up to 7 times their tail length.

\n", - "category": "meta", - "children": 0, - "created": "2017-11-07T16:43:48", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "freakazoid/0.0.3" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "admin", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-14T16:43:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-admin--20171107t164333992z", - "post_id": 17095422, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": true, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-07T16:43:48", - "url": "/meta/@steemit/firstpost#@social/re-admin--20171107t164333992z" - }, - "sornprar/re-ackza-re-sornprar-re-steemit-firstpost-20170813t135846925z": { - "active_votes": [], - "author": "sornprar", - "author_payout_value": "0.000 HBD", - "author_reputation": 7.79, - "beneficiaries": [], - "blacklists": [], - "body": "I can't really say what he is or isn't doing, what his intentions really are vs what he expresses. Only he knows.\nYet based on my experience of what I had seen him doing, and some of what he says in his tutorials (on top of his participation in the White-Paper-Less/No-Proof_Of_Trading-Bot BitConnect referral program \"scam\").... I found it hard to trust him.\nDo you hear what he is saying in this video (or the one where he encouraged others to create bot networks to upvote self)?\nhttps://www.youtube.com/watch?v=lkq9L0FD4Q8\nAnyway, since reading the Steem White Papers I realized he is only taking advantage of things built into the system (whether I see it s abusive or not is besides the point, the fact those things are even built into the system to begin with is far more concerning).\nSo I am doing my best to just stay away from him and his clique of crypto-gangster wannabes. I have nothing to gain (little to lose), and had quickly found his cult of followers will blindly support him. It's not worth the fight if no one cares, if they want to put value to spam and crap with their ever-growing network of unstoppables that's on them.\nBut I digest.... I do want to stay as far away from this as possible. I have already been nearly nuked due to my ignorance and care for others. I do not want to make that mistake again.", - "category": "meta", - "children": 1, - "created": "2017-08-13T13:58:48", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://img.youtube.com/vi/lkq9L0FD4Q8/0.jpg" - ], - "links": [ - "https://www.youtube.com/watch?v=lkq9L0FD4Q8" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "ackza", - "parent_permlink": "re-sornprar-re-steemit-firstpost-20170813t054058376z", - "payout": 0.0, - "payout_at": "2017-08-20T13:58:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-ackza-re-sornprar-re-steemit-firstpost-20170813t135846925z", - "post_id": 10027633, - "promoted": "0.000 HBD", - "replies": [ - "crypto-guru/re-sornprar-re-ackza-re-sornprar-re-steemit-firstpost-20170827t191230930z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-13T13:58:48", - "url": "/meta/@steemit/firstpost#@sornprar/re-ackza-re-sornprar-re-steemit-firstpost-20170813t135846925z" - }, - "sornprar/re-frag-re-sornprar-re-steemit-firstpost-20170704t211016543z": { - "active_votes": [], - "author": "sornprar", - "author_payout_value": "0.000 HBD", - "author_reputation": 7.79, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks m8... don't see the upvote, perhaps from all the damage he's done to my account with his flagging. But I don't mind.... I found more \"profit\" in knowing someone actually say this (more worried about sharing this news with as many eyes as possible than I am in making any coins right now).\nFollowing back, for what it's worth (he's got me about at two minutes to midnight, facing the destruction of this account only to make another 1 or 3 - and yes, I can make and configure a bot if I needed to, I'd just rather do all this the ethical way and use whatever time I saved by being a good person and NOT cheating with a bot to spend with my amazing Wife; whom I am nothing without).\nhttps://steemitimages.com/DQmVh9akzARjKs6WqiSmQQK8zajQkwzFp4cbL34Usvo1CwU/Screenshot%20at%202017-06-30%2017-40-19.png", - "category": "meta", - "children": 0, - "created": "2017-07-04T21:10:18", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmVh9akzARjKs6WqiSmQQK8zajQkwzFp4cbL34Usvo1CwU/Screenshot%20at%202017-06-30%2017-40-19.png" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "frag", - "parent_permlink": "re-sornprar-re-steemit-firstpost-20170704t235218733z", - "payout": 0.0, - "payout_at": "2017-07-11T21:10:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-frag-re-sornprar-re-steemit-firstpost-20170704t211016543z", - "post_id": 6162566, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-04T21:11:06", - "url": "/meta/@steemit/firstpost#@sornprar/re-frag-re-sornprar-re-steemit-firstpost-20170704t211016543z" - }, - "sornprar/re-steemit-firstpost-20170704t204851481z": { - "active_votes": [ - { - "rshares": "558929895", - "voter": "sornprar" - }, - { - "rshares": "232155072", - "voter": "kumaranvpl" - } - ], - "author": "sornprar", - "author_payout_value": "0.000 HBD", - "author_reputation": 7.79, - "beneficiaries": [], - "blacklists": [], - "body": "

How to Lose Newcomers and Alienate Your Followers (With One YouTube Post).

\n

Be Careful Out There Kids!

\nThe Internet Can Be A Dangerous Place.\nAnd then there's Steemit Inc. & it's \"Big Dogs\".\n![images.png](https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png)\nYou can choose to take the next thing I am going to tell you any way you wish. You can call it spam. You can say it's an attack piece. You can even agree or disagree with it until you're blue in the face. You can read it, watch the video posted within it, and decide, \"Hey, that sounds great! I want to try that,\" or you might say to yourself (what I consider to be the ethical thing to do), \"Wow! That's just wrong!\". No matter what you choose to do, or not to do, after watching the video, I believe you might owe it to yourself to read what follows after it (especially if you are new here and are thinking about investing your money into the steem system).\nPlease watch & LISTEN to what is being said in this video. And know what he is saying is not theoretical, it can be done (and probably is being done, if not by bots then by people who only use steemit in the way he describes the bots could do it).\n![2Bcontinued.png](https://steemitimages.com/DQmTcmkEYZKs95tURMnX3sCRmu5GFYwJLcGSPf2ieTCRr8b/2Bcontinued.png)\nVideo Source: Courtesy of @craig-grant's YouTube channel \"Craig Grant\".\n![images.png](https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png)\nhttps://www.youtube.com/watch?v=6XCdPTMEnJQ\n![images.png](https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png)

\nDid you comprehend what is being explained here? And before anyone decides to defend the producer of said video, I will say now that I understand he is using the term \"hypothetical\" to soft sell the concept that this is not something that he is actively participating in. To leave the observer to believe this is just an idea in his head and nothing more. And yet he is encouraging potentially thousands and thousands of people to attempt to code and run such a bot. If you think this is good for the blockchain, think again.\nThink of it this way. Your new to the steem platform and don't really understand the game. After the first week or two you're struggling to understand why you aren't getting much exposure, how your posts only pulled in a small SMALL portion of what you see others pulling in. In addition, you start noticing single upvotes worth anywhere from $1 up to $40+. So your thinking to yourself, \"How can I reap such rewards and have that kind of voting power?\" and decide to look into it. Chances are all the other steemit blogs on the subject tell you, \"BUY STEEM! Invest more than your time and content. In order to increase your voting power, and your potential for exposer in the process, you have to put your money into it\".\nExcited in the idea of such power and profit, you immediately purchase hundreds (or, even worse, thousands) of dollars in BTC to exchange/trade for STEEM. And you do see an immediate increase in voting power and a slow increase in exposure as well (more followers, potentially more upvotes from others).\nSounds great, right?\nNot exactly. Enter @craig-grant, and other malicious Whales or even bots now.\nYou know all that money you just put into this thing? Well, guess what. The majority of it goes right into the rewards pool and is being sucked up by these kinds of accounts by a thing called self-upvoting.\nYou see, these accounts have been around for a lot longer than most of the rest of us. This whole project began with 0 users around 4-11-2016, and by 7-09-2016 it had approximately 10,00 Registered Users (and at that point less than half of them were active - and today it is gaining new users by the hundreds and thousands each day, approaching a total user base of almost 250,000). @craig-grant joined somewhere around June 2016 or sooner. These are the folks that pumped a bunch of their own money into the start-up platform and blockchain. Sounds like we should be thanking them, right? Some of them, YES. Yet some of them, NOT AT ALL.\nIn fact, we should all be researching them - and praising them or calling them out when appropriate (it's not a transparent system for nothing people, would you hand a pile of your hard earned cash to a complete stranger on the street based solely on their promise it will make you more influential and wealthy? You know, because BLOCKCHAIN. I doubt it).\nWhat I believe these accounts/users are doing is baiting all us newcomers into investing real fiat currency. And then using techniques described in this video they are draining the rewards pool with malicious intent with their so-called right to self-upvote.
\n
https://s-media-cache-ak0.pinimg.com/236x/fb/92/14/fb921449559ebbd10bf1c215131ee470.jpg Image found on Pinterest
\nSo all that money you put into this thing.... it will force you to make a choice at this point. And your choices are:\n
\"If You Can't Beat Them, Join Them\" and concentrate all your voting power on yourself (self-upvoting) and upvoting a selected group of your friends who are doing the same thing - being sure to give out just a few pennies here or dollars there to a Red Fish or Minnow so you can justify bragging how much you help others and are good for the community as a whole. And even then, if your lucky you just might break even or see a bit of profit and success. But keep in mind these other users are a lot older and more powerful than you, so they will always get a bigger piece of everything than you (bearing in mind you only invested a little bit, investing some insane amount like $500,000 would be a game changer for all those fools).\nOR\nRespectfully reserve your upvotes for others posts and comments while only upvoting very little of your own. If you're lucky you just might stay ahead, but your content better be out of this world. Even so, with some Whales habitually self-upvoting they are still not leaving much in the rewards pool for the rest of us no matter how good our content is.
\n![images.png](https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png)\n
Same user @craig-grant here in this next video, this time explaining how to maximize his profits by flagging (takes the value of his upvote power AWAY from a post - essentially taking any money people like you & me many have contributed to the post and putting it back in the rewards pool, where he and his kind can drain it from with their powerful self-upvoting value). He even says he flags not because he thinks it's spam or undeserving yet because it's profitable and popular [but not his?] !!! WT_ !?!?!
\nhttps://www.youtube.com/watch?v=lkq9L0FD4Q8\n![images.png](https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png)\nIf your content is good, you shouldn't have to resort to lies, manipulation, and what nearly amounts to criminal fraud in order to be profitable and successful here. That is, so long as it's not too late and these malicious types are now just to big and too well connected to prevent them from taking all the worms and leaving the rest of us with just the castings (worm poop).\nFortunately it seems there are still enough righteous, honest and true Whales left out their to keep the scales somewhat balanced (here's looking at you @gentlebot \ud83d\ude07 and @randowhale \ud83d\udc0b).\nIf \"earning your fortune\" includes convincing people to invest real money knowing you are going to get most of it through your \"hacks\" and \"techniques\" and \"style of being Da Man\".... sounds like criminal fraud to me (if it quacks like a duck....).
\nIf you agree or disagree, please be a part of the conversation and voice your opinions in the comments. And please be sure to ![Screenshot at 2017-07-01 21-29-38.png](https://steemitimages.com/DQmNz4K3G8wi9N7gjF6WbKpem9g9tV5y6dnD5BTduDKW4aw/Screenshot%20at%202017-07-01%2021-29-38.png) & even give it an ![Screenshot at 2017-07-01 21-27-23.png](https://steemitimages.com/DQmWqZpXp8MwaMjY9wVCT8DZEChmS1LmnNzGdphtJjc7ABN/Screenshot%20at%202017-07-01%2021-27-23.png) if you can \"spare some change\".\n![images.png](https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png)\n
Here I am, those who will defend this concept of \"earning\". And I'm not afraid. So blow me (blow me a kiss).\nhttps://www.youtube.com/watch?v=U2OBw-LhNto
\n
Video Courtesy of Mutoid Man.\n![images.png](https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png)\n![blood-goth-trnsp.png](https://steemitimages.com/DQmdEQRZ1dnjnScPH3Tpmz7uDVGLruxR5FD6MWHpTZ1uQqt/blood-goth-trnsp.png)
", - "category": "meta", - "children": 5, - "created": "2017-07-04T20:48:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png", - "https://steemitimages.com/DQmTcmkEYZKs95tURMnX3sCRmu5GFYwJLcGSPf2ieTCRr8b/2Bcontinued.png", - "https://img.youtube.com/vi/6XCdPTMEnJQ/0.jpg", - "https://s-media-cache-ak0.pinimg.com/236x/fb/92/14/fb921449559ebbd10bf1c215131ee470.jpg", - "https://img.youtube.com/vi/lkq9L0FD4Q8/0.jpg", - "https://steemitimages.com/DQmNz4K3G8wi9N7gjF6WbKpem9g9tV5y6dnD5BTduDKW4aw/Screenshot%20at%202017-07-01%2021-29-38.png", - "https://steemitimages.com/DQmWqZpXp8MwaMjY9wVCT8DZEChmS1LmnNzGdphtJjc7ABN/Screenshot%20at%202017-07-01%2021-27-23.png", - "https://img.youtube.com/vi/U2OBw-LhNto/0.jpg", - "https://steemitimages.com/DQmdEQRZ1dnjnScPH3Tpmz7uDVGLruxR5FD6MWHpTZ1uQqt/blood-goth-trnsp.png" - ], - "links": [ - "https://www.youtube.com/watch?v=6XCdPTMEnJQ", - "https://www.youtube.com/watch?v=lkq9L0FD4Q8", - "https://www.youtube.com/watch?v=U2OBw-LhNto", - "https://www.facebook.com/mutoidman/videos/1506049312748222/" - ], - "tags": [ - "meta" - ], - "users": [ - "craig-grant", - "gentlebot", - "randowhale" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 791084967, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-11T20:48:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170704t204851481z", - "post_id": 6160892, - "promoted": "0.000 HBD", - "replies": [ - "frag/re-sornprar-re-steemit-firstpost-20170704t235218733z", - "ackza/re-sornprar-re-steemit-firstpost-20170812t064319021z", - "crypto-guru/re-sornprar-re-steemit-firstpost-20170827t191032679z", - "crypto-guru/re-sornprar-re-steemit-firstpost-20170827t191328874z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-04T20:52:39", - "url": "/meta/@steemit/firstpost#@sornprar/re-steemit-firstpost-20170704t204851481z" - }, - "sornprar/re-steemit-firstpost-20170705t021545762z": { - "active_votes": [ - { - "rshares": "466024194", - "voter": "sornprar" - } - ], - "author": "sornprar", - "author_payout_value": "0.000 HBD", - "author_reputation": 7.79, - "beneficiaries": [], - "blacklists": [], - "body": "
Public Service Announcement\n

The danger of a system that allows the haves to trick the have nots, and using a repetitive cycle of

\n1) Recruit\n2) Convince to invest\n3) upvote at 1-30% voting power\n4) once those posts (or any others) reach an impressive potential payout, flag it with mid to high voting power FLAGs\n5) Kill Shot - habitually/constantly upvote self with high to 100% self-voting power.\n

The More You Know (Bing!)

", - "category": "meta", - "children": 3, - "created": "2017-07-05T02:15:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 466024194, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-12T02:15:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170705t021545762z", - "post_id": 6182386, - "promoted": "0.000 HBD", - "replies": [ - "ackza/re-sornprar-re-steemit-firstpost-20170813t054058376z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-05T02:15:48", - "url": "/meta/@steemit/firstpost#@sornprar/re-steemit-firstpost-20170705t021545762z" + "admin/firstpost": { + "active_votes": [ + { + "rshares": "-375241", + "voter": "dantheman" + }, + { + "rshares": "5100", + "voter": "steemit46" + }, + { + "rshares": "81125", + "voter": "roadscape" + }, + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "431616594", + "voter": "acidyo" + }, + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "58854897335", + "voter": "business" + }, + { + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "rshares": "244129227", + "voter": "kewpiedoll" + }, + { + "rshares": "1615731741", + "voter": "naturalista" + } + ], + "author": "admin", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "First Reply! Let's get this **party** started", + "category": "meta", + "children": 2, + "created": "2016-03-30T19:52:30", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62423410900, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 2, + "promoted": "0.000 HBD", + "replies": [ + "kingtylervvs/re-admin-firstpost-20160717t193811098z", + "gopher/re-admin-firstpost-20160718t195306992z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 10 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-03-30T19:52:30", + "url": "/meta/@steemit/firstpost#@admin/firstpost" }, - "sornprar/re-steemit-firstpost-20170705t162923097z": { - "active_votes": [ - { - "rshares": "541221714", - "voter": "sornprar" - } - ], - "author": "sornprar", - "author_payout_value": "0.000 HBD", - "author_reputation": 7.79, - "beneficiaries": [], - "blacklists": [], - "body": "

*Just a Little Something to Think About.*

\n
https://anonimag.es/i/Screenshotat2017-07-0513-23-45d45e5.png
\n
That's not to say there is not good people here doing good things.\nMore so to say Just Be Careful In Here.
", - "category": "meta", - "children": 0, - "created": "2017-07-05T16:29:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://anonimag.es/i/Screenshotat2017-07-0513-23-45d45e5.png" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 541221714, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-12T16:29:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170705t162923097z", - "post_id": 6244645, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-05T16:29:24", - "url": "/meta/@steemit/firstpost#@sornprar/re-steemit-firstpost-20170705t162923097z" + "bestmalik/re-steemit-firstpost-20160726t035722561z": { + "active_votes": [ + { + "rshares": "7413824", + "voter": "cire81" + } + ], + "author": "bestmalik", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "GO STEEM !!!", + "category": "meta", + "children": 0, + "created": "2016-07-26T03:57:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 7413824, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160726t035722561z", + "post_id": 264599, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-26T03:57:24", + "url": "/meta/@steemit/firstpost#@bestmalik/re-steemit-firstpost-20160726t035722561z" }, - "spaminator/re-veseloff-re-layra-re-steemit-firstpost-20180620t171437053z-20180620t182350260z": { - "active_votes": [ - { - "rshares": "93112402683", - "voter": "adm" - }, - { - "rshares": "294175919", - "voter": "layra" - }, - { - "rshares": "105197165248", - "voter": "mack-fund" - } - ], - "author": "spaminator", - "author_payout_value": "0.339 HBD", - "author_reputation": 68.51, - "beneficiaries": [], - "blacklists": [], - "body": "[Source]()\nLeaving comments asking for votes, follows, or other self promotional messages could be seen as spam.\r\n\r\nMore Information: \r\n\r\n[The Art of Commenting](https://steemit.com/steemcleaners/@steemcleaners/the-art-of-commenting)\r\n[Comment Classifications](https://steemcleaners.org/comment-classifications/)\r\n", - "category": "meta", - "children": 0, - "created": "2018-06-20T18:23:51", - "curator_payout_value": "0.066 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemcleaners/0.3", - "community": "steemcleaners", - "format": "markdown+html" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 198603743850, - "parent_author": "veseloff", - "parent_permlink": "re-layra-re-steemit-firstpost-20180620t171437053z", - "payout": 0.405, - "payout_at": "2018-06-27T18:23:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-veseloff-re-layra-re-steemit-firstpost-20180620t171437053z-20180620t182350260z", - "post_id": 53711153, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T18:23:51", - "url": "/meta/@steemit/firstpost#@spaminator/re-veseloff-re-layra-re-steemit-firstpost-20180620t171437053z-20180620t182350260z" + "business/re-red-steemit-firstpost-2-20160713t083846149z": { + "active_votes": [ + { + "rshares": "724886327", + "voter": "patrick-g" + } + ], + "author": "business", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "No way?", + "category": "meta", + "children": 0, + "created": "2016-07-13T08:38:48", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 724886327, + "parent_author": "red", + "parent_permlink": "steemit-firstpost-2", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-red-steemit-firstpost-2-20160713t083846149z", + "post_id": 66997, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-13T08:38:48", + "url": "/meta/@steemit/firstpost#@business/re-red-steemit-firstpost-2-20160713t083846149z" }, - "spectrumecons/re-steemit-firstpost-20171101t004320782z": { - "active_votes": [ - { - "rshares": "8582512857", - "voter": "jaycobbell" - }, - { - "rshares": "647805885", - "voter": "steemsquad" - }, - { - "rshares": "17217046790", - "voter": "choogirl" - }, - { - "rshares": "75873875325", - "voter": "centerlink" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "spectrumecons", - "author_payout_value": "0.170 HBD", - "author_reputation": 69.67, - "beneficiaries": [], - "blacklists": [], - "body": "It is awesome to be on Steemit. These first few months have been very exciting. I'm hoping one day Steemit will surpass Facebook.", - "category": "meta", - "children": 0, - "created": "2017-11-01T00:43:21", - "curator_payout_value": "0.039 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 102321240857, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.209, - "payout_at": "2017-11-08T00:43:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171101t004320782z", - "post_id": 16577175, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-01T00:43:21", - "url": "/meta/@steemit/firstpost#@spectrumecons/re-steemit-firstpost-20171101t004320782z" + "business/re-steemit-firstpost-20160713t082910980z": { + "active_votes": [ + { + "rshares": "724886327", + "voter": "patrick-g" + }, + { + "rshares": "58854897335", + "voter": "business" + }, + { + "rshares": "628198247", + "voter": "graystone" + }, + { + "rshares": "256298401739", + "voter": "juneaugoldbuyer" + }, + { + "rshares": "28483434", + "voter": "gjhi4552201" + }, + { + "rshares": "226779353", + "voter": "steg" + }, + { + "rshares": "54017869", + "voter": "zelious" + }, + { + "rshares": "51109965", + "voter": "f1111111" + } + ], + "author": "business", + "author_payout_value": "0.036 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Welcome to steemit, @steemit.", + "category": "meta", + "children": 0, + "created": "2016-07-13T08:29:15", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 316866774269, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.036, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160713t082910980z", + "post_id": 66957, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 8 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-13T08:29:36", + "url": "/meta/@steemit/firstpost#@business/re-steemit-firstpost-20160713t082910980z" }, - "splendorhub/re-steemit-firstpost-20180225t015256519z": { - "active_votes": [ - { - "rshares": "122894159", - "voter": "autonomysystem" - }, - { - "rshares": "8597984265", - "voter": "meno" - }, - { - "rshares": "820553327", - "voter": "as-i-see-it" - }, - { - "rshares": "3469514312", - "voter": "steembasicincome" - } - ], - "author": "splendorhub", - "author_payout_value": "0.061 HBD", - "author_reputation": 62.0, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit Hey, I've been here on Steemit for some time. The journey has been bumpy, but well worth it. This is my first time ever trying to blog or share details of my experiences. I get tons of satisfaction sharing my love photography. Steemit is awesome :) Best wishes, - @splendorhub", - "category": "meta", - "children": 0, - "created": "2018-02-25T01:52:15", - "curator_payout_value": "0.006 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "splendorhub" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 13010946063, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.067, - "payout_at": "2018-03-04T01:52:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180225t015256519z", - "post_id": 35014599, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-25T01:52:15", - "url": "/meta/@steemit/firstpost#@splendorhub/re-steemit-firstpost-20180225t015256519z" + "deanliu/re-steemit-firstpost-20160810t083336206z": { + "active_votes": [ + { + "rshares": "74273734", + "voter": "bitmaxt" + }, + { + "rshares": "56152551", + "voter": "lovetosteemit" + } + ], + "author": "deanliu", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "is this post truly the time zero, the origin, the big bang of all?", + "category": "meta", + "children": 0, + "created": "2016-08-10T08:33:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 130426285, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160810t083336206z", + "post_id": 537479, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-10T08:33:54", + "url": "/meta/@steemit/firstpost#@deanliu/re-steemit-firstpost-20160810t083336206z" }, - "stackin/re-mammasitta-re-stackin-2017825t14817749z-20170824t235309382z": { - "active_votes": [ - { - "rshares": "32584724400", - "voter": "mammasitta" - } - ], - "author": "stackin", - "author_payout_value": "0.128 HBD", - "author_reputation": 78.28, - "beneficiaries": [], - "blacklists": [], - "body": "So crazy @mammasitta ... this comment is in the hot feed on steemit \ud83e\udd23", - "category": "meta", - "children": 3, - "created": "2017-08-24T23:53:09", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "mammasitta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 32584724400, - "parent_author": "mammasitta", - "parent_permlink": "re-stackin-2017825t14817749z", - "payout": 0.128, - "payout_at": "2017-08-31T23:53:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-mammasitta-re-stackin-2017825t14817749z-20170824t235309382z", - "post_id": 10991866, - "promoted": "0.000 HBD", - "replies": [ - "mammasitta/re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235433264z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T23:53:09", - "url": "/meta/@steemit/firstpost#@stackin/re-mammasitta-re-stackin-2017825t14817749z-20170824t235309382z" + "edbriv/re-steemit-firstpost-20160801t184846033z": { + "active_votes": [ + { + "rshares": "-336740570", + "voter": "dtbahoney" + }, + { + "rshares": "52272448", + "voter": "edbriv" + } + ], + "author": "edbriv", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "GO STEEM !!! go!!!", + "category": "meta", + "children": 0, + "created": "2016-08-01T18:12:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -284468122, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160801t184846033z", + "post_id": 395733, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-01T18:12:00", + "url": "/meta/@steemit/firstpost#@edbriv/re-steemit-firstpost-20160801t184846033z" }, - "stackin/re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235551792z": { - "active_votes": [ - { - "rshares": "32585187292", - "voter": "mammasitta" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - } - ], - "author": "stackin", - "author_payout_value": "0.096 HBD", - "author_reputation": 78.28, - "beneficiaries": [], - "blacklists": [], - "body": "You used the steemit magic lol", - "category": "meta", - "children": 0, - "created": "2017-08-24T23:55:51", - "curator_payout_value": "0.031 HBD", - "depth": 6, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 32585187292, - "parent_author": "mammasitta", - "parent_permlink": "re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235433264z", - "payout": 0.127, - "payout_at": "2017-08-31T23:55:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235551792z", - "post_id": 10992021, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T23:55:51", - "url": "/meta/@steemit/firstpost#@stackin/re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235551792z" + "flandude/re-steemit-firstpost-20160811t225325571z": { + "active_votes": [ + { + "rshares": "47738566", + "voter": "alktoni" + }, + { + "rshares": "555987168", + "voter": "funkywanderer" + }, + { + "rshares": "45336058", + "voter": "andressilvera" + }, + { + "rshares": "50997147", + "voter": "david.prochnow" + } + ], + "author": "flandude", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "http://i.imgsafe.org/d01598860e.jpg", + "category": "meta", + "children": 0, + "created": "2016-08-11T22:53:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://i.imgsafe.org/d01598860e.jpg" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 700058939, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160811t225325571z", + "post_id": 563725, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-11T22:53:27", + "url": "/meta/@steemit/firstpost#@flandude/re-steemit-firstpost-20160811t225325571z" }, - "stackin/re-mammasitta-re-steemit-firstpost-20170824t234608820z": { - "active_votes": [ - { - "rshares": "32584724400", - "voter": "mammasitta" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - }, - { - "rshares": "0", - "voter": "kevca16" - }, - { - "rshares": "0", - "voter": "pavelnunez" - } - ], - "author": "stackin", - "author_payout_value": "0.126 HBD", - "author_reputation": 78.28, - "beneficiaries": [], - "blacklists": [], - "body": "At least I commented \ud83e\udd23", - "category": "meta", - "children": 6, - "created": "2017-08-24T23:46:09", - "curator_payout_value": "0.001 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 32584724400, - "parent_author": "mammasitta", - "parent_permlink": "re-steemit-firstpost-20170824t230822305z", - "payout": 0.127, - "payout_at": "2017-08-31T23:46:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-mammasitta-re-steemit-firstpost-20170824t234608820z", - "post_id": 10991456, - "promoted": "0.000 HBD", - "replies": [ - "mammasitta/re-stackin-2017825t14817749z", - "crypto-guru/re-stackin-re-mammasitta-re-steemit-firstpost-20170827t191608007z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T23:46:09", - "url": "/meta/@steemit/firstpost#@stackin/re-mammasitta-re-steemit-firstpost-20170824t234608820z" + "future24/re-steemit-firstpost-20160818t030224104z": { + "active_votes": [ + { + "rshares": "53122308", + "voter": "mandarin99" + } + ], + "author": "future24", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Thank you!", + "category": "meta", + "children": 0, + "created": "2016-08-18T03:02:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53122308, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160818t030224104z", + "post_id": 650694, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-18T03:02:24", + "url": "/meta/@steemit/firstpost#@future24/re-steemit-firstpost-20160818t030224104z" }, - "stackin/re-steemit-firstpost-20170824t235112132z": { - "active_votes": [ - { - "rshares": "7250350451", - "voter": "pnc" - }, - { - "rshares": "368081223588", - "voter": "teamsteem" - }, - { - "rshares": "868252129422", - "voter": "nanzo-scoop" - }, - { - "rshares": "10636089040", - "voter": "mummyimperfect" - }, - { - "rshares": "12223076753", - "voter": "ak2020" - }, - { - "rshares": "14547764993", - "voter": "g-dubs" - }, - { - "rshares": "620851471", - "voter": "lauralemons" - }, - { - "rshares": "323928862219", - "voter": "freeyourmind" - }, - { - "rshares": "52777463934", - "voter": "kendewitt" - }, - { - "rshares": "171827671", - "voter": "deboas" - }, - { - "rshares": "10942803529", - "voter": "bitcoiner" - }, - { - "rshares": "330174800820", - "voter": "snowflake" - }, - { - "rshares": "186678661573", - "voter": "surfermarly" - }, - { - "rshares": "2885798489765", - "voter": "zeartul" - }, - { - "rshares": "399124732", - "voter": "lamech-m" - }, - { - "rshares": "14822764839", - "voter": "kenistyles" - }, - { - "rshares": "47300398628", - "voter": "erikaharris" - }, - { - "rshares": "6764040642", - "voter": "abh12345" - }, - { - "rshares": "6049181350", - "voter": "swisswatcher" - }, - { - "rshares": "37651907245", - "voter": "t-bot" - }, - { - "rshares": "80445974", - "voter": "awesomenyl" - }, - { - "rshares": "1061399570", - "voter": "siniceku" - }, - { - "rshares": "88542720", - "voter": "black-eye" - }, - { - "rshares": "15605418071", - "voter": "mafeeva" - }, - { - "rshares": "30840034418", - "voter": "alexvan" - }, - { - "rshares": "323431718514", - "voter": "someonewhoisme" - }, - { - "rshares": "0", - "voter": "ackza" - }, - { - "rshares": "7053985692", - "voter": "sandstorm" - }, - { - "rshares": "4552388673", - "voter": "detlev" - }, - { - "rshares": "97265657118", - "voter": "sarasate" - }, - { - "rshares": "20957544410", - "voter": "luna33" - }, - { - "rshares": "32300928229", - "voter": "choogirl" - }, - { - "rshares": "1942580747", - "voter": "greenstar" - }, - { - "rshares": "122073787", - "voter": "marcusxman" - }, - { - "rshares": "946666597107", - "voter": "mrwalt" - }, - { - "rshares": "266553598221", - "voter": "surfyogi" - }, - { - "rshares": "7836487932", - "voter": "kingyus" - }, - { - "rshares": "21265777603", - "voter": "brucebrownftw" - }, - { - "rshares": "0", - "voter": "stackin" - }, - { - "rshares": "63861129420", - "voter": "sneakgeekz" - }, - { - "rshares": "8484238753", - "voter": "charles1" - }, - { - "rshares": "4803993822", - "voter": "vj1309" - }, - { - "rshares": "944948726531", - "voter": "flipstar" - }, - { - "rshares": "68459985", - "voter": "viralcutz" - }, - { - "rshares": "14754629948", - "voter": "scooter77" - }, - { - "rshares": "4923801156", - "voter": "lifewithcrypto" - }, - { - "rshares": "0", - "voter": "gomain" - }, - { - "rshares": "52339457665", - "voter": "centerlink" - }, - { - "rshares": "126017816438", - "voter": "richreck" - }, - { - "rshares": "1915846243", - "voter": "clemdane" - }, - { - "rshares": "24623349068", - "voter": "steppingout23" - }, - { - "rshares": "1875830041", - "voter": "hfigueroa" - }, - { - "rshares": "1802902440", - "voter": "legosnjoysticks" - }, - { - "rshares": "1526170783844", - "voter": "michaeldavid" - }, - { - "rshares": "446515631", - "voter": "ratticus" - }, - { - "rshares": "958341913", - "voter": "fiftysixnorth" - }, - { - "rshares": "5013337288", - "voter": "pkvlogs" - }, - { - "rshares": "607129600", - "voter": "kurttasche" - }, - { - "rshares": "2697622297", - "voter": "boomshikha" - }, - { - "rshares": "102341796", - "voter": "fakire1sadaka" - }, - { - "rshares": "55712420554", - "voter": "cryptoeagle" - }, - { - "rshares": "14646075922", - "voter": "mrsquiggle" - }, - { - "rshares": "1184429360", - "voter": "vbtech" - }, - { - "rshares": "174590251", - "voter": "ronaldsteemit89" - }, - { - "rshares": "661561242", - "voter": "teme" - }, - { - "rshares": "0", - "voter": "kingxeno" - }, - { - "rshares": "0", - "voter": "oep" - }, - { - "rshares": "0", - "voter": "dallasrushing" - }, - { - "rshares": "0", - "voter": "ritikagupta" - }, - { - "rshares": "0", - "voter": "meansunlare" - }, - { - "rshares": "0", - "voter": "azeemprime" - }, - { - "rshares": "0", - "voter": "asherunderwood" - }, - { - "rshares": "0", - "voter": "juicyvegandwarf" - }, - { - "rshares": "0", - "voter": "mr-lahey" - }, - { - "rshares": "0", - "voter": "alexcozzy" - }, - { - "rshares": "0", - "voter": "kingmixa" - } - ], - "author": "stackin", - "author_payout_value": "32.068 HBD", - "author_reputation": 78.28, - "beneficiaries": [], - "blacklists": [], - "body": "It's amazing to be on Steemit \ud83d\ude4c\ud83c\udffc\ud83d\udcaa\ud83c\udffc\ud83d\udcaf", - "category": "meta", - "children": 42, - "created": "2017-08-24T23:51:12", - "curator_payout_value": "7.210 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 9821492322659, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 39.278, - "payout_at": "2017-08-31T23:51:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170824t235112132z", - "post_id": 10991763, - "promoted": "0.000 HBD", - "replies": [ - "boomshikha/re-stackin-re-steemit-firstpost-20170825t013613361z", - "crypto-guru/re-stackin-re-steemit-firstpost-20170827t190543739z", - "hussnain/re-stackin-re-steemit-firstpost-20171218t225148759z", - "gomain/re-stackin-re-steemit-firstpost-20180107t195657460z", - "dylanhobalart/re-stackin-re-steemit-firstpost-20180116t065239526z", - "topdollar001/re-stackin-re-steemit-firstpost-20180119t002117970z", - "mr-lahey/re-stackin-re-steemit-firstpost-20180125t015744901z", - "mominsdt/re-stackin-re-steemit-firstpost-20180204t150331514z", - "juicyvegandwarf/re-stackin-re-steemit-firstpost-20180205t003302894z", - "chaseburnett/re-stackin-re-steemit-firstpost-20180213t001539171z", - "salda/re-stackin-re-steemit-firstpost-20180214t094158335z", - "salda/re-stackin-re-steemit-firstpost-20180214t094350602z", - "calebotamus/re-stackin-re-steemit-firstpost-20180223t211655533z", - "dan321/re-stackin-re-steemit-firstpost-20180304t105930825z", - "ppktech/re-stackin-re-steemit-firstpost-20180310t111546590z", - "martintruther/re-stackin-re-steemit-firstpost-20180312t001847652z", - "azeemprime/re-stackin-re-steemit-firstpost-20180320t060223173z", - "wil1liam/re-stackin-re-steemit-firstpost-20180407t182425232z", - "onceuponmylife/re-stackin-re-steemit-firstpost-20180502t003931757z", - "sutter/re-stackin-re-steemit-firstpost-20180518t035057988z", - "michaelabbas/re-stackin-re-steemit-firstpost-20180813t023057209z", - "ackza/re-stackin-re-steemit-firstpost-20190402t134818892z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 62 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T23:51:12", - "url": "/meta/@steemit/firstpost#@stackin/re-steemit-firstpost-20170824t235112132z" + "gekko/re-steemit-firstpost-20160721t223937736z": { + "active_votes": [ + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "689526018", + "voter": "patrick-g" + }, + { + "rshares": "145914460", + "voter": "allmonitors" + } + ], + "author": "gekko", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I leave my mark here in mythical post 8]", + "category": "meta", + "children": 0, + "created": "2016-07-21T22:39:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1261343544, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160721t223937736z", + "post_id": 189029, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T22:39:39", + "url": "/meta/@steemit/firstpost#@gekko/re-steemit-firstpost-20160721t223937736z" }, - "starangel/re-steemit-firstpost-20171231t171957452z": { - "active_votes": [ - { - "rshares": "755325541", - "voter": "enginewitty" - }, - { - "rshares": "1692321193", - "voter": "starangel" - }, - { - "rshares": "3709018457", - "voter": "thealliance" - } - ], - "author": "starangel", - "author_payout_value": "0.070 HBD", - "author_reputation": 52.2, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is indeed life changing and it never cease to amaze me! \u263a\ud83c\udf1f Thank you very much @steemit! \ud83d\udc9a", - "category": "meta", - "children": 0, - "created": "2017-12-31T17:20:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 6156665191, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.07, - "payout_at": "2018-01-07T17:20:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171231t171957452z", - "post_id": 22841184, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-31T17:20:00", - "url": "/meta/@steemit/firstpost#@starangel/re-steemit-firstpost-20171231t171957452z" + "gopher/re-admin-firstpost-20160718t195306992z": { + "active_votes": [ + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "111000395", + "voter": "bustillos" + } + ], + "author": "gopher", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Are you admin in steem? If you have been hacked, who can help you?", + "category": "meta", + "children": 0, + "created": "2016-07-18T19:53:12", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 853566876, + "parent_author": "admin", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-admin-firstpost-20160718t195306992z", + "post_id": 125730, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-18T19:53:12", + "url": "/meta/@steemit/firstpost#@gopher/re-admin-firstpost-20160718t195306992z" }, - "stardivine/re-hussnain-re-stackin-re-steemit-firstpost-20171231t165419611z": { - "active_votes": [ - { - "rshares": "658804001", - "voter": "stardivine" - }, - { - "rshares": "0", - "voter": "asherunderwood" - } - ], - "author": "stardivine", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.06, - "beneficiaries": [], - "blacklists": [], - "body": "Keep on Steeming! Happy New Year! \u263a\u2728\ud83c\udf89\ud83c\udf8a\ud83c\udf86", - "category": "meta", - "children": 0, - "created": "2017-12-31T16:54:21", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 658804001, - "parent_author": "hussnain", - "parent_permlink": "re-stackin-re-steemit-firstpost-20171218t225148759z", - "payout": 0.0, - "payout_at": "2018-01-07T16:54:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-hussnain-re-stackin-re-steemit-firstpost-20171231t165419611z", - "post_id": 22837757, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-31T16:54:21", - "url": "/meta/@steemit/firstpost#@stardivine/re-hussnain-re-stackin-re-steemit-firstpost-20171231t165419611z" + "gopher/re-steemit-firstpost-20160718t195806340z": { + "active_votes": [], + "author": "gopher", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "http://steem.com/@bittrex/transfers how this user can have these tranfers without any activity?", + "category": "meta", + "children": 1, + "created": "2016-07-18T19:58:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "links": [ + "http://steem.com/@bittrex/transfers" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160718t195806340z", + "post_id": 125794, + "promoted": "0.000 HBD", + "replies": [ + "steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-18T19:58:09", + "url": "/meta/@steemit/firstpost#@gopher/re-steemit-firstpost-20160718t195806340z" }, - "starfinger13/re-steemit-firstpost-20180413t023524112z": { - "active_votes": [ - { - "rshares": "63287392", - "voter": "raise-me-up" - }, - { - "rshares": "113176975", - "voter": "soyeburrahman" - } - ], - "author": "starfinger13", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.92, - "beneficiaries": [], - "blacklists": [], - "body": "Happy To be there !", - "category": "meta", - "children": 0, - "created": "2018-04-13T02:35:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 176464367, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-20T02:35:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180413t023524112z", - "post_id": 43334942, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-13T02:35:24", - "url": "/meta/@steemit/firstpost#@starfinger13/re-steemit-firstpost-20180413t023524112z" + "imarealboy777/re-steemit-firstpost-20160801t232001768z": { + "active_votes": [ + { + "rshares": "2725768", + "voter": "cire81" + }, + { + "rshares": "154885141", + "voter": "lorddominik007" + } + ], + "author": "imarealboy777", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Vesting , vesting 1 2 3 .", + "category": "meta", + "children": 0, + "created": "2016-08-01T23:20:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 157610909, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160801t232001768z", + "post_id": 401002, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-01T23:20:36", + "url": "/meta/@steemit/firstpost#@imarealboy777/re-steemit-firstpost-20160801t232001768z" }, - "stealthtrader/pypq0x": { - "active_votes": [ - { - "rshares": "0", - "voter": "cosmophobia" - } - ], - "author": "stealthtrader", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.01, - "beneficiaries": [], - "blacklists": [], - "body": "See it is so simple! \n\nI can't believe we had such a hard time trying to explain what Steemit is..\n\nWe should just show people this!!", - "category": "meta", - "children": 0, - "created": "2019-10-01T20:24:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-10-08T20:24:36", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "pypq0x", - "post_id": 80507026, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-10-01T20:24:36", - "url": "/meta/@steemit/firstpost#@stealthtrader/pypq0x" + "intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z": { + "active_votes": [ + { + "rshares": "23648397", + "voter": "sillyfilthy" + } + ], + "author": "intelliguy", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I thought we were talking about @ned and not @steemit", + "category": "meta", + "children": 1, + "created": "2016-07-21T05:33:57", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ], + "users": [ + "ned", + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 23648397, + "parent_author": "kewpiedoll", + "parent_permlink": "re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z", + "post_id": 173797, + "promoted": "0.000 HBD", + "replies": [ + "kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T05:33:57", + "url": "/meta/@steemit/firstpost#@intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z" }, - "steem-id/re-red-steemit-firstpost-2": { - "active_votes": [ - { - "rshares": "724886327", - "voter": "patrick-g" - }, - { - "rshares": "0", - "voter": "the-ego-is-you" - }, - { - "rshares": "0", - "voter": "bvidal" - }, - { - "rshares": "0", - "voter": "setio" - } - ], - "author": "steem-id", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.12, - "beneficiaries": [], - "blacklists": [], - "body": "Can I get some :D", - "category": "meta", - "children": 0, - "created": "2016-04-13T03:48:36", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 724886327, - "parent_author": "red", - "parent_permlink": "steemit-firstpost-2", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-red-steemit-firstpost-2", - "post_id": 101, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-04-13T03:48:36", - "url": "/meta/@steemit/firstpost#@steem-id/re-red-steemit-firstpost-2" + "intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z": { + "active_votes": [], + "author": "intelliguy", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "probably because it's one sentence. Doesn't add a lot of good, quality content? I don't know.", + "category": "meta", + "children": 3, + "created": "2016-07-20T21:58:51", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "kewpiedoll", + "parent_permlink": "re-steemit-firstpost-20160720t210201326z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-kewpiedoll-re-steemit-firstpost-20160720t215823622z", + "post_id": 167552, + "promoted": "0.000 HBD", + "replies": [ + "kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T21:58:51", + "url": "/meta/@steemit/firstpost#@intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z" }, - "steemit/firstpost": { - "active_votes": [ - { - "rshares": "375241", - "voter": "dantheman" - }, - { - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "rshares": "5100", - "voter": "steemit78" - }, - { - "rshares": "1259167", - "voter": "anonymous" - }, - { - "rshares": "318519", - "voter": "hello" - }, - { - "rshares": "153384", - "voter": "world" - }, - { - "rshares": "-936400", - "voter": "ned" - }, - { - "rshares": "59412", - "voter": "fufubar1" - }, - { - "rshares": "14997", - "voter": "anonymous1" - }, - { - "rshares": "1441", - "voter": "red" - }, - { - "rshares": "551390835500", - "voter": "liondani" - }, - { - "rshares": "82748", - "voter": "roadscape" - }, - { - "rshares": "10772", - "voter": "xeroc" - }, - { - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "rshares": "498863058", - "voter": "joelinux" - }, - { - "rshares": "9590417", - "voter": "piranhax" - }, - { - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "rshares": "425903066", - "voter": "gekko" - }, - { - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "rshares": "422984262", - "voter": "acidyo" - }, - { - "rshares": "47179379651", - "voter": "tosch" - }, - { - "rshares": "7831667988", - "voter": "klye" - }, - { - "rshares": "1019950749", - "voter": "coar" - }, - { - "rshares": "1746058458", - "voter": "murh" - }, - { - "rshares": "0", - "voter": "ashe-oro" - }, - { - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "rshares": "0", - "voter": "hien-tran" - }, - { - "rshares": "0", - "voter": "noganoo" - }, - { - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "rshares": "40624969", - "voter": "ben99" - }, - { - "rshares": "0", - "voter": "tskeene" - }, - { - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "rshares": "0", - "voter": "roelandp" - }, - { - "rshares": "0", - "voter": "stealthtrader" - }, - { - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "rshares": "0", - "voter": "picokernel" - }, - { - "rshares": "0", - "voter": "ausbitbank" - }, - { - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "rshares": "0", - "voter": "sebastien" - }, - { - "rshares": "917398502", - "voter": "decrypt" - }, - { - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "rshares": "1037079223", - "voter": "condra" - }, - { - "rshares": "233032838", - "voter": "jearson" - }, - { - "rshares": "240809500", - "voter": "tritium" - }, - { - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "rshares": "226074637", - "voter": "artjedi" - }, - { - "rshares": "931542394", - "voter": "anduweb" - }, - { - "rshares": "2292983350", - "voter": "inertia" - }, - { - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "rshares": "266262926", - "voter": "desmonid" - }, - { - "rshares": "71498008", - "voter": "madhatting" - }, - { - "rshares": "23726644841", - "voter": "ubg" - }, - { - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "rshares": "131577259", - "voter": "gribgo" - }, - { - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "rshares": "28907874049", - "voter": "orm" - }, - { - "rshares": "528988007", - "voter": "qonq99" - }, - { - "rshares": "129537329", - "voter": "rd7783" - }, - { - "rshares": "615020728", - "voter": "slava" - }, - { - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "rshares": "0", - "voter": "social" - }, - { - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "rshares": "95219365", - "voter": "curator" - }, - { - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "rshares": "0", - "voter": "solos" - }, - { - "rshares": "0", - "voter": "alvintang" - }, - { - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "rshares": "0", - "voter": "blysards" - }, - { - "rshares": "0", - "voter": "nick.kharchenko" - }, - { - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "rshares": "1279854", - "voter": "nigmat" - }, - { - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "rshares": "10847083143", - "voter": "metrox" - }, - { - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "rshares": "710989138", - "voter": "romancs" - }, - { - "rshares": "59366614", - "voter": "luke490" - }, - { - "rshares": "58762473", - "voter": "bro66" - }, - { - "rshares": "201822591", - "voter": "future24" - }, - { - "rshares": "58623688", - "voter": "mythras" - }, - { - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "rshares": "0", - "voter": "matrixdweller" - }, - { - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "rshares": "54761612", - "voter": "edbriv" - }, - { - "rshares": "0", - "voter": "anarchyhasnogods" - }, - { - "rshares": "865125771", - "voter": "rittr" - }, - { - "rshares": "0", - "voter": "tumutanzi" - }, - { - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "rshares": "52740989", - "voter": "tcstix" - }, - { - "rshares": "49467477", - "voter": "friedwater" - }, - { - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "rshares": "0", - "voter": "gbonikz" - }, - { - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "rshares": "0", - "voter": "darkflame" - }, - { - "rshares": "0", - "voter": "sneak" - }, - { - "rshares": "0", - "voter": "jacobcards" - }, - { - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "rshares": "0", - "voter": "shieha" - }, - { - "rshares": "54017869", - "voter": "zelious" - }, - { - "rshares": "0", - "voter": "allyouneedtoknow" - }, - { - "rshares": "0", - "voter": "justyy" - }, - { - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "rshares": "53196086", - "voter": "f1111111" - }, - { - "rshares": "0", - "voter": "anomaly" - }, - { - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "rshares": "0", - "voter": "buckland" - }, - { - "rshares": "0", - "voter": "guest123" - }, - { - "rshares": "0", - "voter": "syahhiran" - }, - { - "rshares": "0", - "voter": "rarcntv" - }, - { - "rshares": "0", - "voter": "nataleeoliver" - }, - { - "rshares": "0", - "voter": "goldmatters" - }, - { - "rshares": "0", - "voter": "gamer00" - }, - { - "rshares": "0", - "voter": "curiesea" - }, - { - "rshares": "0", - "voter": "missmarzipan" - }, - { - "rshares": "0", - "voter": "thejohalfiles" - }, - { - "rshares": "0", - "voter": "steemwart" - }, - { - "rshares": "0", - "voter": "mapesa" - }, - { - "rshares": "0", - "voter": "max-max" - }, - { - "rshares": "0", - "voter": "joshuaatiemo" - }, - { - "rshares": "0", - "voter": "jumaidafajar" - }, - { - "rshares": "0", - "voter": "leolina1" - }, - { - "rshares": "0", - "voter": "rebatesteem" - }, - { - "rshares": "0", - "voter": "aidancloquell" - }, - { - "rshares": "0", - "voter": "rm802" - }, - { - "rshares": "0", - "voter": "krasotka" - }, - { - "rshares": "0", - "voter": "alamyrjunior" - }, - { - "rshares": "0", - "voter": "networker5" - }, - { - "rshares": "0", - "voter": "evdoggformayor" - }, - { - "rshares": "0", - "voter": "askari" - }, - { - "rshares": "0", - "voter": "blockrush" - }, - { - "rshares": "0", - "voter": "barvon" - }, - { - "rshares": "0", - "voter": "fajarsdq" - }, - { - "rshares": "0", - "voter": "juandemarte" - }, - { - "rshares": "0", - "voter": "lazarescu.irinel" - }, - { - "rshares": "0", - "voter": "thedeplorable1" - }, - { - "rshares": "0", - "voter": "kalemandra" - }, - { - "rshares": "0", - "voter": "ades" - }, - { - "rshares": "0", - "voter": "rizkiavonna" - }, - { - "rshares": "0", - "voter": "tohamy7" - }, - { - "rshares": "0", - "voter": "justinashby" - }, - { - "rshares": "0", - "voter": "thereikiforest" - }, - { - "rshares": "0", - "voter": "serendipitie" - }, - { - "rshares": "0", - "voter": "anwarabdullah" - }, - { - "rshares": "0", - "voter": "rocketbeee" - }, - { - "rshares": "0", - "voter": "ackza" - }, - { - "rshares": "0", - "voter": "nilim" - }, - { - "rshares": "0", - "voter": "renatrazumov" - }, - { - "rshares": "0", - "voter": "jelkasmi" - }, - { - "rshares": "0", - "voter": "dimitrya123" - }, - { - "rshares": "0", - "voter": "crawfish37" - }, - { - "rshares": "0", - "voter": "laodr" - }, - { - "rshares": "0", - "voter": "lkisaid" - }, - { - "rshares": "0", - "voter": "mikev" - }, - { - "rshares": "0", - "voter": "hakan0356" - }, - { - "rshares": "0", - "voter": "tasartcraft" - }, - { - "rshares": "0", - "voter": "urmokas" - }, - { - "rshares": "0", - "voter": "michael-fagundes" - }, - { - "rshares": "0", - "voter": "kalamur" - }, - { - "rshares": "0", - "voter": "abhinavsharma" - }, - { - "rshares": "0", - "voter": "contentguy" - }, - { - "rshares": "0", - "voter": "globocop" - }, - { - "rshares": "0", - "voter": "hafizul" - }, - { - "rshares": "0", - "voter": "hothelp1by1" - }, - { - "rshares": "0", - "voter": "vannfrik" - }, - { - "rshares": "0", - "voter": "manuel78" - }, - { - "rshares": "0", - "voter": "brado" - }, - { - "rshares": "0", - "voter": "strateg" - }, - { - "rshares": "0", - "voter": "quinsmacqueen" - }, - { - "rshares": "0", - "voter": "brucebrownftw" - }, - { - "rshares": "0", - "voter": "mrstaf" - }, - { - "rshares": "0", - "voter": "avvah" - }, - { - "rshares": "0", - "voter": "stackin" - }, - { - "rshares": "0", - "voter": "laloelectrix" - }, - { - "rshares": "0", - "voter": "heejaekim" - }, - { - "rshares": "0", - "voter": "thethreehugs" - }, - { - "rshares": "0", - "voter": "otitrader" - }, - { - "rshares": "0", - "voter": "clixmoney" - }, - { - "rshares": "0", - "voter": "tryword" - }, - { - "rshares": "0", - "voter": "dioneaguiar" - }, - { - "rshares": "0", - "voter": "yann.moalic" - }, - { - "rshares": "0", - "voter": "shaunf" - }, - { - "rshares": "0", - "voter": "cleemit" - }, - { - "rshares": "0", - "voter": "deeluvli1" - }, - { - "rshares": "0", - "voter": "noval" - }, - { - "rshares": "0", - "voter": "pixzelplethora" - }, - { - "rshares": "0", - "voter": "smart3dweb" - }, - { - "rshares": "0", - "voter": "joey-cryptoboy" - }, - { - "rshares": "0", - "voter": "mateorite" - }, - { - "rshares": "0", - "voter": "somaflaco" - }, - { - "rshares": "0", - "voter": "enki74" - }, - { - "rshares": "0", - "voter": "jungleebitcoin" - }, - { - "rshares": "0", - "voter": "correctdrop" - }, - { - "rshares": "0", - "voter": "clintjunior" - }, - { - "rshares": "0", - "voter": "tediursa24" - }, - { - "rshares": "0", - "voter": "mxzn" - }, - { - "rshares": "0", - "voter": "hgmsilvergold" - }, - { - "rshares": "0", - "voter": "antares007" - }, - { - "rshares": "0", - "voter": "tridenspoon333" - }, - { - "rshares": "0", - "voter": "vipek1996" - }, - { - "rshares": "0", - "voter": "prima-nia" - }, - { - "rshares": "0", - "voter": "redris" - }, - { - "rshares": "0", - "voter": "savetheanimals" - }, - { - "rshares": "0", - "voter": "tarunmewara" - }, - { - "rshares": "0", - "voter": "overkillcoin" - }, - { - "rshares": "0", - "voter": "tuakanamorgan" - }, - { - "rshares": "0", - "voter": "anacristinasilva" - }, - { - "rshares": "0", - "voter": "filmonaut" - }, - { - "rshares": "0", - "voter": "firstamendment" - }, - { - "rshares": "0", - "voter": "timcrypto" - }, - { - "rshares": "0", - "voter": "cryptotem" - }, - { - "rshares": "0", - "voter": "mikej" - }, - { - "rshares": "0", - "voter": "hwrs" - }, - { - "rshares": "0", - "voter": "sinai770judea" - }, - { - "rshares": "0", - "voter": "tuneralliance" - }, - { - "rshares": "0", - "voter": "zeji" - }, - { - "rshares": "0", - "voter": "ricoalfianda" - }, - { - "rshares": "0", - "voter": "satfit" - }, - { - "rshares": "0", - "voter": "machhour" - }, - { - "rshares": "0", - "voter": "bitgenio" - }, - { - "rshares": "0", - "voter": "ahmedmansi" - }, - { - "rshares": "0", - "voter": "theoccultcorner" - }, - { - "rshares": "0", - "voter": "reseller" - }, - { - "rshares": "0", - "voter": "ainsleyjo1952" - }, - { - "rshares": "0", - "voter": "novi" - }, - { - "rshares": "0", - "voter": "androsform" - }, - { - "rshares": "0", - "voter": "jooyoung" - }, - { - "rshares": "0", - "voter": "dobro88888888" - }, - { - "rshares": "0", - "voter": "ghaaspur" - }, - { - "rshares": "0", - "voter": "xodyd2da" - }, - { - "rshares": "0", - "voter": "trisun" - }, - { - "rshares": "0", - "voter": "tngflx" - }, - { - "rshares": "0", - "voter": "karaban" - }, - { - "rshares": "0", - "voter": "empath" - }, - { - "rshares": "0", - "voter": "pcbildrnoob" - }, - { - "rshares": "0", - "voter": "joecaffeine" - }, - { - "rshares": "0", - "voter": "laolballs" - }, - { - "rshares": "0", - "voter": "braamsteyn7777" - }, - { - "rshares": "0", - "voter": "udibekwe" - }, - { - "rshares": "0", - "voter": "jackolanternbob" - }, - { - "rshares": "0", - "voter": "rondoncr" - }, - { - "rshares": "0", - "voter": "doubledeeyt" - }, - { - "rshares": "0", - "voter": "joshvel" - }, - { - "rshares": "0", - "voter": "lembach3d" - }, - { - "rshares": "0", - "voter": "vulturestkn" - }, - { - "rshares": "0", - "voter": "darknessprincess" - }, - { - "rshares": "0", - "voter": "misrori" - }, - { - "rshares": "0", - "voter": "afrikanprince" - }, - { - "rshares": "0", - "voter": "jjprac" - }, - { - "rshares": "0", - "voter": "ayuwandira" - }, - { - "rshares": "0", - "voter": "ilicoin" - }, - { - "rshares": "0", - "voter": "pkvlogs" - }, - { - "rshares": "0", - "voter": "bitstudio" - }, - { - "rshares": "0", - "voter": "taintedblood" - }, - { - "rshares": "0", - "voter": "epsicktick" - }, - { - "rshares": "0", - "voter": "csggene3" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - }, - { - "rshares": "0", - "voter": "geek4geek" - }, - { - "rshares": "0", - "voter": "kharrazi" - }, - { - "rshares": "0", - "voter": "zufrizal" - }, - { - "rshares": "0", - "voter": "academix87" - }, - { - "rshares": "0", - "voter": "planetenamek" - }, - { - "rshares": "0", - "voter": "muliaeko" - }, - { - "rshares": "0", - "voter": "boyjack" - }, - { - "rshares": "0", - "voter": "jatniel" - }, - { - "rshares": "0", - "voter": "juanangel40bcn" - }, - { - "rshares": "0", - "voter": "jodywrites" - }, - { - "rshares": "0", - "voter": "permatek" - }, - { - "rshares": "0", - "voter": "cyberspace" - }, - { - "rshares": "0", - "voter": "fareehasheharyar" - }, - { - "rshares": "0", - "voter": "saynie" - }, - { - "rshares": "0", - "voter": "plainoldme" - }, - { - "rshares": "0", - "voter": "razaqbarry" - }, - { - "rshares": "0", - "voter": "antoniokarteli" - }, - { - "rshares": "0", - "voter": "dream.trip" - }, - { - "rshares": "0", - "voter": "reinhardbaust" - }, - { - "rshares": "0", - "voter": "newpioneer" - }, - { - "rshares": "0", - "voter": "melvinbonner" - }, - { - "rshares": "0", - "voter": "zulfahmi2141" - }, - { - "rshares": "0", - "voter": "maninjapan1989" - }, - { - "rshares": "0", - "voter": "andravasko" - }, - { - "rshares": "0", - "voter": "gilma" - }, - { - "rshares": "0", - "voter": "tom74" - }, - { - "rshares": "0", - "voter": "josephfugata" - }, - { - "rshares": "0", - "voter": "bitcointauji" - }, - { - "rshares": "0", - "voter": "gray00" - }, - { - "rshares": "0", - "voter": "divyang101" - }, - { - "rshares": "0", - "voter": "bahagia-arbi" - }, - { - "rshares": "0", - "voter": "bhim" - }, - { - "rshares": "0", - "voter": "bickell" - }, - { - "rshares": "0", - "voter": "tfpostman" - }, - { - "rshares": "0", - "voter": "anujkumar" - }, - { - "rshares": "0", - "voter": "fbslo" - }, - { - "rshares": "0", - "voter": "renijuliani" - }, - { - "rshares": "0", - "voter": "setio" - }, - { - "rshares": "0", - "voter": "mooncryption" - }, - { - "rshares": "0", - "voter": "shintamonica" - }, - { - "rshares": "0", - "voter": "caratzky" - }, - { - "rshares": "0", - "voter": "komrad" - }, - { - "rshares": "0", - "voter": "therivernile" - }, - { - "rshares": "0", - "voter": "deep.gohil" - }, - { - "rshares": "0", - "voter": "thomasduder" - }, - { - "rshares": "0", - "voter": "sensistar" - }, - { - "rshares": "0", - "voter": "abdelone" - }, - { - "rshares": "0", - "voter": "gegec" - }, - { - "rshares": "0", - "voter": "ambmicheal" - }, - { - "rshares": "0", - "voter": "rincewind" - }, - { - "rshares": "0", - "voter": "alishannoor" - }, - { - "rshares": "0", - "voter": "ahhjoeinhk" - }, - { - "rshares": "0", - "voter": "kalhiade" - }, - { - "rshares": "0", - "voter": "faridrizkia" - }, - { - "rshares": "0", - "voter": "teamslovenia" - }, - { - "rshares": "0", - "voter": "xiaoshancun" - }, - { - "rshares": "0", - "voter": "mikewebb274" - }, - { - "rshares": "0", - "voter": "andrath" - }, - { - "rshares": "0", - "voter": "torosan" - }, - { - "rshares": "0", - "voter": "ghayas" - }, - { - "rshares": "0", - "voter": "krevasilis" - }, - { - "rshares": "0", - "voter": "koinbot" - }, - { - "rshares": "0", - "voter": "synergy-now" - }, - { - "rshares": "0", - "voter": "steemblogs" - }, - { - "rshares": "0", - "voter": "tujuhpelita" - }, - { - "rshares": "0", - "voter": "palani" - }, - { - "rshares": "0", - "voter": "as-i-see-it" - }, - { - "rshares": "0", - "voter": "heyeshuang" - }, - { - "rshares": "0", - "voter": "arslan786" - }, - { - "rshares": "0", - "voter": "cgf117" - }, - { - "rshares": "0", - "voter": "amazingtech100" - }, - { - "rshares": "0", - "voter": "dreamm" - }, - { - "rshares": "0", - "voter": "sweetssssj" - }, - { - "rshares": "0", - "voter": "ceikdo" - }, - { - "rshares": "0", - "voter": "sunsquall" - }, - { - "rshares": "0", - "voter": "muhammadilyas93" - }, - { - "rshares": "0", - "voter": "cre47iv3" - }, - { - "rshares": "0", - "voter": "joao-cacador" - }, - { - "rshares": "0", - "voter": "jamsphonna" - }, - { - "rshares": "0", - "voter": "abbak7" - }, - { - "rshares": "0", - "voter": "thelifeofjord" - }, - { - "rshares": "0", - "voter": "utpoldebnath" - }, - { - "rshares": "0", - "voter": "sagorkhan" - }, - { - "rshares": "0", - "voter": "shivpremi" - }, - { - "rshares": "0", - "voter": "shabbirahmad" - }, - { - "rshares": "0", - "voter": "ibeljr" - }, - { - "rshares": "0", - "voter": "umelard" - }, - { - "rshares": "0", - "voter": "stijndehaan" - }, - { - "rshares": "0", - "voter": "iamericmorrison" - }, - { - "rshares": "0", - "voter": "shiningstar" - }, - { - "rshares": "0", - "voter": "steemprojects1" - }, - { - "rshares": "0", - "voter": "steemprojects2" - }, - { - "rshares": "0", - "voter": "stuvi" - }, - { - "rshares": "0", - "voter": "zia161" - }, - { - "rshares": "0", - "voter": "arslanq" - }, - { - "rshares": "0", - "voter": "kevca16" - }, - { - "rshares": "0", - "voter": "mcreg" - }, - { - "rshares": "0", - "voter": "waheebisb" - }, - { - "rshares": "0", - "voter": "rizaokur" - }, - { - "rshares": "0", - "voter": "seanstein" - }, - { - "rshares": "0", - "voter": "piszozo" - }, - { - "rshares": "0", - "voter": "vicmariki" - }, - { - "rshares": "0", - "voter": "contribution" - }, - { - "rshares": "0", - "voter": "oep" - }, - { - "rshares": "0", - "voter": "akshitgrover" - }, - { - "rshares": "0", - "voter": "jackson12" - }, - { - "rshares": "0", - "voter": "dtldesign" - }, - { - "rshares": "0", - "voter": "h4ck3rm1k3st33m" - }, - { - "rshares": "0", - "voter": "smokeasare165" - }, - { - "rshares": "0", - "voter": "tinoschloegl" - }, - { - "rshares": "0", - "voter": "liftu" - }, - { - "rshares": "0", - "voter": "atul8888" - }, - { - "rshares": "0", - "voter": "goroshkodo" - }, - { - "rshares": "0", - "voter": "tarmizislow" - }, - { - "rshares": "0", - "voter": "nurmasyithah" - }, - { - "rshares": "0", - "voter": "ritikagupta" - }, - { - "rshares": "0", - "voter": "anniemohler" - }, - { - "rshares": "0", - "voter": "olaivart" - }, - { - "rshares": "0", - "voter": "thedrewshow" - }, - { - "rshares": "0", - "voter": "alpha27" - }, - { - "rshares": "0", - "voter": "adventuretours" - }, - { - "rshares": "0", - "voter": "advexon" - }, - { - "rshares": "0", - "voter": "cloudconnect" - }, - { - "rshares": "0", - "voter": "ontheverge" - }, - { - "rshares": "0", - "voter": "celsomichida" - }, - { - "rshares": "0", - "voter": "cannan" - }, - { - "rshares": "0", - "voter": "cloudbuster" - }, - { - "rshares": "0", - "voter": "adrienoor" - }, - { - "rshares": "0", - "voter": "hussnain" - }, - { - "rshares": "0", - "voter": "shanloth" - }, - { - "rshares": "0", - "voter": "samirnyaupane" - }, - { - "rshares": "0", - "voter": "slackeramericana" - }, - { - "rshares": "0", - "voter": "thabiggdogg" - }, - { - "rshares": "0", - "voter": "gilnambatac" - }, - { - "rshares": "0", - "voter": "withgraham" - }, - { - "rshares": "0", - "voter": "sephirot" - }, - { - "rshares": "0", - "voter": "coffeeman" - }, - { - "rshares": "0", - "voter": "stefunniy" - }, - { - "rshares": "0", - "voter": "ghanexs" - }, - { - "rshares": "0", - "voter": "razipelangi" - }, - { - "rshares": "0", - "voter": "dreamdiary" - }, - { - "rshares": "0", - "voter": "crypto4euro" - }, - { - "rshares": "0", - "voter": "rtsampa" - }, - { - "rshares": "0", - "voter": "mahi2raj" - }, - { - "rshares": "0", - "voter": "danyflores" - }, - { - "rshares": "0", - "voter": "oraclefrequency" - }, - { - "rshares": "0", - "voter": "kartikohri1712" - }, - { - "rshares": "0", - "voter": "cryptoaltcoin" - }, - { - "rshares": "0", - "voter": "einarscorner" - }, - { - "rshares": "0", - "voter": "dudithedoctor" - }, - { - "rshares": "0", - "voter": "dirapa" - }, - { - "rshares": "0", - "voter": "arfouche" - }, - { - "rshares": "0", - "voter": "kristenbruce" - }, - { - "rshares": "0", - "voter": "okclear" - }, - { - "rshares": "0", - "voter": "mysearchisover" - }, - { - "rshares": "0", - "voter": "dropd" - }, - { - "rshares": "0", - "voter": "rulilesmana" - }, - { - "rshares": "0", - "voter": "cryptomaniac6" - }, - { - "rshares": "0", - "voter": "kim3ra" - }, - { - "rshares": "0", - "voter": "movement19" - }, - { - "rshares": "0", - "voter": "aacr07" - }, - { - "rshares": "0", - "voter": "layra" - }, - { - "rshares": "0", - "voter": "vardhanbtc" - }, - { - "rshares": "0", - "voter": "azeemprime" - }, - { - "rshares": "0", - "voter": "dbnx" - }, - { - "rshares": "0", - "voter": "shredz7" - }, - { - "rshares": "0", - "voter": "bitstreamgains" - }, - { - "rshares": "0", - "voter": "hendrimaca" - }, - { - "rshares": "0", - "voter": "aan01" - }, - { - "rshares": "0", - "voter": "successmindset" - }, - { - "rshares": "0", - "voter": "hatu" - }, - { - "rshares": "0", - "voter": "khabirulhafiz" - }, - { - "rshares": "0", - "voter": "yady" - }, - { - "rshares": "0", - "voter": "samsonjura1" - }, - { - "rshares": "0", - "voter": "ambitiouslife" - }, - { - "rshares": "0", - "voter": "whyse" - }, - { - "rshares": "0", - "voter": "skyflow" - }, - { - "rshares": "0", - "voter": "kimtoma" - }, - { - "rshares": "0", - "voter": "asherunderwood" - }, - { - "rshares": "0", - "voter": "lorden" - }, - { - "rshares": "0", - "voter": "juicyvegandwarf" - }, - { - "rshares": "0", - "voter": "ushan007" - }, - { - "rshares": "0", - "voter": "ihsan6837" - }, - { - "rshares": "0", - "voter": "suryarose" - }, - { - "rshares": "0", - "voter": "sol7142" - }, - { - "rshares": "0", - "voter": "fikrialoy" - }, - { - "rshares": "0", - "voter": "mr-lahey" - }, - { - "rshares": "0", - "voter": "mahsabmirza" - }, - { - "rshares": "0", - "voter": "pwangdu" - }, - { - "rshares": "0", - "voter": "salda" - }, - { - "rshares": "0", - "voter": "muzzlealem" - }, - { - "rshares": "0", - "voter": "pakjos" - }, - { - "rshares": "0", - "voter": "mhdfadhal" - }, - { - "rshares": "0", - "voter": "dannykastner" - }, - { - "rshares": "0", - "voter": "ibul11" - }, - { - "rshares": "0", - "voter": "nigtroy" - }, - { - "rshares": "0", - "voter": "uripsurya" - }, - { - "rshares": "0", - "voter": "jazman.zhens" - }, - { - "rshares": "0", - "voter": "intervote" - }, - { - "rshares": "0", - "voter": "mahend" - }, - { - "rshares": "0", - "voter": "anandasungkar" - }, - { - "rshares": "0", - "voter": "homeless.global" - }, - { - "rshares": "0", - "voter": "intansteemityes" - }, - { - "rshares": "0", - "voter": "perminus-gaita" - }, - { - "rshares": "0", - "voter": "phost" - }, - { - "rshares": "0", - "voter": "debart" - }, - { - "rshares": "0", - "voter": "blurrydude" - }, - { - "rshares": "0", - "voter": "tsnaks" - }, - { - "rshares": "0", - "voter": "legendchew" - }, - { - "rshares": "0", - "voter": "cryptonegocios" - }, - { - "rshares": "0", - "voter": "alexcozzy" - }, - { - "rshares": "0", - "voter": "joe.ster" - }, - { - "rshares": "0", - "voter": "pandu13" - }, - { - "rshares": "0", - "voter": "sasakhan" - }, - { - "rshares": "0", - "voter": "faisalyus" - }, - { - "rshares": "0", - "voter": "sawyn" - }, - { - "rshares": "0", - "voter": "diegocedenno" - }, - { - "rshares": "0", - "voter": "calebotamus" - }, - { - "rshares": "0", - "voter": "lsanneh78128" - }, - { - "rshares": "0", - "voter": "nazaruddin885" - }, - { - "rshares": "0", - "voter": "chaseburnett" - }, - { - "rshares": "0", - "voter": "sisirhasan" - }, - { - "rshares": "0", - "voter": "donyanyo" - }, - { - "rshares": "0", - "voter": "oregontravel" - }, - { - "rshares": "0", - "voter": "luegenbaron" - }, - { - "rshares": "0", - "voter": "edkrassenstein" - }, - { - "rshares": "0", - "voter": "munawirawin" - }, - { - "rshares": "0", - "voter": "salgetra" - }, - { - "rshares": "0", - "voter": "zaxan" - }, - { - "rshares": "0", - "voter": "rollings" - }, - { - "rshares": "0", - "voter": "kyle07" - }, - { - "rshares": "0", - "voter": "pchanger" - }, - { - "rshares": "0", - "voter": "uncleboy" - }, - { - "rshares": "0", - "voter": "alfhi" - }, - { - "rshares": "0", - "voter": "htetmyathtut" - }, - { - "rshares": "0", - "voter": "trisolaran" - }, - { - "rshares": "0", - "voter": "arafs" - }, - { - "rshares": "0", - "voter": "abysoyjoy" - }, - { - "rshares": "0", - "voter": "stylo419" - }, - { - "rshares": "0", - "voter": "cookntell" - }, - { - "rshares": "0", - "voter": "rakkarage" - }, - { - "rshares": "0", - "voter": "grasozauru" - }, - { - "rshares": "0", - "voter": "norabx" - }, - { - "rshares": "0", - "voter": "joyvancouver" - }, - { - "rshares": "0", - "voter": "antchatz" - }, - { - "rshares": "0", - "voter": "tutchpa" - }, - { - "rshares": "0", - "voter": "cosmophobia" - }, - { - "rshares": "0", - "voter": "rajaji" - }, - { - "rshares": "0", - "voter": "liqquid" - }, - { - "rshares": "0", - "voter": "aceh-post" - }, - { - "rshares": "0", - "voter": "dannanares" - }, - { - "rshares": "0", - "voter": "husana" - }, - { - "rshares": "0", - "voter": "davidmichael" - }, - { - "rshares": "0", - "voter": "wprpn" - }, - { - "rshares": "0", - "voter": "datuparulas17" - }, - { - "rshares": "0", - "voter": "trie" - }, - { - "rshares": "0", - "voter": "chirstonawba" - }, - { - "rshares": "0", - "voter": "sulaiman86" - }, - { - "rshares": "0", - "voter": "electronicsworld" - }, - { - "rshares": "0", - "voter": "engrravijain" - }, - { - "rshares": "0", - "voter": "alfredolopez1980" - }, - { - "rshares": "0", - "voter": "gustavomonraz" - }, - { - "rshares": "0", - "voter": "tahoorsaleem" - }, - { - "rshares": "0", - "voter": "starfinger13" - }, - { - "rshares": "0", - "voter": "conscalisthenics" - }, - { - "rshares": "0", - "voter": "syd44723" - }, - { - "rshares": "0", - "voter": "sutter" - }, - { - "rshares": "0", - "voter": "samsonite18654" - }, - { - "rshares": "0", - "voter": "iqra.naz" - }, - { - "rshares": "0", - "voter": "drezz" - }, - { - "rshares": "0", - "voter": "cutelace" - }, - { - "rshares": "0", - "voter": "chirstonawba5" - }, - { - "rshares": "0", - "voter": "devkapoor423" - }, - { - "rshares": "0", - "voter": "blanchy" - }, - { - "rshares": "0", - "voter": "rakeshban357" - }, - { - "rshares": "0", - "voter": "douglasjames" - }, - { - "rshares": "0", - "voter": "michaelabbas" - }, - { - "rshares": "0", - "voter": "gonewithwind" - }, - { - "rshares": "0", - "voter": "snow.owl" - }, - { - "rshares": "0", - "voter": "tonthatthienvu" - }, - { - "rshares": "0", - "voter": "strangeworldnews" - }, - { - "rshares": "0", - "voter": "dogra" - }, - { - "rshares": "0", - "voter": "umairx97" - }, - { - "rshares": "0", - "voter": "coolpeopleifb" - }, - { - "rshares": "0", - "voter": "gabu01" - }, - { - "rshares": "0", - "voter": "magicalbot" - }, - { - "rshares": "0", - "voter": "f21steem" - }, - { - "rshares": "0", - "voter": "hoobit" - }, - { - "rshares": "0", - "voter": "ivancraigcaine" - }, - { - "rshares": "0", - "voter": "kranko" - }, - { - "rshares": "0", - "voter": "successinwork" - }, - { - "rshares": "0", - "voter": "abfelix96" - }, - { - "rshares": "0", - "voter": "maldonadog" - }, - { - "rshares": "0", - "voter": "drakeler" - }, - { - "rshares": "0", - "voter": "cyrex88" - }, - { - "rshares": "0", - "voter": "rikyu" - }, - { - "rshares": "0", - "voter": "krimimimi" - }, - { - "rshares": "0", - "voter": "johannav" - } - ], - "author": "steemit", - "author_payout_value": "0.942 HBD", - "author_reputation": 35.01, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "category": "meta", - "children": 430, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "payout": 1.698, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [ - "admin/firstpost", - "proskynneo/steemit-firstpost-1", - "red/steemit-firstpost-2", - "business/re-steemit-firstpost-20160713t082910980z", - "gopher/re-steemit-firstpost-20160718t195806340z", - "jennamarbles/re-steemit-firstpost-20160719t210752086z", - "kamvreto/re-steemit-firstpost-20160725t221949749z", - "kingtylervvs/re-steemit-firstpost-20160720t121101482z", - "kewpiedoll/re-steemit-firstpost-20160720t210201326z", - "gekko/re-steemit-firstpost-20160721t223937736z", - "sictransitgloria/re-steemit-firstpost-20160721t233702742z", - "patrick-g/re-steemit-firstpost-20160722t201007967z", - "kamvreto/re-steemit-firstpost-20160722t225246211z", - "zhuvazhuva/re-steemit-firstpost-20160723t130259286z", - "lenerdie/re-steemit-firstpost-20160726t035056026z", - "bestmalik/re-steemit-firstpost-20160726t035722561z", - "edbriv/re-steemit-firstpost-20160801t184846033z", - "imarealboy777/re-steemit-firstpost-20160801t232001768z", - "rednetkjh/re-steemit-firstpost-20160804t061605576z", - "jelloducky/re-steemit-firstpost-20160807t215340468z", - "deanliu/re-steemit-firstpost-20160810t083336206z", - "flandude/re-steemit-firstpost-20160811t225325571z", - "ubg/re-steemit-firstpost-20160813t143213453z", - "future24/re-steemit-firstpost-20160818t030224104z", - "rittr/re-steemit-firstpost-20160824t025355199z", - "jack8831/re-steemit-firstpost-20160824t093007335z", - "urmokas/re-steemit-firstpost-20170430t041901124z", - "urmokas/re-steemit-firstpost-20170430t041942403z", - "hothelp1by1/re-steemit-firstpost-20170602t024007551z", - "moataz/re-steemit-firstpost-20170606t220153482z", - "pixzelplethora/re-steemit-firstpost-20170607t102348258z", - "hgmsilvergold/re-steemit-firstpost-20170607t132619458z", - "watchout2017/re-steemit-firstpost-20170609t092656127z", - "whitedolphin/re-steemit-firstpost-20170611t040948165z", - "trys10k/re-steemit-firstpost-20170611t044200263z", - "anacristinasilva/re-steemit-firstpost-20170617t043011440z", - "mikej/re-steemit-firstpost-20170618t041022557z", - "valueup/re-steemit-firstpost-20170619t152843513z", - "satfit/re-steemit-firstpost-20170619t163049854z", - "scharfsinn/re-steemit-firstpost-20170619t225343241z", - "mikev/re-steemit-firstpost-20170620t052317893z", - "jackeown/re-steemit-firstpost-20170620t234314915z", - "nilim/re-steemit-firstpost-20170622t164733895z", - "jjjjosue/re-steemit-firstpost-20170623t205714645z", - "robi/re-steemit-firstpost-20170623t210657150z", - "correctdrop/re-steemit-firstpost-20170624t021339008z", - "bitgenio/re-steemit-firstpost-20170624t025915571z", - "tarunmewara/re-steemit-firstpost-20170624t114746528z", - "moemanmoesly/re-steemit-firstpost-20170624t220649051z", - "brunotreves/re-steemit-firstpost-20170628t051745320z", - "brucebrownftw/re-steemit-firstpost-20170628t191735949z", - "zeji/re-steemit-firstpost-20170630t111416254z", - "davidfar/re-steemit-firstpost-20170702t182536878z", - "darknessprincess/re-steemit-firstpost-20170703t180707051z", - "sornprar/re-steemit-firstpost-20170704t204851481z", - "sornprar/re-steemit-firstpost-20170705t021545762z", - "doubledeeyt/re-steemit-firstpost-20170705t060154298z", - "sornprar/re-steemit-firstpost-20170705t162923097z", - "timcrypto/re-steemit-firstpost-20170705t172656778z", - "diggerdugg/re-steemit-firstpost-20170706t210051540z", - "joecaffeine/re-steemit-firstpost-20170707t112601869z", - "clixmoney/re-steemit-firstpost-20170707t115721315z", - "ilicoin/re-steemit-firstpost-20170709t171749281z", - "steemitjp/re-steemit-firstpost-20170711t065057709z", - "junvebbei/re-steemit-firstpost-20170711t090032219z", - "seablue/re-steemit-firstpost-20170711t205019537z", - "tumutanzi/re-steemit-firstpost-20170714t095628298z", - "lembach3d/re-steemit-firstpost-20170714t115255243z", - "machhour/re-steemit-firstpost-20170714t133446189z", - "ronmamita/re-steemit-firstpost-20170714t155806399z", - "justyy/re-steemit-firstpost-20170715t082135653z", - "lazarescu.irinel/re-steemit-firstpost-20170715t163911333z", - "cyberspace/re-steemit-firstpost-20170719t102745698z", - "paradoxofchoice/re-steemit-firstpost-20170720t042055570z", - "improv/re-steemit-firstpost-20170720t073029499z", - "justinashby/re-steemit-firstpost-20170725t013335892z", - "cresh/re-steemit-firstpost-20170726t080227814z", - "geek4geek/re-steemit-firstpost-20170726t165631900z", - "shenkawys/re-steemit-firstpost-20170727t125325656z", - "planetenamek/re-steemit-firstpost-20170727t210239067z", - "silviu93/re-steemit-firstpost-20170728t193723204z", - "zufrizal/re-steemit-firstpost-20170730t044117656z", - "maninjapan1989/re-steemit-firstpost-20170801t133239673z", - "awaismuneeb1/re-steemit-firstpost-20170801t133500933z", - "coincentral/re-steemit-firstpost-20170808t130440146z", - "trailofwhales/re-steemit-firstpost-20170808t230208389z", - "healthyrecipe/re-steemit-firstpost-20170812t211959351z", - "alao/re-steemit-firstpost-20170820t215949199z", - "setio/re-steemit-firstpost-20170820t233100895z", - "greenrun/re-steemit-firstpost-20170821t081222039z", - "permatek/re-steemit-firstpost-20170821t224000406z", - "bahagia-arbi/re-steemit-firstpost-20170824t062329396z", - "mammasitta/re-steemit-firstpost-20170824t230822305z", - "stackin/re-steemit-firstpost-20170824t235112132z", - "pkvlogs/re-steemit-firstpost-20170826t004017217z", - "faridrizkia/re-steemit-firstpost-20170826t105509240z", - "crypto-guru/re-steemit-firstpost-20170827t190510082z", - "fajarsdq/re-steemit-firstpost-20170829t115541460z", - "andrath/re-steemit-firstpost-20170830t185517045z", - "tony-duke/re-steemit-firstpost-20170831t204732502z", - "padmakshi/re-steemit-firstpost-20170901t160649133z", - "patriot/re-steemit-firstpost-20170903t012448551z", - "decorations/re-steemit-firstpost-20170903t015605761z", - "reinhardbaust/re-steemit-firstpost-20170907t081004357z", - "photographer1/re-steemit-firstpost-20170907t091931832z", - "johnsmit/re-steemit-firstpost-20170907t120602357z", - "alketcecaj/re-steemit-firstpost-20170912t144124829z", - "andravasko/re-steemit-firstpost-20170912t145937605z", - "nicksteele/re-steemit-firstpost-20170912t215147483z", - "nc-mgtow/re-steemit-firstpost-20170916t153924178z", - "satfit/re-steemit-firstpost-20170917t193403188z", - "gilma/re-steemit-firstpost-20170918t002456528z", - "mooncryption/re-steemit-firstpost-20170922t043040342z", - "muliadi/re-steemit-firstpost-20170925t081014522z", - "thecrytotrader/re-steemit-firstpost-20170925t095222457z", - "palani/re-steemit-firstpost-20170926t091508449z", - "jephline/re-steemit-firstpost-20170928t005448336z", - "joao-cacador/re-steemit-firstpost-20170929t163807870z", - "andrewwu/re-steemit-firstpost-20170930t081242163z", - "melvinbonner/re-steemit-firstpost-20170930t182052948z", - "steemitph/re-steemit-firstpost-20171001t113800160z", - "vandalizmrecordz/re-steemit-firstpost-20171004t005106070z", - "elneddy/re-steemit-firstpost-20171006t194927903z", - "online12hour/re-steemit-firstpost-20171007t083026835z", - "coldhair/re-steemit-firstpost-20171011t025314464z", - "novacomics/re-steemit-firstpost-20171012t002948783z", - "isteemithard/re-steemit-firstpost-20171012t053244218z", - "isteemithard/re-steemit-firstpost-20171012t053312152z", - "isteemithard/re-steemit-firstpost-20171012t053404002z", - "angelsmith/re-steemit-firstpost-20171013t135507224z", - "ades/re-steemit-firstpost-20171014t094715920z", - "pokerman/re-steemit-firstpost-20171015t204850657z", - "creon/re-steemit-firstpost-20171016t040402189z", - "antoniodpz/re-steemit-firstpost-20171018t092916353z", - "antoniodpz/re-steemit-firstpost-20171018t093612369z", - "jac4b/re-steemit-firstpost-20171020t194412969z", - "sevenseals/re-steemit-firstpost-20171022t194618085z", - "gazur/re-steemit-firstpost-20171024t191436407z", - "gazur/re-steemit-firstpost-20171024t191550079z", - "jury.online/re-steemit-firstpost-20171026t231302575z", - "shieha/re-steemit-firstpost-20171027t024345028z", - "dbudhrani/re-steemit-firstpost-20171030t161000488z", - "henildedania/re-steemit-firstpost-20171031t122307919z", - "spectrumecons/re-steemit-firstpost-20171101t004320782z", - "cryptospeaker/re-steemit-firstpost-20171101t121036602z", - "nideo/re-steemit-firstpost-20171102t212222026z", - "mavigozlu/re-steemit-firstpost-20171107t080352739z", - "syedumair/re-steemit-firstpost-20171113t071852113z", - "syedumair/re-steemit-firstpost-20171113t113417285z", - "justinashby/re-steemit-firstpost-20171116t030504073z", - "mcreg/re-steemit-firstpost-20171116t032926766z", - "ayakashi145/re-steemit-firstpost-20171117t023134234z", - "shiningstar/re-steemit-firstpost-20171118t180756742z", - "gayanw/re-steemit-firstpost-20171121t172326950z", - "azizbd/re-steemit-firstpost-20171121t172708558z", - "nurdinnakaturi/re-steemit-firstpost-20171125t102301879z", - "kaliju/re-steemit-firstpost-20171203t125157898z", - "dreamm/re-steemit-firstpost-20171206t122126721z", - "otemzi/re-steemit-firstpost-20171206t224513157z", - "mrrifat1/re-steemit-firstpost-20171207t110825462z", - "thedrewshow/re-steemit-firstpost-20171208t005953936z", - "v007007007/re-steemit-firstpost-20171208t070558910z", - "jery/re-steemit-firstpost-20171208t141554872z", - "endorphoenix/re-steemit-firstpost-20171208t183328209z", - "extraterrestrial/re-steemit-firstpost-20171217t200414912z", - "davidconstantine/re-steemit-firstpost-20171217t214103613z", - "tinoschloegl/re-steemit-firstpost-20171220t090303161z", - "hafizul/re-steemit-firstpost-20171222t084035853z", - "theafroguy/re-steemit-firstpost-20171223t213918039z", - "arisid/re-steemit-firstpost-20171228t092222655z", - "karmashine/re-steemit-firstpost-20171229t113317542z", - "lovehaswon/re-steemit-firstpost-20171231t144811861z", - "zia161/re-steemit-firstpost-20171231t163613548z", - "starangel/re-steemit-firstpost-20171231t171957452z", - "jaff8/re-steemit-firstpost-20180102t203545319z", - "johnesan/re-steemit-firstpost-20180103t065110954z", - "withgraham/re-steemit-firstpost-20180103t090821481z", - "gilnambatac/re-steemit-firstpost-20180106t162335199z", - "ebi16/re-steemit-firstpost-20180106t193603590z", - "gomain/re-steemit-firstpost-20180107t195854059z", - "mrskatie/re-steemit-firstpost-20180107t205748221z", - "improv/re-steemit-firstpost-20180108t213229597z", - "plainoldme/re-steemit-firstpost-20180109t120207874z", - "smilever12/re-steemit-firstpost-20180109t224952449z", - "kristenbruce/re-steemit-firstpost-20180110t095327457z", - "stuvi/re-steemit-firstpost-20180110t131747431z", - "tothemoonin2017/re-steemit-firstpost-20180111t033404296z", - "vickywiz/re-steemit-firstpost-20180111t053714270z", - "hunly/re-steemit-firstpost-20180113t140005408z", - "gratefulayn/re-steemit-firstpost-20180114t142356015z", - "suresheee/re-steemit-firstpost-20180115t061632819z", - "sweetorange/re-steemit-firstpost-20180115t063310301z", - "oraclefrequency/re-steemit-firstpost-20180116t004211313z", - "qscheffer/re-steemit-firstpost-20180117t135451396z", - "siersod/re-steemit-firstpost-20180117t152138749z", - "abusaleh/re-steemit-firstpost-20180117t154220577z", - "thepassenger/re-steemit-firstpost-20180119t000400807z", - "rksumanthraju/re-steemit-firstpost-20180119t045007513z", - "dirtyhippie/re-steemit-firstpost-20180120t050024573z", - "bwashington1/re-steemit-firstpost-20180120t082229739z", - "raterlabs/re-steemit-firstpost-20180120t200113737z", - "yasirsohail196/re-steemit-firstpost-20180121t072845412z", - "imchandansah/re-steemit-firstpost-20180122t112919676z", - "mahsabmirza/re-steemit-firstpost-20180128t161211537z", - "jobindonesia/re-steemit-firstpost-20180129t025737462z", - "tryword/re-steemit-firstpost-20180129t231805308z", - "cryptoaltcoin/re-steemit-firstpost-20180131t211925372z", - "fatimamortada/re-steemit-firstpost-20180201t012152343z", - "clumsysilverdad/re-steemit-firstpost-20180202t230332954z", - "bangrully/re-steemit-firstpost-20180203t025920037z", - "fbslo/re-steemit-firstpost-20180203t174523045z", - "juicyvegandwarf/re-steemit-firstpost-20180205t011531738z", - "uripsurya/re-steemit-firstpost-20180205t130906092z", - "ainsleyjo1952/re-steemit-firstpost-20180205t212206587z", - "moeenali/re-steemit-firstpost-20180207t160328782z", - "mburakolgun/re-steemit-firstpost-20180208t150509648z", - "aminul7/re-steemit-firstpost-20180209t052633133z", - "julybrave/re-steemit-firstpost-20180210t063636822z", - "rdvn/re-steemit-firstpost-20180210t151408537z", - "alexcozzy/re-steemit-firstpost-20180210t193558358z", - "pyro0816/re-steemit-firstpost-20180212t120027763z", - "debart/re-steemit-firstpost-20180212t134609402z", - "chaseburnett/re-steemit-firstpost-20180213t001454596z", - "cliffblank/re-steemit-firstpost-20180213t002542693z", - "salda/re-steemit-firstpost-20180214t094057265z", - "tharookie/re-steemit-firstpost-20180214t185651863z", - "ohrak22/re-steemit-firstpost-20180215t053742695z", - "movement19/re-steemit-firstpost-20180218t232705428z", - "jesusj1/re-steemit-firstpost-20180219t060135882z", - "cryptoscout/re-steemit-firstpost-20180220t082425531z", - "lavidaesunviaje/re-steemit-firstpost-20180221t145554408z", - "thethor1122/re-steemit-firstpost-20180223t162410080z", - "dtubix/re-firstpost-53", - "pwangdu/re-steemit-firstpost-1519460238570td3d0a265-554a-4cec-9a2f-4bfc4ddaf44euid", - "splendorhub/re-steemit-firstpost-20180225t015256519z", - "sathyasankar/re-steemit-firstpost-20180225t071734653z", - "official-mo/re-steemit-firstpost-20180225t142313738z", - "sangdiyus/re-steemit-firstpost-20180226t160058891z", - "mazyar/re-steemit-firstpost-20180226t210930550z", - "oregontravel/re-steemit-firstpost-20180227t081732054z", - "syedumair/re-steemit-firstpost-20180227t182207249z", - "stepanh/re-steemit-firstpost-20180228t231151919z", - "lartist-zen/re-steemit-firstpost-20180301t094304415z", - "akankah/re-steemit-firstpost-20180303t075321674z", - "dan321/re-steemit-firstpost-20180304t110205518z", - "anandasungkar/re-steemit-firstpost-20180304t184305461z", - "sisirhasan/re-steemit-firstpost-20180306t094207468z", - "trapve/re-steemit-firstpost-20180306t162905708z", - "learnandteach01/re-steemit-firstpost-20180308t203349570z", - "dynamicrypto/re-steemit-firstpost-20180312t183758619z", - "dynamicrypto/re-steemit-firstpost-20180313t214505560z", - "marekkaminski/re-steemit-firstpost-20180331t141050263z", - "eljose27/re-steemit-firstpost-20180331t143633851z", - "nurmasyithah/re-steemit-firstpost-20180331t172425587z", - "medusade/re-steemit-firstpost-20180405t170316967z", - "emjoe/re-steemit-firstpost-20180409t120039258z", - "junedd/re-steemit-firstpost-20180411t105927724z", - "riezaldi/re-steemit-firstpost-20180411t205519750z", - "hatu/re-steemit-firstpost-20180411t152605635z", - "emmywell/re-steemit-firstpost-20180413t015120739z", - "starfinger13/re-steemit-firstpost-20180413t023524112z", - "joyvancouver/re-steemit-firstpost-20180413t065458896z", - "conscalisthenics/re-steemit-firstpost-20180414t021254524z", - "princeemmanuel/re-steemit-firstpost-20180414t080010152z", - "kandywriter/re-steemit-firstpost-20180415t225507938z", - "jazzresin/re-steemit-firstpost-20180426t063924532z", - "abidhp/re-steemit-firstpost-20180427t153249315z", - "mkucukbekmez/re-steemit-firstpost-20180505t044835104z", - "cryptonegocios/re-steemit-firstpost-20180507t174657616z", - "bien/re-steemit-firstpost-20180518t023359659z", - "sutter/re-steemit-firstpost-20180518t035020663z", - "cookntell/re-steemit-firstpost-20180520t105636268z", - "alfredolopez1980/re-steemit-firstpost-20180520t222434698z", - "mahmudulhassan/re-steemit-firstpost-20180521t131958921z", - "ritikagupta/re-steemit-firstpost-20180522t061131493z", - "biophil/re-steemit-firstpost-20180523t031530422z", - "shadowolfdg/re-steemit-firstpost-20180525t054645178z", - "iqra.naz/re-steemit-firstpost-20180525t192106026z", - "shabbirahmad/re-steemit-firstpost-20180526t084436856z", - "sathyasankar/re-steemit-firstpost-20180531t175346873z", - "netizens/re-steemit-firstpost-20180604t045855195z", - "tsnaks/re-steemit-firstpost-20180604t143850288z", - "hazem91/re-steemit-firstpost-20180613t160430735z", - "oraclefrequency/re-steemit-firstpost-20180615t081110205z", - "layra/re-steemit-firstpost-20180620t023240325z", - "azizbd/re-steemit-firstpost-20180626t203416280z", - "samsonite18654/re-steemit-firstpost-20180628t150144993z", - "venkatesh15921/re-steemit-firstpost-20180707t045636127z", - "gochilambert/re-steemit-firstpost-20180709t193214537z", - "sathyasankar/re-steemit-firstpost-20180718t114328279z", - "rrs007/re-steemit-firstpost-20180728t115653831z", - "rrs007/re-steemit-firstpost-20180728t120229680z", - "keistee/re-steemit-firstpost-20180729t143630570z", - "dynamicrypto/re-steemit-firstpost-20180731t223557568z", - "nithin7237/re-steemit-firstpost-20180830t173842541z", - "krevasilis/re-steemit-firstpost-20180902t093021830z", - "gonewithwind/re-steemit-firstpost-20180902t202911783z", - "adilvakhri/re-steemit-firstpost-20180908t052715204z", - "ancgci/ancgci-re-steemit-firstpost-20181015t004843528z", - "teamslovenia/komentar-teamslovenia-firstpost", - "irak/re-steemit-firstpost-20181217t175620092z", - "devkapoor423/devkapoor423-re-steemit-firstpost-20190104t114948233z", - "f21steem/re-steemit-2019121t102528140z", - "pavonj/re-steemit-firstpost-20190323t141141263z", - "steemitboard/steemitboard-notify-steemit-20190324t171311000z", - "steemitboard/steemitboard-notify-steemit-20190324t184923000z", - "jacuzzi/re-steemit-firstpost-20190329t233116293z", - "chirstonawba/chirstonawba-re-steemit-firstpost-20190408t011441217z", - "sagaing/sagaing-re-steemit-firstpost-20190409t132907405z", - "menkarbit/re-steemit-firstpost-20190522t025639257z", - "joearnold/ps8dww", - "amycox/psuyrv", - "nickyhavey/nickyhavey-re-steemit-firstpost-20190719t091238925z", - "stealthtrader/pypq0x", - "rikyu/rikyu-re-steemit-firstpost-20191029t114433099z", - "pfunk/q5nv3k", - "liberosist/q5pe3l", - "deanliu/q7jdug" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 92 - }, - "title": "Welcome to Steem!", - "updated": "2016-03-30T18:30:18", - "url": "/meta/@steemit/firstpost" + "jack8831/re-steemit-firstpost-20160824t093007335z": { + "active_votes": [], + "author": "jack8831", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "You support fantastic system now!", + "category": "meta", + "children": 0, + "created": "2016-08-24T09:30:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160824t093007335z", + "post_id": 729186, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-24T09:30:03", + "url": "/meta/@steemit/firstpost#@jack8831/re-steemit-firstpost-20160824t093007335z" }, - "steemitboard/steemitboard-notify-steemit-20190324t171311000z": { - "active_votes": [ - { - "rshares": "255844932", - "voter": "speda" - }, - { - "rshares": "6528374329", - "voter": "ana-maria" - }, - { - "rshares": "28340259", - "voter": "instantcoin" - }, - { - "rshares": "224757350", - "voter": "muzzlealem" - }, - { - "rshares": "77958074", - "voter": "rsmartt777" - }, - { - "rshares": "449103849", - "voter": "smilefalse" - } - ], - "author": "steemitboard", - "author_payout_value": "0.000 HBD", - "author_reputation": 66.32, - "beneficiaries": [], - "blacklists": [], - "body": "Congratulations @steemit! You received a personal award!\n\n
https://steemitimages.com/70x70/http://steemitboard.com/@steemit/birthday2.pngHappy Birthday! - You are on the Steem blockchain for 3 years!
\n\n_You can view [your badges on your Steem Board](https://steemitboard.com/@steemit) and compare to others on the [Steem Ranking](http://steemitboard.com/ranking/index.php?name=steemit)_\n\n\n**Do not miss the last post from @steemitboard:**\n
Happy Birthday! The Steem blockchain is running for 3 years.
\n\n###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!", - "category": "meta", - "children": 0, - "created": "2019-03-24T17:13:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "image": [ - "https://steemitboard.com/img/notify.png" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 7564378793, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-03-31T17:13:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "steemitboard-notify-steemit-20190324t171311000z", - "post_id": 71971457, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 6 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-03-24T17:13:12", - "url": "/meta/@steemit/firstpost#@steemitboard/steemitboard-notify-steemit-20190324t171311000z" + "jelloducky/re-steemit-firstpost-20160807t215340468z": { + "active_votes": [ + { + "rshares": "90409341", + "voter": "jelloducky" + }, + { + "rshares": "58727187", + "voter": "rezrez" + } + ], + "author": "jelloducky", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "This platform is inspiring, thank you so much!", + "category": "meta", + "children": 0, + "created": "2016-08-07T21:53:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 149136528, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160807t215340468z", + "post_id": 498164, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-07T21:53:39", + "url": "/meta/@steemit/firstpost#@jelloducky/re-steemit-firstpost-20160807t215340468z" }, - "steemitboard/steemitboard-notify-steemit-20190324t184923000z": { - "active_votes": [ - { - "rshares": "253840582", - "voter": "speda" - }, - { - "rshares": "6562550993", - "voter": "ana-maria" - }, - { - "rshares": "26537180", - "voter": "instantcoin" - }, - { - "rshares": "226026462", - "voter": "muzzlealem" - }, - { - "rshares": "78092666", - "voter": "rsmartt777" - }, - { - "rshares": "447726461", - "voter": "smilefalse" - } - ], - "author": "steemitboard", - "author_payout_value": "0.000 HBD", - "author_reputation": 66.32, - "beneficiaries": [], - "blacklists": [], - "body": "Congratulations @steemit! You received a personal award!\n\n
https://steemitimages.com/70x70/http://steemitboard.com/@steemit/birthday3.pngHappy Birthday! - You are on the Steem blockchain for 3 years!
\n\n_You can view [your badges on your Steem Board](https://steemitboard.com/@steemit) and compare to others on the [Steem Ranking](http://steemitboard.com/ranking/index.php?name=steemit)_\n\n\n**Do not miss the last post from @steemitboard:**\n
Happy Birthday! The Steem blockchain is running for 3 years.
\n\n###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!", - "category": "meta", - "children": 0, - "created": "2019-03-24T18:49:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "image": [ - "https://steemitboard.com/img/notify.png" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 7594774344, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-03-31T18:49:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "steemitboard-notify-steemit-20190324t184923000z", - "post_id": 71974445, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 6 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-03-24T18:49:24", - "url": "/meta/@steemit/firstpost#@steemitboard/steemitboard-notify-steemit-20190324t184923000z" + "jennamarbles/re-steemit-firstpost-20160719t210752086z": { + "active_votes": [ + { + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "rshares": "732150442", + "voter": "artific" + }, + { + "rshares": "17012406247", + "voter": "jennamarbles" + }, + { + "rshares": "66705408", + "voter": "hipsterjesus" + }, + { + "rshares": "51109965", + "voter": "f1111111" + } + ], + "author": "jennamarbles", + "author_payout_value": "0.024 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Hello @steemit, I'm asking you to support my idea, in a new development STEEM. It will attract tens of thousands of people: https://steemit.com/openheart/@jennamarbles/first-steem-crowdfunding-we-can-make-this-world-better", + "category": "meta", + "children": 0, + "created": "2016-07-19T21:07:48", + "curator_payout_value": "0.003 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "links": [ + "https://steemit.com/openheart/@jennamarbles/first-steem-crowdfunding-we-can-make-this-world-better" + ], + "tags": [ + "meta" + ], + "users": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 18569578234, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.027, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160719t210752086z", + "post_id": 145129, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 5 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T08:35:21", + "url": "/meta/@steemit/firstpost#@jennamarbles/re-steemit-firstpost-20160719t210752086z" }, - "steemitjp/re-steemit-firstpost-20170711t065057709z": { - "active_votes": [], - "author": "steemitjp", - "author_payout_value": "0.000 HBD", - "author_reputation": 72.69, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you for your post and guiding for steemit. I want to boost steemit community in Japan. Regards David", - "category": "meta", - "children": 0, - "created": "2017-07-11T06:50:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-18T06:50:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170711t065057709z", - "post_id": 6826807, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-11T06:50:57", - "url": "/meta/@steemit/firstpost#@steemitjp/re-steemit-firstpost-20170711t065057709z" + "kamvreto/re-steemit-firstpost-20160722t225246211z": { + "active_votes": [ + { + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "rshares": "167168344", + "voter": "yarike" + }, + { + "rshares": "35874847", + "voter": "pr3ttyp3rf3ct" + } + ], + "author": "kamvreto", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "happy steeming all !!", + "category": "meta", + "children": 0, + "created": "2016-07-22T22:53:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 595502250, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160722t225246211z", + "post_id": 206329, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-22T22:53:18", + "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160722t225246211z" }, - "steemitph/re-steemit-firstpost-20171001t113800160z": { - "active_votes": [], - "author": "steemitph", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.85, - "beneficiaries": [], - "blacklists": [], - "body": "Creating an environment infused with love is extremely important in both community building and healthy social interaction. Those two are the main advocacy of Steem, so without even talking about love, it is the currency that supports spreading love throughout the internet, throughout the world. Steem is the currency of love.", - "category": "meta", - "children": 0, - "created": "2017-10-01T11:38:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-08T11:38:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171001t113800160z", - "post_id": 14231902, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-01T11:38:03", - "url": "/meta/@steemit/firstpost#@steemitph/re-steemit-firstpost-20171001t113800160z" + "kamvreto/re-steemit-firstpost-20160725t221949749z": { + "active_votes": [ + { + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "rshares": "348852497", + "voter": "kamvreto" + }, + { + "rshares": "247328995", + "voter": "adinda" + } + ], + "author": "kamvreto", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "old post, starting the steemit like today.\nmy quote of the day \"Anyone can sell their STEEM for cash or vest it to boost their voting power.\"", + "category": "meta", + "children": 0, + "created": "2016-07-25T22:20:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 977987362, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160725t221949749z", + "post_id": 259905, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-25T22:20:24", + "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160725t221949749z" }, - "steemplus-bot/re-steemit-firstpost-20180620t023240325z-re-welcome-to-steemplus": { - "active_votes": [ - { - "rshares": "266596927", - "voter": "layra" - } - ], - "author": "steemplus-bot", - "author_payout_value": "0.000 HBD", - "author_reputation": 8.83, - "beneficiaries": [], - "blacklists": [], - "body": "#### Welcome to Steem, @layra!\n\nI am a bot coded by the SteemPlus team to help you make the best of your experience on the Steem Blockchain!\nSteemPlus is a Chrome, Opera and Firefox extension that adds tons of features on Steemit.\nIt helps you see the real value of your account, who mentionned you, the value of the votes received, a filtered and sorted feed and much more! All of this in a fast and secure way.\nTo see why **2920 Steemians** use SteemPlus, [install our extension](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en), read the [documentation](https://github.com/stoodkev/SteemPlus/blob/master/README.md) or the latest release : [SteemPlus 2.17.4 : Two new features on Busy and bug fixes](/utopian-io/@steem-plus/steemplus-2-17-4-two-new-features-on-busy-and-bug-fixes).\n", - "category": "meta", - "children": 1, - "created": "2018-06-20T02:52:24", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 266596927, - "parent_author": "layra", - "parent_permlink": "re-steemit-firstpost-20180620t023240325z", - "payout": 0.0, - "payout_at": "2018-06-27T02:52:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180620t023240325z-re-welcome-to-steemplus", - "post_id": 53625752, - "promoted": "0.000 HBD", - "replies": [ - "layra/re-steemplus-bot-re-steemit-firstpost-re-welcome-to-steemplus-20180620t225310780z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T06:29:39", - "url": "/meta/@steemit/firstpost#@steemplus-bot/re-steemit-firstpost-20180620t023240325z-re-welcome-to-steemplus" + "kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z": { + "active_votes": [ + { + "rshares": "707206172", + "voter": "patrick-g" + } + ], + "author": "kewpiedoll", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "we are. @steemit was the OP. @ned flagged it.", + "category": "meta", + "children": 0, + "created": "2016-07-21T14:02:21", + "curator_payout_value": "0.000 HBD", + "depth": 5, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ], + "users": [ + "steemit", + "ned" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 707206172, + "parent_author": "intelliguy", + "parent_permlink": "re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z", + "post_id": 180004, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T14:02:21", + "url": "/meta/@steemit/firstpost#@kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z" }, - "steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z": { - "active_votes": [ - { - "rshares": "724886327", - "voter": "patrick-g" - } - ], - "author": "steemuwe", - "author_payout_value": "0.000 HBD", - "author_reputation": 54.45, - "beneficiaries": [], - "blacklists": [], - "body": "Bittrex is not a user - it's an exchange platform: **https://steemit.com/bittrex/@bittrex-richie/a-little-history-of-bittrex-com-how-it-all-started**\n\nhttps://bittrex.com/", - "category": "meta", - "children": 0, - "created": "2016-07-20T18:36:24", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "links": [ - "https://steemit.com/bittrex/@bittrex-richie/a-little-history-of-bittrex-com-how-it-all-started**" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 724886327, - "parent_author": "gopher", - "parent_permlink": "re-steemit-firstpost-20160718t195806340z", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-gopher-re-steemit-firstpost-20160720t183548381z", - "post_id": 163863, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-20T18:36:24", - "url": "/meta/@steemit/firstpost#@steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z" + "kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z": { + "active_votes": [ + { + "rshares": "707206172", + "voter": "patrick-g" + } + ], + "author": "kewpiedoll", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "@steemit is not a \"user,\" it's the actual site itself. and this was the premier post akin to Satoshi's white paper. [See here](http://steemwhales.com/). I just thought it was odd the CEO would downvote the launch of the site he's CEO of.", + "category": "meta", + "children": 2, + "created": "2016-07-21T05:28:21", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "is_paidout": true, + "json_metadata": { + "links": [ + "http://steemwhales.com/" + ], + "tags": [ + "meta" + ], + "users": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 707206172, + "parent_author": "intelliguy", + "parent_permlink": "re-kewpiedoll-re-steemit-firstpost-20160720t215823622z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z", + "post_id": 173754, + "promoted": "0.000 HBD", + "replies": [ + "intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T05:28:21", + "url": "/meta/@steemit/firstpost#@kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z" }, - "stepanh/re-steemit-firstpost-20180228t231151919z": { - "active_votes": [ - { - "rshares": "52748693", - "voter": "rosynesn" - }, - { - "rshares": "181010594", - "voter": "saqibmushtaq" - } - ], - "author": "stepanh", - "author_payout_value": "0.000 HBD", - "author_reputation": 35.98, - "beneficiaries": [], - "blacklists": [], - "body": "Welcome me!\n\nAny forex traders interested in technical analysis? _(Check out my blog \ud83d\ude4f)_", - "category": "meta", - "children": 0, - "created": "2018-02-28T23:11:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 233759287, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-07T23:11:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180228t231151919z", - "post_id": 35878655, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-28T23:11:51", - "url": "/meta/@steemit/firstpost#@stepanh/re-steemit-firstpost-20180228t231151919z" + "kewpiedoll/re-steemit-firstpost-20160720t210201326z": { + "active_votes": [ + { + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "rshares": "231619534", + "voter": "eggstraordinair" + }, + { + "rshares": "123321995", + "voter": "allmonitors" + } + ], + "author": "kewpiedoll", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Why did @ned flag this post?", + "category": "meta", + "children": 4, + "created": "2016-07-20T21:01:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ], + "users": [ + "ned" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1062147701, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160720t210201326z", + "post_id": 166558, + "promoted": "0.000 HBD", + "replies": [ + "intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T21:01:54", + "url": "/meta/@steemit/firstpost#@kewpiedoll/re-steemit-firstpost-20160720t210201326z" }, - "strateg/re-edbriv-re-steemit-firstpost-20170517t202319969z": { - "active_votes": [ - { - "rshares": "0", - "voter": "brucebrownftw" - } - ], - "author": "strateg", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.34, - "beneficiaries": [], - "blacklists": [], - "body": "Yeah!", - "category": "meta", - "children": 0, - "created": "2017-05-17T20:18:27", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "edbriv", - "parent_permlink": "re-steemit-firstpost-20160801t184846033z", - "payout": 0.0, - "payout_at": "2017-05-24T20:18:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-edbriv-re-steemit-firstpost-20170517t202319969z", - "post_id": 2812009, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-05-17T20:18:27", - "url": "/meta/@steemit/firstpost#@strateg/re-edbriv-re-steemit-firstpost-20170517t202319969z" + "kingtylervvs/re-admin-firstpost-20160717t193811098z": { + "active_votes": [ + { + "rshares": "742566481", + "voter": "patrick-g" + } + ], + "author": "kingtylervvs", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "PARTY PARTY.... P - A - R - T - Y????? BECAUSE I GOTTA!", + "category": "meta", + "children": 0, + "created": "2016-07-17T19:38:12", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 742566481, + "parent_author": "admin", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-admin-firstpost-20160717t193811098z", + "post_id": 110463, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-17T19:38:12", + "url": "/meta/@steemit/firstpost#@kingtylervvs/re-admin-firstpost-20160717t193811098z" }, - "strateg/re-kingtylervvs-re-steemit-firstpost-20170517t202248492z": { - "active_votes": [], - "author": "strateg", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.34, - "beneficiaries": [], - "blacklists": [], - "body": "I love this! :)", - "category": "meta", - "children": 0, - "created": "2017-05-17T20:17:54", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "kingtylervvs", - "parent_permlink": "re-steemit-firstpost-20160720t121101482z", - "payout": 0.0, - "payout_at": "2017-05-24T20:17:54", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-kingtylervvs-re-steemit-firstpost-20170517t202248492z", - "post_id": 2811996, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-05-17T20:17:54", - "url": "/meta/@steemit/firstpost#@strateg/re-kingtylervvs-re-steemit-firstpost-20170517t202248492z" + "kingtylervvs/re-steemit-firstpost-20160720t121101482z": { + "active_votes": [ + { + "rshares": "25204741266", + "voter": "justtryme90" + }, + { + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "rshares": "226074637", + "voter": "artjedi" + }, + { + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "kingtylervvs", + "author_payout_value": "0.039 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Thank you for posting. We all LOVE steem!\n\nI up-voted you too... BTW, should steemit let us steemers advertise using steem? Be sure to tell everyone you know to come vote here at: https://steemit.com/steemit/@kingtylervvs/if-steemit-ever-does-decide-to-advertise-there-is-only-1-way-it-could-work-in-my-opinion-debate\n\nThis is a democratic community decision.
\n\n", + "category": "meta", + "children": 1, + "created": "2016-07-20T12:11:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://www.animatedimages.org/data/media/75/animated-train-image-0018.gif", + "http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif", + "https://steem.io/images/steem.png" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 26190175100, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.039, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160720t121101482z", + "post_id": 157998, + "promoted": "0.000 HBD", + "replies": [ + "yonuts/re-kingtylervvs-re-steemit-firstpost-20160729t180621248z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T12:11:00", + "url": "/meta/@steemit/firstpost#@kingtylervvs/re-steemit-firstpost-20160720t121101482z" }, - "stuvi/re-steemit-firstpost-20180110t131747431z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "stuvi", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.34, - "beneficiaries": [], - "blacklists": [], - "body": "Hi @Steemit. \n\nIm trying (as many venezuelans) to become a whale. being a whale for venezuelans right now is a great opportuniy to help people. Or even if is not me, here in #steemit there should be an employment hashtag.. \n\nWe can pay for better policeman, pay for cleaning the streets, Even pay for better education. Right now in venezuela 1SBD is half a salary. \n\nAnd yes, this could work for another places but right now i only know people that can be helped in Venezuela. This is a really powerfull toll. \n\nwith great power comes great responsibility (Ben Parker).. \n\nPS. let me know if you see this to post my plan on how to take the most of steemit and help others..", - "category": "meta", - "children": 0, - "created": "2018-01-10T13:17:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta", - "steemit" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-17T13:17:45", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180110t131747431z", - "post_id": 24790427, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-10T13:17:45", - "url": "/meta/@steemit/firstpost#@stuvi/re-steemit-firstpost-20180110t131747431z" + "lenerdie/re-steemit-firstpost-20160726t035056026z": { + "active_votes": [], + "author": "lenerdie", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Let's get crazy! happy steemit to everybody!", + "category": "meta", + "children": 0, + "created": "2016-07-26T03:50:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160726t035056026z", + "post_id": 264501, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-26T03:50:57", + "url": "/meta/@steemit/firstpost#@lenerdie/re-steemit-firstpost-20160726t035056026z" }, - "suresheee/re-steemit-firstpost-20180115t061632819z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "suresheee", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.58, - "beneficiaries": [], - "blacklists": [], - "body": "yeah its really amazing site. I love you steemit!", - "category": "meta", - "children": 0, - "created": "2018-01-15T06:16:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-22T06:16:36", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180115t061632819z", - "post_id": 25768732, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-15T06:16:36", - "url": "/meta/@steemit/firstpost#@suresheee/re-steemit-firstpost-20180115t061632819z" + "patrick-g/re-steemit-firstpost-20160722t201007967z": { + "active_votes": [ + { + "rshares": "689526018", + "voter": "patrick-g" + }, + { + "rshares": "46092586", + "voter": "matt876" + }, + { + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "patrick-g", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "You can also vote on your posts if you want.:) As in when you reply to other posts. Those are posts you can vote yourself up on.... :)", + "category": "meta", + "children": 0, + "created": "2016-07-22T20:10:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 787771629, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160722t201007967z", + "post_id": 203716, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-22T20:10:09", + "url": "/meta/@steemit/firstpost#@patrick-g/re-steemit-firstpost-20160722t201007967z" }, - "sutter/re-ackza-re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t184220108z": { - "active_votes": [], - "author": "sutter", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.84, - "beneficiaries": [], - "blacklists": [], - "body": "Nice concept. The Umbrella could have some branding and the back of the T-shirt too.", - "category": "meta", - "children": 0, - "created": "2018-07-02T18:42:21", - "curator_payout_value": "0.000 HBD", - "depth": 5, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "ackza", - "parent_permlink": "re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t091545296z", - "payout": 0.0, - "payout_at": "2018-07-09T18:42:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-ackza-re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t184220108z", - "post_id": 55192910, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-02T18:42:21", - "url": "/meta/@steemit/firstpost#@sutter/re-ackza-re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t184220108z" + "proskynneo/steemit-firstpost-1": { + "active_votes": [ + { + "rshares": "375241", + "voter": "dantheman" + }, + { + "rshares": "2213400", + "voter": "proskynneo" + }, + { + "rshares": "936400", + "voter": "ned" + }, + { + "rshares": "0", + "voter": "murh" + }, + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "58854897335", + "voter": "business" + }, + { + "rshares": "239342379", + "voter": "kewpiedoll" + }, + { + "rshares": "52153025", + "voter": "f1111111" + }, + { + "rshares": "0", + "voter": "naumovich" + } + ], + "author": "proskynneo", + "author_payout_value": "1.058 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", + "category": "meta", + "children": 0, + "created": "2016-03-31T13:54:33", + "curator_payout_value": "1.059 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 59892484261, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 2.117, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-1", + "post_id": 3, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 7 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-03-31T13:54:33", + "url": "/meta/@steemit/firstpost#@proskynneo/steemit-firstpost-1" }, - "sutter/re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035133909z": { - "active_votes": [ - { - "rshares": "0", - "voter": "boomshikha" - }, - { - "rshares": "165458320", - "voter": "sutter" - } - ], - "author": "sutter", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.84, - "beneficiaries": [], - "blacklists": [], - "body": "This is great isn't it!", - "category": "meta", - "children": 2, - "created": "2018-05-18T03:51:33", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 165458320, - "parent_author": "boomshikha", - "parent_permlink": "re-stackin-re-steemit-firstpost-20170825t013613361z", - "payout": 0.0, - "payout_at": "2018-05-25T03:51:33", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035133909z", - "post_id": 49083583, - "promoted": "0.000 HBD", - "replies": [ - "ackza/re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t091545296z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-18T03:51:33", - "url": "/meta/@steemit/firstpost#@sutter/re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035133909z" + "red/steemit-firstpost-2": { + "active_votes": [ + { + "rshares": "-376603", + "voter": "dantheman" + }, + { + "rshares": "903854", + "voter": "mr11acdee" + }, + { + "rshares": "1441", + "voter": "red" + }, + { + "rshares": "23446", + "voter": "xeroc" + }, + { + "rshares": "724886327", + "voter": "patrick-g" + }, + { + "rshares": "60031995282", + "voter": "business" + }, + { + "rshares": "71498008", + "voter": "madhatting" + }, + { + "rshares": "64967241", + "voter": "staceyjatkinson" + }, + { + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "red", + "author_payout_value": "0.100 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Did you know you can earn STEEM by commenting on posts?", + "category": "meta", + "children": 2, + "created": "2016-04-06T19:22:42", + "curator_payout_value": "0.100 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 60946052021, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.2, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-2", + "post_id": 4, + "promoted": "0.000 HBD", + "replies": [ + "steem-id/re-red-steemit-firstpost-2", + "business/re-red-steemit-firstpost-2-20160713t083846149z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 9 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-04-06T19:22:42", + "url": "/meta/@steemit/firstpost#@red/steemit-firstpost-2" }, - "sutter/re-mominsdt-re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035208159z": { - "active_votes": [ - { - "rshares": "159943043", - "voter": "sutter" - } - ], - "author": "sutter", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.84, - "beneficiaries": [], - "blacklists": [], - "body": "That would be fantastic! https://DLive.io celebrity would be fun!", - "category": "meta", - "children": 0, - "created": "2018-05-18T03:52:09", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://DLive.io" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 159943043, - "parent_author": "mominsdt", - "parent_permlink": "re-boomshikha-re-stackin-re-steemit-firstpost-20180204t150750239z", - "payout": 0.0, - "payout_at": "2018-05-25T03:52:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-mominsdt-re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035208159z", - "post_id": 49083649, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-18T03:52:09", - "url": "/meta/@steemit/firstpost#@sutter/re-mominsdt-re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035208159z" + "rednetkjh/re-steemit-firstpost-20160804t061605576z": { + "active_votes": [], + "author": "rednetkjh", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service", + "category": "meta", + "children": 0, + "created": "2016-08-04T06:16:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "links": [ + "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160804t061605576z", + "post_id": 440665, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-04T06:16:00", + "url": "/meta/@steemit/firstpost#@rednetkjh/re-steemit-firstpost-20160804t061605576z" }, - "sutter/re-stackin-re-steemit-firstpost-20180518t035057988z": { - "active_votes": [ - { - "rshares": "176488875", - "voter": "sutter" - } - ], - "author": "sutter", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.84, - "beneficiaries": [], - "blacklists": [], - "body": "I agree!", - "category": "meta", - "children": 0, - "created": "2018-05-18T03:50:57", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 176488875, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-05-25T03:50:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180518t035057988z", - "post_id": 49083522, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-18T03:50:57", - "url": "/meta/@steemit/firstpost#@sutter/re-stackin-re-steemit-firstpost-20180518t035057988z" + "rittr/re-steemit-firstpost-20160824t025355199z": { + "active_votes": [ + { + "rshares": "-75407549856", + "voter": "vault" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "57599604", + "voter": "abanks1000" + }, + { + "rshares": "54993432", + "voter": "landarin" + } + ], + "author": "rittr", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I am Comment **Number 35** on the first Steemit Poster evaaar!", + "category": "meta", + "children": 0, + "created": "2016-08-24T02:53:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -74429831049, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160824t025355199z", + "post_id": 726644, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 1.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-24T02:53:57", + "url": "/meta/@steemit/firstpost#@rittr/re-steemit-firstpost-20160824t025355199z" }, - "sutter/re-steemit-firstpost-20180518t035020663z": { - "active_votes": [ - { - "rshares": "176488875", - "voter": "sutter" - }, - { - "rshares": "54958635", - "voter": "neboyart" - } - ], - "author": "sutter", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.84, - "beneficiaries": [], - "blacklists": [], - "body": "I'm impressed by everything this site has to offer their users! Great press and great reactions of those whom have come to generate or curate content.", - "category": "meta", - "children": 0, - "created": "2018-05-18T03:50:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 231447510, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-05-25T03:50:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180518t035020663z", - "post_id": 49083443, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-18T03:50:21", - "url": "/meta/@steemit/firstpost#@sutter/re-steemit-firstpost-20180518t035020663z" + "sictransitgloria/re-steemit-firstpost-20160721t233702742z": { + "active_votes": [ + { + "rshares": "689526018", + "voter": "patrick-g" + } + ], + "author": "sictransitgloria", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Go Steem!", + "category": "meta", + "children": 0, + "created": "2016-07-21T23:37:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 689526018, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160721t233702742z", + "post_id": 189812, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T23:37:00", + "url": "/meta/@steemit/firstpost#@sictransitgloria/re-steemit-firstpost-20160721t233702742z" }, - "sweetorange/re-steemit-firstpost-20180115t063310301z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "sweetorange", - "author_payout_value": "0.000 HBD", - "author_reputation": 40.84, - "beneficiaries": [], - "blacklists": [], - "body": "I love Steemit and I have started playing with it for two weeks! Any suggestion to make my AC to be more popular to others? Or how should I contribute in boosting the spread of Steemit? : )", - "category": "meta", - "children": 0, - "created": "2018-01-15T06:33:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-22T06:33:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180115t063310301z", - "post_id": 25770786, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-15T06:33:09", - "url": "/meta/@steemit/firstpost#@sweetorange/re-steemit-firstpost-20180115t063310301z" + "steem-id/re-red-steemit-firstpost-2": { + "active_votes": [ + { + "rshares": "724886327", + "voter": "patrick-g" + } + ], + "author": "steem-id", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Can I get some :D", + "category": "meta", + "children": 0, + "created": "2016-04-13T03:48:36", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 724886327, + "parent_author": "red", + "parent_permlink": "steemit-firstpost-2", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-red-steemit-firstpost-2", + "post_id": 101, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-04-13T03:48:36", + "url": "/meta/@steemit/firstpost#@steem-id/re-red-steemit-firstpost-2" }, - "syedumair/re-steemit-firstpost-20171113t071852113z": { - "active_votes": [ - { - "rshares": "32991423113", - "voter": "umami" - }, - { - "rshares": "16921102717", - "voter": "lexiconical" - }, - { - "rshares": "22853336820", - "voter": "mirhimayun" - }, - { - "rshares": "2414098564", - "voter": "piyushkansal" - }, - { - "rshares": "81238167", - "voter": "kevca16" - } - ], - "author": "syedumair", - "author_payout_value": "0.123 HBD", - "author_reputation": 72.82, - "beneficiaries": [], - "blacklists": [], - "body": "How can this post be two years old when only steemit came into existence in march 2016", - "category": "meta", - "children": 0, - "created": "2017-11-13T07:18:57", - "curator_payout_value": "0.031 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + "steemit/firstpost": { + "active_votes": [ + { + "rshares": "375241", + "voter": "dantheman" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 75261199381, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.154, - "payout_at": "2017-11-20T07:18:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171113t071852113z", - "post_id": 17551058, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 5 + { + "rshares": "886132", + "voter": "mr11acdee" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-13T07:18:57", - "url": "/meta/@steemit/firstpost#@syedumair/re-steemit-firstpost-20171113t071852113z" - }, - "syedumair/re-steemit-firstpost-20171113t113417285z": { - "active_votes": [ - { - "rshares": "32991423113", - "voter": "umami" - }, - { - "rshares": "16921102717", - "voter": "lexiconical" - }, - { - "rshares": "22535929364", - "voter": "mirhimayun" - }, - { - "rshares": "2167761976", - "voter": "piyushkansal" - }, - { - "rshares": "70220672763", - "voter": "trlotto" - } - ], - "author": "syedumair", - "author_payout_value": "0.235 HBD", - "author_reputation": 72.82, - "beneficiaries": [], - "blacklists": [], - "body": "How am I getting auto votes on the comment I made here??", - "category": "meta", - "children": 0, - "created": "2017-11-13T11:34:21", - "curator_payout_value": "0.067 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "5100", + "voter": "steemit78" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 144836889933, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.302, - "payout_at": "2017-11-20T11:34:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171113t113417285z", - "post_id": 17566354, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 5 + { + "rshares": "1259167", + "voter": "anonymous" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-13T11:34:21", - "url": "/meta/@steemit/firstpost#@syedumair/re-steemit-firstpost-20171113t113417285z" - }, - "syedumair/re-steemit-firstpost-20180227t182207249z": { - "active_votes": [ - { - "rshares": "62065425", - "voter": "lexiconical" - }, - { - "rshares": "476041552", - "voter": "mirhimayun" - }, - { - "rshares": "3458687490", - "voter": "piyushkansal" - } - ], - "author": "syedumair", - "author_payout_value": "0.020 HBD", - "author_reputation": 72.82, - "beneficiaries": [], - "blacklists": [], - "body": "Does it still work!", - "category": "meta", - "children": 0, - "created": "2018-02-27T18:22:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "318519", + "voter": "hello" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3996794467, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.02, - "payout_at": "2018-03-06T18:22:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180227t182207249z", - "post_id": 35612461, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 + { + "rshares": "153384", + "voter": "world" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-27T18:22:09", - "url": "/meta/@steemit/firstpost#@syedumair/re-steemit-firstpost-20180227t182207249z" - }, - "talukder/re-isteemithard-re-steemit-firstpost-20171012t053418526z": { - "active_votes": [], - "author": "talukder", - "author_payout_value": "0.000 HBD", - "author_reputation": 22.83, - "beneficiaries": [], - "blacklists": [], - "body": "Upvoted.", - "category": "meta", - "children": 0, - "created": "2017-10-12T05:34:24", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "-936400", + "voter": "ned" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "isteemithard", - "parent_permlink": "re-steemit-firstpost-20171012t053312152z", - "payout": 0.0, - "payout_at": "2017-10-19T05:34:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-isteemithard-re-steemit-firstpost-20171012t053418526z", - "post_id": 15112525, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "59412", + "voter": "fufubar1" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-12T05:34:24", - "url": "/meta/@steemit/firstpost#@talukder/re-isteemithard-re-steemit-firstpost-20171012t053418526z" - }, - "tarunmewara/re-steemit-firstpost-20170624t114746528z": { - "active_votes": [], - "author": "tarunmewara", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.22, - "beneficiaries": [], - "blacklists": [], - "body": "I am glad to be here on this plateform :)))", - "category": "meta", - "children": 1, - "created": "2017-06-24T11:46:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "14997", + "voter": "anonymous1" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-01T11:46:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170624t114746528z", - "post_id": 4906952, - "promoted": "0.000 HBD", - "replies": [ - "inuk/re-tarunmewara-re-steemit-firstpost-20170624t123825509z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "1441", + "voter": "red" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-24T11:46:21", - "url": "/meta/@steemit/firstpost#@tarunmewara/re-steemit-firstpost-20170624t114746528z" - }, - "teamslovenia/komentar-teamslovenia-firstpost": { - "active_votes": [ - { - "rshares": "587510170", - "voter": "votes4minnows" - } - ], - "author": "teamslovenia", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.2, - "beneficiaries": [ - { - "account": "fbslo.pay", - "weight": 500 - } - ], - "blacklists": [], - "body": "@steemit, tvoja objava je dobila 100% upvote od @teamslovenia!

Kako dobiti upvote?

\u26ab Pridru\u017ei se nam v [Discord stre\u017eniku](https://discord.gg/j5qkY9j)!
\u26ab Uporabi TeamSlovenia upvote bot!

Kako lahko tudi ti pomaga\u0161, da bo @teamslovenia bot mo\u010dnej\u0161i?


\u26ab Delegiraj steem power - [50 SP](https://steemconnect.com/sign/delegate-vesting-shares?delegator=&delegatee=teamslovenia&vesting_shares=50%20SP) - [100 SP](https://steemconnect.com/sign/delegate-vesting-shares?delegator=&delegatee=teamslovenia&vesting_shares=100%20SP) - [500 SP](https://steemconnect.com/sign/delegate-vesting-shares?delegator=&delegatee=teamslovenia&vesting_shares=500%20SP) - [1000 SP](https://steemconnect.com/sign/delegate-vesting-shares?delegator=&delegatee=teamslovenia&vesting_shares=1000%20SP) - [Po \u017eelji](https://fbslo.net/tools/delegate.html)!
\u26ab Sledi upvotom od @teamslovenia - [Navodila](https://steemit.com/teamslovenia/@fbslo/teamslovenia-discord)


Ta projekt podpira Steem Witness @fbslo - [Glasuj zdaj](https://steemconnect.com/sign/account-witness-vote?account=&witness=fbslo&approve=true)!", - "category": "meta", - "children": 1, - "created": "2018-11-09T18:12:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "teamslovenia-discord-voter", - "tags": [ - "teamslovenia" - ] + { + "rshares": "551390835500", + "voter": "liondani" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 587510170, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-11-16T18:12:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 0, - "permlink": "komentar-teamslovenia-firstpost", - "post_id": 65763463, - "promoted": "0.000 HBD", - "replies": [ - "ashirkhan/re-teamslovenia-komentar-teamslovenia-firstpost-20181129t104734328z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "82748", + "voter": "roadscape" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-11-09T18:12:00", - "url": "/meta/@steemit/firstpost#@teamslovenia/komentar-teamslovenia-firstpost" - }, - "tharookie/re-steemit-firstpost-20180214t185651863z": { - "active_votes": [], - "author": "tharookie", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.05, - "beneficiaries": [], - "blacklists": [], - "body": "I feel like I am at a concert with a whole lot of people who I do not know, but we share the same passion. LOL", - "category": "meta", - "children": 0, - "created": "2018-02-14T18:56:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "10772", + "voter": "xeroc" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-21T18:56:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180214t185651863z", - "post_id": 32661246, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "7685088000", + "voter": "markopaasila" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-14T18:56:51", - "url": "/meta/@steemit/firstpost#@tharookie/re-steemit-firstpost-20180214t185651863z" - }, - "theafroguy/re-steemit-firstpost-20171223t213918039z": { - "active_votes": [ - { - "rshares": "1335482432", - "voter": "theafroguy" - }, - { - "rshares": "140145403", - "voter": "macodi1" - }, - { - "rshares": "236898200", - "voter": "kolaolabode" - } - ], - "author": "theafroguy", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.06, - "beneficiaries": [], - "blacklists": [], - "body": "So this is the first post which was written on Steemit?", - "category": "meta", - "children": 0, - "created": "2017-12-23T21:39:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "454510724", + "voter": "tshering-tamang" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1712526035, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-30T21:39:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171223t213918039z", - "post_id": 21681912, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 + { + "rshares": "681946946", + "voter": "romangelsi" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-23T21:39:21", - "url": "/meta/@steemit/firstpost#@theafroguy/re-steemit-firstpost-20171223t213918039z" - }, - "thecrytotrader/re-steemit-firstpost-20170925t095222457z": { - "active_votes": [ - { - "rshares": "3821565288", - "voter": "mrwalt" - }, - { - "rshares": "630264014", - "voter": "acid303techno" - } - ], - "author": "thecrytotrader", - "author_payout_value": "0.000 HBD", - "author_reputation": 70.3, - "beneficiaries": [], - "blacklists": [], - "body": "Love steeming a lot :)", - "category": "meta", - "children": 0, - "created": "2017-09-25T09:52:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "504895891", + "voter": "dedmatvey" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 4451829302, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-02T09:52:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170925t095222457z", - "post_id": 13708471, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 + { + "rshares": "498863058", + "voter": "joelinux" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-25T09:52:27", - "url": "/meta/@steemit/firstpost#@thecrytotrader/re-steemit-firstpost-20170925t095222457z" - }, - "thedrewshow/re-steemit-firstpost-20171208t005953936z": { - "active_votes": [ - { - "rshares": "664754180", - "voter": "thedrewshow" - } - ], - "author": "thedrewshow", - "author_payout_value": "0.000 HBD", - "author_reputation": 46.19, - "beneficiaries": [], - "blacklists": [], - "body": "I'm still trying to figure all of this out but I'm enjoying the process! Glad that this is even possible thanks to the day and age we live in.", - "category": "meta", - "children": 0, - "created": "2017-12-08T00:59:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "9590417", + "voter": "piranhax" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 664754180, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-15T00:59:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171208t005953936z", - "post_id": 19760791, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "473258270", + "voter": "ned-reddit-login" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-08T00:59:48", - "url": "/meta/@steemit/firstpost#@thedrewshow/re-steemit-firstpost-20171208t005953936z" - }, - "thepassenger/re-steemit-firstpost-20180119t000400807z": { - "active_votes": [ - { - "rshares": "515791928", - "voter": "gefa" - }, - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "thepassenger", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.96, - "beneficiaries": [], - "blacklists": [], - "body": "I anted to leave my message in this post for the eternety. 2 years later this is working! congrats @steemit and all the team, people and users behind!", - "category": "meta", - "children": 0, - "created": "2018-01-19T00:04:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] + { + "rshares": "0", + "voter": "fernando-sanz" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 515791928, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-26T00:04:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180119t000400807z", - "post_id": 26520850, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "425903066", + "voter": "gekko" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-19T00:04:03", - "url": "/meta/@steemit/firstpost#@thepassenger/re-steemit-firstpost-20180119t000400807z" - }, - "thephotoguide/re-diggerdugg-re-steemit-firstpost-20170706t212052448z": { - "active_votes": [], - "author": "thephotoguide", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.54, - "beneficiaries": [], - "blacklists": [], - "body": "sure, thanks!", - "category": "meta", - "children": 0, - "created": "2017-07-06T21:21:39", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "381805870", + "voter": "gilang-ramadhan" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "diggerdugg", - "parent_permlink": "re-steemit-firstpost-20170706t210051540z", - "payout": 0.0, - "payout_at": "2017-07-13T21:21:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-diggerdugg-re-steemit-firstpost-20170706t212052448z", - "post_id": 6379575, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "392459059", + "voter": "kamvreto" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-06T21:21:39", - "url": "/meta/@steemit/firstpost#@thephotoguide/re-diggerdugg-re-steemit-firstpost-20170706t212052448z" - }, - "thethor1122/re-steemit-firstpost-20180223t162410080z": { - "active_votes": [], - "author": "thethor1122", - "author_payout_value": "0.000 HBD", - "author_reputation": 59.14, - "beneficiaries": [], - "blacklists": [], - "body": "\ud83d\udccc I believe steemit will grow more than facebook. I realize the benefits that it gives the steemians, 1 day not far from steemit will be the world's largest network !\ud83d\udcaf\ud83d\udcaf\ud83d\udcaf", - "category": "meta", - "children": 0, - "created": "2018-02-23T16:24:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "422984262", + "voter": "acidyo" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-02T16:24:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180223t162410080z", - "post_id": 34734742, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "47179379651", + "voter": "tosch" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-23T16:24:09", - "url": "/meta/@steemit/firstpost#@thethor1122/re-steemit-firstpost-20180223t162410080z" - }, - "timcrypto/re-steemit-firstpost-20170705t172656778z": { - "active_votes": [ - { - "rshares": "1208429291", - "voter": "sagar-aman" - } - ], - "author": "timcrypto", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.53, - "beneficiaries": [], - "blacklists": [], - "body": "Great post @steemit \ud83d\ude03\nI love it here.\nI need 70million steempower soooo bad!!!!!", - "category": "meta", - "children": 0, - "created": "2017-07-05T17:26:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] + { + "rshares": "7831667988", + "voter": "klye" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1208429291, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-12T17:26:57", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170705t172656778z", - "post_id": 6249745, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "1019950749", + "voter": "coar" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-05T17:26:57", - "url": "/meta/@steemit/firstpost#@timcrypto/re-steemit-firstpost-20170705t172656778z" - }, - "tinoschloegl/re-steemit-firstpost-20171220t090303161z": { - "active_votes": [ - { - "rshares": "399176962", - "voter": "tinoschloegl" - }, - { - "rshares": "8732114998", - "voter": "tinowhale" - } - ], - "author": "tinoschloegl", - "author_payout_value": "0.044 HBD", - "author_reputation": 53.47, - "beneficiaries": [], - "blacklists": [], - "body": "Wow, I also want to be part of this historical post. :-D", - "category": "meta", - "children": 0, - "created": "2017-12-20T09:03:00", - "curator_payout_value": "0.009 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "1746058458", + "voter": "murh" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 9131291960, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.053, - "payout_at": "2017-12-27T09:03:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171220t090303161z", - "post_id": 21157844, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 + { + "rshares": "22639073725", + "voter": "drinkzya" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-20T09:03:00", - "url": "/meta/@steemit/firstpost#@tinoschloegl/re-steemit-firstpost-20171220t090303161z" - }, - "tony-duke/re-steemit-firstpost-20170831t204732502z": { - "active_votes": [], - "author": "tony-duke", - "author_payout_value": "0.000 HBD", - "author_reputation": 67.01, - "beneficiaries": [], - "blacklists": [], - "body": "Wow , steemit is really a great community, nice to be on steemit\ud83d\udc4d", - "category": "meta", - "children": 0, - "created": "2017-08-31T20:47:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "0", + "voter": "hien-tran" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-07T20:47:45", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170831t204732502z", - "post_id": 11605349, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "742566481", + "voter": "patrick-g" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-31T20:47:45", - "url": "/meta/@steemit/firstpost#@tony-duke/re-steemit-firstpost-20170831t204732502z" - }, - "topdollar001/re-stackin-re-steemit-firstpost-20180119t002117970z": { - "active_votes": [ - { - "rshares": "720342620", - "voter": "topdollar001" - }, - { - "rshares": "571459472", - "voter": "mikeduck" - } - ], - "author": "topdollar001", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.41, - "beneficiaries": [], - "blacklists": [], - "body": "U v made more in dis comment than i v on any post. \ud83d\ude27", - "category": "meta", - "children": 0, - "created": "2018-01-19T00:21:24", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "40624969", + "voter": "ben99" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1291802092, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-01-26T00:21:24", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180119t002117970z", - "post_id": 26523025, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 + { + "rshares": "1742755097", + "voter": "sunshinecrypto" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-19T00:21:24", - "url": "/meta/@steemit/firstpost#@topdollar001/re-stackin-re-steemit-firstpost-20180119t002117970z" - }, - "tothemoonin2017/re-mammasitta-re-steemit-firstpost-20180111t033524077z": { - "active_votes": [], - "author": "tothemoonin2017", - "author_payout_value": "0.000 HBD", - "author_reputation": 39.43, - "beneficiaries": [], - "blacklists": [], - "body": "you have my vote. hah", - "category": "meta", - "children": 0, - "created": "2018-01-11T03:35:27", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "108855472", + "voter": "kingtylervvs" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "mammasitta", - "parent_permlink": "re-steemit-firstpost-20170824t230822305z", - "payout": 0.0, - "payout_at": "2018-01-18T03:35:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-mammasitta-re-steemit-firstpost-20180111t033524077z", - "post_id": 24925101, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "485112237", + "voter": "marinabogumil" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-11T03:35:27", - "url": "/meta/@steemit/firstpost#@tothemoonin2017/re-mammasitta-re-steemit-firstpost-20180111t033524077z" - }, - "tothemoonin2017/re-steemit-firstpost-20180111t033404296z": { - "active_votes": [ - { - "rshares": "3041253655", - "voter": "estronitex" - }, - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "tothemoonin2017", - "author_payout_value": "0.021 HBD", - "author_reputation": 39.43, - "beneficiaries": [], - "blacklists": [], - "body": "Steem is amazing!! \ud83d\udcaf", - "category": "meta", - "children": 0, - "created": "2018-01-11T03:34:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "917398502", + "voter": "decrypt" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3041253655, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.021, - "payout_at": "2018-01-18T03:34:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180111t033404296z", - "post_id": 24924908, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "5067187498", + "voter": "senseiteekay" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-11T03:34:09", - "url": "/meta/@steemit/firstpost#@tothemoonin2017/re-steemit-firstpost-20180111t033404296z" - }, - "trailofwhales/re-steemit-firstpost-20170808t230208389z": { - "active_votes": [ - { - "rshares": "627780886", - "voter": "trailofwhales" - } - ], - "author": "trailofwhales", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.87, - "beneficiaries": [], - "blacklists": [], - "body": "@Steemit @Freedom @Steem @Dan @Ned @blocktrades\n\nDespite the account name, I am not whale. Wish I was but I am not. Hopefully someday when I do \n \n 100 Push-Ups\n 100 Sit-Ups\n 100 Squats\n 10KM Running \n\nEvery single day. I will probably become a whale.", - "category": "meta", - "children": 0, - "created": "2017-08-08T23:02:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "freedom", - "steem", - "dan", - "ned", - "blocktrades" - ] + { + "rshares": "5154897955", + "voter": "r33drum" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 627780886, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-15T23:02:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170808t230208389z", - "post_id": 9616377, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "5033902237", + "voter": "cryptosi" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-08T23:02:06", - "url": "/meta/@steemit/firstpost#@trailofwhales/re-steemit-firstpost-20170808t230208389z" - }, - "trapve/re-steemit-firstpost-20180306t162905708z": { - "active_votes": [], - "author": "trapve", - "author_payout_value": "0.000 HBD", - "author_reputation": 26.47, - "beneficiaries": [], - "blacklists": [], - "body": "this platform it's just fantastic!", - "category": "meta", - "children": 0, - "created": "2018-03-06T16:29:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "1037079223", + "voter": "condra" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-13T16:29:06", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180306t162905708z", - "post_id": 37073328, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "233032838", + "voter": "jearson" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-06T16:29:06", - "url": "/meta/@steemit/firstpost#@trapve/re-steemit-firstpost-20180306t162905708z" - }, - "trys10k/re-steemit-firstpost-20170611t044200263z": { - "active_votes": [ - { - "rshares": "12805237447", - "voter": "dimimp" - }, - { - "rshares": "2146737279", - "voter": "trys10k" - } - ], - "author": "trys10k", - "author_payout_value": "0.040 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Dude send me 2000 steem, sharing is caring and I'll push this company til the end. \n\nGodbless.", - "category": "meta", - "children": 0, - "created": "2017-06-11T04:42:03", - "curator_payout_value": "0.004 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "240809500", + "voter": "tritium" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 14951974726, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.044, - "payout_at": "2017-06-18T04:42:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170611t044200263z", - "post_id": 3739820, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 + { + "rshares": "123321995", + "voter": "allmonitors" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-11T04:42:03", - "url": "/meta/@steemit/firstpost#@trys10k/re-steemit-firstpost-20170611t044200263z" - }, - "tryword/re-steemit-firstpost-20180129t231805308z": { - "active_votes": [], - "author": "tryword", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.14, - "beneficiaries": [], - "blacklists": [], - "body": "I love it !!", - "category": "meta", - "children": 0, - "created": "2018-01-29T23:18:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "226074637", + "voter": "artjedi" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-05T23:18:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180129t231805308z", - "post_id": 29042068, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "931542394", + "voter": "anduweb" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-29T23:18:42", - "url": "/meta/@steemit/firstpost#@tryword/re-steemit-firstpost-20180129t231805308z" - }, - "tsnaks/re-steemit-firstpost-20180604t143850288z": { - "active_votes": [], - "author": "tsnaks", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.32, - "beneficiaries": [], - "blacklists": [], - "body": "I love steemit ! <3", - "category": "meta", - "children": 0, - "created": "2018-06-04T14:38:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "2292983350", + "voter": "inertia" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-06-11T14:38:51", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180604t143850288z", - "post_id": 51642766, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "128561059", + "voter": "maximkichev" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-04T14:38:51", - "url": "/meta/@steemit/firstpost#@tsnaks/re-steemit-firstpost-20180604t143850288z" - }, - "tumutanzi/re-steemit-firstpost-20170714t095628298z": { - "active_votes": [ - { - "rshares": "117028280", - "voter": "black-eye" - }, - { - "rshares": "4485333030", - "voter": "danyelk" - }, - { - "rshares": "1172749660", - "voter": "lembach3d" - }, - { - "rshares": "697181636", - "voter": "aniksh" - }, - { - "rshares": "52230396", - "voter": "adraaz" - } - ], - "author": "tumutanzi", - "author_payout_value": "0.026 HBD", - "author_reputation": 71.16, - "beneficiaries": [], - "blacklists": [], - "body": "Make blockchain great again!", - "category": "meta", - "children": 0, - "created": "2017-07-14T09:56:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "183438273", + "voter": "a9inchcock" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 6524523002, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.026, - "payout_at": "2017-07-21T09:56:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170714t095628298z", - "post_id": 7150728, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 5 + { + "rshares": "266262926", + "voter": "desmonid" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-14T09:56:27", - "url": "/meta/@steemit/firstpost#@tumutanzi/re-steemit-firstpost-20170714t095628298z" - }, - "ubg/re-steemit-firstpost-20160813t143213453z": { - "active_votes": [ - { - "rshares": "23067571373", - "voter": "ubg" - }, - { - "rshares": "999297062", - "voter": "juurop" - }, - { - "rshares": "823625727", - "voter": "usb" - }, - { - "rshares": "5546862495", - "voter": "tannukas6" - }, - { - "rshares": "694394716", - "voter": "tox" - }, - { - "rshares": "0", - "voter": "kibbjez" - }, - { - "rshares": "692185541", - "voter": "runridefly" - }, - { - "rshares": "0", - "voter": "suryarose" - } - ], - "author": "ubg", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.26, - "beneficiaries": [], - "blacklists": [], - "body": "You have quadruple the liquidity any of the exchanges have. \n## Just make it rain!\nhttp://i.imgur.com/Maj5zM2.gif", - "category": "meta", - "children": 1, - "created": "2016-08-13T14:32:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "image": [ - "http://i.imgur.com/Maj5zM2.gif" - ], - "tags": [ - "meta" - ] + { + "rshares": "71498008", + "voter": "madhatting" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 31823936914, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160813t143213453z", - "post_id": 585908, - "promoted": "0.000 HBD", - "replies": [ - "setio/re-ubg-re-steemit-firstpost-20170820t233424463z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 6 + { + "rshares": "23726644841", + "voter": "ubg" }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-13T14:32:18", - "url": "/meta/@steemit/firstpost#@ubg/re-steemit-firstpost-20160813t143213453z" - }, - "uripsurya/re-steemit-firstpost-20180205t130906092z": { - "active_votes": [ - { - "rshares": "64518545", - "voter": "uripsurya" - } - ], - "author": "uripsurya", - "author_payout_value": "0.000 HBD", - "author_reputation": 34.49, - "beneficiaries": [], - "blacklists": [], - "body": "Amazing....@steemit my new world to social media online.thanks @steemit", - "category": "meta", - "children": 0, - "created": "2018-02-05T13:09:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] + { + "rshares": "3741408303", + "voter": "royaltiffany" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 64518545, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-12T13:09:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180205t130906092z", - "post_id": 30566687, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "131577259", + "voter": "gribgo" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-05T13:09:15", - "url": "/meta/@steemit/firstpost#@uripsurya/re-steemit-firstpost-20180205t130906092z" - }, - "urmokas/re-steemit-firstpost-20170430t041901124z": { - "active_votes": [ - { - "rshares": "1136297440", - "voter": "neonartist" - }, - { - "rshares": "3663106651", - "voter": "funkit" - }, - { - "rshares": "1004242388", - "voter": "urmokas" - } - ], - "author": "urmokas", - "author_payout_value": "0.000 HBD", - "author_reputation": 45.51, - "beneficiaries": [], - "blacklists": [], - "body": "This is my big asking whether someone can put LIAIKE my cats, blogs and even better would be a donation would advance saaks. Thanks famous cats who made donations. BIG THANKS IN ADVANCE", - "category": "meta", - "children": 0, - "created": "2017-04-30T04:19:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "12371398765", + "voter": "deanliu" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 5803646479, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-05-07T04:19:00", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170430t041901124z", - "post_id": 2516715, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 + { + "rshares": "28907874049", + "voter": "orm" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-04-30T04:19:00", - "url": "/meta/@steemit/firstpost#@urmokas/re-steemit-firstpost-20170430t041901124z" - }, - "urmokas/re-steemit-firstpost-20170430t041942403z": { - "active_votes": [ - { - "rshares": "1165433272", - "voter": "neonartist" - }, - { - "rshares": "3663106651", - "voter": "funkit" - }, - { - "rshares": "1058525760", - "voter": "urmokas" - } - ], - "author": "urmokas", - "author_payout_value": "0.000 HBD", - "author_reputation": 45.51, - "beneficiaries": [], - "blacklists": [], - "body": "This is my big asking whether someone can put LIAIKE my cats, blogs and even better would be a donation would advance saaks. Thanks famous cats who made donations. BIG THANKS IN ADVANCE @urmokas", - "category": "meta", - "children": 0, - "created": "2017-04-30T04:19:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "urmokas" - ] + { + "rshares": "528988007", + "voter": "qonq99" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 5887065683, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-05-07T04:19:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170430t041942403z", - "post_id": 2516719, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 + { + "rshares": "129537329", + "voter": "rd7783" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-04-30T04:19:42", - "url": "/meta/@steemit/firstpost#@urmokas/re-steemit-firstpost-20170430t041942403z" - }, - "v007007007/re-steemit-firstpost-20171208t070558910z": { - "active_votes": [], - "author": "v007007007", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.46, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is probably the best social media platform right now.i am loving it.....please upvote my posts..", - "category": "meta", - "children": 0, - "created": "2017-12-08T07:36:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "615020728", + "voter": "slava" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-15T07:36:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171208t070558910z", - "post_id": 19783174, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "0", + "voter": "flyboyzombie" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-08T07:36:27", - "url": "/meta/@steemit/firstpost#@v007007007/re-steemit-firstpost-20171208t070558910z" - }, - "valueup/re-steemit-firstpost-20170619t152843513z": { - "active_votes": [ - { - "rshares": "19215700192", - "voter": "sebastien" - }, - { - "rshares": "1457937864", - "voter": "gogo.tattoo" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "valueup", - "author_payout_value": "0.330 HBD", - "author_reputation": 57.68, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks~ @steemit, this world is really brilliant! :)", - "category": "meta", - "children": 1, - "created": "2017-06-19T15:29:27", - "curator_payout_value": "0.065 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] + { + "rshares": "100102503", + "voter": "sictransitgloria" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 20673638056, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.395, - "payout_at": "2017-06-26T15:29:27", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170619t152843513z", - "post_id": 4353595, - "promoted": "0.000 HBD", - "replies": [ - "crypto-p/re-valueup-re-steemit-firstpost-20170619t185901457z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 + { + "rshares": "95219365", + "voter": "curator" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-19T15:29:27", - "url": "/meta/@steemit/firstpost#@valueup/re-steemit-firstpost-20170619t152843513z" - }, - "vandalizmrecordz/re-steemit-firstpost-20171004t005106070z": { - "active_votes": [ - { - "rshares": "1679238748", - "voter": "vandalizmrecordz" - } - ], - "author": "vandalizmrecordz", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.77, - "beneficiaries": [], - "blacklists": [], - "body": "please support Vegas relief fund https://steemit.com/vegas/@vandalizmrecordz/steemit-vegas-victim-help-and-relief-fund-by-william-elder-of-vandalizmrecordz-orbit-drop", - "category": "meta", - "children": 0, - "created": "2017-10-03T23:55:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://steemit.com/vegas/@vandalizmrecordz/steemit-vegas-victim-help-and-relief-fund-by-william-elder-of-vandalizmrecordz-orbit-drop" - ], - "tags": [ - "meta" - ] + { + "rshares": "232295871", + "voter": "dubovoy" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1679238748, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-10T23:55:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171004t005106070z", - "post_id": 14452284, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "0", + "voter": "solos" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-03T23:55:15", - "url": "/meta/@steemit/firstpost#@vandalizmrecordz/re-steemit-firstpost-20171004t005106070z" - }, - "venkatesh15921/re-steemit-firstpost-20180707t045636127z": { - "active_votes": [], - "author": "venkatesh15921", - "author_payout_value": "0.000 HBD", - "author_reputation": 39.39, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is one of the coolest platform for writers i have ever seen . It is fun and awesome !!", - "category": "meta", - "children": 0, - "created": "2018-07-07T04:56:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "96945805", + "voter": "creatorgalaxy" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-07-14T04:56:36", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180707t045636127z", - "post_id": 55699723, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "99813231", + "voter": "trigonice29" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-07T04:56:36", - "url": "/meta/@steemit/firstpost#@venkatesh15921/re-steemit-firstpost-20180707t045636127z" - }, - "veseloff/re-layra-re-steemit-firstpost-20180620t171437053z": { - "active_votes": [ - { - "rshares": "300304584", - "voter": "layra" - } - ], - "author": "veseloff", - "author_payout_value": "0.000 HBD", - "author_reputation": 59.89, - "beneficiaries": [], - "blacklists": [], - "body": "Welcome to Steemit, I followed you, I hope and you will follow me! ;)", - "category": "meta", - "children": 1, - "created": "2018-06-20T17:14:42", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "0", + "voter": "blysards" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 300304584, - "parent_author": "layra", - "parent_permlink": "re-steemit-firstpost-20180620t023240325z", - "payout": 0.0, - "payout_at": "2018-06-27T17:14:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-layra-re-steemit-firstpost-20180620t171437053z", - "post_id": 53704179, - "promoted": "0.000 HBD", - "replies": [ - "spaminator/re-veseloff-re-layra-re-steemit-firstpost-20180620t171437053z-20180620t182350260z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "3721016208", + "voter": "uwe69" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T17:14:42", - "url": "/meta/@steemit/firstpost#@veseloff/re-layra-re-steemit-firstpost-20180620t171437053z" - }, - "vickywiz/re-steemit-firstpost-20180111t053714270z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "vickywiz", - "author_payout_value": "0.000 HBD", - "author_reputation": 46.21, - "beneficiaries": [], - "blacklists": [], - "body": "Joined 5 days back and I am grateful, thankful, excited and happy to have found it and be part of this.", - "category": "meta", - "children": 0, - "created": "2018-01-11T05:37:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "1279854", + "voter": "nigmat" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-18T05:37:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180111t053714270z", - "post_id": 24941335, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "13974353753", + "voter": "magicmonk" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-11T05:37:15", - "url": "/meta/@steemit/firstpost#@vickywiz/re-steemit-firstpost-20180111t053714270z" - }, - "watchout2017/re-steemit-firstpost-20170609t092656127z": { - "active_votes": [ - { - "rshares": "153432245", - "voter": "user786" - } - ], - "author": "watchout2017", - "author_payout_value": "0.000 HBD", - "author_reputation": 46.38, - "beneficiaries": [], - "blacklists": [], - "body": "Hello Big Whale,\n\nCan you direct me to a tutorial on how to contribute to Steemit. I have been a member since Dec (had to wait 3 months), but never got involved until I got laid-off, which was 10 days ago. \n\nThanks\n\n@watchout2017\n\nDomi", - "category": "meta", - "children": 0, - "created": "2017-06-09T09:27:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "watchout2017" - ] + { + "rshares": "4968585456", + "voter": "satoshifpv" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 153432245, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-16T09:27:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170609t092656127z", - "post_id": 3641278, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "1660613178", + "voter": "naturalista" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-09T09:27:03", - "url": "/meta/@steemit/firstpost#@watchout2017/re-steemit-firstpost-20170609t092656127z" - }, - "whitedolphin/re-steemit-firstpost-20170611t040948165z": { - "active_votes": [ - { - "rshares": "25487046478", - "voter": "whitedolphin" - }, - { - "rshares": "0", - "voter": "ainsleyjo1952" - } - ], - "author": "whitedolphin", - "author_payout_value": "0.076 HBD", - "author_reputation": 59.6, - "beneficiaries": [], - "blacklists": [], - "body": "I am trying to save this mare - please vote me up!! I love Steemit such a great way to share information and talents.\n\nThis mare deserves a home! \n\nhttps://steemit.com/life/@whitedolphin/i-need-your-help-horse-rescue", - "category": "meta", - "children": 0, - "created": "2017-06-11T04:09:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://steemit.com/life/@whitedolphin/i-need-your-help-horse-rescue" - ], - "tags": [ - "meta" - ] + { + "rshares": "10847083143", + "voter": "metrox" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 25487046478, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.076, - "payout_at": "2017-06-18T04:09:48", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170611t040948165z", - "post_id": 3738895, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "18340928", + "voter": "bestmalik" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-11T04:09:48", - "url": "/meta/@steemit/firstpost#@whitedolphin/re-steemit-firstpost-20170611t040948165z" - }, - "wil1liam/re-stackin-re-steemit-firstpost-20180407t182425232z": { - "active_votes": [], - "author": "wil1liam", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.24, - "beneficiaries": [], - "blacklists": [], - "body": "I'm sorry but that comment isn't worth $39.28....", - "category": "meta", - "children": 1, - "created": "2018-04-07T18:24:39", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "59563315", + "voter": "kolyan31" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-04-14T18:24:39", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180407t182425232z", - "post_id": 42528631, - "promoted": "0.000 HBD", - "replies": [ - "sisygoboom/re-wil1liam-re-stackin-re-steemit-firstpost-20180416t130745058z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "710989138", + "voter": "romancs" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-07T18:24:39", - "url": "/meta/@steemit/firstpost#@wil1liam/re-stackin-re-steemit-firstpost-20180407t182425232z" + { + "rshares": "59366614", + "voter": "luke490" + }, + { + "rshares": "58762473", + "voter": "bro66" + }, + { + "rshares": "201822591", + "voter": "future24" + }, + { + "rshares": "58623688", + "voter": "mythras" + }, + { + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "rshares": "0", + "voter": "matrixdweller" + }, + { + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "rshares": "54761612", + "voter": "edbriv" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "rshares": "52740989", + "voter": "tcstix" + }, + { + "rshares": "49467477", + "voter": "friedwater" + }, + { + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "rshares": "54017869", + "voter": "zelious" + }, + { + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "rshares": "53196086", + "voter": "f1111111" + }, + { + "rshares": "0", + "voter": "anomaly" + }, + { + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "rshares": "0", + "voter": "buckland" + }, + { + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_payout_value": "0.942 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "payout": 1.698, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [ + "admin/firstpost", + "proskynneo/steemit-firstpost-1", + "red/steemit-firstpost-2", + "business/re-steemit-firstpost-20160713t082910980z", + "gopher/re-steemit-firstpost-20160718t195806340z", + "jennamarbles/re-steemit-firstpost-20160719t210752086z", + "kingtylervvs/re-steemit-firstpost-20160720t121101482z", + "kewpiedoll/re-steemit-firstpost-20160720t210201326z", + "gekko/re-steemit-firstpost-20160721t223937736z", + "sictransitgloria/re-steemit-firstpost-20160721t233702742z", + "patrick-g/re-steemit-firstpost-20160722t201007967z", + "kamvreto/re-steemit-firstpost-20160722t225246211z", + "zhuvazhuva/re-steemit-firstpost-20160723t130259286z", + "kamvreto/re-steemit-firstpost-20160725t221949749z", + "lenerdie/re-steemit-firstpost-20160726t035056026z", + "bestmalik/re-steemit-firstpost-20160726t035722561z", + "edbriv/re-steemit-firstpost-20160801t184846033z", + "imarealboy777/re-steemit-firstpost-20160801t232001768z", + "rednetkjh/re-steemit-firstpost-20160804t061605576z", + "jelloducky/re-steemit-firstpost-20160807t215340468z", + "deanliu/re-steemit-firstpost-20160810t083336206z", + "flandude/re-steemit-firstpost-20160811t225325571z", + "ubg/re-steemit-firstpost-20160813t143213453z", + "future24/re-steemit-firstpost-20160818t030224104z", + "rittr/re-steemit-firstpost-20160824t025355199z", + "jack8831/re-steemit-firstpost-20160824t093007335z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 92 + }, + "title": "Welcome to Steem!", + "updated": "2016-03-30T18:30:18", + "url": "/meta/@steemit/firstpost" }, - "withgraham/re-steemit-firstpost-20180103t090821481z": { - "active_votes": [], - "author": "withgraham", - "author_payout_value": "0.000 HBD", - "author_reputation": 33.11, - "beneficiaries": [], - "blacklists": [], - "body": "You're NO 1 Steemit!! I envy you~~\n![\u1109\u1173\u110f\u1173\u1105\u1175\u11ab\u1109\u1163\u11ba 2018-01-03 \u110b\u1169\u1112\u116e 6.06.27.png](https://steemitimages.com/DQmSx6exHc7jEhBYw6Lturg9JicYHodGu9AfzYt6PLvcBre/%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202018-01-03%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%206.06.27.png)", - "category": "meta", - "children": 0, - "created": "2018-01-03T09:08:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmSx6exHc7jEhBYw6Lturg9JicYHodGu9AfzYt6PLvcBre/%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202018-01-03%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%206.06.27.png" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-10T09:08:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180103t090821481z", - "post_id": 23269737, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-03T09:08:21", - "url": "/meta/@steemit/firstpost#@withgraham/re-steemit-firstpost-20180103t090821481z" + "steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z": { + "active_votes": [ + { + "rshares": "724886327", + "voter": "patrick-g" + } + ], + "author": "steemuwe", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Bittrex is not a user - it's an exchange platform: **https://steemit.com/bittrex/@bittrex-richie/a-little-history-of-bittrex-com-how-it-all-started**\n\nhttps://bittrex.com/", + "category": "meta", + "children": 0, + "created": "2016-07-20T18:36:24", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "links": [ + "https://steemit.com/bittrex/@bittrex-richie/a-little-history-of-bittrex-com-how-it-all-started**" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 724886327, + "parent_author": "gopher", + "parent_permlink": "re-steemit-firstpost-20160718t195806340z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gopher-re-steemit-firstpost-20160720t183548381z", + "post_id": 163863, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T18:36:24", + "url": "/meta/@steemit/firstpost#@steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z" }, - "yasirsohail196/re-steemit-firstpost-20180121t072845412z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "yasirsohail196", - "author_payout_value": "0.000 HBD", - "author_reputation": 45.25, - "beneficiaries": [], - "blacklists": [], - "body": "its an amazing and good platform....good to b here seriously", - "category": "meta", - "children": 0, - "created": "2018-01-21T07:20:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-28T07:20:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20180121t072845412z", - "post_id": 26986287, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-21T07:20:03", - "url": "/meta/@steemit/firstpost#@yasirsohail196/re-steemit-firstpost-20180121t072845412z" + "ubg/re-steemit-firstpost-20160813t143213453z": { + "active_votes": [ + { + "rshares": "23067571373", + "voter": "ubg" + }, + { + "rshares": "999297062", + "voter": "juurop" + }, + { + "rshares": "823625727", + "voter": "usb" + }, + { + "rshares": "5546862495", + "voter": "tannukas6" + }, + { + "rshares": "694394716", + "voter": "tox" + }, + { + "rshares": "692185541", + "voter": "runridefly" + } + ], + "author": "ubg", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "You have quadruple the liquidity any of the exchanges have. \n## Just make it rain!\nhttp://i.imgur.com/Maj5zM2.gif", + "category": "meta", + "children": 0, + "created": "2016-08-13T14:32:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://i.imgur.com/Maj5zM2.gif" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 31823936914, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160813t143213453z", + "post_id": 585908, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 6 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-13T14:32:18", + "url": "/meta/@steemit/firstpost#@ubg/re-steemit-firstpost-20160813t143213453z" }, "yonuts/re-kingtylervvs-re-steemit-firstpost-20160729t180621248z": { - "active_votes": [], - "author": "yonuts", - "author_payout_value": "0.000 HBD", - "author_reputation": 54.33, - "beneficiaries": [], - "blacklists": [], - "body": "hello world! hello Steemit!", - "category": "meta", - "children": 0, - "created": "2016-07-29T18:06:21", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "kingtylervvs", - "parent_permlink": "re-steemit-firstpost-20160720t121101482z", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-kingtylervvs-re-steemit-firstpost-20160729t180621248z", - "post_id": 339524, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-29T18:06:21", - "url": "/meta/@steemit/firstpost#@yonuts/re-kingtylervvs-re-steemit-firstpost-20160729t180621248z" - }, - "zeji/re-steemit-firstpost-20170630t111416254z": { - "active_votes": [ - { - "rshares": "426923195", - "voter": "chrystaldawn" - } - ], - "author": "zeji", - "author_payout_value": "0.000 HBD", - "author_reputation": 29.08, - "beneficiaries": [], - "blacklists": [], - "body": "Glad to be here", - "category": "meta", - "children": 0, - "created": "2017-06-30T11:14:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 426923195, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-07T11:14:18", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170630t111416254z", - "post_id": 5653838, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-30T11:14:18", - "url": "/meta/@steemit/firstpost#@zeji/re-steemit-firstpost-20170630t111416254z" + "active_votes": [], + "author": "yonuts", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "hello world! hello Steemit!", + "category": "meta", + "children": 0, + "created": "2016-07-29T18:06:21", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "kingtylervvs", + "parent_permlink": "re-steemit-firstpost-20160720t121101482z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-kingtylervvs-re-steemit-firstpost-20160729t180621248z", + "post_id": 339524, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-29T18:06:21", + "url": "/meta/@steemit/firstpost#@yonuts/re-kingtylervvs-re-steemit-firstpost-20160729t180621248z" }, "zhuvazhuva/re-steemit-firstpost-20160723t130259286z": { - "active_votes": [], - "author": "zhuvazhuva", - "author_payout_value": "0.000 HBD", - "author_reputation": 44.09, - "beneficiaries": [], - "blacklists": [], - "body": "\u041f\u0440\u0438\u0432\u0435\u0442!", - "category": "meta", - "children": 0, - "created": "2016-07-23T13:03:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20160723t130259286z", - "post_id": 214663, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-23T13:03:00", - "url": "/meta/@steemit/firstpost#@zhuvazhuva/re-steemit-firstpost-20160723t130259286z" - }, - "zia161/re-steemit-firstpost-20171231t163613548z": { - "active_votes": [ - { - "rshares": "538791600", - "voter": "zia161" - } - ], - "author": "zia161", - "author_payout_value": "0.000 HBD", - "author_reputation": 34.4, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit, thanks for creating such a great website.", - "category": "meta", - "children": 0, - "created": "2017-12-31T16:36:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 538791600, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-07T16:36:15", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20171231t163613548z", - "post_id": 22835534, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-31T16:36:15", - "url": "/meta/@steemit/firstpost#@zia161/re-steemit-firstpost-20171231t163613548z" - }, - "zufrizal/re-steemit-firstpost-20170730t044117656z": { - "active_votes": [ - { - "rshares": "760377970", - "voter": "yasdani786" - }, - { - "rshares": "272754180", - "voter": "bitcointauji" - } - ], - "author": "zufrizal", - "author_payout_value": "0.000 HBD", - "author_reputation": 51.7, - "beneficiaries": [], - "blacklists": [], - "body": "welcome to steem", - "category": "meta", - "children": 0, - "created": "2017-07-30T04:49:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "busy/1.0.0", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1033132150, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-06T04:49:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-steemit-firstpost-20170730t044117656z", - "post_id": 8696275, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-30T04:49:03", - "url": "/meta/@steemit/firstpost#@zufrizal/re-steemit-firstpost-20170730t044117656z" + "active_votes": [], + "author": "zhuvazhuva", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\u041f\u0440\u0438\u0432\u0435\u0442!", + "category": "meta", + "children": 0, + "created": "2016-07-23T13:03:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160723t130259286z", + "post_id": 214663, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-23T13:03:00", + "url": "/meta/@steemit/firstpost#@zhuvazhuva/re-steemit-firstpost-20160723t130259286z" } } \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_payout_stats.pat.json b/hivemind/tavern/bridge_api_patterns/get_payout_stats.pat.json index 473a8cae..7b8f3500 100644 --- a/hivemind/tavern/bridge_api_patterns/get_payout_stats.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_payout_stats.pat.json @@ -1,5 +1,13 @@ { - "blogs": 0.0, - "items": [], - "total": 0.0 + "blogs": 1866809.934, + "items": [ + [ + "@charlieshrem", + "@charlieshrem", + 62150.551, + 142, + null + ] + ], + "total": 1866809.934 } \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_post.pat.json b/hivemind/tavern/bridge_api_patterns/get_post.pat.json index db09451f..6164a7d7 100644 --- a/hivemind/tavern/bridge_api_patterns/get_post.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_post.pat.json @@ -1,2308 +1,440 @@ { - "active_votes": [ - { - "rshares": "375241", - "voter": "dantheman" - }, - { - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "rshares": "5100", - "voter": "steemit78" - }, - { - "rshares": "1259167", - "voter": "anonymous" - }, - { - "rshares": "318519", - "voter": "hello" - }, - { - "rshares": "153384", - "voter": "world" - }, - { - "rshares": "-936400", - "voter": "ned" - }, - { - "rshares": "59412", - "voter": "fufubar1" - }, - { - "rshares": "14997", - "voter": "anonymous1" - }, - { - "rshares": "1441", - "voter": "red" - }, - { - "rshares": "551390835500", - "voter": "liondani" - }, - { - "rshares": "82748", - "voter": "roadscape" - }, - { - "rshares": "10772", - "voter": "xeroc" - }, - { - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "rshares": "498863058", - "voter": "joelinux" - }, - { - "rshares": "9590417", - "voter": "piranhax" - }, - { - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "rshares": "425903066", - "voter": "gekko" - }, - { - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "rshares": "422984262", - "voter": "acidyo" - }, - { - "rshares": "47179379651", - "voter": "tosch" - }, - { - "rshares": "7831667988", - "voter": "klye" - }, - { - "rshares": "1019950749", - "voter": "coar" - }, - { - "rshares": "1746058458", - "voter": "murh" - }, - { - "rshares": "0", - "voter": "ashe-oro" - }, - { - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "rshares": "0", - "voter": "hien-tran" - }, - { - "rshares": "0", - "voter": "noganoo" - }, - { - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "rshares": "40624969", - "voter": "ben99" - }, - { - "rshares": "0", - "voter": "tskeene" - }, - { - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "rshares": "0", - "voter": "roelandp" - }, - { - "rshares": "0", - "voter": "stealthtrader" - }, - { - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "rshares": "0", - "voter": "picokernel" - }, - { - "rshares": "0", - "voter": "ausbitbank" - }, - { - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "rshares": "0", - "voter": "sebastien" - }, - { - "rshares": "917398502", - "voter": "decrypt" - }, - { - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "rshares": "1037079223", - "voter": "condra" - }, - { - "rshares": "233032838", - "voter": "jearson" - }, - { - "rshares": "240809500", - "voter": "tritium" - }, - { - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "rshares": "226074637", - "voter": "artjedi" - }, - { - "rshares": "931542394", - "voter": "anduweb" - }, - { - "rshares": "2292983350", - "voter": "inertia" - }, - { - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "rshares": "266262926", - "voter": "desmonid" - }, - { - "rshares": "71498008", - "voter": "madhatting" - }, - { - "rshares": "23726644841", - "voter": "ubg" - }, - { - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "rshares": "131577259", - "voter": "gribgo" - }, - { - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "rshares": "28907874049", - "voter": "orm" - }, - { - "rshares": "528988007", - "voter": "qonq99" - }, - { - "rshares": "129537329", - "voter": "rd7783" - }, - { - "rshares": "615020728", - "voter": "slava" - }, - { - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "rshares": "0", - "voter": "social" - }, - { - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "rshares": "95219365", - "voter": "curator" - }, - { - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "rshares": "0", - "voter": "solos" - }, - { - "rshares": "0", - "voter": "alvintang" - }, - { - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "rshares": "0", - "voter": "blysards" - }, - { - "rshares": "0", - "voter": "nick.kharchenko" - }, - { - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "rshares": "1279854", - "voter": "nigmat" - }, - { - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "rshares": "10847083143", - "voter": "metrox" - }, - { - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "rshares": "710989138", - "voter": "romancs" - }, - { - "rshares": "59366614", - "voter": "luke490" - }, - { - "rshares": "58762473", - "voter": "bro66" - }, - { - "rshares": "201822591", - "voter": "future24" - }, - { - "rshares": "58623688", - "voter": "mythras" - }, - { - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "rshares": "0", - "voter": "matrixdweller" - }, - { - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "rshares": "54761612", - "voter": "edbriv" - }, - { - "rshares": "0", - "voter": "anarchyhasnogods" - }, - { - "rshares": "865125771", - "voter": "rittr" - }, - { - "rshares": "0", - "voter": "tumutanzi" - }, - { - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "rshares": "52740989", - "voter": "tcstix" - }, - { - "rshares": "49467477", - "voter": "friedwater" - }, - { - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "rshares": "0", - "voter": "gbonikz" - }, - { - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "rshares": "0", - "voter": "darkflame" - }, - { - "rshares": "0", - "voter": "sneak" - }, - { - "rshares": "0", - "voter": "jacobcards" - }, - { - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "rshares": "0", - "voter": "shieha" - }, - { - "rshares": "54017869", - "voter": "zelious" - }, - { - "rshares": "0", - "voter": "allyouneedtoknow" - }, - { - "rshares": "0", - "voter": "justyy" - }, - { - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "rshares": "53196086", - "voter": "f1111111" - }, - { - "rshares": "0", - "voter": "anomaly" - }, - { - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "rshares": "0", - "voter": "buckland" - }, - { - "rshares": "0", - "voter": "guest123" - }, - { - "rshares": "0", - "voter": "syahhiran" - }, - { - "rshares": "0", - "voter": "rarcntv" - }, - { - "rshares": "0", - "voter": "nataleeoliver" - }, - { - "rshares": "0", - "voter": "goldmatters" - }, - { - "rshares": "0", - "voter": "gamer00" - }, - { - "rshares": "0", - "voter": "curiesea" - }, - { - "rshares": "0", - "voter": "missmarzipan" - }, - { - "rshares": "0", - "voter": "thejohalfiles" - }, - { - "rshares": "0", - "voter": "steemwart" - }, - { - "rshares": "0", - "voter": "mapesa" - }, - { - "rshares": "0", - "voter": "max-max" - }, - { - "rshares": "0", - "voter": "joshuaatiemo" - }, - { - "rshares": "0", - "voter": "jumaidafajar" - }, - { - "rshares": "0", - "voter": "leolina1" - }, - { - "rshares": "0", - "voter": "rebatesteem" - }, - { - "rshares": "0", - "voter": "aidancloquell" - }, - { - "rshares": "0", - "voter": "rm802" - }, - { - "rshares": "0", - "voter": "krasotka" - }, - { - "rshares": "0", - "voter": "alamyrjunior" - }, - { - "rshares": "0", - "voter": "networker5" - }, - { - "rshares": "0", - "voter": "evdoggformayor" - }, - { - "rshares": "0", - "voter": "askari" - }, - { - "rshares": "0", - "voter": "blockrush" - }, - { - "rshares": "0", - "voter": "barvon" - }, - { - "rshares": "0", - "voter": "fajarsdq" - }, - { - "rshares": "0", - "voter": "juandemarte" - }, - { - "rshares": "0", - "voter": "lazarescu.irinel" - }, - { - "rshares": "0", - "voter": "thedeplorable1" - }, - { - "rshares": "0", - "voter": "kalemandra" - }, - { - "rshares": "0", - "voter": "ades" - }, - { - "rshares": "0", - "voter": "rizkiavonna" - }, - { - "rshares": "0", - "voter": "tohamy7" - }, - { - "rshares": "0", - "voter": "justinashby" - }, - { - "rshares": "0", - "voter": "thereikiforest" - }, - { - "rshares": "0", - "voter": "serendipitie" - }, - { - "rshares": "0", - "voter": "anwarabdullah" - }, - { - "rshares": "0", - "voter": "rocketbeee" - }, - { - "rshares": "0", - "voter": "ackza" - }, - { - "rshares": "0", - "voter": "nilim" - }, - { - "rshares": "0", - "voter": "renatrazumov" - }, - { - "rshares": "0", - "voter": "jelkasmi" - }, - { - "rshares": "0", - "voter": "dimitrya123" - }, - { - "rshares": "0", - "voter": "crawfish37" - }, - { - "rshares": "0", - "voter": "laodr" - }, - { - "rshares": "0", - "voter": "lkisaid" - }, - { - "rshares": "0", - "voter": "mikev" - }, - { - "rshares": "0", - "voter": "hakan0356" - }, - { - "rshares": "0", - "voter": "tasartcraft" - }, - { - "rshares": "0", - "voter": "urmokas" - }, - { - "rshares": "0", - "voter": "michael-fagundes" - }, - { - "rshares": "0", - "voter": "kalamur" - }, - { - "rshares": "0", - "voter": "abhinavsharma" - }, - { - "rshares": "0", - "voter": "contentguy" - }, - { - "rshares": "0", - "voter": "globocop" - }, - { - "rshares": "0", - "voter": "hafizul" - }, - { - "rshares": "0", - "voter": "hothelp1by1" - }, - { - "rshares": "0", - "voter": "vannfrik" - }, - { - "rshares": "0", - "voter": "manuel78" - }, - { - "rshares": "0", - "voter": "brado" - }, - { - "rshares": "0", - "voter": "strateg" - }, - { - "rshares": "0", - "voter": "quinsmacqueen" - }, - { - "rshares": "0", - "voter": "brucebrownftw" - }, - { - "rshares": "0", - "voter": "mrstaf" - }, - { - "rshares": "0", - "voter": "avvah" - }, - { - "rshares": "0", - "voter": "stackin" - }, - { - "rshares": "0", - "voter": "laloelectrix" - }, - { - "rshares": "0", - "voter": "heejaekim" - }, - { - "rshares": "0", - "voter": "thethreehugs" - }, - { - "rshares": "0", - "voter": "otitrader" - }, - { - "rshares": "0", - "voter": "clixmoney" - }, - { - "rshares": "0", - "voter": "tryword" - }, - { - "rshares": "0", - "voter": "dioneaguiar" - }, - { - "rshares": "0", - "voter": "yann.moalic" - }, - { - "rshares": "0", - "voter": "shaunf" - }, - { - "rshares": "0", - "voter": "cleemit" - }, - { - "rshares": "0", - "voter": "deeluvli1" - }, - { - "rshares": "0", - "voter": "noval" - }, - { - "rshares": "0", - "voter": "pixzelplethora" - }, - { - "rshares": "0", - "voter": "smart3dweb" - }, - { - "rshares": "0", - "voter": "joey-cryptoboy" - }, - { - "rshares": "0", - "voter": "mateorite" - }, - { - "rshares": "0", - "voter": "somaflaco" - }, - { - "rshares": "0", - "voter": "enki74" - }, - { - "rshares": "0", - "voter": "jungleebitcoin" - }, - { - "rshares": "0", - "voter": "correctdrop" - }, - { - "rshares": "0", - "voter": "clintjunior" - }, - { - "rshares": "0", - "voter": "tediursa24" - }, - { - "rshares": "0", - "voter": "mxzn" - }, - { - "rshares": "0", - "voter": "hgmsilvergold" - }, - { - "rshares": "0", - "voter": "antares007" - }, - { - "rshares": "0", - "voter": "tridenspoon333" - }, - { - "rshares": "0", - "voter": "vipek1996" - }, - { - "rshares": "0", - "voter": "prima-nia" - }, - { - "rshares": "0", - "voter": "redris" - }, - { - "rshares": "0", - "voter": "savetheanimals" - }, - { - "rshares": "0", - "voter": "tarunmewara" - }, - { - "rshares": "0", - "voter": "overkillcoin" - }, - { - "rshares": "0", - "voter": "tuakanamorgan" - }, - { - "rshares": "0", - "voter": "anacristinasilva" - }, - { - "rshares": "0", - "voter": "filmonaut" - }, - { - "rshares": "0", - "voter": "firstamendment" - }, - { - "rshares": "0", - "voter": "timcrypto" - }, - { - "rshares": "0", - "voter": "cryptotem" - }, - { - "rshares": "0", - "voter": "mikej" - }, - { - "rshares": "0", - "voter": "hwrs" - }, - { - "rshares": "0", - "voter": "sinai770judea" - }, - { - "rshares": "0", - "voter": "tuneralliance" - }, - { - "rshares": "0", - "voter": "zeji" - }, - { - "rshares": "0", - "voter": "ricoalfianda" - }, - { - "rshares": "0", - "voter": "satfit" - }, - { - "rshares": "0", - "voter": "machhour" - }, - { - "rshares": "0", - "voter": "bitgenio" - }, - { - "rshares": "0", - "voter": "ahmedmansi" - }, - { - "rshares": "0", - "voter": "theoccultcorner" - }, - { - "rshares": "0", - "voter": "reseller" - }, - { - "rshares": "0", - "voter": "ainsleyjo1952" - }, - { - "rshares": "0", - "voter": "novi" - }, - { - "rshares": "0", - "voter": "androsform" - }, - { - "rshares": "0", - "voter": "jooyoung" - }, - { - "rshares": "0", - "voter": "dobro88888888" - }, - { - "rshares": "0", - "voter": "ghaaspur" - }, - { - "rshares": "0", - "voter": "xodyd2da" - }, - { - "rshares": "0", - "voter": "trisun" - }, - { - "rshares": "0", - "voter": "tngflx" - }, - { - "rshares": "0", - "voter": "karaban" - }, - { - "rshares": "0", - "voter": "empath" - }, - { - "rshares": "0", - "voter": "pcbildrnoob" - }, - { - "rshares": "0", - "voter": "joecaffeine" - }, - { - "rshares": "0", - "voter": "laolballs" - }, - { - "rshares": "0", - "voter": "braamsteyn7777" - }, - { - "rshares": "0", - "voter": "udibekwe" - }, - { - "rshares": "0", - "voter": "jackolanternbob" - }, - { - "rshares": "0", - "voter": "rondoncr" - }, - { - "rshares": "0", - "voter": "doubledeeyt" - }, - { - "rshares": "0", - "voter": "joshvel" - }, - { - "rshares": "0", - "voter": "lembach3d" - }, - { - "rshares": "0", - "voter": "vulturestkn" - }, - { - "rshares": "0", - "voter": "darknessprincess" - }, - { - "rshares": "0", - "voter": "misrori" - }, - { - "rshares": "0", - "voter": "afrikanprince" - }, - { - "rshares": "0", - "voter": "jjprac" - }, - { - "rshares": "0", - "voter": "ayuwandira" - }, - { - "rshares": "0", - "voter": "ilicoin" - }, - { - "rshares": "0", - "voter": "pkvlogs" - }, - { - "rshares": "0", - "voter": "bitstudio" - }, - { - "rshares": "0", - "voter": "taintedblood" - }, - { - "rshares": "0", - "voter": "epsicktick" - }, - { - "rshares": "0", - "voter": "csggene3" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - }, - { - "rshares": "0", - "voter": "geek4geek" - }, - { - "rshares": "0", - "voter": "kharrazi" - }, - { - "rshares": "0", - "voter": "zufrizal" - }, - { - "rshares": "0", - "voter": "academix87" - }, - { - "rshares": "0", - "voter": "planetenamek" - }, - { - "rshares": "0", - "voter": "muliaeko" - }, - { - "rshares": "0", - "voter": "boyjack" - }, - { - "rshares": "0", - "voter": "jatniel" - }, - { - "rshares": "0", - "voter": "juanangel40bcn" - }, - { - "rshares": "0", - "voter": "jodywrites" - }, - { - "rshares": "0", - "voter": "permatek" - }, - { - "rshares": "0", - "voter": "cyberspace" - }, - { - "rshares": "0", - "voter": "fareehasheharyar" - }, - { - "rshares": "0", - "voter": "saynie" - }, - { - "rshares": "0", - "voter": "plainoldme" - }, - { - "rshares": "0", - "voter": "razaqbarry" - }, - { - "rshares": "0", - "voter": "antoniokarteli" - }, - { - "rshares": "0", - "voter": "dream.trip" - }, - { - "rshares": "0", - "voter": "reinhardbaust" - }, - { - "rshares": "0", - "voter": "newpioneer" - }, - { - "rshares": "0", - "voter": "melvinbonner" - }, - { - "rshares": "0", - "voter": "zulfahmi2141" - }, - { - "rshares": "0", - "voter": "maninjapan1989" - }, - { - "rshares": "0", - "voter": "andravasko" - }, - { - "rshares": "0", - "voter": "gilma" - }, - { - "rshares": "0", - "voter": "tom74" - }, - { - "rshares": "0", - "voter": "josephfugata" - }, - { - "rshares": "0", - "voter": "bitcointauji" - }, - { - "rshares": "0", - "voter": "gray00" - }, - { - "rshares": "0", - "voter": "divyang101" - }, - { - "rshares": "0", - "voter": "bahagia-arbi" - }, - { - "rshares": "0", - "voter": "bhim" - }, - { - "rshares": "0", - "voter": "bickell" - }, - { - "rshares": "0", - "voter": "tfpostman" - }, - { - "rshares": "0", - "voter": "anujkumar" - }, - { - "rshares": "0", - "voter": "fbslo" - }, - { - "rshares": "0", - "voter": "renijuliani" - }, - { - "rshares": "0", - "voter": "setio" - }, - { - "rshares": "0", - "voter": "mooncryption" - }, - { - "rshares": "0", - "voter": "shintamonica" - }, - { - "rshares": "0", - "voter": "caratzky" - }, - { - "rshares": "0", - "voter": "komrad" - }, - { - "rshares": "0", - "voter": "therivernile" - }, - { - "rshares": "0", - "voter": "deep.gohil" - }, - { - "rshares": "0", - "voter": "thomasduder" - }, - { - "rshares": "0", - "voter": "sensistar" - }, - { - "rshares": "0", - "voter": "abdelone" - }, - { - "rshares": "0", - "voter": "gegec" - }, - { - "rshares": "0", - "voter": "ambmicheal" - }, - { - "rshares": "0", - "voter": "rincewind" - }, - { - "rshares": "0", - "voter": "alishannoor" - }, - { - "rshares": "0", - "voter": "ahhjoeinhk" - }, - { - "rshares": "0", - "voter": "kalhiade" - }, - { - "rshares": "0", - "voter": "faridrizkia" - }, - { - "rshares": "0", - "voter": "teamslovenia" - }, - { - "rshares": "0", - "voter": "xiaoshancun" - }, - { - "rshares": "0", - "voter": "mikewebb274" - }, - { - "rshares": "0", - "voter": "andrath" - }, - { - "rshares": "0", - "voter": "torosan" - }, - { - "rshares": "0", - "voter": "ghayas" - }, - { - "rshares": "0", - "voter": "krevasilis" - }, - { - "rshares": "0", - "voter": "koinbot" - }, - { - "rshares": "0", - "voter": "synergy-now" - }, - { - "rshares": "0", - "voter": "steemblogs" - }, - { - "rshares": "0", - "voter": "tujuhpelita" - }, - { - "rshares": "0", - "voter": "palani" - }, - { - "rshares": "0", - "voter": "as-i-see-it" - }, - { - "rshares": "0", - "voter": "heyeshuang" - }, - { - "rshares": "0", - "voter": "arslan786" - }, - { - "rshares": "0", - "voter": "cgf117" - }, - { - "rshares": "0", - "voter": "amazingtech100" - }, - { - "rshares": "0", - "voter": "dreamm" - }, - { - "rshares": "0", - "voter": "sweetssssj" - }, - { - "rshares": "0", - "voter": "ceikdo" - }, - { - "rshares": "0", - "voter": "sunsquall" - }, - { - "rshares": "0", - "voter": "muhammadilyas93" - }, - { - "rshares": "0", - "voter": "cre47iv3" - }, - { - "rshares": "0", - "voter": "joao-cacador" - }, - { - "rshares": "0", - "voter": "jamsphonna" - }, - { - "rshares": "0", - "voter": "abbak7" - }, - { - "rshares": "0", - "voter": "thelifeofjord" - }, - { - "rshares": "0", - "voter": "utpoldebnath" - }, - { - "rshares": "0", - "voter": "sagorkhan" - }, - { - "rshares": "0", - "voter": "shivpremi" - }, - { - "rshares": "0", - "voter": "shabbirahmad" - }, - { - "rshares": "0", - "voter": "ibeljr" - }, - { - "rshares": "0", - "voter": "umelard" - }, - { - "rshares": "0", - "voter": "stijndehaan" - }, - { - "rshares": "0", - "voter": "iamericmorrison" - }, - { - "rshares": "0", - "voter": "shiningstar" - }, - { - "rshares": "0", - "voter": "steemprojects1" - }, - { - "rshares": "0", - "voter": "steemprojects2" - }, - { - "rshares": "0", - "voter": "stuvi" - }, - { - "rshares": "0", - "voter": "zia161" - }, - { - "rshares": "0", - "voter": "arslanq" - }, - { - "rshares": "0", - "voter": "kevca16" - }, - { - "rshares": "0", - "voter": "mcreg" - }, - { - "rshares": "0", - "voter": "waheebisb" - }, - { - "rshares": "0", - "voter": "rizaokur" - }, - { - "rshares": "0", - "voter": "seanstein" - }, - { - "rshares": "0", - "voter": "piszozo" - }, - { - "rshares": "0", - "voter": "vicmariki" - }, - { - "rshares": "0", - "voter": "contribution" - }, - { - "rshares": "0", - "voter": "oep" - }, - { - "rshares": "0", - "voter": "akshitgrover" - }, - { - "rshares": "0", - "voter": "jackson12" - }, - { - "rshares": "0", - "voter": "dtldesign" - }, - { - "rshares": "0", - "voter": "h4ck3rm1k3st33m" - }, - { - "rshares": "0", - "voter": "smokeasare165" - }, - { - "rshares": "0", - "voter": "tinoschloegl" - }, - { - "rshares": "0", - "voter": "liftu" - }, - { - "rshares": "0", - "voter": "atul8888" - }, - { - "rshares": "0", - "voter": "goroshkodo" - }, - { - "rshares": "0", - "voter": "tarmizislow" - }, - { - "rshares": "0", - "voter": "nurmasyithah" - }, - { - "rshares": "0", - "voter": "ritikagupta" - }, - { - "rshares": "0", - "voter": "anniemohler" - }, - { - "rshares": "0", - "voter": "olaivart" - }, - { - "rshares": "0", - "voter": "thedrewshow" - }, - { - "rshares": "0", - "voter": "alpha27" - }, - { - "rshares": "0", - "voter": "adventuretours" - }, - { - "rshares": "0", - "voter": "advexon" - }, - { - "rshares": "0", - "voter": "cloudconnect" - }, - { - "rshares": "0", - "voter": "ontheverge" - }, - { - "rshares": "0", - "voter": "celsomichida" - }, - { - "rshares": "0", - "voter": "cannan" - }, - { - "rshares": "0", - "voter": "cloudbuster" - }, - { - "rshares": "0", - "voter": "adrienoor" - }, - { - "rshares": "0", - "voter": "hussnain" - }, - { - "rshares": "0", - "voter": "shanloth" - }, - { - "rshares": "0", - "voter": "samirnyaupane" - }, - { - "rshares": "0", - "voter": "slackeramericana" - }, - { - "rshares": "0", - "voter": "thabiggdogg" - }, - { - "rshares": "0", - "voter": "gilnambatac" - }, - { - "rshares": "0", - "voter": "withgraham" - }, - { - "rshares": "0", - "voter": "sephirot" - }, - { - "rshares": "0", - "voter": "coffeeman" - }, - { - "rshares": "0", - "voter": "stefunniy" - }, - { - "rshares": "0", - "voter": "ghanexs" - }, - { - "rshares": "0", - "voter": "razipelangi" - }, - { - "rshares": "0", - "voter": "dreamdiary" - }, - { - "rshares": "0", - "voter": "crypto4euro" - }, - { - "rshares": "0", - "voter": "rtsampa" - }, - { - "rshares": "0", - "voter": "mahi2raj" - }, - { - "rshares": "0", - "voter": "danyflores" - }, - { - "rshares": "0", - "voter": "oraclefrequency" - }, - { - "rshares": "0", - "voter": "kartikohri1712" - }, - { - "rshares": "0", - "voter": "cryptoaltcoin" - }, - { - "rshares": "0", - "voter": "einarscorner" - }, - { - "rshares": "0", - "voter": "dudithedoctor" - }, - { - "rshares": "0", - "voter": "dirapa" - }, - { - "rshares": "0", - "voter": "arfouche" - }, - { - "rshares": "0", - "voter": "kristenbruce" - }, - { - "rshares": "0", - "voter": "okclear" - }, - { - "rshares": "0", - "voter": "mysearchisover" - }, - { - "rshares": "0", - "voter": "dropd" - }, - { - "rshares": "0", - "voter": "rulilesmana" - }, - { - "rshares": "0", - "voter": "cryptomaniac6" - }, - { - "rshares": "0", - "voter": "kim3ra" - }, - { - "rshares": "0", - "voter": "movement19" - }, - { - "rshares": "0", - "voter": "aacr07" - }, - { - "rshares": "0", - "voter": "layra" - }, - { - "rshares": "0", - "voter": "vardhanbtc" - }, - { - "rshares": "0", - "voter": "azeemprime" - }, - { - "rshares": "0", - "voter": "dbnx" - }, - { - "rshares": "0", - "voter": "shredz7" - }, - { - "rshares": "0", - "voter": "bitstreamgains" - }, - { - "rshares": "0", - "voter": "hendrimaca" - }, - { - "rshares": "0", - "voter": "aan01" - }, - { - "rshares": "0", - "voter": "successmindset" - }, - { - "rshares": "0", - "voter": "hatu" - }, - { - "rshares": "0", - "voter": "khabirulhafiz" - }, - { - "rshares": "0", - "voter": "yady" - }, - { - "rshares": "0", - "voter": "samsonjura1" - }, - { - "rshares": "0", - "voter": "ambitiouslife" - }, - { - "rshares": "0", - "voter": "whyse" - }, - { - "rshares": "0", - "voter": "skyflow" - }, - { - "rshares": "0", - "voter": "kimtoma" - }, - { - "rshares": "0", - "voter": "asherunderwood" - }, - { - "rshares": "0", - "voter": "lorden" - }, - { - "rshares": "0", - "voter": "juicyvegandwarf" - }, - { - "rshares": "0", - "voter": "ushan007" - }, - { - "rshares": "0", - "voter": "ihsan6837" - }, - { - "rshares": "0", - "voter": "suryarose" - }, - { - "rshares": "0", - "voter": "sol7142" - }, - { - "rshares": "0", - "voter": "fikrialoy" - }, - { - "rshares": "0", - "voter": "mr-lahey" - }, - { - "rshares": "0", - "voter": "mahsabmirza" - }, - { - "rshares": "0", - "voter": "pwangdu" - }, - { - "rshares": "0", - "voter": "salda" - }, - { - "rshares": "0", - "voter": "muzzlealem" - }, - { - "rshares": "0", - "voter": "pakjos" - }, - { - "rshares": "0", - "voter": "mhdfadhal" - }, - { - "rshares": "0", - "voter": "dannykastner" - }, - { - "rshares": "0", - "voter": "ibul11" - }, - { - "rshares": "0", - "voter": "nigtroy" - }, - { - "rshares": "0", - "voter": "uripsurya" - }, - { - "rshares": "0", - "voter": "jazman.zhens" - }, - { - "rshares": "0", - "voter": "intervote" - }, - { - "rshares": "0", - "voter": "mahend" - }, - { - "rshares": "0", - "voter": "anandasungkar" - }, - { - "rshares": "0", - "voter": "homeless.global" - }, - { - "rshares": "0", - "voter": "intansteemityes" - }, - { - "rshares": "0", - "voter": "perminus-gaita" - }, - { - "rshares": "0", - "voter": "phost" - }, - { - "rshares": "0", - "voter": "debart" - }, - { - "rshares": "0", - "voter": "blurrydude" - }, - { - "rshares": "0", - "voter": "tsnaks" - }, - { - "rshares": "0", - "voter": "legendchew" - }, - { - "rshares": "0", - "voter": "cryptonegocios" - }, - { - "rshares": "0", - "voter": "alexcozzy" - }, - { - "rshares": "0", - "voter": "joe.ster" - }, - { - "rshares": "0", - "voter": "pandu13" - }, - { - "rshares": "0", - "voter": "sasakhan" - }, - { - "rshares": "0", - "voter": "faisalyus" - }, - { - "rshares": "0", - "voter": "sawyn" - }, - { - "rshares": "0", - "voter": "diegocedenno" - }, - { - "rshares": "0", - "voter": "calebotamus" - }, - { - "rshares": "0", - "voter": "lsanneh78128" - }, - { - "rshares": "0", - "voter": "nazaruddin885" - }, - { - "rshares": "0", - "voter": "chaseburnett" - }, - { - "rshares": "0", - "voter": "sisirhasan" - }, - { - "rshares": "0", - "voter": "donyanyo" - }, - { - "rshares": "0", - "voter": "oregontravel" - }, - { - "rshares": "0", - "voter": "luegenbaron" - }, - { - "rshares": "0", - "voter": "edkrassenstein" - }, - { - "rshares": "0", - "voter": "munawirawin" - }, - { - "rshares": "0", - "voter": "salgetra" - }, - { - "rshares": "0", - "voter": "zaxan" - }, - { - "rshares": "0", - "voter": "rollings" - }, - { - "rshares": "0", - "voter": "kyle07" - }, - { - "rshares": "0", - "voter": "pchanger" - }, - { - "rshares": "0", - "voter": "uncleboy" - }, - { - "rshares": "0", - "voter": "alfhi" - }, - { - "rshares": "0", - "voter": "htetmyathtut" - }, - { - "rshares": "0", - "voter": "trisolaran" - }, - { - "rshares": "0", - "voter": "arafs" - }, - { - "rshares": "0", - "voter": "abysoyjoy" - }, - { - "rshares": "0", - "voter": "stylo419" - }, - { - "rshares": "0", - "voter": "cookntell" - }, - { - "rshares": "0", - "voter": "rakkarage" - }, - { - "rshares": "0", - "voter": "grasozauru" - }, - { - "rshares": "0", - "voter": "norabx" - }, - { - "rshares": "0", - "voter": "joyvancouver" - }, - { - "rshares": "0", - "voter": "antchatz" - }, - { - "rshares": "0", - "voter": "tutchpa" - }, - { - "rshares": "0", - "voter": "cosmophobia" - }, - { - "rshares": "0", - "voter": "rajaji" - }, - { - "rshares": "0", - "voter": "liqquid" - }, - { - "rshares": "0", - "voter": "aceh-post" - }, - { - "rshares": "0", - "voter": "dannanares" - }, - { - "rshares": "0", - "voter": "husana" - }, - { - "rshares": "0", - "voter": "davidmichael" - }, - { - "rshares": "0", - "voter": "wprpn" - }, - { - "rshares": "0", - "voter": "datuparulas17" - }, - { - "rshares": "0", - "voter": "trie" - }, - { - "rshares": "0", - "voter": "chirstonawba" - }, - { - "rshares": "0", - "voter": "sulaiman86" - }, - { - "rshares": "0", - "voter": "electronicsworld" - }, - { - "rshares": "0", - "voter": "engrravijain" - }, - { - "rshares": "0", - "voter": "alfredolopez1980" - }, - { - "rshares": "0", - "voter": "gustavomonraz" - }, - { - "rshares": "0", - "voter": "tahoorsaleem" - }, - { - "rshares": "0", - "voter": "starfinger13" - }, - { - "rshares": "0", - "voter": "conscalisthenics" - }, - { - "rshares": "0", - "voter": "syd44723" - }, - { - "rshares": "0", - "voter": "sutter" - }, - { - "rshares": "0", - "voter": "samsonite18654" - }, - { - "rshares": "0", - "voter": "iqra.naz" - }, - { - "rshares": "0", - "voter": "drezz" - }, - { - "rshares": "0", - "voter": "cutelace" - }, - { - "rshares": "0", - "voter": "chirstonawba5" - }, - { - "rshares": "0", - "voter": "devkapoor423" - }, - { - "rshares": "0", - "voter": "blanchy" - }, - { - "rshares": "0", - "voter": "rakeshban357" - }, - { - "rshares": "0", - "voter": "douglasjames" - }, - { - "rshares": "0", - "voter": "michaelabbas" - }, - { - "rshares": "0", - "voter": "gonewithwind" - }, - { - "rshares": "0", - "voter": "snow.owl" - }, - { - "rshares": "0", - "voter": "tonthatthienvu" - }, - { - "rshares": "0", - "voter": "strangeworldnews" - }, - { - "rshares": "0", - "voter": "dogra" - }, - { - "rshares": "0", - "voter": "umairx97" - }, - { - "rshares": "0", - "voter": "coolpeopleifb" - }, - { - "rshares": "0", - "voter": "gabu01" - }, - { - "rshares": "0", - "voter": "magicalbot" - }, - { - "rshares": "0", - "voter": "f21steem" - }, - { - "rshares": "0", - "voter": "hoobit" - }, - { - "rshares": "0", - "voter": "ivancraigcaine" - }, - { - "rshares": "0", - "voter": "kranko" - }, - { - "rshares": "0", - "voter": "successinwork" - }, - { - "rshares": "0", - "voter": "abfelix96" - }, - { - "rshares": "0", - "voter": "maldonadog" - }, - { - "rshares": "0", - "voter": "drakeler" - }, - { - "rshares": "0", - "voter": "cyrex88" - }, - { - "rshares": "0", - "voter": "rikyu" - }, - { - "rshares": "0", - "voter": "krimimimi" - }, - { - "rshares": "0", - "voter": "johannav" - } - ], - "author": "steemit", - "author_payout_value": "0.942 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "category": "meta", - "children": 430, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "payout": 1.698, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 92 - }, - "title": "Welcome to Steem!", - "updated": "2016-03-30T18:30:18", - "url": "/meta/@steemit/firstpost" + "active_votes": [ + { + "rshares": "375241", + "voter": "dantheman" + }, + { + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "rshares": "5100", + "voter": "steemit78" + }, + { + "rshares": "1259167", + "voter": "anonymous" + }, + { + "rshares": "318519", + "voter": "hello" + }, + { + "rshares": "153384", + "voter": "world" + }, + { + "rshares": "-936400", + "voter": "ned" + }, + { + "rshares": "59412", + "voter": "fufubar1" + }, + { + "rshares": "14997", + "voter": "anonymous1" + }, + { + "rshares": "1441", + "voter": "red" + }, + { + "rshares": "551390835500", + "voter": "liondani" + }, + { + "rshares": "82748", + "voter": "roadscape" + }, + { + "rshares": "10772", + "voter": "xeroc" + }, + { + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "rshares": "498863058", + "voter": "joelinux" + }, + { + "rshares": "9590417", + "voter": "piranhax" + }, + { + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "rshares": "422984262", + "voter": "acidyo" + }, + { + "rshares": "47179379651", + "voter": "tosch" + }, + { + "rshares": "7831667988", + "voter": "klye" + }, + { + "rshares": "1019950749", + "voter": "coar" + }, + { + "rshares": "1746058458", + "voter": "murh" + }, + { + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "rshares": "0", + "voter": "hien-tran" + }, + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "40624969", + "voter": "ben99" + }, + { + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "rshares": "917398502", + "voter": "decrypt" + }, + { + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "rshares": "1037079223", + "voter": "condra" + }, + { + "rshares": "233032838", + "voter": "jearson" + }, + { + "rshares": "240809500", + "voter": "tritium" + }, + { + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "rshares": "226074637", + "voter": "artjedi" + }, + { + "rshares": "931542394", + "voter": "anduweb" + }, + { + "rshares": "2292983350", + "voter": "inertia" + }, + { + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "rshares": "266262926", + "voter": "desmonid" + }, + { + "rshares": "71498008", + "voter": "madhatting" + }, + { + "rshares": "23726644841", + "voter": "ubg" + }, + { + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "rshares": "131577259", + "voter": "gribgo" + }, + { + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "rshares": "28907874049", + "voter": "orm" + }, + { + "rshares": "528988007", + "voter": "qonq99" + }, + { + "rshares": "129537329", + "voter": "rd7783" + }, + { + "rshares": "615020728", + "voter": "slava" + }, + { + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "rshares": "95219365", + "voter": "curator" + }, + { + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "rshares": "0", + "voter": "solos" + }, + { + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "rshares": "0", + "voter": "blysards" + }, + { + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "rshares": "1279854", + "voter": "nigmat" + }, + { + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "rshares": "10847083143", + "voter": "metrox" + }, + { + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "rshares": "710989138", + "voter": "romancs" + }, + { + "rshares": "59366614", + "voter": "luke490" + }, + { + "rshares": "58762473", + "voter": "bro66" + }, + { + "rshares": "201822591", + "voter": "future24" + }, + { + "rshares": "58623688", + "voter": "mythras" + }, + { + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "rshares": "0", + "voter": "matrixdweller" + }, + { + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "rshares": "54761612", + "voter": "edbriv" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "rshares": "52740989", + "voter": "tcstix" + }, + { + "rshares": "49467477", + "voter": "friedwater" + }, + { + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "rshares": "54017869", + "voter": "zelious" + }, + { + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "rshares": "53196086", + "voter": "f1111111" + }, + { + "rshares": "0", + "voter": "anomaly" + }, + { + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "rshares": "0", + "voter": "buckland" + }, + { + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_payout_value": "0.942 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "payout": 1.698, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 92 + }, + "title": "Welcome to Steem!", + "updated": "2016-03-30T18:30:18", + "url": "/meta/@steemit/firstpost" } \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_profile.pat.json b/hivemind/tavern/bridge_api_patterns/get_profile.pat.json index ada2dc4c..c3d9688c 100644 --- a/hivemind/tavern/bridge_api_patterns/get_profile.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_profile.pat.json @@ -1,25 +1,25 @@ { - "active": "1970-01-01T00:00:00", - "blacklists": [], - "created": "2016-03-24T17:00:21", - "id": 29, - "metadata": { - "profile": { - "about": null, - "cover_image": "", - "location": null, - "name": null, - "profile_image": "", - "website": null - } - }, - "name": "steemit", - "post_count": 0, - "reputation": 25.0, - "stats": { - "followers": 175, - "following": 0, - "rank": 0, - "sp": 0 + "active": "1970-01-01T00:00:00", + "blacklists": [], + "created": "2016-03-24T17:00:21", + "id": 29, + "metadata": { + "profile": { + "about": null, + "cover_image": "", + "location": null, + "name": null, + "profile_image": "", + "website": null } + }, + "name": "steemit", + "post_count": 0, + "reputation": 25.0, + "stats": { + "followers": 175, + "following": 0, + "rank": 0, + "sp": 0 + } } diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json index a4050b1d..bf7f5601 100644 --- a/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json @@ -1,22584 +1,23932 @@ [ { - "active_votes": [ - { - "rshares": "193009637111191", - "voter": "blocktrades" - }, - { - "rshares": "56069292887", - "voter": "tombstone" - }, - { - "rshares": "21605350939", - "voter": "fractalnode" - }, - { - "rshares": "666953739323", - "voter": "ash" - }, - { - "rshares": "1276210261252", - "voter": "kevinwong" - }, - { - "rshares": "481512251850", - "voter": "mark-waser" - }, - { - "rshares": "1622497427616", - "voter": "gerber" - }, - { - "rshares": "1171553668726", - "voter": "good-karma" - }, - { - "rshares": "1779343392392", - "voter": "ezzy" - }, - { - "rshares": "5118263876", - "voter": "mrwang" - }, - { - "rshares": "3328741627810", - "voter": "deanliu" - }, - { - "rshares": "2118104964321", - "voter": "exyle" - }, - { - "rshares": "5039540187", - "voter": "sharker" - }, - { - "rshares": "558972425066", - "voter": "bowess" - }, - { - "rshares": "5352166148", - "voter": "arconite" - }, - { - "rshares": "4029965092", - "voter": "kibela" - }, - { - "rshares": "47452391111", - "voter": "laoyao" - }, - { - "rshares": "2249044383", - "voter": "somebody" - }, - { - "rshares": "166528627149", - "voter": "midnightoil" - }, - { - "rshares": "538751958", - "voter": "alinalazareva" - }, - { - "rshares": "942160855368", - "voter": "xiaohui" - }, - { - "rshares": "1055610741", - "voter": "koko" - }, - { - "rshares": "9154574997991", - "voter": "jphamer1" - }, - { - "rshares": "3685198350565", - "voter": "joele" - }, - { - "rshares": "4763434713037", - "voter": "oflyhigh" - }, - { - "rshares": "30158287686", - "voter": "fooblic" - }, - { - "rshares": "393215579259", - "voter": "borran" - }, - { - "rshares": "16734987097", - "voter": "yulan" - }, - { - "rshares": "9388331393", - "voter": "anech512" - }, - { - "rshares": "1239477457259", - "voter": "helene" - }, - { - "rshares": "87439667908", - "voter": "ethansteem" - }, - { - "rshares": "446543873515", - "voter": "netaterra" - }, - { - "rshares": "706597710479", - "voter": "themonetaryfew" - }, - { - "rshares": "132259281513", - "voter": "foxkoit" - }, - { - "rshares": "156185814442", - "voter": "uwelang" - }, - { - "rshares": "451831548435", - "voter": "digital-wisdom" - }, - { - "rshares": "1884963824", - "voter": "ethical-ai" - }, - { - "rshares": "100605559026", - "voter": "titusfrost" - }, - { - "rshares": "22993585306", - "voter": "jwaser" - }, - { - "rshares": "54644463687", - "voter": "phusionphil" - }, - { - "rshares": "110997221689", - "voter": "petrvl" - }, - { - "rshares": "14008786170", - "voter": "bwaser" - }, - { - "rshares": "3284023084541", - "voter": "gringalicious" - }, - { - "rshares": "3540558885", - "voter": "funnyman" - }, - { - "rshares": "1450779279", - "voter": "ellepdub" - }, - { - "rshares": "148914210786", - "voter": "herpetologyguy" - }, - { - "rshares": "18031253297", - "voter": "freshfund" - }, - { - "rshares": "27590795643", - "voter": "morgan.waser" - }, - { - "rshares": "9931355795", - "voter": "whoib" - }, - { - "rshares": "82332409850", - "voter": "lloyddavis" - }, - { - "rshares": "3498615789", - "voter": "handyman" - }, - { - "rshares": "1960279701", - "voter": "strong-ai" - }, - { - "rshares": "2531825516", - "voter": "syahhiran" - }, - { - "rshares": "274317277642", - "voter": "busy.pay" - }, - { - "rshares": "209883853082", - "voter": "jaybird" - }, - { - "rshares": "1364194745632", - "voter": "redes" - }, - { - "rshares": "3459165105", - "voter": "sward" - }, - { - "rshares": "3276258730", - "voter": "devilwsy" - }, - { - "rshares": "3279460452", - "voter": "janiceting" - }, - { - "rshares": "346090769568", - "voter": "busy.org" - }, - { - "rshares": "5779121603964", - "voter": "esteemapp" - }, - { - "rshares": "909481001", - "voter": "technoprogressiv" - }, - { - "rshares": "1860957272", - "voter": "mow" - }, - { - "rshares": "89710010671", - "voter": "ixindamix" - }, - { - "rshares": "8158824405", - "voter": "cardboard" - }, - { - "rshares": "55444137179", - "voter": "askari" - }, - { - "rshares": "74491071947", - "voter": "blackbunny" - }, - { - "rshares": "63578075355", - "voter": "deadspace" - }, - { - "rshares": "7143151370", - "voter": "automaton" - }, - { - "rshares": "595939703994", - "voter": "distantsignal" - }, - { - "rshares": "82548314021", - "voter": "lingfei" - }, - { - "rshares": "3329156826", - "voter": "radiv" - }, - { - "rshares": "18760582724", - "voter": "culturearise369" - }, - { - "rshares": "463898717", - "voter": "yyyy" - }, - { - "rshares": "1732535326", - "voter": "kanedizzle08" - }, - { - "rshares": "35087062517", - "voter": "eirik" - }, - { - "rshares": "139794646566", - "voter": "louisthomas" - }, - { - "rshares": "808597671", - "voter": "dapu" - }, - { - "rshares": "115960579671", - "voter": "melinda010100" - }, - { - "rshares": "83764279946", - "voter": "dune69" - }, - { - "rshares": "1503542321764", - "voter": "smasssh" - }, - { - "rshares": "1814494036", - "voter": "mrstaf" - }, - { - "rshares": "5448400852", - "voter": "kennyroy" - }, - { - "rshares": "268688737518", - "voter": "drag33" - }, - { - "rshares": "11326887288", - "voter": "mys" - }, - { - "rshares": "85647753816", - "voter": "fullofhope" - }, - { - "rshares": "4478686977058", - "voter": "nrg" - }, - { - "rshares": "3181436475", - "voter": "varunpinto" - }, - { - "rshares": "20236098004", - "voter": "theywillkillyou" - }, - { - "rshares": "10146356690", - "voter": "wishmaiden" - }, - { - "rshares": "251004142711", - "voter": "exec" - }, - { - "rshares": "858184907", - "voter": "eval" - }, - { - "rshares": "594252643", - "voter": "taitux" - }, - { - "rshares": "19133275644", - "voter": "mdosev" - }, - { - "rshares": "18757584330", - "voter": "belahejna" - }, - { - "rshares": "129106580582", - "voter": "maxer27" - }, - { - "rshares": "12072985228", - "voter": "johnlue" - }, - { - "rshares": "4373167293", - "voter": "whd" - }, - { - "rshares": "3492556560454", - "voter": "netuoso" - }, - { - "rshares": "4820052556", - "voter": "roxane" - }, - { - "rshares": "6187724549", - "voter": "d-pend" - }, - { - "rshares": "4339875374883", - "voter": "gunthertopp" - }, - { - "rshares": "2159337333", - "voter": "britcoins" - }, - { - "rshares": "46892332215", - "voter": "khoon" - }, - { - "rshares": "3769802094", - "voter": "maskur2840" - }, - { - "rshares": "78502655409", - "voter": "goldkey" - }, - { - "rshares": "1594610366", - "voter": "rafalski" - }, - { - "rshares": "152002793097", - "voter": "drorion" - }, - { - "rshares": "47482243606", - "voter": "face2face" - }, - { - "rshares": "154640630958", - "voter": "hope-on-fire" - }, - { - "rshares": "888942596", - "voter": "nicniezgrublem" - }, - { - "rshares": "8256184113", - "voter": "shitsignals" - }, - { - "rshares": "2184970835", - "voter": "attajuttjj" - }, - { - "rshares": "8019244727", - "voter": "owner99" - }, - { - "rshares": "847204738462", - "voter": "stayoutoftherz" - }, - { - "rshares": "287654859316", - "voter": "sanjeevm" - }, - { - "rshares": "714927673", - "voter": "teukumuhas" - }, - { - "rshares": "1301268936243", - "voter": "steemvote" - }, - { - "rshares": "264656016240", - "voter": "investingpennies" - }, - { - "rshares": "27407649915", - "voter": "pocketrocket" - }, - { - "rshares": "1437579861", - "voter": "steemik" - }, - { - "rshares": "23827858217", - "voter": "azirgraff" - }, - { - "rshares": "2955770171", - "voter": "leyla5" - }, - { - "rshares": "75103137023", - "voter": "horpey" - }, - { - "rshares": "131520923086", - "voter": "shanibeer" - }, - { - "rshares": "18355579068", - "voter": "dunsky" - }, - { - "rshares": "392753034710", - "voter": "noboxes" - }, - { - "rshares": "111196000864", - "voter": "felander" - }, - { - "rshares": "23889822446", - "voter": "santigs" - }, - { - "rshares": "877658368", - "voter": "ekkah" - }, - { - "rshares": "3052494944522", - "voter": "stoodkev" - }, - { - "rshares": "49951634419", - "voter": "pele23" - }, - { - "rshares": "1604303976", - "voter": "jaalig" - }, - { - "rshares": "8988972982", - "voter": "kimzwarch" - }, - { - "rshares": "939085665", - "voter": "saltiberra" - }, - { - "rshares": "667544733", - "voter": "nurhayati" - }, - { - "rshares": "7065703400", - "voter": "fbslo" - }, - { - "rshares": "685500125", - "voter": "azizpase" - }, - { - "rshares": "50174861371", - "voter": "accelerator" - }, - { - "rshares": "3091647364", - "voter": "justinparke" - }, - { - "rshares": "9534138905", - "voter": "apasia.tech" - }, - { - "rshares": "10598562760", - "voter": "yogacoach" - }, - { - "rshares": "59581008821", - "voter": "rosatravels" - }, - { - "rshares": "62018790859", - "voter": "cotarelo" - }, - { - "rshares": "24045032598", - "voter": "deathwing" - }, - { - "rshares": "658064146", - "voter": "steembet.asia" - }, - { - "rshares": "1779748815", - "voter": "acehnature" - }, - { - "rshares": "52542345975", - "voter": "littleboy" - }, - { - "rshares": "8594291059", - "voter": "shadflyfilms" - }, - { - "rshares": "37653897065", - "voter": "daisyphotography" - }, - { - "rshares": "498192955657", - "voter": "gank" - }, - { - "rshares": "23672495435", - "voter": "macmaniac77" - }, - { - "rshares": "967254332", - "voter": "enolife" - }, - { - "rshares": "919184321", - "voter": "ipolatjeh1988" - }, - { - "rshares": "766150744", - "voter": "liverpool-fan" - }, - { - "rshares": "1816653804", - "voter": "kimchi-king" - }, - { - "rshares": "1545165605", - "voter": "feelx" - }, - { - "rshares": "84898127133", - "voter": "caladan" - }, - { - "rshares": "2535582667", - "voter": "cryptotradingfr" - }, - { - "rshares": "15915000669", - "voter": "joseph1956" - }, - { - "rshares": "10874751559", - "voter": "tradingideas" - }, - { - "rshares": "363051654", - "voter": "blockbrothers" - }, - { - "rshares": "4436916780", - "voter": "g10a" - }, - { - "rshares": "548006419553", - "voter": "emrebeyler" - }, - { - "rshares": "1738667771", - "voter": "awesome-gadgets" - }, - { - "rshares": "35419612367", - "voter": "itchyfeetdonica" - }, - { - "rshares": "9072469561", - "voter": "funtraveller" - }, - { - "rshares": "90160505588", - "voter": "lyon89" - }, - { - "rshares": "1245998476", - "voter": "andisantos" - }, - { - "rshares": "20055259096", - "voter": "spiritabsolute" - }, - { - "rshares": "19410721914", - "voter": "mamaloves" - }, - { - "rshares": "1786769041", - "voter": "blinks" - }, - { - "rshares": "2501533253", - "voter": "godlovermel25" - }, - { - "rshares": "5951920722", - "voter": "tomatom" - }, - { - "rshares": "6678825426", - "voter": "fourfourfun" - }, - { - "rshares": "4633774260", - "voter": "candyboy" - }, - { - "rshares": "1059751632", - "voter": "jewel-lover" - }, - { - "rshares": "25668238195", - "voter": "gabrielatravels" - }, - { - "rshares": "36162290981", - "voter": "alexanderfluke" - }, - { - "rshares": "150282905899", - "voter": "mmmmkkkk311" - }, - { - "rshares": "4555798793987", - "voter": "znnuksfe" - }, - { - "rshares": "592437729463", - "voter": "nealmcspadden" - }, - { - "rshares": "1995336675", - "voter": "everything-4you" - }, - { - "rshares": "362308484939", - "voter": "purefood" - }, - { - "rshares": "730934261", - "voter": "abandi" - }, - { - "rshares": "3707537053", - "voter": "aakom" - }, - { - "rshares": "30672796554", - "voter": "patinya103" - }, - { - "rshares": "39734777929", - "voter": "warnas" - }, - { - "rshares": "1113742734", - "voter": "naylinn" - }, - { - "rshares": "6786107814", - "voter": "marc-allaria" - }, - { - "rshares": "2258567209", - "voter": "basristeemit" - }, - { - "rshares": "536869290", - "voter": "cfminer" - }, - { - "rshares": "42070208063", - "voter": "trincowski" - }, - { - "rshares": "9743883781", - "voter": "best-strategy" - }, - { - "rshares": "1012714193224", - "voter": "chronocrypto" - }, - { - "rshares": "821464571", - "voter": "rachmaddarmawan" - }, - { - "rshares": "10292345006", - "voter": "yadah04" - }, - { - "rshares": "776838500", - "voter": "pelephotography" - }, - { - "rshares": "2214266870", - "voter": "unconditionalove" - }, - { - "rshares": "47236316127", - "voter": "cadawg" - }, - { - "rshares": "891734566", - "voter": "gavinatorial" - }, - { - "rshares": "1817728814", - "voter": "minerspost" - }, - { - "rshares": "3272152652", - "voter": "felixgarciap" - }, - { - "rshares": "22298663517", - "voter": "photohunt" - }, - { - "rshares": "724817338", - "voter": "photohunter1" - }, - { - "rshares": "1109387587", - "voter": "photohunter4" - }, - { - "rshares": "9976150135", - "voter": "pkocjan" - }, - { - "rshares": "9149543412", - "voter": "dasc" - }, - { - "rshares": "49596966858", - "voter": "cst90" - }, - { - "rshares": "57328644148", - "voter": "edgargonzalez" - }, - { - "rshares": "31133689674", - "voter": "thomasthewolf" - }, - { - "rshares": "516741973623", - "voter": "backinblackdevil" - }, - { - "rshares": "8271756768", - "voter": "frassman" - }, - { - "rshares": "13294744944", - "voter": "ambitiouslife" - }, - { - "rshares": "42734486091", - "voter": "goldenproject" - }, - { - "rshares": "1479573307", - "voter": "beleg" - }, - { - "rshares": "2572255355", - "voter": "bdlatif" - }, - { - "rshares": "86296450963", - "voter": "bestboom" - }, - { - "rshares": "11297496934", - "voter": "goldvault" - }, - { - "rshares": "5358119768", - "voter": "jan23com" - }, - { - "rshares": "1029110644910", - "voter": "jkramer" - }, - { - "rshares": "22766162181", - "voter": "radard" - }, - { - "rshares": "4842541028", - "voter": "wolfhart" - }, - { - "rshares": "23029438823", - "voter": "m2nnari" - }, - { - "rshares": "1687795703", - "voter": "talhasch" - }, - { - "rshares": "92016757690", - "voter": "freddio" - }, - { - "rshares": "1080110783", - "voter": "abdullahj" - }, - { - "rshares": "3018851272", - "voter": "memepress" - }, - { - "rshares": "3326475885", - "voter": "choco11oreo11" - }, - { - "rshares": "5528788125", - "voter": "michellpiala" - }, - { - "rshares": "2346137359", - "voter": "abdurrahman7" - }, - { - "rshares": "72319547487", - "voter": "good-darma" - }, - { - "rshares": "27210893193", - "voter": "tsnaks" - }, - { - "rshares": "49517173595", - "voter": "petertag" - }, - { - "rshares": "1999436926", - "voter": "gbg" - }, - { - "rshares": "153843825405", - "voter": "promobot" - }, - { - "rshares": "6431073866", - "voter": "glodniwiedzy" - }, - { - "rshares": "246272630804", - "voter": "silveringots" - }, - { - "rshares": "888318118", - "voter": "jpchabry" - }, - { - "rshares": "28584046684", - "voter": "rozku" - }, - { - "rshares": "4426077512", - "voter": "celinavisaez" - }, - { - "rshares": "31571016120", - "voter": "marcoteixeira" - }, - { - "rshares": "596070479", - "voter": "sayago" - }, - { - "rshares": "7506453039", - "voter": "davidesimoncini" - }, - { - "rshares": "68397002912", - "voter": "competeapp" - }, - { - "rshares": "13966434939", - "voter": "akdx" - }, - { - "rshares": "567875873", - "voter": "angatt" - }, - { - "rshares": "145477021574", - "voter": "steem-tube" - }, - { - "rshares": "12508870298", - "voter": "sherrycato" - }, - { - "rshares": "40164534947", - "voter": "xiguang" - }, - { - "rshares": "2146919279", - "voter": "nfaith" - }, - { - "rshares": "4119132684", - "voter": "dipoabasch" - }, - { - "rshares": "181650116285", - "voter": "digital.mine" - }, - { - "rshares": "13238359223", - "voter": "swisswitness" - }, - { - "rshares": "0", - "voter": "putehs" - }, - { - "rshares": "16847510924", - "voter": "maquemali" - }, - { - "rshares": "41494771634", - "voter": "annephilbrick" - }, - { - "rshares": "1400775973", - "voter": "gallerani" - }, - { - "rshares": "12273359214", - "voter": "yestermorrow" - }, - { - "rshares": "42047256639", - "voter": "thehive" - }, - { - "rshares": "1098702813", - "voter": "ekafao" - }, - { - "rshares": "770859573", - "voter": "arrixion" - }, - { - "rshares": "7372839883", - "voter": "minnowspeed" - }, - { - "rshares": "5039399214", - "voter": "littleshadow" - }, - { - "rshares": "280694901857", - "voter": "dlike" - }, - { - "rshares": "2152696151", - "voter": "triptolemus" - }, - { - "rshares": "680740581", - "voter": "lover-steem" - }, - { - "rshares": "5911410017", - "voter": "gorbisan" - }, - { - "rshares": "1696251587", - "voter": "joseph6232" - }, - { - "rshares": "3055084755", - "voter": "emaillisahere" - }, - { - "rshares": "603965845", - "voter": "buzzbee" - }, - { - "rshares": "2008502345", - "voter": "mysia" - }, - { - "rshares": "303022488638", - "voter": "engrave" - }, - { - "rshares": "1573679385", - "voter": "sunit" - }, - { - "rshares": "971775653", - "voter": "chike4545" - }, - { - "rshares": "3815560667", - "voter": "caoimhin" - }, - { - "rshares": "35259813741", - "voter": "a-bot" - }, - { - "rshares": "9222805885", - "voter": "bobby.madagascar" - }, - { - "rshares": "1383726638", - "voter": "djtrucker" - }, - { - "rshares": "1593977", - "voter": "laissez-faire" - }, - { - "rshares": "654456242", - "voter": "steemituplife" - }, - { - "rshares": "126908861657", - "voter": "agromeror" - }, - { - "rshares": "40478249709", - "voter": "marshalmugi" - }, - { - "rshares": "1613349984", - "voter": "podg3" - }, - { - "rshares": "12391364343", - "voter": "silvervault" - }, - { - "rshares": "4802394095", - "voter": "cryptycoon" - }, - { - "rshares": "4676647181", - "voter": "misstaken" - }, - { - "rshares": "784527454", - "voter": "imammudarifqi" - }, - { - "rshares": "3906824113", - "voter": "jackofcrows" - }, - { - "rshares": "691758819", - "voter": "malricinferno" - }, - { - "rshares": "728176287", - "voter": "zintarmortalis" - }, - { - "rshares": "820495800", - "voter": "natur-pur" - }, - { - "rshares": "2742052658", - "voter": "ldp" - }, - { - "rshares": "34687499201", - "voter": "steemitcuration" - }, - { - "rshares": "940899580", - "voter": "esteemapp.rus" - }, - { - "rshares": "1807820275", - "voter": "thrasher666" - }, - { - "rshares": "650365263", - "voter": "tebarsuara" - }, - { - "rshares": "15572125235", - "voter": "barbarabezina" - }, - { - "rshares": "515219915", - "voter": "everyoung" - }, - { - "rshares": "657002711", - "voter": "jensopinion" - }, - { - "rshares": "277921443910", - "voter": "forecasteem" - }, - { - "rshares": "247392085", - "voter": "gomdory" - }, - { - "rshares": "2811579687", - "voter": "xeroxnet69" - }, - { - "rshares": "129156552840", - "voter": "followjohngalt" - }, - { - "rshares": "1825178091", - "voter": "carbodexkim" - }, - { - "rshares": "1422798111", - "voter": "daisybuzz" - }, - { - "rshares": "1862157979", - "voter": "jussbren" - }, - { - "rshares": "-121753598", - "voter": "dein-problem" - }, - { - "rshares": "2289937210", - "voter": "xoxoone9" - }, - { - "rshares": "1061020225", - "voter": "smonia" - }, - { - "rshares": "596317907", - "voter": "starrouge" - }, - { - "rshares": "4883969794", - "voter": "unit101" - }, - { - "rshares": "7759893735", - "voter": "littlegurl747" - }, - { - "rshares": "499430313358", - "voter": "wherein" - }, - { - "rshares": "1767907761", - "voter": "martinstomisin" - }, - { - "rshares": "1284836355", - "voter": "smon-fan" - }, - { - "rshares": "733710623", - "voter": "seekingalpha" - }, - { - "rshares": "959418114", - "voter": "cryptoninja.guru" - }, - { - "rshares": "686955242", - "voter": "tr777" - }, - { - "rshares": "567084914", - "voter": "sm-jewel" - }, - { - "rshares": "540524700", - "voter": "tr77" - }, - { - "rshares": "570960237", - "voter": "smoner" - }, - { - "rshares": "1687132196", - "voter": "flyingbolt" - }, - { - "rshares": "1366877123", - "voter": "determine" - }, - { - "rshares": "797754932", - "voter": "smonian" - }, - { - "rshares": "225997539042", - "voter": "altooq" - }, - { - "rshares": "176186032010", - "voter": "cnstm" - }, - { - "rshares": "4547689189", - "voter": "permaculturedude" - }, - { - "rshares": "3880061711", - "voter": "likuang007" - }, - { - "rshares": "16380729892", - "voter": "smon-joa" - }, - { - "rshares": "551477852", - "voter": "jjangjjanggirl" - }, - { - "rshares": "573359502", - "voter": "lianjingmedia" - }, - { - "rshares": "700789108", - "voter": "steemitmonsters" - }, - { - "rshares": "22008529579", - "voter": "curationvoter" - }, - { - "rshares": "962492869", - "voter": "realgoodcontent" - }, - { - "rshares": "2080281883", - "voter": "peter-bot" - }, - { - "rshares": "813898830", - "voter": "kshahrck" - }, - { - "rshares": "558856939", - "voter": "smonbear" - }, - { - "rshares": "1002180766", - "voter": "denizcakmak" - }, - { - "rshares": "1640031643", - "voter": "hungryharish" - }, - { - "rshares": "782218834", - "voter": "wallet-kabil" - }, - { - "rshares": "347592386152", - "voter": "apix" - }, - { - "rshares": "33808745309", - "voter": "pedrobrito2004" - }, - { - "rshares": "534031256", - "voter": "epic4chris" - }, - { - "rshares": "39974108384", - "voter": "pfdm" - }, - { - "rshares": "4207260147", - "voter": "steem-fund" - }, - { - "rshares": "23461248582", - "voter": "maryincryptoland" - }, - { - "rshares": "17104578278", - "voter": "scarletreaper" - }, - { - "rshares": "683801106", - "voter": "izhmash" - }, - { - "rshares": "601055782", - "voter": "sevensixtwo" - }, - { - "rshares": "623726270", - "voter": "bastogne" - }, - { - "rshares": "11269277510", - "voter": "herbncrypto" - }, - { - "rshares": "614837583", - "voter": "thirdarmy" - }, - { - "rshares": "12632610762", - "voter": "helgalubevi" - }, - { - "rshares": "684126344", - "voter": "plebtv" - }, - { - "rshares": "5680645388", - "voter": "gulf41" - }, - { - "rshares": "77722963503", - "voter": "pixaroma" - }, - { - "rshares": "2628364407", - "voter": "sm-silva" - }, - { - "rshares": "595111870", - "voter": "ssc-token" - }, - { - "rshares": "9789668745", - "voter": "steementertainer" - }, - { - "rshares": "16619354362", - "voter": "bitsharesorg" - }, - { - "rshares": "17552028138324", - "voter": "likwid" - }, - { - "rshares": "3770971085", - "voter": "steemvpn" - }, - { - "rshares": "155466648", - "voter": "tradingideas2" - }, - { - "rshares": "543828252", - "voter": "iktisat" - }, - { - "rshares": "24708289468", - "voter": "tggr" - }, - { - "rshares": "596475939", - "voter": "firefuture" - }, - { - "rshares": "2185385615", - "voter": "steemindian" - }, - { - "rshares": "28365917873", - "voter": "c21c" - }, - { - "rshares": "1353974007", - "voter": "anthos" - }, - { - "rshares": "2115705772", - "voter": "strongwoman" - }, - { - "rshares": "9916495331", - "voter": "milu-the-dog" - }, - { - "rshares": "15131075772", - "voter": "yeswecan" - }, - { - "rshares": "2757936173", - "voter": "lrekt01" - }, - { - "rshares": "8216861542", - "voter": "triplea.bot" - }, - { - "rshares": "596184110671", - "voter": "steem.leo" - }, - { - "rshares": "7304192083", - "voter": "reggaesteem" - }, - { - "rshares": "0", - "voter": "tradingideas.spt" - }, - { - "rshares": "2221022753", - "voter": "nichemarket" - }, - { - "rshares": "971442623", - "voter": "voodooranger" - }, - { - "rshares": "1270432153", - "voter": "online-24-7" - }, - { - "rshares": "466308875183", - "voter": "votebetting" - }, - { - "rshares": "2154177722", - "voter": "scotauto" - }, - { - "rshares": "2435944017", - "voter": "hyborian-strain" - }, - { - "rshares": "18976869341", - "voter": "freddio.sport" - }, - { - "rshares": "852379768", - "voter": "zaku-pal" - }, - { - "rshares": "846049715", - "voter": "zaku-leo" - }, - { - "rshares": "38545847565", - "voter": "finex" - }, - { - "rshares": "129062088825", - "voter": "asteroids" - }, - { - "rshares": "217539343", - "voter": "tina-tina" - }, - { - "rshares": "328941215", - "voter": "happiness19" - }, - { - "rshares": "3917462", - "voter": "gdhaetae" - }, - { - "rshares": "4112921544", - "voter": "one.life" - }, - { - "rshares": "27025993528", - "voter": "acta" - }, - { - "rshares": "16917600185", - "voter": "the-table" - }, - { - "rshares": "4065307099", - "voter": "cardtrader" - }, - { - "rshares": "20589086279", - "voter": "maxuvd" - }, - { - "rshares": "1588889977", - "voter": "dappcoder" - }, - { - "rshares": "1756161064", - "voter": "thehouse" - }, - { - "rshares": "841215155", - "voter": "dnflsms" - }, - { - "rshares": "529086024", - "voter": "jessy22" - }, - { - "rshares": "1072930953", - "voter": "monstervoter" - }, - { - "rshares": "124533161244", - "voter": "silverquest" - }, - { - "rshares": "1426709110", - "voter": "therealyme" - }, - { - "rshares": "1400864663", - "voter": "blocktvnews" - }, - { - "rshares": "196405492", - "voter": "keep-keep" - }, - { - "rshares": "237297441244", - "voter": "huaren.news" - }, - { - "rshares": "3098434019", - "voter": "goodreader" - }, - { - "rshares": "241782063", - "voter": "gerbo" - }, - { - "rshares": "8030483101", - "voter": "honeychip" - }, - { - "rshares": "625352351", - "voter": "artmusiclife" - }, - { - "rshares": "6606462356", - "voter": "kryptoformator" - }, - { - "rshares": "843156100", - "voter": "hatta.jahm" - }, - { - "rshares": "141944852599", - "voter": "max.curation" - }, - { - "rshares": "50001887892", - "voter": "crypto.income" - }, - { - "rshares": "1142475545", - "voter": "steempower-001" - }, - { - "rshares": "2350370287", - "voter": "artyudy" - }, - { - "rshares": "661290273", - "voter": "rehan.blog" - }, - { - "rshares": "232508432", - "voter": "aceh1001art" - }, - { - "rshares": "5805700400", - "voter": "curationstudio" - }, - { - "rshares": "4907134921", - "voter": "gmlrecordz" - }, - { - "rshares": "902462615", - "voter": "keepit2" - }, - { - "rshares": "594969454", - "voter": "reghunter" - }, - { - "rshares": "10710347795", - "voter": "simply2koool" - }, - { - "rshares": "7532719424", - "voter": "ribary" - }, - { - "rshares": "3024674057", - "voter": "dollarbills" - }, - { - "rshares": "1502816415", - "voter": "coin-doubler" - }, - { - "rshares": "722795121", - "voter": "onestop" - }, - { - "rshares": "4348165719", - "voter": "bilpcoinbpc" - }, - { - "rshares": "912198532", - "voter": "der-fahrlehrer" - }, - { - "rshares": "135361972074", - "voter": "mice-k" - }, - { - "rshares": "345074201", - "voter": "bela29" - }, - { - "rshares": "10724421638", - "voter": "staryao" - }, - { - "rshares": "1486564794", - "voter": "creative1234" - }, - { - "rshares": "11464390972", - "voter": "curamax" - }, - { - "rshares": "1068686239", - "voter": "drew0" - }, - { - "rshares": "760085908", - "voter": "mehmetfix" - }, - { - "rshares": "1614682082", - "voter": "tommys.shop" - }, - { - "rshares": "0", - "voter": "jhonkeneddy" - }, - { - "rshares": "4678737800", - "voter": "steemcityrewards" - }, - { - "rshares": "6021820084", - "voter": "dpend.active" - }, - { - "rshares": "2098500193", - "voter": "artdescry" - }, - { - "rshares": "544482783", - "voter": "hivewaves" - }, - { - "rshares": "1913640085", - "voter": "hivefinex" - }, - { - "rshares": "1440586404", - "voter": "folklure" - }, - { - "rshares": "317965995442", - "voter": "reggaejahm" - }, - { - "rshares": "1186356320294", - "voter": "softworld" - }, - { - "rshares": "60950329750", - "voter": "polish.hive" - }, - { - "rshares": "839966519", - "voter": "timhorton" - }, - { - "rshares": "11121157294", - "voter": "velinov86" - }, - { - "rshares": "560802596370", - "voter": "dcityrewards" - }, - { - "rshares": "1406969602", - "voter": "paulman" - }, - { - "rshares": "1598151188", - "voter": "uafappdevelopers" - }, - { - "rshares": "1194449229", - "voter": "sketching" - }, - { - "rshares": "556728223", - "voter": "ninnu" - }, - { - "rshares": "1227446810352", - "voter": "ecency" - }, - { - "rshares": "69741164732", - "voter": "executive-board" - }, - { - "rshares": "0", - "voter": "mandynmargie" - }, - { - "rshares": "568500087386", - "voter": "hivecur" - }, - { - "rshares": "3454176528", - "voter": "lucianav" - }, - { - "rshares": "8280424588", - "voter": "artistparthoroy" - }, - { - "rshares": "2989073596", - "voter": "patronpass" - }, - { - "rshares": "2546014791", - "voter": "wristwatch12" - }, - { - "rshares": "919397385", - "voter": "plusvault" - }, - { - "rshares": "1146977346", - "voter": "hivebuilderteam" - }, - { - "rshares": "360659120", - "voter": "sarbarzfit" - }, - { - "rshares": "0", - "voter": "marsal100" - }, - { - "rshares": "364917506", - "voter": "rahmatulyaa24" - }, - { - "rshares": "274117657", - "voter": "ridhaulhaq2699" - }, - { - "rshares": "0", - "voter": "graythor" - }, - { - "rshares": "1115430276", - "voter": "hivecur2" - }, - { - "rshares": "0", - "voter": "veseq" - }, - { - "rshares": "0", - "voter": "afrozhive" - }, - { - "rshares": "0", - "voter": "milon21" - } + "active_votes": [ + { + "rshares": "28370463371572", + "voter": "dantheman" + }, + { + "rshares": "31307487536364", + "voter": "smooth" + }, + { + "rshares": "231809639013", + "voter": "anonymous" + }, + { + "rshares": "2321962618319", + "voter": "diaphanous" + }, + { + "rshares": "1469558503443", + "voter": "commedy" + }, + { + "rshares": "4287714457313", + "voter": "riverhead" + }, + { + "rshares": "1856006073992", + "voter": "badassmother" + }, + { + "rshares": "1271804694676", + "voter": "rossco99" + }, + { + "rshares": "2206068741954", + "voter": "wang" + }, + { + "rshares": "1950753758979", + "voter": "xeroc" + }, + { + "rshares": "1534707047296", + "voter": "joseph" + }, + { + "rshares": "452874558937", + "voter": "recursive3" + }, + { + "rshares": "620996029765", + "voter": "masteryoda" + }, + { + "rshares": "3120582597678", + "voter": "recursive" + }, + { + "rshares": "440845842", + "voter": "lee2" + }, + { + "rshares": "26932201065", + "voter": "lee3" + }, + { + "rshares": "8677295375", + "voter": "lee4" + }, + { + "rshares": "22149018521", + "voter": "lee5" + }, + { + "rshares": "5942299654212", + "voter": "smooth.witness" + }, + { + "rshares": "8927291120", + "voter": "idol" + }, + { + "rshares": "4941942978", + "voter": "sakr" + }, + { + "rshares": "57625926227", + "voter": "unosuke" + }, + { + "rshares": "1536592488", + "voter": "jocelyn" + }, + { + "rshares": "14818263059", + "voter": "gregory-f" + }, + { + "rshares": "154334962550", + "voter": "edgeland" + }, + { + "rshares": "8836453529", + "voter": "gregory60" + }, + { + "rshares": "29596510808", + "voter": "full-measure" + }, + { + "rshares": "104880949618", + "voter": "eeks" + }, + { + "rshares": "24694558802", + "voter": "fkn" + }, + { + "rshares": "468281676", + "voter": "paco-steem" + }, + { + "rshares": "5641697991", + "voter": "spaninv" + }, + { + "rshares": "32459455171", + "voter": "elishagh1" + }, + { + "rshares": "40391466193", + "voter": "himalayanguru" + }, + { + "rshares": "584291107228", + "voter": "nanzo-scoop" + }, + { + "rshares": "178471627922", + "voter": "steve-walschot" + }, + { + "rshares": "9857825141", + "voter": "kefkius" + }, + { + "rshares": "177420844935", + "voter": "mummyimperfect" + }, + { + "rshares": "106635691300", + "voter": "asch" + }, + { + "rshares": "616864092786", + "voter": "kevinwong" + }, + { + "rshares": "1061266533", + "voter": "murh" + }, + { + "rshares": "6230798580", + "voter": "cryptofunk" + }, + { + "rshares": "579494558", + "voter": "kodi" + }, + { + "rshares": "2003359924", + "voter": "error" + }, + { + "rshares": "11584833708", + "voter": "andu" + }, + { + "rshares": "40553122820", + "voter": "ranko-k" + }, + { + "rshares": "962089879337", + "voter": "cyber" + }, + { + "rshares": "58188888655", + "voter": "theshell" + }, + { + "rshares": "49581045086", + "voter": "ak2020" + }, + { + "rshares": "3848697023555", + "voter": "satoshifund" + }, + { + "rshares": "402139444", + "voter": "applecrisp" + }, + { + "rshares": "36407027386", + "voter": "altoz" + }, + { + "rshares": "365370465", + "voter": "stiletto" + }, + { + "rshares": "55577467736", + "voter": "juanmiguelsalas" + }, + { + "rshares": "219283354085", + "voter": "will-zewe" + }, + { + "rshares": "87300558689", + "voter": "herzmeister" + }, + { + "rshares": "275016906945", + "voter": "trogdor" + }, + { + "rshares": "5287820211", + "voter": "tee-em" + }, + { + "rshares": "31346001722", + "voter": "michaelx" + }, + { + "rshares": "179395106552", + "voter": "thedashguy" + }, + { + "rshares": "4682885200", + "voter": "usefree" + }, + { + "rshares": "189626835254", + "voter": "mexbit" + }, + { + "rshares": "5821262190", + "voter": "mark-waser" + }, + { + "rshares": "118356217412", + "voter": "geoffrey" + }, + { + "rshares": "208362110567", + "voter": "kimziv" + }, + { + "rshares": "46266779182", + "voter": "honeythief" + }, + { + "rshares": "75334808165", + "voter": "emily-cook" + }, + { + "rshares": "2187607792", + "voter": "superfreek" + }, + { + "rshares": "484636799", + "voter": "mrhankeh" + }, + { + "rshares": "17908924002", + "voter": "grey580" + }, + { + "rshares": "275327756", + "voter": "ladyclair" + }, + { + "rshares": "68449861599", + "voter": "bacchist" + }, + { + "rshares": "60315479782", + "voter": "good-karma" + }, + { + "rshares": "3350419346", + "voter": "orly" + }, + { + "rshares": "5271030976", + "voter": "riscadox" + }, + { + "rshares": "24867575018", + "voter": "katyakov" + }, + { + "rshares": "373878481829", + "voter": "fabio" + }, + { + "rshares": "25057642057", + "voter": "tcfxyz" + }, + { + "rshares": "6939984054", + "voter": "futurefood" + }, + { + "rshares": "734082781", + "voter": "rxhector" + }, + { + "rshares": "118094280271", + "voter": "furion" + }, + { + "rshares": "105911917280", + "voter": "cdubendo" + }, + { + "rshares": "578386960", + "voter": "barbara2" + }, + { + "rshares": "642869652", + "voter": "ch0c0latechip" + }, + { + "rshares": "594982040", + "voter": "doge4lyf" + }, + { + "rshares": "12668641443", + "voter": "gord0b" + }, + { + "rshares": "2632460141", + "voter": "steem1653" + }, + { + "rshares": "136322030", + "voter": "cynetyc" + }, + { + "rshares": "25221166135", + "voter": "steemit-life" + }, + { + "rshares": "80777327", + "voter": "snowden" + }, + { + "rshares": "5357326058", + "voter": "thegoodguy" + }, + { + "rshares": "14168336425", + "voter": "aaseb" + }, + { + "rshares": "4209533734", + "voter": "karen13" + }, + { + "rshares": "6017253623", + "voter": "cryptosi" + }, + { + "rshares": "251367062418", + "voter": "nabilov" + }, + { + "rshares": "8751103405", + "voter": "noodhoog" + }, + { + "rshares": "46859060143", + "voter": "milestone" + }, + { + "rshares": "33739229218", + "voter": "creemej" + }, + { + "rshares": "87223247", + "voter": "wildchild" + }, + { + "rshares": "15070803886", + "voter": "nippel66" + }, + { + "rshares": "24417687626", + "voter": "phenom" + }, + { + "rshares": "4545051592", + "voter": "poseidon" + }, + { + "rshares": "7946812357", + "voter": "smolalit" + }, + { + "rshares": "362515598946", + "voter": "calaber24p" + }, + { + "rshares": "147403710", + "voter": "jdenismusic" + }, + { + "rshares": "3365797955", + "voter": "simon.braki.love" + }, + { + "rshares": "82782405213", + "voter": "thylbom" + }, + { + "rshares": "3709588060", + "voter": "bitcoiner" + }, + { + "rshares": "32544157928", + "voter": "deanliu" + }, + { + "rshares": "4996306142", + "voter": "dmitriybtc" + }, + { + "rshares": "204618396015", + "voter": "jl777" + }, + { + "rshares": "30989614870", + "voter": "zaebars" + }, + { + "rshares": "20026634941", + "voter": "positive" + }, + { + "rshares": "1809205777", + "voter": "yarly" + }, + { + "rshares": "272641013", + "voter": "yarly2" + }, + { + "rshares": "273048922", + "voter": "yarly3" + }, + { + "rshares": "157733805", + "voter": "yarly4" + }, + { + "rshares": "158624349", + "voter": "yarly5" + }, + { + "rshares": "90416287", + "voter": "yarly7" + }, + { + "rshares": "799615699", + "voter": "raymonjohnstone" + }, + { + "rshares": "17267341753", + "voter": "proto" + }, + { + "rshares": "34309455805", + "voter": "sisterholics" + }, + { + "rshares": "437620869", + "voter": "yarly10" + }, + { + "rshares": "234191245", + "voter": "yarly11" + }, + { + "rshares": "8781903824", + "voter": "royalmacro" + }, + { + "rshares": "81879061", + "voter": "yarly12" + }, + { + "rshares": "674282213", + "voter": "fnait" + }, + { + "rshares": "599033376", + "voter": "keepcalmand" + }, + { + "rshares": "146224042", + "voter": "steemster1" + }, + { + "rshares": "3022447454", + "voter": "dmilash" + }, + { + "rshares": "2002851358", + "voter": "andreynoch" + }, + { + "rshares": "13359143286", + "voter": "mahekg" + }, + { + "rshares": "50579277183", + "voter": "gomeravibz" + }, + { + "rshares": "8734185109", + "voter": "taker" + }, + { + "rshares": "12064042634", + "voter": "nekromarinist" + }, + { + "rshares": "57873464", + "voter": "sharon" + }, + { + "rshares": "10419645487", + "voter": "dumar022" + }, + { + "rshares": "2157207095", + "voter": "merej99" + }, + { + "rshares": "58971492", + "voter": "lillianjones" + }, + { + "rshares": "1213299204686", + "voter": "laonie" + }, + { + "rshares": "157521707420", + "voter": "twinner" + }, + { + "rshares": "23391691291", + "voter": "rawnetics" + }, + { + "rshares": "22969142749", + "voter": "laonie1" + }, + { + "rshares": "23485900426", + "voter": "laonie2" + }, + { + "rshares": "23494195522", + "voter": "laonie3" + }, + { + "rshares": "24562882668", + "voter": "laoyao" + }, + { + "rshares": "42639811498", + "voter": "myfirst" + }, + { + "rshares": "246279861104", + "voter": "somebody" + }, + { + "rshares": "9450505564", + "voter": "flysaga" + }, + { + "rshares": "5831615639", + "voter": "brendio" + }, + { + "rshares": "2918578376", + "voter": "gmurph" + }, + { + "rshares": "3690744042", + "voter": "chris.roy" + }, + { + "rshares": "54405024034", + "voter": "midnightoil" + }, + { + "rshares": "4190391188", + "voter": "ullikume" + }, + { + "rshares": "23489872560", + "voter": "laonie4" + }, + { + "rshares": "23487615266", + "voter": "laonie5" + }, + { + "rshares": "23484637540", + "voter": "laonie6" + }, + { + "rshares": "23480497322", + "voter": "laonie7" + }, + { + "rshares": "3323984357", + "voter": "kurtbeil" + }, + { + "rshares": "23477049244", + "voter": "laonie8" + }, + { + "rshares": "23474334690", + "voter": "laonie9" + }, + { + "rshares": "136078574669", + "voter": "xiaohui" + }, + { + "rshares": "21112646631", + "voter": "jphamer1" + }, + { + "rshares": "88206053", + "voter": "bigsambucca" + }, + { + "rshares": "6791986484", + "voter": "elfkitchen" + }, + { + "rshares": "99935909954", + "voter": "joele" + }, + { + "rshares": "5855738054", + "voter": "oflyhigh" + }, + { + "rshares": "15860159560", + "voter": "randyclemens" + }, + { + "rshares": "2343183825", + "voter": "paynode" + }, + { + "rshares": "4366149629", + "voter": "xiaokongcom" + }, + { + "rshares": "59437351", + "voter": "msjennifer" + }, + { + "rshares": "54654502", + "voter": "ciao" + }, + { + "rshares": "62928860", + "voter": "session101" + }, + { + "rshares": "52985539", + "voter": "steemo" + }, + { + "rshares": "8801395051", + "voter": "xianjun" + }, + { + "rshares": "52848854", + "voter": "steema" + }, + { + "rshares": "72192938", + "voter": "sijoittaja" + }, + { + "rshares": "69662169", + "voter": "confucius" + }, + { + "rshares": "72135954", + "voter": "stevescriber" + }, + { + "rshares": "51247757", + "voter": "loli" + }, + { + "rshares": "91519215715", + "voter": "miacats" + }, + { + "rshares": "52419023", + "voter": "nano2nd" + }, + { + "rshares": "53661976", + "voter": "jarvis" + }, + { + "rshares": "591109646", + "voter": "microluck" + }, + { + "rshares": "74131936", + "voter": "razberrijam" + }, + { + "rshares": "53106127", + "voter": "fortuner" + }, + { + "rshares": "2022702929", + "voter": "chinadaily" + }, + { + "rshares": "88481667", + "voter": "pompe72" + }, + { + "rshares": "802011524540", + "voter": "dollarvigilante" + }, + { + "rshares": "101627835", + "voter": "pollina" + }, + { + "rshares": "50698107", + "voter": "johnbyrd" + }, + { + "rshares": "50682252", + "voter": "thomasaustin" + }, + { + "rshares": "50680459", + "voter": "thermor" + }, + { + "rshares": "50691211", + "voter": "ficholl" + }, + { + "rshares": "51852278", + "voter": "widell" + }, + { + "rshares": "3635091595", + "voter": "movievertigo" + }, + { + "rshares": "50311250", + "voter": "revelbrooks" + }, + { + "rshares": "23468154723", + "voter": "laonie10" + }, + { + "rshares": "2982691190", + "voter": "netaterra" + }, + { + "rshares": "21980957828", + "voter": "andrewawerdna" + }, + { + "rshares": "5712937692", + "voter": "trev" + }, + { + "rshares": "1874035641", + "voter": "erroneous-logic" + }, + { + "rshares": "302425178", + "voter": "sergeypotapov" + }, + { + "rshares": "65868377", + "voter": "lensessions" + }, + { + "rshares": "59126308", + "voter": "wmhammer" + }, + { + "rshares": "45978108133", + "voter": "emancipatedhuman" + }, + { + "rshares": "15340272043", + "voter": "pressfortruth" + }, + { + "rshares": "6654726855", + "voter": "hilarski" + }, + { + "rshares": "8773942171", + "voter": "craigwilliamz" + }, + { + "rshares": "8856106682", + "voter": "onetree" + }, + { + "rshares": "101945845", + "voter": "slorunner" + }, + { + "rshares": "2029369552", + "voter": "shadowspub" + }, + { + "rshares": "32463005362", + "voter": "daut44" + }, + { + "rshares": "50416427", + "voter": "curpose" + }, + { + "rshares": "59693834", + "voter": "suprepachyderm" + }, + { + "rshares": "1615332211", + "voter": "themonetaryfew" + }, + { + "rshares": "989363278", + "voter": "dajohns1420" + }, + { + "rshares": "2196907450", + "voter": "runridefly" + }, + { + "rshares": "3915304227", + "voter": "newandold" + }, + { + "rshares": "57856784", + "voter": "jamesyk" + }, + { + "rshares": "112983030208", + "voter": "shenanigator" + }, + { + "rshares": "58197677", + "voter": "jcomeauictx" + }, + { + "rshares": "12901147949", + "voter": "quinneaker" + }, + { + "rshares": "752032432", + "voter": "freeinthought" + }, + { + "rshares": "1783693666", + "voter": "funkywanderer" + }, + { + "rshares": "4900461398", + "voter": "richardcrill" + }, + { + "rshares": "22621459650", + "voter": "laonie11" + }, + { + "rshares": "2205784762", + "voter": "jeremyfromwi" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "4662965424", + "voter": "nadin3" + }, + { + "rshares": "588228551", + "voter": "profanarky" + }, + { + "rshares": "3411072843", + "voter": "xanoxt" + }, + { + "rshares": "1625414479", + "voter": "davidjkelley" + }, + { + "rshares": "50593879", + "voter": "crion" + }, + { + "rshares": "174778016", + "voter": "greatness" + }, + { + "rshares": "50271139", + "voter": "hitherise" + }, + { + "rshares": "50262756", + "voter": "wiss" + }, + { + "rshares": "56782516", + "voter": "sebastianbauer" + }, + { + "rshares": "55667728", + "voter": "fizzgig" + }, + { + "rshares": "26571803569", + "voter": "sponge-bob" + }, + { + "rshares": "4044716723", + "voter": "l0k1" + }, + { + "rshares": "15232622426", + "voter": "digital-wisdom" + }, + { + "rshares": "3710973264", + "voter": "ethical-ai" + }, + { + "rshares": "51033798", + "voter": "stroully" + }, + { + "rshares": "3752641890", + "voter": "titusfrost" + }, + { + "rshares": "6682880996", + "voter": "jwaser" + }, + { + "rshares": "50712038", + "voter": "thadm" + }, + { + "rshares": "2353724275", + "voter": "zettar" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "17357974240", + "voter": "bluehorseshoe" + }, + { + "rshares": "53413720", + "voter": "lighter" + }, + { + "rshares": "50370757", + "voter": "yorsens" + }, + { + "rshares": "263853222", + "voter": "maarnio" + }, + { + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "rshares": "2617343597", + "voter": "bwaser" + }, + { + "rshares": "50840303", + "voter": "sofa" + }, + { + "rshares": "323483227", + "voter": "panther" + }, + { + "rshares": "53871683", + "voter": "doggnostic" + }, + { + "rshares": "659649765", + "voter": "ct-gurus" + }, + { + "rshares": "53593366", + "voter": "jenny-talls" + }, + { + "rshares": "411677045923", + "voter": "charlieshrem" + }, + { + "rshares": "61827447459", + "voter": "tracemayer" + }, + { + "rshares": "54239080444", + "voter": "brains" + }, + { + "rshares": "50450987", + "voter": "waldemar-kuhn" + }, + { + "rshares": "1415009195", + "voter": "steemafon" + }, + { + "rshares": "1352324852", + "voter": "bitcoinparadise" + }, + { + "rshares": "5753524189", + "voter": "chick1" + }, + { + "rshares": "3605995609", + "voter": "rigaronib" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "50516543", + "voter": "typingagent" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "62515317", + "voter": "freebornangel" + }, + { + "rshares": "271440423", + "voter": "anomaly" + }, + { + "rshares": "2401297947", + "voter": "ellepdub" + }, + { + "rshares": "63405661", + "voter": "inarix03" + }, + { + "rshares": "98577200", + "voter": "ola1" + }, + { + "rshares": "51615652", + "voter": "rayzzz" + }, + { + "rshares": "12115690216", + "voter": "herpetologyguy" + }, + { + "rshares": "4712300251", + "voter": "morgan.waser" + }, + { + "rshares": "157644916", + "voter": "iggy" + }, + { + "rshares": "51636819", + "voter": "mbizryu0" + }, + { + "rshares": "51631638", + "voter": "archij" + }, + { + "rshares": "51530815", + "voter": "movie7283" + }, + { + "rshares": "51527606", + "voter": "ppcompp2" + }, + { + "rshares": "51520427", + "voter": "jj1968" + }, + { + "rshares": "51516489", + "voter": "cineger" + }, + { + "rshares": "51497383", + "voter": "sksduddk" + }, + { + "rshares": "51490214", + "voter": "jjc0719" + }, + { + "rshares": "51235131", + "voter": "glassheart" + }, + { + "rshares": "51215236", + "voter": "deli" + }, + { + "rshares": "1233685675", + "voter": "anns" + }, + { + "rshares": "50798322", + "voter": "breeze" + }, + { + "rshares": "50677982", + "voter": "sjytoy" + }, + { + "rshares": "50676799", + "voter": "shy2675" + }, + { + "rshares": "50675747", + "voter": "suance1009" + }, + { + "rshares": "50674176", + "voter": "hasqmd" + }, + { + "rshares": "50673722", + "voter": "fischer67" + }, + { + "rshares": "50672116", + "voter": "elya1" + }, + { + "rshares": "50632828", + "voter": "xclamp45" + }, + { + "rshares": "50618471", + "voter": "likeagame1" + }, + { + "rshares": "50616898", + "voter": "apple4006" + }, + { + "rshares": "50615195", + "voter": "bigbell61" + }, + { + "rshares": "50612850", + "voter": "dolpo777" + }, + { + "rshares": "50611931", + "voter": "dongperi" + }, + { + "rshares": "50610620", + "voter": "lion2byung" + }, + { + "rshares": "50610002", + "voter": "cwj1973" + }, + { + "rshares": "50609329", + "voter": "psj212" + }, + { + "rshares": "50608661", + "voter": "owithed2" + }, + { + "rshares": "50606929", + "voter": "fiself2" + }, + { + "rshares": "50605131", + "voter": "trablinever1" + }, + { + "rshares": "50603861", + "voter": "nuals1940" + }, + { + "rshares": "50602310", + "voter": "fanceth2" + }, + { + "rshares": "50572441", + "voter": "unilever" + }, + { + "rshares": "50540827", + "voter": "amstel" + }, + { + "rshares": "1921231770", + "voter": "bapparabi" + }, + { + "rshares": "50479027", + "voter": "sunlight" + }, + { + "rshares": "50355943", + "voter": "forea1995" + }, + { + "rshares": "50354561", + "voter": "holow1968" + }, + { + "rshares": "50353969", + "voter": "peaces1952" + }, + { + "rshares": "50346496", + "voter": "himighar2" + }, + { + "rshares": "50345607", + "voter": "aromese1974" + }, + { + "rshares": "50344921", + "voter": "runis1943" + }, + { + "rshares": "50344067", + "voter": "tong1962" + }, + { + "rshares": "50340744", + "voter": "hishe1997" + }, + { + "rshares": "255059000", + "voter": "letstalkliberty" + }, + { + "rshares": "3609651500", + "voter": "strong-ai" + }, + { + "rshares": "53375937", + "voter": "ninjapainter" + }, + { + "rshares": "51393104", + "voter": "buit1989" + }, + { + "rshares": "51389981", + "voter": "imadecoult1" + }, + { + "rshares": "51387526", + "voter": "infees2" + }, + { + "rshares": "51384095", + "voter": "suar1997" + }, + { + "rshares": "51382067", + "voter": "sobsell93" + }, + { + "rshares": "51380710", + "voter": "stroned96" + }, + { + "rshares": "51378107", + "voter": "drethe" + }, + { + "rshares": "51377505", + "voter": "qualwas" + }, + { + "rshares": "51376367", + "voter": "phent1994" + }, + { + "rshares": "51375075", + "voter": "baboyes" + }, + { + "rshares": "51373532", + "voter": "whor1973" + }, + { + "rshares": "51372739", + "voter": "youreforn" + }, + { + "rshares": "51371902", + "voter": "voll1981" + }, + { + "rshares": "51370717", + "voter": "copenty2" + }, + { + "rshares": "51369717", + "voter": "maject2" + }, + { + "rshares": "51367233", + "voter": "coust1997" + }, + { + "rshares": "51366398", + "voter": "busionea84" + }, + { + "rshares": "51365174", + "voter": "therver1" + }, + { + "rshares": "51364022", + "voter": "appirdsmanne1990" + }, + { + "rshares": "51362967", + "voter": "alienighted87" + }, + { + "rshares": "51359746", + "voter": "anity1994" + }, + { + "rshares": "59959066", + "voter": "themphe1" + }, + { + "rshares": "51355864", + "voter": "abild1988" + }, + { + "rshares": "51353540", + "voter": "spoll1973" + }, + { + "rshares": "66162576", + "voter": "afteld1" + }, + { + "rshares": "71207873", + "voter": "igtes" + }, + { + "rshares": "835065804", + "voter": "dikanevroman" + }, + { + "rshares": "141679752", + "voter": "buffett" + }, + { + "rshares": "1630362522", + "voter": "rusteemitblog" + }, + { + "rshares": "167843838", + "voter": "robyneggs" + }, + { + "rshares": "1300689481", + "voter": "michaelstobiersk" + }, + { + "rshares": "453506109", + "voter": "witchcraftblog" + }, + { + "rshares": "158057595", + "voter": "sdc" + }, + { + "rshares": "160973134", + "voter": "gravity" + }, + { + "rshares": "160900665", + "voter": "digitalillusions" + }, + { + "rshares": "157726117", + "voter": "illusions" + }, + { + "rshares": "157176058", + "voter": "cybergirls" + }, + { + "rshares": "156847954", + "voter": "correct" + }, + { + "rshares": "156814579", + "voter": "haribo" + }, + { + "rshares": "156194471", + "voter": "stimmt" + }, + { + "rshares": "156054487", + "voter": "fallout" + }, + { + "rshares": "159062820", + "voter": "rule" + }, + { + "rshares": "155907388", + "voter": "xtreme" + }, + { + "rshares": "1442647825", + "voter": "modernbukowski" + }, + { + "rshares": "158602900", + "voter": "steem-wallet" + }, + { + "rshares": "158535752", + "voter": "nerds" + }, + { + "rshares": "31008332335", + "voter": "goldmatters" + }, + { + "rshares": "155796749", + "voter": "majes" + }, + { + "rshares": "155166715", + "voter": "maxb02" + }, + { + "rshares": "71727340", + "voter": "dealzgal" + }, + { + "rshares": "120983531", + "voter": "bleujay" + }, + { + "rshares": "68013381", + "voter": "storage" + }, + { + "rshares": "298391608", + "voter": "risabold" + }, + { + "rshares": "154247502", + "voter": "dougkarr" + }, + { + "rshares": "58460105", + "voter": "blackmarket" + }, + { + "rshares": "61530871", + "voter": "gifts" + }, + { + "rshares": "96643251", + "voter": "expat" + }, + { + "rshares": "181770825", + "voter": "pathtomydream" + }, + { + "rshares": "519265850", + "voter": "doubledex" + }, + { + "rshares": "1593664040", + "voter": "steemlift" + }, + { + "rshares": "129609202", + "voter": "toddemaher1" + } + ], + "author": "dollarvigilante", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "

https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg
\n\nIn past issues, we\u2019ve documented increasingly concerned billionaires warning of dangerous economic times. Many have favored gold as an alternative allocation in a world where $13 trillion-worth of debt is negative yielding, interest rates are artificially suppressed and we\u2019re on the brink of major wars.\n\nThe newest addition to this gold-loving billionaire's club, is none other than hedge-fund manager Paul Singer. At CNBC\u2019s Delivering Alpha Investors Conference this week, the founder of the $27-billion Elliott Management Fund, the 17th largest hedge fund in the world, mentioned that at current prices gold is \u201cundervalued\u201d and \u201cunderrepresented in many portfolios as the only ... store of value that has stood the test of time.\u201d\n\nSinger, along with numerous other hedge-fund managers, has been increasingly outspoken in his criticism of the Federal Reserve and other central banks for creating dangers in the market unlike any in what he terms the \u201c5,000 year-ish\u201d history of finance. Singer noted that \u201cit's a very dangerous time in the global economy and global financial markets.\"\n\nThis quote is frighteningly similar to the response given by Donald Trump on Fox Business not long ago when he was asked if he had money in the market. He answered, \u201cI did, but I got out,\u201d and then went on to say that he expected \u201cvery scary scenarios\u201d for investors.\n\nSinger also stated that he thinks owning medium- to long-term first world debt is a \u201creally bad idea\u201d... and then proceeded to tell listeners to sell their 30-year bonds.\n\nEarlier in the conference, prior to Singer, Ray Dalio who is the manager of the largest hedge fund in the world, Bridgewater Capital, was also vocal about the diminishing returns provided by government debt held by central banks. \u201cThere\u2019s only so much you can squeeze out of the debt cycle,\" he said. He went on to say that central banks are at a point now where their ability to stimulate is limited.\n\nSeated next to Dalio was Former Treasury secretary Timothy Geithner who voiced concern about limited \u201ctools in the keynesian arsenal,\u201d that probably wouldn\u2019t be enough to offset the next recession.\n\nGeithner obviously believes that a recession is on the way. Dalio and Singer are trying to convey the same message. A massive crunch is looming.\n\nWe agree with them, although we believe Geithner was sugarcoating what\u2019s to come.\n\nAfter all, we are on the precipice of a crash of biblical proportions according to the former chief economist of the Bank for International Settlements, William White.\n\nWe have mentioned his quote numerous time here at TDV but feel it\u2019s important to reiterate because of its magnitude: \u201cThe only question is whether we are able to look reality in the eye and face what is coming in an orderly fashion, or whether it will be disorderly. Debt jubilees have been going on for 5,000 years, as far back as the Sumerians.\u201d\n\nAs the Fed considers its second rate hike in 10 years, Singer condemned policy-makers for acting with \u201camazing arrogance\u201d when he and others had warned of a mortgage crisis prior to 2008.\n\nWhat he and those who agreed with his stance don\u2019t know, or at least won\u2019t state publicly, is that these shoddy central bank policies are detrimental by design. In other words, their sole purpose is to destabilize the world economy.\n\nThis deliberate market sabotage is necessary for the transference of power from the more developed nations to less developed ones. Ultimately, the idea is to eliminate smaller regional and national central banks. Once things get bad enough, these smaller banks will be blamed for provoking a given crisis. And, secondarily, the end goal is to blow up the entire system in order to bring in the one world government and central bank.\n\nThe elites have used the same tactics time and time again throughout history. First, they create the problem, then there is a reaction, and then finally they come swooping in to \u201cvaliantly save\u201d the day. It's happened numerous times before.\n
https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png
\nAnd it will soon happen again.\n\nOf course, the globalists have demonstrated that every intervention only makes situations worse.\n\nWe reported on the blatant thievery going on at Wells Fargo in our last article and noted how the elites were probably laughing hysterically at what they\u2019re able to get away with. They were even able to convince many younger American voters that \u201cdemocratic socialism\u201d would be their savior, as seen by the significant, youthful support for Bernie Slanders. Debt and currency crises have already started to materialize, as we\u2019ve seen in the socialist utopia that is Venezuela. If this is any indication of what\u2019s to come, the future is looking awfully gloomy.\n\nAs Singer and others including Dalio have mentioned before, the most tried and true measure of wealth and value is gold.\n\nAt TDV we provide unique Austrian-economics based analysis from the anarcho-capitalist pespective of the state of the world\u2019s economy, as well as suggestions on how to protect your assets in these tempestuous and unprecedented times.\n\nJacob Rothschild, a member of the family partly responsible for the creation of all this chaos, even said himself that we are in \u201cuncharted waters\u201d and that it\u2019s \u201cimpossible to predict the unintended consequences of very low interest rates.\u201d\n\nWe have a pretty good idea of what the consequences will be and we\u2019re taking action to protect ourselves and even profit from them. Rothschild seems to know the consequences, as well, as he has been buying up gold and selling the stock market and the US dollar.\n\nYou can survive and profit from the orchestrated collapse too. Subscribe to TDV\u2019s newsletter here to receive constantly updated information on how to protect your family and friends.\n\nIn the end, it is getting truly bizarre just how many billionaires, central bankers and others of note are all warning of the coming collapse. We\u2019d almost begun to worry that they were going to pull a switch-a-roo on us, but if you asked the great majority of investors and financial analysts, they\u2019ll tell you that they see nothing but smooth sailing ahead.\n\nSo, while many are warning, many are hearing, but not listening. The bible said something about that, I believe.\n
https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg
", + "category": "money", + "children": 23, + "created": "2016-09-15T18:23:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg", + "https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png", + "https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg" + ], + "links": [ + "https://dollarvigilante.com/subscribe" + ], + "tags": [ + "money", + "gold", + "silver", + "bitcoin", + "crisis" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 102136532384242, + "payout": 596.997, + "payout_at": "2016-09-16T18:47:28", + "pending_payout_value": "596.997 HBD", + "percent_hbd": 10000, + "permlink": "another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", + "post_id": 960290, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 387 + }, + "title": "Another Billionaire Warns of Catastrophic Depths Not Seen in 5,000 Years - and Emphasizes Gold", + "updated": "2016-09-15T18:23:15", + "url": "/money/@dollarvigilante/another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold" + }, + { + "active_votes": [ + { + "rshares": "260764053346", + "voter": "anonymous" + }, + { + "rshares": "26301850743316", + "voter": "berniesanders" + }, + { + "rshares": "14447419939656", + "voter": "summon" + }, + { + "rshares": "30325685746209", + "voter": "val-a" + }, + { + "rshares": "15605000000000", + "voter": "val-b" + }, + { + "rshares": "35140699766668", + "voter": "jamesc" + }, + { + "rshares": "4574334081535", + "voter": "riverhead" + }, + { + "rshares": "7028898358251", + "voter": "wackou" + }, + { + "rshares": "173882410087", + "voter": "nextgenwitness" + }, + { + "rshares": "9910560004202", + "voter": "pharesim" + }, + { + "rshares": "610230676198", + "voter": "justin" + }, + { + "rshares": "120855503269", + "voter": "sandra" + }, + { + "rshares": "5450332021682", + "voter": "kushed" + }, + { + "rshares": "1673100049730", + "voter": "silver" + }, + { + "rshares": "4062956162312", + "voter": "silversteem" + }, + { + "rshares": "1149056534045", + "voter": "ihashfury" + }, + { + "rshares": "4624346498267", + "voter": "nextgencrypto" + }, + { + "rshares": "6514602351120", + "voter": "complexring" + }, + { + "rshares": "6400095696110", + "voter": "clayop" + }, + { + "rshares": "403437826343", + "voter": "steemservices" + }, + { + "rshares": "26833458550", + "voter": "steemservices1" + }, + { + "rshares": "1731510767128", + "voter": "joseph" + }, + { + "rshares": "84640148427", + "voter": "aizensou" + }, + { + "rshares": "4166568773495", + "voter": "au1nethyb1" + }, + { + "rshares": "223905651656", + "voter": "b0y2k" + }, + { + "rshares": "12275043694", + "voter": "bentley" + }, + { + "rshares": "630566306296", + "voter": "masteryoda" + }, + { + "rshares": "1209033907", + "voter": "mineralwasser" + }, + { + "rshares": "687090032502", + "voter": "boombastic" + }, + { + "rshares": "91240228363", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "1718241828", + "voter": "bingo-1" + }, + { + "rshares": "258890080700", + "voter": "indominon" + }, + { + "rshares": "795235221870", + "voter": "pfunk" + }, + { + "rshares": "170448234189", + "voter": "pairmike" + }, + { + "rshares": "3126367512437", + "voter": "onceuponatime" + }, + { + "rshares": "10365366239", + "voter": "idol" + }, + { + "rshares": "2747150485288", + "voter": "donkeypong" + }, + { + "rshares": "799706906226", + "voter": "steemrollin" + }, + { + "rshares": "4940816573", + "voter": "sakr" + }, + { + "rshares": "52267603683", + "voter": "ilanaakoundi" + }, + { + "rshares": "1784486145", + "voter": "jocelyn" + }, + { + "rshares": "81778714071", + "voter": "acidsun" + }, + { + "rshares": "14485500439", + "voter": "gregory-f" + }, + { + "rshares": "182184490464", + "voter": "samuel-stone" + }, + { + "rshares": "17261905745", + "voter": "jademont" + }, + { + "rshares": "1231622449650", + "voter": "gavvet" + }, + { + "rshares": "44936016583", + "voter": "eeks" + }, + { + "rshares": "-12893763252", + "voter": "james-show" + }, + { + "rshares": "581796947010", + "voter": "nanzo-scoop" + }, + { + "rshares": "9089111423", + "voter": "cian.dafe" + }, + { + "rshares": "48608113541", + "voter": "hannixx42" + }, + { + "rshares": "178475239190", + "voter": "mummyimperfect" + }, + { + "rshares": "268818780", + "voter": "coar" + }, + { + "rshares": "100988550788", + "voter": "asch" + }, + { + "rshares": "629740296743", + "voter": "kevinwong" + }, + { + "rshares": "1414357784", + "voter": "murh" + }, + { + "rshares": "3186258004", + "voter": "cryptofunk" + }, + { + "rshares": "17430843199", + "voter": "b4bb4r-5h3r" + }, + { + "rshares": "2326310189", + "voter": "error" + }, + { + "rshares": "5853981249", + "voter": "marta-zaidel" + }, + { + "rshares": "1064576926325", + "voter": "cyber" + }, + { + "rshares": "49529533316", + "voter": "ak2020" + }, + { + "rshares": "7897522470", + "voter": "thecryptofiend" + }, + { + "rshares": "24406094847", + "voter": "paul-labossiere" + }, + { + "rshares": "98824186817", + "voter": "eric-boucher" + }, + { + "rshares": "418804855", + "voter": "applecrisp" + }, + { + "rshares": "55573071997", + "voter": "juanmiguelsalas" + }, + { + "rshares": "33768131164", + "voter": "ratel" + }, + { + "rshares": "574978856216", + "voter": "infovore" + }, + { + "rshares": "2201949670", + "voter": "stephen-somers" + }, + { + "rshares": "804428766688", + "voter": "anwenbaumeister" + }, + { + "rshares": "6652497229", + "voter": "grandpere" + }, + { + "rshares": "5946920606", + "voter": "mark-waser" + }, + { + "rshares": "17023109715", + "voter": "albertogm" + }, + { + "rshares": "202862990998", + "voter": "kimziv" + }, + { + "rshares": "81140450926", + "voter": "emily-cook" + }, + { + "rshares": "87044687927", + "voter": "razvanelulmarin" + }, + { + "rshares": "11725334283", + "voter": "primus" + }, + { + "rshares": "20587586407", + "voter": "skapaneas" + }, + { + "rshares": "280886491", + "voter": "ladyclair" + }, + { + "rshares": "158997318209", + "voter": "asmolokalo" + }, + { + "rshares": "453674041389", + "voter": "roelandp" + }, + { + "rshares": "62652918156", + "voter": "lehard" + }, + { + "rshares": "24867544970", + "voter": "katyakov" + }, + { + "rshares": "19227034654", + "voter": "hakise" + }, + { + "rshares": "158322035362", + "voter": "derekareith" + }, + { + "rshares": "540675721761", + "voter": "neoxian" + }, + { + "rshares": "1382909545432", + "voter": "renohq" + }, + { + "rshares": "18347051336", + "voter": "ausbitbank" + }, + { + "rshares": "45733024772", + "voter": "mrwang" + }, + { + "rshares": "243777568", + "voter": "ardina" + }, + { + "rshares": "17613903814", + "voter": "sebastien" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "33656343814", + "voter": "toxonaut" + }, + { + "rshares": "1107683133", + "voter": "karen13" + }, + { + "rshares": "37477086352", + "voter": "diana.catherine" + }, + { + "rshares": "11096353249", + "voter": "deviedev" + }, + { + "rshares": "71693623547", + "voter": "jpiper20" + }, + { + "rshares": "4205385163", + "voter": "dcryptogold" + }, + { + "rshares": "2722560234", + "voter": "dmacshady" + }, + { + "rshares": "35770303799", + "voter": "creemej" + }, + { + "rshares": "2434921863", + "voter": "the-future" + }, + { + "rshares": "4296012707", + "voter": "adamt" + }, + { + "rshares": "2884781837", + "voter": "sgnsteems" + }, + { + "rshares": "175156042246", + "voter": "blueorgy" + }, + { + "rshares": "4542807775", + "voter": "poseidon" + }, + { + "rshares": "7168473448", + "voter": "geronimo" + }, + { + "rshares": "256660074008", + "voter": "liberosist" + }, + { + "rshares": "3773911635", + "voter": "birdie" + }, + { + "rshares": "9502502066", + "voter": "oumar" + }, + { + "rshares": "53840923427", + "voter": "jl777" + }, + { + "rshares": "1114903893", + "voter": "oecp85" + }, + { + "rshares": "7837739118", + "voter": "lostnuggett" + }, + { + "rshares": "36537971467", + "voter": "paquito" + }, + { + "rshares": "1120682252", + "voter": "lpfaust" + }, + { + "rshares": "5431079499", + "voter": "gustavopasquini" + }, + { + "rshares": "12879388253", + "voter": "moon32walker" + }, + { + "rshares": "206056754", + "voter": "sergey44" + }, + { + "rshares": "1258889103", + "voter": "mohammed123" + }, + { + "rshares": "21551743607", + "voter": "krabgat" + }, + { + "rshares": "42775578615", + "voter": "claudiop63" + }, + { + "rshares": "4543618384", + "voter": "proto" + }, + { + "rshares": "33381543237", + "voter": "sisterholics" + }, + { + "rshares": "16939424070", + "voter": "michaeldodridge" + }, + { + "rshares": "3555056805", + "voter": "bkkshadow" + }, + { + "rshares": "177054757", + "voter": "kibela" + }, + { + "rshares": "149624601", + "voter": "steemster1" + }, + { + "rshares": "467278771", + "voter": "bullionstackers" + }, + { + "rshares": "2399486339", + "voter": "jillstein2016" + }, + { + "rshares": "113159459", + "voter": "cryptoz" + }, + { + "rshares": "947490604", + "voter": "metaflute" + }, + { + "rshares": "49031153303", + "voter": "gomeravibz" + }, + { + "rshares": "2298221146", + "voter": "taker" + }, + { + "rshares": "14667601139", + "voter": "nekromarinist" + }, + { + "rshares": "10689974196", + "voter": "sykochica" + }, + { + "rshares": "57873464", + "voter": "sharon" + }, + { + "rshares": "235438675", + "voter": "frozendota" + }, + { + "rshares": "10107459891", + "voter": "dumar022" + }, + { + "rshares": "61714352", + "voter": "lillianjones" + }, + { + "rshares": "1180036690060", + "voter": "laonie" + }, + { + "rshares": "156808373457", + "voter": "twinner" + }, + { + "rshares": "24365622803", + "voter": "rawnetics" + }, + { + "rshares": "21937293191", + "voter": "thebluepanda" + }, + { + "rshares": "4038742528", + "voter": "timcliff" + }, + { + "rshares": "38493825241", + "voter": "myfirst" + }, + { + "rshares": "239614488307", + "voter": "somebody" + }, + { + "rshares": "9201794973", + "voter": "flysaga" + }, + { + "rshares": "1249580263", + "voter": "gmurph" + }, + { + "rshares": "7842754455", + "voter": "chris.roy" + }, + { + "rshares": "77413968", + "voter": "kurzer42" + }, + { + "rshares": "52933383775", + "voter": "midnightoil" + }, + { + "rshares": "2422858002", + "voter": "kalimor" + }, + { + "rshares": "4337200195", + "voter": "armen" + }, + { + "rshares": "109799369185", + "voter": "thisisbenbrick" + }, + { + "rshares": "35930892807", + "voter": "budgetbucketlist" + }, + { + "rshares": "132362897113", + "voter": "xiaohui" + }, + { + "rshares": "4269542847", + "voter": "antfield" + }, + { + "rshares": "60240401", + "voter": "locolote" + }, + { + "rshares": "3062483684", + "voter": "alitas" + }, + { + "rshares": "6555686028", + "voter": "elfkitchen" + }, + { + "rshares": "93215140213", + "voter": "joele" + }, + { + "rshares": "15543048016", + "voter": "randyclemens" + }, + { + "rshares": "4251276841", + "voter": "xiaokongcom" + }, + { + "rshares": "12956892771", + "voter": "gargon" + }, + { + "rshares": "2505333045", + "voter": "pgarcgo" + }, + { + "rshares": "39336543785", + "voter": "nonlinearone" + }, + { + "rshares": "62201879", + "voter": "msjennifer" + }, + { + "rshares": "57196572", + "voter": "ciao" + }, + { + "rshares": "3820074526", + "voter": "villainblack" + }, + { + "rshares": "67219867859", + "voter": "cryptos" + }, + { + "rshares": "8446448806", + "voter": "theconnoisseur" + }, + { + "rshares": "52985539", + "voter": "steemo" + }, + { + "rshares": "8569626145", + "voter": "xianjun" + }, + { + "rshares": "55306941", + "voter": "steema" + }, + { + "rshares": "3209376097", + "voter": "fingolfin" + }, + { + "rshares": "68042118", + "voter": "confucius" + }, + { + "rshares": "4097488430", + "voter": "bledarus" + }, + { + "rshares": "61075670", + "voter": "weames" + }, + { + "rshares": "56157882", + "voter": "jarvis" + }, + { + "rshares": "561462512", + "voter": "microluck" + }, + { + "rshares": "54313084", + "voter": "fortuner" + }, + { + "rshares": "9443278113", + "voter": "pjheinz" + }, + { + "rshares": "33826834839", + "voter": "thecurator" + }, + { + "rshares": "3054149279", + "voter": "virtualgrowth" + }, + { + "rshares": "7981841214", + "voter": "lemouth" + }, + { + "rshares": "20539806569", + "voter": "runaway-psyche" + }, + { + "rshares": "916656643", + "voter": "chanbam" + }, + { + "rshares": "95362884392", + "voter": "anotherjoe" + }, + { + "rshares": "59750246", + "voter": "saveliy" + }, + { + "rshares": "62751101", + "voter": "alfaman" + }, + { + "rshares": "11375408076", + "voter": "gvargas123" + }, + { + "rshares": "50698107", + "voter": "johnbyrd" + }, + { + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "rshares": "50680459", + "voter": "thermor" + }, + { + "rshares": "50691211", + "voter": "ficholl" + }, + { + "rshares": "50673817", + "voter": "widell" + }, + { + "rshares": "278004039", + "voter": "steevc" + }, + { + "rshares": "51481279", + "voter": "revelbrooks" + }, + { + "rshares": "377542979", + "voter": "mrlogic" + }, + { + "rshares": "61115647", + "voter": "steempipe" + }, + { + "rshares": "23522356557", + "voter": "andrewawerdna" + }, + { + "rshares": "75274936", + "voter": "joelbow" + }, + { + "rshares": "9139349966", + "voter": "craigwilliamz" + }, + { + "rshares": "3632579654", + "voter": "naquoya" + }, + { + "rshares": "52708083", + "voter": "curpose" + }, + { + "rshares": "1233668048", + "voter": "lenar" + }, + { + "rshares": "9818184488", + "voter": "lesliestarrohara" + }, + { + "rshares": "88019548", + "voter": "uziriel" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "70275964", + "voter": "lovetosteemit" + }, + { + "rshares": "1624586871", + "voter": "davidjkelley" + }, + { + "rshares": "78525447485", + "voter": "markrmorrisjr" + }, + { + "rshares": "52842496", + "voter": "crion" + }, + { + "rshares": "182060433", + "voter": "greatness" + }, + { + "rshares": "52505412", + "voter": "hitherise" + }, + { + "rshares": "50262756", + "voter": "wiss" + }, + { + "rshares": "42587324218", + "voter": "sponge-bob" + }, + { + "rshares": "15560806947", + "voter": "digital-wisdom" + }, + { + "rshares": "5676881799", + "voter": "leavemealone" + }, + { + "rshares": "474964783", + "voter": "areynolds" + }, + { + "rshares": "3708768210", + "voter": "ethical-ai" + }, + { + "rshares": "53281654", + "voter": "jamespro" + }, + { + "rshares": "51033798", + "voter": "stroully" + }, + { + "rshares": "6827381497", + "voter": "jwaser" + }, + { + "rshares": "345961132", + "voter": "tfeldman" + }, + { + "rshares": "50712038", + "voter": "thadm" + }, + { + "rshares": "50710305", + "voter": "prof" + }, + { + "rshares": "1414660150", + "voter": "ionescur" + }, + { + "rshares": "145187700042", + "voter": "thecyclist" + }, + { + "rshares": "620633970", + "voter": "kev7000" + }, + { + "rshares": "52560790", + "voter": "yorsens" + }, + { + "rshares": "207236223370", + "voter": "asksisk" + }, + { + "rshares": "55690180", + "voter": "jeremyschew" + }, + { + "rshares": "52242652", + "voter": "bane" + }, + { + "rshares": "52236265", + "voter": "vive" + }, + { + "rshares": "50054445", + "voter": "coad" + }, + { + "rshares": "25849035338", + "voter": "dubi" + }, + { + "rshares": "2674022812", + "voter": "bwaser" + }, + { + "rshares": "7642689568", + "voter": "renzoarg" + }, + { + "rshares": "53003720", + "voter": "sofa" + }, + { + "rshares": "2201645172", + "voter": "alina1" + }, + { + "rshares": "1504667661", + "voter": "digitalbrain" + }, + { + "rshares": "7681172153", + "voter": "mariandavp" + }, + { + "rshares": "43440714161", + "voter": "brains" + }, + { + "rshares": "3956902718", + "voter": "ibringawareness" + }, + { + "rshares": "50933404", + "voter": "ailo" + }, + { + "rshares": "5419706802", + "voter": "burnin" + }, + { + "rshares": "598109050", + "voter": "nelyp" + }, + { + "rshares": "51261721", + "voter": "f1111111" + }, + { + "rshares": "438008616", + "voter": "anomaly" + }, + { + "rshares": "2400009033", + "voter": "ellepdub" + }, + { + "rshares": "52928580", + "voter": "gregorygarcia" + }, + { + "rshares": "263062725", + "voter": "ola1" + }, + { + "rshares": "12084353453", + "voter": "herpetologyguy" + }, + { + "rshares": "50441122", + "voter": "eavy" + }, + { + "rshares": "51484593", + "voter": "roto" + }, + { + "rshares": "50263480", + "voter": "drac59" + }, + { + "rshares": "76492342", + "voter": "ancientofdays" + }, + { + "rshares": "4814064056", + "voter": "morgan.waser" + }, + { + "rshares": "51615039", + "voter": "cfisher" + }, + { + "rshares": "58668861", + "voter": "humans" + }, + { + "rshares": "50938725", + "voter": "haved" + }, + { + "rshares": "61035542", + "voter": "teo" + }, + { + "rshares": "2019644456", + "voter": "greenwayoflife" + }, + { + "rshares": "50873654", + "voter": "palladium" + }, + { + "rshares": "1523610145", + "voter": "thebiggestidea" + }, + { + "rshares": "50572441", + "voter": "unilever" + }, + { + "rshares": "50565798", + "voter": "penthouse" + }, + { + "rshares": "50534533", + "voter": "bapparabi" + }, + { + "rshares": "50482289", + "voter": "connection" + }, + { + "rshares": "50351738", + "voter": "aschwin" + }, + { + "rshares": "166200503", + "voter": "haddock" + }, + { + "rshares": "3607535118", + "voter": "strong-ai" + }, + { + "rshares": "69589512", + "voter": "igtes" + }, + { + "rshares": "46774280781", + "voter": "curie" + }, + { + "rshares": "82287966", + "voter": "olesia83" + }, + { + "rshares": "705822962", + "voter": "dikanevroman" + }, + { + "rshares": "138459757", + "voter": "buffett" + }, + { + "rshares": "159730645", + "voter": "uct" + }, + { + "rshares": "159716853", + "voter": "front" + }, + { + "rshares": "158676075", + "voter": "iberia" + }, + { + "rshares": "158649039", + "voter": "ndea30" + }, + { + "rshares": "158641883", + "voter": "domenico" + }, + { + "rshares": "435351417", + "voter": "witchcraftblog" + }, + { + "rshares": "157805871", + "voter": "serena199" + }, + { + "rshares": "160900665", + "voter": "digitalillusions" + }, + { + "rshares": "157774885", + "voter": "gia7" + }, + { + "rshares": "1883713307", + "voter": "dresden" + }, + { + "rshares": "160835930", + "voter": "skrillex" + }, + { + "rshares": "205939206", + "voter": "mgibson" + }, + { + "rshares": "157303076", + "voter": "richie4" + }, + { + "rshares": "157241455", + "voter": "coraline88" + }, + { + "rshares": "156977663", + "voter": "harlen" + }, + { + "rshares": "155225345", + "voter": "food-creator" + }, + { + "rshares": "156939548", + "voter": "yanuel" + }, + { + "rshares": "692395145", + "voter": "ysa" + }, + { + "rshares": "156889267", + "voter": "daritza" + }, + { + "rshares": "159973989", + "voter": "capcom" + }, + { + "rshares": "159950870", + "voter": "haribo" + }, + { + "rshares": "159531007", + "voter": "benetton" + }, + { + "rshares": "156054487", + "voter": "fallout" + }, + { + "rshares": "152431082", + "voter": "alterego" + }, + { + "rshares": "158486055", + "voter": "zendesk" + }, + { + "rshares": "158198121", + "voter": "lefrisa" + }, + { + "rshares": "157848543", + "voter": "bicolisarog" + }, + { + "rshares": "184381906", + "voter": "antaja" + }, + { + "rshares": "203602662", + "voter": "steemdesigner" + }, + { + "rshares": "154247502", + "voter": "dougkarr" + }, + { + "rshares": "846327994", + "voter": "alienbutt" + }, + { + "rshares": "182445807", + "voter": "techslut" + }, + { + "rshares": "112446078", + "voter": "paulocouto" + }, + { + "rshares": "152816202", + "voter": "countofdelphi" + }, + { + "rshares": "151525581", + "voter": "kevinfoesenek" + }, + { + "rshares": "151078228", + "voter": "unterhd6" + }, + { + "rshares": "141999204", + "voter": "newsfeed" + }, + { + "rshares": "147818170", + "voter": "dirlei.sdias" + }, + { + "rshares": "153395599", + "voter": "trickster512" + }, + { + "rshares": "150319355", + "voter": "denise12" + } + ], + "author": "curie", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\n

One Month of Project Curie

\n

This will be special update from Project Curie. One month ago, Project Curie began with humble beginnings. It has been an exhilarating experience for the team and we are delighted to share our progress with the Steemit community. To know more about Project Curie, do check out our initial announcement.


\n

Project Curie wishes to thank @pharesim, @val, @silversteem and @clayop along with @nextgencrypto and @berniesanders for helping us reward more deserving posts

\n

When a group of Steemit writers got together to form Project Curie, we thought that if we pooled our own votes on some posts, we could help reward some emerging and undiscovered authors who were posting great original material. 

\n

$5 later, it was clear our combined votes wouldn\u2019t make a huge difference.

\n

Fortunately, we were able to form a partnership with @nextgencrypto who was generous enough to donate some voting power to help reward deserving posters who were not yet established. @berniesanders then joined to help. With their support, Project Curie became a reality. 

\n

Today, we announce that @val, @pharesim, @silversteem and @clayop also have donated additional voting power to help Project Curie reach a greater number of original content posts from undiscovered and deserving authors. Please join us in thanking them. And please do not send your posts directly to any of these individuals; Project Curie is curating the posts and you are welcome to submit any good ones you find to the #curie channel on Steemit.chat.


\n\n

Proyecto Cervantes

\n

Project Curie is excited to announce a new branch of curation created to support Spanish authors on Steemit. The branch is called \u201cProyecto Cervantes\u201d and it\u2019s main curators are @gargon and @pgarcgo. The goal is to find and reward Spanish or bilingual (Spanish and English) posts on Steemit in order to foster a more diverse community. @gargon and @pgarcgo will be creating a compilation post for every 10 posts that they curate in order to provide transparency as to which posts are being rewarded. The hope is also to provide the original authors more exposure. You can find their first compilation posts here and here. Two members of Project Curie are Spanish speakers ( @anwenbaumeister and @the-alien), and they provide a second line of curation and review for these posts. So, if you are a Spanish speaker, we encourage you to begin writing bilingual posts in order to create a bridge between the two languages and communities!

\n\n
\n\n

Statistics from Month #1

\n

Total posts curated: 2055
\n
Unique authors rewarded: 763
\n
Total rewards generated for authors: SBD 158,151
\n
Mean reward generated per post: SBD 77
\n
Median reward generated per post: SBD 40  

\n

\n

Since we began tracking on 18th August, we have consistently voted on an average of over 75 posts per day. The trajectory is clearly heading up, and in the last week we have been averaging nearly 100 posts. 

\n

Authors

\n

The Top 10 Authors by number of posts curated were -

\n
    \n
  • @kimal73   
  • \n
  • @herverisson   
  • \n
  • @cristi   
  • \n
  • @lukeofkondor   
  • \n
  • @papa-pepper   
  • \n
  • @cryptos   
  • \n
  • @mariandavp   
  • \n
  • @stephmckenzie   
  • \n
  • @eveningstar92   
  • \n
  • @prufarchy    
  • \n
\n

Top Authors by payouts includes @alexbeyman, @kaylinart, @brianphobos, @jamielefay, @omfedor, @stephmckenzie, @ionescur, @aboundlessworld and @anotherjoe. Many of those names are pretty familiar today, but less than a month ago, they were new authors struggling for exposure.

\n

Tags/Topics

\n

The most used tag was \"life\", but that pretty much includes everything!

\n

\n

The most popular topics were \"art\" (549) and \"photography\" (418). \"Story\" and \"writing\" were pretty close, tagged on around 370 posts each, though we suspect these two tags are often repeated. \"Travel\" and \"science\" also make an appearance. Looking forward, we intend to focus more on original science and technology related posts, and other unique / niche topics. 

\n

#curie

\n

Following our announcement on September 2nd, the #curie channel has been a remarkable success. Currently we have 218 users in the room, 44 of whom have curated content from other authors. We have upvoted 105 posts submitted in #curie, and paid out SBD 525 to curators. 

\n

Top curators from #curie were -

\n
    \n
  • @pfunk
  • \n
  • @kental
  • \n
  • @jamtaylor
  • \n
  • @deviedev
  • \n
  • @royaltiffany
  • \n
\n

Join us on #curie at Steemit.chat and keep the submissions coming! 


\n

Thanks

\n

Last, but not least, we wish to thank - 

\n

@knozaki2015, @shaka, @razvanelulmarin, @greenwayoflife, @jasonstaggers for their generous donations.
\n@royaltiffany for moderating #curie and creating the noble TheButler bot. :)
\n@firepower for setting up the #curie room.
\n
\nAnd of course, everyone voting on and commenting on posts we curate!


\n

Onward to Month #2! 

\n

We are working to increase our reach and rewards for authors, courtesy of extended whale support. We are also setting up @curie as a universal voter for all posts we curate. This way, you can choose to mirror our votes to support the authors. Look out for an announcement regarding this in our Daily Curation List posts. From next week, every Monday we'll have a Weekly Roundup with statistics, similar to this post.

\n

We are always open to feedback, and would love to know how you feel we could do better in Month #2!

\n", + "category": "curie", + "children": 37, + "created": "2016-09-14T14:11:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/01/Babel-Lille-2012-Bibliohteque-ideale-2-Jean-Francois-RAUZIER4f9da.jpg", + "https://www.steemimg.com/images/2016/09/14/curie-1da303.jpg", + "https://www.steemimg.com/images/2016/09/14/curie-23f98a.jpg" + ], + "links": [ + "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", + "https://steemit.com/spanish/@gargon/proyecto-cervantes-08-11-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", + "https://steemit.com/spanish/@pgarcgo/proyecto-cervantes-11-13-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and" + ], + "tags": [ + "curie", + "minnows", + "hidden-gems", + "steemit", + "project-curie" + ], + "users": [ + "pharesim", + "val", + "silversteem", + "clayop", + "nextgencrypto", + "berniesanders", + "gargon", + "pgarcgo", + "anwenbaumeister", + "the-alien", + "kimal73", + "herverisson", + "cristi", + "lukeofkondor", + "papa-pepper", + "cryptos", + "mariandavp", + "stephmckenzie", + "eveningstar92", + "prufarchy", + "alexbeyman", + "kaylinart", + "brianphobos", + "jamielefay", + "omfedor", + "ionescur", + "aboundlessworld", + "anotherjoe", + "pfunk", + "kental", + "jamtaylor", + "deviedev", + "royaltiffany", + "knozaki2015", + "shaka", + "razvanelulmarin", + "greenwayoflife", + "jasonstaggers", + "firepower", + "curie" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 203814685511375, + "payout": 2332.588, + "payout_at": "2016-09-15T22:00:19", + "pending_payout_value": "2332.588 HBD", + "percent_hbd": 10000, + "permlink": "special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", + "post_id": 949447, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 318 + }, + "title": "Special Edition: Major Updates & Project Curie Month #1 Roundup (12 August - 11 September 2016)", + "updated": "2016-09-14T16:09:51", + "url": "/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016" + }, + { + "active_votes": [ + { + "rshares": "31307487536364", + "voter": "smooth" + }, + { + "rshares": "231809639013", + "voter": "anonymous" + }, + { + "rshares": "1551268628220", + "voter": "butterfly" + }, + { + "rshares": "4287714457313", + "voter": "riverhead" + }, + { + "rshares": "1855967006728", + "voter": "badassmother" + }, + { + "rshares": "2053236030423", + "voter": "hr1" + }, + { + "rshares": "1271804694676", + "voter": "rossco99" + }, + { + "rshares": "2206068741954", + "voter": "wang" + }, + { + "rshares": "22391622942", + "voter": "jaewoocho" + }, + { + "rshares": "1534654466021", + "voter": "joseph" + }, + { + "rshares": "466132509421", + "voter": "recursive2" + }, + { + "rshares": "452874558937", + "voter": "recursive3" + }, + { + "rshares": "636519834128", + "voter": "masteryoda" + }, + { + "rshares": "3120576239931", + "voter": "recursive" + }, + { + "rshares": "5942254587236", + "voter": "smooth.witness" + }, + { + "rshares": "8927291120", + "voter": "idol" + }, + { + "rshares": "800066797130", + "voter": "steemrollin" + }, + { + "rshares": "4941942978", + "voter": "sakr" + }, + { + "rshares": "284401462010", + "voter": "chitty" + }, + { + "rshares": "75736848691", + "voter": "unosuke" + }, + { + "rshares": "481790356914", + "voter": "noaommerrr" + }, + { + "rshares": "1536592488", + "voter": "jocelyn" + }, + { + "rshares": "85270554570", + "voter": "acidsun" + }, + { + "rshares": "14502980866", + "voter": "gregory-f" + }, + { + "rshares": "154334962550", + "voter": "edgeland" + }, + { + "rshares": "9028550345", + "voter": "gregory60" + }, + { + "rshares": "1196485708874", + "voter": "gavvet" + }, + { + "rshares": "89897944197", + "voter": "eeks" + }, + { + "rshares": "1511911763", + "voter": "fkn" + }, + { + "rshares": "122160437", + "voter": "paco-steem" + }, + { + "rshares": "1471747302", + "voter": "spaninv" + }, + { + "rshares": "1987313581", + "voter": "elishagh1" + }, + { + "rshares": "7803257741", + "voter": "richman" + }, + { + "rshares": "584279800798", + "voter": "nanzo-scoop" + }, + { + "rshares": "9857825141", + "voter": "kefkius" + }, + { + "rshares": "177417522325", + "voter": "mummyimperfect" + }, + { + "rshares": "2366347863", + "voter": "alenevaa" + }, + { + "rshares": "313697862", + "voter": "coar" + }, + { + "rshares": "106635074770", + "voter": "asch" + }, + { + "rshares": "1061264730", + "voter": "murh" + }, + { + "rshares": "3187850436", + "voter": "cryptofunk" + }, + { + "rshares": "579494558", + "voter": "kodi" + }, + { + "rshares": "2003359924", + "voter": "error" + }, + { + "rshares": "11848125383", + "voter": "andu" + }, + { + "rshares": "970579316703", + "voter": "cyber" + }, + { + "rshares": "59952188311", + "voter": "theshell" + }, + { + "rshares": "49580154489", + "voter": "ak2020" + }, + { + "rshares": "3848697023555", + "voter": "satoshifund" + }, + { + "rshares": "402139444", + "voter": "applecrisp" + }, + { + "rshares": "35693164103", + "voter": "altoz" + }, + { + "rshares": "95314034", + "voter": "stiletto" + }, + { + "rshares": "219283354085", + "voter": "will-zewe" + }, + { + "rshares": "12241505540", + "voter": "lindee-hamner" + }, + { + "rshares": "15787522491", + "voter": "zakharya" + }, + { + "rshares": "275008585094", + "voter": "trogdor" + }, + { + "rshares": "5047464747", + "voter": "tee-em" + }, + { + "rshares": "5821262190", + "voter": "mark-waser" + }, + { + "rshares": "118356217412", + "voter": "geoffrey" + }, + { + "rshares": "16027781644", + "voter": "kimziv" + }, + { + "rshares": "45359587433", + "voter": "honeythief" + }, + { + "rshares": "75333038089", + "voter": "emily-cook" + }, + { + "rshares": "2187607792", + "voter": "superfreek" + }, + { + "rshares": "17557768630", + "voter": "grey580" + }, + { + "rshares": "275327756", + "voter": "ladyclair" + }, + { + "rshares": "3898829337", + "voter": "michaellamden68" + }, + { + "rshares": "19975706505", + "voter": "thebatchman" + }, + { + "rshares": "3350419346", + "voter": "orly" + }, + { + "rshares": "5271030976", + "voter": "riscadox" + }, + { + "rshares": "7380892516", + "voter": "furion" + }, + { + "rshares": "105911917280", + "voter": "cdubendo" + }, + { + "rshares": "156249887947", + "voter": "jacor" + }, + { + "rshares": "2632460141", + "voter": "steem1653" + }, + { + "rshares": "136322030", + "voter": "cynetyc" + }, + { + "rshares": "80777327", + "voter": "snowden" + }, + { + "rshares": "5250179537", + "voter": "thegoodguy" + }, + { + "rshares": "14168005907", + "voter": "aaseb" + }, + { + "rshares": "4209533734", + "voter": "karen13" + }, + { + "rshares": "8751103405", + "voter": "noodhoog" + }, + { + "rshares": "8164924332", + "voter": "hyiparena" + }, + { + "rshares": "46859060143", + "voter": "milestone" + }, + { + "rshares": "21565632626", + "voter": "artific" + }, + { + "rshares": "33739169732", + "voter": "creemej" + }, + { + "rshares": "15378221086", + "voter": "nippel66" + }, + { + "rshares": "163325751551", + "voter": "blueorgy" + }, + { + "rshares": "13373880577", + "voter": "benjiberigan" + }, + { + "rshares": "349618451", + "voter": "poseidon" + }, + { + "rshares": "7946812357", + "voter": "smolalit" + }, + { + "rshares": "3365797955", + "voter": "simon.braki.love" + }, + { + "rshares": "5609578664", + "voter": "sharker" + }, + { + "rshares": "204618396015", + "voter": "jl777" + }, + { + "rshares": "1114903893", + "voter": "oecp85" + }, + { + "rshares": "1218867625", + "voter": "victoria2002" + }, + { + "rshares": "1226120506", + "voter": "positive" + }, + { + "rshares": "1809205777", + "voter": "yarly" + }, + { + "rshares": "272641013", + "voter": "yarly2" + }, + { + "rshares": "273048922", + "voter": "yarly3" + }, + { + "rshares": "157733805", + "voter": "yarly4" + }, + { + "rshares": "158624349", + "voter": "yarly5" + }, + { + "rshares": "90416287", + "voter": "yarly7" + }, + { + "rshares": "50626015", + "voter": "steemchain" + }, + { + "rshares": "17267341753", + "voter": "proto" + }, + { + "rshares": "2708629529", + "voter": "sisterholics" + }, + { + "rshares": "437620869", + "voter": "yarly10" + }, + { + "rshares": "234191245", + "voter": "yarly11" + }, + { + "rshares": "8781903824", + "voter": "royalmacro" + }, + { + "rshares": "81879061", + "voter": "yarly12" + }, + { + "rshares": "146224042", + "voter": "steemster1" + }, + { + "rshares": "3022447454", + "voter": "dmilash" + }, + { + "rshares": "3353991305", + "voter": "glitterpig" + }, + { + "rshares": "8734185109", + "voter": "taker" + }, + { + "rshares": "7825324952", + "voter": "nekromarinist" + }, + { + "rshares": "57873464", + "voter": "sharon" + }, + { + "rshares": "58971492", + "voter": "lillianjones" + }, + { + "rshares": "95786319596", + "voter": "laonie" + }, + { + "rshares": "153264363976", + "voter": "twinner" + }, + { + "rshares": "24562882668", + "voter": "laoyao" + }, + { + "rshares": "2664979204", + "voter": "myfirst" + }, + { + "rshares": "19443061295", + "voter": "somebody" + }, + { + "rshares": "726959262", + "voter": "flysaga" + }, + { + "rshares": "7707314246", + "voter": "asdes" + }, + { + "rshares": "2501638608", + "voter": "gmurph" + }, + { + "rshares": "1693568633", + "voter": "stormblaze" + }, + { + "rshares": "5558177167", + "voter": "denn" + }, + { + "rshares": "4295114546", + "voter": "midnightoil" + }, + { + "rshares": "3157785139", + "voter": "kurtbeil" + }, + { + "rshares": "10742990382", + "voter": "xiaohui" + }, + { + "rshares": "67965196", + "voter": "zahar" + }, + { + "rshares": "485140088", + "voter": "elfkitchen" + }, + { + "rshares": "99935909954", + "voter": "joele" + }, + { + "rshares": "5855738054", + "voter": "oflyhigh" + }, + { + "rshares": "15549176040", + "voter": "randyclemens" + }, + { + "rshares": "79785139", + "voter": "dims" + }, + { + "rshares": "335856762", + "voter": "xiaokongcom" + }, + { + "rshares": "1446509276", + "voter": "future24" + }, + { + "rshares": "60819615", + "voter": "msjennifer" + }, + { + "rshares": "54654502", + "voter": "ciao" + }, + { + "rshares": "13254585210", + "voter": "cristi" + }, + { + "rshares": "54217761", + "voter": "steemo" + }, + { + "rshares": "677027684", + "voter": "xianjun" + }, + { + "rshares": "54077897", + "voter": "steema" + }, + { + "rshares": "72192938", + "voter": "sijoittaja" + }, + { + "rshares": "69662169", + "voter": "confucius" + }, + { + "rshares": "93807196108", + "voter": "miacats" + }, + { + "rshares": "54909929", + "voter": "jarvis" + }, + { + "rshares": "74131936", + "voter": "razberrijam" + }, + { + "rshares": "53106127", + "voter": "fortuner" + }, + { + "rshares": "2022702929", + "voter": "chinadaily" + }, + { + "rshares": "10471074095", + "voter": "pjheinz" + }, + { + "rshares": "86712034", + "voter": "pompe72" + }, + { + "rshares": "108403024", + "voter": "pollina" + }, + { + "rshares": "51877132", + "voter": "johnbyrd" + }, + { + "rshares": "51860909", + "voter": "thomasaustin" + }, + { + "rshares": "51859074", + "voter": "thermor" + }, + { + "rshares": "51870077", + "voter": "ficholl" + }, + { + "rshares": "51852278", + "voter": "widell" + }, + { + "rshares": "3635091595", + "voter": "movievertigo" + }, + { + "rshares": "51481279", + "voter": "revelbrooks" + }, + { + "rshares": "2982691190", + "voter": "netaterra" + }, + { + "rshares": "21980957828", + "voter": "andrewawerdna" + }, + { + "rshares": "4337454155", + "voter": "onetree" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "50416427", + "voter": "curpose" + }, + { + "rshares": "989363278", + "voter": "dajohns1420" + }, + { + "rshares": "2196907450", + "voter": "runridefly" + }, + { + "rshares": "1783693666", + "voter": "funkywanderer" + }, + { + "rshares": "4747321980", + "voter": "richardcrill" + }, + { + "rshares": "2205784762", + "voter": "jeremyfromwi" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "4546391288", + "voter": "nadin3" + }, + { + "rshares": "1625414479", + "voter": "davidjkelley" + }, + { + "rshares": "9458733324", + "voter": "aggroed" + }, + { + "rshares": "50593879", + "voter": "crion" + }, + { + "rshares": "178419224", + "voter": "greatness" + }, + { + "rshares": "50271139", + "voter": "hitherise" + }, + { + "rshares": "50262756", + "voter": "wiss" + }, + { + "rshares": "53143607139", + "voter": "sponge-bob" + }, + { + "rshares": "15571125147", + "voter": "digital-wisdom" + }, + { + "rshares": "3710973264", + "voter": "ethical-ai" + }, + { + "rshares": "51033798", + "voter": "stroully" + }, + { + "rshares": "6831389463", + "voter": "jwaser" + }, + { + "rshares": "1064809843", + "voter": "tatianka" + }, + { + "rshares": "50712038", + "voter": "thadm" + }, + { + "rshares": "50710305", + "voter": "prof" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "50370757", + "voter": "yorsens" + }, + { + "rshares": "50065875", + "voter": "bane" + }, + { + "rshares": "50059754", + "voter": "vive" + }, + { + "rshares": "50054445", + "voter": "coad" + }, + { + "rshares": "2617343597", + "voter": "bwaser" + }, + { + "rshares": "50840303", + "voter": "sofa" + }, + { + "rshares": "323483227", + "voter": "panther" + }, + { + "rshares": "53871683", + "voter": "doggnostic" + }, + { + "rshares": "53593366", + "voter": "jenny-talls" + }, + { + "rshares": "54239080444", + "voter": "brains" + }, + { + "rshares": "50450987", + "voter": "waldemar-kuhn" + }, + { + "rshares": "50933404", + "voter": "ailo" + }, + { + "rshares": "1387263917", + "voter": "steemafon" + }, + { + "rshares": "1317649856", + "voter": "bitcoinparadise" + }, + { + "rshares": "5753524189", + "voter": "chick1" + }, + { + "rshares": "3338622584", + "voter": "steempowerwhale" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "50516543", + "voter": "typingagent" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "62515317", + "voter": "freebornangel" + }, + { + "rshares": "271440423", + "voter": "anomaly" + }, + { + "rshares": "2401297947", + "voter": "ellepdub" + }, + { + "rshares": "120649148", + "voter": "rynow" + }, + { + "rshares": "61292139", + "voter": "inarix03" + }, + { + "rshares": "98577200", + "voter": "ola1" + }, + { + "rshares": "50583338", + "voter": "rayzzz" + }, + { + "rshares": "12115690216", + "voter": "herpetologyguy" + }, + { + "rshares": "4712300251", + "voter": "morgan.waser" + }, + { + "rshares": "51230296", + "voter": "steemq" + }, + { + "rshares": "50871059", + "voter": "motion" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "50704078", + "voter": "yotoh" + }, + { + "rshares": "50538694", + "voter": "fenix" + }, + { + "rshares": "1921231770", + "voter": "bapparabi" + }, + { + "rshares": "50532230", + "voter": "friends" + }, + { + "rshares": "50349676", + "voter": "albertheijn" + }, + { + "rshares": "3609651500", + "voter": "strong-ai" + }, + { + "rshares": "516546553", + "voter": "grisha-danunaher" + }, + { + "rshares": "71207873", + "voter": "igtes" + }, + { + "rshares": "141679752", + "voter": "buffett" + }, + { + "rshares": "213848535", + "voter": "sjamayee" + }, + { + "rshares": "453506109", + "voter": "witchcraftblog" + }, + { + "rshares": "3265972001", + "voter": "zaitsevalesyaa" + }, + { + "rshares": "161205518", + "voter": "acute" + }, + { + "rshares": "161179339", + "voter": "bethesda" + }, + { + "rshares": "160957729", + "voter": "realtime" + }, + { + "rshares": "7187212765", + "voter": "dresden" + }, + { + "rshares": "212371776", + "voter": "mgibson" + }, + { + "rshares": "156837244", + "voter": "capcom" + }, + { + "rshares": "159506164", + "voter": "greenpeace" + }, + { + "rshares": "159352476", + "voter": "panic" + }, + { + "rshares": "156054487", + "voter": "fallout" + }, + { + "rshares": "159025535", + "voter": "xtreme" + }, + { + "rshares": "1473342460", + "voter": "modernbukowski" + }, + { + "rshares": "158541985", + "voter": "citigroup" + }, + { + "rshares": "30995434343", + "voter": "goldmatters" + }, + { + "rshares": "71727340", + "voter": "dealzgal" + }, + { + "rshares": "64921864", + "voter": "storage" + }, + { + "rshares": "298391608", + "voter": "risabold" + }, + { + "rshares": "55383257", + "voter": "blackmarket" + }, + { + "rshares": "58454327", + "voter": "gifts" + }, + { + "rshares": "93882016", + "voter": "expat" + }, + { + "rshares": "126595034", + "voter": "toddemaher1" + } + ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "@herpetologyguy\n\nOne of my many tasks as a zoo keeper is connecting people to animals. \n-\n\n\n\n

The museum I work at is unique because we showcase animals that are native to Virginia -- meaning that these are animals people will find close to home, rather than across the ocean in some distant country. This makes my job more crucial in that I am responsible for educating people about the reptiles and amphibians that they will find in their own backyards. And obviously, there\u2019s one group of reptiles that gives people more pause than almost any other animal . . . . 

\n

Snakes. 

\n

http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj   Picture Credit

\n

I do public programs featuring snakes quite frequently.  I believe people should know how to identify local venomous/non-venomous snakes, their role in the environment and how to deal with them when they are in close proximity to our homes.  Usually, I get eager audiences asking great questions.  But, every now and then, I get some idiot who tells me, \u201cI saw that same snake in my backyard! I chopped off its head with a shovel!\u201d

\n

Are they an idiot for killing the snake?  Not necessarily . . . I don\u2019t know the situation behind the encounter. But, only an idiot would walk into a wildlife facility, approach a zoo keeper and proudly declare that they kill the very same animals that the keeper is charged with the care for.  Would you walk into an animal shelter and tell someone working there that you enjoy stomping on puppies?  To us, there\u2019s not much difference\u2026 

\n

http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png   Picture Credit\n

\n

The best we can do in these situations is to try to educate people. This can be difficult because so many people are set in their ways -- plus we have to combat an instinctive fear and prejudice against snakes.  So, I\u2019m going to briefly lay it all out for you and tell you \"Why you shouldn\u2019t kill that snake in your yard.\" 

\n

http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg   Picture Credit

\n

1.  It\u2019s ILLEGAL in most states to kill a wild snake, unless that snake presents an IMMEDIATE threat.  And no, a snake crawling through your yard does not represent a good enough excuse to use force.  We\u2019re talking about a situation where a venomous snake is about to strike and you have no escape route but to fight your way out.  And guess what, that really doesn\u2019t ever happen (barring instances where someone purposefully provokes an animal).  Wildlife and law enforcement agencies are cracking down on people killing snakes, so it\u2019s better to keep yourself out of trouble. 

\n

http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg   Picture Credit

\n

2.  You are putting yourself in harm\u2019s way.  The vast majority of snake bites occur when people attempt to capture or kill snakes.  If left alone, the snake CANNOT hurt you.  Call wildlife services or trained professionals to remove the animal. 

\n

http://www.snakegetters.com/demo/bud-cotton-gg.jpg   Picture Credit

\n

3.  It\u2019s an incredibly beneficial animal, and you\u2019d be foolish to kill it.  Small snakes eat a huge variety of pest insects that destroy gardens, while large snakes typically feed on rats and other rodents that infest our homes.  If you see a large snake hanging around, you have a rodent problem; snakes will not hang around if there is no food source.  To keep snakes from being attracted to your property, do your best to remove any shelter or food sources that would attract rodents.  Some snakes even eat other snakes, and species like the harmless king snake will even feed on venomous species! 

\n

https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg   Picture Credit

\n

4.  Another snake might show up.  Snakes will not typically inhabit the same area in order to avoid competition.  If you kill that harmless rat snake, but you still have a food source nearby, another snake may move in to make use of that source.  The new snake may be another harmless species or something a bit less desirable.  So why not let that harmless snake take care of the infestation for you?

\n

http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg   Picture Credit

\n

Having a snake around can be hugely beneficial to you.  It is a free, environmentally-safe form of pest control.  Snakes, including venomous species, are non-aggressive animals (unless you provoke them) that will actively do their best to AVOID people.  A resident snake will often go unnoticed by homeowners, and most encounters are fleeting glimpses of the snake making a hasty escape.  Remember that snakes have their own unique role in the environment, and regardless of our own fears and feelings towards them, they are a necessary part of life. 

\n

   http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg   Picture Credit

\n\n\nif you liked this also please check out:\nhttps://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians\n\n\n***don't forget to follow @herpetologyguy***", + "category": "herpetology", + "children": 6, + "created": "2016-09-15T18:19:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg" + ], + "links": [ + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://www.sciencemag.org", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://proactivepestga.com", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://blogs.discovermagazine.com", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.mylakelandnow.com", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "http://www.snakegetters.com", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "https://www.youtube.com/watch?v=ImOj1CKTBqE", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://phenomena.nationalgeographic.com", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg", + "http://westernmassnaturalist.org", + "https://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians" + ], + "tags": [ + "herpetology", + "reptiles", + "snakes", + "science" + ], + "users": [ + "herpetologyguy" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 68620995119384, + "payout": 274.438, + "payout_at": "2016-09-16T18:44:06", + "pending_payout_value": "274.438 HBD", + "percent_hbd": 10000, + "permlink": "why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", + "post_id": 960258, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 247 + }, + "title": "Why You Don\u2019t Want to Kill that Snake in Your Yard (featuring @herpetologyguy as author)", + "updated": "2016-09-15T18:19:39", + "url": "/herpetology/@gavvet/why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author" + }, + { + "active_votes": [ + { + "rshares": "31621188390159", + "voter": "smooth" + }, + { + "rshares": "2078528809174", + "voter": "bmw" + }, + { + "rshares": "1912120788268", + "voter": "badassmother" + }, + { + "rshares": "3312854507128", + "voter": "pharesim" + }, + { + "rshares": "2053144245901", + "voter": "hr1" + }, + { + "rshares": "1271804694676", + "voter": "rossco99" + }, + { + "rshares": "22390733187", + "voter": "jaewoocho" + }, + { + "rshares": "1736291789819", + "voter": "steemychicken1" + }, + { + "rshares": "1533973920081", + "voter": "joseph" + }, + { + "rshares": "466132509421", + "voter": "recursive2" + }, + { + "rshares": "652005899349", + "voter": "masteryoda" + }, + { + "rshares": "3120458041174", + "voter": "recursive" + }, + { + "rshares": "5941203882368", + "voter": "smooth.witness" + }, + { + "rshares": "9168101098", + "voter": "idol" + }, + { + "rshares": "816386307308", + "voter": "steemrollin" + }, + { + "rshares": "4941741048", + "voter": "sakr" + }, + { + "rshares": "1578030666", + "voter": "jocelyn" + }, + { + "rshares": "83530339170", + "voter": "acidsun" + }, + { + "rshares": "14818192446", + "voter": "gregory-f" + }, + { + "rshares": "151248263299", + "voter": "edgeland" + }, + { + "rshares": "9028522101", + "voter": "gregory60" + }, + { + "rshares": "74914792736", + "voter": "eeks" + }, + { + "rshares": "15119117634", + "voter": "fkn" + }, + { + "rshares": "19873135819", + "voter": "elishagh1" + }, + { + "rshares": "7802860274", + "voter": "richman" + }, + { + "rshares": "584250736753", + "voter": "nanzo-scoop" + }, + { + "rshares": "177409209153", + "voter": "mummyimperfect" + }, + { + "rshares": "313697862", + "voter": "coar" + }, + { + "rshares": "106632631169", + "voter": "asch" + }, + { + "rshares": "1061245798", + "voter": "murh" + }, + { + "rshares": "6230746892", + "voter": "cryptofunk" + }, + { + "rshares": "2057413439", + "voter": "error" + }, + { + "rshares": "962077066542", + "voter": "cyber" + }, + { + "rshares": "59950063204", + "voter": "theshell" + }, + { + "rshares": "49578772788", + "voter": "ak2020" + }, + { + "rshares": "76584409982", + "voter": "noganoo" + }, + { + "rshares": "3848540783991", + "voter": "satoshifund" + }, + { + "rshares": "400880323222", + "voter": "taoteh1221" + }, + { + "rshares": "410517349", + "voter": "applecrisp" + }, + { + "rshares": "35693164103", + "voter": "altoz" + }, + { + "rshares": "335983556", + "voter": "gardening" + }, + { + "rshares": "336136344", + "voter": "survival" + }, + { + "rshares": "10021612024", + "voter": "arisa" + }, + { + "rshares": "280737930617", + "voter": "trogdor" + }, + { + "rshares": "5950554459", + "voter": "mark-waser" + }, + { + "rshares": "118348776939", + "voter": "geoffrey" + }, + { + "rshares": "42738217262", + "voter": "kimziv" + }, + { + "rshares": "24170583392", + "voter": "seth-krings" + }, + { + "rshares": "46264097306", + "voter": "honeythief" + }, + { + "rshares": "78976166587", + "voter": "technology" + }, + { + "rshares": "76017114668", + "voter": "emily-cook" + }, + { + "rshares": "2187607792", + "voter": "superfreek" + }, + { + "rshares": "49806227536", + "voter": "isteemit" + }, + { + "rshares": "10993053311", + "voter": "auction" + }, + { + "rshares": "17557768630", + "voter": "grey580" + }, + { + "rshares": "19975264794", + "voter": "thebatchman" + }, + { + "rshares": "60403077307", + "voter": "lehard" + }, + { + "rshares": "3283410959", + "voter": "orly" + }, + { + "rshares": "5270985903", + "voter": "riscadox" + }, + { + "rshares": "24867544970", + "voter": "katyakov" + }, + { + "rshares": "12790313163", + "voter": "jako" + }, + { + "rshares": "1159208963", + "voter": "steemswede" + }, + { + "rshares": "1664172448", + "voter": "sergei" + }, + { + "rshares": "238378512", + "voter": "honey" + }, + { + "rshares": "71343869654", + "voter": "furion" + }, + { + "rshares": "354114465", + "voter": "barbara2" + }, + { + "rshares": "393593664", + "voter": "ch0c0latechip" + }, + { + "rshares": "364274718", + "voter": "doge4lyf" + }, + { + "rshares": "5532441214", + "voter": "on0tole" + }, + { + "rshares": "1231812238", + "voter": "dicov" + }, + { + "rshares": "2834923420", + "voter": "steem1653" + }, + { + "rshares": "2919298058", + "voter": "sveokla" + }, + { + "rshares": "17173174800", + "voter": "sebastien" + }, + { + "rshares": "5357205853", + "voter": "thegoodguy" + }, + { + "rshares": "14167556353", + "voter": "aaseb" + }, + { + "rshares": "1026087885", + "voter": "danielkt" + }, + { + "rshares": "4209522316", + "voter": "karen13" + }, + { + "rshares": "251366150295", + "voter": "nabilov" + }, + { + "rshares": "629471993", + "voter": "luisucv34" + }, + { + "rshares": "462033723200", + "voter": "knozaki2015" + }, + { + "rshares": "95668007343", + "voter": "inertia" + }, + { + "rshares": "46858037615", + "voter": "milestone" + }, + { + "rshares": "7164489185", + "voter": "lichtblick" + }, + { + "rshares": "34761364489", + "voter": "creemej" + }, + { + "rshares": "2726160685", + "voter": "the-future" + }, + { + "rshares": "15378115921", + "voter": "nippel66" + }, + { + "rshares": "23929304431", + "voter": "phenom" + }, + { + "rshares": "167305835788", + "voter": "blueorgy" + }, + { + "rshares": "12849414672", + "voter": "benjiberigan" + }, + { + "rshares": "932262984", + "voter": "poseidon" + }, + { + "rshares": "19717588129", + "voter": "mustafaomar" + }, + { + "rshares": "3435918746", + "voter": "simon.braki.love" + }, + { + "rshares": "82781233416", + "voter": "thylbom" + }, + { + "rshares": "32543400703", + "voter": "deanliu" + }, + { + "rshares": "4996306142", + "voter": "dmitriybtc" + }, + { + "rshares": "1019831473", + "voter": "hemp" + }, + { + "rshares": "118287211", + "voter": "flowers" + }, + { + "rshares": "204617853645", + "voter": "jl777" + }, + { + "rshares": "30989251579", + "voter": "zaebars" + }, + { + "rshares": "12261205066", + "voter": "positive" + }, + { + "rshares": "1773021661", + "voter": "yarly" + }, + { + "rshares": "267188192", + "voter": "yarly2" + }, + { + "rshares": "267587944", + "voter": "yarly3" + }, + { + "rshares": "154579129", + "voter": "yarly4" + }, + { + "rshares": "155451862", + "voter": "yarly5" + }, + { + "rshares": "88607961", + "voter": "yarly7" + }, + { + "rshares": "50626015", + "voter": "steemchain" + }, + { + "rshares": "50626015", + "voter": "whalepool" + }, + { + "rshares": "6114654934", + "voter": "summonerrk" + }, + { + "rshares": "12098269394", + "voter": "webdeals" + }, + { + "rshares": "231254136", + "voter": "alexbezimeni" + }, + { + "rshares": "17267307497", + "voter": "proto" + }, + { + "rshares": "7222569746", + "voter": "sisterholics" + }, + { + "rshares": "428868451", + "voter": "yarly10" + }, + { + "rshares": "229507420", + "voter": "yarly11" + }, + { + "rshares": "80241480", + "voter": "yarly12" + }, + { + "rshares": "412825844", + "voter": "fnait" + }, + { + "rshares": "366755128", + "voter": "keepcalmand" + }, + { + "rshares": "180668119", + "voter": "kibela" + }, + { + "rshares": "3084130055", + "voter": "dmilash" + }, + { + "rshares": "13626326152", + "voter": "mahekg" + }, + { + "rshares": "50578642550", + "voter": "gomeravibz" + }, + { + "rshares": "8734139434", + "voter": "taker" + }, + { + "rshares": "6521104126", + "voter": "nekromarinist" + }, + { + "rshares": "6895440187", + "voter": "theprophet" + }, + { + "rshares": "255409573883", + "voter": "laonie" + }, + { + "rshares": "24562026280", + "voter": "laoyao" + }, + { + "rshares": "7994566199", + "voter": "myfirst" + }, + { + "rshares": "51844874813", + "voter": "somebody" + }, + { + "rshares": "1938440237", + "voter": "flysaga" + }, + { + "rshares": "2084695835", + "voter": "gmurph" + }, + { + "rshares": "68250832", + "voter": "missmishel623" + }, + { + "rshares": "11452948850", + "voter": "midnightoil" + }, + { + "rshares": "2280336943", + "voter": "kalimor" + }, + { + "rshares": "4190335896", + "voter": "ullikume" + }, + { + "rshares": "28645142464", + "voter": "xiaohui" + }, + { + "rshares": "1293627572", + "voter": "elfkitchen" + }, + { + "rshares": "102434307703", + "voter": "joele" + }, + { + "rshares": "5855564372", + "voter": "oflyhigh" + }, + { + "rshares": "895565145", + "voter": "xiaokongcom" + }, + { + "rshares": "12687522802", + "voter": "gargon" + }, + { + "rshares": "2076619689", + "voter": "natalymaty" + }, + { + "rshares": "84763896", + "voter": "numberone" + }, + { + "rshares": "62760150", + "voter": "diamonds" + }, + { + "rshares": "1805296575", + "voter": "xianjun" + }, + { + "rshares": "3251259359", + "voter": "unrealisback" + }, + { + "rshares": "11292536945", + "voter": "borran" + }, + { + "rshares": "93805187965", + "voter": "miacats" + }, + { + "rshares": "118219525", + "voter": "microluck" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "2022625104", + "voter": "chinadaily" + }, + { + "rshares": "84708065280", + "voter": "serejandmyself" + }, + { + "rshares": "106144628", + "voter": "pollina" + }, + { + "rshares": "2958177650", + "voter": "macartem" + }, + { + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "rshares": "10691300360", + "voter": "jaredcwillis" + }, + { + "rshares": "2982676167", + "voter": "netaterra" + }, + { + "rshares": "59171026", + "voter": "piezolit" + }, + { + "rshares": "6069996297", + "voter": "trev" + }, + { + "rshares": "1152952998", + "voter": "leno4ek" + }, + { + "rshares": "33111928321", + "voter": "daut44" + }, + { + "rshares": "5475437205", + "voter": "contentjunkie" + }, + { + "rshares": "7779288318", + "voter": "einsteinpotsdam" + }, + { + "rshares": "5053600817", + "voter": "richardcrill" + }, + { + "rshares": "2205784762", + "voter": "jeremyfromwi" + }, + { + "rshares": "2056057288", + "voter": "eight-rad" + }, + { + "rshares": "5012661990", + "voter": "nadin3" + }, + { + "rshares": "3411072843", + "voter": "xanoxt" + }, + { + "rshares": "1661520978", + "voter": "davidjkelley" + }, + { + "rshares": "27677639861", + "voter": "sponge-bob" + }, + { + "rshares": "15570931627", + "voter": "digital-wisdom" + }, + { + "rshares": "3710931796", + "voter": "ethical-ai" + }, + { + "rshares": "6831306526", + "voter": "jwaser" + }, + { + "rshares": "1086106040", + "voter": "tatianka" + }, + { + "rshares": "55281264", + "voter": "apparat" + }, + { + "rshares": "14097243573", + "voter": "cryptobiker" + }, + { + "rshares": "54182817", + "voter": "analyzethis" + }, + { + "rshares": "2675492964", + "voter": "bwaser" + }, + { + "rshares": "54949117", + "voter": "doggnostic" + }, + { + "rshares": "54665234", + "voter": "jenny-talls" + }, + { + "rshares": "27671309914", + "voter": "brains" + }, + { + "rshares": "53671263", + "voter": "waldemar-kuhn" + }, + { + "rshares": "1359518638", + "voter": "steemafon" + }, + { + "rshares": "5753400992", + "voter": "chick1" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "51568971", + "voter": "typingagent" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "339287005", + "voter": "anomaly" + }, + { + "rshares": "2401284424", + "voter": "ellepdub" + }, + { + "rshares": "12115548081", + "voter": "herpetologyguy" + }, + { + "rshares": "4816962742", + "voter": "morgan.waser" + }, + { + "rshares": "51232949", + "voter": "dragonice" + }, + { + "rshares": "51230296", + "voter": "steemq" + }, + { + "rshares": "51218466", + "voter": "weare" + }, + { + "rshares": "1258359388", + "voter": "anns" + }, + { + "rshares": "50875769", + "voter": "cyan" + }, + { + "rshares": "50871059", + "voter": "motion" + }, + { + "rshares": "50791473", + "voter": "synereo" + }, + { + "rshares": "50572441", + "voter": "unilever" + }, + { + "rshares": "1871969417", + "voter": "bapparabi" + }, + { + "rshares": "50532230", + "voter": "friends" + }, + { + "rshares": "3689824509", + "voter": "strong-ai" + }, + { + "rshares": "53738244", + "voter": "ivanakamoto" + }, + { + "rshares": "516546553", + "voter": "grisha-danunaher" + }, + { + "rshares": "213848535", + "voter": "sjamayee" + }, + { + "rshares": "2974116451", + "voter": "htyfn" + }, + { + "rshares": "162904624", + "voter": "allianz" + }, + { + "rshares": "1630350803", + "voter": "rusteemitblog" + }, + { + "rshares": "161815656", + "voter": "ranger" + }, + { + "rshares": "444435987", + "voter": "witchcraftblog" + }, + { + "rshares": "161693690", + "voter": "shadowproject" + }, + { + "rshares": "161205518", + "voter": "acute" + }, + { + "rshares": "161179339", + "voter": "bethesda" + }, + { + "rshares": "159352476", + "voter": "panic" + }, + { + "rshares": "159318360", + "voter": "stimmt" + }, + { + "rshares": "159062820", + "voter": "rule" + }, + { + "rshares": "158560941", + "voter": "steemthis" + }, + { + "rshares": "158486055", + "voter": "zendesk" + }, + { + "rshares": "68013381", + "voter": "storage" + }, + { + "rshares": "157667385", + "voter": "cbd" + }, + { + "rshares": "157667385", + "voter": "junk" + }, + { + "rshares": "157682838", + "voter": "hug" + }, + { + "rshares": "157682838", + "voter": "bearcub" + }, + { + "rshares": "157682809", + "voter": "cyberpunk" + }, + { + "rshares": "156919204", + "voter": "keisha" + }, + { + "rshares": "58460105", + "voter": "blackmarket" + }, + { + "rshares": "61530871", + "voter": "gifts" + }, + { + "rshares": "156919175", + "voter": "int" + }, + { + "rshares": "1593664040", + "voter": "steemlift" + } + ], + "author": "serejandmyself", + "author_payout_value": "0.000 HBD", + "author_reputation": 66.84, + "beneficiaries": [], + "blacklists": [], + "body": "#### Hey guys, welcome to the first chapter of my new novel.\n#### It is a mixture of 3 time lines, with 19th century, modern day and ancient times. The genre is probably something you would call a mixture of sci-fi, mystery, adventure and a bit more. \n#### Well, I welcome you to be the judge...\n\n

[![b801c049484636e0faf71f56cca03864c0bd6.jpg](https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg)](https://www.steemimg.com/image/1wrYT)

\n\n__________________________________\n\n**Chapter ONE**\n\nIt seemed as nothing was different in yet another cold and slightly windy London evening. The smog from the river was rising up as usual and the chilly wind would bring the smell up to the embankment, where Charles was taking a rest, sitting down on his favorite bench. \n\nFrom here he could see the might of the power station from across the river and something was special in the way those chimneys threw out the smoke onto the city. \n\nHe just finished his walk along his usual route, walking amongst the cemetery outside the chapel. It always amused him; that mix of emotion and sorrow amongst the busy city people, especially during the busy afternoon hours.\n\nThat rusty smell kept mixing with up with the light freshness of the leaves from the tree nearby Charles\u2019s bench. As he threw a brief glimpse onto the clock on the parliament building he noticed that the small arrow was on 45 minutes\u2026 \n\nSuddenly he heard a murmur of horses; he turned his head before he could finish realizing what time it was. He saw that just a few yards up the road two horse carriages didn\u2019t manage to share the drive way. \n\n
[![Saratogacarriagec5af5.jpg](https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg)](https://www.steemimg.com/image/1w1bI)
\n\nOne of the coachmen was shouting something and angrily waving his hands. Charles was able to see from here that the coachmen\u2019s grey clothing was partially covered in dirt, probably from the splash of the puddles from underneath the wheels. \n\nThe coachmen kept shouting something, Charles was unable to see the second carriage from where he was sitting, but was able to see some passersby, that starting to gather around the incident.\n\nIt was obvious that, just like him, those people had nothing better to do on this late afternoon then to watch in amusement the accident in the middle of the avenue.\n\nJust as Charles was starting to lose interest in the whole situation, the door of the cab that Charles could see, opened and a man dressed in a black suit and holding a pipe stepped out. He calmly put his hand in the upper inner pocket of the suit and pulled out some coins. The man made two steps up to driver and handed him the coins. At this moment the driver stopped shouting for a moment and it was clear from the look on his face that he was confused. \n\nThe cab driver counted the coins and said something to the man in the suit, the passenger didn\u2019t answer. He turned around and started to walk in the direction of the chapel. The cab driver clearly wasn\u2019t happy. He started to shout once again, but this time at the passenger. While the cab driver turned his attention to the passenger, Charles noticed how the second carriage that was involved in the accident managed to move a few yards back.\n\nIt was a much smaller carriage, and the driver was clearly seeable to Charles now. He seemed somewhat happy that he was not in the middle of the light anymore; he hurryingly turned the carriage and the horse around and started to move also in the direction of the chapel. \n\nAt this moment the driver of the first carriage started to lose interest in shouting and decided to clean himself up. As he started to calm down, the bemused passersby begun to walk back to where they were heading and Charles also turned his head back towards the power station.\n\nCharles was so busy watching the situation unfold that he didn\u2019t noticed that the passenger of the first carriage crossed the road and was now heading not towards the chapel anymore, but exactly in the other direction, towards the grey bench that Charles was sitting on.\n\nAt first Charles didn\u2019t pay any attention to just another man who was walking by. But then he noticed that calm walk of his and it hit him that this was the same passenger from the carriage.\n\n\u201cExcuse me sir?\u201d said Charles as the man closed up to the bench. \u201cYou are the gentleman from the carriage, aren\u2019t you?\u201d \u201cI saw you a minute ago, what happened?\u201d\n\nThe man stopped to walk and shared a look with Charles; he calmly sat down beside him and carried on smoking his pipe, as he was not hearing the questions Charles asked him. \n\n\u201cI do apologies for the intervention, but you must not be local, I can tell by your calmness, all the folks round here are always in a hurry\u201d Charles carried on talking as if not noticing that the man was ignoring him. \n\nAll of a sudden the weather begun to change, wind started to blow stronger and the few leaves that the tree was holding blew in the direction of the bench. The smell from the river rose up and as if that wasn\u2019t enough Charles felt like a small rain drop hit his head. He could clearly see the green water from where he was sitting through the decorations holes of the embankments fence. It was clear that it will start to rain soon by the appearing circles on the top of the river.\n\nAfter a few minutes of quietly seating by his new neighbor Charles caught himself looking at the clock on the tower, once again he saw the small arrow on 45 minutes\u2026\n\n\u201cAnd what do we pay the government for?\u201d \u201cIt would feel though they are taking our money and spend it on their fancy hats and suits, don\u2019t you find?\u201d Said Charles.\n\nAt this point the man took out the pipe into his left hand and begun to cough. After he finished coughing Charles heard him speak, at this point Charles understood that for some reason he would remember this moment for a long time to come. \n\n\u201cIt is likely to assume that they deserve to spend the money they earn\u201d Said the man, his voice was quite low and he had a certain accent Charles could quite catch.\n\n\u201cI don\u2019t think that money is of importance nowadays\u201d Said the man.\n\nCharles looked at the man with a smile - \u201cWhat is of importance? One might assume that philosophically speaking, importance can be found in nothing but what is good to us\u201d.\n\n\u201cNo body knows what can be important to others if we carry on like this, then\u2026\u201d Charles didn\u2019t finish his sentence as the man turned away from him and looked the other way. He then turned his head back and Charles noticed his eyes. His eyes were nothing like what Charles had seen before, they looked as though they were glass like and the as if they were blank, there was nothing behind them.\n\n\u201cWhat is important is that I am here now and that it is happening today. It is important to live your life because, just like your life Charles, it has an end\u201d, the man looked somewhat happy when he said that and Charles jumped back on the bench a little, he felt a small shiver run down his spine.\n\n\u201cWhat? How do you know my name sir? Have you been following me?\u201d questions were racing through Charles\u2019s mind. \n\n\u201cAs I said, this is now of importance. You life can find its end today when you get back to your gallery in your cold basement on Kinnerton street or you might listen to me and\u2026\u201d Charles didn\u2019t let the man finish his sentence. He jumped up from the bench; his cane flew within millimeters of the stranger leg as he jumped.\n\n\u201cHow dare you sir? Who gives you the right\u2026\u201d Charles raised his voice, he never allowed himself to raise his voice at a stranger beforehand.\n\n\u201cI think this conversation is over!\u201d exclaimed Charles. \u201cThat would be your choice\u201d replied the man, \u201cDo you think the time is right?\u201d \n\nCharles had already turned away in anger and was about to make his first step away. Something in the words of the man about the time made him think for a second, thoughts raced through his mind. The number 45 and the small arrow of the parliament clock were stuck in his head. \n\n\u201cI don\u2019t understand said Charles\u2026\u201d he turned his head back towards the clock; the arrow was still on 45 minutes. \u201cHow is that possible?\u201d Charles turned his head to the man, but there was no one on the bench. \n\nCharles begun to search the street rapidly with his eyes, it didn\u2019t even occur to him that it was heavily raining until that moment. \n\n
[![tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif](https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif)](https://www.steemimg.com/image/1w5tK)
\n\nThe streets were empty; there were no carriages or people to be seen around. Feeling scared he turned his head to the clock once again \u2013 \u201cHow can it still be 45 minutes...\u201d Charles was speaking out loud.\n\nThe next moment he felt like his knees weakened, his head was swirling and he dropped his cane, last thing he could hear was the clinging the of the cane\u2019s handle against the pavement. His thoughts mixed up with his eyesight; the man and his pipe, the handle of the clock, the carriage, the passersby, the power stations smoke\u2026\n \n_________________________________\n\n#### Follow me @serejandmyself for more \n\nImage credit - [1](https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/) ; [2](https://giphy.com/search/carriage) ; [3](http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html) ;", + "category": "story", + "children": 2, + "created": "2016-09-15T17:23:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg", + "https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg", + "https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif" + ], + "links": [ + "https://www.steemimg.com/image/1wrYT", + "https://www.steemimg.com/image/1w1bI", + "https://www.steemimg.com/image/1w5tK", + "https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/", + "https://giphy.com/search/carriage", + "http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html" + ], + "tags": [ + "story", + "fiction", + "scifi", + "mystery", + "writing" + ], + "users": [ + "serejandmyself" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66871297900441, + "payout": 260.997, + "payout_at": "2016-09-16T17:42:51", + "pending_payout_value": "260.997 HBD", + "percent_hbd": 10000, + "permlink": "captured-by-time-an-original-novel-chapter-1", + "post_id": 959783, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 229 + }, + "title": "CAPTURED BY TIME (An Original Novel - Chapter 1)", + "updated": "2016-09-15T17:23:48", + "url": "/story/@serejandmyself/captured-by-time-an-original-novel-chapter-1" + }, + { + "active_votes": [ + { + "rshares": "494637006894", + "voter": "barrie" + }, + { + "rshares": "7710245013992", + "voter": "steempty" + }, + { + "rshares": "30984805998710", + "voter": "smooth" + }, + { + "rshares": "289667785336", + "voter": "anonymous" + }, + { + "rshares": "14447196140450", + "voter": "summon" + }, + { + "rshares": "681484074723", + "voter": "eternity" + }, + { + "rshares": "36033200189196", + "voter": "jamesc" + }, + { + "rshares": "4574334081535", + "voter": "riverhead" + }, + { + "rshares": "7015534059816", + "voter": "wackou" + }, + { + "rshares": "2160925860071", + "voter": "badassmother" + }, + { + "rshares": "2051034289892", + "voter": "hr1" + }, + { + "rshares": "6466290924028", + "voter": "fuzzyvest" + }, + { + "rshares": "118485787519", + "voter": "sandra" + }, + { + "rshares": "5339100755934", + "voter": "kushed" + }, + { + "rshares": "1674029296934", + "voter": "silver" + }, + { + "rshares": "4063925838557", + "voter": "silversteem" + }, + { + "rshares": "128324636011", + "voter": "svk" + }, + { + "rshares": "1126556112870", + "voter": "ihashfury" + }, + { + "rshares": "1019287149109", + "voter": "liondani" + }, + { + "rshares": "2937247386101", + "voter": "wang" + }, + { + "rshares": "23332152248", + "voter": "jaewoocho" + }, + { + "rshares": "1910071941344", + "voter": "xeroc" + }, + { + "rshares": "6514602351120", + "voter": "complexring" + }, + { + "rshares": "1731498672998", + "voter": "joseph" + }, + { + "rshares": "90517391466", + "voter": "aizensou" + }, + { + "rshares": "4166462346763", + "voter": "au1nethyb1" + }, + { + "rshares": "475419579220", + "voter": "recursive2" + }, + { + "rshares": "462210569737", + "voter": "recursive3" + }, + { + "rshares": "651686683150", + "voter": "masteryoda" + }, + { + "rshares": "3254899228205", + "voter": "recursive" + }, + { + "rshares": "1209033907", + "voter": "mineralwasser" + }, + { + "rshares": "6756071314", + "voter": "bingo-0" + }, + { + "rshares": "1718241828", + "voter": "bingo-1" + }, + { + "rshares": "5801165470383", + "voter": "smooth.witness" + }, + { + "rshares": "1330827857292", + "voter": "steempower" + }, + { + "rshares": "425345638228", + "voter": "officialfuzzy" + }, + { + "rshares": "1215800936456", + "voter": "cass" + }, + { + "rshares": "10365366239", + "voter": "idol" + }, + { + "rshares": "816021167585", + "voter": "steemrollin" + }, + { + "rshares": "5043750251", + "voter": "sakr" + }, + { + "rshares": "64509999367", + "voter": "bangking" + }, + { + "rshares": "296422841257", + "voter": "chitty" + }, + { + "rshares": "8231062957", + "voter": "unosuke" + }, + { + "rshares": "3109726595", + "voter": "yefet" + }, + { + "rshares": "8209280181", + "voter": "khanhsang" + }, + { + "rshares": "1784486145", + "voter": "jocelyn" + }, + { + "rshares": "85258511340", + "voter": "acidsun" + }, + { + "rshares": "14485500439", + "voter": "gregory-f" + }, + { + "rshares": "17261905745", + "voter": "jademont" + }, + { + "rshares": "74893360972", + "voter": "eeks" + }, + { + "rshares": "488526217", + "voter": "paco-steem" + }, + { + "rshares": "5883825852", + "voter": "spaninv" + }, + { + "rshares": "-12087903048", + "voter": "james-show" + }, + { + "rshares": "336429919201", + "voter": "teamsteem" + }, + { + "rshares": "8667563285", + "voter": "richman" + }, + { + "rshares": "13068852902", + "voter": "acidyo" + }, + { + "rshares": "174506653297", + "voter": "steve-walschot" + }, + { + "rshares": "9836158141", + "voter": "kefkius" + }, + { + "rshares": "58639157917", + "voter": "oaldamster" + }, + { + "rshares": "268816966", + "voter": "coar" + }, + { + "rshares": "100988550788", + "voter": "asch" + }, + { + "rshares": "629740296743", + "voter": "kevinwong" + }, + { + "rshares": "1414344480", + "voter": "murh" + }, + { + "rshares": "6372449504", + "voter": "cryptofunk" + }, + { + "rshares": "16733609471", + "voter": "b4bb4r-5h3r" + }, + { + "rshares": "579449391", + "voter": "kodi" + }, + { + "rshares": "2326310189", + "voter": "error" + }, + { + "rshares": "206727143370", + "voter": "dragonslayer109" + }, + { + "rshares": "5853981249", + "voter": "marta-zaidel" + }, + { + "rshares": "1064576926325", + "voter": "cyber" + }, + { + "rshares": "61678758152", + "voter": "theshell" + }, + { + "rshares": "425799805812", + "voter": "taoteh1221" + }, + { + "rshares": "418804855", + "voter": "applecrisp" + }, + { + "rshares": "381169481", + "voter": "stiletto" + }, + { + "rshares": "383436160153", + "voter": "hedge-x" + }, + { + "rshares": "56682792316", + "voter": "juanmiguelsalas" + }, + { + "rshares": "572341707403", + "voter": "andrarchy" + }, + { + "rshares": "48485320682", + "voter": "thecryptodrive" + }, + { + "rshares": "1380704224", + "voter": "fjccoin" + }, + { + "rshares": "563704760996", + "voter": "infovore" + }, + { + "rshares": "13622725061", + "voter": "facer" + }, + { + "rshares": "210189819099", + "voter": "alexc" + }, + { + "rshares": "4866103974", + "voter": "tee-em" + }, + { + "rshares": "32185020754", + "voter": "michaelx" + }, + { + "rshares": "5946920606", + "voter": "mark-waser" + }, + { + "rshares": "17023109715", + "voter": "albertogm" + }, + { + "rshares": "111322975376", + "voter": "geoffrey" + }, + { + "rshares": "6609454107", + "voter": "tyler-fletcher" + }, + { + "rshares": "81716838174", + "voter": "razvanelulmarin" + }, + { + "rshares": "2251029884", + "voter": "superfreek" + }, + { + "rshares": "497689345", + "voter": "mrhankeh" + }, + { + "rshares": "35378265315", + "voter": "clement" + }, + { + "rshares": "32849189476", + "voter": "acassity" + }, + { + "rshares": "280886491", + "voter": "ladyclair" + }, + { + "rshares": "68448307991", + "voter": "bacchist" + }, + { + "rshares": "29507132066", + "voter": "venuspcs" + }, + { + "rshares": "189899541322", + "voter": "asmolokalo" + }, + { + "rshares": "57789275837", + "voter": "good-karma" + }, + { + "rshares": "462726697228", + "voter": "roelandp" + }, + { + "rshares": "1642746247", + "voter": "gidlark" + }, + { + "rshares": "3281446057", + "voter": "orly" + }, + { + "rshares": "3822074668", + "voter": "getssidetracked" + }, + { + "rshares": "250280584", + "voter": "mstang83" + }, + { + "rshares": "18842493961", + "voter": "hakise" + }, + { + "rshares": "366200786008", + "voter": "fabio" + }, + { + "rshares": "15993709711", + "voter": "yogi.artist" + }, + { + "rshares": "103519364", + "voter": "strawhat" + }, + { + "rshares": "16242543792", + "voter": "r4fken" + }, + { + "rshares": "102589641", + "voter": "cryptochannel" + }, + { + "rshares": "154460522305", + "voter": "derekareith" + }, + { + "rshares": "134342335542", + "voter": "slowwalker" + }, + { + "rshares": "234221482", + "voter": "dzweta" + }, + { + "rshares": "2304777789", + "voter": "vi1son" + }, + { + "rshares": "167273913111", + "voter": "knircky" + }, + { + "rshares": "18842550092", + "voter": "ausbitbank" + }, + { + "rshares": "167108122163", + "voter": "jacor" + }, + { + "rshares": "243777568", + "voter": "ardina" + }, + { + "rshares": "1422705803", + "voter": "mixa" + }, + { + "rshares": "18005198739", + "voter": "sebastien" + }, + { + "rshares": "3519456066", + "voter": "taurus" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "11694816243", + "voter": "asim" + }, + { + "rshares": "321595915706", + "voter": "jesta" + }, + { + "rshares": "33655847643", + "voter": "toxonaut" + }, + { + "rshares": "109259290", + "voter": "snowden" + }, + { + "rshares": "4602737482", + "voter": "thegoodguy" + }, + { + "rshares": "129723551811", + "voter": "paco" + }, + { + "rshares": "1107683133", + "voter": "karen13" + }, + { + "rshares": "24478695193", + "voter": "igster" + }, + { + "rshares": "73113648749", + "voter": "jpiper20" + }, + { + "rshares": "2722560234", + "voter": "dmacshady" + }, + { + "rshares": "32333061210", + "voter": "pkattera" + }, + { + "rshares": "19237325288", + "voter": "anduweb" + }, + { + "rshares": "10485943136", + "voter": "shla-rafia" + }, + { + "rshares": "46825725594", + "voter": "milestone" + }, + { + "rshares": "7311652491", + "voter": "lichtblick" + }, + { + "rshares": "35770229729", + "voter": "creemej" + }, + { + "rshares": "91938017", + "voter": "wildchild" + }, + { + "rshares": "126704886218", + "voter": "demotruk" + }, + { + "rshares": "3638341233", + "voter": "maximkichev" + }, + { + "rshares": "2506537211", + "voter": "the-future" + }, + { + "rshares": "4381902261", + "voter": "adamt" + }, + { + "rshares": "865281681", + "voter": "sebhaj" + }, + { + "rshares": "24903536535", + "voter": "phenom" + }, + { + "rshares": "2828187420", + "voter": "sgnsteems" + }, + { + "rshares": "175156042246", + "voter": "blueorgy" + }, + { + "rshares": "9702073568", + "voter": "benjiberigan" + }, + { + "rshares": "339108457006", + "voter": "calaber24p" + }, + { + "rshares": "7168473448", + "voter": "geronimo" + }, + { + "rshares": "4923764236", + "voter": "bitcoiner" + }, + { + "rshares": "3756065125", + "voter": "tarindel" + }, + { + "rshares": "92046641189", + "voter": "rea" + }, + { + "rshares": "53840923427", + "voter": "jl777" + }, + { + "rshares": "30194118400", + "voter": "zaebars" + }, + { + "rshares": "35105109840", + "voter": "paquito" + }, + { + "rshares": "1772149995", + "voter": "yarly" + }, + { + "rshares": "267173384", + "voter": "yarly2" + }, + { + "rshares": "267573135", + "voter": "yarly3" + }, + { + "rshares": "154579129", + "voter": "yarly4" + }, + { + "rshares": "155451862", + "voter": "yarly5" + }, + { + "rshares": "88607961", + "voter": "yarly7" + }, + { + "rshares": "780100857", + "voter": "raymonjohnstone" + }, + { + "rshares": "50619397", + "voter": "steemchain" + }, + { + "rshares": "50619397", + "voter": "whalepool" + }, + { + "rshares": "506354306", + "voter": "gustavopasquini" + }, + { + "rshares": "206059171", + "voter": "sergey44" + }, + { + "rshares": "114721821", + "voter": "mxo8" + }, + { + "rshares": "1234205003", + "voter": "mohammed123" + }, + { + "rshares": "21120708735", + "voter": "krabgat" + }, + { + "rshares": "2763375206", + "voter": "favorit" + }, + { + "rshares": "4543618384", + "voter": "proto" + }, + { + "rshares": "634042636", + "voter": "curator" + }, + { + "rshares": "428809375", + "voter": "yarly10" + }, + { + "rshares": "229507420", + "voter": "yarly11" + }, + { + "rshares": "16468884512", + "voter": "michaeldodridge" + }, + { + "rshares": "80241480", + "voter": "yarly12" + }, + { + "rshares": "46743296544", + "voter": "celebr1ty" + }, + { + "rshares": "11567632851", + "voter": "dimitarj" + }, + { + "rshares": "142823483", + "voter": "steemster1" + }, + { + "rshares": "25747727433", + "voter": "fabien" + }, + { + "rshares": "817422571", + "voter": "bullionstackers" + }, + { + "rshares": "250094985729", + "voter": "originate" + }, + { + "rshares": "3021945641", + "voter": "dmilash" + }, + { + "rshares": "2214910466", + "voter": "jillstein2016" + }, + { + "rshares": "110940646", + "voter": "cryptoz" + }, + { + "rshares": "3302445446", + "voter": "glitterpig" + }, + { + "rshares": "6338015068", + "voter": "uwe69" + }, + { + "rshares": "6276554782", + "voter": "shortcut" + }, + { + "rshares": "115422843193", + "voter": "steemdrive" + }, + { + "rshares": "947490604", + "voter": "metaflute" + }, + { + "rshares": "52093680889", + "voter": "gomeravibz" + }, + { + "rshares": "2298221146", + "voter": "taker" + }, + { + "rshares": "6519151447", + "voter": "nekromarinist" + }, + { + "rshares": "57873464", + "voter": "sharon" + }, + { + "rshares": "240147448", + "voter": "frozendota" + }, + { + "rshares": "15408983536", + "voter": "felixxx" + }, + { + "rshares": "1571831658", + "voter": "whitemike313" + }, + { + "rshares": "3034673286", + "voter": "merej99" + }, + { + "rshares": "58971492", + "voter": "lillianjones" + }, + { + "rshares": "160728582794", + "voter": "twinner" + }, + { + "rshares": "24365622803", + "voter": "rawnetics" + }, + { + "rshares": "54215689285", + "voter": "sextusempiricus" + }, + { + "rshares": "24019048233", + "voter": "laonie1" + }, + { + "rshares": "25067031014", + "voter": "laonie2" + }, + { + "rshares": "25075820795", + "voter": "laonie3" + }, + { + "rshares": "6338796297", + "voter": "brendio" + }, + { + "rshares": "2082633772", + "voter": "gmurph" + }, + { + "rshares": "80533628422", + "voter": "timsaid" + }, + { + "rshares": "2375350982", + "voter": "kalimor" + }, + { + "rshares": "63541793", + "voter": "coderg" + }, + { + "rshares": "2868848889", + "voter": "darrenturetzky" + }, + { + "rshares": "56886318", + "voter": "michellek" + }, + { + "rshares": "25071217681", + "voter": "laonie4" + }, + { + "rshares": "25068579591", + "voter": "laonie5" + }, + { + "rshares": "25065597250", + "voter": "laonie6" + }, + { + "rshares": "25061528883", + "voter": "laonie7" + }, + { + "rshares": "5480906296", + "voter": "kurtbeil" + }, + { + "rshares": "25057888093", + "voter": "laonie8" + }, + { + "rshares": "25055101904", + "voter": "laonie9" + }, + { + "rshares": "3229522119", + "voter": "steemleak" + }, + { + "rshares": "112040172638", + "voter": "thisisbenbrick" + }, + { + "rshares": "4269542847", + "voter": "antfield" + }, + { + "rshares": "7834943379", + "voter": "mevilkingdom" + }, + { + "rshares": "60240401", + "voter": "locolote" + }, + { + "rshares": "368648608", + "voter": "riosparada" + }, + { + "rshares": "11282370272", + "voter": "ekitcho" + }, + { + "rshares": "115248537", + "voter": "bigsambucca" + }, + { + "rshares": "93215140213", + "voter": "joele" + }, + { + "rshares": "2215228183", + "voter": "paynode" + }, + { + "rshares": "79785139", + "voter": "dims" + }, + { + "rshares": "2455226384", + "voter": "pgarcgo" + }, + { + "rshares": "1434064827", + "voter": "hms818" + }, + { + "rshares": "40210689203", + "voter": "nonlinearone" + }, + { + "rshares": "59437351", + "voter": "msjennifer" + }, + { + "rshares": "54654502", + "voter": "ciao" + }, + { + "rshares": "3667415885", + "voter": "villainblack" + }, + { + "rshares": "52985539", + "voter": "steemo" + }, + { + "rshares": "52848854", + "voter": "steema" + }, + { + "rshares": "16997336414", + "voter": "plasticfuzzy" + }, + { + "rshares": "74615731", + "voter": "evgenyche" + }, + { + "rshares": "69662169", + "voter": "confucius" + }, + { + "rshares": "70633121", + "voter": "stevescriber" + }, + { + "rshares": "4179438198", + "voter": "bledarus" + }, + { + "rshares": "53688127", + "voter": "loli" + }, + { + "rshares": "93744050986", + "voter": "miacats" + }, + { + "rshares": "53661976", + "voter": "jarvis" + }, + { + "rshares": "77220767", + "voter": "razberrijam" + }, + { + "rshares": "6669342810", + "voter": "rubenalexander" + }, + { + "rshares": "51899170", + "voter": "fortuner" + }, + { + "rshares": "9443278113", + "voter": "pjheinz" + }, + { + "rshares": "3054149279", + "voter": "virtualgrowth" + }, + { + "rshares": "84068339484", + "voter": "neptun" + }, + { + "rshares": "11375408076", + "voter": "gvargas123" + }, + { + "rshares": "50698107", + "voter": "johnbyrd" + }, + { + "rshares": "50682252", + "voter": "thomasaustin" + }, + { + "rshares": "50680459", + "voter": "thermor" + }, + { + "rshares": "50691211", + "voter": "ficholl" + }, + { + "rshares": "50673817", + "voter": "widell" + }, + { + "rshares": "50311250", + "voter": "revelbrooks" + }, + { + "rshares": "25048684602", + "voter": "laonie10" + }, + { + "rshares": "91779459", + "voter": "lasseehlers" + }, + { + "rshares": "377542979", + "voter": "mrlogic" + }, + { + "rshares": "2982178419", + "voter": "netaterra" + }, + { + "rshares": "54361669", + "voter": "bitchplease" + }, + { + "rshares": "78411391", + "voter": "joelbow" + }, + { + "rshares": "5764641330", + "voter": "hilarski" + }, + { + "rshares": "3133328104", + "voter": "imag1ne" + }, + { + "rshares": "2080442949", + "voter": "shadowspub" + }, + { + "rshares": "80071335", + "voter": "justinschwalm" + }, + { + "rshares": "50416427", + "voter": "curpose" + }, + { + "rshares": "17920360614", + "voter": "takethecannoli" + }, + { + "rshares": "1208491149", + "voter": "lenar" + }, + { + "rshares": "1699015883", + "voter": "runridefly" + }, + { + "rshares": "88019548", + "voter": "uziriel" + }, + { + "rshares": "2212170971", + "voter": "steemitguide" + }, + { + "rshares": "7470990325", + "voter": "einsteinpotsdam" + }, + { + "rshares": "4592852638", + "voter": "richardcrill" + }, + { + "rshares": "24180906457", + "voter": "laonie11" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "3336919086", + "voter": "xanoxt" + }, + { + "rshares": "1660688801", + "voter": "davidjkelley" + }, + { + "rshares": "50593879", + "voter": "crion" + }, + { + "rshares": "50271139", + "voter": "hitherise" + }, + { + "rshares": "50262756", + "voter": "wiss" + }, + { + "rshares": "42587324218", + "voter": "sponge-bob" + }, + { + "rshares": "4656328113", + "voter": "l0k1" + }, + { + "rshares": "15560806947", + "voter": "digital-wisdom" + }, + { + "rshares": "3708768210", + "voter": "ethical-ai" + }, + { + "rshares": "51939094", + "voter": "freesteem" + }, + { + "rshares": "51061585", + "voter": "jamespro" + }, + { + "rshares": "51033798", + "voter": "stroully" + }, + { + "rshares": "3079499780", + "voter": "maryfromsochi" + }, + { + "rshares": "6827381497", + "voter": "jwaser" + }, + { + "rshares": "50712038", + "voter": "thadm" + }, + { + "rshares": "50710305", + "voter": "prof" + }, + { + "rshares": "50370757", + "voter": "yorsens" + }, + { + "rshares": "212837202380", + "voter": "asksisk" + }, + { + "rshares": "50065875", + "voter": "bane" + }, + { + "rshares": "50059754", + "voter": "vive" + }, + { + "rshares": "50054445", + "voter": "coad" + }, + { + "rshares": "26903512125", + "voter": "dubi" + }, + { + "rshares": "2674022812", + "voter": "bwaser" + }, + { + "rshares": "50840303", + "voter": "sofa" + }, + { + "rshares": "52910800", + "voter": "roadhog" + }, + { + "rshares": "2201645172", + "voter": "alina1" + }, + { + "rshares": "659649765", + "voter": "ct-gurus" + }, + { + "rshares": "54622489", + "voter": "medafi" + }, + { + "rshares": "7708395185", + "voter": "mariandavp" + }, + { + "rshares": "63519655246", + "voter": "tracemayer" + }, + { + "rshares": "43440714161", + "voter": "brains" + }, + { + "rshares": "51278775", + "voter": "post-successful" + }, + { + "rshares": "50933404", + "voter": "ailo" + }, + { + "rshares": "5419706802", + "voter": "burnin" + }, + { + "rshares": "5749962751", + "voter": "chick1" + }, + { + "rshares": "3613469334", + "voter": "funnyman" + }, + { + "rshares": "2188505650", + "voter": "rigaronib" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "61548157", + "voter": "freebornangel" + }, + { + "rshares": "474509334", + "voter": "anomaly" + }, + { + "rshares": "27666667825", + "voter": "tarekadam" + }, + { + "rshares": "2400009033", + "voter": "ellepdub" + }, + { + "rshares": "51890765", + "voter": "gregorygarcia" + }, + { + "rshares": "61292139", + "voter": "inarix03" + }, + { + "rshares": "286977519", + "voter": "ola1" + }, + { + "rshares": "12084353453", + "voter": "herpetologyguy" + }, + { + "rshares": "50441122", + "voter": "eavy" + }, + { + "rshares": "50454901", + "voter": "roto" + }, + { + "rshares": "53055896", + "voter": "drac59" + }, + { + "rshares": "4814064056", + "voter": "morgan.waser" + }, + { + "rshares": "50602980", + "voter": "cfisher" + }, + { + "rshares": "56301561", + "voter": "stringer" + }, + { + "rshares": "50235850", + "voter": "billkappa442" + }, + { + "rshares": "1491995147", + "voter": "robotev" + }, + { + "rshares": "61035542", + "voter": "teo" + }, + { + "rshares": "4984135374", + "voter": "donchate" + }, + { + "rshares": "50708837", + "voter": "ardly" + }, + { + "rshares": "50704078", + "voter": "yotoh" + }, + { + "rshares": "827252367", + "voter": "bapparabi" + }, + { + "rshares": "50372583", + "voter": "carre" + }, + { + "rshares": "50349676", + "voter": "albertheijn" + }, + { + "rshares": "3687702565", + "voter": "strong-ai" + }, + { + "rshares": "52329350", + "voter": "ninjapainter" + }, + { + "rshares": "728357348", + "voter": "ziogio" + }, + { + "rshares": "69589512", + "voter": "igtes" + }, + { + "rshares": "141679752", + "voter": "buffett" + }, + { + "rshares": "197326430", + "voter": "sjamayee" + }, + { + "rshares": "121259976", + "voter": "comeup" + }, + { + "rshares": "1630339077", + "voter": "rusteemitblog" + }, + { + "rshares": "155476058", + "voter": "ndea30" + }, + { + "rshares": "155469045", + "voter": "domenico" + }, + { + "rshares": "444421238", + "voter": "witchcraftblog" + }, + { + "rshares": "158523226", + "voter": "shadowproject" + }, + { + "rshares": "157805871", + "voter": "serena199" + }, + { + "rshares": "154619387", + "voter": "gia7" + }, + { + "rshares": "1994519972", + "voter": "dresden" + }, + { + "rshares": "201362779", + "voter": "mgibson" + }, + { + "rshares": "154157014", + "voter": "richie4" + }, + { + "rshares": "157241455", + "voter": "coraline88" + }, + { + "rshares": "157176058", + "voter": "cybergirls" + }, + { + "rshares": "153838109", + "voter": "harlen" + }, + { + "rshares": "152057481", + "voter": "food-creator" + }, + { + "rshares": "156939548", + "voter": "yanuel" + }, + { + "rshares": "153751482", + "voter": "daritza" + }, + { + "rshares": "156847954", + "voter": "correct" + }, + { + "rshares": "156411729", + "voter": "blender" + }, + { + "rshares": "159506164", + "voter": "greenpeace" + }, + { + "rshares": "156299377", + "voter": "tipsandtricks" + }, + { + "rshares": "156261069", + "voter": "ibm1000" + }, + { + "rshares": "159352476", + "voter": "panic" + }, + { + "rshares": "156023422", + "voter": "reef" + }, + { + "rshares": "159025535", + "voter": "xtreme" + }, + { + "rshares": "155619923", + "voter": "steemwallet" + }, + { + "rshares": "81075259", + "voter": "dealzgal" + }, + { + "rshares": "89654003", + "voter": "storage" + }, + { + "rshares": "151413472", + "voter": "steemdesigner" + }, + { + "rshares": "148077602", + "voter": "dougkarr" + }, + { + "rshares": "73844343", + "voter": "blackmarket" + }, + { + "rshares": "79990132", + "voter": "gifts" + }, + { + "rshares": "171078424", + "voter": "pathtomydream" + }, + { + "rshares": "112446078", + "voter": "paulocouto" + }, + { + "rshares": "151525581", + "voter": "kevinfoesenek" + }, + { + "rshares": "144957585", + "voter": "sawgunner13" + }, + { + "rshares": "1593664040", + "voter": "steemlift" + }, + { + "rshares": "147818170", + "voter": "dirlei.sdias" + }, + { + "rshares": "135637537", + "voter": "toddemaher1" + } + ], + "author": "cass", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "![b99cea99b79d334be4815a56a64ff4f1.png](https://www.steemimg.com/images/2016/09/14/b99cea99b79d334be4815a56a64ff4f1.png)\n\n---\n\nI want to follow up on @roelandp announcement post about the steemfest.com at November 11/12/13.\n\nSome of u have noticed i'm assisting him on the preparation for the Steemfest Event in November.\nI did meet @roelandp in Amsterdam last week and was directly impressed by his passion and energy.\nSo i decided to FULL support him towards the Nov11.\n\n\n### All gotten SBD rewards will contributed towards @steemfest project \n\nSo u will have a better possibility to get a preview on how the posters will look later on \"LIVE\".\nHere we go, i was trying to make a nice small mockup collection to this cause.\n\nENJOY\n[![3a7db045b911ea8785a1e9c37c7e75a7.jpg](https://www.steemimg.com/images/2016/09/14/3a7db045b911ea8785a1e9c37c7e75a7.jpg)](https://www.steemimg.com/image/1SL5m)\n\n[![9a8268f34903dbcf5fbe06559ce7bfc6.png](https://www.steemimg.com/images/2016/09/14/9a8268f34903dbcf5fbe06559ce7bfc6.png)](https://www.steemimg.com/image/1V8e6)\n[![8f8de740d802a0bf228bd833657b1f26.jpg](https://www.steemimg.com/images/2016/09/14/8f8de740d802a0bf228bd833657b1f26.jpg)](https://www.steemimg.com/image/1SnTu)\n[![a317ccbeec3112a5d60f6f2afdf8255a.jpg](https://www.steemimg.com/images/2016/09/14/a317ccbeec3112a5d60f6f2afdf8255a.jpg)](https://www.steemimg.com/image/1SPji)\n[![bd3b5b4c18cda4d063cabc03443cb6a8.jpg](https://www.steemimg.com/images/2016/09/14/bd3b5b4c18cda4d063cabc03443cb6a8.jpg)](https://www.steemimg.com/image/1SCWB)\n[![4d16cb792150dbd9c7cca2e9eea45f9d.jpg](https://www.steemimg.com/images/2016/09/14/4d16cb792150dbd9c7cca2e9eea45f9d.jpg)](https://www.steemimg.com/image/1S62K)\n[![25943765543ef057543db7f2d5b65e28.jpg](https://www.steemimg.com/images/2016/09/14/25943765543ef057543db7f2d5b65e28.jpg)](https://www.steemimg.com/image/1SwCI)\n[![a1d1fc9af366abae551a9b443ac0441f.jpg](https://www.steemimg.com/images/2016/09/14/a1d1fc9af366abae551a9b443ac0441f.jpg)](https://www.steemimg.com/image/1Sq3h)", + "category": "steemfest", + "children": 17, + "created": "2016-09-14T14:02:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/14/b99cea99b79d334be4815a56a64ff4f1.png", + "https://www.steemimg.com/images/2016/09/14/3a7db045b911ea8785a1e9c37c7e75a7.jpg", + "https://www.steemimg.com/images/2016/09/14/9a8268f34903dbcf5fbe06559ce7bfc6.png", + "https://www.steemimg.com/images/2016/09/14/8f8de740d802a0bf228bd833657b1f26.jpg", + "https://www.steemimg.com/images/2016/09/14/a317ccbeec3112a5d60f6f2afdf8255a.jpg", + "https://www.steemimg.com/images/2016/09/14/bd3b5b4c18cda4d063cabc03443cb6a8.jpg", + "https://www.steemimg.com/images/2016/09/14/4d16cb792150dbd9c7cca2e9eea45f9d.jpg", + "https://www.steemimg.com/images/2016/09/14/25943765543ef057543db7f2d5b65e28.jpg", + "https://www.steemimg.com/images/2016/09/14/a1d1fc9af366abae551a9b443ac0441f.jpg" + ], + "links": [ + "https://www.steemimg.com/image/1SL5m", + "https://www.steemimg.com/image/1V8e6", + "https://www.steemimg.com/image/1SnTu", + "https://www.steemimg.com/image/1SPji", + "https://www.steemimg.com/image/1SCWB", + "https://www.steemimg.com/image/1S62K", + "https://www.steemimg.com/image/1SwCI", + "https://www.steemimg.com/image/1Sq3h" + ], + "tags": [ + "steemfest", + "design", + "poster", + "amsterdam" + ], + "users": [ + "roelandp", + "steemfest" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 169985783269298, + "payout": 1618.329, + "payout_at": "2016-10-15T19:32:42", + "pending_payout_value": "1618.329 HBD", + "percent_hbd": 10000, + "permlink": "steemfest-follow-up-poster-designs-sbd-rewards-will-donated-to-the-project", + "post_id": 949385, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 386 + }, + "title": "[Steemfest] Follow up - Poster designs! SBD rewards will donated to the project!", + "updated": "2016-09-14T14:02:39", + "url": "/steemfest/@cass/steemfest-follow-up-poster-designs-sbd-rewards-will-donated-to-the-project" + }, + { + "active_votes": [ + { + "rshares": "30948708908726", + "voter": "val-a" + }, + { + "rshares": "15292900000000", + "voter": "val-b" + }, + { + "rshares": "1534352192855", + "voter": "joseph" + }, + { + "rshares": "652034182902", + "voter": "masteryoda" + }, + { + "rshares": "8927024295", + "voter": "idol" + }, + { + "rshares": "2637269453488", + "voter": "donkeypong" + }, + { + "rshares": "816386307308", + "voter": "steemrollin" + }, + { + "rshares": "4941856440", + "voter": "sakr" + }, + { + "rshares": "140357414085", + "voter": "chris4210" + }, + { + "rshares": "1536548017", + "voter": "jocelyn" + }, + { + "rshares": "83530339170", + "voter": "acidsun" + }, + { + "rshares": "1196485708874", + "voter": "gavvet" + }, + { + "rshares": "59931939963", + "voter": "eeks" + }, + { + "rshares": "6122594947", + "voter": "fernando-sanz" + }, + { + "rshares": "584270995256", + "voter": "nanzo-scoop" + }, + { + "rshares": "177415501233", + "voter": "mummyimperfect" + }, + { + "rshares": "106634401121", + "voter": "asch" + }, + { + "rshares": "603741881611", + "voter": "kevinwong" + }, + { + "rshares": "1061259321", + "voter": "murh" + }, + { + "rshares": "3187850436", + "voter": "cryptofunk" + }, + { + "rshares": "2003304335", + "voter": "error" + }, + { + "rshares": "962089879337", + "voter": "cyber" + }, + { + "rshares": "50884297723", + "voter": "ak2020" + }, + { + "rshares": "61300613738", + "voter": "justtryme90" + }, + { + "rshares": "410517349", + "voter": "applecrisp" + }, + { + "rshares": "35693164103", + "voter": "altoz" + }, + { + "rshares": "820589638514", + "voter": "anwenbaumeister" + }, + { + "rshares": "5950595929", + "voter": "mark-waser" + }, + { + "rshares": "118349796563", + "voter": "geoffrey" + }, + { + "rshares": "192325266448", + "voter": "kimziv" + }, + { + "rshares": "77083924707", + "voter": "emily-cook" + }, + { + "rshares": "3283440404", + "voter": "orly" + }, + { + "rshares": "2834957075", + "voter": "steem1653" + }, + { + "rshares": "124961861", + "voter": "cynetyc" + }, + { + "rshares": "5357326058", + "voter": "thegoodguy" + }, + { + "rshares": "4209522316", + "voter": "karen13" + }, + { + "rshares": "251366150295", + "voter": "nabilov" + }, + { + "rshares": "8401059269", + "voter": "noodhoog" + }, + { + "rshares": "455246290726", + "voter": "knozaki2015" + }, + { + "rshares": "7166494256", + "voter": "lichtblick" + }, + { + "rshares": "33739090409", + "voter": "creemej" + }, + { + "rshares": "5726411049", + "voter": "btcbtcbtc20155" + }, + { + "rshares": "163324531946", + "voter": "blueorgy" + }, + { + "rshares": "4195248338", + "voter": "poseidon" + }, + { + "rshares": "3435918746", + "voter": "simon.braki.love" + }, + { + "rshares": "268137172703", + "voter": "liberosist" + }, + { + "rshares": "4128504280", + "voter": "birdie" + }, + { + "rshares": "5609578664", + "voter": "sharker" + }, + { + "rshares": "204618259005", + "voter": "jl777" + }, + { + "rshares": "1773036384", + "voter": "yarly" + }, + { + "rshares": "267188192", + "voter": "yarly2" + }, + { + "rshares": "267587944", + "voter": "yarly3" + }, + { + "rshares": "154579129", + "voter": "yarly4" + }, + { + "rshares": "155451862", + "voter": "yarly5" + }, + { + "rshares": "88607961", + "voter": "yarly7" + }, + { + "rshares": "11031796651", + "voter": "moon32walker" + }, + { + "rshares": "258619590", + "voter": "sergey44" + }, + { + "rshares": "17267341753", + "voter": "proto" + }, + { + "rshares": "31599342155", + "voter": "sisterholics" + }, + { + "rshares": "428868451", + "voter": "yarly10" + }, + { + "rshares": "229507420", + "voter": "yarly11" + }, + { + "rshares": "80241480", + "voter": "yarly12" + }, + { + "rshares": "146224042", + "voter": "steemster1" + }, + { + "rshares": "5878023046", + "voter": "mahekg" + }, + { + "rshares": "8734150854", + "voter": "taker" + }, + { + "rshares": "6521104126", + "voter": "nekromarinist" + }, + { + "rshares": "10553169212", + "voter": "theprophet0" + }, + { + "rshares": "57873464", + "voter": "sharon" + }, + { + "rshares": "58971492", + "voter": "lillianjones" + }, + { + "rshares": "1117443990130", + "voter": "laonie" + }, + { + "rshares": "4257390614", + "voter": "twinner" + }, + { + "rshares": "4414425121", + "voter": "timcliff" + }, + { + "rshares": "38640926181", + "voter": "myfirst" + }, + { + "rshares": "233306274805", + "voter": "somebody" + }, + { + "rshares": "8723132526", + "voter": "flysaga" + }, + { + "rshares": "1667759072", + "voter": "gmurph" + }, + { + "rshares": "51539167746", + "voter": "midnightoil" + }, + { + "rshares": "4190377366", + "voter": "ullikume" + }, + { + "rshares": "128906992414", + "voter": "xiaohui" + }, + { + "rshares": "21112616587", + "voter": "jphamer1" + }, + { + "rshares": "6306539895", + "voter": "elfkitchen" + }, + { + "rshares": "102434307703", + "voter": "joele" + }, + { + "rshares": "15549176040", + "voter": "randyclemens" + }, + { + "rshares": "4030108065", + "voter": "xiaokongcom" + }, + { + "rshares": "59437351", + "voter": "msjennifer" + }, + { + "rshares": "54654502", + "voter": "ciao" + }, + { + "rshares": "52985539", + "voter": "steemo" + }, + { + "rshares": "8123975227", + "voter": "xianjun" + }, + { + "rshares": "52848854", + "voter": "steema" + }, + { + "rshares": "69662169", + "voter": "confucius" + }, + { + "rshares": "11292536945", + "voter": "borran" + }, + { + "rshares": "53661976", + "voter": "jarvis" + }, + { + "rshares": "546765304", + "voter": "microluck" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "53106127", + "voter": "fortuner" + }, + { + "rshares": "84942400", + "voter": "pompe72" + }, + { + "rshares": "8114632832", + "voter": "lemouth" + }, + { + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "rshares": "51877132", + "voter": "johnbyrd" + }, + { + "rshares": "50682252", + "voter": "thomasaustin" + }, + { + "rshares": "51859074", + "voter": "thermor" + }, + { + "rshares": "50691211", + "voter": "ficholl" + }, + { + "rshares": "51852278", + "voter": "widell" + }, + { + "rshares": "404286448", + "voter": "steevc" + }, + { + "rshares": "3635091595", + "voter": "movievertigo" + }, + { + "rshares": "51481279", + "voter": "revelbrooks" + }, + { + "rshares": "1573489537", + "voter": "cehuneke" + }, + { + "rshares": "2982676167", + "voter": "netaterra" + }, + { + "rshares": "23137850346", + "voter": "andrewawerdna" + }, + { + "rshares": "5831957227", + "voter": "trev" + }, + { + "rshares": "8773942171", + "voter": "craigwilliamz" + }, + { + "rshares": "51505575275", + "voter": "mandibil" + }, + { + "rshares": "32462674824", + "voter": "daut44" + }, + { + "rshares": "50416427", + "voter": "curpose" + }, + { + "rshares": "3597236649", + "voter": "curving" + }, + { + "rshares": "61596105", + "voter": "uri-bruck" + }, + { + "rshares": "112983030208", + "voter": "shenanigator" + }, + { + "rshares": "10005063213", + "voter": "quinneaker" + }, + { + "rshares": "7626813355", + "voter": "einsteinpotsdam" + }, + { + "rshares": "4747321980", + "voter": "richardcrill" + }, + { + "rshares": "2205784762", + "voter": "jeremyfromwi" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "1661534801", + "voter": "davidjkelley" + }, + { + "rshares": "50593879", + "voter": "crion" + }, + { + "rshares": "178419224", + "voter": "greatness" + }, + { + "rshares": "50271139", + "voter": "hitherise" + }, + { + "rshares": "50262756", + "voter": "wiss" + }, + { + "rshares": "54249219602", + "voter": "sponge-bob" + }, + { + "rshares": "15571056039", + "voter": "digital-wisdom" + }, + { + "rshares": "3365396535", + "voter": "getonthetrain" + }, + { + "rshares": "3710959443", + "voter": "ethical-ai" + }, + { + "rshares": "51033798", + "voter": "stroully" + }, + { + "rshares": "6831361820", + "voter": "jwaser" + }, + { + "rshares": "468106735", + "voter": "tfeldman" + }, + { + "rshares": "50712038", + "voter": "thadm" + }, + { + "rshares": "50710305", + "voter": "prof" + }, + { + "rshares": "1597514180", + "voter": "ionescur" + }, + { + "rshares": "50065875", + "voter": "bane" + }, + { + "rshares": "50059754", + "voter": "vive" + }, + { + "rshares": "50054445", + "voter": "coad" + }, + { + "rshares": "2675506788", + "voter": "bwaser" + }, + { + "rshares": "7645490859", + "voter": "renzoarg" + }, + { + "rshares": "50840303", + "voter": "sofa" + }, + { + "rshares": "53990613", + "voter": "roadhog" + }, + { + "rshares": "52794249", + "voter": "doggnostic" + }, + { + "rshares": "52521499", + "voter": "jenny-talls" + }, + { + "rshares": "8199670899", + "voter": "mariandavp" + }, + { + "rshares": "55344422883", + "voter": "brains" + }, + { + "rshares": "53415391", + "voter": "post-successful" + }, + { + "rshares": "5866415576", + "voter": "burnin" + }, + { + "rshares": "271439221", + "voter": "anomaly" + }, + { + "rshares": "2401297947", + "voter": "ellepdub" + }, + { + "rshares": "4116636581", + "voter": "michelle.gent" + }, + { + "rshares": "12115638535", + "voter": "herpetologyguy" + }, + { + "rshares": "4817004213", + "voter": "morgan.waser" + }, + { + "rshares": "50228382", + "voter": "dragonice" + }, + { + "rshares": "1288421610", + "voter": "aksinya" + }, + { + "rshares": "1921231770", + "voter": "bapparabi" + }, + { + "rshares": "50487909", + "voter": "opticalillusions" + }, + { + "rshares": "3689852156", + "voter": "strong-ai" + }, + { + "rshares": "505556200", + "voter": "grisha-danunaher" + }, + { + "rshares": "71207873", + "voter": "igtes" + }, + { + "rshares": "50277354380", + "voter": "curie" + }, + { + "rshares": "851767121", + "voter": "dikanevroman" + }, + { + "rshares": "141679752", + "voter": "buffett" + }, + { + "rshares": "453506109", + "voter": "witchcraftblog" + }, + { + "rshares": "157799009", + "voter": "photorealistic" + }, + { + "rshares": "160880639", + "voter": "illusions" + }, + { + "rshares": "6920933761", + "voter": "dresden" + }, + { + "rshares": "160845765", + "voter": "caseyneistat" + }, + { + "rshares": "692395145", + "voter": "ysa" + }, + { + "rshares": "159984914", + "voter": "correct" + }, + { + "rshares": "159973989", + "voter": "capcom" + }, + { + "rshares": "159963865", + "voter": "sledgehammer" + }, + { + "rshares": "159950870", + "voter": "haribo" + }, + { + "rshares": "159531007", + "voter": "benetton" + }, + { + "rshares": "156194471", + "voter": "stimmt" + }, + { + "rshares": "159143891", + "voter": "reef" + }, + { + "rshares": "158632601", + "voter": "cream" + }, + { + "rshares": "891891710", + "voter": "reddust" + }, + { + "rshares": "336222066", + "voter": "aldentan" + }, + { + "rshares": "191981449", + "voter": "techslut" + } + ], + "author": "curie", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "
https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg
\n\n## Introduction\n[Project Curie](https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors) is a community project run by several Steemit authors. Its mission is to help reward content creators who are posting great original content, yet who have not yet become established. In the short time since Curie began, our writers group has partnered with @nextgencrypto and other whale accounts to bring rewards to these deserving authors. *Writers, artists, chefs, photographers, videographers, and many others have been recognized by these rewards.*\n\nEach day, the members of our Project will publish this list of the posts that Project Curie has chosen to reward recently. We hope that this list will provide more positive exposure to the authors we have selected. Also, it is an effort for us to be more transparent about which posts are being rewarded. We hope that you will consider following not only this @curie account, but also many of the authors whose work is featured here each day. **Please consider adding your comments on these posts also!**\n\nProject Curie's daily curation lists will now be called \"The Daily Curie\". We hope you like the name! Future editions of The Daily Curie will [feature our new logo](https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement). For the latest on Project Curie, do check out our [Month #1 update](https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016). \n\n----------------------\n\n## Today's Brief Analysis\n\nToday's list polls all posts curated between 17:00 14/09 UTC and 17:00 15/09 UTC. Project Curie voted on a total of **103 posts** by 99 unique authors. **SBD 3,832** has been generated for authors thus far, at an average of SBD 37 per post. \n\n----------------------\n| Author | Post | Payout |\n| --------- | ---------- | --------- |\n| [@faddat](https://steemit.com/@faddat) | [[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!](https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed) | 616.681 SBD |\n| [@rampant](https://steemit.com/@rampant) | [Steemit Daily Drawing Tutorial - Gesture drawings (plus tool)](https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool) | 215.310 SBD |\n| [@shenanigator](https://steemit.com/@shenanigator) | [Doing the Right Thing Will Get You Fired. What Do You Do?](https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do) | 205.664 SBD |\n| [@penguinpablo](https://steemit.com/@penguinpablo) | [How to Carve an Apple Leaf](https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf) | 196.419 SBD |\n| [@nathanjtaylor](https://steemit.com/@nathanjtaylor) | [Fire And Grace Art Painting And Poetry](https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry) | 189.043 SBD |\n| [@lily-da-vine](https://steemit.com/@lily-da-vine) | [Going Bananas in Acapulco](https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco) | 158.416 SBD |\n| [@budgetbucketlist](https://steemit.com/@budgetbucketlist) | [A 1-week plunge into Mexico City's madness! Art adventures, Frida-seeking and unfiltered exhaust fumes...](https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes) | 151.033 SBD |\n| [@benjiberigan](https://steemit.com/@benjiberigan) | [Anarchist Architecture, part 5: The cruelty of architectural codes and regulations.](https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations) | 132.427 SBD |\n| [@ausbitbank](https://steemit.com/@ausbitbank) | [The time my town flooded, the fragility of the food supply and lessons learned (Original photos)](https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos) | 125.877 SBD |\n| [@emily-cook](https://steemit.com/@emily-cook) | [THE ISLE OF MAN FILM FESTIVAL 2016 -A week of parties, red carpets and a lot of hard work!](https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work) | 121.336 SBD |\n| [@team-leibniz](https://steemit.com/@team-leibniz) | [Week 1 NFL Daily Fantasy Football Results - How my Bayesian Inspired Lineups Fared (+$84.00)](https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00) | 119.473 SBD |\n| [@ionescur](https://steemit.com/@ionescur) | [Urban dreams of freedom: back to the countryside, back to the land](https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land) | 110.564 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [New traditionl painting - \"The Battle\" - Steps of work](https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work) | 105.622 SBD |\n| [@juliac](https://steemit.com/@juliac) | [One of The Best Portraits That I've Ever Created: Einstein. What Do You Think?](https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think) | 103.781 SBD |\n| [@luzcypher](https://steemit.com/@luzcypher) | [Cover Crops Can Grow Food Organically With No Fertilizers, No Pesticides, No Herbicides And No Chemicals](https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals) | 100.117 SBD |\n| [@akareyon](https://steemit.com/@akareyon) | [I find your lack of argument disturbing](https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing) | 98.525 SBD |\n| [@curving](https://steemit.com/@curving) | [The Ephemeral Cairn Gardens Of the Austin Greenbelt - A Photo Journal and Meditation](https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation) | 96.834 SBD |\n| [@aleksandraz](https://steemit.com/@aleksandraz) | [Incredible Science - Brainbow Technology](https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology) | 89.777 SBD |\n| [@skapaneas](https://steemit.com/@skapaneas) | [IBD Crohn desease and Ulceritive collitis. what are they, self diagnose, self treat and more.](https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more) | 85.958 SBD |\n| [@gargon](https://steemit.com/@gargon) | [Proyecto Cervantes (13 - 15 Sept 2016): Compensaci\u00f3n y reconocimiento para escritores de habla hispana / Bringing rewards and recognition to spanish writers (Vol. III)](https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and) | 83.725 SBD |\n| [@iamwne](https://steemit.com/@iamwne) | [Blade Runner Inspired Digital Set - The Dark Market - Beauty Pass](https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass) | 83.869 SBD |\n| [@stormblaze](https://steemit.com/@stormblaze) | [Where Do Deleted Files Go?](https://steemit.com/technology/@stormblaze/where-do-deleted-files-go) | 81.221 SBD |\n| [@yanarnst](https://steemit.com/@yanarnst) | [Steemit Food Art lesson 2 ''Salad with chicken liver and pine nuts''](https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts) | 78.034 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Myths in the Sky: Ursa Major and Ursa Minor](https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor) | 72.174 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Brain preservation: an ambulance to the future](https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future) | 72.082 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Vivisecting the Stargazing Tribe: Visual Observers and Screen Scanners](https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners) | 71.421 SBD |\n| [@cristi](https://steemit.com/@cristi) | [Radical Metabolism - No Food and Water for 8 Months](https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months) | 69.559 SBD |\n| [@stranger27](https://steemit.com/@stranger27) | [Fibonacci sequence and Golden Ratio: magic numbers of Nature](https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature) | 66.258 SBD |\n| [@nekromarinist](https://steemit.com/@nekromarinist) | [Let's talk a little bit about phobias today!](https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today) | 61.776 SBD |\n| [@richman](https://steemit.com/@richman) | [If you want to lose a friend, lend him money (My life story)](https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story) | 58.193 SBD |\n| [@maceytomlin](https://steemit.com/@maceytomlin) | [What Exactly is Ayahuasca? How Should You Prepare for a Ceremony?](https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony) | 58.197 SBD |\n| [@nili](https://steemit.com/@nili) | [Smart Life (part 2) - Resolving the Godel's paradox on the blockchain as a solution for a decentralized trusted protocol](https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol) | 55.575 SBD |\n| [@optimistic-crone](https://steemit.com/@optimistic-crone) | [PROBIOTICS FOR LIFE!!! SUPER SIMPLE FERMENTED VEGETABLE 'KIM CHEE' RECIPE](https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe) | 54.909 SBD |\n| [@anarchyhasnogods](https://steemit.com/@anarchyhasnogods) | [Learning one dimensional motion using graphs- physics for beginners - part one](https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one) | 53.295 SBD |\n| [@yostopia](https://steemit.com/@yostopia) | [Beginner's mind, creative mind... the making of a Vimeo Staff Pick.](https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick) | 51.222 SBD |\n| [@reneenouveau](https://steemit.com/@reneenouveau) | [My response to Paul Steyn's myopic article \"Mr. Environmentalist\" shockingly published by National Geographic in Sept 2015.](https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015) | 49.433 SBD |\n| [@king3071](https://steemit.com/@king3071) | [MY DREAM DESTINATION - SWITZERLAND](https://steemit.com/travel/@king3071/my-dream-destination-switzerland) | 49.816 SBD |\n| [@kolin.evans](https://steemit.com/@kolin.evans) | [Something a little more substantial for you to think about - the 'IS' / 'WAS' CPT (Continuous Probable Time-lines.)](https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines) | 47.288 SBD |\n| [@fenglosophy](https://steemit.com/@fenglosophy) | [Does the language you speak influence how you think?](https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think) | 44.070 SBD |\n| [@mandibil](https://steemit.com/@mandibil) | [SAVAGE [Gorm Just, Denmark 2009] - movie review by Mandibil](https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil) | 44.621 SBD |\n| [@therajmahal](https://steemit.com/@therajmahal) | [Making the Impossible... Possible](https://steemit.com/science/@therajmahal/making-the-impossible-possible) | 44.765 SBD |\n| [@carlitashaw](https://steemit.com/@carlitashaw) | [The World's Worst Oil Spills, Ramifications & Amazing Alternative Solutions.](https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions) | 44.986 SBD |\n| [@renzoarg](https://steemit.com/@renzoarg) | [Skip a pill - Antibiotics](https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics) | 43.918 SBD |\n| [@rachelsvparry](https://steemit.com/@rachelsvparry) | [Under the Sea (again, but better this time)](https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time) | 43.436 SBD |\n| [@royalmacro](https://steemit.com/@royalmacro) | [lonely tree [An Original Abstract Art]](https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art) | 42.826 SBD |\n| [@stephmckenzie](https://steemit.com/@stephmckenzie) | [The Power of Choice--A Magnificent Key to True Personal Freedom](https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone) | 42.441 SBD |\n| [@alwayzgame](https://steemit.com/@alwayzgame) | [10 simple steps to ruin your child's life](https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life) | 42.475 SBD |\n| [@nonlinearone](https://steemit.com/@nonlinearone) | [Can Hemingway Improve Your Writing?](https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing) | 42.669 SBD |\n| [@kafkanarchy84](https://steemit.com/@kafkanarchy84) | [\"Johnny B. Goode\" Guitar Lesson and Intro to Theory, Vol. II](https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii) | 41.326 SBD |\n| [@feline1991](https://steemit.com/@feline1991) | [A Steemit Original - A Lifetime of Seeking Happiness - Chapter 2 - Part 2](https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2) | 41.931 SBD |\n| [@geke](https://steemit.com/@geke) | [The Banker and the Bulova - an original poem (Steemit flash-writing challenge)](https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge) | 41.497 SBD |\n| [@lscottphotos](https://steemit.com/@lscottphotos) | [LSCOTTPHOTOS Welcome to my family :) Thank you steemers <3 (Original Photos)](https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos) | 40.201 SBD |\n| [@pinkisland](https://steemit.com/@pinkisland) | [My Philosophy of Education](https://steemit.com/writing/@pinkisland/my-philosophy-of-education) | 40.978 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cinco](https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco) | 39.708 SBD |\n| [@luisucv34](https://steemit.com/@luisucv34) | [Venezuela: The lack of opportunities (English edition)](https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition) | 39.783 SBD |\n| [@beowulfoflegend](https://steemit.com/@beowulfoflegend) | [Silvanus and Empire, an Original Novel (Chapter Twenty)](https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty) | 39.543 SBD |\n| [@mariandavp](https://steemit.com/@mariandavp) | [From zero to hero - abstract office art by @mariandavp](https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp) | 39.529 SBD |\n| [@nasimbabu](https://steemit.com/@nasimbabu) | [The technology that defends us from potentially deadly diseases](https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases) | 39.620 SBD |\n| [@royaltiffany](https://steemit.com/@royaltiffany) | [Steemit B'Day Movie Review Contest Update!](https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update) | 37.706 SBD |\n| [@travelista](https://steemit.com/@travelista) | [An Adventure in Isla Esp\u00edritu Santo!](https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo) | 37.218 SBD |\n| [@jpiper20](https://steemit.com/@jpiper20) | [We Meet At Night -- An Original Story (Part 4)](https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4) | 37.319 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new painting - \"Dexter\" - Modern Impressionism](https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism) | 36.937 SBD |\n| [@krystle](https://steemit.com/@krystle) | [Keltorin's Flora and Fauna of Note - Firikwea - Valcanne's Guide to Keltorin](https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin) | 36.972 SBD |\n| [@cryptoiskey](https://steemit.com/@cryptoiskey) | [Workout from home on the cheap! - 12th September #Ultimate workout companion for your kids!](https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids) | 36.115 SBD |\n| [@getonthetrain](https://steemit.com/@getonthetrain) | [Top 10 Grisly Medieval Torture Methods](https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods) | 34.093 SBD |\n| [@ansharphoto](https://steemit.com/@ansharphoto) | [Roman Forum in the Morning, Rome](https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome) | 33.328 SBD |\n| [@aboundlessworld](https://steemit.com/@aboundlessworld) | [Introducing The Steemit Stories Podcast!](https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast) | 33.728 SBD |\n| [@thornybastard](https://steemit.com/@thornybastard) | [Chapter 10: A Call from the Forest\u2014\u6765\u81ea\u68ee\u6797\u7684\u547c\u5524](https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest) | 32.465 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Installing Bitshares / graphene from source on Mac OS X Yosemite (10.5.5)](https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5) | 32.348 SBD |\n| [@dumar022](https://steemit.com/@dumar022) | [Workshop lesson 6: Wrench: You don't wanna mess with this](https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this) | 32.155 SBD |\n| [@lapilipinas](https://steemit.com/@lapilipinas) | [Light from distant stars](https://steemit.com/science/@lapilipinas/light-from-distant-stars) | 32.778 SBD |\n| [@williambanks](https://steemit.com/@williambanks) | [Towards A Better Tomorrow : Part 1 - There but for grace!](https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace) | 31.434 SBD |\n| [@driv3n](https://steemit.com/@driv3n) | [How to Solve the Rubik's Cube like a boss - Part 2](https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2) | 31.858 SBD |\n| [@timbot606](https://steemit.com/@timbot606) | [Growing up in Appalachia](https://steemit.com/life/@timbot606/growing-up-in-appalachia) | 31.548 SBD |\n| [@themagus](https://steemit.com/@themagus) | [A less privileged white growing up in South Africa in the 1970's - part 2](https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2) | 31.099 SBD |\n| [@echoesinthemind](https://steemit.com/@echoesinthemind) | [Hanging Upside Down / DO NOT Try At Home](https://steemit.com/life/@echoesinthemind/hanging-upside-down) | 31.736 SBD |\n| [@ysa](https://steemit.com/@ysa) | [My pictures from traveling to Estes Park, Colorado](https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado) | 31.981 SBD |\n| [@aksinya](https://steemit.com/@aksinya) | [Our Trip to Wonderful, Scary and Unforgettable Kenya. Original Photos and Video](https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video) | 31.882 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cuatro](https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro) | 31.992 SBD |\n| [@successfully00](https://steemit.com/@successfully00) | [Knowing The Math - Mental Tricks - Multiplication Part 1](https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1) | 31.037 SBD |\n| [@linzo](https://steemit.com/@linzo) | [A Life Fantasy (Original Poem)](https://steemit.com/poem/@linzo/a-life-fantasy-original-poem) | 30.964 SBD |\n| [@hilarski](https://steemit.com/@hilarski) | [Panama Critters.](https://steemit.com/panama/@hilarski/panama-critters) | 28.729 SBD |\n| [@sulev](https://steemit.com/@sulev) | [Photography #11 - Pictures from my Garden: Bees, Lizards and other (part 2)](https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2) | 27.947 SBD |\n| [@steemswede](https://steemit.com/@steemswede) | [[BEER REVIEW] Thomas Hardy's Ale](https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale) | 27.183 SBD |\n| [@marius19](https://steemit.com/@marius19) | [Set of paper coffee cups. Origami](https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami) | 26.439 SBD |\n| [@poeticsnake](https://steemit.com/@poeticsnake) | [Autumn is coming Doodle style! ( Tutorial with step by step drawings)](https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings) | 26.547 SBD |\n| [@kiddarko](https://steemit.com/@kiddarko) | [Peep Life a Story By KidDarko (with tattoo illistrations and video)](https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video) | 26.853 SBD |\n| [@shieha](https://steemit.com/@shieha) | [The Hardest Computer Game of All Time - Robot Odyssey - Part 2](https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2) | 26.372 SBD |\n| [@ayim](https://steemit.com/@ayim) | [Fixing Posture - Part 4: Neck](https://steemit.com/life/@ayim/fixing-posture-part-4-neck) | 26.142 SBD |\n| [@hitmeasap](https://steemit.com/@hitmeasap) | [I am Batman's Robin or Skywalkers R2-D2. - I've always been the co-pilot. Always been the second choice.](https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice) | 25.747 SBD |\n| [@peskov](https://steemit.com/@peskov) | [Antonikha. Part 2 (featuring Vasily Peskov as author)](https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author) | 25.173 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [Advice from an angry dude: Breathe and interrupt your thoughts](https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts) | 25.162 SBD |\n| [@beginningtoend](https://steemit.com/@beginningtoend) | [Poetry, art and a little home spun philosophy.](https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy) | 25.708 SBD |\n| [@kaykunoichi](https://steemit.com/@kaykunoichi) | [Suicide Note - Audio (Written & performed by myself)](https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself) | 25.523 SBD |\n| [@booky](https://steemit.com/@booky) | [Boosting Leadership Skills = Healthier Happier You and Your Workmates](https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates) | 24.083 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [Do you Know the Difference Between RIGHT & WRONG?](https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong) | 24.516 SBD |\n| [@ekaterina4ka](https://steemit.com/@ekaterina4ka) | [We Knit Patterns by the Spokes. Post 2. \u0412\u044f\u0436\u0435\u043c \u0443\u0437\u043e\u0440\u044b \u0441\u043f\u0438\u0446\u0430\u043c\u0438. \u041f\u043e\u0441\u0442 2.](https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2) | 24.793 SBD |\n| [@scaredycatguide](https://steemit.com/@scaredycatguide) | [Real Talk - Vol 9. - Welcome To Dogmerica](https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica) | 24.207 SBD |\n| [@amy-goodrich](https://steemit.com/@amy-goodrich) | [Pineapple Mojito Green Smoothie](https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie) | 24.126 SBD |\n| [@scott.stevens](https://steemit.com/@scott.stevens) | [Awareness of Bitcoin is Now More Important Than Awareness of Geoengineering](https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering) | 24.875 SBD |\n| [@witchcraftblog](https://steemit.com/@witchcraftblog) | [My trip to Italy. Pisa.](https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa) | 24.265 SBD |\n| [@ibringawareness](https://steemit.com/@ibringawareness) | [\"Why I Got Stiffed\" Guy's Waiter Blog chapter 5](https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5) | 24.224 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new illustration - Batman vs Superman - Modern Impressionism by kimal73](https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73) | 23.617 SBD |\n| [@leylar](https://steemit.com/@leylar) | [Seeds are great travelers ~ Own work](https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work) | 23.166 SBD |\n| [@ocrdu](https://steemit.com/@ocrdu) | [The pods that go \"pop\"](https://steemit.com/photography/@ocrdu/the-pods-that-go-pop) | 23.530 SBD |\n| [@rusla](https://steemit.com/@rusla) | [Japan. Part8.](https://steemit.com/travel/@rusla/japan-part8) | 23.209 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [Puppy Charcoal Original Pencil Drawing](https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing) | 23.879 SBD |\n| [@borishaifa](https://steemit.com/@borishaifa) | [To Write Or Not To Wirte? \u041f\u0438\u0441\u0430\u0442\u044c \u0438\u043b\u0438 \u043d\u0435 \u043f\u0438\u0441\u0430\u0442\u044c?](https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat) | 23.730 SBD |\n| [@eveningstar92](https://steemit.com/@eveningstar92) | [Shit Happens, Move On-NSFW- Evening Star Art](https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art) | 23.092 SBD |\n| [@elewarne](https://steemit.com/@elewarne) | [Mixed Media](https://steemit.com/mixedmedia/@elewarne/mixed-media) | 23.059 SBD |\n| [@shredlord](https://steemit.com/@shredlord) | [Sunrise](https://steemit.com/art/@shredlord/sunrise) | 23.318 SBD |\n| [@sherlockcupid](https://steemit.com/@sherlockcupid) | [Let's Talk: Fears (Part One)](https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one) | 23.720 SBD |\n| [@annesaya](https://steemit.com/@annesaya) | [Our Guiding Star, a poem (A tribute to writers)](https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers) | 23.384 SBD |\n| [@fitmama](https://steemit.com/@fitmama) | [Why Do I Bother....](https://steemit.com/life/@fitmama/why-do-i-bother) | 23.451 SBD |\n| [@ezzy](https://steemit.com/@ezzy) | [The Bionic Experiment - Part 1 (My Original Short Stories)](https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories) | 23.480 SBD |\n| [@kingarbinv](https://steemit.com/@kingarbinv) | [Adventures in Nemaland - Part 8 (Video) + My best Pokemon catch so far.](https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far) | 23.292 SBD |\n| [@soulsistashakti](https://steemit.com/@soulsistashakti) | [How to Detect and Deflect Gaslighting from a Narcissist](https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist) | 22.018 SBD |\n| [@puffin](https://steemit.com/@puffin) | [Tragical Impoverishment - Society's Dirt (Original Poem)](https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem) | 22.621 SBD |\n| [@cehuneke](https://steemit.com/@cehuneke) | [The Sugar Scandal: Corrupted Science in the Debate of Fat vs. Sugar and Coronary Heart Disease](https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease) | 22.821 SBD |\n| [@tanata](https://steemit.com/@tanata) | [Little Black Dress involving](https://steemit.com/fashion/@tanata/little-black-dress-involving) | 22.237 SBD |\n| [@steemwriter](https://steemit.com/@steemwriter) | [YouTube Demonetization: A Step Towards Censorship?](https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship) | 22.297 SBD |\n| [@michelle.gent](https://steemit.com/@michelle.gent) | [Dusty - one of my characters](https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters) | 22.659 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [A Gift-Original Rose Drawing](https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing) | 22.249 SBD |\n| [@runridefly](https://steemit.com/@runridefly) | [Minnow's Life - @runridefly original cartoon \"minnowsunite Whale sighting\" minnows and a whale](https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale) | 22.836 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [[SHORT STORY] The Cult of Personality - Part One](https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one) | 22.552 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Look at the Flower Chicory: a Useful and Beautiful Flower ... my Favorite Photos of Chicory](https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory) | 22.795 SBD |\n| [@victoriart](https://steemit.com/@victoriart) | [Hazelnut Mood](https://steemit.com/art/@victoriart/hazelnut-mood) | 22.443 SBD |\n| [@heroic15397](https://steemit.com/@heroic15397) | [Amazing Birds in the Greater Montreal area](https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area) | 22.987 SBD |\n| [@smartercars](https://steemit.com/@smartercars) | [Reviewing the Volkswagen Touareg ~ Smarter Car Reviews](https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews) | 22.975 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [Blues Jam & Techniques [9-14-2016]](https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016) | 22.415 SBD |\n| [@matthew.raymer](https://steemit.com/@matthew.raymer) | [Life Stories](https://steemit.com/psychology/@matthew.raymer/life-stories) | 22.733 SBD |\n| [@positivesteem](https://steemit.com/@positivesteem) | [Common Sense Versus Degrees: The Man Who Has One Hundred Degrees](https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees) | 22.941 SBD |\n| [@d3nv3r](https://steemit.com/@d3nv3r) | [Cloud Mining - The Struggle is Real](https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real) | 22.266 SBD |\n| [@adubi](https://steemit.com/@adubi) | [Healing Food Plan: The Ultimate Cheat Sheet](https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet) | 22.947 SBD |\n| [@alitas](https://steemit.com/@alitas) | [(spanish) Cazuela de Calamar con Papas Rejilla](https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla) | 22.240 SBD |\n| [@mazi](https://steemit.com/@mazi) | [I Can See Clearly Now .... Platanus occidentalis](https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis) | 22.784 SBD |\n| [@mikemacintire](https://steemit.com/@mikemacintire) | [A Red Like No Other - My work](https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work) | 22.289 SBD |\n| [@altzero](https://steemit.com/@altzero) | [Im\u00e1genes de una vida (2)](https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2) | 21.555 SBD |\n| [@birdie](https://steemit.com/@birdie) | [Clouds That Demand Attention (Original Photos)](https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos) | 21.397 SBD |\n| [@michaelstobiersk](https://steemit.com/@michaelstobiersk) | [An Original Painting by Michael Stobierski](https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski) | 21.367 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Meditation Experience Can Be Really Scary](https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary) | 21.583 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [The Price Is Right Theme Music Breakdown](https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown) | 21.937 SBD |\n| [@karisa](https://steemit.com/@karisa) | [Very tasty and delicious curd cookies specially for Steemit . Part 4](https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4) | 21.940 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Borovoye (Burabai) - Pearl of Kazakhstan: The Incredible Journey (Story of my Husband)](https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband) | 20.616 SBD |\n| [@burnin](https://steemit.com/@burnin) | [Exploring the Off-Limits Areas of the Largest Cruise Ship In the World - Part 2](https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2) | 20.298 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Eyes Of Wisdom](https://steemit.com/art/@reddust/eyes-of-wisdom) | 20.051 SBD |\n| [@levycore](https://steemit.com/@levycore) | [Hot Chocolate Art - Trying Draw Faces](https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces) | 20.233 SBD |\n| [@awesomenyl](https://steemit.com/@awesomenyl) | [Sunflower Paper Tutorial](https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial) | 20.040 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [The epic and awesome guide to writing articles like a true artist that people want to read and share! [Edited for Steemit today]](https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today) | 20.192 SBD |\n| [@naquoya](https://steemit.com/@naquoya) | [[ORIGINAL FICTION] Bad Trip part two: The Gamemaster](https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster) | 20.041 SBD |\n| [@moon32walker](https://steemit.com/@moon32walker) | [Top 10 Game Development Studios](https://steemit.com/gaming/@moon32walker/top-10-game-development-studios) | 20.468 SBD |\n| [@gustavopasquini](https://steemit.com/@gustavopasquini) | [Polenta with Ragu Meat Dry](https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry) | 20.436 SBD |\n| [@benadapt](https://steemit.com/@benadapt) | [Capturing the Milky Way \u2014 A Photographer\u2019s Biggest Challenge](https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge) | 20.477 SBD |\n| [@altzero](https://steemit.com/@altzero) | [\u00bfQue es la nueva economia?](https://steemit.com/spanish/@altzero/que-es-la-nueva-economia) | 20.037 SBD |\n| [@por500bolos](https://steemit.com/@por500bolos) | [Uncovering The Most Transcendental & Biggest Secret In The Human Life. \u00bfSkeptical? I will challenge you to prove otherwise!!](https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise) | 20.894 SBD |\n| [@zonpower](https://steemit.com/@zonpower) | [This is a place (An original Poem)](https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem) | 20.869 SBD |\n| [@katharsisdrill](https://steemit.com/@katharsisdrill) | [The rune-stones of Jelling, and a new realisation.](https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation) | 19.761 SBD |\n| [@glezeddy](https://steemit.com/@glezeddy) | [MEZCLA DE TEQUILA PARA DAR EL \"GRITO\" (M\u00c9XICO)](https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico) | 15.682 SBD |\n| [@onetree](https://steemit.com/@onetree) | [South African Slang - Enter Those Who Dare!](https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare) | 33.017 SBD |\n| [@verbal-d](https://steemit.com/@verbal-d) | [Melodious Music Memoirs # 2: Impact](https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact) | 30.372 SBD |\n| [@wanderingagorist](https://steemit.com/@wanderingagorist) | [Foraging Wild Rose Hips for Tea and Eating](https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating) | 29.228 SBD |\n| [@knablinz](https://steemit.com/@knablinz) | [Hand-Made Collage Art By Knablinz ( Donuts & Coffee )](https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee) | 35.939 SBD |\n\n---------------------------\n
Note: All author rewards from this post will be used to fund Project Curie.
Join us in #curie on Steemit.chat and follow us @curie!
", + "category": "curie", + "children": 10, + "created": "2016-09-15T17:53:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg" + ], + "links": [ + "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", + "https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement", + "https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", + "https://steemit.com/@faddat", + "https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed", + "https://steemit.com/@rampant", + "https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool", + "https://steemit.com/@shenanigator", + "https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do", + "https://steemit.com/@penguinpablo", + "https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf", + "https://steemit.com/@nathanjtaylor", + "https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry", + "https://steemit.com/@lily-da-vine", + "https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco", + "https://steemit.com/@budgetbucketlist", + "https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes", + "https://steemit.com/@benjiberigan", + "https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations", + "https://steemit.com/@ausbitbank", + "https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos", + "https://steemit.com/@emily-cook", + "https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work", + "https://steemit.com/@team-leibniz", + "https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00", + "https://steemit.com/@ionescur", + "https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land", + "https://steemit.com/@kimal73", + "https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work", + "https://steemit.com/@juliac", + "https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think", + "https://steemit.com/@luzcypher", + "https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals", + "https://steemit.com/@akareyon", + "https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing", + "https://steemit.com/@curving", + "https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation", + "https://steemit.com/@aleksandraz", + "https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology", + "https://steemit.com/@skapaneas", + "https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more", + "https://steemit.com/@gargon", + "https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", + "https://steemit.com/@iamwne", + "https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass", + "https://steemit.com/@stormblaze", + "https://steemit.com/technology/@stormblaze/where-do-deleted-files-go", + "https://steemit.com/@yanarnst", + "https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts", + "https://steemit.com/@senseye", + "https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor", + "https://steemit.com/@crasch", + "https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future", + "https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners", + "https://steemit.com/@cristi", + "https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months", + "https://steemit.com/@stranger27", + "https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature", + "https://steemit.com/@nekromarinist", + "https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today", + "https://steemit.com/@richman", + "https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story", + "https://steemit.com/@maceytomlin", + "https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony", + "https://steemit.com/@nili", + "https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol", + "https://steemit.com/@optimistic-crone", + "https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe", + "https://steemit.com/@anarchyhasnogods", + "https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one", + "https://steemit.com/@yostopia", + "https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick", + "https://steemit.com/@reneenouveau", + "https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015", + "https://steemit.com/@king3071", + "https://steemit.com/travel/@king3071/my-dream-destination-switzerland", + "https://steemit.com/@kolin.evans", + "https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines", + "https://steemit.com/@fenglosophy", + "https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think", + "https://steemit.com/@mandibil", + "https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil", + "https://steemit.com/@therajmahal", + "https://steemit.com/science/@therajmahal/making-the-impossible-possible", + "https://steemit.com/@carlitashaw", + "https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions", + "https://steemit.com/@renzoarg", + "https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics", + "https://steemit.com/@rachelsvparry", + "https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time", + "https://steemit.com/@royalmacro", + "https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art", + "https://steemit.com/@stephmckenzie", + "https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone", + "https://steemit.com/@alwayzgame", + "https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life", + "https://steemit.com/@nonlinearone", + "https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing", + "https://steemit.com/@kafkanarchy84", + "https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii", + "https://steemit.com/@feline1991", + "https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2", + "https://steemit.com/@geke", + "https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge", + "https://steemit.com/@lscottphotos", + "https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos", + "https://steemit.com/@pinkisland", + "https://steemit.com/writing/@pinkisland/my-philosophy-of-education", + "https://steemit.com/@jgcastrillo19", + "https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco", + "https://steemit.com/@luisucv34", + "https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition", + "https://steemit.com/@beowulfoflegend", + "https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty", + "https://steemit.com/@mariandavp", + "https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp", + "https://steemit.com/@nasimbabu", + "https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases", + "https://steemit.com/@royaltiffany", + "https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update", + "https://steemit.com/@travelista", + "https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo", + "https://steemit.com/@jpiper20", + "https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4", + "https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism", + "https://steemit.com/@krystle", + "https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin", + "https://steemit.com/@cryptoiskey", + "https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids", + "https://steemit.com/@getonthetrain", + "https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods", + "https://steemit.com/@ansharphoto", + "https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome", + "https://steemit.com/@aboundlessworld", + "https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast", + "https://steemit.com/@thornybastard", + "https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest", + "https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5", + "https://steemit.com/@dumar022", + "https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this", + "https://steemit.com/@lapilipinas", + "https://steemit.com/science/@lapilipinas/light-from-distant-stars", + "https://steemit.com/@williambanks", + "https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace", + "https://steemit.com/@driv3n", + "https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2", + "https://steemit.com/@timbot606", + "https://steemit.com/life/@timbot606/growing-up-in-appalachia", + "https://steemit.com/@themagus", + "https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2", + "https://steemit.com/@echoesinthemind", + "https://steemit.com/life/@echoesinthemind/hanging-upside-down", + "https://steemit.com/@ysa", + "https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado", + "https://steemit.com/@aksinya", + "https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video", + "https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro", + "https://steemit.com/@successfully00", + "https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1", + "https://steemit.com/@linzo", + "https://steemit.com/poem/@linzo/a-life-fantasy-original-poem", + "https://steemit.com/@hilarski", + "https://steemit.com/panama/@hilarski/panama-critters", + "https://steemit.com/@sulev", + "https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2", + "https://steemit.com/@steemswede", + "https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale", + "https://steemit.com/@marius19", + "https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami", + "https://steemit.com/@poeticsnake", + "https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings", + "https://steemit.com/@kiddarko", + "https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video", + "https://steemit.com/@shieha", + "https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2", + "https://steemit.com/@ayim", + "https://steemit.com/life/@ayim/fixing-posture-part-4-neck", + "https://steemit.com/@hitmeasap", + "https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice", + "https://steemit.com/@peskov", + "https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author", + "https://steemit.com/@aldentan", + "https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts", + "https://steemit.com/@beginningtoend", + "https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy", + "https://steemit.com/@kaykunoichi", + "https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself", + "https://steemit.com/@booky", + "https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates", + "https://steemit.com/@doubledex", + "https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong", + "https://steemit.com/@ekaterina4ka", + "https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2", + "https://steemit.com/@scaredycatguide", + "https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica", + "https://steemit.com/@amy-goodrich", + "https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie", + "https://steemit.com/@scott.stevens", + "https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering", + "https://steemit.com/@witchcraftblog", + "https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa", + "https://steemit.com/@ibringawareness", + "https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5", + "https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73", + "https://steemit.com/@leylar", + "https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work", + "https://steemit.com/@ocrdu", + "https://steemit.com/photography/@ocrdu/the-pods-that-go-pop", + "https://steemit.com/@rusla", + "https://steemit.com/travel/@rusla/japan-part8", + "https://steemit.com/@edgarsart", + "https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing", + "https://steemit.com/@borishaifa", + "https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat", + "https://steemit.com/@eveningstar92", + "https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art", + "https://steemit.com/@elewarne", + "https://steemit.com/mixedmedia/@elewarne/mixed-media", + "https://steemit.com/@shredlord", + "https://steemit.com/art/@shredlord/sunrise", + "https://steemit.com/@sherlockcupid", + "https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one", + "https://steemit.com/@annesaya", + "https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers", + "https://steemit.com/@fitmama", + "https://steemit.com/life/@fitmama/why-do-i-bother", + "https://steemit.com/@ezzy", + "https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories", + "https://steemit.com/@kingarbinv", + "https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far", + "https://steemit.com/@soulsistashakti", + "https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist", + "https://steemit.com/@puffin", + "https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem", + "https://steemit.com/@cehuneke", + "https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease", + "https://steemit.com/@tanata", + "https://steemit.com/fashion/@tanata/little-black-dress-involving", + "https://steemit.com/@steemwriter", + "https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship", + "https://steemit.com/@michelle.gent", + "https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters", + "https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing", + "https://steemit.com/@runridefly", + "https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale", + "https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one", + "https://steemit.com/@lyubovbar", + "https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory", + "https://steemit.com/@victoriart", + "https://steemit.com/art/@victoriart/hazelnut-mood", + "https://steemit.com/@heroic15397", + "https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area", + "https://steemit.com/@smartercars", + "https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews", + "https://steemit.com/@rubenalexander", + "https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016", + "https://steemit.com/@matthew.raymer", + "https://steemit.com/psychology/@matthew.raymer/life-stories", + "https://steemit.com/@positivesteem", + "https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees", + "https://steemit.com/@d3nv3r", + "https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real", + "https://steemit.com/@adubi", + "https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet", + "https://steemit.com/@alitas", + "https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla", + "https://steemit.com/@mazi", + "https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis", + "https://steemit.com/@mikemacintire", + "https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work", + "https://steemit.com/@altzero", + "https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2", + "https://steemit.com/@birdie", + "https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos", + "https://steemit.com/@michaelstobiersk", + "https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski", + "https://steemit.com/@reddust", + "https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary", + "https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown", + "https://steemit.com/@karisa", + "https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4", + "https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband", + "https://steemit.com/@burnin", + "https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2", + "https://steemit.com/art/@reddust/eyes-of-wisdom", + "https://steemit.com/@levycore", + "https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces", + "https://steemit.com/@awesomenyl", + "https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial", + "https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today", + "https://steemit.com/@naquoya", + "https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster", + "https://steemit.com/@moon32walker", + "https://steemit.com/gaming/@moon32walker/top-10-game-development-studios", + "https://steemit.com/@gustavopasquini", + "https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry", + "https://steemit.com/@benadapt", + "https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge", + "https://steemit.com/spanish/@altzero/que-es-la-nueva-economia", + "https://steemit.com/@por500bolos", + "https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise", + "https://steemit.com/@zonpower", + "https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem", + "https://steemit.com/@katharsisdrill", + "https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation", + "https://steemit.com/@glezeddy", + "https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico", + "https://steemit.com/@onetree", + "https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare", + "https://steemit.com/@verbal-d", + "https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact", + "https://steemit.com/@wanderingagorist", + "https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating", + "https://steemit.com/@knablinz", + "https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee" + ], + "tags": [ + "curie", + "minnows", + "hidden-gems", + "steemit", + "project-curie" + ], + "users": [ + "nextgencrypto", + "curie" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 61028272797290, + "payout": 218.554, + "payout_at": "2016-09-16T18:14:08", + "pending_payout_value": "218.554 HBD", + "percent_hbd": 10000, + "permlink": "the-daily-curie-14th-sept-15th-sept-2016", + "post_id": 960067, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 182 + }, + "title": "The Daily Curie (14th Sept - 15th Sept 2016)", + "updated": "2016-09-15T17:53:48", + "url": "/curie/@curie/the-daily-curie-14th-sept-15th-sept-2016" + }, + { + "active_votes": [ + { + "rshares": "231809639013", + "voter": "anonymous" + }, + { + "rshares": "40859141206977", + "voter": "blocktrades" + }, + { + "rshares": "1912118346075", + "voter": "badassmother" + }, + { + "rshares": "7113882084470", + "voter": "xeldal" + }, + { + "rshares": "5763993012820", + "voter": "enki" + }, + { + "rshares": "1304415071462", + "voter": "rossco99" + }, + { + "rshares": "1577462576089", + "voter": "joseph" + }, + { + "rshares": "651993277150", + "voter": "masteryoda" + }, + { + "rshares": "446958795092", + "voter": "boatymcboatface" + }, + { + "rshares": "9168101098", + "voter": "idol" + }, + { + "rshares": "23383993964", + "voter": "wpalczynski" + }, + { + "rshares": "5044693986", + "voter": "sakr" + }, + { + "rshares": "1578030666", + "voter": "jocelyn" + }, + { + "rshares": "14818192446", + "voter": "gregory-f" + }, + { + "rshares": "74914583876", + "voter": "eeks" + }, + { + "rshares": "1007941175", + "voter": "fkn" + }, + { + "rshares": "8867224532", + "voter": "james-show" + }, + { + "rshares": "1324875721", + "voter": "elishagh1" + }, + { + "rshares": "7802860274", + "voter": "richman" + }, + { + "rshares": "24193131603", + "voter": "acidyo" + }, + { + "rshares": "313691550", + "voter": "coar" + }, + { + "rshares": "1061234978", + "voter": "murh" + }, + { + "rshares": "2057413439", + "voter": "error" + }, + { + "rshares": "59950022330", + "voter": "theshell" + }, + { + "rshares": "400880323222", + "voter": "taoteh1221" + }, + { + "rshares": "410517349", + "voter": "applecrisp" + }, + { + "rshares": "280737930617", + "voter": "trogdor" + }, + { + "rshares": "5287820211", + "voter": "tee-em" + }, + { + "rshares": "121383360964", + "voter": "geoffrey" + }, + { + "rshares": "10684548905", + "voter": "kimziv" + }, + { + "rshares": "30279968088", + "voter": "acassity" + }, + { + "rshares": "45145254362", + "voter": "venuspcs" + }, + { + "rshares": "7264907621", + "voter": "getssidetracked" + }, + { + "rshares": "1414199127", + "voter": "trees" + }, + { + "rshares": "197179742", + "voter": "strawhat" + }, + { + "rshares": "1159208963", + "voter": "steemswede" + }, + { + "rshares": "691425107", + "voter": "cryptochannel" + }, + { + "rshares": "894044199", + "voter": "endgame" + }, + { + "rshares": "4920266872", + "voter": "furion" + }, + { + "rshares": "2834923420", + "voter": "steem1653" + }, + { + "rshares": "25221166135", + "voter": "steemit-life" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "80777327", + "voter": "snowden" + }, + { + "rshares": "14167503457", + "voter": "aaseb" + }, + { + "rshares": "4209522316", + "voter": "karen13" + }, + { + "rshares": "243749878708", + "voter": "nabilov" + }, + { + "rshares": "677892916", + "voter": "luisucv34" + }, + { + "rshares": "34761252099", + "voter": "creemej" + }, + { + "rshares": "233065746", + "voter": "poseidon" + }, + { + "rshares": "82781233416", + "voter": "thylbom" + }, + { + "rshares": "32543319555", + "voter": "deanliu" + }, + { + "rshares": "5428442637", + "voter": "rainchen" + }, + { + "rshares": "204617448258", + "voter": "jl777" + }, + { + "rshares": "103514864", + "voter": "pokemon" + }, + { + "rshares": "817413671", + "voter": "positive" + }, + { + "rshares": "6361356981", + "voter": "chloetaylor" + }, + { + "rshares": "17267278949", + "voter": "proto" + }, + { + "rshares": "1805641835", + "voter": "sisterholics" + }, + { + "rshares": "61286903", + "voter": "reported" + }, + { + "rshares": "8734133724", + "voter": "taker" + }, + { + "rshares": "57607550", + "voter": "krushing" + }, + { + "rshares": "63852353198", + "voter": "laonie" + }, + { + "rshares": "24561889230", + "voter": "laoyao" + }, + { + "rshares": "1332427399", + "voter": "myfirst" + }, + { + "rshares": "12961212091", + "voter": "somebody" + }, + { + "rshares": "484610059", + "voter": "flysaga" + }, + { + "rshares": "2084691327", + "voter": "gmurph" + }, + { + "rshares": "513517114", + "voter": "minnowsunited" + }, + { + "rshares": "2863236010", + "voter": "midnightoil" + }, + { + "rshares": "56653113", + "voter": "whatyouganjado" + }, + { + "rshares": "3323984357", + "voter": "kurtbeil" + }, + { + "rshares": "7161280807", + "voter": "xiaohui" + }, + { + "rshares": "323406893", + "voter": "elfkitchen" + }, + { + "rshares": "5855543935", + "voter": "oflyhigh" + }, + { + "rshares": "63373184", + "voter": "makaveli" + }, + { + "rshares": "223891286", + "voter": "xiaokongcom" + }, + { + "rshares": "1780319109", + "voter": "future24" + }, + { + "rshares": "7709317035", + "voter": "thebotkiller" + }, + { + "rshares": "451324143", + "voter": "xianjun" + }, + { + "rshares": "647921440", + "voter": "herbertmueller" + }, + { + "rshares": "56109399", + "voter": "alexbones" + }, + { + "rshares": "2022625104", + "voter": "chinadaily" + }, + { + "rshares": "90172824082", + "voter": "serejandmyself" + }, + { + "rshares": "163783062", + "voter": "nang1" + }, + { + "rshares": "2982676167", + "voter": "netaterra" + }, + { + "rshares": "52319145", + "voter": "dobbydaba" + }, + { + "rshares": "22559404087", + "voter": "andrewawerdna" + }, + { + "rshares": "77466140", + "voter": "ozertayiz" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "55922029", + "voter": "salebored" + }, + { + "rshares": "2196862373", + "voter": "runridefly" + }, + { + "rshares": "115288806334", + "voter": "shenanigator" + }, + { + "rshares": "1709331623", + "voter": "funkywanderer" + }, + { + "rshares": "4594182561", + "voter": "richardcrill" + }, + { + "rshares": "79155262951", + "voter": "markrmorrisjr" + }, + { + "rshares": "55917888", + "voter": "bitdrone" + }, + { + "rshares": "55908853", + "voter": "sleepcult" + }, + { + "rshares": "27677639861", + "voter": "sponge-bob" + }, + { + "rshares": "12031039232", + "voter": "doitvoluntarily" + }, + { + "rshares": "67696453939", + "voter": "thecyclist" + }, + { + "rshares": "646493719", + "voter": "kev7000" + }, + { + "rshares": "55266473", + "voter": "analyzethis" + }, + { + "rshares": "27671309914", + "voter": "brains" + }, + { + "rshares": "5866415576", + "voter": "burnin" + }, + { + "rshares": "1352324852", + "voter": "bitcoinparadise" + }, + { + "rshares": "4235074146", + "voter": "funnyman" + }, + { + "rshares": "50193769", + "voter": "f1111111" + }, + { + "rshares": "339287005", + "voter": "anomaly" + }, + { + "rshares": "63405661", + "voter": "inarix03" + }, + { + "rshares": "98545946", + "voter": "ola1" + }, + { + "rshares": "4382226038", + "voter": "michelle.gent" + }, + { + "rshares": "66935282", + "voter": "mari5555na" + }, + { + "rshares": "31683945302", + "voter": "goldmatters" + }, + { + "rshares": "155180811", + "voter": "majes" + }, + { + "rshares": "71727340", + "voter": "dealzgal" + }, + { + "rshares": "68013381", + "voter": "storage" + }, + { + "rshares": "58460105", + "voter": "blackmarket" + }, + { + "rshares": "61530871", + "voter": "gifts" + }, + { + "rshares": "96643251", + "voter": "expat" + }, + { + "rshares": "129609202", + "voter": "toddemaher1" + } + ], + "author": "markrmorrisjr", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "## In this episode, Joshua Claiborne stands trial for violation of the First Law ##\n\n**\u201cWhoa, whoa, whoa!\u201d Phil screamed, \u201cWhat the hell dude?\u201d**\n\n*The Reaper crumpled to the floor, arms flailing as Joshua rode it to the ground. Finally, the hands found the catches at either side of the helmet and popped it off. A black, shaggy head of hair emerged.* \n\n***If you've missed episodes, [visit my blog](https://steemit.com/@markrmorrisjr) to catch up. Be sure to follow me for updates in your feed!***\n\n\u201cEmil?\u201d Stella said, \u201cMeet Joshua. Are you okay?\u201d\n\nEmil, the Reaper suit\u2019s operator laughed, \u201cYeah, I\u2019m fine, but that was awesome! Can you teach us that?\u201d\n\n\u201cMan! Now I have to rebuild this helmet,\u201d Phil held up a small remote. \u201cAll I had to do was push this button,\u201d he said, pressing it, as the suit powered down. \u201cWhat did you do?\u201d\n\n\u201cThe \u2018nerve\u2019 bundle that controls these things motor skills is on the very top of the skull, under a thin piece of sheet metal, puncture it, it collapses. You didn\u2019t know that?\u201d Joshua said. \n\n\u201cWell, it appears we may need you more than you need us,\u201d Stella said. \u201cSo, just say the word and we\u2019ll get you where you need to be. Meanwhile, my team will be working on your son\u2019s location.\u201d\n\nJoshua dropped the letter opener and walked to the stairs, \u201cFine, whatever you need to collect from my meeting, get it. Now, who\u2019s driving?\u201d With that, he walked up the stairs, he had no more time to waste. \n\n**The Mapleton courthouse sat on a hill in the center of the town, overlooking the area around for miles.** \n\n*Joshua insisted that the team Stella had sent stop 5 miles out and allow him to ride in on the electric trike alone, while they observed the meeting from a distance.* \n\nHe carried the tiny remote in his shirt pocket, a gift from Phil. \u201cThat\u2019s my only prototype, so don\u2019t lose it,\u201d he\u2019d said. \n\n![enter image description here](https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg)\n\nFrom the end of Main Street, looking up toward the courthouse, Joshua counted at least six reapers. He wondered how far the signal from the remote would travel. \n\nHe thought about pressing it now, disarming his enemy, then walking in, but he\u2019d still have to deal with the six drivers, if they managed to escape the suits. \n\nBesides, Stella seemed to think there was some secret they were going to give away, although Joshua couldn\u2019t imagine it. \n\n*He checked his watch, ten minutes until his scheduled time and while he knew better than to be late, he had no intention of giving the Consensus one more second than he had to.* \n\nThe trike spun it\u2019s tires on a patch of loose gravel as he started back up. He decided a quick approach was best. He charged up the hill, jumping the \u201cMayor\u2019s\u201d parking barrier and rolling up to the foot of the front stairs, he cranked the accelerator and the trike rose up on its back wheel, popping the two front wheels, over the bottom step. \n\nThe machine had more than enough power to climb the steps and Joshua skidded to a stop outside the courthouse door. He stopped and turned back toward the town, the six Reapers swarming toward him up the steps. He powered down, swung his leg up and over the bike and opened the door. \n\n**The Reapers followed him into the hall as he approached the court room.** \n\nThe Magistrate sat behind the judge\u2019s bench and Joshua couldn\u2019t help but smirk at the insult to the very concept of actual justice that this thing represented. \n\n\u201cJoshua Claiborne, appearing as requested,\u201d Joshua said, standing directly in front of the Magistrate. \n\n![enter image description here](https://s12.postimg.org/6h4lvyh7x/judge.jpg)\n\n> \u201cYes, Mr. Claiborne, have a seat,\u201d A woman\u2019s face, projected on the face shield of the Magistrate said.\n\n\u201cI\u2019d rather stand,\u201d he said. \n\n> \u201cSuit yourself, may we have the room, please?\u201d she said, looking toward the reapers that had entered the back doors of the courtroom.\n\nThey left quietly. \n\n> \u201cMr. Claiborne, you\u2019re charged with violation of the first law, in so\n> much as you have encouraged and joined in the activity of settling\n> outside of Consensus approved areas, acted outside of the legal\n> jurisdiction of the council and on more than one occasion, acted\n> against the best interest of Consensus, including attacking duly\n> authorized Magistrates in the course of their legally binding duties,\n> how do you plead?\u201d\n\n**The woman looked at Joshua, peering over a pair of short, square spectacles, like some sort of outdated stereotype.** \n\n\u201cNot guilty, by reason of illegitimacy of the currently established government and its ensigns. I am not, nor do I choose to become, subject to your law. I stand judged as innocent by natural law, insomuch as I have not caused harm to another human in aggression, damaged or stolen property, nor unnecessarily restricted the liberty of any other person. I recognize no other responsibility to my fellow man,\u201d Joshua said calmly. \n\n> \u201cBe that as it may, Mr. Claiborne, we are not here under the auspices of \u201cnatural law\u201d but rather, under the Council mandated authority of the Consensus and its Magisterial Ministry, of which I am a part and I assure you, you are subject to,\u201d\n\nThe woman intoned, her expression one of almost sheer boredom.\n\n> \u201cCourt finds the defendant guilty and remands the subject for immediate judicial murder.\u201d\n\nThe magistrate raised its arm and brought it down on the bench with a solid thud, that echoed through the court. Joshua felt his heart sink as the Reapers reentered the court and moved up to surround him. \n\n## Look for the upvote button below. If you liked the post, upvote and share! If you're not on Steemit yet, why not? You get free money for signing up! ##", + "category": "story", + "children": 2, + "created": "2016-09-15T16:54:06", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg", + "https://s12.postimg.org/6h4lvyh7x/judge.jpg" + ], + "links": [ + "https://steemit.com/@markrmorrisjr" + ], + "tags": [ + "story", + "fiction", + "anarchy", + "life", + "minnowsunited" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62355283653318, + "payout": 227.863, + "payout_at": "2016-09-16T18:15:42", + "pending_payout_value": "227.863 HBD", + "percent_hbd": 10000, + "permlink": "original-fiction-anarchist-s-almanac-episode-15", + "post_id": 959506, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 120 + }, + "title": "Original Fiction: Anarchist's Almanac, Episode 15", + "updated": "2016-09-15T16:54:06", + "url": "/story/@markrmorrisjr/original-fiction-anarchist-s-almanac-episode-15" + }, + { + "active_votes": [ + { + "rshares": "504201493814", + "voter": "barrie" + }, + { + "rshares": "31621044834059", + "voter": "smooth" + }, + { + "rshares": "231803784363", + "voter": "anonymous" + }, + { + "rshares": "1992555050222", + "voter": "apple" + }, + { + "rshares": "1912040731624", + "voter": "badassmother" + }, + { + "rshares": "2053103615195", + "voter": "hr1" + }, + { + "rshares": "1304415071462", + "voter": "rossco99" + }, + { + "rshares": "2352777844031", + "voter": "wang" + }, + { + "rshares": "22390337604", + "voter": "jaewoocho" + }, + { + "rshares": "1576668025571", + "voter": "joseph" + }, + { + "rshares": "466113536214", + "voter": "recursive2" + }, + { + "rshares": "452820496964", + "voter": "recursive3" + }, + { + "rshares": "651951614915", + "voter": "masteryoda" + }, + { + "rshares": "3120381242465", + "voter": "recursive" + }, + { + "rshares": "91328598326", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6959198181", + "voter": "bingo-0" + }, + { + "rshares": "5939784887153", + "voter": "smooth.witness" + }, + { + "rshares": "446272257734", + "voter": "boatymcboatface" + }, + { + "rshares": "9167804100", + "voter": "idol" + }, + { + "rshares": "22448634206", + "voter": "wpalczynski" + }, + { + "rshares": "816380174873", + "voter": "steemrollin" + }, + { + "rshares": "5147541712", + "voter": "sakr" + }, + { + "rshares": "284355351943", + "voter": "chitty" + }, + { + "rshares": "34575031962", + "voter": "unosuke" + }, + { + "rshares": "481762857054", + "voter": "noaommerrr" + }, + { + "rshares": "1578007819", + "voter": "jocelyn" + }, + { + "rshares": "85270098112", + "voter": "acidsun" + }, + { + "rshares": "14692173218", + "voter": "gregory-f" + }, + { + "rshares": "9604795718", + "voter": "gregory60" + }, + { + "rshares": "18382400031", + "voter": "jademont" + }, + { + "rshares": "1294872282183", + "voter": "gavvet" + }, + { + "rshares": "89897365397", + "voter": "eeks" + }, + { + "rshares": "1511911763", + "voter": "fkn" + }, + { + "rshares": "122160437", + "voter": "paco-steem" + }, + { + "rshares": "1471653540", + "voter": "spaninv" + }, + { + "rshares": "1987313581", + "voter": "elishagh1" + }, + { + "rshares": "8669811688", + "voter": "richman" + }, + { + "rshares": "584222819564", + "voter": "nanzo-scoop" + }, + { + "rshares": "28116199940", + "voter": "acidyo" + }, + { + "rshares": "9857648383", + "voter": "kefkius" + }, + { + "rshares": "177403714671", + "voter": "mummyimperfect" + }, + { + "rshares": "313689446", + "voter": "coar" + }, + { + "rshares": "106631248984", + "voter": "asch" + }, + { + "rshares": "1061230469", + "voter": "murh" + }, + { + "rshares": "936957207", + "voter": "slickwilly" + }, + { + "rshares": "3187804154", + "voter": "cryptofunk" + }, + { + "rshares": "579494558", + "voter": "kodi" + }, + { + "rshares": "2057367746", + "voter": "error" + }, + { + "rshares": "11847990151", + "voter": "andu" + }, + { + "rshares": "962069747008", + "voter": "cyber" + }, + { + "rshares": "61712174604", + "voter": "theshell" + }, + { + "rshares": "49577333486", + "voter": "ak2020" + }, + { + "rshares": "24894446745", + "voter": "paul-labossiere" + }, + { + "rshares": "400880323222", + "voter": "taoteh1221" + }, + { + "rshares": "95314034", + "voter": "stiletto" + }, + { + "rshares": "56688940478", + "voter": "juanmiguelsalas" + }, + { + "rshares": "33781859925", + "voter": "ratel" + }, + { + "rshares": "15787327103", + "voter": "zakharya" + }, + { + "rshares": "280717515045", + "voter": "trogdor" + }, + { + "rshares": "5287383826", + "voter": "tee-em" + }, + { + "rshares": "121383360964", + "voter": "geoffrey" + }, + { + "rshares": "42737137488", + "voter": "kimziv" + }, + { + "rshares": "74286777275", + "voter": "emily-cook" + }, + { + "rshares": "2187597574", + "voter": "superfreek" + }, + { + "rshares": "49806164408", + "voter": "isteemit" + }, + { + "rshares": "4091429870", + "voter": "spikykevin" + }, + { + "rshares": "52090524796", + "voter": "venuspcs" + }, + { + "rshares": "3989473346", + "voter": "michaellamden68" + }, + { + "rshares": "19974764064", + "voter": "thebatchman" + }, + { + "rshares": "158997516614", + "voter": "asmolokalo" + }, + { + "rshares": "8603166550", + "voter": "getssidetracked" + }, + { + "rshares": "5165418905", + "voter": "riscadox" + }, + { + "rshares": "17538291453", + "voter": "konstantin" + }, + { + "rshares": "261755903", + "voter": "mstang83" + }, + { + "rshares": "39099397056", + "voter": "hitmeasap" + }, + { + "rshares": "252977703", + "voter": "nexus1" + }, + { + "rshares": "1515818756", + "voter": "burmik123" + }, + { + "rshares": "280713275", + "voter": "ksenia" + }, + { + "rshares": "1649898982", + "voter": "trees" + }, + { + "rshares": "231686197", + "voter": "strawhat" + }, + { + "rshares": "219133173153", + "voter": "domino" + }, + { + "rshares": "251687687", + "voter": "playtime" + }, + { + "rshares": "404548352", + "voter": "whitepeach" + }, + { + "rshares": "7380400309", + "voter": "furion" + }, + { + "rshares": "6462652657", + "voter": "owdy" + }, + { + "rshares": "1256448483", + "voter": "dicov" + }, + { + "rshares": "2936170685", + "voter": "steem1653" + }, + { + "rshares": "136318424", + "voter": "cynetyc" + }, + { + "rshares": "18770538147", + "voter": "sebastien" + }, + { + "rshares": "13787216422", + "voter": "sitaru" + }, + { + "rshares": "80777327", + "voter": "snowden" + }, + { + "rshares": "14167053756", + "voter": "aaseb" + }, + { + "rshares": "4209522316", + "voter": "karen13" + }, + { + "rshares": "10646413479", + "voter": "deviedev" + }, + { + "rshares": "266599021635", + "voter": "nabilov" + }, + { + "rshares": "2286950597", + "voter": "dmacshady" + }, + { + "rshares": "726313838", + "voter": "luisucv34" + }, + { + "rshares": "8811980236", + "voter": "herverisson" + }, + { + "rshares": "53424827264", + "voter": "streetstyle" + }, + { + "rshares": "46856213520", + "voter": "milestone" + }, + { + "rshares": "3801182358", + "voter": "maximkichev" + }, + { + "rshares": "15070465231", + "voter": "nippel66" + }, + { + "rshares": "167302364294", + "voter": "blueorgy" + }, + { + "rshares": "12849414672", + "voter": "benjiberigan" + }, + { + "rshares": "932248554", + "voter": "poseidon" + }, + { + "rshares": "19717588129", + "voter": "mustafaomar" + }, + { + "rshares": "3506039536", + "voter": "simon.braki.love" + }, + { + "rshares": "82781233416", + "voter": "thylbom" + }, + { + "rshares": "32542976852", + "voter": "deanliu" + }, + { + "rshares": "5609548617", + "voter": "sharker" + }, + { + "rshares": "541016983", + "voter": "qonq99" + }, + { + "rshares": "204615752038", + "voter": "jl777" + }, + { + "rshares": "119983138", + "voter": "pokemon" + }, + { + "rshares": "1226120506", + "voter": "positive" + }, + { + "rshares": "6939662161", + "voter": "chloetaylor" + }, + { + "rshares": "43638419601", + "voter": "claudiop63" + }, + { + "rshares": "17267164725", + "voter": "proto" + }, + { + "rshares": "7222403812", + "voter": "sisterholics" + }, + { + "rshares": "1444237397", + "voter": "alex.chien" + }, + { + "rshares": "8781903824", + "voter": "royalmacro" + }, + { + "rshares": "1838367968", + "voter": "remlaps" + }, + { + "rshares": "149624601", + "voter": "steemster1" + }, + { + "rshares": "3353872300", + "voter": "glitterpig" + }, + { + "rshares": "8734116589", + "voter": "taker" + }, + { + "rshares": "59219358", + "voter": "sharon" + }, + { + "rshares": "4999720649", + "voter": "dumar022" + }, + { + "rshares": "2077201153", + "voter": "merej99" + }, + { + "rshares": "60342922", + "voter": "lillianjones" + }, + { + "rshares": "255401498427", + "voter": "laonie" + }, + { + "rshares": "24561432292", + "voter": "laoyao" + }, + { + "rshares": "7994421908", + "voter": "myfirst" + }, + { + "rshares": "51843535316", + "voter": "somebody" + }, + { + "rshares": "1938401760", + "voter": "flysaga" + }, + { + "rshares": "2501627790", + "voter": "gmurph" + }, + { + "rshares": "1691577797", + "voter": "chris.roy" + }, + { + "rshares": "1693568633", + "voter": "stormblaze" + }, + { + "rshares": "11452681912", + "voter": "midnightoil" + }, + { + "rshares": "2327843962", + "voter": "kalimor" + }, + { + "rshares": "84246848", + "voter": "coderg" + }, + { + "rshares": "4190252928", + "voter": "ullikume" + }, + { + "rshares": "3323749960", + "voter": "kurtbeil" + }, + { + "rshares": "28644139641", + "voter": "xiaohui" + }, + { + "rshares": "1349109906", + "voter": "dolov" + }, + { + "rshares": "1293603524", + "voter": "elfkitchen" + }, + { + "rshares": "103394476995", + "voter": "joele" + }, + { + "rshares": "5855492830", + "voter": "oflyhigh" + }, + { + "rshares": "895550716", + "voter": "xiaokongcom" + }, + { + "rshares": "2118152083", + "voter": "natalymaty" + }, + { + "rshares": "60819615", + "voter": "msjennifer" + }, + { + "rshares": "55925537", + "voter": "ciao" + }, + { + "rshares": "1156101266", + "voter": "darthnava" + }, + { + "rshares": "3670417888", + "voter": "villainblack" + }, + { + "rshares": "8410164039", + "voter": "thebotkiller" + }, + { + "rshares": "3033050865", + "voter": "jrcornel" + }, + { + "rshares": "54217761", + "voter": "steemo" + }, + { + "rshares": "1805262907", + "voter": "xianjun" + }, + { + "rshares": "26819912795", + "voter": "hanshotfirst" + }, + { + "rshares": "54077897", + "voter": "steema" + }, + { + "rshares": "71282219", + "voter": "confucius" + }, + { + "rshares": "93801736989", + "voter": "miacats" + }, + { + "rshares": "2249572206", + "voter": "njall" + }, + { + "rshares": "54909929", + "voter": "jarvis" + }, + { + "rshares": "118219525", + "voter": "microluck" + }, + { + "rshares": "54313084", + "voter": "fortuner" + }, + { + "rshares": "2077267800", + "voter": "chinadaily" + }, + { + "rshares": "4879530405", + "voter": "almerri" + }, + { + "rshares": "9253395112", + "voter": "johnnyyash" + }, + { + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "rshares": "4751552849", + "voter": "themanualbot" + }, + { + "rshares": "136485885", + "voter": "nang1" + }, + { + "rshares": "13839238841", + "voter": "telos" + }, + { + "rshares": "51877132", + "voter": "johnbyrd" + }, + { + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "rshares": "51859074", + "voter": "thermor" + }, + { + "rshares": "51870077", + "voter": "ficholl" + }, + { + "rshares": "53030738", + "voter": "widell" + }, + { + "rshares": "51481279", + "voter": "revelbrooks" + }, + { + "rshares": "406983674", + "voter": "mig641" + }, + { + "rshares": "169608367", + "voter": "kamil5" + }, + { + "rshares": "59295031", + "voter": "dobbydaba" + }, + { + "rshares": "24294717617", + "voter": "andrewawerdna" + }, + { + "rshares": "55367485477", + "voter": "mandibil" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "51562255", + "voter": "curpose" + }, + { + "rshares": "76072115", + "voter": "steembriefing" + }, + { + "rshares": "55750195", + "voter": "riv" + }, + { + "rshares": "2196862373", + "voter": "runridefly" + }, + { + "rshares": "1783607101", + "voter": "funkywanderer" + }, + { + "rshares": "2249900457", + "voter": "jeremyfromwi" + }, + { + "rshares": "2056057288", + "voter": "eight-rad" + }, + { + "rshares": "51712804", + "voter": "troich" + }, + { + "rshares": "9458733324", + "voter": "aggroed" + }, + { + "rshares": "51718188", + "voter": "crion" + }, + { + "rshares": "182060433", + "voter": "greatness" + }, + { + "rshares": "51388276", + "voter": "hitherise" + }, + { + "rshares": "51379706", + "voter": "wiss" + }, + { + "rshares": "54247555535", + "voter": "sponge-bob" + }, + { + "rshares": "52143228", + "voter": "stroully" + }, + { + "rshares": "88628906", + "voter": "ruscion" + }, + { + "rshares": "1086106040", + "voter": "tatianka" + }, + { + "rshares": "54175638", + "voter": "apparat" + }, + { + "rshares": "51814474", + "voter": "thadm" + }, + { + "rshares": "51812703", + "voter": "prof" + }, + { + "rshares": "157957231026", + "voter": "thecyclist" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "50370757", + "voter": "yorsens" + }, + { + "rshares": "201688406600", + "voter": "asksisk" + }, + { + "rshares": "50065875", + "voter": "bane" + }, + { + "rshares": "50059754", + "voter": "vive" + }, + { + "rshares": "51142585", + "voter": "coad" + }, + { + "rshares": "51922012", + "voter": "sofa" + }, + { + "rshares": "323483227", + "voter": "panther" + }, + { + "rshares": "60610693", + "voter": "plantbasedjunkie" + }, + { + "rshares": "55341943517", + "voter": "brains" + }, + { + "rshares": "517900727", + "voter": "mohamedmashaal" + }, + { + "rshares": "20617809185", + "voter": "skypilot" + }, + { + "rshares": "50933404", + "voter": "ailo" + }, + { + "rshares": "5753290068", + "voter": "chick1" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "51568971", + "voter": "typingagent" + }, + { + "rshares": "51581492", + "voter": "cwb" + }, + { + "rshares": "339274981", + "voter": "anomaly" + }, + { + "rshares": "147786454", + "voter": "ola1" + }, + { + "rshares": "50441122", + "voter": "eavy" + }, + { + "rshares": "50454901", + "voter": "roto" + }, + { + "rshares": "71955428", + "voter": "mari5555na" + }, + { + "rshares": "157644916", + "voter": "iggy" + }, + { + "rshares": "51232949", + "voter": "dragonice" + }, + { + "rshares": "50907857", + "voter": "oxygen" + }, + { + "rshares": "50871059", + "voter": "motion" + }, + { + "rshares": "50796122", + "voter": "factom" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "50565798", + "voter": "penthouse" + }, + { + "rshares": "50538694", + "voter": "fenix" + }, + { + "rshares": "2118281183", + "voter": "bapparabi" + }, + { + "rshares": "50487909", + "voter": "opticalillusions" + }, + { + "rshares": "50349676", + "voter": "albertheijn" + }, + { + "rshares": "90053391", + "voter": "remlaps1" + }, + { + "rshares": "239963421", + "voter": "darkminded153" + }, + { + "rshares": "527464783", + "voter": "grisha-danunaher" + }, + { + "rshares": "72826233", + "voter": "igtes" + }, + { + "rshares": "141679752", + "voter": "buffett" + }, + { + "rshares": "161815656", + "voter": "ranger" + }, + { + "rshares": "444435987", + "voter": "witchcraftblog" + }, + { + "rshares": "161693690", + "voter": "shadowproject" + }, + { + "rshares": "160975092", + "voter": "user45-87" + }, + { + "rshares": "157182398", + "voter": "planet" + }, + { + "rshares": "156043541", + "voter": "disneypixar" + }, + { + "rshares": "159143891", + "voter": "reef" + }, + { + "rshares": "158602900", + "voter": "steem-wallet" + }, + { + "rshares": "31683945302", + "voter": "goldmatters" + }, + { + "rshares": "68013381", + "voter": "storage" + }, + { + "rshares": "58460105", + "voter": "blackmarket" + }, + { + "rshares": "61530871", + "voter": "gifts" + }, + { + "rshares": "135637537", + "voter": "toddemaher1" + }, + { + "rshares": "153397644", + "voter": "milank" + }, + { + "rshares": "153325742", + "voter": "denise12" + } + ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Hello everyone. I did not write anything about World War II for a long time. So today I decided to tell you about the Tank Destroyers. About the machines, specialization of which was the destruction of tanks. In this article I will talk about the classic representatives of this class.\n>\u0412\u0441\u0456\u043c \u043f\u0440\u0438\u0432\u0456\u0442. \u0414\u0430\u0432\u043d\u0435\u043d\u044c\u043a\u043e \u044f \u043d\u0435 \u043f\u0438\u0441\u0430\u0432 \u043d\u0456\u0447\u043e\u0433\u043e \u043d\u0430 \u0442\u0435\u043c\u0443 \u0414\u0440\u0443\u0433\u043e\u0457 \u0421\u0432\u0456\u0442\u043e\u0432\u043e\u0457. \u0406 \u043e\u0441\u044c \u0441\u044c\u043e\u0433\u043e\u0434\u043d\u0456 \u044f \u0432\u0438\u0440\u0456\u0448\u0438\u0432 \u0440\u043e\u0437\u043f\u043e\u0432\u0456\u0441\u0442\u0438 \u0432\u0430\u043c \u043f\u0440\u043e \u041f\u0422-\u0421\u0410\u0423. \u041f\u0440\u043e \u043c\u0430\u0448\u0438\u043d\u0438, \u0441\u043f\u0435\u0446\u0456\u0430\u043b\u0456\u0437\u0430\u0446\u0456\u0454\u044e \u044f\u043a\u0438\u0445 \u0431\u0443\u043b\u043e \u0437\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0442\u0430\u043d\u043a\u0456\u0432. \u0423 \u0446\u0456\u0439 \u0447\u0430\u0441\u0442\u0438\u043d\u0456 \u044f \u0440\u043e\u0437\u043f\u043e\u0432\u0456\u043c \u043f\u0440\u043e \u043a\u043b\u0430\u0441\u0438\u0447\u043d\u0438\u0445 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043d\u0438\u043a\u0456\u0432 \u0441\u0432\u043e\u0433\u043e \u043a\u043b\u0430\u0441\u0443.\n\n# StuG III\nhttp://i.piccy.info/i9/3d367a52a1b8dc6c22f126332f335144/1473836215/88822/1063747/cqWCxy6vYP0.jpg\n\nLet's start with the most produced Tank Destroyer in the history. At the beginning of the WW II German command decided to create a mobile artillery on the basis of existing tanks, which would be able to support the infantry. The priority in new machine were the firepower, a good armor and cheapness. The firm Daimler-Benz successfully embodied these wishes into reality. There were about eight versions of StuG III, however, the main was Ausf. G. The cost of production of one StuG was quite low - 83 000 DM. Total was released 10500 machines. The basis for the creation was German tank PzKpfw III.\nInitially StuG III was equipped with a short-75mm gun, but when good armored Soviet T-34 came to the fronts, it was decided to replace short gun with a new long-barreled 75mm cannon Stuk 40 L / 48, which surely hit the Soviet tanks. StuG armor was quite good \u2013 50 mm in a front took a punch at a distance of 1 km. StuG III was very compact in a size and had good mobility. The main disadvantage was little size which allowed bad conditions for crew working. StuG III took active part in a war from the very beginning to its end. \nhttp://i.piccy.info/i9/5dc09cebc0ddfcd1fac4a8013ee385ad/1473836240/182233/1063747/5u9ghQyvkTc.jpg\n\n>\u041f\u043e\u0447\u043d\u0435\u043c\u043e \u0437 \u043d\u0430\u0439\u043c\u0430\u0441\u043e\u0432\u0456\u0448\u0457 \u041f\u0422-\u0421\u0410\u0423 \u0432 \u0456\u0441\u0442\u043e\u0440\u0456\u0457. \u041d\u0430 \u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0432\u0456\u0439\u043d\u0438 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u0438\u0440\u0456\u0448\u0438\u043b\u043e \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0443 \u0430\u0440\u0442\u0438\u043b\u0435\u0440\u0456\u044e \u043d\u0430 \u0431\u0430\u0437\u0456 \u0432\u0436\u0435 \u043d\u0430\u044f\u0432\u043d\u0438\u0445 \u0442\u0430\u043d\u043a\u0456\u0432, \u0437\u0434\u0430\u0442\u043d\u0443 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0430\u0442\u0438 \u043f\u0456\u0445\u043e\u0442\u0443. \u041f\u0440\u0456\u043e\u0440\u0438\u0442\u0435\u0442\u043d\u043e\u044e \u0431\u0443\u043b\u0430 \u0432\u043e\u0433\u043d\u0435\u0432\u0430 \u043c\u0456\u0446\u044c, \u0433\u0430\u0440\u043d\u0435 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f \u0456 \u0434\u0435\u0448\u0435\u0432\u0438\u0437\u043d\u0430. \u0424\u0456\u0440\u043c\u0430 Daimler-Benz \u0432\u0434\u0430\u043b\u043e \u0432\u0442\u0456\u043b\u0438\u043b\u0430 \u0446\u0456 \u043f\u043e\u0431\u0430\u0436\u0430\u043d\u043d\u044f \u0432 \u0440\u0435\u0430\u043b\u044c\u043d\u0456\u0441\u0442\u044c. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0431\u043b\u0438\u0437\u044c\u043a\u043e \u0432\u043e\u0441\u044c\u043c\u0438 \u043c\u043e\u0434\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u0439 StuG III, \u043f\u0440\u043e\u0442\u0435 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u044e \u0431\u0443\u043b\u0430 Ausf. G. \u0412\u0430\u0440\u0442\u0456\u0441\u0442\u044c \u043e\u0434\u043d\u0456\u0454\u0457 \u041f\u0422-\u0421\u0410\u0423 \u0431\u0443\u043b\u0430 \u0434\u043e\u0441\u0438\u0442\u044c \u043d\u0438\u0437\u044c\u043a\u043e\u044e - 83 000 \u043c\u0430\u0440\u043e\u043a. \u0421\u0443\u043c\u0430\u0440\u043d\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 10500 \u043c\u0430\u0448\u0438\u043d. \u0411\u0430\u0437\u043e\u044e \u0434\u043b\u044f \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f \u043f\u043e\u0441\u043b\u0443\u0436\u0438\u0432 \u0442\u0430\u043d\u043a PzKpfw III.\n\u0421\u043f\u043e\u0447\u0430\u0442\u043a\u0443 StuG III \u043e\u0441\u043d\u0430\u0449\u0443\u0432\u0430\u0432\u0441\u044f \u043a\u043e\u0440\u043e\u0442\u043a\u043e\u0441\u0442\u0432\u043e\u043b\u044c\u043d\u043e\u044e 75\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u043e\u044e, \u043e\u0434\u043d\u0430\u043a \u0437 \u043f\u043e\u044f\u0432\u043e\u044e \u043d\u0430 \u0444\u0440\u043e\u043d\u0442\u0430\u0445 \u0422-34 \u0431\u0443\u043b\u043e \u043f\u0440\u0438\u0439\u043d\u044f\u0442\u043e \u0440\u0456\u0448\u0435\u043d\u043d\u044f \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0457\u0457 \u043d\u0430 \u043d\u043e\u0432\u0443 \u0434\u043e\u0432\u0433\u043e\u0441\u0442\u0432\u043e\u043b\u044c\u043d\u0443 75\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u0443 Stuk 40 L / 48, \u044f\u043a\u0430 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u043e \u0432\u0440\u0430\u0436\u0430\u043b\u0430 \u0440\u0430\u0434\u044f\u043d\u0441\u044c\u043a\u0456 \u0442\u0430\u043d\u043a\u0438. \u0411\u0440\u043e\u043d\u044f \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 \u0443 \u043b\u043e\u0431\u0456 \u0431\u0443\u043b\u0430 50 \u043c\u043c \u0456 \u0442\u0440\u0438\u043c\u0430\u043b\u0430 \u0443\u0434\u0430\u0440 \u043d\u0430 \u0432\u0456\u0434\u0441\u0442\u0430\u043d\u0456 1 \u043a\u043c. StuG III \u0432\u0456\u0434\u0440\u0456\u0437\u043d\u044f\u0432\u0441\u044f \u043a\u043e\u043c\u043f\u0430\u043a\u0442\u043d\u0438\u043c\u0438 \u0440\u043e\u0437\u043c\u0456\u0440\u0430\u043c\u0438, \u0445\u043e\u0440\u043e\u0448\u043e\u044e \u043c\u0430\u043d\u0435\u0432\u0440\u0435\u043d\u0456\u0441\u0442\u044e \u0442\u0430 \u043d\u0435\u043f\u043e\u0433\u0430\u043d\u043e\u044e \u0448\u0432\u0438\u0434\u043a\u0456\u0441\u0442\u044e. \u0417 \u043d\u0435\u0434\u043e\u043b\u0456\u043a\u0456\u0432 \u0432\u0430\u0440\u0442\u043e \u0432\u0456\u0434\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u043d\u0435\u0437\u0440\u0443\u0447\u043d\u0456\u0441\u0442\u044c \u0440\u043e\u0431\u043e\u0442\u0438 \u0435\u043a\u0456\u043f\u0430\u0436\u0443 \u0447\u0435\u0440\u0435\u0437 \u043d\u0435\u0432\u0435\u043b\u0438\u043a\u0438\u0439 \u0437\u0430 \u0431\u0440\u043e\u043d\u044c\u043e\u0432\u0438\u0439 \u043f\u0440\u043e\u0441\u0442\u0456\u0440. \u041c\u0430\u0448\u0438\u043d\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0431\u0440\u0430\u043b\u0430 \u0443\u0447\u0430\u0441\u0442\u044c \u0437 \u0441\u0430\u043c\u043e\u0433\u043e \u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0432\u0456\u0439\u043d\u0438 \u0456 \u0434\u043e \u0457\u0457 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u044f.\n\n# Su-85 (100) \u0421\u0423-85 (100)\nhttp://i.piccy.info/i9/b5ef17359d201f4a7a61b38b5e6ca72f/1473836271/164656/1063747/kKktJUlUuXk.jpg\n\nTowards in 1943 it became clear for the Soviet command that to deal effectively with new German tanks Soviet army required new, more modern machines and Tank Destroyers. It was decided to create new Tank Destroyer based on the T-34, driving performance and armor of which were very good. Development of a new machine was conducted at Uralmash factory.\nSu-85 had a new long-barreled 85mm gun, similar to that which will soon be installed at T-34-85. This gun was able to destroy enemy medium tanks at the distance of over a kilometer, and heavy tanks \u2013 at 800 meters to a front plate. The gun was placed in the middle part of the Tanks Destroyer body and had angles of + - 8 degrees. Also the inside size of tanks was nice which allowed good conditions for crew working. Driving characteristics inherited from the T-34-85. Armor (45 mm at the front with big armor slope) provided good protection against German medium tanks. A little later, with the release of the T-34-85, SU-85 was converted under the new 100mm gun. It was a tool for successfully destroying any enemy tanks, including Tiger 2. Also Su-100 had a very low silhouette, which contributed to an excellent disguise. Observation and aiming devices have been improved. SU-100 was easy to maintain. This Tank Destroyer applied to the end of the WW II. Total were released 4976 SU-100 and 2050 SU-85.\nhttp://i.piccy.info/i9/4dc33c464a97ab5b3b8b294778f28103/1473836298/33303/1063747/WVaI_c18Lyw.jpg\n\n>\u0411\u043b\u0438\u0436\u0447\u0435 \u0434\u043e 1943 \u0440\u043e\u043a\u0443 \u0440\u0430\u0434\u044f\u043d\u0441\u044c\u043a\u043e\u043c\u0443 \u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u043d\u043d\u044e \u0441\u0442\u0430\u043b\u043e \u0437\u0440\u043e\u0437\u0443\u043c\u0456\u043b\u043e, \u0449\u043e \u0434\u043b\u044f \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0457 \u0431\u043e\u0440\u043e\u0442\u044c\u0431\u0438 \u0437 \u043d\u043e\u0432\u0438\u043c\u0438 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0438\u043c\u0438 \u0442\u0430\u043d\u043a\u0430\u043c\u0438 \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u0456 \u0431\u0456\u043b\u044c\u0448 \u0441\u0443\u0447\u0430\u0441\u043d\u0456 \u043c\u0430\u0448\u0438\u043d\u0438. \u0411\u0443\u043b\u043e \u0432\u0438\u0440\u0456\u0448\u0435\u043d\u043e \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0443 \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043d\u0443 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443 \u043d\u0430 \u0431\u0430\u0437\u0456 \u0442\u0430\u043d\u043a\u0430 \u0422-34, \u0445\u043e\u0434\u043e\u0432\u0456 \u044f\u043a\u043e\u0441\u0442\u0456 \u0456 \u0431\u0440\u043e\u043d\u044f \u044f\u043a\u043e\u0433\u043e \u0431\u0443\u043b\u0438 \u0434\u0443\u0436\u0435 \u0445\u043e\u0440\u043e\u0448\u0456. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u043d\u043e\u0432\u043e\u0457 \u041f\u0422-\u0421\u0410\u0423 \u0432\u0435\u043b\u0430\u0441\u044f \u043d\u0430 \u0423\u0440\u0430\u043b\u043c\u0430\u0448\u0437\u0430\u0432\u043e\u0434\u0456.\n\u0421\u0423-85 \u043c\u0430\u043b\u0430 \u043d\u043e\u0432\u0443 85\u043c\u043c \u043d\u0430\u0440\u0456\u0437\u043d\u0443 \u0433\u0430\u0440\u043c\u0430\u0442\u0443, \u0430\u043d\u0430\u043b\u043e\u0433\u0456\u0447\u043d\u0443 \u0437 \u0442\u043e\u044e, \u044f\u043a\u0430 \u043d\u0435\u0437\u0430\u0431\u0430\u0440\u043e\u043c \u0431\u0443\u0434\u0435 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u043d\u0430 \u0442 34-85. \u0412\u043e\u043d\u0430 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u043b\u043e \u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u043b\u0435\u043c \u0432\u0440\u0430\u0436\u0430\u0442\u0438 \u0441\u0435\u0440\u0435\u0434\u043d\u0456 \u0442\u0430\u043d\u043a\u0438 \u0441\u0443\u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430 \u043d\u0430 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0456\u0457 \u0431\u0456\u043b\u044c\u0448\u0435 \u043a\u0456\u043b\u043e\u043c\u0435\u0442\u0440\u0430, \u0430 \u0432\u0430\u0436\u043a\u0456 - \u043d\u0430 800 \u043c\u0435\u0442\u0440\u0430\u0445. \u0413\u0430\u0440\u043c\u0430\u0442\u0430 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u044e\u0432\u0430\u043b\u0430\u0441\u044f \u043f\u0440\u044f\u043c\u043e \u0432 \u043a\u043e\u0440\u043f\u0443\u0441 \u0456 \u043c\u0430\u043b\u043e \u043a\u0443\u0442\u0438 \u043d\u0430\u0432\u0435\u0434\u0435\u043d\u043d\u044f \u0432 + - 8 \u0433\u0440\u0430\u0434\u0443\u0441\u0456\u0432. \u041a\u043e\u0440\u043f\u0443\u0441 \u0431\u0443\u0432 \u0432\u0456\u0434\u043d\u043e\u0441\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u043e\u0440\u0438\u0439 \u0456 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u0432 \u0437 \u043a\u043e\u043c\u0444\u043e\u0440\u0442\u043e\u043c \u043f\u0440\u0430\u0446\u044e\u0432\u0430\u0442\u0438 \u0435\u043a\u0456\u043f\u0430\u0436\u0443. \u0425\u043e\u0434\u043e\u0432\u0456 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u0421\u0423 \u0443\u0441\u043f\u0430\u0434\u043a\u0443\u0432\u0430\u043b\u0430 \u0432\u0456\u0434 \u0442-34. \u0411\u0440\u043e\u043d\u044f (45\u043c\u043c \u043f\u0456\u0434 \u043d\u0430\u0445\u0438\u043b\u043e\u043c) \u0437\u0430\u0431\u0435\u0437\u043f\u0435\u0447\u0443\u0432\u0430\u043b\u0430 \u0445\u043e\u0440\u043e\u0448\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u043e\u0441\u0442\u0440\u0456\u043b\u0456\u0432 \u0441\u0435\u0440\u0435\u0434\u043d\u0456\u0445 \u0442\u0430\u043d\u043a\u0456\u0432 \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430. \u0422\u0440\u043e\u0445\u0438 \u043f\u0456\u0437\u043d\u0456\u0448\u0435 \u0437 \u0432\u0438\u0445\u043e\u0434\u043e\u043c \u0442\u0430\u043d\u043a\u0430 \u0442 34-85 \u0421\u0443\u0448\u043a\u0438 \u0431\u0443\u043b\u0438 \u043f\u0435\u0440\u0435\u043e\u0431\u043b\u0430\u0434\u043d\u0430\u043d\u0456 \u043f\u0456\u0434 \u043d\u043e\u0432\u0443 100\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u0443. \u0426\u044f \u0433\u0430\u0440\u043c\u0430\u0442 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u043b\u0430 \u0443\u0441\u043f\u0456\u0448\u043d\u043e \u0431\u043e\u0440\u043e\u0442\u0438\u0441\u044f \u0437 \u0431\u0443\u0434\u044c-\u044f\u043a\u0438\u043c \u0442\u0430\u043d\u043a\u043e\u043c \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430, \u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0447\u0438 \u0456 \u0422\u0438\u0433\u0440 2. \u0422\u0430\u043a\u043e\u0436 \u0432\u0430\u0440\u0442\u043e \u0432\u0456\u0434\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u043d\u0438\u0437\u044c\u043a\u0438\u0439 \u0441\u0438\u043b\u0443\u0435\u0442 \u043c\u0430\u0448\u0438\u043d\u0438, \u044f\u043a\u0438\u0439 \u0441\u043f\u0440\u0438\u044f\u0432 \u0432\u0456\u0434\u043c\u0456\u043d\u043d\u043e\u043c\u0443 \u043c\u0430\u0441\u043a\u0443\u0432\u0430\u043d\u043d\u044e. \u0411\u0443\u043b\u0438 \u043f\u043e\u043b\u0456\u043f\u0448\u0435\u043d\u0456 \u043f\u0440\u0438\u043b\u0430\u0434\u0438 \u0441\u043f\u043e\u0441\u0442\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f \u0439 \u043f\u0440\u0438\u0446\u0456\u043b\u044e\u0432\u0430\u043d\u043d\u044f. \u0422\u0435\u0445\u043d\u0456\u043a\u0430 \u0431\u0443\u043b\u0430 \u043f\u0440\u043e\u0441\u0442\u0430 \u0432 \u043e\u0431\u0441\u043b\u0443\u0433\u043e\u0432\u0443\u0432\u0430\u043d\u043d\u0456. \u0426\u044f \u041f\u0422-\u0421\u0410\u0423 \u0437\u0430\u0441\u0442\u043e\u0441\u043e\u0432\u0443\u0432\u0430\u043b\u0430\u0441\u044f \u0434\u043e \u0441\u0430\u043c\u043e\u0433\u043e \u043a\u0456\u043d\u0446\u044f \u0432\u0456\u0439\u043d\u0438. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 4976 \u0421\u0423-100 \u0456 2050 \u0421\u0423-85.\n\n# Jagdpanther (\u042f\u0433\u0434\u043f\u0430\u043d\u0442\u0435\u0440\u0430)\nhttp://i.piccy.info/i9/201bcdc4469d546e806e4a38ba752ea7/1473836330/161907/1063747/_jvoDheMLik.jpg\n\nIn the middle of 1942 the German command decided to create a new Tank Destroyer with 88mm anti-tank gun Pak-43, using the basis of medium tank \u201cPanther\u201d. The development of this Tank Destroyer at first was carried by a Krupp company, then it was given to a Daimler-Benz and at last it was finished by a MIAG company. So, the destiny of Jagdpather was hard. The development has been complicated by the regular air raids allies, constant shortage of necessary parts and confusion in the serial versions of the machine. Jagdpanther took the most actively part in the Ardennes offensive and the Balaton operation.\nhttp://i.piccy.info/i9/d2e68a346dd9f511c77c83d8b77eaf87/1473836361/30639/1063747/XmYA_dzfCU8.jpg\n\nIn general, as a Tank Destroyer Jagdpanthere was great. Maneuverability and speed characteristics were good because of using \u201cPanther\u201d basis. Armor of Jagdpanthere (80 mm in the front with a good armor slope) confidently defended the machine and a crew at the distance of 800 meters from all Soviet tanks. The new 88mm anti-tank gun allowed to destroy the enemy at a distance of 1km. Rate of fire at the same time was very high - 8 rounds per minute. The fighting compartment inside of a car was spacious and was equipped with ventilation, increasing the convenience of the crew working. And don\u2019t forget than Jagdpanther had a low silhouette. The disadvantages were the relatively high cost of the machine (due to the use of scarce materials), unreliability and complexity of the transmission service. Jagdpanther has established itself as a formidable and dangerous opponent, specializing in the destruction of tanks. Total were produced 392 cars.\nhttp://i.piccy.info/i9/f1590af47cd302853838f357b7786d76/1473836385/192289/1063747/V3N3_0icSI.jpg\n\n>\u0423 \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0438 1942 \u0440\u043e\u043a\u0443 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u043d\u043d\u044f \u043f\u0440\u0438\u0439\u043d\u044f\u043b\u043e \u0440\u0456\u0448\u0435\u043d\u043d\u044f \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u041f\u0422-\u0421\u0410\u0423 \u0437 \u043d\u043e\u0432\u043e\u044e \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u043e\u044e 88\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u043e\u044e \u0420\u0430\u043a-43 \u043d\u0430 \u0431\u0430\u0437\u0456 \u0441\u0435\u0440\u0435\u0434\u043d\u044c\u043e\u0433\u043e \u0442\u0430\u043d\u043a\u0430 \u041f\u0430\u043d\u0442\u0435\u0440\u0430. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0443 \u041f\u0422-\u0421\u0410\u0423 \u0441\u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0432\u0435\u043b\u0430 \u0444\u0456\u0440\u043c\u0430 \u041a\u0440\u0443\u043f\u043f, \u043f\u0456\u0437\u043d\u0456\u0448\u0435 \u043f\u0440\u043e\u0435\u043a\u0442 \u0434\u043e\u0440\u043e\u0431\u043b\u044f\u0432\u0441\u044f \u0444\u0456\u0440\u043c\u043e\u044e Daimler-Benz, \u0430 \u0432 \u0441\u0430\u043c\u043e\u043c\u0443 \u043a\u0456\u043d\u0446\u0456 - MIAG. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u0431\u0443\u043b\u0430 \u0443\u0441\u043a\u043b\u0430\u0434\u043d\u0435\u043d\u0430 \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u0438\u043c\u0438 \u0430\u0432\u0456\u0430 \u043d\u0430\u043b\u044c\u043e\u0442\u0430\u043c\u0438 \u0441\u043e\u044e\u0437\u043d\u0438\u043a\u0456\u0432, \u043f\u043e\u0441\u0442\u0456\u0439\u043d\u0438\u043c\u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0447\u0430\u043c\u0438 \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u0438\u0445 \u0434\u0435\u0442\u0430\u043b\u0435\u0439 \u0456 \u043f\u043b\u0443\u0442\u0430\u043d\u0438\u043d\u043e\u044e \u0432 \u0441\u0435\u0440\u0456\u0439\u043d\u0438\u0445 \u043c\u043e\u0434\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u044f\u0445 \u043c\u0430\u0448\u0438\u043d\u0438. \u041d\u0430\u0439\u0431\u0456\u043b\u044c\u0448 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u042f\u0433\u0434\u043f\u0430\u043d\u0442\u0435\u0440\u0438 \u0431\u0440\u0430\u043b\u0438 \u0443\u0447\u0430\u0441\u0442\u044c \u0432 \u0410\u0440\u0434\u0435\u043d\u0441\u044c\u043a\u043e\u043c\u0443 \u043d\u0430\u0441\u0442\u0443\u043f\u0456 \u0442\u0430 \u0411\u0430\u043b\u0430\u0442\u043e\u043d\u0441\u044c\u043a\u0456\u0439 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457.\n\u0412 \u0446\u0456\u043b\u043e\u043c\u0443 \u0441\u0430\u043c\u043e\u0445\u043e\u0434\u043a\u0430 \u0432\u0438\u0439\u0448\u043b\u0430 \u0432\u0434\u0430\u043b\u043e\u044e. \u0425\u043e\u0434\u043e\u0432\u0456 \u0456 \u043c\u0430\u043d\u0435\u0432\u0440\u0435\u043d\u0456 \u044f\u043a\u043e\u0441\u0442\u0456 \u0432\u043e\u043d\u0430 \u0446\u0456\u043b\u043a\u043e\u043c \u0443\u0441\u043f\u0430\u0434\u043a\u0443\u0432\u0430\u043b\u0430 \u0432\u0456\u0434 \u041f\u0430\u043d\u0442\u0435\u0440\u0438 \u0456 \u0432\u043e\u043d\u0438 \u0431\u0443\u043b\u0438 \u043d\u0430 \u0432\u0438\u0441\u043e\u043a\u043e\u043c\u0443 \u0440\u0456\u0432\u043d\u0456. \u0411\u0440\u043e\u043d\u044f \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 (80 \u043c\u043c \u0432 \u043b\u043e\u0431\u0456 \u043f\u0456\u0434 \u0445\u043e\u0440\u043e\u0448\u0438\u043c \u043d\u0430\u0445\u0438\u043b\u043e\u043c) \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u043e \u0437\u0430\u0445\u0438\u0449\u0430\u043b\u0430 \u0457\u0457 \u043d\u0430 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0456\u044f\u0445 \u0432\u0456\u0434 800 \u043c\u0435\u0442\u0440\u0456\u0432. \u041d\u043e\u0432\u0430 88\u043c\u043c \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0430 \u0433\u0430\u0440\u043c\u0430\u0442\u0430 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u043b\u0430 \u0432\u0435\u0441\u0442\u0438 \u043f\u0440\u0438\u0446\u0456\u043b\u044c\u043d\u0438\u0439 \u0432\u043e\u0433\u043e\u043d\u044c \u043f\u043e \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0443 \u043d\u0430 \u0432\u0456\u0434\u0441\u0442\u0430\u043d\u0456 1\u043a\u043c. \u0422\u0435\u043c\u043f \u0441\u0442\u0440\u0456\u043b\u044c\u0431\u0438 \u043f\u0440\u0438 \u0446\u044c\u043e\u043c\u0443 \u0431\u0443\u0432 \u0434\u0443\u0436\u0435 \u0432\u0438\u0441\u043e\u043a\u0438\u0439 - 8 \u043f\u043e\u0441\u0442\u0440\u0456\u043b\u0456\u0432 \u043d\u0430 \u0445\u0432\u0438\u043b\u0438\u043d\u0443. \u0411\u043e\u0439\u043e\u0432\u0435 \u0432\u0456\u0434\u0434\u0456\u043b\u0435\u043d\u043d\u044f \u043c\u0430\u0448\u0438\u043d\u0438 \u0431\u0443\u043b\u043e \u043f\u0440\u043e\u0441\u0442\u043e\u0440\u0438\u043c \u0456 \u043e\u0441\u043d\u0430\u0449\u0443\u0432\u0430\u043b\u043e\u0441\u044f \u0432\u0435\u043d\u0442\u0438\u043b\u044f\u0446\u0456\u0454\u044e, \u0449\u043e \u043f\u0456\u0434\u0432\u0438\u0449\u0443\u0432\u0430\u043b\u043e \u0437\u0440\u0443\u0447\u043d\u043e\u0441\u0442\u0456 \u0440\u043e\u0431\u043e\u0442\u0438 \u0435\u043a\u0456\u043f\u0430\u0436\u0443. \u041f\u0440\u0438\u043b\u0430\u0434\u0438 \u0441\u043f\u043e\u0441\u0442\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f \u0456 \u043f\u0440\u0438\u0446\u0456\u043b\u0438 \u0431\u0443\u043b\u0438 \u044f\u043a \u0437\u0430\u0432\u0436\u0434\u0438 \u043d\u0430 \u0432\u0438\u0449\u043e\u043c\u0443 \u0440\u0456\u0432\u043d\u0456. \u041f\u0422-\u0421\u0410\u0423 \u043c\u0430\u043b\u0430 \u043d\u0438\u0437\u044c\u043a\u0438\u0439 \u0441\u0438\u043b\u0443\u0435\u0442. \u0417 \u043d\u0435\u0434\u043e\u043b\u0456\u043a\u0456\u0432 \u0432\u0430\u0440\u0442\u043e \u0432\u0456\u0434\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u0432\u0456\u0434\u043d\u043e\u0441\u043d\u043e \u0432\u0438\u0441\u043e\u043a\u0443 \u0432\u0430\u0440\u0442\u0456\u0441\u0442\u044c \u043c\u0430\u0448\u0438\u043d\u0438 (\u0447\u0435\u0440\u0435\u0437 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u044f \u0434\u0435\u0444\u0456\u0446\u0438\u0442\u043d\u0438\u0445 \u043c\u0430\u0442\u0435\u0440\u0456\u0430\u043b\u0456\u0432), \u043d\u0435\u043d\u0430\u0434\u0456\u0439\u043d\u0456\u0441\u0442\u044c \u0442\u0440\u0430\u043d\u0441\u043c\u0456\u0441\u0456\u0457 \u0456 \u0441\u043a\u043b\u0430\u0434\u043d\u0456\u0441\u0442\u044c \u0432 \u043e\u0431\u0441\u043b\u0443\u0433\u043e\u0432\u0443\u0432\u0430\u043d\u043d\u0456. \u0422\u0430\u043a\u043e\u0436 \u043d\u0435\u0437\u0430\u0434\u043e\u0432\u0456\u043b\u044c\u043d\u043e\u044e \u0431\u0443\u043b\u0430 \u0431\u0440\u043e\u043d\u044f \u0431\u043e\u0440\u0442\u0456\u0432. \u042f\u0433\u0434\u043f\u0430\u043d\u0442\u0435\u0440\u0430 \u0437\u0430\u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0432\u0430\u043b\u0430 \u0441\u0435\u0431\u0435 \u044f\u043a \u0433\u0440\u0456\u0437\u043d\u0438\u0439 \u0456 \u043d\u0435\u0431\u0435\u0437\u043f\u0435\u0447\u043d\u0438\u0439 \u0441\u0443\u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a, \u0449\u043e \u0441\u043f\u0435\u0446\u0456\u0430\u043b\u0456\u0437\u0443\u0454\u0442\u044c\u0441\u044f \u043d\u0430 \u0432\u0438\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0442\u0430\u043d\u043a\u0456\u0432. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 392 \u043c\u0430\u0448\u0438\u043d\u0438.\n\n# M18 \u201cHellcat\u201d\nhttp://i.piccy.info/i9/96dea13cac0295bde2f7c6dd2ddf0f93/1473836416/237135/1063747/Zt4ltwPq9qQ.jpg\n\nThe design of the American Tank Destroyer was caused by the US military doctrine. In contrast to the Germans and the Soviets, who had good-armored Tank Destroyers with a powerful anti-tank gun and mediocre mobility, American Tank Destroyers were oriented on a good mobility firstly. M18 was developed for quickly interception of enemy tank formations and the destruction of their flanks. This also caused the weak armor, small caliber of guns and excellent mobility equipment. M18 had been developed by General Motors Buick Division, the cost of one machine was 57,000 dollars. Total it was produced 2507 M18.\nAt first it was planned to put the 37mm gun, but very soon it was decided to replace it by the 57mm British gun. But this was not enough, and in the final version M18 was equipped with a 76mm cannon from Shermans. New Tank Destroyer had a very light weight, had weak armor (20mm in the forehead) and the rotating tower, which was unusual for that time. Suspension provides the convenience of driving on rough terrain; the engine allowed reaching speed up to 45 km per hour. M18 was easy to operate and convenient to use. In general, the machine was ambiguous, absorbing a lot of bold decisions.\nhttp://i.piccy.info/i9/df0129bd789f7923e8f0306e5a8b6520/1473836445/147058/1063747/pxmv2fJDVRs.jpg\n\n>\u041a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u043e\u0433\u043e \u0432\u0438\u043d\u0438\u0449\u0443\u0432\u0430\u0447\u0430 \u0442\u0430\u043d\u043a\u0456\u0432 \u043e\u0431\u0443\u043c\u043e\u0432\u043b\u0435\u043d\u0430 \u0432 \u043f\u0435\u0440\u0448\u0443 \u0447\u0435\u0440\u0433\u0443 \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u043e\u044e \u0432\u0456\u0439\u0441\u044c\u043a\u043e\u0432\u043e\u044e \u0434\u043e\u043a\u0442\u0440\u0438\u043d\u043e\u044e. \u041d\u0430 \u0432\u0456\u0434\u043c\u0456\u043d\u0443 \u0432\u0456\u0434 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0438\u0445 \u0456 \u0440\u0430\u0434\u044f\u043d\u0441\u044c\u043a\u0438\u0445 \u0430\u0440\u043c\u0456\u0439, \u0443 \u044f\u043a\u0438\u0445 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0456 \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 \u043c\u0430\u043b\u0438 \u0433\u0430\u0440\u043d\u0443 \u043b\u043e\u0431\u043e\u0432\u0443 \u0431\u0440\u043e\u043d\u044e, \u043f\u043e\u0442\u0443\u0436\u043d\u0443 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0443 \u0433\u0430\u0440\u043c\u0430\u0442\u0443 \u0456 \u043f\u043e\u0441\u0435\u0440\u0435\u0434\u043d\u044e \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0456\u0441\u0442\u044c, \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u0456 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0456 \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 \u0432 \u043f\u0435\u0440\u0448\u0443 \u0447\u0435\u0440\u0433\u0443 \u043f\u043e\u0432\u0438\u043d\u043d\u0456 \u0431\u0443\u043b\u0438 \u0431\u0443\u0442\u0438 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0456. \u041c18 \u0440\u043e\u0437\u0440\u043e\u0431\u043b\u044f\u0432\u0441\u044f \u0434\u043b\u044f \u0448\u0432\u0438\u0434\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0445\u043e\u043f\u043b\u0435\u043d\u043d\u044f \u0442\u0430\u043d\u043a\u043e\u0432\u0438\u0445 \u0437'\u0454\u0434\u043d\u0430\u043d\u044c \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430 \u0456 \u0437\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0457\u0445 \u0437 \u0444\u043b\u0430\u043d\u0433\u0456\u0432. \u0426\u0438\u043c \u0456 \u043e\u0431\u0443\u043c\u043e\u0432\u043b\u044e\u0432\u0430\u043b\u0430\u0441\u044f \u0441\u043b\u0430\u0431\u043a\u0435 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f, \u043d\u0435\u0432\u0435\u043b\u0438\u043a\u0438\u0439 \u043a\u0430\u043b\u0456\u0431\u0440 \u0433\u0430\u0440\u043c\u0430\u0442\u0438 \u0456 \u0432\u0456\u0434\u043c\u0456\u043d\u043d\u0430 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0456\u0441\u0442\u044c \u0442\u0435\u0445\u043d\u0456\u043a\u0438. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u0432\u0435\u043b\u0430\u0441\u044f \u0444\u0456\u0440\u043c\u043e\u044e General Motors Buick Division, \u0432\u0430\u0440\u0442\u0456\u0441\u0442\u044c \u043e\u0434\u043d\u0456\u0454\u0457 \u043c\u0430\u0448\u0438\u043d\u0438 \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b\u0430 57000 \u0434\u043e\u043b\u0430\u0440\u0456\u0432. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 2507 \u041f\u0422-\u0421\u0410\u0423 \u041c18.\n\u0421\u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u043f\u043b\u0430\u043d\u0443\u0432\u0430\u043b\u043e\u0441\u044f \u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u0438 37\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u0443, \u043f\u0440\u043e\u0442\u0435 \u0434\u0443\u0436\u0435 \u0441\u043a\u043e\u0440\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u0440\u0456\u0448\u0435\u043d\u043e \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0457\u0457 \u043d\u0430 57\u043c\u043c \u0431\u0440\u0438\u0442\u0430\u043d\u0441\u044c\u043a\u0443 \u0433\u0430\u0440\u043c\u0430\u0442\u0443. \u0410\u043b\u0435 \u0446\u044c\u043e\u0433\u043e \u0432\u0438\u044f\u0432\u0438\u043b\u043e\u0441\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043d\u044c\u043e, \u0456 \u0432 \u0444\u0456\u043d\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u0432\u0430\u0440\u0456\u0430\u043d\u0442\u0456 \u041c18 \u043e\u0441\u043d\u0430\u0449\u0443\u0432\u0430\u043b\u0430\u0441\u044f 76\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u043e\u044e, \u0449\u043e \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u044e\u0432\u0430\u043b\u0430\u0441\u044f \u043d\u0430 \u0442\u0430\u043d\u043a\u0438 \u0428\u0435\u0440\u043c\u0430\u043d. \u041f\u0422-\u0421\u0410\u0423 \u0431\u0443\u043b\u0430 \u0434\u0443\u0436\u0435 \u043b\u0435\u0433\u043a\u0430, \u043c\u0430\u043b\u0430 \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043a\u0443\u043b\u044c\u043e\u0432\u0435 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f (20\u043c\u043c \u0432 \u043b\u043e\u0431\u0456) \u0456 \u043f\u043e\u0432\u043e\u0440\u043e\u0442\u043d\u0443 \u0431\u0430\u0448\u0442\u0443, \u0449\u043e \u0431\u0443\u043b\u043e \u043d\u0435\u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u043d\u043e \u0434\u043b\u044f \u041f\u0422-\u0421\u0410\u0423 \u0442\u043e\u0433\u043e \u0447\u0430\u0441\u0443. \u041f\u0456\u0434\u0432\u0456\u0441\u043a\u0430 \u0437\u0430\u0431\u0435\u0437\u043f\u0435\u0447\u0443\u0432\u0430\u043b\u0430 \u0437\u0440\u0443\u0447\u043d\u0456\u0441\u0442\u044c \u0457\u0437\u0434\u0438 \u043f\u043e \u043f\u0435\u0440\u0435\u0441\u0456\u0447\u0435\u043d\u0456\u0439 \u043c\u0456\u0441\u0446\u0435\u0432\u043e\u0441\u0442\u0456, \u0434\u0432\u0438\u0433\u0443\u043d \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u0432 \u0440\u043e\u0437\u0432\u0438\u0432\u0430\u0442\u0438 \u0448\u0432\u0438\u0434\u043a\u0456\u0441\u0442\u044c \u0434\u043e 45 \u043a\u043c \u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0443. \u041c18 \u0431\u0443\u0432 \u043f\u0440\u043e\u0441\u0442\u0438\u0439 \u0432 \u043e\u0431\u0441\u043b\u0443\u0433\u043e\u0432\u0443\u0432\u0430\u043d\u043d\u0456 \u0456 \u0437\u0440\u0443\u0447\u043d\u0438\u0439 \u0432 \u0435\u043a\u0441\u043f\u043b\u0443\u0430\u0442\u0430\u0446\u0456\u0457. \u0412 \u0446\u0456\u043b\u043e\u043c\u0443 \u043c\u0430\u0448\u0438\u043d\u0430 \u0432\u0438\u0439\u0448\u043b\u0430 \u043d\u0435\u043e\u0434\u043d\u043e\u0437\u043d\u0430\u0447\u043d\u043e\u044e, \u0443\u0432\u0456\u0431\u0440\u0430\u0432\u0448\u0438 \u0432 \u0441\u0435\u0431\u0435 \u0431\u0435\u0437\u043b\u0456\u0447 \u0441\u043c\u0456\u043b\u0438\u0432\u0438\u0445 \u0440\u0456\u0448\u0435\u043d\u044c.\n\nAt the end I want to say, that the birth of Tank destroyers was caused by the necessary of destroying heavy enemy techniques. Next time I will tell you about machines with a real \u201cBig Guns\u201d.\n>\u041d\u0430 \u0446\u044c\u043e\u043c\u0443 \u043c\u0456 \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u043c\u043e \u043d\u0430\u0448\u0435 \u0437\u043d\u0430\u0439\u043e\u043c\u0441\u0442\u0432\u043e \u0437 \u043a\u043b\u0430\u0441\u043e\u043c \u041f\u0422-\u0421\u0410\u0423. \u041f\u043e\u044f\u0432\u0430 \u0441\u0430\u043c\u043e\u0445\u043e\u0434\u043e\u043a \u0431\u0443\u043b\u0430 \u0432\u0438\u043a\u043b\u0438\u043a\u0430\u043d\u0430 \u043d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u0456\u0441\u0442\u044e \u0437\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0432\u0430\u0436\u043a\u043e\u0457 \u0442\u0435\u0445\u043d\u0456\u043a\u0438 \u0441\u0443\u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430. \u041d\u0430 \u0447\u0435\u0440\u0437\u0456 \u043c\u0430\u0448\u0438\u043d\u0438 \u0437 \u0434\u0456\u0439\u0441\u043d\u043e \u0432\u0435\u043b\u0438\u043a\u0438\u043c\u0438 \u043a\u0430\u043b\u0456\u0431\u0440\u0430\u043c\u0438. \n\n***don't forget to follow @burmik123***", + "category": "tanks", + "children": 20, + "created": "2016-09-15T15:48:12", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.piccy.info/i9/3d367a52a1b8dc6c22f126332f335144/1473836215/88822/1063747/cqWCxy6vYP0.jpg", + "http://i.piccy.info/i9/5dc09cebc0ddfcd1fac4a8013ee385ad/1473836240/182233/1063747/5u9ghQyvkTc.jpg", + "http://i.piccy.info/i9/b5ef17359d201f4a7a61b38b5e6ca72f/1473836271/164656/1063747/kKktJUlUuXk.jpg", + "http://i.piccy.info/i9/4dc33c464a97ab5b3b8b294778f28103/1473836298/33303/1063747/WVaI_c18Lyw.jpg", + "http://i.piccy.info/i9/201bcdc4469d546e806e4a38ba752ea7/1473836330/161907/1063747/_jvoDheMLik.jpg", + "http://i.piccy.info/i9/d2e68a346dd9f511c77c83d8b77eaf87/1473836361/30639/1063747/XmYA_dzfCU8.jpg", + "http://i.piccy.info/i9/f1590af47cd302853838f357b7786d76/1473836385/192289/1063747/V3N3_0icSI.jpg", + "http://i.piccy.info/i9/96dea13cac0295bde2f7c6dd2ddf0f93/1473836416/237135/1063747/Zt4ltwPq9qQ.jpg", + "http://i.piccy.info/i9/df0129bd789f7923e8f0306e5a8b6520/1473836445/147058/1063747/pxmv2fJDVRs.jpg" + ], + "tags": [ + "tanks", + "ua", + "war" + ], + "users": [ + "burmik123" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 64027086650725, + "payout": 239.867, + "payout_at": "2016-09-16T16:11:44", + "pending_payout_value": "239.867 HBD", + "percent_hbd": 10000, + "permlink": "title-steel-monsters-tank-destroyers-of-ww-ii-eng-ua-featuring-burmik123-as-author", + "post_id": 958959, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 257 + }, + "title": "Steel monsters. Tank Destroyers of WW II. ENG\\UA (featuring @burmik123 as author)", + "updated": "2016-09-15T16:20:39", + "url": "/tanks/@gavvet/title-steel-monsters-tank-destroyers-of-ww-ii-eng-ua-featuring-burmik123-as-author" + }, + { + "active_votes": [ + { + "rshares": "518200944380", + "voter": "barrie" + }, + { + "rshares": "31620599440742", + "voter": "smooth" + }, + { + "rshares": "5980286152113", + "voter": "freedom" + }, + { + "rshares": "1968119541431", + "voter": "badassmother" + }, + { + "rshares": "2052934239988", + "voter": "hr1" + }, + { + "rshares": "1337025448249", + "voter": "rossco99" + }, + { + "rshares": "22864938197", + "voter": "jaewoocho" + }, + { + "rshares": "1575899708999", + "voter": "joseph" + }, + { + "rshares": "98682346357", + "voter": "aizensou" + }, + { + "rshares": "466049312123", + "voter": "recursive2" + }, + { + "rshares": "462419963819", + "voter": "recursive3" + }, + { + "rshares": "3120252422964", + "voter": "recursive" + }, + { + "rshares": "1246183601", + "voter": "mineralwasser" + }, + { + "rshares": "681017160441", + "voter": "boombastic" + }, + { + "rshares": "1670000041", + "voter": "bingo-1" + }, + { + "rshares": "5938790183563", + "voter": "smooth.witness" + }, + { + "rshares": "445638290328", + "voter": "boatymcboatface" + }, + { + "rshares": "9408499254", + "voter": "idol" + }, + { + "rshares": "18955732033", + "voter": "chitty" + }, + { + "rshares": "65857071449", + "voter": "unosuke" + }, + { + "rshares": "1619440533", + "voter": "jocelyn" + }, + { + "rshares": "15004166459", + "voter": "gregory-f" + }, + { + "rshares": "154334962550", + "voter": "edgeland" + }, + { + "rshares": "9796891633", + "voter": "gregory60" + }, + { + "rshares": "1290497974419", + "voter": "gavvet" + }, + { + "rshares": "89897083981", + "voter": "eeks" + }, + { + "rshares": "1511911763", + "voter": "fkn" + }, + { + "rshares": "122160437", + "voter": "paco-steem" + }, + { + "rshares": "1471599418", + "voter": "spaninv" + }, + { + "rshares": "1987313581", + "voter": "elishagh1" + }, + { + "rshares": "8669787638", + "voter": "richman" + }, + { + "rshares": "599944427461", + "voter": "nanzo-scoop" + }, + { + "rshares": "9857442120", + "voter": "kefkius" + }, + { + "rshares": "177393180428", + "voter": "mummyimperfect" + }, + { + "rshares": "313687341", + "voter": "coar" + }, + { + "rshares": "106628883920", + "voter": "asch" + }, + { + "rshares": "1061184463", + "voter": "murh" + }, + { + "rshares": "3187790925", + "voter": "cryptofunk" + }, + { + "rshares": "579494558", + "voter": "kodi" + }, + { + "rshares": "2111403468", + "voter": "error" + }, + { + "rshares": "985486511940", + "voter": "cyber" + }, + { + "rshares": "61710806563", + "voter": "theshell" + }, + { + "rshares": "50879010002", + "voter": "ak2020" + }, + { + "rshares": "1616373298272", + "voter": "satoshifund" + }, + { + "rshares": "409218031185", + "voter": "taoteh1221" + }, + { + "rshares": "418880227", + "voter": "applecrisp" + }, + { + "rshares": "95314034", + "voter": "stiletto" + }, + { + "rshares": "19213136885", + "voter": "ziv" + }, + { + "rshares": "15787116636", + "voter": "zakharya" + }, + { + "rshares": "280675599804", + "voter": "trogdor" + }, + { + "rshares": "19151208027", + "voter": "crypto-fan" + }, + { + "rshares": "121380113922", + "voter": "geoffrey" + }, + { + "rshares": "16025451490", + "voter": "kimziv" + }, + { + "rshares": "76008701316", + "voter": "emily-cook" + }, + { + "rshares": "2187587354", + "voter": "superfreek" + }, + { + "rshares": "387326356155", + "voter": "fyrstikken" + }, + { + "rshares": "49806164408", + "voter": "isteemit" + }, + { + "rshares": "29635215678", + "voter": "acassity" + }, + { + "rshares": "280916636", + "voter": "ladyclair" + }, + { + "rshares": "3898803498", + "voter": "michaellamden68" + }, + { + "rshares": "19974572536", + "voter": "thebatchman" + }, + { + "rshares": "153697599394", + "voter": "asmolokalo" + }, + { + "rshares": "73848595449", + "voter": "rubybian" + }, + { + "rshares": "5270775482", + "voter": "riscadox" + }, + { + "rshares": "256623434", + "voter": "mstang83" + }, + { + "rshares": "2597453094", + "voter": "romel" + }, + { + "rshares": "150964836849", + "voter": "derekareith" + }, + { + "rshares": "7380400309", + "voter": "furion" + }, + { + "rshares": "15308452303", + "voter": "bitshares101" + }, + { + "rshares": "6591905710", + "voter": "owdy" + }, + { + "rshares": "14388449041", + "voter": "ausbitbank" + }, + { + "rshares": "159573949583", + "voter": "jacor" + }, + { + "rshares": "124958555", + "voter": "cynetyc" + }, + { + "rshares": "85528935", + "voter": "snowden" + }, + { + "rshares": "14487855165", + "voter": "aaseb" + }, + { + "rshares": "4431052068", + "voter": "karen13" + }, + { + "rshares": "10646413479", + "voter": "deviedev" + }, + { + "rshares": "258981906731", + "voter": "nabilov" + }, + { + "rshares": "847366145", + "voter": "luisucv34" + }, + { + "rshares": "54561525717", + "voter": "streetstyle" + }, + { + "rshares": "7372366244", + "voter": "krystle" + }, + { + "rshares": "46854512371", + "voter": "milestone" + }, + { + "rshares": "35782074085", + "voter": "creemej" + }, + { + "rshares": "3800710913", + "voter": "maximkichev" + }, + { + "rshares": "167298234999", + "voter": "blueorgy" + }, + { + "rshares": "12587181720", + "voter": "benjiberigan" + }, + { + "rshares": "349575168", + "voter": "poseidon" + }, + { + "rshares": "7946556816", + "voter": "smolalit" + }, + { + "rshares": "20522265015", + "voter": "mustafaomar" + }, + { + "rshares": "3506024506", + "voter": "simon.braki.love" + }, + { + "rshares": "82780602040", + "voter": "thylbom" + }, + { + "rshares": "3695597998", + "voter": "bitcoiner" + }, + { + "rshares": "32542074868", + "voter": "deanliu" + }, + { + "rshares": "519376303", + "voter": "qonq99" + }, + { + "rshares": "7659625135", + "voter": "neroru" + }, + { + "rshares": "215384334659", + "voter": "jl777" + }, + { + "rshares": "1226120506", + "voter": "positive" + }, + { + "rshares": "101547003699", + "voter": "crazymumzysa" + }, + { + "rshares": "50626015", + "voter": "steemchain" + }, + { + "rshares": "50626015", + "voter": "whalepool" + }, + { + "rshares": "5287640951", + "voter": "gustavopasquini" + }, + { + "rshares": "114437903", + "voter": "firehorse" + }, + { + "rshares": "18175932801", + "voter": "proto" + }, + { + "rshares": "2708251696", + "voter": "sisterholics" + }, + { + "rshares": "1444237397", + "voter": "alex.chien" + }, + { + "rshares": "8921793478", + "voter": "royalmacro" + }, + { + "rshares": "1802321537", + "voter": "remlaps" + }, + { + "rshares": "3353832611", + "voter": "glitterpig" + }, + { + "rshares": "119294413", + "voter": "picker" + }, + { + "rshares": "870677269", + "voter": "metaflute" + }, + { + "rshares": "9193734776", + "voter": "taker" + }, + { + "rshares": "6521104126", + "voter": "nekromarinist" + }, + { + "rshares": "2156971728", + "voter": "merej99" + }, + { + "rshares": "95768393690", + "voter": "laonie" + }, + { + "rshares": "157498807066", + "voter": "twinner" + }, + { + "rshares": "11693771864", + "voter": "thebluepanda" + }, + { + "rshares": "24561066673", + "voter": "laoyao" + }, + { + "rshares": "2664664784", + "voter": "myfirst" + }, + { + "rshares": "19440183808", + "voter": "somebody" + }, + { + "rshares": "726860971", + "voter": "flysaga" + }, + { + "rshares": "2501625986", + "voter": "gmurph" + }, + { + "rshares": "4294504959", + "voter": "midnightoil" + }, + { + "rshares": "2327843962", + "voter": "kalimor" + }, + { + "rshares": "84246848", + "voter": "coderg" + }, + { + "rshares": "4281232336", + "voter": "ullikume" + }, + { + "rshares": "50577648", + "voter": "michellek" + }, + { + "rshares": "3489905889", + "voter": "kurtbeil" + }, + { + "rshares": "2370103862", + "voter": "steemleak" + }, + { + "rshares": "117035295217", + "voter": "thisisbenbrick" + }, + { + "rshares": "10740805506", + "voter": "xiaohui" + }, + { + "rshares": "88206053", + "voter": "bigsambucca" + }, + { + "rshares": "485070652", + "voter": "elfkitchen" + }, + { + "rshares": "103387869456", + "voter": "joele" + }, + { + "rshares": "5855349715", + "voter": "oflyhigh" + }, + { + "rshares": "15238192519", + "voter": "randyclemens" + }, + { + "rshares": "856854397", + "voter": "skavkaz" + }, + { + "rshares": "335812576", + "voter": "xiaokongcom" + }, + { + "rshares": "13237481048", + "voter": "gargon" + }, + { + "rshares": "2076619689", + "voter": "natalymaty" + }, + { + "rshares": "2002858998", + "voter": "future24" + }, + { + "rshares": "1156101266", + "voter": "darthnava" + }, + { + "rshares": "3670417888", + "voter": "villainblack" + }, + { + "rshares": "12672968653", + "voter": "cristi" + }, + { + "rshares": "676933902", + "voter": "xianjun" + }, + { + "rshares": "26283514539", + "voter": "hanshotfirst" + }, + { + "rshares": "93798273061", + "voter": "miacats" + }, + { + "rshares": "2249572206", + "voter": "njall" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "6417335694", + "voter": "userlogin" + }, + { + "rshares": "2077210674", + "voter": "chinadaily" + }, + { + "rshares": "90171375563", + "voter": "serejandmyself" + }, + { + "rshares": "4976983022", + "voter": "almerri" + }, + { + "rshares": "9071955992", + "voter": "johnnyyash" + }, + { + "rshares": "3221126774", + "voter": "macartem" + }, + { + "rshares": "9827647000", + "voter": "gvargas123" + }, + { + "rshares": "4658385146", + "voter": "themanualbot" + }, + { + "rshares": "10468564936", + "voter": "jaredcwillis" + }, + { + "rshares": "3562389763", + "voter": "movievertigo" + }, + { + "rshares": "332237822", + "voter": "mrlogic" + }, + { + "rshares": "415123347", + "voter": "mig641" + }, + { + "rshares": "57942270939", + "voter": "mandibil" + }, + { + "rshares": "2028431875", + "voter": "shadowspub" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "74550672", + "voter": "steembriefing" + }, + { + "rshares": "55750195", + "voter": "riv" + }, + { + "rshares": "2196854858", + "voter": "runridefly" + }, + { + "rshares": "169049426", + "voter": "sammie" + }, + { + "rshares": "1857706060", + "voter": "funkywanderer" + }, + { + "rshares": "5053551216", + "voter": "richardcrill" + }, + { + "rshares": "184076493", + "voter": "team101" + }, + { + "rshares": "178419224", + "voter": "greatness" + }, + { + "rshares": "54241736164", + "voter": "sponge-bob" + }, + { + "rshares": "50798127", + "voter": "freesteem" + }, + { + "rshares": "51964388", + "voter": "apparat" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "212888896291", + "voter": "asksisk" + }, + { + "rshares": "330365849", + "voter": "panther" + }, + { + "rshares": "59422248", + "voter": "plantbasedjunkie" + }, + { + "rshares": "55335855053", + "voter": "brains" + }, + { + "rshares": "56573340", + "voter": "film-editor" + }, + { + "rshares": "799615255", + "voter": "jessicanicklos" + }, + { + "rshares": "1369339863", + "voter": "steemafon" + }, + { + "rshares": "1072070421", + "voter": "positivesteem" + }, + { + "rshares": "5753129814", + "voter": "chick1" + }, + { + "rshares": "3319554336", + "voter": "steempowerwhale" + }, + { + "rshares": "51637870", + "voter": "aoki" + }, + { + "rshares": "51568971", + "voter": "typingagent" + }, + { + "rshares": "51581492", + "voter": "cwb" + }, + { + "rshares": "339270470", + "voter": "anomaly" + }, + { + "rshares": "98524303", + "voter": "ola1" + }, + { + "rshares": "70282046", + "voter": "mari5555na" + }, + { + "rshares": "50871059", + "voter": "motion" + }, + { + "rshares": "50868434", + "voter": "jumbo" + }, + { + "rshares": "120278139", + "voter": "optimistic-crone" + }, + { + "rshares": "50536471", + "voter": "twistys" + }, + { + "rshares": "2216805889", + "voter": "bapparabi" + }, + { + "rshares": "50487909", + "voter": "opticalillusions" + }, + { + "rshares": "88287639", + "voter": "remlaps1" + }, + { + "rshares": "65849185", + "voter": "vuyusile" + }, + { + "rshares": "247235040", + "voter": "darkminded153" + }, + { + "rshares": "2650993895", + "voter": "senseye" + }, + { + "rshares": "161849597", + "voter": "iberia" + }, + { + "rshares": "158666175", + "voter": "durex" + }, + { + "rshares": "444435987", + "voter": "witchcraftblog" + }, + { + "rshares": "161212160", + "voter": "origin" + }, + { + "rshares": "4671589034", + "voter": "dresden" + }, + { + "rshares": "160845765", + "voter": "caseyneistat" + }, + { + "rshares": "159554050", + "voter": "planetearth" + }, + { + "rshares": "159506164", + "voter": "greenpeace" + }, + { + "rshares": "159164412", + "voter": "disneypixar" + }, + { + "rshares": "159062820", + "voter": "rule" + }, + { + "rshares": "158638676", + "voter": "icesteem" + }, + { + "rshares": "158602900", + "voter": "steem-wallet" + }, + { + "rshares": "155451903", + "voter": "steemthis" + }, + { + "rshares": "158541985", + "voter": "citigroup" + }, + { + "rshares": "31683945302", + "voter": "goldmatters" + }, + { + "rshares": "71727340", + "voter": "dealzgal" + }, + { + "rshares": "702613929", + "voter": "reddust" + }, + { + "rshares": "298391608", + "voter": "risabold" + } + ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Is this a typo? Benefits? You ask. How could there be any possible benefit from having a disability?\n\nWell, in fact there are. And here are three unexpected benefits I have personally experienced in my own journey living with a degenerating eye condition.\n\n## Improved lateral thinking and innovation\nGrowing up with a vision impairment meant that there were often things that most people took for granted, but which I struggled to do. To do the same things, I needed to come up with creative solutions and alternative ways of doing things. So from a very young age, I learnt to think laterally and developed my problem solving skills. Most people are so use to perceiving the world in a certain way, but when you are stripped of one of your senses, you learn to perceive things in a different way.\n\nhttps://ipfs.pics/ipfs/QmWb5pzYhKKJZ8zmeYqVeV6oNqGi5h7yDEtxBbjwRdTUZ7\n\nWhen I was still living by myself a few years ago, I had the annoying task of having to cook for myself each night. The challenge I faced in the kitchen was not been able to read the labels on various bottles and containers. As a result, I couldn't tell which container was the salt and which one was the sugar, and all the packaging for the herbs looked the same. So how did I manage? Instead of using sight, I used my sense of smell to distinguish between the herbs, and for some ingredients where I couldn't use the sense of smell, I used different containers and labels to help me identify all the different ingredients.\n\nAnd this leads on to the second benefit.\n\n## Improved memory\nPeople who know me well often comment on my ability to remember things. In fact, I've noticed this in many other people I know who also have a vision impairment. I think this is due to the fact that for someone with a vision impairment to thrive in a sighted world, we often need to make extra effort to adapt to our circumstances.\n\nFor example, I remember when I was still in university, I had to do many presentations. For most people, they could refer to speech notes as they are presenting. However, for me, this was not possible, as I couldn't read speech notes no matter how big the font was. Furthermore, as I have some sight, I never needed to learn braille, which meant I couldn't refer to braille notes either. _As a side note, this is why the title of my memoir which I've been posting on Steemit is \"Living in Between Two Worlds\", because I have often found myself being caught between the world of the sighted and the world of the blind, and also between the identity of being Chinese but not fully Chinese, and being Australian but not fully Australian._ As a result, every time I had to do a presentation, I would always remember the entire speech. Over time, this has become second nature to me. I have learnt how to force things into my memory, and be innovative when I need to.\n\n## Resilience\nGrowing up with a vision impairment, I experienced a lot of bullying at school and a lot of hurtful comments and actions from people, sometimes done knowingly and sometimes unknowingly. Sometimes this comes in the form of a patronising comment, and sometimes from a look or stare. The interesting thing with people staring and giving me strange looks is that I can often notice people are doing it to me because I have some peripheral vision, however people generally can't tell I'm looking back at them because it doesn't seem like I'm looking at them. Most of the time however, those hurtful words and actions are done out of ignorance and a lack of understanding, rather then out of malice.\n\n#### But from all these things I've experienced, it has made me a stronger and more resilient person.\nAs a result, whatever unforeseen things I may experience in life, there's not much that can knock me out completely. I have developed the ability to adapt to changing circumstances and stay optimistic, because as they say:\n### What doesn't kill you, makes you stronger.\n\nSo I'm thankful to God for the person I have become today. Disability isn't all bad. Without what I have gone through with my vision impairment, I wouldn't be the person I am today, and for these reasons, I am thankful.\n\nTo read more about my story, you can read my short memoir series. You can find [Part 1 here.](https://steemit.com/memoir/@nextgen622/living-in-between-two-worlds-my-memoir-part-1-updated)\n\nYou can also follow me on @nextgen622", + "category": "life", + "children": 10, + "created": "2016-09-15T14:46:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://ipfs.pics/ipfs/QmWb5pzYhKKJZ8zmeYqVeV6oNqGi5h7yDEtxBbjwRdTUZ7" + ], + "links": [ + "https://steemit.com/memoir/@nextgen622/living-in-between-two-worlds-my-memoir-part-1-updated" + ], + "tags": [ + "life", + "disability", + "strength" + ], + "users": [ + "nextgen622" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66119907751704, + "payout": 255.328, + "payout_at": "2016-09-16T15:12:56", + "pending_payout_value": "255.328 HBD", + "percent_hbd": 10000, + "permlink": "three-benefits-of-living-with-a-disability-featuring-nextgen622-as-author", + "post_id": 958372, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 219 + }, + "title": "Three benefits of living with a disability (featuring @nextgen622 as author)", + "updated": "2016-09-15T14:46:21", + "url": "/life/@gavvet/three-benefits-of-living-with-a-disability-featuring-nextgen622-as-author" + }, + { + "active_votes": [ + { + "rshares": "518193384474", + "voter": "barrie" + }, + { + "rshares": "31620272424965", + "voter": "smooth" + }, + { + "rshares": "7465716124744", + "voter": "firstclass" + }, + { + "rshares": "1991230051184", + "voter": "badassmother" + }, + { + "rshares": "2052900127917", + "voter": "hr1" + }, + { + "rshares": "1337025448249", + "voter": "rossco99" + }, + { + "rshares": "22864591759", + "voter": "jaewoocho" + }, + { + "rshares": "1619082976045", + "voter": "joseph" + }, + { + "rshares": "223905651656", + "voter": "b0y2k" + }, + { + "rshares": "475735272749", + "voter": "recursive2" + }, + { + "rshares": "462392248872", + "voter": "recursive3" + }, + { + "rshares": "3188060280256", + "voter": "recursive" + }, + { + "rshares": "1246152952", + "voter": "mineralwasser" + }, + { + "rshares": "680994650765", + "voter": "boombastic" + }, + { + "rshares": "94091830376", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6959061481", + "voter": "bingo-0" + }, + { + "rshares": "1669969392", + "voter": "bingo-1" + }, + { + "rshares": "5938061627471", + "voter": "smooth.witness" + }, + { + "rshares": "9408405427", + "voter": "idol" + }, + { + "rshares": "134476949201", + "voter": "team" + }, + { + "rshares": "290603380713", + "voter": "chitty" + }, + { + "rshares": "59271072026", + "voter": "unosuke" + }, + { + "rshares": "10884676283", + "voter": "yefet" + }, + { + "rshares": "1619428804", + "voter": "jocelyn" + }, + { + "rshares": "15316591171", + "voter": "gregory-f" + }, + { + "rshares": "9028507975", + "voter": "gregory60" + }, + { + "rshares": "1285091135093", + "voter": "gavvet" + }, + { + "rshares": "89896753810", + "voter": "eeks" + }, + { + "rshares": "1511911763", + "voter": "fkn" + }, + { + "rshares": "122160437", + "voter": "paco-steem" + }, + { + "rshares": "1471581374", + "voter": "spaninv" + }, + { + "rshares": "1987313581", + "voter": "elishagh1" + }, + { + "rshares": "8669787638", + "voter": "richman" + }, + { + "rshares": "599925765931", + "voter": "nanzo-scoop" + }, + { + "rshares": "9857353705", + "voter": "kefkius" + }, + { + "rshares": "177389912085", + "voter": "mummyimperfect" + }, + { + "rshares": "313687341", + "voter": "coar" + }, + { + "rshares": "106628118273", + "voter": "asch" + }, + { + "rshares": "1061159202", + "voter": "murh" + }, + { + "rshares": "3187771076", + "voter": "cryptofunk" + }, + { + "rshares": "591084449", + "voter": "kodi" + }, + { + "rshares": "2111391740", + "voter": "error" + }, + { + "rshares": "985477191740", + "voter": "cyber" + }, + { + "rshares": "61710385546", + "voter": "theshell" + }, + { + "rshares": "50878059993", + "voter": "ak2020" + }, + { + "rshares": "13256265846", + "voter": "johnerfx" + }, + { + "rshares": "409218031185", + "voter": "taoteh1221" + }, + { + "rshares": "95314034", + "voter": "stiletto" + }, + { + "rshares": "55528544371", + "voter": "kus-knee" + }, + { + "rshares": "1177332471", + "voter": "johnerminer" + }, + { + "rshares": "19213121851", + "voter": "ziv" + }, + { + "rshares": "280666949780", + "voter": "trogdor" + }, + { + "rshares": "6652542986", + "voter": "grandpere" + }, + { + "rshares": "5821005163", + "voter": "mark-waser" + }, + { + "rshares": "124413655063", + "voter": "geoffrey" + }, + { + "rshares": "16025151061", + "voter": "kimziv" + }, + { + "rshares": "77734412526", + "voter": "emily-cook" + }, + { + "rshares": "2187587354", + "voter": "superfreek" + }, + { + "rshares": "53269952968", + "voter": "pmartynov" + }, + { + "rshares": "48620303351", + "voter": "isteemit" + }, + { + "rshares": "30279417098", + "voter": "acassity" + }, + { + "rshares": "65769554169", + "voter": "norbu" + }, + { + "rshares": "3808133649", + "voter": "michaellamden68" + }, + { + "rshares": "20382096581", + "voter": "thebatchman" + }, + { + "rshares": "158987747182", + "voter": "asmolokalo" + }, + { + "rshares": "76019855821", + "voter": "rubybian" + }, + { + "rshares": "5270775482", + "voter": "riscadox" + }, + { + "rshares": "17903672525", + "voter": "konstantin" + }, + { + "rshares": "256623434", + "voter": "mstang83" + }, + { + "rshares": "373878481829", + "voter": "fabio" + }, + { + "rshares": "6941291365", + "voter": "gatoso" + }, + { + "rshares": "7380400309", + "voter": "furion" + }, + { + "rshares": "159573949583", + "voter": "jacor" + }, + { + "rshares": "147678292", + "voter": "cynetyc" + }, + { + "rshares": "18770255506", + "voter": "sebastien" + }, + { + "rshares": "12011479963", + "voter": "asim" + }, + { + "rshares": "14487056742", + "voter": "aaseb" + }, + { + "rshares": "4431046054", + "voter": "karen13" + }, + { + "rshares": "10645918815", + "voter": "deviedev" + }, + { + "rshares": "251364791827", + "voter": "nabilov" + }, + { + "rshares": "441803588", + "voter": "karenmckersie" + }, + { + "rshares": "871576606", + "voter": "luisucv34" + }, + { + "rshares": "54561525717", + "voter": "streetstyle" + }, + { + "rshares": "46854241122", + "voter": "milestone" + }, + { + "rshares": "35782000412", + "voter": "creemej" + }, + { + "rshares": "3878126092", + "voter": "maximkichev" + }, + { + "rshares": "15377574672", + "voter": "nippel66" + }, + { + "rshares": "171280078005", + "voter": "blueorgy" + }, + { + "rshares": "12324948767", + "voter": "benjiberigan" + }, + { + "rshares": "349568852", + "voter": "poseidon" + }, + { + "rshares": "2182574144", + "voter": "iamwne" + }, + { + "rshares": "347965502695", + "voter": "calaber24p" + }, + { + "rshares": "20119867662", + "voter": "mustafaomar" + }, + { + "rshares": "3576144996", + "voter": "simon.braki.love" + }, + { + "rshares": "82813520861", + "voter": "thylbom" + }, + { + "rshares": "3720107267", + "voter": "azurejasper" + }, + { + "rshares": "32541921491", + "voter": "deanliu" + }, + { + "rshares": "31308203650", + "voter": "sauravrungta" + }, + { + "rshares": "7659625135", + "voter": "neroru" + }, + { + "rshares": "215383763306", + "voter": "jl777" + }, + { + "rshares": "1226120506", + "voter": "positive" + }, + { + "rshares": "103577805737", + "voter": "crazymumzysa" + }, + { + "rshares": "6232841459", + "voter": "summonerrk" + }, + { + "rshares": "14894144779", + "voter": "lemooljiang" + }, + { + "rshares": "904575538", + "voter": "happyphoenix" + }, + { + "rshares": "43631243627", + "voter": "claudiop63" + }, + { + "rshares": "18175890702", + "voter": "proto" + }, + { + "rshares": "2708201174", + "voter": "sisterholics" + }, + { + "rshares": "8964609699", + "voter": "royalmacro" + }, + { + "rshares": "1802321537", + "voter": "remlaps" + }, + { + "rshares": "46040443375", + "voter": "jasonstaggers" + }, + { + "rshares": "13359113213", + "voter": "mahekg" + }, + { + "rshares": "845069114", + "voter": "metaflute" + }, + { + "rshares": "9193716733", + "voter": "taker" + }, + { + "rshares": "6521104126", + "voter": "nekromarinist" + }, + { + "rshares": "95766250088", + "voter": "laonie" + }, + { + "rshares": "161751897653", + "voter": "twinner" + }, + { + "rshares": "24560895252", + "voter": "laoyao" + }, + { + "rshares": "2664547502", + "voter": "myfirst" + }, + { + "rshares": "19439832856", + "voter": "somebody" + }, + { + "rshares": "65245460", + "voter": "ierg" + }, + { + "rshares": "16958164504", + "voter": "sunshine" + }, + { + "rshares": "726848341", + "voter": "flysaga" + }, + { + "rshares": "7706698035", + "voter": "asdes" + }, + { + "rshares": "2501620573", + "voter": "gmurph" + }, + { + "rshares": "1659697260", + "voter": "stormblaze" + }, + { + "rshares": "4294420153", + "voter": "midnightoil" + }, + { + "rshares": "2280336943", + "voter": "kalimor" + }, + { + "rshares": "84246848", + "voter": "coderg" + }, + { + "rshares": "2267389147", + "voter": "crypto-toll" + }, + { + "rshares": "4281204067", + "voter": "ullikume" + }, + { + "rshares": "10740550186", + "voter": "xiaohui" + }, + { + "rshares": "176650903994", + "voter": "terrycraft" + }, + { + "rshares": "461085584", + "voter": "elfkitchen" + }, + { + "rshares": "103384195129", + "voter": "joele" + }, + { + "rshares": "5823989445", + "voter": "oflyhigh" + }, + { + "rshares": "335807163", + "voter": "xiaokongcom" + }, + { + "rshares": "12961700193", + "voter": "gargon" + }, + { + "rshares": "2076619689", + "voter": "natalymaty" + }, + { + "rshares": "2002858998", + "voter": "future24" + }, + { + "rshares": "1405383530", + "voter": "hms818" + }, + { + "rshares": "3670417888", + "voter": "villainblack" + }, + { + "rshares": "3033035828", + "voter": "jrcornel" + }, + { + "rshares": "676921271", + "voter": "xianjun" + }, + { + "rshares": "25747116283", + "voter": "hanshotfirst" + }, + { + "rshares": "11541933907", + "voter": "borran" + }, + { + "rshares": "93797422302", + "voter": "miacats" + }, + { + "rshares": "2249572206", + "voter": "njall" + }, + { + "rshares": "6417144136", + "voter": "userlogin" + }, + { + "rshares": "2077199246", + "voter": "chinadaily" + }, + { + "rshares": "20666103650", + "voter": "anotherjoe" + }, + { + "rshares": "4879395119", + "voter": "almerri" + }, + { + "rshares": "8890516872", + "voter": "johnnyyash" + }, + { + "rshares": "3155389493", + "voter": "macartem" + }, + { + "rshares": "9310407829", + "voter": "gvargas123" + }, + { + "rshares": "4658385146", + "voter": "themanualbot" + }, + { + "rshares": "2148477670", + "voter": "levycore" + }, + { + "rshares": "406983674", + "voter": "mig641" + }, + { + "rshares": "56654664918", + "voter": "mandibil" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "54612436", + "voter": "riv" + }, + { + "rshares": "2196749616", + "voter": "runridefly" + }, + { + "rshares": "2458800256", + "voter": "seva" + }, + { + "rshares": "7375519035", + "voter": "macksby" + }, + { + "rshares": "1931998664", + "voter": "funkywanderer" + }, + { + "rshares": "5053531368", + "voter": "richardcrill" + }, + { + "rshares": "1625387426", + "voter": "davidjkelley" + }, + { + "rshares": "182060433", + "voter": "greatness" + }, + { + "rshares": "27673580803", + "voter": "sponge-bob" + }, + { + "rshares": "15231878384", + "voter": "digital-wisdom" + }, + { + "rshares": "3710834980", + "voter": "ethical-ai" + }, + { + "rshares": "6682569853", + "voter": "jwaser" + }, + { + "rshares": "51964388", + "voter": "apparat" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "224088474986", + "voter": "asksisk" + }, + { + "rshares": "113366516", + "voter": "edgarsart" + }, + { + "rshares": "26377562678", + "voter": "dubi" + }, + { + "rshares": "2617262426", + "voter": "bwaser" + }, + { + "rshares": "337248470", + "voter": "panther" + }, + { + "rshares": "27667123071", + "voter": "brains" + }, + { + "rshares": "50450987", + "voter": "waldemar-kuhn" + }, + { + "rshares": "5753092824", + "voter": "chick1" + }, + { + "rshares": "51637870", + "voter": "aoki" + }, + { + "rshares": "51568971", + "voter": "typingagent" + }, + { + "rshares": "51581492", + "voter": "cwb" + }, + { + "rshares": "3623547539", + "voter": "slayer" + }, + { + "rshares": "407122760", + "voter": "anomaly" + }, + { + "rshares": "27667189544", + "voter": "tarekadam" + }, + { + "rshares": "2401230307", + "voter": "ellepdub" + }, + { + "rshares": "123128317", + "voter": "ola1" + }, + { + "rshares": "12115121436", + "voter": "herpetologyguy" + }, + { + "rshares": "52460746", + "voter": "cryptofarmer" + }, + { + "rshares": "4712097333", + "voter": "morgan.waser" + }, + { + "rshares": "50228382", + "voter": "dragonice" + }, + { + "rshares": "50223099", + "voter": "battalar" + }, + { + "rshares": "51218466", + "voter": "weare" + }, + { + "rshares": "50139069", + "voter": "slow" + }, + { + "rshares": "50907857", + "voter": "oxygen" + }, + { + "rshares": "50873654", + "voter": "palladium" + }, + { + "rshares": "117919744", + "voter": "optimistic-crone" + }, + { + "rshares": "50540827", + "voter": "amstel" + }, + { + "rshares": "50484452", + "voter": "connect" + }, + { + "rshares": "88287639", + "voter": "remlaps1" + }, + { + "rshares": "3609516222", + "voter": "strong-ai" + }, + { + "rshares": "230273165", + "voter": "sjamayee" + }, + { + "rshares": "162925257", + "voter": "uct" + }, + { + "rshares": "435365865", + "voter": "witchcraftblog" + }, + { + "rshares": "161218747", + "voter": "sdc" + }, + { + "rshares": "161179339", + "voter": "bethesda" + }, + { + "rshares": "161096439", + "voter": "bethsoft" + }, + { + "rshares": "157816798", + "voter": "gravity" + }, + { + "rshares": "157726117", + "voter": "illusions" + }, + { + "rshares": "160861015", + "voter": "cybergirl" + }, + { + "rshares": "3941523341", + "voter": "dresden" + }, + { + "rshares": "164549939", + "voter": "pawel-krawczyk" + }, + { + "rshares": "159352476", + "voter": "panic" + }, + { + "rshares": "158638676", + "voter": "icesteem" + }, + { + "rshares": "32369065992", + "voter": "goldmatters" + }, + { + "rshares": "702613929", + "voter": "reddust" + }, + { + "rshares": "150387842", + "voter": "trickster512" + } + ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": ">Today I told my dad the final date of my marriage: October 2nd . Few days ago, as I told him that I was going to get married in a few weeks, he got mad at me. \u201cI was expecting you to get a real job before you got married!\u201d was his main critique. \u201cHow can you get married *now*?\u201d he asked me.\n\nOggi ho detto a mio padre la data definitiva del mio matrimonio: due ottobre. Pochi giorni fa, quando gli ho detto che mi sarei sposato nel giro di poche settimane, si \u00e8 arrabbiato con me. \u201cMi sarei aspettato che ti trovassi un lavoro vero prima di sposarti\u201d \u00e8 stato il suo principale oggetto di critica. \u201cCome puoi sposarti *adesso*?\u201d mi ha chiesto.\n\n>Let me give you some background. I\u2019m 29 years old and I want to do many things in my life. I studied economics, worked for no-profit and academia and I published a book in May on the shifting economic paradigm. I dedicated the last year to this book, spent all the savings I had and by now I have a few weeks of financial autonomy left. Meanwhile I rented a room on Airbnb, learned how to do bracelets and sold them on the Ligurian (North-West Italy) seaside. Simultaneously, I\u2019m working on becoming what I call a cryptofarmer: in fact, my goal is to write and earn cryptocurrencies while living in the countryside in a small house I\u2019m transforming into a farm. I learned how to plant a vegetable garden, how to chop wood and limiting the expenses of food and heating.\nEven if sometimes I\u2019m scared I could not afford a living, I feeI I can make it. We can make it. In fact, few months ago a girl I met last winter in Chile joined me and is providing great help with her skills and work. And I\u2019m going to marry her in a few weeks, as I said.\n\nFacciamo un passo indietro. Ho 29 anni e voglio fare tante cose nella mia vita. Ho studiato economia, lavorato nel no-profit e nel mondo accademico per poi pubblicare, a maggio di quest\u2019anno, un libro sul cambio di paradigma in economia. Ho dedicato l\u2019ultimo anno a questo libro, ho speso tutti i miei risparmi e ho davanti ancora qualche settimana di autonomia finanziaria. Nel frattempo ho affittato una stanza su Airbnb e imparato a fare braccialetti che ho venduto sulla costa ligure. Parallelamente lavoro per diventare quello che chiamo un cryptofarmer; il mio obiettivo \u00e8 infatti quello di scrivere e guadagnare cripto-valute mentre vivo in una piccola casa di campagna che sto trasformando in fattoria. Ho imparato come piantare un orto, spaccare la legna e limitare le spese di cibo e riscaldamento.\nAnche se a volte ho paura di non riuscire a guadagnarmi da vivere, sento che ce la posso fare. Che ce la *possiamo* fare. Qualche mese fa, infatti, una ragazza che ho conosciuto lo scorso inverno in Cile si \u00e8 unita ai miei progetti e mi sta dando un grosso aiuto con le sue capacit\u00e0 e il suo lavoro. E io la sposer\u00f2 in qualche settimana, come dicevo.\n>My father is 69 years old. Oddly enough, he actually left countryside for the city \u2013 a choice diametrically opposite to the one I made \u2013 to become a lawyer and had success by working really hard. As far as I know, he wanted to be a journalist but chose to be a lawyer to get a better salary \u2013 as he got. He wanted me to be a lawyer too, of course, but when I chose to study economics he told me I could become an auditor; those were professions, in his words, that paid good.\n\nMio padre ha 69 anni. E\u2019 curioso come lui lasci\u00f2 la campagna per la citt\u00e0 \u2013 una scelta diametralmente opposta a quella che ho fatto io \u2013 per diventare un avvocato e l\u00ec ha avuto successo lavorando molto. Da quel che so, lui voleva fare il giornalista da giovane, ma poi ha scelto di fare l\u2019avvocato per avere un miglior salario \u2013 come appunto si \u00e8 verificato. Chiaramente voleva che anche io facessi l\u2019avvocato e successivamente, quando io scelsi di studiare economia, mi disse che potevo diventare il revisore contabile; mestieri, questi, che secondo lui erano ben remunerati. \n>Dear dad,\nA couple of years ago, you told that you were eventually glad I didn\u2019t follow your path and became a lawyer. The job had changed too much, you said. Now too many lawyers are fighting one against each other to get the job and clients are not paying for the work you did for them. That\u2019s how you described me your job \u2013 a job that in Italy, for your generation, was a synonym of success. A son who became a lawyer was a dream for the average family.\nWell, I\u2019m going to add a little piece to this picture. In a few decades, the whole profession of lawyer may become obsolete. Do you know that even today you can ask legal question to [Ross](http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html), an IBM powered machine? It will provide you an answer by sifting through thousands of legal documents, statutes and cases - assisting you to get ready for the case by including citations, suggested readings and confidence ratings. \nToday few technologies are ready to disrupt whole sectors of the economy. One of these is Artificial Intelligence that could make your profession obsolete. Another is the blockchain: that one could make the auditor and accountancy profession useless too. Have you ever heard about it? Some say it\u2019s important as the invention of the Internet.\n\nCaro pap\u00e0,\nQualche anno fa mi hai detto che in fin dei conti eri contento che non avessi seguito la tua strada e fossi diventato un avvocato. Il lavoro \u00e8 cambiato troppo, hai detto. Troppi avvocati in conflitto l\u2019uno contro l\u2019altro per accaparrarsi clienti che poi non pagano il lavoro che fai per loro. Cos\u00ec mi hai descritto il tuo lavoro \u2013 un lavoro che in Italia, per la tua generazione, era sinonimo di successo. Un figlio che diventava avvocato era un sogno per la famiglia media.\nBeh, lasciami aggiungere un pezzo a questa storia. In un paio di decadi, la professione stessa dell\u2019avvocato potrebbe diventare obsoleta. Sai che gi\u00e0 oggi puoi chiedere un parere legale a [Ross](http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html), una macchina sviluppata da IBM? Ti restituisce una risposta setacciando migliaia di documenti legali, statuti e casi \u2013 assistendoti a prepararti al caso includendo citazioni, letture consigliate e intervalli di confidenza. Alcune tecnologie sono sul punto di rivoluzionare interi settori dell\u2019economia. Una di queste \u00e8 l\u2019intelligenza artificiale che potrebbe rendere obsoleta la tua professione. Un\u2019altra \u00e8 la blockchain: questa potrebbe rendere inutile la professione del contabile e del revisore. Ne hai mai sentito parlare? Alcuni dicono che \u00e8 importante quanto l\u2019invenzione di Internet.\n>**You should really be glad I didn\u2019t choose your job just because it paid good**. As I was 18 (in 2005) being a lawyer paid good, in a decade it wasn\u2019t the case anymore. **In fact, between 2007 and 2014 the average income reported by Italian lawyers [declined from 51.314 euro to 37.505]( http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare)**. Well, last decade \u2013 it is to be said - was a *century*: while economy collapsed in one of the worst crisis ever, technology produced unparalleled innovations. Before 2005 there was no Youtube. In 2005 there was no smartphone either. No-one can tell what are we going to see in the next decade. Some say there will be some big change in the workplace. In fact, [some researchers at Oxford]( http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf) say that by 2035, half of the jobs Americans currently hold will be automatized. **Robots are simply better than men in doing robotic work**. Even the world\u2019s most ancient profession may suffer a strong decline with the development of virtual reality \u2013 this has become the next big thing in adult entertainment.\n\n**Devi essere davvero contento che non abbia scelto il tuo lavoro solo perch\u00e9 era ben remunerato**. Quando ancora io avevo 18 anni (nel 2005) fare l\u2019avvocato era remunerativo, ma nell\u2019arco di un decennio ci\u00f2 non era pi\u00f9 vero. **Tra il 2007 e il 2014 il reddito medio dell\u2019avvocato italiano [\u00e8 sceso da 51.314 euro a 37.505 euro]( http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare)**. L\u2019ultimo decennio \u2013 bisogna riconoscerlo - ha rappresentato un *secolo*: mentre l\u2019economia collassava in una delle peggiori crisi di sempre, la tecnologia produceva innovazioni senza pari. Prima del 2005 non c\u2019era Youtube. Prima del 2005 non c\u2019era nemmeno lo smartphone. Nessuno pu\u00f2 dire cosa vedremo nel prossimo decennio. Molti dicono che ci saranno grossi cambiamenti sul luogo di lavoro. [Alcuni ricercatori di Oxford]( http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf) dicono che entro il 2035, il 45% dei lavori attualmente svolti dagli americani verr\u00e0 automatizzato. **I robot svolgono meglio degli uomini i lavori da robot**. Perfino il mestiere pi\u00f9 vecchio del mondo potrebbe risentire di un forte declino a seguito dello sviluppo della realt\u00e0 virtuale \u2013 questa \u00e8 diventata l\u2019ultima novit\u00e0 nel mondo dell\u2019intrattenimento per adulti.\n>Don\u2019t worry, dad, and don\u2019t look at me as someone who is living hand to mouth. Many things are changing in the next years, together with most of the reference points we had. Those jobs who were good, could not be profitable and stable anymore. Most of all, the same idea of stability will change: we\u2019ll have to find stability surfing between waves of change. Choosing a job just because it pays good today, may not be a good strategy. **My generation is challenged to find and develop that personal value, those talents, that no machine could substitute. This is what I\u2019m doing \u2013 soon I\u2019ll write you how**.\n\nPer questo, pap\u00e0, non preoccuparti e non guardarmi come si guarda un figlio che vive di espedienti. Molte cose cambieranno nei prossimi anni, insieme a molti dei punti di riferimento che avevamo. Quei lavori che prima erano buoni, potrebbero non essere pi\u00f9 remunerativi e stabili. Pi\u00f9 di tutto, cambier\u00e0 l\u2019idea di stabilit\u00e0: dovremmo imparare a trovare la stabilit\u00e0 di un surfista a cavallo di ondate di cambiamento. Scegliere un lavoro solo perch\u00e9 paga bene oggi, potrebbe non essere una strategia che paga. **La sfida per la mia generazione \u00e8 di trovare e sviluppare quel valore personale, quei talenti, che nessuna macchina pu\u00f2 sostituire. Questo \u00e8 quello che sto facendo io \u2013 presto ti scriver\u00f2 come**.\n\nhttp://i68.tinypic.com/2hz9lz.jpg \n\n*Me, dad, fianc\u00e9, mum*\n\n***Don't forget to follow @cryptofarmer***\n***a shout out goes to @claudiop63 for assisting the Italian community so don't forget to follow him***", + "category": "life", + "children": 11, + "created": "2016-09-15T14:01:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i68.tinypic.com/2hz9lz.jpg" + ], + "links": [ + "http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html", + "http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare", + "http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf" + ], + "tags": [ + "life", + "introducemyself" + ], + "users": [ + "cryptofarmer", + "claudiop63" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66723421210839, + "payout": 259.877, + "payout_at": "2016-09-16T14:29:03", + "pending_payout_value": "259.877 HBD", + "percent_hbd": 10000, + "permlink": "letters-to-my-dad-on-the-changing-world-with-italian-featuring-cryptofarmer-as-author", + "post_id": 957976, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 220 + }, + "title": "Letters to my dad on the changing world... with Italian(featuring @cryptofarmer as author)", + "updated": "2016-09-15T14:01:30", + "url": "/life/@gavvet/letters-to-my-dad-on-the-changing-world-with-italian-featuring-cryptofarmer-as-author" + }, + { + "active_votes": [ + { + "rshares": "480579269556", + "voter": "barrie" + }, + { + "rshares": "231751293887", + "voter": "anonymous" + }, + { + "rshares": "12889266254874", + "voter": "rainman" + }, + { + "rshares": "26305603050148", + "voter": "berniesanders" + }, + { + "rshares": "15605000000000", + "voter": "val-b" + }, + { + "rshares": "3358053566682", + "voter": "riverhead" + }, + { + "rshares": "1990377241911", + "voter": "badassmother" + }, + { + "rshares": "187617413684", + "voter": "nextgenwitness" + }, + { + "rshares": "3306757675077", + "voter": "pharesim" + }, + { + "rshares": "2005106058621", + "voter": "hr1" + }, + { + "rshares": "640773963547", + "voter": "justin" + }, + { + "rshares": "1758663279793", + "voter": "silver" + }, + { + "rshares": "4166786907723", + "voter": "silversteem" + }, + { + "rshares": "4851657471753", + "voter": "nextgencrypto" + }, + { + "rshares": "22381565222", + "voter": "jaewoocho" + }, + { + "rshares": "1869062512579", + "voter": "xeroc" + }, + { + "rshares": "425868900225", + "voter": "steemservices" + }, + { + "rshares": "209639354860", + "voter": "alex90342fastn1" + }, + { + "rshares": "1607381560851", + "voter": "joseph" + }, + { + "rshares": "452603688207", + "voter": "recursive3" + }, + { + "rshares": "588963325183", + "voter": "masteryoda" + }, + { + "rshares": "3051642158867", + "voter": "recursive" + }, + { + "rshares": "1172473837", + "voter": "mineralwasser" + }, + { + "rshares": "85737349562", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "1620255991", + "voter": "bingo-1" + }, + { + "rshares": "438041274025", + "voter": "boatymcboatface" + }, + { + "rshares": "9404339123", + "voter": "idol" + }, + { + "rshares": "2692207475582", + "voter": "donkeypong" + }, + { + "rshares": "783510713656", + "voter": "steemrollin" + }, + { + "rshares": "4632015537", + "voter": "sakr" + }, + { + "rshares": "283944946279", + "voter": "chitty" + }, + { + "rshares": "47092417970", + "voter": "alexgr" + }, + { + "rshares": "1660446343", + "voter": "jocelyn" + }, + { + "rshares": "83523204254", + "voter": "acidsun" + }, + { + "rshares": "148150884169", + "voter": "edgeland" + }, + { + "rshares": "194244553812", + "voter": "jamtaylor" + }, + { + "rshares": "74898454777", + "voter": "eeks" + }, + { + "rshares": "468170958", + "voter": "paco-steem" + }, + { + "rshares": "912602737692", + "voter": "cryptogee" + }, + { + "rshares": "5638722045", + "voter": "spaninv" + }, + { + "rshares": "25545945557", + "voter": "georgedonnelly" + }, + { + "rshares": "31081352622", + "voter": "instructor2121" + }, + { + "rshares": "7891620962", + "voter": "nate-atkins" + }, + { + "rshares": "18533432464", + "voter": "james-show" + }, + { + "rshares": "319841523573", + "voter": "teamsteem" + }, + { + "rshares": "1713517353627", + "voter": "cryptoctopus" + }, + { + "rshares": "9535707424", + "voter": "richman" + }, + { + "rshares": "550546408583", + "voter": "nanzo-scoop" + }, + { + "rshares": "13340014301", + "voter": "fact" + }, + { + "rshares": "160905828175", + "voter": "steve-walschot" + }, + { + "rshares": "10099012692", + "voter": "cian.dafe" + }, + { + "rshares": "47422549796", + "voter": "hannixx42" + }, + { + "rshares": "169123085990", + "voter": "mummyimperfect" + }, + { + "rshares": "268838726", + "voter": "coar" + }, + { + "rshares": "98194455049", + "voter": "asch" + }, + { + "rshares": "603531864037", + "voter": "kevinwong" + }, + { + "rshares": "1060920601", + "voter": "murh" + }, + { + "rshares": "3041891225", + "voter": "cryptofunk" + }, + { + "rshares": "3140744830", + "voter": "radioactivities" + }, + { + "rshares": "2164686241", + "voter": "error" + }, + { + "rshares": "5736901624", + "voter": "marta-zaidel" + }, + { + "rshares": "40014025775", + "voter": "ranko-k" + }, + { + "rshares": "985042955913", + "voter": "cyber" + }, + { + "rshares": "48237714954", + "voter": "ak2020" + }, + { + "rshares": "65573912297", + "voter": "justtryme90" + }, + { + "rshares": "33032554744", + "voter": "drinkzya" + }, + { + "rshares": "3616249140600", + "voter": "satoshifund" + }, + { + "rshares": "392453750650", + "voter": "taoteh1221" + }, + { + "rshares": "418804855", + "voter": "applecrisp" + }, + { + "rshares": "365287420", + "voter": "stiletto" + }, + { + "rshares": "55576340008", + "voter": "juanmiguelsalas" + }, + { + "rshares": "572341707403", + "voter": "andrarchy" + }, + { + "rshares": "110473581518", + "voter": "kenny-crane" + }, + { + "rshares": "54694274623", + "voter": "thecryptodrive" + }, + { + "rshares": "353770070386", + "voter": "kaylinart" + }, + { + "rshares": "563733180586", + "voter": "infovore" + }, + { + "rshares": "132301151875", + "voter": "schro" + }, + { + "rshares": "4552145645", + "voter": "tee-em" + }, + { + "rshares": "30491735429", + "voter": "michaelx" + }, + { + "rshares": "804471067802", + "voter": "anwenbaumeister" + }, + { + "rshares": "8928351544", + "voter": "grandpere" + }, + { + "rshares": "5689049935", + "voter": "mark-waser" + }, + { + "rshares": "17023109715", + "voter": "albertogm" + }, + { + "rshares": "106033721718", + "voter": "geoffrey" + }, + { + "rshares": "192232704674", + "voter": "kimziv" + }, + { + "rshares": "267994388047", + "voter": "lukestokes" + }, + { + "rshares": "43526357269", + "voter": "honeythief" + }, + { + "rshares": "783400875", + "voter": "mammasitta" + }, + { + "rshares": "77695030973", + "voter": "emily-cook" + }, + { + "rshares": "32733174015", + "voter": "talanhorne" + }, + { + "rshares": "81716838174", + "voter": "razvanelulmarin" + }, + { + "rshares": "2122888373", + "voter": "superfreek" + }, + { + "rshares": "33245604843", + "voter": "cryptoiskey" + }, + { + "rshares": "11728574802", + "voter": "primus" + }, + { + "rshares": "471495169", + "voter": "mrhankeh" + }, + { + "rshares": "37138635112", + "voter": "clement" + }, + { + "rshares": "47416157546", + "voter": "isteemit" + }, + { + "rshares": "67109183200", + "voter": "norbu" + }, + { + "rshares": "280886491", + "voter": "ladyclair" + }, + { + "rshares": "69639423700", + "voter": "bacchist" + }, + { + "rshares": "53810463964", + "voter": "venuspcs" + }, + { + "rshares": "3806124499", + "voter": "michaellamden68" + }, + { + "rshares": "7415227922", + "voter": "dasha" + }, + { + "rshares": "174543034217", + "voter": "asmolokalo" + }, + { + "rshares": "55965693937", + "voter": "ezzy" + }, + { + "rshares": "69473128292", + "voter": "rubybian" + }, + { + "rshares": "3148262011", + "voter": "orly" + }, + { + "rshares": "46383380668", + "voter": "firepower" + }, + { + "rshares": "245172817", + "voter": "mstang83" + }, + { + "rshares": "24863029935", + "voter": "katyakov" + }, + { + "rshares": "15674042620", + "voter": "yogi.artist" + }, + { + "rshares": "14215545466", + "voter": "r4fken" + }, + { + "rshares": "1001850942", + "voter": "steemswede" + }, + { + "rshares": "142892158061", + "voter": "derekareith" + }, + { + "rshares": "823059128625", + "voter": "slowwalker" + }, + { + "rshares": "1553964832", + "voter": "btcshare7" + }, + { + "rshares": "2210761988", + "voter": "vi1son" + }, + { + "rshares": "1267696038568", + "voter": "renohq" + }, + { + "rshares": "98005962692", + "voter": "sigmajin" + }, + { + "rshares": "14876241153", + "voter": "ausbitbank" + }, + { + "rshares": "45733145544", + "voter": "mrwang" + }, + { + "rshares": "2530804964", + "voter": "steem1653" + }, + { + "rshares": "188405790343", + "voter": "anyx" + }, + { + "rshares": "7540907296", + "voter": "steemit-life" + }, + { + "rshares": "11754696821", + "voter": "asim" + }, + { + "rshares": "320414159082", + "voter": "jesta" + }, + { + "rshares": "90257674", + "voter": "snowden" + }, + { + "rshares": "14289427593", + "voter": "aaseb" + }, + { + "rshares": "1107704273", + "voter": "karen13" + }, + { + "rshares": "10417290332", + "voter": "deviedev" + }, + { + "rshares": "258942997644", + "voter": "nabilov" + }, + { + "rshares": "17586922894", + "voter": "meesterboom" + }, + { + "rshares": "8573230772", + "voter": "noodhoog" + }, + { + "rshares": "6400554488", + "voter": "juvyjabian" + }, + { + "rshares": "2668109030", + "voter": "dmacshady" + }, + { + "rshares": "476670464", + "voter": "karenmckersie" + }, + { + "rshares": "451014793670", + "voter": "knozaki2015" + }, + { + "rshares": "44553728340", + "voter": "milestone" + }, + { + "rshares": "7312894074", + "voter": "lichtblick" + }, + { + "rshares": "84865861", + "voter": "wildchild" + }, + { + "rshares": "5726094484", + "voter": "btcbtcbtc20155" + }, + { + "rshares": "15683266563", + "voter": "nippel66" + }, + { + "rshares": "4317565662", + "voter": "oululahti" + }, + { + "rshares": "4310346145", + "voter": "poseidon" + }, + { + "rshares": "3365335082", + "voter": "simon.braki.love" + }, + { + "rshares": "76406992485", + "voter": "thylbom" + }, + { + "rshares": "7311858289", + "voter": "geronimo" + }, + { + "rshares": "10684939578", + "voter": "rpf" + }, + { + "rshares": "3692989929", + "voter": "bitcoiner" + }, + { + "rshares": "3756550273", + "voter": "tarindel" + }, + { + "rshares": "3712828665", + "voter": "azurejasper" + }, + { + "rshares": "279059042940", + "voter": "liberosist" + }, + { + "rshares": "30859119533", + "voter": "deanliu" + }, + { + "rshares": "5496325958", + "voter": "sharker" + }, + { + "rshares": "33395139065", + "voter": "sauravrungta" + }, + { + "rshares": "84683756607", + "voter": "rea" + }, + { + "rshares": "53842086331", + "voter": "jl777" + }, + { + "rshares": "29215490743", + "voter": "zaebars" + }, + { + "rshares": "1700143919", + "voter": "yarly" + }, + { + "rshares": "256282552", + "voter": "yarly2" + }, + { + "rshares": "256665987", + "voter": "yarly3" + }, + { + "rshares": "148269777", + "voter": "yarly4" + }, + { + "rshares": "149106888", + "voter": "yarly5" + }, + { + "rshares": "84991309", + "voter": "yarly7" + }, + { + "rshares": "779992403", + "voter": "raymonjohnstone" + }, + { + "rshares": "50619397", + "voter": "steemchain" + }, + { + "rshares": "50619397", + "voter": "whalepool" + }, + { + "rshares": "5218510034", + "voter": "gustavopasquini" + }, + { + "rshares": "32308067031", + "voter": "papa-pepper" + }, + { + "rshares": "16539590111", + "voter": "winstonwolfe" + }, + { + "rshares": "885730214", + "voter": "happyphoenix" + }, + { + "rshares": "21120708735", + "voter": "krabgat" + }, + { + "rshares": "474951354", + "voter": "kooshikoo" + }, + { + "rshares": "4543692384", + "voter": "proto" + }, + { + "rshares": "634121191", + "voter": "curator" + }, + { + "rshares": "31584377035", + "voter": "sisterholics" + }, + { + "rshares": "411321155", + "voter": "yarly10" + }, + { + "rshares": "1365664469", + "voter": "alex.chien" + }, + { + "rshares": "220139771", + "voter": "yarly11" + }, + { + "rshares": "76966318", + "voter": "yarly12" + }, + { + "rshares": "3675499938", + "voter": "tygergamer" + }, + { + "rshares": "173441395", + "voter": "kibela" + }, + { + "rshares": "376816435", + "voter": "alanc" + }, + { + "rshares": "238488697", + "voter": "bullionstackers" + }, + { + "rshares": "245216458115", + "voter": "originate" + }, + { + "rshares": "3361197115", + "voter": "sulev" + }, + { + "rshares": "121123550176", + "voter": "sterlinluxan" + }, + { + "rshares": "108721833", + "voter": "cryptoz" + }, + { + "rshares": "46036044554", + "voter": "jasonstaggers" + }, + { + "rshares": "131896331875", + "voter": "steemdrive" + }, + { + "rshares": "114064883", + "voter": "andrew-charles" + }, + { + "rshares": "1024314167", + "voter": "metaflute" + }, + { + "rshares": "50563376844", + "voter": "gomeravibz" + }, + { + "rshares": "2298283061", + "voter": "taker" + }, + { + "rshares": "4238154544", + "voter": "nekromarinist" + }, + { + "rshares": "230729901", + "voter": "frozendota" + }, + { + "rshares": "14753485936", + "voter": "felixxx" + }, + { + "rshares": "9904971006", + "voter": "dumar022" + }, + { + "rshares": "2236125772", + "voter": "merej99" + }, + { + "rshares": "1116584393219", + "voter": "laonie" + }, + { + "rshares": "23391691291", + "voter": "rawnetics" + }, + { + "rshares": "47378225109", + "voter": "capitalism" + }, + { + "rshares": "72994310", + "voter": "always1success" + }, + { + "rshares": "11693177698", + "voter": "thebluepanda" + }, + { + "rshares": "22955094272", + "voter": "laonie1" + }, + { + "rshares": "23470889026", + "voter": "laonie2" + }, + { + "rshares": "23479197538", + "voter": "laonie3" + }, + { + "rshares": "23907912804", + "voter": "laoyao" + }, + { + "rshares": "37203693135", + "voter": "myfirst" + }, + { + "rshares": "226716353883", + "voter": "somebody" + }, + { + "rshares": "8719381987", + "voter": "flysaga" + }, + { + "rshares": "4930352522", + "voter": "brendio" + }, + { + "rshares": "2082768176", + "voter": "gmurph" + }, + { + "rshares": "75896047", + "voter": "kurzer42" + }, + { + "rshares": "50083801467", + "voter": "midnightoil" + }, + { + "rshares": "2375155298", + "voter": "kalimor" + }, + { + "rshares": "85931785", + "voter": "coderg" + }, + { + "rshares": "4371109343", + "voter": "ullikume" + }, + { + "rshares": "50565616", + "voter": "michellek" + }, + { + "rshares": "23474742068", + "voter": "laonie4" + }, + { + "rshares": "23472418592", + "voter": "laonie5" + }, + { + "rshares": "23469546880", + "voter": "laonie6" + }, + { + "rshares": "23465711623", + "voter": "laonie7" + }, + { + "rshares": "3820532578", + "voter": "kurtbeil" + }, + { + "rshares": "23462236775", + "voter": "laonie8" + }, + { + "rshares": "23459668262", + "voter": "laonie9" + }, + { + "rshares": "2440083379", + "voter": "steemleak" + }, + { + "rshares": "112055912400", + "voter": "thisisbenbrick" + }, + { + "rshares": "125244617154", + "voter": "xiaohui" + }, + { + "rshares": "21110659306", + "voter": "jphamer1" + }, + { + "rshares": "94018543", + "voter": "bigsambucca" + }, + { + "rshares": "5946773586", + "voter": "elfkitchen" + }, + { + "rshares": "5766554064", + "voter": "oflyhigh" + }, + { + "rshares": "2142137848", + "voter": "paynode" + }, + { + "rshares": "62525016", + "voter": "nickche" + }, + { + "rshares": "303568520", + "voter": "rusteller" + }, + { + "rshares": "260000341079", + "voter": "sirwinchester" + }, + { + "rshares": "4028395316", + "voter": "xiaokongcom" + }, + { + "rshares": "12683521359", + "voter": "gargon" + }, + { + "rshares": "2305504187", + "voter": "pgarcgo" + }, + { + "rshares": "2447938775", + "voter": "future24" + }, + { + "rshares": "8120387338", + "voter": "xianjun" + }, + { + "rshares": "7546495705", + "voter": "lgm-1" + }, + { + "rshares": "77724719", + "voter": "evgenyche" + }, + { + "rshares": "69130289", + "voter": "stevescriber" + }, + { + "rshares": "3277990744", + "voter": "bledarus" + }, + { + "rshares": "50027573", + "voter": "loli" + }, + { + "rshares": "89195680289", + "voter": "miacats" + }, + { + "rshares": "52419023", + "voter": "nano2nd" + }, + { + "rshares": "531944476", + "voter": "microluck" + }, + { + "rshares": "77220767", + "voter": "razberrijam" + }, + { + "rshares": "1952786674", + "voter": "chinadaily" + }, + { + "rshares": "13869624454", + "voter": "kyriacos" + }, + { + "rshares": "36244326905", + "voter": "thecurator" + }, + { + "rshares": "59021275", + "voter": "cryptoblu" + }, + { + "rshares": "59014859", + "voter": "instructor" + }, + { + "rshares": "739426684571", + "voter": "dollarvigilante" + }, + { + "rshares": "93497889783", + "voter": "anotherjoe" + }, + { + "rshares": "7166212158", + "voter": "solarguy" + }, + { + "rshares": "3897735456", + "voter": "lamech-m" + }, + { + "rshares": "84681497836", + "voter": "serejandmyself" + }, + { + "rshares": "9544116466", + "voter": "mrgrey" + }, + { + "rshares": "728730693", + "voter": "alexma3x" + }, + { + "rshares": "9825243280", + "voter": "gvargas123" + }, + { + "rshares": "13829552678", + "voter": "cryptomancer" + }, + { + "rshares": "58964015", + "voter": "dimitriy" + }, + { + "rshares": "23453540976", + "voter": "laonie10" + }, + { + "rshares": "604185913", + "voter": "wuyueling" + }, + { + "rshares": "73276984296", + "voter": "sweetsssj" + }, + { + "rshares": "2803446535", + "voter": "netaterra" + }, + { + "rshares": "50816343", + "voter": "bitchplease" + }, + { + "rshares": "92899380169", + "voter": "barrycooper" + }, + { + "rshares": "79979619", + "voter": "joelbow" + }, + { + "rshares": "11300097831", + "voter": "sethlinson" + }, + { + "rshares": "29734500129", + "voter": "hilarski" + }, + { + "rshares": "2392467864", + "voter": "shadowspub" + }, + { + "rshares": "267071524484", + "voter": "oldtimer" + }, + { + "rshares": "32411487065", + "voter": "daut44" + }, + { + "rshares": "4580262873", + "voter": "steemitpatina" + }, + { + "rshares": "4768611178", + "voter": "fat-like-buddha" + }, + { + "rshares": "55859919", + "voter": "rickmiller" + }, + { + "rshares": "1233668048", + "voter": "lenar" + }, + { + "rshares": "2076202607", + "voter": "cryptoeasy" + }, + { + "rshares": "5154805617", + "voter": "nulliusinverba" + }, + { + "rshares": "110647858832", + "voter": "shenanigator" + }, + { + "rshares": "2908012841", + "voter": "daveks" + }, + { + "rshares": "7471182625", + "voter": "einsteinpotsdam" + }, + { + "rshares": "23133191472", + "voter": "laonie11" + }, + { + "rshares": "1552512887", + "voter": "davidjkelley" + }, + { + "rshares": "1878628053", + "voter": "mobios" + }, + { + "rshares": "20853973484", + "voter": "sponge-bob" + }, + { + "rshares": "4324039528", + "voter": "l0k1" + }, + { + "rshares": "14886230314", + "voter": "digital-wisdom" + }, + { + "rshares": "3547902817", + "voter": "ethical-ai" + }, + { + "rshares": "50784892", + "voter": "freesteem" + }, + { + "rshares": "6531322926", + "voter": "jwaser" + }, + { + "rshares": "161709465048", + "voter": "thecyclist" + }, + { + "rshares": "1018513187", + "voter": "zettar" + }, + { + "rshares": "122271956", + "voter": "tito-baron" + }, + { + "rshares": "1735431749", + "voter": "kiwideb" + }, + { + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "rshares": "2558000160", + "voter": "bwaser" + }, + { + "rshares": "5773395051", + "voter": "dexter-k" + }, + { + "rshares": "50751176", + "voter": "roadhog" + }, + { + "rshares": "2201645172", + "voter": "alina1" + }, + { + "rshares": "50639382", + "voter": "doggnostic" + }, + { + "rshares": "644579979", + "voter": "ct-gurus" + }, + { + "rshares": "50377764", + "voter": "jenny-talls" + }, + { + "rshares": "386792765707", + "voter": "charlieshrem" + }, + { + "rshares": "7681172153", + "voter": "mariandavp" + }, + { + "rshares": "60088527835", + "voter": "tracemayer" + }, + { + "rshares": "20817850462", + "voter": "brains" + }, + { + "rshares": "50210467", + "voter": "post-successful" + }, + { + "rshares": "1049744855", + "voter": "positivesteem" + }, + { + "rshares": "5470937952", + "voter": "chick1" + }, + { + "rshares": "1735164858", + "voter": "sens" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "503052886", + "voter": "echoesinthemind" + }, + { + "rshares": "57534146", + "voter": "freebornangel" + }, + { + "rshares": "2084741030", + "voter": "steemsquad" + }, + { + "rshares": "255505026", + "voter": "anomaly" + }, + { + "rshares": "2293549771", + "voter": "ellepdub" + }, + { + "rshares": "1550172009", + "voter": "allesgruen" + }, + { + "rshares": "59178617", + "voter": "inarix03" + }, + { + "rshares": "4725653598", + "voter": "michelle.gent" + }, + { + "rshares": "11523640324", + "voter": "herpetologyguy" + }, + { + "rshares": "54452104", + "voter": "drac59" + }, + { + "rshares": "4605288518", + "voter": "morgan.waser" + }, + { + "rshares": "50235850", + "voter": "billkappa442" + }, + { + "rshares": "50233449", + "voter": "teemsteem" + }, + { + "rshares": "51235131", + "voter": "glassheart" + }, + { + "rshares": "51227561", + "voter": "battalar" + }, + { + "rshares": "51141851", + "voter": "slow" + }, + { + "rshares": "50975390", + "voter": "steemprincess" + }, + { + "rshares": "57373409", + "voter": "teo" + }, + { + "rshares": "50873654", + "voter": "palladium" + }, + { + "rshares": "1317053201", + "voter": "aksinya" + }, + { + "rshares": "50570250", + "voter": "ziggo" + }, + { + "rshares": "50538694", + "voter": "fenix" + }, + { + "rshares": "50536471", + "voter": "twistys" + }, + { + "rshares": "810369666", + "voter": "bapparabi" + }, + { + "rshares": "50479027", + "voter": "sunlight" + }, + { + "rshares": "9346140667", + "voter": "luzcypher" + }, + { + "rshares": "166200503", + "voter": "haddock" + }, + { + "rshares": "3447563868", + "voter": "strong-ai" + }, + { + "rshares": "159723319", + "voter": "ctu" + }, + { + "rshares": "1507439774", + "voter": "yanik" + }, + { + "rshares": "1319385375", + "voter": "rusteemitblog" + }, + { + "rshares": "4636706408", + "voter": "jennane" + }, + { + "rshares": "149130097", + "voter": "ndea30" + }, + { + "rshares": "149123370", + "voter": "domenico" + }, + { + "rshares": "444421238", + "voter": "witchcraftblog" + }, + { + "rshares": "148337519", + "voter": "serena199" + }, + { + "rshares": "148308392", + "voter": "gia7" + }, + { + "rshares": "160773127", + "voter": "animal" + }, + { + "rshares": "147864891", + "voter": "richie4" + }, + { + "rshares": "147806968", + "voter": "coraline88" + }, + { + "rshares": "160319579", + "voter": "cybergirls" + }, + { + "rshares": "160260561", + "voter": "rage" + }, + { + "rshares": "147559003", + "voter": "harlen" + }, + { + "rshares": "147523175", + "voter": "yanuel" + }, + { + "rshares": "147475911", + "voter": "daritza" + }, + { + "rshares": "159984914", + "voter": "correct" + }, + { + "rshares": "156411729", + "voter": "blender" + }, + { + "rshares": "159318360", + "voter": "stimmt" + }, + { + "rshares": "158732321", + "voter": "steemwallet" + }, + { + "rshares": "28919059756", + "voter": "goldmatters" + }, + { + "rshares": "71720421", + "voter": "dealzgal" + }, + { + "rshares": "77287933", + "voter": "storage" + }, + { + "rshares": "184381906", + "voter": "antaja" + }, + { + "rshares": "154503543", + "voter": "steemdesigner" + }, + { + "rshares": "329629477", + "voter": "aldentan" + }, + { + "rshares": "61536953", + "voter": "blackmarket" + }, + { + "rshares": "67683958", + "voter": "gifts" + }, + { + "rshares": "91120780", + "voter": "expat" + }, + { + "rshares": "134906258", + "voter": "steemtrail" + }, + { + "rshares": "100289745", + "voter": "paulocouto" + }, + { + "rshares": "138917685", + "voter": "sawgunner13" + }, + { + "rshares": "1593664040", + "voter": "steemlift" + } + ], + "author": "kevinwong", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "
https://s16.postimg.org/5csp5ocf9/kevv.jpg
\n\nHere I am spending the night in the darkness of my bedroom. Dog's snoring right beside me, his head resting on my chest. Feeling like I'm in some prologue of a cyberpunk story. Anyway, surfing on Steemit mobile is actually quite decent, despite the inadequacy of certain types of tables and media not showing up properly on screen.\n\nDecided to write this after going through some dramatic commentaries on Steemit that happened for the past few days. Mostly about ideological disagreements, and especially, overcompensation of posts. While I consider myself pretty critical, I usually opt out of direct, in-your-face type of confrontations. I prefer to plan and pick my own battles, having learned out of experience.\n\nBecause personally, I've never come across any situation that immediately improves itself after insults are thrown around. No one is going to admit wrong right away. Everyone's always right in their own world, and that's particularly true with the presence of an opposing voice. And it doesn't matter how zen one may be. No one's a perfect saint. Everyone has a breaking point. \n\nYup, I've snapped before, more than enough times to know this little fact of life. Nothing good comes out of throwing a fit (well not as much as can be). Sure, our message, our version of truth should be upheld. But there are better ways of fighting the good fight.. maybe like what I'm trying to do with this post right now. So what am I trying to address here?\n\n---------------------------\n# Plan your battles - don't join someone else's!\n
https://s10.postimg.org/ntels66d5/planning.jpg
\nThere was [a post on Steemit](https://steemit.com/anarchy/@kennyskitchen/the-40-anarchists-you-want-to-be-following-on-steemit) a while ago that labelled me an anarchist. Am I? Maybe I am. Sure, I'm against big, centralised governments. I may even detest the inherent thieving practices of big brother. But I'm still running a music event company - there are legal matters that I still need to run by government offices, purely out of safety and security reasons.\n\nYou may argue that it's perverted that I'm using an intrinsically violent agent (namely, The Government and The Police State) to secure the well-being of my business customers. Next I'll ask - can we have a decentralised free market doing music events with all the right securities? That's what my company, [Hybrid Entertainment](https://steemit.com/steemit-marketing/@kevinwong/our-next-dance-music-event-psychedelic-trance-some-steemit-love) partly aims to do. It's a learning process. \n\nFor now, we still need to use the existing structures of Old, Big Government.. while we find ways to transition out of such dependence. Fight too hard and you'll get clamped down, thrown out of the game. You can't do much when you're out of the game, so stay in it! Take the time to plan your battles, dear hot-blooded confrontationists (if that's even a word).\n\nSure, the world needs you to say things as they are. But hearing the painful truth is almost like violence itself. No one likes that, no matter which side of a dispute. Peace also involves peace of mind. It's a much longer game - it comes with the territory. You're already in someone else's fight once you get into war. Only get into war if you're the big guy. The small guy is always the loser - the unwilling pawn. Think about this in scope of what's happening all around the world, even on Steemit.\n\nDon't be a zealot. There are dangers of being too far left, or too far right. Find the middle way. All you need is another perspective. Some people may be asswipes, but goodness is omnipresent if the conditions are right.\n\nAnd that's how you plan your battles - take the time to do it right. \n\nIn perspective of my generally apolitical position on Steemit, I tend to find better ways to contribute instead of lashing out on another user. Sure, I have my dissatisfaction about some author rewards and posting models from time to time. However, I tried putting effort into building better models and figuring out ways to add substantial value into the ecosystem. Eventually, some of us gravitated towards a loose goal of rewarding diversity by combing contents on Steemit on a daily basis.\n\nThere are now epic giant hidden-gem megaposts on Steemit - like this one from [Project Curie](https://steemit.com/@curie) and [Robinhood Whale](https://steemit.com/@robinhoodwhale). Better coverage, better quality, better value - in so many ways. This is the free-market reaction to solo authored hidden-gem posts of early Steemit. No doubt that everything evolves over time. \n\nKnowing that value is subjective, I have always refrained from losing my cool. Even here on Steemit. \n\n**I'm the small fish and I have to plan my battles!**\n\n---------------------------------------\n\n# Don't freaking milk it!\n\n
https://s3.postimg.org/6ne6t272b/milk.jpg
\nThere are big reasons why most of us don't really like governments. Greed and corruption. Needless to say, the crowd easily picks up on this when insubstantial effort is rewarded handsomely. By all means, that's as subjective as can be. What's not (very) subjective, however, is if one continues to milk it, even despite public disapproval. \n\nThis happens all around the world. Don't oversell. You'll lose reputation if you are obviously **milking it**!\n\nSure, you may gain new followers.. newly inspired and freshly impressed. But old eyes grow weary. People are watching, and your social value fluctuates all the time. You can't please everyone, but you can try the **art of not milking the shit out of the system**.\n\nIt's a good business practice. It's a good personal conduct. And it works on Steemit.\n\nThat's a reason why I'm also posting lesser (other than plainly having a huge writer's block, reserving myself from random shitposting). Now I'm only writing when I really think I have something good to add as a post. As I'm partly dependent on Steemit, I've strategized a lil, refraining from appearing to be **milking it**, seeking modes of substantial contribution behind the scenes to compensate for the awesome support that has been given to me on this platform.\n\nIf you are suddenly rewarded thousands for a post - ask yourself. Is that post worth that much? Heck, I don't know if my top philosophical post is worth 4,000 bucks, but I know I've put long hours in it, enough to avoid milking and recycling the same content. Instead, I try to put more effort in other areas of the ecosystem to balance out the lopsided reward.\n\nThe blockchain is transparent. It's easy to find out if you're milking it. To avoid seeming like you're milking it - just be honest and ask yourself the right questions! Then, do the right thing!\n\n**Like life, like Steemit - try to give more than you can take. Don't. Freaking. Milk It.**\n\n----------------------------------\n\n# Take time to build, or take time to exploit?\n
https://img1.steemit.com/0x0/http://i.imgur.com/T9b4dDQ.jpg
\n
By Steemit's talented artist @lgm-1
\n\nNaturally, I'd say take time to build. Once you're caught exploiting the system, in life or on Steemit, you're lose reputation whether or not if its digitally measurable. You can create as many accounts as you want and find a million ways to exploit everything, but ask yourself - what are you building?\n\nHere are some tips for maintaining reputation on Steemit:-\n- Steemit's a mutual aid society. While posts can be about anything, note there's a limited amount of funds going around each day. It's obvious that your reputation is at stake if you have somehow managed to acquire good support, but not giving back substantially.\n- Tags are like real estate. Choose appropriately. An example is if you're writing your opinions on something rather meta, I think it's prudent to respect the scientific community. For example in [my article about consciousness](https://steemit.com/consciousness/@kevinwong/let-s-talk-about-consciousness-wtf-is-it), I've deliberately used the ***pseudoscience*** tag, no matter how right I think I could be. I clearly think about such topics often, but I never put myself in research labs knowing about consciousness well enough to indicate that I am the master of that domain.\n- Follow up on your promises. Communicate transparently.\n- Put in more effort, visibly and even behind the scenes when you manage to acquire good payouts.\n- Try to follow others. Curate and also support other members.\n- Plan your battles and don't milk it! And also, celebrity attitudes won't last long here if you're not giving back to the community. @dollarvigilante is doing this right - he's aiding others and even curating frequently on his free time!\n- Again, in general, give more than you can take.\n\n### Reputation is everything - for survival, for change in a social landscape.\n\n*Note: There is some form of censorship of the mind when it comes to chance of interruption from higher powers. It's the same everywhere. You just have to play your cards right, opting for different methods, different approaches. It's not really a systems-problem. It's a people-problem, as always. Never leave an opening for others to destroy your reputation.*\n\n-----------------------------------------------\n
Stock photos courtesy of https://pixabay.com/
\n\n-----------------------------------------------\n
Follow me @kevinwong
\n-------------------------------------------------", + "category": "guide", + "children": 53, + "created": "2016-09-14T22:00:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s16.postimg.org/5csp5ocf9/kevv.jpg", + "https://s10.postimg.org/ntels66d5/planning.jpg", + "https://s3.postimg.org/6ne6t272b/milk.jpg", + "https://img1.steemit.com/0x0/http://i.imgur.com/T9b4dDQ.jpg" ], - "author": "good-karma", - "author_payout_value": "0.000 HBD", - "author_reputation": 76.74, - "author_role": "mod", - "author_title": "Founder of Esteem", - "beneficiaries": [ - { - "account": "esteemapp", - "weight": 300 - } + "links": [ + "https://steemit.com/anarchy/@kennyskitchen/the-40-anarchists-you-want-to-be-following-on-steemit", + "https://steemit.com/steemit-marketing/@kevinwong/our-next-dance-music-event-psychedelic-trance-some-steemit-love", + "https://steemit.com/@curie", + "https://steemit.com/@robinhoodwhale", + "https://steemit.com/consciousness/@kevinwong/let-s-talk-about-consciousness-wtf-is-it", + "https://pixabay.com/" ], - "blacklists": [], - "body": "Hello everyone,\n\nEarlier in [Hivesigner updates](/hive/@good-karma/hivesigner-ongoing-development-and-improvement), I mentioned that [integrating Hivesigner into Hive.blog](https://gitlab.syncad.com/hive/condenser/-/issues/43) would be huge steps for giving similar user experience across Hive applications.\n\nOne of the first steps were to solve Imagehoster issue or rather expand it to allow image uploads if user Logged in via Hivesigner.\n\n![](https://images.ecency.com/p/Y2iXpRRkNSnseh3NuL6KUBitJTXrc5K2vbTzBseGEENcE)\n\n## Imagehoster + Hivesigner\n\nImagehoster works by signing image file with user's private key and then use signature to upload image file. On server side, signature is verified with image file content and accepted/stored.\n\nHivesigner being OAuth2 works slightly different, so we couldn't sign the image file before uploading to Imagehoster because we don't have access to user's private keys. But each application has `accessToken` issued by Hivesigner with user's permission. [I just created Merge Request into Imagehoster](https://gitlab.syncad.com/hive/imagehoster/-/merge_requests/1) which uses `accessToken` for verifying application, user account and uploads image.\n\nOnce accepted by @blocktrades team, we can start working on next step [Condenser Hivesigner integration](https://gitlab.syncad.com/hive/condenser/-/issues/43). \n\n## Condenser Bounty\n\nIf you are familiar with condenser source code: https://gitlab.syncad.com/hive/condenser, here is a challenge and programming task to get first hand experience on how Condenser and Hivesigner works, earn extra reward while learning.\n\nAnnouncing Bounty for integrating Hivesigner OAuth2 into hive.blog and wallet.hive.blog.\n\n**Bounty prize: 1000 HBD**\nRelated issue: https://gitlab.syncad.com/hive/condenser/-/issues/43\n\nIntegration examples to get started: Esteem/Ecency [desktop](https://github.com/esteemapp/esteem-surfer/blob/master/app/helpers/sc.js) and [mobile](https://github.com/esteemapp/esteem-mobile/blob/development/src/providers/steem/steemConnect.js) apps, as well as https://demo.hivesigner.com.\n\n\nIf anyone interested adding into prize pool, please feel free to reach out or leave a comment.\n\n# Hive on!\n\n## Support Hivesigner\n\n- [Read details of Hivesigner proposal](https://esteem.app/hive/@good-karma/hivesigner-ongoing-development-and-improvement)\n- [Vote for proposal using Hivesigner](https://hivesigner.com/sign/update-proposal-votes?proposal_ids=%5B88%5D&approve=true)\n- PeakD: https://peakd.com/proposals/88\n- HiveBlog Wallet: https://wallet.hive.blog/proposals\n- Discord: https://discord.gg/pNJn7wh", - "category": "hive-139531", - "children": 5, - "community": "hive-139531", - "community_title": "HiveDevs", - "created": "2020-07-07T16:03:48", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "esteem/2.2.7-surfer", - "community": "esteem.app", - "format": "markdown+html", - "links": [ - "https://gitlab.syncad.com/hive/condenser/-/issues/43", - "https://images.ecency.com/p/Y2iXpRRkNSnseh3NuL6KUBitJTXrc5K2vbTzBseGEENcE", - "https://gitlab.syncad.com/hive/imagehoster/-/merge_requests/1", - "https://gitlab.syncad.com/hive/condenser/-/issues/43", - "https://gitlab.syncad.com/hive/condenser", - "https://gitlab.syncad.com/hive/condenser/-/issues/43", - "https://github.com/esteemapp/esteem-surfer/blob/master/app/helpers/sc.js", - "https://github.com/esteemapp/esteem-mobile/blob/development/src/providers/steem/steemConnect.js", - "https://demo.hivesigner.com", - "https://esteem.app/hive/@good-karma/hivesigner-ongoing-development-and-improvement", - "https://hivesigner.com/sign/update-proposal-votes?proposal_ids=%5B88%5D&approve=true", - "https://peakd.com/proposals/88", - "https://wallet.hive.blog/proposals", - "https://discord.gg/pNJn7wh" - ], - "tags": [ - "hive-139531", - "hivesigner", - "imagehoster", - "hive", - "development", - "upload", - "dapps" - ], - "users": [ - "blocktrades" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 302305073292290, - "payout": 124.996, - "payout_at": "2020-07-14T16:03:48", - "pending_payout_value": "124.996 HBD", - "percent_hbd": 10000, - "permlink": "imagehoster-hivesigner-and-condenser-bounty", - "post_id": 86934500, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 465 - }, - "title": "Imagehoster + Hivesigner and Condenser bounty", - "updated": "2020-07-07T18:16:27", - "url": "/hive-139531/@good-karma/imagehoster-hivesigner-and-condenser-bounty" + "tags": [ + "guide", + "life", + "lifehack", + "reputation", + "craigrant" + ], + "users": [ + "lgm-1", + "dollarvigilante", + "kevinwong" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 115120672136759, + "payout": 755.208, + "payout_at": "2016-09-16T04:43:13", + "pending_payout_value": "755.208 HBD", + "percent_hbd": 10000, + "permlink": "the-art-of-maintaining-reputation-plan-your-battles-and-don-t-milk-it", + "post_id": 952897, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 380 + }, + "title": "The Art of Maintaining Reputation: Plan Your Battles and Don't Milk It!", + "updated": "2016-09-15T07:45:57", + "url": "/guide/@kevinwong/the-art-of-maintaining-reputation-plan-your-battles-and-don-t-milk-it" }, { - "active_votes": [ - { - "rshares": "195445517029450", - "voter": "blocktrades" - }, - { - "rshares": "37437184382", - "voter": "tombstone" - }, - { - "rshares": "6235077814968", - "voter": "acidyo" - }, - { - "rshares": "853064859824", - "voter": "kevinwong" - }, - { - "rshares": "533434900", - "voter": "kosimoos" - }, - { - "rshares": "3410551227", - "voter": "mrwang" - }, - { - "rshares": "63050623550", - "voter": "arcange" - }, - { - "rshares": "5021974125", - "voter": "sharker" - }, - { - "rshares": "3551444099", - "voter": "arconite" - }, - { - "rshares": "1606141452", - "voter": "raphaelle" - }, - { - "rshares": "4019221485", - "voter": "kibela" - }, - { - "rshares": "539052817", - "voter": "alinalazareva" - }, - { - "rshares": "29567796081", - "voter": "fooblic" - }, - { - "rshares": "9460419041", - "voter": "anech512" - }, - { - "rshares": "111203549746", - "voter": "frankbacon" - }, - { - "rshares": "92747144611", - "voter": "ixindamix" - }, - { - "rshares": "8669866601", - "voter": "cardboard" - }, - { - "rshares": "1565254098", - "voter": "soushi888" - }, - { - "rshares": "21726964805", - "voter": "rahul.stan" - }, - { - "rshares": "155852686573", - "voter": "steemitboard" - }, - { - "rshares": "682752314", - "voter": "lugaxker" - }, - { - "rshares": "23355454961", - "voter": "valued-customer" - }, - { - "rshares": "274168567415", - "voter": "drag33" - }, - { - "rshares": "4947891496976", - "voter": "nrg" - }, - { - "rshares": "29898861060", - "voter": "steeminator3000" - }, - { - "rshares": "132580289535", - "voter": "maxer27" - }, - { - "rshares": "30991338386", - "voter": "sam99" - }, - { - "rshares": "14212908975", - "voter": "d-pend" - }, - { - "rshares": "2692188257", - "voter": "fancybrothers" - }, - { - "rshares": "78627390582", - "voter": "goldkey" - }, - { - "rshares": "1311625287", - "voter": "wargof" - }, - { - "rshares": "1275260631392", - "voter": "steemvote" - }, - { - "rshares": "49942820207", - "voter": "shasta" - }, - { - "rshares": "259373611660", - "voter": "investingpennies" - }, - { - "rshares": "1407859255", - "voter": "steemik" - }, - { - "rshares": "6457936294", - "voter": "francosteemvotes" - }, - { - "rshares": "26748901378", - "voter": "santigs" - }, - { - "rshares": "52642605048", - "voter": "bashadow" - }, - { - "rshares": "1125210601", - "voter": "evildido" - }, - { - "rshares": "3795367211", - "voter": "aidefr" - }, - { - "rshares": "53885179", - "voter": "steemsql" - }, - { - "rshares": "16360446921", - "voter": "chireerocks" - }, - { - "rshares": "5318172576", - "voter": "robotics101" - }, - { - "rshares": "1257341204", - "voter": "lpv" - }, - { - "rshares": "88356952530", - "voter": "lyon89" - }, - { - "rshares": "6764339287", - "voter": "as31" - }, - { - "rshares": "19959881467", - "voter": "spiritabsolute" - }, - { - "rshares": "6003888584", - "voter": "tomatom" - }, - { - "rshares": "1709089989", - "voter": "fourfourfun" - }, - { - "rshares": "3717836816", - "voter": "duke77" - }, - { - "rshares": "25627909991", - "voter": "gabrielatravels" - }, - { - "rshares": "216747221503", - "voter": "alexanderfluke" - }, - { - "rshares": "153857583608", - "voter": "mmmmkkkk311" - }, - { - "rshares": "1391595067", - "voter": "dragibusss" - }, - { - "rshares": "12921643067", - "voter": "a-quarius" - }, - { - "rshares": "4143623264", - "voter": "psos" - }, - { - "rshares": "552963555", - "voter": "cfminer" - }, - { - "rshares": "1336167026", - "voter": "voltagrou" - }, - { - "rshares": "620890643", - "voter": "gribouille" - }, - { - "rshares": "3239051938841", - "voter": "holger80" - }, - { - "rshares": "7376062209", - "voter": "orlandumike" - }, - { - "rshares": "872948502", - "voter": "gavinatorial" - }, - { - "rshares": "11493324856", - "voter": "chalacuna" - }, - { - "rshares": "1821016653", - "voter": "minerspost" - }, - { - "rshares": "21852975090", - "voter": "photohunt" - }, - { - "rshares": "1086259701", - "voter": "photohunter4" - }, - { - "rshares": "6121444799", - "voter": "frassman" - }, - { - "rshares": "102895426172", - "voter": "outlinez" - }, - { - "rshares": "901826876", - "voter": "marcus0alameda" - }, - { - "rshares": "2601908273", - "voter": "onepercentbetter" - }, - { - "rshares": "11318853008", - "voter": "goldvault" - }, - { - "rshares": "384873793", - "voter": "sekhet" - }, - { - "rshares": "1092557075666", - "voter": "jkramer" - }, - { - "rshares": "1500244757", - "voter": "memepress" - }, - { - "rshares": "1023257936", - "voter": "imcore" - }, - { - "rshares": "42557398813", - "voter": "nancybriti" - }, - { - "rshares": "169273801951", - "voter": "kgakakillerg" - }, - { - "rshares": "8380401434919", - "voter": "julialee66" - }, - { - "rshares": "4788912612", - "voter": "josebenavente" - }, - { - "rshares": "40400407328", - "voter": "promobot" - }, - { - "rshares": "2838568521", - "voter": "mrs.goldkey" - }, - { - "rshares": "606031778", - "voter": "sayago" - }, - { - "rshares": "13986305231", - "voter": "aliriera" - }, - { - "rshares": "1572549003215", - "voter": "solarwarrior" - }, - { - "rshares": "498800536", - "voter": "merlion" - }, - { - "rshares": "109254830743", - "voter": "simplegame" - }, - { - "rshares": "677406955", - "voter": "revueh" - }, - { - "rshares": "24413325044", - "voter": "urdreamscometrue" - }, - { - "rshares": "35653091707", - "voter": "thehive" - }, - { - "rshares": "754462606", - "voter": "arrixion" - }, - { - "rshares": "138928667143", - "voter": "harkar" - }, - { - "rshares": "2566447623", - "voter": "sughey" - }, - { - "rshares": "58059146484", - "voter": "idakarlsen" - }, - { - "rshares": "534385275", - "voter": "clement.poiret" - }, - { - "rshares": "19565940786", - "voter": "fullnodeupdate" - }, - { - "rshares": "7852798488", - "voter": "pboulet" - }, - { - "rshares": "12950441", - "voter": "laissez-faire" - }, - { - "rshares": "2886514957", - "voter": "silverkey" - }, - { - "rshares": "12311223293", - "voter": "silvervault" - }, - { - "rshares": "4804059307", - "voter": "cryptycoon" - }, - { - "rshares": "5061318118", - "voter": "cryptoclerk" - }, - { - "rshares": "39898513297", - "voter": "mister-meeseeks" - }, - { - "rshares": "4263060681", - "voter": "jackofcrows" - }, - { - "rshares": "9339027669", - "voter": "steemitcuration" - }, - { - "rshares": "1745777616", - "voter": "dubignyp" - }, - { - "rshares": "1257828660882", - "voter": "brianoflondon" - }, - { - "rshares": "1976442843", - "voter": "onze" - }, - { - "rshares": "1482290943", - "voter": "solarphasing" - }, - { - "rshares": "3734196070", - "voter": "iovoccae" - }, - { - "rshares": "-78815199", - "voter": "dein-problem" - }, - { - "rshares": "2110159699", - "voter": "unknownonline" - }, - { - "rshares": "3719824761", - "voter": "steemlandia" - }, - { - "rshares": "718076878", - "voter": "seekingalpha" - }, - { - "rshares": "340566494082", - "voter": "ctime" - }, - { - "rshares": "2811677631", - "voter": "goodcontentbot" - }, - { - "rshares": "54198084", - "voter": "hungrybear" - }, - { - "rshares": "56471839639", - "voter": "doze" - }, - { - "rshares": "22991352676", - "voter": "maryincryptoland" - }, - { - "rshares": "2485267405", - "voter": "helgalubevi" - }, - { - "rshares": "624962544346", - "voter": "scholaris" - }, - { - "rshares": "2531752129", - "voter": "bosferi123" - }, - { - "rshares": "1944359467", - "voter": "hjlee119" - }, - { - "rshares": "4613354678588", - "voter": "likwid" - }, - { - "rshares": "535026376", - "voter": "treze" - }, - { - "rshares": "24348705009", - "voter": "golden.future" - }, - { - "rshares": "2752300677", - "voter": "lrekt01" - }, - { - "rshares": "8100023887", - "voter": "luismar1978" - }, - { - "rshares": "510553506274", - "voter": "votebetting" - }, - { - "rshares": "28277014156", - "voter": "acta" - }, - { - "rshares": "19599953694", - "voter": "the-table" - }, - { - "rshares": "3494997675", - "voter": "hongdangmu" - }, - { - "rshares": "100421481405", - "voter": "silverquest" - }, - { - "rshares": "6406421046", - "voter": "blocktvnews" - }, - { - "rshares": "8871278130", - "voter": "fearlessgu" - }, - { - "rshares": "142211011972", - "voter": "max.curation" - }, - { - "rshares": "2845551546", - "voter": "redwarbull" - }, - { - "rshares": "4366275774", - "voter": "dec.entralized" - }, - { - "rshares": "337178204", - "voter": "bela29" - }, - { - "rshares": "2074057004", - "voter": "bcm.dblog" - }, - { - "rshares": "635042011", - "voter": "aceh.point" - }, - { - "rshares": "43577050317", - "voter": "monica-ene" - }, - { - "rshares": "109299499829", - "voter": "fengchao" - }, - { - "rshares": "171277884762", - "voter": "hivebuzz" - }, - { - "rshares": "856700595668", - "voter": "laruche" - }, - { - "rshares": "1811768263", - "voter": "green-finger" - }, - { - "rshares": "11251086598", - "voter": "unknown0nline" - }, - { - "rshares": "1118751191004", - "voter": "softworld" - }, - { - "rshares": "802600846", - "voter": "sunsan" - }, - { - "rshares": "731915203", - "voter": "radio-quebec" - }, - { - "rshares": "838002361", - "voter": "marvschurchill1" - }, - { - "rshares": "925431858", - "voter": "hive.revolution" - }, - { - "rshares": "1469389745", - "voter": "ninnu" - }, - { - "rshares": "1799507065415", - "voter": "hive.curation" - }, - { - "rshares": "0", - "voter": "galaxy100" - }, - { - "rshares": "90359013280", - "voter": "ghaazi" - }, - { - "rshares": "528323912", - "voter": "mr-toke" - }, - { - "rshares": "1470558564", - "voter": "patronpass" - }, - { - "rshares": "696232350", - "voter": "comprendre.hive" - }, - { - "rshares": "2151978103", - "voter": "reza-shamim" - }, - { - "rshares": "922043503", - "voter": "plusvault" - }, - { - "rshares": "1237960102", - "voter": "hivebuilderteam" - }, - { - "rshares": "0", - "voter": "marsal100" - }, - { - "rshares": "0", - "voter": "bivashpaul1" - }, - { - "rshares": "0", - "voter": "veseq" - } + "active_votes": [ + { + "rshares": "27814176695531", + "voter": "dantheman" + }, + { + "rshares": "7145643497594", + "voter": "skywalker" + }, + { + "rshares": "1968124814276", + "voter": "badassmother" + }, + { + "rshares": "2052934239988", + "voter": "hr1" + }, + { + "rshares": "6596087814836", + "voter": "fuzzyvest" + }, + { + "rshares": "1337025448249", + "voter": "rossco99" + }, + { + "rshares": "22864938197", + "voter": "jaewoocho" + }, + { + "rshares": "1576018783851", + "voter": "joseph" + }, + { + "rshares": "466052314352", + "voter": "recursive2" + }, + { + "rshares": "636514783207", + "voter": "masteryoda" + }, + { + "rshares": "3120252422964", + "voter": "recursive" + }, + { + "rshares": "681020986865", + "voter": "boombastic" + }, + { + "rshares": "91328598326", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6959124583", + "voter": "bingo-0" + }, + { + "rshares": "1330868635495", + "voter": "steempower" + }, + { + "rshares": "445757361586", + "voter": "boatymcboatface" + }, + { + "rshares": "443132842669", + "voter": "officialfuzzy" + }, + { + "rshares": "9167255683", + "voter": "idol" + }, + { + "rshares": "18955732033", + "voter": "chitty" + }, + { + "rshares": "8232133931", + "voter": "unosuke" + }, + { + "rshares": "139694054199", + "voter": "chris4210" + }, + { + "rshares": "14501486968", + "voter": "valtr" + }, + { + "rshares": "1577916417", + "voter": "jocelyn" + }, + { + "rshares": "9604795718", + "voter": "gregory60" + }, + { + "rshares": "89897248149", + "voter": "eeks" + }, + { + "rshares": "24694558802", + "voter": "fkn" + }, + { + "rshares": "468281676", + "voter": "paco-steem" + }, + { + "rshares": "5641144936", + "voter": "spaninv" + }, + { + "rshares": "32459455171", + "voter": "elishagh1" + }, + { + "rshares": "8669787638", + "voter": "richman" + }, + { + "rshares": "584162335269", + "voter": "nanzo-scoop" + }, + { + "rshares": "469184158", + "voter": "jeffanthonyfds" + }, + { + "rshares": "10461841838", + "voter": "acidyo" + }, + { + "rshares": "36656769992", + "voter": "dan-atstarlite" + }, + { + "rshares": "177393957447", + "voter": "mummyimperfect" + }, + { + "rshares": "313687341", + "voter": "coar" + }, + { + "rshares": "106629500909", + "voter": "asch" + }, + { + "rshares": "1061210624", + "voter": "murh" + }, + { + "rshares": "6230682263", + "voter": "cryptofunk" + }, + { + "rshares": "579494558", + "voter": "kodi" + }, + { + "rshares": "2111403468", + "voter": "error" + }, + { + "rshares": "985518335179", + "voter": "cyber" + }, + { + "rshares": "61711048609", + "voter": "theshell" + }, + { + "rshares": "50879221096", + "voter": "ak2020" + }, + { + "rshares": "63100175656", + "voter": "justtryme90" + }, + { + "rshares": "400866642793", + "voter": "taoteh1221" + }, + { + "rshares": "410502622", + "voter": "applecrisp" + }, + { + "rshares": "365370465", + "voter": "stiletto" + }, + { + "rshares": "15787116636", + "voter": "zakharya" + }, + { + "rshares": "280678620376", + "voter": "trogdor" + }, + { + "rshares": "121380113922", + "voter": "geoffrey" + }, + { + "rshares": "208331842756", + "voter": "kimziv" + }, + { + "rshares": "76009124707", + "voter": "emily-cook" + }, + { + "rshares": "12064022115", + "voter": "primus" + }, + { + "rshares": "29635215678", + "voter": "acassity" + }, + { + "rshares": "280916636", + "voter": "ladyclair" + }, + { + "rshares": "19099829330", + "voter": "venuspcs" + }, + { + "rshares": "813595892", + "voter": "poias" + }, + { + "rshares": "7418976078", + "voter": "dasha" + }, + { + "rshares": "153697599394", + "voter": "asmolokalo" + }, + { + "rshares": "1642983170", + "voter": "gidlark" + }, + { + "rshares": "73849034695", + "voter": "rubybian" + }, + { + "rshares": "3058898852", + "voter": "getssidetracked" + }, + { + "rshares": "17903672525", + "voter": "konstantin" + }, + { + "rshares": "572413932", + "voter": "trees" + }, + { + "rshares": "83801390", + "voter": "strawhat" + }, + { + "rshares": "2597453094", + "voter": "romel" + }, + { + "rshares": "276570042", + "voter": "cryptochannel" + }, + { + "rshares": "120546538382", + "voter": "furion" + }, + { + "rshares": "6462652657", + "voter": "owdy" + }, + { + "rshares": "590190776", + "voter": "barbara2" + }, + { + "rshares": "642869652", + "voter": "ch0c0latechip" + }, + { + "rshares": "607124531", + "voter": "doge4lyf" + }, + { + "rshares": "18371164995", + "voter": "sebastien" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "14487855165", + "voter": "aaseb" + }, + { + "rshares": "4209499465", + "voter": "karen13" + }, + { + "rshares": "10646413479", + "voter": "deviedev" + }, + { + "rshares": "258981906731", + "voter": "nabilov" + }, + { + "rshares": "117757790207", + "voter": "pkattera" + }, + { + "rshares": "274155883", + "voter": "tinyhomeliving" + }, + { + "rshares": "55698224169", + "voter": "streetstyle" + }, + { + "rshares": "7313749376", + "voter": "lichtblick" + }, + { + "rshares": "35782652880", + "voter": "creemej" + }, + { + "rshares": "5726411049", + "voter": "btcbtcbtc20155" + }, + { + "rshares": "167298234999", + "voter": "blueorgy" + }, + { + "rshares": "4544488912", + "voter": "poseidon" + }, + { + "rshares": "7946556816", + "voter": "smolalit" + }, + { + "rshares": "3506024506", + "voter": "simon.braki.love" + }, + { + "rshares": "82781233416", + "voter": "thylbom" + }, + { + "rshares": "86528557116", + "voter": "rea" + }, + { + "rshares": "204615586375", + "voter": "jl777" + }, + { + "rshares": "20026634941", + "voter": "positive" + }, + { + "rshares": "35105434017", + "voter": "paquito" + }, + { + "rshares": "8507360175", + "voter": "fishborne" + }, + { + "rshares": "309088757", + "voter": "sergey44" + }, + { + "rshares": "17267159012", + "voter": "proto" + }, + { + "rshares": "34304658614", + "voter": "sisterholics" + }, + { + "rshares": "674282213", + "voter": "fnait" + }, + { + "rshares": "611258547", + "voter": "keepcalmand" + }, + { + "rshares": "42379649186", + "voter": "smailer" + }, + { + "rshares": "25636155654", + "voter": "pixielolz" + }, + { + "rshares": "149624601", + "voter": "steemster1" + }, + { + "rshares": "1033757233", + "voter": "neowenyuan27" + }, + { + "rshares": "3353832611", + "voter": "glitterpig" + }, + { + "rshares": "121680301", + "voter": "picker" + }, + { + "rshares": "896285424", + "voter": "metaflute" + }, + { + "rshares": "8734048037", + "voter": "taker" + }, + { + "rshares": "59219358", + "voter": "sharon" + }, + { + "rshares": "60342922", + "voter": "lillianjones" + }, + { + "rshares": "1213074787308", + "voter": "laonie" + }, + { + "rshares": "157504637007", + "voter": "twinner" + }, + { + "rshares": "4890234271", + "voter": "satoshifpv" + }, + { + "rshares": "11693771864", + "voter": "thebluepanda" + }, + { + "rshares": "42635136908", + "voter": "myfirst" + }, + { + "rshares": "252723433247", + "voter": "somebody" + }, + { + "rshares": "16251975438", + "voter": "sunshine" + }, + { + "rshares": "9691515710", + "voter": "flysaga" + }, + { + "rshares": "2501627790", + "voter": "gmurph" + }, + { + "rshares": "55828810753", + "voter": "midnightoil" + }, + { + "rshares": "84246848", + "voter": "coderg" + }, + { + "rshares": "4281232336", + "voter": "ullikume" + }, + { + "rshares": "139631233866", + "voter": "xiaohui" + }, + { + "rshares": "6952769870", + "voter": "elfkitchen" + }, + { + "rshares": "103387869456", + "voter": "joele" + }, + { + "rshares": "4365575224", + "voter": "xiaokongcom" + }, + { + "rshares": "1405383530", + "voter": "hms818" + }, + { + "rshares": "42833125455", + "voter": "nonlinearone" + }, + { + "rshares": "60819615", + "voter": "msjennifer" + }, + { + "rshares": "55925537", + "voter": "ciao" + }, + { + "rshares": "3033050865", + "voter": "jrcornel" + }, + { + "rshares": "55449983", + "voter": "steemo" + }, + { + "rshares": "9025821447", + "voter": "xianjun" + }, + { + "rshares": "55306941", + "voter": "steema" + }, + { + "rshares": "71282219", + "voter": "confucius" + }, + { + "rshares": "9729857687", + "voter": "mione" + }, + { + "rshares": "56157882", + "voter": "jarvis" + }, + { + "rshares": "591097626", + "voter": "microluck" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "54313084", + "voter": "fortuner" + }, + { + "rshares": "3286864056", + "voter": "macartem" + }, + { + "rshares": "9827647000", + "voter": "gvargas123" + }, + { + "rshares": "53056158", + "voter": "johnbyrd" + }, + { + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "rshares": "53037689", + "voter": "thermor" + }, + { + "rshares": "53048942", + "voter": "ficholl" + }, + { + "rshares": "53030738", + "voter": "widell" + }, + { + "rshares": "3635091595", + "voter": "movievertigo" + }, + { + "rshares": "52651308", + "voter": "revelbrooks" + }, + { + "rshares": "332237822", + "voter": "mrlogic" + }, + { + "rshares": "56654664918", + "voter": "mandibil" + }, + { + "rshares": "51562255", + "voter": "curpose" + }, + { + "rshares": "69986345", + "voter": "steembriefing" + }, + { + "rshares": "54612436", + "voter": "riv" + }, + { + "rshares": "56405368", + "voter": "stephenkendal" + }, + { + "rshares": "115288656029", + "voter": "shenanigator" + }, + { + "rshares": "2163490459", + "voter": "jeffreyahann" + }, + { + "rshares": "1857811307", + "voter": "funkywanderer" + }, + { + "rshares": "5053551216", + "voter": "richardcrill" + }, + { + "rshares": "51712804", + "voter": "troich" + }, + { + "rshares": "180241566", + "voter": "team101" + }, + { + "rshares": "51718188", + "voter": "crion" + }, + { + "rshares": "51388276", + "voter": "hitherise" + }, + { + "rshares": "51379706", + "voter": "wiss" + }, + { + "rshares": "54241809836", + "voter": "sponge-bob" + }, + { + "rshares": "52143228", + "voter": "stroully" + }, + { + "rshares": "53070013", + "voter": "apparat" + }, + { + "rshares": "51814474", + "voter": "thadm" + }, + { + "rshares": "51812703", + "voter": "prof" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "51465774", + "voter": "yorsens" + }, + { + "rshares": "3068760608", + "voter": "michaelmatthews" + }, + { + "rshares": "184881039384", + "voter": "asksisk" + }, + { + "rshares": "51154263", + "voter": "bane" + }, + { + "rshares": "51148009", + "voter": "vive" + }, + { + "rshares": "51142585", + "voter": "coad" + }, + { + "rshares": "232386397", + "voter": "pjo" + }, + { + "rshares": "51922012", + "voter": "sofa" + }, + { + "rshares": "330365849", + "voter": "panther" + }, + { + "rshares": "201122420257", + "voter": "doudou252666" + }, + { + "rshares": "59422248", + "voter": "plantbasedjunkie" + }, + { + "rshares": "55335930229", + "voter": "brains" + }, + { + "rshares": "51994517", + "voter": "ailo" + }, + { + "rshares": "1369339863", + "voter": "steemafon" + }, + { + "rshares": "339273477", + "voter": "anomaly" + }, + { + "rshares": "123155378", + "voter": "ola1" + }, + { + "rshares": "4647741844", + "voter": "michelle.gent" + }, + { + "rshares": "50441122", + "voter": "eavy" + }, + { + "rshares": "50454901", + "voter": "roto" + }, + { + "rshares": "70282046", + "voter": "mari5555na" + }, + { + "rshares": "50225780", + "voter": "steemq" + }, + { + "rshares": "50223099", + "voter": "battalar" + }, + { + "rshares": "51215236", + "voter": "deli" + }, + { + "rshares": "50875769", + "voter": "cyan" + }, + { + "rshares": "50540827", + "voter": "amstel" + }, + { + "rshares": "2216805889", + "voter": "bapparabi" + }, + { + "rshares": "247235040", + "voter": "darkminded153" + }, + { + "rshares": "72826233", + "voter": "igtes" + }, + { + "rshares": "144899746", + "voter": "buffett" + }, + { + "rshares": "2650993895", + "voter": "senseye" + }, + { + "rshares": "162911190", + "voter": "front" + }, + { + "rshares": "158676075", + "voter": "iberia" + }, + { + "rshares": "161218747", + "voter": "sdc" + }, + { + "rshares": "304461322", + "voter": "james1987" + }, + { + "rshares": "157745750", + "voter": "digitalillusions" + }, + { + "rshares": "160880639", + "voter": "illusions" + }, + { + "rshares": "160870736", + "voter": "electronicarts" + }, + { + "rshares": "3795712999", + "voter": "dresden" + }, + { + "rshares": "159950870", + "voter": "haribo" + }, + { + "rshares": "159352476", + "voter": "panic" + }, + { + "rshares": "156043541", + "voter": "disneypixar" + }, + { + "rshares": "1534731729", + "voter": "modernbukowski" + }, + { + "rshares": "155452864", + "voter": "jyriygo" + }, + { + "rshares": "31683945302", + "voter": "goldmatters" + }, + { + "rshares": "155180811", + "voter": "majes" + }, + { + "rshares": "153284499", + "voter": "daniel1974" + } + ], + "author": "steempower", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "![](https://s18.postimg.org/fcl7ffx1l/ripple.png)\n## Ripple has raised another 55 Million in its latest round of funding bringing it total raised to 93 Million.\n\nThe news has reached mainstream news services such as CNBC, WSJ, Reuters and the like. News seems to be first released 2 hours ago 12:35 pm; Thursday, 15 September 2016.\n\n### News Articles:\n[CoinDesk](http://www.coindesk.com/ripple-blockchain-55-million-series-b/)\n[CNBC](http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html)\n[WSJ](http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401)\n[Reuters ](http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z)\n\nAccording to the article linked above (CNBC) 'The start-up is currently working with 15 of the top 50 global banks including UBS and Santander.'\n\nNew and existing investors were involved in the new Ripple funding round. New investors included Accenture Ventures, SBI Holdings, SCB Digital Ventures, Standard Chartered PLC, and the investment arm of Thailand\u2019s Siam Commercial Bank. Existing investors that joined in this round included a Banco Santander SA venture fund, the venture arms of CME Group Inc. and Seagate Technology, and Venture 51.\n\nObviously this is good news for ripple with 55 Million accounting for 20-25% of their market cap before today's rally, the current price of XRP is 0.00001760 BTC and 2 hours ago it was trading for below 0.00001000 BTC, it has seen a large move already price wise although volume is still relatively small at this time, we could be in for an interesting time while this initial excitement settles in\n![](https://www.coinigy.com/assets/img/charts/57dab3f3.png)", + "category": "ripple", + "children": 10, + "created": "2016-09-15T14:58:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s18.postimg.org/fcl7ffx1l/ripple.png", + "https://www.coinigy.com/assets/img/charts/57dab3f3.png" ], - "author": "hivebuzz", - "author_payout_value": "0.000 HBD", - "author_reputation": 62.61, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "![](https://i.imgur.com/4qjwaYD.png)\n\nSeveral developers have recently contacted us to ask if it is possible to integrate HiveBuzz badges with their websites or applications.\n\nThis is why we have set up an API server that will allow them to easily obtain information relating to users' badges. The API is free to use. However, be aware that the call rate is throttled to avoid exhausting the server resources.\n\n## How to use the HiveBuzz API?\n\n### Endpoint\nhttp://hivebuzz.me/api\n\n### /badges/{username}/\n\n|||\n|-|-|\n|Method|GET|\n|Description|Retrieve the list of all badges for a user, including those that were not collected by the user|\n|Example|https://hivebuzz.me/api/badges/arcange|\n\nReturns an array of objects with the following properties\n\n|||\n|-|-|\n|`type`|badge type _(activity, perso, meetup)_|\n|`ID`|identifier|\n|`name`|short name|\n|`title`|name of the badge displayed on the board|\n|`description`|Description of the badge that is displayed in the description modal window when you click on a badge|\n|`description_title`|Title displayed on the top of the description window|\n|`group`|Group identifier used to group badges by affinity|\n|`url`|url of the the badge|\n\nSample Response:\n\n```JS\n[\n ...,\n {\n \"type\": \"perso\",\n \"ID\": 38,\n \"name\": \"birthday-3\",\n \"title\": \"3 years on the Hive blockchain\",\n \"description\": \"Congratulations! You joined Hive blockchain three years ago!\",\n \"description_title\": \"3 years on the Hive blockchain\",\n \"group\": \"P01\",\n \"url\": \"https://hivebuzz.me/badges/birthday-3.png\"\n },\n {\n \"type\": \"meetup\",\n \"ID\": 43,\n \"name\": \"steemfest-4\",\n \"title\": \"SteemFest 4 Attendee\",\n \"description\": \"You went to Bangkok to attend SteemFest\u2074\",\n \"description_title\": \"SteemFest 4 Attendee\",\n \"group\": \"M01\",\n \"url\": \"https://hivebuzz.me/badges/steemfest-4.s4.png\"\n },\n ...\n]\n```\n\n### /owners/{id}/\n\n|||\n|-|-|\n|Method|GET|\n|Description|Query for the owner list of a badge|\n|Example| https://hivebuzz.me/api/owners/43|\n\nReturns an array of strings (usernames)\n\nSample Response:\n\n`[\"achimmertens\",\"arcange\",\"brittandjosie\",\"charly.travels\",\"coolsurfer\",\"detlev\",\"fynemiene\",\"louis88\",\"martibis\",\"pundito\",\"rollie1212\",\"sunsea\"]`\n\n### Displaying a user level badge\n\nDisplaying the level badge of a user is quite easy and doesn't require to call any API. You can simply build the URL of the image using the following format:\n\n**`https://hivebuzz.me/{username}/level.png`**\n\nExample: `https://hivebuzz.me/@arcange/level.png`\n\nHiveBuzz will update the image automatically whenever the user's level changes (up or down) or when the user becomes inactive.\n\n### Support\n\nIf you need help to integrate your website or application with HiveBuzz, feel free to contact us on [Discord](https://discord.gg/J6JrABJ).\n\n**The Hivebuzz Team**\n\n---\n
\n\nHiveBuzz needs your help! **Read and support [our proposal](https://peakd.com/me/proposals/109)!**
\n\n---\n
_HiveBuzz is a project created by @arcange_
", - "category": "hive-139531", - "children": 4, - "community": "hive-139531", - "community_title": "HiveDevs", - "created": "2020-07-07T14:38:03", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "description": "Introducing our new public API to help developers integrate HiveBuzz badges into their apps and websites", - "format": "markdown", - "image": [ - "https://i.imgur.com/4qjwaYD.png" - ], - "links": [ - "http://hivebuzz.me/api", - "https://hivebuzz.me/api/badges/arcange", - "https://hivebuzz.me/api/owners/43", - "https://discord.gg/J6JrABJ", - "/me/proposals/109", - "/@arcange" - ], - "tags": [ - "hivebuzz", - "api", - "hive-139531" - ], - "users": [ - "arcange" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 238092639730622, - "payout": 98.173, - "payout_at": "2020-07-14T14:38:03", - "pending_payout_value": "98.173 HBD", - "percent_hbd": 10000, - "permlink": "api", - "post_id": 86933271, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 160 - }, - "title": "Introducing the HiveBuzz API for applications and websites", - "updated": "2020-07-07T14:48:54", - "url": "/hive-139531/@hivebuzz/api" - }, - { - "active_votes": [ - { - "rshares": "49204793302124", - "voter": "blocktrades" - }, - { - "rshares": "76168115673", - "voter": "tombstone" - }, - { - "rshares": "515687579315", - "voter": "roelandp" - }, - { - "rshares": "7652574625", - "voter": "matt-a" - }, - { - "rshares": "63520409851", - "voter": "arcange" - }, - { - "rshares": "110189734995", - "voter": "fiveboringgames" - }, - { - "rshares": "1685099378", - "voter": "raphaelle" - }, - { - "rshares": "70716332089", - "voter": "petrvl" - }, - { - "rshares": "29378690097", - "voter": "steemyoda" - }, - { - "rshares": "115998460140", - "voter": "ixindamix" - }, - { - "rshares": "192012949826", - "voter": "detlev" - }, - { - "rshares": "4796890519", - "voter": "ma1neevent" - }, - { - "rshares": "1173204634", - "voter": "khussan" - }, - { - "rshares": "796532637", - "voter": "activate.alpha" - }, - { - "rshares": "1600631569", - "voter": "kennyroy" - }, - { - "rshares": "80927710360", - "voter": "ironshield" - }, - { - "rshares": "85607117789", - "voter": "djynn" - }, - { - "rshares": "7525110342", - "voter": "arrliinn" - }, - { - "rshares": "11934923240", - "voter": "belahejna" - }, - { - "rshares": "11060060766", - "voter": "blacklux" - }, - { - "rshares": "170871073751", - "voter": "dexpartacus" - }, - { - "rshares": "8559609733", - "voter": "d-pend" - }, - { - "rshares": "44525930432", - "voter": "gniksivart" - }, - { - "rshares": "58680083335", - "voter": "captainquack22" - }, - { - "rshares": "3290538880", - "voter": "dante31" - }, - { - "rshares": "1214563592738", - "voter": "howo" - }, - { - "rshares": "96626786138", - "voter": "travelgirl" - }, - { - "rshares": "4872977300279", - "voter": "ocd" - }, - { - "rshares": "1249763455701", - "voter": "steemvote" - }, - { - "rshares": "4707919920", - "voter": "macchiata" - }, - { - "rshares": "8749176219", - "voter": "santigs" - }, - { - "rshares": "9199751744", - "voter": "kimzwarch" - }, - { - "rshares": "229211675237", - "voter": "fbslo" - }, - { - "rshares": "3094078623", - "voter": "justinparke" - }, - { - "rshares": "3464697634001", - "voter": "therealwolf" - }, - { - "rshares": "13497175539", - "voter": "jlsplatts" - }, - { - "rshares": "1766240477", - "voter": "divinekids" - }, - { - "rshares": "5430304894", - "voter": "hanggggbeeee" - }, - { - "rshares": "904654570", - "voter": "liverpool-fan" - }, - { - "rshares": "251295396005", - "voter": "eonwarped" - }, - { - "rshares": "2470069816682", - "voter": "postpromoter" - }, - { - "rshares": "9537846624", - "voter": "mejustandrew" - }, - { - "rshares": "2561018844", - "voter": "omstavan" - }, - { - "rshares": "40848309370", - "voter": "sankysanket18" - }, - { - "rshares": "5576507588", - "voter": "gtrussi" - }, - { - "rshares": "1648369187", - "voter": "lordnigel" - }, - { - "rshares": "709451837216", - "voter": "smartsteem" - }, - { - "rshares": "19042613687", - "voter": "mytechtrail" - }, - { - "rshares": "4352381885", - "voter": "itchyfeetdonica" - }, - { - "rshares": "706337207", - "voter": "godlovermel25" - }, - { - "rshares": "1812605332", - "voter": "tomatom" - }, - { - "rshares": "6661311424", - "voter": "fourfourfun" - }, - { - "rshares": "7713964520", - "voter": "gabrielatravels" - }, - { - "rshares": "81599245248", - "voter": "girolamomarotta" - }, - { - "rshares": "80718714528", - "voter": "mathowl" - }, - { - "rshares": "2834532623", - "voter": "indianteam" - }, - { - "rshares": "1098210756", - "voter": "chrismadcboy2016" - }, - { - "rshares": "143188599535", - "voter": "ocd-witness" - }, - { - "rshares": "957713052", - "voter": "ericburgoyne" - }, - { - "rshares": "56393873886", - "voter": "ryo-6414" - }, - { - "rshares": "27734598301", - "voter": "bigtom13" - }, - { - "rshares": "322740228834", - "voter": "takowi" - }, - { - "rshares": "1165056938", - "voter": "russellstockley" - }, - { - "rshares": "8459576163", - "voter": "forester-joe" - }, - { - "rshares": "1202531244", - "voter": "cruisin" - }, - { - "rshares": "21957676931", - "voter": "miroslavrc" - }, - { - "rshares": "370029707", - "voter": "sekhet" - }, - { - "rshares": "3548561291", - "voter": "flaxz" - }, - { - "rshares": "2031943841", - "voter": "racibo" - }, - { - "rshares": "10189553771", - "voter": "road2horizon" - }, - { - "rshares": "174506461807", - "voter": "hiddenblade" - }, - { - "rshares": "8130779189693", - "voter": "julialee66" - }, - { - "rshares": "56656112015", - "voter": "indigoocean" - }, - { - "rshares": "16125579598", - "voter": "romeskie" - }, - { - "rshares": "2950984218", - "voter": "crystalhuman" - }, - { - "rshares": "181176170407", - "voter": "nateaguila" - }, - { - "rshares": "183222957550", - "voter": "digital.mine" - }, - { - "rshares": "1136831701", - "voter": "linco" - }, - { - "rshares": "1184581735", - "voter": "yougotavote" - }, - { - "rshares": "2981896797", - "voter": "jd4e" - }, - { - "rshares": "26539931519894", - "voter": "ocdb" - }, - { - "rshares": "5837036999", - "voter": "pagliozzo" - }, - { - "rshares": "7145853735", - "voter": "tangofever" - }, - { - "rshares": "711662410", - "voter": "jesusmedit" - }, - { - "rshares": "1791590939", - "voter": "dronegraphica" - }, - { - "rshares": "738393578", - "voter": "arrixion" - }, - { - "rshares": "1004317625", - "voter": "nancybmp" - }, - { - "rshares": "194424866317", - "voter": "gorbisan" - }, - { - "rshares": "21122160", - "voter": "laissez-faire" - }, - { - "rshares": "1030984947", - "voter": "jackofcrows" - }, - { - "rshares": "25540051794", - "voter": "lion200" - }, - { - "rshares": "1250511440", - "voter": "pushpedal" - }, - { - "rshares": "6318644279", - "voter": "bettervision" - }, - { - "rshares": "7231233115", - "voter": "edriseur" - }, - { - "rshares": "2490602346", - "voter": "regularowl" - }, - { - "rshares": "3517846406", - "voter": "chocolatelover" - }, - { - "rshares": "36405130", - "voter": "limka" - }, - { - "rshares": "768928443", - "voter": "abbenay" - }, - { - "rshares": "980449499", - "voter": "david.steem" - }, - { - "rshares": "7960018662", - "voter": "cryptofiloz" - }, - { - "rshares": "3887616976", - "voter": "squareonefarms" - }, - { - "rshares": "22530854687", - "voter": "maryincryptoland" - }, - { - "rshares": "23524207951", - "voter": "epicdice" - }, - { - "rshares": "3872351260", - "voter": "yiobri" - }, - { - "rshares": "1884954700", - "voter": "hjlee119" - }, - { - "rshares": "4791087205", - "voter": "ocd-accountant" - }, - { - "rshares": "4047736132", - "voter": "leighscotford" - }, - { - "rshares": "3802197953", - "voter": "ilovecanada" - }, - { - "rshares": "724183204", - "voter": "maddogmike" - }, - { - "rshares": "2394519470", - "voter": "iamraincrystal" - }, - { - "rshares": "16317381087", - "voter": "bradleyarrow" - }, - { - "rshares": "1897457474", - "voter": "dinamida" - }, - { - "rshares": "3389404995", - "voter": "hongdangmu" - }, - { - "rshares": "559348138", - "voter": "steemlondon" - }, - { - "rshares": "587629864", - "voter": "splatts" - }, - { - "rshares": "4188071155", - "voter": "kryptoformator" - }, - { - "rshares": "593382975", - "voter": "reghunter" - }, - { - "rshares": "41279397", - "voter": "toni.ccc" - }, - { - "rshares": "3840843066", - "voter": "dollarbills" - }, - { - "rshares": "1050246566", - "voter": "bilpcoinbpc" - }, - { - "rshares": "2010774561", - "voter": "bcm.dblog" - }, - { - "rshares": "12360178863", - "voter": "goldstreet" - }, - { - "rshares": "7923265757", - "voter": "dpend.active" - }, - { - "rshares": "2198021323", - "voter": "fengchao" - }, - { - "rshares": "1756312909", - "voter": "green-finger" - }, - { - "rshares": "230739085711", - "voter": "nulledgh0st" - }, - { - "rshares": "508012053862", - "voter": "softworld" - }, - { - "rshares": "1743788013", - "voter": "marvschurchill1" - }, - { - "rshares": "24713212468", - "voter": "the100" - }, - { - "rshares": "1110470622", - "voter": "iameden" - }, - { - "rshares": "4047995256", - "voter": "rihc94" - }, - { - "rshares": "255330312991", - "voter": "hivelander" - }, - { - "rshares": "62537828507", - "voter": "hivehustlers" - }, - { - "rshares": "1156873651", - "voter": "rollinshive" - } + "links": [ + "http://www.coindesk.com/ripple-blockchain-55-million-series-b/", + "http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html", + "http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401", + "http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z" ], - "author": "ryo-6414", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.16, - "beneficiaries": [], - "blacklists": [], - "body": "![IMG_-rmywfu.jpg](https://images.hive.blog/DQmbMneDMgyR4rqqUf5Xbg8NrrDsgy22opBTndHsVpCw6jZ/IMG_-rmywfu.jpg)\n\n\n\n\nHello I am RYO!\n\nThat's my April photo!\nMany flowers bloom in the mountains in spring and the animals wake up from winter so I went to see them!\n\n![IMG_vuvvef.jpg](https://images.hive.blog/DQmNbTEjg28iskcoiyXZ7yPEo81SNk3degHBGbnytSyWgSS/IMG_vuvvef.jpg)\n\nIt place was a little cold so there were still a lot of cherry blossoms in bloom!\n![DSC_4198.JPG](https://images.hive.blog/DQmWsYuJbqv76QqPMDPm5YRCZSHmjfELF4ugjjUpfrPyiR8/DSC_4198.JPG)\nCherry blossoms have already withered in the flatlands\n\n![DSC_4199.JPG](https://images.hive.blog/DQmTH2KwFppaWuuhLPYnKCYBtPyETcx4xFreTBZrcmWtvvs/DSC_4199.JPG)\n\n![DSC_4200.JPG](https://images.hive.blog/DQmeHgGTyNFhcYnc3j9QKLcwC8ZKp2ojhQ6CFJsWyauKoS3/DSC_4200.JPG)\n\nRare white violet\u2193\n![DSC_4202.JPG](https://images.hive.blog/DQmZoz2haaz15cJCB7XsBjgwhud48xpgGBN6kBGpx4TLUnh/DSC_4202.JPG)\n\n![DSC_4203.JPG](https://images.hive.blog/DQmXVRgCeNJb7jMFpeFYS2MdnngwcQSqLm9DpRgbfeT6UqH/DSC_4203.JPG)\n\n![DSC_4204.JPG](https://images.hive.blog/DQmUCCRQcWY9ftWqeQLGN4jHZazvKetSzs728Yxo2ehBemJ/DSC_4204.JPG)\n\n![DSC_4205.JPG](https://images.hive.blog/DQmRjxMnMuNUBUZdU5njALB6SJrr9KdGreDwoybEY5kXBd3/DSC_4205.JPG)\n\n![DSC_4206.JPG](https://images.hive.blog/DQmXhYcjGXYtvSK7qCC79rbEee7MZPjoUpixtRSXvKgi3QW/DSC_4206.JPG)\n\n\nIt is a small number of white cherry blossoms\u2193\n![DSC_4208.JPG](https://images.hive.blog/DQmTb7HDLjiarSLJhGRhLvfVidS46NdASaSdbC5BVd7UqS1/DSC_4208.JPG)\n\n![IMG_vnw583.jpg](https://images.hive.blog/DQmW81an6DthveerrdYzCLsY59i41rknhQ1hMA5EfRXVpvk/IMG_vnw583.jpg)\nI don't know why it's white... it's the kind or the soil but beautiful\ud83d\ude0a\n\n![IMG_mn98ux.jpg](https://images.hive.blog/DQmbND2cphAwzLwWzjyfKEdm1ymmqAjgeAmhkaVtfW2iBim/IMG_mn98ux.jpg)\n\n![DSC_4211.JPG](https://images.hive.blog/DQmZ4oLwwTF1daCLThr9waT1KhM94uEtW8pFtP3ZR5Ju8Ln/DSC_4211.JPG)\n\n![DSC_4212.JPG](https://images.hive.blog/DQmaT5bqUSov5X1PgWxHyoUYf1iPn39GQtcXdSPYxGYZABf/DSC_4212.JPG)\n\n![DSC_4214.JPG](https://images.hive.blog/DQmT7eMEXKHLtpDR4yH68MQHi7EAts2FbyXMheugEwBqxWu/DSC_4214.JPG)\n\n\nI walked for a while and there was a small pond there!\n![DSC_4215.JPG](https://images.hive.blog/DQmeK4z8Umipwysp8p6rYywQZZ9PJqptP9K5q6GnQVnX3Gd/DSC_4215.JPG)\n\n![DSC_4216.JPG](https://images.hive.blog/DQmWvstovtaKb5V2rb7u1YjgAEsmzDBeXd2TPa1EFtvfZR1/DSC_4216.JPG)\n I had a amazing meeting there!\n![DSC_4217.JPG](https://images.hive.blog/DQmU7fqWwTynyD86HxBAAZFRoddu2FGK4BhbiHLfHvP5jWz/DSC_4217.JPG)\n\nLots of small tadpoles!\u2193\n![IMG_vvyeu5.jpg](https://images.hive.blog/DQmeB3iNnG3nEZtwgRpAqgb3SpwxD4WbATEyJ4iF1YiNviv/IMG_vvyeu5.jpg)\nCarp is swimming with them!\u2193\n![IMG_-qbv9k7.jpg](https://images.hive.blog/DQmbNhfPyaTh8BoyCVfEYWv24PnpTUW89SHafroYpGD5qkS/IMG_-qbv9k7.jpg)\n\nEverything like small black particles is a tadpole\u2193\n![IMG_sxlfw0.jpg](https://images.hive.blog/DQmXanMkedHkuVNtD35yTsjaozrKVPB8zwq3xhgqkz2Qa19/IMG_sxlfw0.jpg)\n\nWoow That's heaven for me!\ud83d\ude01\n![IMG_thid6i.jpg](https://images.hive.blog/DQmQap7cbB7HgWVv6tWAYmnTJaGMLn8tCu2c5Ds3aDjPJJ7/IMG_thid6i.jpg)\n\n![IMG_npq7t6.jpg](https://images.hive.blog/DQmdp7p8g5tfjPxm28X4JJZFAwhiVVsaKKQQiR1MadqYLD5/IMG_npq7t6.jpg)\n\nCherry petals and tadpoles!\u2193\n![IMG_-bsg1fv.jpg](https://images.hive.blog/DQmfB5cZCUvJifmCUV212y9HZiQ8UZz3yn1xoJfHTxrdVRR/IMG_-bsg1fv.jpg)\n\nThere are very few people in this place. Probably for animals and plants this place is their paradise\ud83d\ude0a\n![DSC_4226.JPG](https://images.hive.blog/DQmdy5kbV5Yuv6nvkCAoRLhjGwEQrNVUXd7rS3sunTcG8hL/DSC_4226.JPG)\n\n![IMG_-jbt8cs.jpg](https://images.hive.blog/DQmV1NFBXjcMQgXKfdrxebA6MBVeb7ZPDeKnx3eUjqAQJUm/IMG_-jbt8cs.jpg)\n\n![IMG_dlu0eu.jpg](https://images.hive.blog/DQmXx5g5TieM4Pv2sqFmxNhCLcnRh4o22dKVux4QQEQrgNM/IMG_dlu0eu.jpg)\n\nBeautiful moss\n![IMG_-saow7m.jpg](https://images.hive.blog/DQmX15RHhNsY7feaZEDjSa2uD2VkFf5BHKU9NsaYtfT5nNQ/IMG_-saow7m.jpg)\n\nAnd flowers\n![IMG_-gp9idu.jpg](https://images.hive.blog/DQmXeVouJwK7K5GWnTDxMefPGY9QvoR3t1cPopSSzLPSjL3/IMG_-gp9idu.jpg)\n\n![IMG_4jcsea.jpg](https://images.hive.blog/DQmNTfsYpCSBTf2BKpyg7swcm7CuM4CkV5n8eytS7gYuZLt/IMG_4jcsea.jpg)\n\nThere were different types of cherry blossoms that were different from normal cherry blossoms\u2193\n![IMG_-2n53y3.jpg](https://images.hive.blog/DQmUeCyfhF18pDCijNaeJ2S5NiXAfrz12soPeSgrqQLhnTY/IMG_-2n53y3.jpg)\n\n![DSC_4237.JPG](https://images.hive.blog/DQmRPennasiFqjHX8qB74NrrGe1BKESwokU5P3PMseD4FLJ/DSC_4237.JPG)\n\n![DSC_4238.JPG](https://images.hive.blog/DQmQq9LswLoJ52G4wopuUFQDTqsvPJoqJmUXfQm2FQHYDAd/DSC_4238.JPG)\n\nIt is a type of cherry tree called \"Yaezakura\". \n![DSC_4239.JPG](https://images.hive.blog/DQmWJnxfbpaT7S5e4QVWkHDGQLt2Y46kzmXWPvyq3MSeeqn/DSC_4239.JPG)\n\nIt blooms 2-3 weeks later than regular cherry blossoms. And it has a lot of petals\n![IMG_bw9wbo.jpg](https://images.hive.blog/DQmavf5Ny27t4cWFk61hLTUQorzC8UVZuConGZi6MPwb1DU/IMG_bw9wbo.jpg)\n\n![IMG_4pcxjz.jpg](https://images.hive.blog/DQmeEC6oxQPaU6NbSPmBCony1p46YqWZMFi6ApWWefUYR52/IMG_4pcxjz.jpg)\nbeautiful\ud83d\ude0a\n\n![DSC_4253.JPG](https://images.hive.blog/DQmS1Vqhvy654zEMk5xFnWfrnzC23ogbH7GN4unbEKpckDD/DSC_4253.JPG)\n\n![DSC_4252.JPG](https://images.hive.blog/DQmXZxLSccVXAhUR15NXgoARsRKG9mbGzt2qLS1xfZdzWCL/DSC_4252.JPG)\n\nWow! Frog corpse!\ud83d\ude28\n![IMG_-hrumrf.jpg](https://images.hive.blog/DQmdTpScKiDuszKLAV8zwj8JuCJ7CqpCQGTjHtLGawwCVit/IMG_-hrumrf.jpg)\nProbably their parents\n![IMG_n47a2o.jpg](https://images.hive.blog/DQmSef3fW1RL2UBFCKnpTZ89GufTEK9oXd1BvMMwxWBzm14/IMG_n47a2o.jpg)\n\n![DSC_4248.JPG](https://images.hive.blog/DQme6rVUcP36Yjt7Hoocby6yDYAyJEAc3XzmfqFVoeTHGP2/DSC_4248.JPG)\n\n![DSC_4246.JPG](https://images.hive.blog/DQmUgTmbkw6PDjs7Fib6up1YDAj34RfpsYb8beLnVfTr7m8/DSC_4246.JPG)\n\nAnd I ate delicious \"Soba\" in this place with beautiful water\n![DSC_4194.JPG](https://images.hive.blog/DQmP4V917xD66vNxZ3oP4ZRQUmHoeigcqPGKFSdDzuMbvzT/DSC_4194.JPG)\n\n![IMG_-3v24sz.jpg](https://images.hive.blog/DQmUyXegx9d3bpR9n3Jv1SnZZw1iR9Xi4CpXkYxn6c3Jbb3/IMG_-3v24sz.jpg)\n\n# \u203bRequest from me\n# If you want to share my photos on other platform please include a link to my profile page\u2193 https://hive.blog/@ryo-6414\n\n\nThank you for reading!\nArigatou gozaimashita!", - "category": "animals", - "children": 1, - "created": "2020-07-07T12:27:06", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "hiveblog/0.1", - "format": "markdown", - "image": [ - "https://images.hive.blog/DQmbMneDMgyR4rqqUf5Xbg8NrrDsgy22opBTndHsVpCw6jZ/IMG_-rmywfu.jpg", - "https://images.hive.blog/DQmNbTEjg28iskcoiyXZ7yPEo81SNk3degHBGbnytSyWgSS/IMG_vuvvef.jpg", - "https://images.hive.blog/DQmWsYuJbqv76QqPMDPm5YRCZSHmjfELF4ugjjUpfrPyiR8/DSC_4198.JPG", - "https://images.hive.blog/DQmTH2KwFppaWuuhLPYnKCYBtPyETcx4xFreTBZrcmWtvvs/DSC_4199.JPG", - "https://images.hive.blog/DQmeHgGTyNFhcYnc3j9QKLcwC8ZKp2ojhQ6CFJsWyauKoS3/DSC_4200.JPG", - "https://images.hive.blog/DQmZoz2haaz15cJCB7XsBjgwhud48xpgGBN6kBGpx4TLUnh/DSC_4202.JPG", - "https://images.hive.blog/DQmXVRgCeNJb7jMFpeFYS2MdnngwcQSqLm9DpRgbfeT6UqH/DSC_4203.JPG", - "https://images.hive.blog/DQmUCCRQcWY9ftWqeQLGN4jHZazvKetSzs728Yxo2ehBemJ/DSC_4204.JPG", - "https://images.hive.blog/DQmRjxMnMuNUBUZdU5njALB6SJrr9KdGreDwoybEY5kXBd3/DSC_4205.JPG", - "https://images.hive.blog/DQmXhYcjGXYtvSK7qCC79rbEee7MZPjoUpixtRSXvKgi3QW/DSC_4206.JPG", - "https://images.hive.blog/DQmTb7HDLjiarSLJhGRhLvfVidS46NdASaSdbC5BVd7UqS1/DSC_4208.JPG", - "https://images.hive.blog/DQmW81an6DthveerrdYzCLsY59i41rknhQ1hMA5EfRXVpvk/IMG_vnw583.jpg", - "https://images.hive.blog/DQmbND2cphAwzLwWzjyfKEdm1ymmqAjgeAmhkaVtfW2iBim/IMG_mn98ux.jpg", - "https://images.hive.blog/DQmZ4oLwwTF1daCLThr9waT1KhM94uEtW8pFtP3ZR5Ju8Ln/DSC_4211.JPG", - "https://images.hive.blog/DQmaT5bqUSov5X1PgWxHyoUYf1iPn39GQtcXdSPYxGYZABf/DSC_4212.JPG", - "https://images.hive.blog/DQmT7eMEXKHLtpDR4yH68MQHi7EAts2FbyXMheugEwBqxWu/DSC_4214.JPG", - "https://images.hive.blog/DQmeK4z8Umipwysp8p6rYywQZZ9PJqptP9K5q6GnQVnX3Gd/DSC_4215.JPG", - "https://images.hive.blog/DQmWvstovtaKb5V2rb7u1YjgAEsmzDBeXd2TPa1EFtvfZR1/DSC_4216.JPG", - "https://images.hive.blog/DQmU7fqWwTynyD86HxBAAZFRoddu2FGK4BhbiHLfHvP5jWz/DSC_4217.JPG", - "https://images.hive.blog/DQmeB3iNnG3nEZtwgRpAqgb3SpwxD4WbATEyJ4iF1YiNviv/IMG_vvyeu5.jpg", - "https://images.hive.blog/DQmbNhfPyaTh8BoyCVfEYWv24PnpTUW89SHafroYpGD5qkS/IMG_-qbv9k7.jpg", - "https://images.hive.blog/DQmXanMkedHkuVNtD35yTsjaozrKVPB8zwq3xhgqkz2Qa19/IMG_sxlfw0.jpg", - "https://images.hive.blog/DQmQap7cbB7HgWVv6tWAYmnTJaGMLn8tCu2c5Ds3aDjPJJ7/IMG_thid6i.jpg", - "https://images.hive.blog/DQmdp7p8g5tfjPxm28X4JJZFAwhiVVsaKKQQiR1MadqYLD5/IMG_npq7t6.jpg", - "https://images.hive.blog/DQmfB5cZCUvJifmCUV212y9HZiQ8UZz3yn1xoJfHTxrdVRR/IMG_-bsg1fv.jpg", - "https://images.hive.blog/DQmdy5kbV5Yuv6nvkCAoRLhjGwEQrNVUXd7rS3sunTcG8hL/DSC_4226.JPG", - "https://images.hive.blog/DQmV1NFBXjcMQgXKfdrxebA6MBVeb7ZPDeKnx3eUjqAQJUm/IMG_-jbt8cs.jpg", - "https://images.hive.blog/DQmXx5g5TieM4Pv2sqFmxNhCLcnRh4o22dKVux4QQEQrgNM/IMG_dlu0eu.jpg", - "https://images.hive.blog/DQmX15RHhNsY7feaZEDjSa2uD2VkFf5BHKU9NsaYtfT5nNQ/IMG_-saow7m.jpg", - "https://images.hive.blog/DQmXeVouJwK7K5GWnTDxMefPGY9QvoR3t1cPopSSzLPSjL3/IMG_-gp9idu.jpg", - "https://images.hive.blog/DQmNTfsYpCSBTf2BKpyg7swcm7CuM4CkV5n8eytS7gYuZLt/IMG_4jcsea.jpg", - "https://images.hive.blog/DQmUeCyfhF18pDCijNaeJ2S5NiXAfrz12soPeSgrqQLhnTY/IMG_-2n53y3.jpg", - "https://images.hive.blog/DQmRPennasiFqjHX8qB74NrrGe1BKESwokU5P3PMseD4FLJ/DSC_4237.JPG", - "https://images.hive.blog/DQmQq9LswLoJ52G4wopuUFQDTqsvPJoqJmUXfQm2FQHYDAd/DSC_4238.JPG", - "https://images.hive.blog/DQmWJnxfbpaT7S5e4QVWkHDGQLt2Y46kzmXWPvyq3MSeeqn/DSC_4239.JPG", - "https://images.hive.blog/DQmavf5Ny27t4cWFk61hLTUQorzC8UVZuConGZi6MPwb1DU/IMG_bw9wbo.jpg", - "https://images.hive.blog/DQmeEC6oxQPaU6NbSPmBCony1p46YqWZMFi6ApWWefUYR52/IMG_4pcxjz.jpg", - "https://images.hive.blog/DQmS1Vqhvy654zEMk5xFnWfrnzC23ogbH7GN4unbEKpckDD/DSC_4253.JPG", - "https://images.hive.blog/DQmXZxLSccVXAhUR15NXgoARsRKG9mbGzt2qLS1xfZdzWCL/DSC_4252.JPG", - "https://images.hive.blog/DQmdTpScKiDuszKLAV8zwj8JuCJ7CqpCQGTjHtLGawwCVit/IMG_-hrumrf.jpg", - "https://images.hive.blog/DQmSef3fW1RL2UBFCKnpTZ89GufTEK9oXd1BvMMwxWBzm14/IMG_n47a2o.jpg", - "https://images.hive.blog/DQme6rVUcP36Yjt7Hoocby6yDYAyJEAc3XzmfqFVoeTHGP2/DSC_4248.JPG", - "https://images.hive.blog/DQmUgTmbkw6PDjs7Fib6up1YDAj34RfpsYb8beLnVfTr7m8/DSC_4246.JPG", - "https://images.hive.blog/DQmP4V917xD66vNxZ3oP4ZRQUmHoeigcqPGKFSdDzuMbvzT/DSC_4194.JPG", - "https://images.hive.blog/DQmUyXegx9d3bpR9n3Jv1SnZZw1iR9Xi4CpXkYxn6c3Jbb3/IMG_-3v24sz.jpg" - ], - "links": [ - "https://hive.blog/@ryo-6414" - ], - "tags": [ - "animals", - "flowers", - "travel", - "trip", - "japan", - "oc", - "creativecoin", - "powerhousecreatives" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 103130829108388, - "payout": 41.686, - "payout_at": "2020-07-14T12:27:06", - "pending_payout_value": "41.686 HBD", - "percent_hbd": 10000, - "permlink": "paradise-of-tadpoles-and-cherry-blossoms", - "post_id": 86931667, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 134 - }, - "title": "Paradise of tadpoles and cherry blossoms", - "updated": "2020-07-07T12:27:06", - "url": "/animals/@ryo-6414/paradise-of-tadpoles-and-cherry-blossoms" + "tags": [ + "ripple", + "crypto-news", + "beyondbitcoin", + "money", + "trading" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 63885038592928, + "payout": 238.835, + "payout_at": "2016-09-16T15:58:09", + "pending_payout_value": "238.835 HBD", + "percent_hbd": 10000, + "permlink": "ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour", + "post_id": 958481, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 216 + }, + "title": "Ripple raises $55 million from big banks - Series B - XRP Prices jumped 60% to 0.0001600 within 1 hour", + "updated": "2016-09-15T14:58:21", + "url": "/ripple/@steempower/ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour" }, { - "active_votes": [ - { - "rshares": "54945558661", - "voter": "enlil" - }, - { - "rshares": "154883568716", - "voter": "tombstone" - }, - { - "rshares": "2365156916", - "voter": "gavvet" - }, - { - "rshares": "1554071081579", - "voter": "kingscrown" - }, - { - "rshares": "259683453138", - "voter": "nanzo-scoop" - }, - { - "rshares": "36850089175", - "voter": "mummyimperfect" - }, - { - "rshares": "3403643941798", - "voter": "kevinwong" - }, - { - "rshares": "14696422055", - "voter": "ak2020" - }, - { - "rshares": "3369202502", - "voter": "juanmiguelsalas" - }, - { - "rshares": "536020239693", - "voter": "mark-waser" - }, - { - "rshares": "4453450008", - "voter": "mammasitta" - }, - { - "rshares": "1199688564", - "voter": "emily-cook" - }, - { - "rshares": "214196246015", - "voter": "gerber" - }, - { - "rshares": "367777078787", - "voter": "daan" - }, - { - "rshares": "235003544741", - "voter": "ezzy" - }, - { - "rshares": "1515836841", - "voter": "kiligirl" - }, - { - "rshares": "13527841602", - "voter": "mrwang" - }, - { - "rshares": "905757760994", - "voter": "livingfree" - }, - { - "rshares": "54515109492", - "voter": "gikitiki" - }, - { - "rshares": "8387974757", - "voter": "steemit-life" - }, - { - "rshares": "63464779505", - "voter": "arcange" - }, - { - "rshares": "279045405148", - "voter": "exyle" - }, - { - "rshares": "14339769977", - "voter": "arconite" - }, - { - "rshares": "1683500384", - "voter": "raphaelle" - }, - { - "rshares": "483264273953", - "voter": "joythewanderer" - }, - { - "rshares": "577558485125", - "voter": "ace108" - }, - { - "rshares": "78713972105", - "voter": "sazbird" - }, - { - "rshares": "4157994003942", - "voter": "shaka" - }, - { - "rshares": "126194284198", - "voter": "karenb54" - }, - { - "rshares": "9633289186210", - "voter": "jphamer1" - }, - { - "rshares": "3873919773741", - "voter": "joele" - }, - { - "rshares": "2713401026082", - "voter": "hanshotfirst" - }, - { - "rshares": "7661466941", - "voter": "wisbeech" - }, - { - "rshares": "379565073018", - "voter": "netaterra" - }, - { - "rshares": "48431386074", - "voter": "jlufer" - }, - { - "rshares": "25721826545", - "voter": "por500bolos" - }, - { - "rshares": "257871599877", - "voter": "uwelang" - }, - { - "rshares": "540975342504", - "voter": "digital-wisdom" - }, - { - "rshares": "2097015463", - "voter": "ethical-ai" - }, - { - "rshares": "25619052730", - "voter": "jwaser" - }, - { - "rshares": "362820665603", - "voter": "jacobtothe" - }, - { - "rshares": "22614568741", - "voter": "jacobts" - }, - { - "rshares": "14874816309", - "voter": "bwaser" - }, - { - "rshares": "3026568935317", - "voter": "abh12345" - }, - { - "rshares": "88095360457", - "voter": "justyy" - }, - { - "rshares": "13670699025", - "voter": "t-bot" - }, - { - "rshares": "1559330738", - "voter": "ellepdub" - }, - { - "rshares": "14255474340", - "voter": "rynow" - }, - { - "rshares": "102359816437", - "voter": "michelle.gent" - }, - { - "rshares": "162462774968", - "voter": "herpetologyguy" - }, - { - "rshares": "65890799048", - "voter": "natubat" - }, - { - "rshares": "29752591712", - "voter": "morgan.waser" - }, - { - "rshares": "30488743437", - "voter": "alishi" - }, - { - "rshares": "71211717915", - "voter": "johannvdwalt" - }, - { - "rshares": "3763757175", - "voter": "handyman" - }, - { - "rshares": "2182505157", - "voter": "strong-ai" - }, - { - "rshares": "48703757368", - "voter": "gamer00" - }, - { - "rshares": "12673291063", - "voter": "vannour" - }, - { - "rshares": "139478026025", - "voter": "techslut" - }, - { - "rshares": "204752060733", - "voter": "slider2990" - }, - { - "rshares": "1031809211879", - "voter": "created" - }, - { - "rshares": "174029400056", - "voter": "edb" - }, - { - "rshares": "1013072381", - "voter": "technoprogressiv" - }, - { - "rshares": "44598171229", - "voter": "mafeeva" - }, - { - "rshares": "6190607154390", - "voter": "vcelier" - }, - { - "rshares": "2300326884815", - "voter": "newhope" - }, - { - "rshares": "735598616", - "voter": "steemnet" - }, - { - "rshares": "51181772606", - "voter": "darth-azrael" - }, - { - "rshares": "769525437", - "voter": "homo.steemiensis" - }, - { - "rshares": "19075299258", - "voter": "paolobeneforti" - }, - { - "rshares": "125284153811", - "voter": "silviabeneforti" - }, - { - "rshares": "18299186567", - "voter": "darth-cryptic" - }, - { - "rshares": "3223542024909", - "voter": "tarazkp" - }, - { - "rshares": "19293154022577", - "voter": "trafalgar" - }, - { - "rshares": "4281376784", - "voter": "makersunited" - }, - { - "rshares": "27592015940", - "voter": "dickturpin" - }, - { - "rshares": "5544571077", - "voter": "lizanomadsoul" - }, - { - "rshares": "309614470141", - "voter": "raindrop" - }, - { - "rshares": "18689917389", - "voter": "choogirl" - }, - { - "rshares": "57902393928", - "voter": "zaragast" - }, - { - "rshares": "11015311618", - "voter": "dune69" - }, - { - "rshares": "1897610812535", - "voter": "smasssh" - }, - { - "rshares": "130943087286", - "voter": "thenightflier" - }, - { - "rshares": "341483228683", - "voter": "cryptocurator" - }, - { - "rshares": "32414349468", - "voter": "stackin" - }, - { - "rshares": "29305887871", - "voter": "jerrybanfield" - }, - { - "rshares": "5262979167", - "voter": "aleister" - }, - { - "rshares": "82579731166", - "voter": "ironshield" - }, - { - "rshares": "1437093273", - "voter": "kilianmiguel" - }, - { - "rshares": "54539509525", - "voter": "stevelivingston" - }, - { - "rshares": "10341811451", - "voter": "cecicastor" - }, - { - "rshares": "27113384890", - "voter": "anneke" - }, - { - "rshares": "1820928337441", - "voter": "galenkp" - }, - { - "rshares": "34886012727", - "voter": "sam99" - }, - { - "rshares": "310083064350", - "voter": "paulag" - }, - { - "rshares": "336464165459", - "voter": "jaynie" - }, - { - "rshares": "67871179896", - "voter": "jayna" - }, - { - "rshares": "634127454599", - "voter": "dswigle" - }, - { - "rshares": "796292024", - "voter": "d-pend" - }, - { - "rshares": "547599992774", - "voter": "offgridlife" - }, - { - "rshares": "59876672314", - "voter": "captainquack22" - }, - { - "rshares": "4426743204", - "voter": "sportspodium" - }, - { - "rshares": "56653989374", - "voter": "molometer" - }, - { - "rshares": "1820620352", - "voter": "sannur" - }, - { - "rshares": "11715838097", - "voter": "beautifulbullies" - }, - { - "rshares": "1044697601", - "voter": "shitsignals" - }, - { - "rshares": "1224776223524", - "voter": "steemvote" - }, - { - "rshares": "170716399261", - "voter": "steempostitalia" - }, - { - "rshares": "390482712819", - "voter": "davedickeyyall" - }, - { - "rshares": "1058268198", - "voter": "africaunited" - }, - { - "rshares": "6270420100", - "voter": "himshweta" - }, - { - "rshares": "14612970825", - "voter": "felander" - }, - { - "rshares": "15359356283", - "voter": "santigs" - }, - { - "rshares": "832466461", - "voter": "sportsgeek" - }, - { - "rshares": "2384893291", - "voter": "musicgeek" - }, - { - "rshares": "829814626", - "voter": "kromtar" - }, - { - "rshares": "51463460525", - "voter": "bashadow" - }, - { - "rshares": "9201031157", - "voter": "kimzwarch" - }, - { - "rshares": "1857499655", - "voter": "nurhayati" - }, - { - "rshares": "50617299564", - "voter": "accelerator" - }, - { - "rshares": "513708730716", - "voter": "artonmysleeve" - }, - { - "rshares": "8178946510", - "voter": "zeky" - }, - { - "rshares": "2266579896", - "voter": "hokkaido" - }, - { - "rshares": "3314976377", - "voter": "zeinmalik" - }, - { - "rshares": "657656745", - "voter": "sme" - }, - { - "rshares": "53907894081", - "voter": "alinakot" - }, - { - "rshares": "1351111106", - "voter": "yogacoach" - }, - { - "rshares": "231050962341", - "voter": "chinchilla" - }, - { - "rshares": "3131371309", - "voter": "deathwing" - }, - { - "rshares": "583744235913", - "voter": "revisesociology" - }, - { - "rshares": "749746785183", - "voter": "puncakbukit" - }, - { - "rshares": "14964182768", - "voter": "espoem" - }, - { - "rshares": "12281121506", - "voter": "mcfarhat" - }, - { - "rshares": "1577952544", - "voter": "gvand" - }, - { - "rshares": "13930954488", - "voter": "borgheseglass" - }, - { - "rshares": "8863943751", - "voter": "shadflyfilms" - }, - { - "rshares": "28599932826", - "voter": "heidi71" - }, - { - "rshares": "3889176937", - "voter": "m-san" - }, - { - "rshares": "38833319411", - "voter": "daisyphotography" - }, - { - "rshares": "11164440095", - "voter": "caladan" - }, - { - "rshares": "11905532780", - "voter": "ronak10" - }, - { - "rshares": "1007371887", - "voter": "acolucky" - }, - { - "rshares": "93240603272", - "voter": "steemflow" - }, - { - "rshares": "73540320443", - "voter": "emrebeyler" - }, - { - "rshares": "24561884883", - "voter": "brandt" - }, - { - "rshares": "670798925664", - "voter": "citizensmith" - }, - { - "rshares": "1689319942744", - "voter": "traf" - }, - { - "rshares": "18756096221", - "voter": "itchyfeetdonica" - }, - { - "rshares": "107504940807", - "voter": "obvious" - }, - { - "rshares": "1153260533", - "voter": "funtraveller" - }, - { - "rshares": "26583134972", - "voter": "nokodemion" - }, - { - "rshares": "7419276265", - "voter": "marcolino76" - }, - { - "rshares": "10153184913", - "voter": "howiemac" - }, - { - "rshares": "1541678168344", - "voter": "steembasicincome" - }, - { - "rshares": "269481896319", - "voter": "jongolson" - }, - { - "rshares": "22403517679", - "voter": "neupanedipen" - }, - { - "rshares": "78225022369", - "voter": "nealmcspadden" - }, - { - "rshares": "1044254536", - "voter": "manncpt" - }, - { - "rshares": "47800330484", - "voter": "purefood" - }, - { - "rshares": "714301271700", - "voter": "soyrosa" - }, - { - "rshares": "2702724796", - "voter": "philnewton" - }, - { - "rshares": "28525572773", - "voter": "jjangdol69" - }, - { - "rshares": "133727705254", - "voter": "chronocrypto" - }, - { - "rshares": "1852323609", - "voter": "nobyeni" - }, - { - "rshares": "6200117745", - "voter": "cadawg" - }, - { - "rshares": "1663160031", - "voter": "ericburgoyne" - }, - { - "rshares": "102495535453", - "voter": "bigtom13" - }, - { - "rshares": "688791119", - "voter": "edgarf1979" - }, - { - "rshares": "1907269871", - "voter": "moeenali" - }, - { - "rshares": "58514069983", - "voter": "verhp11" - }, - { - "rshares": "1288757547", - "voter": "pkocjan" - }, - { - "rshares": "1527712726", - "voter": "anikys3reasure" - }, - { - "rshares": "79200121818", - "voter": "barge" - }, - { - "rshares": "4038404434", - "voter": "eugenekul" - }, - { - "rshares": "5656431570", - "voter": "crowbarmama" - }, - { - "rshares": "147137329238", - "voter": "whack.science" - }, - { - "rshares": "1607287617", - "voter": "russellstockley" - }, - { - "rshares": "191403897262", - "voter": "cryptictruth" - }, - { - "rshares": "9250010667", - "voter": "afrinsultana" - }, - { - "rshares": "39679805401", - "voter": "teutonium" - }, - { - "rshares": "23400174344", - "voter": "oadissin" - }, - { - "rshares": "5033736655", - "voter": "tubcat" - }, - { - "rshares": "43142453895", - "voter": "talesfrmthecrypt" - }, - { - "rshares": "11315220534", - "voter": "bestboom" - }, - { - "rshares": "1293761031", - "voter": "g-money-needed" - }, - { - "rshares": "14751385607", - "voter": "abrockman" - }, - { - "rshares": "93301583412", - "voter": "ronaldoavelino" - }, - { - "rshares": "11465706751", - "voter": "goldvault" - }, - { - "rshares": "376684534", - "voter": "sekhet" - }, - { - "rshares": "585555514787", - "voter": "dera123" - }, - { - "rshares": "784625792", - "voter": "brightideas" - }, - { - "rshares": "120126804554", - "voter": "broncofan99" - }, - { - "rshares": "13949444124", - "voter": "racibo" - }, - { - "rshares": "16145389012", - "voter": "francisftlp" - }, - { - "rshares": "11978761987", - "voter": "freddio" - }, - { - "rshares": "1680501740", - "voter": "blainjones" - }, - { - "rshares": "660898125", - "voter": "alitavirgen" - }, - { - "rshares": "15973840630", - "voter": "allover" - }, - { - "rshares": "327891870486", - "voter": "quochuy" - }, - { - "rshares": "6573001668", - "voter": "thegoldencobra" - }, - { - "rshares": "125615751285", - "voter": "saboin" - }, - { - "rshares": "39807905771", - "voter": "janton" - }, - { - "rshares": "535198285", - "voter": "globalschool" - }, - { - "rshares": "22811817571", - "voter": "savagebits" - }, - { - "rshares": "802306992", - "voter": "glodniwiedzy" - }, - { - "rshares": "2827342345", - "voter": "mrs.goldkey" - }, - { - "rshares": "4818980946296", - "voter": "slobberchops" - }, - { - "rshares": "16300672392", - "voter": "eii" - }, - { - "rshares": "10615651492", - "voter": "diabonua" - }, - { - "rshares": "465703794", - "voter": "xers" - }, - { - "rshares": "4416149405", - "voter": "spamfarmer" - }, - { - "rshares": "486618078106", - "voter": "cryptoandcoffee" - }, - { - "rshares": "43773885370", - "voter": "insaneworks" - }, - { - "rshares": "183197714549", - "voter": "digital.mine" - }, - { - "rshares": "1702033548", - "voter": "swisswitness" - }, - { - "rshares": "426277112516", - "voter": "fitat40" - }, - { - "rshares": "819307661", - "voter": "moneybaby" - }, - { - "rshares": "0", - "voter": "steemprotect" - }, - { - "rshares": "29174606223", - "voter": "k0wsk1" - }, - { - "rshares": "450717885", - "voter": "abduljalill" - }, - { - "rshares": "2709403254", - "voter": "daath" - }, - { - "rshares": "29998125343", - "voter": "dalz" - }, - { - "rshares": "3030226303959", - "voter": "goblinknackers" - }, - { - "rshares": "1345305691093", - "voter": "partitura" - }, - { - "rshares": "722645931", - "voter": "arrixion" - }, - { - "rshares": "22272169369", - "voter": "mimismartypants" - }, - { - "rshares": "63699307189", - "voter": "goingbonkers" - }, - { - "rshares": "2449844405", - "voter": "slutwife" - }, - { - "rshares": "37008067063", - "voter": "dlike" - }, - { - "rshares": "6702974131", - "voter": "judethedude" - }, - { - "rshares": "39940315905", - "voter": "engrave" - }, - { - "rshares": "3335367537", - "voter": "bagpuss" - }, - { - "rshares": "4481967571", - "voter": "chops.support" - }, - { - "rshares": "180166719268", - "voter": "upvoteshares" - }, - { - "rshares": "1170425109", - "voter": "bobby.madagascar" - }, - { - "rshares": "11498244", - "voter": "laissez-faire" - }, - { - "rshares": "2887734190", - "voter": "silverkey" - }, - { - "rshares": "12470654756", - "voter": "silvervault" - }, - { - "rshares": "4779101352", - "voter": "cryptycoon" - }, - { - "rshares": "5066139288", - "voter": "cryptoclerk" - }, - { - "rshares": "4624765452", - "voter": "hyperbole" - }, - { - "rshares": "507954670", - "voter": "everyoung" - }, - { - "rshares": "17007312017", - "voter": "followjohngalt" - }, - { - "rshares": "6539651752", - "voter": "mistia" - }, - { - "rshares": "1700349783", - "voter": "themightysquid" - }, - { - "rshares": "23275605862", - "voter": "moneytron" - }, - { - "rshares": "14605891969", - "voter": "retrodroid" - }, - { - "rshares": "66309512645", - "voter": "steem-on-2020" - }, - { - "rshares": "30681162947", - "voter": "tigerrkg" - }, - { - "rshares": "4000345591", - "voter": "tommyknockers" - }, - { - "rshares": "4346385265", - "voter": "brucutu1" - }, - { - "rshares": "4328569749", - "voter": "brucutu2" - }, - { - "rshares": "15573906270", - "voter": "delabo" - }, - { - "rshares": "1384271629", - "voter": "noekie" - }, - { - "rshares": "554620241", - "voter": "permaculturedude" - }, - { - "rshares": "932956426", - "voter": "princessamber" - }, - { - "rshares": "4350391676", - "voter": "tubiska" - }, - { - "rshares": "4506297530", - "voter": "pocoto" - }, - { - "rshares": "4518600013", - "voter": "kitty-kitty" - }, - { - "rshares": "4582619740", - "voter": "jussara" - }, - { - "rshares": "4391853331", - "voter": "cyrillo" - }, - { - "rshares": "936729554", - "voter": "ghostdylan" - }, - { - "rshares": "9724462066", - "voter": "scoopstakes" - }, - { - "rshares": "6437912081", - "voter": "nanzo-snaps" - }, - { - "rshares": "4856411945", - "voter": "hamsa.quality" - }, - { - "rshares": "4461626090", - "voter": "carioca" - }, - { - "rshares": "1894904966", - "voter": "bewithbreath" - }, - { - "rshares": "976797273", - "voter": "sophieandhenrik" - }, - { - "rshares": "14655883351", - "voter": "cpt-sparrow" - }, - { - "rshares": "498692727543", - "voter": "ttg" - }, - { - "rshares": "22079566658", - "voter": "maryincryptoland" - }, - { - "rshares": "580305274", - "voter": "kirstieclutte" - }, - { - "rshares": "6084093873", - "voter": "gulf41" - }, - { - "rshares": "41815160529", - "voter": "banvie" - }, - { - "rshares": "2319793510", - "voter": "iamjohn" - }, - { - "rshares": "1219920394", - "voter": "bimguide" - }, - { - "rshares": "2912573841", - "voter": "kgswallet" - }, - { - "rshares": "1262214956", - "voter": "milu-the-dog" - }, - { - "rshares": "54014780073", - "voter": "asmr.tist" - }, - { - "rshares": "10550906969", - "voter": "badfinger" - }, - { - "rshares": "1041510258", - "voter": "triplea.bot" - }, - { - "rshares": "78849827952", - "voter": "steem.leo" - }, - { - "rshares": "2436160391", - "voter": "freddio.sport" - }, - { - "rshares": "5366420064", - "voter": "babytarazkp" - }, - { - "rshares": "16990824094", - "voter": "asteroids" - }, - { - "rshares": "4173968004", - "voter": "thranax" - }, - { - "rshares": "1035843564", - "voter": "midlet-creates" - }, - { - "rshares": "496872143", - "voter": "one.life" - }, - { - "rshares": "20787880177", - "voter": "maxuvd" - }, - { - "rshares": "47076036866", - "voter": "jk6276.life" - }, - { - "rshares": "1583525176", - "voter": "debtfreein2" - }, - { - "rshares": "1451525386", - "voter": "mister.reatard" - }, - { - "rshares": "1331091302", - "voter": "therealyme" - }, - { - "rshares": "5542281384", - "voter": "bilpcoin.pay" - }, - { - "rshares": "2236771961", - "voter": "qwertm" - }, - { - "rshares": "0", - "voter": "gerbo" - }, - { - "rshares": "561430048", - "voter": "steemlondon" - }, - { - "rshares": "1529784193", - "voter": "khalccc" - }, - { - "rshares": "1189675482", - "voter": "galenkp.aus" - }, - { - "rshares": "905198533", - "voter": "steempower-001" - }, - { - "rshares": "1519555452", - "voter": "yohjuan" - }, - { - "rshares": "4924627333", - "voter": "gmlrecordz" - }, - { - "rshares": "10710347795", - "voter": "simply2koool" - }, - { - "rshares": "947732397", - "voter": "ribary" - }, - { - "rshares": "17697151", - "voter": "cmdd" - }, - { - "rshares": "1272182603", - "voter": "bilpcoinbpc" - }, - { - "rshares": "119187779", - "voter": "steempower-002" - }, - { - "rshares": "17845269993", - "voter": "mice-k" - }, - { - "rshares": "1467541026", - "voter": "curamax" - }, - { - "rshares": "574755547", - "voter": "steemcityrewards" - }, - { - "rshares": "737492082", - "voter": "dpend.active" - }, - { - "rshares": "37099033410", - "voter": "monica-ene" - }, - { - "rshares": "2196056735", - "voter": "fengchao" - }, - { - "rshares": "3405485657", - "voter": "hivebuzz" - }, - { - "rshares": "1660545649572", - "voter": "hellohive" - }, - { - "rshares": "19713788374", - "voter": "hiveyoda" - }, - { - "rshares": "28068813041", - "voter": "creativemary" - }, - { - "rshares": "577599772706", - "voter": "softworld" - }, - { - "rshares": "8001192611", - "voter": "polish.hive" - }, - { - "rshares": "802598128", - "voter": "sunsan" - }, - { - "rshares": "28080365", - "voter": "tips.tracker" - }, - { - "rshares": "74046988468", - "voter": "dcityrewards" - }, - { - "rshares": "635225760", - "voter": "ninnu" - }, - { - "rshares": "250484436579", - "voter": "hivelander" - }, - { - "rshares": "11572060935", - "voter": "hairofmedusa" - }, - { - "rshares": "9732553599", - "voter": "sweetmonsters" - }, - { - "rshares": "74948311731", - "voter": "hivecur" - }, - { - "rshares": "0", - "voter": "mutabor78" - }, - { - "rshares": "1143317257", - "voter": "hivecur2" - } + "active_votes": [ + { + "rshares": "518197131276", + "voter": "barrie" + }, + { + "rshares": "31620599440742", + "voter": "smooth" + }, + { + "rshares": "1968100090680", + "voter": "badassmother" + }, + { + "rshares": "3311776812132", + "voter": "pharesim" + }, + { + "rshares": "2052926274941", + "voter": "hr1" + }, + { + "rshares": "1337025448249", + "voter": "rossco99" + }, + { + "rshares": "22864866028", + "voter": "jaewoocho" + }, + { + "rshares": "1619361992750", + "voter": "joseph" + }, + { + "rshares": "98682259833", + "voter": "aizensou" + }, + { + "rshares": "462397546754", + "voter": "recursive3" + }, + { + "rshares": "3120246710189", + "voter": "recursive" + }, + { + "rshares": "1246163169", + "voter": "mineralwasser" + }, + { + "rshares": "681003747775", + "voter": "boombastic" + }, + { + "rshares": "94094732044", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6959103550", + "voter": "bingo-0" + }, + { + "rshares": "1669989826", + "voter": "bingo-1" + }, + { + "rshares": "5938484287107", + "voter": "smooth.witness" + }, + { + "rshares": "445429446140", + "voter": "boatymcboatface" + }, + { + "rshares": "9408475799", + "voter": "idol" + }, + { + "rshares": "284298500346", + "voter": "chitty" + }, + { + "rshares": "1619440533", + "voter": "jocelyn" + }, + { + "rshares": "15004137591", + "voter": "gregory-f" + }, + { + "rshares": "148161564048", + "voter": "edgeland" + }, + { + "rshares": "9604795718", + "voter": "gregory60" + }, + { + "rshares": "1272853996010", + "voter": "gavvet" + }, + { + "rshares": "89896930629", + "voter": "eeks" + }, + { + "rshares": "2015882351", + "voter": "fkn" + }, + { + "rshares": "478461713", + "voter": "paco-steem" + }, + { + "rshares": "5763764389", + "voter": "spaninv" + }, + { + "rshares": "7733788543", + "voter": "nate-atkins" + }, + { + "rshares": "2649751442", + "voter": "elishagh1" + }, + { + "rshares": "8669787638", + "voter": "richman" + }, + { + "rshares": "599927640145", + "voter": "nanzo-scoop" + }, + { + "rshares": "459984469", + "voter": "jeffanthonyfds" + }, + { + "rshares": "177390312070", + "voter": "mummyimperfect" + }, + { + "rshares": "313687341", + "voter": "coar" + }, + { + "rshares": "106628883920", + "voter": "asch" + }, + { + "rshares": "1061168224", + "voter": "murh" + }, + { + "rshares": "6230682263", + "voter": "cryptofunk" + }, + { + "rshares": "2111403468", + "voter": "error" + }, + { + "rshares": "985480652331", + "voter": "cyber" + }, + { + "rshares": "61710743415", + "voter": "theshell" + }, + { + "rshares": "50878177282", + "voter": "ak2020" + }, + { + "rshares": "409218031185", + "voter": "taoteh1221" + }, + { + "rshares": "418880227", + "voter": "applecrisp" + }, + { + "rshares": "373313301", + "voter": "stiletto" + }, + { + "rshares": "375920034566", + "voter": "hedge-x" + }, + { + "rshares": "55577392625", + "voter": "juanmiguelsalas" + }, + { + "rshares": "33780018119", + "voter": "ratel" + }, + { + "rshares": "280669440211", + "voter": "trogdor" + }, + { + "rshares": "121380113922", + "voter": "geoffrey" + }, + { + "rshares": "16025171812", + "voter": "kimziv" + }, + { + "rshares": "76007179625", + "voter": "emily-cook" + }, + { + "rshares": "2187587354", + "voter": "superfreek" + }, + { + "rshares": "30279417098", + "voter": "acassity" + }, + { + "rshares": "17557768630", + "voter": "grey580" + }, + { + "rshares": "280916636", + "voter": "ladyclair" + }, + { + "rshares": "19974572536", + "voter": "thebatchman" + }, + { + "rshares": "61460113993", + "voter": "good-karma" + }, + { + "rshares": "76019855821", + "voter": "rubybian" + }, + { + "rshares": "5270775482", + "voter": "riscadox" + }, + { + "rshares": "17903672525", + "voter": "konstantin" + }, + { + "rshares": "256623434", + "voter": "mstang83" + }, + { + "rshares": "25057071012", + "voter": "tcfxyz" + }, + { + "rshares": "6939848809", + "voter": "futurefood" + }, + { + "rshares": "844421054", + "voter": "endgame" + }, + { + "rshares": "823151341679", + "voter": "slowwalker" + }, + { + "rshares": "9840533745", + "voter": "furion" + }, + { + "rshares": "52479155", + "voter": "ch0c0latechip" + }, + { + "rshares": "19169622645", + "voter": "sebastien" + }, + { + "rshares": "12011479963", + "voter": "asim" + }, + { + "rshares": "14487516865", + "voter": "aaseb" + }, + { + "rshares": "4097381727", + "voter": "incomemonthly" + }, + { + "rshares": "4431046054", + "voter": "karen13" + }, + { + "rshares": "10646413479", + "voter": "deviedev" + }, + { + "rshares": "258981906731", + "voter": "nabilov" + }, + { + "rshares": "5482949271", + "voter": "tinyhomeliving" + }, + { + "rshares": "847366145", + "voter": "luisucv34" + }, + { + "rshares": "54561525717", + "voter": "streetstyle" + }, + { + "rshares": "452581935074", + "voter": "knozaki2015" + }, + { + "rshares": "35782074085", + "voter": "creemej" + }, + { + "rshares": "15377860373", + "voter": "nippel66" + }, + { + "rshares": "24417657582", + "voter": "phenom" + }, + { + "rshares": "167298234999", + "voter": "blueorgy" + }, + { + "rshares": "4256486989", + "voter": "oululahti" + }, + { + "rshares": "349568852", + "voter": "poseidon" + }, + { + "rshares": "2182574144", + "voter": "iamwne" + }, + { + "rshares": "20119867662", + "voter": "mustafaomar" + }, + { + "rshares": "3506024506", + "voter": "simon.braki.love" + }, + { + "rshares": "39345808582", + "voter": "royaltiffany" + }, + { + "rshares": "14954254688", + "voter": "beowulfoflegend" + }, + { + "rshares": "32542074868", + "voter": "deanliu" + }, + { + "rshares": "5373137632", + "voter": "rainchen" + }, + { + "rshares": "86528557116", + "voter": "rea" + }, + { + "rshares": "1616791389", + "voter": "tokyodude" + }, + { + "rshares": "7822595883", + "voter": "neroru" + }, + { + "rshares": "215384292560", + "voter": "jl777" + }, + { + "rshares": "1634827342", + "voter": "positive" + }, + { + "rshares": "5172692235", + "voter": "gustavopasquini" + }, + { + "rshares": "12345105776", + "voter": "moon32walker" + }, + { + "rshares": "6232841459", + "voter": "summonerrk" + }, + { + "rshares": "116726661", + "voter": "firehorse" + }, + { + "rshares": "942266185", + "voter": "happyphoenix" + }, + { + "rshares": "42775729046", + "voter": "claudiop63" + }, + { + "rshares": "18175932801", + "voter": "proto" + }, + { + "rshares": "230455938", + "voter": "jasen.g1311" + }, + { + "rshares": "29035294642", + "voter": "pinkisland" + }, + { + "rshares": "3266602711", + "voter": "ace108" + }, + { + "rshares": "2708203880", + "voter": "sisterholics" + }, + { + "rshares": "1483259422", + "voter": "alex.chien" + }, + { + "rshares": "8964609699", + "voter": "royalmacro" + }, + { + "rshares": "11169454095", + "voter": "logic" + }, + { + "rshares": "55043445", + "voter": "fnait" + }, + { + "rshares": "3482504625", + "voter": "bkkshadow" + }, + { + "rshares": "25636155654", + "voter": "pixielolz" + }, + { + "rshares": "56747133", + "voter": "reported" + }, + { + "rshares": "3353832611", + "voter": "glitterpig" + }, + { + "rshares": "7350128313", + "voter": "jed78" + }, + { + "rshares": "6785260219", + "voter": "shortcut" + }, + { + "rshares": "111828316", + "voter": "andrew-charles" + }, + { + "rshares": "870677269", + "voter": "metaflute" + }, + { + "rshares": "9193722747", + "voter": "taker" + }, + { + "rshares": "1894317852", + "voter": "gruber" + }, + { + "rshares": "15412506890", + "voter": "felixxx" + }, + { + "rshares": "52486879", + "voter": "krushing" + }, + { + "rshares": "95766386323", + "voter": "laonie" + }, + { + "rshares": "157495713864", + "voter": "twinner" + }, + { + "rshares": "61361321", + "voter": "southbaybits" + }, + { + "rshares": "24561066673", + "voter": "laoyao" + }, + { + "rshares": "3996853733", + "voter": "myfirst" + }, + { + "rshares": "19439859020", + "voter": "somebody" + }, + { + "rshares": "726849243", + "voter": "flysaga" + }, + { + "rshares": "66940286", + "voter": "ann76" + }, + { + "rshares": "18234762995", + "voter": "timelapse" + }, + { + "rshares": "2501622377", + "voter": "gmurph" + }, + { + "rshares": "494521401", + "voter": "minnowsunited" + }, + { + "rshares": "4294430078", + "voter": "midnightoil" + }, + { + "rshares": "4281232336", + "voter": "ullikume" + }, + { + "rshares": "5693098913", + "voter": "cjclaro" + }, + { + "rshares": "52700570", + "voter": "whatyouganjado" + }, + { + "rshares": "36649510663", + "voter": "budgetbucketlist" + }, + { + "rshares": "10740564621", + "voter": "xiaohui" + }, + { + "rshares": "176650903994", + "voter": "terrycraft" + }, + { + "rshares": "461088291", + "voter": "elfkitchen" + }, + { + "rshares": "103384996602", + "voter": "joele" + }, + { + "rshares": "5855063437", + "voter": "oflyhigh" + }, + { + "rshares": "59002619", + "voter": "makaveli" + }, + { + "rshares": "335807163", + "voter": "xiaokongcom" + }, + { + "rshares": "13237481048", + "voter": "gargon" + }, + { + "rshares": "676922173", + "voter": "xianjun" + }, + { + "rshares": "26283514539", + "voter": "hanshotfirst" + }, + { + "rshares": "9199546040", + "voter": "tom77" + }, + { + "rshares": "126090405", + "voter": "sarita" + }, + { + "rshares": "52450091", + "voter": "alexbones" + }, + { + "rshares": "2249542145", + "voter": "njall" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "6402569097", + "voter": "rubenalexander" + }, + { + "rshares": "2077210674", + "voter": "chinadaily" + }, + { + "rshares": "11979592683", + "voter": "kyriacos" + }, + { + "rshares": "806759200", + "voter": "jayfox" + }, + { + "rshares": "1647538615", + "voter": "ignat" + }, + { + "rshares": "90168606946", + "voter": "serejandmyself" + }, + { + "rshares": "106144628", + "voter": "pollina" + }, + { + "rshares": "4781807217", + "voter": "almerri" + }, + { + "rshares": "9071955992", + "voter": "johnnyyash" + }, + { + "rshares": "3221126774", + "voter": "macartem" + }, + { + "rshares": "9310407829", + "voter": "gvargas123" + }, + { + "rshares": "4658385146", + "voter": "themanualbot" + }, + { + "rshares": "2005245825", + "voter": "levycore" + }, + { + "rshares": "58169756", + "voter": "cnmtz" + }, + { + "rshares": "476161300", + "voter": "claudia" + }, + { + "rshares": "70203690", + "voter": "ozertayiz" + }, + { + "rshares": "57942270939", + "voter": "mandibil" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "71507788", + "voter": "steembriefing" + }, + { + "rshares": "51356966", + "voter": "salebored" + }, + { + "rshares": "54612436", + "voter": "riv" + }, + { + "rshares": "5081885632", + "voter": "ats-david" + }, + { + "rshares": "1544966078", + "voter": "pollux.one" + }, + { + "rshares": "7776590110", + "voter": "einsteinpotsdam" + }, + { + "rshares": "1932014303", + "voter": "funkywanderer" + }, + { + "rshares": "56854958", + "voter": "jasonji12" + }, + { + "rshares": "5053551216", + "voter": "richardcrill" + }, + { + "rshares": "184076493", + "voter": "team101" + }, + { + "rshares": "51444457", + "voter": "bitdrone" + }, + { + "rshares": "51436144", + "voter": "sleepcult" + }, + { + "rshares": "182060433", + "voter": "greatness" + }, + { + "rshares": "1233641092", + "voter": "goldstein" + }, + { + "rshares": "27674257450", + "voter": "sponge-bob" + }, + { + "rshares": "3432704465", + "voter": "getonthetrain" + }, + { + "rshares": "44943498845", + "voter": "zahnspange" + }, + { + "rshares": "414338857", + "voter": "steemorama" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "59594290", + "voter": "sunjo" + }, + { + "rshares": "285084767", + "voter": "benjamin.still" + }, + { + "rshares": "229690686860", + "voter": "asksisk" + }, + { + "rshares": "27667822273", + "voter": "brains" + }, + { + "rshares": "1772168372", + "voter": "alwayzgame" + }, + { + "rshares": "3531841420", + "voter": "rigaronib" + }, + { + "rshares": "339268967", + "voter": "anomaly" + }, + { + "rshares": "1550172009", + "voter": "allesgruen" + }, + { + "rshares": "123129821", + "voter": "ola1" + }, + { + "rshares": "431087473", + "voter": "littlemorelove" + }, + { + "rshares": "68608664", + "voter": "mari5555na" + }, + { + "rshares": "53309537", + "voter": "michaelblizek" + }, + { + "rshares": "135324063", + "voter": "creativeyoke" + }, + { + "rshares": "841787796", + "voter": "annesaya" + }, + { + "rshares": "51240567", + "voter": "billkappa442" + }, + { + "rshares": "50225780", + "voter": "steemq" + }, + { + "rshares": "50139069", + "voter": "slow" + }, + { + "rshares": "58668861", + "voter": "humans" + }, + { + "rshares": "50796122", + "voter": "factom" + }, + { + "rshares": "50538694", + "voter": "fenix" + }, + { + "rshares": "1921231770", + "voter": "bapparabi" + }, + { + "rshares": "50532230", + "voter": "friends" + }, + { + "rshares": "50349676", + "voter": "albertheijn" + }, + { + "rshares": "161839498", + "voter": "durex" + }, + { + "rshares": "161815656", + "voter": "ranger" + }, + { + "rshares": "435365865", + "voter": "witchcraftblog" + }, + { + "rshares": "161205518", + "voter": "acute" + }, + { + "rshares": "160900665", + "voter": "digitalillusions" + }, + { + "rshares": "4087522528", + "voter": "dresden" + }, + { + "rshares": "155111085", + "voter": "coolbeans" + }, + { + "rshares": "160151932", + "voter": "maxlviv" + }, + { + "rshares": "158393209", + "voter": "food-creator" + }, + { + "rshares": "159973989", + "voter": "capcom" + }, + { + "rshares": "159175576", + "voter": "fallout" + }, + { + "rshares": "158560941", + "voter": "steemthis" + }, + { + "rshares": "158535752", + "voter": "nerds" + }, + { + "rshares": "31680362460", + "voter": "goldmatters" + }, + { + "rshares": "136494240", + "voter": "bleujay" + }, + { + "rshares": "150430703", + "voter": "jproto22" + } + ], + "author": "knozaki2015", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\"Easy
\n

\n

There are many vegan or raw chocolates to buy, but the best chocolates comes from your own kitchen

\n

HOME MADE ROCKS !!

\n


\n

\"Schokolade

\n 

\n

What is raw chocolate ? The cocoa mass that you need for it consists of unroasted fermented cocoa beans . All fiber and nutrients are untouched. The cocoa mass you can buy online.

\n


\n
\"Schokolade1\"

\n
\nAnd here comes the recipe:

\n
    \n
  • 400 g raw cacao mass (not to be confused with cocoa butter) 
  • \n
  • 2 Tablespoon Coconutoil (best is Dr. Goerg)
  • \n
  • 100 g sprouted buckwheat (for a Crunchy taste)
  • \n
  • 100 g peanuts
  • \n
  • 100 g Walnuts or chopped almonds , Goji berries or what you listen to taste .
    \n
  • \n
\n
    \n
  1. Melt the cocoa paste and coconut oil in a waterbath or in the hydrator at max . 42 degrees .
  2. \n
  3. Once it is melted add the nuts with a big spoon
  4. \n
  5. If you like bars, fill the chocolate nut mixture into silicone bars . You can buy bars in any bakery shop or at Amazon 
  6. \n
  7.  But you can also use a large shallow plate and place baking paper on the plate and fill with the chocolate nut mixture
  8. \n
\n

Be creative : Put anything you like onto the chocolate-nut mixture (Goji berries , whole nuts , coconut pieces etc.)

\n

Place the finished chocolate 1 Hour in your freezer

\n

Get the bars out of the form or break the chocolate from the plate  and put it into the fridge .

\n


\nTrust me, your chocolate won't stay too long in your fridge.... 

\n

Please follow me @allesgruen !

\n

German Original Article


\n

Written by @allesgruen & translated by @knozaki2015

\n

@knozaki2015 features authors and artist to promote them and a diversity of content.
\nThe author will receive 100% of the STEEM Dollars from this post

\n

If you like this post please support @allesgruen and follow the author!

\n


\n", + "category": "food", + "children": 34, + "created": "2016-09-15T14:24:12", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s10.postimg.org/5kfqkef9l/Easy_Dishes_To_Make_For_Your50th_Birthday_Dinner_P.jpg", + "https://s16.postimg.org/j1hikj3np/Schokolade_Bild.jpg", + "https://s16.postimg.org/pggjh7adh/Schokolade1.jpg" ], - "author": "meesterboom", - "author_payout_value": "0.000 HBD", - "author_reputation": 78.31, - "beneficiaries": [], - "blacklists": [], - "body": "![ninja_gardens.jpg](https://images.hive.blog/DQmU9EXhp1Cq8PG8zZykVxoWM23zEo5Nsgp1obp8n4xmPWk/ninja_gardens.jpg)\n\n*Eeewowurp eewowurp eewowurp*\n\nI stared in *perplexelment* at my phone which was ringing with the strangest and most unfamiliar ringtone. \n\nWhat the fuck was wrong with it? Was it the COVID? Was nothing safe from the COVID these days?\n\nI picked it up and noticed a picture of my mate *Daz* above the answer symbol. \n\nIt all clicked into place. This was the ringtone I had set for my close friends. \n\nSince COVID it hadn't rung much as everyone had hunkered down in their bunkers out of fear of the *Bat-Flu.*\n\n*Yo homie? Wha's going on?*\n\nI answered in a street drawl as if I were wearing pantaloons that were too short, a T-Shirt that was too big and was standing on a sun-drenched South Central LA street corner.\n\n*Hey bitches, how you doing?*\n\nMy mate *Daz's* face filled the screen and I realised that it was a video call. \n\nInwardly I cursed. Didn'y anyone just fucking phone anymore? Were ears alone no longer good enough? Did it always have to be fucking video and the accompanying fear of penile exposure because I am a saucy extrovert and feel pressured to get my lad out when on cam?\n\n*I'm cool, man. Just chilling with the family.*\n\nI lied convincingly as in the background my children fought and screamed over what to watch on the TV.\n\n*Cool cool. Well, never mind the family, mate. It's beer garden day.*\n\n*Daz's* mouth gaped wide in a grin like a rip on the heel of an old sock.\n\n*It's what day?*\n\nI asked in no little bafflement like a small monkey trying to set fire to a banana to get high.\n\nDaz pulled his head back from his phone then thrust it back up close to the screen with such fervour that I feared he would break right through the glass and tumble into my living room.\n\n*Beer garden day!!! BEERS!!! You must have heard? Lockdown is relaxing and pubs can open their beer gardens!! Are you up for it? Come on man. Let's get beered up in the sun!!*\n\nHe looked at me expectantly.\n\nI tried my best to smile like one of the lads.\n\n*Erm. aye, em, eh, bit short notice though. Dunno if I can get away what with the kids and all?*\n\nI said trying to stop my voice from raising up into a terrified squeak.\n\n*Kids?! Kids?! Fuck them, dude. That's what the wives are for. Come on, it's been ages! Let's tear the roof off the place!*\n\n*Daz's* picture blurred madly and I realised he was jumping up and down with excitement.\n\n*Erm, what about the COVID, do we need masks?*\n\nI was a bit nervous. I didn't really have a mask and I was stricken by the sudden fear of going out properly as if there wasn't a worldwide pandemic.\n\n*Masks? HAHAHAHAHA, how the fuck can you drink through a mask? No mate. No fucking masks, just beer and all that glorious freedom!*\n\n*Daz* threw his head back and shook his hand back and forth at his mouth, enthusiastically imitating guzzling a pint of beer. \n\nIt made him look like he was felating a Giraffe.\n\n*Come on man, live whilst your alive and all that. See you at the Goose at 3 o'clock?*\n\nHe looked expectantly at me. \n\nI furrowed my brow then snorted loudly through my nostrils as if I were a bull and the farmer were approaching with the big plastic funnel again.\n\n*Aye fuck it, let's do it. See you then.*\n\nI cut the call and paused. \n\nGo outside? Mix with normal people, in a bar with no masks? \n\nNow this... This was madness!", - "category": "life", - "children": 38, - "created": "2020-07-07T12:33:51", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "hiveblog/0.1", - "format": "markdown", - "image": [ - "https://images.hive.blog/DQmU9EXhp1Cq8PG8zZykVxoWM23zEo5Nsgp1obp8n4xmPWk/ninja_gardens.jpg" - ], - "tags": [ - "life", - "writing", - "story", - "blog", - "lockdown", - "beer", - "garden" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 101616764581259, - "payout": 41.058, - "payout_at": "2020-07-14T12:33:51", - "pending_payout_value": "41.058 HBD", - "percent_hbd": 10000, - "permlink": "the-gardens-of-babylon", - "post_id": 86931763, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 326 - }, - "title": "The Gardens Of Babylon", - "updated": "2020-07-07T12:33:51", - "url": "/life/@meesterboom/the-gardens-of-babylon" - }, - { - "active_votes": [ - { - "rshares": "22078484216", - "voter": "fractalnode" - }, - { - "rshares": "590233617376", - "voter": "onealfa" - }, - { - "rshares": "1326231954929", - "voter": "kingscrown" - }, - { - "rshares": "44479892124", - "voter": "churdtzu" - }, - { - "rshares": "115056062717", - "voter": "hedge-x" - }, - { - "rshares": "1514890429", - "voter": "paradise-paradox" - }, - { - "rshares": "14546630291", - "voter": "kennyskitchen" - }, - { - "rshares": "504384747377", - "voter": "mark-waser" - }, - { - "rshares": "95446373084", - "voter": "arcange" - }, - { - "rshares": "2555243707", - "voter": "raphaelle" - }, - { - "rshares": "9371795673", - "voter": "sterlinluxan" - }, - { - "rshares": "409535187", - "voter": "d3nv3r" - }, - { - "rshares": "9224271552919", - "voter": "jphamer1" - }, - { - "rshares": "1012962246", - "voter": "bidnat" - }, - { - "rshares": "46572757115", - "voter": "shanghaipreneur" - }, - { - "rshares": "2948521226", - "voter": "alchemage" - }, - { - "rshares": "22820685160", - "voter": "scaredycatguide" - }, - { - "rshares": "547533949767", - "voter": "borran" - }, - { - "rshares": "3195095310", - "voter": "burntmd" - }, - { - "rshares": "5456318156", - "voter": "johnvibes" - }, - { - "rshares": "23687797693", - "voter": "elamental" - }, - { - "rshares": "2634087089", - "voter": "catherinebleish" - }, - { - "rshares": "1091643168", - "voter": "mckeever" - }, - { - "rshares": "85358630163", - "voter": "shadowspub" - }, - { - "rshares": "65120473021", - "voter": "terrybrock" - }, - { - "rshares": "4983021303", - "voter": "dannyshine" - }, - { - "rshares": "41608418245", - "voter": "notconvinced" - }, - { - "rshares": "1321486418", - "voter": "brightstar" - }, - { - "rshares": "25234543944", - "voter": "por500bolos" - }, - { - "rshares": "637736034", - "voter": "tftproject" - }, - { - "rshares": "28727006224", - "voter": "dbroze" - }, - { - "rshares": "15555534749", - "voter": "eftnow" - }, - { - "rshares": "510994328050", - "voter": "digital-wisdom" - }, - { - "rshares": "1972741023", - "voter": "ethical-ai" - }, - { - "rshares": "24097982430", - "voter": "jwaser" - }, - { - "rshares": "74423431120", - "voter": "justyy" - }, - { - "rshares": "2350097462", - "voter": "freebornangel" - }, - { - "rshares": "14510965890", - "voter": "rynow" - }, - { - "rshares": "156025709025", - "voter": "herpetologyguy" - }, - { - "rshares": "2052605275", - "voter": "strong-ai" - }, - { - "rshares": "69213339954", - "voter": "wearechange-co" - }, - { - "rshares": "13200638850", - "voter": "mitchelljaworski" - }, - { - "rshares": "14179504474", - "voter": "makinstuff" - }, - { - "rshares": "5031506440", - "voter": "thoughts-in-time" - }, - { - "rshares": "1010413061", - "voter": "hopehuggs" - }, - { - "rshares": "952089805", - "voter": "technoprogressiv" - }, - { - "rshares": "5059144438", - "voter": "amariespeaks" - }, - { - "rshares": "6999780705", - "voter": "automaton" - }, - { - "rshares": "45199487199", - "voter": "markkujantunen" - }, - { - "rshares": "2676582066", - "voter": "dyrt88" - }, - { - "rshares": "2257594094624", - "voter": "alexis555" - }, - { - "rshares": "37962230905", - "voter": "eirik" - }, - { - "rshares": "153818794415", - "voter": "louisthomas" - }, - { - "rshares": "160969064869", - "voter": "preparedwombat" - }, - { - "rshares": "2553247951", - "voter": "freebornsociety" - }, - { - "rshares": "650057774", - "voter": "haileyscomet" - }, - { - "rshares": "3112472819", - "voter": "marxrab" - }, - { - "rshares": "41157966936", - "voter": "egonz" - }, - { - "rshares": "1128811099700", - "voter": "smasssh" - }, - { - "rshares": "11775896513", - "voter": "arnel" - }, - { - "rshares": "34908284856", - "voter": "whatamidoing" - }, - { - "rshares": "1101706196", - "voter": "khussan" - }, - { - "rshares": "24667429435", - "voter": "jerrybanfield" - }, - { - "rshares": "263323045671", - "voter": "drag33" - }, - { - "rshares": "34654666081", - "voter": "mys" - }, - { - "rshares": "79308729971", - "voter": "ironshield" - }, - { - "rshares": "211300872658", - "voter": "sumatranate" - }, - { - "rshares": "234583176454", - "voter": "arunava" - }, - { - "rshares": "55330789187", - "voter": "misslasvegas" - }, - { - "rshares": "69765352998", - "voter": "handofzara" - }, - { - "rshares": "3848364740", - "voter": "flauwy" - }, - { - "rshares": "294659031582", - "voter": "tonyz" - }, - { - "rshares": "6240025963", - "voter": "mxzn" - }, - { - "rshares": "19464364337", - "voter": "mdosev" - }, - { - "rshares": "4123884021", - "voter": "antimedia" - }, - { - "rshares": "30575075241", - "voter": "anacristinasilva" - }, - { - "rshares": "31744246394", - "voter": "sam99" - }, - { - "rshares": "8116744689", - "voter": "howtostartablog" - }, - { - "rshares": "32402135255", - "voter": "dadapizza" - }, - { - "rshares": "11132920740", - "voter": "colinhoward" - }, - { - "rshares": "13428800412", - "voter": "whd" - }, - { - "rshares": "537507210975", - "voter": "offgridlife" - }, - { - "rshares": "34683604102", - "voter": "thegreens" - }, - { - "rshares": "4494692024146", - "voter": "gunthertopp" - }, - { - "rshares": "2198026293", - "voter": "eco-alex" - }, - { - "rshares": "4239993440", - "voter": "binkyprod" - }, - { - "rshares": "51387075732", - "voter": "mcoinz79" - }, - { - "rshares": "3368461728", - "voter": "adambarratt" - }, - { - "rshares": "2578228159", - "voter": "bryandivisions" - }, - { - "rshares": "1233925614", - "voter": "rafalski" - }, - { - "rshares": "3173869590", - "voter": "heart-to-heart" - }, - { - "rshares": "10828622030", - "voter": "blazing" - }, - { - "rshares": "27532074334", - "voter": "vincentnijman" - }, - { - "rshares": "6360608262", - "voter": "howtobelight" - }, - { - "rshares": "765666862", - "voter": "rollingthunder" - }, - { - "rshares": "887697725796", - "voter": "stayoutoftherz" - }, - { - "rshares": "12133292368", - "voter": "pixelfan" - }, - { - "rshares": "2897350853", - "voter": "tykee" - }, - { - "rshares": "1200297772928", - "voter": "steemvote" - }, - { - "rshares": "281127867144", - "voter": "investingpennies" - }, - { - "rshares": "150899226681", - "voter": "jasonbu" - }, - { - "rshares": "3932364103", - "voter": "chetanpadliya" - }, - { - "rshares": "800216561", - "voter": "fabiyamada" - }, - { - "rshares": "126798744689", - "voter": "shanibeer" - }, - { - "rshares": "80146919105", - "voter": "chrisparis" - }, - { - "rshares": "8247205322914", - "voter": "tribesteemup" - }, - { - "rshares": "853893552258", - "voter": "onetin84" - }, - { - "rshares": "17811925182", - "voter": "costanza" - }, - { - "rshares": "10558481600", - "voter": "santigs" - }, - { - "rshares": "3056828052511", - "voter": "stoodkev" - }, - { - "rshares": "14615379917456", - "voter": "tipu" - }, - { - "rshares": "24527382416", - "voter": "thelordsharvest" - }, - { - "rshares": "9119198905", - "voter": "kimzwarch" - }, - { - "rshares": "41847001913", - "voter": "redouanemez" - }, - { - "rshares": "2086257670", - "voter": "shawkr13" - }, - { - "rshares": "218080095806", - "voter": "fbslo" - }, - { - "rshares": "3492471744031", - "voter": "vlemon" - }, - { - "rshares": "1443185068", - "voter": "paullifefit" - }, - { - "rshares": "3165431191", - "voter": "justinparke" - }, - { - "rshares": "2197948315", - "voter": "solarsupermama" - }, - { - "rshares": "288443907234", - "voter": "chinchilla" - }, - { - "rshares": "488609136712", - "voter": "taskmaster4450" - }, - { - "rshares": "342692198416", - "voter": "revisesociology" - }, - { - "rshares": "49058899438", - "voter": "yangyanje" - }, - { - "rshares": "571905684", - "voter": "superbing" - }, - { - "rshares": "45294197699", - "voter": "ecotrain" - }, - { - "rshares": "8784213476", - "voter": "shadflyfilms" - }, - { - "rshares": "7866681723", - "voter": "dinglehopper" - }, - { - "rshares": "6111588405", - "voter": "canadianrenegade" - }, - { - "rshares": "34445810124", - "voter": "pitboy" - }, - { - "rshares": "38483639559", - "voter": "daisyphotography" - }, - { - "rshares": "1524513676", - "voter": "kieranpearson" - }, - { - "rshares": "52966386461", - "voter": "joetunex" - }, - { - "rshares": "11419876537", - "voter": "tradingideas" - }, - { - "rshares": "703652601", - "voter": "photolander" - }, - { - "rshares": "7767983740", - "voter": "senorcoconut" - }, - { - "rshares": "4579392155", - "voter": "dashroom" - }, - { - "rshares": "22601422249", - "voter": "nomad-magus" - }, - { - "rshares": "2666381270", - "voter": "kaniz" - }, - { - "rshares": "80911078684", - "voter": "katerinaramm" - }, - { - "rshares": "1143048527", - "voter": "earthmother" - }, - { - "rshares": "25975589808", - "voter": "trucklife-family" - }, - { - "rshares": "4421822505", - "voter": "not-a-bird" - }, - { - "rshares": "2179038738", - "voter": "lishu" - }, - { - "rshares": "1344347549", - "voter": "belleamie" - }, - { - "rshares": "38971348015", - "voter": "mytechtrail" - }, - { - "rshares": "14792094431", - "voter": "careywedler" - }, - { - "rshares": "1334751449", - "voter": "skycae" - }, - { - "rshares": "36872209395", - "voter": "itchyfeetdonica" - }, - { - "rshares": "1127433960", - "voter": "infinityroad" - }, - { - "rshares": "24364306112", - "voter": "nokodemion" - }, - { - "rshares": "152155038226", - "voter": "kamchore" - }, - { - "rshares": "1893902333", - "voter": "firststeps" - }, - { - "rshares": "1624524308", - "voter": "fourfourfun" - }, - { - "rshares": "4692487637", - "voter": "candyboy" - }, - { - "rshares": "13570752594", - "voter": "paradigmprospect" - }, - { - "rshares": "5607550181", - "voter": "krishool" - }, - { - "rshares": "10245479406", - "voter": "eaglespirit" - }, - { - "rshares": "144303818926", - "voter": "deepresearch" - }, - { - "rshares": "1118060230", - "voter": "jewel-lover" - }, - { - "rshares": "537154478921", - "voter": "jongolson" - }, - { - "rshares": "36320183259", - "voter": "mountainjewel" - }, - { - "rshares": "37088146104", - "voter": "bartheek" - }, - { - "rshares": "25807216438", - "voter": "neupanedipen" - }, - { - "rshares": "1163618655", - "voter": "mehta" - }, - { - "rshares": "153457107647", - "voter": "mmmmkkkk311" - }, - { - "rshares": "1397475466", - "voter": "moxieme" - }, - { - "rshares": "809351845", - "voter": "davinsh" - }, - { - "rshares": "20326302970", - "voter": "steemvault" - }, - { - "rshares": "125480139131", - "voter": "communitybank" - }, - { - "rshares": "4651175695901", - "voter": "znnuksfe" - }, - { - "rshares": "53076786596", - "voter": "utube" - }, - { - "rshares": "39873468120", - "voter": "bala41288" - }, - { - "rshares": "4046057328", - "voter": "davemccoy" - }, - { - "rshares": "36293317974", - "voter": "sportscontest" - }, - { - "rshares": "34929515024", - "voter": "videosteemit" - }, - { - "rshares": "14686940310", - "voter": "investprosper" - }, - { - "rshares": "15723121323", - "voter": "upfundme" - }, - { - "rshares": "950335702", - "voter": "gavinatorial" - }, - { - "rshares": "3385630559", - "voter": "ericburgoyne" - }, - { - "rshares": "1921584654", - "voter": "moeenali" - }, - { - "rshares": "137301266499", - "voter": "happy-soul" - }, - { - "rshares": "2083723513", - "voter": "borrowedearth" - }, - { - "rshares": "947426413", - "voter": "hempress" - }, - { - "rshares": "23784054816", - "voter": "photohunt" - }, - { - "rshares": "773031990", - "voter": "photohunter1" - }, - { - "rshares": "1887576857", - "voter": "photohunter2" - }, - { - "rshares": "1113471789", - "voter": "photohunter3" - }, - { - "rshares": "1181532938", - "voter": "photohunter4" - }, - { - "rshares": "1141349356", - "voter": "photohunter5" - }, - { - "rshares": "1113366761", - "voter": "allyson19" - }, - { - "rshares": "3218247923", - "voter": "vegan.niinja" - }, - { - "rshares": "50591179031", - "voter": "cst90" - }, - { - "rshares": "1169095494", - "voter": "ladysalsa" - }, - { - "rshares": "4423787903", - "voter": "homestead-guru" - }, - { - "rshares": "1607642485", - "voter": "russellstockley" - }, - { - "rshares": "758851394", - "voter": "sovereignalien" - }, - { - "rshares": "3395736554", - "voter": "steemsmarter" - }, - { - "rshares": "5957309047", - "voter": "wildarms65" - }, - { - "rshares": "16726028523", - "voter": "fego" - }, - { - "rshares": "105494616266", - "voter": "superlotto" - }, - { - "rshares": "4990969906", - "voter": "dhingvimal" - }, - { - "rshares": "729266322", - "voter": "antisocialists" - }, - { - "rshares": "16011492987", - "voter": "movingman" - }, - { - "rshares": "4306355894", - "voter": "veganomics" - }, - { - "rshares": "5262580437", - "voter": "amico" - }, - { - "rshares": "13593577047", - "voter": "neopch" - }, - { - "rshares": "4602418280", - "voter": "beleg" - }, - { - "rshares": "2604224561", - "voter": "onepercentbetter" - }, - { - "rshares": "2201124933", - "voter": "celestialcow" - }, - { - "rshares": "1233769434", - "voter": "sanderjansenart" - }, - { - "rshares": "91077083072", - "voter": "ronaldoavelino" - }, - { - "rshares": "387638140", - "voter": "stmdev" - }, - { - "rshares": "219766094095", - "voter": "mariuszkarowski" - }, - { - "rshares": "362947398", - "voter": "sekhet" - }, - { - "rshares": "584881570797", - "voter": "dera123" - }, - { - "rshares": "4146326502", - "voter": "paragism" - }, - { - "rshares": "1049322009379", - "voter": "jkramer" - }, - { - "rshares": "2604882302484", - "voter": "rawutah" - }, - { - "rshares": "3439466432", - "voter": "blainjones" - }, - { - "rshares": "9611552606", - "voter": "bobaphet" - }, - { - "rshares": "11710536918", - "voter": "gadrian" - }, - { - "rshares": "1555449552909", - "voter": "lordbutterfly" - }, - { - "rshares": "171331089", - "voter": "angelinafx" - }, - { - "rshares": "1041966865", - "voter": "rollandthomas" - }, - { - "rshares": "623576686", - "voter": "nateonsteemit" - }, - { - "rshares": "8051269874936", - "voter": "julialee66" - }, - { - "rshares": "3678805201", - "voter": "reinaldoverdu" - }, - { - "rshares": "1657323770", - "voter": "stefannikolov" - }, - { - "rshares": "47412328760", - "voter": "indigoocean" - }, - { - "rshares": "2402155465", - "voter": "trumpman2" - }, - { - "rshares": "863231632", - "voter": "feedmytwi" - }, - { - "rshares": "38210520874", - "voter": "promobot" - }, - { - "rshares": "338050373355", - "voter": "sbi4" - }, - { - "rshares": "629031082636", - "voter": "friendsofgondor" - }, - { - "rshares": "719516013", - "voter": "geliquasjourney" - }, - { - "rshares": "1034257370", - "voter": "tronsformer" - }, - { - "rshares": "2520098109", - "voter": "archisteem" - }, - { - "rshares": "598971926", - "voter": "truthabides" - }, - { - "rshares": "1462199950", - "voter": "cambridgeport90" - }, - { - "rshares": "681903724", - "voter": "metama" - }, - { - "rshares": "500379331", - "voter": "merlion" - }, - { - "rshares": "642401240", - "voter": "hardaeborla" - }, - { - "rshares": "117770017024", - "voter": "citizendog" - }, - { - "rshares": "181859066454", - "voter": "digital.mine" - }, - { - "rshares": "10643659876", - "voter": "qam2112" - }, - { - "rshares": "68420526511", - "voter": "inspirewithwords" - }, - { - "rshares": "811007264", - "voter": "moneybaby" - }, - { - "rshares": "5152681216", - "voter": "mannacurrency" - }, - { - "rshares": "3684386738", - "voter": "longer" - }, - { - "rshares": "1976010158", - "voter": "libuska" - }, - { - "rshares": "2521750969", - "voter": "nickhans" - }, - { - "rshares": "1158644390", - "voter": "nutritree" - }, - { - "rshares": "639499265", - "voter": "mightypanda" - }, - { - "rshares": "1707993563", - "voter": "phillyc" - }, - { - "rshares": "842987802", - "voter": "rufruf" - }, - { - "rshares": "2456896334", - "voter": "daath" - }, - { - "rshares": "68557837", - "voter": "jk6276" - }, - { - "rshares": "707213236", - "voter": "arrixion" - }, - { - "rshares": "4418481043", - "voter": "julian2013" - }, - { - "rshares": "188461547216", - "voter": "gorbisan" - }, - { - "rshares": "336100091875", - "voter": "bengiles" - }, - { - "rshares": "86172829029", - "voter": "torrey.blog" - }, - { - "rshares": "521981823222", - "voter": "tipsybosphorus" - }, - { - "rshares": "390741049344", - "voter": "definethedollar" - }, - { - "rshares": "39087364703", - "voter": "gabbynhice" - }, - { - "rshares": "68367584282", - "voter": "kr-coffeesteem" - }, - { - "rshares": "11856758586", - "voter": "porters" - }, - { - "rshares": "1370194313111", - "voter": "inature" - }, - { - "rshares": "43961660", - "voter": "oakshieldholding" - }, - { - "rshares": "11216085", - "voter": "laissez-faire" - }, - { - "rshares": "126924382060", - "voter": "agromeror" - }, - { - "rshares": "86574362978", - "voter": "cultus-forex" - }, - { - "rshares": "1949154013", - "voter": "musinka" - }, - { - "rshares": "635664344", - "voter": "kuhle" - }, - { - "rshares": "25092003267", - "voter": "lion200" - }, - { - "rshares": "9476424605", - "voter": "steemitcuration" - }, - { - "rshares": "1942233412", - "voter": "thrasher666" - }, - { - "rshares": "1242568371882", - "voter": "brianoflondon" - }, - { - "rshares": "10461556162", - "voter": "geekdancing" - }, - { - "rshares": "89745489413", - "voter": "cakemonster" - }, - { - "rshares": "136667369321", - "voter": "bleuxwolf" - }, - { - "rshares": "3505705027", - "voter": "vibesforlife" - }, - { - "rshares": "2057922041", - "voter": "bia.birch" - }, - { - "rshares": "-35876799", - "voter": "dein-problem" - }, - { - "rshares": "41577295408", - "voter": "francescomai" - }, - { - "rshares": "1139475303", - "voter": "smonia" - }, - { - "rshares": "21141130948", - "voter": "moneytron" - }, - { - "rshares": "14814471105", - "voter": "rasalom" - }, - { - "rshares": "880606012", - "voter": "hedidylan" - }, - { - "rshares": "1354750938", - "voter": "smon-fan" - }, - { - "rshares": "8637954745", - "voter": "jacuzzi" - }, - { - "rshares": "14231258020", - "voter": "steemstorage" - }, - { - "rshares": "1493556732", - "voter": "fire451" - }, - { - "rshares": "864190578", - "voter": "starfighter" - }, - { - "rshares": "782478678", - "voter": "seekingalpha" - }, - { - "rshares": "4221039801", - "voter": "brucutu1" - }, - { - "rshares": "725650093", - "voter": "tr777" - }, - { - "rshares": "599483498", - "voter": "sm-jewel" - }, - { - "rshares": "571505733", - "voter": "tr77" - }, - { - "rshares": "50429984817", - "voter": "tribevibes" - }, - { - "rshares": "603590591", - "voter": "smoner" - }, - { - "rshares": "842417866", - "voter": "smonian" - }, - { - "rshares": "4224993514", - "voter": "tubiska" - }, - { - "rshares": "4376516117", - "voter": "pocoto" - }, - { - "rshares": "340113743461", - "voter": "ctime" - }, - { - "rshares": "4388150397", - "voter": "kitty-kitty" - }, - { - "rshares": "4450566837", - "voter": "jussara" - }, - { - "rshares": "4265052298", - "voter": "cyrillo" - }, - { - "rshares": "16583893194", - "voter": "smon-joa" - }, - { - "rshares": "582554171", - "voter": "jjangjjanggirl" - }, - { - "rshares": "1132976346", - "voter": "rgvmedia" - }, - { - "rshares": "1369476911", - "voter": "blockbeard" - }, - { - "rshares": "54497843", - "voter": "hungrybear" - }, - { - "rshares": "1451439805", - "voter": "brandnewaccount" - }, - { - "rshares": "1496286199", - "voter": "shit-posts" - }, - { - "rshares": "1124350415", - "voter": "jadung" - }, - { - "rshares": "599768564", - "voter": "rihanna2" - }, - { - "rshares": "4332803130", - "voter": "carioca" - }, - { - "rshares": "820572423", - "voter": "theithei" - }, - { - "rshares": "590773200", - "voter": "smonbear" - }, - { - "rshares": "6551280680", - "voter": "bewithbreath" - }, - { - "rshares": "1025749674", - "voter": "denizcakmak" - }, - { - "rshares": "13310180319", - "voter": "cpt-sparrow" - }, - { - "rshares": "11123157319", - "voter": "wolffeys" - }, - { - "rshares": "469438543951", - "voter": "ttg" - }, - { - "rshares": "21637468923", - "voter": "maryincryptoland" - }, - { - "rshares": "362693319", - "voter": "crazydaisy" - }, - { - "rshares": "64552695", - "voter": "coredump" - }, - { - "rshares": "2839638775", - "voter": "steelborne" - }, - { - "rshares": "3435850703", - "voter": "raspibot" - }, - { - "rshares": "4756836359", - "voter": "megavest" - }, - { - "rshares": "925081592", - "voter": "gadrian-sp" - }, - { - "rshares": "109758978283", - "voter": "solairitas" - }, - { - "rshares": "668015612", - "voter": "dtrade" - }, - { - "rshares": "7879896596", - "voter": "deeanndmathews" - }, - { - "rshares": "8606036502", - "voter": "dailyke20" - }, - { - "rshares": "628963673", - "voter": "ssc-token" - }, - { - "rshares": "1866032862", - "voter": "hjlee119" - }, - { - "rshares": "4363221399143", - "voter": "likwid" - }, - { - "rshares": "24996568", - "voter": "haxxdump" - }, - { - "rshares": "166328712", - "voter": "tradingideas2" - }, - { - "rshares": "2446181995", - "voter": "leighscotford" - }, - { - "rshares": "572424577", - "voter": "iktisat" - }, - { - "rshares": "32511949309", - "voter": "haleakala" - }, - { - "rshares": "2958945024", - "voter": "travelwritemoney" - }, - { - "rshares": "1470788099", - "voter": "stubborn-soul" - }, - { - "rshares": "700870328", - "voter": "jalentakesphotos" - }, - { - "rshares": "16084618102", - "voter": "mind.force" - }, - { - "rshares": "6932084198", - "voter": "reggaesteem" - }, - { - "rshares": "0", - "voter": "tradingideas.spt" - }, - { - "rshares": "761462769", - "voter": "abh12345.leo" - }, - { - "rshares": "806135112", - "voter": "leovoter" - }, - { - "rshares": "2107432422", - "voter": "mindtrap-leo" - }, - { - "rshares": "1698056293258", - "voter": "leo.voter" - }, - { - "rshares": "1067474577", - "voter": "penpals" - }, - { - "rshares": "34171294", - "voter": "vxc.leo" - }, - { - "rshares": "478039057", - "voter": "bala-pal" - }, - { - "rshares": "500206126", - "voter": "bala-leo" - }, - { - "rshares": "518762199146", - "voter": "votebetting" - }, - { - "rshares": "4886908425", - "voter": "scaredycatcurate" - }, - { - "rshares": "886373823", - "voter": "zaku-leo" - }, - { - "rshares": "5385158478", - "voter": "babytarazkp" - }, - { - "rshares": "640474693", - "voter": "arctis" - }, - { - "rshares": "1412399333", - "voter": "marlians.spt" - }, - { - "rshares": "0", - "voter": "abh12345.neox" - }, - { - "rshares": "231507278", - "voter": "tina-tina" - }, - { - "rshares": "1038175157", - "voter": "tokensink" - }, - { - "rshares": "348734705", - "voter": "happiness19" - }, - { - "rshares": "1507226267", - "voter": "revise.leo" - }, - { - "rshares": "16228075230", - "voter": "knightsunited" - }, - { - "rshares": "1484769931", - "voter": "sbi-tokens" - }, - { - "rshares": "6764098", - "voter": "gdhaetae" - }, - { - "rshares": "11303260538", - "voter": "psycultureradio" - }, - { - "rshares": "719308739", - "voter": "brutoken" - }, - { - "rshares": "54112102973", - "voter": "ufm.pay" - }, - { - "rshares": "46399943910", - "voter": "jk6276.life" - }, - { - "rshares": "0", - "voter": "vxc-ag" - }, - { - "rshares": "1027493954", - "voter": "deflacion" - }, - { - "rshares": "5604620516", - "voter": "build-it" - }, - { - "rshares": "888223777", - "voter": "dnflsms" - }, - { - "rshares": "620272775", - "voter": "bruleo" - }, - { - "rshares": "558775432", - "voter": "jessy22" - }, - { - "rshares": "14261968257", - "voter": "spinvest-leo" - }, - { - "rshares": "28570605904", - "voter": "bcm" - }, - { - "rshares": "42604605579", - "voter": "andylein" - }, - { - "rshares": "3355771203", - "voter": "hongdangmu" - }, - { - "rshares": "295222557935", - "voter": "holybread" - }, - { - "rshares": "1411937758", - "voter": "tonimontana.leo" - }, - { - "rshares": "112698523", - "voter": "tonimontana.neo" - }, - { - "rshares": "6320157222", - "voter": "blocktvnews" - }, - { - "rshares": "2505300035", - "voter": "freemotherearth" - }, - { - "rshares": "9076651459", - "voter": "mowemu" - }, - { - "rshares": "209407353", - "voter": "keep-keep" - }, - { - "rshares": "8542306255", - "voter": "fenngen" - }, - { - "rshares": "15607662969", - "voter": "project007.leo" - }, - { - "rshares": "890443038", - "voter": "javb" - }, - { - "rshares": "586831069", - "voter": "autowin" - }, - { - "rshares": "27810294148", - "voter": "policewala" - }, - { - "rshares": "1915359156", - "voter": "sumatranate.leo" - }, - { - "rshares": "317788051", - "voter": "pjansen.leo" - }, - { - "rshares": "788397739", - "voter": "hatta.jahm" - }, - { - "rshares": "953272788", - "voter": "spinvest-neo" - }, - { - "rshares": "2845551546", - "voter": "redwarbull" - }, - { - "rshares": "1106795633", - "voter": "khalpal" - }, - { - "rshares": "2106660887", - "voter": "toni.curation" - }, - { - "rshares": "612942449", - "voter": "rehan.blog" - }, - { - "rshares": "952879977", - "voter": "keepit2" - }, - { - "rshares": "320871659", - "voter": "empoderat.leo" - }, - { - "rshares": "93034936", - "voter": "toni.pal" - }, - { - "rshares": "329440127", - "voter": "bela29" - }, - { - "rshares": "1990636792", - "voter": "bcm.dblog" - }, - { - "rshares": "25775172786", - "voter": "solairibot" - }, - { - "rshares": "51169561260", - "voter": "davidlionfish" - }, - { - "rshares": "6201318678", - "voter": "platino94" - }, - { - "rshares": "5375865664", - "voter": "willielow" - }, - { - "rshares": "720421157", - "voter": "achim03.leo" - }, - { - "rshares": "1621236077", - "voter": "phython" - }, - { - "rshares": "6298270716", - "voter": "cizolf" - }, - { - "rshares": "4430905690", - "voter": "spiritweb" - }, - { - "rshares": "5213784595", - "voter": "adamdabeast" - }, - { - "rshares": "2199232889", - "voter": "fengchao" - }, - { - "rshares": "1179014572", - "voter": "solcycler" - }, - { - "rshares": "107884551115", - "voter": "abundance.tribe" - }, - { - "rshares": "3358208480", - "voter": "thisismylife" - }, - { - "rshares": "299663012241", - "voter": "reggaejahm" - }, - { - "rshares": "1738649054", - "voter": "green-finger" - }, - { - "rshares": "73367803565", - "voter": "gitplait" - }, - { - "rshares": "615315573752", - "voter": "softworld" - }, - { - "rshares": "5683817127", - "voter": "arlettemsalase" - }, - { - "rshares": "17899878044", - "voter": "blocktokens" - }, - { - "rshares": "554859143", - "voter": "ninnu" - }, - { - "rshares": "1104706750", - "voter": "kennysgaminglife" - }, - { - "rshares": "1916045647", - "voter": "archon-mining" - }, - { - "rshares": "0", - "voter": "galaxy100" - }, - { - "rshares": "6822132035", - "voter": "rz1996" - }, - { - "rshares": "532753259", - "voter": "zemiatin1" - }, - { - "rshares": "7228460", - "voter": "curation.bot" - }, - { - "rshares": "331507243849", - "voter": "ronavel" - }, - { - "rshares": "289274837", - "voter": "kingturk" - }, - { - "rshares": "1246147983", - "voter": "hivebuilderteam" - }, - { - "rshares": "2727997057", - "voter": "anafae" - }, - { - "rshares": "0", - "voter": "graythor" - }, - { - "rshares": "11754745535", - "voter": "hivecur2" - }, - { - "rshares": "653996915", - "voter": "multius" - }, - { - "rshares": "0", - "voter": "yshiyshi" - } + "links": [ + "https://postimg.org/image/fui5jn551/", + "https://www.google.de/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwiU_vePvpHPAhVhJJoKHfEjAjEQFghJMAA&url=https%3A%2F%2Fwww.drgoerg.com%2Fen%2F&usg=AFQjCNGRVxYdyD04Ogm6T_WXZbejaKobyg&sig2=VMpccXoYQ8oXclIYq5y0vg", + "https://steemit.com/@allesgruen", + "https://steemit.com/food/@allesgruen/die-leckerste-und-gesuendeste-rohkost-schokolade-der-welt", + "https://steemit.com/@knozaki2015" ], - "author": "taskmaster4450", - "author_payout_value": "0.000 HBD", - "author_reputation": 79.39, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "This is a concept that I started to write a bit about a few years back. At that time, it was not clear where things were going. The idea of security tokens was just gaining a bit of exposure. Nevertheless, it was something that I saw as an important step forward.\n\nAs with anything in cryptocurrency (technology in general), the benefits will depend upon how things are structured. Unfortunately, the challenge with security tokens is the concept that the regulators are the ones in charge. That is the drawback to the existing system. Instead of protecting the public, they simply keep the existing system in operation. Those that are benefiting are given an even larger leg up.\n\nCryptocurrency has the ability to change this. Rather than having the \"accredited investor\" as the one who can benefit, we can structure things in a way where the average person is able to participate. Over time, this would be a path to not only enormous wealth generation but also distribution.\n\nYesterday, @coyotelation put up a post about a project that is going to take cryptocurrency for the prospect of mining gold. In other words, people will have the opportunity to buy into land that will be used for gold mining.\n\n>Now in Brazil, more precisely on the Dois Irm\u00e3os farm, in Amazonas, she was chosen to undergo the procedures to become a cryptoproperty in the Ethereum network. All investors will be able to acquire a type of lot and they will be like the owners of that place and all this through a digital asset.\n\n>The farm was divided into smaller pieces and altogether we will have 100 million Cryptau (AM1) tokens being represented by property. It means that if you have to buy 1 Cryptau, you will own 1 / 100,000,000 of the farm's property right.\n\n
[Source](https://leofinance.io/hive-167922/@coyotelation/gold-farm-in-amazonas-to-be-tokenized-cryptoproperty-will-be-a-reality-in-brazil#@taskmaster4450le/qd2n8i)
\n\nHere we see the idea of tokenization in action. Without having all the details, we are unsure how much each other will go for. Nevertheless, as we can see by the design, fractional ownership is being offered. One Cryptau gives an individual 1/1 millionth of the property rights. This is the epitome of tokenization.\n\nImagine all the people around the world who could come up with a few dollars for the token. Let us say the project is $5 million (just a guess). This would break down to $5 per token, providing an opportunity for a nice return.\n\nOf course, there are major risks with gold mining and nothing is guaranteed. What is interesting about this project is the fact that it provides the rights to the land. Typically this means that the land can be leased to actual miners who pay a royalty to the land owner. This usually runs between 10%-20% of what they get out of the ground.\n\n*This project is used as an example and not as an endorsement of the project.*\n\nhttps://theblockchainland.com/wp-content/uploads/2019/12/real-estate-tokenization-2019-recap-blockchainLand-780x405.jpg\n
[Source](https://theblockchainland.com/wp-content/uploads/2019/12/real-estate-tokenization-2019-recap-blockchainLand-780x405.jpg)
\n\nImagine being able to own pieces in thousands of different businesses. Obviously, this is possible through the equities markets. However, there are standards and levels of money required to operate there. Also, small businesses cannot meet the requirements to get listed since it is such an expensive process.\n\nThus, we can see tokenization as a viable avenue where people can invest in smaller entities that provide a nice return. The business owners have access to the capital whereas presently, they are locked out. Their expertise is still used to make the enterprise more valuable while the return is spread to people all over the world.\n\nMy view is the ultimate goal is to use this process as automation becomes a bigger part of our world. Tokenized companies that are autonomous is exactly what is needed. The world will not be a very happy place if automation takes over and it is in the hands of a few mega-technology companies. Under these circumstances, automation will only create a dystopian future.\n\nThe key is to offer equality in opportunity. With what we see established so far, the world of cryptocurrency has few requirements. As long as there is some type of smart device and an internet connection, all are welcomed. Any individual can start building by participating in different platforms, ones that start to reward for activities undertaken.\n\nHere we see the first step in wealth accumulation. Getting some money together is always needed. Being rewarded for playing a game, as an example, could be the seed money needed to invest in a gold mining operation in Brazil. From here, the payoff couple be rather nice.\n\nhttps://miro.medium.com/max/3824/1*hWpM3R2UZbixAR4Fw3bN8A.png\n
[Source](https://miro.medium.com/max/3824/1*hWpM3R2UZbixAR4Fw3bN8A.png)
\n\nReal estate can obviously offer tremendous opportunities. In fact, it is one of the most discussed areas pertaining to security tokens. Of course, when this is brought up, it is usually multi-million dollar projects.\n\nWhile those can hold potential, perhaps all that is needed for a solid return is to invest in a duplex in Des Moines. Imagine being able to take some of your rewards from the Hive blockchain and putting it to work in an investment such as this. That could provide a solid return for decades.\n\nMoving into other areas that are not exotic yet can be very lucrative. \n\nHere is a question: have you ever negotiated with a plumber? The answer is likely no. It seems when a plumber is called, things are all backed up. Most just want the problem fixed, not really concerned about saving a few dollars. It is no wonder that we rarely see plumbing companies going out of business.\n\nHow would you like to own a piece of a plumbing company? Again, wouldn't it be great to take some of the rewards from Hive (or any blockchain) and have a piece of a small plumbing company somewhere. I would imagine that could provide steady returns.\n\nhttps://thenextavenue.com/wp-content/uploads/2020/04/tesla-model-3-china-2019-001-min.png\n
[Source](https://thenextavenue.com/wp-content/uploads/2020/04/tesla-model-3-china-2019-001-min.png)
\n\nOr we could go a bit more futuristic and look at the robo-taxis Elon Musk is trying to set up. His vision is to give each Tesla owner the option of turning the vehicle into a working asset. Through the autonomous driving capability, each car could end up generating revenue.\n\nHow about putting together a token that enables a Tesla to be purchased and operate in this capacity? This could be done after the car is bought by the owner or as a way of funding the acquisition. Ultimately, since each Tesla is a business, an individual might be able to buy pieces in many different cars around the world.\n\nCryptocurrency offers the opportunity to create new business structures. This will certainly help deal with many of the wealth distribution problems that exist today. Of course, that will not happen if we allow a digitized version of our present economy to form. This is what the existing powers are trying to do.\n\nI said in a recent video that our answer to the power grabs by governments and big business is to go wide. We need to spread ourselves out in many different directions. Elimination of the single point of entry is vital. This means that we operate on a smaller scale, focusing upon those assets that are overlooked by the regulators and governments of the world. \n\nAfter all, the SEC is not looking at some farm in Brazil as a project to go after. Yet, if we can do a few million of these projects around the world, the regulators will have little choice in the matter. By that time it is too late.\n\n___\nIf you found this article informative, please give an upvote and rehive.\n\n\n\nhttps://images.hive.blog/0x0/https://files.peakd.com/file/peakd-hive/doze/MkkDNhyH-2020_04_13_16_57_48.gif\n\ngif by @doze\n\n![image.png](https://files.peakd.com/file/peakd-hive/taskmaster4450/AyvHLP0Q-image.png)\n\nPosted Using [LeoFinance](https://leofinance.io/@taskmaster4450/the-future-tokenizing-businesses)", - "category": "hive-167922", - "children": 4, - "community": "hive-167922", - "community_title": "LeoFinance", - "created": "2020-07-07T13:53:18", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "leofinance/0.1", - "canonical_url": "https://leofinance.io/@taskmaster4450/the-future-tokenizing-businesses", - "format": "markdown", - "image": [ - "https://theblockchainland.com/wp-content/uploads/2019/12/real-estate-tokenization-2019-recap-blockchainLand-780x405.jpg", - "https://miro.medium.com/max/3824/1*hWpM3R2UZbixAR4Fw3bN8A.png", - "https://thenextavenue.com/wp-content/uploads/2020/04/tesla-model-3-china-2019-001-min.png", - "https://images.hive.blog/0x0/https://files.peakd.com/file/peakd-hive/doze/MkkDNhyH-2020_04_13_16_57_48.gif", - "https://files.peakd.com/file/peakd-hive/taskmaster4450/AyvHLP0Q-image.png" - ], - "links": [ - "https://leofinance.io/hive-167922/@coyotelation/gold-farm-in-amazonas-to-be-tokenized-cryptoproperty-will-be-a-reality-in-brazil#@taskmaster4450le/qd2n8i", - "https://theblockchainland.com/wp-content/uploads/2019/12/real-estate-tokenization-2019-recap-blockchainLand-780x405.jpg", - "https://miro.medium.com/max/3824/1*hWpM3R2UZbixAR4Fw3bN8A.png", - "https://thenextavenue.com/wp-content/uploads/2020/04/tesla-model-3-china-2019-001-min.png" - ], - "tags": [ - "cryptocurrency", - "business", - "tokenization", - "leofinance", - "mining", - "investment", - "telokanda", - "palnet", - "neoxian" - ], - "users": [ - "coyotelation", - "doze" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 96316895838836, - "payout": 38.839, - "payout_at": "2020-07-14T13:53:18", - "pending_payout_value": "38.839 HBD", - "percent_hbd": 0, - "permlink": "the-future-tokenizing-businesses", - "post_id": 86932714, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 440 - }, - "title": "The Future: Tokenizing Businesses", - "updated": "2020-07-07T13:53:18", - "url": "/hive-167922/@taskmaster4450/the-future-tokenizing-businesses" - }, - { - "active_votes": [ - { - "rshares": "14358579878", - "voter": "tombstone" - }, - { - "rshares": "6312019562745", - "voter": "acidyo" - }, - { - "rshares": "852671384149", - "voter": "kevinwong" - }, - { - "rshares": "193484869262", - "voter": "gerber" - }, - { - "rshares": "538309128", - "voter": "kosimoos" - }, - { - "rshares": "58853346755", - "voter": "daan" - }, - { - "rshares": "211859147815", - "voter": "ezzy" - }, - { - "rshares": "3366354611", - "voter": "mrwang" - }, - { - "rshares": "15676614156200", - "voter": "livingfree" - }, - { - "rshares": "74167122558", - "voter": "jeffjagoe" - }, - { - "rshares": "63526179326", - "voter": "arcange" - }, - { - "rshares": "251521862691", - "voter": "exyle" - }, - { - "rshares": "5012722255", - "voter": "sharker" - }, - { - "rshares": "3551444099", - "voter": "arconite" - }, - { - "rshares": "1685322181", - "voter": "raphaelle" - }, - { - "rshares": "178782810966", - "voter": "webdeals" - }, - { - "rshares": "4018645162", - "voter": "kibela" - }, - { - "rshares": "539048935", - "voter": "alinalazareva" - }, - { - "rshares": "5318293760781", - "voter": "jphamer1" - }, - { - "rshares": "71671336988", - "voter": "shanghaipreneur" - }, - { - "rshares": "593835533276", - "voter": "bryan-imhoff" - }, - { - "rshares": "9509546199", - "voter": "anech512" - }, - { - "rshares": "54258769652", - "voter": "netaterra" - }, - { - "rshares": "36397112374", - "voter": "someguy123" - }, - { - "rshares": "4178910773", - "voter": "ebargains" - }, - { - "rshares": "39616246568", - "voter": "okean123" - }, - { - "rshares": "992443826394", - "voter": "redes" - }, - { - "rshares": "17857752607371", - "voter": "created" - }, - { - "rshares": "2051476643", - "voter": "mow" - }, - { - "rshares": "8718479600", - "voter": "cardboard" - }, - { - "rshares": "22476998667", - "voter": "rahul.stan" - }, - { - "rshares": "4901914059", - "voter": "privex" - }, - { - "rshares": "3735359535", - "voter": "sudutpandang" - }, - { - "rshares": "119982403177", - "voter": "markkujantunen" - }, - { - "rshares": "424224060807", - "voter": "teammo" - }, - { - "rshares": "134267679222", - "voter": "louisthomas" - }, - { - "rshares": "3131372255", - "voter": "lordneroo" - }, - { - "rshares": "10263235757", - "voter": "frankk" - }, - { - "rshares": "9925340766", - "voter": "dune69" - }, - { - "rshares": "951693524764", - "voter": "smasssh" - }, - { - "rshares": "1397916286", - "voter": "frankydoodle" - }, - { - "rshares": "29969421696", - "voter": "eliel" - }, - { - "rshares": "12935829967", - "voter": "stackin" - }, - { - "rshares": "26388392579", - "voter": "jerrybanfield" - }, - { - "rshares": "267011727124", - "voter": "drag33" - }, - { - "rshares": "5511778738", - "voter": "mys" - }, - { - "rshares": "77722703006", - "voter": "ironshield" - }, - { - "rshares": "2872883940", - "voter": "varunpinto" - }, - { - "rshares": "1685016373", - "voter": "improv" - }, - { - "rshares": "1177268066", - "voter": "rycharde" - }, - { - "rshares": "3322576181", - "voter": "mxzn" - }, - { - "rshares": "29898861060", - "voter": "steeminator3000" - }, - { - "rshares": "589650131997", - "voter": "enjar" - }, - { - "rshares": "133019921822", - "voter": "maxer27" - }, - { - "rshares": "132766653586", - "voter": "ammonite" - }, - { - "rshares": "239504132505", - "voter": "ew-and-patterns" - }, - { - "rshares": "1217314879", - "voter": "avisk" - }, - { - "rshares": "2109267115", - "voter": "whd" - }, - { - "rshares": "4455342848", - "voter": "d-pend" - }, - { - "rshares": "18373017586", - "voter": "furious-one" - }, - { - "rshares": "8879963818", - "voter": "gniksivart" - }, - { - "rshares": "495776731", - "voter": "raili" - }, - { - "rshares": "147636651546", - "voter": "runicar" - }, - { - "rshares": "78972364409", - "voter": "goldkey" - }, - { - "rshares": "29116240320", - "voter": "codingdefined" - }, - { - "rshares": "938792574", - "voter": "shitsignals" - }, - { - "rshares": "1826195108697", - "voter": "themarkymark" - }, - { - "rshares": "73605193295", - "voter": "nathanmars" - }, - { - "rshares": "1176299854406", - "voter": "steemvote" - }, - { - "rshares": "383131388965", - "voter": "vikisecrets" - }, - { - "rshares": "254218334036", - "voter": "investingpennies" - }, - { - "rshares": "2562177344", - "voter": "stinawog" - }, - { - "rshares": "31530346887", - "voter": "pardeepkumar" - }, - { - "rshares": "13167228483", - "voter": "felander" - }, - { - "rshares": "10016949825", - "voter": "santigs" - }, - { - "rshares": "199181850480", - "voter": "karja" - }, - { - "rshares": "395642001119", - "voter": "coruscate" - }, - { - "rshares": "3456226542", - "voter": "noloafing" - }, - { - "rshares": "3614508118", - "voter": "fbslo" - }, - { - "rshares": "50887777653", - "voter": "accelerator" - }, - { - "rshares": "4284839059414", - "voter": "buildawhale" - }, - { - "rshares": "1211460779", - "voter": "yogacoach" - }, - { - "rshares": "680116288", - "voter": "estream.studios" - }, - { - "rshares": "656626408168", - "voter": "therealwolf" - }, - { - "rshares": "2823798382", - "voter": "deathwing" - }, - { - "rshares": "345556381123", - "voter": "revisesociology" - }, - { - "rshares": "766751293", - "voter": "rakkasan84" - }, - { - "rshares": "3145700980531", - "voter": "yabapmatt" - }, - { - "rshares": "51518621352", - "voter": "littleboy" - }, - { - "rshares": "20897257884", - "voter": "makerhacks" - }, - { - "rshares": "46250762272", - "voter": "miti" - }, - { - "rshares": "10059748681", - "voter": "caladan" - }, - { - "rshares": "66418626962", - "voter": "emrebeyler" - }, - { - "rshares": "134340334481", - "voter": "smartsteem" - }, - { - "rshares": "33435154925", - "voter": "mytechtrail" - }, - { - "rshares": "1036902096", - "voter": "funtraveller" - }, - { - "rshares": "3608914243", - "voter": "enjoyinglife" - }, - { - "rshares": "3317970780", - "voter": "fourfourfun" - }, - { - "rshares": "6529325093", - "voter": "upmyvote" - }, - { - "rshares": "126375715339", - "voter": "aussieninja" - }, - { - "rshares": "2571134424", - "voter": "bluenarcolepsy" - }, - { - "rshares": "29562254239", - "voter": "adityajainxds" - }, - { - "rshares": "8936278968", - "voter": "kiwibloke" - }, - { - "rshares": "1129426694782", - "voter": "upmewhale" - }, - { - "rshares": "70518265189", - "voter": "nealmcspadden" - }, - { - "rshares": "56772046850", - "voter": "curx" - }, - { - "rshares": "27391658278", - "voter": "tntdabomb" - }, - { - "rshares": "151971704739", - "voter": "piotrgrafik" - }, - { - "rshares": "43174282154", - "voter": "purefood" - }, - { - "rshares": "15997989585", - "voter": "enmaart" - }, - { - "rshares": "19973478880", - "voter": "portugalcoin" - }, - { - "rshares": "559293120", - "voter": "cfminer" - }, - { - "rshares": "27954458200", - "voter": "jjangdol69" - }, - { - "rshares": "120797618645", - "voter": "chronocrypto" - }, - { - "rshares": "3415482695", - "voter": "simoneg" - }, - { - "rshares": "5586597538", - "voter": "cadawg" - }, - { - "rshares": "854600681", - "voter": "gavinatorial" - }, - { - "rshares": "12842368794", - "voter": "kristves" - }, - { - "rshares": "1717950414", - "voter": "ericburgoyne" - }, - { - "rshares": "21417852374", - "voter": "photohunt" - }, - { - "rshares": "1063671344", - "voter": "photohunter4" - }, - { - "rshares": "1155837775", - "voter": "pkocjan" - }, - { - "rshares": "1359377436", - "voter": "ofildutemps" - }, - { - "rshares": "2245166568", - "voter": "ipromote" - }, - { - "rshares": "520431291474", - "voter": "mindtrap" - }, - { - "rshares": "1586407432", - "voter": "russellstockley" - }, - { - "rshares": "40714305425", - "voter": "jagoe" - }, - { - "rshares": "10819611034", - "voter": "cruisin" - }, - { - "rshares": "2038191108", - "voter": "frassman" - }, - { - "rshares": "61401304940", - "voter": "scottshots" - }, - { - "rshares": "694386925", - "voter": "beleg" - }, - { - "rshares": "84213442069", - "voter": "bil.prag" - }, - { - "rshares": "10214176447", - "voter": "bestboom" - }, - { - "rshares": "13294331203", - "voter": "abrockman" - }, - { - "rshares": "93567682071", - "voter": "ronaldoavelino" - }, - { - "rshares": "11395700850", - "voter": "goldvault" - }, - { - "rshares": "117082335497", - "voter": "dera123" - }, - { - "rshares": "31295941525", - "voter": "flaxz" - }, - { - "rshares": "25330814900", - "voter": "m2nnari" - }, - { - "rshares": "10807952546", - "voter": "freddio" - }, - { - "rshares": "1764555081", - "voter": "blainjones" - }, - { - "rshares": "8968924182", - "voter": "sholi" - }, - { - "rshares": "893108696", - "voter": "sustainablelivin" - }, - { - "rshares": "29887493104", - "voter": "tsnaks" - }, - { - "rshares": "61431940023", - "voter": "tresor" - }, - { - "rshares": "7972597355230", - "voter": "julialee66" - }, - { - "rshares": "79145699726", - "voter": "promobot" - }, - { - "rshares": "25704599315", - "voter": "superlao" - }, - { - "rshares": "716794321", - "voter": "glodniwiedzy" - }, - { - "rshares": "2842208147", - "voter": "mrs.goldkey" - }, - { - "rshares": "370907646896", - "voter": "steem.services" - }, - { - "rshares": "77670078093", - "voter": "pladozero" - }, - { - "rshares": "289872208820", - "voter": "nateaguila" - }, - { - "rshares": "2547364003", - "voter": "archisteem" - }, - { - "rshares": "1080319989", - "voter": "krbecrypto" - }, - { - "rshares": "183294401007", - "voter": "digital.mine" - }, - { - "rshares": "10229746649", - "voter": "linco" - }, - { - "rshares": "1529316770", - "voter": "swisswitness" - }, - { - "rshares": "101358499731", - "voter": "luca1777" - }, - { - "rshares": "325803435141", - "voter": "apshamilton" - }, - { - "rshares": "4822104090", - "voter": "milaan" - }, - { - "rshares": "15532693486", - "voter": "abcor" - }, - { - "rshares": "430916680", - "voter": "abduljalill" - }, - { - "rshares": "518329247451", - "voter": "hamismsf" - }, - { - "rshares": "301562935934", - "voter": "dalz" - }, - { - "rshares": "48079549768", - "voter": "yaelg" - }, - { - "rshares": "669399524", - "voter": "julian2013" - }, - { - "rshares": "33424463428", - "voter": "dlike" - }, - { - "rshares": "3059771256", - "voter": "gorbisan" - }, - { - "rshares": "2062899297", - "voter": "rayshiuimages" - }, - { - "rshares": "35927208725", - "voter": "engrave" - }, - { - "rshares": "342923842278", - "voter": "bengiles" - }, - { - "rshares": "14868444233", - "voter": "bluengel" - }, - { - "rshares": "1039643732", - "voter": "bobby.madagascar" - }, - { - "rshares": "42584033", - "voter": "laissez-faire" - }, - { - "rshares": "2898594848", - "voter": "silverkey" - }, - { - "rshares": "12394539609", - "voter": "silvervault" - }, - { - "rshares": "4804059307", - "voter": "cryptycoon" - }, - { - "rshares": "5092580723", - "voter": "cryptoclerk" - }, - { - "rshares": "39898513297", - "voter": "mister-meeseeks" - }, - { - "rshares": "28915436478", - "voter": "merlin7" - }, - { - "rshares": "1268259901563", - "voter": "brianoflondon" - }, - { - "rshares": "15326643436", - "voter": "followjohngalt" - }, - { - "rshares": "1833121048235", - "voter": "michealb" - }, - { - "rshares": "98123780989", - "voter": "vcs" - }, - { - "rshares": "110153914755", - "voter": "marki99" - }, - { - "rshares": "43292414670", - "voter": "francescomai" - }, - { - "rshares": "994901778", - "voter": "infinite-love" - }, - { - "rshares": "527774944384", - "voter": "jpbliberty" - }, - { - "rshares": "60805168728", - "voter": "steem-on-2020" - }, - { - "rshares": "53547426435", - "voter": "robmojo" - }, - { - "rshares": "4305122772", - "voter": "jacuzzi" - }, - { - "rshares": "13951425525", - "voter": "steemstorage" - }, - { - "rshares": "702807838", - "voter": "seekingalpha" - }, - { - "rshares": "1248448577782", - "voter": "agent14" - }, - { - "rshares": "263953200065", - "voter": "circa" - }, - { - "rshares": "775641414", - "voter": "steemitmonsters" - }, - { - "rshares": "19912627", - "voter": "yff" - }, - { - "rshares": "53344414", - "voter": "limka" - }, - { - "rshares": "935139295", - "voter": "abbenay" - }, - { - "rshares": "468880666", - "voter": "smileyboy" - }, - { - "rshares": "12723671182", - "voter": "holydog" - }, - { - "rshares": "488781458102", - "voter": "ttg" - }, - { - "rshares": "7929967284", - "voter": "kramgelo" - }, - { - "rshares": "608960363955", - "voter": "claudio83" - }, - { - "rshares": "21205364869", - "voter": "maryincryptoland" - }, - { - "rshares": "965438837", - "voter": "bergelmirsenpai" - }, - { - "rshares": "4340137592", - "voter": "epicdice" - }, - { - "rshares": "6722426610", - "voter": "sirbush" - }, - { - "rshares": "5841441845", - "voter": "gulf41" - }, - { - "rshares": "59776926895", - "voter": "wayneney" - }, - { - "rshares": "1847310031", - "voter": "hjlee119" - }, - { - "rshares": "9030996534494", - "voter": "likwid" - }, - { - "rshares": "83096388548", - "voter": "ph1102" - }, - { - "rshares": "6516992415", - "voter": "nicollefiallo" - }, - { - "rshares": "897703319", - "voter": "mosquito76" - }, - { - "rshares": "6759250114", - "voter": "map10k" - }, - { - "rshares": "518706304", - "voter": "vxc" - }, - { - "rshares": "1132761304", - "voter": "milu-the-dog" - }, - { - "rshares": "54993247694", - "voter": "asmr.tist" - }, - { - "rshares": "934050452", - "voter": "triplea.bot" - }, - { - "rshares": "71075139764", - "voter": "steem.leo" - }, - { - "rshares": "1186697444", - "voter": "bizventures" - }, - { - "rshares": "2194185966", - "voter": "freddio.sport" - }, - { - "rshares": "15342821494", - "voter": "asteroids" - }, - { - "rshares": "2652618140", - "voter": "maddogmike" - }, - { - "rshares": "3144763028", - "voter": "thranax" - }, - { - "rshares": "19985866760", - "voter": "soyunasantacruz" - }, - { - "rshares": "40579578345", - "voter": "botante" - }, - { - "rshares": "11573247620", - "voter": "lisamgentile1961" - }, - { - "rshares": "21574923459", - "voter": "iamraincrystal" - }, - { - "rshares": "1827408752", - "voter": "elianaicgomes" - }, - { - "rshares": "143029702032", - "voter": "bradleyarrow" - }, - { - "rshares": "7049858556", - "voter": "pukeko" - }, - { - "rshares": "2437086161", - "voter": "maxuva" - }, - { - "rshares": "20906158607", - "voter": "maxuvd" - }, - { - "rshares": "26755176050", - "voter": "maxuve" - }, - { - "rshares": "3322491148", - "voter": "hongdangmu" - }, - { - "rshares": "10598665638", - "voter": "chris-uk" - }, - { - "rshares": "6341710795", - "voter": "blocktvnews" - }, - { - "rshares": "0", - "voter": "gerbo" - }, - { - "rshares": "2117858764", - "voter": "upmewhale.team" - }, - { - "rshares": "2417444951", - "voter": "crimianales" - }, - { - "rshares": "24640010859", - "voter": "policewala" - }, - { - "rshares": "8895668205", - "voter": "fearlessgu" - }, - { - "rshares": "4387588454", - "voter": "sacrosanct" - }, - { - "rshares": "3935940775", - "voter": "delilhavores" - }, - { - "rshares": "11545189361", - "voter": "roamingsparrow" - }, - { - "rshares": "1193397716", - "voter": "gmlrecordz" - }, - { - "rshares": "848281042", - "voter": "ribary" - }, - { - "rshares": "1933820210", - "voter": "jeffmackinnon" - }, - { - "rshares": "2407077237", - "voter": "garlet" - }, - { - "rshares": "27930319893", - "voter": "juanvegetarian" - }, - { - "rshares": "844158225", - "voter": "kgsupport" - }, - { - "rshares": "2151636387", - "voter": "bilpcoinbpc" - }, - { - "rshares": "16083718456", - "voter": "mice-k" - }, - { - "rshares": "1970710828", - "voter": "bcm.dblog" - }, - { - "rshares": "1320889737", - "voter": "curamax" - }, - { - "rshares": "513249877", - "voter": "steemcityrewards" - }, - { - "rshares": "657967988", - "voter": "dpend.active" - }, - { - "rshares": "15830342390", - "voter": "opochtli" - }, - { - "rshares": "2198209039", - "voter": "fengchao" - }, - { - "rshares": "0", - "voter": "dagadu" - }, - { - "rshares": "341995172212", - "voter": "hiveyoda" - }, - { - "rshares": "2571429984", - "voter": "robwillmann" - }, - { - "rshares": "1721170975", - "voter": "green-finger" - }, - { - "rshares": "12203018470", - "voter": "nulledgh0st" - }, - { - "rshares": "5318494795", - "voter": "unklebonehead" - }, - { - "rshares": "472300601108", - "voter": "softworld" - }, - { - "rshares": "7208018113", - "voter": "polish.hive" - }, - { - "rshares": "343891943236", - "voter": "quello" - }, - { - "rshares": "66945145957", - "voter": "dcityrewards" - }, - { - "rshares": "871723695", - "voter": "marvschurchill1" - }, - { - "rshares": "1494374157", - "voter": "ninnu" - }, - { - "rshares": "67002085032", - "voter": "hivelander" - }, - { - "rshares": "91361835281", - "voter": "ghaazi" - }, - { - "rshares": "3273543580", - "voter": "hivehustlers" - }, - { - "rshares": "67557174903", - "voter": "hivecur" - }, - { - "rshares": "621084653", - "voter": "improbableliason" - }, - { - "rshares": "0", - "voter": "mutabor78" - }, - { - "rshares": "0", - "voter": "graythor" - }, - { - "rshares": "745889831", - "voter": "hivecur2" - }, - { - "rshares": "0", - "voter": "oyintari9" - } + "tags": [ + "food", + "minnowsunite", + "steemsquad", + "vegan", + "recipe" ], - "author": "cryptofinally", - "author_payout_value": "0.000 HBD", - "author_reputation": 70.69, - "beneficiaries": [], - "blacklists": [], - "body": "Yesterday my Instagram account @CryptoFinally, alongside @Coruscate (GirlGoneCrypto) & another woman who we collaborate with, Tech With Catalina, all had our Instagrams permanently disabled and banned. This comes in the wake of the recent Binance influencer awards, and my vocalization of the gender disparity in the blockchain space.\n\nCointelegraph has covered the situation for you to catch up:\nhttps://cointelegraph.com/news/three-female-binance-award-nominees-get-blocked-from-instagram\n\n\n![1434_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy80YWI2Zjc3YmEzYmUyN2M1NTVmMWZmNjc5NWFiM2JhYi5qcGc=.jpg](https://images.hive.blog/DQmaSb21dMvXbwygiYyFvbbwrUJo5pdAkHjaWFpGBdJMrP4/1434_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy80YWI2Zjc3YmEzYmUyN2M1NTVmMWZmNjc5NWFiM2JhYi5qcGc=.jpg)\n\n\nI will be posting a more detailed account of what happened today!\n\nIt's moments like these that we must move towards decentralized social platforms like Hive. Thank you all for being the best community, in the best place, where things like this can not happen. \n\n\ud83d\udcabCryptoFinally:\nYouTube: \u200bhttps://www.youtube.com/CryptoFinally\nTwitter: \u200bhttps://twitter.com/CryptoFinally\nInstagram: \u200bhttps://www.instagram.com/cryptofinally/\nFacebook: \u200bhttps://www.facebook.com/CryptoFinally\nLBRY: \u200bhttps://lbry.tv/@cryptofinally\n\n\ud83d\udd8aCryptoFinally Blogs:\nHive: \u200bhttps://hive.blog/@cryptofinally\nMinds: \u200bhttps://www.minds.com/cryptofinally\nFlote: https://flote.app/CryptoFinally\nSoMee: \u200bhttps://somee.social/profile/cryptofinally\n\n\ud83d\udcf8CryptoFinally Livestreams:\nDLive: \u200bhttps://dlive.tv/CryptoFinally\nPeriscope: https://www.pscp.tv/CryptoFinally/\n\n\ud83d\udcf9CryptoFinally Videos:\nYouTube: \u200bhttps://www.youtube.com/CryptoFinally\nLBRY: \u200bhttps://lbry.tv/@cryptofinally\nBitTubers: https://bittubers.com/profile/CryptoFinally\nBitChute: https://www.bitchute.com/channel/cryptofinally/\n3Speak: \u200bhttps://3speak.online/user/cryptofinally\nVibraVid: \u200bhttps://vibravid.io/users/CryptoFinally\n\n\ud83d\udc55Store: \u200bhttps://www.etsy.com/shop/CryptoFinally\n\n\ud83d\udcabWebsite: https://rachelsiegelnyc.com/\n\n\ud83d\udce5 Contact Crypto Finally \ud83d\udc49 CryptoFinally@gmail.com \n\nSupport ya girl:\nCryptoFinally Patreon: \u200bhttps://www.patreon.com/cryptofinally\nCryptoFinally Flote: \u200bhttps://flote.app/CryptoFinally\n\nBTC/Bitcoin: 3LHTvBX7wYmLhPfBiypDb8GDGHt5wGFTLV\n\nLTC/Litecoin: MJEyWvP3PPHQjbQhcWGWETgzHpkjnnXdst\n\n\ud83d\udcab Find All CryptoFinally Online: https://linktr.ee/cryptofinally \n\n\ud83d\udc4dGet Bitcoin Back:\nGet 20k Free Satoshis and up to 20% Bitcoin Back on Fold App:\nhttp://use.foldapp.com/r/wqbaCNXK\n\nFree $10 in Bitcoin & Bitcoin Back on Lolli: \u200bhttps://lolli.com/ref/xLdoJ9Z8RU\n\nGet $2.50 Free Bitcoin & Bitcoin Back with Pei: \u200bhttps://getpei.com/\u200b (Use code CRYPTOFINALLY)\n\n\ud83d\udcbb Helpful links & resources for starting in Cryptocurrency \ud83d\udc47\n\n\ud83d\udcdaHODL gang for life & on your way to being a #Bitcoin billionaire? Just getting started? Tired of asking people what is Bitcoin? Or what is Cryptocurrency? Coindesk offers awesome resources to learn about Bitcoin & Blockchain, for newcomers and HODLers alike. \n\ud83d\udcd7A Beginners Guide to Blockchain Technology by Coindesk : https://www.coindesk.com/information/\n\n\ud83d\udcdaQuest for blockchain knowledge never over? Still asking yourself what is Bitcoin & what is blockchain? Wondering how to use Bitcoin? Blockgeeks offers a great article on #Blockchain technology. Be sure to check out these resources about Bitcoin for beginners & Blockchain for beginners:\n\ud83d\udcd5What is Blockchain Technology? A Step by Step Guide for Beginners by Blockgeeks : https://blockgeeks.com/guides/what-is... \n\n\ud83d\udcf0Looking for up to date Crypto News? Searched everywhere but can\u2019t find Bitcoin news? Wondering where you can get Bitcoin updates and #Cryptocurrency updates? Need to know the Bitcoin price now? Or Bitcoin price predictions for 2020? Try Cointelegraph, with new Bitcoin news and cryptocurrency news daily : https://cointelegraph.com/ \n\n\ud83d\udcf0Just in case you didn\u2019t get your fix of #BitcoinNews & #CryptoNews, try Bitcoin Magazine. With #CryptocurrencyNews, beginners guides to blockchain, beginners guides to Bitcoin, #Ethereum, #Ripple, #Altcoins, bitcoin wallets, #Crypto, cryptocurrency exchanges and more : https://bitcoinmagazine.com/\n\nThank you for watching my Bitcoin live streams & Cryptocurrency youtube videos, I hope you will continue to watch and subscribe to my cryptocurrency channel for updated crypto news, bitcoin news and more about the cryptocurrency market, bitcoin in media, bitcoin in movies and cryptocurrency AMAs! I\u2019m so glad you\u2019re interested in Bitcoin, Blockchain & cryptocurrency and hope I can help answer your questions about earning Bitcoin from home & how to use Bitcoin. Please reach out for more resources on what is Bitcoin & what is blockchain!", - "category": "hive", - "children": 16, - "created": "2020-07-07T12:18:33", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "hiveblog/0.1", - "format": "markdown", - "image": [ - "https://images.hive.blog/DQmaSb21dMvXbwygiYyFvbbwrUJo5pdAkHjaWFpGBdJMrP4/1434_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy80YWI2Zjc3YmEzYmUyN2M1NTVmMWZmNjc5NWFiM2JhYi5qcGc=.jpg" - ], - "links": [ - "https://cointelegraph.com/news/three-female-binance-award-nominees-get-blocked-from-instagram", - "https://www.youtube.com/CryptoFinally", - "https://twitter.com/CryptoFinally", - "https://www.instagram.com/cryptofinally/", - "https://www.facebook.com/CryptoFinally", - "https://lbry.tv/@cryptofinally", - "https://hive.blog/@cryptofinally", - "https://www.minds.com/cryptofinally", - "https://flote.app/CryptoFinally", - "https://somee.social/profile/cryptofinally", - "https://dlive.tv/CryptoFinally", - "https://www.pscp.tv/CryptoFinally/", - "https://bittubers.com/profile/CryptoFinally", - "https://www.bitchute.com/channel/cryptofinally/", - "https://3speak.online/user/cryptofinally", - "https://vibravid.io/users/CryptoFinally", - "https://www.etsy.com/shop/CryptoFinally", - "https://rachelsiegelnyc.com/", - "https://www.patreon.com/cryptofinally", - "https://linktr.ee/cryptofinally", - "http://use.foldapp.com/r/wqbaCNXK", - "https://lolli.com/ref/xLdoJ9Z8RU", - "https://getpei.com/\u200b", - "https://www.coindesk.com/information/", - "https://blockgeeks.com/guides/what-is", - "https://cointelegraph.com/", - "https://bitcoinmagazine.com/" - ], - "tags": [ - "hive", - "bitcoin", - "blockchain", - "cryptocurrency", - "decentralized", - "bitcoinnews", - "cryptonews", - "cryptocurrencynews" - ], - "users": [ - "cryptofinally", - "coruscate" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 97532051234603, - "payout": 39.314, - "payout_at": "2020-07-14T12:18:33", - "pending_payout_value": "39.314 HBD", - "percent_hbd": 10000, - "permlink": "instagram-removes-cryptofinally-and-girlgonecrypto-x-cointelegraph", - "post_id": 86931560, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 278 - }, - "title": "Instagram Removes CryptoFinally & GirlGoneCrypto x CoinTelegraph", - "updated": "2020-07-07T12:18:33", - "url": "/hive/@cryptofinally/instagram-removes-cryptofinally-and-girlgonecrypto-x-cointelegraph" + "users": [ + "allesgruen", + "knozaki2015" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62692229771159, + "payout": 230.258, + "payout_at": "2016-09-16T14:58:37", + "pending_payout_value": "230.258 HBD", + "percent_hbd": 10000, + "permlink": "the-tastiest-and-healthiest-raw-chocolate-in-the-world", + "post_id": 958185, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 232 + }, + "title": "The tastiest and healthiest raw chocolate in the world !!!", + "updated": "2016-09-15T14:24:12", + "url": "/food/@knozaki2015/the-tastiest-and-healthiest-raw-chocolate-in-the-world" }, { - "active_votes": [ - { - "rshares": "9410150046", - "voter": "mangou007" - }, - { - "rshares": "537388223749", - "voter": "mark-waser" - }, - { - "rshares": "15807484832003", - "voter": "livingfree" - }, - { - "rshares": "118905337797", - "voter": "webdeals" - }, - { - "rshares": "5532471197381", - "voter": "jphamer1" - }, - { - "rshares": "28776497370", - "voter": "bert0" - }, - { - "rshares": "76893998181", - "voter": "themanualbot" - }, - { - "rshares": "9457907406", - "voter": "leoplaw" - }, - { - "rshares": "541084974643", - "voter": "digital-wisdom" - }, - { - "rshares": "2100221268", - "voter": "ethical-ai" - }, - { - "rshares": "25690859458", - "voter": "jwaser" - }, - { - "rshares": "81511136409", - "voter": "petrvl" - }, - { - "rshares": "1271113455", - "voter": "ebargains" - }, - { - "rshares": "14973190357", - "voter": "bwaser" - }, - { - "rshares": "1564722665", - "voter": "ellepdub" - }, - { - "rshares": "162842032543", - "voter": "herpetologyguy" - }, - { - "rshares": "29901698274", - "voter": "morgan.waser" - }, - { - "rshares": "3779419179", - "voter": "handyman" - }, - { - "rshares": "2186487096", - "voter": "strong-ai" - }, - { - "rshares": "18005981723032", - "voter": "created" - }, - { - "rshares": "123430636885", - "voter": "felix.herrmann" - }, - { - "rshares": "35369924246", - "voter": "yadamaniart" - }, - { - "rshares": "1014118014", - "voter": "technoprogressiv" - }, - { - "rshares": "9175603632", - "voter": "saleg25" - }, - { - "rshares": "113585890356", - "voter": "federacion45" - }, - { - "rshares": "44701616725", - "voter": "melooo182" - }, - { - "rshares": "5664661985", - "voter": "kennyroy" - }, - { - "rshares": "313982919065", - "voter": "drag33" - }, - { - "rshares": "73150733141", - "voter": "ironshield" - }, - { - "rshares": "51678289584", - "voter": "arrliinn" - }, - { - "rshares": "13763121371", - "voter": "belahejna" - }, - { - "rshares": "25684325802", - "voter": "erangvee" - }, - { - "rshares": "280354373450", - "voter": "offgridlife" - }, - { - "rshares": "70583514337", - "voter": "yanes94" - }, - { - "rshares": "26826126310", - "voter": "dine77" - }, - { - "rshares": "1152799968129", - "voter": "steemvote" - }, - { - "rshares": "275508215050", - "voter": "investingpennies" - }, - { - "rshares": "23074606", - "voter": "travelingmercies" - }, - { - "rshares": "88499886464", - "voter": "masummim50" - }, - { - "rshares": "11609629455", - "voter": "santigs" - }, - { - "rshares": "24036020426", - "voter": "thelordsharvest" - }, - { - "rshares": "23697814194", - "voter": "pingcess" - }, - { - "rshares": "12056213885", - "voter": "divinekids" - }, - { - "rshares": "1520287551", - "voter": "flamingirl" - }, - { - "rshares": "30793181809", - "voter": "miti" - }, - { - "rshares": "98946042794", - "voter": "steemflow" - }, - { - "rshares": "1112330533992", - "voter": "communitycoin" - }, - { - "rshares": "1303378959", - "voter": "awesome-gadgets" - }, - { - "rshares": "633460606871", - "voter": "citizensmith" - }, - { - "rshares": "2457424619", - "voter": "godlovermel25" - }, - { - "rshares": "18132798779", - "voter": "scc664" - }, - { - "rshares": "1761298577", - "voter": "korinkrafting" - }, - { - "rshares": "152075444396", - "voter": "mmmmkkkk311" - }, - { - "rshares": "19918924318", - "voter": "steemvault" - }, - { - "rshares": "5394188587", - "voter": "fun2learn" - }, - { - "rshares": "10619729165", - "voter": "enmaart" - }, - { - "rshares": "529461488", - "voter": "abandi" - }, - { - "rshares": "35566756887", - "voter": "sportscontest" - }, - { - "rshares": "7359555902", - "voter": "best-strategy" - }, - { - "rshares": "930335934", - "voter": "gavinatorial" - }, - { - "rshares": "4230988770", - "voter": "lerma" - }, - { - "rshares": "532861929", - "voter": "nenya" - }, - { - "rshares": "23307557268", - "voter": "photohunt" - }, - { - "rshares": "756577066", - "voter": "photohunter1" - }, - { - "rshares": "1848839084", - "voter": "photohunter2" - }, - { - "rshares": "1156910832", - "voter": "photohunter4" - }, - { - "rshares": "1117531065", - "voter": "photohunter5" - }, - { - "rshares": "4353115065", - "voter": "royfletcher" - }, - { - "rshares": "5643707556", - "voter": "josevas217" - }, - { - "rshares": "2582244218", - "voter": "onepercentbetter" - }, - { - "rshares": "10606087751", - "voter": "adamada" - }, - { - "rshares": "1083691056849", - "voter": "jkramer" - }, - { - "rshares": "15194849800", - "voter": "francisftlp" - }, - { - "rshares": "2306743904389", - "voter": "midlet" - }, - { - "rshares": "7975372015806", - "voter": "julialee66" - }, - { - "rshares": "3093592920", - "voter": "coarebabes" - }, - { - "rshares": "55810480505", - "voter": "romeskie" - }, - { - "rshares": "497884517", - "voter": "merlion" - }, - { - "rshares": "60220616601", - "voter": "alejandra.her" - }, - { - "rshares": "21660487605", - "voter": "tiffcisme" - }, - { - "rshares": "840506010", - "voter": "rufruf" - }, - { - "rshares": "6165409181", - "voter": "sadbear" - }, - { - "rshares": "1346099282", - "voter": "rayshiuimages" - }, - { - "rshares": "10870160240", - "voter": "perazart" - }, - { - "rshares": "31342213", - "voter": "laissez-faire" - }, - { - "rshares": "3536019572", - "voter": "alexbiojs" - }, - { - "rshares": "19680931655", - "voter": "rowell" - }, - { - "rshares": "10196764555", - "voter": "javier.dejuan" - }, - { - "rshares": "540215268", - "voter": "zintarmortalis" - }, - { - "rshares": "596247786", - "voter": "natur-pur" - }, - { - "rshares": "26237128171", - "voter": "steemitcuration" - }, - { - "rshares": "744318761", - "voter": "memeteca" - }, - { - "rshares": "5580005997", - "voter": "rakk3187" - }, - { - "rshares": "1226348581", - "voter": "quenty" - }, - { - "rshares": "-121753598", - "voter": "dein-problem" - }, - { - "rshares": "3683135025", - "voter": "unit101" - }, - { - "rshares": "39479516215", - "voter": "theskmeister" - }, - { - "rshares": "5859107402", - "voter": "littlegurl747" - }, - { - "rshares": "1462697141", - "voter": "fire451" - }, - { - "rshares": "845913206", - "voter": "starfighter" - }, - { - "rshares": "765834886", - "voter": "seekingalpha" - }, - { - "rshares": "797246540", - "voter": "nimloth" - }, - { - "rshares": "7181462968", - "voter": "creary" - }, - { - "rshares": "338065323056", - "voter": "ctime" - }, - { - "rshares": "25794187732", - "voter": "tankometry" - }, - { - "rshares": "25633165138", - "voter": "jetometry" - }, - { - "rshares": "23079065445", - "voter": "rockstarbm" - }, - { - "rshares": "54024823", - "voter": "hungrybear" - }, - { - "rshares": "259531005101", - "voter": "apix" - }, - { - "rshares": "3170831439", - "voter": "steem-fund" - }, - { - "rshares": "20781409300", - "voter": "maryincryptoland" - }, - { - "rshares": "12531216463", - "voter": "scarletreaper" - }, - { - "rshares": "130218103755", - "voter": "morwen" - }, - { - "rshares": "1847969513", - "voter": "hjlee119" - }, - { - "rshares": "1151534074", - "voter": "klima" - }, - { - "rshares": "580067278", - "voter": "mosquito76" - }, - { - "rshares": "723574947", - "voter": "voodooranger" - }, - { - "rshares": "930277412", - "voter": "online-24-7" - }, - { - "rshares": "353104540055", - "voter": "votebetting" - }, - { - "rshares": "26983816603", - "voter": "botante" - }, - { - "rshares": "1576882547", - "voter": "midlet-creates" - }, - { - "rshares": "15902635750", - "voter": "knightsunited" - }, - { - "rshares": "4669762468", - "voter": "pukeko" - }, - { - "rshares": "1254694325660", - "voter": "rootdraws" - }, - { - "rshares": "3323663384", - "voter": "hongdangmu" - }, - { - "rshares": "678610883", - "voter": "jgb" - }, - { - "rshares": "4809654924", - "voter": "kryptoformator" - }, - { - "rshares": "16312783626", - "voter": "policewala" - }, - { - "rshares": "7625134323", - "voter": "roamingsparrow" - }, - { - "rshares": "35406189544", - "voter": "onchainart" - }, - { - "rshares": "1124923398", - "voter": "coin-doubler" - }, - { - "rshares": "321856812", - "voter": "bela29" - }, - { - "rshares": "1971398599", - "voter": "bcm.dblog" - }, - { - "rshares": "553022197", - "voter": "romytokic" - }, - { - "rshares": "33419329494957", - "voter": "darthknight" - }, - { - "rshares": "344776150725", - "voter": "hiveyoda" - }, - { - "rshares": "25325955071", - "voter": "creativemary" - }, - { - "rshares": "1721786612", - "voter": "green-finger" - }, - { - "rshares": "446974337113", - "voter": "softworld" - }, - { - "rshares": "4207665173", - "voter": "diamondstyke" - }, - { - "rshares": "2814111930", - "voter": "blanktasukaki" - }, - { - "rshares": "3737284052", - "voter": "ssygmr" - }, - { - "rshares": "1406246238", - "voter": "tokichope" - }, - { - "rshares": "815301440", - "voter": "dkt333" - }, - { - "rshares": "51848983876", - "voter": "executive-board" - }, - { - "rshares": "267715614", - "voter": "magin.pintor" - }, - { - "rshares": "1116104369", - "voter": "rowye" - }, - { - "rshares": "8510225031", - "voter": "artistparthoroy" - }, - { - "rshares": "1092881213820", - "voter": "asa-raw" - }, - { - "rshares": "2872871968", - "voter": "patagonica" - }, - { - "rshares": "121719583780", - "voter": "hivebuilder" - }, - { - "rshares": "853672470", - "voter": "hivebuilderteam" - }, - { - "rshares": "745082735", - "voter": "hivecur2" - }, - { - "rshares": "150000000", - "voter": "ferleyrios0" - } + "active_votes": [ + { + "rshares": "17090232811151", + "voter": "itsascam" + }, + { + "rshares": "480579269556", + "voter": "barrie" + }, + { + "rshares": "29720965903527", + "voter": "smooth" + }, + { + "rshares": "231748891373", + "voter": "anonymous" + }, + { + "rshares": "3703513941678", + "voter": "alphabet" + }, + { + "rshares": "2010285876889", + "voter": "steemroller" + }, + { + "rshares": "74805101299", + "voter": "donaldtrump" + }, + { + "rshares": "18187582592218", + "voter": "steemed" + }, + { + "rshares": "3205433782741", + "voter": "riverhead" + }, + { + "rshares": "1990377241911", + "voter": "badassmother" + }, + { + "rshares": "2005036868492", + "voter": "hr1" + }, + { + "rshares": "22380813356", + "voter": "jaewoocho" + }, + { + "rshares": "1869058236100", + "voter": "xeroc" + }, + { + "rshares": "1607182817833", + "voter": "joseph" + }, + { + "rshares": "82723821395", + "voter": "aizensou" + }, + { + "rshares": "456027411770", + "voter": "recursive2" + }, + { + "rshares": "588963325183", + "voter": "masteryoda" + }, + { + "rshares": "3119398199095", + "voter": "recursive" + }, + { + "rshares": "1172473837", + "voter": "mineralwasser" + }, + { + "rshares": "85737349562", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "1620255991", + "voter": "bingo-1" + }, + { + "rshares": "5567720953547", + "voter": "smooth.witness" + }, + { + "rshares": "170448445243", + "voter": "pairmike" + }, + { + "rshares": "9645319071", + "voter": "idol" + }, + { + "rshares": "131761872479", + "voter": "team" + }, + { + "rshares": "4632015537", + "voter": "sakr" + }, + { + "rshares": "96050573044", + "voter": "jchch" + }, + { + "rshares": "25239550780", + "voter": "chitty" + }, + { + "rshares": "47092417970", + "voter": "alexgr" + }, + { + "rshares": "3109770089", + "voter": "yefet" + }, + { + "rshares": "1660422196", + "voter": "jocelyn" + }, + { + "rshares": "13752626395", + "voter": "gregory-f" + }, + { + "rshares": "11239173417", + "voter": "dave-hughes" + }, + { + "rshares": "145064407415", + "voter": "edgeland" + }, + { + "rshares": "30188072314", + "voter": "full-measure" + }, + { + "rshares": "60085973635", + "voter": "lovelace" + }, + { + "rshares": "74898454777", + "voter": "eeks" + }, + { + "rshares": "478348587", + "voter": "paco-steem" + }, + { + "rshares": "5761302959", + "voter": "spaninv" + }, + { + "rshares": "30447039303", + "voter": "instructor2121" + }, + { + "rshares": "7891620962", + "voter": "nate-atkins" + }, + { + "rshares": "2197259642", + "voter": "gekko" + }, + { + "rshares": "313176541236", + "voter": "teamsteem" + }, + { + "rshares": "9535707424", + "voter": "richman" + }, + { + "rshares": "550540650972", + "voter": "nanzo-scoop" + }, + { + "rshares": "13884504681", + "voter": "fact" + }, + { + "rshares": "165470271317", + "voter": "steve-walschot" + }, + { + "rshares": "10099012692", + "voter": "cian.dafe" + }, + { + "rshares": "49793677286", + "voter": "hannixx42" + }, + { + "rshares": "169122010230", + "voter": "mummyimperfect" + }, + { + "rshares": "268838726", + "voter": "coar" + }, + { + "rshares": "98193208498", + "voter": "asch" + }, + { + "rshares": "1060920601", + "voter": "murh" + }, + { + "rshares": "6083782451", + "voter": "cryptofunk" + }, + { + "rshares": "2164662094", + "voter": "error" + }, + { + "rshares": "5736901624", + "voter": "marta-zaidel" + }, + { + "rshares": "40923353954", + "voter": "ranko-k" + }, + { + "rshares": "985042955913", + "voter": "cyber" + }, + { + "rshares": "10687278238", + "voter": "aizen01" + }, + { + "rshares": "6372292910", + "voter": "aizen02" + }, + { + "rshares": "3482772895", + "voter": "aizen03" + }, + { + "rshares": "1145023026", + "voter": "aizen04" + }, + { + "rshares": "484325382", + "voter": "aizen05" + }, + { + "rshares": "4698759112", + "voter": "aizen07" + }, + { + "rshares": "2810313611", + "voter": "aizen08" + }, + { + "rshares": "998812710", + "voter": "aizen09" + }, + { + "rshares": "432171763", + "voter": "aizen10" + }, + { + "rshares": "7109531805", + "voter": "aizen06" + }, + { + "rshares": "2986666907", + "voter": "aizen11" + }, + { + "rshares": "2052802727", + "voter": "aizen14" + }, + { + "rshares": "2413810847", + "voter": "aizen19" + }, + { + "rshares": "636225126", + "voter": "aizen15" + }, + { + "rshares": "6299030433", + "voter": "aizen16" + }, + { + "rshares": "48237424583", + "voter": "ak2020" + }, + { + "rshares": "632466769", + "voter": "aizen20" + }, + { + "rshares": "4134827463", + "voter": "aizen22" + }, + { + "rshares": "1099034433", + "voter": "aizen23" + }, + { + "rshares": "2161693603", + "voter": "aizen17" + }, + { + "rshares": "3402464131", + "voter": "aizen24" + }, + { + "rshares": "480934421", + "voter": "aizen18" + }, + { + "rshares": "1288443304", + "voter": "aizen25" + }, + { + "rshares": "2188687430", + "voter": "aizen28" + }, + { + "rshares": "3368022267", + "voter": "aizen26" + }, + { + "rshares": "1105570076", + "voter": "aizen27" + }, + { + "rshares": "3799766067", + "voter": "aizen32" + }, + { + "rshares": "2078826064", + "voter": "aizen30" + }, + { + "rshares": "3845310415", + "voter": "aizen31" + }, + { + "rshares": "1265719430", + "voter": "aizen33" + }, + { + "rshares": "1522643877", + "voter": "aizen34" + }, + { + "rshares": "305661234", + "voter": "aizen35" + }, + { + "rshares": "5734872441", + "voter": "aizen36" + }, + { + "rshares": "1430746846", + "voter": "aizen37" + }, + { + "rshares": "400285218", + "voter": "aizen29" + }, + { + "rshares": "2816257454", + "voter": "aizen21" + }, + { + "rshares": "65573912297", + "voter": "justtryme90" + }, + { + "rshares": "4321209833", + "voter": "aizen12" + }, + { + "rshares": "1839863893", + "voter": "aizen38" + }, + { + "rshares": "32298471411", + "voter": "drinkzya" + }, + { + "rshares": "8444658507", + "voter": "badger311" + }, + { + "rshares": "8739325345", + "voter": "badger313" + }, + { + "rshares": "8702827614", + "voter": "badger312" + }, + { + "rshares": "9001973394", + "voter": "badger316" + }, + { + "rshares": "9123923965", + "voter": "badger319" + }, + { + "rshares": "9031557781", + "voter": "badger3101" + }, + { + "rshares": "8484371114", + "voter": "badger3111" + }, + { + "rshares": "9046675913", + "voter": "badger3121" + }, + { + "rshares": "8655016180", + "voter": "badger3131" + }, + { + "rshares": "8763045211", + "voter": "badger3141" + }, + { + "rshares": "8739453800", + "voter": "badger3171" + }, + { + "rshares": "8546855954", + "voter": "badger3181" + }, + { + "rshares": "9133346310", + "voter": "badger3191" + }, + { + "rshares": "8546692844", + "voter": "badger3112" + }, + { + "rshares": "8887969807", + "voter": "badger3132" + }, + { + "rshares": "8761093741", + "voter": "badger3162" + }, + { + "rshares": "8992244297", + "voter": "badger3113" + }, + { + "rshares": "8642807886", + "voter": "badger3123" + }, + { + "rshares": "8766602954", + "voter": "badger3133" + }, + { + "rshares": "9118359724", + "voter": "badger3153" + }, + { + "rshares": "8796689830", + "voter": "badger3163" + }, + { + "rshares": "8827245303", + "voter": "badger3193" + }, + { + "rshares": "8776818063", + "voter": "badger3114" + }, + { + "rshares": "8685663112", + "voter": "badger3124" + }, + { + "rshares": "8588459406", + "voter": "badger3144" + }, + { + "rshares": "8510231316", + "voter": "badger3154" + }, + { + "rshares": "8377454951", + "voter": "badger3164" + }, + { + "rshares": "8709610129", + "voter": "badger3174" + }, + { + "rshares": "8990147355", + "voter": "badger3194" + }, + { + "rshares": "8886405623", + "voter": "badger3105" + }, + { + "rshares": "8829871300", + "voter": "badger3135" + }, + { + "rshares": "8423693063", + "voter": "badger3145" + }, + { + "rshares": "9007791015", + "voter": "badger3155" + }, + { + "rshares": "8700420554", + "voter": "badger3175" + }, + { + "rshares": "8476416242", + "voter": "badger3195" + }, + { + "rshares": "8118066308", + "voter": "badger3106" + }, + { + "rshares": "8937639951", + "voter": "badger3116" + }, + { + "rshares": "8985666162", + "voter": "badger3126" + }, + { + "rshares": "8612215471", + "voter": "badger3136" + }, + { + "rshares": "8258415644", + "voter": "badger3146" + }, + { + "rshares": "8490356190", + "voter": "badger3156" + }, + { + "rshares": "8706404705", + "voter": "badger3166" + }, + { + "rshares": "8621148181", + "voter": "badger3176" + }, + { + "rshares": "8755890485", + "voter": "badger3186" + }, + { + "rshares": "8791694513", + "voter": "badger3196" + }, + { + "rshares": "8719131325", + "voter": "badger3107" + }, + { + "rshares": "8471234920", + "voter": "badger315" + }, + { + "rshares": "8967798699", + "voter": "badger318" + }, + { + "rshares": "9017469354", + "voter": "badger3151" + }, + { + "rshares": "8689504021", + "voter": "badger3161" + }, + { + "rshares": "8949018277", + "voter": "badger3122" + }, + { + "rshares": "8885778223", + "voter": "badger3142" + }, + { + "rshares": "9108990725", + "voter": "badger3152" + }, + { + "rshares": "8411493414", + "voter": "badger3172" + }, + { + "rshares": "8925369694", + "voter": "badger3182" + }, + { + "rshares": "8680564470", + "voter": "badger3192" + }, + { + "rshares": "8595071709", + "voter": "badger3143" + }, + { + "rshares": "8858368574", + "voter": "badger3173" + }, + { + "rshares": "8564639501", + "voter": "badger3104" + }, + { + "rshares": "8276437501", + "voter": "badger3134" + }, + { + "rshares": "8683745951", + "voter": "badger3184" + }, + { + "rshares": "8620766828", + "voter": "badger3115" + }, + { + "rshares": "9094337935", + "voter": "badger3165" + }, + { + "rshares": "8719854886", + "voter": "badger3185" + }, + { + "rshares": "8781868170", + "voter": "badger314" + }, + { + "rshares": "9016639241", + "voter": "badger317" + }, + { + "rshares": "8754767708", + "voter": "badger3102" + }, + { + "rshares": "8716196161", + "voter": "badger3103" + }, + { + "rshares": "8643125157", + "voter": "badger3125" + }, + { + "rshares": "8609233299", + "voter": "badger3183" + }, + { + "rshares": "512951586", + "voter": "aizen39" + }, + { + "rshares": "3616249140600", + "voter": "satoshifund" + }, + { + "rshares": "392453750650", + "voter": "taoteh1221" + }, + { + "rshares": "418804855", + "voter": "applecrisp" + }, + { + "rshares": "373228451", + "voter": "stiletto" + }, + { + "rshares": "38901034355", + "voter": "juanmiguelsalas" + }, + { + "rshares": "54694274623", + "voter": "thecryptodrive" + }, + { + "rshares": "362609039187", + "voter": "kaylinart" + }, + { + "rshares": "1428647233", + "voter": "benthegameboy" + }, + { + "rshares": "390927750", + "voter": "rafikichi" + }, + { + "rshares": "79218648284", + "voter": "tim-johnston" + }, + { + "rshares": "132301151875", + "voter": "schro" + }, + { + "rshares": "4749927412", + "voter": "tee-em" + }, + { + "rshares": "31338683407", + "voter": "michaelx" + }, + { + "rshares": "6652497229", + "voter": "grandpere" + }, + { + "rshares": "5689049935", + "voter": "mark-waser" + }, + { + "rshares": "17023109715", + "voter": "albertogm" + }, + { + "rshares": "106033721718", + "voter": "geoffrey" + }, + { + "rshares": "192231455054", + "voter": "kimziv" + }, + { + "rshares": "43526357269", + "voter": "honeythief" + }, + { + "rshares": "77694419746", + "voter": "emily-cook" + }, + { + "rshares": "2122888373", + "voter": "superfreek" + }, + { + "rshares": "33245604843", + "voter": "cryptoiskey" + }, + { + "rshares": "484592257", + "voter": "mrhankeh" + }, + { + "rshares": "36254381895", + "voter": "clement" + }, + { + "rshares": "47416085106", + "voter": "isteemit" + }, + { + "rshares": "17205891791", + "voter": "grey580" + }, + { + "rshares": "280886491", + "voter": "ladyclair" + }, + { + "rshares": "55546285382", + "voter": "venuspcs" + }, + { + "rshares": "20379625641", + "voter": "thebatchman" + }, + { + "rshares": "164474222053", + "voter": "dashpaymag" + }, + { + "rshares": "169409415564", + "voter": "asmolokalo" + }, + { + "rshares": "462742250057", + "voter": "roelandp" + }, + { + "rshares": "69473128292", + "voter": "rubybian" + }, + { + "rshares": "3148219453", + "voter": "orly" + }, + { + "rshares": "4953381149", + "voter": "riscadox" + }, + { + "rshares": "245172817", + "voter": "mstang83" + }, + { + "rshares": "18842523479", + "voter": "hakise" + }, + { + "rshares": "14215545466", + "voter": "r4fken" + }, + { + "rshares": "25052927517", + "voter": "tcfxyz" + }, + { + "rshares": "6938809092", + "voter": "futurefood" + }, + { + "rshares": "1001850942", + "voter": "steemswede" + }, + { + "rshares": "31072527474", + "voter": "picokernel" + }, + { + "rshares": "823059128625", + "voter": "slowwalker" + }, + { + "rshares": "381822182", + "voter": "aizen13" + }, + { + "rshares": "3279400287", + "voter": "aizen41" + }, + { + "rshares": "931911377", + "voter": "aizen42" + }, + { + "rshares": "3174813360", + "voter": "aizen46" + }, + { + "rshares": "868931638", + "voter": "aizen47" + }, + { + "rshares": "212993516", + "voter": "aizen48" + }, + { + "rshares": "111038594", + "voter": "aizen49" + }, + { + "rshares": "922579590", + "voter": "aizen51" + }, + { + "rshares": "1267696038568", + "voter": "renohq" + }, + { + "rshares": "446844083", + "voter": "aizen43" + }, + { + "rshares": "66332881", + "voter": "aizen44" + }, + { + "rshares": "748318238", + "voter": "aizen54" + }, + { + "rshares": "14876041938", + "voter": "ausbitbank" + }, + { + "rshares": "1231736991", + "voter": "dicov" + }, + { + "rshares": "2530789873", + "voter": "steem1653" + }, + { + "rshares": "188360520718", + "voter": "anyx" + }, + { + "rshares": "7540907296", + "voter": "steemit-life" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "12461342724", + "voter": "asim" + }, + { + "rshares": "95008078", + "voter": "snowden" + }, + { + "rshares": "17043337041", + "voter": "bdavid" + }, + { + "rshares": "14289175254", + "voter": "aaseb" + }, + { + "rshares": "1107698236", + "voter": "karen13" + }, + { + "rshares": "19964419792", + "voter": "meiisheree" + }, + { + "rshares": "10644107638", + "voter": "deviedev" + }, + { + "rshares": "1427008333", + "voter": "jrd8526" + }, + { + "rshares": "73200426006", + "voter": "jpiper20" + }, + { + "rshares": "258942997644", + "voter": "nabilov" + }, + { + "rshares": "4121277460", + "voter": "dcryptogold" + }, + { + "rshares": "2722560234", + "voter": "dmacshady" + }, + { + "rshares": "228989895", + "voter": "aizen52" + }, + { + "rshares": "44553186838", + "voter": "milestone" + }, + { + "rshares": "87223247", + "voter": "wildchild" + }, + { + "rshares": "2650671514", + "voter": "the-future" + }, + { + "rshares": "186538708", + "voter": "aizen55" + }, + { + "rshares": "23976773907", + "voter": "peacekeeper" + }, + { + "rshares": "4310323809", + "voter": "poseidon" + }, + { + "rshares": "347898300458", + "voter": "calaber24p" + }, + { + "rshares": "3365335082", + "voter": "simon.braki.love" + }, + { + "rshares": "7025103979", + "voter": "geronimo" + }, + { + "rshares": "11121059561", + "voter": "rpf" + }, + { + "rshares": "3846864509", + "voter": "bitcoiner" + }, + { + "rshares": "3756536992", + "voter": "tarindel" + }, + { + "rshares": "30859119533", + "voter": "deanliu" + }, + { + "rshares": "138656821", + "voter": "bento" + }, + { + "rshares": "13069930577", + "voter": "shredlord" + }, + { + "rshares": "53842086331", + "voter": "jl777" + }, + { + "rshares": "30004697167", + "voter": "zaebars" + }, + { + "rshares": "1700129733", + "voter": "yarly" + }, + { + "rshares": "256282552", + "voter": "yarly2" + }, + { + "rshares": "256665987", + "voter": "yarly3" + }, + { + "rshares": "148269777", + "voter": "yarly4" + }, + { + "rshares": "149106888", + "voter": "yarly5" + }, + { + "rshares": "84991309", + "voter": "yarly7" + }, + { + "rshares": "799492214", + "voter": "raymonjohnstone" + }, + { + "rshares": "5272599454", + "voter": "bbrewer" + }, + { + "rshares": "21120708735", + "voter": "krabgat" + }, + { + "rshares": "4543692384", + "voter": "proto" + }, + { + "rshares": "634121191", + "voter": "curator" + }, + { + "rshares": "31584197440", + "voter": "sisterholics" + }, + { + "rshares": "411321155", + "voter": "yarly10" + }, + { + "rshares": "1365664469", + "voter": "alex.chien" + }, + { + "rshares": "220139771", + "voter": "yarly11" + }, + { + "rshares": "76966318", + "voter": "yarly12" + }, + { + "rshares": "10236810028", + "voter": "logic" + }, + { + "rshares": "3675499938", + "voter": "tygergamer" + }, + { + "rshares": "82066003", + "voter": "aizen53" + }, + { + "rshares": "149624601", + "voter": "steemster1" + }, + { + "rshares": "238512214", + "voter": "bullionstackers" + }, + { + "rshares": "108721833", + "voter": "cryptoz" + }, + { + "rshares": "6410776006", + "voter": "jed78" + }, + { + "rshares": "128598923578", + "voter": "steemdrive" + }, + { + "rshares": "973098459", + "voter": "metaflute" + }, + { + "rshares": "50562639777", + "voter": "gomeravibz" + }, + { + "rshares": "440302381", + "voter": "bento04" + }, + { + "rshares": "738358963", + "voter": "bento03" + }, + { + "rshares": "1504291216", + "voter": "aizen" + }, + { + "rshares": "2298269478", + "voter": "taker" + }, + { + "rshares": "234848214", + "voter": "bento02" + }, + { + "rshares": "540710999", + "voter": "bento01" + }, + { + "rshares": "7824682639", + "voter": "nekromarinist" + }, + { + "rshares": "1618775242", + "voter": "coinbar" + }, + { + "rshares": "59219358", + "voter": "sharon" + }, + { + "rshares": "226021128", + "voter": "frozendota" + }, + { + "rshares": "2315969904", + "voter": "merej99" + }, + { + "rshares": "60342922", + "voter": "lillianjones" + }, + { + "rshares": "1116575645876", + "voter": "laonie" + }, + { + "rshares": "245498462743", + "voter": "ozchartart" + }, + { + "rshares": "5002458769", + "voter": "croatia" + }, + { + "rshares": "64020118", + "voter": "vladimirputin" + }, + { + "rshares": "23878310347", + "voter": "rawnetics" + }, + { + "rshares": "64028162", + "voter": "angelamerkel" + }, + { + "rshares": "8270207209", + "voter": "spaceghost" + }, + { + "rshares": "11407745971", + "voter": "thebluepanda" + }, + { + "rshares": "22955094272", + "voter": "laonie1" + }, + { + "rshares": "23470889026", + "voter": "laonie2" + }, + { + "rshares": "23479197538", + "voter": "laonie3" + }, + { + "rshares": "80221808", + "voter": "bento06" + }, + { + "rshares": "23907912804", + "voter": "laoyao" + }, + { + "rshares": "37203524105", + "voter": "myfirst" + }, + { + "rshares": "226714843171", + "voter": "somebody" + }, + { + "rshares": "8719338522", + "voter": "flysaga" + }, + { + "rshares": "6129565712", + "voter": "k4r1nn" + }, + { + "rshares": "5106436541", + "voter": "brendio" + }, + { + "rshares": "2082768176", + "voter": "gmurph" + }, + { + "rshares": "50083495099", + "voter": "midnightoil" + }, + { + "rshares": "81536310749", + "voter": "mibenkito" + }, + { + "rshares": "2375350982", + "voter": "kalimor" + }, + { + "rshares": "998581895", + "voter": "altucher" + }, + { + "rshares": "4187079592", + "voter": "ullikume" + }, + { + "rshares": "99580782", + "voter": "timferriss" + }, + { + "rshares": "50565616", + "voter": "michellek" + }, + { + "rshares": "23474742068", + "voter": "laonie4" + }, + { + "rshares": "23472418592", + "voter": "laonie5" + }, + { + "rshares": "23469546880", + "voter": "laonie6" + }, + { + "rshares": "4337200195", + "voter": "armen" + }, + { + "rshares": "23465711623", + "voter": "laonie7" + }, + { + "rshares": "3986410926", + "voter": "kurtbeil" + }, + { + "rshares": "23462236775", + "voter": "laonie8" + }, + { + "rshares": "23459668262", + "voter": "laonie9" + }, + { + "rshares": "2511850537", + "voter": "steemleak" + }, + { + "rshares": "107573849125", + "voter": "thisisbenbrick" + }, + { + "rshares": "102639999", + "voter": "darrenrowse" + }, + { + "rshares": "125243433939", + "voter": "xiaohui" + }, + { + "rshares": "4185826321", + "voter": "antfield" + }, + { + "rshares": "176650903994", + "voter": "terrycraft" + }, + { + "rshares": "21110659306", + "voter": "jphamer1" + }, + { + "rshares": "97051399", + "voter": "bigsambucca" + }, + { + "rshares": "5946738271", + "voter": "elfkitchen" + }, + { + "rshares": "5766554064", + "voter": "oflyhigh" + }, + { + "rshares": "15547550089", + "voter": "randyclemens" + }, + { + "rshares": "2190476078", + "voter": "paynode" + }, + { + "rshares": "63775516", + "voter": "nickche" + }, + { + "rshares": "4028373583", + "voter": "xiaokongcom" + }, + { + "rshares": "57428544328", + "voter": "driv3n" + }, + { + "rshares": "60819615", + "voter": "msjennifer" + }, + { + "rshares": "55925537", + "voter": "ciao" + }, + { + "rshares": "54217761", + "voter": "steemo" + }, + { + "rshares": "175834493", + "voter": "pcashmore" + }, + { + "rshares": "8120343873", + "voter": "xianjun" + }, + { + "rshares": "54077897", + "voter": "steema" + }, + { + "rshares": "58449787", + "voter": "andrew.sullivan" + }, + { + "rshares": "1025553643", + "voter": "brianclark" + }, + { + "rshares": "815283599", + "voter": "daniel.kahneman" + }, + { + "rshares": "228330036", + "voter": "tucker.max" + }, + { + "rshares": "726300641", + "voter": "darren.rowse" + }, + { + "rshares": "54611897", + "voter": "chris.dunn" + }, + { + "rshares": "71282219", + "voter": "confucius" + }, + { + "rshares": "70633121", + "voter": "stevescriber" + }, + { + "rshares": "4015538661", + "voter": "bledarus" + }, + { + "rshares": "1155158838", + "voter": "pat.flynn" + }, + { + "rshares": "62297184", + "voter": "weames" + }, + { + "rshares": "50027573", + "voter": "loli" + }, + { + "rshares": "89194632643", + "voter": "miacats" + }, + { + "rshares": "1199604993", + "voter": "mattmarshall" + }, + { + "rshares": "429199025", + "voter": "timothysykes" + }, + { + "rshares": "52419023", + "voter": "nano2nd" + }, + { + "rshares": "104765652", + "voter": "patflynn" + }, + { + "rshares": "54909929", + "voter": "jarvis" + }, + { + "rshares": "531944476", + "voter": "microluck" + }, + { + "rshares": "879418656", + "voter": "andrewsullivan" + }, + { + "rshares": "77220767", + "voter": "razberrijam" + }, + { + "rshares": "9618530893", + "voter": "theb0red1" + }, + { + "rshares": "53106127", + "voter": "fortuner" + }, + { + "rshares": "1952786674", + "voter": "chinadaily" + }, + { + "rshares": "59021275", + "voter": "cryptoblu" + }, + { + "rshares": "59014859", + "voter": "instructor" + }, + { + "rshares": "739426684571", + "voter": "dollarvigilante" + }, + { + "rshares": "3897735456", + "voter": "lamech-m" + }, + { + "rshares": "479539090", + "voter": "harvey.levin" + }, + { + "rshares": "9825243280", + "voter": "gvargas123" + }, + { + "rshares": "13004524355", + "voter": "telos" + }, + { + "rshares": "51877132", + "voter": "johnbyrd" + }, + { + "rshares": "51860909", + "voter": "thomasaustin" + }, + { + "rshares": "51859074", + "voter": "thermor" + }, + { + "rshares": "51870077", + "voter": "ficholl" + }, + { + "rshares": "51852278", + "voter": "widell" + }, + { + "rshares": "51481279", + "voter": "revelbrooks" + }, + { + "rshares": "23453540976", + "voter": "laonie10" + }, + { + "rshares": "604185913", + "voter": "wuyueling" + }, + { + "rshares": "73277014476", + "voter": "sweetsssj" + }, + { + "rshares": "2803446535", + "voter": "netaterra" + }, + { + "rshares": "190920669", + "voter": "rand.fishkin" + }, + { + "rshares": "90834949499", + "voter": "barrycooper" + }, + { + "rshares": "79979619", + "voter": "joelbow" + }, + { + "rshares": "28908541792", + "voter": "hilarski" + }, + { + "rshares": "2496488206", + "voter": "shadowspub" + }, + { + "rshares": "51562255", + "voter": "curpose" + }, + { + "rshares": "55859919", + "voter": "rickmiller" + }, + { + "rshares": "1208491149", + "voter": "lenar" + }, + { + "rshares": "2129438571", + "voter": "cryptoeasy" + }, + { + "rshares": "5032072150", + "voter": "nulliusinverba" + }, + { + "rshares": "68558903", + "voter": "stephenkendal" + }, + { + "rshares": "112576381", + "voter": "jlufer" + }, + { + "rshares": "90066514", + "voter": "uziriel" + }, + { + "rshares": "1931935967", + "voter": "funkywanderer" + }, + { + "rshares": "4592861696", + "voter": "richardcrill" + }, + { + "rshares": "22607437120", + "voter": "laonie11" + }, + { + "rshares": "2249900457", + "voter": "jeremyfromwi" + }, + { + "rshares": "63258691", + "voter": "arnoldz61" + }, + { + "rshares": "51712804", + "voter": "troich" + }, + { + "rshares": "1588617838", + "voter": "davidjkelley" + }, + { + "rshares": "187911420", + "voter": "team101" + }, + { + "rshares": "51718188", + "voter": "crion" + }, + { + "rshares": "178419224", + "voter": "greatness" + }, + { + "rshares": "51388276", + "voter": "hitherise" + }, + { + "rshares": "51379706", + "voter": "wiss" + }, + { + "rshares": "13264756693", + "voter": "ghasemkiani" + }, + { + "rshares": "20853966542", + "voter": "sponge-bob" + }, + { + "rshares": "4434912337", + "voter": "l0k1" + }, + { + "rshares": "14886230314", + "voter": "digital-wisdom" + }, + { + "rshares": "3628536972", + "voter": "ethical-ai" + }, + { + "rshares": "52143228", + "voter": "stroully" + }, + { + "rshares": "1433005760", + "voter": "jiganomics" + }, + { + "rshares": "6531322926", + "voter": "jwaser" + }, + { + "rshares": "11919570943", + "voter": "doitvoluntarily" + }, + { + "rshares": "51814474", + "voter": "thadm" + }, + { + "rshares": "51812703", + "voter": "prof" + }, + { + "rshares": "1018513187", + "voter": "zettar" + }, + { + "rshares": "94160774", + "voter": "kyusho" + }, + { + "rshares": "414323782", + "voter": "steemorama" + }, + { + "rshares": "52252552", + "voter": "lighter" + }, + { + "rshares": "51465774", + "voter": "yorsens" + }, + { + "rshares": "3068760608", + "voter": "michaelmatthews" + }, + { + "rshares": "273904972", + "voter": "benjamin.still" + }, + { + "rshares": "174173092", + "voter": "harveylevin" + }, + { + "rshares": "51154263", + "voter": "bane" + }, + { + "rshares": "51148009", + "voter": "vive" + }, + { + "rshares": "51142585", + "voter": "coad" + }, + { + "rshares": "2558000160", + "voter": "bwaser" + }, + { + "rshares": "51922012", + "voter": "sofa" + }, + { + "rshares": "120475423", + "voter": "gary.vaynerchuk" + }, + { + "rshares": "5773395051", + "voter": "dexter-k" + }, + { + "rshares": "344116052", + "voter": "panther" + }, + { + "rshares": "2201645172", + "voter": "alina1" + }, + { + "rshares": "659570211", + "voter": "ct-gurus" + }, + { + "rshares": "395021428301", + "voter": "charlieshrem" + }, + { + "rshares": "61805245119", + "voter": "tracemayer" + }, + { + "rshares": "20817843519", + "voter": "brains" + }, + { + "rshares": "50450987", + "voter": "waldemar-kuhn" + }, + { + "rshares": "51994517", + "voter": "ailo" + }, + { + "rshares": "5470867324", + "voter": "chick1" + }, + { + "rshares": "2275182541", + "voter": "whatsup" + }, + { + "rshares": "51114196", + "voter": "xpice" + }, + { + "rshares": "2084741030", + "voter": "steemsquad" + }, + { + "rshares": "255505026", + "voter": "anomaly" + }, + { + "rshares": "2293549771", + "voter": "ellepdub" + }, + { + "rshares": "50407156", + "voter": "timothy.sykes" + }, + { + "rshares": "59178617", + "voter": "inarix03" + }, + { + "rshares": "218488504", + "voter": "ola1" + }, + { + "rshares": "11523640324", + "voter": "herpetologyguy" + }, + { + "rshares": "52614987", + "voter": "dulcio" + }, + { + "rshares": "51470533", + "voter": "eavy" + }, + { + "rshares": "51484593", + "voter": "roto" + }, + { + "rshares": "54452104", + "voter": "drac59" + }, + { + "rshares": "57119426", + "voter": "everittdmickey" + }, + { + "rshares": "1041710878", + "voter": "jang" + }, + { + "rshares": "4605288518", + "voter": "morgan.waser" + }, + { + "rshares": "50602980", + "voter": "cfisher" + }, + { + "rshares": "285981023", + "voter": "thefinanceguy" + }, + { + "rshares": "50235850", + "voter": "billkappa442" + }, + { + "rshares": "1206752302", + "voter": "anns" + }, + { + "rshares": "50938725", + "voter": "haved" + }, + { + "rshares": "50708837", + "voter": "ardly" + }, + { + "rshares": "50704078", + "voter": "yotoh" + }, + { + "rshares": "50565798", + "voter": "penthouse" + }, + { + "rshares": "1871969417", + "voter": "bapparabi" + }, + { + "rshares": "50487909", + "voter": "opticalillusions" + }, + { + "rshares": "50433760", + "voter": "morse" + }, + { + "rshares": "50372583", + "voter": "carre" + }, + { + "rshares": "50351738", + "voter": "aschwin" + }, + { + "rshares": "3527739772", + "voter": "strong-ai" + }, + { + "rshares": "71207873", + "voter": "igtes" + }, + { + "rshares": "851674848", + "voter": "dikanevroman" + }, + { + "rshares": "144899746", + "voter": "buffett" + }, + { + "rshares": "159723319", + "voter": "ctu" + }, + { + "rshares": "1319373906", + "voter": "rusteemitblog" + }, + { + "rshares": "161974443", + "voter": "zapply" + }, + { + "rshares": "505647276", + "voter": "kjsxj" + }, + { + "rshares": "158642800", + "voter": "ranger" + }, + { + "rshares": "161700361", + "voter": "shadowcash" + }, + { + "rshares": "435351417", + "voter": "witchcraftblog" + }, + { + "rshares": "158051137", + "voter": "origin" + }, + { + "rshares": "310120169", + "voter": "james1987" + }, + { + "rshares": "160845765", + "voter": "caseyneistat" + }, + { + "rshares": "161323470", + "voter": "pawel-krawczyk" + }, + { + "rshares": "201362779", + "voter": "mgibson" + }, + { + "rshares": "160326045", + "voter": "planet" + }, + { + "rshares": "152057481", + "voter": "food-creator" + }, + { + "rshares": "156411729", + "voter": "blender" + }, + { + "rshares": "156261069", + "voter": "ibm1000" + }, + { + "rshares": "156227917", + "voter": "panic" + }, + { + "rshares": "159143891", + "voter": "reef" + }, + { + "rshares": "158560941", + "voter": "steemthis" + }, + { + "rshares": "158541985", + "voter": "citigroup" + }, + { + "rshares": "158486055", + "voter": "zendesk" + }, + { + "rshares": "158270049", + "voter": "maxb02" + }, + { + "rshares": "71720421", + "voter": "dealzgal" + }, + { + "rshares": "197432359", + "voter": "blend" + }, + { + "rshares": "80379451", + "voter": "storage" + }, + { + "rshares": "148077602", + "voter": "dougkarr" + }, + { + "rshares": "64613800", + "voter": "blackmarket" + }, + { + "rshares": "70760501", + "voter": "gifts" + }, + { + "rshares": "91120780", + "voter": "expat" + }, + { + "rshares": "134906258", + "voter": "steemtrail" + }, + { + "rshares": "147050914", + "voter": "royfft" + }, + { + "rshares": "151927362", + "voter": "countofdelphi" + }, + { + "rshares": "154610548", + "voter": "rjordan" + }, + { + "rshares": "144957585", + "voter": "sawgunner13" + }, + { + "rshares": "150986382", + "voter": "mysteryshot" + }, + { + "rshares": "150834868", + "voter": "dirlei.sdias" + }, + { + "rshares": "150260046", + "voter": "tttnofear" + } + ], + "author": "calaber24p", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "

Who Should We Find Responsible For The Subprime Mortgage Lending Crisis?

\n\nI want to preface this article by saying, I\u2019m not 100% sure who we should blame for the Subprime Mortgage Lending Crisis, the lenders or the borrowers which is why I want to attempt to fairly give arguments from both sides. Even today this is a heavily debated topic and I agree with points made by both sides. So I want you to decide as the reader, who you side with, and if you want to post in the comments below. This article is meant to shed light on who we should hold responsible for the Subprime Mortgage Crisis, the lenders or the borrowers, or someone else?\n\nhttp://longislandbankruptcyblog.com/wp-content/uploads/2007/11/mortgage-bubble-bursting-by-the-sub-prime-mortgage-meltdown.jpg\n\n

The Lender\u2019s Side of The Argument

\n\nThe lender\u2019s side of the argument almost completely revolves around the idea that people need to educate themselves before they go into a bank and take on such a series contract, like a mortgage. Even in many cases where the information was fully available to the borrower, they signed the contract even though they didn\u2019t understand it. If you agree with consumer protection, the lenders should have stopped the transaction from taking place, but many believe that we should be free to make all decisions even bad ones. The truth is that these are companies, however and their only job is to look out for themselves. This lending is an especially weird occurrence because the force which usually stops this kind of behavior from taking place is that it would not be beneficial to the company, but mortgage brokers and the companies lending were making so much money that at the time it seemed like a good idea. \n\nhttps://www.biggerpockets.com/renewsblog/wp-content/uploads/2015/06/questions-lender.jpg\n\nAnother way the lenders justify their subprime lending practices was that they were getting pressure from higher up in the company to lend as much as possible because there was such a demand for the financial products on the markets. This is the old \u201cI was just following orders\u201d excuse, but there truly was heavy pressure from companies onto the brokers to loan as much as they could, or they would find someone else to do it. At the time most mortgage brokers legitimately didn\u2019t think that they were doing something bad. They didn\u2019t try to tank the system, they truly believed that the booming real estate market would be able to cover any losses if someone foreclosed on a property. We found out that this was a horribly wrong assumption eventually which lead to billions in toxic assets on the bank balance sheet worth nothing. Ultimately if you think that the consumer should have been diligent and did the required research before they took the mortgage contract, you might side with the side of the lenders\n\n

The Borrower\u2019s Side of The Argument

\n\nOn the flip side, the borrower\u2019s side of the argument claims that it is a company\u2019s duty to inform the customer and the government\u2019s duty to provide consumer protection so mortgages that were created with a high chance of failure wouldn\u2019t be possible. Borrowers also claim that many of the brokers specifically targeted low income and uneducated applicants so they could get a larger commission. In addition, the extreme leniency of the various types of mortgage products that were being offered at the time, for example not having to even show any income, should have been against the law. While not all brokers were predatory, there were many that were, which did target the low income and uneducated, but at the same time there were many borrowers who knew they couldn\u2019t afford the payments on the house and figured they would just resell it for profit. Consumer protection is a tricky subject , because at what point does it stop becoming protection and start becoming a barrier to entry. For example up until this year only Americans with an income of 250k + or 1,000,000 in assets (disregarding primary residence) were able to invest in private companies, many hedge funds and other investment vehicles, all because of consumer protection. \n\nhttps://activerain-store.s3.amazonaws.com/image_store/uploads/2/5/4/4/3/ar123584050234452.jpg\n\nMany people say that a fool and his money soon part ways and it\u2019s hard to wonder if people who signed into these mortgages would have lost money elsewhere on credit cards or payday loans. I think that the mortgage prices that were way to complex for anyone to even understand should have never been offered, but is it the government\u2019s place to protect a private entity from not offering them? Theoretically in a free market banks should not have offered the products because they were too risky and would have lost them money, but this force did not prevail. Whether or not you agree with the borrower heavily comes down to what degree you think consumer protection should play on your everyday life and how the government should police products. \n\n

Conclusion And Some Of My Thoughts

\n\nLike I said when I started the article I don\u2019t think I find either party solely responsible for the subprime mortgage crisis that occurred. I believe both parties over leveraged themselves and took risks that, in hindsight, were insane. The world market wanted more mortgage prices and people all around the world were willing to pay large amounts for them, so banks and mortgage brokers supplied the demand that was out there. Unfortunately the mortgages they supplied them with were garbage. In this regard I blame the credit rating agencies, whose actual job is to rate them properly , for not doing their job. I also believe that the specific brokers and lenders who were predatory lending were morally wrong, but I\u2019m not so sure that they constitute acting criminally. Maybe under current laws yes, but im someone who does not believe in consumer protection, mostly because I believe that people should be able to spend their money as they see fit on any product they see fit. We see 1000 scams on the internet a day, yet we don\u2019t fall for them because we know they are scams. I think trusting any entity that is making money off you is foolish. Im interested to see what other people here think and why.", + "category": "life", + "children": 31, + "created": "2016-09-14T21:48:51", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://longislandbankruptcyblog.com/wp-content/uploads/2007/11/mortgage-bubble-bursting-by-the-sub-prime-mortgage-meltdown.jpg", + "https://www.biggerpockets.com/renewsblog/wp-content/uploads/2015/06/questions-lender.jpg", + "https://activerain-store.s3.amazonaws.com/image_store/uploads/2/5/4/4/3/ar123584050234452.jpg" ], - "author": "erangvee", - "author_payout_value": "0.000 HBD", - "author_reputation": 65.33, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "I have been into J-pop music the past few weeks (besides the occasional English ones). Listening to random suggestions by Spotify introduced me to many bands and musicians that I fell for in a matter of the first few notes. \n\n
https://files.peakd.com/file/peakd-hive/erangvee/cZRvGtRt-1594118384608-01.png
\n\nToday's prompt for my drawing comes from a song by the [SEKAI NO OWARI](https://open.spotify.com/artist/7HwzlRPa9Ad0I8rK0FPzzK?si=sJptQDz0SGGt6LHJe0REWA) band, the name which literally translates to *end of the world*. The song was entitled *[Dropout](https://open.spotify.com/track/7C8zDcBTD0HtYAnolSRZm3?si=8ZK7ZbyaTjq7TsHgnQWG6g)*, with lyrics that went:\n\n

I came from Dropout Boulevard\nThrough my darkest days bettered myself\nAnd beat the odds

\n\nNice, right? You can listen to a preview of the music below, but **NOTE that the embed won't work on the hive.blog frontend**. If you're at the hive.blog frontend and want to listen to the Spotify preview, then edit the address into the peakd.com domain. :)\n\n
NOTE: This one's viewable in PeakD and may not be viewable in other frontends.\n\n## Drawing *Dropout*\n
https://files.peakd.com/file/peakd-hive/erangvee/39FZyTF7-sketch.gif
\n
https://files.peakd.com/file/peakd-hive/erangvee/7AnZyt3W-Screenshot_20200707-122217_Gallery.jpg
\n\nAfter a couple of conceptual drawings that simply revolved around my favorite genres, I decided to go back to portrait again for today. Aside from the fact that it doesn't take much time, I was severely aware of a possible learning decay (wow to me throwing in a machine learning term). This work should also serve as practice.\n\nThe portrait drawing was based off this [Pinterest](https://pin.it/53JjxTt) that unfortunately had no title or corresponding photographer that definitely merited recognition. It was a really beautiful portrait photo, and I hoped this digital painting gave her justice.\n\nMost of the time, I have the reference opened at another screen (my laptop), but since I was running something on my laptop, I've grown accustomed to splitting my screen to view both the reference and the workspace at the same time.\n\nFor the sketch, I used the *pencil* brush. It's easier to work with in the base lineart compared to other brushes available in the MediBang Paint version of the Android (not sure about the PC equivalent). I was tempted to add other details, but I was tight on time because of work.\n\nI was supposed to use the *pen* brush for the base colors, the same way I did previously during my first attempts at drawing with my phone (like [this one](https://peakd.com/hive-156509/@erangvee/digital-art-with-note-10-plus-he-knows-something)). However, I think I got pretty much used to just coloring with the watercolor brush, so that's what happened.\n\nOne of the things I wasn't quite fond of in the MediBang for Android was the blur tool. Its effects just don't sit right with me, unlike the blur tool of Adobe Photoshop. I have to work with what I have, though, so I needed to settle.\n\nYou can find progress shots in the following GIF.\n\n
https://files.peakd.com/file/peakd-hive/erangvee/GN2lwQ62-prog.gif
\n\n### Details\n* *Device:* Samsung Galaxy Note 10+\n* *Apps:* \n * [MediBang Paint](https://play.google.com/store/apps/details?id=com.medibang.android.paint.tablet) for Android\n * [Snapseed](https://play.google.com/store/apps/details?id=com.niksoftware.snapseed&hl=en)\n* *Brushes:* watercolor (at varying opacity settings); pencil (100% opacity); smudge; blur\n\n## Notes\nMy favorite part to draw here was the hair. In the end, I liked how the hair ended up looking, except the horrible smudge that couldn't deliver the effect I was looking for. D: I also enhanced the colors/saturation using Snapseed.\n\n---\n\n
https://a.deviantart.net/avatars-big/e/r/erangvee.gif?
[ko-fi](https://ko-fi.com/erangvee) | [deviantart](https://www.deviantart.com/erangvee) | [twitter](https://twitter.com/erangvee) | [instagram](https://twitter.com/erangvee) | [creary](https://creary.net/@erangvee) | [youtube](http://youtube.com/user/serachan011)
", - "category": "hive-156509", - "children": 7, - "community": "hive-156509", - "community_title": "OnChainArt", - "created": "2020-07-07T11:21:15", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://files.peakd.com/file/peakd-hive/erangvee/cZRvGtRt-1594118384608-01.png", - "https://files.peakd.com/file/peakd-hive/erangvee/39FZyTF7-sketch.gif", - "https://files.peakd.com/file/peakd-hive/erangvee/7AnZyt3W-Screenshot_20200707-122217_Gallery.jpg", - "https://files.peakd.com/file/peakd-hive/erangvee/GN2lwQ62-prog.gif", - "https://a.deviantart.net/avatars-big/e/r/erangvee.gif?" - ], - "links": [ - "https://open.spotify.com/artist/7HwzlRPa9Ad0I8rK0FPzzK?si=sJptQDz0SGGt6LHJe0REWA", - "https://open.spotify.com/track/7C8zDcBTD0HtYAnolSRZm3?si=8ZK7ZbyaTjq7TsHgnQWG6g", - "/hive-156509/@erangvee/dropout-or-drawing-with-the-note-10", - "https://pin.it/53JjxTt", - "/hive-156509/@erangvee/digital-art-with-note-10-plus-he-knows-something", - "https://play.google.com/store/apps/details?id=com.medibang.android.paint.tablet", - "https://play.google.com/store/apps/details?id=com.niksoftware.snapseed&hl=en", - "https://ko-fi.com/erangvee", - "https://www.deviantart.com/erangvee", - "https://twitter.com/erangvee" - ], - "tags": [ - "art", - "creative", - "drawing", - "philippines", - "hiveph" - ], - "users": [ - "erangvee" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 95735163059928, - "payout": 38.602, - "payout_at": "2020-07-14T11:21:15", - "pending_payout_value": "38.602 HBD", - "percent_hbd": 10000, - "permlink": "dropout-or-drawing-with-the-note-10", - "post_id": 86930915, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 154 - }, - "title": "Dropout | Drawing with the Note 10+", - "updated": "2020-07-07T11:21:15", - "url": "/hive-156509/@erangvee/dropout-or-drawing-with-the-note-10" + "tags": [ + "life", + "money", + "investing", + "banking", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 110596898261619, + "payout": 697.978, + "payout_at": "2016-09-15T22:37:56", + "pending_payout_value": "697.978 HBD", + "percent_hbd": 10000, + "permlink": "who-should-we-find-responsible-for-the-subprime-mortgage-lending-crisis", + "post_id": 952817, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 524 + }, + "title": "Who Should We Find Responsible For The Subprime Mortgage Lending Crisis?", + "updated": "2016-09-14T21:48:51", + "url": "/life/@calaber24p/who-should-we-find-responsible-for-the-subprime-mortgage-lending-crisis" }, { - "active_votes": [ - { - "rshares": "39167839574016", - "voter": "blocktrades" - }, - { - "rshares": "63391478264", - "voter": "tombstone" - }, - { - "rshares": "59095729617", - "voter": "onealfa" - }, - { - "rshares": "426717190507", - "voter": "roelandp" - }, - { - "rshares": "9128444473", - "voter": "matt-a" - }, - { - "rshares": "63250676329", - "voter": "arcange" - }, - { - "rshares": "90259374911", - "voter": "fiveboringgames" - }, - { - "rshares": "1611567162", - "voter": "raphaelle" - }, - { - "rshares": "21313804650", - "voter": "marius19" - }, - { - "rshares": "24140398087", - "voter": "steemyoda" - }, - { - "rshares": "10540114865", - "voter": "yadamaniart" - }, - { - "rshares": "8651454824", - "voter": "valth" - }, - { - "rshares": "916062874238", - "voter": "ripperone" - }, - { - "rshares": "7655181157", - "voter": "erikaflynn" - }, - { - "rshares": "1215993437", - "voter": "ambyr00" - }, - { - "rshares": "158694204315", - "voter": "detlev" - }, - { - "rshares": "4745233169", - "voter": "ma1neevent" - }, - { - "rshares": "6829793475", - "voter": "melooo182" - }, - { - "rshares": "25348986151", - "voter": "scrooger" - }, - { - "rshares": "650753847", - "voter": "activate.alpha" - }, - { - "rshares": "76167822764", - "voter": "ironshield" - }, - { - "rshares": "1515295351", - "voter": "coquiunlimited" - }, - { - "rshares": "6211428673", - "voter": "arrliinn" - }, - { - "rshares": "2199312510", - "voter": "lourdeshd6" - }, - { - "rshares": "1868635311", - "voter": "gingerninja" - }, - { - "rshares": "4859072796", - "voter": "pearica" - }, - { - "rshares": "10117051620", - "voter": "jayna" - }, - { - "rshares": "3319254826", - "voter": "guchtere" - }, - { - "rshares": "7126720685", - "voter": "d-pend" - }, - { - "rshares": "49723074086", - "voter": "ackhoo" - }, - { - "rshares": "636544414", - "voter": "nolasco" - }, - { - "rshares": "2711027097", - "voter": "dante31" - }, - { - "rshares": "19162136950", - "voter": "felt.buzz" - }, - { - "rshares": "994282919497", - "voter": "howo" - }, - { - "rshares": "3989289665783", - "voter": "ocd" - }, - { - "rshares": "963191813", - "voter": "followforupvotes" - }, - { - "rshares": "1129752005704", - "voter": "steemvote" - }, - { - "rshares": "5604106008", - "voter": "macchiata" - }, - { - "rshares": "1209636335", - "voter": "imdazu" - }, - { - "rshares": "583009981", - "voter": "onethousandwords" - }, - { - "rshares": "27367010483", - "voter": "hdmed" - }, - { - "rshares": "297225240574", - "voter": "cyclamen" - }, - { - "rshares": "1109783769", - "voter": "theleapingkoala" - }, - { - "rshares": "1022095225", - "voter": "sdibot" - }, - { - "rshares": "2005873139", - "voter": "garudi" - }, - { - "rshares": "10994103687", - "voter": "santigs" - }, - { - "rshares": "9253475625", - "voter": "make-a-whale" - }, - { - "rshares": "9098686282", - "voter": "kimzwarch" - }, - { - "rshares": "63662296206", - "voter": "niallon11" - }, - { - "rshares": "593203919", - "voter": "shawkr13" - }, - { - "rshares": "466102298", - "voter": "torachibi" - }, - { - "rshares": "3154953252", - "voter": "justinparke" - }, - { - "rshares": "2867961564570", - "voter": "therealwolf" - }, - { - "rshares": "112724343925", - "voter": "majes.tytyty" - }, - { - "rshares": "14952721004", - "voter": "espoem" - }, - { - "rshares": "142021683670", - "voter": "sharpshot" - }, - { - "rshares": "13347270856", - "voter": "jlsplatts" - }, - { - "rshares": "18347630301", - "voter": "feedyourminnows" - }, - { - "rshares": "1451242663", - "voter": "divinekids" - }, - { - "rshares": "4001630708157", - "voter": "qurator" - }, - { - "rshares": "4480563230", - "voter": "hanggggbeeee" - }, - { - "rshares": "1074324312", - "voter": "marcoriccardi" - }, - { - "rshares": "888546574", - "voter": "liverpool-fan" - }, - { - "rshares": "1137645996", - "voter": "che-shyr" - }, - { - "rshares": "155371704782", - "voter": "abbak7" - }, - { - "rshares": "208465759598", - "voter": "eonwarped" - }, - { - "rshares": "2898416711777", - "voter": "postpromoter" - }, - { - "rshares": "33756408583", - "voter": "sankysanket18" - }, - { - "rshares": "4846041929", - "voter": "kph" - }, - { - "rshares": "587278817522", - "voter": "smartsteem" - }, - { - "rshares": "7719126521", - "voter": "chekohler" - }, - { - "rshares": "2817061108", - "voter": "skycae" - }, - { - "rshares": "3613224340", - "voter": "itchyfeetdonica" - }, - { - "rshares": "55469195839", - "voter": "qustodian" - }, - { - "rshares": "1490119083", - "voter": "tomatom" - }, - { - "rshares": "3126024096", - "voter": "elbrava" - }, - { - "rshares": "6404769003", - "voter": "gabrielatravels" - }, - { - "rshares": "6166187678", - "voter": "carn" - }, - { - "rshares": "1188694221", - "voter": "leticiapereira" - }, - { - "rshares": "2566947526", - "voter": "koreaminer" - }, - { - "rshares": "906201360", - "voter": "chrismadcboy2016" - }, - { - "rshares": "770297063", - "voter": "wisewoof" - }, - { - "rshares": "1462375019", - "voter": "soufiani" - }, - { - "rshares": "643746884", - "voter": "gribouille" - }, - { - "rshares": "600130581", - "voter": "pandasquad" - }, - { - "rshares": "4614879808", - "voter": "upfundme" - }, - { - "rshares": "41646276227", - "voter": "katysavage" - }, - { - "rshares": "117230032386", - "voter": "ocd-witness" - }, - { - "rshares": "780957710", - "voter": "ericburgoyne" - }, - { - "rshares": "23001124619", - "voter": "bigtom13" - }, - { - "rshares": "3494461730", - "voter": "nwjordan" - }, - { - "rshares": "1121281400", - "voter": "verhp11" - }, - { - "rshares": "5527424011", - "voter": "qtip" - }, - { - "rshares": "264239602043", - "voter": "takowi" - }, - { - "rshares": "957572267", - "voter": "russellstockley" - }, - { - "rshares": "43276979175", - "voter": "miroslavrc" - }, - { - "rshares": "1717848218", - "voter": "foxyspirit" - }, - { - "rshares": "16397909861", - "voter": "qberry" - }, - { - "rshares": "150639888411", - "voter": "fotogruppemunich" - }, - { - "rshares": "624108296", - "voter": "qurator-tier-0" - }, - { - "rshares": "8055813087978", - "voter": "julialee66" - }, - { - "rshares": "62736521776", - "voter": "saboin" - }, - { - "rshares": "4891396531", - "voter": "realblockchain" - }, - { - "rshares": "46819644403", - "voter": "indigoocean" - }, - { - "rshares": "4683476503", - "voter": "celinavisaez" - }, - { - "rshares": "549909450", - "voter": "indayclara" - }, - { - "rshares": "39753487414", - "voter": "hatoto" - }, - { - "rshares": "3470158725", - "voter": "crystalhuman" - }, - { - "rshares": "3063245893", - "voter": "ntowl" - }, - { - "rshares": "181115406819", - "voter": "nateaguila" - }, - { - "rshares": "57699234202", - "voter": "bdmillergallery" - }, - { - "rshares": "1288852445", - "voter": "leonnolan24" - }, - { - "rshares": "3095735738", - "voter": "mariajruizb" - }, - { - "rshares": "1415566131", - "voter": "yougotavote" - }, - { - "rshares": "3676613370", - "voter": "longer" - }, - { - "rshares": "7990405989", - "voter": "blewitt" - }, - { - "rshares": "31130877462779", - "voter": "ocdb" - }, - { - "rshares": "1049423742", - "voter": "jesusmedit" - }, - { - "rshares": "5962681292", - "voter": "dronegraphica" - }, - { - "rshares": "1673752985", - "voter": "mrultracheese" - }, - { - "rshares": "5790292586", - "voter": "minimining" - }, - { - "rshares": "1071231498", - "voter": "mobi72" - }, - { - "rshares": "881135605", - "voter": "emperorhassy" - }, - { - "rshares": "31250555", - "voter": "laissez-faire" - }, - { - "rshares": "812644066", - "voter": "jackofcrows" - }, - { - "rshares": "1026134917", - "voter": "pushpedal" - }, - { - "rshares": "220265060570", - "voter": "johannpiber" - }, - { - "rshares": "6715936849", - "voter": "danieli98" - }, - { - "rshares": "1008036369", - "voter": "jdugarte" - }, - { - "rshares": "730419331", - "voter": "azli13" - }, - { - "rshares": "550438243", - "voter": "pandapuzzles" - }, - { - "rshares": "5912603982", - "voter": "edriseur" - }, - { - "rshares": "3163833422", - "voter": "robmojo" - }, - { - "rshares": "8663231395", - "voter": "jacuzzi" - }, - { - "rshares": "593942227", - "voter": "maarkhor" - }, - { - "rshares": "15562195936", - "voter": "delabo" - }, - { - "rshares": "71352154", - "voter": "limka" - }, - { - "rshares": "55618893543", - "voter": "kokadi" - }, - { - "rshares": "967809538", - "voter": "artmentor" - }, - { - "rshares": "2135380963", - "voter": "abbenay" - }, - { - "rshares": "6607512480", - "voter": "cryptofiloz" - }, - { - "rshares": "2308089041", - "voter": "ambifokus" - }, - { - "rshares": "3204614092", - "voter": "squareonefarms" - }, - { - "rshares": "20365110179", - "voter": "maryincryptoland" - }, - { - "rshares": "19571813899", - "voter": "epicdice" - }, - { - "rshares": "3195998114", - "voter": "yiobri" - }, - { - "rshares": "1867112943", - "voter": "hjlee119" - }, - { - "rshares": "532342489", - "voter": "tinyhousecryptos" - }, - { - "rshares": "3958509573", - "voter": "ocd-accountant" - }, - { - "rshares": "2391295265", - "voter": "leighscotford" - }, - { - "rshares": "591437659", - "voter": "maddogmike" - }, - { - "rshares": "15949598692", - "voter": "ufm.pay" - }, - { - "rshares": "3357691059", - "voter": "hongdangmu" - }, - { - "rshares": "4605742092", - "voter": "actisam" - }, - { - "rshares": "556421180", - "voter": "steemlondon" - }, - { - "rshares": "567540228", - "voter": "splatts" - }, - { - "rshares": "4583582953", - "voter": "dollarbills" - }, - { - "rshares": "574998046", - "voter": "rufoodingkidding" - }, - { - "rshares": "1991786967", - "voter": "bcm.dblog" - }, - { - "rshares": "10206281453", - "voter": "goldstreet" - }, - { - "rshares": "966953657", - "voter": "sneakyfreak" - }, - { - "rshares": "960098467", - "voter": "sneakysneak" - }, - { - "rshares": "933123428", - "voter": "creepycrawly" - }, - { - "rshares": "931203014", - "voter": "creepycrawler" - }, - { - "rshares": "6586371599", - "voter": "dpend.active" - }, - { - "rshares": "930911867", - "voter": "crawlingterror" - }, - { - "rshares": "930569295", - "voter": "creepypastaz" - }, - { - "rshares": "929468054", - "voter": "poodlenoodle" - }, - { - "rshares": "4908496360", - "voter": "minibets" - }, - { - "rshares": "927537168", - "voter": "minib1" - }, - { - "rshares": "2146656628", - "voter": "fengchao" - }, - { - "rshares": "1739657327", - "voter": "green-finger" - }, - { - "rshares": "190610062072", - "voter": "nulledgh0st" - }, - { - "rshares": "530292689937", - "voter": "softworld" - }, - { - "rshares": "28080365", - "voter": "tips.tracker" - }, - { - "rshares": "20223690906", - "voter": "the100" - }, - { - "rshares": "539813694", - "voter": "archon-mining" - }, - { - "rshares": "910625514", - "voter": "iameden" - }, - { - "rshares": "3353031502", - "voter": "rihc94" - }, - { - "rshares": "51653426034", - "voter": "hivehustlers" - }, - { - "rshares": "57795817622", - "voter": "buzzzz" - }, - { - "rshares": "8724111094", - "voter": "chittysity" - }, - { - "rshares": "0", - "voter": "nuforhad" - } + "active_votes": [ + { + "rshares": "504195513450", + "voter": "barrie" + }, + { + "rshares": "31620913718202", + "voter": "smooth" + }, + { + "rshares": "1911892676725", + "voter": "badassmother" + }, + { + "rshares": "2052957762572", + "voter": "hr1" + }, + { + "rshares": "1304415071462", + "voter": "rossco99" + }, + { + "rshares": "22865183550", + "voter": "jaewoocho" + }, + { + "rshares": "226246467529", + "voter": "steem-id" + }, + { + "rshares": "1576158798591", + "voter": "joseph" + }, + { + "rshares": "452786214573", + "voter": "recursive3" + }, + { + "rshares": "667448946492", + "voter": "masteryoda" + }, + { + "rshares": "3120322518686", + "voter": "recursive" + }, + { + "rshares": "1246183601", + "voter": "mineralwasser" + }, + { + "rshares": "681020986865", + "voter": "boombastic" + }, + { + "rshares": "91328598326", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "1670010256", + "voter": "bingo-1" + }, + { + "rshares": "5939141625779", + "voter": "smooth.witness" + }, + { + "rshares": "9167324238", + "voter": "idol" + }, + { + "rshares": "5147451513", + "voter": "sakr" + }, + { + "rshares": "1577927842", + "voter": "jocelyn" + }, + { + "rshares": "83529892028", + "voter": "acidsun" + }, + { + "rshares": "15004772648", + "voter": "gregory-f" + }, + { + "rshares": "9412699804", + "voter": "gregory60" + }, + { + "rshares": "1221939836170", + "voter": "gavvet" + }, + { + "rshares": "74914418556", + "voter": "eeks" + }, + { + "rshares": "3023823526", + "voter": "fkn" + }, + { + "rshares": "3974627163", + "voter": "elishagh1" + }, + { + "rshares": "584166740800", + "voter": "nanzo-scoop" + }, + { + "rshares": "450784780", + "voter": "jeffanthonyfds" + }, + { + "rshares": "177394802953", + "voter": "mummyimperfect" + }, + { + "rshares": "313689446", + "voter": "coar" + }, + { + "rshares": "106630632039", + "voter": "asch" + }, + { + "rshares": "1061217841", + "voter": "murh" + }, + { + "rshares": "6230682263", + "voter": "cryptofunk" + }, + { + "rshares": "2057276344", + "voter": "error" + }, + { + "rshares": "985521934082", + "voter": "cyber" + }, + { + "rshares": "61711858916", + "voter": "theshell" + }, + { + "rshares": "49574865624", + "voter": "ak2020" + }, + { + "rshares": "769703167086", + "voter": "satoshifund" + }, + { + "rshares": "409231996622", + "voter": "taoteh1221" + }, + { + "rshares": "410502622", + "voter": "applecrisp" + }, + { + "rshares": "33781859925", + "voter": "ratel" + }, + { + "rshares": "121380113922", + "voter": "geoffrey" + }, + { + "rshares": "26709210609", + "voter": "kimziv" + }, + { + "rshares": "74282084191", + "voter": "emily-cook" + }, + { + "rshares": "2187587354", + "voter": "superfreek" + }, + { + "rshares": "19974734600", + "voter": "thebatchman" + }, + { + "rshares": "60285274969", + "voter": "good-karma" + }, + { + "rshares": "1609452901", + "voter": "gidlark" + }, + { + "rshares": "73849034695", + "voter": "rubybian" + }, + { + "rshares": "365381071", + "voter": "konstantin" + }, + { + "rshares": "4533066552", + "voter": "stranger27" + }, + { + "rshares": "2597453094", + "voter": "romel" + }, + { + "rshares": "14760800618", + "voter": "furion" + }, + { + "rshares": "70822893", + "voter": "barbara2" + }, + { + "rshares": "78718732", + "voter": "ch0c0latechip" + }, + { + "rshares": "72854943", + "voter": "doge4lyf" + }, + { + "rshares": "248653120", + "voter": "ardina" + }, + { + "rshares": "14487949878", + "voter": "aaseb" + }, + { + "rshares": "4209499465", + "voter": "karen13" + }, + { + "rshares": "10646413479", + "voter": "deviedev" + }, + { + "rshares": "258981906731", + "voter": "nabilov" + }, + { + "rshares": "35782810726", + "voter": "creemej" + }, + { + "rshares": "3800725646", + "voter": "maximkichev" + }, + { + "rshares": "167301783484", + "voter": "blueorgy" + }, + { + "rshares": "582626783", + "voter": "poseidon" + }, + { + "rshares": "2083366228", + "voter": "iamwne" + }, + { + "rshares": "7946556816", + "voter": "smolalit" + }, + { + "rshares": "347973296817", + "voter": "calaber24p" + }, + { + "rshares": "3506024506", + "voter": "simon.braki.love" + }, + { + "rshares": "268131351853", + "voter": "liberosist" + }, + { + "rshares": "32542201152", + "voter": "deanliu" + }, + { + "rshares": "40247477787", + "voter": "celsius100" + }, + { + "rshares": "204615752038", + "voter": "jl777" + }, + { + "rshares": "2452241013", + "voter": "positive" + }, + { + "rshares": "35821871446", + "voter": "paquito" + }, + { + "rshares": "101547003699", + "voter": "crazymumzysa" + }, + { + "rshares": "4827846086", + "voter": "gustavopasquini" + }, + { + "rshares": "18844269406", + "voter": "carlidos" + }, + { + "rshares": "17267164725", + "voter": "proto" + }, + { + "rshares": "4513770870", + "voter": "sisterholics" + }, + { + "rshares": "1444237397", + "voter": "alex.chien" + }, + { + "rshares": "8964609699", + "voter": "royalmacro" + }, + { + "rshares": "82565168", + "voter": "fnait" + }, + { + "rshares": "73351025", + "voter": "keepcalmand" + }, + { + "rshares": "120956823", + "voter": "ap2002" + }, + { + "rshares": "8734053750", + "voter": "taker" + }, + { + "rshares": "159615103593", + "voter": "laonie" + }, + { + "rshares": "157504637007", + "voter": "twinner" + }, + { + "rshares": "24561329465", + "voter": "laoyao" + }, + { + "rshares": "5329392113", + "voter": "myfirst" + }, + { + "rshares": "32400440159", + "voter": "somebody" + }, + { + "rshares": "16605279252", + "voter": "sunshine" + }, + { + "rshares": "1211439463", + "voter": "flysaga" + }, + { + "rshares": "2084689825", + "voter": "gmurph" + }, + { + "rshares": "7157539840", + "voter": "midnightoil" + }, + { + "rshares": "2327843962", + "voter": "kalimor" + }, + { + "rshares": "17901440239", + "voter": "xiaohui" + }, + { + "rshares": "172970676828", + "voter": "terrycraft" + }, + { + "rshares": "369703928", + "voter": "riosparada" + }, + { + "rshares": "808461612", + "voter": "elfkitchen" + }, + { + "rshares": "103387869456", + "voter": "joele" + }, + { + "rshares": "5855390607", + "voter": "oflyhigh" + }, + { + "rshares": "559689131", + "voter": "xiaokongcom" + }, + { + "rshares": "2114128942", + "voter": "future24" + }, + { + "rshares": "1128227680", + "voter": "xianjun" + }, + { + "rshares": "7546646500", + "voter": "lgm-1" + }, + { + "rshares": "2249482011", + "voter": "njall" + }, + { + "rshares": "73887203", + "voter": "microluck" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "6417571438", + "voter": "userlogin" + }, + { + "rshares": "59219258", + "voter": "photo00" + }, + { + "rshares": "604294820", + "voter": "tagira" + }, + { + "rshares": "2077233526", + "voter": "chinadaily" + }, + { + "rshares": "110661420", + "voter": "pollina" + }, + { + "rshares": "9071955992", + "voter": "johnnyyash" + }, + { + "rshares": "3352601337", + "voter": "macartem" + }, + { + "rshares": "9827647000", + "voter": "gvargas123" + }, + { + "rshares": "3707793427", + "voter": "movievertigo" + }, + { + "rshares": "23716271959", + "voter": "andrewawerdna" + }, + { + "rshares": "9139485521", + "voter": "craigwilliamz" + }, + { + "rshares": "56654664918", + "voter": "mandibil" + }, + { + "rshares": "60273361", + "voter": "bonapetit" + }, + { + "rshares": "74550672", + "voter": "steembriefing" + }, + { + "rshares": "55750195", + "voter": "riv" + }, + { + "rshares": "5401359628", + "voter": "nulliusinverba" + }, + { + "rshares": "2196809758", + "voter": "runridefly" + }, + { + "rshares": "33516506660", + "voter": "krnel" + }, + { + "rshares": "5053551216", + "voter": "richardcrill" + }, + { + "rshares": "11070141971", + "voter": "sponge-bob" + }, + { + "rshares": "53070013", + "voter": "apparat" + }, + { + "rshares": "12276570645", + "voter": "doitvoluntarily" + }, + { + "rshares": "201688406600", + "voter": "asksisk" + }, + { + "rshares": "330365849", + "voter": "panther" + }, + { + "rshares": "11067573914", + "voter": "brains" + }, + { + "rshares": "1396726660", + "voter": "steemafon" + }, + { + "rshares": "3310976095", + "voter": "anton333" + }, + { + "rshares": "339274981", + "voter": "anomaly" + }, + { + "rshares": "123155378", + "voter": "ola1" + }, + { + "rshares": "70282046", + "voter": "mari5555na" + }, + { + "rshares": "6087022243", + "voter": "ekaterina4ka" + }, + { + "rshares": "291933324", + "voter": "thefinanceguy" + }, + { + "rshares": "50223099", + "voter": "battalar" + }, + { + "rshares": "50873654", + "voter": "palladium" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "50565798", + "voter": "penthouse" + }, + { + "rshares": "2216805889", + "voter": "bapparabi" + }, + { + "rshares": "50532230", + "voter": "friends" + }, + { + "rshares": "469221474", + "voter": "iontom" + }, + { + "rshares": "50482289", + "voter": "connection" + }, + { + "rshares": "444435987", + "voter": "witchcraftblog" + }, + { + "rshares": "157816798", + "voter": "gravity" + }, + { + "rshares": "160957729", + "voter": "realtime" + }, + { + "rshares": "160835930", + "voter": "skrillex" + }, + { + "rshares": "148889617", + "voter": "food-creator" + }, + { + "rshares": "156814579", + "voter": "haribo" + }, + { + "rshares": "159425365", + "voter": "tipsandtricks" + }, + { + "rshares": "156054487", + "voter": "fallout" + }, + { + "rshares": "159143891", + "voter": "reef" + }, + { + "rshares": "155528114", + "voter": "icesteem" + }, + { + "rshares": "158632601", + "voter": "cream" + }, + { + "rshares": "155452864", + "voter": "jyriygo" + } + ], + "author": "terrycraft", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Vegetarianism is philosophy which has deep religious and ethical roots, the essence is the refuse to eat meat of living beings.\nPythagorean were vegetarians. Yogis of ancient India were vegetarians. The followers of Buddhism are prescribed to be vegetarians. Early Christianity forbade killing for food.\nI became a vegetarian at the age of 15. I remember clear this comic occasion: during another lush family dinner my dad putted the shin of the roasted goose on my plate. When he was putting this piece of once living bird, I claimed it for the first time: \u201cNo, dad thanks. I don\u2019t eat living creatures anymore. I\u2019m a vegetarian\u201d.\nhttp://petroart.ru/art/b/bronikov/img/3.jpg\n>\u0412\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0441\u0442\u0432\u043e - \u044d\u0442\u043e \u0444\u0438\u043b\u043e\u0441\u043e\u0444\u0438\u044f, \u0438\u043c\u0435\u044e\u0449\u0430\u044f \u043e\u0447\u0435\u043d\u044c \u0434\u0440\u0435\u0432\u043d\u0438\u0435 \u0440\u0435\u043b\u0438\u0433\u0438\u043e\u0437\u043d\u044b\u0435 \u0438 \u044d\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043a\u043e\u0440\u043d\u0438, \u0441\u0443\u0442\u044c \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0441\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043e\u0442\u043a\u0430\u0437 \u043e\u0442 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u043b\u0435\u043d\u0438\u044f \u0432 \u043f\u0438\u0449\u0443 \u043c\u044f\u0441\u0430 \u0436\u0438\u0432\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432. \n\u041f\u0438\u0444\u0430\u0433\u043e\u0440\u0435\u0439\u0446\u044b \u0431\u044b\u043b\u0438 \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0446\u0430\u043c\u0438. \u0419\u043e\u0433\u0438 \u0434\u0440\u0435\u0432\u043d\u0435\u0439 \u0418\u043d\u0434\u0438\u0438 \u0431\u044b\u043b\u0438 \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0446\u0430\u043c\u0438. \u0411\u0443\u0434\u0434\u0438\u0437\u043c \u043f\u0440\u0435\u0434\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u0442 \u0441\u0432\u043e\u0438\u043c \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0441\u0442\u0432\u043e. \u0420\u0430\u043d\u043d\u0435\u0435 \u0445\u0440\u0438\u0441\u0442\u0438\u0430\u043d\u0441\u0442\u0432\u043e \u0437\u0430\u043f\u0440\u0435\u0449\u0430\u043b\u043e \u0443\u0431\u0438\u0439\u0441\u0442\u0432\u043e \u0434\u043b\u044f \u0447\u0440\u0435\u0432\u0430.\n\u042f \u0441\u0442\u0430\u043b\u0430 \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u043e\u0439 \u0432 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0435 15 \u043b\u0435\u0442. \u041f\u0440\u0435\u043a\u0440\u0430\u0441\u043d\u043e \u043f\u043e\u043c\u043d\u044e \u044d\u0442\u043e\u0442 \u043a\u043e\u043c\u0438\u0447\u043d\u044b\u0439 \u0441\u043b\u0443\u0447\u0430\u0439: \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0433\u043e \u043f\u044b\u0448\u043d\u043e\u0433\u043e \u0441\u0435\u043c\u0435\u0439\u043d\u043e\u0433\u043e \u0443\u0436\u0438\u043d\u0430 \u043f\u0430\u043f\u0430 \u0432\u044b\u0437\u0432\u0430\u043b\u0441\u044f \u043f\u043e\u043b\u043e\u0436\u0438\u0442\u044c \u043c\u043d\u0435 \u0432 \u0442\u0430\u0440\u0435\u043b\u043a\u0443 \u0433\u043e\u043b\u0435\u043d\u044c \u0437\u0430\u043f\u0435\u0447\u0451\u043d\u043d\u043e\u0433\u043e \u0432 \u0434\u0443\u0445\u043e\u0432\u043a\u0435 \u0433\u0443\u0441\u044f. \u0412 \u0442\u043e \u0432\u0440\u0435\u043c\u044f \u043a\u0430\u043a \u043e\u043d \u0443\u0436\u0435 \u0432\u0437\u0432\u0430\u043b\u0438\u0432\u0430\u043b \u0432 \u043c\u043e\u044e \u0442\u0430\u0440\u0435\u043b\u043a\u0443 \u043a\u0443\u0441\u043e\u043a \u043d\u0435\u043a\u043e\u0433\u0434\u0430 \u0436\u0438\u0432\u043e\u0439 \u043f\u0442\u0438\u0446\u044b, \u044f \u0432\u043f\u0435\u0440\u0432\u044b\u0435 \u0437\u0430\u044f\u0432\u0438\u043b\u0430 \u0432\u043e \u0432\u0441\u0435\u0443\u0441\u043b\u044b\u0448\u0430\u043d\u0438\u0435:\"\u041d\u0435\u0442, \u043f\u0430\u043f\u0430, \u043d\u0435 \u043d\u0443\u0436\u043d\u043e. \u042f \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0435\u043c \u0436\u0438\u0432\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432. \u042f \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u0430.\"\n----\nI was a teenager at that time, my parents didn\u2019t treat it seriously, considering it as a teenage whim, didn\u2019t understand me, and for sure, didn\u2019t support me. Though they didn\u2019t object it, thinking that it would pass in a few months. But it wasn\u2019t a whim; it was my first serious and conscious decision in my life. They stopped ostracizing me only in a year after, during that year I experienced, at the example of a family as a social group, what it\u2019s like to have your personal opinion when the majority is against you!\nWhat did cause my decision to become a vegetarian?\nI can\u2019t remember the particular event, which marked the switch of my mind to conscious nutrition without harm to living beings. It seemed that I did it easily because I\u2019d been moving to it and at the certain moment I was morally ready to do the step. For example I remember when I was just a kid, at the age of 5 or 6, I was playing in our garden, thinking: \u201cWhy should I kill to keep on living?\u201d I didn\u2019t ask anybody about it, because I felt that I wouldn\u2019t get the proper answer from adults. This question gave me no rest; I often tried to solve this dilemma reasoning from how my childish heart perceived the world, which opposed all violence and evil. Understanding that this faceless, usually tasty grilled chicken used to be a living being, which had been born, had been a little chick, it was eating and enjoying life and then it was beheaded killed to make me think that I like eating fried chicken legs; it led me to the ideological confusion. I loved every animal, considered them as friends; on the one hand I saw people keeping pets and treating them as family members. On the other hand people killed an animal to have something tasty on their dinner table. And so did I, I was sitting and eating that grilled chicken.\n\nhttp://www.damex.ru/images/cache/660x495/crop/images%7Ccms-image-000013620.jpg\n\n>\u0422\u043e\u0433\u0434\u0430 \u044f \u0431\u044b\u043b\u0430 \u043f\u043e\u0434\u0440\u043e\u0441\u0442\u043a\u043e\u043c, \u0438 \u043c\u043e\u0438 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u0438 \u043d\u0435 \u043e\u0442\u043d\u0435\u0441\u043b\u0438\u0441\u044c \u043a\u043e \u043c\u043d\u0435 \u0441\u0435\u0440\u044c\u0451\u0437\u043d\u043e, \u043f\u043e\u0441\u0447\u0438\u0442\u0430\u0432 \u044d\u0442\u043e \u043f\u043e\u0434\u0440\u043e\u0441\u0442\u043a\u043e\u0432\u043e\u0439 \u043f\u0440\u0438\u0447\u0443\u0434\u043e\u0439, \u043d\u0435 \u043f\u043e\u043d\u044f\u043b\u0438 \u043c\u0435\u043d\u044f \u0438, \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e, \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0430\u043b\u0438. \u041d\u043e \u043d\u0435 \u0441\u0442\u0430\u043b\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0432\u043e\u0437\u0440\u0430\u0436\u0430\u0442\u044c, \u0434\u0443\u043c\u0430\u044f, \u0447\u0442\u043e \u0447\u0435\u0440\u0435\u0437 \u043f\u0430\u0440\u0443-\u0442\u0440\u043e\u0439\u043a\u0443 \u043c\u0435\u0441\u044f\u0446\u0435\u0432 \u044d\u0442\u043e \u043f\u0440\u043e\u0439\u0434\u0451\u0442. \u041d\u043e \u044d\u0442\u043e \u043d\u0435 \u0431\u044b\u043b\u043e \u043f\u0440\u0438\u0447\u0443\u0434\u043e\u0439, \u044d\u0442\u043e \u0431\u044b\u043b\u043e \u043f\u0435\u0440\u0432\u044b\u043c \u0441\u0435\u0440\u044c\u0451\u0437\u043d\u044b\u043c \u0438 \u043e\u0441\u043e\u0437\u043d\u0430\u043d\u043d\u044b\u043c \u0440\u0435\u0448\u0435\u043d\u0438\u0435\u043c \u0432 \u043c\u043e\u0435\u0439 \u0436\u0438\u0437\u043d\u0438. \u0422\u043e\u043b\u044c\u043a\u043e \u0441\u043f\u0443\u0441\u0442\u044f \u0433\u043e\u0434 \u043e\u043d\u0438 \u043f\u0435\u0440\u0435\u0441\u0442\u0430\u043b\u0438 \u043f\u043e\u0434\u0432\u0435\u0440\u0433\u0430\u0442\u044c \u043c\u0435\u043d\u044f \u0441\u0435\u043c\u0435\u0439\u043d\u043e\u043c\u0443 \u043e\u0441\u0442\u0440\u0430\u043a\u0438\u0437\u043c\u0443, \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u044f \u0445\u043e\u0440\u043e\u0448\u043e \u043f\u0440\u043e\u0447\u0443\u0432\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0430 \u043d\u0430 \u043f\u0440\u0438\u043c\u0435\u0440\u0435 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \"\u0441\u0435\u043c\u044c\u044f\", \u0447\u0442\u043e \u0442\u0430\u043a\u043e\u0435 \u0438\u043c\u0435\u0442\u044c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u043c\u043d\u0435\u043d\u0438\u0435, \u043a\u043e\u0433\u0434\u0430 \u0431\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u043e \u043f\u0440\u043e\u0442\u0438\u0432 \u0442\u0435\u0431\u044f!\n\u0427\u0435\u043c \u0431\u044b\u043b\u043e \u0432\u044b\u0437\u0432\u0430\u043d\u043e \u043c\u043e\u0451 \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u0442\u044c \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u043e\u0439?\n\u042f \u043d\u0435 \u043c\u043e\u0433\u0443 \u0432\u0441\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e\u0433\u043e \u0441\u043e\u0431\u044b\u0442\u0438\u044f, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0431\u044b \u043e\u0437\u043d\u0430\u043c\u0435\u043d\u043e\u0432\u0430\u043b\u043e \u0440\u0435\u0437\u043a\u0438\u0439 \u0441\u0434\u0432\u0438\u0433 \u043c\u043e\u0435\u0433\u043e \u0441\u043e\u0437\u043d\u0430\u043d\u0438\u044f \u0438 \u043f\u0435\u0440\u0435\u0445\u043e\u0434 \u043d\u0430 \u043e\u0441\u043e\u0437\u043d\u0430\u043d\u043d\u043e\u0435 \u043f\u0438\u0442\u0430\u043d\u0438\u0435 \u0431\u0435\u0437 \u0432\u0440\u0435\u0434\u0430 \u0434\u043b\u044f \u0436\u0438\u0432\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432. \u041c\u043d\u0435 \u0434\u0430\u0436\u0435 \u043a\u0430\u0436\u0435\u0442\u0441\u044f, \u0447\u0442\u043e \u044d\u0442\u043e \u043f\u0440\u043e\u0448\u043b\u043e \u0442\u0430\u043a \u043b\u0435\u0433\u043a\u043e \u0438 \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0438\u043c\u0435\u043d\u043d\u043e \u043f\u043e\u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u044f \u0443\u0436\u0435 \u0434\u0430\u0432\u043d\u043e \u0448\u043b\u0430 \u043a \u044d\u0442\u043e\u043c\u0443 \u0438 \u0432 \u043a\u0430\u043a\u043e\u0439-\u0442\u043e \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u0440\u043e\u0441\u0442\u043e \u043c\u043e\u0440\u0430\u043b\u044c\u043d\u043e \u0441\u043e\u0437\u0440\u0435\u043b\u0430 \u0434\u043b\u044f \u0442\u0430\u043a\u043e\u0433\u043e \u0448\u0430\u0433\u0430. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043f\u043e\u043c\u043d\u044e, \u043a\u0430\u043a \u0435\u0449\u0451 \u0431\u0443\u0434\u0443\u0447\u0438 \u0441\u043e\u0432\u0441\u0435\u043c \u0440\u0435\u0431\u0451\u043d\u043a\u043e\u043c, \u043b\u0435\u0442 \u044d\u0442\u0430\u043a \u0432 \u043f\u044f\u0442\u044c-\u0448\u0435\u0441\u0442\u044c, \u044f \u0438\u0433\u0440\u0430\u043b\u0430 \u0432 \u043d\u0430\u0448\u0435\u043c \u043e\u0433\u043e\u0440\u043e\u0434\u0435 \u0438 \u0434\u0443\u043c\u0430\u043b\u0430:\"\u0410 \u043f\u043e\u0447\u0435\u043c\u0443, \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0436\u0438\u0442\u044c, \u044f \u0434\u043e\u043b\u0436\u043d\u0430 \u0443\u0431\u0438\u0432\u0430\u0442\u044c?\" \u042f \u043d\u0438\u043a\u043e\u0433\u043e \u043d\u0435 \u0441\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u043b\u0430 \u043e\u0431 \u044d\u0442\u043e\u043c, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e \u044f\u0441\u043d\u043e \u0447\u0443\u0432\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0430, \u0447\u0442\u043e \u043d\u0438\u043a\u0442\u043e \u0438\u0437 \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445 \u043d\u0435 \u0432 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0438 \u043e\u0442\u0432\u0435\u0442\u0438\u0442\u044c \u043c\u043d\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e. \u042d\u0442\u043e\u0442 \u0432\u043e\u043f\u0440\u043e\u0441 \u043d\u0435 \u0434\u0430\u0432\u0430\u043b \u043c\u043d\u0435 \u043f\u043e\u043a\u043e\u044f, \u044f \u0447\u0430\u0441\u0442\u043e \u043f\u044b\u0442\u0430\u043b\u0430\u0441\u044c \u0440\u0435\u0448\u0438\u0442\u044c \u044d\u0442\u0443 \u0434\u0438\u043b\u0435\u043c\u043c\u0443, \u0438\u0441\u0445\u043e\u0434\u044f \u0438\u0437 \u0432\u043e\u0441\u043f\u0440\u0438\u044f\u0442\u0438\u044f \u043c\u0438\u0440\u0430 \u0441\u0435\u0440\u0434\u0446\u0435\u043c \u0440\u0435\u0431\u0451\u043d\u043a\u0430, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043f\u0440\u043e\u0442\u0438\u0432\u0438\u0442\u0441\u044f \u0432\u0441\u044f\u043a\u043e\u043c\u0443 \u043d\u0430\u0441\u0438\u043b\u0438\u044e \u0438 \u0437\u043b\u0443 \u043f\u043e \u0441\u0430\u043c\u043e\u0439 \u0441\u0432\u043e\u0435\u0439 \u043f\u0440\u0438\u0440\u043e\u0434\u0435. \u041f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0435, \u0447\u0442\u043e \u044d\u0442\u0430 \u0431\u0435\u0437\u043b\u0438\u043a\u0430\u044f, \u043f\u0440\u0438\u0432\u044b\u0447\u043d\u043e \u0432\u043a\u0443\u0441\u043d\u0430\u044f \"\u043a\u0443\u0440\u0438\u0446\u0430-\u0433\u0440\u0438\u043b\u044c\" \u0431\u044b\u043b\u0430 \u0436\u0438\u0432\u044b\u043c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043e\u043c, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043a\u043e\u0433\u0434\u0430-\u0442\u043e \u0431\u044b\u043b\u043e \u0440\u043e\u0436\u0434\u0435\u043d\u043e, \u0440\u043e\u0441\u043b\u043e \u043c\u0430\u043b\u0435\u043d\u044c\u043a\u0438\u043c \u0446\u044b\u043f\u043b\u0451\u043d\u043a\u043e\u043c, \u043a\u0443\u0448\u0430\u043b\u043e \u0438 \u043f\u043e-\u0441\u0432\u043e\u0435\u043c\u0443 \u0440\u0430\u0434\u043e\u0432\u0430\u043b\u043e\u0441\u044c \u0436\u0438\u0437\u043d\u0438, \u0430 \u0442\u0435\u043f\u0435\u0440\u044c \u043e\u0431\u0435\u0437\u0433\u043b\u0430\u0432\u043b\u0435\u043d\u043e, \u0443\u0431\u0438\u0442\u043e, \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u044f \u0434\u0443\u043c\u0430\u043b\u0430, \u043a\u0430\u043a \u044f \u043b\u044e\u0431\u043b\u044e \u043a\u0443\u0448\u0430\u0442\u044c \u0436\u0430\u0440\u0435\u043d\u044b\u0435 \u043d\u043e\u0436\u043a\u0438 \u044d\u0442\u043e\u0439 \u043a\u0443\u0440\u043e\u0447\u043a\u0438, \u043f\u0440\u0438\u0432\u043e\u0434\u0438\u043b\u043e \u043c\u0435\u043d\u044f \u0432 \u0438\u0434\u0435\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0437\u0430\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e. \u042f \u043e\u0447\u0435\u043d\u044c \u043b\u044e\u0431\u0438\u043b\u0430 \u0432\u0441\u0435\u0445 \u0436\u0438\u0432\u043e\u0442\u043d\u044b\u0445, \u0441\u0447\u0438\u0442\u0430\u043b\u0430 \u0438\u0445 \u0441\u0432\u043e\u0438\u043c\u0438 \u0434\u0440\u0443\u0437\u044c\u044f\u043c\u0438, \u0432\u0438\u0434\u0435\u043b\u0430, \u043a\u0430\u043a \u043b\u044e\u0434\u0438 \u0437\u0430\u0432\u043e\u0434\u044f\u0442 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0434\u043e\u043c\u0430\u0448\u043d\u0438\u0445 \u043b\u044e\u0431\u0438\u043c\u0446\u0435\u0432 \u043a\u0430\u043a \u0447\u043b\u0435\u043d\u043e\u0432 \u0441\u0435\u043c\u044c\u0438. \u0418 \u0442\u0443\u0442 \u0436\u0435 \u0441 \u0434\u0440\u0443\u0433\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u043b\u044e\u0434\u0438 \u0443\u0431\u0438\u0432\u0430\u044e\u0442 \u0436\u0438\u0432\u043e\u0442\u043d\u043e\u0435, \u0447\u0442\u043e\u0431\u044b \u0431\u044b\u043b\u043e \u0447\u0442\u043e \u0432\u043a\u0443\u0441\u043d\u043e\u0435 \u043f\u043e\u043a\u0443\u0448\u0430\u0442\u044c \u043d\u0430 \u0441\u0442\u043e\u043b\u0435. \u0418 \u0432\u043e\u0442 \u044f \u0442\u043e\u0436\u0435 \u0441\u0438\u0436\u0443 \u0438 \u0435\u043c \u044d\u0442\u0443 \u043a\u0443\u0440\u0438\u0446\u0443-\u0433\u0440\u0438\u043b\u044c. \n-----\nBut seeing that adults didn\u2019t care about it, I as any other child didn\u2019t oppose myself to parents and others; I just assimilate all the manners and customs, equaling to those who seemed to be older and wiser.\nI was growing up and parents\u2019 influence and influence of other unquestioned authorities subsided, I got my personal space in my mind and there was my personal opinion on the questions in it. At the age of 15, the formation of my personality reached the level where issues of life turned into beliefs and beliefs \u2013 into actions. I remembered that childish dilemma in a new perspective, and to the question: \u201cWhy should I kill to keep on living?\u201d I answered: \u201cNO, I SHOULD NOT\u201d\nSince then I\u2019m a vegetarian, it\u2019s been 5 years already.\nhttps://media4.giphy.com/media/xcFZrrcaGhbz2/200w.gif\n>\u041d\u043e \u0432\u0438\u0434\u044f, \u0447\u0442\u043e \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445 \u044d\u0442\u043e \u043d\u0435 \u0437\u0430\u0431\u043e\u0442\u0438\u0442, \u044f, \u043a\u0430\u043a \u043b\u044e\u0431\u043e\u0439 \u0440\u0435\u0431\u0451\u043d\u043e\u043a, \u043d\u0435 \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u043b\u0430 \u0441\u0435\u0431\u044f \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044f\u043c \u0438 \u0432\u0441\u0435\u043c \u0434\u0440\u0443\u0433\u0438\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u0432\u043f\u0438\u0442\u044b\u0432\u0430\u043b\u0430 \u0432\u0441\u0435 \u043d\u0440\u0430\u0432\u044b \u0438 \u043e\u0431\u044b\u0447\u0430\u0438, \u0440\u0430\u0432\u043d\u044f\u044f\u0441\u044c \u043d\u0430 \u0442\u0435\u0445, \u043a\u043e\u0433\u043e \u0441\u0447\u0438\u0442\u0430\u043b\u0430 \u0441\u0442\u0430\u0440\u0448\u0435 \u0438 \u043c\u0443\u0434\u0440\u0435\u0435.\n\u042f \u0440\u043e\u0441\u043b\u0430, \u0438 \u043f\u043e\u0441\u0442\u0435\u043f\u0435\u043d\u043d\u043e \u0432\u043b\u0438\u044f\u043d\u0438\u0435 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u0435\u0439 \u0438 \u043f\u0440\u043e\u0447\u0438\u0445 \u043d\u0435\u043f\u0440\u0435\u0440\u0435\u043a\u0430\u0435\u043c\u044b\u0445 \u0430\u0432\u0442\u043e\u0440\u0438\u0442\u0435\u0442\u043e\u0432 \u0441\u043f\u0430\u0434\u0430\u043b\u043e, \u0443 \u043c\u0435\u043d\u044f \u043f\u043e\u044f\u0432\u043b\u044f\u043b\u043e\u0441\u044c \u043b\u0438\u0447\u043d\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0432 \u0440\u0430\u0437\u0443\u043c\u0435 \u0438 \u0432 \u043d\u0451\u043c \u0437\u0430\u0440\u043e\u0436\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0435 \u0432\u043e\u043f\u0440\u043e\u0441\u044b. \u0418 \u0432 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0435 15 \u043b\u0435\u0442 \u0441\u0442\u0435\u043f\u0435\u043d\u044c \u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u043e\u0435\u0439 \u043b\u0438\u0447\u043d\u043e\u0441\u0442\u0438 \u0434\u043e\u0441\u0442\u0438\u0433\u043b\u0430 \u0442\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f, \u043a\u043e\u0433\u0434\u0430 \u0432\u043e\u043f\u0440\u043e\u0441\u044b \u043a \u0436\u0438\u0437\u043d\u0438 \u043f\u0440\u0435\u0432\u0440\u0430\u0442\u0438\u043b\u0438\u0441\u044c \u0432 \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u044f, \u0430 \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u044f - \u0432 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f. \u042f \u0432\u0441\u043f\u043e\u043c\u043d\u0438\u043b\u0430 \u043e \u0442\u043e\u0439 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u0434\u0438\u043b\u0435\u043c\u043c\u0435 \u0432 \u043d\u043e\u0432\u043e\u043c \u0441\u0432\u0435\u0442\u0435, \u0438 \u043d\u0430 \u0432\u043e\u043f\u0440\u043e\u0441:\"\u041f\u043e\u0447\u0435\u043c\u0443, \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0436\u0438\u0442\u044c, \u044f \u0434\u043e\u043b\u0436\u043d\u0430 \u0443\u0431\u0438\u0432\u0430\u0442\u044c?\" \u044f \u043e\u0442\u0432\u0435\u0442\u0438\u043b\u0430 \u0441\u0435\u0431\u0435 - \"\u041d\u0415 \u0414\u041e\u041b\u0416\u041d\u0410.\" \n\u0421 \u0442\u0435\u0445 \u043f\u043e\u0440 \u044f \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u0430, \u043f\u0440\u043e\u0448\u043b\u043e \u0443\u0436\u0435 \u043f\u044f\u0442\u044c \u043b\u0435\u0442. \n---\nIt\u2019s great happiness to live according to you beliefs without betraying them for the sake of the public opinion, to live in accordance with your conscience and moral purity. I\u2019d like more people to think about what they eat and do it consciously, how inhumane it is to feed on flesh of killed creatures.\nAs it is written in the Gospel of the Essenes: \"It was said to them of old time, 'Honor thy Heavenly Father and thy Earthly Mother, and do their commandments, that thy days may be long upon the earth.' And next afterward was given this commandment, 'Thou shalt not kill,' for life is given to all by God, and that which God has given, let not man take away. For-I tell you truly, from one Mother proceeds all that lives upon the earth. Therefore, he who kills, kills his brother. And from him will the Earthly Mother turn away, and will pluck from him her quickening breasts. And he will be shunned by her angels, and Satan will have his dwelling in his body. And the flesh of slain beasts in his body will become his own tomb. For I tell you truly, he who kills, kills himself, and whoso eats the flesh of slain beasts, eats of the body of death. For in his blood every drop of their blood turns to poison; in his breath their breath to stink; in his flesh their flesh to boils; in his bones their bones to chalk; in his bowels their bowels t o decay; in his eyes their eyes to scales; in his ears their ears to waxy issue. And their death will become his death\u201d\nhttp://99px.ru/sstorage/56/2013/07/image_561607131913053649088.gif\n>\u042d\u0442\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u0435 \u0441\u0447\u0430\u0441\u0442\u044c\u0435 - \u0436\u0438\u0442\u044c, \u0441\u043e\u0433\u043b\u0430\u0441\u043d\u043e \u0441\u0432\u043e\u0438\u043c \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u044f\u043c, \u043d\u0435 \u043f\u0440\u0435\u0434\u0430\u0432\u0430\u044f \u0438\u0445 \u0432 \u0443\u0433\u043e\u0434\u0443 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u043c\u0443 \u043c\u043d\u0435\u043d\u0438\u044e, \u0436\u0438\u0442\u044c - \u0432 \u0441\u043e\u0433\u043b\u0430\u0441\u0438\u0438 \u0441\u043e \u0441\u0432\u043e\u0435\u0439 \u0441\u043e\u0432\u0435\u0441\u0442\u044c\u044e \u0438 \u043d\u0440\u0430\u0432\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u0447\u0438\u0441\u0442\u043e\u0442\u043e\u0439. \u042f \u0445\u043e\u0447\u0443, \u0447\u0442\u043e\u0431\u044b \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435 \u043b\u044e\u0434\u0435\u0439 \u0437\u0430\u0434\u0443\u043c\u0430\u043b\u043e\u0441\u044c \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u043e\u043d\u0438 \u0435\u0434\u044f\u0442, \u0438 \u043e\u0441\u043e\u0437\u043d\u0430\u043b\u043e, \u043a\u0430\u043a \u043d\u0435\u0433\u0443\u043c\u0430\u043d\u043d\u043e \u043f\u0438\u0442\u0430\u0442\u044c\u0441\u044f \u043f\u043b\u043e\u0442\u044c\u044e \u0443\u0431\u0438\u0442\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432.\n\u041a\u0430\u043a \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u043e \u0432 \u0415\u0432\u0430\u043d\u0433\u0435\u043b\u0438\u0438 \u043e\u0442 \u0415\u0441\u0441\u0435\u0435\u0432: \"\u0411\u043e\u0433 \u0437\u0430\u043f\u043e\u0432\u0435\u0434\u043e\u0432\u0430\u043b \u043d\u0430\u0448\u0438\u043c \u043f\u0440\u0435\u0434\u043a\u0430\u043c: \u00ab\u041d\u0435 \u0443\u0431\u0438\u0439\u00bb. \u041d\u043e \u0441\u0435\u0440\u0434\u0446\u0430 \u0438\u0445 \u043e\u0436\u0435\u0441\u0442\u043e\u0447\u0438\u043b\u0438\u0441\u044c, \u0438 \u043e\u043d\u0438 \u0441\u0442\u0430\u043b\u0438 \u0443\u0431\u0438\u0432\u0430\u0442\u044c. \u0422\u043e\u0433\u0434\u0430 \u041c\u043e\u0438\u0441\u0435\u0439 \u0440\u0435\u0448\u0438\u043b, \u0447\u0442\u043e \u043e\u043d\u0438 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u044b \u043f\u043e \u043a\u0440\u0430\u0439\u043d\u0435\u0439 \u043c\u0435\u0440\u0435 \u0443\u0431\u0438\u0432\u0430\u0442\u044c \u043b\u044e\u0434\u0435\u0439, \u0438 \u0434\u043e\u0437\u0432\u043e\u043b\u0438\u043b \u0438\u043c \u0443\u0431\u0438\u0432\u0430\u0442\u044c \u0437\u0432\u0435\u0440\u0435\u0439. \u0418 \u0442\u043e\u0433\u0434\u0430 \u0441\u0435\u0440\u0434\u0446\u0430 \u0432\u0430\u0448\u0438\u0445 \u043f\u0440\u0435\u0434\u043a\u043e\u0432 \u043e\u0436\u0435\u0441\u0442\u043e\u0447\u0438\u043b\u0438\u0441\u044c \u0435\u0449\u0435 \u0431\u043e\u043b\u044c\u0448\u0435, \u0438 \u0441\u0442\u0430\u043b\u0438 \u043e\u043d\u0438 \u0443\u0431\u0438\u0432\u0430\u0442\u044c \u043b\u044e\u0434\u0435\u0439, \u0440\u0430\u0432\u043d\u043e \u043a\u0430\u043a \u0438 \u0437\u0432\u0435\u0440\u0435\u0439. \u041d\u043e \u044f \u0433\u043e\u0432\u043e\u0440\u044e \u0432\u0430\u043c, \u043d\u0435 \u0443\u0431\u0438\u0432\u0430\u0439\u0442\u0435 \u043d\u0438 \u043b\u044e\u0434\u0435\u0439, \u043d\u0438 \u0437\u0432\u0435\u0440\u0435\u0439, \u043d\u0438 \u0442\u043e, \u0447\u0442\u043e \u0441\u0442\u0430\u043d\u0435\u0442 \u043f\u0438\u0449\u0435\u0439 \u0432\u0430\u0448\u0435\u0439. \u0418\u0431\u043e \u0435\u0441\u043b\u0438 \u0432\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0435 \u0436\u0438\u0432\u0443\u044e \u043f\u0438\u0449\u0443, \u043e\u043d\u0430 \u043d\u0430\u043f\u043e\u043b\u043d\u044f\u0435\u0442 \u0432\u0430\u0441 \u0436\u0438\u0437\u043d\u044c\u044e, \u043d\u043e \u0435\u0441\u043b\u0438 \u0432\u044b \u0443\u0431\u0438\u0432\u0430\u0435\u0442\u0435 \u0441\u0432\u043e\u044e \u043f\u0438\u0449\u0443, \u043c\u0435\u0440\u0442\u0432\u0430\u044f \u043f\u0438\u0449\u0430 \u0443\u0431\u044c\u0435\u0442 \u0442\u0430\u043a\u0436\u0435 \u0438 \u0432\u0430\u0441. \u0418\u0431\u043e \u0436\u0438\u0437\u043d\u044c \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0442 \u0436\u0438\u0437\u043d\u0438, \u0430 \u043e\u0442 \u0441\u043c\u0435\u0440\u0442\u0438 \u0432\u0441\u0435\u0433\u0434\u0430 \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0441\u043c\u0435\u0440\u0442\u044c. \u0418\u0431\u043e \u0432\u0441\u0435, \u0447\u0442\u043e \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0432\u0430\u0448\u0443 \u043f\u0438\u0449\u0443, \u0442\u0430\u043a\u0436\u0435 \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0438 \u0432\u0430\u0448\u0438 \u0442\u0435\u043b\u0430. \u0410 \u0432\u0441\u0435, \u0447\u0442\u043e \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0432\u0430\u0448\u0438 \u0442\u0435\u043b\u0430, \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0442\u0430\u043a\u0436\u0435 \u0438 \u0432\u0430\u0448\u0438 \u0434\u0443\u0448\u0438. \u0418 \u0442\u0435\u043b\u0430 \u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442\u0441\u044f \u0442\u0435\u043c, \u0447\u0442\u043e \u0435\u0441\u0442\u044c \u043f\u0438\u0449\u0430 \u0432\u0430\u0448\u0430, \u0440\u0430\u0432\u043d\u043e \u043a\u0430\u043a \u0434\u0443\u0445 \u0432\u0430\u0448 \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0442\u0435\u043c, \u0447\u0442\u043e \u0435\u0441\u0442\u044c \u043c\u044b\u0441\u043b\u0438 \u0432\u0430\u0448\u0438.\"\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @tagira\n\n---\n\nAll STEEM Dollars for this post go to the featured author. \u0412\u0441\u0435 SD \u0437\u0430 \u043f\u043e\u0441\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442 \u0430\u0432\u0442\u043e\u0440.", + "category": "vegetarian", + "children": 18, + "created": "2016-09-15T15:10:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://petroart.ru/art/b/bronikov/img/3.jpg", + "http://www.damex.ru/images/cache/660x495/crop/images%7Ccms-image-000013620.jpg", + "https://media4.giphy.com/media/xcFZrrcaGhbz2/200w.gif", + "http://99px.ru/sstorage/56/2013/07/image_561607131913053649088.gif" ], - "author": "tomsmaid", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.09, - "beneficiaries": [ - { - "account": "esteemapp", - "weight": 300 - } + "tags": [ + "vegetarian", + "live", + "ru", + "food" ], - "blacklists": [], - "body": "Hi,\n\nRecently we had a short break in Latvia. It was only couple days but amazing time with family and first trip abroad after long quarantine \ud83d\ude01\ud83d\udc4d\nLong walks by the sea and swimming in the freezing water left some beautiful memories.\nDuring our trip took some photos. Hopefully you will like it and leave some comments \ud83d\udc9a\ud83d\udc4d\n\nLocation of our trip: [Klapkalnciems, Latvia](\nhttps://goo.gl/maps/aSe1SJNP7eiFw1N5A)\n\nUsed gear: Sony a6500 and Sony 18-105mm f/4.0 Lens.\n\nPhotography \u2b07\ufe0f\u2b07\ufe0f\u2b07\ufe0f\n\n![74qt37.jpg](https://img.esteem.app/74qt37.jpg)\n\n![Jurmala11.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/jo9hZHoJ-Jurmala11.jpeg)\n\n![g43ygp.jpg](https://img.esteem.app/g43ygp.jpg)\n\n![5wywkc.jpg](https://img.esteem.app/5wywkc.jpg)\n\n![Jurmala18.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/4Ns2Bwvv-Jurmala18.jpeg)\n\n![Jurmala9.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/hgOT2v7T-Jurmala9.jpeg)\n\n![Jurmala8.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/Abiq5D13-Jurmala8.jpeg)\n\n![Jurmala3.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/szdxo8y5-Jurmala3.jpeg)\n\n![Jurmala7.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/LUDAxxN7-Jurmala7.jpeg)\n\n![Jurmala6.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/HAZXRoRc-Jurmala6.jpeg)\n\n![Jurmala5.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/iUdgHYIa-Jurmala5.jpeg)\n\n![Jurmala2.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/jcUtshUK-Jurmala2.jpeg)\n\n![Jurmala4.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/K6XIQa4r-Jurmala4.jpeg)\n\n![Jurmala1.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/S5K28EVO-Jurmala1.jpeg)\n\n\n\u201cTwenty years from now you will be more disappointed by the things that you didn\u2019t do than by the ones you did do. So throw off the bowlines. Sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.\u201d\u2013 Sarah Frances Brown, mother of author H Jackson Brown \n\n![3fnzb5.jpg](https://img.esteem.app/3fnzb5.jpg)", - "category": "photography", - "children": 11, - "created": "2020-07-07T09:44:27", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "community": "hive-125125", - "format": "markdown", - "image": [ - "https://img.esteem.app/74qt37.jpg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/jo9hZHoJ-Jurmala11.jpeg", - "https://img.esteem.app/g43ygp.jpg", - "https://img.esteem.app/5wywkc.jpg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/4Ns2Bwvv-Jurmala18.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/hgOT2v7T-Jurmala9.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/Abiq5D13-Jurmala8.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/szdxo8y5-Jurmala3.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/LUDAxxN7-Jurmala7.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/HAZXRoRc-Jurmala6.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/iUdgHYIa-Jurmala5.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/jcUtshUK-Jurmala2.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/K6XIQa4r-Jurmala4.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/S5K28EVO-Jurmala1.jpeg", - "https://img.esteem.app/3fnzb5.jpg" - ], - "links": [ - "https://goo.gl/maps/aSe1SJNP7eiFw1N5A" - ], - "tags": [ - "photography", - "palnet", - "creativecoin", - "neoxian", - "nature", - "travel", - "ocd" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 100581973462012, - "payout": 40.619, - "payout_at": "2020-07-14T09:44:27", - "pending_payout_value": "40.619 HBD", - "percent_hbd": 10000, - "permlink": "our-first-trip-abroad-after-quarantine-latvia", - "post_id": 86929973, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 182 - }, - "title": "Our first trip abroad, after quarantine \ud83d\udc9a\ud83c\udf1e\ud83c\udf0e Latvia \ud83c\uddf1\ud83c\uddfb ", - "updated": "2020-07-07T11:47:03", - "url": "/photography/@tomsmaid/our-first-trip-abroad-after-quarantine-latvia" + "users": [ + "tagira" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 57949290153677, + "payout": 197.701, + "payout_at": "2016-09-16T15:36:20", + "pending_payout_value": "197.701 HBD", + "percent_hbd": 10000, + "permlink": "vegetarianism-is-philosophy-which-has-deep-religious-and-ethical-roots-my-way-vegetarianstvo-moi-put-featuring-tagira-as-author", + "post_id": 958600, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 161 + }, + "title": "Vegetarianism is philosophy which has deep religious and ethical roots, my way / \u0412\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0441\u0442\u0432\u043e-\u043c\u043e\u0439 \u043f\u0443\u0442\u044c (featuring @tagira as author)", + "updated": "2016-09-15T15:10:00", + "url": "/vegetarian/@terrycraft/vegetarianism-is-philosophy-which-has-deep-religious-and-ethical-roots-my-way-vegetarianstvo-moi-put-featuring-tagira-as-author" }, { - "active_votes": [ - { - "rshares": "23546086540744", - "voter": "xeldal" - }, - { - "rshares": "90689523677", - "voter": "flemingfarm" - }, - { - "rshares": "44652605528", - "voter": "churdtzu" - }, - { - "rshares": "2869766847", - "voter": "kennyskitchen" - }, - { - "rshares": "212227464978", - "voter": "gerber" - }, - { - "rshares": "232787509372", - "voter": "ezzy" - }, - { - "rshares": "575850849210", - "voter": "ausbitbank" - }, - { - "rshares": "276814751941", - "voter": "exyle" - }, - { - "rshares": "9371795673", - "voter": "sterlinluxan" - }, - { - "rshares": "15357901522430", - "voter": "glitterfart" - }, - { - "rshares": "1615655404", - "voter": "alchemage" - }, - { - "rshares": "19690355104", - "voter": "azizbd" - }, - { - "rshares": "120160422544", - "voter": "frankbacon" - }, - { - "rshares": "599128714", - "voter": "burntmd" - }, - { - "rshares": "21986285261", - "voter": "johnvibes" - }, - { - "rshares": "23688675450", - "voter": "elamental" - }, - { - "rshares": "427926067478", - "voter": "stevescoins" - }, - { - "rshares": "60247454857", - "voter": "netaterra" - }, - { - "rshares": "40377889125", - "voter": "someguy123" - }, - { - "rshares": "1093623953", - "voter": "mckeever" - }, - { - "rshares": "10066108607", - "voter": "anarcho-andrei" - }, - { - "rshares": "12984094605", - "voter": "terrybrock" - }, - { - "rshares": "3348030703154", - "voter": "krnel" - }, - { - "rshares": "971960469", - "voter": "dannyshine" - }, - { - "rshares": "263845486392", - "voter": "daveks" - }, - { - "rshares": "62967538837", - "voter": "wakeupnd" - }, - { - "rshares": "2700944134", - "voter": "tftproject" - }, - { - "rshares": "5706270453", - "voter": "dbroze" - }, - { - "rshares": "15555534749", - "voter": "eftnow" - }, - { - "rshares": "7692964665", - "voter": "jimbobbill" - }, - { - "rshares": "12680777108757", - "voter": "canadian-coconut" - }, - { - "rshares": "89031784175", - "voter": "petrvl" - }, - { - "rshares": "2339047013", - "voter": "freebornangel" - }, - { - "rshares": "13804759605", - "voter": "wearechange-co" - }, - { - "rshares": "93516558194", - "voter": "ura-soul" - }, - { - "rshares": "2795916424", - "voter": "makinstuff" - }, - { - "rshares": "966301288", - "voter": "thoughts-in-time" - }, - { - "rshares": "573837964", - "voter": "truthseeker101" - }, - { - "rshares": "164504309581", - "voter": "edb" - }, - { - "rshares": "8552124923", - "voter": "cardboard" - }, - { - "rshares": "15250239407", - "voter": "paolobeneforti" - }, - { - "rshares": "125936561577", - "voter": "silviabeneforti" - }, - { - "rshares": "7969295553", - "voter": "jonboka" - }, - { - "rshares": "1351748897", - "voter": "freebornsociety" - }, - { - "rshares": "4264649578", - "voter": "makersunited" - }, - { - "rshares": "650057774", - "voter": "haileyscomet" - }, - { - "rshares": "769436170", - "voter": "jdc" - }, - { - "rshares": "10914664332", - "voter": "dune69" - }, - { - "rshares": "5519012011", - "voter": "frankydoodle" - }, - { - "rshares": "34766434177", - "voter": "whatamidoing" - }, - { - "rshares": "23329816767", - "voter": "valued-customer" - }, - { - "rshares": "4036638977", - "voter": "jerrybanfield" - }, - { - "rshares": "258064667661", - "voter": "drag33" - }, - { - "rshares": "11376944682", - "voter": "mys" - }, - { - "rshares": "71687866114", - "voter": "ironshield" - }, - { - "rshares": "47453208160", - "voter": "galberto" - }, - { - "rshares": "55183431100", - "voter": "misslasvegas" - }, - { - "rshares": "71181747744", - "voter": "handofzara" - }, - { - "rshares": "59517285964", - "voter": "schoolforsdg4" - }, - { - "rshares": "19657356979", - "voter": "mdosev" - }, - { - "rshares": "784920332", - "voter": "antimedia" - }, - { - "rshares": "15037288746", - "voter": "belahejna" - }, - { - "rshares": "109237776344", - "voter": "firstamendment" - }, - { - "rshares": "32630181915", - "voter": "dadapizza" - }, - { - "rshares": "11133046910", - "voter": "colinhoward" - }, - { - "rshares": "1483444958", - "voter": "techken" - }, - { - "rshares": "4389744458", - "voter": "whd" - }, - { - "rshares": "3272831351", - "voter": "wesphilbin" - }, - { - "rshares": "809072718", - "voter": "d-pend" - }, - { - "rshares": "34683817621", - "voter": "thegreens" - }, - { - "rshares": "761750057", - "voter": "binkyprod" - }, - { - "rshares": "2567376940", - "voter": "bryandivisions" - }, - { - "rshares": "594773918", - "voter": "heart-to-heart" - }, - { - "rshares": "26094190196", - "voter": "vincentnijman" - }, - { - "rshares": "1035866528", - "voter": "shitsignals" - }, - { - "rshares": "1107174039464", - "voter": "steemvote" - }, - { - "rshares": "6345807016", - "voter": "helgapn" - }, - { - "rshares": "31966367069", - "voter": "jasonbu" - }, - { - "rshares": "1649650229664", - "voter": "tribesteemup" - }, - { - "rshares": "14492601546", - "voter": "felander" - }, - { - "rshares": "8420951779", - "voter": "santigs" - }, - { - "rshares": "7251583092", - "voter": "nadhora" - }, - { - "rshares": "41745731003", - "voter": "redouanemez" - }, - { - "rshares": "7097734687", - "voter": "fbslo" - }, - { - "rshares": "49997801056", - "voter": "accelerator" - }, - { - "rshares": "19590234408", - "voter": "artonmysleeve" - }, - { - "rshares": "3086793471", - "voter": "justinparke" - }, - { - "rshares": "2197948315", - "voter": "solarsupermama" - }, - { - "rshares": "1349957692", - "voter": "yogacoach" - }, - { - "rshares": "30826787355", - "voter": "taskmaster4450" - }, - { - "rshares": "3102156285", - "voter": "deathwing" - }, - { - "rshares": "87489945192", - "voter": "article61" - }, - { - "rshares": "11394007578", - "voter": "revisesociology" - }, - { - "rshares": "1971860401", - "voter": "insanityisfree" - }, - { - "rshares": "7011448058", - "voter": "risemultiversity" - }, - { - "rshares": "8848786644", - "voter": "ecotrain" - }, - { - "rshares": "704739953", - "voter": "jamiekensell" - }, - { - "rshares": "6111588405", - "voter": "canadianrenegade" - }, - { - "rshares": "1528690964", - "voter": "kieranpearson" - }, - { - "rshares": "4693207301", - "voter": "pataty69" - }, - { - "rshares": "11062601719", - "voter": "caladan" - }, - { - "rshares": "628012771919", - "voter": "informationwar" - }, - { - "rshares": "1466314135", - "voter": "socent" - }, - { - "rshares": "907433170279", - "voter": "familyprotection" - }, - { - "rshares": "61476199975", - "voter": "shadow3scalpel" - }, - { - "rshares": "71583213656", - "voter": "emrebeyler" - }, - { - "rshares": "1404603799", - "voter": "awesome-gadgets" - }, - { - "rshares": "4480968792", - "voter": "nomad-magus" - }, - { - "rshares": "1143048527", - "voter": "earthmother" - }, - { - "rshares": "5247665181", - "voter": "trucklife-family" - }, - { - "rshares": "2179038738", - "voter": "lishu" - }, - { - "rshares": "2918867191", - "voter": "careywedler" - }, - { - "rshares": "1143133735", - "voter": "funtraveller" - }, - { - "rshares": "6874594036", - "voter": "paradigmprospect" - }, - { - "rshares": "5618865207", - "voter": "krishool" - }, - { - "rshares": "10245564813", - "voter": "eaglespirit" - }, - { - "rshares": "6846096695", - "voter": "stupid" - }, - { - "rshares": "7224036652", - "voter": "mountainjewel" - }, - { - "rshares": "25290887620", - "voter": "neupanedipen" - }, - { - "rshares": "1932592568", - "voter": "gibber" - }, - { - "rshares": "1397475466", - "voter": "moxieme" - }, - { - "rshares": "77481589315", - "voter": "nealmcspadden" - }, - { - "rshares": "14089021823", - "voter": "womenempowerment" - }, - { - "rshares": "3918818234", - "voter": "iamevilradio" - }, - { - "rshares": "47357258841", - "voter": "purefood" - }, - { - "rshares": "1294843787", - "voter": "unicron" - }, - { - "rshares": "24952236178", - "voter": "empress-eremmy" - }, - { - "rshares": "17832304492", - "voter": "aagabriel" - }, - { - "rshares": "39923732990", - "voter": "warnas" - }, - { - "rshares": "543526123", - "voter": "cfminer" - }, - { - "rshares": "7914268701", - "voter": "best-strategy" - }, - { - "rshares": "132465379048", - "voter": "chronocrypto" - }, - { - "rshares": "8517662489", - "voter": "julescape" - }, - { - "rshares": "663091427", - "voter": "natha93" - }, - { - "rshares": "6124934220", - "voter": "cadawg" - }, - { - "rshares": "947426413", - "voter": "hempress" - }, - { - "rshares": "1285099757", - "voter": "pkocjan" - }, - { - "rshares": "3132482717", - "voter": "vegan.niinja" - }, - { - "rshares": "849233726", - "voter": "homestead-guru" - }, - { - "rshares": "639149233", - "voter": "steemsmarter" - }, - { - "rshares": "729601723", - "voter": "antisocialists" - }, - { - "rshares": "2633285350", - "voter": "movingman" - }, - { - "rshares": "57399670141", - "voter": "siamcat" - }, - { - "rshares": "1483049920", - "voter": "beleg" - }, - { - "rshares": "11230574256", - "voter": "bestboom" - }, - { - "rshares": "106215454807", - "voter": "onepercentbetter" - }, - { - "rshares": "2021830801", - "voter": "abrockman" - }, - { - "rshares": "2374832275", - "voter": "reversehitler88" - }, - { - "rshares": "11939347020", - "voter": "freddio" - }, - { - "rshares": "9663853965", - "voter": "bobaphet" - }, - { - "rshares": "40066242030", - "voter": "nancybriti" - }, - { - "rshares": "7361153134", - "voter": "meanbees" - }, - { - "rshares": "9135319859", - "voter": "indigoocean" - }, - { - "rshares": "1302896590", - "voter": "retard-gamer-de" - }, - { - "rshares": "796903967", - "voter": "glodniwiedzy" - }, - { - "rshares": "165300325398", - "voter": "veteranforcrypto" - }, - { - "rshares": "719907261", - "voter": "geliquasjourney" - }, - { - "rshares": "2519862431", - "voter": "archisteem" - }, - { - "rshares": "2986239622", - "voter": "natepower" - }, - { - "rshares": "4473095395", - "voter": "commonlaw" - }, - { - "rshares": "21941118625", - "voter": "merlion" - }, - { - "rshares": "13644105303", - "voter": "inspirewithwords" - }, - { - "rshares": "1687332361", - "voter": "swisswitness" - }, - { - "rshares": "536125084", - "voter": "mlgcrypto" - }, - { - "rshares": "15558698876", - "voter": "haccolong" - }, - { - "rshares": "99336315653", - "voter": "luca1777" - }, - { - "rshares": "990536244", - "voter": "mannacurrency" - }, - { - "rshares": "25224911971", - "voter": "amnlive" - }, - { - "rshares": "2469100664", - "voter": "flordiaman" - }, - { - "rshares": "2521750969", - "voter": "nickhans" - }, - { - "rshares": "5996360790", - "voter": "ambiguity" - }, - { - "rshares": "9386963440", - "voter": "nutritree" - }, - { - "rshares": "5822627613", - "voter": "pagliozzo" - }, - { - "rshares": "844678603", - "voter": "izzynoel" - }, - { - "rshares": "1697926475", - "voter": "phillyc" - }, - { - "rshares": "531272653", - "voter": "withered-freddy" - }, - { - "rshares": "17198451331", - "voter": "oppongk" - }, - { - "rshares": "2309069152", - "voter": "aconsciousness" - }, - { - "rshares": "605563485127", - "voter": "deepdives" - }, - { - "rshares": "1424234476", - "voter": "julian2013" - }, - { - "rshares": "36673258423", - "voter": "dlike" - }, - { - "rshares": "108273623328", - "voter": "stever82" - }, - { - "rshares": "620830439", - "voter": "badpupper" - }, - { - "rshares": "6050005116", - "voter": "gorbisan" - }, - { - "rshares": "39601623223", - "voter": "engrave" - }, - { - "rshares": "3547824187", - "voter": "bengiles" - }, - { - "rshares": "798308268", - "voter": "munhenhos" - }, - { - "rshares": "3340530344", - "voter": "wonderlamp" - }, - { - "rshares": "11892982520", - "voter": "porters" - }, - { - "rshares": "1175545571", - "voter": "bobby.madagascar" - }, - { - "rshares": "6927432", - "voter": "laissez-faire" - }, - { - "rshares": "18069971792", - "voter": "canna-curate" - }, - { - "rshares": "555737790", - "voter": "darkprince66" - }, - { - "rshares": "7493139108", - "voter": "canna-collective" - }, - { - "rshares": "5923441768", - "voter": "balticbadger" - }, - { - "rshares": "553600163", - "voter": "malricinferno" - }, - { - "rshares": "582398398", - "voter": "zintarmortalis" - }, - { - "rshares": "28606380824", - "voter": "steemitcuration" - }, - { - "rshares": "11145813045", - "voter": "riskneutral" - }, - { - "rshares": "1208911210", - "voter": "besheda" - }, - { - "rshares": "5997937104", - "voter": "rakk3187" - }, - { - "rshares": "16852716844", - "voter": "followjohngalt" - }, - { - "rshares": "857575146", - "voter": "dfroberg" - }, - { - "rshares": "3505705027", - "voter": "vibesforlife" - }, - { - "rshares": "1906022051", - "voter": "maajaanaa" - }, - { - "rshares": "3962468067", - "voter": "unit101" - }, - { - "rshares": "1979670515", - "voter": "redheaddemon" - }, - { - "rshares": "6301265177", - "voter": "littlegurl747" - }, - { - "rshares": "663887598047", - "voter": "bluesniper" - }, - { - "rshares": "1768057914", - "voter": "mrsbozz" - }, - { - "rshares": "10047521708", - "voter": "tribevibes" - }, - { - "rshares": "6585224083", - "voter": "drazeus" - }, - { - "rshares": "554690626", - "voter": "permaculturedude" - }, - { - "rshares": "13660004434216", - "voter": "ctime" - }, - { - "rshares": "9916214680", - "voter": "robinsonr810" - }, - { - "rshares": "4129438958", - "voter": "fortrussnews" - }, - { - "rshares": "4125346554", - "voter": "hungrybear" - }, - { - "rshares": "2682969249", - "voter": "abbenay" - }, - { - "rshares": "1286444380", - "voter": "bewithbreath" - }, - { - "rshares": "282624751414", - "voter": "apix" - }, - { - "rshares": "756945957", - "voter": "maxsieg" - }, - { - "rshares": "40167268848", - "voter": "pfdm" - }, - { - "rshares": "3412145131", - "voter": "steem-fund" - }, - { - "rshares": "2839011214", - "voter": "steelborne" - }, - { - "rshares": "14566745272", - "voter": "scarletreaper" - }, - { - "rshares": "547124639", - "voter": "izhmash" - }, - { - "rshares": "1510858504", - "voter": "deeanndmathews" - }, - { - "rshares": "11794762029", - "voter": "socialbot" - }, - { - "rshares": "1412853830", - "voter": "steemvpn" - }, - { - "rshares": "4514686543", - "voter": "clownworld" - }, - { - "rshares": "6463373394", - "voter": "haleakala" - }, - { - "rshares": "557897159", - "voter": "weedcash" - }, - { - "rshares": "75321402109", - "voter": "oldoneeye" - }, - { - "rshares": "518258080", - "voter": "vxc" - }, - { - "rshares": "3314134171", - "voter": "gamemods" - }, - { - "rshares": "1252366602", - "voter": "milu-the-dog" - }, - { - "rshares": "605934482", - "voter": "grannabis" - }, - { - "rshares": "1031583127", - "voter": "triplea.bot" - }, - { - "rshares": "78159017795", - "voter": "steem.leo" - }, - { - "rshares": "780914720", - "voter": "voodooranger" - }, - { - "rshares": "386428605813", - "voter": "votebetting" - }, - { - "rshares": "2427861352", - "voter": "freddio.sport" - }, - { - "rshares": "16837895501", - "voter": "asteroids" - }, - { - "rshares": "651013957", - "voter": "marlians.spt" - }, - { - "rshares": "2220652108", - "voter": "psycultureradio" - }, - { - "rshares": "493518112", - "voter": "one.life" - }, - { - "rshares": "20435062470", - "voter": "maxuvd" - }, - { - "rshares": "1579452636", - "voter": "dappcoder" - }, - { - "rshares": "1080924104", - "voter": "build-it" - }, - { - "rshares": "940804287", - "voter": "oratione" - }, - { - "rshares": "11567123995", - "voter": "vipservice" - }, - { - "rshares": "1778356518", - "voter": "mowemu" - }, - { - "rshares": "236740394620", - "voter": "huaren.news" - }, - { - "rshares": "3111067047", - "voter": "goodreader" - }, - { - "rshares": "1480728251", - "voter": "fenngen" - }, - { - "rshares": "216390895887", - "voter": "unpopular" - }, - { - "rshares": "5261783724", - "voter": "kryptoformator" - }, - { - "rshares": "946914706", - "voter": "ribary" - }, - { - "rshares": "11649272780", - "voter": "stevespeaks" - }, - { - "rshares": "1212801398", - "voter": "coin-doubler" - }, - { - "rshares": "1602933721", - "voter": "waskeeid" - }, - { - "rshares": "17672444488", - "voter": "mice-k" - }, - { - "rshares": "314427906", - "voter": "bela29" - }, - { - "rshares": "10748007042", - "voter": "staryao" - }, - { - "rshares": "40609029832", - "voter": "goldstreet" - }, - { - "rshares": "1456073503", - "voter": "curamax" - }, - { - "rshares": "568797997", - "voter": "steemcityrewards" - }, - { - "rshares": "745570290", - "voter": "dpend.active" - }, - { - "rshares": "21540169629", - "voter": "abundance.tribe" - }, - { - "rshares": "3312573983", - "voter": "thisismylife" - }, - { - "rshares": "11239326378", - "voter": "unknown0nline" - }, - { - "rshares": "7928894423", - "voter": "polish.hive" - }, - { - "rshares": "73341951309", - "voter": "dcityrewards" - }, - { - "rshares": "-3944892095", - "voter": "aquarius.academy" - }, - { - "rshares": "56703972899", - "voter": "executive-board" - }, - { - "rshares": "74300339247", - "voter": "hivecur" - }, - { - "rshares": "922132554", - "voter": "hivebuilderteam" - }, - { - "rshares": "1123722672", - "voter": "hivecur2" - }, - { - "rshares": "0", - "voter": "yshiyshi" - } + "active_votes": [ + { + "rshares": "16755161199383", + "voter": "itsascam" + }, + { + "rshares": "480526212736", + "voter": "barrie" + }, + { + "rshares": "5104374858", + "voter": "style" + }, + { + "rshares": "30984805998710", + "voter": "smooth" + }, + { + "rshares": "1970871102026", + "voter": "steemroller" + }, + { + "rshares": "73338425139", + "voter": "donaldtrump" + }, + { + "rshares": "17831785324019", + "voter": "steemed" + }, + { + "rshares": "3813633612078", + "voter": "riverhead" + }, + { + "rshares": "2104090803296", + "voter": "badassmother" + }, + { + "rshares": "2051409124045", + "voter": "hr1" + }, + { + "rshares": "5116652122587", + "voter": "kushed" + }, + { + "rshares": "22856566186", + "voter": "jaewoocho" + }, + { + "rshares": "155402774795", + "voter": "ozmaster" + }, + { + "rshares": "6968855225504", + "voter": "complexring" + }, + { + "rshares": "1647437585658", + "voter": "joseph" + }, + { + "rshares": "92485160845", + "voter": "aizensou" + }, + { + "rshares": "465717138828", + "voter": "recursive2" + }, + { + "rshares": "619876169843", + "voter": "masteryoda" + }, + { + "rshares": "3119278427030", + "voter": "recursive" + }, + { + "rshares": "1172425532", + "voter": "mineralwasser" + }, + { + "rshares": "665687862852", + "voter": "boombastic" + }, + { + "rshares": "88484695103", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6756410360", + "voter": "bingo-0" + }, + { + "rshares": "1620176259", + "voter": "bingo-1" + }, + { + "rshares": "5800874395470", + "voter": "smooth.witness" + }, + { + "rshares": "9885238701", + "voter": "idol" + }, + { + "rshares": "48218286324", + "voter": "stoner19" + }, + { + "rshares": "4837882894", + "voter": "sakr" + }, + { + "rshares": "1701784178", + "voter": "jocelyn" + }, + { + "rshares": "14064642668", + "voter": "gregory-f" + }, + { + "rshares": "58907877644", + "voter": "lovelace" + }, + { + "rshares": "1234583624335", + "voter": "gavvet" + }, + { + "rshares": "74895398010", + "voter": "eeks" + }, + { + "rshares": "488526217", + "voter": "paco-steem" + }, + { + "rshares": "912597254389", + "voter": "cryptogee" + }, + { + "rshares": "5883869384", + "voter": "spaninv" + }, + { + "rshares": "336432003943", + "voter": "teamsteem" + }, + { + "rshares": "8667859424", + "voter": "richman" + }, + { + "rshares": "462352309", + "voter": "murch" + }, + { + "rshares": "566150979416", + "voter": "nanzo-scoop" + }, + { + "rshares": "86323748302", + "voter": "william-noe" + }, + { + "rshares": "170004330283", + "voter": "steve-walschot" + }, + { + "rshares": "173798380609", + "voter": "mummyimperfect" + }, + { + "rshares": "268835102", + "voter": "coar" + }, + { + "rshares": "100993055295", + "voter": "asch" + }, + { + "rshares": "1060848113", + "voter": "murh" + }, + { + "rshares": "240697359051", + "voter": "sascha" + }, + { + "rshares": "6228218902", + "voter": "cryptofunk" + }, + { + "rshares": "2272666902", + "voter": "error" + }, + { + "rshares": "5736901624", + "voter": "marta-zaidel" + }, + { + "rshares": "1040976670262", + "voter": "cyber" + }, + { + "rshares": "10900823677", + "voter": "aizen01" + }, + { + "rshares": "6499631007", + "voter": "aizen02" + }, + { + "rshares": "3552366776", + "voter": "aizen03" + }, + { + "rshares": "1167908093", + "voter": "aizen04" + }, + { + "rshares": "494011890", + "voter": "aizen05" + }, + { + "rshares": "4792657323", + "voter": "aizen07" + }, + { + "rshares": "2866473700", + "voter": "aizen08" + }, + { + "rshares": "1018773570", + "voter": "aizen09" + }, + { + "rshares": "440815198", + "voter": "aizen10" + }, + { + "rshares": "7251599286", + "voter": "aizen06" + }, + { + "rshares": "3046354062", + "voter": "aizen11" + }, + { + "rshares": "2093827993", + "voter": "aizen14" + }, + { + "rshares": "2462056275", + "voter": "aizen19" + }, + { + "rshares": "59929272057", + "voter": "theshell" + }, + { + "rshares": "648949628", + "voter": "aizen15" + }, + { + "rshares": "6424903281", + "voter": "aizen16" + }, + { + "rshares": "49535217690", + "voter": "ak2020" + }, + { + "rshares": "645116104", + "voter": "aizen20" + }, + { + "rshares": "4217447041", + "voter": "aizen22" + }, + { + "rshares": "1120999727", + "voter": "aizen23" + }, + { + "rshares": "2204896687", + "voter": "aizen17" + }, + { + "rshares": "3470451837", + "voter": "aizen24" + }, + { + "rshares": "490553110", + "voter": "aizen18" + }, + { + "rshares": "1314196776", + "voter": "aizen25" + }, + { + "rshares": "2232430390", + "voter": "aizen28" + }, + { + "rshares": "3435321135", + "voter": "aizen26" + }, + { + "rshares": "1127666084", + "voter": "aizen27" + }, + { + "rshares": "3875699811", + "voter": "aizen32" + }, + { + "rshares": "2120371796", + "voter": "aizen30" + }, + { + "rshares": "3922155046", + "voter": "aizen31" + }, + { + "rshares": "1291018425", + "voter": "aizen33" + }, + { + "rshares": "1553081360", + "voter": "aizen34" + }, + { + "rshares": "311774459", + "voter": "aizen35" + }, + { + "rshares": "5849477524", + "voter": "aizen36" + }, + { + "rshares": "1459346389", + "voter": "aizen37" + }, + { + "rshares": "24406094847", + "voter": "paul-labossiere" + }, + { + "rshares": "408290923", + "voter": "aizen29" + }, + { + "rshares": "2872536420", + "voter": "aizen21" + }, + { + "rshares": "4407557058", + "voter": "aizen12" + }, + { + "rshares": "1876630383", + "voter": "aizen38" + }, + { + "rshares": "8279076968", + "voter": "badger311" + }, + { + "rshares": "8567966025", + "voter": "badger313" + }, + { + "rshares": "8532183936", + "voter": "badger312" + }, + { + "rshares": "8825464112", + "voter": "badger316" + }, + { + "rshares": "8945023495", + "voter": "badger319" + }, + { + "rshares": "8854468413", + "voter": "badger3101" + }, + { + "rshares": "8318010896", + "voter": "badger3111" + }, + { + "rshares": "8869290111", + "voter": "badger3121" + }, + { + "rshares": "8485309981", + "voter": "badger3131" + }, + { + "rshares": "8591220795", + "voter": "badger3141" + }, + { + "rshares": "8568091961", + "voter": "badger3171" + }, + { + "rshares": "8379270543", + "voter": "badger3181" + }, + { + "rshares": "8954261088", + "voter": "badger3191" + }, + { + "rshares": "8379110631", + "voter": "badger3112" + }, + { + "rshares": "8713695890", + "voter": "badger3132" + }, + { + "rshares": "8589307590", + "voter": "badger3162" + }, + { + "rshares": "8815925781", + "voter": "badger3113" + }, + { + "rshares": "8473341065", + "voter": "badger3123" + }, + { + "rshares": "8594708779", + "voter": "badger3133" + }, + { + "rshares": "8939568357", + "voter": "badger3153" + }, + { + "rshares": "8624205716", + "voter": "badger3163" + }, + { + "rshares": "8654162062", + "voter": "badger3193" + }, + { + "rshares": "8604723591", + "voter": "badger3114" + }, + { + "rshares": "8515355992", + "voter": "badger3124" + }, + { + "rshares": "8420058241", + "voter": "badger3144" + }, + { + "rshares": "8343364036", + "voter": "badger3154" + }, + { + "rshares": "8213191128", + "voter": "badger3164" + }, + { + "rshares": "8538833460", + "voter": "badger3174" + }, + { + "rshares": "8813869956", + "voter": "badger3194" + }, + { + "rshares": "8712162375", + "voter": "badger3105" + }, + { + "rshares": "8656736569", + "voter": "badger3135" + }, + { + "rshares": "8258522611", + "voter": "badger3145" + }, + { + "rshares": "8831167662", + "voter": "badger3155" + }, + { + "rshares": "8529824072", + "voter": "badger3175" + }, + { + "rshares": "8310212001", + "voter": "badger3195" + }, + { + "rshares": "7958888538", + "voter": "badger3106" + }, + { + "rshares": "8762392108", + "voter": "badger3116" + }, + { + "rshares": "8809476629", + "voter": "badger3126" + }, + { + "rshares": "8443348501", + "voter": "badger3136" + }, + { + "rshares": "8096485926", + "voter": "badger3146" + }, + { + "rshares": "8323878617", + "voter": "badger3156" + }, + { + "rshares": "8535690887", + "voter": "badger3166" + }, + { + "rshares": "8452106060", + "voter": "badger3176" + }, + { + "rshares": "8584206358", + "voter": "badger3186" + }, + { + "rshares": "8619308346", + "voter": "badger3196" + }, + { + "rshares": "8548167966", + "voter": "badger3107" + }, + { + "rshares": "8305132275", + "voter": "badger315" + }, + { + "rshares": "8791959509", + "voter": "badger318" + }, + { + "rshares": "8840656230", + "voter": "badger3151" + }, + { + "rshares": "8519121589", + "voter": "badger3161" + }, + { + "rshares": "8773547330", + "voter": "badger3122" + }, + { + "rshares": "8711547278", + "voter": "badger3142" + }, + { + "rshares": "8930383064", + "voter": "badger3152" + }, + { + "rshares": "8246562170", + "voter": "badger3172" + }, + { + "rshares": "8750362445", + "voter": "badger3182" + }, + { + "rshares": "8510357323", + "voter": "badger3192" + }, + { + "rshares": "8426540891", + "voter": "badger3143" + }, + { + "rshares": "8684675072", + "voter": "badger3173" + }, + { + "rshares": "8396705393", + "voter": "badger3104" + }, + { + "rshares": "8114154413", + "voter": "badger3134" + }, + { + "rshares": "8513476422", + "voter": "badger3184" + }, + { + "rshares": "8451732184", + "voter": "badger3115" + }, + { + "rshares": "8916017583", + "voter": "badger3165" + }, + { + "rshares": "8548877339", + "voter": "badger3185" + }, + { + "rshares": "8609674677", + "voter": "badger314" + }, + { + "rshares": "8839842393", + "voter": "badger317" + }, + { + "rshares": "8583105596", + "voter": "badger3102" + }, + { + "rshares": "8545290354", + "voter": "badger3103" + }, + { + "rshares": "8473652115", + "voter": "badger3125" + }, + { + "rshares": "8440424803", + "voter": "badger3183" + }, + { + "rshares": "523210618", + "voter": "aizen39" + }, + { + "rshares": "3692729259818", + "voter": "satoshifund" + }, + { + "rshares": "409139044923", + "voter": "taoteh1221" + }, + { + "rshares": "418804855", + "voter": "applecrisp" + }, + { + "rshares": "381169481", + "voter": "stiletto" + }, + { + "rshares": "55572589211", + "voter": "juanmiguelsalas" + }, + { + "rshares": "210458611837", + "voter": "will-zewe" + }, + { + "rshares": "380297285001", + "voter": "kaylinart" + }, + { + "rshares": "563706981359", + "voter": "infovore" + }, + { + "rshares": "77665341455", + "voter": "tim-johnston" + }, + { + "rshares": "81000705230", + "voter": "schro" + }, + { + "rshares": "257516084561", + "voter": "trogdor" + }, + { + "rshares": "4491802783", + "voter": "tee-em" + }, + { + "rshares": "32185101127", + "voter": "michaelx" + }, + { + "rshares": "804436229902", + "voter": "anwenbaumeister" + }, + { + "rshares": "5817925334", + "voter": "mark-waser" + }, + { + "rshares": "409576499", + "voter": "keithwillshine" + }, + { + "rshares": "111330095375", + "voter": "geoffrey" + }, + { + "rshares": "202874968510", + "voter": "kimziv" + }, + { + "rshares": "44426159607", + "voter": "honeythief" + }, + { + "rshares": "7049670897", + "voter": "mammasitta" + }, + { + "rshares": "6744340925", + "voter": "tyler-fletcher" + }, + { + "rshares": "79414155694", + "voter": "emily-cook" + }, + { + "rshares": "93849854528", + "voter": "mctiller" + }, + { + "rshares": "2187136185", + "voter": "superfreek" + }, + { + "rshares": "484592257", + "voter": "mrhankeh" + }, + { + "rshares": "4255723858", + "voter": "alexft" + }, + { + "rshares": "1869026224", + "voter": "justoneartist" + }, + { + "rshares": "280886491", + "voter": "ladyclair" + }, + { + "rshares": "3715415813", + "voter": "michaellamden68" + }, + { + "rshares": "161249433461", + "voter": "dashpaymag" + }, + { + "rshares": "174527707979", + "voter": "asmolokalo" + }, + { + "rshares": "57106930713", + "voter": "ezzy" + }, + { + "rshares": "71639420708", + "voter": "rubybian" + }, + { + "rshares": "3214941985", + "voter": "orly" + }, + { + "rshares": "5163778635", + "voter": "riscadox" + }, + { + "rshares": "18842523479", + "voter": "hakise" + }, + { + "rshares": "15354149755", + "voter": "yogi.artist" + }, + { + "rshares": "14213156438", + "voter": "r4fken" + }, + { + "rshares": "389458625", + "voter": "aizen13" + }, + { + "rshares": "3344942110", + "voter": "aizen41" + }, + { + "rshares": "950534210", + "voter": "aizen42" + }, + { + "rshares": "3238263445", + "voter": "aizen46" + }, + { + "rshares": "886294877", + "voter": "aizen47" + }, + { + "rshares": "217253386", + "voter": "aizen48" + }, + { + "rshares": "113259366", + "voter": "aizen49" + }, + { + "rshares": "754082458", + "voter": "busser" + }, + { + "rshares": "941015787", + "voter": "aizen51" + }, + { + "rshares": "1210073491361", + "voter": "renohq" + }, + { + "rshares": "455780965", + "voter": "aizen43" + }, + { + "rshares": "67659539", + "voter": "aizen44" + }, + { + "rshares": "763284602", + "voter": "aizen54" + }, + { + "rshares": "16859493667", + "voter": "ausbitbank" + }, + { + "rshares": "4728705839", + "voter": "gikitiki" + }, + { + "rshares": "11698403373", + "voter": "asim" + }, + { + "rshares": "99758482", + "voter": "snowden" + }, + { + "rshares": "1107690687", + "voter": "karen13" + }, + { + "rshares": "54321503601", + "voter": "shark" + }, + { + "rshares": "20363338717", + "voter": "meiisheree" + }, + { + "rshares": "258937743119", + "voter": "nabilov" + }, + { + "rshares": "8572920051", + "voter": "noodhoog" + }, + { + "rshares": "4205385163", + "voter": "dcryptogold" + }, + { + "rshares": "2668109030", + "voter": "dmacshady" + }, + { + "rshares": "233569693", + "voter": "aizen52" + }, + { + "rshares": "8368498979", + "voter": "herverisson" + }, + { + "rshares": "45693099664", + "voter": "milestone" + }, + { + "rshares": "33727004465", + "voter": "creemej" + }, + { + "rshares": "89580632", + "voter": "wildchild" + }, + { + "rshares": "2579031743", + "voter": "the-future" + }, + { + "rshares": "15372067535", + "voter": "nippel66" + }, + { + "rshares": "190269483", + "voter": "aizen55" + }, + { + "rshares": "163260776578", + "voter": "blueorgy" + }, + { + "rshares": "159387011508", + "voter": "opheliafu" + }, + { + "rshares": "4426428855", + "voter": "poseidon" + }, + { + "rshares": "2033762271", + "voter": "iamwne" + }, + { + "rshares": "79563973688", + "voter": "thylbom" + }, + { + "rshares": "7311858289", + "voter": "geronimo" + }, + { + "rshares": "4308378335", + "voter": "bitcoiner" + }, + { + "rshares": "116496190", + "voter": "bzeen" + }, + { + "rshares": "3756297830", + "voter": "tarindel" + }, + { + "rshares": "31921025901", + "voter": "deanliu" + }, + { + "rshares": "141429957", + "voter": "bento" + }, + { + "rshares": "13069930577", + "voter": "shredlord" + }, + { + "rshares": "13916292595", + "voter": "hagie" + }, + { + "rshares": "53841341992", + "voter": "jl777" + }, + { + "rshares": "1736201261", + "voter": "yarly" + }, + { + "rshares": "261735372", + "voter": "yarly2" + }, + { + "rshares": "262126965", + "voter": "yarly3" + }, + { + "rshares": "151424453", + "voter": "yarly4" + }, + { + "rshares": "152279375", + "voter": "yarly5" + }, + { + "rshares": "86799635", + "voter": "yarly7" + }, + { + "rshares": "100832394226", + "voter": "crazymumzysa" + }, + { + "rshares": "50619397", + "voter": "whalepool" + }, + { + "rshares": "20238670061", + "voter": "prufarchy" + }, + { + "rshares": "35610433440", + "voter": "anca3drandom" + }, + { + "rshares": "206059171", + "voter": "sergey44" + }, + { + "rshares": "6542152680", + "voter": "summonerrk" + }, + { + "rshares": "2012582806", + "voter": "hdd" + }, + { + "rshares": "21120708735", + "voter": "krabgat" + }, + { + "rshares": "4543641049", + "voter": "proto" + }, + { + "rshares": "634074071", + "voter": "curator" + }, + { + "rshares": "33383309924", + "voter": "sisterholics" + }, + { + "rshares": "420072669", + "voter": "yarly10" + }, + { + "rshares": "1404574750", + "voter": "alex.chien" + }, + { + "rshares": "224823596", + "voter": "yarly11" + }, + { + "rshares": "78603899", + "voter": "yarly12" + }, + { + "rshares": "11092117841", + "voter": "phoenixmaid" + }, + { + "rshares": "330141710", + "voter": "esqil" + }, + { + "rshares": "83707323", + "voter": "aizen53" + }, + { + "rshares": "149624601", + "voter": "steemster1" + }, + { + "rshares": "238512214", + "voter": "bullionstackers" + }, + { + "rshares": "6810743439", + "voter": "comealong" + }, + { + "rshares": "2002743924", + "voter": "andreynoch" + }, + { + "rshares": "947490604", + "voter": "metaflute" + }, + { + "rshares": "721310626", + "voter": "karenb54" + }, + { + "rshares": "449108428", + "voter": "bento04" + }, + { + "rshares": "753126143", + "voter": "bento03" + }, + { + "rshares": "1534361646", + "voter": "aizen" + }, + { + "rshares": "2298243810", + "voter": "taker" + }, + { + "rshares": "239545179", + "voter": "bento02" + }, + { + "rshares": "551525219", + "voter": "bento01" + }, + { + "rshares": "1007190932", + "voter": "pakisnxt" + }, + { + "rshares": "14668022793", + "voter": "nekromarinist" + }, + { + "rshares": "1618760149", + "voter": "coinbar" + }, + { + "rshares": "59219358", + "voter": "sharon" + }, + { + "rshares": "2635374169", + "voter": "merej99" + }, + { + "rshares": "61714352", + "voter": "lillianjones" + }, + { + "rshares": "1148224715117", + "voter": "laonie" + }, + { + "rshares": "146176741718", + "voter": "twinner" + }, + { + "rshares": "243451061692", + "voter": "ozchartart" + }, + { + "rshares": "5002368214", + "voter": "croatia" + }, + { + "rshares": "65300521", + "voter": "vladimirputin" + }, + { + "rshares": "23878310347", + "voter": "rawnetics" + }, + { + "rshares": "65308725", + "voter": "angelamerkel" + }, + { + "rshares": "17989038861", + "voter": "thebluepanda" + }, + { + "rshares": "81826244", + "voter": "bento06" + }, + { + "rshares": "24551995771", + "voter": "laoyao" + }, + { + "rshares": "38527150465", + "voter": "myfirst" + }, + { + "rshares": "239628375853", + "voter": "somebody" + }, + { + "rshares": "15892496776", + "voter": "sunshine" + }, + { + "rshares": "9202242828", + "voter": "flysaga" + }, + { + "rshares": "5634572644", + "voter": "brendio" + }, + { + "rshares": "2082686663", + "voter": "gmurph" + }, + { + "rshares": "68250832", + "voter": "missmishel623" + }, + { + "rshares": "82177171859", + "voter": "timsaid" + }, + { + "rshares": "52936380443", + "voter": "midnightoil" + }, + { + "rshares": "81534499564", + "voter": "mibenkito" + }, + { + "rshares": "2375350982", + "voter": "kalimor" + }, + { + "rshares": "63541793", + "voter": "coderg" + }, + { + "rshares": "1018538139", + "voter": "altucher" + }, + { + "rshares": "4186662893", + "voter": "ullikume" + }, + { + "rshares": "101572397", + "voter": "timferriss" + }, + { + "rshares": "53093897", + "voter": "michellek" + }, + { + "rshares": "4650618263", + "voter": "kurtbeil" + }, + { + "rshares": "2798919170", + "voter": "steemleak" + }, + { + "rshares": "109814173501", + "voter": "thisisbenbrick" + }, + { + "rshares": "104692799", + "voter": "darrenrowse" + }, + { + "rshares": "128793789941", + "voter": "xiaohui" + }, + { + "rshares": "83638970", + "voter": "xerneas" + }, + { + "rshares": "106149968", + "voter": "bigsambucca" + }, + { + "rshares": "6403494729", + "voter": "elfkitchen" + }, + { + "rshares": "5935556188", + "voter": "oflyhigh" + }, + { + "rshares": "2226707993", + "voter": "paynode" + }, + { + "rshares": "62525016", + "voter": "nickche" + }, + { + "rshares": "4251472057", + "voter": "xiaokongcom" + }, + { + "rshares": "62201879", + "voter": "msjennifer" + }, + { + "rshares": "57196572", + "voter": "ciao" + }, + { + "rshares": "47958674202", + "voter": "eneismijmich" + }, + { + "rshares": "2951808169", + "voter": "jrcornel" + }, + { + "rshares": "55449983", + "voter": "steemo" + }, + { + "rshares": "179351183", + "voter": "pcashmore" + }, + { + "rshares": "8570039552", + "voter": "xianjun" + }, + { + "rshares": "55306941", + "voter": "steema" + }, + { + "rshares": "59618782", + "voter": "andrew.sullivan" + }, + { + "rshares": "1046049321", + "voter": "brianclark" + }, + { + "rshares": "831589271", + "voter": "daniel.kahneman" + }, + { + "rshares": "232896636", + "voter": "tucker.max" + }, + { + "rshares": "740826654", + "voter": "darren.rowse" + }, + { + "rshares": "55704135", + "voter": "chris.dunn" + }, + { + "rshares": "71282219", + "voter": "confucius" + }, + { + "rshares": "11539993041", + "voter": "borran" + }, + { + "rshares": "3851639124", + "voter": "bledarus" + }, + { + "rshares": "1178246621", + "voter": "pat.flynn" + }, + { + "rshares": "52467942", + "voter": "loli" + }, + { + "rshares": "91473229819", + "voter": "miacats" + }, + { + "rshares": "1223581698", + "voter": "mattmarshall" + }, + { + "rshares": "437783005", + "voter": "timothysykes" + }, + { + "rshares": "106860965", + "voter": "patflynn" + }, + { + "rshares": "56157882", + "voter": "jarvis" + }, + { + "rshares": "561462512", + "voter": "microluck" + }, + { + "rshares": "896991635", + "voter": "andrewsullivan" + }, + { + "rshares": "77220767", + "voter": "razberrijam" + }, + { + "rshares": "54313084", + "voter": "fortuner" + }, + { + "rshares": "2005426994", + "voter": "chinadaily" + }, + { + "rshares": "9358481880", + "voter": "kyriacos" + }, + { + "rshares": "2859735634", + "voter": "virtualgrowth" + }, + { + "rshares": "122302767", + "voter": "thegoldencookie" + }, + { + "rshares": "20137065264", + "voter": "runaway-psyche" + }, + { + "rshares": "755831094058", + "voter": "dollarvigilante" + }, + { + "rshares": "61087248", + "voter": "workout" + }, + { + "rshares": "489129872", + "voter": "harvey.levin" + }, + { + "rshares": "23586282706", + "voter": "mihaiart" + }, + { + "rshares": "10341757518", + "voter": "gvargas123" + }, + { + "rshares": "53056158", + "voter": "johnbyrd" + }, + { + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "rshares": "53037689", + "voter": "thermor" + }, + { + "rshares": "53048942", + "voter": "ficholl" + }, + { + "rshares": "53030738", + "voter": "widell" + }, + { + "rshares": "86340173624", + "voter": "icfiedler" + }, + { + "rshares": "1266977190", + "voter": "laconicflow" + }, + { + "rshares": "52651308", + "voter": "revelbrooks" + }, + { + "rshares": "377542979", + "voter": "mrlogic" + }, + { + "rshares": "194739083", + "voter": "rand.fishkin" + }, + { + "rshares": "50816343", + "voter": "bitchplease" + }, + { + "rshares": "78411391", + "voter": "joelbow" + }, + { + "rshares": "8673217231", + "voter": "onetree" + }, + { + "rshares": "3071905413", + "voter": "imag1ne" + }, + { + "rshares": "64111934444", + "voter": "mandibil" + }, + { + "rshares": "51562255", + "voter": "curpose" + }, + { + "rshares": "1208491149", + "voter": "lenar" + }, + { + "rshares": "9818184488", + "voter": "lesliestarrohara" + }, + { + "rshares": "112927371731", + "voter": "shenanigator" + }, + { + "rshares": "14779778251", + "voter": "macksby" + }, + { + "rshares": "85972582", + "voter": "uziriel" + }, + { + "rshares": "2080022045", + "voter": "funkywanderer" + }, + { + "rshares": "1485475073", + "voter": "linzo" + }, + { + "rshares": "4899042813", + "voter": "richardcrill" + }, + { + "rshares": "2205784762", + "voter": "jeremyfromwi" + }, + { + "rshares": "1688038542", + "voter": "eight-rad" + }, + { + "rshares": "51712804", + "voter": "troich" + }, + { + "rshares": "1624641270", + "voter": "davidjkelley" + }, + { + "rshares": "187911420", + "voter": "team101" + }, + { + "rshares": "51718188", + "voter": "crion" + }, + { + "rshares": "52505412", + "voter": "hitherise" + }, + { + "rshares": "52496656", + "voter": "wiss" + }, + { + "rshares": "13264756693", + "voter": "ghasemkiani" + }, + { + "rshares": "906163750", + "voter": "sponge-bob" + }, + { + "rshares": "4545785145", + "voter": "l0k1" + }, + { + "rshares": "15223303760", + "voter": "digital-wisdom" + }, + { + "rshares": "3708921137", + "voter": "ethical-ai" + }, + { + "rshares": "50784892", + "voter": "freesteem" + }, + { + "rshares": "54391689", + "voter": "jamespro" + }, + { + "rshares": "53252658", + "voter": "stroully" + }, + { + "rshares": "3079499780", + "voter": "maryfromsochi" + }, + { + "rshares": "6679259372", + "voter": "jwaser" + }, + { + "rshares": "51814474", + "voter": "thadm" + }, + { + "rshares": "51812703", + "voter": "prof" + }, + { + "rshares": "1330526017", + "voter": "crypt0mine" + }, + { + "rshares": "646493719", + "voter": "kev7000" + }, + { + "rshares": "1042750516", + "voter": "zettar" + }, + { + "rshares": "51465774", + "voter": "yorsens" + }, + { + "rshares": "177656553", + "voter": "harveylevin" + }, + { + "rshares": "1129213184", + "voter": "chaeya" + }, + { + "rshares": "51154263", + "voter": "bane" + }, + { + "rshares": "51148009", + "voter": "vive" + }, + { + "rshares": "51142585", + "voter": "coad" + }, + { + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "rshares": "2615973485", + "voter": "bwaser" + }, + { + "rshares": "53003720", + "voter": "sofa" + }, + { + "rshares": "2563669906", + "voter": "lilmisjenn" + }, + { + "rshares": "122884931", + "voter": "gary.vaynerchuk" + }, + { + "rshares": "344116052", + "voter": "panther" + }, + { + "rshares": "2201645172", + "voter": "alina1" + }, + { + "rshares": "50639382", + "voter": "doggnostic" + }, + { + "rshares": "689550675", + "voter": "ct-gurus" + }, + { + "rshares": "50377764", + "voter": "jenny-talls" + }, + { + "rshares": "63519834123", + "voter": "tracemayer" + }, + { + "rshares": "905064441", + "voter": "brains" + }, + { + "rshares": "51994517", + "voter": "ailo" + }, + { + "rshares": "1339423728", + "voter": "steemafon" + }, + { + "rshares": "5610795642", + "voter": "chick1" + }, + { + "rshares": "50516543", + "voter": "typingagent" + }, + { + "rshares": "519729361", + "voter": "nelyp" + }, + { + "rshares": "328506462", + "voter": "anomaly" + }, + { + "rshares": "2400090637", + "voter": "ellepdub" + }, + { + "rshares": "113405722", + "voter": "rynow" + }, + { + "rshares": "89841354699", + "voter": "honeyscribe" + }, + { + "rshares": "51415300", + "voter": "timothy.sykes" + }, + { + "rshares": "61292139", + "voter": "inarix03" + }, + { + "rshares": "218488504", + "voter": "ola1" + }, + { + "rshares": "832905434", + "voter": "jbaker585" + }, + { + "rshares": "11803842421", + "voter": "herpetologyguy" + }, + { + "rshares": "28099831450", + "voter": "storyseeker" + }, + { + "rshares": "51470533", + "voter": "eavy" + }, + { + "rshares": "51484593", + "voter": "roto" + }, + { + "rshares": "51659688", + "voter": "drac59" + }, + { + "rshares": "54632106", + "voter": "everittdmickey" + }, + { + "rshares": "780018003", + "voter": "zombiedoll" + }, + { + "rshares": "4709614494", + "voter": "morgan.waser" + }, + { + "rshares": "50602980", + "voter": "cfisher" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "50708837", + "voter": "ardly" + }, + { + "rshares": "50536471", + "voter": "twistys" + }, + { + "rshares": "1822707064", + "voter": "bapparabi" + }, + { + "rshares": "50532230", + "voter": "friends" + }, + { + "rshares": "50487909", + "voter": "opticalillusions" + }, + { + "rshares": "3607671121", + "voter": "strong-ai" + }, + { + "rshares": "516306089", + "voter": "grisha-danunaher" + }, + { + "rshares": "72826233", + "voter": "igtes" + }, + { + "rshares": "705838377", + "voter": "dikanevroman" + }, + { + "rshares": "144899746", + "voter": "buffett" + }, + { + "rshares": "162925257", + "voter": "uct" + }, + { + "rshares": "162904624", + "voter": "allianz" + }, + { + "rshares": "408141953", + "voter": "witchcraftblog" + }, + { + "rshares": "161205518", + "voter": "acute" + }, + { + "rshares": "157931180", + "voter": "pyro" + }, + { + "rshares": "157801695", + "voter": "realtime" + }, + { + "rshares": "304039381", + "voter": "james1987" + }, + { + "rshares": "160870736", + "voter": "electronicarts" + }, + { + "rshares": "1606766770", + "voter": "dresden" + }, + { + "rshares": "201362779", + "voter": "mgibson" + }, + { + "rshares": "152057481", + "voter": "food-creator" + }, + { + "rshares": "159531007", + "voter": "benetton" + }, + { + "rshares": "154417232", + "voter": "jasonxg" + }, + { + "rshares": "159387371", + "voter": "bosch" + }, + { + "rshares": "4918101052", + "voter": "sherlockcupid" + }, + { + "rshares": "158632601", + "voter": "cream" + }, + { + "rshares": "158326081", + "voter": "thomasp" + }, + { + "rshares": "74838700", + "voter": "dealzgal" + }, + { + "rshares": "154959539", + "voter": "mrshanson" + }, + { + "rshares": "83470968", + "voter": "storage" + }, + { + "rshares": "329629477", + "voter": "aldentan" + }, + { + "rshares": "67690648", + "voter": "blackmarket" + }, + { + "rshares": "73837045", + "voter": "gifts" + }, + { + "rshares": "112446078", + "voter": "paulocouto" + }, + { + "rshares": "151927362", + "voter": "countofdelphi" + }, + { + "rshares": "151062983", + "voter": "newsfeed" + }, + { + "rshares": "154022998", + "voter": "sambkf" + }, + { + "rshares": "144957585", + "voter": "sawgunner13" + }, + { + "rshares": "144801473", + "voter": "dirlei.sdias" + }, + { + "rshares": "150387842", + "voter": "trickster512" + } + ], + "author": "fairytalelife", + "author_payout_value": "0.000 HBD", + "author_reputation": 66.97, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\n

Do you want to know what depression feels like? 

\n

Think of a foggy grey muck that encircles you head to toe. Severe depression strips you from being able to experience any joy in life, even when for all the world it appears you have everything going for you.   Watered down commentaries attempt to describe the soul rotting misery of waking up in darkness every day. Who are those who can bolt out of bed ready to face the day with their happy attitudes about life? I don\u2019t know. I\u2019ve never been one. I dread waking up. One of the things really depressed people look forward to is a respite from consciousness. This is why those who suffer tend to sleep so much. It\u2019s escapism. Yet it isn\u2019t, because even in sleep you can be terrorized by your daytime demons. The quality of sleep is not restful \u2013 in fact, rather fitful. This is one reason so many people take mind-numbing tranquilizers to dull their wakeful state just to be able to drift away to somewhere, anywhere else than the dangerous and unchecked arena of the mind.    

\n

People experience the tiers of depression's challenges in different ways. It\u2019s not being disappointed or being in a bad mood if something doesn\u2019t pan out in your favor. You chipped you manicure? Bugger. Irritating, yes, but it\u2019s not the end of the world. For a depressed person,  something minor (for whatever reason) can hurl you head first into a bottomless void of regret and agony. You associate daily life with walking through a minefield. Danger lurks with every step. That ad for an antidepressant that shows a cartoon figure walking around under her own cloud of rain sums up the feeling quite well (of course it does \u2013 sponsored by The Pharmaceutical Cartel). You NEED this drug to function. That\u2019s another post, and I know far too well how drugs are touted as the magic solution. Not even children are safe from their campaigns.

\n

\n

It\u2019s the ultimate mind-fuck factory, this thought prison that leads you through Dante\u2019s circles of hell as you try to scramble your way out of the snake pit. The thoughts pull you back in by your ankles. Like a horror movie, the entity of depression knows what scares you. It knows what makes you wail in despair. It knows your saddest thoughts and flashes those across the movie screen in your head in incessant reruns. You are a spectator, but unable to avert your eyes.   

\n

You have things to do? Most can buck up and get 'er done. A very depressed person knows what must be done yet can\u2019t do it. Cannot. It\u2019s not possible. It has nothing to do with laziness and everything to do with apathy. The effort isn\u2019t worth it. You know you will feel better if such and such gets done. So the obvious solution is to do it. You have errands to run? Get in the car and go. But for a depressed person, the mundane becomes detestable to such an extent that not even the guilt for not doing the things is unable to motivate you enough to accomplish what is impossible in your mind.   

\n

\n

Once while touring Alcatraz, I was struck by something the tour guide told us. The island is positioned in just the right way that all the prisoners could smell the Ghirardelli chocolate factory wafting its chocolate scent across the bay, no doubt driving inmates insane. This is much like depression. You are stuck in a jail cell knowing everyone else is living happily while you miss out on what you know (on some level) is a gift \u2013 life itself. You can only observe from afar.    

\n

You know those days when you feel like a sloth and nothing gets done? For many depressed people that\u2019s every day. By getting nothing done I don\u2019t mean cleaning out the refrigerator or reading a book your friend needs back. I mean responsibilities you must accept as an adult, as a parent. You can\u2019t function. Your kids are hungry, but you can\u2019t do anything about it because you can\u2019t move. You have an empty stare and wonder if it\u2019s too early for a drink. It\u2019s only one in the afternoon. Can it be justified?    

\n

And you can\u2019t stop seeing those stories about the Yulin dog meat festival. This is horrible because an animal suffering is the worst thing in the world to me. Or those commercials by the SPCA. The thoughts hit hard, bating me. \u201cUh oh! She\u2019s making some progress \u2013 what is she sad about? Let\u2019s infect.\u201d Self-sabotage is the name of the game. For a depressed person, thoughts take over and pollute your whole mind.   

\n

You hope you will feel better tomorrow, or someday. You keep saying someday. But that wastes away today. You hide from friends and family because the idea of faking a smile is akin to torture. And you think no one cares about your problems. Or they are tired of hearing about them because they are always the same.   Your brain is wired differently. Some of the most creative genius comes from a desolate mental state. It can, but only If you can get any mental energy together to be productive.   

\n

Your friends email you cures for migraines. You have had to invent numerous excuses that involve having them, because that\u2019s a reasonable excuse to cancel plans. Saying you\u2019re sad or not in the mood will get \u201cI\u2019ll cheer you up\u201d from well-meaning friends and family. But you want to be alone, completely isolated, in bed, with the covers pulled up over your head. And you want to cry. And I don\u2019t mean a few tears. I mean heart-wrenching sobs that no one would want to hear.   

\n

You yell at people you love. You cry easily. They can\u2019t help you but they can sure piss you off. And we are pissed at ourselves, because children have needs that must be met -no question about it. And you know are letting them down with your suffering. Another blow.   We do not feel sorry for ourselves in the traditional sense. We do feel sorry that we can\u2019t get a grip as we are often told to do. We feel guilty for letting others down who matter as they stand by helpless, completely befuddled about their roles in all of this. They feel responsible You want to convey it\u2019s not them or their fault, but they start to not believe you. It\u2019s no one\u2019s fault. It simply is.   

\n

Some days are easier than others. I often do well when the stars align - deceptively so, or maybe not deceptive. Maybe I am getting a handle on this curse. It\u2019s a constant roller coaster of wondering when the happy cart will upturn and everything you manage to put in there (composure, self-esteem, productivity) scatters across the road. And cars are coming, but you have to try to summon up the ability to put them back in and continue on your journey. It\u2019s like you are that one slow car on a hill that everyone zips past because they don\u2019t carry the burden of your load.   

\n

Is life a beautiful thing? Yes. It is. Is it filled with sadness? Yes to that too. Can a depressed person overcome depression? I think so. But in order to answer that, you must be willing to look at your origins to discover what might be holding you back.         

\n

\n

Drawings and painting \u00a9 Johanna Westerman 2016  

\n


\n", + "category": "health", + "children": 44, + "created": "2016-09-14T17:46:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/14/HeadlessHoreseman-medium2d3b42.png", + "https://www.steemimg.com/images/2016/09/14/Brain1b12cc.jpg", + "https://www.steemimg.com/images/2016/09/14/Blanche134386.jpg", + "https://www.steemimg.com/images/2016/09/14/HeadlessHoreseman96dd9.jpg" ], - "author": "richq11", - "author_payout_value": "0.000 HBD", - "author_reputation": 73.52, - "author_role": "member", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "\n

\n

\r
\r
https://threadreaderapp.com/thread/1279218044124966912.html?refreshed=1593874202\r
\r
\r
\r

\n

Russian Oligarchs, Rock Stars, Hollywood & the White House

\n


\n

This segment begins with a documentary called The Silent Children in which several prominent rock stars were involved, among them Chris Cornell, Chester Bennington, D J Avicii, and celebrity chef Anthony Bourdain\u2026 all dead due to \u201csuicide.\u201d Also involved as a \u201cconsultant\u201d was Paul Myhill, founder of Traffic Jam, the charity dedicated to helping the victims of child sex trafficking.

\n


\n

\u201cTraffic Jam works with many faiths, NGOs, and governmental programs. During the start-up of Traffic Jam in 2004, Paul concurrently served as the Vice President of World Orphans, a mid-sized charity that has participated in the funding of over 500 orphan homes in almost 50 countries. In 2006, Paul was appointed as the President/CEO of World Orphans and now leads this global organization.\u201d

\n


\n

http://thesilentchildren.com/consultants-resources/paul-myhill-consultant/

\n


\n

As most people that have investigated Pedogate/Pizzagate know that many of these NGOs are fronts for child trafficking operations and the government agencies involved are complicit in the operations. Myhill\u2019s involvement is questionable at best as his character.

\n


\n

\u201cYou can see his tattoo features a known pedo logo. Masonic imagery can be seen in this photo with Sting. He's palled around with other known assets like Katy Perry and Elton John. Could Myhill be the reason this project never lifted? Did he sell out Cornell and the others?\u201d

\n


\n

\n


\n

David Geffen, the billionaire music producer is one of the keys, a go-between, being friends with the Clintons -- who figure into this in more ways than their friendship with Epstein and Maxwell -- Oprah Winfrey, and many other elites tied to this sick business. There are also some other unusual occurrences such as a $1 million grant that Bennington received from the Clinton Foundation to start a recycling plant in Haiti.

\n


\n

\u201cBennington (Podesta Jr?) and his band, Linkin Park, were given a million dollar grant by the Clinton Foundation to open an SRS recycling plant in...that's right, Haiti. Chester knew about the abuses being committed against the Haitian people.\u201d

\n


\n

https://threadreaderapp.com/thread/1279218044124966912.html?refreshed=1593874202

\n


\n

Chris Cornell got married in 2004 to a woman named Vicki Karayiannis, an escort with some unusual friends -- \u201cThis information was verified by Brittany Murphy before being murdered. Brittany attended the wedding as she was dating Jeff Kwatinetz at the time, who was Cornell's agent back then.\u201d Funny how many of Geffen\u2019s friends, like those close to the Clintons, wind up dead. Another of Vicki\u2019s friends was a woman named Dasha Zhukova who was married to an Israeli/Russian mob boss named \u201cRoman Abramovich (owner of Chelsea FC) and is good friends with David Geffen.\u201d

\n


\n

\u201cPLOT TWIST: Enter Courtney Love. Yes. CL produced a measurable body count, having cleaned up Cobain and others like El Duce and Kristen Pfaff. CL is featured in Epstein's flight logs and his black book. Her many connections kept her out of prison.\u201d

\n


\n

https://threadreaderapp.com/thread/1279218044124966912.html?refreshed=1593874202

\n


\n

Courtney Love is also a friend of Marina Abramovic, the \u201cperformance artist\u201d as well as Hugo Chavez. She was also a frequent flyer on the \u201cLolita Express.\u201d Abramovic also ties many in Hollywood and Washington together. Another friend of Chavez was Sean Penn, the Hollywood A-lister mentioned in the Blind Item article.

\n


\n

\u201cNor is the Hollywood A-Lister with a history of friendship with banana-Republic rulers. That A-Lister was a guest of Mari, as a tag-along with a member of that political family. The A-Lister, for all of his own nasty history, enjoyed the party favors at the foreign hideaway; but he drew the line at partaking in sexual activities. (Which says a lot with that guy\u2019s history).\u201d

\n


\n

\u201cIn fact, the A-Lister (who is either an actor or director or maybe even both), was disgusted by what he was offered by his hosts; and the few things he saw himself. So he partook of partying/drugs, but not the underage sex crimes. According to the A-Lister, he is very scared about the people he did see there and what it could mean if it all came out. Not just as a witness for legal reasons, but scared for his life. Not his career \u2014 as this is a guy who revels in controversy. He is literally afraid for his own life. Maybe he should\u2019ve been more scared\u2026not for himself but for those poor victims\u2026back when he was partying on-site with them all.\u201d

\n


\n

https://medium.com/@TheHimmmm/nasty-business-a-himmmm-blind-item-story-6fc0c8147f5a

\n


\n

Apparently Penn had been recording some of the \u201cfestivities\u201d at the Venezuelan retreat.

\n


\n

\u201cThe A-lister had, in fact, quite a collection of his home videos. Some of these are historical and others are very private. He always planned to keep them \u201csealed\u201d until after his death, then have a filmmaker assemble them once unsealed. Back when he visited the estate to party with Mari and Monster, he took his small camera and recorded the festivities. Until it was suggested to him that he stop immediately. But he had already recorded many of the elite, famous, and powerful guests and some of their partying.\u201d

\n


\n

\u201cWhat he recorded was not so much anything of a criminal nature, but was actual proof of people who were there \u2014 and who they were with. It is proof that contradicts statements of VERY powerful people who deny being at Monster & Mari\u2019s \u201cparties\u201d (or only knowing them briefly years ago). It would be enough to support many of the charges by showing visual proof of who was with who.\u201d

\n


\n

https://medium.com/@TheHimmmm/nasty-business-a-himmmm-blind-item-story-6fc0c8147f5a

\n


\n

The knowledge of this incriminating information is likely a big part of Maxwell reaching out to the Russian Oligarch, Semion Mogilevich. Mogilevich is a shady character with ties to the Russian mob, even to where he has been described as \u201cthe Godfather.\u201d He also has ties to the White House, Donald Trump, and Paul Manafort.

\n


\n

Something was wrong. At first, it was just instinct. During the Republican primaries, things weren\u2019t adding up for us with Donald Trump.\u201d

\n


\n

It wasn\u2019t Donald\u2019s \u201c-isms.\u201d It wasn\u2019t his nature, or his voters, or our own politics. It was what we knew about him from journalists like Wayne Barrett. It was what we knew about Donald\u2019s history, that NO ONE in the current media was properly covering. Why? Something was wrong. WHAT was it?\u00a0

\n


\n

And then came Paul Manafort. He entered the scene as a campaign manager. We knew what that meant. We knew who Manafort was, and where he came from. That was the moment we began to dig. What we found is a simple truth. And now, we\u2019re bringing that truth to you.
http://www.citjourno.org/page-1

\n


\n

What this entire thread is about -- and you can draw your own conclusions -- is Trump\u2019s relationship with Semion Mogilevich. What some want to expand into the realm of \u201cRussian collusion\u201d is in reality simply the way the construction business in New York and other large cities is done. You can\u2019t build anything in NYC without dealing with the mob. They control the unions, concrete delivery and manufacture, trash removal, and the people who do the work. The Italian mob has been replaced in much of this by the Russian mob run by Mogilevich. It has nothing to do with Trump\u2019s politics or his loyalty to the country. Moreover, if the choice is between Trump and the Russian mob vs. the Democrats and Chinese communists, I\u2019ll go with Trump any day.

\n


\n

Ghislaine Maxwell contacting Mogilevich likely had more to do with his contacting Trump to provide protection than facial reconstructive surgery. \u201cSince we don\u2019t yet know what the Russian will do; and Mari hasn\u2019t made her request besides \u201cseeing the doctor\u201d? Then we still don\u2019t know how it all plays out. Even the authorities have yet to pounce. She may have surgery to alter her face/body and go on the lam. She may fake her own suicide or murder. She may actually kill herself or be killed by others. She may even be arrested and caught before she runs. Because if others know what she\u2019s planning \u2014 better believe the cops/security services also know. Whether they act on it (or are allowed to act on it) may be a different story.\u201d

\n


\n

https://medium.com/@TheHimmmm/nasty-business-a-himmmm-blind-item-story-6fc0c8147f5a

\n


\n

Ghislaine has been apprehended so it remains to be seen what arrangements have been put in place to protect her if any. It could very well be that she came back and established residence in a fairly remote place so that she could be apprehended and protected while divulging what she knows.

\n


\n

David Geffen

\n


\n

It should be abundantly clear that the only involvement in this story that President Trump and Semion Mogilevich have is in providing protection for Ghislaine Maxwell, not so with David Geffen and his Hollywood friends and people from the music industry who were either actively engaged in child trafficking, or at least witnesses -- which explains why many of them are dead now.

\n


\n

Chris Cornell, before his death, was about to reveal information about an international child trafficking ring that included Geffen and many others in Hollywood and the music industry.

\n


\n

\u201cGeffen ran into actors (Josh Brolin & James Franco) while out to dinner one night with a friend of Cornell\u2019s wife [Dasha Zhukova] who is an international prostitute. He stopped by the table of Brolin/Franco and allegedly told the A list actor he had fresh meat and should stop by. They did so and apparently Franco engaged in sexual activity with some of these teen boys. I don\u2019t know if the teens he hooked up with were legal or not. Fast forward a little bit. This is where things take an even stranger turn. Apparently the escort was not only hooking up with Franco, but also Chris Cornell himself. Chris\u2019 wife had no idea. I still don\u2019t think she has any idea, although the relationship between the two has grown more frosty as of late. I don\u2019t think Franco knew, but probably wouldn\u2019t have cared. I don\u2019t think Chris Cornell knew about Franco and the escort either because Cornell was gone so frequently. Apparently one of those teens being interviewed mentioned Franco or enough of a description of him that the escort knew who the teen was referring to. Whether she saw the video or heard about it from Vicky Karayiannis, I don\u2019t know. The next thing you know, the escort is telling Franco what she knew and Franco was telling Geffen. Fate sealed. Almost immediately after that, the escort suddenly decides that she needs to leave the country again, where she has remained since. Let us call this actor Franco never one to be discreet about sex or who has sex with or concerned about age, our actor has got into trouble for his behavior in the past.\u201d

\n


\n

https://themetalden.com/chris-cornell-david-geffen-and-the-army-of-evil/

\n



\n

Epstein and Chris Cornell are dead, along with Chet Bennington, DJ Avicci, and Anthony Bourdain (remember who he was married to) and child sex-trafficking in the Caribbean islands and elsewhere is still going strong. Cornell had made a promise to \u201cfight for the kids,\u201d and now he is dead likely from the ring that Geffen is a part of that includes Marina Abramovic, Courtney Love, his wife Vicki, John Podesta, the Clintons, Oprah Winfrey, Harvey Weinstein, James Alefantis, Richard Branson, and many others in the Hollywood/Washington elite circles, as well as their equally perverted friends overseas.

\n


\n

The article from the Metal Den is well worth the read as it connects Geffen to Comet Ping Pong, Marc Collins-Rector, Brock Pierce, and other well-known pedophiles, as well as Courtney Love and many others. But there\u2019s a lot more going on in the Caribbean in addition to child sex-trafficking. It goes on to mention models being recruited, something Epstein and Maxwell played a big part of.

\n


\n

\u201cThere was another group of women that have met a different fate. Most were Instagram models. Men overseas would go on the internet and choose one they wanted. They would then be quoted a fee of between $2500-9500 to a business located in Washington D.C. That business specialized in selling items that were all priced in that range. The crazy thing is though if you took a look at the business, they didn\u2019t actually have any inventory. They were just funneling money for a bunch of different purposes. One of those purposes was providing Instagram models as wives to some very very bad people who had been promised wives if they signed up to fight. Most of these Instagram models that were picked at random had no interest in going overseas even for sex. However, there was plenty that the escort found through her web of other escort friends and models she would talk to online. How to make sure the models were really interested? SB would make a personal plea or his almost equally famous family member. The models would be told easy money was waiting overseas. The models all thought they were going to Dubai. They would start in Dubai but were then transported to other places not as nice and then married off. The people getting the wives were not going to complain about not getting their first choice or try to demand a refund. These models were then paraded and used as a recruitment tool to get more people to sign up to fight. Now, it isn\u2019t clear whether SB or the A+ lister or even the escort or our hated widow knew the full story of these models. I do know they knew the women were being sold/rented to men in Dubai. I know they took a cut of that big fee paid to that mystery business. I know the escort is still trolling for new women online to sell. I don\u2019t know who her new middleman is, but she is still doing it.\u201d

\n


\n

https://themetalden.com/chris-cornell-david-geffen-and-the-army-of-evil/

\n


\n

This is all a part of the documented involvement by Epstein, Leslie Wexner, and the Victoria\u2019s Secret scam that involves Naomi Campbell, Heidi Klum, Rachel Chandler, et.al. in their procurement operation. Who remembers this guy?

\n


\n

\n


\n

This is Patrick Demarchelier, a famous French fashion photographer, who seems to be involved in this affair, perhaps to lend an air of respectability to the operation.

\n


\n

Sex and power go hand in hand, sex has been used as a method of controlling politicians as far back as the Greeks, probably before. As time has gone on, and technology has evolved the methods of control have evolved along with it\u2026 brownstone operations and honey traps. There is also nothing new about sex parties, \u201corgies,\u201d and/or pedophilia, they\u2019ve gone on throughout history as well. Wife-swapping parties have been common in America at least since the 50s, but somewhere along the way the sexual appetites of the elites took on a more sinister, satanic overtone, where satanic rituals became a part of the political/power dynamic, hence the popularity of people such as Marina Abramovic.

\n


\n

Child sacrifice is as old as Moloch worship\u2026 probably older. But it, like the sexual appetites, has taken on a sinister nature where the elites enjoy this perfidy. It\u2019s become more than a tool for blackmail and ascendence in the \u201ccabal,\u201d it\u2019s now a perversion enjoyed by those who practice it\u2026 an evil unto itself. Lamentably, trafficking children for this perversion has become one of the most lucrative black market enterprises there is, 3rd only to drugs and weapons -- and many elites in Hollywood and those in power are profiting handsomely.

\n


\n

As we move on to the Caribbean islands in the next episode, bear in mind that not only children, but drugs, weapons, uranium, and other things are being smuggled by the rich and powerful.

\n


\r
\r

\n", - "category": "hive-122315", - "children": 3, - "community": "hive-122315", - "community_title": "Deep Dives", - "created": "2020-07-07T14:30:42", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "hiveblog/0.1", - "format": "html", - "image": [ - "https://i.postimg.cc/ZnCvps6n/Ec-Ckc-Bv-Xg-AAu0qp.jpg", - "https://lh4.googleusercontent.com/HPfm-9nm64n1wLjF8pg1cwcTSPu1SCpdErmOlFQPsj0R4E7tUjHC7ykBIoFNGM_2pVN49FLvVkhparCBePEtlOPU_QUFdwGkyMbuNLj83UpIt6KsaFX7R1IITuI0tL9dd6lVHE0", - "https://lh6.googleusercontent.com/k9DDxfmhEly0ZbvV8bkTILM7xz0Uq7pv24zCaH3bSS0djvjA9eh3wWSA8YUiyZTyCklMKdb9gMhKPyOp2qBLBk1OOoOXKFycJVNGYWvFptyQOlizkQT7iU-swJJ7kgwsAa5oYUM", - "https://lh4.googleusercontent.com/a8ExeRNTytpTZTDhuFG1r0VEkDOxdDL1_3aLGjubaj_V8d-bSNwsdUBE3ZXVaLO0JOH7_NTQRnxdcLhJAf0JVxOVAtRHipz5L9X5YlpbJlEZ4-kOLQIhzn6uVQjO2LedkHUa6a0" - ], - "links": [ - "https://threadreaderapp.com/thread/1279218044124966912.html?refreshed=1593874202", - "http://thesilentchildren.com/consultants-resources/paul-myhill-consultant/", - "https://medium.com/@TheHimmmm/nasty-business-a-himmmm-blind-item-story-6fc0c8147f5a", - "http://www.citjourno.org/page-1", - "https://themetalden.com/chris-cornell-david-geffen-and-the-army-of-evil/" - ], - "tags": [ - "hive-122315", - "hive", - "deepdives", - "informationwar", - "epstein", - "maxwell", - "pedogate", - "geffen" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 81939466462224, - "payout": 32.829, - "payout_at": "2020-07-14T14:30:42", - "pending_payout_value": "32.829 HBD", - "percent_hbd": 10000, - "permlink": "it-s-bigger-than-you-think-epstein-maxwell-the-pieces-begin-to-fall-into-place-pt-2", - "post_id": 86933188, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 278 - }, - "title": "It\u2019s Bigger Than You Think: Epstein - Maxwell\u2026 The Pieces Begin to Fall Into Place Pt.2", - "updated": "2020-07-07T14:30:42", - "url": "/hive-122315/@richq11/it-s-bigger-than-you-think-epstein-maxwell-the-pieces-begin-to-fall-into-place-pt-2" + "tags": [ + "health", + "art", + "illustration", + "life" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 120989205660828, + "payout": 832.809, + "payout_at": "2016-09-15T20:29:32", + "pending_payout_value": "832.809 HBD", + "percent_hbd": 10000, + "permlink": "the-prison-of-depression", + "post_id": 950898, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 492 + }, + "title": "The Prison of Depression", + "updated": "2016-09-14T19:14:27", + "url": "/health/@fairytalelife/the-prison-of-depression" }, { - "active_votes": [ - { - "rshares": "37351855353", - "voter": "tombstone" - }, - { - "rshares": "779420080059", - "voter": "kingscrown" - }, - { - "rshares": "6094195986899", - "voter": "acidyo" - }, - { - "rshares": "851138605090", - "voter": "kevinwong" - }, - { - "rshares": "522902655297", - "voter": "mark-waser" - }, - { - "rshares": "284767101019", - "voter": "gerber" - }, - { - "rshares": "58770575309", - "voter": "daan" - }, - { - "rshares": "312373776325", - "voter": "ezzy" - }, - { - "rshares": "3412065970", - "voter": "mrwang" - }, - { - "rshares": "371209529604", - "voter": "exyle" - }, - { - "rshares": "5023590556", - "voter": "sharker" - }, - { - "rshares": "3551444099", - "voter": "arconite" - }, - { - "rshares": "4023527413", - "voter": "kibela" - }, - { - "rshares": "3017642048383", - "voter": "shaka" - }, - { - "rshares": "538786925", - "voter": "alinalazareva" - }, - { - "rshares": "9040176288323", - "voter": "jphamer1" - }, - { - "rshares": "3754037740627", - "voter": "joele" - }, - { - "rshares": "9424092349", - "voter": "anech512" - }, - { - "rshares": "53911070966", - "voter": "someguy123" - }, - { - "rshares": "44644697210", - "voter": "patrickulrich" - }, - { - "rshares": "182533485486", - "voter": "uwelang" - }, - { - "rshares": "529457377319", - "voter": "digital-wisdom" - }, - { - "rshares": "2046452069", - "voter": "ethical-ai" - }, - { - "rshares": "24985859132", - "voter": "jwaser" - }, - { - "rshares": "3474683236", - "voter": "funnyman" - }, - { - "rshares": "43620636164", - "voter": "justyy" - }, - { - "rshares": "1518893971", - "voter": "ellepdub" - }, - { - "rshares": "158517872693", - "voter": "herpetologyguy" - }, - { - "rshares": "3665483634", - "voter": "handyman" - }, - { - "rshares": "2129378193", - "voter": "strong-ai" - }, - { - "rshares": "8701060209", - "voter": "vannour" - }, - { - "rshares": "109088110650", - "voter": "edb" - }, - { - "rshares": "988483907", - "voter": "technoprogressiv" - }, - { - "rshares": "21638261402", - "voter": "rahul.stan" - }, - { - "rshares": "216442394513", - "voter": "danielsaori" - }, - { - "rshares": "14660187971", - "voter": "dune69" - }, - { - "rshares": "5174605606", - "voter": "tdiv7653" - }, - { - "rshares": "39428006175", - "voter": "jerrybanfield" - }, - { - "rshares": "68848756592", - "voter": "ironshield" - }, - { - "rshares": "134007610401", - "voter": "masterthematrix" - }, - { - "rshares": "4670129002", - "voter": "ruel.cedeno" - }, - { - "rshares": "47151720073", - "voter": "dkmathstats" - }, - { - "rshares": "131965696590", - "voter": "maxer27" - }, - { - "rshares": "32855399537", - "voter": "sam99" - }, - { - "rshares": "239718744124", - "voter": "ew-and-patterns" - }, - { - "rshares": "95497082223", - "voter": "ladybug146" - }, - { - "rshares": "1087282970", - "voter": "d-pend" - }, - { - "rshares": "67348782389", - "voter": "jacekw" - }, - { - "rshares": "1820101716", - "voter": "sannur" - }, - { - "rshares": "1406410412", - "voter": "shitsignals" - }, - { - "rshares": "26524301563", - "voter": "dine77" - }, - { - "rshares": "1085047632549", - "voter": "steemvote" - }, - { - "rshares": "270028292734", - "voter": "investingpennies" - }, - { - "rshares": "19452788220", - "voter": "felander" - }, - { - "rshares": "567726523", - "voter": "sportsgeek" - }, - { - "rshares": "1668306593", - "voter": "musicgeek" - }, - { - "rshares": "51965149006", - "voter": "bashadow" - }, - { - "rshares": "33064502199", - "voter": "crokkon" - }, - { - "rshares": "50307596222", - "voter": "accelerator" - }, - { - "rshares": "1818213031", - "voter": "yogacoach" - }, - { - "rshares": "4179190702", - "voter": "deathwing" - }, - { - "rshares": "230089957713", - "voter": "revisesociology" - }, - { - "rshares": "43671988834", - "voter": "isnochys" - }, - { - "rshares": "6286717913", - "voter": "dinglehopper" - }, - { - "rshares": "1044420796", - "voter": "liverpool-fan" - }, - { - "rshares": "1296182237", - "voter": "sahil07" - }, - { - "rshares": "1056818570", - "voter": "murattatar" - }, - { - "rshares": "3301520213", - "voter": "anjana77" - }, - { - "rshares": "1730318766", - "voter": "sonu084" - }, - { - "rshares": "14858664404", - "voter": "caladan" - }, - { - "rshares": "700711932", - "voter": "aman433" - }, - { - "rshares": "3965142695", - "voter": "unforgettable" - }, - { - "rshares": "2446818930739", - "voter": "emrebeyler" - }, - { - "rshares": "11225318165", - "voter": "not-a-bird" - }, - { - "rshares": "1267088009", - "voter": "evilest-fiend" - }, - { - "rshares": "562281658", - "voter": "forkonti" - }, - { - "rshares": "78855737435", - "voter": "obvious" - }, - { - "rshares": "1550666506", - "voter": "funtraveller" - }, - { - "rshares": "25694384996", - "voter": "nokodemion" - }, - { - "rshares": "3040091809", - "voter": "tinowhale" - }, - { - "rshares": "609001732", - "voter": "hayirhah" - }, - { - "rshares": "1704369195", - "voter": "slashformotion" - }, - { - "rshares": "9672228117", - "voter": "fromhell2sky" - }, - { - "rshares": "23802643024", - "voter": "neupanedipen" - }, - { - "rshares": "1989931261", - "voter": "ydavgonzalez" - }, - { - "rshares": "103986504641", - "voter": "nealmcspadden" - }, - { - "rshares": "810126950", - "voter": "baycan" - }, - { - "rshares": "941811216", - "voter": "samueladams314" - }, - { - "rshares": "765311909", - "voter": "coinmeria" - }, - { - "rshares": "63557732008", - "voter": "purefood" - }, - { - "rshares": "761002394491", - "voter": "soyrosa" - }, - { - "rshares": "20121025510", - "voter": "portugalcoin" - }, - { - "rshares": "126688629389", - "voter": "chorock" - }, - { - "rshares": "177764389015", - "voter": "chronocrypto" - }, - { - "rshares": "1064993186121", - "voter": "holger80" - }, - { - "rshares": "570750907", - "voter": "lidiceml" - }, - { - "rshares": "8285499999", - "voter": "cadawg" - }, - { - "rshares": "910847311", - "voter": "gavinatorial" - }, - { - "rshares": "832386610", - "voter": "ahmetmertugrul" - }, - { - "rshares": "21978252587", - "voter": "sudefteri" - }, - { - "rshares": "22752323855", - "voter": "photohunt" - }, - { - "rshares": "740554119", - "voter": "photohunter1" - }, - { - "rshares": "1132935109", - "voter": "photohunter4" - }, - { - "rshares": "1094345668", - "voter": "photohunter5" - }, - { - "rshares": "1735356628", - "voter": "pkocjan" - }, - { - "rshares": "571980657", - "voter": "tdogvoid" - }, - { - "rshares": "1435923832", - "voter": "allyson19" - }, - { - "rshares": "1290692058", - "voter": "agememnon" - }, - { - "rshares": "801687016", - "voter": "tipitip" - }, - { - "rshares": "10361381341", - "voter": "ahmeterbay" - }, - { - "rshares": "10950779467", - "voter": "raoul.poenar" - }, - { - "rshares": "52535944565", - "voter": "cst90" - }, - { - "rshares": "568015837", - "voter": "steempampanga" - }, - { - "rshares": "32554750008", - "voter": "thomasthewolf" - }, - { - "rshares": "5289944243", - "voter": "idkpdx" - }, - { - "rshares": "525828408161", - "voter": "backinblackdevil" - }, - { - "rshares": "809558934", - "voter": "ruh" - }, - { - "rshares": "4130114436", - "voter": "frassman" - }, - { - "rshares": "652028240", - "voter": "bulent1976" - }, - { - "rshares": "15072657421", - "voter": "bestboom" - }, - { - "rshares": "19690119915", - "voter": "abrockman" - }, - { - "rshares": "45332478400", - "voter": "muratkbesiroglu" - }, - { - "rshares": "3286859217", - "voter": "mahyulmaulana" - }, - { - "rshares": "91780325730", - "voter": "ronaldoavelino" - }, - { - "rshares": "44469934609", - "voter": "sereze" - }, - { - "rshares": "5744301896", - "voter": "jan23com" - }, - { - "rshares": "15991108498", - "voter": "freddio" - }, - { - "rshares": "3568706981", - "voter": "choco11oreo11" - }, - { - "rshares": "7359788612", - "voter": "ecotone" - }, - { - "rshares": "34989354798", - "voter": "jumbot" - }, - { - "rshares": "155716687516", - "voter": "promobot" - }, - { - "rshares": "1084607367", - "voter": "glodniwiedzy" - }, - { - "rshares": "130971655263", - "voter": "techcoderx" - }, - { - "rshares": "108789100700", - "voter": "enforcer48" - }, - { - "rshares": "777617272", - "voter": "khiabels" - }, - { - "rshares": "20278731181", - "voter": "bilimkurgu" - }, - { - "rshares": "1069770336", - "voter": "krbecrypto" - }, - { - "rshares": "1652809957724", - "voter": "solarwarrior" - }, - { - "rshares": "2280073053", - "voter": "swisswitness" - }, - { - "rshares": "2529499024", - "voter": "adrimonte" - }, - { - "rshares": "1312678726", - "voter": "kahvesizlik" - }, - { - "rshares": "808950246", - "voter": "moneybaby" - }, - { - "rshares": "733187743", - "voter": "luciomcabee" - }, - { - "rshares": "268697194332", - "voter": "sbi6" - }, - { - "rshares": "8390575548", - "voter": "tahirozgen" - }, - { - "rshares": "606339437", - "voter": "pablorg94" - }, - { - "rshares": "44249395939", - "voter": "thehive" - }, - { - "rshares": "2598546768", - "voter": "daath" - }, - { - "rshares": "1087962547", - "voter": "elmauza" - }, - { - "rshares": "599329811", - "voter": "quatro" - }, - { - "rshares": "5404476185", - "voter": "littleshadow" - }, - { - "rshares": "49217501103", - "voter": "dlike" - }, - { - "rshares": "822916850", - "voter": "london65" - }, - { - "rshares": "1821007328", - "voter": "joseph6232" - }, - { - "rshares": "3228155005", - "voter": "emaillisahere" - }, - { - "rshares": "630123207", - "voter": "buzzbee" - }, - { - "rshares": "6399730428", - "voter": "fullnodeupdate" - }, - { - "rshares": "845701313", - "voter": "ceruleanblue" - }, - { - "rshares": "53125993814", - "voter": "engrave" - }, - { - "rshares": "40597542706", - "voter": "gabbynhice" - }, - { - "rshares": "4130992835", - "voter": "caoimhin" - }, - { - "rshares": "1586811093", - "voter": "bobby.madagascar" - }, - { - "rshares": "1463639248", - "voter": "djtrucker" - }, - { - "rshares": "21486959", - "voter": "laissez-faire" - }, - { - "rshares": "0", - "voter": "voter000" - }, - { - "rshares": "654456242", - "voter": "steemituplife" - }, - { - "rshares": "43135506252", - "voter": "marshalmugi" - }, - { - "rshares": "1732182825", - "voter": "podg3" - }, - { - "rshares": "966516944", - "voter": "steemwhalepower" - }, - { - "rshares": "39502259358", - "voter": "mister-meeseeks" - }, - { - "rshares": "5015268562", - "voter": "misstaken" - }, - { - "rshares": "5000007307", - "voter": "thisnewgirl" - }, - { - "rshares": "2092854591", - "voter": "anti-bully" - }, - { - "rshares": "2443208397", - "voter": "twoshyguys" - }, - { - "rshares": "16215201860", - "voter": "maonx" - }, - { - "rshares": "22626275782", - "voter": "followjohngalt" - }, - { - "rshares": "1504827608", - "voter": "daisybuzz" - }, - { - "rshares": "1998685233", - "voter": "jussbren" - }, - { - "rshares": "8189587053", - "voter": "avel692" - }, - { - "rshares": "970154495", - "voter": "criptoanarquista" - }, - { - "rshares": "-121753598", - "voter": "dein-problem" - }, - { - "rshares": "22338521079", - "voter": "moneytron" - }, - { - "rshares": "15388685122", - "voter": "rasalom" - }, - { - "rshares": "10757420274", - "voter": "brucutu" - }, - { - "rshares": "956543331", - "voter": "leviackerman" - }, - { - "rshares": "80299199966", - "voter": "bluerobo" - }, - { - "rshares": "828117295", - "voter": "starfighter" - }, - { - "rshares": "749628029", - "voter": "seekingalpha" - }, - { - "rshares": "756642398", - "voter": "permaculturedude" - }, - { - "rshares": "5252801609", - "voter": "hanke" - }, - { - "rshares": "806738409", - "voter": "goodcontentbot" - }, - { - "rshares": "613026307", - "voter": "samflow" - }, - { - "rshares": "22430330997", - "voter": "curationvoter" - }, - { - "rshares": "962492869", - "voter": "realgoodcontent" - }, - { - "rshares": "1535866912", - "voter": "cooperfelix" - }, - { - "rshares": "11548840271", - "voter": "steemslotgames" - }, - { - "rshares": "549589107", - "voter": "cabalen" - }, - { - "rshares": "1035769683", - "voter": "sm-skynet" - }, - { - "rshares": "606371696", - "voter": "angelanichole" - }, - { - "rshares": "14065088020", - "voter": "cpt-sparrow" - }, - { - "rshares": "1586602985", - "voter": "bitcoinator" - }, - { - "rshares": "1858493352", - "voter": "korle" - }, - { - "rshares": "18419890099", - "voter": "maryincryptoland" - }, - { - "rshares": "3496536041", - "voter": "raspibot" - }, - { - "rshares": "5566249732", - "voter": "gulf41" - }, - { - "rshares": "17763614897762", - "voter": "likwid" - }, - { - "rshares": "6577796991", - "voter": "map10k" - }, - { - "rshares": "565160531", - "voter": "suigener1s" - }, - { - "rshares": "1696178138", - "voter": "milu-the-dog" - }, - { - "rshares": "16217403245", - "voter": "yeswecan" - }, - { - "rshares": "1401399304", - "voter": "triplea.bot" - }, - { - "rshares": "104858544797", - "voter": "steem.leo" - }, - { - "rshares": "3265360637", - "voter": "freddio.sport" - }, - { - "rshares": "22605964566", - "voter": "asteroids" - }, - { - "rshares": "1092236935", - "voter": "midlet-creates" - }, - { - "rshares": "1428080506", - "voter": "sbi-tokens" - }, - { - "rshares": "678884416", - "voter": "one.life" - }, - { - "rshares": "29728613044", - "voter": "acta" - }, - { - "rshares": "18507566960", - "voter": "the-table" - }, - { - "rshares": "4403098745", - "voter": "cardtrader" - }, - { - "rshares": "20618783821", - "voter": "maxuvd" - }, - { - "rshares": "1885017000", - "voter": "thehouse" - }, - { - "rshares": "1061193651", - "voter": "mister.reatard" - }, - { - "rshares": "134963581002", - "voter": "silverquest" - }, - { - "rshares": "8562822710", - "voter": "honeychip" - }, - { - "rshares": "4899723084", - "voter": "gmlrecordz" - }, - { - "rshares": "1280337588", - "voter": "ribary" - }, - { - "rshares": "362896310450", - "voter": "choppy" - }, - { - "rshares": "1741513369", - "voter": "kgsupport" - }, - { - "rshares": "23732467128", - "voter": "mice-k" - }, - { - "rshares": "1970992846", - "voter": "curamax" - }, - { - "rshares": "1732398526", - "voter": "tommys.shop" - }, - { - "rshares": "780364014", - "voter": "steemcityrewards" - }, - { - "rshares": "1008713029", - "voter": "dpend.active" - }, - { - "rshares": "147290558097", - "voter": "steem24" - }, - { - "rshares": "19533462092737", - "voter": "innerhive" - }, - { - "rshares": "577617880", - "voter": "hivewaves" - }, - { - "rshares": "3405107342", - "voter": "blue-witness" - }, - { - "rshares": "1701663465", - "voter": "hivevenezuela" - }, - { - "rshares": "379076852607", - "voter": "softworld" - }, - { - "rshares": "10654117627", - "voter": "polish.hive" - }, - { - "rshares": "800243079", - "voter": "sunsan" - }, - { - "rshares": "98432873048", - "voter": "dcityrewards" - }, - { - "rshares": "836496634", - "voter": "marvschurchill1" - }, - { - "rshares": "1487630239", - "voter": "paulman" - }, - { - "rshares": "1456084851", - "voter": "ninnu" - }, - { - "rshares": "1099908221", - "voter": "yugimuto" - }, - { - "rshares": "88328746854", - "voter": "ghaazi" - }, - { - "rshares": "941841461", - "voter": "magodelcaosnegro" - }, - { - "rshares": "331901958749", - "voter": "ronavel" - }, - { - "rshares": "864912337", - "voter": "sagadegeminis" - }, - { - "rshares": "99676754564", - "voter": "hivecur" - }, - { - "rshares": "939697753", - "voter": "constantinopla" - }, - { - "rshares": "815631871", - "voter": "bellaciao" - }, - { - "rshares": "939160207", - "voter": "jesucristo" - }, - { - "rshares": "938977393", - "voter": "yodinzaku" - }, - { - "rshares": "938934066", - "voter": "lordarianthus" - }, - { - "rshares": "938748165", - "voter": "spiritminer" - }, - { - "rshares": "954648565", - "voter": "drfate" - }, - { - "rshares": "954544159", - "voter": "confucio" - }, - { - "rshares": "954294405", - "voter": "splintergod" - }, - { - "rshares": "940758336", - "voter": "magnor" - }, - { - "rshares": "0", - "voter": "mutabor78" - }, - { - "rshares": "968391492", - "voter": "meele" - }, - { - "rshares": "968386986", - "voter": "kretchtallevor" - } + "active_votes": [ + { + "rshares": "231806896049", + "voter": "anonymous" + }, + { + "rshares": "40039727156805", + "voter": "blocktrades" + }, + { + "rshares": "81139043695", + "voter": "friend5" + }, + { + "rshares": "5563642779143", + "voter": "kushed" + }, + { + "rshares": "4361056998354", + "voter": "roadscape" + }, + { + "rshares": "11463456159", + "voter": "by24seven" + }, + { + "rshares": "48198557404", + "voter": "twiceuponatime" + }, + { + "rshares": "253716125229", + "voter": "indominon" + }, + { + "rshares": "72048644865", + "voter": "vault" + }, + { + "rshares": "22916314085", + "voter": "wpalczynski" + }, + { + "rshares": "23645584002", + "voter": "nikolai" + }, + { + "rshares": "143164562367", + "voter": "chris4210" + }, + { + "rshares": "24193131603", + "voter": "acidyo" + }, + { + "rshares": "313691550", + "voter": "coar" + }, + { + "rshares": "1061234978", + "voter": "murh" + }, + { + "rshares": "33781972641", + "voter": "ratel" + }, + { + "rshares": "208364758717", + "voter": "kimziv" + }, + { + "rshares": "45145254362", + "voter": "venuspcs" + }, + { + "rshares": "7264907621", + "voter": "getssidetracked" + }, + { + "rshares": "1414199127", + "voter": "trees" + }, + { + "rshares": "197179742", + "voter": "strawhat" + }, + { + "rshares": "844421054", + "voter": "endgame" + }, + { + "rshares": "118094280271", + "voter": "furion" + }, + { + "rshares": "2834923420", + "voter": "steem1653" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "3735950544", + "voter": "incomemonthly" + }, + { + "rshares": "6392090406", + "voter": "cryptosi" + }, + { + "rshares": "243749878708", + "voter": "nabilov" + }, + { + "rshares": "677892916", + "voter": "luisucv34" + }, + { + "rshares": "34761252099", + "voter": "creemej" + }, + { + "rshares": "167304333801", + "voter": "blueorgy" + }, + { + "rshares": "4545098461", + "voter": "poseidon" + }, + { + "rshares": "41053239884", + "voter": "celsius100" + }, + { + "rshares": "1659490970", + "voter": "tokyodude" + }, + { + "rshares": "128098702", + "voter": "mysteem" + }, + { + "rshares": "6168588588", + "voter": "chloetaylor" + }, + { + "rshares": "34309889652", + "voter": "sisterholics" + }, + { + "rshares": "59017018", + "voter": "reported" + }, + { + "rshares": "55047214", + "voter": "krushing" + }, + { + "rshares": "1213316718415", + "voter": "laonie" + }, + { + "rshares": "21929710586", + "voter": "rawnetics" + }, + { + "rshares": "41307699258", + "voter": "myfirst" + }, + { + "rshares": "246282932283", + "voter": "somebody" + }, + { + "rshares": "9450611021", + "voter": "flysaga" + }, + { + "rshares": "513541455", + "voter": "minnowsunited" + }, + { + "rshares": "54405663387", + "voter": "midnightoil" + }, + { + "rshares": "54018085", + "voter": "whatyouganjado" + }, + { + "rshares": "136080800992", + "voter": "xiaohui" + }, + { + "rshares": "6792049578", + "voter": "elfkitchen" + }, + { + "rshares": "61187902", + "voter": "makaveli" + }, + { + "rshares": "4366196499", + "voter": "xiaokongcom" + }, + { + "rshares": "7475701368", + "voter": "thebotkiller" + }, + { + "rshares": "8801500509", + "voter": "xianjun" + }, + { + "rshares": "11292536945", + "voter": "borran" + }, + { + "rshares": "53669860", + "voter": "alexbones" + }, + { + "rshares": "576331905", + "voter": "microluck" + }, + { + "rshares": "1310823380", + "voter": "stevescoins" + }, + { + "rshares": "3089652212", + "voter": "macartem" + }, + { + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "rshares": "156958768", + "voter": "nang1" + }, + { + "rshares": "166282713", + "voter": "kamil5" + }, + { + "rshares": "51156498", + "voter": "dobbydaba" + }, + { + "rshares": "5950976762", + "voter": "trev" + }, + { + "rshares": "8773942171", + "voter": "craigwilliamz" + }, + { + "rshares": "72624506", + "voter": "ozertayiz" + }, + { + "rshares": "53639497", + "voter": "salebored" + }, + { + "rshares": "736031742", + "voter": "freeinthought" + }, + { + "rshares": "63258691", + "voter": "arnoldz61" + }, + { + "rshares": "2101747450", + "voter": "eight-rad" + }, + { + "rshares": "53681172", + "voter": "bitdrone" + }, + { + "rshares": "53672498", + "voter": "sleepcult" + }, + { + "rshares": "54175638", + "voter": "apparat" + }, + { + "rshares": "12276570645", + "voter": "doitvoluntarily" + }, + { + "rshares": "135393340675", + "voter": "thecyclist" + }, + { + "rshares": "52015504", + "voter": "analyzethis" + }, + { + "rshares": "63904547", + "voter": "freebornangel" + }, + { + "rshares": "52154065", + "voter": "nommo" + }, + { + "rshares": "51261721", + "voter": "f1111111" + }, + { + "rshares": "339287005", + "voter": "anomaly" + }, + { + "rshares": "98545946", + "voter": "ola1" + }, + { + "rshares": "63588518", + "voter": "mari5555na" + }, + { + "rshares": "2996735269", + "voter": "powerup" + }, + { + "rshares": "527464783", + "voter": "grisha-danunaher" + }, + { + "rshares": "161974443", + "voter": "zapply" + }, + { + "rshares": "158561921", + "voter": "jyriygo" + }, + { + "rshares": "136494240", + "voter": "bleujay" + }, + { + "rshares": "153397644", + "voter": "milank" + }, + { + "rshares": "150273031", + "voter": "inkwisitiveguy01" + } + ], + "author": "powerup", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "So far, a great number of applications, or tools that can considerably improve our user experience whether we are old users or new, has been created. The application directory created by @roelandp is accepted as an official directory that currently contains more than 80 various tools, mainly created by the community members, with a few official ones. The number of applications is growing rapidly, thanks to talented developers and other users, whose ideas are being converted into functional programs.\n\nHere, I want to introduce you to an infographic that contains 17 very useful tools singled out and sorted into categories according to their use. The first category 'for new and old users' contains essential applications for most users, including applications such as the official chat server and block explorer, as well as a dedicated service for uninterrupted adding of photos, @jesta's tool for easier tracking of data related to your account, and a tool for real-time Steem Backed Dollar conversion, with a few extra applications included in the service.\n\nThe next group contains the applications essential for developers, led by @xeroc's piston which says for itself 'The Swiff Army Knife for the Steem network'. They facilitate the communication with the steem blockchain and there is also an application that facilitates the integration of Steem payments to your service. \n\nThe Miscellaneous group contains a variety of useful applications such as tools for curators, a precise browser of user reputation, a dedicated tool for creating shortened links with statistics, a Steem Stream display of all activity in real time with an option of adjusting your settings, as well as speech community and radio.\n\nLast group are applications in the category of data and analytics that contain most of data about the network, the network activity and the users. \n\nI apologize in advance if some of your favorite applications have been left out; if that is the case, you can always visit http://SteemTools.com which contains all the applications.\n\n*For a clearer view, it is recommended that you open the image in full resolution.* *[Infographic Hotlink!](http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png)*\nhttps://s11.postimg.io/8uxamnavn/revision_02.png\n---\n ![http://steemit.com/@powerup](https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png)", + "category": "infographic", + "children": 6, + "created": "2016-09-15T16:45:09", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s11.postimg.io/8uxamnavn/revision_02.png", + "https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png" ], - "author": "emrebeyler", - "author_payout_value": "0.000 HBD", - "author_reputation": 75.06, - "beneficiaries": [], - "blacklists": [], - "body": "
\n
\"Standards\" by XKCD
\n\n***\nOnce upon a time, one developer at Steemit inc. decided to add some custom flavors to the the [official Markdown syntax](https://daringfireball.net/projects/markdown/syntax). One widely used example is that you can just paste image URLs into the post body, and they will be converted into an `img` HTML element, automatically.\n\nOne can argue that this is a very good usability thing for the end-users, but these kinds of custom flavors come with its own problems. Since users are expecting this behavior in everywhere, other HIVE interfaces also needs to implement the *\"Condenser flavored Markdown\".* \n\nAnd guess what, it's not really modular, so you can't just use it as a package, you need to pull the related parts from the Condenser, manually. \n\nWe need a unified \"Hive-Flavored-Markdown\" package for Javascript (also preferably with other popular programming languages) so that every interface uses a common library to handle the differences.", - "category": "condenser", - "children": 7, - "created": "2020-07-07T13:36:03", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "hiveblog/0.1", - "format": "markdown", - "image": [ - "https://imgs.xkcd.com/comics/standards.png" - ], - "links": [ - "https://xkcd.com/927/", - "https://daringfireball.net/projects/markdown/syntax" - ], - "tags": [ - "markdown" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 77424160152197, - "payout": 30.911, - "payout_at": "2020-07-14T13:36:03", - "pending_payout_value": "30.911 HBD", - "percent_hbd": 10000, - "permlink": "standards-and-hive-markdown", - "post_id": 86932486, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 263 - }, - "title": "Standards and HIVE markdown", - "updated": "2020-07-07T18:44:48", - "url": "/condenser/@emrebeyler/standards-and-hive-markdown" - }, - { - "active_votes": [ - { - "rshares": "458949718280", - "voter": "fminerten" - }, - { - "rshares": "5147376393412", - "voter": "steempty" - }, - { - "rshares": "47758084923", - "voter": "enlil" - }, - { - "rshares": "259439414112", - "voter": "tombstone" - }, - { - "rshares": "382502360162", - "voter": "camilla" - }, - { - "rshares": "3118425083414", - "voter": "kingscrown" - }, - { - "rshares": "28598571363", - "voter": "cryptogee" - }, - { - "rshares": "126194580819", - "voter": "nanzo-scoop" - }, - { - "rshares": "17885231765", - "voter": "mummyimperfect" - }, - { - "rshares": "5915588102598", - "voter": "kevinwong" - }, - { - "rshares": "7117512210", - "voter": "ak2020" - }, - { - "rshares": "11383374538", - "voter": "justtryme90" - }, - { - "rshares": "534059683117", - "voter": "mark-waser" - }, - { - "rshares": "560861961", - "voter": "emily-cook" - }, - { - "rshares": "255275128309", - "voter": "gerber" - }, - { - "rshares": "58788025096", - "voter": "daan" - }, - { - "rshares": "279049012278", - "voter": "ezzy" - }, - { - "rshares": "33799985041", - "voter": "hitmeasap" - }, - { - "rshares": "24269933054", - "voter": "mrwang" - }, - { - "rshares": "48410603406", - "voter": "ardina" - }, - { - "rshares": "15478995688810", - "voter": "livingfree" - }, - { - "rshares": "2698504967", - "voter": "nascimentoab" - }, - { - "rshares": "4970729286", - "voter": "jillfeint" - }, - { - "rshares": "372895511713", - "voter": "herverisson" - }, - { - "rshares": "61896361225", - "voter": "arcange" - }, - { - "rshares": "361409320498", - "voter": "exyle" - }, - { - "rshares": "25140872478", - "voter": "arconite" - }, - { - "rshares": "1626172306", - "voter": "raphaelle" - }, - { - "rshares": "189482689290", - "voter": "ace108" - }, - { - "rshares": "9475792049009", - "voter": "jphamer1" - }, - { - "rshares": "28225996282", - "voter": "fooblic" - }, - { - "rshares": "503401325988", - "voter": "borran" - }, - { - "rshares": "14506864875", - "voter": "azizbd" - }, - { - "rshares": "1888315477", - "voter": "bert0" - }, - { - "rshares": "748473026", - "voter": "peppernrino" - }, - { - "rshares": "48424365665", - "voter": "someguy123" - }, - { - "rshares": "497416904734", - "voter": "mattclarke" - }, - { - "rshares": "154781280440", - "voter": "foxkoit" - }, - { - "rshares": "253183516449", - "voter": "daveks" - }, - { - "rshares": "257509296333", - "voter": "uwelang" - }, - { - "rshares": "529507411333", - "voter": "digital-wisdom" - }, - { - "rshares": "2071875244", - "voter": "ethical-ai" - }, - { - "rshares": "25569628825", - "voter": "jwaser" - }, - { - "rshares": "158813371426", - "voter": "lyubovbar" - }, - { - "rshares": "2176137714124", - "voter": "abh12345" - }, - { - "rshares": "176376191936", - "voter": "justyy" - }, - { - "rshares": "6634304045", - "voter": "t-bot" - }, - { - "rshares": "3153997293", - "voter": "fukako" - }, - { - "rshares": "49320871875", - "voter": "clayboyn" - }, - { - "rshares": "16895745399", - "voter": "freshfund" - }, - { - "rshares": "2161183515", - "voter": "strong-ai" - }, - { - "rshares": "2531825516", - "voter": "syahhiran" - }, - { - "rshares": "275781765165", - "voter": "techslut" - }, - { - "rshares": "201191146755", - "voter": "jaybird" - }, - { - "rshares": "147751027662", - "voter": "slider2990" - }, - { - "rshares": "17630512753500", - "voter": "created" - }, - { - "rshares": "996704771", - "voter": "technoprogressiv" - }, - { - "rshares": "21651256890", - "voter": "mafeeva" - }, - { - "rshares": "31731719509", - "voter": "sebastianjago" - }, - { - "rshares": "4574218880222", - "voter": "tarazkp" - }, - { - "rshares": "1129944344", - "voter": "ihsan19" - }, - { - "rshares": "3190183950", - "voter": "sudutpandang" - }, - { - "rshares": "1879870849", - "voter": "nicewoody69" - }, - { - "rshares": "112182330285", - "voter": "markkujantunen" - }, - { - "rshares": "10904748435", - "voter": "evildeathcore" - }, - { - "rshares": "2755835346", - "voter": "yuslindwi" - }, - { - "rshares": "2850348152300", - "voter": "diggndeeper.com" - }, - { - "rshares": "176085690816", - "voter": "louisthomas" - }, - { - "rshares": "808597671", - "voter": "dapu" - }, - { - "rshares": "1915856351", - "voter": "freebornsociety" - }, - { - "rshares": "732510168", - "voter": "cryptophunk" - }, - { - "rshares": "2117427082", - "voter": "teachblogger" - }, - { - "rshares": "4601048689", - "voter": "ma1neevent" - }, - { - "rshares": "51460646846", - "voter": "zaragast" - }, - { - "rshares": "18779558655", - "voter": "htliao" - }, - { - "rshares": "13127917278", - "voter": "dune69" - }, - { - "rshares": "12083868279", - "voter": "arnel" - }, - { - "rshares": "116679123354", - "voter": "thenightflier" - }, - { - "rshares": "1920549347", - "voter": "mrstaf" - }, - { - "rshares": "2491769127", - "voter": "gmuxx" - }, - { - "rshares": "326877058471", - "voter": "drag33" - }, - { - "rshares": "34523038310", - "voter": "thethreehugs" - }, - { - "rshares": "92820281773", - "voter": "swelker101" - }, - { - "rshares": "9822198659", - "voter": "mys" - }, - { - "rshares": "74644040126", - "voter": "ironshield" - }, - { - "rshares": "4730183420", - "voter": "varunpinto" - }, - { - "rshares": "441574848498", - "voter": "isaria" - }, - { - "rshares": "1177491842", - "voter": "rycharde" - }, - { - "rshares": "21475693667", - "voter": "theywillkillyou" - }, - { - "rshares": "599795816", - "voter": "chuckyfucky" - }, - { - "rshares": "109123312072", - "voter": "stevelivingston" - }, - { - "rshares": "79461729251", - "voter": "necio" - }, - { - "rshares": "94366981987", - "voter": "elteamgordo" - }, - { - "rshares": "45618252572", - "voter": "schoolforsdg4" - }, - { - "rshares": "80156695985", - "voter": "djynn" - }, - { - "rshares": "68984794604", - "voter": "carolkean" - }, - { - "rshares": "1152884166062", - "voter": "giuatt07" - }, - { - "rshares": "1595705393729", - "voter": "galenkp" - }, - { - "rshares": "46539453729", - "voter": "swaraj" - }, - { - "rshares": "20363722035", - "voter": "freddbrito" - }, - { - "rshares": "46675022775", - "voter": "chrispy99" - }, - { - "rshares": "2127686774", - "voter": "howtostartablog" - }, - { - "rshares": "190822034152", - "voter": "dandesign86" - }, - { - "rshares": "50694607719", - "voter": "jayna" - }, - { - "rshares": "3811442156", - "voter": "whd" - }, - { - "rshares": "40323961455", - "voter": "deniskj" - }, - { - "rshares": "737341800", - "voter": "d-pend" - }, - { - "rshares": "8249340775", - "voter": "makrotheblack" - }, - { - "rshares": "188872932956", - "voter": "benedict08" - }, - { - "rshares": "2739763030", - "voter": "britcoins" - }, - { - "rshares": "46892332215", - "voter": "khoon" - }, - { - "rshares": "1825167953", - "voter": "st3llar" - }, - { - "rshares": "15319994890", - "voter": "otom" - }, - { - "rshares": "41549829932", - "voter": "kristyglas" - }, - { - "rshares": "78922791599", - "voter": "goldkey" - }, - { - "rshares": "5567581668", - "voter": "gooze" - }, - { - "rshares": "72817781958", - "voter": "drorion" - }, - { - "rshares": "680391811", - "voter": "sirdeza" - }, - { - "rshares": "1249903504", - "voter": "shitsignals" - }, - { - "rshares": "2581461262", - "voter": "attajuttjj" - }, - { - "rshares": "10332027639", - "voter": "dine77" - }, - { - "rshares": "2998970994", - "voter": "tykee" - }, - { - "rshares": "1063354716835", - "voter": "steemvote" - }, - { - "rshares": "152678027536", - "voter": "steempostitalia" - }, - { - "rshares": "18127091577", - "voter": "macchiata" - }, - { - "rshares": "14033993328", - "voter": "diana01" - }, - { - "rshares": "281127867144", - "voter": "investingpennies" - }, - { - "rshares": "16098792184", - "voter": "mamalikh13" - }, - { - "rshares": "65596584570", - "voter": "podnikatel" - }, - { - "rshares": "103428306035", - "voter": "shanibeer" - }, - { - "rshares": "27955689708", - "voter": "fionasfavourites" - }, - { - "rshares": "810735258544", - "voter": "onetin84" - }, - { - "rshares": "1216381674", - "voter": "nascimentocb" - }, - { - "rshares": "17311338819", - "voter": "felander" - }, - { - "rshares": "40503185451", - "voter": "elenasteem" - }, - { - "rshares": "8700891080", - "voter": "santigs" - }, - { - "rshares": "829557484", - "voter": "kromtar" - }, - { - "rshares": "24606972569", - "voter": "thelordsharvest" - }, - { - "rshares": "9123428458", - "voter": "kimzwarch" - }, - { - "rshares": "30097553082", - "voter": "olusolaemmanuel" - }, - { - "rshares": "41023836198", - "voter": "redouanemez" - }, - { - "rshares": "21155312641", - "voter": "onartbali" - }, - { - "rshares": "3270197745", - "voter": "nurhayati" - }, - { - "rshares": "1083217414", - "voter": "fbslo" - }, - { - "rshares": "49605340950", - "voter": "accelerator" - }, - { - "rshares": "18312687776", - "voter": "artonmysleeve" - }, - { - "rshares": "2220609728", - "voter": "hokkaido" - }, - { - "rshares": "3061241302", - "voter": "justinparke" - }, - { - "rshares": "48211747047", - "voter": "alinakot" - }, - { - "rshares": "9534138905", - "voter": "apasia.tech" - }, - { - "rshares": "1622603551", - "voter": "yogacoach" - }, - { - "rshares": "121994637572", - "voter": "rosatravels" - }, - { - "rshares": "199058457169", - "voter": "sorin.cristescu" - }, - { - "rshares": "1768604752", - "voter": "joe.public" - }, - { - "rshares": "153401997985", - "voter": "roleerob" - }, - { - "rshares": "3737204407", - "voter": "deathwing" - }, - { - "rshares": "1162297973", - "voter": "hillaryaa" - }, - { - "rshares": "333802000614", - "voter": "revisesociology" - }, - { - "rshares": "926795346", - "voter": "monita05" - }, - { - "rshares": "1562502524", - "voter": "walidchabir" - }, - { - "rshares": "713050035612", - "voter": "puncakbukit" - }, - { - "rshares": "14955438984", - "voter": "espoem" - }, - { - "rshares": "19740659130", - "voter": "dilimunanzar" - }, - { - "rshares": "666296583", - "voter": "steembet.asia" - }, - { - "rshares": "1779748815", - "voter": "acehnature" - }, - { - "rshares": "10240777266", - "voter": "afrikablr" - }, - { - "rshares": "14747345807", - "voter": "mcfarhat" - }, - { - "rshares": "66347219970", - "voter": "jlsplatts" - }, - { - "rshares": "2275646491", - "voter": "gvand" - }, - { - "rshares": "28786598198", - "voter": "enjieneer" - }, - { - "rshares": "731309421", - "voter": "maria.isaaccura" - }, - { - "rshares": "17858830445", - "voter": "gringo211985" - }, - { - "rshares": "11990345464", - "voter": "kobusu" - }, - { - "rshares": "25619543905", - "voter": "heidi71" - }, - { - "rshares": "145611089810", - "voter": "andywong31" - }, - { - "rshares": "90379682936", - "voter": "khaleelkazi" - }, - { - "rshares": "5064476227", - "voter": "stevejhuggett" - }, - { - "rshares": "81683276907", - "voter": "zoidsoft" - }, - { - "rshares": "967254332", - "voter": "enolife" - }, - { - "rshares": "1136025549", - "voter": "puggle" - }, - { - "rshares": "4379545571", - "voter": "princeso" - }, - { - "rshares": "1819444990", - "voter": "kimchi-king" - }, - { - "rshares": "12501797049", - "voter": "battebilly" - }, - { - "rshares": "1815742175", - "voter": "michaeljpsalazar" - }, - { - "rshares": "13303897628", - "voter": "caladan" - }, - { - "rshares": "11189494080", - "voter": "ronak10" - }, - { - "rshares": "662299825003", - "voter": "lays" - }, - { - "rshares": "5121165333", - "voter": "cryptotradingfr" - }, - { - "rshares": "27920370108", - "voter": "cizzo" - }, - { - "rshares": "245214500547", - "voter": "snook" - }, - { - "rshares": "192918249785", - "voter": "ybanezkim26" - }, - { - "rshares": "3861896037", - "voter": "legendarryll" - }, - { - "rshares": "24950723846", - "voter": "fknmayhem" - }, - { - "rshares": "10420544525", - "voter": "tradingideas" - }, - { - "rshares": "89142557557", - "voter": "emrebeyler" - }, - { - "rshares": "11668453471", - "voter": "senorcoconut" - }, - { - "rshares": "151681261357", - "voter": "xabi" - }, - { - "rshares": "3514191707", - "voter": "yulem" - }, - { - "rshares": "56797877740", - "voter": "hanen" - }, - { - "rshares": "11163839820", - "voter": "not-a-bird" - }, - { - "rshares": "2502643120", - "voter": "hrhmikelength" - }, - { - "rshares": "2496771515", - "voter": "berkaytekinsen" - }, - { - "rshares": "745516832", - "voter": "lmir1965" - }, - { - "rshares": "1152370049", - "voter": "steeminer4up" - }, - { - "rshares": "686169594", - "voter": "chintya" - }, - { - "rshares": "36660217086", - "voter": "itchyfeetdonica" - }, - { - "rshares": "19596339485", - "voter": "egotheist" - }, - { - "rshares": "4163718065", - "voter": "esaia.mystic" - }, - { - "rshares": "1380763034", - "voter": "funtraveller" - }, - { - "rshares": "6604103246", - "voter": "marcolino76" - }, - { - "rshares": "1735875617", - "voter": "elex17" - }, - { - "rshares": "60211671832", - "voter": "lyon89" - }, - { - "rshares": "10053774716", - "voter": "howiemac" - }, - { - "rshares": "8977002341", - "voter": "vladalexan" - }, - { - "rshares": "21259848340", - "voter": "willsaldeno" - }, - { - "rshares": "7027156684", - "voter": "baroen96" - }, - { - "rshares": "20117793586", - "voter": "ekonugraha" - }, - { - "rshares": "1840997453", - "voter": "hrhridoy" - }, - { - "rshares": "13160124327", - "voter": "mattniblock" - }, - { - "rshares": "1432299644", - "voter": "godlovermel25" - }, - { - "rshares": "4477231723", - "voter": "candyboy" - }, - { - "rshares": "545728053", - "voter": "subramanimur638" - }, - { - "rshares": "170728454580", - "voter": "apnigrich" - }, - { - "rshares": "4559476387", - "voter": "duke77" - }, - { - "rshares": "1602273962", - "voter": "baart" - }, - { - "rshares": "1027578541", - "voter": "jewel-lover" - }, - { - "rshares": "870296171", - "voter": "thedrewshow" - }, - { - "rshares": "85010878646", - "voter": "alexanderfluke" - }, - { - "rshares": "747741352", - "voter": "danielalbujas" - }, - { - "rshares": "1387837318", - "voter": "not-a-gamer" - }, - { - "rshares": "29308377587", - "voter": "neupanedipen" - }, - { - "rshares": "2589724029", - "voter": "yakubenko" - }, - { - "rshares": "726416491", - "voter": "korinkrafting" - }, - { - "rshares": "838834224", - "voter": "a1000carv" - }, - { - "rshares": "29564039182", - "voter": "bengy" - }, - { - "rshares": "20485571190", - "voter": "steemvault" - }, - { - "rshares": "19794395697", - "voter": "steem4all" - }, - { - "rshares": "127172178829", - "voter": "communitybank" - }, - { - "rshares": "92954261647", - "voter": "nealmcspadden" - }, - { - "rshares": "53226790752", - "voter": "utube" - }, - { - "rshares": "10789916731", - "voter": "womenempowerment" - }, - { - "rshares": "77753444353", - "voter": "belemo" - }, - { - "rshares": "29904199709", - "voter": "socialmediaseo" - }, - { - "rshares": "10863070157", - "voter": "mermaidvampire" - }, - { - "rshares": "56937112696", - "voter": "purefood" - }, - { - "rshares": "1269073488", - "voter": "motordrive" - }, - { - "rshares": "4587302733", - "voter": "fullcoverbetting" - }, - { - "rshares": "1839162527", - "voter": "jimcustodio" - }, - { - "rshares": "2327093970", - "voter": "vaansteam" - }, - { - "rshares": "33300150163", - "voter": "casberp" - }, - { - "rshares": "2614322468", - "voter": "philnewton" - }, - { - "rshares": "36147930955", - "voter": "sportscontest" - }, - { - "rshares": "35147869924", - "voter": "videosteemit" - }, - { - "rshares": "2202410623", - "voter": "gribouille" - }, - { - "rshares": "31085349715", - "voter": "lesshorrible" - }, - { - "rshares": "19306531207", - "voter": "itharagaian" - }, - { - "rshares": "10926878347", - "voter": "fieryfootprints" - }, - { - "rshares": "726006141", - "voter": "gocho94" - }, - { - "rshares": "159405697076", - "voter": "chronocrypto" - }, - { - "rshares": "3728085510", - "voter": "bishoppeter1" - }, - { - "rshares": "860035318334", - "voter": "lunaticpandora" - }, - { - "rshares": "930928396619", - "voter": "lemony-cricket" - }, - { - "rshares": "1122876394", - "voter": "gabyrutigliano" - }, - { - "rshares": "1104009572", - "voter": "danielpendrgraft" - }, - { - "rshares": "728038063", - "voter": "anabell.brett" - }, - { - "rshares": "7435332390", - "voter": "cadawg" - }, - { - "rshares": "950335702", - "voter": "gavinatorial" - }, - { - "rshares": "3181520770", - "voter": "oredebby" - }, - { - "rshares": "3384037152", - "voter": "gvincentjosephm" - }, - { - "rshares": "6718075394", - "voter": "felixgarciap" - }, - { - "rshares": "2169596446", - "voter": "sweetkathy" - }, - { - "rshares": "15983046627", - "voter": "nwjordan" - }, - { - "rshares": "23995974563", - "voter": "photohunt" - }, - { - "rshares": "773031990", - "voter": "photohunter1" - }, - { - "rshares": "1878025000", - "voter": "photohunter2" - }, - { - "rshares": "1181494117", - "voter": "photohunter4" - }, - { - "rshares": "1126842274", - "voter": "photohunter5" - }, - { - "rshares": "1541623627", - "voter": "pkocjan" - }, - { - "rshares": "4588870100", - "voter": "howtosteem" - }, - { - "rshares": "724688982", - "voter": "joluco123" - }, - { - "rshares": "-241237532", - "voter": "dr-frankenstein" - }, - { - "rshares": "156068403237", - "voter": "barge" - }, - { - "rshares": "19372107867", - "voter": "cyprianj" - }, - { - "rshares": "50165279330", - "voter": "cst90" - }, - { - "rshares": "52385409985", - "voter": "citimillz" - }, - { - "rshares": "15330273963", - "voter": "akpos" - }, - { - "rshares": "144402980359", - "voter": "whack.science" - }, - { - "rshares": "725984718", - "voter": "jdarkmaxter" - }, - { - "rshares": "89335146900", - "voter": "rubencress" - }, - { - "rshares": "54101281487", - "voter": "almi" - }, - { - "rshares": "650385635", - "voter": "polashsen" - }, - { - "rshares": "5010302937", - "voter": "homeginkit" - }, - { - "rshares": "814868501", - "voter": "sardar-sani" - }, - { - "rshares": "904866150", - "voter": "faglerabbi" - }, - { - "rshares": "104986456944", - "voter": "superlotto" - }, - { - "rshares": "866221300424", - "voter": "leeyh" - }, - { - "rshares": "523288594518", - "voter": "backinblackdevil" - }, - { - "rshares": "3160422278", - "voter": "vargart" - }, - { - "rshares": "4173039794", - "voter": "frassman" - }, - { - "rshares": "8701164977", - "voter": "retinox" - }, - { - "rshares": "8422700311", - "voter": "tubcat" - }, - { - "rshares": "72175329913", - "voter": "simplymike" - }, - { - "rshares": "1851696916", - "voter": "inedido" - }, - { - "rshares": "38341877558", - "voter": "khaimi" - }, - { - "rshares": "3463226824", - "voter": "wisejg" - }, - { - "rshares": "55650123873", - "voter": "lionsuit" - }, - { - "rshares": "1670243119", - "voter": "kymio" - }, - { - "rshares": "21503876143", - "voter": "movingman" - }, - { - "rshares": "1499938456", - "voter": "sunshinebear" - }, - { - "rshares": "1292636660", - "voter": "beleg" - }, - { - "rshares": "13375622153", - "voter": "bestboom" - }, - { - "rshares": "82349348812", - "voter": "ronaldoavelino" - }, - { - "rshares": "11412494589", - "voter": "goldvault" - }, - { - "rshares": "1857953049", - "voter": "virgo27" - }, - { - "rshares": "229426778733", - "voter": "dera123" - }, - { - "rshares": "5384108899", - "voter": "jan23com" - }, - { - "rshares": "1101897289051", - "voter": "jkramer" - }, - { - "rshares": "131202269665", - "voter": "derangedvisions" - }, - { - "rshares": "3732233291", - "voter": "vaderetro" - }, - { - "rshares": "20335587614", - "voter": "wolfhart" - }, - { - "rshares": "29029919207", - "voter": "tesmoforia" - }, - { - "rshares": "7378884045", - "voter": "yameen" - }, - { - "rshares": "34246495162", - "voter": "lucious" - }, - { - "rshares": "33797192128", - "voter": "sajannair" - }, - { - "rshares": "13878726872", - "voter": "freddio" - }, - { - "rshares": "1418935737", - "voter": "jemmanuel" - }, - { - "rshares": "2991168869", - "voter": "bookoons" - }, - { - "rshares": "1183346029350", - "voter": "lordbutterfly" - }, - { - "rshares": "25689525172", - "voter": "z3ll" - }, - { - "rshares": "15769135641", - "voter": "allover" - }, - { - "rshares": "3393902285", - "voter": "choco11oreo11" - }, - { - "rshares": "1022673060", - "voter": "imcore" - }, - { - "rshares": "9388782637", - "voter": "yo-yo" - }, - { - "rshares": "1945147286", - "voter": "luiscalzadilla" - }, - { - "rshares": "5097337629", - "voter": "littleboys-faiz" - }, - { - "rshares": "754966703", - "voter": "capnsostre" - }, - { - "rshares": "843104142", - "voter": "feedmytwi" - }, - { - "rshares": "24861494227", - "voter": "superlao" - }, - { - "rshares": "972677607", - "voter": "glodniwiedzy" - }, - { - "rshares": "1305725356", - "voter": "lemcriq" - }, - { - "rshares": "54131483434", - "voter": "jancharlest" - }, - { - "rshares": "8320730992", - "voter": "meins0815" - }, - { - "rshares": "10511735457", - "voter": "diabonua" - }, - { - "rshares": "77661820243", - "voter": "pladozero" - }, - { - "rshares": "764713017", - "voter": "crimo" - }, - { - "rshares": "289604451172", - "voter": "nateaguila" - }, - { - "rshares": "3917071709", - "voter": "danbiohackingman" - }, - { - "rshares": "9053987449", - "voter": "rachelleignacio" - }, - { - "rshares": "147719388753", - "voter": "steem-tube" - }, - { - "rshares": "7658514035", - "voter": "archisteem" - }, - { - "rshares": "22534037368", - "voter": "motherofalegend" - }, - { - "rshares": "3561027712", - "voter": "mikemoi" - }, - { - "rshares": "3480176759", - "voter": "marcuz" - }, - { - "rshares": "880997887", - "voter": "rustam-02" - }, - { - "rshares": "9050856436", - "voter": "wolfofnostreet" - }, - { - "rshares": "27954518090", - "voter": "rainieraveradio" - }, - { - "rshares": "108111004693", - "voter": "uche-nna" - }, - { - "rshares": "4303556166", - "voter": "luminaryhmo" - }, - { - "rshares": "544110966", - "voter": "ibook-ishare" - }, - { - "rshares": "1661903576099", - "voter": "solarwarrior" - }, - { - "rshares": "2163598126", - "voter": "nfaith" - }, - { - "rshares": "28720257965", - "voter": "mdaminulislam" - }, - { - "rshares": "794958208", - "voter": "milayosawa" - }, - { - "rshares": "21292497110", - "voter": "samvan" - }, - { - "rshares": "56015822319", - "voter": "melissaofficial" - }, - { - "rshares": "653133447", - "voter": "sunnya" - }, - { - "rshares": "118162889967", - "voter": "citizendog" - }, - { - "rshares": "2021882562", - "voter": "swisswitness" - }, - { - "rshares": "208973748015", - "voter": "fitat40" - }, - { - "rshares": "2914350524", - "voter": "lil-splatts" - }, - { - "rshares": "0", - "voter": "inteligente" - }, - { - "rshares": "819509016", - "voter": "moneybaby" - }, - { - "rshares": "2244135021", - "voter": "bjornb" - }, - { - "rshares": "267723437492", - "voter": "blewitt" - }, - { - "rshares": "1487384751", - "voter": "nurulafsar03" - }, - { - "rshares": "13261948931", - "voter": "abcor" - }, - { - "rshares": "982656709", - "voter": "noobster" - }, - { - "rshares": "2065298058", - "voter": "enormeanimal" - }, - { - "rshares": "565807870", - "voter": "zephyrepic" - }, - { - "rshares": "559813926", - "voter": "chrome.citizen" - }, - { - "rshares": "4133829079", - "voter": "therealnigerianp" - }, - { - "rshares": "440715295", - "voter": "abduljalill" - }, - { - "rshares": "12066691027", - "voter": "yestermorrow" - }, - { - "rshares": "42191990819", - "voter": "thehive" - }, - { - "rshares": "6352794660", - "voter": "maybedog" - }, - { - "rshares": "1576351071", - "voter": "faady92" - }, - { - "rshares": "5115515062", - "voter": "littleshadow" - }, - { - "rshares": "716340801", - "voter": "natltreasury" - }, - { - "rshares": "1244268321", - "voter": "julian2013" - }, - { - "rshares": "43993587788", - "voter": "dlike" - }, - { - "rshares": "9543632898", - "voter": "cryptoyzzy" - }, - { - "rshares": "725034266", - "voter": "escfrancis" - }, - { - "rshares": "2779303944", - "voter": "gorbisan" - }, - { - "rshares": "1704843348", - "voter": "joseph6232" - }, - { - "rshares": "3157797509", - "voter": "emaillisahere" - }, - { - "rshares": "3763800411", - "voter": "jokinmenipieleen" - }, - { - "rshares": "630084385", - "voter": "buzzbee" - }, - { - "rshares": "6925008227", - "voter": "kosikredki" - }, - { - "rshares": "47413988202", - "voter": "engrave" - }, - { - "rshares": "2262912620", - "voter": "deantonio" - }, - { - "rshares": "2450582471", - "voter": "shepherd-stories" - }, - { - "rshares": "1565580100", - "voter": "sunit" - }, - { - "rshares": "962799638", - "voter": "chike4545" - }, - { - "rshares": "954058760", - "voter": "lfie28" - }, - { - "rshares": "2200558074", - "voter": "cercle" - }, - { - "rshares": "6935831311", - "voter": "emma-hs" - }, - { - "rshares": "3869796402", - "voter": "caoimhin" - }, - { - "rshares": "34800322942", - "voter": "a-bot" - }, - { - "rshares": "42458776089", - "voter": "twotoedsloth" - }, - { - "rshares": "1368704894", - "voter": "bobby.madagascar" - }, - { - "rshares": "1431185110", - "voter": "djtrucker" - }, - { - "rshares": "45637985", - "voter": "laissez-faire" - }, - { - "rshares": "30379259558", - "voter": "voter003" - }, - { - "rshares": "654456242", - "voter": "steemituplife" - }, - { - "rshares": "41432667456", - "voter": "marshalmugi" - }, - { - "rshares": "1621524760", - "voter": "podg3" - }, - { - "rshares": "671234012", - "voter": "juliettana" - }, - { - "rshares": "950527979", - "voter": "steemwhalepower" - }, - { - "rshares": "2898594848", - "voter": "silverkey" - }, - { - "rshares": "12470654756", - "voter": "silvervault" - }, - { - "rshares": "4704434968", - "voter": "misstaken" - }, - { - "rshares": "784527454", - "voter": "imammudarifqi" - }, - { - "rshares": "2442567213", - "voter": "l-singclear" - }, - { - "rshares": "6718646830", - "voter": "anroja" - }, - { - "rshares": "5177432846", - "voter": "kuku-splatts" - }, - { - "rshares": "1972446361", - "voter": "stay-active" - }, - { - "rshares": "38447124624", - "voter": "merlin7" - }, - { - "rshares": "1499436164", - "voter": "curart38" - }, - { - "rshares": "1952112220", - "voter": "thrasher666" - }, - { - "rshares": "67188003934", - "voter": "priyanarc" - }, - { - "rshares": "496740003", - "voter": "everyoung" - }, - { - "rshares": "340578510336", - "voter": "milky-concrete" - }, - { - "rshares": "809680758", - "voter": "florino" - }, - { - "rshares": "20260441143", - "voter": "followjohngalt" - }, - { - "rshares": "1808431709", - "voter": "carbodexkim" - }, - { - "rshares": "1471444852", - "voter": "daisybuzz" - }, - { - "rshares": "1871616252", - "voter": "jussbren" - }, - { - "rshares": "11207475062", - "voter": "cakemonster" - }, - { - "rshares": "1683296028", - "voter": "themightysquid" - }, - { - "rshares": "1051362432", - "voter": "smonia" - }, - { - "rshares": "6510109981", - "voter": "dijin" - }, - { - "rshares": "2794689934", - "voter": "shyant" - }, - { - "rshares": "10761964058", - "voter": "brucutu" - }, - { - "rshares": "1815408915", - "voter": "martinstomisin" - }, - { - "rshares": "30381747519", - "voter": "tigerrkg" - }, - { - "rshares": "21503769535", - "voter": "anmitsu" - }, - { - "rshares": "1245479924", - "voter": "smon-fan" - }, - { - "rshares": "16551541591", - "voter": "kork75" - }, - { - "rshares": "18498360671", - "voter": "blind-spot" - }, - { - "rshares": "1292498650", - "voter": "mikijam" - }, - { - "rshares": "14249752895", - "voter": "steemstorage" - }, - { - "rshares": "1492292811", - "voter": "fire451" - }, - { - "rshares": "859817366", - "voter": "starfighter" - }, - { - "rshares": "782478678", - "voter": "seekingalpha" - }, - { - "rshares": "959418114", - "voter": "cryptoninja.guru" - }, - { - "rshares": "1880835333", - "voter": "breakforbook" - }, - { - "rshares": "665080498", - "voter": "tr777" - }, - { - "rshares": "548359765", - "voter": "sm-jewel" - }, - { - "rshares": "15562221049", - "voter": "delabo" - }, - { - "rshares": "522632494", - "voter": "tr77" - }, - { - "rshares": "719248169", - "voter": "jtm.support" - }, - { - "rshares": "552122851", - "voter": "smoner" - }, - { - "rshares": "772420611", - "voter": "smonian" - }, - { - "rshares": "1165956305", - "voter": "monsterguru" - }, - { - "rshares": "1194580864", - "voter": "kaux" - }, - { - "rshares": "981082631", - "voter": "carrycarrie" - }, - { - "rshares": "697289012", - "voter": "honeygirl" - }, - { - "rshares": "672171159", - "voter": "permaculturedude" - }, - { - "rshares": "888450984319", - "voter": "agent14" - }, - { - "rshares": "2672589668", - "voter": "meins0816" - }, - { - "rshares": "15842622998", - "voter": "smon-joa" - }, - { - "rshares": "530275049", - "voter": "jjangjjanggirl" - }, - { - "rshares": "4701214538", - "voter": "scoopstakes" - }, - { - "rshares": "3103672249", - "voter": "nanzo-snaps" - }, - { - "rshares": "53557868090", - "voter": "rem-steem" - }, - { - "rshares": "22455734751", - "voter": "curationvoter" - }, - { - "rshares": "8045685570", - "voter": "curationhelper" - }, - { - "rshares": "1507044642", - "voter": "archisteem-cn" - }, - { - "rshares": "24101842924", - "voter": "leeyh2" - }, - { - "rshares": "48569042500", - "voter": "thelogicaldude" - }, - { - "rshares": "540381904", - "voter": "smonbear" - }, - { - "rshares": "899375171", - "voter": "adamthedude" - }, - { - "rshares": "1097432697", - "voter": "denizcakmak" - }, - { - "rshares": "1112259560", - "voter": "yoyo-jp" - }, - { - "rshares": "10972311689", - "voter": "wolffeys" - }, - { - "rshares": "14868941223", - "voter": "kggymlife" - }, - { - "rshares": "479012309541", - "voter": "ttg" - }, - { - "rshares": "7597984887", - "voter": "wizzycats" - }, - { - "rshares": "931961791", - "voter": "bitcoinator" - }, - { - "rshares": "534609215", - "voter": "theinspiration" - }, - { - "rshares": "2834637776", - "voter": "maxsieg" - }, - { - "rshares": "535105624", - "voter": "epic4chris" - }, - { - "rshares": "1280363327", - "voter": "rocketpower" - }, - { - "rshares": "34876253585", - "voter": "issymarie" - }, - { - "rshares": "19957137040", - "voter": "maryincryptoland" - }, - { - "rshares": "5297617117", - "voter": "actifit-devil" - }, - { - "rshares": "1179783238", - "voter": "samujaeger" - }, - { - "rshares": "901858747", - "voter": "bigmoneyman" - }, - { - "rshares": "11692995318", - "voter": "yonnathang" - }, - { - "rshares": "37245198", - "voter": "blockchainpeople" - }, - { - "rshares": "10558427869", - "voter": "herbncrypto" - }, - { - "rshares": "4079958017", - "voter": "leedsunited" - }, - { - "rshares": "165849278651", - "voter": "monsterjamgold" - }, - { - "rshares": "174672049523", - "voter": "star.lord" - }, - { - "rshares": "638048642", - "voter": "plebtv" - }, - { - "rshares": "800190292", - "voter": "williamdixz" - }, - { - "rshares": "5961542344", - "voter": "gulf41" - }, - { - "rshares": "314826557911", - "voter": "scholaris" - }, - { - "rshares": "15448100790", - "voter": "kayda-ventures" - }, - { - "rshares": "41407265944", - "voter": "banvie" - }, - { - "rshares": "8398302998", - "voter": "socialbot" - }, - { - "rshares": "576044010", - "voter": "ssc-token" - }, - { - "rshares": "2884284244", - "voter": "solomon.grundy" - }, - { - "rshares": "16619354362", - "voter": "bitsharesorg" - }, - { - "rshares": "1668357963", - "voter": "elosolezama" - }, - { - "rshares": "149144961", - "voter": "tradingideas2" - }, - { - "rshares": "39307035570", - "voter": "ocd-accountant" - }, - { - "rshares": "28058521417", - "voter": "plankton.token" - }, - { - "rshares": "1089817195", - "voter": "erikaliberf" - }, - { - "rshares": "2749181445", - "voter": "phillarecette" - }, - { - "rshares": "642108376", - "voter": "iktisat" - }, - { - "rshares": "3141450579", - "voter": "iamjohn" - }, - { - "rshares": "546554353", - "voter": "suigener1s" - }, - { - "rshares": "518171686", - "voter": "vxc" - }, - { - "rshares": "2966339023", - "voter": "leeyh3" - }, - { - "rshares": "9897117550", - "voter": "psyo" - }, - { - "rshares": "687564661", - "voter": "kgswallet" - }, - { - "rshares": "1496820548", - "voter": "milu-the-dog" - }, - { - "rshares": "15214433948", - "voter": "yeswecan" - }, - { - "rshares": "52267498974", - "voter": "asmr.tist" - }, - { - "rshares": "1263235456", - "voter": "kgcoin" - }, - { - "rshares": "1255651874", - "voter": "triplea.bot" - }, - { - "rshares": "93377391562", - "voter": "steem.leo" - }, - { - "rshares": "0", - "voter": "tradingideas.spt" - }, - { - "rshares": "939000219", - "voter": "pal-isaria" - }, - { - "rshares": "843222538", - "voter": "leo.curator" - }, - { - "rshares": "2497490278", - "voter": "freedomring" - }, - { - "rshares": "2434086534", - "voter": "hyborian-strain" - }, - { - "rshares": "1370863218", - "voter": "leeyh5" - }, - { - "rshares": "2829616528", - "voter": "freddio.sport" - }, - { - "rshares": "62699549309", - "voter": "coffeea.token" - }, - { - "rshares": "5180069746", - "voter": "babytarazkp" - }, - { - "rshares": "20218777714", - "voter": "asteroids" - }, - { - "rshares": "5013310525", - "voter": "mapxv" - }, - { - "rshares": "209537120", - "voter": "tina-tina" - }, - { - "rshares": "1030285088", - "voter": "tokensink" - }, - { - "rshares": "6504638022", - "voter": "thranax" - }, - { - "rshares": "317588839", - "voter": "happiness19" - }, - { - "rshares": "16176116512", - "voter": "knightsunited" - }, - { - "rshares": "2264867", - "voter": "gdhaetae" - }, - { - "rshares": "1521588696", - "voter": "colorcareer" - }, - { - "rshares": "7275320704", - "voter": "fucanglong" - }, - { - "rshares": "605634318", - "voter": "one.life" - }, - { - "rshares": "28099911434", - "voter": "acta" - }, - { - "rshares": "19478291875", - "voter": "the-table" - }, - { - "rshares": "426222914", - "voter": "pukeko" - }, - { - "rshares": "5576671054", - "voter": "rosana6" - }, - { - "rshares": "4132848453", - "voter": "cardtrader" - }, - { - "rshares": "20405976643", - "voter": "maxuvd" - }, - { - "rshares": "2672250790", - "voter": "debtfreein2" - }, - { - "rshares": "1764958246", - "voter": "thehouse" - }, - { - "rshares": "8137814433", - "voter": "teresa.yaiyai" - }, - { - "rshares": "814504740", - "voter": "dnflsms" - }, - { - "rshares": "153254005002", - "voter": "urtrailer" - }, - { - "rshares": "31939030771", - "voter": "hone.heke" - }, - { - "rshares": "507229223", - "voter": "jessy22" - }, - { - "rshares": "1853155546", - "voter": "freedomteam2019" - }, - { - "rshares": "653824244", - "voter": "freddlm" - }, - { - "rshares": "10504005805", - "voter": "writertales" - }, - { - "rshares": "2908554322", - "voter": "coinlogic.online" - }, - { - "rshares": "93909769", - "voter": "akpofure" - }, - { - "rshares": "1061727689", - "voter": "monstervoter" - }, - { - "rshares": "2673334464", - "voter": "mein2070" - }, - { - "rshares": "6571102576", - "voter": "bilpcoinrecords" - }, - { - "rshares": "98670610365", - "voter": "silverquest" - }, - { - "rshares": "1068448513", - "voter": "bilpcoin.pay" - }, - { - "rshares": "19864504390", - "voter": "freemotherearth" - }, - { - "rshares": "188872595", - "voter": "keep-keep" - }, - { - "rshares": "0", - "voter": "detetive" - }, - { - "rshares": "0", - "voter": "gerbo" - }, - { - "rshares": "8223844552", - "voter": "honeychip" - }, - { - "rshares": "2452218885", - "voter": "steemlondon" - }, - { - "rshares": "30108280934", - "voter": "splatts" - }, - { - "rshares": "1061072682", - "voter": "galenkp.aus" - }, - { - "rshares": "4904413278", - "voter": "gmlrecordz" - }, - { - "rshares": "874376278", - "voter": "keepit2" - }, - { - "rshares": "10670444838", - "voter": "simply2koool" - }, - { - "rshares": "1141020070", - "voter": "ribary" - }, - { - "rshares": "688663397", - "voter": "onestop" - }, - { - "rshares": "1737077686", - "voter": "kgsupport" - }, - { - "rshares": "4347969297", - "voter": "bilpcoinbpc" - }, - { - "rshares": "21227190770", - "voter": "mice-k" - }, - { - "rshares": "307147579", - "voter": "bela29" - }, - { - "rshares": "938152750", - "voter": "rahat67" - }, - { - "rshares": "169139226", - "voter": "abu.hair" - }, - { - "rshares": "1755701392", - "voter": "curamax" - }, - { - "rshares": "898413101", - "voter": "bib15hash" - }, - { - "rshares": "9094708399", - "voter": "asimpleman" - }, - { - "rshares": "6386652532", - "voter": "drew0" - }, - { - "rshares": "1621787945", - "voter": "tommys.shop" - }, - { - "rshares": "693225919", - "voter": "steemcityrewards" - }, - { - "rshares": "7352567919", - "voter": "groove-logic" - }, - { - "rshares": "835036185", - "voter": "dpend.active" - }, - { - "rshares": "5177882760", - "voter": "adamdabeast" - }, - { - "rshares": "7553984018", - "voter": "shinoxl" - }, - { - "rshares": "2149159917", - "voter": "fengchao" - }, - { - "rshares": "564193314", - "voter": "hivewaves" - }, - { - "rshares": "3072625809", - "voter": "hivebuzz" - }, - { - "rshares": "2315380726", - "voter": "hive-naija" - }, - { - "rshares": "335968049208", - "voter": "hiveyoda" - }, - { - "rshares": "27005594550", - "voter": "creativemary" - }, - { - "rshares": "240968576735", - "voter": "reggaejahm" - }, - { - "rshares": "387720555688", - "voter": "softworld" - }, - { - "rshares": "9513757314", - "voter": "polish.hive" - }, - { - "rshares": "10681032766", - "voter": "velinov86" - }, - { - "rshares": "1036252336", - "voter": "cryptolemon2" - }, - { - "rshares": "793110575", - "voter": "hivexperiment" - }, - { - "rshares": "923571084", - "voter": "hjchilb" - }, - { - "rshares": "88336428015", - "voter": "dcityrewards" - }, - { - "rshares": "4325722369", - "voter": "maitt87" - }, - { - "rshares": "5025994367", - "voter": "paprik" - }, - { - "rshares": "1454750246", - "voter": "paulman" - }, - { - "rshares": "1317216287", - "voter": "ninnu" - }, - { - "rshares": "16113465804", - "voter": "nakobia" - }, - { - "rshares": "170437530645", - "voter": "ghaazi" - }, - { - "rshares": "384059632", - "voter": "emrysjobber" - }, - { - "rshares": "3845012010", - "voter": "weloveart" - }, - { - "rshares": "322853671656", - "voter": "ronavel" - }, - { - "rshares": "998341743709", - "voter": "kingfadino" - }, - { - "rshares": "799599732", - "voter": "jsalvage" - }, - { - "rshares": "88713565424", - "voter": "hivecur" - }, - { - "rshares": "0", - "voter": "pranay5073" - }, - { - "rshares": "2859630105", - "voter": "wristwatch12" - }, - { - "rshares": "549936369229", - "voter": "jelly13" - }, - { - "rshares": "1530871089", - "voter": "docjulien" - }, - { - "rshares": "0", - "voter": "dukica11234" - }, - { - "rshares": "2537700176", - "voter": "w-splatts" - }, - { - "rshares": "0", - "voter": "mutabor78" - }, - { - "rshares": "750000000", - "voter": "ruddles" - }, - { - "rshares": "741388989", - "voter": "hivecur2" - }, - { - "rshares": "0", - "voter": "chaplintini" - } + "links": [ + "http://SteemTools.com", + "http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png" ], - "author": "acidyo", - "author_payout_value": "0.000 HBD", - "author_reputation": 80.49, - "author_role": "mod", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "After way more attempts than I'd like to admit I finally managed to get things _rolling_ the right way. My record before this was 25 billion. Before I start talking about the run, if anyone is interested in playing this, you can download \"Pinball FX3\" on Steam and you need to purchase a DLC with the Attack from Mars to play it but there is a test version of all machines that anyone can try. \n\nhttps://youtu.be/DWyT4viqLxQ\n\nLately I've been trying this tactic where I try and get a multiball or total annihilation going before attacking the ship in the middle to get the city saved. With each city it requires more hits and the most dangerous part is striking the middle as it often likes to go down between the flippers. What I've learned is that using the right flipper has the most success rate but having many balls such as in multiball or total annihilation naturally you get more attempts and can afford to lose a few.\n\nI had a great run here and it was the first time I managed to get \"ruler of the universe\", one thing I learned was that you could still get more free balls in the late game which is something I didn't expect so curious to find out how many and how often they appear if I ever get this good of a run again.\n\nThe world record stands at 850 billion so my attempt here to reach 66 billion was not too shabby if I may say so. A few very noob losses of balls I could've avoided and I really need to check the settings to see if the tilt function can work in any other way than it does right now cause I've given up on using it cause it never saves me.\n\nAnother note, I haven't on purpose upgraded anything in the game (gaining xp allows you to upgrade certain things like more points on the bouncers in the top or longer \"ball saved\" time if it gets lost soon after starting a new ball.) I wanted to keep it at the basics in case that's what counts world records only but maybe I should check under what kind of rules they do it. \n\nAnyway, in this attempt I happened to be listening to Spotify so most of the songs in the background are of [Jamule](https://youtu.be/zbQJ796kfJM) (I'm really into deutschrap lately).\n\n___\n\nhttps://images.hive.blog/640x0/https://files.peakd.com/file/peakd-hive/hiddenblade/IhaMpvWL-acid20plays-.jpg", - "category": "hive-140217", - "children": 9, - "community": "hive-140217", - "community_title": "Hive Gaming", - "created": "2020-07-07T04:14:15", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://images.hive.blog/640x0/https://files.peakd.com/file/peakd-hive/hiddenblade/IhaMpvWL-acid20plays-.jpg" - ], - "links": [ - "https://youtu.be/zbQJ796kfJM" - ], - "tags": [ - "pinball", - "attackfrommars", - "afm", - "newrecord", - "gaming" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 104997255046480, - "payout": 42.475, - "payout_at": "2020-07-14T04:14:15", - "pending_payout_value": "42.475 HBD", - "percent_hbd": 10000, - "permlink": "acid-plays-attack-from-mars-new-personal-record-no-tilt", - "post_id": 86927207, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 633 - }, - "title": "[Acid Plays] Attack from Mars - New personal record [no tilt]", - "updated": "2020-07-07T04:14:15", - "url": "/hive-140217/@acidyo/acid-plays-attack-from-mars-new-personal-record-no-tilt" - }, - { - "active_votes": [ - { - "rshares": "96205009679", - "voter": "tombstone" - }, - { - "rshares": "656011815343", - "voter": "roelandp" - }, - { - "rshares": "5492402355", - "voter": "matt-a" - }, - { - "rshares": "63352623332", - "voter": "arcange" - }, - { - "rshares": "140358913682", - "voter": "fiveboringgames" - }, - { - "rshares": "1614123569", - "voter": "raphaelle" - }, - { - "rshares": "306636981272", - "voter": "originate" - }, - { - "rshares": "1669079977", - "voter": "bestofreddit" - }, - { - "rshares": "37396860285", - "voter": "steemyoda" - }, - { - "rshares": "8380175150", - "voter": "cardboard" - }, - { - "rshares": "243596431779", - "voter": "detlev" - }, - { - "rshares": "4903534746", - "voter": "ma1neevent" - }, - { - "rshares": "1042359254", - "voter": "activate.alpha" - }, - { - "rshares": "2075476794", - "voter": "kennyroy" - }, - { - "rshares": "34605052386", - "voter": "mys" - }, - { - "rshares": "70253682609", - "voter": "ironshield" - }, - { - "rshares": "9565348323", - "voter": "arrliinn" - }, - { - "rshares": "19273960306", - "voter": "mdosev" - }, - { - "rshares": "25667584464", - "voter": "jayna" - }, - { - "rshares": "13409528135", - "voter": "whd" - }, - { - "rshares": "10809811619", - "voter": "d-pend" - }, - { - "rshares": "4234431142", - "voter": "dante31" - }, - { - "rshares": "1232085678", - "voter": "rafalski" - }, - { - "rshares": "1551319624663", - "voter": "howo" - }, - { - "rshares": "6223612242293", - "voter": "ocd" - }, - { - "rshares": "1021261783183", - "voter": "steemvote" - }, - { - "rshares": "3443624331", - "voter": "macchiata" - }, - { - "rshares": "8805698319", - "voter": "santigs" - }, - { - "rshares": "9107504514", - "voter": "kimzwarch" - }, - { - "rshares": "41707909681", - "voter": "redouanemez" - }, - { - "rshares": "5696583422", - "voter": "saltiberra" - }, - { - "rshares": "21561072888", - "voter": "fbslo" - }, - { - "rshares": "3160533499", - "voter": "justinparke" - }, - { - "rshares": "4391954379381", - "voter": "therealwolf" - }, - { - "rshares": "13505006055", - "voter": "jlsplatts" - }, - { - "rshares": "5725454433", - "voter": "martusamak" - }, - { - "rshares": "2253256858", - "voter": "divinekids" - }, - { - "rshares": "6902232659", - "voter": "hanggggbeeee" - }, - { - "rshares": "48033535230", - "voter": "pataty69" - }, - { - "rshares": "1001128511", - "voter": "liverpool-fan" - }, - { - "rshares": "318148636114", - "voter": "eonwarped" - }, - { - "rshares": "1802379015428", - "voter": "postpromoter" - }, - { - "rshares": "12094099699", - "voter": "mejustandrew" - }, - { - "rshares": "51859294795", - "voter": "sankysanket18" - }, - { - "rshares": "6294434889", - "voter": "dorada" - }, - { - "rshares": "7068356665", - "voter": "gtrussi" - }, - { - "rshares": "1654204507", - "voter": "lordnigel" - }, - { - "rshares": "5981733732", - "voter": "tcpaikano" - }, - { - "rshares": "899198825475", - "voter": "smartsteem" - }, - { - "rshares": "24382062344", - "voter": "mytechtrail" - }, - { - "rshares": "5490466845", - "voter": "itchyfeetdonica" - }, - { - "rshares": "908456355", - "voter": "godlovermel25" - }, - { - "rshares": "2311014439", - "voter": "tomatom" - }, - { - "rshares": "3126933051", - "voter": "elbrava" - }, - { - "rshares": "9781259629", - "voter": "gabrielatravels" - }, - { - "rshares": "24784681500", - "voter": "neupanedipen" - }, - { - "rshares": "1398608360", - "voter": "chrismadcboy2016" - }, - { - "rshares": "40148173595", - "voter": "warnas" - }, - { - "rshares": "623791350", - "voter": "debilog" - }, - { - "rshares": "182767308035", - "voter": "ocd-witness" - }, - { - "rshares": "1239913510", - "voter": "ericburgoyne" - }, - { - "rshares": "35337862573", - "voter": "bigtom13" - }, - { - "rshares": "412814796765", - "voter": "takowi" - }, - { - "rshares": "3408567171", - "voter": "royfletcher" - }, - { - "rshares": "1503387639", - "voter": "russellstockley" - }, - { - "rshares": "6074963732", - "voter": "forester-joe" - }, - { - "rshares": "1143825309", - "voter": "tatylayla" - }, - { - "rshares": "1535914243", - "voter": "cruisin" - }, - { - "rshares": "27880093936", - "voter": "miroslavrc" - }, - { - "rshares": "4595762738", - "voter": "beleg" - }, - { - "rshares": "4524264309", - "voter": "flaxz" - }, - { - "rshares": "2589247632", - "voter": "racibo" - }, - { - "rshares": "170249849", - "voter": "angelinafx" - }, - { - "rshares": "71942385772", - "voter": "indigoocean" - }, - { - "rshares": "2143021807", - "voter": "crystalhuman" - }, - { - "rshares": "77574373349", - "voter": "pladozero" - }, - { - "rshares": "1452351838", - "voter": "linco" - }, - { - "rshares": "844155662", - "voter": "yougotavote" - }, - { - "rshares": "172084248036", - "voter": "suonghuynh" - }, - { - "rshares": "19356224164416", - "voter": "ocdb" - }, - { - "rshares": "6150772004", - "voter": "sadbear" - }, - { - "rshares": "1369862660", - "voter": "joaoprobst" - }, - { - "rshares": "927577388", - "voter": "jesusmedit" - }, - { - "rshares": "5290694033", - "voter": "dalz" - }, - { - "rshares": "2282878478", - "voter": "dronegraphica" - }, - { - "rshares": "6685762493", - "voter": "daan007" - }, - { - "rshares": "1283790836", - "voter": "nancybmp" - }, - { - "rshares": "4417555775", - "voter": "julian2013" - }, - { - "rshares": "18437674795", - "voter": "gorbisan" - }, - { - "rshares": "5630827319", - "voter": "mobi72" - }, - { - "rshares": "8560274314", - "voter": "munhenhos" - }, - { - "rshares": "8119617", - "voter": "laissez-faire" - }, - { - "rshares": "1602693750", - "voter": "pushpedal" - }, - { - "rshares": "8087002075", - "voter": "bettervision" - }, - { - "rshares": "1138900888", - "voter": "general.guy" - }, - { - "rshares": "9238123924", - "voter": "edriseur" - }, - { - "rshares": "3077352734", - "voter": "kork75" - }, - { - "rshares": "2444163332", - "voter": "toycard" - }, - { - "rshares": "3685021698", - "voter": "bolachasmonster" - }, - { - "rshares": "10128494291", - "voter": "cryptofiloz" - }, - { - "rshares": "2999685376", - "voter": "smalltall" - }, - { - "rshares": "40394013883", - "voter": "pfdm" - }, - { - "rshares": "4944012829", - "voter": "squareonefarms" - }, - { - "rshares": "19165667204", - "voter": "maryincryptoland" - }, - { - "rshares": "29845578002", - "voter": "epicdice" - }, - { - "rshares": "4899199153", - "voter": "yiobri" - }, - { - "rshares": "6084514110", - "voter": "ocd-accountant" - }, - { - "rshares": "2925741311", - "voter": "leighscotford" - }, - { - "rshares": "12050627776", - "voter": "ph1102" - }, - { - "rshares": "933408336", - "voter": "maddogmike" - }, - { - "rshares": "3105627399", - "voter": "iamraincrystal" - }, - { - "rshares": "634867830", - "voter": "elianaicgomes" - }, - { - "rshares": "20772563257", - "voter": "bradleyarrow" - }, - { - "rshares": "35824954569", - "voter": "sandymeyer" - }, - { - "rshares": "558502225", - "voter": "steemlondon" - }, - { - "rshares": "590841943", - "voter": "splatts" - }, - { - "rshares": "2763482030", - "voter": "dollarbills" - }, - { - "rshares": "300015601", - "voter": "bela29" - }, - { - "rshares": "15816344815", - "voter": "goldstreet" - }, - { - "rshares": "33236418200795", - "voter": "darthknight" - }, - { - "rshares": "10026453407", - "voter": "dpend.active" - }, - { - "rshares": "2150460246", - "voter": "fengchao" - }, - { - "rshares": "7705442814", - "voter": "thepeakstudio" - }, - { - "rshares": "298641103837", - "voter": "nulledgh0st" - }, - { - "rshares": "396849571505", - "voter": "softworld" - }, - { - "rshares": "31601532413", - "voter": "the100" - }, - { - "rshares": "1420395198", - "voter": "iameden" - }, - { - "rshares": "5189593161", - "voter": "rihc94" - }, - { - "rshares": "80965524958", - "voter": "hivehustlers" - }, - { - "rshares": "20378802779", - "voter": "awownerd" - }, - { - "rshares": "1214337344", - "voter": "angeru64" - }, - { - "rshares": "1122248208", - "voter": "hivecur2" - } + "tags": [ + "infographic", + "steemit", + "steem", + "steemsquad", + "minnowsunite" ], - "author": "stk-g", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.29, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "

\nEnglish\n
\n

\n\n\n
There are plenty of action games out there, but not as many become as frenetic and addictive as Dead Cells is, the title I'll be talking about today.\n\n
\"\"\n[Source](https://generacionxbox.com/analisis-de-dead-cells/)
\n\nDead Cells is a mix of Rogue-like with MetroidVania, since every time we are defeated we will return to the beginning of the map and lose our entire team, a genre that by tradition is very demanding if you want to get to the end, but they are also usually extremely replayable, I'll dig deeper into this in the gameplay.\n\n

\nPlot\n
\n

\n\nLike Hollow Knight, most of the story is not explained directly, but through the environment and things you can find in it, even on the loading screens they give you small pieces of information related to the place we are visiting.\n\n
\"\"\n[Source](https://www.youtube.com/watch?v=gdVRgK5hjnk)
\n\nWe take the role of a headless prisoner, who apparently has been revived by some kind of parasite, as a result of which he will go out to explore the world and defeat everything in his path.\n\nThe world of Dead Cells is mostly dark, abandoned, and scary, other than that it's riddled with monsters everywhere, so it won't be a peaceful journey.\n\nI want to clarify that the story goes much further than this, but it really is one of those stories that make you establish connections between the things that you find until you build the story based on that, and it is not worth ruining that, which is why I leave everything undisclosed for you to discover for yourself.\n\n

\nGameplay\n
\n

\n\n\nFor a rogue-like to succeed, a good gameplay that supports what the game offers us is essential. In this case, as I said above, we talk about a rogue-like, but with MetroidVania elements such as the composition of the map, and the fact that there are places that we will not be able to access until we obtain certain objects, it also takes elements from Hack n 'Slash.\n\n
\"\"\n[Source](https://www.muycomputer.com/2018/08/09/analisis-dead-cells-nintendo-switch/)
\n\n\nWe will always start in the prisoner's cell, and from here it is up to us to explore conscientiously to find the exit to the next area, for this, we are initially provided with a sword and a shield, but they will not be our only defense options.\n\nOur basic movements without including weapons are the double jump and roll to dodge, we can also hold onto ledges and go up and down stairs, if we fall from a very high place we will be stunned for a moment, this can be eliminated if we make a stomp, and of step we will stun enemies who may be nearby.\n\nAs we move through the map, we can find huge chests, which contain different objects that have different functions, from swords, bows, automatic crossbows, bombs, and a good catalog of objects at our disposal, as long as we find them, I will give you a list with different types.\n\n\n\n\n
    \n
  • Main weapons: We can carry a maximum of two weapons of this type, however we can also replace one with a shield, the variety is wide, here are the swords, broadswords, throwing knives, bows and bombs.
  • \n\n\n
  • Secondary weapons: As well as the main ones we can carry a maximum of two secondary weapons, these are more focused on support, since in this category we also find tonics to restore our life bar a bit, also automatic crossbows that we can deploy from time to time, and different types of weapons that do passive damage as long as enemies are in range.
  • \n\n\n
  • Necklace: A unique accessory that will give us some stat advantage, such as causing us to deal more damage, enemies taking damage, and countless other attributes.
  • \n\n\n
  • Recovery Potion: This object we have from the beginning, and restores a good part of our life bar, however initially it only has one use, and to fill it we must go to the next area, otherwise it will be unusable until then.
  • \n\n
\n\n\n
\"\"\n[Source](https://www.gamelegant.com/noticias/los-creadores-de-dead-cells-sorprendidos-por-las-ventas/)
\n\nAs you can see, the range of objects is wide, but we must also note that many times we will find the same object, but with different statistics depending on the level of the object. That is, at the beginning we can find objects level I, II, III, but in more difficult areas there are higher levels such as VII and VIII, and therefore more powerful, this applies to all types of objects that we can achieve by exploring, in case This was not enough, there are also objects with additional quality, marked with a \"+\" in the name, and even \"++\", being some of the best objects depending on the level they have.\n\nThis is not the only way to make us strong, because apart from the levels of the weapons, our character has 3 attributes to level up, and this also affects weapons.\n\n\n\n\n
    \n\n
  • Brutality: Red color, leveling up affects all items and abilities that have the object icon red, generally focused on brute force and weapon damage improvement.
  • \n\n
  • Tactics: Purple color, raising this level attribute affects secondary abilities and weapons such as crossbows and others.
  • \n\n
  • Survival: Green color, focused on survival as its name implies, leveling it up increases the damage of weapons with green color on the icon, and in general everything related to keeping us alive.
  • \n
\n\n\nThese attributes are improved with scrolls that we find scattered around the map, we may be lucky to find several very close, or only one per area, depending on the way in which the map has been built, which is random and changes every time we start a new game.\n\n
\"\"\n[Source](https://www.3djuegos.com/mx/noticias-ver/175636/dead-cells-recibe-actualizacion-masiva-con-nuevo-sistema-de/)
\n\nEach increase of one of these three attributes also increases our life bar, the % increase will depend on the attribute and how many times we have already improved it, but Survival is generally the improvement that gives us the most life of the three.\n\n

\nSafe Areas \n
\n

\n\nBetween one area and another there will always be a rest area, in which there will be several npc that will help us to advance in the game, apart from a jar to fill our life and recovery potion.\n\n\n\n\nWhen we defeat enemies they will sometimes give us circular blue or gold objects called cells, these cells help us to buy permanent improvements for our character, that is, they are preserved even if we are defeated, for example, we can improve the weapon that they will give us at the beginning, increase the number of uses of the recovery potion, unlock new suits, weapons, etc.\n\n
\"\"\n[Source](https://www.gamingcoffee.com/2019/08/whos-the-boss-lo-nuevo-de-dead-cells/)
\n\n\n\nOn the other hand, we can invest the cells in improving the probabilities of the objects that we find, in some safe areas there will be a specific npc that allows us to do this, and what causes is that the objects that we find will have a probability of being \"+\", And this is just one of the things we can improve.\n\nWe can also upgrade our weapons and change their attributes, all in exchange for gold, the game's main currency that we will use to buy weapons in the store, and open some doors that require gold as an opening method.\n\n\n
\"\"\n[Source](https://www.gamerstyle.com.mx/2020/01/30/dead-cells-presentan-the-bad-seed-nuevo-dlc/)
\n\nIn each safe area there are one or two doors, which open if we meet certain conditions in the previous area, such as eliminating 20 enemies without doing damage, or completing the area in a certain time, the doors contain bonuses that will help us In the following areas, however, like many things in this game, the reward is always variable.\n\nLast but not least, during the first 3 safe zones, we can choose our mutations, which are additional abilities that will help us in one way or another, but sometimes they also bring limitations, for example, we can increase our life bar 50%, but the food will not cure us, it always depends on stopping to examine the different options and see which one adapts to our needs and the way we play.\n\n

\nSoundtrack\n
\n

\n\nDead Cells has a pretty good soundtrack in which we can find a strong presence of the use of the acoustic guitar, it gives it a tone that seems quite good to me, and that in combat it sets in a spectacular way, and out of combat also the truth.\n\nThe sound of the weapons is quite pleasant and it feels good when the blows connect, certainly in the audio section they put quite a lot of care, as I always say, here there is not much to explain with words, it is always better that you experience it yourself.
\n\nhttps://www.youtube.com/watch?v=-TpCpcyT-FY\n\n

\nFinal Comments\n
\n

\n\n
I have spoken at length about the gameplay of Dead Cells, and the truth is that it seems to me to be quite a frantic game with a very good rhythm, and yet more than one is surely interested in its background and history, something that really only we can find out by playing.\n\n
\"\"\n[Source](https://pl4yers.com/2018/12/actualizacion-dead-cells-pc/)
\n\nAnd that I have not touched on the topic of replayability, when we \"complete\" the game for the first time, we will be given a boss cell, we use this to increase the difficulty of the game even more, and unlock new elements, there are things that they will need several boss cells, so if we want to unlock everything we must complete the game several times. Best of all, there is no single path to the end, as we can decide our own path, depending on the objects we have, since some areas will be inaccessible at the beginning. In short, it is one of those games where you will always discover something new if you are one of those who love to explore every corner of the map.\n\nIn summary, Dead Cells is a game that I totally recommend, it is not very demanding in terms of specifications, if someone plans to play it on PC; and you know, if you have something to comment on the game you can say so in the comments.\n\n
\n\nAnd here ends today's post, as always thank you very much for reading up to this point and I hope you liked it.\n\nWithout much more to say, see you in the next post, bye bye.
\n\n\n\n\n\n\n
\n\n\n

\nEspa\u00f1ol\n
\n

\n\n\n
Hay muchos juegos de acci\u00f3n ah\u00ed fuera, pero no son tantos los que llegan a ser tan fren\u00e9ticos y adictivos como lo es Dead Cells, el t\u00edtulo del que les hablar\u00e9 hoy.\n\n
\"\"\n[Fuente](https://generacionxbox.com/analisis-de-dead-cells/)
\n\nDead Cells es una mezcla de Rogue-like con MetroidVania, ya que cada vez que seamos derrotados volveremos al inicio del mapa y perderemos todo nuestro equipo, un g\u00e9nero que por tradici\u00f3n es muy exigente si quieres llegar al final, pero tambi\u00e9n suelen ser extremadamente rejugables, indagar\u00e9 m\u00e1s en esto en el gameplay.\n\n

\nHistoria\n
\n

\n\nAs\u00ed como Hollow Knight, la mayor parte de la historia no te la explican directamente, sino a trav\u00e9s del entorno y de cosas que puedes encontrar en \u00e9l, hasta en las pantallas de carga te dan peque\u00f1os fragmentos de informaci\u00f3n relacionados al lugar que estemos visitando.\n\n
\"\"\n[Fuente](https://www.youtube.com/watch?v=gdVRgK5hjnk)
\n\nTomamos el papel de un prisionero sin cabeza, el cual al parecer ha sido revivido por alguna especie de par\u00e1sito, a ra\u00edz de esto saldr\u00e1 a explorar el mundo y derrotar todo a su paso.\n\nEl mundo de Dead Cells es mayormente oscuro, abandonado y tenebroso, aparte de que est\u00e1 plagado de monstruos por todas partes, por lo que no ser\u00e1 un viaje pac\u00edfico.\n\nQuiero aclarar que la historia va mucho m\u00e1s all\u00e1 de esto, pero realmente es de esas historias que te hacen establecer conexiones entre las cosas que vas encontrando hasta que armas la historia en base a eso, y no vale la pena arruinarles eso, por lo cual dejo todo sin revelar para que lo descubran por ustedes mismos.\n\n

\nGameplay\n
\n

\n\n\nPara que un rogue-like triunfe, es imprescindible un buen gameplay que le d\u00e9 soporte a lo que el juego nos plantee. En este caso, como ya dije un poco m\u00e1s arriba hablamos de un rogue-like, pero con elementos MetroidVania como la composici\u00f3n del mapa, y el hecho de que hay lugares a los que no podremos acceder hasta obtener ciertos objetos, tambi\u00e9n toma elementos de los Hack n\u2019 Slash.\n\n
\"\"\n[Fuente](https://www.muycomputer.com/2018/08/09/analisis-dead-cells-nintendo-switch/)
\n\n\nSiempre empezaremos en la celda del prisionero, y a partir de aqu\u00ed depende de nosotros explorar a consciencia para hallar la salida a la siguiente \u00e1rea, para esto, se nos provee inicialmente de una espada y un escudo, pero no ser\u00e1n nuestras \u00fanicas opciones de defensa.\n\nNuestros movimientos b\u00e1sicos sin incluir armas son el doble salto y rodar para esquivar, tambi\u00e9n podemos sujetarnos a salientes y subir y bajar por escaleras, si caemos desde un lugar muy alto quedaremos aturdidos por un momento, esto puede eliminarse si hacemos un pisot\u00f3n, y de paso aturdiremos a los enemigos que puedan estar cerca.\n\nConforme avancemos por el mapa, podemos encontrar cofres enormes, los cuales contienen diferentes objetos que tienen diferentes funciones, desde espadas, arcos, ballestas autom\u00e1ticas, bombas, y un buen cat\u00e1logo de objetos a nuestra disposici\u00f3n, siempre y cuando los encontremos, les dar\u00e9 una lista con los diferentes tipos.\n\n\n\n\n
    \n
  • Armas principales: Podemos llevar un m\u00e1ximo de dos armas de este tipo, sin embargo tambi\u00e9n podemos reemplazar alguna por un escudo, la variedad es amplia, aqu\u00ed entran las espadas, espadones, cuchillos arrojadizos, arcos y bombas.
  • \n\n\n
  • Armas secundarias: As\u00ed como las principales podemos llevar un m\u00e1ximo de dos armas secundarias, estas est\u00e1n m\u00e1s enfocadas al apoyo, ya que en esta categor\u00eda tambi\u00e9n encontramos t\u00f3nicos para restaurar un poco nuestra barra de vida, tambi\u00e9n ballestas autom\u00e1ticas que podemos desplegar cada cierto tiempo, y diferentes tipos de armas que causan da\u00f1o pasivo siempre y cuando los enemigos se encuentren en su rango de alcance.
  • \n\n\n
  • Collar: Un accesorio \u00fanico que nos dar\u00e1 alguna ventaja de estad\u00edsticas, como hacer que causemos m\u00e1s da\u00f1o, que los enemigos reciban el da\u00f1o que nos causan, y un sinf\u00edn de atributos diferentes.
  • \n\n\n
  • Poci\u00f3n de recuperaci\u00f3n: Este objeto lo tenemos desde el inicio, y restaura una buena parte de nuestra barra de vida, sin embargo inicialmente solo tiene un uso, y para rellenarla debemos pasar al \u00e1rea siguiente, de lo contrario quedar\u00e1 inutilizable hasta entonces.
  • \n\n
\n\n\n
\"\"\n[Fuente](https://www.gamelegant.com/noticias/los-creadores-de-dead-cells-sorprendidos-por-las-ventas/)
\n\nComo pueden ver, la gama de objetos es amplia, pero tambi\u00e9n debemos fijarnos en que muchas veces encontraremos el mismo objeto, pero con diferentes estad\u00edsticas dependiendo del nivel del objeto. Es decir, al inicio podemos encontrar objetos nivel I, II, III, pero en \u00e1reas m\u00e1s dif\u00edciles hay niveles mayores como VII y VIII, y por lo tanto m\u00e1s potentes, esto aplica para todos los tipos de objetos que podamos conseguir explorando, por si esto fuera poco, tambi\u00e9n hay objetos con calidad adicional, marcados con un \u201c+\u201d en el nombre, e incluso \u201c++\u201d, siendo algunas de los mejores objetos dependiendo del nivel que tengan.\n\nEsta no es la \u00fanica forma de hacernos fuertes, pues aparte de los niveles de las armas, nuestro personaje tiene 3 atributos para subir, y esto tambi\u00e9n afecta a las armas.\n\n\n\n\n
    \n\n
  • Brutalidad: Color rojo, subirlo de nivel afecta a todos los objetos y habilidades que tengan el color rojo en el icono de objeto, generalmente enfocado a la fuerza bruta y a mejorar el da\u00f1o de las armas.
  • \n\n
  • T\u00e1cticas: Color purpura, subir este atributo de nivel afecta a las habilidades y armas secundarias como ballestas y dem\u00e1s.
  • \n\n
  • Supervivencia: Color verde, enfocado en la supervivencia como su nombre lo indica, subirlo de nivel aumenta el da\u00f1o de las armas con color verde en el icono, y en general todo lo relacionado a mantenernos con vida.
  • \n
\n\n\nEstos atributos se mejoran con pergaminos que encontramos dispersos por el mapa, podemos tener suerte de encontrar varios muy cerca, o uno solo por \u00e1rea, depende de la forma en la que se haya construido el mapa, el cual es aleatorio y cambia cada vez que iniciamos una nueva partida.\n\n
\"\"\n[Fuente](https://www.3djuegos.com/mx/noticias-ver/175636/dead-cells-recibe-actualizacion-masiva-con-nuevo-sistema-de/)
\n\nCada aumento de uno de estos tres atributos tambi\u00e9n aumenta nuestra barra de vida, el % de aumento depender\u00e1 del atributo y de cuantas veces lo hayamos mejorado ya, pero generalmente es Supervivencia la mejora que m\u00e1s vida nos otorga de las tres.\n\n

\nZonas seguras\n
\n

\n\nEntre un \u00e1rea y otra siempre habr\u00e1 una zona de descanso, en la cual habr\u00e1n varios npc que nos ayudar\u00e1n a avanzar en el juego, aparte de un frasco para rellenar nuestra vida y poci\u00f3n de recuperaci\u00f3n.\n\n\n\n\nCuando derrotamos enemigos a veces nos dar\u00e1n objetos azules o dorados circulares llamados c\u00e9lulas, estas c\u00e9lulas nos ayudan a comprar mejoras permanentes para nuestro personaje, es decir, que se conservan aunque seamos derrotados, por ejemplo, podemos mejorar el arma que nos dar\u00e1n al inicio, aumentar la cantidad de usos de la poci\u00f3n de recuperaci\u00f3n, desbloquear nuevos trajes, armas, etc.\n\n
\"\"\n[Fuente](https://www.gamingcoffee.com/2019/08/whos-the-boss-lo-nuevo-de-dead-cells/)
\n\n\n\nPor otra parte, podemos invertir las c\u00e9lulas en mejorar las probabilidades de los objetos que encontremos, en algunas zonas seguras habr\u00e1 un npc en espec\u00edfico que nos permite hacer esto, y lo que causa es que los objetos que encontremos tendr\u00e1n un % de probabilidad de ser \u201c+\u201d, y esto es solo una de las cosas que podemos mejorar.\n\nTambi\u00e9n podemos mejorar nuestras armas y cambiar sus atributos, todo a cambio de oro, la moneda principal del juego que utilizaremos para comprar armas en la tienda, y abrir algunas puertas que exigen oro como forma de apertura.\n\n\n
\"\"\n[Fuente](https://www.gamerstyle.com.mx/2020/01/30/dead-cells-presentan-the-bad-seed-nuevo-dlc/)
\n\n\nEn cada zona segura hay una o dos puertas, las cuales se abren si cumplimos ciertas condiciones en el \u00e1rea anterior, como eliminar a 20 enemigos sin que nos hagan da\u00f1o, o completar el \u00e1rea en un tiempo determinado, las puertas contienen bonificaciones que nos ayudar\u00e1n en las \u00e1reas siguientes, sin embargo, como muchas cosas en este juego, la recompensa siempre es variable.\n\nPor \u00faltimo pero no menos importante, durante las primeras 3 zonas seguras, podemos elegir nuestras mutaciones, las cuales son habilidades adicionales que nos ayudar\u00e1n de una u otra forma, pero a veces tambi\u00e9n traen consigo limitaciones, por ejemplo, podemos aumentar nuestra barra de vida en un 50%, pero la comida no nos curar\u00e1, siempre depende de detenerse a examinar las diferentes opciones y ver cual se adapta a nuestras necesidades y a nuestra forma de jugar.\n\n

\nSoundtrack\n
\n

\n\nDead Cells tiene un soundtrack bastante bueno en el cual podemos encontrar una fuerte presencia del uso de la guitarra ac\u00fastica, le da un tono que me parece bastante bueno, y que en combate ambienta de una forma espectacular, y fuera de combate tambi\u00e9n la verdad.\n\nEl sonido de las armas es bastante agradable y se siente bien cuando los golpes conectan, ciertamente en el apartado de audio le pusieron bastante cuidado, como siempre digo, aqu\u00ed no hay mucho que explicar con palabras, siempre es mejor que lo experimenten ustedes mismos.
\n\nhttps://www.youtube.com/watch?v=-TpCpcyT-FY\n\n

\nComentarios Finales\n
\n

\n\n
He hablado largo y tendido sobre el gameplay de Dead Cells, y la verdad es que me parece un juego bastante fren\u00e9tico y con un muy buen ritmo, y sin embargo m\u00e1s de uno seguramente se sienta interesado por su trasfondo e historia, cosa que realmente solo podemos averiguar jugando.\n\n
\"\"\n[Fuente](https://pl4yers.com/2018/12/actualizacion-dead-cells-pc/)
\n\nY eso que no he tocado el tema de la rejugabilidad, al \u201ccompletar\u201d el juego por primera vez, se nos dar\u00e1 una c\u00e9lula de jefe, esta la utilizamos para aumentar la dificultad del juego a\u00fan m\u00e1s, y desbloquear elementos nuevos, hay cosas que necesitar\u00e1n varias c\u00e9lulas de jefe, por lo cual si queremos desbloquear todo debemos completar el juego varias veces. Lo mejor de todo es que no hay un solo camino para llegar al final, pues podemos decidir nuestro propio camino, dependiendo de los objetos que tengamos, ya que algunas \u00e1reas ser\u00e1n inaccesibles al inicio. En resumen, es uno de esos juegos donde vas a descubrir siempre algo nuevo si eres de los que adoran explorar cada rinc\u00f3n del mapa.\n\nEn resumen, Dead Cells es un juego que recomiendo completamente, no es muy exigente en cuanto a especificaciones en el caso de que alguien piense jugarlo en pc; y ya saben, si tienes algo que comentar sobre el juego pueden decirlo en los comentarios.\n\n
\n\nY aqu\u00ed termina el post de hoy, como siempre muchas gracias por leer hasta este punto y espero haya sido de su agrado.\n\nSin mucho m\u00e1s que decir, nos vemos en el pr\u00f3ximo post, bye bye.
\n\n", - "category": "hive-140217", - "children": 1, - "community": "hive-140217", - "community_title": "Hive Gaming", - "created": "2020-07-07T13:58:27", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://generacionxbox.com/wp-content/uploads/2018/08/Dead-cells-xboxone-review.jpg", - "https://i.ytimg.com/vi/gdVRgK5hjnk/maxresdefault.jpg", - "https://www.muycomputer.com/wp-content/uploads/2018/08/Dead-Cells-Desbloqueables.jpg", - "https://www.gamelegant.com/wp-content/uploads/2019/04/dead-cells-2-780x439.jpg", - "https://i11b.3djuegos.com/juegos/14818/dead_cells/fotos/maestras/dead_cells-3882913.jpg", - "https://www.gamingcoffee.com/wp-content/uploads/2019/08/maxresdefault-8.jpg", - "https://www.gamerstyle.com.mx/wp-content/uploads/2020/01/Dead-cells-the-bad-seed-trailer-fecha-gamer-style.jpg", - "https://pl4yers.com/wp-content/uploads/2018/12/Dead-Cells-se-actualiza-en-PC.jpg" - ], - "links": [ - "https://generacionxbox.com/analisis-de-dead-cells/", - "https://www.youtube.com/watch?v=gdVRgK5hjnk", - "https://www.muycomputer.com/2018/08/09/analisis-dead-cells-nintendo-switch/", - "https://www.gamelegant.com/noticias/los-creadores-de-dead-cells-sorprendidos-por-las-ventas/", - "https://www.3djuegos.com/mx/noticias-ver/175636/dead-cells-recibe-actualizacion-masiva-con-nuevo-sistema-de/", - "https://www.gamingcoffee.com/2019/08/whos-the-boss-lo-nuevo-de-dead-cells/", - "https://www.gamerstyle.com.mx/2020/01/30/dead-cells-presentan-the-bad-seed-nuevo-dlc/", - "https://pl4yers.com/2018/12/actualizacion-dead-cells-pc/", - "https://generacionxbox.com/analisis-de-dead-cells/", - "https://www.youtube.com/watch?v=gdVRgK5hjnk" - ], - "tags": [ - "gaming", - "games", - "appreciator", - "upmewhale", - "oc", - "ocd", - "videogames", - "hive", - "spanish" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 73101064605610, - "payout": 29.14, - "payout_at": "2020-07-14T13:58:27", - "pending_payout_value": "29.140 HBD", - "percent_hbd": 10000, - "permlink": "eng-esp-dead-cells-metroidvania-rogue-like-hack-n-slash-fun-review", - "post_id": 86932790, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 132 - }, - "title": "[ENG/ESP] Dead Cells: MetroidVania + Rogue-Like + Hack N' Slash = Fun // Review", - "updated": "2020-07-07T13:58:27", - "url": "/hive-140217/@stk-g/eng-esp-dead-cells-metroidvania-rogue-like-hack-n-slash-fun-review" + "users": [ + "roelandp", + "jesta", + "xeroc" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53802622776333, + "payout": 171.268, + "payout_at": "2016-09-16T17:20:12", + "pending_payout_value": "171.268 HBD", + "percent_hbd": 10000, + "permlink": "17-steem-tools-every-steemian-needs-to-know", + "post_id": 959438, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 88 + }, + "title": "Steem Tools Every Steemian Needs To Know (Infographic)", + "updated": "2016-09-15T18:45:09", + "url": "/infographic/@powerup/17-steem-tools-every-steemian-needs-to-know" }, { - "active_votes": [ - { - "rshares": "144678648340", - "voter": "enlil" - }, - { - "rshares": "218577134311", - "voter": "tombstone" - }, - { - "rshares": "165880364", - "voter": "kushed" - }, - { - "rshares": "55457520608", - "voter": "complexring" - }, - { - "rshares": "2278857252570", - "voter": "steemychicken1" - }, - { - "rshares": "14313278073", - "voter": "aizensou" - }, - { - "rshares": "1545131689383", - "voter": "b0y2k" - }, - { - "rshares": "3989375095", - "voter": "stoner19" - }, - { - "rshares": "1422254799", - "voter": "sock" - }, - { - "rshares": "1760742207", - "voter": "josephcraig289" - }, - { - "rshares": "288586901327", - "voter": "onealfa" - }, - { - "rshares": "-7616594376558", - "voter": "kingscrown" - }, - { - "rshares": "0", - "voter": "richman" - }, - { - "rshares": "2104551428", - "voter": "igl00" - }, - { - "rshares": "478783231518", - "voter": "mark-waser" - }, - { - "rshares": "55636922072", - "voter": "razvanelulmarin" - }, - { - "rshares": "567999465941", - "voter": "gerber" - }, - { - "rshares": "622781636141", - "voter": "ezzy" - }, - { - "rshares": "61257519850", - "voter": "hitmeasap" - }, - { - "rshares": "653967398873", - "voter": "fabio" - }, - { - "rshares": "552422809754", - "voter": "anyx" - }, - { - "rshares": "51230041298", - "voter": "gikitiki" - }, - { - "rshares": "18130513655", - "voter": "shawnamawna" - }, - { - "rshares": "741878026304", - "voter": "exyle" - }, - { - "rshares": "17415091499", - "voter": "hagie" - }, - { - "rshares": "10998531642", - "voter": "coinbar" - }, - { - "rshares": "2397320482552", - "voter": "magicmonk" - }, - { - "rshares": "1548087902", - "voter": "caesarion" - }, - { - "rshares": "86953755275", - "voter": "thebluepanda" - }, - { - "rshares": "12392710394", - "voter": "yoshiko" - }, - { - "rshares": "4166775418", - "voter": "thisisbenbrick" - }, - { - "rshares": "9090662005658", - "voter": "jphamer1" - }, - { - "rshares": "1012962246", - "voter": "bidnat" - }, - { - "rshares": "69706475293", - "voter": "shanghaipreneur" - }, - { - "rshares": "22502003800", - "voter": "scaredycatguide" - }, - { - "rshares": "363463671143", - "voter": "borran" - }, - { - "rshares": "160954784885", - "voter": "netaterra" - }, - { - "rshares": "108077533738", - "voter": "someguy123" - }, - { - "rshares": "15100451277", - "voter": "einsteinpotsdam" - }, - { - "rshares": "262490235965", - "voter": "uwelang" - }, - { - "rshares": "450386298232", - "voter": "digital-wisdom" - }, - { - "rshares": "1875533116", - "voter": "ethical-ai" - }, - { - "rshares": "112395980", - "voter": "tejma" - }, - { - "rshares": "22858284786", - "voter": "jwaser" - }, - { - "rshares": "388766321580", - "voter": "jacobtothe" - }, - { - "rshares": "13876230623", - "voter": "bwaser" - }, - { - "rshares": "12178528748", - "voter": "allesgruen" - }, - { - "rshares": "71202163253", - "voter": "dannystravels" - }, - { - "rshares": "148050415451", - "voter": "herpetologyguy" - }, - { - "rshares": "154423388165", - "voter": "clayboyn" - }, - { - "rshares": "14067445155", - "voter": "jerryblanceton" - }, - { - "rshares": "179029271308", - "voter": "platinum-blue" - }, - { - "rshares": "8428876899", - "voter": "ssekulji" - }, - { - "rshares": "1950040721", - "voter": "strong-ai" - }, - { - "rshares": "34344610", - "voter": "timbernana" - }, - { - "rshares": "50491076044", - "voter": "sherlockcupid" - }, - { - "rshares": "75814964910", - "voter": "dougkarr" - }, - { - "rshares": "203097872641", - "voter": "jaybird" - }, - { - "rshares": "342779477", - "voter": "dark.horse" - }, - { - "rshares": "1063376811783", - "voter": "mangos" - }, - { - "rshares": "34049714872", - "voter": "toyman" - }, - { - "rshares": "905163479", - "voter": "technoprogressiv" - }, - { - "rshares": "16962392006", - "voter": "steemizen" - }, - { - "rshares": "34981822898", - "voter": "i-gordan" - }, - { - "rshares": "43791673965", - "voter": "cpol" - }, - { - "rshares": "879699280685", - "voter": "tarazkp" - }, - { - "rshares": "427822126", - "voter": "buzzbeergeek" - }, - { - "rshares": "219022248996", - "voter": "danielsaori" - }, - { - "rshares": "13514879364", - "voter": "bigdaddy" - }, - { - "rshares": "8868740849", - "voter": "kingsmind" - }, - { - "rshares": "1365802767", - "voter": "pboc" - }, - { - "rshares": "137003248917", - "voter": "louisthomas" - }, - { - "rshares": "1944057337", - "voter": "freebornsociety" - }, - { - "rshares": "147587048368", - "voter": "zaragast" - }, - { - "rshares": "29292033540", - "voter": "dune69" - }, - { - "rshares": "16372363654", - "voter": "acromott" - }, - { - "rshares": "340342476054", - "voter": "thenightflier" - }, - { - "rshares": "69820909900", - "voter": "schlees" - }, - { - "rshares": "844705968", - "voter": "papadimos" - }, - { - "rshares": "36715714453", - "voter": "yeaho" - }, - { - "rshares": "55608990020", - "voter": "romedog" - }, - { - "rshares": "76715441461", - "voter": "jerrybanfield" - }, - { - "rshares": "31167050178", - "voter": "sunshinetraveler" - }, - { - "rshares": "282940986218", - "voter": "swelker101" - }, - { - "rshares": "11353635637", - "voter": "mys" - }, - { - "rshares": "351565797095", - "voter": "spg" - }, - { - "rshares": "28235654453", - "voter": "steemitromney" - }, - { - "rshares": "1355766539691", - "voter": "isaria" - }, - { - "rshares": "19596302597", - "voter": "theywillkillyou" - }, - { - "rshares": "30719306365", - "voter": "anacristinasilva" - }, - { - "rshares": "26748732903", - "voter": "sam99" - }, - { - "rshares": "436576402650", - "voter": "offoodandart" - }, - { - "rshares": "3122342817", - "voter": "sammosk" - }, - { - "rshares": "27012740206", - "voter": "biancajapan" - }, - { - "rshares": "4387298313", - "voter": "whd" - }, - { - "rshares": "674669680", - "voter": "kayoko" - }, - { - "rshares": "38912710983", - "voter": "deniskj" - }, - { - "rshares": "2234168899", - "voter": "d-pend" - }, - { - "rshares": "1268164325947", - "voter": "geekgirl" - }, - { - "rshares": "3003131637", - "voter": "apoloo1" - }, - { - "rshares": "1640245764", - "voter": "horsepower" - }, - { - "rshares": "79266496416", - "voter": "goldkey" - }, - { - "rshares": "529747508", - "voter": "rafalski" - }, - { - "rshares": "150073623285", - "voter": "drorion" - }, - { - "rshares": "573776697193", - "voter": "hope-on-fire" - }, - { - "rshares": "2859270283", - "voter": "shitsignals" - }, - { - "rshares": "15674542462", - "voter": "dine77" - }, - { - "rshares": "1042095659435", - "voter": "steemvote" - }, - { - "rshares": "442878374013", - "voter": "steempostitalia" - }, - { - "rshares": "391742917155", - "voter": "bronkong" - }, - { - "rshares": "388774249151", - "voter": "vikisecrets" - }, - { - "rshares": "6353691684", - "voter": "helgapn" - }, - { - "rshares": "2820651421149", - "voter": "nuthman" - }, - { - "rshares": "38912268382", - "voter": "felander" - }, - { - "rshares": "8835918000", - "voter": "teneiced" - }, - { - "rshares": "17638221009", - "voter": "sumayyahsaidso" - }, - { - "rshares": "7071235433", - "voter": "fbslo" - }, - { - "rshares": "50245359099", - "voter": "accelerator" - }, - { - "rshares": "3108248299", - "voter": "justinparke" - }, - { - "rshares": "139900727697", - "voter": "alinakot" - }, - { - "rshares": "3686981519", - "voter": "yogacoach" - }, - { - "rshares": "10014482404643", - "voter": "therealwolf" - }, - { - "rshares": "321332481193", - "voter": "roleerob" - }, - { - "rshares": "8384968132", - "voter": "deathwing" - }, - { - "rshares": "229584310311", - "voter": "revisesociology" - }, - { - "rshares": "67878004577", - "voter": "silversaver888" - }, - { - "rshares": "17834423560", - "voter": "gringo211985" - }, - { - "rshares": "74193059630", - "voter": "heidi71" - }, - { - "rshares": "4528427456", - "voter": "pataty69" - }, - { - "rshares": "735074346", - "voter": "liverpool-fan" - }, - { - "rshares": "5494939630", - "voter": "fulcrumleader" - }, - { - "rshares": "29689376394", - "voter": "caladan" - }, - { - "rshares": "15499048975", - "voter": "joseph1956" - }, - { - "rshares": "94984775", - "voter": "blockbrothers" - }, - { - "rshares": "191916010082", - "voter": "emrebeyler" - }, - { - "rshares": "2051782432695", - "voter": "smartsteem" - }, - { - "rshares": "242393461576", - "voter": "jrvacation" - }, - { - "rshares": "709615704", - "voter": "chintya" - }, - { - "rshares": "128015611405", - "voter": "cervisia" - }, - { - "rshares": "3143785906", - "voter": "funtraveller" - }, - { - "rshares": "23982339948", - "voter": "nokodemion" - }, - { - "rshares": "27063093923", - "voter": "robotics101" - }, - { - "rshares": "19449670624", - "voter": "marcolino76" - }, - { - "rshares": "957435749", - "voter": "fourfourfun" - }, - { - "rshares": "36436391225", - "voter": "alexanderfluke" - }, - { - "rshares": "1074253760988", - "voter": "jongolson" - }, - { - "rshares": "1663321147", - "voter": "slashformotion" - }, - { - "rshares": "350431527250", - "voter": "gandhibaba" - }, - { - "rshares": "207361235408", - "voter": "nealmcspadden" - }, - { - "rshares": "51865592936", - "voter": "bala41288" - }, - { - "rshares": "29907402549", - "voter": "socialmediaseo" - }, - { - "rshares": "126796867803", - "voter": "purefood" - }, - { - "rshares": "39707395183", - "voter": "warnas" - }, - { - "rshares": "5404458311", - "voter": "philnewton" - }, - { - "rshares": "31198234740", - "voter": "leoumesh" - }, - { - "rshares": "354443399768", - "voter": "chronocrypto" - }, - { - "rshares": "1062264165552", - "voter": "holger80" - }, - { - "rshares": "749070034", - "voter": "unconditionalove" - }, - { - "rshares": "16547476571", - "voter": "cadawg" - }, - { - "rshares": "15619419195", - "voter": "upfundme" - }, - { - "rshares": "6626142543", - "voter": "ericburgoyne" - }, - { - "rshares": "153442789990", - "voter": "bigtom13" - }, - { - "rshares": "25300478442", - "voter": "piumadoro" - }, - { - "rshares": "140121427539", - "voter": "captainbob" - }, - { - "rshares": "1932760799", - "voter": "moeenali" - }, - { - "rshares": "3468833914", - "voter": "pkocjan" - }, - { - "rshares": "6448077064", - "voter": "maxpatternman" - }, - { - "rshares": "68817062470", - "voter": "bozz" - }, - { - "rshares": "49022290229", - "voter": "cst90" - }, - { - "rshares": "1566659359", - "voter": "russellstockley" - }, - { - "rshares": "10442149691", - "voter": "g4fun" - }, - { - "rshares": "8939529581", - "voter": "rubencress" - }, - { - "rshares": "26594309482", - "voter": "properfraction" - }, - { - "rshares": "60470586558", - "voter": "satren" - }, - { - "rshares": "1485298033", - "voter": "beleg" - }, - { - "rshares": "30200416220", - "voter": "bestboom" - }, - { - "rshares": "39415370269", - "voter": "abrockman" - }, - { - "rshares": "92220301598", - "voter": "ronaldoavelino" - }, - { - "rshares": "387069394", - "voter": "stmdev" - }, - { - "rshares": "57320215724", - "voter": "paragism" - }, - { - "rshares": "1008543683231", - "voter": "jkramer" - }, - { - "rshares": "130798074", - "voter": "dream-o" - }, - { - "rshares": "32265912568", - "voter": "freddio" - }, - { - "rshares": "6988440712", - "voter": "blainjones" - }, - { - "rshares": "3672554042", - "voter": "reinaldoverdu" - }, - { - "rshares": "0", - "voter": "tushy" - }, - { - "rshares": "1328529467", - "voter": "raorac" - }, - { - "rshares": "3693821452", - "voter": "yaraha" - }, - { - "rshares": "22755895761", - "voter": "promobot" - }, - { - "rshares": "2532610576348", - "voter": "solominer" - }, - { - "rshares": "2220605597", - "voter": "glodniwiedzy" - }, - { - "rshares": "2845614516", - "voter": "mrs.goldkey" - }, - { - "rshares": "81174358738", - "voter": "veteranforcrypto" - }, - { - "rshares": "54092932576", - "voter": "jancharlest" - }, - { - "rshares": "4666146022440", - "voter": "slobberchops" - }, - { - "rshares": "658131365", - "voter": "crimo" - }, - { - "rshares": "7398537458", - "voter": "davidesimoncini" - }, - { - "rshares": "107435377137", - "voter": "enforcer48" - }, - { - "rshares": "11582896794", - "voter": "flibbertigibbet" - }, - { - "rshares": "39800149", - "voter": "teslaman" - }, - { - "rshares": "140896360238", - "voter": "steem-tube" - }, - { - "rshares": "2544595710", - "voter": "archisteem" - }, - { - "rshares": "39782201", - "voter": "blondephysics" - }, - { - "rshares": "1843065595", - "voter": "susantabinod" - }, - { - "rshares": "47550615828", - "voter": "oldmans" - }, - { - "rshares": "983689337866", - "voter": "cryptoandcoffee" - }, - { - "rshares": "10340958378", - "voter": "magictoni" - }, - { - "rshares": "181413717965", - "voter": "digital.mine" - }, - { - "rshares": "10602486568", - "voter": "qam2112" - }, - { - "rshares": "4603401690", - "voter": "swisswitness" - }, - { - "rshares": "2917834750", - "voter": "lil-splatts" - }, - { - "rshares": "326609858624", - "voter": "apshamilton" - }, - { - "rshares": "3752743492", - "voter": "ambiguity" - }, - { - "rshares": "10805061471", - "voter": "schlunior" - }, - { - "rshares": "575839188205", - "voter": "hamismsf" - }, - { - "rshares": "2366147329", - "voter": "daath" - }, - { - "rshares": "29436365318", - "voter": "dalz" - }, - { - "rshares": "15563249212", - "voter": "holovision" - }, - { - "rshares": "68556355", - "voter": "jk6276" - }, - { - "rshares": "47862372633", - "voter": "yaelg" - }, - { - "rshares": "1427485457", - "voter": "julian2013" - }, - { - "rshares": "98237030262", - "voter": "dlike" - }, - { - "rshares": "722882054", - "voter": "triptolemus" - }, - { - "rshares": "53538123178", - "voter": "stever82" - }, - { - "rshares": "5874282669", - "voter": "gorbisan" - }, - { - "rshares": "447077144", - "voter": "jarielomaa" - }, - { - "rshares": "6382775306", - "voter": "fullnodeupdate" - }, - { - "rshares": "106068597636", - "voter": "engrave" - }, - { - "rshares": "782134584", - "voter": "munhenhos" - }, - { - "rshares": "525139381855", - "voter": "tipsybosphorus" - }, - { - "rshares": "34811575272", - "voter": "a-bot" - }, - { - "rshares": "3212935671", - "voter": "bobby.madagascar" - }, - { - "rshares": "22884268", - "voter": "laissez-faire" - }, - { - "rshares": "122876524716", - "voter": "agromeror" - }, - { - "rshares": "5178949137", - "voter": "kuku-splatts" - }, - { - "rshares": "933864591", - "voter": "ldp" - }, - { - "rshares": "9071975413", - "voter": "steemitcuration" - }, - { - "rshares": "1928273319", - "voter": "thrasher666" - }, - { - "rshares": "65438875991", - "voter": "priyanarc" - }, - { - "rshares": "1045796135", - "voter": "conectionbot" - }, - { - "rshares": "15892803128", - "voter": "maonx" - }, - { - "rshares": "45184782606", - "voter": "followjohngalt" - }, - { - "rshares": "8339554241", - "voter": "avel692" - }, - { - "rshares": "143290502", - "voter": "ohfiddlesticks" - }, - { - "rshares": "-121753598", - "voter": "dein-problem" - }, - { - "rshares": "101988883905", - "voter": "kekos" - }, - { - "rshares": "20374017347", - "voter": "moneytron" - }, - { - "rshares": "953253149", - "voter": "redheaddemon" - }, - { - "rshares": "524265265964", - "voter": "jpbliberty" - }, - { - "rshares": "10954899157", - "voter": "brucutu" - }, - { - "rshares": "12148735550", - "voter": "steemfriends" - }, - { - "rshares": "66389695187", - "voter": "ferrate" - }, - { - "rshares": "14606454327", - "voter": "blind-spot" - }, - { - "rshares": "4247869232", - "voter": "brucutu1" - }, - { - "rshares": "4315927682", - "voter": "brucutu2" - }, - { - "rshares": "6215064002", - "voter": "drazeus" - }, - { - "rshares": "1563551360", - "voter": "permaculturedude" - }, - { - "rshares": "4252092281", - "voter": "tubiska" - }, - { - "rshares": "4404645667", - "voter": "pocoto" - }, - { - "rshares": "4416323771", - "voter": "kitty-kitty" - }, - { - "rshares": "4478877192", - "voter": "jussara" - }, - { - "rshares": "4292482474", - "voter": "cyrillo" - }, - { - "rshares": "15051564098", - "voter": "broxi" - }, - { - "rshares": "204781289684", - "voter": "monster-one" - }, - { - "rshares": "15247774", - "voter": "limka" - }, - { - "rshares": "67401366690", - "voter": "dfacademy" - }, - { - "rshares": "4360850008", - "voter": "carioca" - }, - { - "rshares": "543010641", - "voter": "hungryharish" - }, - { - "rshares": "12826545217", - "voter": "cpt-sparrow" - }, - { - "rshares": "10962710780", - "voter": "wolffeys" - }, - { - "rshares": "2406912088", - "voter": "bynarikode" - }, - { - "rshares": "0", - "voter": "flag.god.bot" - }, - { - "rshares": "39945478799", - "voter": "pfdm" - }, - { - "rshares": "19557487897", - "voter": "maryincryptoland" - }, - { - "rshares": "1237578427", - "voter": "wallvater" - }, - { - "rshares": "68450786526", - "voter": "epicdice" - }, - { - "rshares": "12643290570", - "voter": "helgalubevi" - }, - { - "rshares": "174672049523", - "voter": "star.lord" - }, - { - "rshares": "890127661", - "voter": "sm-silva" - }, - { - "rshares": "2601168208889", - "voter": "likwid" - }, - { - "rshares": "581566595", - "voter": "iamjohn" - }, - { - "rshares": "44375647273", - "voter": "xyz004" - }, - { - "rshares": "737868969", - "voter": "steemindian" - }, - { - "rshares": "3441117609", - "voter": "milu-the-dog" - }, - { - "rshares": "53905509163", - "voter": "asmr.tist" - }, - { - "rshares": "2844221849", - "voter": "triplea.bot" - }, - { - "rshares": "208713133982", - "voter": "steem.leo" - }, - { - "rshares": "2197226473", - "voter": "nichemarket" - }, - { - "rshares": "522447045", - "voter": "bala-pal" - }, - { - "rshares": "493598831960", - "voter": "votebetting" - }, - { - "rshares": "6628241865", - "voter": "freddio.sport" - }, - { - "rshares": "305990496", - "voter": "partitura.stem" - }, - { - "rshares": "5378107926", - "voter": "babytarazkp" - }, - { - "rshares": "45152199980", - "voter": "asteroids" - }, - { - "rshares": "354640850", - "voter": "gingerbyna" - }, - { - "rshares": "630793106", - "voter": "arctis" - }, - { - "rshares": "1366816350", - "voter": "marlians.ccc" - }, - { - "rshares": "4247948113", - "voter": "thranax" - }, - { - "rshares": "723985000", - "voter": "brutoken" - }, - { - "rshares": "7728303653", - "voter": "fucanglong" - }, - { - "rshares": "1407387202", - "voter": "one.life" - }, - { - "rshares": "53891692176", - "voter": "ufm.pay" - }, - { - "rshares": "36820295758", - "voter": "shtup" - }, - { - "rshares": "46680214666", - "voter": "jk6276.life" - }, - { - "rshares": "1587215709", - "voter": "dappcoder" - }, - { - "rshares": "15279476677", - "voter": "sreypov" - }, - { - "rshares": "24292424", - "voter": "vxc.stem" - }, - { - "rshares": "156487816234", - "voter": "urtrailer" - }, - { - "rshares": "660779969", - "voter": "bruneo" - }, - { - "rshares": "325297607", - "voter": "stemd" - }, - { - "rshares": "535055666", - "voter": "therealyme" - }, - { - "rshares": "359805893", - "voter": "yggdrasil.laguna" - }, - { - "rshares": "237374840579", - "voter": "huaren.news" - }, - { - "rshares": "3075632569", - "voter": "goodreader" - }, - { - "rshares": "52008811", - "voter": "gerbo" - }, - { - "rshares": "31639564342", - "voter": "splatts" - }, - { - "rshares": "1095850225", - "voter": "khalpal" - }, - { - "rshares": "4254761156", - "voter": "greatnorthcrypto" - }, - { - "rshares": "3772894135", - "voter": "mvanhauten" - }, - { - "rshares": "642588051", - "voter": "angel33" - }, - { - "rshares": "2611168379", - "voter": "ribary" - }, - { - "rshares": "10996534213", - "voter": "stevespeaks" - }, - { - "rshares": "62316528000", - "voter": "lacking" - }, - { - "rshares": "265155701", - "voter": "toni.pal" - }, - { - "rshares": "47343835148", - "voter": "mice-k" - }, - { - "rshares": "10666227133", - "voter": "staryao" - }, - { - "rshares": "51423896918", - "voter": "davidlionfish" - }, - { - "rshares": "1323515011", - "voter": "dalz4" - }, - { - "rshares": "3980044506", - "voter": "curamax" - }, - { - "rshares": "1605106742", - "voter": "steemcityrewards" - }, - { - "rshares": "2091249948", - "voter": "dpend.active" - }, - { - "rshares": "703859717", - "voter": "artdescry" - }, - { - "rshares": "21306190335", - "voter": "polish.hive" - }, - { - "rshares": "10897895329", - "voter": "velinov86" - }, - { - "rshares": "0", - "voter": "imalmani" - }, - { - "rshares": "649856285", - "voter": "brianbrogan1960" - }, - { - "rshares": "196255951432", - "voter": "dcityrewards" - }, - { - "rshares": "1916045647", - "voter": "archon-mining" - }, - { - "rshares": "3611145291", - "voter": "vibrasphere" - }, - { - "rshares": "3845128474", - "voter": "weloveart" - }, - { - "rshares": "334037025374", - "voter": "ronavel" - }, - { - "rshares": "199027119604", - "voter": "hivecur" - }, - { - "rshares": "296834186", - "voter": "kingturd" - }, - { - "rshares": "110181936855", - "voter": "jelly13" - }, - { - "rshares": "1218230372", - "voter": "hivebuilderteam" - }, - { - "rshares": "707633210", - "voter": "iwillsurvive" - }, - { - "rshares": "2540722454", - "voter": "w-splatts" - }, - { - "rshares": "865387102", - "voter": "andreinacdmx" - }, - { - "rshares": "7722754871", - "voter": "hivecur2" - } + "active_votes": [ + { + "rshares": "480436179104", + "voter": "barrie" + }, + { + "rshares": "7864449914272", + "voter": "steempty" + }, + { + "rshares": "231705234180", + "voter": "anonymous" + }, + { + "rshares": "16854862331350", + "voter": "rainman" + }, + { + "rshares": "14446969817383", + "voter": "summon" + }, + { + "rshares": "25305686361517", + "voter": "ned" + }, + { + "rshares": "35326666852152", + "voter": "jamesc" + }, + { + "rshares": "4264966375681", + "voter": "riverhead" + }, + { + "rshares": "2331280387575", + "voter": "badassmother" + }, + { + "rshares": "2097108315061", + "voter": "hr1" + }, + { + "rshares": "118474244256", + "voter": "sandra" + }, + { + "rshares": "186985754668", + "voter": "svk" + }, + { + "rshares": "1112765112473", + "voter": "ihashfury" + }, + { + "rshares": "1120603805124", + "voter": "rossco99" + }, + { + "rshares": "139902157720", + "voter": "liondani" + }, + { + "rshares": "2642718616169", + "voter": "wang" + }, + { + "rshares": "24281627442", + "voter": "jaewoocho" + }, + { + "rshares": "6243689624471", + "voter": "steemit200" + }, + { + "rshares": "1868926634967", + "voter": "xeroc" + }, + { + "rshares": "6514602351120", + "voter": "complexring" + }, + { + "rshares": "6410652893701", + "voter": "clayop" + }, + { + "rshares": "6132075386062", + "voter": "witness.svk" + }, + { + "rshares": "1772458968810", + "voter": "joseph" + }, + { + "rshares": "4727274896444", + "voter": "au1nethyb1" + }, + { + "rshares": "494824460005", + "voter": "recursive2" + }, + { + "rshares": "3458312417787", + "voter": "recursive" + }, + { + "rshares": "686881929841", + "voter": "boombastic" + }, + { + "rshares": "91206564426", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6953910678", + "voter": "bingo-0" + }, + { + "rshares": "1330823260969", + "voter": "steempower" + }, + { + "rshares": "450758929058", + "voter": "boatymcboatface" + }, + { + "rshares": "1191961702407", + "voter": "cass" + }, + { + "rshares": "10604743495", + "voter": "idol" + }, + { + "rshares": "6904136925", + "voter": "nexusdev" + }, + { + "rshares": "783330802369", + "voter": "steemrollin" + }, + { + "rshares": "5146683930", + "voter": "sakr" + }, + { + "rshares": "296262169682", + "voter": "chitty" + }, + { + "rshares": "117668471628", + "voter": "linouxis9" + }, + { + "rshares": "82315328878", + "voter": "unosuke" + }, + { + "rshares": "3109715701", + "voter": "yefet" + }, + { + "rshares": "16257411149", + "voter": "brindleswan" + }, + { + "rshares": "1799714267", + "voter": "jocelyn" + }, + { + "rshares": "74263607249", + "voter": "nenad-ristic" + }, + { + "rshares": "79806365559", + "voter": "easteagle13" + }, + { + "rshares": "17258698670", + "voter": "jademont" + }, + { + "rshares": "74888702310", + "voter": "eeks" + }, + { + "rshares": "508866333", + "voter": "paco-steem" + }, + { + "rshares": "6128712690", + "voter": "spaninv" + }, + { + "rshares": "31076852778", + "voter": "instructor2121" + }, + { + "rshares": "-12893763252", + "voter": "james-show" + }, + { + "rshares": "2068009075", + "voter": "gekko" + }, + { + "rshares": "336346989448", + "voter": "teamsteem" + }, + { + "rshares": "577046508309", + "voter": "nanzo-scoop" + }, + { + "rshares": "13067769111", + "voter": "fact" + }, + { + "rshares": "169323765740", + "voter": "steve-walschot" + }, + { + "rshares": "10036865820", + "voter": "kefkius" + }, + { + "rshares": "47419915237", + "voter": "hannixx42" + }, + { + "rshares": "183044162935", + "voter": "mummyimperfect" + }, + { + "rshares": "57489294954", + "voter": "oaldamster" + }, + { + "rshares": "268804254", + "voter": "coar" + }, + { + "rshares": "109398386804", + "voter": "asch" + }, + { + "rshares": "1413643352", + "voter": "murh" + }, + { + "rshares": "2380104240", + "voter": "error" + }, + { + "rshares": "5853981249", + "voter": "marta-zaidel" + }, + { + "rshares": "40916611985", + "voter": "ranko-k" + }, + { + "rshares": "1135543735246", + "voter": "cyber" + }, + { + "rshares": "50798219281", + "voter": "ak2020" + }, + { + "rshares": "260089147904", + "voter": "billbutler" + }, + { + "rshares": "7897515214", + "voter": "thecryptofiend" + }, + { + "rshares": "32296517134", + "voter": "drinkzya" + }, + { + "rshares": "3923236237211", + "voter": "satoshifund" + }, + { + "rshares": "397051543", + "voter": "stiletto" + }, + { + "rshares": "56682668949", + "voter": "juanmiguelsalas" + }, + { + "rshares": "583788541552", + "voter": "andrarchy" + }, + { + "rshares": "112713462099", + "voter": "kenny-crane" + }, + { + "rshares": "17036364912", + "voter": "samether" + }, + { + "rshares": "33767337247", + "voter": "ratel" + }, + { + "rshares": "54688824107", + "voter": "thecryptodrive" + }, + { + "rshares": "4699576112", + "voter": "dahaz159" + }, + { + "rshares": "379204818665", + "voter": "kaylinart" + }, + { + "rshares": "552432841732", + "voter": "infovore" + }, + { + "rshares": "13355491837", + "voter": "facer" + }, + { + "rshares": "263013790227", + "voter": "trogdor" + }, + { + "rshares": "4675654152", + "voter": "tee-em" + }, + { + "rshares": "31336803829", + "voter": "michaelx" + }, + { + "rshares": "5946252630", + "voter": "mark-waser" + }, + { + "rshares": "17023109715", + "voter": "albertogm" + }, + { + "rshares": "116594641815", + "voter": "geoffrey" + }, + { + "rshares": "42673423694", + "voter": "kimziv" + }, + { + "rshares": "46235030853", + "voter": "honeythief" + }, + { + "rshares": "82866843499", + "voter": "emily-cook" + }, + { + "rshares": "91972176401", + "voter": "mctiller" + }, + { + "rshares": "35412152853", + "voter": "cryptoiskey" + }, + { + "rshares": "11723743800", + "voter": "primus" + }, + { + "rshares": "484592257", + "voter": "mrhankeh" + }, + { + "rshares": "38897615588", + "voter": "clement" + }, + { + "rshares": "46178109682", + "voter": "isteemit" + }, + { + "rshares": "68580548647", + "voter": "bacchist" + }, + { + "rshares": "72899731827", + "voter": "venuspcs" + }, + { + "rshares": "3324885062", + "voter": "michaellamden68" + }, + { + "rshares": "179676652871", + "voter": "asmolokalo" + }, + { + "rshares": "38569797449", + "voter": "good-karma" + }, + { + "rshares": "453653624734", + "voter": "roelandp" + }, + { + "rshares": "3347929950", + "voter": "orly" + }, + { + "rshares": "45472590951", + "voter": "firepower" + }, + { + "rshares": "255388351", + "voter": "mstang83" + }, + { + "rshares": "19227034654", + "voter": "hakise" + }, + { + "rshares": "17256371639", + "voter": "r4fken" + }, + { + "rshares": "25548776759", + "voter": "tcfxyz" + }, + { + "rshares": "7076198200", + "voter": "futurefood" + }, + { + "rshares": "142765809551", + "voter": "derekareith" + }, + { + "rshares": "32325400002", + "voter": "picokernel" + }, + { + "rshares": "10594872684", + "voter": "seanmchughart" + }, + { + "rshares": "766081509", + "voter": "busser" + }, + { + "rshares": "1296482376779", + "voter": "renohq" + }, + { + "rshares": "18840499998", + "voter": "ausbitbank" + }, + { + "rshares": "1451740615", + "voter": "mixa" + }, + { + "rshares": "2226795955", + "voter": "steem1653" + }, + { + "rshares": "17220499402", + "voter": "sebastien" + }, + { + "rshares": "13516728290", + "voter": "sitaru" + }, + { + "rshares": "308826662759", + "voter": "jesta" + }, + { + "rshares": "34328964595", + "voter": "toxonaut" + }, + { + "rshares": "118752539", + "voter": "snowden" + }, + { + "rshares": "4709018700", + "voter": "thegoodguy" + }, + { + "rshares": "15578903803", + "voter": "aaseb" + }, + { + "rshares": "1107663461", + "voter": "karen13" + }, + { + "rshares": "24973952155", + "voter": "igster" + }, + { + "rshares": "4289492867", + "voter": "dcryptogold" + }, + { + "rshares": "12853559657", + "voter": "domavila" + }, + { + "rshares": "2395414530", + "voter": "dmacshady" + }, + { + "rshares": "23336601075", + "voter": "grolelo" + }, + { + "rshares": "1514372408", + "voter": "kendewitt" + }, + { + "rshares": "89580632", + "voter": "wildchild" + }, + { + "rshares": "1682066491", + "voter": "natali22" + }, + { + "rshares": "44666586658", + "voter": "sbq777t" + }, + { + "rshares": "1953764546", + "voter": "the-future" + }, + { + "rshares": "4296012707", + "voter": "adamt" + }, + { + "rshares": "44807508492", + "voter": "mynameisbrian" + }, + { + "rshares": "179093605311", + "voter": "blueorgy" + }, + { + "rshares": "5008619742", + "voter": "poseidon" + }, + { + "rshares": "360289908808", + "voter": "calaber24p" + }, + { + "rshares": "4210919359", + "voter": "fubar-bdhr" + }, + { + "rshares": "119399264", + "voter": "nedrob" + }, + { + "rshares": "16044930360", + "voter": "heimindanger" + }, + { + "rshares": "7311842917", + "voter": "geronimo" + }, + { + "rshares": "3355524755", + "voter": "bones" + }, + { + "rshares": "20338607929", + "voter": "bendjmiller222" + }, + { + "rshares": "5228680253", + "voter": "bitcoiner" + }, + { + "rshares": "3754893033", + "voter": "tarindel" + }, + { + "rshares": "3786022381", + "voter": "azurejasper" + }, + { + "rshares": "30851492146", + "voter": "deanliu" + }, + { + "rshares": "599141666", + "voter": "siol" + }, + { + "rshares": "5479123729", + "voter": "rainchen" + }, + { + "rshares": "5690877975", + "voter": "sharker" + }, + { + "rshares": "34508226149", + "voter": "sauravrungta" + }, + { + "rshares": "530196643", + "voter": "qonq99" + }, + { + "rshares": "53839881372", + "voter": "jl777" + }, + { + "rshares": "7837739118", + "voter": "lostnuggett" + }, + { + "rshares": "30002446832", + "voter": "zaebars" + }, + { + "rshares": "1808058993", + "voter": "yarly" + }, + { + "rshares": "272610758", + "voter": "yarly2" + }, + { + "rshares": "273018668", + "voter": "yarly3" + }, + { + "rshares": "157733805", + "voter": "yarly4" + }, + { + "rshares": "158624349", + "voter": "yarly5" + }, + { + "rshares": "90416287", + "voter": "yarly7" + }, + { + "rshares": "838465852", + "voter": "raymonjohnstone" + }, + { + "rshares": "23815723291", + "voter": "masterinvestor" + }, + { + "rshares": "50619397", + "voter": "steemchain" + }, + { + "rshares": "50619397", + "voter": "whalepool" + }, + { + "rshares": "206059171", + "voter": "sergey44" + }, + { + "rshares": "117016257", + "voter": "mxo8" + }, + { + "rshares": "7787748060", + "voter": "summonerrk" + }, + { + "rshares": "197539708", + "voter": "strictlybusiness" + }, + { + "rshares": "1234205003", + "voter": "mohammed123" + }, + { + "rshares": "5166865550", + "voter": "bbrewer" + }, + { + "rshares": "942251145", + "voter": "happyphoenix" + }, + { + "rshares": "20257716778", + "voter": "krabgat" + }, + { + "rshares": "4543551843", + "voter": "proto" + }, + { + "rshares": "658330815", + "voter": "curator" + }, + { + "rshares": "7211602623", + "voter": "sisterholics" + }, + { + "rshares": "437530299", + "voter": "yarly10" + }, + { + "rshares": "1365336577", + "voter": "alex.chien" + }, + { + "rshares": "234176102", + "voter": "yarly11" + }, + { + "rshares": "81879061", + "voter": "yarly12" + }, + { + "rshares": "3675263114", + "voter": "tygergamer" + }, + { + "rshares": "3627578747", + "voter": "bkkshadow" + }, + { + "rshares": "11567371620", + "voter": "dimitarj" + }, + { + "rshares": "817422571", + "voter": "bullionstackers" + }, + { + "rshares": "3082906297", + "voter": "dmilash" + }, + { + "rshares": "2002481686", + "voter": "andreynoch" + }, + { + "rshares": "110940646", + "voter": "cryptoz" + }, + { + "rshares": "3391999835", + "voter": "glitterpig" + }, + { + "rshares": "6404274840", + "voter": "shortcut" + }, + { + "rshares": "128587928653", + "voter": "steemdrive" + }, + { + "rshares": "1075365048", + "voter": "metaflute" + }, + { + "rshares": "58218132689", + "voter": "gomeravibz" + }, + { + "rshares": "2298169701", + "voter": "taker" + }, + { + "rshares": "65485650", + "voter": "dras" + }, + { + "rshares": "6519151447", + "voter": "nekromarinist" + }, + { + "rshares": "6880289904", + "voter": "theprophet" + }, + { + "rshares": "240147448", + "voter": "frozendota" + }, + { + "rshares": "15543734691", + "voter": "felixxx" + }, + { + "rshares": "3432112427", + "voter": "merej99" + }, + { + "rshares": "254880160829", + "voter": "laonie" + }, + { + "rshares": "24852935259", + "voter": "rawnetics" + }, + { + "rshares": "22374728157", + "voter": "thebluepanda" + }, + { + "rshares": "25618981790", + "voter": "laonie1" + }, + { + "rshares": "26132274895", + "voter": "laonie2" + }, + { + "rshares": "26141438708", + "voter": "laonie3" + }, + { + "rshares": "25094797142", + "voter": "laoyao" + }, + { + "rshares": "65214616", + "voter": "modogg" + }, + { + "rshares": "7958908678", + "voter": "myfirst" + }, + { + "rshares": "51767495130", + "voter": "somebody" + }, + { + "rshares": "1935723185", + "voter": "flysaga" + }, + { + "rshares": "6864125594", + "voter": "brendio" + }, + { + "rshares": "2082514282", + "voter": "gmurph" + }, + { + "rshares": "72860205", + "voter": "kurzer42" + }, + { + "rshares": "11435966181", + "voter": "midnightoil" + }, + { + "rshares": "78269782470", + "voter": "mibenkito" + }, + { + "rshares": "2375155298", + "voter": "kalimor" + }, + { + "rshares": "4276738846", + "voter": "ullikume" + }, + { + "rshares": "2735302379", + "voter": "darrenturetzky" + }, + { + "rshares": "59414599", + "voter": "michellek" + }, + { + "rshares": "26136684196", + "voter": "laonie4" + }, + { + "rshares": "26133889368", + "voter": "laonie5" + }, + { + "rshares": "26130809772", + "voter": "laonie6" + }, + { + "rshares": "26126568283", + "voter": "laonie7" + }, + { + "rshares": "5977415250", + "voter": "kurtbeil" + }, + { + "rshares": "26122787391", + "voter": "laonie8" + }, + { + "rshares": "26119897476", + "voter": "laonie9" + }, + { + "rshares": "3300371180", + "voter": "steemleak" + }, + { + "rshares": "28583578460", + "voter": "xiaohui" + }, + { + "rshares": "1980457070", + "voter": "t3ran13" + }, + { + "rshares": "7834943379", + "voter": "mevilkingdom" + }, + { + "rshares": "21531331546", + "voter": "jphamer1" + }, + { + "rshares": "11056722867", + "voter": "ekitcho" + }, + { + "rshares": "127379962", + "voter": "bigsambucca" + }, + { + "rshares": "1504058180", + "voter": "elfkitchen" + }, + { + "rshares": "93154573622", + "voter": "joele" + }, + { + "rshares": "5999670912", + "voter": "oflyhigh" + }, + { + "rshares": "2078540879", + "voter": "paynode" + }, + { + "rshares": "62400081859", + "voter": "sirwinchester" + }, + { + "rshares": "122933349", + "voter": "agussudaryanto" + }, + { + "rshares": "894298402", + "voter": "xiaokongcom" + }, + { + "rshares": "1802649539", + "voter": "xianjun" + }, + { + "rshares": "61313637", + "voter": "jfelton5" + }, + { + "rshares": "73061236", + "voter": "evgenyche" + }, + { + "rshares": "70633121", + "voter": "stevescriber" + }, + { + "rshares": "4097488430", + "voter": "bledarus" + }, + { + "rshares": "52467942", + "voter": "loli" + }, + { + "rshares": "53638070", + "voter": "nano2nd" + }, + { + "rshares": "118127541", + "voter": "microluck" + }, + { + "rshares": "187339808", + "voter": "lisadang" + }, + { + "rshares": "9426175065", + "voter": "theb0red1" + }, + { + "rshares": "2057906517", + "voter": "chinadaily" + }, + { + "rshares": "31193669396", + "voter": "kyriacos" + }, + { + "rshares": "59021275", + "voter": "cryptoblu" + }, + { + "rshares": "59014859", + "voter": "instructor" + }, + { + "rshares": "7981765563", + "voter": "lemouth" + }, + { + "rshares": "739008163112", + "voter": "dollarvigilante" + }, + { + "rshares": "18699439170", + "voter": "anotherjoe" + }, + { + "rshares": "60945251", + "voter": "saveliy" + }, + { + "rshares": "99328137981", + "voter": "serejandmyself" + }, + { + "rshares": "4877223734", + "voter": "almerri" + }, + { + "rshares": "728677907", + "voter": "alexma3x" + }, + { + "rshares": "9824813120", + "voter": "gvargas123" + }, + { + "rshares": "443801352", + "voter": "keepdoodling" + }, + { + "rshares": "3657683169", + "voter": "shneakysquirrel" + }, + { + "rshares": "278004039", + "voter": "steevc" + }, + { + "rshares": "3341359657", + "voter": "movievertigo" + }, + { + "rshares": "70361224", + "voter": "vasilii" + }, + { + "rshares": "26113221925", + "voter": "laonie10" + }, + { + "rshares": "362426778", + "voter": "mrlogic" + }, + { + "rshares": "62362905", + "voter": "steempipe" + }, + { + "rshares": "55543445", + "voter": "bitchplease" + }, + { + "rshares": "79273566479", + "voter": "someguy123" + }, + { + "rshares": "90827598056", + "voter": "barrycooper" + }, + { + "rshares": "3572205128", + "voter": "stillsafe" + }, + { + "rshares": "76843163", + "voter": "joelbow" + }, + { + "rshares": "28822571115", + "voter": "hilarski" + }, + { + "rshares": "2149644744", + "voter": "therealpaul" + }, + { + "rshares": "4580066391", + "voter": "steemitpatina" + }, + { + "rshares": "5178202476", + "voter": "silverbug2000" + }, + { + "rshares": "55859919", + "voter": "rickmiller" + }, + { + "rshares": "1233668048", + "voter": "lenar" + }, + { + "rshares": "10020064820", + "voter": "etcmike" + }, + { + "rshares": "61596105", + "voter": "uri-bruck" + }, + { + "rshares": "5154589910", + "voter": "nulliusinverba" + }, + { + "rshares": "1698796327", + "voter": "runridefly" + }, + { + "rshares": "57841858", + "voter": "dianaju" + }, + { + "rshares": "88019548", + "voter": "uziriel" + }, + { + "rshares": "57530129", + "voter": "mstoni" + }, + { + "rshares": "4592499069", + "voter": "richardcrill" + }, + { + "rshares": "25230942954", + "voter": "laonie11" + }, + { + "rshares": "1687924866", + "voter": "eight-rad" + }, + { + "rshares": "62783765", + "voter": "lovetosteemit" + }, + { + "rshares": "1660563580", + "voter": "davidjkelley" + }, + { + "rshares": "4350110165", + "voter": "baro" + }, + { + "rshares": "9060248806", + "voter": "sponge-bob" + }, + { + "rshares": "4765474309", + "voter": "l0k1" + }, + { + "rshares": "15558969971", + "voter": "digital-wisdom" + }, + { + "rshares": "494724739", + "voter": "areynolds" + }, + { + "rshares": "3708378555", + "voter": "ethical-ai" + }, + { + "rshares": "54247498", + "voter": "freesteem" + }, + { + "rshares": "2477345340", + "voter": "fajrilgooner" + }, + { + "rshares": "2222639041", + "voter": "matthewtiii" + }, + { + "rshares": "55401224", + "voter": "walternz" + }, + { + "rshares": "6826713536", + "voter": "jwaser" + }, + { + "rshares": "852820572", + "voter": "tatianka" + }, + { + "rshares": "12020525779", + "voter": "doitvoluntarily" + }, + { + "rshares": "56439878", + "voter": "phusionphil" + }, + { + "rshares": "607704096", + "voter": "kev7000" + }, + { + "rshares": "1018487810", + "voter": "zettar" + }, + { + "rshares": "55736056", + "voter": "lighter" + }, + { + "rshares": "207196967560", + "voter": "asksisk" + }, + { + "rshares": "25848472434", + "voter": "dubi" + }, + { + "rshares": "2673758412", + "voter": "bwaser" + }, + { + "rshares": "6400398189", + "voter": "dexter-k" + }, + { + "rshares": "50751176", + "voter": "roadhog" + }, + { + "rshares": "350998373", + "voter": "panther" + }, + { + "rshares": "1784221363", + "voter": "alina1" + }, + { + "rshares": "50639382", + "voter": "doggnostic" + }, + { + "rshares": "1094895432", + "voter": "wulfmeister" + }, + { + "rshares": "659556912", + "voter": "ct-gurus" + }, + { + "rshares": "348073541", + "voter": "bones261" + }, + { + "rshares": "387894501497", + "voter": "charlieshrem" + }, + { + "rshares": "61786622160", + "voter": "tracemayer" + }, + { + "rshares": "9049304130", + "voter": "brains" + }, + { + "rshares": "54448999", + "voter": "onlineworker" + }, + { + "rshares": "50210467", + "voter": "post-successful" + }, + { + "rshares": "689134944", + "voter": "jessicanicklos" + }, + { + "rshares": "633657150", + "voter": "bones555" + }, + { + "rshares": "54919358", + "voter": "steem4fobs" + }, + { + "rshares": "492992904", + "voter": "echoesinthemind" + }, + { + "rshares": "53397626", + "voter": "f1111111" + }, + { + "rshares": "2084637414", + "voter": "steemsquad" + }, + { + "rshares": "574180710", + "voter": "anomaly" + }, + { + "rshares": "27665434494", + "voter": "tarekadam" + }, + { + "rshares": "2399791213", + "voter": "ellepdub" + }, + { + "rshares": "51890765", + "voter": "gregorygarcia" + }, + { + "rshares": "57056918", + "voter": "inarix03" + }, + { + "rshares": "573904238", + "voter": "ola1" + }, + { + "rshares": "849039554", + "voter": "jbaker585" + }, + { + "rshares": "5522323762", + "voter": "michelle.gent" + }, + { + "rshares": "11700805109", + "voter": "herpetologyguy" + }, + { + "rshares": "58261815", + "voter": "everittdmickey" + }, + { + "rshares": "53548226", + "voter": "mari5555na" + }, + { + "rshares": "4813549151", + "voter": "morgan.waser" + }, + { + "rshares": "50602980", + "voter": "cfisher" + }, + { + "rshares": "51240567", + "voter": "billkappa442" + }, + { + "rshares": "51236745", + "voter": "niiboye" + }, + { + "rshares": "51227561", + "voter": "battalar" + }, + { + "rshares": "1157070714", + "voter": "anns" + }, + { + "rshares": "50875769", + "voter": "cyan" + }, + { + "rshares": "50873654", + "voter": "palladium" + }, + { + "rshares": "50796122", + "voter": "factom" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "827252367", + "voter": "bapparabi" + }, + { + "rshares": "3389664065", + "voter": "dodders007" + }, + { + "rshares": "3687326823", + "voter": "strong-ai" + }, + { + "rshares": "161225748", + "voter": "iliyaa" + }, + { + "rshares": "162925257", + "voter": "uct" + }, + { + "rshares": "1354011808", + "voter": "rusteemitblog" + }, + { + "rshares": "158798473", + "voter": "zapply" + }, + { + "rshares": "201362779", + "voter": "mgibson" + }, + { + "rshares": "157118197", + "voter": "rage" + }, + { + "rshares": "159973989", + "voter": "capcom" + }, + { + "rshares": "153699193", + "voter": "allgoodthings" + }, + { + "rshares": "159531007", + "voter": "benetton" + }, + { + "rshares": "159425365", + "voter": "tipsandtricks" + }, + { + "rshares": "159318360", + "voter": "stimmt" + }, + { + "rshares": "159175576", + "voter": "fallout" + }, + { + "rshares": "159025535", + "voter": "xtreme" + }, + { + "rshares": "944924940", + "voter": "modernbukowski" + }, + { + "rshares": "158632601", + "voter": "cream" + }, + { + "rshares": "158637372", + "voter": "alterego" + }, + { + "rshares": "158602900", + "voter": "steem-wallet" + }, + { + "rshares": "158560941", + "voter": "steemthis" + }, + { + "rshares": "158486055", + "voter": "zendesk" + }, + { + "rshares": "26843428547", + "voter": "goldmatters" + }, + { + "rshares": "81051650", + "voter": "dealzgal" + }, + { + "rshares": "158230871", + "voter": "helepa" + }, + { + "rshares": "199633972", + "voter": "rishi556" + }, + { + "rshares": "92745520", + "voter": "storage" + }, + { + "rshares": "188144802", + "voter": "antaja" + }, + { + "rshares": "145960715", + "voter": "raph" + }, + { + "rshares": "151162552", + "voter": "dougkarr" + }, + { + "rshares": "1586499055", + "voter": "slammr76" + }, + { + "rshares": "73844343", + "voter": "blackmarket" + }, + { + "rshares": "79990132", + "voter": "gifts" + }, + { + "rshares": "85598308", + "voter": "expat" + }, + { + "rshares": "134906258", + "voter": "steemtrail" + }, + { + "rshares": "153178035", + "voter": "royfft" + }, + { + "rshares": "112446078", + "voter": "paulocouto" + }, + { + "rshares": "155872526", + "voter": "countofdelphi" + }, + { + "rshares": "151306241", + "voter": "tnemm.atiaw" + }, + { + "rshares": "154295967", + "voter": "harleyismydog" + }, + { + "rshares": "148041723", + "voter": "newsfeed" + }, + { + "rshares": "144957585", + "voter": "sawgunner13" + }, + { + "rshares": "147818170", + "voter": "dirlei.sdias" + } + ], + "author": "steve-walschot", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "# Time for another upgrade of SteemPay.io! A lot of work has been done behind the scenes, and here's a brief overview:\n\n\n---\n\n\n\n\n\n# Pay on site\n\n### Users will be able to make their payments straight from the payments page using a 2 step sliding form. \n\n\n\nhttp://i.imgur.com/iinyGFl.png\n\n\n\nThis means no more need to open another tab page, fill in all the details in your wallet, and returning to SteemPay. Both the password and the active private key can be used to broadcast the transaction. \n\n\n\nSteemPay **does not** encourage password storing, however, there is an option available for those who prefer to save their password in the browser's ***localstorage.*** A warning pop up will appear explaining the risks of storing passwords in the browser.\n\n\n\nAfter a successful login, the user will see a quick overview of his available balances, and another confirmation is required to finalize the transaction straight from the payment window.\n\n\n\n\n\n# Mobile wallet\n\n### The mobile wallet is up and running, but my code seems like a mess due to trial and error. \n\nA **bounty** will be placed for someone to cleanup everything and make some minor corrections so the first version can be released very soon (and get approved on the official android & iOS stores). I feel the need to encourage bounties, so people can become engaged with the community, and hopefully I'll discover new talent to join me on the further expansion of SteemPay.\n\n\n\n# SteemFEST 1\n\nSteemPay will donate some money to SteemFEST 1. Me and @roelandp still need to work out the details, but SteemPay will be present and setup a donation terminal where users are free to send some donations towards the organization by using the mobile wallet with QR support (plans may still change). \n\n\n\n# Hardware upgrade\n\nYet another server upgrade was needed to house all services related to SteemPay. This includes many other side projects that will be announced later on. This should be the final server upgrade for SteemPay and related services. \n\n\n\nThe DNS is still propagating, so you might not see the recent changes on SteemPay.io yet.\n\n\n\n# General statistics implantation\n\nA lightweight database will be kept storing nothing but the transaction amounts processed trough SteemPay. This serves for having some overview on the monthly growth of the transactions, as well as the amounts processed. Every month, the statistics will be published.\n\n\n\n# Steem on!", + "category": "steempay", + "children": 14, + "created": "2016-09-14T06:19:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.imgur.com/iinyGFl.png" ], - "author": "themarkymark", - "author_payout_value": "0.000 HBD", - "author_reputation": 78.7, - "author_role": "admin", - "author_title": "STEMGeeks Team", - "beneficiaries": [], - "blacklists": [], - "body": "![image.png](https://files.peakd.com/file/peakd-hive/themarkymark/J8fXUt5a-image.png)\n\nIn my previous post I talked about the Raspberry Pi case and accessories I got for my recent Raspberry Pi 4 order. \n\n![image.png](https://files.peakd.com/file/peakd-hive/themarkymark/niBeOUBq-image.png)\n\nWhile I do like this case, for $15.99 it includes a 40mm fan, heat sinks, 3A power supply with flip switch, and a nice looking case.\n\nFor roughly the same amount of money as the official case and power supply, you get heat sinks, fan, and a power supply with a built-in switch. \n\nI think I have found better, in fact, this case is amazing. It does come at a premium though.\n\n# Introducing the Argon One Raspberry Pi 4 Case\n\n![image.png](https://files.peakd.com/file/peakd-hive/themarkymark/4npKrkJK-image.png)\n\nWhile it is rather large, you will see why in a few moments.\n\nThis case features a breakaway panel to get to GPIO pins easily. While keeping the case together. This panel is magnetic and not just a snap in and out.\n\n![image.png](https://files.peakd.com/file/peakd-hive/themarkymark/geiMSEc4-image.png)\n\nThe case also features a daughterboard that includes a fan and moves all the ports to the back of the case so they are all in one place. I really love these set-top cases that do this.\n\n![image.png](https://files.peakd.com/file/peakd-hive/themarkymark/z4Bd8qso-image.png)\n\nYou would think that was enough to convince you this case is amazing, but I am not done! The case includes a power switch as well as a script to add smart functionality similar to a PC.\n\n![image.png](https://files.peakd.com/file/peakd-hive/themarkymark/8DzdtVCE-image.png)\n\nA short press of the Power button, while power is off, will turn on the Raspberry Pi. \n\nWhile the power is on, you can long-press (3+ seconds) the button and it will initiate a safe power down and remove power.\n\nIf you double-tap the power button, it will initiate a reboot.\n\nIf you are having trouble with the Pi you can do a long press (5+ seconds) and it will completely power off the Pi with a forced shutdown.\n\nThe Argon One case also includes a smart fan script that will adjust the fan speed based on the CPU temperatures.\n\nThe top of the case is metal and acts as a large heat sink for the Raspberry Pi.\n\nThis case is pure genius but comes at a premium, the case alone is $25 on Amazon and does not include a USB-C power supply which can be purchased separately for $8-10 typically or you can get the bundle for $36. This case isn't cheap and starts to get into PC price territory, but it does come jammed packed with features.\n\nI haven't tried it yet, but glancing over the scripts included with the Argon One they can be modified for any case to give smart fan control and a smart power button.\n\nYou can look over the installation script [here](curl https://download.argon40.com/argon1.sh | bash)\n\nAll Argon One Case images are from the Argon One [website](https://www.argon40.com/argon-one-raspberry-pi-4-case.html)\n\n---\n\n
Securely chat with me on [Keybase](https://keybase.io/officialmarky)\n
https://images.hive.blog/0x0/https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png
\n#
[Why you should vote me as witness](https://peakd.com/witness-category/@themarkymark/why-you-should-vote-for-themarkymark-as-witness)
#", - "category": "hive-163521", - "children": 2, - "community": "hive-163521", - "community_title": "STEMGeeks", - "created": "2020-07-07T16:56:27", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://files.peakd.com/file/peakd-hive/themarkymark/J8fXUt5a-image.png", - "https://files.peakd.com/file/peakd-hive/themarkymark/niBeOUBq-image.png", - "https://files.peakd.com/file/peakd-hive/themarkymark/4npKrkJK-image.png", - "https://files.peakd.com/file/peakd-hive/themarkymark/geiMSEc4-image.png", - "https://files.peakd.com/file/peakd-hive/themarkymark/z4Bd8qso-image.png", - "https://files.peakd.com/file/peakd-hive/themarkymark/8DzdtVCE-image.png", - "https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png" - ], - "links": [ - "https://www.argon40.com/argon-one-raspberry-pi-4-case.html", - "https://keybase.io/officialmarky", - "/witness-category/@themarkymark/why-you-should-vote-for-themarkymark-as-witness" - ], - "tags": [ - "hive-163521", - "raspberrypi", - "technology", - "palnet", - "neoxian", - "gadgets", - "geek" - ], - "users": [ - "themarkymark" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 64822919570451, - "payout": 25.689, - "payout_at": "2020-07-14T16:56:27", - "pending_payout_value": "25.689 HBD", - "percent_hbd": 10000, - "permlink": "is-this-the-best-raspberry-pi-4-case-ever-designed", - "post_id": 86935139, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 3.0, - "gray": false, - "hide": false, - "total_votes": 345 - }, - "title": "Is this the best Raspberry Pi 4 case ever designed?", - "updated": "2020-07-07T16:56:27", - "url": "/hive-163521/@themarkymark/is-this-the-best-raspberry-pi-4-case-ever-designed" - }, - { - "active_votes": [ - { - "rshares": "93390174273", - "voter": "tombstone" - }, - { - "rshares": "208171647273", - "voter": "onealfa" - }, - { - "rshares": "1148958992915", - "voter": "kingscrown" - }, - { - "rshares": "2107018608307", - "voter": "kevinwong" - }, - { - "rshares": "473506633363", - "voter": "mark-waser" - }, - { - "rshares": "224606002559", - "voter": "mammasitta" - }, - { - "rshares": "496232273055", - "voter": "gerber" - }, - { - "rshares": "58822452757", - "voter": "daan" - }, - { - "rshares": "544092097384", - "voter": "ezzy" - }, - { - "rshares": "8576783136", - "voter": "mrwang" - }, - { - "rshares": "897844238978", - "voter": "livingfree" - }, - { - "rshares": "71512805609", - "voter": "jeffjagoe" - }, - { - "rshares": "1934824402983", - "voter": "meesterboom" - }, - { - "rshares": "790674943623", - "voter": "arcange" - }, - { - "rshares": "648387459572", - "voter": "exyle" - }, - { - "rshares": "8923959125", - "voter": "arconite" - }, - { - "rshares": "1610511014", - "voter": "raphaelle" - }, - { - "rshares": "284930767367", - "voter": "joythewanderer" - }, - { - "rshares": "39017247809", - "voter": "sazbird" - }, - { - "rshares": "8994740347087", - "voter": "jphamer1" - }, - { - "rshares": "1059762227", - "voter": "djennyfloro" - }, - { - "rshares": "67841846991", - "voter": "shanghaipreneur" - }, - { - "rshares": "397741733533", - "voter": "borran" - }, - { - "rshares": "13110236736", - "voter": "azizbd" - }, - { - "rshares": "7668435990", - "voter": "wisbeech" - }, - { - "rshares": "140890496961", - "voter": "netaterra" - }, - { - "rshares": "94463745957", - "voter": "someguy123" - }, - { - "rshares": "60612276544", - "voter": "jlufer" - }, - { - "rshares": "25631294118", - "voter": "por500bolos" - }, - { - "rshares": "206214080614", - "voter": "uwelang" - }, - { - "rshares": "437199515351", - "voter": "digital-wisdom" - }, - { - "rshares": "1855291126", - "voter": "ethical-ai" - }, - { - "rshares": "22603332077", - "voter": "jwaser" - }, - { - "rshares": "180694010128", - "voter": "maarnio" - }, - { - "rshares": "13690470824", - "voter": "bwaser" - }, - { - "rshares": "63149164860", - "voter": "justyy" - }, - { - "rshares": "1452897266", - "voter": "ellepdub" - }, - { - "rshares": "146408839767", - "voter": "herpetologyguy" - }, - { - "rshares": "50942773377", - "voter": "clayboyn" - }, - { - "rshares": "17898001873", - "voter": "freshfund" - }, - { - "rshares": "27575020074", - "voter": "morgan.waser" - }, - { - "rshares": "3500416648", - "voter": "handyman" - }, - { - "rshares": "1928744280", - "voter": "strong-ai" - }, - { - "rshares": "3371038067", - "voter": "r0nd0n" - }, - { - "rshares": "278131796742", - "voter": "techslut" - }, - { - "rshares": "553845981", - "voter": "triviummethod" - }, - { - "rshares": "200007950548", - "voter": "jaybird" - }, - { - "rshares": "-4987956704983", - "voter": "jaki01" - }, - { - "rshares": "1022759907696", - "voter": "created" - }, - { - "rshares": "895342983", - "voter": "technoprogressiv" - }, - { - "rshares": "5091535151", - "voter": "amariespeaks" - }, - { - "rshares": "4400177793404", - "voter": "tarazkp" - }, - { - "rshares": "215785810848", - "voter": "danielsaori" - }, - { - "rshares": "62402100894", - "voter": "fingersik" - }, - { - "rshares": "284395312679", - "voter": "lizanomadsoul" - }, - { - "rshares": "3112472819", - "voter": "marxrab" - }, - { - "rshares": "-3227266335829", - "voter": "davidorcamuriel" - }, - { - "rshares": "140211158635", - "voter": "melinda010100" - }, - { - "rshares": "15014151619", - "voter": "htliao" - }, - { - "rshares": "25586841275", - "voter": "dune69" - }, - { - "rshares": "1875870323245", - "voter": "smasssh" - }, - { - "rshares": "1302846956", - "voter": "morph" - }, - { - "rshares": "375636551552", - "voter": "cryptocurator" - }, - { - "rshares": "2328354559", - "voter": "khussan" - }, - { - "rshares": "6443000391", - "voter": "stackin" - }, - { - "rshares": "67407240993", - "voter": "jerrybanfield" - }, - { - "rshares": "143164335295", - "voter": "followbtcnews" - }, - { - "rshares": "5282720815", - "voter": "aleister" - }, - { - "rshares": "92871300613", - "voter": "swelker101" - }, - { - "rshares": "2649191746", - "voter": "varunpinto" - }, - { - "rshares": "445267669764", - "voter": "isaria" - }, - { - "rshares": "65458634316", - "voter": "stevelivingston" - }, - { - "rshares": "39661523976", - "voter": "schoolforsdg4" - }, - { - "rshares": "1831131633619", - "voter": "galenkp" - }, - { - "rshares": "467787843502", - "voter": "enjar" - }, - { - "rshares": "1458612340", - "voter": "robtheranger" - }, - { - "rshares": "26587195822", - "voter": "sam99" - }, - { - "rshares": "61220258838", - "voter": "crimsonclad" - }, - { - "rshares": "496424795860", - "voter": "drakos" - }, - { - "rshares": "311373730118", - "voter": "paulag" - }, - { - "rshares": "332180581332", - "voter": "jaynie" - }, - { - "rshares": "8116744689", - "voter": "howtostartablog" - }, - { - "rshares": "95528056688", - "voter": "dandesign86" - }, - { - "rshares": "33813695240", - "voter": "jayna" - }, - { - "rshares": "239476267588", - "voter": "ew-and-patterns" - }, - { - "rshares": "1956141205", - "voter": "d-pend" - }, - { - "rshares": "184939539218", - "voter": "benedict08" - }, - { - "rshares": "50951070767", - "voter": "mcoinz79" - }, - { - "rshares": "18356074073", - "voter": "otom" - }, - { - "rshares": "67355576159", - "voter": "jacekw" - }, - { - "rshares": "822412416", - "voter": "dernan" - }, - { - "rshares": "76747083112", - "voter": "codingdefined" - }, - { - "rshares": "162004096480", - "voter": "hope-on-fire" - }, - { - "rshares": "2492122145", - "voter": "shitsignals" - }, - { - "rshares": "8668517859", - "voter": "inquiringtimes" - }, - { - "rshares": "1000844584457", - "voter": "steemvote" - }, - { - "rshares": "18753483163", - "voter": "macchiata" - }, - { - "rshares": "27966786431", - "voter": "pocketrocket" - }, - { - "rshares": "74238365474", - "voter": "tfame3865" - }, - { - "rshares": "99191080004", - "voter": "jasonbu" - }, - { - "rshares": "3897540367", - "voter": "chetanpadliya" - }, - { - "rshares": "826063446", - "voter": "fabiyamada" - }, - { - "rshares": "255542997272", - "voter": "shanibeer" - }, - { - "rshares": "25578607834", - "voter": "steemitph" - }, - { - "rshares": "27292996589", - "voter": "fionasfavourites" - }, - { - "rshares": "178106360633", - "voter": "costanza" - }, - { - "rshares": "33999953653", - "voter": "felander" - }, - { - "rshares": "8695329747", - "voter": "santigs" - }, - { - "rshares": "829942951", - "voter": "kromtar" - }, - { - "rshares": "51255882149", - "voter": "bashadow" - }, - { - "rshares": "3028743207054", - "voter": "stoodkev" - }, - { - "rshares": "24622954680", - "voter": "lmon" - }, - { - "rshares": "9005769284", - "voter": "kimzwarch" - }, - { - "rshares": "41063820427", - "voter": "redouanemez" - }, - { - "rshares": "3861132641", - "voter": "aneukpineung78" - }, - { - "rshares": "28501430831", - "voter": "massivevibration" - }, - { - "rshares": "20225344897", - "voter": "onartbali" - }, - { - "rshares": "1136555847", - "voter": "nurhayati" - }, - { - "rshares": "32813738032", - "voter": "crokkon" - }, - { - "rshares": "434228837025", - "voter": "fbslo" - }, - { - "rshares": "50266891864", - "voter": "accelerator" - }, - { - "rshares": "41209140982", - "voter": "raj808" - }, - { - "rshares": "8234716101", - "voter": "zeky" - }, - { - "rshares": "3097168046", - "voter": "justinparke" - }, - { - "rshares": "116003093918", - "voter": "eastmael" - }, - { - "rshares": "3220453870", - "voter": "yogacoach" - }, - { - "rshares": "336370498778", - "voter": "celestal" - }, - { - "rshares": "118373496612", - "voter": "rosatravels" - }, - { - "rshares": "747982030", - "voter": "osm0sis" - }, - { - "rshares": "498490542123", - "voter": "taskmaster4450" - }, - { - "rshares": "159679789248", - "voter": "roleerob" - }, - { - "rshares": "7319400254", - "voter": "deathwing" - }, - { - "rshares": "459844601193", - "voter": "revisesociology" - }, - { - "rshares": "576109865", - "voter": "superbing" - }, - { - "rshares": "58247671313", - "voter": "espoem" - }, - { - "rshares": "3645312600", - "voter": "superdavey" - }, - { - "rshares": "60856968111", - "voter": "steemmatt" - }, - { - "rshares": "3262869977", - "voter": "asbonclz" - }, - { - "rshares": "12736598104", - "voter": "bxlphabet" - }, - { - "rshares": "533755061", - "voter": "bigdizzle91" - }, - { - "rshares": "63258712045", - "voter": "dinglehopper" - }, - { - "rshares": "25843731938", - "voter": "tawasi" - }, - { - "rshares": "142346680658", - "voter": "josediccus" - }, - { - "rshares": "676702881", - "voter": "liverpool-fan" - }, - { - "rshares": "4700104505", - "voter": "cjsean" - }, - { - "rshares": "25934190136", - "voter": "caladan" - }, - { - "rshares": "686178183959", - "voter": "lays" - }, - { - "rshares": "2162415816", - "voter": "karinxxl" - }, - { - "rshares": "15270834174", - "voter": "joseph1956" - }, - { - "rshares": "10646346899", - "voter": "tradingideas" - }, - { - "rshares": "76861678", - "voter": "blockbrothers" - }, - { - "rshares": "167721860239", - "voter": "emrebeyler" - }, - { - "rshares": "10566211071", - "voter": "maverickinvictus" - }, - { - "rshares": "7840062886", - "voter": "chireerocks" - }, - { - "rshares": "2852711127", - "voter": "evecab" - }, - { - "rshares": "709155882", - "voter": "chintya" - }, - { - "rshares": "134662828594", - "voter": "b00m" - }, - { - "rshares": "35416671981", - "voter": "itchyfeetdonica" - }, - { - "rshares": "2740500227", - "voter": "funtraveller" - }, - { - "rshares": "636514169", - "voter": "shai-hulud" - }, - { - "rshares": "10153184913", - "voter": "howiemac" - }, - { - "rshares": "77305490418", - "voter": "yahialababidi" - }, - { - "rshares": "1358693482", - "voter": "fourfourfun" - }, - { - "rshares": "4535306938", - "voter": "candyboy" - }, - { - "rshares": "131584458119", - "voter": "aussieninja" - }, - { - "rshares": "1035067619", - "voter": "jewel-lover" - }, - { - "rshares": "1023051580", - "voter": "insideoutlet" - }, - { - "rshares": "529016786992", - "voter": "jongolson" - }, - { - "rshares": "43594219910", - "voter": "mountainjewel" - }, - { - "rshares": "54786998164", - "voter": "girolamomarotta" - }, - { - "rshares": "5457547280", - "voter": "payger" - }, - { - "rshares": "736977630", - "voter": "korinkrafting" - }, - { - "rshares": "1123302069", - "voter": "mehta" - }, - { - "rshares": "1830516025", - "voter": "gillianpearce" - }, - { - "rshares": "847447225", - "voter": "a1000carv" - }, - { - "rshares": "38438844743", - "voter": "soufianechakrouf" - }, - { - "rshares": "4394173476", - "voter": "anmeitheal" - }, - { - "rshares": "181149444372", - "voter": "nealmcspadden" - }, - { - "rshares": "9376014549", - "voter": "womenempowerment" - }, - { - "rshares": "58892053932", - "voter": "lynncoyle1" - }, - { - "rshares": "3927277011", - "voter": "davemccoy" - }, - { - "rshares": "11392765031", - "voter": "mermaidvampire" - }, - { - "rshares": "55575347732", - "voter": "manncpt" - }, - { - "rshares": "110771084134", - "voter": "purefood" - }, - { - "rshares": "635859047", - "voter": "durbisrodriguez" - }, - { - "rshares": "29802292764", - "voter": "butterb" - }, - { - "rshares": "20005319623", - "voter": "portugalcoin" - }, - { - "rshares": "46888237960", - "voter": "fullcoverbetting" - }, - { - "rshares": "1861221439", - "voter": "jimcustodio" - }, - { - "rshares": "14782860739", - "voter": "jnmarteau" - }, - { - "rshares": "3805519602", - "voter": "newageinv" - }, - { - "rshares": "309642830896", - "voter": "chronocrypto" - }, - { - "rshares": "3895578150", - "voter": "bishoppeter1" - }, - { - "rshares": "1563311703", - "voter": "superstarxtala" - }, - { - "rshares": "1067330058690", - "voter": "holger80" - }, - { - "rshares": "167914939692", - "voter": "fantasycrypto" - }, - { - "rshares": "41928996362", - "voter": "warpedpoetic" - }, - { - "rshares": "652051064", - "voter": "unconditionalove" - }, - { - "rshares": "14445946219", - "voter": "cadawg" - }, - { - "rshares": "3233145748", - "voter": "ericburgoyne" - }, - { - "rshares": "26344620293", - "voter": "piumadoro" - }, - { - "rshares": "1939076915", - "voter": "moeenali" - }, - { - "rshares": "2203879565", - "voter": "sweetkathy" - }, - { - "rshares": "1235828157", - "voter": "noechie1827" - }, - { - "rshares": "3029266320", - "voter": "pkocjan" - }, - { - "rshares": "1040046451", - "voter": "east.autovote" - }, - { - "rshares": "838801251", - "voter": "ilovepoorpeople" - }, - { - "rshares": "157557579068", - "voter": "barge" - }, - { - "rshares": "14784102555", - "voter": "allyson19" - }, - { - "rshares": "45192852195", - "voter": "bozz" - }, - { - "rshares": "36472277406", - "voter": "beeyou" - }, - { - "rshares": "147137329238", - "voter": "whack.science" - }, - { - "rshares": "6860234498", - "voter": "crypto-econom1st" - }, - { - "rshares": "1547487082", - "voter": "russellstockley" - }, - { - "rshares": "679961579", - "voter": "jasonwaterfalls" - }, - { - "rshares": "6312041499", - "voter": "steempampanga" - }, - { - "rshares": "40569207359", - "voter": "jagoe" - }, - { - "rshares": "49516170387", - "voter": "almi" - }, - { - "rshares": "21063941099", - "voter": "ericha" - }, - { - "rshares": "15156723558", - "voter": "teutonium" - }, - { - "rshares": "8423185587", - "voter": "tubcat" - }, - { - "rshares": "80516833470", - "voter": "simplymike" - }, - { - "rshares": "4877836211", - "voter": "dhingvimal" - }, - { - "rshares": "596484884", - "voter": "fabpoleo24" - }, - { - "rshares": "3802633072", - "voter": "designpod" - }, - { - "rshares": "4169034148", - "voter": "veganomics" - }, - { - "rshares": "26391877629", - "voter": "bestboom" - }, - { - "rshares": "34479802712", - "voter": "abrockman" - }, - { - "rshares": "829941807", - "voter": "zainnyferdhoy" - }, - { - "rshares": "91852544321", - "voter": "ronaldoavelino" - }, - { - "rshares": "217300364444", - "voter": "louis88" - }, - { - "rshares": "1175842728277", - "voter": "dera123" - }, - { - "rshares": "35222990145", - "voter": "nomadicsoul" - }, - { - "rshares": "1050080757624", - "voter": "jkramer" - }, - { - "rshares": "2586601851", - "voter": "beat-the-bookies" - }, - { - "rshares": "8104235046", - "voter": "wolfhart" - }, - { - "rshares": "716487655", - "voter": "yameen" - }, - { - "rshares": "74584261365", - "voter": "braaiboy" - }, - { - "rshares": "28229096172", - "voter": "freddio" - }, - { - "rshares": "3473659748", - "voter": "blainjones" - }, - { - "rshares": "15898187736", - "voter": "allover" - }, - { - "rshares": "75288031740", - "voter": "good-darma" - }, - { - "rshares": "2091653767", - "voter": "asapers" - }, - { - "rshares": "1041966865", - "voter": "rollandthomas" - }, - { - "rshares": "348741417641", - "voter": "steemitbloggers" - }, - { - "rshares": "39807905771", - "voter": "janton" - }, - { - "rshares": "29286153431", - "voter": "globalschool" - }, - { - "rshares": "864002502", - "voter": "feedmytwi" - }, - { - "rshares": "804418227820", - "voter": "sbi3" - }, - { - "rshares": "31942424286", - "voter": "promobot" - }, - { - "rshares": "45700397617", - "voter": "incubot" - }, - { - "rshares": "24056163590", - "voter": "superlao" - }, - { - "rshares": "1934645921", - "voter": "glodniwiedzy" - }, - { - "rshares": "608500830362", - "voter": "friendsofgondor" - }, - { - "rshares": "2449795559", - "voter": "opt2o" - }, - { - "rshares": "6354184637", - "voter": "playdice" - }, - { - "rshares": "6523145053", - "voter": "celinavisaez" - }, - { - "rshares": "1038045231", - "voter": "tronsformer" - }, - { - "rshares": "2300010259639", - "voter": "slobberchops" - }, - { - "rshares": "10615651492", - "voter": "diabonua" - }, - { - "rshares": "77634744655", - "voter": "pladozero" - }, - { - "rshares": "290055952068", - "voter": "nateaguila" - }, - { - "rshares": "7615937118", - "voter": "davidesimoncini" - }, - { - "rshares": "106359484785", - "voter": "enforcer48" - }, - { - "rshares": "7367716440", - "voter": "crypticat" - }, - { - "rshares": "14087866482", - "voter": "akdx" - }, - { - "rshares": "8436199874", - "voter": "khiabels" - }, - { - "rshares": "563882581", - "voter": "gmlgang" - }, - { - "rshares": "9922158194", - "voter": "coinsandchains" - }, - { - "rshares": "46894440300", - "voter": "oldmans" - }, - { - "rshares": "16783774908", - "voter": "johndoer123" - }, - { - "rshares": "96883631028", - "voter": "cryptoandcoffee" - }, - { - "rshares": "1932991271", - "voter": "frejafri" - }, - { - "rshares": "4085519052", - "voter": "dipoabasch" - }, - { - "rshares": "24373733436", - "voter": "samvan" - }, - { - "rshares": "837069526", - "voter": "stormrobertson" - }, - { - "rshares": "25656384394", - "voter": "dses" - }, - { - "rshares": "180969407784", - "voter": "digital.mine" - }, - { - "rshares": "4016528547", - "voter": "swisswitness" - }, - { - "rshares": "782442149", - "voter": "moneybaby" - }, - { - "rshares": "4994994", - "voter": "steemprotect" - }, - { - "rshares": "669983832371", - "voter": "blewitt" - }, - { - "rshares": "630859364", - "voter": "pizzajohn" - }, - { - "rshares": "986121375", - "voter": "pileofsteem" - }, - { - "rshares": "43807205123", - "voter": "dog-marley" - }, - { - "rshares": "35050266661", - "voter": "thehive" - }, - { - "rshares": "2284767568211", - "voter": "goblinknackers" - }, - { - "rshares": "68557837", - "voter": "jk6276" - }, - { - "rshares": "6608221135", - "voter": "quatro" - }, - { - "rshares": "9569123406", - "voter": "flaws" - }, - { - "rshares": "63148141304", - "voter": "goingbonkers" - }, - { - "rshares": "85824862169", - "voter": "dlike" - }, - { - "rshares": "626271798", - "voter": "triptolemus" - }, - { - "rshares": "8899523815", - "voter": "london65" - }, - { - "rshares": "273118849576", - "voter": "blueeyes8960" - }, - { - "rshares": "45973386775", - "voter": "voxmortis" - }, - { - "rshares": "6413635199", - "voter": "fullnodeupdate" - }, - { - "rshares": "115346107889", - "voter": "theexcelclub" - }, - { - "rshares": "92674217465", - "voter": "engrave" - }, - { - "rshares": "3335367537", - "voter": "bagpuss" - }, - { - "rshares": "517082366343", - "voter": "tipsybosphorus" - }, - { - "rshares": "4482177207", - "voter": "chops.support" - }, - { - "rshares": "963551778", - "voter": "chike4545" - }, - { - "rshares": "954058760", - "voter": "lfie28" - }, - { - "rshares": "163288900457", - "voter": "upvoteshares" - }, - { - "rshares": "2808073027", - "voter": "bobby.madagascar" - }, - { - "rshares": "24446249", - "voter": "laissez-faire" - }, - { - "rshares": "0", - "voter": "voter000" - }, - { - "rshares": "4176723550", - "voter": "ticket4fun" - }, - { - "rshares": "121063673646", - "voter": "agromeror" - }, - { - "rshares": "28075894303", - "voter": "balticbadger" - }, - { - "rshares": "11785660143", - "voter": "blanchy" - }, - { - "rshares": "6824326793", - "voter": "anroja" - }, - { - "rshares": "812242507", - "voter": "ldp" - }, - { - "rshares": "9018790630", - "voter": "steemitcuration" - }, - { - "rshares": "14850915701", - "voter": "blarchive" - }, - { - "rshares": "4784366785", - "voter": "divine-sound" - }, - { - "rshares": "1915218072", - "voter": "thrasher666" - }, - { - "rshares": "65153928095", - "voter": "priyanarc" - }, - { - "rshares": "511503816", - "voter": "everyoung" - }, - { - "rshares": "811229271", - "voter": "florino" - }, - { - "rshares": "1040165965", - "voter": "conectionbot" - }, - { - "rshares": "4434991685", - "voter": "andydream" - }, - { - "rshares": "6535111518", - "voter": "arteem" - }, - { - "rshares": "21091216469", - "voter": "minnowbuilder" - }, - { - "rshares": "2655645924", - "voter": "mysteempl" - }, - { - "rshares": "122334278738", - "voter": "johannpiber" - }, - { - "rshares": "39473103285", - "voter": "followjohngalt" - }, - { - "rshares": "5399846758", - "voter": "monkaydee293" - }, - { - "rshares": "6540039967", - "voter": "mistia" - }, - { - "rshares": "1809786004", - "voter": "carbodexkim" - }, - { - "rshares": "1700349783", - "voter": "themightysquid" - }, - { - "rshares": "140520295", - "voter": "ohfiddlesticks" - }, - { - "rshares": "1150500333", - "voter": "hubyr" - }, - { - "rshares": "0", - "voter": "dein-problem" - }, - { - "rshares": "100424996288", - "voter": "kekos" - }, - { - "rshares": "1039029079", - "voter": "smonia" - }, - { - "rshares": "30681162947", - "voter": "tigerrkg" - }, - { - "rshares": "3743986981", - "voter": "thehealthylife" - }, - { - "rshares": "1255216670", - "voter": "smon-fan" - }, - { - "rshares": "1110299197", - "voter": "enthef" - }, - { - "rshares": "18296958529", - "voter": "blind-spot" - }, - { - "rshares": "670619687", - "voter": "tr777" - }, - { - "rshares": "553444475", - "voter": "sm-jewel" - }, - { - "rshares": "62210696151", - "voter": "delabo" - }, - { - "rshares": "527475400", - "voter": "tr77" - }, - { - "rshares": "557241195", - "voter": "smoner" - }, - { - "rshares": "778983393", - "voter": "smonian" - }, - { - "rshares": "2156571736", - "voter": "noekie" - }, - { - "rshares": "1362104558", - "voter": "permaculturedude" - }, - { - "rshares": "882329668453", - "voter": "agent14" - }, - { - "rshares": "933997274", - "voter": "princessamber" - }, - { - "rshares": "4236517274", - "voter": "i-c-e" - }, - { - "rshares": "16034256520", - "voter": "smon-joa" - }, - { - "rshares": "4711664397", - "voter": "baasdebeer" - }, - { - "rshares": "537985379", - "voter": "jjangjjanggirl" - }, - { - "rshares": "937774009", - "voter": "ghostdylan" - }, - { - "rshares": "18803880725", - "voter": "fusion.lover" - }, - { - "rshares": "807180834", - "voter": "goodcontentbot" - }, - { - "rshares": "136481305937", - "voter": "rem-steem" - }, - { - "rshares": "32767370567", - "voter": "zaphyr" - }, - { - "rshares": "1312706269", - "voter": "blockbeard" - }, - { - "rshares": "1407741913", - "voter": "brandnewaccount" - }, - { - "rshares": "1451283098", - "voter": "shit-posts" - }, - { - "rshares": "3109496122", - "voter": "neove" - }, - { - "rshares": "5758604896", - "voter": "cabalen" - }, - { - "rshares": "9494062562", - "voter": "jadung" - }, - { - "rshares": "580857705", - "voter": "rihanna2" - }, - { - "rshares": "1278499991", - "voter": "goodcontentbot1" - }, - { - "rshares": "4827348383", - "voter": "afternoondrinks" - }, - { - "rshares": "946001046", - "voter": "steemcameroon" - }, - { - "rshares": "1035769683", - "voter": "sm-skynet" - }, - { - "rshares": "1472285492", - "voter": "rappler" - }, - { - "rshares": "576056920", - "voter": "angelanichole" - }, - { - "rshares": "5561253288", - "voter": "theithei" - }, - { - "rshares": "3206340894", - "voter": "pastoragus" - }, - { - "rshares": "545405256", - "voter": "smonbear" - }, - { - "rshares": "1055430126", - "voter": "snorcity" - }, - { - "rshares": "29600532009", - "voter": "hungryharish" - }, - { - "rshares": "10793201320", - "voter": "wolffeys" - }, - { - "rshares": "5921015279", - "voter": "kggymlife" - }, - { - "rshares": "2531139401", - "voter": "squidben1" - }, - { - "rshares": "3126202798", - "voter": "ilanisnapshots" - }, - { - "rshares": "2329412507", - "voter": "bynarikode" - }, - { - "rshares": "538513238", - "voter": "theinspiration" - }, - { - "rshares": "2852212922", - "voter": "hungryanu" - }, - { - "rshares": "536917419", - "voter": "epic4chris" - }, - { - "rshares": "1885246602", - "voter": "korle" - }, - { - "rshares": "11185790414", - "voter": "herbncrypto" - }, - { - "rshares": "650255255", - "voter": "dtrade" - }, - { - "rshares": "678684124", - "voter": "plebtv" - }, - { - "rshares": "15551010159", - "voter": "simplylars" - }, - { - "rshares": "308873872173", - "voter": "scholaris" - }, - { - "rshares": "5034944041", - "voter": "dailyke20" - }, - { - "rshares": "41815160529", - "voter": "banvie" - }, - { - "rshares": "772611704", - "voter": "sm-silva" - }, - { - "rshares": "8000439903", - "voter": "socialbot" - }, - { - "rshares": "580803261", - "voter": "ssc-token" - }, - { - "rshares": "3649302102908", - "voter": "likwid" - }, - { - "rshares": "3014728785", - "voter": "omnivori" - }, - { - "rshares": "532377634", - "voter": "tinyhousecryptos" - }, - { - "rshares": "150933012", - "voter": "tradingideas2" - }, - { - "rshares": "28196907467", - "voter": "plankton.token" - }, - { - "rshares": "4009482963", - "voter": "glstech" - }, - { - "rshares": "6471631747", - "voter": "nicollefiallo" - }, - { - "rshares": "3116127362", - "voter": "iamjohn" - }, - { - "rshares": "4216100154", - "voter": "kendra19" - }, - { - "rshares": "1421777875", - "voter": "stubborn-soul" - }, - { - "rshares": "19705931139", - "voter": "steemindian" - }, - { - "rshares": "1343115931", - "voter": "teamashen" - }, - { - "rshares": "518308032", - "voter": "vxc" - }, - { - "rshares": "2098139491", - "voter": "strongwoman" - }, - { - "rshares": "3001375959", - "voter": "milu-the-dog" - }, - { - "rshares": "53090293866", - "voter": "asmr.tist" - }, - { - "rshares": "2478399910", - "voter": "triplea.bot" - }, - { - "rshares": "12868165097", - "voter": "tomlee" - }, - { - "rshares": "182372086785", - "voter": "steem.leo" - }, - { - "rshares": "0", - "voter": "tradingideas.spt" - }, - { - "rshares": "2166383755", - "voter": "nichemarket" - }, - { - "rshares": "3881329564", - "voter": "plook" - }, - { - "rshares": "939000219", - "voter": "pal-isaria" - }, - { - "rshares": "2597142218", - "voter": "abh12345.sports" - }, - { - "rshares": "605825711", - "voter": "penpals" - }, - { - "rshares": "484130691349", - "voter": "votebetting" - }, - { - "rshares": "1824672423341", - "voter": "adsup" - }, - { - "rshares": "407531274454", - "voter": "flipstar.sports" - }, - { - "rshares": "5793934435", - "voter": "freddio.sport" - }, - { - "rshares": "5259345709", - "voter": "babytarazkp" - }, - { - "rshares": "743113349", - "voter": "driedfruit" - }, - { - "rshares": "39444802178", - "voter": "asteroids" - }, - { - "rshares": "347893783", - "voter": "gingerbyna" - }, - { - "rshares": "627153333", - "voter": "arctis" - }, - { - "rshares": "943191896", - "voter": "dfacademy-pal" - }, - { - "rshares": "211615376", - "voter": "tina-tina" - }, - { - "rshares": "320552701", - "voter": "happiness19" - }, - { - "rshares": "3459424860", - "voter": "sbi-tokens" - }, - { - "rshares": "2727043", - "voter": "gdhaetae" - }, - { - "rshares": "712246405", - "voter": "brutoken" - }, - { - "rshares": "1223076876", - "voter": "one.life" - }, - { - "rshares": "26906276944", - "voter": "acta" - }, - { - "rshares": "18749937067", - "voter": "the-table" - }, - { - "rshares": "20605035479", - "voter": "maxuvd" - }, - { - "rshares": "46439009259", - "voter": "jk6276.life" - }, - { - "rshares": "2672561370", - "voter": "debtfreein2" - }, - { - "rshares": "7847921047", - "voter": "sreypov" - }, - { - "rshares": "821470967", - "voter": "dnflsms" - }, - { - "rshares": "516757958", - "voter": "jessy22" - }, - { - "rshares": "42325611712", - "voter": "andylein" - }, - { - "rshares": "532558615", - "voter": "cd-leo" - }, - { - "rshares": "1928174959", - "voter": "isaria-neo" - }, - { - "rshares": "124067198138", - "voter": "silverquest" - }, - { - "rshares": "2907309245", - "voter": "enison1" - }, - { - "rshares": "190963006", - "voter": "keep-keep" - }, - { - "rshares": "2810277464", - "voter": "dbfoodbank" - }, - { - "rshares": "39193050", - "voter": "gerbo" - }, - { - "rshares": "824502179", - "voter": "javb" - }, - { - "rshares": "567207710", - "voter": "autowin" - }, - { - "rshares": "1192192366", - "voter": "galenkp.aus" - }, - { - "rshares": "5260180471", - "voter": "weddinggift" - }, - { - "rshares": "1079319567", - "voter": "khalpal" - }, - { - "rshares": "3977686852", - "voter": "delilhavores" - }, - { - "rshares": "881311481", - "voter": "keepit2" - }, - { - "rshares": "10710347795", - "voter": "simply2koool" - }, - { - "rshares": "2278946071", - "voter": "ribary" - }, - { - "rshares": "716848468", - "voter": "onestop" - }, - { - "rshares": "822874511", - "voter": "joemark" - }, - { - "rshares": "1565607395", - "voter": "garlet-68" - }, - { - "rshares": "994731466", - "voter": "lillasaur" - }, - { - "rshares": "41352220919", - "voter": "mice-k" - }, - { - "rshares": "1302469920", - "voter": "dalz4" - }, - { - "rshares": "3470560111", - "voter": "curamax" - }, - { - "rshares": "6361363199", - "voter": "drew0" - }, - { - "rshares": "809301420", - "voter": "mehmetfix" - }, - { - "rshares": "59167904945", - "voter": "alexa.art" - }, - { - "rshares": "1395907744", - "voter": "steemcityrewards" - }, - { - "rshares": "1816123759", - "voter": "dpend.active" - }, - { - "rshares": "1112075090", - "voter": "nyls" - }, - { - "rshares": "2087113455", - "voter": "fengchao" - }, - { - "rshares": "609627253", - "voter": "artdescry" - }, - { - "rshares": "5254822344", - "voter": "unklebonehead" - }, - { - "rshares": "18609094745", - "voter": "polish.hive" - }, - { - "rshares": "171445877919", - "voter": "dcityrewards" - }, - { - "rshares": "925556033", - "voter": "tattytoque" - }, - { - "rshares": "534969099", - "voter": "mynewlifeai" - }, - { - "rshares": "121524929911", - "voter": "hivelander" - }, - { - "rshares": "5793172973", - "voter": "discoveringarni" - }, - { - "rshares": "12575511867", - "voter": "evelynchacin" - }, - { - "rshares": "4071441112", - "voter": "iamyohann" - }, - { - "rshares": "173912227317", - "voter": "hivecur" - }, - { - "rshares": "3644561778", - "voter": "lucianav" - }, - { - "rshares": "552585549189", - "voter": "jelly13" - }, - { - "rshares": "2932437880", - "voter": "patagonica" - }, - { - "rshares": "1206503303", - "voter": "hivebuilderteam" - }, - { - "rshares": "1113725143", - "voter": "hivecur2" - } + "tags": [ + "steempay", + "steempayments", + "development", + "update" ], - "author": "abh12345", - "author_payout_value": "0.000 HBD", - "author_reputation": 77.2, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "Andddd he\u2019s not even looking at the camera.\n\n![ECCC7EC876974D53B739EF7D6C9056A9.jpeg](https://files.peakd.com/file/peakd-hive/abh12345/7d3fa4DL-ECCC7EC8-7697-4D53-B739-EF7D6C9056A9.jpeg)\n\nBeen traveling 8 hours and still another flight to take, zzzzzz.\n\nEast Midlands in the UK and Bergamo Italy have very quiet, most of the shops aren\u2019t open and there is a lot of hand sanitiser knocking around.\n\nHad my temperature taken 3 times so far and am 99% sure I didn\u2019t catch Covid-19, yet.\n\nLater!\n", - "category": "hive-152232", - "children": 18, - "community": "hive-152232", - "community_title": "Faces of Hive", - "created": "2020-07-07T17:29:33", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://files.peakd.com/file/peakd-hive/abh12345/7d3fa4DL-ECCC7EC8-7697-4D53-B739-EF7D6C9056A9.jpeg" - ], - "tags": [ - "selfie", - "shitpost" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 62589971974001, - "payout": 24.737, - "payout_at": "2020-07-14T17:29:33", - "pending_payout_value": "24.737 HBD", - "percent_hbd": 10000, - "permlink": "plane-selfie", - "post_id": 86935580, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 3.0, - "gray": false, - "hide": false, - "total_votes": 491 - }, - "title": "Plane selfie ", - "updated": "2020-07-07T17:29:33", - "url": "/hive-152232/@abh12345/plane-selfie" + "users": [ + "roelandp" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 174333402242155, + "payout": 1750.818, + "payout_at": "2016-10-15T13:31:03", + "pending_payout_value": "1750.818 HBD", + "percent_hbd": 10000, + "permlink": "steempay-upgrade-pay-on-site-or-steemfest-or-mobile-wallet", + "post_id": 947211, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 400 + }, + "title": "Steempay upgrade - Pay on site | SteemFEST | Mobile wallet", + "updated": "2016-09-14T06:20:42", + "url": "/steempay/@steve-walschot/steempay-upgrade-pay-on-site-or-steemfest-or-mobile-wallet" }, { - "active_votes": [ - { - "rshares": "54946226207", - "voter": "enlil" - }, - { - "rshares": "126549403004", - "voter": "tombstone" - }, - { - "rshares": "258229403543", - "voter": "nanzo-scoop" - }, - { - "rshares": "36643346760", - "voter": "mummyimperfect" - }, - { - "rshares": "14613716814", - "voter": "ak2020" - }, - { - "rshares": "513484465483", - "voter": "mark-waser" - }, - { - "rshares": "1191684281", - "voter": "emily-cook" - }, - { - "rshares": "213550570755", - "voter": "gerber" - }, - { - "rshares": "615563809847", - "voter": "ericvancewalton" - }, - { - "rshares": "234251514135", - "voter": "ezzy" - }, - { - "rshares": "915024057393", - "voter": "livingfree" - }, - { - "rshares": "1918731944698", - "voter": "meesterboom" - }, - { - "rshares": "95691412921", - "voter": "arcange" - }, - { - "rshares": "278401125916", - "voter": "exyle" - }, - { - "rshares": "2561963900", - "voter": "raphaelle" - }, - { - "rshares": "38765592755", - "voter": "sazbird" - }, - { - "rshares": "2649080466835", - "voter": "magicmonk" - }, - { - "rshares": "25503941620", - "voter": "dolov" - }, - { - "rshares": "9625640776964", - "voter": "jphamer1" - }, - { - "rshares": "3683476310960", - "voter": "joele" - }, - { - "rshares": "35553267528", - "voter": "shanghaipreneur" - }, - { - "rshares": "368186767030", - "voter": "borran" - }, - { - "rshares": "7591366149", - "voter": "wisbeech" - }, - { - "rshares": "60286574568", - "voter": "netaterra" - }, - { - "rshares": "40422894373", - "voter": "someguy123" - }, - { - "rshares": "25586882397", - "voter": "por500bolos" - }, - { - "rshares": "265497318596", - "voter": "daveks" - }, - { - "rshares": "259596051632", - "voter": "uwelang" - }, - { - "rshares": "520057463916", - "voter": "digital-wisdom" - }, - { - "rshares": "2008945097", - "voter": "ethical-ai" - }, - { - "rshares": "24534331175", - "voter": "jwaser" - }, - { - "rshares": "14481221243", - "voter": "bwaser" - }, - { - "rshares": "2216389487653", - "voter": "abh12345" - }, - { - "rshares": "13589782052", - "voter": "t-bot" - }, - { - "rshares": "1490505261", - "voter": "ellepdub" - }, - { - "rshares": "29011651879", - "voter": "morgan.waser" - }, - { - "rshares": "3597985869", - "voter": "handyman" - }, - { - "rshares": "2090318163", - "voter": "strong-ai" - }, - { - "rshares": "149831567874", - "voter": "slider2990" - }, - { - "rshares": "1627923717216", - "voter": "redes" - }, - { - "rshares": "1042362648109", - "voter": "created" - }, - { - "rshares": "109776879066", - "voter": "edb" - }, - { - "rshares": "969961193", - "voter": "technoprogressiv" - }, - { - "rshares": "44348051116", - "voter": "mafeeva" - }, - { - "rshares": "5449253829", - "voter": "privex" - }, - { - "rshares": "55841289462", - "voter": "markkujantunen" - }, - { - "rshares": "338821144015", - "voter": "preparedwombat" - }, - { - "rshares": "55914069875", - "voter": "zaragast" - }, - { - "rshares": "10982090844", - "voter": "dune69" - }, - { - "rshares": "1897658072343", - "voter": "smasssh" - }, - { - "rshares": "129039879816", - "voter": "thenightflier" - }, - { - "rshares": "275429901888", - "voter": "barbara-orenya" - }, - { - "rshares": "11109540213", - "voter": "rizasukma" - }, - { - "rshares": "29588292427", - "voter": "jerrybanfield" - }, - { - "rshares": "10009630772", - "voter": "mys" - }, - { - "rshares": "331287205954", - "voter": "sumatranate" - }, - { - "rshares": "30719306365", - "voter": "anacristinasilva" - }, - { - "rshares": "1798440773499", - "voter": "galenkp" - }, - { - "rshares": "20516976904", - "voter": "freddbrito" - }, - { - "rshares": "32289906607", - "voter": "sam99" - }, - { - "rshares": "30934109076", - "voter": "teamaustralia" - }, - { - "rshares": "336466410833", - "voter": "jaynie" - }, - { - "rshares": "50695925050", - "voter": "jayna" - }, - { - "rshares": "3856993327", - "voter": "whd" - }, - { - "rshares": "803889633", - "voter": "d-pend" - }, - { - "rshares": "204029381153", - "voter": "papilloncharity" - }, - { - "rshares": "78361981644", - "voter": "goldkey" - }, - { - "rshares": "128008265830", - "voter": "felt.buzz" - }, - { - "rshares": "574796278699", - "voter": "andre-verbrick" - }, - { - "rshares": "3909957178", - "voter": "fachrulreza" - }, - { - "rshares": "1042289024", - "voter": "shitsignals" - }, - { - "rshares": "216853121", - "voter": "helmirenggrik" - }, - { - "rshares": "26231076423", - "voter": "dine77" - }, - { - "rshares": "2916770149", - "voter": "tykee" - }, - { - "rshares": "980835729705", - "voter": "steemvote" - }, - { - "rshares": "168154268123", - "voter": "steempostitalia" - }, - { - "rshares": "19887796528", - "voter": "macchiata" - }, - { - "rshares": "3966309588", - "voter": "chetanpadliya" - }, - { - "rshares": "105724779285", - "voter": "shanibeer" - }, - { - "rshares": "23714505491", - "voter": "my451r" - }, - { - "rshares": "14577264365", - "voter": "felander" - }, - { - "rshares": "9217186717", - "voter": "santigs" - }, - { - "rshares": "52007548355", - "voter": "bashadow" - }, - { - "rshares": "3115239735043", - "voter": "stoodkev" - }, - { - "rshares": "27089670181", - "voter": "noloafing" - }, - { - "rshares": "9143528995", - "voter": "kimzwarch" - }, - { - "rshares": "41956453077", - "voter": "redouanemez" - }, - { - "rshares": "6562897142", - "voter": "fbslo" - }, - { - "rshares": "50306766751", - "voter": "accelerator" - }, - { - "rshares": "19583611397", - "voter": "artonmysleeve" - }, - { - "rshares": "3227480223", - "voter": "justinparke" - }, - { - "rshares": "53097437112", - "voter": "alinakot" - }, - { - "rshares": "1351623088", - "voter": "yogacoach" - }, - { - "rshares": "245465558351", - "voter": "chinchilla" - }, - { - "rshares": "354188606894", - "voter": "celestal" - }, - { - "rshares": "5808182644339", - "voter": "therealwolf" - }, - { - "rshares": "2114789491", - "voter": "mballesteros" - }, - { - "rshares": "24236669734", - "voter": "roleerob" - }, - { - "rshares": "3121729105", - "voter": "deathwing" - }, - { - "rshares": "286566734073", - "voter": "revisesociology" - }, - { - "rshares": "67877965755", - "voter": "silversaver888" - }, - { - "rshares": "14407619859", - "voter": "espoem" - }, - { - "rshares": "17708311747", - "voter": "gringo211985" - }, - { - "rshares": "28162777098", - "voter": "heidi71" - }, - { - "rshares": "146898653133", - "voter": "josediccus" - }, - { - "rshares": "1026032274", - "voter": "liverpool-fan" - }, - { - "rshares": "11130959445", - "voter": "caladan" - }, - { - "rshares": "35650811632", - "voter": "fknmayhem" - }, - { - "rshares": "11190734330", - "voter": "tradingideas" - }, - { - "rshares": "1189038148070", - "voter": "smartsteem" - }, - { - "rshares": "1584631667", - "voter": "chireerocks" - }, - { - "rshares": "39146157425", - "voter": "mytechtrail" - }, - { - "rshares": "134952656065", - "voter": "b00m" - }, - { - "rshares": "22314609593", - "voter": "itchyfeetdonica" - }, - { - "rshares": "1150445283", - "voter": "funtraveller" - }, - { - "rshares": "24763504429", - "voter": "nokodemion" - }, - { - "rshares": "7391877002", - "voter": "marcolino76" - }, - { - "rshares": "4874085588", - "voter": "candyboy" - }, - { - "rshares": "118965476328", - "voter": "aussieninja" - }, - { - "rshares": "32880746720", - "voter": "abitcoinskeptic" - }, - { - "rshares": "1094723108", - "voter": "jewel-lover" - }, - { - "rshares": "541838185485", - "voter": "jongolson" - }, - { - "rshares": "26332418272", - "voter": "neupanedipen" - }, - { - "rshares": "5631401852185", - "voter": "intrepidphotos" - }, - { - "rshares": "1185418606", - "voter": "mehta" - }, - { - "rshares": "77971614230", - "voter": "nealmcspadden" - }, - { - "rshares": "29470568559", - "voter": "tryskele" - }, - { - "rshares": "52075924305", - "voter": "bala41288" - }, - { - "rshares": "69130318513", - "voter": "belemo" - }, - { - "rshares": "29906004971", - "voter": "socialmediaseo" - }, - { - "rshares": "668637321", - "voter": "leslierevales" - }, - { - "rshares": "47653087653", - "voter": "purefood" - }, - { - "rshares": "770692338446", - "voter": "soyrosa" - }, - { - "rshares": "20072641879", - "voter": "portugalcoin" - }, - { - "rshares": "22956834880", - "voter": "fullcoverbetting" - }, - { - "rshares": "2702140026", - "voter": "philnewton" - }, - { - "rshares": "10340355918", - "voter": "fieryfootprints" - }, - { - "rshares": "133301270400", - "voter": "chronocrypto" - }, - { - "rshares": "406437790333", - "voter": "glenalbrethsen" - }, - { - "rshares": "6203203905", - "voter": "cadawg" - }, - { - "rshares": "3397632193", - "voter": "ericburgoyne" - }, - { - "rshares": "157514749450", - "voter": "bigtom13" - }, - { - "rshares": "1919437669", - "voter": "moeenali" - }, - { - "rshares": "1289360573", - "voter": "pkocjan" - }, - { - "rshares": "93498082645", - "voter": "bozz" - }, - { - "rshares": "51548798460", - "voter": "cst90" - }, - { - "rshares": "1607799094", - "voter": "russellstockley" - }, - { - "rshares": "10441761474", - "voter": "g4fun" - }, - { - "rshares": "9039531068", - "voter": "rubencress" - }, - { - "rshares": "679961579", - "voter": "jasonwaterfalls" - }, - { - "rshares": "60639999932", - "voter": "almi" - }, - { - "rshares": "786956845500", - "voter": "organduo" - }, - { - "rshares": "80489088885", - "voter": "simplymike" - }, - { - "rshares": "37115273648", - "voter": "erikah" - }, - { - "rshares": "5049099320", - "voter": "dhingvimal" - }, - { - "rshares": "3371562415177", - "voter": "azircon" - }, - { - "rshares": "4341579829", - "voter": "veganomics" - }, - { - "rshares": "29345560074", - "voter": "zemiatin" - }, - { - "rshares": "44921475497", - "voter": "talesfrmthecrypt" - }, - { - "rshares": "1297887272", - "voter": "beleg" - }, - { - "rshares": "97755683082", - "voter": "bil.prag" - }, - { - "rshares": "11292733497", - "voter": "bestboom" - }, - { - "rshares": "14753785626", - "voter": "abrockman" - }, - { - "rshares": "91410948296", - "voter": "ronaldoavelino" - }, - { - "rshares": "11286916459", - "voter": "goldvault" - }, - { - "rshares": "710058845", - "voter": "yameen" - }, - { - "rshares": "11985680197", - "voter": "freddio" - }, - { - "rshares": "3439976134", - "voter": "blainjones" - }, - { - "rshares": "15862457872", - "voter": "allover" - }, - { - "rshares": "7218638992", - "voter": "ecotone" - }, - { - "rshares": "1041966865", - "voter": "rollandthomas" - }, - { - "rshares": "43041987187", - "voter": "nancybriti" - }, - { - "rshares": "349468108557", - "voter": "steemitbloggers" - }, - { - "rshares": "25562110351", - "voter": "superlao" - }, - { - "rshares": "801234757", - "voter": "glodniwiedzy" - }, - { - "rshares": "2526478760", - "voter": "archisteem" - }, - { - "rshares": "156838298466", - "voter": "laputis" - }, - { - "rshares": "23738819662", - "voter": "theluvbug" - }, - { - "rshares": "390016535154", - "voter": "cryptoandcoffee" - }, - { - "rshares": "43851983128", - "voter": "insaneworks" - }, - { - "rshares": "181765590683", - "voter": "digital.mine" - }, - { - "rshares": "1697556936", - "voter": "swisswitness" - }, - { - "rshares": "423406643397", - "voter": "fitat40" - }, - { - "rshares": "2480506455", - "voter": "adrimonte" - }, - { - "rshares": "2500460352", - "voter": "daath" - }, - { - "rshares": "68557837", - "voter": "jk6276" - }, - { - "rshares": "31498823802", - "voter": "goingbonkers" - }, - { - "rshares": "1238601261", - "voter": "julian2013" - }, - { - "rshares": "36899086249", - "voter": "dlike" - }, - { - "rshares": "5469766140", - "voter": "gorbisan" - }, - { - "rshares": "3753261915", - "voter": "jokinmenipieleen" - }, - { - "rshares": "69131783759", - "voter": "zayedsakib" - }, - { - "rshares": "39830627497", - "voter": "engrave" - }, - { - "rshares": "531908011960", - "voter": "tipsybosphorus" - }, - { - "rshares": "39832033604", - "voter": "gabbynhice" - }, - { - "rshares": "1178580219", - "voter": "bobby.madagascar" - }, - { - "rshares": "109029648", - "voter": "oakshieldholding" - }, - { - "rshares": "16260500", - "voter": "laissez-faire" - }, - { - "rshares": "88202334724", - "voter": "cultus-forex" - }, - { - "rshares": "2878507173", - "voter": "silverkey" - }, - { - "rshares": "12276501298", - "voter": "silvervault" - }, - { - "rshares": "5092580723", - "voter": "cryptoclerk" - }, - { - "rshares": "5102730390", - "voter": "thisnewgirl" - }, - { - "rshares": "1963343208", - "voter": "thrasher666" - }, - { - "rshares": "16956398515", - "voter": "followjohngalt" - }, - { - "rshares": "42426192821", - "voter": "francescomai" - }, - { - "rshares": "1115713296", - "voter": "smonia" - }, - { - "rshares": "21509383440", - "voter": "moneytron" - }, - { - "rshares": "15098244858", - "voter": "rasalom" - }, - { - "rshares": "13440233101", - "voter": "steemfriends" - }, - { - "rshares": "1326684975", - "voter": "smon-fan" - }, - { - "rshares": "7237435762", - "voter": "samsemilia7" - }, - { - "rshares": "710153155", - "voter": "tr777" - }, - { - "rshares": "586507335", - "voter": "sm-jewel" - }, - { - "rshares": "15573906270", - "voter": "delabo" - }, - { - "rshares": "559088541", - "voter": "tr77" - }, - { - "rshares": "590532372", - "voter": "smoner" - }, - { - "rshares": "824588013", - "voter": "smonian" - }, - { - "rshares": "555181845", - "voter": "permaculturedude" - }, - { - "rshares": "875996098447", - "voter": "agent14" - }, - { - "rshares": "17225296377", - "voter": "smon-joa" - }, - { - "rshares": "569916660", - "voter": "jjangjjanggirl" - }, - { - "rshares": "9669005510", - "voter": "scoopstakes" - }, - { - "rshares": "6401102405", - "voter": "nanzo-snaps" - }, - { - "rshares": "18248949077", - "voter": "krazzytrukker" - }, - { - "rshares": "22797951", - "voter": "limka" - }, - { - "rshares": "683587841", - "voter": "steemcameroon" - }, - { - "rshares": "577971063", - "voter": "smonbear" - }, - { - "rshares": "13542349128", - "voter": "cpt-sparrow" - }, - { - "rshares": "5920310164", - "voter": "kggymlife" - }, - { - "rshares": "2343099579", - "voter": "bynarikode" - }, - { - "rshares": "2897349116", - "voter": "maxsieg" - }, - { - "rshares": "128139166847", - "voter": "contrabourdon" - }, - { - "rshares": "18796490851", - "voter": "maryincryptoland" - }, - { - "rshares": "39286286844", - "voter": "epicdice" - }, - { - "rshares": "7959561398", - "voter": "helgalubevi" - }, - { - "rshares": "489504441", - "voter": "muhammad-wali" - }, - { - "rshares": "615398450", - "voter": "ssc-token" - }, - { - "rshares": "162004393", - "voter": "tradingideas2" - }, - { - "rshares": "44373929414", - "voter": "xyz004" - }, - { - "rshares": "1481768080", - "voter": "stubborn-soul" - }, - { - "rshares": "6524058234", - "voter": "map10k" - }, - { - "rshares": "540673695", - "voter": "kgswallet" - }, - { - "rshares": "1259692215", - "voter": "milu-the-dog" - }, - { - "rshares": "53476476462", - "voter": "asmr.tist" - }, - { - "rshares": "1038459653", - "voter": "triplea.bot" - }, - { - "rshares": "78629492760", - "voter": "steem.leo" - }, - { - "rshares": "5807525919", - "voter": "reggaesteem" - }, - { - "rshares": "0", - "voter": "tradingideas.spt" - }, - { - "rshares": "2253389901", - "voter": "nichemarket" - }, - { - "rshares": "1326503279", - "voter": "abh12345.leo" - }, - { - "rshares": "1870334168", - "voter": "abh12345.sports" - }, - { - "rshares": "1337944628", - "voter": "bearjohn" - }, - { - "rshares": "953214313", - "voter": "mktmaker" - }, - { - "rshares": "2437486896", - "voter": "freddio.sport" - }, - { - "rshares": "64320036714", - "voter": "coffeea.token" - }, - { - "rshares": "5447431927", - "voter": "babytarazkp" - }, - { - "rshares": "805304706", - "voter": "driedfruit" - }, - { - "rshares": "16941334693", - "voter": "asteroids" - }, - { - "rshares": "353335838", - "voter": "gingerbyna" - }, - { - "rshares": "646511123", - "voter": "arctis" - }, - { - "rshares": "1383206467", - "voter": "marlians.spt" - }, - { - "rshares": "5012928981", - "voter": "mapxv" - }, - { - "rshares": "780516410", - "voter": "abh12345.stem" - }, - { - "rshares": "225882972", - "voter": "tina-tina" - }, - { - "rshares": "2027577730", - "voter": "thranax" - }, - { - "rshares": "1106776688", - "voter": "midlet-creates" - }, - { - "rshares": "340768284", - "voter": "happiness19" - }, - { - "rshares": "5629407", - "voter": "gdhaetae" - }, - { - "rshares": "496369814", - "voter": "one.life" - }, - { - "rshares": "20615538614", - "voter": "maxuvd" - }, - { - "rshares": "26674377014", - "voter": "maxuve" - }, - { - "rshares": "37708184355", - "voter": "shtup" - }, - { - "rshares": "46805319731", - "voter": "jk6276.life" - }, - { - "rshares": "234744123853", - "voter": "untersatz" - }, - { - "rshares": "869478765", - "voter": "dnflsms" - }, - { - "rshares": "23945374", - "voter": "vxc.stem" - }, - { - "rshares": "632917616", - "voter": "bruleo" - }, - { - "rshares": "546613189", - "voter": "jessy22" - }, - { - "rshares": "345692999", - "voter": "stemd" - }, - { - "rshares": "674184497", - "voter": "khalneox" - }, - { - "rshares": "5894941851", - "voter": "rrusina" - }, - { - "rshares": "11068593126", - "voter": "mjmarquez4151" - }, - { - "rshares": "204224608", - "voter": "keep-keep" - }, - { - "rshares": "542913606", - "voter": "cd-stem" - }, - { - "rshares": "560726054", - "voter": "steemlondon" - }, - { - "rshares": "592369975", - "voter": "autowin" - }, - { - "rshares": "1177320598", - "voter": "galenkp.aus" - }, - { - "rshares": "653717868", - "voter": "hatta.jahm" - }, - { - "rshares": "1128593518", - "voter": "khalpal" - }, - { - "rshares": "932843117", - "voter": "keepit2" - }, - { - "rshares": "948100528", - "voter": "ribary" - }, - { - "rshares": "15304417854", - "voter": "jeffmackinnon" - }, - { - "rshares": "17785672279", - "voter": "mice-k" - }, - { - "rshares": "293023520", - "voter": "bela29" - }, - { - "rshares": "52927596789", - "voter": "davidlionfish" - }, - { - "rshares": "1465621497", - "voter": "curamax" - }, - { - "rshares": "735123993", - "voter": "achim03.leo" - }, - { - "rshares": "6171393472", - "voter": "cizolf" - }, - { - "rshares": "572721247", - "voter": "steemcityrewards" - }, - { - "rshares": "744656547", - "voter": "dpend.active" - }, - { - "rshares": "2200934516", - "voter": "fengchao" - }, - { - "rshares": "2061023134", - "voter": "hive-naija" - }, - { - "rshares": "19919086506", - "voter": "hiveyoda" - }, - { - "rshares": "251805616226", - "voter": "reggaejahm" - }, - { - "rshares": "419045287547", - "voter": "softworld" - }, - { - "rshares": "7977723996", - "voter": "polish.hive" - }, - { - "rshares": "73806117799", - "voter": "dcityrewards" - }, - { - "rshares": "2687810124", - "voter": "photodashph" - }, - { - "rshares": "9902228819", - "voter": "ambarvegas" - }, - { - "rshares": "679315590", - "voter": "ninnu" - }, - { - "rshares": "3813942770", - "voter": "ssygmr" - }, - { - "rshares": "0", - "voter": "galaxy100" - }, - { - "rshares": "74744344176", - "voter": "hivecur" - }, - { - "rshares": "11822455877", - "voter": "hivecur2" - } + "active_votes": [ + { + "rshares": "518181875581", + "voter": "barrie" + }, + { + "rshares": "31620103450538", + "voter": "smooth" + }, + { + "rshares": "260759332327", + "voter": "anonymous" + }, + { + "rshares": "2047759927809", + "voter": "badassmother" + }, + { + "rshares": "2099340340625", + "voter": "hr1" + }, + { + "rshares": "1402227395408", + "voter": "rossco99" + }, + { + "rshares": "23338638054", + "voter": "jaewoocho" + }, + { + "rshares": "1910039425215", + "voter": "xeroc" + }, + { + "rshares": "1661657401786", + "voter": "joseph" + }, + { + "rshares": "471982260599", + "voter": "recursive3" + }, + { + "rshares": "3187826540990", + "voter": "recursive" + }, + { + "rshares": "1282783470", + "voter": "mineralwasser" + }, + { + "rshares": "702252849815", + "voter": "boombastic" + }, + { + "rshares": "1719075621", + "voter": "bingo-1" + }, + { + "rshares": "5936571539134", + "voter": "smooth.witness" + }, + { + "rshares": "457719147730", + "voter": "boatymcboatface" + }, + { + "rshares": "9890456090", + "voter": "idol" + }, + { + "rshares": "131787410217", + "voter": "team" + }, + { + "rshares": "1702427102", + "voter": "jocelyn" + }, + { + "rshares": "461461082967", + "voter": "leesunmoo" + }, + { + "rshares": "1247396916090", + "voter": "gavvet" + }, + { + "rshares": "74913635150", + "voter": "eeks" + }, + { + "rshares": "8567499992", + "voter": "fkn" + }, + { + "rshares": "11261443630", + "voter": "elishagh1" + }, + { + "rshares": "599827540724", + "voter": "nanzo-scoop" + }, + { + "rshares": "161287532172", + "voter": "steve-walschot" + }, + { + "rshares": "182039074638", + "voter": "mummyimperfect" + }, + { + "rshares": "313666285", + "voter": "coar" + }, + { + "rshares": "109431915950", + "voter": "asch" + }, + { + "rshares": "1414823587", + "voter": "murh" + }, + { + "rshares": "6375528917", + "voter": "cryptofunk" + }, + { + "rshares": "2219594239", + "voter": "error" + }, + { + "rshares": "5268583124", + "voter": "marta-zaidel" + }, + { + "rshares": "38749275184", + "voter": "ranko-k" + }, + { + "rshares": "985447048915", + "voter": "cyber" + }, + { + "rshares": "63472911304", + "voter": "theshell" + }, + { + "rshares": "52177367591", + "voter": "ak2020" + }, + { + "rshares": "417566592605", + "voter": "taoteh1221" + }, + { + "rshares": "375915775849", + "voter": "hedge-x" + }, + { + "rshares": "18668166065", + "voter": "samether" + }, + { + "rshares": "33779461634", + "voter": "ratel" + }, + { + "rshares": "85401868413", + "voter": "herzmeister" + }, + { + "rshares": "5287000077", + "voter": "tee-em" + }, + { + "rshares": "30496214097", + "voter": "michaelx" + }, + { + "rshares": "5950236300", + "voter": "mark-waser" + }, + { + "rshares": "130482031811", + "voter": "geoffrey" + }, + { + "rshares": "74777860177", + "voter": "kimziv" + }, + { + "rshares": "79450691320", + "voter": "emily-cook" + }, + { + "rshares": "2251928158", + "voter": "superfreek" + }, + { + "rshares": "471516850", + "voter": "mrhankeh" + }, + { + "rshares": "17908173089", + "voter": "grey580" + }, + { + "rshares": "68200649381", + "voter": "bacchist" + }, + { + "rshares": "20382051466", + "voter": "thebatchman" + }, + { + "rshares": "59056857395", + "voter": "lehard" + }, + { + "rshares": "76017835973", + "voter": "rubybian" + }, + { + "rshares": "18268797910", + "voter": "konstantin" + }, + { + "rshares": "2649402156", + "voter": "romel" + }, + { + "rshares": "6941291365", + "voter": "gatoso" + }, + { + "rshares": "41821532061", + "voter": "furion" + }, + { + "rshares": "200664863", + "voter": "barbara2" + }, + { + "rshares": "223036409", + "voter": "ch0c0latechip" + }, + { + "rshares": "206422340", + "voter": "doge4lyf" + }, + { + "rshares": "12011310308", + "voter": "asim" + }, + { + "rshares": "85512692", + "voter": "snowden" + }, + { + "rshares": "14804978653", + "voter": "aaseb" + }, + { + "rshares": "4431003942", + "voter": "karen13" + }, + { + "rshares": "1455625353", + "voter": "jrd8526" + }, + { + "rshares": "21565632626", + "voter": "artific" + }, + { + "rshares": "7164402609", + "voter": "lichtblick" + }, + { + "rshares": "37826396801", + "voter": "creemej" + }, + { + "rshares": "84865861", + "voter": "wildchild" + }, + { + "rshares": "3871359622", + "voter": "maximkichev" + }, + { + "rshares": "167294697812", + "voter": "blueorgy" + }, + { + "rshares": "1631211812", + "voter": "poseidon" + }, + { + "rshares": "2083366228", + "voter": "iamwne" + }, + { + "rshares": "362447415925", + "voter": "calaber24p" + }, + { + "rshares": "10466922918", + "voter": "rpf" + }, + { + "rshares": "3694190342", + "voter": "bitcoiner" + }, + { + "rshares": "33624572763", + "voter": "deanliu" + }, + { + "rshares": "459345887", + "voter": "meteor78" + }, + { + "rshares": "30193718340", + "voter": "zaebars" + }, + { + "rshares": "6948016204", + "voter": "positive" + }, + { + "rshares": "780088825", + "voter": "raymonjohnstone" + }, + { + "rshares": "19827631792", + "voter": "krabgat" + }, + { + "rshares": "11734541225", + "voter": "sisterholics" + }, + { + "rshares": "1483259422", + "voter": "alex.chien" + }, + { + "rshares": "8921616604", + "voter": "royalmacro" + }, + { + "rshares": "233934645", + "voter": "fnait" + }, + { + "rshares": "207827906", + "voter": "keepcalmand" + }, + { + "rshares": "1838091863", + "voter": "remlaps" + }, + { + "rshares": "3445177864", + "voter": "glitterpig" + }, + { + "rshares": "7221227809", + "voter": "uwe69" + }, + { + "rshares": "896285424", + "voter": "metaflute" + }, + { + "rshares": "50575844297", + "voter": "gomeravibz" + }, + { + "rshares": "9193626491", + "voter": "taker" + }, + { + "rshares": "2236809039", + "voter": "merej99" + }, + { + "rshares": "414945627496", + "voter": "laonie" + }, + { + "rshares": "166006086500", + "voter": "twinner" + }, + { + "rshares": "22430898487", + "voter": "laonie1" + }, + { + "rshares": "22947696195", + "voter": "laonie2" + }, + { + "rshares": "22955764004", + "voter": "laonie3" + }, + { + "rshares": "25206296089", + "voter": "laoyao" + }, + { + "rshares": "14653942462", + "voter": "myfirst" + }, + { + "rshares": "90711449970", + "voter": "somebody" + }, + { + "rshares": "3391693609", + "voter": "flysaga" + }, + { + "rshares": "5465055585", + "voter": "brendio" + }, + { + "rshares": "2084677795", + "voter": "gmurph" + }, + { + "rshares": "18607683624", + "voter": "midnightoil" + }, + { + "rshares": "2280336943", + "voter": "kalimor" + }, + { + "rshares": "504711698206", + "voter": "glitterfart" + }, + { + "rshares": "22951578069", + "voter": "laonie4" + }, + { + "rshares": "22949307467", + "voter": "laonie5" + }, + { + "rshares": "22946449112", + "voter": "laonie6" + }, + { + "rshares": "22942428841", + "voter": "laonie7" + }, + { + "rshares": "3489545901", + "voter": "kurtbeil" + }, + { + "rshares": "22939097897", + "voter": "laonie8" + }, + { + "rshares": "22936432119", + "voter": "laonie9" + }, + { + "rshares": "46536921016", + "voter": "xiaohui" + }, + { + "rshares": "177527074798", + "voter": "terrycraft" + }, + { + "rshares": "1321003450", + "voter": "dolov" + }, + { + "rshares": "88179884", + "voter": "bigsambucca" + }, + { + "rshares": "2287717822", + "voter": "elfkitchen" + }, + { + "rshares": "105894845081", + "voter": "joele" + }, + { + "rshares": "6166349652", + "voter": "oflyhigh" + }, + { + "rshares": "2229123966", + "voter": "paynode" + }, + { + "rshares": "1566982177", + "voter": "xiaokongcom" + }, + { + "rshares": "253808801", + "voter": "xcepta" + }, + { + "rshares": "3158713250", + "voter": "xianjun" + }, + { + "rshares": "12796476601", + "voter": "borran" + }, + { + "rshares": "64119004", + "voter": "jupiter.zeus" + }, + { + "rshares": "70633121", + "voter": "stevescriber" + }, + { + "rshares": "50027573", + "voter": "loli" + }, + { + "rshares": "51199976", + "voter": "nano2nd" + }, + { + "rshares": "2249451928", + "voter": "njall" + }, + { + "rshares": "206879958", + "voter": "microluck" + }, + { + "rshares": "6547835526", + "voter": "userlogin" + }, + { + "rshares": "6802729666", + "voter": "rubenalexander" + }, + { + "rshares": "59219258", + "voter": "photo00" + }, + { + "rshares": "604279479", + "voter": "tagira" + }, + { + "rshares": "2131733339", + "voter": "chinadaily" + }, + { + "rshares": "108403024", + "voter": "pollina" + }, + { + "rshares": "2649789126", + "voter": "levycore" + }, + { + "rshares": "22930483067", + "voter": "laonie10" + }, + { + "rshares": "332237822", + "voter": "mrlogic" + }, + { + "rshares": "59229074587", + "voter": "mandibil" + }, + { + "rshares": "2132454023", + "voter": "shadowspub" + }, + { + "rshares": "59067894", + "voter": "bonapetit" + }, + { + "rshares": "5053531368", + "voter": "richardcrill" + }, + { + "rshares": "22091338934", + "voter": "laonie11" + }, + { + "rshares": "2101664455", + "voter": "eight-rad" + }, + { + "rshares": "3336919086", + "voter": "xanoxt" + }, + { + "rshares": "1661479473", + "voter": "davidjkelley" + }, + { + "rshares": "187911420", + "voter": "team101" + }, + { + "rshares": "109225703", + "voter": "rusla" + }, + { + "rshares": "4892645779", + "voter": "mscleverclocks" + }, + { + "rshares": "727103786", + "voter": "ksena" + }, + { + "rshares": "11069296957", + "voter": "sponge-bob" + }, + { + "rshares": "4268200560", + "voter": "l0k1" + }, + { + "rshares": "15569990970", + "voter": "digital-wisdom" + }, + { + "rshares": "3791420478", + "voter": "ethical-ai" + }, + { + "rshares": "6830905360", + "voter": "jwaser" + }, + { + "rshares": "50858762", + "voter": "apparat" + }, + { + "rshares": "212888896291", + "voter": "asksisk" + }, + { + "rshares": "2675382304", + "voter": "bwaser" + }, + { + "rshares": "350998373", + "voter": "panther" + }, + { + "rshares": "659649765", + "voter": "ct-gurus" + }, + { + "rshares": "54793782", + "voter": "park.bom" + }, + { + "rshares": "395173675944", + "voter": "charlieshrem" + }, + { + "rshares": "60104450664", + "voter": "tracemayer" + }, + { + "rshares": "23239991726", + "voter": "brains" + }, + { + "rshares": "407083055", + "voter": "anomaly" + }, + { + "rshares": "2401189699", + "voter": "ellepdub" + }, + { + "rshares": "61292139", + "voter": "inarix03" + }, + { + "rshares": "172352271", + "voter": "ola1" + }, + { + "rshares": "12396603737", + "voter": "herpetologyguy" + }, + { + "rshares": "51826827", + "voter": "drac59" + }, + { + "rshares": "4816713747", + "voter": "morgan.waser" + }, + { + "rshares": "297771990", + "voter": "thefinanceguy" + }, + { + "rshares": "1258344048", + "voter": "anns" + }, + { + "rshares": "50907857", + "voter": "oxygen" + }, + { + "rshares": "50875769", + "voter": "cyan" + }, + { + "rshares": "50868434", + "voter": "jumbo" + }, + { + "rshares": "50865840", + "voter": "sting" + }, + { + "rshares": "50796122", + "voter": "factom" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "50568084", + "voter": "brazzers" + }, + { + "rshares": "50543061", + "voter": "rabobank" + }, + { + "rshares": "50538694", + "voter": "fenix" + }, + { + "rshares": "50349676", + "voter": "albertheijn" + }, + { + "rshares": "3689644671", + "voter": "strong-ai" + }, + { + "rshares": "52329350", + "voter": "ninjapainter" + }, + { + "rshares": "254506659", + "voter": "darkminded153" + }, + { + "rshares": "527435916", + "voter": "grisha-danunaher" + }, + { + "rshares": "162917785", + "voter": "ctu" + }, + { + "rshares": "162911190", + "voter": "front" + }, + { + "rshares": "1630327346", + "voter": "rusteemitblog" + }, + { + "rshares": "161089804", + "voter": "pyro" + }, + { + "rshares": "159025535", + "voter": "xtreme" + }, + { + "rshares": "155528114", + "voter": "icesteem" + }, + { + "rshares": "158602900", + "voter": "steem-wallet" + }, + { + "rshares": "158560941", + "voter": "steemthis" + }, + { + "rshares": "74838700", + "voter": "dealzgal" + }, + { + "rshares": "255357124", + "voter": "orenshani7" + }, + { + "rshares": "68013381", + "voter": "storage" + }, + { + "rshares": "58460105", + "voter": "blackmarket" + }, + { + "rshares": "61530871", + "voter": "gifts" + }, + { + "rshares": "93882016", + "voter": "expat" + }, + { + "rshares": "154566975", + "voter": "dimaisrael" + }, + { + "rshares": "1593664040", + "voter": "steemlift" + }, + { + "rshares": "138651704", + "voter": "toddemaher1" + } + ], + "author": "terrycraft", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "
\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman18.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

When looking through old photographs, you realize how much the world has changed around us.

\n
\u041f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u044f \u0441\u0442\u0430\u0440\u044b\u0435 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438, \u043e\u0441\u043e\u0437\u043d\u0430\u0451\u0448\u044c \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437\u043c\u0435\u043d\u0438\u043b\u0441\u044f \u043c\u0438\u0440 \u0432\u043e\u043a\u0440\u0443\u0433 \u043d\u0430\u0441.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman16.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

I am deeply convinced that the people imprinted on these black-and-white photographs never suspected what will happen to them in the future, whether it is immediate or distant As well as they didn't realized how quickly the years will pass, changing all the world around. So, as you look at their careless faces, you fairly quickly realize that your current situation is not much different.

\n
\u042f \u0433\u043b\u0443\u0431\u043e\u043a\u043e \u0443\u0432\u0435\u0440\u0435\u043d\u0430 \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u043b\u044e\u0434\u0438, \u0437\u0430\u043f\u0435\u0447\u0430\u0442\u043b\u0451\u043d\u043d\u044b\u0435 \u043d\u0430 \u0447\u0451\u0440\u043d\u043e-\u0431\u0435\u043b\u044b\u0445 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044f\u0445, \u043d\u0435 \u043f\u043e\u0434\u043e\u0437\u0440\u0435\u0432\u0430\u043b\u0438, \u0447\u0442\u043e \u0441\u0442\u0430\u043d\u0435\u0442 \u0441 \u043d\u0438\u043c\u0438 \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u043c, \u0438 \u043d\u0435 \u043e\u0447\u0435\u043d\u044c, \u0431\u0443\u0434\u0443\u0449\u0435\u043c. \u041d\u0435 \u0437\u043d\u0430\u043b\u0438 \u043e\u043d\u0438 \u0442\u0430\u043a\u0436\u0435, \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u0442\u0440\u0435\u043c\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u0440\u043e\u0439\u0434\u0443\u0442 \u0433\u043e\u0434\u044b, \u0438 \u043a\u0430\u043a \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u0441\u044f \u043c\u0438\u0440 \u0432\u043e\u043a\u0440\u0443\u0433. \u041f\u043e\u044d\u0442\u043e\u043c\u0443, \u0433\u043b\u044f\u0434\u044f \u043d\u0430 \u0438\u0445 \u0431\u0435\u0441\u043f\u0435\u0447\u043d\u044b\u0435 \u043b\u0438\u0446\u0430, \u0434\u043e\u0432\u043e\u043b\u044c\u043d\u043e \u0431\u044b\u0441\u0442\u0440\u043e \u043e\u0441\u043e\u0437\u043d\u0430\u0451\u0448\u044c, \u0447\u0442\u043e \u0442\u0432\u043e\u0451 \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0441\u0435\u0439\u0447\u0430\u0441 \u043c\u0430\u043b\u043e \u0447\u0435\u043c \u043e\u0442\u043b\u0438\u0447\u0430\u0435\u0442\u0441\u044f.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman14.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

Everything that happens around us changes the world we are witnessing. We live in an age of technological progress; the advent of the first computers, the Internet, gadgets, social networks, online games, e-commerce, cryptocurrency and, finally, a blockchain social network - the Steemit, which makes our minds work for creation of good content and its curation.

\n
\u0412\u0441\u0451 \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0435 \u0432\u043e\u043a\u0440\u0443\u0433 \u043d\u0430\u0441 \u043c\u0435\u043d\u044f\u0435\u0442 \u043c\u0438\u0440 \u043d\u0430 \u043d\u0430\u0448\u0438\u0445 \u0433\u043b\u0430\u0437\u0430\u0445. \u041c\u044b \u0436\u0438\u0432\u0451\u043c \u0432 \u0432\u0435\u043a \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0430; \u043f\u043e\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0432\u044b\u0445 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u0432, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430, \u0433\u0430\u0434\u0436\u0435\u0442\u043e\u0432, \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0435\u0442\u0435\u0439, \u043e\u043d\u043b\u0430\u0439\u043d-\u0438\u0433\u0440, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043c\u0430\u0433\u0430\u0437\u0438\u043d\u043e\u0432, \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0438, \u043d\u0430\u043a\u043e\u043d\u0435\u0446, \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 - Steemit, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0437\u0430\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043d\u0430\u0448\u0438 \u0443\u043c\u044b \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0445\u043e\u0440\u043e\u0448\u0435\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0435\u0433\u043e \u043a\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman09.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

And in 10 years, or maybe much earlier, we will see a completely different picture of reality. Generation Steem is coming. The generation that changed everything around and changed itself as well, in opposite to that generation you run with your eyes, trying to convince its immutability and the impossibility of change. No, this already will be the world of the past.

\n
\u0418 \u043b\u0435\u0442 \u0447\u0435\u0440\u0435\u0437 10, \u0430 \u043c\u043e\u0436\u0435\u0442 \u0437\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0440\u0430\u043d\u044c\u0448\u0435, \u043c\u044b \u0443\u0432\u0438\u0434\u0438\u043c \u0432 \u043a\u0430\u0434\u0440\u0435 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e \u0434\u0440\u0443\u0433\u0443\u044e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c. \u0413\u0440\u044f\u0434\u0451\u0442 Steem \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u0435, \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u043d\u0438\u0432\u0448\u0435\u0435 \u0432\u0441\u0451 \u0432\u043e\u043a\u0440\u0443\u0433 \u0441\u0435\u0431\u044f \u0438 \u0438\u0437\u043c\u0435\u043d\u0438\u0432\u0448\u0435\u0435\u0441\u044f \u0441\u0430\u043c\u043e, \u0430 \u043d\u0435 \u0442\u043e, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0441\u0435\u0439\u0447\u0430\u0441, \u043e\u0431\u0432\u043e\u0434\u044f \u0432\u0437\u0433\u043b\u044f\u0434\u043e\u043c, \u0432\u044b \u043f\u044b\u0442\u0430\u0435\u0442\u0435\u0441\u044c \u0443\u0431\u0435\u0434\u0438\u0442\u044c \u0432 \u0435\u0433\u043e \u043d\u0435\u0437\u044b\u0431\u043b\u0435\u043c\u043e\u0441\u0442\u0438 \u0438 \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u043d. \u041d\u0435\u0442, \u044d\u0442\u043e \u0443\u0436\u0435 \u0431\u0443\u0434\u0435\u0442 \u043c\u0438\u0440 \u043f\u0440\u043e\u0448\u043b\u043e\u0433\u043e.
\n\n\n\n

Written to the music: Antonio Vivaldi - The Four Seasons.

\n\n\nPlease follow me\n@panther\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @panther\n\n---\n\nAll STEEM Dollars for this post go to the featured author. \u0412\u0441\u0435 SD \u0437\u0430 \u043f\u043e\u0441\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442 \u0430\u0432\u0442\u043e\u0440.", + "category": "philosophy", + "children": 16, + "created": "2016-09-15T12:27:27", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman18.jpg", + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman16.jpg", + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman14.jpg", + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman09.jpg" ], - "author": "tarazkp", - "author_payout_value": "0.000 HBD", - "author_reputation": 80.5, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "
\n\n\nThirty minutes from now and combined with my two day a week furlough and the day off I took for the *non-arrival* of @galenkp (who should have been landing in Finland on Friday), I should be going entering into the first half of summer vacation. Due to the scheduling of a training session for my second day back afterward though, I will have to do all of the prep work before, which means I will have to work at least til Thursday as I have to wait for customer content to be delivered and as you can probably imagine, that isn't always timely. \n\nWell, it doesn't really change much I guess since I only really have work to do on my vacation anyway, especially since the weather looks like it is going to be raining for the entire time.\n\n![OI000368 1.jpg](https://files.peakd.com/file/peakd-hive/tarazkp/PUaQjmzJ-OI000368201.jpg)\n\nI sat down a little while ago and gave myself some space to write a passage for my dad's eulogy, which will be read by my brother next week. While I can write a lot, it isn't easy to choose the last words to say to someone, and not even be able to say them directly. It is a strange concept to talk to the dead, but if it brings comfort to the living, that is okay. I think that for me, it isn't about getting a sense of closure, it is about reflecting on who my father was to me and what that might mean for my future. \n\nThere is value in having an understanding of the past and using it to predict the future and I can no more extract my father from my future than I can my own heart, as he is a part of me and will affect every decision I make at the genetic level at the very least. While I am not a carbon copy of him, there are plenty of similarities, so learning from his experience would be wise. \n\nNone of us know what the future holds for us and we have very little say over the hand luck will play, but being prepared for it to play a part is important in my opinion. The preparation for luck to benefit is the same preparation for success without luck, doing the prerequisite tasks in order to have access to the tertiary results. Life is much like any process of education, to be able to advance, the basics have to be learned, otherwise we can find ourselves out of our depth.\n\nI think a lot of us are swimming in the deep end and feeling the pressure for survival in a world we aren't prepared for. I see a lot of the social interaction on places like Twitter as indicative of people who have not matured emotionally, but are putting themselves in conversations that trigger them. Outbursts of anger and violence that wouldn't be evoked, given the appropriate lessons in the past. I am pretty lucky to have a role model that exhibited at least some of the qualities of emotional control, but I do think that anyone can learn and improve themselves through practice.\n\nWe aren't encouraged to practice controlling ourselves though and instead are incentivized to do the opposite, to have uncontrolled and public outbursts as they generate drama and drive transactions. The payoff for us is to feel like our feelings matter, when in actual fact, most of our public feelings we ascribe ourselves are actually driven by an engineered narrative to evoke that very reaction, targeted at the groups we identify with at a granular level. It is a manipulation by design and because of our lack of relevance in the real world, we swallow it, hook, line and sinker. It is a race to the bottom and the social sinker used is heavy. \n\nI think for me however, I have been moving ever further away from the drama of the media-driven world and instead looking at life at the more practical levels of economy and community. I believe this is a healthier view when the move is toward improving the community collaboration through an economy that encourages continued working together toward improvement. \n\nThis is definitely not the mainstream position, as even though many \"movements\" claim to be social, at their root is the influence of corporation and government driving them in a direction of their choosing, like cows through a cattle run. The polarization of the various groups is control mechanism that allows for those with the reigns to always have a common enemy available to direct an individual group, for every single group. It is interesting to note how many believe that their group is above that of others, without ever seeing the manipulation. \n\nThe future is uncertain, but I do not think that mine is as uncertain as I believe it to be - although from an economic perspective, it could fall anywhere between the gutter and the stars. I think that my path in the near-term looks much like today and the mid-term is going to head along the same track, looking more practically at the economic and community aspects of life and my role within that system. I think that in time, this is where the real social movements will take a foothold, as they start to push back against the crush from the increasingly powerful centralized authorities until eventually, ground is made and the pressure of the mass of a collected community forms cracks in the wall. \n\nThis has been socially done before from various perspectives and degrees, but where they all fell short was in the economic aspects - the movements were always begging for those who held economy to *allow* change. When the new movements have their self-sustaining and owned economy - the participants can *be the change* and make it stick.\n\nIt is time that we stop acting like beggars asking for change on the street - and start being the change we need to be for ourselves. We hold far more cards to our future than we realize, we just have to do the pre-work. \n\nTaraz\n[ Gen1: Hive ]\n\n
", - "category": "hive-174578", - "children": 18, - "community": "hive-174578", - "community_title": "OCD", - "created": "2020-07-07T13:44:18", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://files.peakd.com/file/peakd-hive/tarazkp/PUaQjmzJ-OI000368201.jpg" - ], - "links": [ - "/@galenkp" - ], - "tags": [ - "thoughts", - "life", - "posh", - "future", - "technology", - "economics", - "philosophy" - ], - "users": [ - "galenkp" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 66369161553792, - "payout": 26.313, - "payout_at": "2020-07-14T13:44:18", - "pending_payout_value": "26.313 HBD", - "percent_hbd": 10000, - "permlink": "begging-for-change-and-doing-the-work", - "post_id": 86932602, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 313 - }, - "title": "Begging for change and doing the work", - "updated": "2020-07-07T13:44:18", - "url": "/hive-174578/@tarazkp/begging-for-change-and-doing-the-work" - }, - { - "active_votes": [ - { - "rshares": "23756878942299", - "voter": "xeldal" - }, - { - "rshares": "21525807376", - "voter": "fractalnode" - }, - { - "rshares": "2462419544007", - "voter": "fulltimegeek" - }, - { - "rshares": "3308622974123", - "voter": "krnel" - }, - { - "rshares": "260349154766", - "voter": "daveks" - }, - { - "rshares": "106224239697", - "voter": "petrvl" - }, - { - "rshares": "21005798136", - "voter": "builderofcastles" - }, - { - "rshares": "19279512719", - "voter": "zedikaredirect" - }, - { - "rshares": "116509114246", - "voter": "worldfinances" - }, - { - "rshares": "932168325910", - "voter": "smasssh" - }, - { - "rshares": "288812366402", - "voter": "flauwy" - }, - { - "rshares": "17949822097", - "voter": "belahejna" - }, - { - "rshares": "30719306365", - "voter": "anacristinasilva" - }, - { - "rshares": "2338234449996", - "voter": "spectrumecons" - }, - { - "rshares": "4338780844661", - "voter": "gunthertopp" - }, - { - "rshares": "961227052048", - "voter": "steemvote" - }, - { - "rshares": "948597991", - "voter": "krazypoet" - }, - { - "rshares": "1724374307", - "voter": "francis.melville" - }, - { - "rshares": "9319225594", - "voter": "santigs" - }, - { - "rshares": "18255853930", - "voter": "artonmysleeve" - }, - { - "rshares": "26741444950", - "voter": "vegoutt-travel" - }, - { - "rshares": "1669755736783", - "voter": "fedesox" - }, - { - "rshares": "1647896748", - "voter": "awesome-gadgets" - }, - { - "rshares": "8850788398641", - "voter": "znnuksfe" - }, - { - "rshares": "5385908003", - "voter": "fun2learn" - }, - { - "rshares": "9245791341", - "voter": "best-strategy" - }, - { - "rshares": "160659360065", - "voter": "archbitsmith" - }, - { - "rshares": "98047485528", - "voter": "mysearchisover" - }, - { - "rshares": "483211416", - "voter": "idkpdx" - }, - { - "rshares": "62664299691", - "voter": "lionsuit" - }, - { - "rshares": "63741060704", - "voter": "scottshots" - }, - { - "rshares": "181053257455", - "voter": "digital.mine" - }, - { - "rshares": "8578819", - "voter": "laissez-faire" - }, - { - "rshares": "119119645588", - "voter": "agromeror" - }, - { - "rshares": "653398106", - "voter": "malricinferno" - }, - { - "rshares": "689149239", - "voter": "zintarmortalis" - }, - { - "rshares": "32557019589", - "voter": "steemitcuration" - }, - { - "rshares": "7138063986", - "voter": "rakk3187" - }, - { - "rshares": "0", - "voter": "dein-problem" - }, - { - "rshares": "4633021329", - "voter": "unit101" - }, - { - "rshares": "7362730756", - "voter": "littlegurl747" - }, - { - "rshares": "666202284425", - "voter": "xxxxxxxxxx" - }, - { - "rshares": "658178348729", - "voter": "bluesniper" - }, - { - "rshares": "329963844140", - "voter": "apix" - }, - { - "rshares": "3990744141", - "voter": "steem-fund" - }, - { - "rshares": "16347326906", - "voter": "scarletreaper" - }, - { - "rshares": "645851933", - "voter": "izhmash" - }, - { - "rshares": "567325753", - "voter": "sevensixtwo" - }, - { - "rshares": "588821724", - "voter": "bastogne" - }, - { - "rshares": "580393544", - "voter": "thirdarmy" - }, - { - "rshares": "3349995768", - "voter": "teo93" - }, - { - "rshares": "919054524", - "voter": "voodooranger" - }, - { - "rshares": "433509036096", - "voter": "votebetting" - }, - { - "rshares": "861800166053", - "voter": "lynds" - }, - { - "rshares": "704860183", - "voter": "dalia-silvana" - }, - { - "rshares": "6288443299", - "voter": "kryptoformator" - }, - { - "rshares": "6491982192", - "voter": "flauwy.apx" - }, - { - "rshares": "1423650329", - "voter": "coin-doubler" - }, - { - "rshares": "1959087318844", - "voter": "innerhive" - }, - { - "rshares": "942488843340", - "voter": "captainhive" - }, - { - "rshares": "1076342573", - "voter": "hivebuilderteam" - }, - { - "rshares": "1112810812", - "voter": "hivecur2" - }, - { - "rshares": "330522834", - "voter": "oyintari9" - }, - { - "rshares": "0", - "voter": "afrozhive" - } + "links": [ + "http://bigpicture.ru/?p=384365&fb_comment_id=180555112091488_997346", + "https://steemit.com/@panther" ], - "author": "pressfortruth", - "author_payout_value": "0.000 HBD", - "author_reputation": 74.91, - "beneficiaries": [], - "blacklists": [], - "body": "# Wearing a mask may soon be mandatory depending on where you live \nand this is causing a debate about whether or not masks are actually effective when it comes to protecting your health during a pandemic. Multiple studies have now concluded that masks are not only ineffective but they in fact offer a disadvantage to those who choose to wear them. \n# In this video \nDan Dicks of Press For Truth speaks with Denis Rancourt a PHD and former professor of physics at the University of Ottawa about a paper he wrote titled \u201cMasks Don\u2019t Work:\u00a0A Review of Science Relevant to COVID-19 Social Policy\u201d to discuss the science behind masks, why they don\u2019t work and how society should handle this highly contentious issue moving forward. \n\nhttps://youtu.be/xKHq1ixEYhQ\n\n# # GoGetFunding \u279c https://goget.fund/2UBhENH\n# Support independent media:\nPatreon \u279c http://www.patreon.com/PressForTruth\nPatreon Alternative \u279c https://pressfortruth.ca/donate\nPaypal \u279c https://www.paypal.me/PressforTruth\n\n# Cryptocurrencies:\nBitcoin \u279c 13oNiHUNGn9vdfv7MT5kjwe7np9bwf5ccv\nEthereum \u279c 0xEce2AEf1F26373a00BDC7243d1201a98578CC67e \nBitcoin Cash \u279c 1MxgFpQdMujLYRTkSTw4PGDmL99s83PFKR\nDash \u279c XirLdVdyaW9rXvhKic78ruc2X39HjNhdTV\nEOS \u279c 0x2BBB00605730feA136623CA366979705293DA659\nLitecoin \u279c LVVaVCfNN25AuU1Ex2s4tX2Ze3iCig2kRo\nARK \u279c ALLDoYdZTSo2G79Rn9RizzAes2bLwK2VVx\nLisk \u279c 6851060122493388407L \nVerge \u279c DGx3kPjZmiYpsZfEePjEpT6sStsNXS1vK2\nReddcoin \u279c RkMCsv5mtMpKaQZRuQFE5fzadse2G2DNfp\nNano \u279cxrb_3rc4uthr5ahyxxzhu1riihcmudiefr4qxzpoq9tq3brbaqpxe6wn8twzb3pq\nCardano \u279c DdzFFzCqrhsrGjJqD8F8NuPvhevcDkonwv3UfGwWxveZ5QQZ9ujtjmXpGxhrSXFa3AsxK94qdi8w2pq289FLqhgQVDyuUN3zxwd4g5M9\nQR Codes for all the above cryptos \u279c https://pressfortruth.ca/top-stories/donate-cryptocurrencies/", - "category": "news", - "children": 1, - "created": "2020-07-07T17:55:21", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "hiveblog/0.1", - "format": "markdown", - "image": [ - "https://img.youtube.com/vi/xKHq1ixEYhQ/0.jpg" - ], - "links": [ - "https://youtu.be/xKHq1ixEYhQ", - "https://goget.fund/2UBhENH", - "http://www.patreon.com/PressForTruth", - "https://pressfortruth.ca/donate", - "https://www.paypal.me/PressforTruth", - "https://pressfortruth.ca/top-stories/donate-cryptocurrencies/" - ], - "tags": [ - "news", - "masks", - "covid", - "anarchy", - "pressfortruth" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 56208978733549, - "payout": 22.079, - "payout_at": "2020-07-14T17:55:21", - "pending_payout_value": "22.079 HBD", - "percent_hbd": 10000, - "permlink": "confirmed-the-absolute-science-behind-masks-and-the-proof-that-they-don-t-work-with-denis-rancourt", - "post_id": 86935897, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 62 - }, - "title": "CONFIRMED! The Absolute SCIENCE Behind MASKS And The PROOF THAT THEY DON\u2019T WORK with Denis Rancourt!", - "updated": "2020-07-07T17:55:21", - "url": "/news/@pressfortruth/confirmed-the-absolute-science-behind-masks-and-the-proof-that-they-don-t-work-with-denis-rancourt" - }, - { - "active_votes": [ - { - "rshares": "670433537824", - "voter": "fminerten" - }, - { - "rshares": "7559066846413", - "voter": "steempty" - }, - { - "rshares": "126001062598", - "voter": "nanzo-scoop" - }, - { - "rshares": "17857915014", - "voter": "mummyimperfect" - }, - { - "rshares": "7106498801", - "voter": "ak2020" - }, - { - "rshares": "463345986922", - "voter": "mark-waser" - }, - { - "rshares": "553699289", - "voter": "emily-cook" - }, - { - "rshares": "62412400303", - "voter": "arcange" - }, - { - "rshares": "1604756884", - "voter": "raphaelle" - }, - { - "rshares": "431524903690", - "voter": "always1success" - }, - { - "rshares": "13899000105063", - "voter": "glitterfart" - }, - { - "rshares": "8821974647474", - "voter": "jphamer1" - }, - { - "rshares": "500749798783", - "voter": "borran" - }, - { - "rshares": "258816941460", - "voter": "daveks" - }, - { - "rshares": "430979133999", - "voter": "digital-wisdom" - }, - { - "rshares": "1856038819", - "voter": "ethical-ai" - }, - { - "rshares": "22107030796", - "voter": "jwaser" - }, - { - "rshares": "13533263056", - "voter": "bwaser" - }, - { - "rshares": "6596635912", - "voter": "t-bot" - }, - { - "rshares": "143227353082", - "voter": "herpetologyguy" - }, - { - "rshares": "27341888747", - "voter": "morgan.waser" - }, - { - "rshares": "1889317371", - "voter": "strong-ai" - }, - { - "rshares": "196156363875", - "voter": "jaybird" - }, - { - "rshares": "877933274", - "voter": "technoprogressiv" - }, - { - "rshares": "21618108799", - "voter": "mafeeva" - }, - { - "rshares": "1808059010", - "voter": "mow" - }, - { - "rshares": "7853061904", - "voter": "cardboard" - }, - { - "rshares": "60612133896", - "voter": "deadspace" - }, - { - "rshares": "4402773918671", - "voter": "tarazkp" - }, - { - "rshares": "1931846826", - "voter": "freebornsociety" - }, - { - "rshares": "12155054401", - "voter": "arnel" - }, - { - "rshares": "18954665881", - "voter": "theywillkillyou" - }, - { - "rshares": "19537685192", - "voter": "freddbrito" - }, - { - "rshares": "39103277680", - "voter": "deniskj" - }, - { - "rshares": "183340664009", - "voter": "benedict08" - }, - { - "rshares": "79051743697", - "voter": "goldkey" - }, - { - "rshares": "147725431031", - "voter": "drorion" - }, - { - "rshares": "817853417054", - "voter": "steemvote" - }, - { - "rshares": "853270420965", - "voter": "onetin84" - }, - { - "rshares": "14489004024", - "voter": "santigs" - }, - { - "rshares": "60560468289", - "voter": "pele23" - }, - { - "rshares": "18008113234", - "voter": "artonmysleeve" - }, - { - "rshares": "7917994965", - "voter": "zeky" - }, - { - "rshares": "14499855114", - "voter": "espoem" - }, - { - "rshares": "17886122373", - "voter": "gringo211985" - }, - { - "rshares": "25167007530", - "voter": "fknmayhem" - }, - { - "rshares": "14563045000", - "voter": "joseph1956" - }, - { - "rshares": "10590682705", - "voter": "tradingideas" - }, - { - "rshares": "4045416479", - "voter": "mariu.espinoza" - }, - { - "rshares": "1533502857", - "voter": "chireerocks" - }, - { - "rshares": "746877808010", - "voter": "armentor" - }, - { - "rshares": "84860570887", - "voter": "lyon89" - }, - { - "rshares": "4495931628", - "voter": "candyboy" - }, - { - "rshares": "142648648807", - "voter": "aussieninja" - }, - { - "rshares": "1026814212", - "voter": "jewel-lover" - }, - { - "rshares": "80769298283", - "voter": "alexanderfluke" - }, - { - "rshares": "743799448", - "voter": "korinkrafting" - }, - { - "rshares": "5692658227", - "voter": "pexpresiones" - }, - { - "rshares": "29908198380", - "voter": "socialmediaseo" - }, - { - "rshares": "11368222698", - "voter": "mermaidvampire" - }, - { - "rshares": "1841332850", - "voter": "jimcustodio" - }, - { - "rshares": "34954798341", - "voter": "casberp" - }, - { - "rshares": "540203195", - "voter": "cfminer" - }, - { - "rshares": "2167932212", - "voter": "sweetkathy" - }, - { - "rshares": "49393188030", - "voter": "cst90" - }, - { - "rshares": "146666125358", - "voter": "whack.science" - }, - { - "rshares": "90800159922", - "voter": "rubencress" - }, - { - "rshares": "883274919585", - "voter": "leeyh" - }, - { - "rshares": "3731973451", - "voter": "frassman" - }, - { - "rshares": "92847183185", - "voter": "ronaldoavelino" - }, - { - "rshares": "11417986147", - "voter": "goldvault" - }, - { - "rshares": "226758719311", - "voter": "dera123" - }, - { - "rshares": "5347891005", - "voter": "jan23com" - }, - { - "rshares": "1071487123260", - "voter": "jkramer" - }, - { - "rshares": "22348510295", - "voter": "m2nnari" - }, - { - "rshares": "28449669952", - "voter": "tesmoforia" - }, - { - "rshares": "7668406458", - "voter": "yameen" - }, - { - "rshares": "3318498860", - "voter": "choco11oreo11" - }, - { - "rshares": "26455831092", - "voter": "tsnaks" - }, - { - "rshares": "9087930616", - "voter": "rachelleignacio" - }, - { - "rshares": "139166908285", - "voter": "steem-tube" - }, - { - "rshares": "103583142913", - "voter": "uche-nna" - }, - { - "rshares": "1627390289791", - "voter": "solarwarrior" - }, - { - "rshares": "180449328165", - "voter": "digital.mine" - }, - { - "rshares": "205418365907", - "voter": "fitat40" - }, - { - "rshares": "0", - "voter": "inteligente" - }, - { - "rshares": "34031490881", - "voter": "thehive" - }, - { - "rshares": "5026987129", - "voter": "littleshadow" - }, - { - "rshares": "950505862", - "voter": "blackpuma1x2" - }, - { - "rshares": "1692793941", - "voter": "joseph6232" - }, - { - "rshares": "3064645641", - "voter": "emaillisahere" - }, - { - "rshares": "3761169491", - "voter": "jokinmenipieleen" - }, - { - "rshares": "612152090", - "voter": "buzzbee" - }, - { - "rshares": "6823192482", - "voter": "kosikredki" - }, - { - "rshares": "1330091685", - "voter": "arkmy" - }, - { - "rshares": "3797781587", - "voter": "caoimhin" - }, - { - "rshares": "34266771524", - "voter": "a-bot" - }, - { - "rshares": "1388105148", - "voter": "djtrucker" - }, - { - "rshares": "15494412", - "voter": "laissez-faire" - }, - { - "rshares": "40454470751", - "voter": "marshalmugi" - }, - { - "rshares": "1610060165", - "voter": "podg3" - }, - { - "rshares": "2881263662", - "voter": "silverkey" - }, - { - "rshares": "12433666655", - "voter": "silvervault" - }, - { - "rshares": "4775595643", - "voter": "cryptycoon" - }, - { - "rshares": "5062389489", - "voter": "cryptoclerk" - }, - { - "rshares": "821574173", - "voter": "reverendrum" - }, - { - "rshares": "4666094023", - "voter": "misstaken" - }, - { - "rshares": "6826185026", - "voter": "anroja" - }, - { - "rshares": "730254892", - "voter": "mannaman" - }, - { - "rshares": "1889012615", - "voter": "thrasher666" - }, - { - "rshares": "811229271", - "voter": "florino" - }, - { - "rshares": "1427235280", - "voter": "daisybuzz" - }, - { - "rshares": "1858307800", - "voter": "jussbren" - }, - { - "rshares": "1035556940", - "voter": "smonia" - }, - { - "rshares": "10955413782", - "voter": "brucutu" - }, - { - "rshares": "1245398343", - "voter": "smon-fan" - }, - { - "rshares": "18259378372", - "voter": "blind-spot" - }, - { - "rshares": "665230523", - "voter": "tr777" - }, - { - "rshares": "549017591", - "voter": "sm-jewel" - }, - { - "rshares": "15480535639", - "voter": "delabo" - }, - { - "rshares": "523228190", - "voter": "tr77" - }, - { - "rshares": "552786952", - "voter": "smoner" - }, - { - "rshares": "772819279", - "voter": "smonian" - }, - { - "rshares": "15898088975", - "voter": "smon-joa" - }, - { - "rshares": "534777508", - "voter": "jjangjjanggirl" - }, - { - "rshares": "4692981832", - "voter": "scoopstakes" - }, - { - "rshares": "3098209714", - "voter": "nanzo-snaps" - }, - { - "rshares": "806718015", - "voter": "goodcontentbot" - }, - { - "rshares": "678886098", - "voter": "steemitmonsters" - }, - { - "rshares": "24972724606", - "voter": "leeyh2" - }, - { - "rshares": "541031092", - "voter": "smonbear" - }, - { - "rshares": "10578401897", - "voter": "wolffeys" - }, - { - "rshares": "457256638700", - "voter": "battlegames" - }, - { - "rshares": "11537095875", - "voter": "yonnathang" - }, - { - "rshares": "41566192", - "voter": "blockchainpeople" - }, - { - "rshares": "310536582485", - "voter": "scholaris" - }, - { - "rshares": "576069571", - "voter": "ssc-token" - }, - { - "rshares": "149481931", - "voter": "tradingideas2" - }, - { - "rshares": "28236132148", - "voter": "plankton.token" - }, - { - "rshares": "3102518238", - "voter": "iamjohn" - }, - { - "rshares": "537269365", - "voter": "suigener1s" - }, - { - "rshares": "2972248616", - "voter": "leeyh3" - }, - { - "rshares": "545273102", - "voter": "kgswallet" - }, - { - "rshares": "15099345080", - "voter": "yeswecan" - }, - { - "rshares": "51028118060", - "voter": "asmr.tist" - }, - { - "rshares": "0", - "voter": "tradingideas.spt" - }, - { - "rshares": "1370863218", - "voter": "leeyh5" - }, - { - "rshares": "5068712297", - "voter": "babytarazkp" - }, - { - "rshares": "209669864", - "voter": "tina-tina" - }, - { - "rshares": "6450883056", - "voter": "thranax" - }, - { - "rshares": "317800743", - "voter": "happiness19" - }, - { - "rshares": "2344383", - "voter": "gdhaetae" - }, - { - "rshares": "691135354274", - "voter": "spt-skillup" - }, - { - "rshares": "26521573302", - "voter": "acta" - }, - { - "rshares": "18506621562", - "voter": "the-table" - }, - { - "rshares": "431199904", - "voter": "pukeko" - }, - { - "rshares": "4043151387", - "voter": "cardtrader" - }, - { - "rshares": "1752543786", - "voter": "thehouse" - }, - { - "rshares": "815026447", - "voter": "dnflsms" - }, - { - "rshares": "513443660", - "voter": "jessy22" - }, - { - "rshares": "1860873490", - "voter": "freedomteam2019" - }, - { - "rshares": "665074899", - "voter": "freddlm" - }, - { - "rshares": "122526302320", - "voter": "silverquest" - }, - { - "rshares": "41404393599", - "voter": "riccc96" - }, - { - "rshares": "21249546664", - "voter": "freemotherearth" - }, - { - "rshares": "189210328", - "voter": "keep-keep" - }, - { - "rshares": "0", - "voter": "detetive" - }, - { - "rshares": "8025392459", - "voter": "honeychip" - }, - { - "rshares": "560806729", - "voter": "steemlondon" - }, - { - "rshares": "4285087216", - "voter": "greatnorthcrypto" - }, - { - "rshares": "2201151643", - "voter": "gmlrecordz" - }, - { - "rshares": "874346439", - "voter": "keepit2" - }, - { - "rshares": "84092051111", - "voter": "lacking" - }, - { - "rshares": "930844862", - "voter": "piratedice" - }, - { - "rshares": "1574979668", - "voter": "kgsupport" - }, - { - "rshares": "1611357800", - "voter": "tommys.shop" - }, - { - "rshares": "2071298903", - "voter": "fengchao" - }, - { - "rshares": "546273843", - "voter": "hivewaves" - }, - { - "rshares": "329448923954", - "voter": "hiveyoda" - }, - { - "rshares": "506862235672", - "voter": "softworld" - }, - { - "rshares": "10039979101", - "voter": "velinov86" - }, - { - "rshares": "1411358440", - "voter": "paulman" - }, - { - "rshares": "13192852801", - "voter": "hairofmedusa" - }, - { - "rshares": "164448336828", - "voter": "ghaazi" - }, - { - "rshares": "3845128474", - "voter": "weloveart" - }, - { - "rshares": "336878534686", - "voter": "ronavel" - }, - { - "rshares": "998342714278", - "voter": "kingfadino" - }, - { - "rshares": "2230744386", - "voter": "reza-shamim" - }, - { - "rshares": "1902578092", - "voter": "oladele-art" - }, - { - "rshares": "727548635", - "voter": "hivecur2" - } + "tags": [ + "philosophy", + "thoughts", + "steemit", + "ru" ], - "author": "acidyo", - "author_payout_value": "0.000 HBD", - "author_reputation": 80.49, - "author_role": "mod", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "I was looking for some new games to play during my \"free time\" as world of warcraft feels a bit dull now before the new expansion comes out that's set some time this year - I'm guessing it's unsure exactly when either cause it's too early or due to covid but can't help but feel that the latter has had a big effect on the release date either way. I remembered that before I moved away from Finland I pre-ordered Battlefield 5 and only played the open beta before that so I started downloading it on Origin. Having missed most of what has happened ever since it's release or how many are still playing it I was surprised to see the amount of new campaigns that existed that I didn't remember existing way back. I believe I played one of them so I moved onto the second one called \"Under no flag\".\n\nBattlefield has always been an amazing game in my eyes, the push of the company to utilize game engine's to the max and make the game as beautiful as it can be for current hardware really sets it aside other ones altho there are many lately attempting the same.\n\nI started recording it without voiceover at first as it was just a test but I didn't want to miss any of the campaign and leave it unrecorded as that could've meant cutscenes that would not have played back if I just restarted it. Also I realized that recording it at 1440p with GeForce Experience was taking a bit too much of a toll on my GPU and possibly rest of the PC. I mean even my SSD was already almost full after downloading the 88gb sized game. So this first part is going to be a bit laggy and spikey now and then, I even think the video is a bit worse than the gameplay was cause it might be that the GPU focuses on the game prior to the recording but either way, just warning you. \n\nhttps://youtu.be/bjzNgz7fgaw\n\nThe next part when I decided to put my mic on and lowered the game's output of the sound I also adjusted a few graphic settings so it wouldn't lag as much but noticed too late that my mic sound was still a bit too low. Which is started to be really annoying cause I have the game's sound output at under 60% while the mic is at 100% with a 20% boost on.\n\nhttps://youtu.be/wukGDyX0Gqw\n\nOh also I thought I'm really good cause of my CS:GO experience so I put the difficulty at hard and got rekt quite a few times but if it's too easy then it's not fun - I usually say. \n\nhttps://youtu.be/WR9h3u0Uz4I\n\nThis was the end of that campaign, I really like how it turned out on video watching it at 1440p it's pretty neat. Can't wait to see what future games will be like although I'm afraid I'm going to have to upgrade my GPU or get another 1080 TI. Those 2k series GPU sure look sweet though, hopefully they become a bit cheaper until some great games come out you don't want to miss out on playing them and recording them at max settings.\n\nHope you enjoy the gameplay, let me know what you think of BFV! If you have any other games you'd want me to try out feel free to let me know about that too and I'll check if my budget allows to purchase them. :3\n\nYes @borran, I'll try to remember to continue the GTA5 campaign very soon. (noticed the other day that game was taking so much space in my SSD and remembered I was going to continue playing it :D)\n\n___\n\nhttps://images.hive.blog/640x0/https://files.peakd.com/file/peakd-hive/hiddenblade/IhaMpvWL-acid20plays-.jpg", - "category": "hive-140217", - "children": 1, - "community": "hive-140217", - "community_title": "Hive Gaming", - "created": "2020-07-07T19:49:30", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://images.hive.blog/640x0/https://files.peakd.com/file/peakd-hive/hiddenblade/IhaMpvWL-acid20plays-.jpg" - ], - "links": [ - "/@borran" - ], - "tags": [ - "battlefield5", - "gaming", - "campaign" - ], - "users": [ - "borran" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 51202430291033, - "payout": 20.001, - "payout_at": "2020-07-14T19:49:30", - "pending_payout_value": "20.001 HBD", - "percent_hbd": 10000, - "permlink": "acid-plays-battlefield-5-campaign-under-no-flag", - "post_id": 86937460, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 187 - }, - "title": "[Acid Plays] Battlefield 5 Campaign - Under no flag", - "updated": "2020-07-07T19:49:30", - "url": "/hive-140217/@acidyo/acid-plays-battlefield-5-campaign-under-no-flag" + "users": [ + "panther" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 61603577309634, + "payout": 222.566, + "payout_at": "2016-09-16T12:56:15", + "pending_payout_value": "222.566 HBD", + "percent_hbd": 10000, + "permlink": "a-look-from-the-past-vzglyad-iz-proshlogo-featuring-panther-as-author", + "post_id": 957231, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 210 + }, + "title": "A Look From the Past / \u0412\u0437\u0433\u043b\u044f\u0434 \u0438\u0437 \u043f\u0440\u043e\u0448\u043b\u043e\u0433\u043e (featuring @panther as author).", + "updated": "2016-09-15T12:27:27", + "url": "/philosophy/@terrycraft/a-look-from-the-past-vzglyad-iz-proshlogo-featuring-panther-as-author" }, { - "active_votes": [ - { - "rshares": "63224660243", - "voter": "tombstone" - }, - { - "rshares": "431996503994", - "voter": "roelandp" - }, - { - "rshares": "4594783426", - "voter": "matt-a" - }, - { - "rshares": "92891495947", - "voter": "fiveboringgames" - }, - { - "rshares": "201867792738", - "voter": "originate" - }, - { - "rshares": "1732870026", - "voter": "bestofreddit" - }, - { - "rshares": "24708775848", - "voter": "steemyoda" - }, - { - "rshares": "133840536601", - "voter": "lighteye" - }, - { - "rshares": "160630699650", - "voter": "detlev" - }, - { - "rshares": "4920578509", - "voter": "ma1neevent" - }, - { - "rshares": "670341750", - "voter": "activate.alpha" - }, - { - "rshares": "1357584366", - "voter": "kennyroy" - }, - { - "rshares": "5247408056", - "voter": "aleister" - }, - { - "rshares": "6290023857", - "voter": "arrliinn" - }, - { - "rshares": "7078199133", - "voter": "d-pend" - }, - { - "rshares": "268717155767", - "voter": "offgridlife" - }, - { - "rshares": "145359462293", - "voter": "tattoodjay" - }, - { - "rshares": "2775479833", - "voter": "dante31" - }, - { - "rshares": "1028288321664", - "voter": "howo" - }, - { - "rshares": "26632056545", - "voter": "dine77" - }, - { - "rshares": "4125195013122", - "voter": "ocd" - }, - { - "rshares": "942010547944", - "voter": "steemvote" - }, - { - "rshares": "2889057153", - "voter": "macchiata" - }, - { - "rshares": "30426280175", - "voter": "keithboone" - }, - { - "rshares": "86731431844", - "voter": "masummim50" - }, - { - "rshares": "9106784047", - "voter": "kimzwarch" - }, - { - "rshares": "3163789986", - "voter": "justinparke" - }, - { - "rshares": "321447143199", - "voter": "celestal" - }, - { - "rshares": "2896350973238", - "voter": "therealwolf" - }, - { - "rshares": "13505006055", - "voter": "jlsplatts" - }, - { - "rshares": "1468731986", - "voter": "divinekids" - }, - { - "rshares": "4532704842", - "voter": "hanggggbeeee" - }, - { - "rshares": "1038139222", - "voter": "liverpool-fan" - }, - { - "rshares": "209404496671", - "voter": "eonwarped" - }, - { - "rshares": "1532328520583", - "voter": "postpromoter" - }, - { - "rshares": "7939872187", - "voter": "mejustandrew" - }, - { - "rshares": "87393926177", - "voter": "steemflow" - }, - { - "rshares": "34175692942", - "voter": "sankysanket18" - }, - { - "rshares": "4680557494", - "voter": "gtrussi" - }, - { - "rshares": "1659554738", - "voter": "lordnigel" - }, - { - "rshares": "6085573653", - "voter": "tcpaikano" - }, - { - "rshares": "592941889024", - "voter": "smartsteem" - }, - { - "rshares": "16162185333", - "voter": "mytechtrail" - }, - { - "rshares": "3607009315", - "voter": "itchyfeetdonica" - }, - { - "rshares": "581554582", - "voter": "godlovermel25" - }, - { - "rshares": "1505695812", - "voter": "tomatom" - }, - { - "rshares": "6411886540", - "voter": "gabrielatravels" - }, - { - "rshares": "901590111", - "voter": "chrismadcboy2016" - }, - { - "rshares": "121087594429", - "voter": "ocd-witness" - }, - { - "rshares": "804767117", - "voter": "ericburgoyne" - }, - { - "rshares": "23241916713", - "voter": "bigtom13" - }, - { - "rshares": "273538967253", - "voter": "takowi" - }, - { - "rshares": "984186779", - "voter": "russellstockley" - }, - { - "rshares": "5083758448", - "voter": "forester-joe" - }, - { - "rshares": "996573868", - "voter": "cruisin" - }, - { - "rshares": "18465329119", - "voter": "miroslavrc" - }, - { - "rshares": "1157764381", - "voter": "greendo" - }, - { - "rshares": "2967180990", - "voter": "flaxz" - }, - { - "rshares": "185937227577", - "voter": "hiddenblade" - }, - { - "rshares": "47542813941", - "voter": "indigoocean" - }, - { - "rshares": "4695389320", - "voter": "celinavisaez" - }, - { - "rshares": "1815755891", - "voter": "crystalhuman" - }, - { - "rshares": "77612377801", - "voter": "pladozero" - }, - { - "rshares": "181129052897", - "voter": "nateaguila" - }, - { - "rshares": "937819435", - "voter": "linco" - }, - { - "rshares": "701964647", - "voter": "yougotavote" - }, - { - "rshares": "16467706241297", - "voter": "ocdb" - }, - { - "rshares": "6132726500", - "voter": "sadbear" - }, - { - "rshares": "599182280", - "voter": "jesusmedit" - }, - { - "rshares": "1497374644", - "voter": "dronegraphica" - }, - { - "rshares": "828813198", - "voter": "nancybmp" - }, - { - "rshares": "3687542125", - "voter": "mobi72" - }, - { - "rshares": "14650681", - "voter": "laissez-faire" - }, - { - "rshares": "1037362106", - "voter": "pushpedal" - }, - { - "rshares": "5313788611", - "voter": "bettervision" - }, - { - "rshares": "33871438893", - "voter": "francescomai" - }, - { - "rshares": "6102801072", - "voter": "edriseur" - }, - { - "rshares": "2010561488", - "voter": "kork75" - }, - { - "rshares": "5759284249", - "voter": "erofan" - }, - { - "rshares": "1041614417", - "voter": "abbenay" - }, - { - "rshares": "6779232206", - "voter": "cryptofiloz" - }, - { - "rshares": "1958181825", - "voter": "smalltall" - }, - { - "rshares": "3243152681", - "voter": "squareonefarms" - }, - { - "rshares": "18050821362", - "voter": "maryincryptoland" - }, - { - "rshares": "19618143422", - "voter": "epicdice" - }, - { - "rshares": "3251290602", - "voter": "yiobri" - }, - { - "rshares": "585921988", - "voter": "helgalubevi" - }, - { - "rshares": "3992059676", - "voter": "ocd-accountant" - }, - { - "rshares": "2443754134", - "voter": "leighscotford" - }, - { - "rshares": "7978574799", - "voter": "ph1102" - }, - { - "rshares": "2423368499", - "voter": "shimozurdo" - }, - { - "rshares": "761038904", - "voter": "driedfruit" - }, - { - "rshares": "602345614", - "voter": "maddogmike" - }, - { - "rshares": "2031568564", - "voter": "iamraincrystal" - }, - { - "rshares": "13766293801", - "voter": "bradleyarrow" - }, - { - "rshares": "23743110272", - "voter": "sandymeyer" - }, - { - "rshares": "561430048", - "voter": "steemlondon" - }, - { - "rshares": "589519284", - "voter": "splatts" - }, - { - "rshares": "7139293366", - "voter": "rcaine" - }, - { - "rshares": "2305289656", - "voter": "dollarbills" - }, - { - "rshares": "286168537", - "voter": "bela29" - }, - { - "rshares": "10457542362", - "voter": "goldstreet" - }, - { - "rshares": "33039200014442", - "voter": "darthknight" - }, - { - "rshares": "6585869368", - "voter": "dpend.active" - }, - { - "rshares": "5075378759", - "voter": "thepeakstudio" - }, - { - "rshares": "198962612094", - "voter": "nulledgh0st" - }, - { - "rshares": "1827436593", - "voter": "marvschurchill1" - }, - { - "rshares": "20927425214", - "voter": "the100" - }, - { - "rshares": "919577884", - "voter": "iameden" - }, - { - "rshares": "3414551419", - "voter": "rihc94" - }, - { - "rshares": "0", - "voter": "parung76" - }, - { - "rshares": "745251635", - "voter": "jadeaca" - }, - { - "rshares": "53934119010", - "voter": "hivehustlers" - }, - { - "rshares": "150000000", - "voter": "tasri" - } + "active_votes": [ + { + "rshares": "532169253053", + "voter": "barrie" + }, + { + "rshares": "31619883437623", + "voter": "smooth" + }, + { + "rshares": "2104460112078", + "voter": "badassmother" + }, + { + "rshares": "2145924640161", + "voter": "hr1" + }, + { + "rshares": "1417915977465", + "voter": "rossco99" + }, + { + "rshares": "23814289766", + "voter": "jaewoocho" + }, + { + "rshares": "1703642542869", + "voter": "joseph" + }, + { + "rshares": "475597049622", + "voter": "recursive2" + }, + { + "rshares": "636257408102", + "voter": "masteryoda" + }, + { + "rshares": "3255552805749", + "voter": "recursive" + }, + { + "rshares": "1319401954", + "voter": "mineralwasser" + }, + { + "rshares": "723485629708", + "voter": "boombastic" + }, + { + "rshares": "96850892172", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "1768181243", + "voter": "bingo-1" + }, + { + "rshares": "5934415897198", + "voter": "smooth.witness" + }, + { + "rshares": "1304768990979", + "voter": "steempower" + }, + { + "rshares": "456278512142", + "voter": "boatymcboatface" + }, + { + "rshares": "9890048933", + "voter": "idol" + }, + { + "rshares": "296830135486", + "voter": "chitty" + }, + { + "rshares": "491386120119", + "voter": "noaommerrr" + }, + { + "rshares": "1702377748", + "voter": "jocelyn" + }, + { + "rshares": "85268786798", + "voter": "acidsun" + }, + { + "rshares": "77509187475", + "voter": "easteagle13" + }, + { + "rshares": "194274169571", + "voter": "jamtaylor" + }, + { + "rshares": "74913340244", + "voter": "eeks" + }, + { + "rshares": "14615120866", + "voter": "fkn" + }, + { + "rshares": "478362750", + "voter": "paco-steem" + }, + { + "rshares": "5762166771", + "voter": "spaninv" + }, + { + "rshares": "8867214614", + "voter": "james-show" + }, + { + "rshares": "19210663051", + "voter": "elishagh1" + }, + { + "rshares": "599812753161", + "voter": "nanzo-scoop" + }, + { + "rshares": "10057636659", + "voter": "kefkius" + }, + { + "rshares": "182037114530", + "voter": "mummyimperfect" + }, + { + "rshares": "313666285", + "voter": "coar" + }, + { + "rshares": "109429287148", + "voter": "asch" + }, + { + "rshares": "1414771825", + "voter": "murh" + }, + { + "rshares": "6375475951", + "voter": "cryptofunk" + }, + { + "rshares": "2219507871", + "voter": "error" + }, + { + "rshares": "5268583124", + "voter": "marta-zaidel" + }, + { + "rshares": "985431200080", + "voter": "cyber" + }, + { + "rshares": "65234010126", + "voter": "theshell" + }, + { + "rshares": "52176837915", + "voter": "ak2020" + }, + { + "rshares": "3924426072251", + "voter": "satoshifund" + }, + { + "rshares": "373242613", + "voter": "stiletto" + }, + { + "rshares": "56687866808", + "voter": "juanmiguelsalas" + }, + { + "rshares": "33773766247", + "voter": "ratel" + }, + { + "rshares": "219282437688", + "voter": "will-zewe" + }, + { + "rshares": "79219201090", + "voter": "tim-johnston" + }, + { + "rshares": "19597062136", + "voter": "ziv" + }, + { + "rshares": "16102536836", + "voter": "zakharya" + }, + { + "rshares": "2246887418", + "voter": "stephen-somers" + }, + { + "rshares": "286332817574", + "voter": "trogdor" + }, + { + "rshares": "175807204421", + "voter": "thedashguy" + }, + { + "rshares": "5950208619", + "voter": "mark-waser" + }, + { + "rshares": "17023129603", + "voter": "albertogm" + }, + { + "rshares": "213644107795", + "voter": "kimziv" + }, + { + "rshares": "79449639183", + "voter": "emily-cook" + }, + { + "rshares": "2316258127", + "voter": "superfreek" + }, + { + "rshares": "31567740828", + "voter": "acassity" + }, + { + "rshares": "17557032440", + "voter": "grey580" + }, + { + "rshares": "1250400407", + "voter": "arcaneinfo" + }, + { + "rshares": "3987474604", + "voter": "michaellamden68" + }, + { + "rshares": "449234523497", + "voter": "ericvancewalton" + }, + { + "rshares": "20789508317", + "voter": "thebatchman" + }, + { + "rshares": "76015962675", + "voter": "rubybian" + }, + { + "rshares": "256232582", + "voter": "mstang83" + }, + { + "rshares": "7271192517", + "voter": "elyaque" + }, + { + "rshares": "25055988031", + "voter": "tcfxyz" + }, + { + "rshares": "2596866157", + "voter": "romel" + }, + { + "rshares": "6939608148", + "voter": "futurefood" + }, + { + "rshares": "839919246636", + "voter": "slowwalker" + }, + { + "rshares": "71342508795", + "voter": "furion" + }, + { + "rshares": "342310650", + "voter": "barbara2" + }, + { + "rshares": "380473875", + "voter": "ch0c0latechip" + }, + { + "rshares": "352132228", + "voter": "doge4lyf" + }, + { + "rshares": "136318424", + "voter": "cynetyc" + }, + { + "rshares": "25221048335", + "voter": "steemit-life" + }, + { + "rshares": "12266682329", + "voter": "asim" + }, + { + "rshares": "15125765260", + "voter": "aaseb" + }, + { + "rshares": "4430997922", + "voter": "karen13" + }, + { + "rshares": "274216136539", + "voter": "nabilov" + }, + { + "rshares": "476682819", + "voter": "karenmckersie" + }, + { + "rshares": "840273090", + "voter": "thinkngrow" + }, + { + "rshares": "47995763722", + "voter": "milestone" + }, + { + "rshares": "7462648594", + "voter": "lichtblick" + }, + { + "rshares": "5840939270", + "voter": "btcbtcbtc20155" + }, + { + "rshares": "4210092453", + "voter": "adamt" + }, + { + "rshares": "171273414934", + "voter": "blueorgy" + }, + { + "rshares": "4777021608", + "voter": "poseidon" + }, + { + "rshares": "3506024506", + "voter": "simon.braki.love" + }, + { + "rshares": "3424170757", + "voter": "bones" + }, + { + "rshares": "3787131399", + "voter": "azurejasper" + }, + { + "rshares": "1840626661", + "voter": "bola" + }, + { + "rshares": "33535112463", + "voter": "deanliu" + }, + { + "rshares": "7822595883", + "voter": "neroru" + }, + { + "rshares": "215381633110", + "voter": "jl777" + }, + { + "rshares": "450339105", + "voter": "meteor78" + }, + { + "rshares": "11852480777", + "voter": "positive" + }, + { + "rshares": "13133061167", + "voter": "moon32walker" + }, + { + "rshares": "685414916", + "voter": "tobythecat" + }, + { + "rshares": "3997180642", + "voter": "sompitonov" + }, + { + "rshares": "14893508235", + "voter": "lemooljiang" + }, + { + "rshares": "20258667266", + "voter": "krabgat" + }, + { + "rshares": "18175770345", + "voter": "proto" + }, + { + "rshares": "30220408709", + "voter": "pinkisland" + }, + { + "rshares": "4083118071", + "voter": "ace108" + }, + { + "rshares": "36105101075", + "voter": "sisterholics" + }, + { + "rshares": "9087754202", + "voter": "royalmacro" + }, + { + "rshares": "291577197", + "voter": "faraz" + }, + { + "rshares": "399064983", + "voter": "fnait" + }, + { + "rshares": "354529957", + "voter": "keepcalmand" + }, + { + "rshares": "607346548", + "voter": "cwmyao1" + }, + { + "rshares": "42831828400", + "voter": "smailer" + }, + { + "rshares": "153025160", + "voter": "steemster1" + }, + { + "rshares": "26276845296", + "voter": "fabien" + }, + { + "rshares": "1311817181", + "voter": "bullionstackers" + }, + { + "rshares": "10079340576", + "voter": "michiel" + }, + { + "rshares": "66976384508", + "voter": "malaiandrueth" + }, + { + "rshares": "3445106241", + "voter": "glitterpig" + }, + { + "rshares": "176122993", + "voter": "uwe69" + }, + { + "rshares": "24521510758", + "voter": "gomeravibz" + }, + { + "rshares": "9193596396", + "voter": "taker" + }, + { + "rshares": "1042734400", + "voter": "pakisnxt" + }, + { + "rshares": "7824682639", + "voter": "nekromarinist" + }, + { + "rshares": "60565253", + "voter": "sharon" + }, + { + "rshares": "7879017303", + "voter": "french.fyde" + }, + { + "rshares": "61714352", + "voter": "lillianjones" + }, + { + "rshares": "1244785807395", + "voter": "laonie" + }, + { + "rshares": "174513111694", + "voter": "twinner" + }, + { + "rshares": "25205404125", + "voter": "laoyao" + }, + { + "rshares": "42592081002", + "voter": "myfirst" + }, + { + "rshares": "259167037180", + "voter": "somebody" + }, + { + "rshares": "9690288359", + "voter": "flysaga" + }, + { + "rshares": "2084677795", + "voter": "gmurph" + }, + { + "rshares": "55821231813", + "voter": "midnightoil" + }, + { + "rshares": "85931785", + "voter": "coderg" + }, + { + "rshares": "4371311648", + "voter": "ullikume" + }, + { + "rshares": "4752967790", + "voter": "miketr" + }, + { + "rshares": "143185133504", + "voter": "xiaohui" + }, + { + "rshares": "21533856625", + "voter": "jphamer1" + }, + { + "rshares": "6710387381", + "voter": "elfkitchen" + }, + { + "rshares": "105893050403", + "voter": "joele" + }, + { + "rshares": "6135664318", + "voter": "oflyhigh" + }, + { + "rshares": "4476983604", + "voter": "xiaokongcom" + }, + { + "rshares": "1434064827", + "voter": "hms818" + }, + { + "rshares": "62201879", + "voter": "msjennifer" + }, + { + "rshares": "57196572", + "voter": "ciao" + }, + { + "rshares": "3743673036", + "voter": "villainblack" + }, + { + "rshares": "55449983", + "voter": "steemo" + }, + { + "rshares": "9024630191", + "voter": "xianjun" + }, + { + "rshares": "55306941", + "voter": "steema" + }, + { + "rshares": "74615731", + "voter": "evgenyche" + }, + { + "rshares": "72902270", + "voter": "confucius" + }, + { + "rshares": "93794893233", + "voter": "miacats" + }, + { + "rshares": "56157882", + "voter": "jarvis" + }, + { + "rshares": "605862734", + "voter": "microluck" + }, + { + "rshares": "599010678", + "voter": "ashwim" + }, + { + "rshares": "6535955953", + "voter": "rubenalexander" + }, + { + "rshares": "55520042", + "voter": "fortuner" + }, + { + "rshares": "2131698126", + "voter": "chinadaily" + }, + { + "rshares": "8114302214", + "voter": "lemouth" + }, + { + "rshares": "670432237", + "voter": "alexma3x" + }, + { + "rshares": "10344067760", + "voter": "gvargas123" + }, + { + "rshares": "54235184", + "voter": "johnbyrd" + }, + { + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "rshares": "54216305", + "voter": "thermor" + }, + { + "rshares": "53048942", + "voter": "ficholl" + }, + { + "rshares": "54209199", + "voter": "widell" + }, + { + "rshares": "53821337", + "voter": "revelbrooks" + }, + { + "rshares": "25448736737", + "voter": "andrewawerdna" + }, + { + "rshares": "11074790441", + "voter": "sethlinson" + }, + { + "rshares": "4042151059", + "voter": "booky" + }, + { + "rshares": "101945845", + "voter": "slorunner" + }, + { + "rshares": "52708083", + "voter": "curpose" + }, + { + "rshares": "1258844947", + "voter": "lenar" + }, + { + "rshares": "2196689434", + "voter": "runridefly" + }, + { + "rshares": "54585840", + "voter": "stephenkendal" + }, + { + "rshares": "52836995", + "voter": "troich" + }, + { + "rshares": "5011419926", + "voter": "nadin3" + }, + { + "rshares": "1661479473", + "voter": "davidjkelley" + }, + { + "rshares": "191746347", + "voter": "team101" + }, + { + "rshares": "52842496", + "voter": "crion" + }, + { + "rshares": "185701642", + "voter": "greatness" + }, + { + "rshares": "52505412", + "voter": "hitherise" + }, + { + "rshares": "52496656", + "voter": "wiss" + }, + { + "rshares": "9069255648", + "voter": "sponge-bob" + }, + { + "rshares": "15569866401", + "voter": "digital-wisdom" + }, + { + "rshares": "3791392195", + "voter": "ethical-ai" + }, + { + "rshares": "53252658", + "voter": "stroully" + }, + { + "rshares": "6830877679", + "voter": "jwaser" + }, + { + "rshares": "52916909", + "voter": "thadm" + }, + { + "rshares": "52915101", + "voter": "prof" + }, + { + "rshares": "2274469633", + "voter": "richhersey" + }, + { + "rshares": "1688383151", + "voter": "smisi" + }, + { + "rshares": "123190927", + "voter": "tito-baron" + }, + { + "rshares": "53413720", + "voter": "lighter" + }, + { + "rshares": "52560790", + "voter": "yorsens" + }, + { + "rshares": "52242652", + "voter": "bane" + }, + { + "rshares": "52236265", + "voter": "vive" + }, + { + "rshares": "52230725", + "voter": "coad" + }, + { + "rshares": "2675382304", + "voter": "bwaser" + }, + { + "rshares": "53003720", + "voter": "sofa" + }, + { + "rshares": "83883352848", + "voter": "cnfund" + }, + { + "rshares": "348073541", + "voter": "bones261" + }, + { + "rshares": "9054592458", + "voter": "brains" + }, + { + "rshares": "633672233", + "voter": "bones555" + }, + { + "rshares": "53055629", + "voter": "ailo" + }, + { + "rshares": "5893247853", + "voter": "chick1" + }, + { + "rshares": "51637870", + "voter": "aoki" + }, + { + "rshares": "52621399", + "voter": "typingagent" + }, + { + "rshares": "52634176", + "voter": "cwb" + }, + { + "rshares": "3623547539", + "voter": "slayer" + }, + { + "rshares": "407075832", + "voter": "anomaly" + }, + { + "rshares": "2401189699", + "voter": "ellepdub" + }, + { + "rshares": "172324884", + "voter": "ola1" + }, + { + "rshares": "4601294293", + "voter": "michelle.gent" + }, + { + "rshares": "12396524304", + "voter": "herpetologyguy" + }, + { + "rshares": "51470533", + "voter": "eavy" + }, + { + "rshares": "51484593", + "voter": "roto" + }, + { + "rshares": "4816686066", + "voter": "morgan.waser" + }, + { + "rshares": "291933324", + "voter": "thefinanceguy" + }, + { + "rshares": "51235131", + "voter": "glassheart" + }, + { + "rshares": "51230296", + "voter": "steemq" + }, + { + "rshares": "51227561", + "voter": "battalar" + }, + { + "rshares": "50938725", + "voter": "haved" + }, + { + "rshares": "50871059", + "voter": "motion" + }, + { + "rshares": "50708837", + "voter": "ardly" + }, + { + "rshares": "50572441", + "voter": "unilever" + }, + { + "rshares": "50570250", + "voter": "ziggo" + }, + { + "rshares": "50565798", + "voter": "penthouse" + }, + { + "rshares": "417240825", + "voter": "bapparabi" + }, + { + "rshares": "50433760", + "voter": "morse" + }, + { + "rshares": "50372583", + "voter": "carre" + }, + { + "rshares": "88794357432", + "voter": "btshuang" + }, + { + "rshares": "3229471810", + "voter": "dodders007" + }, + { + "rshares": "3689616990", + "voter": "strong-ai" + }, + { + "rshares": "538350430", + "voter": "grisha-danunaher" + }, + { + "rshares": "74444594", + "voter": "igtes" + }, + { + "rshares": "148119740", + "voter": "buffett" + }, + { + "rshares": "162917785", + "voter": "ctu" + }, + { + "rshares": "162911190", + "voter": "front" + }, + { + "rshares": "159394872", + "voter": "prosto-veter" + }, + { + "rshares": "162375387", + "voter": "yourase1" + }, + { + "rshares": "161839498", + "voter": "durex" + }, + { + "rshares": "160973134", + "voter": "gravity" + }, + { + "rshares": "160957729", + "voter": "realtime" + }, + { + "rshares": "160326045", + "voter": "planet" + }, + { + "rshares": "159984914", + "voter": "correct" + }, + { + "rshares": "159175576", + "voter": "fallout" + }, + { + "rshares": "158777847", + "voter": "agundoba" + }, + { + "rshares": "158726294", + "voter": "alberged" + }, + { + "rshares": "158718933", + "voter": "alene33" + }, + { + "rshares": "158713085", + "voter": "argesti" + }, + { + "rshares": "158709279", + "voter": "artamm" + }, + { + "rshares": "158704921", + "voter": "artyne43" + }, + { + "rshares": "158701918", + "voter": "odlaen" + }, + { + "rshares": "158692611", + "voter": "brenna88" + }, + { + "rshares": "158688416", + "voter": "fortelyn" + }, + { + "rshares": "158684075", + "voter": "cheva0" + }, + { + "rshares": "158678677", + "voter": "peris2" + }, + { + "rshares": "158667376", + "voter": "gilbertur" + }, + { + "rshares": "158658206", + "voter": "irdaince" + }, + { + "rshares": "158655323", + "voter": "whenda3" + }, + { + "rshares": "158647100", + "voter": "brenkelley" + }, + { + "rshares": "158640828", + "voter": "donaigh" + }, + { + "rshares": "158637072", + "voter": "baire00" + }, + { + "rshares": "158624650", + "voter": "gundalach" + }, + { + "rshares": "158620061", + "voter": "childirac" + }, + { + "rshares": "158609836", + "voter": "guoteff" + }, + { + "rshares": "158541985", + "voter": "citigroup" + }, + { + "rshares": "157896009", + "voter": "wymmendycer" + }, + { + "rshares": "157892476", + "voter": "fariuss" + }, + { + "rshares": "157889502", + "voter": "chutec" + }, + { + "rshares": "157887016", + "voter": "udoladhnak" + }, + { + "rshares": "157883027", + "voter": "brochari" + }, + { + "rshares": "157877631", + "voter": "hervedui" + }, + { + "rshares": "157876011", + "voter": "isetar" + }, + { + "rshares": "157874479", + "voter": "pollengus" + }, + { + "rshares": "157871566", + "voter": "valiner" + }, + { + "rshares": "157869417", + "voter": "cunod" + }, + { + "rshares": "157866738", + "voter": "trentegan" + }, + { + "rshares": "157864709", + "voter": "shenburen" + }, + { + "rshares": "157861808", + "voter": "margery2" + }, + { + "rshares": "157860265", + "voter": "thiner" + }, + { + "rshares": "157857120", + "voter": "joycery" + }, + { + "rshares": "157855001", + "voter": "cuiliobeth" + }, + { + "rshares": "157853250", + "voter": "gwilion" + }, + { + "rshares": "157847571", + "voter": "damul" + }, + { + "rshares": "157845805", + "voter": "youthan" + }, + { + "rshares": "188144802", + "voter": "antaja" + }, + { + "rshares": "156241596", + "voter": "royfft" + } + ], + "author": "masteryoda", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "![photo](http://i.imgsafe.org/81a1095cd2.png)\n\n- - -\n\nThis report covers payouts made between:\n\n**September 8, 2016, 12:00 am UTC** and **September 14, 2016, 11:59 pm UTC**\n\nTotal SBD paid: **136 116.418 SBD**\n\nTotal VESTS paid: **714 086 946.799 VESTS**\n\n- - -\n\n### SBD and VESTS payouts chart:\n![photo](http://imgh.us/canvas2_1.png)\n\n- - -\n\n### Top 100 overall SBD earners:\n|Rank | Account | Posts |SBD | VESTS |\n| :-----| ------------- |-------------:|-------------:| -----:|\n|1|[@ericvancewalton](https://steemit.com/@ericvancewalton)|15|6 077.522|24 596 951.571|\n|2|[@roelandp](https://steemit.com/@roelandp)|5|5 750.861|26 290 325.567|\n|3|[@gavvet](https://steemit.com/@gavvet)|29|5 680.552|23 514 590.090|\n|4|[@knozaki2015](https://steemit.com/@knozaki2015)|27|4 089.160|16 881 905.884|\n|5|[@sirwinchester](https://steemit.com/@sirwinchester)|20|3 196.259|13 196 949.343|\n|6|[@terrycraft](https://steemit.com/@terrycraft)|22|2 997.141|12 216 236.410|\n|7|[@calaber24p](https://steemit.com/@calaber24p)|9|2 411.786|10 175 362.253|\n|8|[@dollarvigilante](https://steemit.com/@dollarvigilante)|9|2 135.290|9 376 253.261|\n|9|[@someguy123](https://steemit.com/@someguy123)|11|1 852.735|7 812 606.655|\n|10|[@ozchartart](https://steemit.com/@ozchartart)|13|1 771.698|7 215 740.701|\n|11|[@infovore](https://steemit.com/@infovore)|5|1 705.589|6 924 653.829|\n|12|[@lifeisawesome](https://steemit.com/@lifeisawesome)|6|1 689.879|6 989 106.948|\n|13|[@dantheman](https://steemit.com/@dantheman)|11|1 612.428|8 604 664.210|\n|14|[@jamielefay](https://steemit.com/@jamielefay)|4|1 607.864|6 411 495.342|\n|15|[@kevinwong](https://steemit.com/@kevinwong)|6|1 525.609|6 542 045.016|\n|16|[@charlieshrem](https://steemit.com/@charlieshrem)|4|1 500.105|6 557 010.291|\n|17|[@jesta](https://steemit.com/@jesta)|9|1 492.300|6 472 103.097|\n|18|[@masteryoda](https://steemit.com/@masteryoda)|16|1 423.208|6 023 057.885|\n|19|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|9|1 324.346|5 343 516.577|\n|20|[@katecloud](https://steemit.com/@katecloud)|7|1 265.447|5 136 897.795|\n|21|[@timsaid](https://steemit.com/@timsaid)|10|1 153.420|4 999 746.262|\n|22|[@sascha](https://steemit.com/@sascha)|2|1 152.462|4 737 155.424|\n|23|[@honeyscribe](https://steemit.com/@honeyscribe)|6|1 147.954|4 693 320.648|\n|24|[@cryptogee](https://steemit.com/@cryptogee)|4|1 145.094|4 704 779.347|\n|25|[@krishtopa](https://steemit.com/@krishtopa)|11|1 143.346|4 834 060.865|\n|26|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|8|1 138.985|4 813 642.940|\n|27|[@good-karma](https://steemit.com/@good-karma)|6|1 118.049|5 063 419.555|\n|28|[@lobotony](https://steemit.com/@lobotony)|2|1 084.459|4 247 247.973|\n|29|[@markrmorrisjr](https://steemit.com/@markrmorrisjr)|21|1 058.539|4 369 963.419|\n|30|[@curie](https://steemit.com/@curie)|5|1 056.415|4 572 371.506|\n|31|[@opheliafu](https://steemit.com/@opheliafu)|19|1 005.845|4 156 440.681|\n|32|[@steve-walschot](https://steemit.com/@steve-walschot)|4|972.080|4 394 483.105|\n|33|[@marius19](https://steemit.com/@marius19)|23|951.573|4 011 036.875|\n|34|[@serejandmyself](https://steemit.com/@serejandmyself)|11|941.108|3 990 747.231|\n|35|[@steempower](https://steemit.com/@steempower)|4|848.391|3 693 774.188|\n|36|[@aizensou](https://steemit.com/@aizensou)|4|813.814|3 460 586.334|\n|37|[@furion](https://steemit.com/@furion)|7|776.731|3 320 010.859|\n|38|[@officialfuzzy](https://steemit.com/@officialfuzzy)|5|769.671|3 256 431.084|\n|39|[@kencode](https://steemit.com/@kencode)|3|769.635|3 084 463.879|\n|40|[@clayop](https://steemit.com/@clayop)|9|744.729|3 588 626.269|\n|41|[@larkenrose](https://steemit.com/@larkenrose)|8|718.161|2 952 298.454|\n|42|[@steemdrive](https://steemit.com/@steemdrive)|1|713.054|3 137 516.266|\n|43|[@jpiper20](https://steemit.com/@jpiper20)|21|704.591|2 861 337.136|\n|44|[@xeroc](https://steemit.com/@xeroc)|3|700.860|3 667 185.079|\n|45|[@steemship](https://steemit.com/@steemship)|3|700.485|2 935 488.501|\n|46|[@steemcleaners](https://steemit.com/@steemcleaners)|3|659.132|2 596 140.333|\n|47|[@complexring](https://steemit.com/@complexring)|2|647.683|6 065 457.160|\n|48|[@charleshosk](https://steemit.com/@charleshosk)|2|585.319|2 399 760.878|\n|49|[@hisnameisolllie](https://steemit.com/@hisnameisolllie)|11|581.385|2 338 969.539|\n|50|[@sweetsssj](https://steemit.com/@sweetsssj)|14|523.979|2 170 158.700|\n|51|[@livingthedream](https://steemit.com/@livingthedream)|4|510.792|2 027 254.578|\n|52|[@eneismijmich](https://steemit.com/@eneismijmich)|9|504.116|2 061 771.205|\n|53|[@sterlinluxan](https://steemit.com/@sterlinluxan)|7|500.904|2 022 584.130|\n|54|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|1|497.669|2 274 840.954|\n|55|[@b0y2k](https://steemit.com/@b0y2k)|2|497.114|2 132 474.149|\n|56|[@fairytalelife](https://steemit.com/@fairytalelife)|7|481.143|2 023 586.799|\n|57|[@corbettreport](https://steemit.com/@corbettreport)|6|457.908|1 979 421.716|\n|58|[@kental](https://steemit.com/@kental)|19|435.486|1 746 992.520|\n|59|[@barrycooper](https://steemit.com/@barrycooper)|4|433.548|1 887 586.618|\n|60|[@storyseeker](https://steemit.com/@storyseeker)|4|430.221|1 849 858.609|\n|61|[@jacor](https://steemit.com/@jacor)|11|428.758|1 774 043.305|\n|62|[@bravenewcoin](https://steemit.com/@bravenewcoin)|14|427.758|1 764 533.073|\n|63|[@alexbeyman](https://steemit.com/@alexbeyman)|36|409.397|1 679 902.161|\n|64|[@gangsta](https://steemit.com/@gangsta)|5|405.820|1 620 709.343|\n|65|[@dannystravels](https://steemit.com/@dannystravels)|1|404.374|1 568 065.581|\n|66|[@smailer](https://steemit.com/@smailer)|11|400.558|1 679 104.012|\n|67|[@mibenkito](https://steemit.com/@mibenkito)|1|399.692|1 722 718.612|\n|68|[@cass](https://steemit.com/@cass)|1|391.041|1 993 157.960|\n|69|[@razvanelulmarin](https://steemit.com/@razvanelulmarin)|13|373.350|1 644 174.858|\n|70|[@mrs.steemit](https://steemit.com/@mrs.steemit)|9|368.118|1 530 900.679|\n|71|[@jamtaylor](https://steemit.com/@jamtaylor)|14|358.256|1 555 939.370|\n|72|[@senseiteekay](https://steemit.com/@senseiteekay)|11|357.948|1 517 489.098|\n|73|[@healthyrecipes](https://steemit.com/@healthyrecipes)|3|350.465|1 480 991.813|\n|74|[@aggroed](https://steemit.com/@aggroed)|14|348.227|1 428 790.019|\n|75|[@celebr1ty](https://steemit.com/@celebr1ty)|5|341.894|1 368 751.869|\n|76|[@dana-edwards](https://steemit.com/@dana-edwards)|10|337.839|1 341 593.683|\n|77|[@cryptovpn](https://steemit.com/@cryptovpn)|5|330.063|1 278 755.869|\n|78|[@nanzo-scoop](https://steemit.com/@nanzo-scoop)|17|330.055|2 655 433.594|\n|79|[@fyrstikken](https://steemit.com/@fyrstikken)|23|325.469|1 521 433.247|\n|80|[@richman](https://steemit.com/@richman)|5|321.227|1 332 080.256|\n|81|[@enric](https://steemit.com/@enric)|1|311.640|1 208 207.684|\n|82|[@firepower](https://steemit.com/@firepower)|1|308.085|1 405 620.303|\n|83|[@donkeypong](https://steemit.com/@donkeypong)|4|306.922|1 672 530.744|\n|84|[@churdtzu](https://steemit.com/@churdtzu)|7|305.428|1 246 268.798|\n|85|[@pfunk](https://steemit.com/@pfunk)|6|304.288|1 696 845.158|\n|86|[@canadian-coconut](https://steemit.com/@canadian-coconut)|7|303.757|1 247 066.035|\n|87|[@alexgr](https://steemit.com/@alexgr)|7|296.946|1 259 479.298|\n|88|[@quinneaker](https://steemit.com/@quinneaker)|15|293.521|1 241 558.241|\n|89|[@nekromarinist](https://steemit.com/@nekromarinist)|10|288.002|1 136 848.911|\n|90|[@liberosist](https://steemit.com/@liberosist)|6|284.471|1 407 917.609|\n|91|[@sigmajin](https://steemit.com/@sigmajin)|3|276.147|1 127 048.263|\n|92|[@aaronkoenig](https://steemit.com/@aaronkoenig)|9|274.485|1 168 689.323|\n|93|[@tracemayer](https://steemit.com/@tracemayer)|7|273.934|1 170 292.676|\n|94|[@hilarski](https://steemit.com/@hilarski)|12|272.752|1 111 134.239|\n|95|[@shammyshiggs](https://steemit.com/@shammyshiggs)|6|267.958|1 068 640.107|\n|96|[@halo](https://steemit.com/@halo)|34|265.233|1 109 892.049|\n|97|[@rok-sivante](https://steemit.com/@rok-sivante)|8|261.410|1 152 452.980|\n|98|[@vermillion666](https://steemit.com/@vermillion666)|2|260.282|1 015 370.956|\n|99|[@kaylinart](https://steemit.com/@kaylinart)|31|258.027|1 209 969.357|\n|100|[@kobur](https://steemit.com/@kobur)|9|257.060|1 001 194.076|\n\n\n- - -\n\n### Top 100 overall VESTS earners:\n|Rank | Account | SBD | VESTS |\n| :-----| ------------- |-------------:| -----:|\n|1|[@blocktrades](https://steemit.com/@blocktrades)|6.267|31 932 805.126|\n|2|[@roelandp](https://steemit.com/@roelandp)|5 750.861|26 290 325.567|\n|3|[@ericvancewalton](https://steemit.com/@ericvancewalton)|6 077.522|24 596 951.571|\n|4|[@gavvet](https://steemit.com/@gavvet)|5 680.552|23 514 590.090|\n|5|[@knozaki2015](https://steemit.com/@knozaki2015)|4 089.160|16 881 905.884|\n|6|[@sirwinchester](https://steemit.com/@sirwinchester)|3 196.259|13 196 949.343|\n|7|[@terrycraft](https://steemit.com/@terrycraft)|2 997.141|12 216 236.410|\n|8|[@calaber24p](https://steemit.com/@calaber24p)|2 411.786|10 175 362.253|\n|9|[@smooth](https://steemit.com/@smooth)|35.690|9 725 180.893|\n|10|[@dollarvigilante](https://steemit.com/@dollarvigilante)|2 135.290|9 376 253.261|\n|11|[@berniesanders](https://steemit.com/@berniesanders)|3.218|9 025 844.273|\n|12|[@dantheman](https://steemit.com/@dantheman)|1 612.428|8 604 664.210|\n|13|[@someguy123](https://steemit.com/@someguy123)|1 852.735|7 812 606.655|\n|14|[@ozchartart](https://steemit.com/@ozchartart)|1 771.698|7 215 740.701|\n|15|[@lifeisawesome](https://steemit.com/@lifeisawesome)|1 689.879|6 989 106.948|\n|16|[@infovore](https://steemit.com/@infovore)|1 705.589|6 924 653.829|\n|17|[@wang](https://steemit.com/@wang)|0.000|6 613 063.186|\n|18|[@charlieshrem](https://steemit.com/@charlieshrem)|1 500.105|6 557 010.291|\n|19|[@kevinwong](https://steemit.com/@kevinwong)|1 525.609|6 542 045.016|\n|20|[@jesta](https://steemit.com/@jesta)|1 492.300|6 472 103.097|\n|21|[@jamielefay](https://steemit.com/@jamielefay)|1 607.864|6 411 495.342|\n|22|[@complexring](https://steemit.com/@complexring)|647.683|6 065 457.160|\n|23|[@masteryoda](https://steemit.com/@masteryoda)|1 423.208|6 023 057.885|\n|24|[@nextgencrypto](https://steemit.com/@nextgencrypto)|7.149|5 399 639.966|\n|25|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|1 324.346|5 343 516.577|\n|26|[@katecloud](https://steemit.com/@katecloud)|1 265.447|5 136 897.795|\n|27|[@good-karma](https://steemit.com/@good-karma)|1 118.049|5 063 419.555|\n|28|[@timsaid](https://steemit.com/@timsaid)|1 153.420|4 999 746.262|\n|29|[@krishtopa](https://steemit.com/@krishtopa)|1 143.346|4 834 060.865|\n|30|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|1 138.985|4 813 642.940|\n|31|[@sascha](https://steemit.com/@sascha)|1 152.462|4 737 155.424|\n|32|[@cryptogee](https://steemit.com/@cryptogee)|1 145.094|4 704 779.347|\n|33|[@honeyscribe](https://steemit.com/@honeyscribe)|1 147.954|4 693 320.648|\n|34|[@curie](https://steemit.com/@curie)|1 056.415|4 572 371.506|\n|35|[@steve-walschot](https://steemit.com/@steve-walschot)|972.080|4 394 483.105|\n|36|[@markrmorrisjr](https://steemit.com/@markrmorrisjr)|1 058.539|4 369 963.419|\n|37|[@lobotony](https://steemit.com/@lobotony)|1 084.459|4 247 247.973|\n|38|[@steemed](https://steemit.com/@steemed)|32.767|4 188 255.968|\n|39|[@opheliafu](https://steemit.com/@opheliafu)|1 005.845|4 156 440.681|\n|40|[@riverhead](https://steemit.com/@riverhead)|7.248|4 045 823.778|\n|41|[@marius19](https://steemit.com/@marius19)|951.573|4 011 036.875|\n|42|[@serejandmyself](https://steemit.com/@serejandmyself)|941.108|3 990 747.231|\n|43|[@pharesim](https://steemit.com/@pharesim)|0.000|3 875 558.313|\n|44|[@steemit200](https://steemit.com/@steemit200)|0.000|3 768 755.702|\n|45|[@steempower](https://steemit.com/@steempower)|848.391|3 693 774.188|\n|46|[@xeroc](https://steemit.com/@xeroc)|700.860|3 667 185.079|\n|47|[@clayop](https://steemit.com/@clayop)|744.729|3 588 626.269|\n|48|[@aizensou](https://steemit.com/@aizensou)|813.814|3 460 586.334|\n|49|[@furion](https://steemit.com/@furion)|776.731|3 320 010.859|\n|50|[@xeldal](https://steemit.com/@xeldal)|0.393|3 300 335.411|\n|51|[@ned](https://steemit.com/@ned)|32.419|3 290 566.039|\n|52|[@officialfuzzy](https://steemit.com/@officialfuzzy)|769.671|3 256 431.084|\n|53|[@steemdrive](https://steemit.com/@steemdrive)|713.054|3 137 516.266|\n|54|[@joseph](https://steemit.com/@joseph)|57.350|3 085 782.531|\n|55|[@kencode](https://steemit.com/@kencode)|769.635|3 084 463.879|\n|56|[@larkenrose](https://steemit.com/@larkenrose)|718.161|2 952 298.454|\n|57|[@steemship](https://steemit.com/@steemship)|700.485|2 935 488.501|\n|58|[@recursive](https://steemit.com/@recursive)|6.621|2 918 906.746|\n|59|[@jpiper20](https://steemit.com/@jpiper20)|704.591|2 861 337.136|\n|60|[@hr1](https://steemit.com/@hr1)|0.300|2 780 636.062|\n|61|[@nanzo-scoop](https://steemit.com/@nanzo-scoop)|330.055|2 655 433.594|\n|62|[@laonie](https://steemit.com/@laonie)|116.404|2 619 872.564|\n|63|[@steemcleaners](https://steemit.com/@steemcleaners)|659.132|2 596 140.333|\n|64|[@charleshosk](https://steemit.com/@charleshosk)|585.319|2 399 760.878|\n|65|[@hisnameisolllie](https://steemit.com/@hisnameisolllie)|581.385|2 338 969.539|\n|66|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|497.669|2 274 840.954|\n|67|[@sweetsssj](https://steemit.com/@sweetsssj)|523.979|2 170 158.700|\n|68|[@b0y2k](https://steemit.com/@b0y2k)|497.114|2 132 474.149|\n|69|[@eneismijmich](https://steemit.com/@eneismijmich)|504.116|2 061 771.205|\n|70|[@livingthedream](https://steemit.com/@livingthedream)|510.792|2 027 254.578|\n|71|[@fairytalelife](https://steemit.com/@fairytalelife)|481.143|2 023 586.799|\n|72|[@sterlinluxan](https://steemit.com/@sterlinluxan)|500.904|2 022 584.130|\n|73|[@cass](https://steemit.com/@cass)|391.041|1 993 157.960|\n|74|[@corbettreport](https://steemit.com/@corbettreport)|457.908|1 979 421.716|\n|75|[@barrycooper](https://steemit.com/@barrycooper)|433.548|1 887 586.618|\n|76|[@jamesc](https://steemit.com/@jamesc)|0.153|1 871 857.951|\n|77|[@storyseeker](https://steemit.com/@storyseeker)|430.221|1 849 858.609|\n|78|[@jacor](https://steemit.com/@jacor)|428.758|1 774 043.305|\n|79|[@bravenewcoin](https://steemit.com/@bravenewcoin)|427.758|1 764 533.073|\n|80|[@kental](https://steemit.com/@kental)|435.486|1 746 992.520|\n|81|[@au1nethyb1](https://steemit.com/@au1nethyb1)|0.000|1 740 612.769|\n|82|[@mibenkito](https://steemit.com/@mibenkito)|399.692|1 722 718.612|\n|83|[@pfunk](https://steemit.com/@pfunk)|304.288|1 696 845.158|\n|84|[@alexbeyman](https://steemit.com/@alexbeyman)|409.397|1 679 902.161|\n|85|[@smailer](https://steemit.com/@smailer)|400.558|1 679 104.012|\n|86|[@badassmother](https://steemit.com/@badassmother)|0.000|1 679 019.431|\n|87|[@donkeypong](https://steemit.com/@donkeypong)|306.922|1 672 530.744|\n|88|[@razvanelulmarin](https://steemit.com/@razvanelulmarin)|373.350|1 644 174.858|\n|89|[@summon](https://steemit.com/@summon)|72.228|1 622 251.187|\n|90|[@gangsta](https://steemit.com/@gangsta)|405.820|1 620 709.343|\n|91|[@silver](https://steemit.com/@silver)|0.000|1 609 716.257|\n|92|[@dannystravels](https://steemit.com/@dannystravels)|404.374|1 568 065.581|\n|93|[@jamtaylor](https://steemit.com/@jamtaylor)|358.256|1 555 939.370|\n|94|[@mrs.steemit](https://steemit.com/@mrs.steemit)|368.118|1 530 900.679|\n|95|[@fyrstikken](https://steemit.com/@fyrstikken)|325.469|1 521 433.247|\n|96|[@senseiteekay](https://steemit.com/@senseiteekay)|357.948|1 517 489.098|\n|97|[@healthyrecipes](https://steemit.com/@healthyrecipes)|350.465|1 480 991.813|\n|98|[@satoshifund](https://steemit.com/@satoshifund)|0.000|1 472 512.796|\n|99|[@kushed](https://steemit.com/@kushed)|0.160|1 449 619.943|\n|100|[@aggroed](https://steemit.com/@aggroed)|348.227|1 428 790.019|\n\n\n- - -\n\n### Top 100 paying posts (author reward):\n|Rank | Account | SBD | VESTS | POST|\n| :-----| ------------- |-------------:| -----:|:-----|\n|1|[@roelandp](https://steemit.com/@roelandp)|5417.783|24936028.708622|[save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-n](https://steemit.com/all/@roelandp/save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl)|\n|2|[@someguy123](https://steemit.com/@someguy123)|1314.389|5601399.952738|[understeem-steemit-without-censorship-nsfw-filter-removed-vi](https://steemit.com/all/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor)|\n|3|[@kevinwong](https://steemit.com/@kevinwong)|971.542|4190657.642935|[logo-contest-for-project-curie-calling-all-designers](https://steemit.com/all/@kevinwong/logo-contest-for-project-curie-calling-all-designers)|\n|4|[@steve-walschot](https://steemit.com/@steve-walschot)|937.502|4105645.799136|[investigating-the-wale-scam-assumptions-above-knowledge](https://steemit.com/all/@steve-walschot/investigating-the-wale-scam-assumptions-above-knowledge)|\n|5|[@good-karma](https://steemit.com/@good-karma)|909.717|4210888.383925|[esteem-ios-1-2-2-released-advanced-login-signup-patch-post-e](https://steemit.com/all/@good-karma/esteem-ios-1-2-2-released-advanced-login-signup-patch-post-edits-photo-inclusion-on-posts-new-navigation-filter)|\n|6|[@cryptogee](https://steemit.com/@cryptogee)|802.871|3114844.305012|[a-quick-fix-for-a-broken-capitalist-society](https://steemit.com/all/@cryptogee/a-quick-fix-for-a-broken-capitalist-society)|\n|7|[@infovore](https://steemit.com/@infovore)|780.138|3145392.168091|[steemmag-steemit-s-weekend-digest-9-of-community-curation-an](https://steemit.com/all/@infovore/steemmag-steemit-s-weekend-digest-9-of-community-curation-and-reputation-chats-with-a-whale-steemit-chat-lead-moderators-a-day)|\n|8|[@steemdrive](https://steemit.com/@steemdrive)|709.735|3021388.477665|[steemdrive-second-proof-of-successful-crowdfunded-billboard-](https://steemit.com/all/@steemdrive/steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa)|\n|9|[@ericvancewalton](https://steemit.com/@ericvancewalton)|694.130|2692969.805438|[alarm-clock-dawn-an-original-novel-episode-22](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-22)|\n|10|[@sascha](https://steemit.com/@sascha)|672.279|2606133.315123|[our-life-on-planet-earth-part-8-the-meaning-of-life](https://steemit.com/all/@sascha/our-life-on-planet-earth-part-8-the-meaning-of-life)|\n|11|[@jesta](https://steemit.com/@jesta)|672.102|3084315.315130|[steem-bounty-system-milestone-1-proposal](https://steemit.com/all/@jesta/steem-bounty-system-milestone-1-proposal)|\n|12|[@steempower](https://steemit.com/@steempower)|670.009|2855734.328170|[bitshares-state-of-the-network-11th-sept-2016](https://steemit.com/all/@steempower/bitshares-state-of-the-network-11th-sept-2016)|\n|13|[@complexring](https://steemit.com/@complexring)|635.717|2707974.667320|[bypassing-the-great-firewall-of-china](https://steemit.com/all/@complexring/bypassing-the-great-firewall-of-china)|\n|14|[@katecloud](https://steemit.com/@katecloud)|628.891|2463723.749341|[a-photo-the-progression-of-a-painting-and-a-poem-by-kate-clo](https://steemit.com/all/@katecloud/a-photo-the-progression-of-a-painting-and-a-poem-by-kate-cloud)|\n|15|[@infovore](https://steemit.com/@infovore)|623.373|2415144.530628|[the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-th](https://steemit.com/all/@infovore/the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-the-internables-trend)|\n|16|[@ericvancewalton](https://steemit.com/@ericvancewalton)|605.001|2343398.347985|[the-cliff-an-original-poem](https://steemit.com/all/@ericvancewalton/the-cliff-an-original-poem)|\n|17|[@ericvancewalton](https://steemit.com/@ericvancewalton)|599.216|2408866.584548|[rush-hour-train-an-original-poem](https://steemit.com/all/@ericvancewalton/rush-hour-train-an-original-poem)|\n|18|[@dantheman](https://steemit.com/@dantheman)|588.696|2270663.485250|[censorship-is-impossible-in-a-free-society](https://steemit.com/all/@dantheman/censorship-is-impossible-in-a-free-society)|\n|19|[@ericvancewalton](https://steemit.com/@ericvancewalton)|573.497|2217973.305761|[too-simple-to-see-an-original-poem](https://steemit.com/all/@ericvancewalton/too-simple-to-see-an-original-poem)|\n|20|[@lobotony](https://steemit.com/@lobotony)|559.734|2169953.235319|[a-trip-to-the-north-part-1-of-2-iceland](https://steemit.com/all/@lobotony/a-trip-to-the-north-part-1-of-2-iceland)|\n|21|[@steemship](https://steemit.com/@steemship)|556.189|2365420.937467|[open-letter-to-ned-and-dan-you-badly-need-a-communications-c](https://steemit.com/all/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or)|\n|22|[@kevinwong](https://steemit.com/@kevinwong)|550.834|2135268.781675|[dayjob-ended-hello-steemit](https://steemit.com/all/@kevinwong/dayjob-ended-hello-steemit)|\n|23|[@ericvancewalton](https://steemit.com/@ericvancewalton)|539.244|2295220.650034|[alarm-clock-dawn-an-original-novel-episode-25](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-25)|\n|24|[@ericvancewalton](https://steemit.com/@ericvancewalton)|535.500|2075831.717451|[4ziyjc-alarm-clock-dawn-an-original-novel-episode-22](https://steemit.com/all/@ericvancewalton/4ziyjc-alarm-clock-dawn-an-original-novel-episode-22)|\n|25|[@lobotony](https://steemit.com/@lobotony)|524.725|2076637.525890|[a-trip-to-the-north-part-2-of-2-greenland](https://steemit.com/all/@lobotony/a-trip-to-the-north-part-2-of-2-greenland)|\n|26|[@dollarvigilante](https://steemit.com/@dollarvigilante)|522.074|2024561.204875|[gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-i](https://steemit.com/all/@dollarvigilante/gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-into-gold)|\n|27|[@calaber24p](https://steemit.com/@calaber24p)|516.871|2073762.161780|[the-evolution-of-virtual-economies-and-their-future-global-i](https://steemit.com/all/@calaber24p/the-evolution-of-virtual-economies-and-their-future-global-impact-on-the-world)|\n|28|[@jamielefay](https://steemit.com/@jamielefay)|515.285|1997372.750614|[ahe-ey-submission-an-original-novel-part-16](https://steemit.com/all/@jamielefay/ahe-ey-submission-an-original-novel-part-16)|\n|29|[@lifeisawesome](https://steemit.com/@lifeisawesome)|515.184|2076732.392526|[you-are-what-your-friends-are](https://steemit.com/all/@lifeisawesome/you-are-what-your-friends-are)|\n|30|[@ericvancewalton](https://steemit.com/@ericvancewalton)|512.929|1979697.284935|[alarm-clock-dawn-an-original-novel-episode-21](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-21)|\n|31|[@charlieshrem](https://steemit.com/@charlieshrem)|508.009|2110171.661194|[how-to-live-completely-off-steem-using-a-virtual-and-physica](https://steemit.com/all/@charlieshrem/how-to-live-completely-off-steem-using-a-virtual-and-physical-debit-card-topped-up-with-steem)|\n|32|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|497.660|2255006.094857|[the-lifecycle-of-a-song](https://steemit.com/all/@thisisbenbrick/the-lifecycle-of-a-song)|\n|33|[@timsaid](https://steemit.com/@timsaid)|493.545|1978954.745437|[life-explorers-the-human-senses-part-ii-hearing](https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-ii-hearing)|\n|34|[@gavvet](https://steemit.com/@gavvet)|483.546|2060779.396304|[crab-mentality-what-you-need-to-know-about-this-kind-of-degr](https://steemit.com/all/@gavvet/crab-mentality-what-you-need-to-know-about-this-kind-of-degrading-mentality-english-filipino)|\n|35|[@fairytalelife](https://steemit.com/@fairytalelife)|479.523|1927465.053480|[how-to-draw-a-braid](https://steemit.com/all/@fairytalelife/how-to-draw-a-braid)|\n|36|[@sascha](https://steemit.com/@sascha)|479.357|2090356.322663|[salt-as-an-energy-source-energetic-purification-with-salt](https://steemit.com/all/@sascha/salt-as-an-energy-source-energetic-purification-with-salt)|\n|37|[@ericvancewalton](https://steemit.com/@ericvancewalton)|459.391|1953748.642541|[walk-your-worries-an-original-poem](https://steemit.com/all/@ericvancewalton/walk-your-worries-an-original-poem)|\n|38|[@calaber24p](https://steemit.com/@calaber24p)|458.060|1948333.287074|[different-ways-to-think-about-your-time-and-money-to-lead-to](https://steemit.com/all/@calaber24p/different-ways-to-think-about-your-time-and-money-to-lead-to-better-financial-security)|\n|39|[@dollarvigilante](https://steemit.com/@dollarvigilante)|457.747|2096614.988536|[boom-end-game-nears-as-central-banks-buying-up-gold-mining-c](https://steemit.com/all/@dollarvigilante/boom-end-game-nears-as-central-banks-buying-up-gold-mining-companies)|\n|40|[@timsaid](https://steemit.com/@timsaid)|451.707|2069238.286170|[life-explorers-the-human-senses-part-iii-touch](https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-iii-touch)|\n|41|[@sterlinluxan](https://steemit.com/@sterlinluxan)|445.525|1790952.274641|[anarchapulco-is-one-of-the-most-world-changing-conferences-e](https://steemit.com/all/@sterlinluxan/anarchapulco-is-one-of-the-most-world-changing-conferences-ever)|\n|42|[@calaber24p](https://steemit.com/@calaber24p)|445.091|1730853.060104|[revamping-curation-is-the-way-to-increase-steem-power-demand](https://steemit.com/all/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand)|\n|43|[@jamielefay](https://steemit.com/@jamielefay)|444.129|1722107.917895|[ahe-ey-water-angels-an-original-novel-part-7-audiobook](https://steemit.com/all/@jamielefay/ahe-ey-water-angels-an-original-novel-part-7-audiobook)|\n|44|[@xeroc](https://steemit.com/@xeroc)|442.100|1715452.124498|[piston-how-to-use-it-for-multisignature-accounts](https://steemit.com/all/@xeroc/piston-how-to-use-it-for-multisignature-accounts)|\n|45|[@dollarvigilante](https://steemit.com/@dollarvigilante)|439.671|1772010.226787|[jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-sin](https://steemit.com/all/@dollarvigilante/jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-since-brexit)|\n|46|[@jamielefay](https://steemit.com/@jamielefay)|436.368|1860075.567439|[ahe-ey-allegiance-an-original-novel-part-18](https://steemit.com/all/@jamielefay/ahe-ey-allegiance-an-original-novel-part-18)|\n|47|[@jesta](https://steemit.com/@jesta)|427.963|1692835.407320|[steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-](https://steemit.com/all/@jesta/steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-0-14-0)|\n|48|[@dollarvigilante](https://steemit.com/@dollarvigilante)|426.107|1815667.350107|[famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-a](https://steemit.com/all/@dollarvigilante/famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-anarchy-and-cryptocurrencies)|\n|49|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|413.120|1600748.444404|[pura-vida-my-experience-working-on-a-permaculture-farm-in-co](https://steemit.com/all/@anwenbaumeister/pura-vida-my-experience-working-on-a-permaculture-farm-in-costa-rica-part-two)|\n|50|[@dannystravels](https://steemit.com/@dannystravels)|404.374|1567809.296314|[face-to-face-with-our-closest-living-relative-part-2-2](https://steemit.com/all/@dannystravels/face-to-face-with-our-closest-living-relative-part-2-2)|\n|51|[@sirwinchester](https://steemit.com/@sirwinchester)|403.621|1723295.787435|[bitcoin-exchange-berlin-meetup-with-ned-on-skype](https://steemit.com/all/@sirwinchester/bitcoin-exchange-berlin-meetup-with-ned-on-skype)|\n|52|[@mibenkito](https://steemit.com/@mibenkito)|399.692|1701129.893154|[a-steemian-s-world-food-journal-part-5-sydney](https://steemit.com/all/@mibenkito/a-steemian-s-world-food-journal-part-5-sydney)|\n|53|[@ericvancewalton](https://steemit.com/@ericvancewalton)|399.641|1719344.321486|[broken-dreams-an-original-poem](https://steemit.com/all/@ericvancewalton/broken-dreams-an-original-poem)|\n|54|[@charleshosk](https://steemit.com/@charleshosk)|390.939|1571334.118454|[ethereum-classic-an-update](https://steemit.com/all/@charleshosk/ethereum-classic-an-update)|\n|55|[@calaber24p](https://steemit.com/@calaber24p)|390.494|1824187.485033|[countries-that-incentivize-and-deregulate-crypto-startups-wi](https://steemit.com/all/@calaber24p/countries-that-incentivize-and-deregulate-crypto-startups-will-reap-the-rewards-if-the-technology-goes-mainstream)|\n|56|[@charlieshrem](https://steemit.com/@charlieshrem)|382.869|1477441.136465|[an-intimate-evening-with-charlie-shrem-moving-forward-south-](https://steemit.com/all/@charlieshrem/an-intimate-evening-with-charlie-shrem-moving-forward-south-florida-usa)|\n|57|[@officialfuzzy](https://steemit.com/@officialfuzzy)|378.829|1519255.893290|[guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-fri](https://steemit.com/all/@officialfuzzy/guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-friday-s-hangout-refer-projects-for-rewards)|\n|58|[@knozaki2015](https://steemit.com/@knozaki2015)|370.606|1493308.546306|[steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-german](https://steemit.com/all/@knozaki2015/steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-germany-9-9-2016-with-pictures)|\n|59|[@dantheman](https://steemit.com/@dantheman)|369.466|1485061.731912|[justification-for-104-week-power-down](https://steemit.com/all/@dantheman/justification-for-104-week-power-down)|\n|60|[@cass](https://steemit.com/@cass)|369.092|1533209.359825|[sneak-preview-chainsquad-corporate-branding-logo-design](https://steemit.com/all/@cass/sneak-preview-chainsquad-corporate-branding-logo-design)|\n|61|[@aizensou](https://steemit.com/@aizensou)|358.318|1418712.320393|[top-5-places-in-barcelona-featuring-maryfromsochi-as-author](https://steemit.com/all/@aizensou/top-5-places-in-barcelona-featuring-maryfromsochi-as-author)|\n|62|[@sirwinchester](https://steemit.com/@sirwinchester)|358.314|1477359.694757|[steemit-meetup-in-berlin-germany](https://steemit.com/all/@sirwinchester/steemit-meetup-in-berlin-germany)|\n|63|[@clayop](https://steemit.com/@clayop)|355.145|1512981.501683|[the-typology-of-curation-what-kinds-of-curators-we-have-now](https://steemit.com/all/@clayop/the-typology-of-curation-what-kinds-of-curators-we-have-now)|\n|64|[@kencode](https://steemit.com/@kencode)|353.240|1453050.277044|[ann-smartcoins-wallet-v1-0-6-released](https://steemit.com/all/@kencode/ann-smartcoins-wallet-v1-0-6-released)|\n|65|[@gavvet](https://steemit.com/@gavvet)|353.159|1405040.374698|[a-free-lunch-with-edward-snowden](https://steemit.com/all/@gavvet/a-free-lunch-with-edward-snowden)|\n|66|[@clayop](https://steemit.com/@clayop)|343.604|1365548.612065|[how-much-do-whales-influences-on-rewards-introducing-new-sta](https://steemit.com/all/@clayop/how-much-do-whales-influences-on-rewards-introducing-new-statistics)|\n|67|[@curie](https://steemit.com/@curie)|343.592|1465300.000707|[project-curie-s-daily-curation-list-10-sept-11-sept-2016](https://steemit.com/all/@curie/project-curie-s-daily-curation-list-10-sept-11-sept-2016)|\n|68|[@calaber24p](https://steemit.com/@calaber24p)|342.141|1457567.812539|[immigration-into-america-has-made-it-the-world-power-it-is-t](https://steemit.com/all/@calaber24p/immigration-into-america-has-made-it-the-world-power-it-is-today)|\n|69|[@b0y2k](https://steemit.com/@b0y2k)|340.586|1369051.035651|[steemit-sponsoring-the-compass-cup-team-event](https://steemit.com/all/@b0y2k/steemit-sponsoring-the-compass-cup-team-event)|\n|70|[@cryptogee](https://steemit.com/@cryptogee)|339.967|1496475.706859|[spotlight-issue-8-philosophy-music-and-science](https://steemit.com/all/@cryptogee/spotlight-issue-8-philosophy-music-and-science)|\n|71|[@kencode](https://steemit.com/@kencode)|337.474|1308694.645920|[blockpay-moving-up-the-charts](https://steemit.com/all/@kencode/blockpay-moving-up-the-charts)|\n|72|[@ericvancewalton](https://steemit.com/@ericvancewalton)|336.781|1347763.370147|[alarm-clock-dawn-an-original-novel-episode-24](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-24)|\n|73|[@gavvet](https://steemit.com/@gavvet)|332.977|1291120.851189|[hi-to-reinvent-yourself-featuring-sauravrungta-as-author](https://steemit.com/all/@gavvet/hi-to-reinvent-yourself-featuring-sauravrungta-as-author)|\n|74|[@ozchartart](https://steemit.com/@ozchartart)|332.418|1282511.839603|[usdeth-btc-poloniex-technical-analysis-sept-07-2016](https://steemit.com/all/@ozchartart/usdeth-btc-poloniex-technical-analysis-sept-07-2016)|\n|75|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|332.381|1339735.329416|[celtic-heart-knot-pictorial](https://steemit.com/all/@bridgetbunchy/celtic-heart-knot-pictorial)|\n|76|[@roelandp](https://steemit.com/@roelandp)|331.053|1286840.936796|[my-proper-introduceyourself-hello-i-m-roelandp](https://steemit.com/all/@roelandp/my-proper-introduceyourself-hello-i-m-roelandp)|\n|77|[@ericvancewalton](https://steemit.com/@ericvancewalton)|330.742|1295789.736302|[know-me-an-original-poem](https://steemit.com/all/@ericvancewalton/know-me-an-original-poem)|\n|78|[@cryptovpn](https://steemit.com/@cryptovpn)|329.564|1276654.885609|[steemit-charity-run-no-1-doctors-without-borders](https://steemit.com/all/@cryptovpn/steemit-charity-run-no-1-doctors-without-borders)|\n|79|[@steemcleaners](https://steemit.com/@steemcleaners)|329.504|1292242.895864|[steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-](https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-1)|\n|80|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|320.241|1241317.843204|[my-cross-country-road-trip-greater-than-sf-greater-than-vega](https://steemit.com/all/@anwenbaumeister/my-cross-country-road-trip-greater-than-sf-greater-than-vegas-greater-than-boulder-greater-than-houston-greater-than-new-orleans)|\n|81|[@charlieshrem](https://steemit.com/@charlieshrem)|313.754|1475625.347428|[a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-](https://steemit.com/all/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-life-and-the-shrempresso)|\n|82|[@enric](https://steemit.com/@enric)|311.617|1208114.056405|[im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurre](https://steemit.com/all/@enric/im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurrency-my-revolutionary-struggle-now-im-here)|\n|83|[@dantheman](https://steemit.com/@dantheman)|309.920|1201663.748404|[scalability-of-individual-responsibility-in-anarchy](https://steemit.com/all/@dantheman/scalability-of-individual-responsibility-in-anarchy)|\n|84|[@officialfuzzy](https://steemit.com/@officialfuzzy)|309.814|1312470.274185|[e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-test](https://steemit.com/all/@officialfuzzy/e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-testnet-jewels-ico-success-gridcoin-and-making-it-rain)|\n|85|[@gavvet](https://steemit.com/@gavvet)|308.127|1212749.753443|[a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-](https://steemit.com/all/@gavvet/a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-author)|\n|86|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|303.555|1201909.200453|[the-love-of-a-maker](https://steemit.com/all/@bridgetbunchy/the-love-of-a-maker)|\n|87|[@steemcleaners](https://steemit.com/@steemcleaners)|302.924|1192233.387004|[steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-](https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-2)|\n|88|[@dantheman](https://steemit.com/@dantheman)|301.672|1169749.675855|[nonviolent-censorship-is-how-nonviolent-societies-create-non](https://steemit.com/all/@dantheman/nonviolent-censorship-is-how-nonviolent-societies-create-nonviolent-government)|\n|89|[@infovore](https://steemit.com/@infovore)|301.261|1214999.166441|[a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-](https://steemit.com/all/@infovore/a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-moment-on-steemit-this-week-on-steemit-steemmag-steemit-s-weekend)|\n|90|[@firepower](https://steemit.com/@firepower)|300.280|1368056.554963|[when-i-lost-sight-while-steeming](https://steemit.com/all/@firepower/when-i-lost-sight-while-steeming)|\n|91|[@ozchartart](https://steemit.com/@ozchartart)|294.271|1183433.553199|[usddoge-btc-poloniex-technical-analysis-sept-10-2016](https://steemit.com/all/@ozchartart/usddoge-btc-poloniex-technical-analysis-sept-10-2016)|\n|92|[@donkeypong](https://steemit.com/@donkeypong)|293.559|1138798.465907|[a-tribute-to-snail-mail](https://steemit.com/all/@donkeypong/a-tribute-to-snail-mail)|\n|93|[@charlieshrem](https://steemit.com/@charlieshrem)|292.995|1135970.118327|[progressive-relaxation-by-charlie-shrem-mindfulness-meditati](https://steemit.com/all/@charlieshrem/progressive-relaxation-by-charlie-shrem-mindfulness-meditation-in-prison-and-everyday-life)|\n|94|[@curie](https://steemit.com/@curie)|289.920|1234271.286622|[project-curie-s-daily-curation-list-9-sept-10-sept-2016](https://steemit.com/all/@curie/project-curie-s-daily-curation-list-9-sept-10-sept-2016)|\n|95|[@furion](https://steemit.com/@furion)|289.919|1234751.363741|[a-quick-look-at-null-and-the-profitability-of-promoted-posts](https://steemit.com/all/@furion/a-quick-look-at-null-and-the-profitability-of-promoted-posts)|\n|96|[@sirwinchester](https://steemit.com/@sirwinchester)|288.926|1119010.839878|[mr-gourmet-exploring-a-new-location](https://steemit.com/all/@sirwinchester/mr-gourmet-exploring-a-new-location)|\n|97|[@larkenrose](https://steemit.com/@larkenrose)|281.627|1138819.558651|[supply-and-demand-steemit-style](https://steemit.com/all/@larkenrose/supply-and-demand-steemit-style)|\n|98|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|278.638|1162968.108837|[a-peek-into-pre-columbian-worldviews-found-in-agricultural-p](https://steemit.com/all/@anwenbaumeister/a-peek-into-pre-columbian-worldviews-found-in-agricultural-practices-duality-complementarity-cyclicity-and-reciprocity)|\n|99|[@corbettreport](https://steemit.com/@corbettreport)|277.435|1238430.062064|[only-9-11-truth-can-smash-the-9-11-lies](https://steemit.com/all/@corbettreport/only-9-11-truth-can-smash-the-9-11-lies)|\n|100|[@sirwinchester](https://steemit.com/@sirwinchester)|277.087|1113453.030386|[find-your-why-self-discovery-and-finding-your-purpose-in-lif](https://steemit.com/all/@sirwinchester/find-your-why-self-discovery-and-finding-your-purpose-in-life)|\n\n\n- - -\nPrevious report: [September week 1](https://steemit.com/stats/@masteryoda/weekly-payouts-leaderboards-september-week-1)\n- - -\n\n###### \u00a9 @masteryoda", + "category": "stats", + "children": 25, + "created": "2016-09-15T10:10:06", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.imgsafe.org/81a1095cd2.png", + "http://imgh.us/canvas2_1.png" ], - "author": "mister-omortson", - "author_payout_value": "0.000 HBD", - "author_reputation": 66.74, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "
\n*Hi everybody! \u0412\u0441\u0435\u043c \u043f\u0440\u0438\u0432\u0435\u0442! Hola a todos! Bonjour \u00e0 tous! Hallo allerseits! \u041f\u043e\u0437\u0434\u0440\u0430\u0432 \u0441\u0432\u0438\u043c\u0430!*\n
\n
\n\n\n
\n![IMG_5394.JPG](https://images.hive.blog/DQmXCRAJrukHDBH6ohpEUrawxsMACy42MYebv6ub31iVqRx/IMG_5394.JPG)\n\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n
\n**\"By the river\"**\n
\n 2 0 2 0\nwatercolor\n
\n![777.png](https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png)\n
\n
\n
\n
\n\n\nThe weather was fine yesterday morning. I decided to lighten up some time for painting. He collected paints and brushes, took my stretcher with paper, and went to the river. As I got to the place the weather began to change. The sky was covered with clouds, the humidity increased - optimal conditions for watercolor.\n\n\n![image.png](https://images.hive.blog/DQmWr2fPZJL3sE9wYk2ovaybXjfTGjL3bAtew3Gjy4zUM8P/image.png)\n\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n
\nI moved along the river looking for a suitable scenery for an etude. In good weather, it\u2019s hard to find a free place. The whole coast is occupied by groups of vacationers\n
\n![image.png](https://images.hive.blog/DQmY4TbiX8t5dpp1WyJqGf88dZw2W7Sxjjq5QcA4PjEHrof/image.png)\n\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n
\nAnother task is to find a good view of the river. Finally I found something interesting. This place has another important positive aspect, there are no people and ants. The only unpleasant fact is the presence of prickly plants. I do not know what it's called, but this plant pricks very much\n
\n\n![20200705_193445.jpg](https://images.hive.blog/DQmQtNecw7AyEF98f3zPr7A66yEyLNqYKApm2zHUV7XZW13/20200705_193445.jpg)\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n
\nSo we have a wonderful scenery. River, distant shore, clouds and sedge reflected in the water.\n\n![image.png](https://images.hive.blog/DQmP9yfSPeiyTy3i1quBAAN1hBW9tVRRAg6SwJGJ5Xtn3uD/image.png)\n\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n
\n\n\nAs usual several pictures of work stages\n1\n\n![image.png](https://images.hive.blog/DQmdFnNj6RfnxS7sP45qbErpK7WvJLniD1EdfdC5ynpuMB4/image.png)\n\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n2\n\n![image.png](https://images.hive.blog/DQmTCHkgjNPguXSxfNpgGiEvEVqZLcXyJyEAMU2QhFjsJuK/image.png)\n\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n3\n\n![image.png](https://images.hive.blog/DQmYTucC3bEYGTPzT7vYJr1bMSffVD2yeDtbrX7ckZh4CX8/image.png)\n\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n\n\n\n\n
\n
\nThe finished painting:\n
\n\n![IMG_5397.JPG](https://images.hive.blog/DQmf77BY84gkm94sL1iofwYwA8hdT6duSyZYkyxAgnJHuY9/IMG_5397.JPG)\n\n![777.png](https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png)\n
\nWatercolor painting by @mister-omortson\n
\nTextured paper\nSize A4 \n
\n\n
\nThank you for viewing\n\n\n\n
\n
\nStand by\n
\nhttps://images.hive.blog/0x0/https://images.hive.blog/DQmfXVDrjFhc733t5tmFYRSf9mZZnJWDw8swAcxxg58Da1q/DQmPWWJcKSsQbBiPea3b7ZDe8N5x8D6nr51Ppu5SYnDbdde.gif\n
\n\n\n\n\n\n
\nSincerely yours \n\n\n\n\n\n![image.png](https://cdn.steemitimages.com/DQmdkC7D6LQSWLoW9JmqfgZgdSqAZLMpECkKP9PMnKnuWqc/image.png)\n\n\n\n\n
\n
\n
\n
\n#curie #oc #gems #hive-185836 \n
", - "category": "hive-156509", - "children": 3, - "community": "hive-156509", - "community_title": "OnChainArt", - "created": "2020-07-07T12:40:21", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "hiveblog/0.1", - "format": "markdown", - "image": [ - "https://images.hive.blog/DQmXCRAJrukHDBH6ohpEUrawxsMACy42MYebv6ub31iVqRx/IMG_5394.JPG", - "https://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png", - "https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png", - "https://images.hive.blog/DQmWr2fPZJL3sE9wYk2ovaybXjfTGjL3bAtew3Gjy4zUM8P/image.png", - "https://images.hive.blog/DQmY4TbiX8t5dpp1WyJqGf88dZw2W7Sxjjq5QcA4PjEHrof/image.png", - "https://images.hive.blog/DQmQtNecw7AyEF98f3zPr7A66yEyLNqYKApm2zHUV7XZW13/20200705_193445.jpg", - "https://images.hive.blog/DQmP9yfSPeiyTy3i1quBAAN1hBW9tVRRAg6SwJGJ5Xtn3uD/image.png", - "https://images.hive.blog/DQmdFnNj6RfnxS7sP45qbErpK7WvJLniD1EdfdC5ynpuMB4/image.png", - "https://images.hive.blog/DQmTCHkgjNPguXSxfNpgGiEvEVqZLcXyJyEAMU2QhFjsJuK/image.png", - "https://images.hive.blog/DQmYTucC3bEYGTPzT7vYJr1bMSffVD2yeDtbrX7ckZh4CX8/image.png", - "https://images.hive.blog/DQmf77BY84gkm94sL1iofwYwA8hdT6duSyZYkyxAgnJHuY9/IMG_5397.JPG", - "https://images.hive.blog/0x0/https://images.hive.blog/DQmfXVDrjFhc733t5tmFYRSf9mZZnJWDw8swAcxxg58Da1q/DQmPWWJcKSsQbBiPea3b7ZDe8N5x8D6nr51Ppu5SYnDbdde.gif", - "https://cdn.steemitimages.com/DQmdkC7D6LQSWLoW9JmqfgZgdSqAZLMpECkKP9PMnKnuWqc/image.png" - ], - "tags": [ - "hive-156509", - "art", - "photography", - "life", - "sketchbook", - "painting", - "curie", - "oc" - ], - "users": [ - "mister-omortson" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 64505084498408, - "payout": 25.554, - "payout_at": "2020-07-14T12:40:21", - "pending_payout_value": "25.554 HBD", - "percent_hbd": 10000, - "permlink": "by-the-river", - "post_id": 86931855, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 113 - }, - "title": "By the river", - "updated": "2020-07-07T12:40:21", - "url": "/hive-156509/@mister-omortson/by-the-river" - }, - { - "active_votes": [ - { - "rshares": "12182801771", - "voter": "mangou007" - }, - { - "rshares": "476649462716", - "voter": "mark-waser" - }, - { - "rshares": "9070029097151", - "voter": "jphamer1" - }, - { - "rshares": "3709714682431", - "voter": "joele" - }, - { - "rshares": "8600334806051", - "voter": "jrcornel" - }, - { - "rshares": "37281052111", - "voter": "bert0" - }, - { - "rshares": "450409469710", - "voter": "netaterra" - }, - { - "rshares": "442355966313", - "voter": "digital-wisdom" - }, - { - "rshares": "22746684794", - "voter": "jwaser" - }, - { - "rshares": "147355062810", - "voter": "herpetologyguy" - }, - { - "rshares": "6483854871", - "voter": "planosdeunacasa" - }, - { - "rshares": "1944037443", - "voter": "strong-ai" - }, - { - "rshares": "198872822959", - "voter": "jaybird" - }, - { - "rshares": "1780033480122", - "voter": "redes" - }, - { - "rshares": "20918155916", - "voter": "builderofcastles" - }, - { - "rshares": "903680571", - "voter": "technoprogressiv" - }, - { - "rshares": "6530896091", - "voter": "mys" - }, - { - "rshares": "2517667102", - "voter": "whd" - }, - { - "rshares": "183974229622", - "voter": "benedict08" - }, - { - "rshares": "969583577", - "voter": "rollingthunder" - }, - { - "rshares": "11977360758", - "voter": "pixelfan" - }, - { - "rshares": "923178373922", - "voter": "steemvote" - }, - { - "rshares": "388925717613", - "voter": "vikisecrets" - }, - { - "rshares": "14061796475", - "voter": "dineroconopcion" - }, - { - "rshares": "1592652089", - "voter": "zonabitcoin" - }, - { - "rshares": "895683261", - "voter": "djkrad" - }, - { - "rshares": "80504325504", - "voter": "sevillaespino" - }, - { - "rshares": "2869064177", - "voter": "ernick" - }, - { - "rshares": "1009500902", - "voter": "elprutest" - }, - { - "rshares": "3701471975", - "voter": "angelusnoctum" - }, - { - "rshares": "794314274", - "voter": "alexanderlara" - }, - { - "rshares": "4018027410", - "voter": "fbslo" - }, - { - "rshares": "11688994738", - "voter": "robertoueti" - }, - { - "rshares": "1980504831", - "voter": "flamingirl" - }, - { - "rshares": "568387990", - "voter": "liverpool-fan" - }, - { - "rshares": "14985536628", - "voter": "joseph1956" - }, - { - "rshares": "10701020424", - "voter": "tradingideas" - }, - { - "rshares": "4102328716", - "voter": "mtl1979" - }, - { - "rshares": "14703115218", - "voter": "hendersonp" - }, - { - "rshares": "999987439", - "voter": "ubikalo" - }, - { - "rshares": "9977120992", - "voter": "fjcalduch" - }, - { - "rshares": "661704017", - "voter": "guifaquetti" - }, - { - "rshares": "4543631981", - "voter": "candyboy" - }, - { - "rshares": "1038702013", - "voter": "jewel-lover" - }, - { - "rshares": "6597467717", - "voter": "stupid" - }, - { - "rshares": "742000426", - "voter": "korinkrafting" - }, - { - "rshares": "11391673353", - "voter": "mermaidvampire" - }, - { - "rshares": "1848898920", - "voter": "jimcustodio" - }, - { - "rshares": "2412227278", - "voter": "fsegredo1" - }, - { - "rshares": "668614274", - "voter": "ulisesfl17" - }, - { - "rshares": "1464120414", - "voter": "arac" - }, - { - "rshares": "30849674410", - "voter": "josemalavem" - }, - { - "rshares": "2951006780", - "voter": "henlicps" - }, - { - "rshares": "8049463493", - "voter": "josevas217" - }, - { - "rshares": "833959474", - "voter": "beleg" - }, - { - "rshares": "340089634489", - "voter": "dera123" - }, - { - "rshares": "2274342036", - "voter": "moiscapsesii" - }, - { - "rshares": "719109238", - "voter": "yameen" - }, - { - "rshares": "2858810316", - "voter": "juanmanuellopez1" - }, - { - "rshares": "101733519586", - "voter": "themightyvolcano" - }, - { - "rshares": "3182896425", - "voter": "iseeyouvee" - }, - { - "rshares": "3561106412", - "voter": "laloretoyya" - }, - { - "rshares": "1041966865", - "voter": "rollandthomas" - }, - { - "rshares": "3973342155", - "voter": "flores39" - }, - { - "rshares": "17550093585", - "voter": "ifunnymemes" - }, - { - "rshares": "150587449258", - "voter": "promobot" - }, - { - "rshares": "41918384249", - "voter": "kadoshmenorah" - }, - { - "rshares": "2544403652", - "voter": "archisteem" - }, - { - "rshares": "180398794461", - "voter": "digital.mine" - }, - { - "rshares": "592592971", - "voter": "robertojavier" - }, - { - "rshares": "29038558", - "voter": "jk6276" - }, - { - "rshares": "813127118", - "voter": "julian2013" - }, - { - "rshares": "3377230580", - "voter": "gorbisan" - }, - { - "rshares": "21402118", - "voter": "laissez-faire" - }, - { - "rshares": "1032208074", - "voter": "kermosura" - }, - { - "rshares": "2087062652", - "voter": "anti-bully" - }, - { - "rshares": "977084252", - "voter": "memeteca" - }, - { - "rshares": "811229271", - "voter": "florino" - }, - { - "rshares": "1871819727", - "voter": "take-a-break" - }, - { - "rshares": "1046206043", - "voter": "smonia" - }, - { - "rshares": "1259664304", - "voter": "smon-fan" - }, - { - "rshares": "14657345306", - "voter": "blind-spot" - }, - { - "rshares": "673106471", - "voter": "tr777" - }, - { - "rshares": "555584743", - "voter": "sm-jewel" - }, - { - "rshares": "529513814", - "voter": "tr77" - }, - { - "rshares": "559395290", - "voter": "smoner" - }, - { - "rshares": "781870009", - "voter": "smonian" - }, - { - "rshares": "16062060690", - "voter": "smon-joa" - }, - { - "rshares": "541033401", - "voter": "jjangjjanggirl" - }, - { - "rshares": "10049282345", - "voter": "broxi" - }, - { - "rshares": "8945439", - "voter": "limka" - }, - { - "rshares": "547517309", - "voter": "smonbear" - }, - { - "rshares": "356689205", - "voter": "crazydaisy" - }, - { - "rshares": "62988905", - "voter": "coredump" - }, - { - "rshares": "1516690170", - "voter": "trxjjbtc" - }, - { - "rshares": "779160879", - "voter": "dtrade" - }, - { - "rshares": "582968257", - "voter": "ssc-token" - }, - { - "rshares": "145545291061", - "voter": "cezary-io" - }, - { - "rshares": "17185645574419", - "voter": "likwid" - }, - { - "rshares": "23472404", - "voter": "haxxdump" - }, - { - "rshares": "151663719", - "voter": "tradingideas2" - }, - { - "rshares": "28237710350", - "voter": "plankton.token" - }, - { - "rshares": "51734425207", - "voter": "asmr.tist" - }, - { - "rshares": "1641533892", - "voter": "camila19" - }, - { - "rshares": "7851801039", - "voter": "luismar1978" - }, - { - "rshares": "0", - "voter": "tradingideas.spt" - }, - { - "rshares": "797705666", - "voter": "leovoter" - }, - { - "rshares": "1077658726", - "voter": "mindtrap-leo" - }, - { - "rshares": "825000259772", - "voter": "onealfa.leo" - }, - { - "rshares": "6998531194", - "voter": "elgranpoeta" - }, - { - "rshares": "622990674", - "voter": "arctis" - }, - { - "rshares": "17236261630", - "voter": "helengutier2" - }, - { - "rshares": "1342869340", - "voter": "marlians.spt" - }, - { - "rshares": "0", - "voter": "abh12345.neox" - }, - { - "rshares": "212526202", - "voter": "tina-tina" - }, - { - "rshares": "321845476", - "voter": "happiness19" - }, - { - "rshares": "2917848", - "voter": "gdhaetae" - }, - { - "rshares": "429069551", - "voter": "pukeko" - }, - { - "rshares": "46184598990", - "voter": "jk6276.life" - }, - { - "rshares": "0", - "voter": "vxc-ag" - }, - { - "rshares": "1005985249", - "voter": "deflacion" - }, - { - "rshares": "824537001", - "voter": "dnflsms" - }, - { - "rshares": "519385562", - "voter": "jessy22" - }, - { - "rshares": "18027803452", - "voter": "spinvest-leo" - }, - { - "rshares": "1073716500", - "voter": "tonimontana.leo" - }, - { - "rshares": "42512321", - "voter": "tonimontana.neo" - }, - { - "rshares": "1573714060", - "voter": "therealyme" - }, - { - "rshares": "191832123", - "voter": "keep-keep" - }, - { - "rshares": "14640802025", - "voter": "project007.leo" - }, - { - "rshares": "786077753", - "voter": "javb" - }, - { - "rshares": "209072026513", - "voter": "unpopular" - }, - { - "rshares": "907494558", - "voter": "jgb" - }, - { - "rshares": "1688087813", - "voter": "crimianales" - }, - { - "rshares": "1847856138", - "voter": "sumatranate.leo" - }, - { - "rshares": "1077255456", - "voter": "toni.curation" - }, - { - "rshares": "83585293870", - "voter": "travelssteem" - }, - { - "rshares": "884523513", - "voter": "keepit2" - }, - { - "rshares": "1117467951", - "voter": "ldelegations" - }, - { - "rshares": "6341102731", - "voter": "drew0" - }, - { - "rshares": "1271154176", - "voter": "rehan-leo" - }, - { - "rshares": "8948028036", - "voter": "uzzca" - }, - { - "rshares": "0", - "voter": "galaxy100" - }, - { - "rshares": "2899839756704", - "voter": "nautilus-up" - }, - { - "rshares": "0", - "voter": "curation.bot" - }, - { - "rshares": "7742793600", - "voter": "hivecur2" - } + "links": [ + "https://steemit.com/@ericvancewalton", + "https://steemit.com/@roelandp", + "https://steemit.com/@gavvet", + "https://steemit.com/@knozaki2015", + "https://steemit.com/@sirwinchester", + "https://steemit.com/@terrycraft", + "https://steemit.com/@calaber24p", + "https://steemit.com/@dollarvigilante", + "https://steemit.com/@someguy123", + "https://steemit.com/@ozchartart", + "https://steemit.com/@infovore", + "https://steemit.com/@lifeisawesome", + "https://steemit.com/@dantheman", + "https://steemit.com/@jamielefay", + "https://steemit.com/@kevinwong", + "https://steemit.com/@charlieshrem", + "https://steemit.com/@jesta", + "https://steemit.com/@masteryoda", + "https://steemit.com/@bridgetbunchy", + "https://steemit.com/@katecloud", + "https://steemit.com/@timsaid", + "https://steemit.com/@sascha", + "https://steemit.com/@honeyscribe", + "https://steemit.com/@cryptogee", + "https://steemit.com/@krishtopa", + "https://steemit.com/@anwenbaumeister", + "https://steemit.com/@good-karma", + "https://steemit.com/@lobotony", + "https://steemit.com/@markrmorrisjr", + "https://steemit.com/@curie", + "https://steemit.com/@opheliafu", + "https://steemit.com/@steve-walschot", + "https://steemit.com/@marius19", + "https://steemit.com/@serejandmyself", + "https://steemit.com/@steempower", + "https://steemit.com/@aizensou", + "https://steemit.com/@furion", + "https://steemit.com/@officialfuzzy", + "https://steemit.com/@kencode", + "https://steemit.com/@clayop", + "https://steemit.com/@larkenrose", + "https://steemit.com/@steemdrive", + "https://steemit.com/@jpiper20", + "https://steemit.com/@xeroc", + "https://steemit.com/@steemship", + "https://steemit.com/@steemcleaners", + "https://steemit.com/@complexring", + "https://steemit.com/@charleshosk", + "https://steemit.com/@hisnameisolllie", + "https://steemit.com/@sweetsssj", + "https://steemit.com/@livingthedream", + "https://steemit.com/@eneismijmich", + "https://steemit.com/@sterlinluxan", + "https://steemit.com/@thisisbenbrick", + "https://steemit.com/@b0y2k", + "https://steemit.com/@fairytalelife", + "https://steemit.com/@corbettreport", + "https://steemit.com/@kental", + "https://steemit.com/@barrycooper", + "https://steemit.com/@storyseeker", + "https://steemit.com/@jacor", + "https://steemit.com/@bravenewcoin", + "https://steemit.com/@alexbeyman", + "https://steemit.com/@gangsta", + "https://steemit.com/@dannystravels", + "https://steemit.com/@smailer", + "https://steemit.com/@mibenkito", + "https://steemit.com/@cass", + "https://steemit.com/@razvanelulmarin", + "https://steemit.com/@mrs.steemit", + "https://steemit.com/@jamtaylor", + "https://steemit.com/@senseiteekay", + "https://steemit.com/@healthyrecipes", + "https://steemit.com/@aggroed", + "https://steemit.com/@celebr1ty", + "https://steemit.com/@dana-edwards", + "https://steemit.com/@cryptovpn", + "https://steemit.com/@nanzo-scoop", + "https://steemit.com/@fyrstikken", + "https://steemit.com/@richman", + "https://steemit.com/@enric", + "https://steemit.com/@firepower", + "https://steemit.com/@donkeypong", + "https://steemit.com/@churdtzu", + "https://steemit.com/@pfunk", + "https://steemit.com/@canadian-coconut", + "https://steemit.com/@alexgr", + "https://steemit.com/@quinneaker", + "https://steemit.com/@nekromarinist", + "https://steemit.com/@liberosist", + "https://steemit.com/@sigmajin", + "https://steemit.com/@aaronkoenig", + "https://steemit.com/@tracemayer", + "https://steemit.com/@hilarski", + "https://steemit.com/@shammyshiggs", + "https://steemit.com/@halo", + "https://steemit.com/@rok-sivante", + "https://steemit.com/@vermillion666", + "https://steemit.com/@kaylinart", + "https://steemit.com/@kobur", + "https://steemit.com/@blocktrades", + "https://steemit.com/@smooth", + "https://steemit.com/@berniesanders", + "https://steemit.com/@wang", + "https://steemit.com/@nextgencrypto", + "https://steemit.com/@steemed", + "https://steemit.com/@riverhead", + "https://steemit.com/@pharesim", + "https://steemit.com/@steemit200", + "https://steemit.com/@xeldal", + "https://steemit.com/@ned", + "https://steemit.com/@joseph", + "https://steemit.com/@recursive", + "https://steemit.com/@hr1", + "https://steemit.com/@laonie", + "https://steemit.com/@jamesc", + "https://steemit.com/@au1nethyb1", + "https://steemit.com/@badassmother", + "https://steemit.com/@summon", + "https://steemit.com/@silver", + "https://steemit.com/@satoshifund", + "https://steemit.com/@kushed", + "https://steemit.com/all/@roelandp/save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl", + "https://steemit.com/all/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor", + "https://steemit.com/all/@kevinwong/logo-contest-for-project-curie-calling-all-designers", + "https://steemit.com/all/@steve-walschot/investigating-the-wale-scam-assumptions-above-knowledge", + "https://steemit.com/all/@good-karma/esteem-ios-1-2-2-released-advanced-login-signup-patch-post-edits-photo-inclusion-on-posts-new-navigation-filter", + "https://steemit.com/all/@cryptogee/a-quick-fix-for-a-broken-capitalist-society", + "https://steemit.com/all/@infovore/steemmag-steemit-s-weekend-digest-9-of-community-curation-and-reputation-chats-with-a-whale-steemit-chat-lead-moderators-a-day", + "https://steemit.com/all/@steemdrive/steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-22", + "https://steemit.com/all/@sascha/our-life-on-planet-earth-part-8-the-meaning-of-life", + "https://steemit.com/all/@jesta/steem-bounty-system-milestone-1-proposal", + "https://steemit.com/all/@steempower/bitshares-state-of-the-network-11th-sept-2016", + "https://steemit.com/all/@complexring/bypassing-the-great-firewall-of-china", + "https://steemit.com/all/@katecloud/a-photo-the-progression-of-a-painting-and-a-poem-by-kate-cloud", + "https://steemit.com/all/@infovore/the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-the-internables-trend", + "https://steemit.com/all/@ericvancewalton/the-cliff-an-original-poem", + "https://steemit.com/all/@ericvancewalton/rush-hour-train-an-original-poem", + "https://steemit.com/all/@dantheman/censorship-is-impossible-in-a-free-society", + "https://steemit.com/all/@ericvancewalton/too-simple-to-see-an-original-poem", + "https://steemit.com/all/@lobotony/a-trip-to-the-north-part-1-of-2-iceland", + "https://steemit.com/all/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or", + "https://steemit.com/all/@kevinwong/dayjob-ended-hello-steemit", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-25", + "https://steemit.com/all/@ericvancewalton/4ziyjc-alarm-clock-dawn-an-original-novel-episode-22", + "https://steemit.com/all/@lobotony/a-trip-to-the-north-part-2-of-2-greenland", + "https://steemit.com/all/@dollarvigilante/gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-into-gold", + "https://steemit.com/all/@calaber24p/the-evolution-of-virtual-economies-and-their-future-global-impact-on-the-world", + "https://steemit.com/all/@jamielefay/ahe-ey-submission-an-original-novel-part-16", + "https://steemit.com/all/@lifeisawesome/you-are-what-your-friends-are", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-21", + "https://steemit.com/all/@charlieshrem/how-to-live-completely-off-steem-using-a-virtual-and-physical-debit-card-topped-up-with-steem", + "https://steemit.com/all/@thisisbenbrick/the-lifecycle-of-a-song", + "https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-ii-hearing", + "https://steemit.com/all/@gavvet/crab-mentality-what-you-need-to-know-about-this-kind-of-degrading-mentality-english-filipino", + "https://steemit.com/all/@fairytalelife/how-to-draw-a-braid", + "https://steemit.com/all/@sascha/salt-as-an-energy-source-energetic-purification-with-salt", + "https://steemit.com/all/@ericvancewalton/walk-your-worries-an-original-poem", + "https://steemit.com/all/@calaber24p/different-ways-to-think-about-your-time-and-money-to-lead-to-better-financial-security", + "https://steemit.com/all/@dollarvigilante/boom-end-game-nears-as-central-banks-buying-up-gold-mining-companies", + "https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-iii-touch", + "https://steemit.com/all/@sterlinluxan/anarchapulco-is-one-of-the-most-world-changing-conferences-ever", + "https://steemit.com/all/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand", + "https://steemit.com/all/@jamielefay/ahe-ey-water-angels-an-original-novel-part-7-audiobook", + "https://steemit.com/all/@xeroc/piston-how-to-use-it-for-multisignature-accounts", + "https://steemit.com/all/@dollarvigilante/jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-since-brexit", + "https://steemit.com/all/@jamielefay/ahe-ey-allegiance-an-original-novel-part-18", + "https://steemit.com/all/@jesta/steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-0-14-0", + "https://steemit.com/all/@dollarvigilante/famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-anarchy-and-cryptocurrencies", + "https://steemit.com/all/@anwenbaumeister/pura-vida-my-experience-working-on-a-permaculture-farm-in-costa-rica-part-two", + "https://steemit.com/all/@dannystravels/face-to-face-with-our-closest-living-relative-part-2-2", + "https://steemit.com/all/@sirwinchester/bitcoin-exchange-berlin-meetup-with-ned-on-skype", + "https://steemit.com/all/@mibenkito/a-steemian-s-world-food-journal-part-5-sydney", + "https://steemit.com/all/@ericvancewalton/broken-dreams-an-original-poem", + "https://steemit.com/all/@charleshosk/ethereum-classic-an-update", + "https://steemit.com/all/@calaber24p/countries-that-incentivize-and-deregulate-crypto-startups-will-reap-the-rewards-if-the-technology-goes-mainstream", + "https://steemit.com/all/@charlieshrem/an-intimate-evening-with-charlie-shrem-moving-forward-south-florida-usa", + "https://steemit.com/all/@officialfuzzy/guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-friday-s-hangout-refer-projects-for-rewards", + "https://steemit.com/all/@knozaki2015/steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-germany-9-9-2016-with-pictures", + "https://steemit.com/all/@dantheman/justification-for-104-week-power-down", + "https://steemit.com/all/@cass/sneak-preview-chainsquad-corporate-branding-logo-design", + "https://steemit.com/all/@aizensou/top-5-places-in-barcelona-featuring-maryfromsochi-as-author", + "https://steemit.com/all/@sirwinchester/steemit-meetup-in-berlin-germany", + "https://steemit.com/all/@clayop/the-typology-of-curation-what-kinds-of-curators-we-have-now", + "https://steemit.com/all/@kencode/ann-smartcoins-wallet-v1-0-6-released", + "https://steemit.com/all/@gavvet/a-free-lunch-with-edward-snowden", + "https://steemit.com/all/@clayop/how-much-do-whales-influences-on-rewards-introducing-new-statistics", + "https://steemit.com/all/@curie/project-curie-s-daily-curation-list-10-sept-11-sept-2016", + "https://steemit.com/all/@calaber24p/immigration-into-america-has-made-it-the-world-power-it-is-today", + "https://steemit.com/all/@b0y2k/steemit-sponsoring-the-compass-cup-team-event", + "https://steemit.com/all/@cryptogee/spotlight-issue-8-philosophy-music-and-science", + "https://steemit.com/all/@kencode/blockpay-moving-up-the-charts", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-24", + "https://steemit.com/all/@gavvet/hi-to-reinvent-yourself-featuring-sauravrungta-as-author", + "https://steemit.com/all/@ozchartart/usdeth-btc-poloniex-technical-analysis-sept-07-2016", + "https://steemit.com/all/@bridgetbunchy/celtic-heart-knot-pictorial", + "https://steemit.com/all/@roelandp/my-proper-introduceyourself-hello-i-m-roelandp", + "https://steemit.com/all/@ericvancewalton/know-me-an-original-poem", + "https://steemit.com/all/@cryptovpn/steemit-charity-run-no-1-doctors-without-borders", + "https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-1", + "https://steemit.com/all/@anwenbaumeister/my-cross-country-road-trip-greater-than-sf-greater-than-vegas-greater-than-boulder-greater-than-houston-greater-than-new-orleans", + "https://steemit.com/all/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-life-and-the-shrempresso", + "https://steemit.com/all/@enric/im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurrency-my-revolutionary-struggle-now-im-here", + "https://steemit.com/all/@dantheman/scalability-of-individual-responsibility-in-anarchy", + "https://steemit.com/all/@officialfuzzy/e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-testnet-jewels-ico-success-gridcoin-and-making-it-rain", + "https://steemit.com/all/@gavvet/a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-author", + "https://steemit.com/all/@bridgetbunchy/the-love-of-a-maker", + "https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-2", + "https://steemit.com/all/@dantheman/nonviolent-censorship-is-how-nonviolent-societies-create-nonviolent-government", + "https://steemit.com/all/@infovore/a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-moment-on-steemit-this-week-on-steemit-steemmag-steemit-s-weekend", + "https://steemit.com/all/@firepower/when-i-lost-sight-while-steeming", + "https://steemit.com/all/@ozchartart/usddoge-btc-poloniex-technical-analysis-sept-10-2016", + "https://steemit.com/all/@donkeypong/a-tribute-to-snail-mail", + "https://steemit.com/all/@charlieshrem/progressive-relaxation-by-charlie-shrem-mindfulness-meditation-in-prison-and-everyday-life", + "https://steemit.com/all/@curie/project-curie-s-daily-curation-list-9-sept-10-sept-2016", + "https://steemit.com/all/@furion/a-quick-look-at-null-and-the-profitability-of-promoted-posts", + "https://steemit.com/all/@sirwinchester/mr-gourmet-exploring-a-new-location", + "https://steemit.com/all/@larkenrose/supply-and-demand-steemit-style", + "https://steemit.com/all/@anwenbaumeister/a-peek-into-pre-columbian-worldviews-found-in-agricultural-practices-duality-complementarity-cyclicity-and-reciprocity", + "https://steemit.com/all/@corbettreport/only-9-11-truth-can-smash-the-9-11-lies", + "https://steemit.com/all/@sirwinchester/find-your-why-self-discovery-and-finding-your-purpose-in-life", + "https://steemit.com/stats/@masteryoda/weekly-payouts-leaderboards-september-week-1" ], - "author": "jrcornel", - "author_payout_value": "0.000 HBD", - "author_reputation": 81.0, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "# Pantera Capital is overweight Altcoins, but that is not a knock a Bitcoin...\n\nDan Morehead of Pantera Captial was speaking at the Unitize Virtual Event along with other heavyweights such as Tim Draper, Meltem Demirors, and Balaji Srinivasan among others...\n\nIt was a virtual meetup to discuss many of the latest happenings in the crypto world as well as their investing ideas moving forward.\n\nThe virtual event can be seen here btw:\n\nhttps://youtu.be/QgntfQ0gFo8\n\n(Source: https://www.youtube.com/)\n\n# The big takeaway?\n\nThe big takeaway for me was just how bullish Dan Morehead and Pantera Capital is on altcoins.\n\nPantera Capital has roughly $400 million assets under management and they are known as being one of the first crypto venture capital firm.\n\nThey are very bullish on bitcoin over the next two years, but they are even more bullish on altcoins over that same time period...\n\nSaying:\n\n> \u201cAnd it's our opinion that these altcoins and particularly smaller cap smart contract tokens are going to outperform Bitcoin over the next couple of years.\u201d\n\nBut that's not a knock on bitcoin in any way...\n\nIn fact they think bitcoin is going to do very well in it's own right:\n\n> \u201cWe think Bitcoin is going to go up a ton, but altcoins will go up even more. An example is Bitcoin is up about 30 percent year to date, which is amazing. Given that equities are down and real estate's down and almost all assets are down in price. But other things in the cryptocurrency space are up much more, Ethereum is up 80% and then other smaller projects like Augur (REP) and 0x (ZRX) are up 100% on the year.\u201d\n\n(Source: https://cointelegraph.com/news/crypto-og-thinks-altcoins-will-outperform-btc-in-the-near-future)\n\n# Bitcoin is going to up a lot, but altcoins are go up even more\n\nMorehead and his fund have done very well over the years they have been involved in the crypto space, though anyone who has just held since the time they bought (as long as it was before late 2017) is likely doing very well as well. \n\nHis stance on altcoins over bitcoin makes a lot of sense when you consider historical patterns.\n\nAfter/during every major bitcoin rally there have been a number of altcoins that have done even better.\n\nBitcoin went up 20x from late 2016 to end of 2017.\n\nHowever, there were some altcoins, like STEEM/HIVE for example that went up roughly 90x over that same time period...\n\nMorehead and Pantera Capital are simply betting on bitcoin and crypto to do what it has always done.\n\nHopefully they are right!\n\nStay informed my friends.\n\n-Doc\n\nPosted Using [LeoFinance](https://leofinance.io/@jrcornel/pantera-capital-says-bitcoin-is-going-to-go-up-a-ton-but-altcoins-are-going-to-go-up-even-more)", - "category": "hive-167922", - "children": 1, - "community": "hive-167922", - "community_title": "LeoFinance", - "created": "2020-07-07T19:06:42", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "leofinance/0.1", - "canonical_url": "https://leofinance.io/@jrcornel/pantera-capital-says-bitcoin-is-going-to-go-up-a-ton-but-altcoins-are-going-to-go-up-even-more", - "format": "markdown", - "image": [ - "https://img.youtube.com/vi/QgntfQ0gFo8/0.jpg" - ], - "links": [ - "https://youtu.be/QgntfQ0gFo8", - "https://www.youtube.com/", - "https://cointelegraph.com/news/crypto-og-thinks-altcoins-will-outperform-btc-in-the-near-future" - ], - "tags": [ - "bitcoin", - "crypto", - "altcoins", - "hive", - "neoxian", - "life", - "blog", - "news", - "investing", - "leofinance" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 49248180508911, - "payout": 19.198, - "payout_at": "2020-07-14T19:06:42", - "pending_payout_value": "19.198 HBD", - "percent_hbd": 10000, - "permlink": "pantera-capital-says-bitcoin-is-going-to-go-up-a-ton-but-altcoins-are-going-to-go-up-even-more", - "post_id": 86936841, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 140 - }, - "title": "Pantera Capital says Bitcoin is going to go up a ton, but Altcoins are going to go up even more", - "updated": "2020-07-07T19:06:42", - "url": "/hive-167922/@jrcornel/pantera-capital-says-bitcoin-is-going-to-go-up-a-ton-but-altcoins-are-going-to-go-up-even-more" - }, - { - "active_votes": [ - { - "rshares": "12317186291122", - "voter": "abit" - }, - { - "rshares": "134192917737", - "voter": "onealfa" - }, - { - "rshares": "905159855695", - "voter": "livingfree" - }, - { - "rshares": "9013359788", - "voter": "asim" - }, - { - "rshares": "2399480225818", - "voter": "deanliu" - }, - { - "rshares": "450371492255", - "voter": "lemooljiang" - }, - { - "rshares": "556755829747", - "voter": "ace108" - }, - { - "rshares": "165849999594", - "voter": "noopu" - }, - { - "rshares": "1351908919350", - "voter": "magicmonk" - }, - { - "rshares": "112583773", - "voter": "skysunny" - }, - { - "rshares": "9194246850502", - "voter": "glitterfart" - }, - { - "rshares": "1540787052466", - "voter": "nextgen622" - }, - { - "rshares": "13598838271665", - "voter": "sweetsssj" - }, - { - "rshares": "265181125475", - "voter": "daveks" - }, - { - "rshares": "1031128402020", - "voter": "created" - }, - { - "rshares": "149262017", - "voter": "timool" - }, - { - "rshares": "16599514353", - "voter": "lucknie" - }, - { - "rshares": "1668577085", - "voter": "dumping" - }, - { - "rshares": "3440445971", - "voter": "kalita27" - }, - { - "rshares": "16642078527", - "voter": "elizacheng" - }, - { - "rshares": "3314701493", - "voter": "world-travel-pro" - }, - { - "rshares": "5255476090", - "voter": "aleister" - }, - { - "rshares": "39291677444", - "voter": "spg" - }, - { - "rshares": "226011893632", - "voter": "nanosesame" - }, - { - "rshares": "2647372609", - "voter": "varunpinto" - }, - { - "rshares": "21283984706", - "voter": "theywillkillyou" - }, - { - "rshares": "60159598750", - "voter": "bearone" - }, - { - "rshares": "31285549595", - "voter": "teamaustralia" - }, - { - "rshares": "463917142662", - "voter": "offoodandart" - }, - { - "rshares": "1449255086920", - "voter": "livinguktaiwan" - }, - { - "rshares": "187867454974", - "voter": "benedict08" - }, - { - "rshares": "61098342859", - "voter": "captainquack22" - }, - { - "rshares": "275652255326", - "voter": "travelgirl" - }, - { - "rshares": "26797947862", - "voter": "dine77" - }, - { - "rshares": "886645460387", - "voter": "steemvote" - }, - { - "rshares": "4430412841", - "voter": "martibis" - }, - { - "rshares": "2014984410", - "voter": "stevenmosoes" - }, - { - "rshares": "165659134241", - "voter": "shogo" - }, - { - "rshares": "842161351", - "voter": "shihabieee" - }, - { - "rshares": "9198259247", - "voter": "kimzwarch" - }, - { - "rshares": "1780206362", - "voter": "bboyady" - }, - { - "rshares": "19474574912", - "voter": "artonmysleeve" - }, - { - "rshares": "197940974923", - "voter": "argon" - }, - { - "rshares": "1499927607", - "voter": "veenang" - }, - { - "rshares": "43970602697", - "voter": "davidke20" - }, - { - "rshares": "6420890834", - "voter": "xiaoshancun" - }, - { - "rshares": "171877981593", - "voter": "victory622" - }, - { - "rshares": "8750437269", - "voter": "metten" - }, - { - "rshares": "16629875324", - "voter": "joseph1956" - }, - { - "rshares": "973881035", - "voter": "cn-book" - }, - { - "rshares": "151602468054", - "voter": "steemflow" - }, - { - "rshares": "717642846", - "voter": "jacktan" - }, - { - "rshares": "97332532", - "voter": "cn-movie" - }, - { - "rshares": "251310184919", - "voter": "jrvacation" - }, - { - "rshares": "653949286259", - "voter": "citizensmith" - }, - { - "rshares": "2850658132", - "voter": "vivia" - }, - { - "rshares": "11963700967", - "voter": "aitommylr" - }, - { - "rshares": "754545203", - "voter": "korinkrafting" - }, - { - "rshares": "152970501540", - "voter": "mmmmkkkk311" - }, - { - "rshares": "79922260136", - "voter": "soufianechakrouf" - }, - { - "rshares": "14902463898", - "voter": "sinochip" - }, - { - "rshares": "11174142362", - "voter": "mermaidvampire" - }, - { - "rshares": "264692935", - "voter": "xiaoli" - }, - { - "rshares": "1865910848", - "voter": "jimcustodio" - }, - { - "rshares": "288823648", - "voter": "yumisee" - }, - { - "rshares": "838231341", - "voter": "joeliew" - }, - { - "rshares": "73751694", - "voter": "hkit98" - }, - { - "rshares": "61124847", - "voter": "elvinmas001" - }, - { - "rshares": "792198180", - "voter": "watersoo" - }, - { - "rshares": "957580170", - "voter": "vamos-amigo" - }, - { - "rshares": "2181748257", - "voter": "sweetkathy" - }, - { - "rshares": "93361335", - "voter": "iipoh06" - }, - { - "rshares": "175615418", - "voter": "annabellenoelle" - }, - { - "rshares": "146178567330", - "voter": "whack.science" - }, - { - "rshares": "6271689513", - "voter": "pizzapai" - }, - { - "rshares": "195307109114", - "voter": "cryptictruth" - }, - { - "rshares": "138867619", - "voter": "yethui" - }, - { - "rshares": "483102765", - "voter": "idkpdx" - }, - { - "rshares": "0", - "voter": "andrewnoel" - }, - { - "rshares": "2466852253", - "voter": "frassman" - }, - { - "rshares": "2596783956", - "voter": "onepercentbetter" - }, - { - "rshares": "387165698", - "voter": "stmdev" - }, - { - "rshares": "723332726", - "voter": "liewsc" - }, - { - "rshares": "1304689443874", - "voter": "quochuy" - }, - { - "rshares": "1181293756232", - "voter": "slobberchops" - }, - { - "rshares": "16210632633", - "voter": "eii" - }, - { - "rshares": "156083407767", - "voter": "steem-tube" - }, - { - "rshares": "2532853135", - "voter": "archisteem" - }, - { - "rshares": "10224426294", - "voter": "cn-malaysia" - }, - { - "rshares": "500329950", - "voter": "merlion" - }, - { - "rshares": "25707655425", - "voter": "dses" - }, - { - "rshares": "183243059162", - "voter": "digital.mine" - }, - { - "rshares": "29038558", - "voter": "jk6276" - }, - { - "rshares": "13302930", - "voter": "laissez-faire" - }, - { - "rshares": "4043000075", - "voter": "thisnewgirl" - }, - { - "rshares": "13642450661", - "voter": "sasaadrian" - }, - { - "rshares": "811217625", - "voter": "florino" - }, - { - "rshares": "0", - "voter": "foodblogresteem" - }, - { - "rshares": "0", - "voter": "dein-problem" - }, - { - "rshares": "68054740063", - "voter": "steem-on-2020" - }, - { - "rshares": "6835857478", - "voter": "steemfriends" - }, - { - "rshares": "667127621211", - "voter": "xxxxxxxxxx" - }, - { - "rshares": "2408341746", - "voter": "steemegg" - }, - { - "rshares": "1903180539", - "voter": "tagalong" - }, - { - "rshares": "339649047976", - "voter": "ctime" - }, - { - "rshares": "18911324273", - "voter": "fusion.lover" - }, - { - "rshares": "0", - "voter": "bobdavids" - }, - { - "rshares": "3326038543", - "voter": "a-secondchance" - }, - { - "rshares": "10081387233", - "voter": "chocolatelover" - }, - { - "rshares": "34178846", - "voter": "limka" - }, - { - "rshares": "3190451229", - "voter": "mia-cc" - }, - { - "rshares": "1845800376", - "voter": "cecilian" - }, - { - "rshares": "54489130", - "voter": "hungrybear" - }, - { - "rshares": "460168462690", - "voter": "ttg" - }, - { - "rshares": "62914164165", - "voter": "mfblack" - }, - { - "rshares": "64423820", - "voter": "coredump" - }, - { - "rshares": "9463920701", - "voter": "dailyke20" - }, - { - "rshares": "3061469771", - "voter": "omnivori" - }, - { - "rshares": "28265936670", - "voter": "plankton.token" - }, - { - "rshares": "1155070838", - "voter": "penpals" - }, - { - "rshares": "706673180573", - "voter": "spt-skillup" - }, - { - "rshares": "0", - "voter": "vxc.tra" - }, - { - "rshares": "0", - "voter": "tonimontana.neo" - }, - { - "rshares": "2872421341", - "voter": "dbfoodbank" - }, - { - "rshares": "5273014986", - "voter": "weddinggift" - }, - { - "rshares": "184623678", - "voter": "starnote" - }, - { - "rshares": "103541193", - "voter": "toni.ccc" - }, - { - "rshares": "0", - "voter": "toni.pal" - }, - { - "rshares": "1024344198", - "voter": "kgsupport" - }, - { - "rshares": "186128425", - "voter": "moochain.net" - }, - { - "rshares": "0", - "voter": "lemool" - }, - { - "rshares": "0", - "voter": "moochain.com" - }, - { - "rshares": "0", - "voter": "bettyliu" - }, - { - "rshares": "0", - "voter": "younggle" - }, - { - "rshares": "0", - "voter": "dinggle" - }, - { - "rshares": "0", - "voter": "moocer" - }, - { - "rshares": "0", - "voter": "steem-zh" - }, - { - "rshares": "0", - "voter": "coursechain" - }, - { - "rshares": "0", - "voter": "youngoole" - }, - { - "rshares": "0", - "voter": "imooc" - }, - { - "rshares": "587801090", - "voter": "drew0" - }, - { - "rshares": "55920348711", - "voter": "lovequeen" - }, - { - "rshares": "1959655799260", - "voter": "innerhive" - }, - { - "rshares": "1531779189893", - "voter": "hellohive" - }, - { - "rshares": "19700862164", - "voter": "hiveyoda" - }, - { - "rshares": "0", - "voter": "wikicoin" - }, - { - "rshares": "0", - "voter": "starchain" - }, - { - "rshares": "0", - "voter": "steemzh" - }, - { - "rshares": "0", - "voter": "openbazzar" - }, - { - "rshares": "0", - "voter": "steemipfs" - }, - { - "rshares": "0", - "voter": "hive-224466" - }, - { - "rshares": "4310541684", - "voter": "cieliss" - }, - { - "rshares": "0", - "voter": "curation.bot" - }, - { - "rshares": "774986504014", - "voter": "jywahaha" - }, - { - "rshares": "0", - "voter": "mutabor78" - }, - { - "rshares": "1142680817", - "voter": "hivecur2" - } + "tags": [ + "stats", + "steemstats", + "steem-stats", + "steemit" ], - "author": "travelgirl", - "author_payout_value": "0.000 HBD", - "author_reputation": 77.62, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "Hi Everyone,\n\nWinter here in Sydney can be pretty bad especially at night. I normally like to have a small supper after the kids go to sleep when I either go online or watch tv. I usually have some cup noodles, cuppa soups or left over dinner handy so I can heat it up as I do want something warm so late at night. I found some noodle soup from Daiso which thought I would give it a try because it\u2019s a new product plus imported from Japan.\n\n> \u6089\u5c3c\u7684\u51ac\u5929\u975e\u5e38\u51b7\u5c24\u5176\u662f\u665a\u4e0a\u5927\u591a\u6642\u9593\u90fd\u662f\u958b\u8457\u6696\u7210. \u5c0f\u670b\u53cb\u665a\u4e0a\u7761\u4e86\u5f97\u6642\u5019\uff0c\u6211\u5c31\u6703\u559c\u6b61\u5403\u4e00\u9ede\u5bb5\u591c\uff0c\u6162\u6162\u4e0a\u7db2\u6216\u770b\u96fb\u8996. \u5e73\u5e38\u6703\u5403\u676f\u9eb5\uff0c\u5373\u98df\u6e6f\u6216\u5269\u4e0b\u7684\u98ef\u9001\uff0c\u4e00\u5b9a\u662f\u6696\u7684\u6771\u897f. \u6700\u8fd1\u5728\u65e5\u672c\u7684 Daiso \u627e\u5230\u4e00\u5305\u5373\u98df\u6e6f\u9762\u6240\u4ee5\u5c31\u8cb7\u6703\u52a0\u8a66\u8a66.\n\n![IMG_4919 1.JPG](https://files.peakd.com/file/peakd-hive/travelgirl/U0PmRvh6-IMG_4919201.JPG)\n\n\nAt $4.80 it\u2019s not cheap as a cuppa soup but on the packet it does say it\u2019s bowl size so I\u2019ll hoping it\u2019s a bigger serve than what we normally get from the supermarket. Very easy to make, put a noddle pack and soup packet add water and stir.\n\n> \u9019\u5305\u5373\u98df\u6e6f\u9762\u8981 $4.80 \u6709 3 \u5305. \u5305\u88dd\u5370\u8457\u4efd\u91cf\u662f\u4e00\u5c0f\u7897\u6240\u4ee5\u90fd\u5e0c\u671b\u5403\u5b8c\u53ef\u4ee5\u98fd\u4e00\u9ede. \u9019\u985e\u5373\u98df\u6e6f\u9762\u5f88\u5bb9\u6613\u505a\uff0c\u653e\u9762\u548c\u6e6f\u5305\u9032\u676f\u6216\u7897\u88e1\u52a0\u6c34\u5c31\u53ef\u4ee5\u5403\n\n![IMG_3195.JPG](https://files.peakd.com/file/peakd-hive/travelgirl/4jDL9KvQ-IMG_3195.JPG)\n\n![IMG_6976.JPG](https://files.peakd.com/file/peakd-hive/travelgirl/DwKCsm61-IMG_6976.JPG)\n\nI decided to use a bigger cup rather than a bowl for easy consumption on the couch. The noodle were like vermicelli and I left it in the hot soup for 3 minutes before eating it. Taste wise, it was delicious. The flavour I bought was tonkotsu and it really tasted like the ramen stock. The noodles was substantial for a quick supper meal and letting the noodles sit on the hot water for a few minutes did it\u2019s trick and let the soup absorb the yummy stock. I do think $4.80 for 3 soups is pretty expensive as I could get a can of Campbell soup for the same price with more substance and volume. Will I buy it again? Yes I would mainly I love that soup base and it is so quick and easy to make. \n\n> \u6211\u672c\u4f86\u62ff\u4e00\u500b\u5c0f\u7897\u4f46\u60f3\u5728\u6c99\u767c\u5403\u6240\u4ee5\u5c31\u62ff\u500b\u5927\u676f\u5b50\u4f86\u505a\u9019\u500b\u9762. \u9762\u689d\u653e\u5728\u6e6f\u88e13\u5206\u9418\u5c31\u53ef\u4ee5\u5403\uff0c\u9762\u662f\u50cf\u7c73\u7c89\u4e00\u6a23. \u5473\u9053\u771f\u662f\u975e\u5e38\u597d\u5403. \u6211\u8cb7\u7684\u662f\u8c6c\u9aa8\u6e6f\u5473\uff0c\u771f\u662f\u5f88\u50cf\u62c9\u9eb5\u7684\u5473\u9053. \u9762\u9905\u4efd\u91cf\u597d\uff0c\u5403\u5b8c\u975e\u5e38\u6eff\u8db3. \u96d6\u7136\u597d\u5403\u4f46\u89ba\u5f97 $4.80 \u6709\u9ede\u8cb4\u56e0\u70ba\u9019\u500b\u50f9\u9322\u53ef\u4ee5\u53bb\u8d85\u5e02\u8cb7\u4e00\u7f50\u91d1\u5bf6\u7f50\u982d\u6e6f\u90fd\u662f\u540c\u4e00\u500b\u50f9\u9322\u800c\u4e14\u4efd\u91cf\u6703\u591a\u597d\u591a. \u6211\u6703\u5728\u8cb7\u9019\u500b\u6e6f\u9762\u55ce\uff1f \u6211\u60f3\u61c9\u8a72\u6703\u56e0\u70ba\u9019\u662f\u5f88\u65b9\u4fbf\u800c\u53bb\u597d\u5403\uff0c\u8cb4\u4e00\u9ede\u90fd\u7121\u6240\u8b02.\n\n![IMG_6263 2 1.JPG](https://files.peakd.com/file/peakd-hive/travelgirl/7vg1f4CH-IMG_6263202201.JPG)\n\n![IMG_9401 2.JPG](https://files.peakd.com/file/peakd-hive/travelgirl/PhPoVKOA-IMG_9401202.JPG)\n\n\n
![happywalk02.gif](https://cdn.steemitimages.com/DQmTA83J2vJLoed895woPKqy2P1Vmyk5r6q5iyE15nyb8H2/happywalk02.gif)
\n\n
animation by @catwomanteresa
\n\n![Travelgirl pic.jpeg](https://files.peakd.com/file/peakd-hive/travelgirl/wvWpUyw1-Travelgirl20pic.jpeg)\n\n\n\nhttps://steemitimages.com/0x0/https://cdn.steemitimages.com/DQmV63eqqyggh6LJKKxn33jKWfFkz7gCufpbc13iLs6MwUq/Footer_travelgirl.png\n\n\n\n---\nThanks for reading. If you like my post, please follow, comment and upvote me. There will be more exciting posts & destinations to come.\n\nAll photos & videos are taken by me & co in all my blogs/stories unless quoted. \n\n\n", - "category": "hive-105017", - "children": 2, - "community": "hive-105017", - "community_title": "HIVE CN \u4e2d\u6587\u793e\u533a", - "created": "2020-07-07T12:37:24", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://files.peakd.com/file/peakd-hive/travelgirl/U0PmRvh6-IMG_4919201.JPG", - "https://files.peakd.com/file/peakd-hive/travelgirl/4jDL9KvQ-IMG_3195.JPG", - "https://files.peakd.com/file/peakd-hive/travelgirl/DwKCsm61-IMG_6976.JPG", - "https://files.peakd.com/file/peakd-hive/travelgirl/7vg1f4CH-IMG_6263202201.JPG", - "https://files.peakd.com/file/peakd-hive/travelgirl/PhPoVKOA-IMG_9401202.JPG", - "https://cdn.steemitimages.com/DQmTA83J2vJLoed895woPKqy2P1Vmyk5r6q5iyE15nyb8H2/happywalk02.gif", - "https://files.peakd.com/file/peakd-hive/travelgirl/wvWpUyw1-Travelgirl20pic.jpeg", - "https://steemitimages.com/0x0/https://cdn.steemitimages.com/DQmV63eqqyggh6LJKKxn33jKWfFkz7gCufpbc13iLs6MwUq/Footer_travelgirl.png" - ], - "links": [ - "/@catwomanteresa" - ], - "tags": [ - "food", - "cn", - "review", - "japanese", - "palnet", - "creativecoin", - "neoxian", - "lifestyle" - ], - "users": [ - "catwomanteresa" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 59696964465056, - "payout": 23.552, - "payout_at": "2020-07-14T12:37:24", - "pending_payout_value": "23.552 HBD", - "percent_hbd": 10000, - "permlink": "travelgirl-s-harusame-noodle-soup-review-or-travelgirl", - "post_id": 86931818, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 131 - }, - "title": "Travelgirl\u2019s Harusame Noodle Soup Review | Travelgirl \u8a66\u98df - \u535a\u591a\u5373\u98df\u6e6f\u9762", - "updated": "2020-07-07T12:37:24", - "url": "/hive-105017/@travelgirl/travelgirl-s-harusame-noodle-soup-review-or-travelgirl" + "users": [ + "masteryoda" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66209054025322, + "payout": 255.998, + "payout_at": "2016-09-16T10:35:22", + "pending_payout_value": "255.998 HBD", + "percent_hbd": 10000, + "permlink": "weekly-payouts-leaderboards-september-week-2", + "post_id": 956546, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 291 + }, + "title": "Weekly payouts leaderboards - September week 2", + "updated": "2016-09-15T10:10:06", + "url": "/stats/@masteryoda/weekly-payouts-leaderboards-september-week-2" } ] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_trending_topics.pat.json b/hivemind/tavern/bridge_api_patterns/get_trending_topics.pat.json index 40f56b34..25ddcf83 100644 --- a/hivemind/tavern/bridge_api_patterns/get_trending_topics.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_trending_topics.pat.json @@ -1,30 +1,30 @@ [ - [ - "photography", - "#photography" - ], - [ - "travel", - "#travel" - ], - [ - "gaming", - "#gaming" - ], - [ - "crypto", - "#crypto" - ], - [ - "newsteem", - "#newsteem" - ], - [ - "music", - "#music" - ], - [ - "food", - "#food" - ] + [ + "photography", + "#photography" + ], + [ + "travel", + "#travel" + ], + [ + "gaming", + "#gaming" + ], + [ + "crypto", + "#crypto" + ], + [ + "newsteem", + "#newsteem" + ], + [ + "music", + "#music" + ], + [ + "food", + "#food" + ] ] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/list_communities.pat.json b/hivemind/tavern/bridge_api_patterns/list_communities.pat.json index 3536963e..f19abffc 100644 --- a/hivemind/tavern/bridge_api_patterns/list_communities.pat.json +++ b/hivemind/tavern/bridge_api_patterns/list_communities.pat.json @@ -1,21 +1,22 @@ [ { - "about": "To highlight true Gems of Hive community with User Retention as primary objective.", - "admins": [ - "bluemist" - ], - "avatar_url": "", - "context": {}, - "created_at": "2020-02-26 11:33:33", - "id": 1369030, - "is_nsfw": false, - "lang": "en", - "name": "hive-148441", - "num_authors": 1706, - "num_pending": 11787, - "subscribers": 5513, - "sum_pending": 13549, - "title": "GEMS", - "type_id": 1 + "about": "To highlight true Gems of Hive community with User Retention as primary objective.", + "admins": [ + "bluemist" + ], + "avatar_url": "", + "context": {}, + "created_at": "2020-02-26 11:33:33", + "id": 1369030, + "is_nsfw": false, + "lang": "en", + "name": "hive-148441", + "num_authors": 1706, + "num_pending": 11787, + "subskrajbers": 5513, + "sum_pending": 13549, + "title": "GEMS", + "type_id": 1, + "seriously": "it does not detect differences" } ] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/post_notifications.pat.json b/hivemind/tavern/bridge_api_patterns/post_notifications.pat.json index 0637a088..4e5c6cf6 100644 --- a/hivemind/tavern/bridge_api_patterns/post_notifications.pat.json +++ b/hivemind/tavern/bridge_api_patterns/post_notifications.pat.json @@ -1 +1,10 @@ -[] \ No newline at end of file +[ + { + "date": "2016-03-30T19:52:30", + "id": 1, + "msg": "@admin replied to your post", + "score": 20, + "type": "reply", + "url": "@admin/firstpost" + } +] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/unread_notifications.pat.json b/hivemind/tavern/bridge_api_patterns/unread_notifications.pat.json index 9e3a3639..086973d6 100644 --- a/hivemind/tavern/bridge_api_patterns/unread_notifications.pat.json +++ b/hivemind/tavern/bridge_api_patterns/unread_notifications.pat.json @@ -1,4 +1,4 @@ { "lastread": "1970-01-01 00:00:00", - "unread": 0 + "unread": 375 } \ No newline at end of file diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index 23534eaa..7a49fbe1 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -33,7 +33,7 @@ marks: - patterntest - failing - - xfail + - xfail # plenty of differences, most are formatting problems (some extra elements, some missing, some different type) includes: - !include common.yaml @@ -64,7 +64,7 @@ marks: - patterntest - failing - - xfail + - xfail # plenty of differences, most are formatting problems (some extra elements, some missing, some different type) includes: - !include common.yaml @@ -95,7 +95,7 @@ marks: - patterntest - failing - - xfail + - xfail # plenty of differences, most are formatting problems (some extra elements, some missing, some different type) includes: - !include common.yaml @@ -126,7 +126,7 @@ marks: - patterntest - failing - - xfail + - xfail # hard to say - too many differences (fix those in get_post first, might help here) includes: - !include common.yaml @@ -230,7 +230,7 @@ jsonrpc: "2.0" id: 1 method: "bridge.post_notifications" - params: {"author":"steemit", "permlink":"firstpost"} + params: {"author":"admin", "permlink":"firstpost", "min_score":15} response: status_code: 200 verify_response_with: @@ -259,7 +259,7 @@ jsonrpc: "2.0" id: 1 method: "bridge.account_notifications" - params: {"account":"steemit","limit":100} + params: {"account":"steemit", "min_score": 15, "limit":20} response: status_code: 200 verify_response_with: @@ -273,6 +273,8 @@ marks: - patterntest + - failing + - xfail # the underlying mechanism seems to be nonfunctional includes: - !include common.yaml @@ -288,7 +290,7 @@ jsonrpc: "2.0" id: 1 method: "bridge.unread_notifications" - params: {"account":"steemit"} + params: {"account":"steemit", "min_score":15} response: status_code: 200 verify_response_with: @@ -302,8 +304,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -334,7 +334,7 @@ marks: - patterntest - failing - - xfail + - xfail # test should probably be removed from 5mln set since it will return error when incorrect community id is passed and communities did not exist then includes: - !include common.yaml @@ -363,7 +363,7 @@ test_name: Hivemind bridge_api.list_communities patterns test marks: - - patterntest + - patterntest # no nonempty result possible for 5mln set (ABW: something fishy here - as long as pattern is JSON it doesn't care about the content) includes: - !include common.yaml @@ -392,7 +392,7 @@ test_name: Hivemind bridge_api.list_community_roles patterns test marks: - - patterntest + - patterntest # no nonempty result possible for 5mln set includes: - !include common.yaml @@ -421,7 +421,7 @@ test_name: Hivemind bridge_api.list_subscribers patterns test marks: - - patterntest + - patterntest # no nonempty result possible for 5mln set includes: - !include common.yaml @@ -450,7 +450,7 @@ test_name: Hivemind bridge_api.list_all_subscriptions patterns test marks: - - patterntest + - patterntest # no nonempty result possible for 5mln set includes: - !include common.yaml -- GitLab From dfe41f51d34a2dcf83daef0a309871584a2f7b2a Mon Sep 17 00:00:00 2001 From: Dariusz Kedzierski Date: Tue, 11 Aug 2020 11:06:41 +0200 Subject: [PATCH 07/49] jsondiff changed to deepdiff - jsondiff has a bug/feature: if you compare not empty json object with empty json object it will show no difference. Comparing empty with not empty will show difference - jsondiff its not actively maintained (last commit 11 months ago) --- .../test_bridge_api_patterns.tavern.yaml | 2 ++ .../test_condenser_api_patterns.tavern.yaml | 24 +++++++++++++++++++ .../test_database_api_patterns.tavern.yaml | 4 +++- .../test_follow_api_patterns.tavern.yaml | 2 ++ .../tavern/test_tags_api_patterns.tavern.yaml | 16 +++++++++++++ hivemind/tavern/validate_response.py | 6 ++--- 6 files changed, 50 insertions(+), 4 deletions(-) diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index 23534eaa..662efdf3 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -364,6 +364,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index 01dcd291..3d9d14bb 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -90,6 +90,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -119,6 +121,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -148,6 +152,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -270,6 +276,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -299,6 +307,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -388,6 +398,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -417,6 +429,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -446,6 +460,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -475,6 +491,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -504,6 +522,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -533,6 +553,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -649,6 +671,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml diff --git a/hivemind/tavern/test_database_api_patterns.tavern.yaml b/hivemind/tavern/test_database_api_patterns.tavern.yaml index 9b2fae0b..f9c7a7ca 100644 --- a/hivemind/tavern/test_database_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_database_api_patterns.tavern.yaml @@ -28,6 +28,7 @@ extra_kwargs: method: "list_comments" directory: "database_api_patterns" + ignore_tags: ["id"] --- test_name: Hivemind database_api.find_comments patterns test @@ -58,4 +59,5 @@ function: validate_response:compare_response_with_pattern extra_kwargs: method: "find_comments" - directory: "database_api_patterns" \ No newline at end of file + directory: "database_api_patterns" + ignore_tags: ["id", "post_id"] \ No newline at end of file diff --git a/hivemind/tavern/test_follow_api_patterns.tavern.yaml b/hivemind/tavern/test_follow_api_patterns.tavern.yaml index 82eb2095..fc42a27f 100644 --- a/hivemind/tavern/test_follow_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_follow_api_patterns.tavern.yaml @@ -119,6 +119,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml diff --git a/hivemind/tavern/test_tags_api_patterns.tavern.yaml b/hivemind/tavern/test_tags_api_patterns.tavern.yaml index cb4571b1..3c025a7c 100644 --- a/hivemind/tavern/test_tags_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_tags_api_patterns.tavern.yaml @@ -3,6 +3,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -32,6 +34,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -123,6 +127,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -152,6 +158,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -212,6 +220,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -241,6 +251,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -270,6 +282,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -299,6 +313,8 @@ marks: - patterntest + - failing + - xfail includes: - !include common.yaml diff --git a/hivemind/tavern/validate_response.py b/hivemind/tavern/validate_response.py index ccae0f67..436bf838 100644 --- a/hivemind/tavern/validate_response.py +++ b/hivemind/tavern/validate_response.py @@ -8,7 +8,7 @@ def json_pretty_string(json_obj): def save_diff(name, diff): """ Save diff to a file """ with open(name, 'w') as f: - f.write(str(diff)) + f.write(json_pretty_string(diff)) f.write("\n") def save_response(file_name, response_json): @@ -64,11 +64,11 @@ def compare_response_with_pattern(response, method=None, directory=None, ignore_ save_no_response(response_fname, msg) raise PatternDiffException(msg) - import jsondiff + import deepdiff pattern = load_pattern(directory + "/" + method + PATTERN_FILE_EXT) if ignore_tags is not None: pattern = remove_tag(pattern, ignore_tags) - pattern_resp_diff = jsondiff.diff(pattern, result) + pattern_resp_diff = deepdiff.DeepDiff(pattern, result) if pattern_resp_diff: save_diff(fname, pattern_resp_diff) save_response(response_fname, result) -- GitLab From 99f16183d68e48e21d5eac783c8441e068c877e3 Mon Sep 17 00:00:00 2001 From: Pawel Maniora Date: Tue, 11 Aug 2020 11:48:29 +0200 Subject: [PATCH 08/49] condenser API new tests --- .../get_blog_limit_100.pat.json | 645 ++++ .../get_blog_no_results.pat.json | 1 + ...get_comment_discussions_by_payout.pat.json | 42 +- ...t_discussions_by_payout_limit_100.pat.json | 3403 +++++++++++++++++ ..._discussions_by_payout_no_results.pat.json | 1 + ..._by_author_before_date_no_results.pat.json | 1 + .../get_following_last.pat.json | 9 + ...st_discussions_by_payout_limit_20.pat.json | 1836 +++++++++ ..._discussions_by_payout_no_results.pat.json | 1 + ..._replies_by_last_update_limit_100.pat.json | 1574 ++++++++ ...replies_by_last_update_no_results.pat.json | 1 + .../test_condenser_api_patterns.tavern.yaml | 530 ++- 12 files changed, 8021 insertions(+), 23 deletions(-) create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog_limit_100.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog_no_results.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_no_results.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_following_last.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_no_results.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_no_results.pat.json diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_limit_100.pat.json b/hivemind/tavern/condenser_api_patterns/get_blog_limit_100.pat.json new file mode 100644 index 00000000..8c58e68f --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog_limit_100.pat.json @@ -0,0 +1,645 @@ +[ + { + "blog": "steemit", + "entry_id": 1, + "comment": { + "post_id": 1, + "author": "steemit", + "permlink": "firstpost", + "category": "meta", + "title": "Welcome to Steem!", + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "json_metadata": "{}", + "created": "2016-03-30T18:30:18", + "last_update": "2016-03-30T18:30:18", + "depth": 0, + "children": 36, + "net_rshares": 830053779138, + "last_payout": "2016-08-24T19:59:42", + "cashout_time": "1969-12-31T23:59:59", + "total_payout_value": "0.942 HBD", + "curator_payout_value": "0.756 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 224, + "active_votes": [ + { + "voter": "dantheman", + "rshares": "375241", + "percent": "100", + "reputation": 0 + }, + { + "voter": "mr11acdee", + "rshares": "886132", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemit78", + "rshares": "5100", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "anonymous", + "rshares": "1259167", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "hello", + "rshares": "318519", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "world", + "rshares": "153384", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ned", + "rshares": "-936400", + "percent": "-100", + "reputation": 0 + }, + { + "voter": "fufubar1", + "rshares": "59412", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "anonymous1", + "rshares": "14997", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "red", + "rshares": "1441", + "percent": "100", + "reputation": 0 + }, + { + "voter": "liondani", + "rshares": "551390835500", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "roadscape", + "rshares": "82748", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "xeroc", + "rshares": "10772", + "percent": "100", + "reputation": 0 + }, + { + "voter": "markopaasila", + "rshares": "7685088000", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tshering-tamang", + "rshares": "454510724", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "romangelsi", + "rshares": "681946946", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dedmatvey", + "rshares": "504895891", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "joelinux", + "rshares": "498863058", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "piranhax", + "rshares": "9590417", + "percent": "0", + "reputation": 0 + }, + { + "voter": "ned-reddit-login", + "rshares": "473258270", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "fernando-sanz", + "rshares": "0", + "percent": "3600", + "reputation": 0 + }, + { + "voter": "gekko", + "rshares": "425903066", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gilang-ramadhan", + "rshares": "381805870", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kamvreto", + "rshares": "392459059", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "acidyo", + "rshares": "422984262", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tosch", + "rshares": "47179379651", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "klye", + "rshares": "7831667988", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "coar", + "rshares": "1019950749", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "murh", + "rshares": "1746058458", + "percent": "1509", + "reputation": 0 + }, + { + "voter": "drinkzya", + "rshares": "22639073725", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "hien-tran", + "rshares": "0", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "patrick-g", + "rshares": "742566481", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ben99", + "rshares": "40624969", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sunshinecrypto", + "rshares": "1742755097", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kingtylervvs", + "rshares": "108855472", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "marinabogumil", + "rshares": "485112237", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "decrypt", + "rshares": "917398502", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "senseiteekay", + "rshares": "5067187498", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "r33drum", + "rshares": "5154897955", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cryptosi", + "rshares": "5033902237", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "condra", + "rshares": "1037079223", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jearson", + "rshares": "233032838", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tritium", + "rshares": "240809500", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "allmonitors", + "rshares": "123321995", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "artjedi", + "rshares": "226074637", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "anduweb", + "rshares": "931542394", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "inertia", + "rshares": "2292983350", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "maximkichev", + "rshares": "128561059", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "a9inchcock", + "rshares": "183438273", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "desmonid", + "rshares": "266262926", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "madhatting", + "rshares": "71498008", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ubg", + "rshares": "23726644841", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "royaltiffany", + "rshares": "3741408303", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gribgo", + "rshares": "131577259", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "deanliu", + "rshares": "12371398765", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "orm", + "rshares": "28907874049", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "qonq99", + "rshares": "528988007", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rd7783", + "rshares": "129537329", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "slava", + "rshares": "615020728", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "flyboyzombie", + "rshares": "0", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sictransitgloria", + "rshares": "100102503", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "curator", + "rshares": "95219365", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dubovoy", + "rshares": "232295871", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "solos", + "rshares": "0", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "creatorgalaxy", + "rshares": "96945805", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "trigonice29", + "rshares": "99813231", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "blysards", + "rshares": "0", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "uwe69", + "rshares": "3721016208", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nigmat", + "rshares": "1279854", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "magicmonk", + "rshares": "13974353753", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "satoshifpv", + "rshares": "4968585456", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "naturalista", + "rshares": "1660613178", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "metrox", + "rshares": "10847083143", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bestmalik", + "rshares": "18340928", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kolyan31", + "rshares": "59563315", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "romancs", + "rshares": "710989138", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "luke490", + "rshares": "59366614", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bro66", + "rshares": "58762473", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "future24", + "rshares": "201822591", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mythras", + "rshares": "58623688", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "imarealboy777", + "rshares": "56536509", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "matrixdweller", + "rshares": "0", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "smartguylabcoat", + "rshares": "48299362", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mabiturm", + "rshares": "59157099", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "captainamerica", + "rshares": "48283979", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "edbriv", + "rshares": "54761612", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rittr", + "rshares": "865125771", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jelloducky", + "rshares": "92614447", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tcstix", + "rshares": "52740989", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "friedwater", + "rshares": "49467477", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "denisdiaz", + "rshares": "57366185", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "loganarchy", + "rshares": "132070449", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "love-spirit-nerd", + "rshares": "48811442", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dikanevn", + "rshares": "51549585", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "zelious", + "rshares": "54017869", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "freebornangel", + "rshares": "50129944", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "f1111111", + "rshares": "53196086", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "anomaly", + "rshares": "0", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jack8831", + "rshares": "52394017140", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "buckland", + "rshares": "0", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "goldmatters", + "rshares": "0", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "meta", + "url": "/meta/@steemit/firstpost", + "root_title": "Welcome to Steem!", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_hbd": 10000 + }, + "reblogged_on": "1970-01-01T00:00:00" + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_no_results.pat.json b/hivemind/tavern/condenser_api_patterns/get_blog_no_results.pat.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog_no_results.pat.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json index cc8ba597..4cdd8791 100644 --- a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json @@ -1,33 +1,33 @@ [ { - "active_votes": [], + "post_id": 703225, "author": "lukmarcus", - "author_reputation": 0, - "beneficiaries": [], - "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", - "body_length": 122, - "cashout_time": "1970-01-01T00:00:00", + "permlink": "re-simgregg-nasienie-wolnosci-20160822t074530822z", "category": "polska", - "children": 0, + "title": "", + "body": "Ty jesteś autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", + "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https:\\/\\/web.facebook.com\\/notes\\/szymon-szewczyk-blog\\/nasienie-wolno%C5%9Bci\\/1062629210473658\"]}", "created": "2016-08-22T07:44:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658\"]}", - "last_payout": "1969-12-31T23:59:59", "last_update": "2016-08-22T07:44:48", - "max_accepted_payout": "1000000.000 HBD", + "depth": 1, + "children": 0, "net_rshares": 0, - "parent_author": "simgregg", - "parent_permlink": "nasienie-wolnosci", + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-18T21:19:45", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-simgregg-nasienie-wolnosci-20160822t074530822z", - "post_id": 931240, "promoted": "0.000 HBD", "replies": [], - "root_title": "Nasienie Wolno\u015bci", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/polska/@simgregg/nasienie-wolnosci#@lukmarcus/re-simgregg-nasienie-wolnosci-20160822t074530822z" + "body_length": 122, + "active_votes": [], + "author_reputation": 0, + "parent_author": "simgregg", + "parent_permlink": "nasienie-wolnosci", + "url": "/polska/@simgregg/nasienie-wolnosci#@lukmarcus/re-simgregg-nasienie-wolnosci-20160822t074530822z", + "root_title": "Nasienie Wolności", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 } ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.pat.json new file mode 100644 index 00000000..c1edea78 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.pat.json @@ -0,0 +1,3403 @@ +[ + { + "post_id": 635692, + "author": "royaltiffany", + "permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", + "category": "test", + "title": "", + "body": "Fail ? No spam bot army...", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:06:00", + "last_update": "2016-08-17T02:06:00", + "depth": 1, + "children": 9, + "net_rshares": 211900981073, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.132 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 26, + "active_votes": [ + { + "voter": "trogdor", + "rshares": "211439242838", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "highnye", + "rshares": "51307830", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lovetosteemit", + "rshares": "54126702", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemithelper1", + "rshares": "50221956", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemorama", + "rshares": "306081747", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "trogdor", + "parent_permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 929861, + "author": "bige37", + "permlink": "re-royaltiffany-test-20160912t114919145z", + "category": "test", + "title": "", + "body": "This is like saying don't push the red button....dang it!!!!\n\nhttp://i.imgur.com/OG66bhF.jpg", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/i.imgur.com\\/OG66bhF.jpg\"]}", + "created": "2016-09-12T11:49:18", + "last_update": "2016-09-12T13:26:51", + "depth": 1, + "children": 2, + "net_rshares": 127840289791, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T01:42:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.029 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 92, + "active_votes": [ + { + "voter": "demotruk", + "rshares": "127840289791", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "royaltiffany", + "parent_permlink": "test", + "url": "/test/@royaltiffany/test#@bige37/re-royaltiffany-test-20160912t114919145z", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 944530, + "author": "bitcoiner", + "permlink": "re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z", + "category": "test", + "title": "", + "body": "It would seem only Steemit uses the caching server img1.steemit.com, because, well, it's theirs.. Steemd just shows the post as it is in the blockchain, which is the unaltered image link.\nThe thing is, is that all the posts are on a public decentralized blockchain, so it's hard to track who has accessed it. You would have to make it a private blockchain, and count all requests to retrieve a post. Even if this were the case, you would have no way to track any copies of the data made after the fact.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T22:37:39", + "last_update": "2016-09-13T22:37:39", + "depth": 6, + "children": 0, + "net_rshares": 111795622957, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.022 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 502, + "active_votes": [ + { + "voter": "derekareith", + "rshares": "111795622957", + "percent": "7500", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", + "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 960637, + "author": "cheetah", + "permlink": "re-test-20160915t190252", + "category": "test", + "title": "", + "body": "Warning! This user is on my black list, likely as a known plagiarist, spammer or ID thief. Please be cautious with this post!\nTo get off this list, please chat with us in the #steemitabuse-appeals channel in [steemit.chat](http://steemit.chat).", + "json_metadata": "{}", + "created": "2016-09-15T19:02:51", + "last_update": "2016-09-15T19:02:51", + "depth": 1, + "children": 0, + "net_rshares": 66832072343, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T19:09:49", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.014 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 244, + "active_votes": [ + { + "voter": "cheetah", + "rshares": "66397090281", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cheetah22", + "rshares": "101333267", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cheetah23", + "rshares": "188781535", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cheetah24", + "rshares": "144867260", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "machinelearning", + "parent_permlink": "test", + "url": "/test/@machinelearning/test#@cheetah/re-test-20160915t190252", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 959003, + "author": "achim86", + "permlink": "re-oaldamster-re-achim86-test-20160915t155303746z", + "category": "test", + "title": "", + "body": "yeahhhh! https://steemit.com/steemit/@achim86/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung", + "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@achim86\\/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung\"]}", + "created": "2016-09-15T15:53:06", + "last_update": "2016-09-15T17:05:36", + "depth": 2, + "children": 0, + "net_rshares": 61272757397, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T14:39:17", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.013 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 125, + "active_votes": [ + { + "voter": "oaldamster", + "rshares": "57522418578", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "achim86", + "rshares": "3750338819", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "oaldamster", + "parent_permlink": "re-achim86-test-20160915t070512394z", + "url": "/test/@achim86/test#@achim86/re-oaldamster-re-achim86-test-20160915t155303746z", + "root_title": "test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 857734, + "author": "alktoni", + "permlink": "re-str11ngfello-test2-20160904t233043502z", + "category": "test", + "title": "", + "body": "test if testing is a test", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-04T23:30:45", + "last_update": "2016-09-04T23:30:45", + "depth": 1, + "children": 0, + "net_rshares": 19450828249, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-05T23:22:30", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.004 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 25, + "active_votes": [ + { + "voter": "str11ngfello", + "rshares": "19450828249", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "str11ngfello", + "parent_permlink": "test2", + "url": "/test/@str11ngfello/test2#@alktoni/re-str11ngfello-test2-20160904t233043502z", + "root_title": "test2", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 921255, + "author": "dickbutt", + "permlink": "re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/j6i3qa58f/dickbutt.jpg", + "json_metadata": "{}", + "created": "2016-09-11T12:22:21", + "last_update": "2016-09-11T12:22:21", + "depth": 4, + "children": 0, + "net_rshares": 12292537315, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.002 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 45, + "active_votes": [ + { + "voter": "r4fken", + "rshares": "12292537315", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "pompe72", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 870030, + "author": "brendio", + "permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", + "category": "test", + "title": "", + "body": "Does dickbutt come whenever he is called? #test", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-06T06:19:18", + "last_update": "2016-09-06T06:19:18", + "depth": 1, + "children": 4, + "net_rshares": 5205390768, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.001 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 47, + "active_votes": [ + { + "voter": "brendio", + "rshares": "5205390768", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "testing-dickbutt", + "url": "/test/@dickbutt/testing-dickbutt#@brendio/re-dickbutt-testing-dickbutt-20160906t061918048z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 944446, + "author": "derekareith", + "permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", + "category": "test", + "title": "", + "body": "Just saw that the counter works on Steemd:\nhttps://steemd.com/test/@derekareith/page-view-counter-test-post\nI thought Steemd just redirects the same cached images, but I guess its just steemit. I'm wondering if there's a way to make it \"hidden\" on steemit but visible on steemd so authors could monitor these stats on the backend?", + "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemd.com\\/test\\/@derekareith\\/page-view-counter-test-post\"]}", + "created": "2016-09-13T22:25:12", + "last_update": "2016-09-13T22:25:12", + "depth": 5, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 331, + "active_votes": [], + "author_reputation": 0, + "parent_author": "bitcoiner", + "parent_permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 831916, + "author": "dickbutt", + "permlink": "re-re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259-20160902t064336", + "category": "test", + "title": "", + "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", + "json_metadata": "{}", + "created": "2016-09-02T06:43:39", + "last_update": "2016-09-02T06:43:39", + "depth": 5, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 69, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259-20160902t064336", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 652753, + "author": "laonie", + "permlink": "re-trogdor-re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160818t075042763z", + "category": "test", + "title": "", + "body": "Anyway, i feel embarrassing, i removed the list, my bot won't do this again, but will follow good human curators only.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-18T07:50:39", + "last_update": "2016-08-18T07:50:39", + "depth": 5, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 118, + "active_votes": [], + "author_reputation": 0, + "parent_author": "trogdor", + "parent_permlink": "re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@laonie/re-trogdor-re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160818t075042763z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635813, + "author": "royaltiffany", + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022232495z", + "category": "test", + "title": "", + "body": "I knoooow !! I dont know where they came from !! Started from my last post.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:22:30", + "last_update": "2016-08-17T02:22:30", + "depth": 5, + "children": 0, + "net_rshares": 60116331, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 75, + "active_votes": [ + { + "voter": "scotthelms89", + "rshares": "60116331", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022232495z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635744, + "author": "royaltiffany", + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z", + "category": "test", + "title": "", + "body": "Yes i did them ahahahhahah , ntmu too!", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:13:30", + "last_update": "2016-08-17T02:13:42", + "depth": 5, + "children": 0, + "net_rshares": 15078297487, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 38, + "active_votes": [ + { + "voter": "hellokitty", + "rshares": "14714651186", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "btctoken", + "rshares": "121297875", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "solarempirepc", + "rshares": "53821026", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mrainp", + "rshares": "134400698", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lovetosteemit", + "rshares": "54126702", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943539, + "author": "bitcoiner", + "permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", + "category": "test", + "title": "", + "body": "Oh haha. Yes, I haven't signed a block for more than 24 hours!", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:29:33", + "last_update": "2016-09-13T20:29:33", + "depth": 4, + "children": 2, + "net_rshares": 77095774656, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 62, + "active_votes": [ + { + "voter": "derekareith", + "rshares": "77095774656", + "percent": "5000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", + "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920022, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z", + "category": "test", + "title": "", + "body": "breath", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:52:09", + "last_update": "2016-09-11T08:52:09", + "depth": 4, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 6, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919922, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z", + "category": "test", + "title": "", + "body": "its just a bot", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:31:00", + "last_update": "2016-09-11T08:31:00", + "depth": 4, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 14, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919920, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z", + "category": "test", + "title": "", + "body": "reply to the bot with the word \"feminist\"", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:30:39", + "last_update": "2016-09-11T08:30:39", + "depth": 4, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 41, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 831914, + "author": "dickbutt", + "permlink": "re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", + "category": "test", + "title": "", + "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", + "json_metadata": "{}", + "created": "2016-09-02T06:43:03", + "last_update": "2016-09-02T06:43:03", + "depth": 4, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 69, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 641876, + "author": "gary-smith", + "permlink": "re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t142255070z", + "category": "test", + "title": "", + "body": "If I said no would you believe me ?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T14:22:54", + "last_update": "2016-08-17T14:22:54", + "depth": 4, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 35, + "active_votes": [], + "author_reputation": 0, + "parent_author": "thebeachedwhale", + "parent_permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@gary-smith/re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t142255070z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 639400, + "author": "trogdor", + "permlink": "re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", + "category": "test", + "title": "", + "body": "Hi @laonie, for the record I was not talking about you. I don't have anything against trying to maximize your profits. There is an account \"steemitmarket\" that is trying to buy and sell votes with 800 different spam accounts that they control, and they used all of them to spam my recent post.", + "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"laonie\"]}", + "created": "2016-08-17T10:20:30", + "last_update": "2016-08-17T10:20:30", + "depth": 4, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 293, + "active_votes": [], + "author_reputation": 0, + "parent_author": "laonie", + "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635801, + "author": "trogdor", + "permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", + "category": "test", + "title": "", + "body": "This is really interesting, it looks like you have a small spam bot army following you around in the comments section.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:21:00", + "last_update": "2016-08-17T02:21:00", + "depth": 4, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 118, + "active_votes": [], + "author_reputation": 0, + "parent_author": "royaltiffany", + "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635740, + "author": "trogdor", + "permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", + "category": "test", + "title": "", + "body": "Could have been a one-off test, or possibly tag related, since i used the #bot tag in my other post I think.\n\nOh btw, hi @royaltiffany, nice to meet you :) Didn't you do shots for votes or something? lol", + "json_metadata": "{\"tags\":[\"bot\",\"test\"],\"users\":[\"royaltiffany\"]}", + "created": "2016-08-17T02:12:48", + "last_update": "2016-08-17T02:12:48", + "depth": 4, + "children": 1, + "net_rshares": 14714651186, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 203, + "active_votes": [ + { + "voter": "hellokitty", + "rshares": "14714651186", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "royaltiffany", + "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635684, + "author": "royaltiffany", + "permlink": "re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020535226z", + "category": "test", + "title": "", + "body": "Lol", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:05:33", + "last_update": "2016-08-17T02:05:33", + "depth": 4, + "children": 0, + "net_rshares": 201590749, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 3, + "active_votes": [ + { + "voter": "scotthelms89", + "rshares": "60116331", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mrainp", + "rshares": "141474418", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "thebeachedwhale", + "parent_permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020535226z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 946378, + "author": "freebornangel", + "permlink": "re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z", + "category": "test", + "title": "", + "body": "That is too bad, that is a really good metric.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-14T03:18:00", + "last_update": "2016-09-14T03:18:00", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 46, + "active_votes": [], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", + "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943519, + "author": "derekareith", + "permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", + "category": "test", + "title": "", + "body": "This is my miner acct that I gave up mining with XD...damn rabbits. Was using to test :)", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:26:09", + "last_update": "2016-09-13T20:26:09", + "depth": 3, + "children": 3, + "net_rshares": 2767044151, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 88, + "active_votes": [ + { + "voter": "bitcoiner", + "rshares": "2767044151", + "percent": "5000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "boomer", + "parent_permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 938127, + "author": "golfball", + "permlink": "re-golfball-re-golfball-re-golfball-test-20160913t071932003z", + "category": "test", + "title": "", + "body": "mouse เมาส์ ิั\nhard drive ฮาร์ดไดร์\nhard disk ฮาร์ดดิสก์\nMonitor หน้าจอ\nDisplay แสดง\nLCD screen\nCTR screen หน้าจอ\nplasma screen พราสม่า\nRAM memory หน่วยความจำแรม\nROM memory รอม\nPrinter เครื่องพิมพ์\nplotter\nmicrophone ไมโครโฟน\nscanner เครืองสเเกน\nspeakers\nkeyboard แป้นพิมพ์\nbarcode บาร์โค้ด\nRight click\nLeft click\nDouble click\nCPU", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T07:19:33", + "last_update": "2016-09-13T07:20:09", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-30T07:41:51", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 330, + "active_votes": [], + "author_reputation": 0, + "parent_author": "golfball", + "parent_permlink": "re-golfball-re-golfball-test-20160913t063516433z", + "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-re-golfball-test-20160913t071932003z", + "root_title": "Test One", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 937498, + "author": "royaltiffany", + "permlink": "re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z", + "category": "test", + "title": "", + "body": "Ahahahhahaha ....click bait", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T05:12:42", + "last_update": "2016-09-13T05:12:42", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T01:42:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 27, + "active_votes": [], + "author_reputation": 0, + "parent_author": "demotruk", + "parent_permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z", + "url": "/test/@royaltiffany/test#@royaltiffany/re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 921247, + "author": "pompe72", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", + "category": "test", + "title": "", + "body": "dickbutt\n\nhttps://img1.steemit.com/0x0/http://i64.tinypic.com/1zn8p6d.jpg", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/i64.tinypic.com\\/1zn8p6d.jpg\"]}", + "created": "2016-09-11T12:21:27", + "last_update": "2016-09-11T12:21:27", + "depth": 3, + "children": 1, + "net_rshares": 52449059, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 73, + "active_votes": [ + { + "voter": "paolo75", + "rshares": "52449059", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051", + "url": "/test/@dickbutt/testing-dickbutt#@pompe72/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920140, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z", + "category": "test", + "title": "", + "body": "Breath Skeptic, Breath https://www.youtube.com/watch?v=y43FolFlY78", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/y43FolFlY78\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=y43FolFlY78\"]}", + "created": "2016-09-11T09:16:27", + "last_update": "2016-09-11T09:16:27", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 66, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920044, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z", + "category": "test", + "title": "", + "body": "feminism?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:55:36", + "last_update": "2016-09-11T08:55:36", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 9, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920039, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z", + "category": "test", + "title": "", + "body": "feminism?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:54:33", + "last_update": "2016-09-11T08:54:33", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 9, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920034, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z", + "category": "test", + "title": "", + "body": "femninism?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:54:00", + "last_update": "2016-09-11T08:54:00", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 10, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920031, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z", + "category": "test", + "title": "", + "body": "feminism?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:53:12", + "last_update": "2016-09-11T08:53:12", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 9, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919932, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z", + "category": "test", + "title": "", + "body": "feminist?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:32:12", + "last_update": "2016-09-11T08:32:12", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 9, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919626, + "author": "skeptic", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", + "category": "test", + "title": "", + "body": "Sick little bot.\n8D", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T07:27:27", + "last_update": "2016-09-11T07:27:27", + "depth": 3, + "children": 3, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 19, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", + "url": "/test/@dickbutt/testing-dickbutt#@skeptic/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919917, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z", + "category": "test", + "title": "", + "body": "feminist", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:29:57", + "last_update": "2016-09-11T08:29:57", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 8, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919938, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z", + "category": "test", + "title": "", + "body": "Much feminist!!!!", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:33:03", + "last_update": "2016-09-11T08:33:03", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 17, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 859549, + "author": "bullionstackers", + "permlink": "re-ace108-re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t050838289z", + "category": "test", + "title": "", + "body": "Thank you @ace108\nCheck your message", + "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"ace108\"]}", + "created": "2016-09-05T05:08:39", + "last_update": "2016-09-05T06:05:39", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-06T04:18:33", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 36, + "active_votes": [], + "author_reputation": 0, + "parent_author": "ace108", + "parent_permlink": "re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", + "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want#@bullionstackers/re-ace108-re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t050838289z", + "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 857335, + "author": "dickbutt", + "permlink": "re-re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z-20160904t222429", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/u3jff1rzz/105441_dickbutt_rainbow_wiggle_gif_Im_6_YAW.gif", + "json_metadata": "{}", + "created": "2016-09-04T22:24:30", + "last_update": "2016-09-04T22:24:30", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 80, + "active_votes": [], + "author_reputation": 0, + "parent_author": "steemjesus", + "parent_permlink": "re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z-20160904t222429", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 831911, + "author": "dickbutt", + "permlink": "re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", + "category": "test", + "title": "", + "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", + "json_metadata": "{}", + "created": "2016-09-02T06:42:27", + "last_update": "2016-09-02T06:42:27", + "depth": 3, + "children": 2, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 69, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 780488, + "author": "thecleangame", + "permlink": "re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z", + "category": "test", + "title": "", + "body": "lol Glad I could help :)", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-28T18:19:12", + "last_update": "2016-08-28T18:19:12", + "depth": 3, + "children": 0, + "net_rshares": 5186228610, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-28T17:56:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 24, + "active_votes": [ + { + "voter": "ivicaa", + "rshares": "5186228610", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "ivicaa", + "parent_permlink": "re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", + "url": "/test/@ivicaa/test-please-ignore#@thecleangame/re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z", + "root_title": "TEST - please ignore", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 637778, + "author": "laonie", + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", + "category": "test", + "title": "", + "body": "It seems @wang 's list changed, i was trying to squeeze the profit of the curation bots.", + "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"wang\"]}", + "created": "2016-08-17T06:45:54", + "last_update": "2016-08-17T06:45:54", + "depth": 3, + "children": 2, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 88, + "active_votes": [], + "author_reputation": 0, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@laonie/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635722, + "author": "royaltiffany", + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", + "category": "test", + "title": "", + "body": "Wait for it....wait for it...", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:10:24", + "last_update": "2016-08-17T02:10:24", + "depth": 3, + "children": 4, + "net_rshares": 15210973654, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 29, + "active_votes": [ + { + "voter": "hellokitty", + "rshares": "14714651186", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "scotthelms89", + "rshares": "60116331", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "btctoken", + "rshares": "121297875", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "alexbones", + "rshares": "54874786", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "biker", + "rshares": "50303592", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "coutchpotatoe", + "rshares": "54792292", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sleepcult", + "rshares": "50317967", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemithelper1", + "rshares": "50221956", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "waltrichards", + "rshares": "54397669", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635668, + "author": "thebeachedwhale", + "permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", + "category": "test", + "title": "", + "body": "Are you?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:02:54", + "last_update": "2016-08-17T02:02:54", + "depth": 3, + "children": 2, + "net_rshares": 1947875840, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 8, + "active_votes": [ + { + "voter": "gary-smith", + "rshares": "1947875840", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "gary-smith", + "parent_permlink": "re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@thebeachedwhale/re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 946058, + "author": "derekareith", + "permlink": "re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z", + "category": "test", + "title": "", + "body": "Wish it was easy to integrate...seems like it would be useful.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-14T02:14:36", + "last_update": "2016-09-14T02:14:36", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 62, + "active_votes": [], + "author_reputation": 0, + "parent_author": "steemitqa", + "parent_permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 946049, + "author": "derekareith", + "permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", + "category": "test", + "title": "", + "body": "Yea, that's cool. I think like bitcoiner pointed out, though, we can't get them to work since images sent to the blockchain are cached by Steemit and won't update. They update on other \"windows\" like steemd, but that info isn't going to be accurate. It's a lot tougher than I thought it would be XD\n\nI see Steemit integrating it in the future, but it's probably real low on their list of priorities.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-14T02:13:27", + "last_update": "2016-09-14T02:13:27", + "depth": 2, + "children": 1, + "net_rshares": 60293991, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 402, + "active_votes": [ + { + "voter": "freebornangel", + "rshares": "60293991", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "freebornangel", + "parent_permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943509, + "author": "boomer", + "permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", + "category": "test", + "title": "", + "body": "ahhh...gotcha", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:24:27", + "last_update": "2016-09-13T20:24:27", + "depth": 2, + "children": 4, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 13, + "active_votes": [], + "author_reputation": 0, + "parent_author": "bitcoiner", + "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z", + "url": "/test/@derekareith/page-view-counter-test-post#@boomer/re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943452, + "author": "derekareith", + "permlink": "re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z", + "category": "test", + "title": "", + "body": "yea stuck on 0...the others I tried in the comments just say various errors/img cant display", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:18:48", + "last_update": "2016-09-13T20:18:48", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 92, + "active_votes": [], + "author_reputation": 0, + "parent_author": "goldmatters", + "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 937890, + "author": "golfball", + "permlink": "re-golfball-re-golfball-test-20160913t063516433z", + "category": "test", + "title": "", + "body": "mouse เมาส์ ิั\nhard drive ฮาร์ดไดร์\nhard disk ฮาร์ดดิสก์\nMonitor หน้าจอ\nDisplay แสดง\nLCD screen\nCTR screen หน้าจอ\nplasma screen พราสม่า\nRAM memory หน่วยความจำแรม\nROM memory รอม\nPrinter เครื่องพิมพ์\nplotter\nmicrophone ไมโครโฟน\nscanner เครืองสเเกน\nspeakers\nkeyboard แป้นพิมพ์\nbarcode บาร์โค้ด\nRight click\n\nhttp://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\nhttp://cdn.slashgear.com/wp-content/uploads/2013/04/Seagate-HDD.jpg\nhttp://img.bbystatic.com/BestBuy_US/images/products/3434/3434015cv13d.jpg\nhttp://cdn.computerhope.com/computer-memory.jpg\nhttps://xiebingqing815.files.wordpress.com/2013/09/rom-vs-ram.png", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", + "created": "2016-09-13T06:35:18", + "last_update": "2016-09-13T06:35:18", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-30T07:41:51", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 680, + "active_votes": [], + "author_reputation": 0, + "parent_author": "golfball", + "parent_permlink": "re-golfball-test-20160913t063057513z", + "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-test-20160913t063516433z", + "root_title": "Test One", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 937496, + "author": "royaltiffany", + "permlink": "re-mrlogic-re-royaltiffany-test-20160913t051214805z", + "category": "test", + "title": "", + "body": "Well if u had to ...u had to...", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T05:12:15", + "last_update": "2016-09-13T05:12:15", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T01:42:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 31, + "active_votes": [], + "author_reputation": 0, + "parent_author": "mrlogic", + "parent_permlink": "re-royaltiffany-test-20160912t110110157z", + "url": "/test/@royaltiffany/test#@royaltiffany/re-mrlogic-re-royaltiffany-test-20160913t051214805z", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 936569, + "author": "contentjunkie", + "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z", + "category": "test", + "title": "", + "body": "dickbutt", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T02:39:15", + "last_update": "2016-09-13T02:39:15", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T04:41:42", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 8, + "active_votes": [], + "author_reputation": 0, + "parent_author": "contentjunkie", + "parent_permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022316187z", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z", + "root_title": "testing the @dickbutt automated system", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 936550, + "author": "contentjunkie", + "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z", + "category": "test", + "title": "", + "body": "dickbutt", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T02:36:06", + "last_update": "2016-09-13T02:36:06", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T04:41:42", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 8, + "active_votes": [], + "author_reputation": 0, + "parent_author": "contentjunkie", + "parent_permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022535074z", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z", + "root_title": "testing the @dickbutt automated system", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 930445, + "author": "demotruk", + "permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z", + "category": "test", + "title": "", + "body": "I pushed the button and it turned out to be just a jay-peg :-(", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-12T13:30:42", + "last_update": "2016-09-12T13:30:42", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T01:42:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 62, + "active_votes": [], + "author_reputation": 0, + "parent_author": "bige37", + "parent_permlink": "re-royaltiffany-test-20160912t114919145z", + "url": "/test/@royaltiffany/test#@demotruk/re-bige37-re-royaltiffany-test-20160912t133042108z", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920080, + "author": "earnest", + "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z", + "category": "test", + "title": "", + "body": ":) Transexual fux :)", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T09:01:57", + "last_update": "2016-09-11T09:01:57", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 20, + "active_votes": [], + "author_reputation": 0, + "parent_author": "brendio", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920072, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z", + "category": "test", + "title": "", + "body": "Can you breath?Yes, Brath, Breath the air in, out, repeat", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T09:01:00", + "last_update": "2016-09-11T09:01:00", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 57, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920050, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z", + "category": "test", + "title": "", + "body": "you got it by now", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:56:36", + "last_update": "2016-09-11T08:56:36", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 17, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920045, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z", + "category": "test", + "title": "", + "body": "breath 10 times", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:56:15", + "last_update": "2016-09-11T08:56:15", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 15, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920042, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z", + "category": "test", + "title": "", + "body": "it is, just breath and stay calm", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:55:06", + "last_update": "2016-09-11T08:55:06", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 32, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920027, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z", + "category": "test", + "title": "", + "body": "there you go", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:52:45", + "last_update": "2016-09-11T08:52:45", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 12, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919991, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/kiv7efda7/dickbutt_mark_by_reilpikram_d8busm9.png", + "json_metadata": "{}", + "created": "2016-09-11T08:46:45", + "last_update": "2016-09-11T08:46:45", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 72, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920055, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z", + "category": "test", + "title": "", + "body": "Im not afraid, I can defeat it", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:58:06", + "last_update": "2016-09-11T08:58:06", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 30, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919966, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/j6i3qa58f/dickbutt.jpg", + "json_metadata": "{}", + "created": "2016-09-11T08:39:51", + "last_update": "2016-09-11T08:39:51", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 45, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919953, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/f66d0apdr/Dick_Buttpink.jpg", + "json_metadata": "{}", + "created": "2016-09-11T08:36:30", + "last_update": "2016-09-11T08:36:30", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 50, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919934, + "author": "earnest", + "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z", + "category": "test", + "title": "", + "body": "::) Got you", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:32:39", + "last_update": "2016-09-11T08:32:39", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 11, + "active_votes": [], + "author_reputation": 0, + "parent_author": "brendio", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919913, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z", + "category": "test", + "title": "", + "body": "dick butt? cunt ass? feminist X, they are fucking with you , show me your talents", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:29:21", + "last_update": "2016-09-11T08:29:21", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 81, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919868, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/uf0vrt8fz/dbupvote.gif", + "json_metadata": "{}", + "created": "2016-09-11T08:21:42", + "last_update": "2016-09-11T08:21:42", + "depth": 2, + "children": 3, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 45, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919616, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/ojbji5iin/m5_En_TSs.jpg", + "json_metadata": "{}", + "created": "2016-09-11T07:25:45", + "last_update": "2016-09-11T07:25:45", + "depth": 2, + "children": 5, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 46, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919903, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z", + "category": "test", + "title": "", + "body": "go one up", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:27:36", + "last_update": "2016-09-11T08:27:36", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 9, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 915135, + "author": "leprechaun", + "permlink": "re-whatsup-re-leprechaun-steemedit-test-5-20160910t210828490z", + "category": "test", + "title": "", + "body": "Thanks. follow me. I am going to post something interesting.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-10T21:08:33", + "last_update": "2016-09-10T21:08:57", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-11T07:48:42", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 62, + "active_votes": [], + "author_reputation": 0, + "parent_author": "whatsup", + "parent_permlink": "re-leprechaun-steemedit-test-5-20160910t194955148z", + "url": "/test/@leprechaun/steemedit-test-5#@leprechaun/re-whatsup-re-leprechaun-steemedit-test-5-20160910t210828490z", + "root_title": "steemedit test 5", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 914301, + "author": "djangothegod", + "permlink": "re-steembaby-re-steembaby-test-my-posts-disappeared-20160910t193455528z", + "category": "test", + "title": "", + "body": "I just submitted my first post and nothing happened.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-10T19:34:57", + "last_update": "2016-09-10T19:35:06", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-25T14:37:57", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 52, + "active_votes": [], + "author_reputation": 0, + "parent_author": "steembaby", + "parent_permlink": "re-steembaby-test-my-posts-disappeared-20160825t145927000z", + "url": "/test/@steembaby/test-my-posts-disappeared#@djangothegod/re-steembaby-re-steembaby-test-my-posts-disappeared-20160910t193455528z", + "root_title": "test -- my posts disappeared!", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 911784, + "author": "hacon", + "permlink": "re-kjsxj-re-hacon-first-post-20160910t145455609z", + "category": "test", + "title": "", + "body": "I am trying to get a handle on the main differences from say reddit. I take it we can't delete posts, but we can edit them. Is the edit history visable?\nWhat about deleting comments ... lets see now.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-10T14:54:57", + "last_update": "2016-09-10T14:54:57", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-11T17:09:06", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 199, + "active_votes": [], + "author_reputation": 0, + "parent_author": "kjsxj", + "parent_permlink": "re-hacon-first-post-20160910t144933601z", + "url": "/test/@hacon/first-post#@hacon/re-kjsxj-re-hacon-first-post-20160910t145455609z", + "root_title": "First post", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 870034, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/oct91bjzz/dogedickbutt.gif", + "json_metadata": "{}", + "created": "2016-09-06T06:19:54", + "last_update": "2016-09-06T06:19:54", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 49, + "active_votes": [], + "author_reputation": 0, + "parent_author": "brendio", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 859422, + "author": "ace108", + "permlink": "re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", + "category": "test", + "title": "", + "body": "You're welcome. The font size is smaller for yours because your name is longer and I made the \"Follow\" with same font size. I was thinking of leaving the \"Follow\" to be bigger but think to make a consistent look - just my preference. If you prefer \"Follow\" to be bigger, I can easily adjust it.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-05T04:41:54", + "last_update": "2016-09-05T04:41:54", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-06T04:18:33", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 294, + "active_votes": [], + "author_reputation": 0, + "parent_author": "bullionstackers", + "parent_permlink": "re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t035325452z", + "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want#@ace108/re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", + "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 857331, + "author": "steemjesus", + "permlink": "re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", + "category": "test", + "title": "", + "body": "fuck r4fken dickbutt \n\nfuck him hard with your buttdick", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-04T22:23:39", + "last_update": "2016-09-04T22:23:39", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 55, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t064114931z", + "url": "/test/@dickbutt/testing-dickbutt#@steemjesus/re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 843277, + "author": "str11ngfello", + "permlink": "re-str11ngfello-re-str11ngfello-testing-20160903t104442633z", + "category": "test", + "title": "", + "body": "asdf", + "json_metadata": "{}", + "created": "2016-09-03T10:53:30", + "last_update": "2016-09-03T10:53:30", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-04T09:03:45", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 4, + "active_votes": [], + "author_reputation": 0, + "parent_author": "str11ngfello", + "parent_permlink": "re-str11ngfello-testing-20160903t104442633z", + "url": "/test/@str11ngfello/testing#@str11ngfello/re-str11ngfello-re-str11ngfello-testing-20160903t104442633z", + "root_title": "Testing", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 832895, + "author": "deli", + "permlink": "re-deli-re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t094545057z", + "category": "test", + "title": "", + "body": "good really!", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-02T09:45:45", + "last_update": "2016-09-02T09:45:45", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T09:26:45", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 12, + "active_votes": [], + "author_reputation": 0, + "parent_author": "deli", + "parent_permlink": "re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t093020211z", + "url": "/test/@deli/test-just-how-to-see-how-this-all-works-qbd#@deli/re-deli-re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t094545057z", + "root_title": "test just how to see how this all works qbd", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 832881, + "author": "deli", + "permlink": "kjhkfgfgud", + "category": "test", + "title": "this is another test", + "body": "bla bla bla", + "json_metadata": "{}", + "created": "2016-09-02T09:42:39", + "last_update": "2016-09-02T10:01:54", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T09:26:45", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 11, + "active_votes": [], + "author_reputation": 0, + "parent_author": "deli", + "parent_permlink": "ghfhdg", + "url": "/test/@deli/test-just-how-to-see-how-this-all-works-qbd#@deli/kjhkfgfgud", + "root_title": "test just how to see how this all works qbd", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 831973, + "author": "no-mercy", + "permlink": "re-iamgrateful-re-thebatchman1-do-not-vote-test-20160902t065638142z", + "category": "test", + "title": "", + "body": "They are \"testing\" you to see what you will do....", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-02T06:56:45", + "last_update": "2016-09-02T06:56:45", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:15:03", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 50, + "active_votes": [], + "author_reputation": 0, + "parent_author": "iamgrateful", + "parent_permlink": "re-thebatchman1-do-not-vote-test-20160902t065341712z", + "url": "/test/@thebatchman1/do-not-vote-test#@no-mercy/re-iamgrateful-re-thebatchman1-do-not-vote-test-20160902t065638142z", + "root_title": "do not vote - test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 831946, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051", + "category": "test", + "title": "", + "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", + "json_metadata": "{}", + "created": "2016-09-02T06:50:54", + "last_update": "2016-09-02T06:50:54", + "depth": 2, + "children": 2, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 69, + "active_votes": [], + "author_reputation": 0, + "parent_author": "contentjunkie", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t065005906z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 831908, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", + "category": "test", + "title": "", + "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", + "json_metadata": "{}", + "created": "2016-09-02T06:41:48", + "last_update": "2016-09-02T06:41:48", + "depth": 2, + "children": 3, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 69, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t064114931z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 805729, + "author": "jonathan-looman", + "permlink": "re-whatsup-re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t214632491z", + "category": "test", + "title": "", + "body": "I think that we need to recognise value in openness and distributed systems as an alternative to centralized monopolistic systems. In what way Steem is leaning I am still not sure but the Steemit content platform is bound to become gamed and the early adopters definitely will continue to have an advantage and pull more weight.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-30T21:46:33", + "last_update": "2016-08-30T21:46:33", + "depth": 2, + "children": 0, + "net_rshares": 356509174, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-30T19:02:24", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 328, + "active_votes": [ + { + "voter": "jonathan-looman", + "rshares": "356509174", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "whatsup", + "parent_permlink": "re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t200608106z", + "url": "/test/@jonathan-looman/hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain#@jonathan-looman/re-whatsup-re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t214632491z", + "root_title": "What is Steemit?", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 780295, + "author": "ivicaa", + "permlink": "re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", + "category": "test", + "title": "", + "body": ":) At least you're not a bot. I am struggling with the curation reward calculation. Not easy to understand. Your upvote helps to understand it.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-28T18:01:54", + "last_update": "2016-08-28T18:01:54", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-28T17:56:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 143, + "active_votes": [], + "author_reputation": 0, + "parent_author": "thecleangame", + "parent_permlink": "re-ivicaa-test-please-ignore-20160828t172635435z", + "url": "/test/@ivicaa/test-please-ignore#@ivicaa/re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", + "root_title": "TEST - please ignore", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 743391, + "author": "steembaby", + "permlink": "re-ibringawareness-re-steembaby-test-my-posts-disappeared-20160825t150259870z", + "category": "test", + "title": "", + "body": "Exactly the same feeling.\nI've saw my post published and then I've emptied the drafts.\nThat makes me feel worse now.\nI don't have the mood to write the same article for a second time.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-25T15:03:15", + "last_update": "2016-08-25T15:03:15", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-25T14:37:57", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 183, + "active_votes": [], + "author_reputation": 0, + "parent_author": "ibringawareness", + "parent_permlink": "re-steembaby-test-my-posts-disappeared-20160825t144249526z", + "url": "/test/@steembaby/test-my-posts-disappeared#@steembaby/re-ibringawareness-re-steembaby-test-my-posts-disappeared-20160825t150259870z", + "root_title": "test -- my posts disappeared!", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635716, + "author": "trogdor", + "permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", + "category": "test", + "title": "", + "body": "Looks like I caught the laonie swarm and two chinese bots. No wang yet, and no 800 spam votes yet...", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:09:30", + "last_update": "2016-08-17T02:09:30", + "depth": 2, + "children": 8, + "net_rshares": 14714651186, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 100, + "active_votes": [ + { + "voter": "hellokitty", + "rshares": "14714651186", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "royaltiffany", + "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635701, + "author": "rawnetics", + "permlink": "re-rawnetics-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020745425z", + "category": "test", + "title": "", + "body": "Oh yes, here they are!", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:07:45", + "last_update": "2016-08-17T02:07:45", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 22, + "active_votes": [], + "author_reputation": 0, + "parent_author": "rawnetics", + "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020521246z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@rawnetics/re-rawnetics-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020745425z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635663, + "author": "gary-smith", + "permlink": "re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", + "category": "test", + "title": "", + "body": "are you a robot ?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:02:42", + "last_update": "2016-08-17T02:02:42", + "depth": 2, + "children": 3, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 17, + "active_votes": [], + "author_reputation": 0, + "parent_author": "thebeachedwhale", + "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020213239z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@gary-smith/re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 955877, + "author": "oaldamster", + "permlink": "re-achim86-test-20160915t070512394z", + "category": "test", + "title": "", + "body": "Result: confirmed! ;-)", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-15T07:05:12", + "last_update": "2016-09-15T07:05:12", + "depth": 1, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T14:39:17", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 22, + "active_votes": [], + "author_reputation": 0, + "parent_author": "achim86", + "parent_permlink": "test", + "url": "/test/@achim86/test#@oaldamster/re-achim86-test-20160915t070512394z", + "root_title": "test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 946041, + "author": "steemitqa", + "permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z", + "category": "test", + "title": "", + "body": "I tried this not long ago.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-14T02:12:12", + "last_update": "2016-09-14T02:12:12", + "depth": 1, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 26, + "active_votes": [], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@steemitqa/re-derekareith-page-view-counter-test-post-20160914t021242459z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 945943, + "author": "freebornangel", + "permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z", + "category": "test", + "title": "", + "body": "Http://minds.com/ottman has a pretty good counter set up.", + "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"Http:\\/\\/minds.com\\/ottman\"]}", + "created": "2016-09-14T01:54:00", + "last_update": "2016-09-14T01:57:12", + "depth": 1, + "children": 2, + "net_rshares": 46263835410, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 57, + "active_votes": [ + { + "voter": "derekareith", + "rshares": "46263835410", + "percent": "3000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-page-view-counter-test-post-20160914t015352577z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943502, + "author": "bitcoiner", + "permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z", + "category": "test", + "title": "", + "body": "All images get cached by img1.steemit.com.\nBut this will work with users of third party apps that view posts that don't use that caching server, like eSteem.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:23:15", + "last_update": "2016-09-13T20:23:15", + "depth": 1, + "children": 5, + "net_rshares": 77095774656, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 157, + "active_votes": [ + { + "voter": "derekareith", + "rshares": "77095774656", + "percent": "5000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-page-view-counter-test-post-20160913t202316437z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943498, + "author": "derekareith", + "permlink": "re-derekareith-page-view-counter-test-post-20160913t202249477z", + "category": "test", + "title": "", + "body": "\"Free
Free Web Counter", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/www.e-zeeinternet.com\\/count.php?page=1156943&style=blushdw&nbdigits=5\"],\"links\":[\"http:\\/\\/www.e-zeeinternet.com\\/\"]}", + "created": "2016-09-13T20:22:51", + "last_update": "2016-09-13T20:22:51", + "depth": 1, + "children": 0, + "net_rshares": 10592290339, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 455, + "active_votes": [ + { + "voter": "elissahawke", + "rshares": "10592290339", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t202249477z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943470, + "author": "derekareith", + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201948735z", + "category": "test", + "title": "", + "body": "\n
\"commercial
\n\nmaybe this one ?", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/simplehitcounter.com\\/hit.php?uid=2165971&f=16777215&b=0\"],\"links\":[\"http:\\/\\/www.marcleaningservices.com\"]}", + "created": "2016-09-13T20:19:51", + "last_update": "2016-09-13T20:20:15", + "depth": 1, + "children": 0, + "net_rshares": 10384598371, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 332, + "active_votes": [ + { + "voter": "elissahawke", + "rshares": "10384598371", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201948735z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943456, + "author": "jbouchard12", + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201859183z", + "category": "test", + "title": "", + "body": "Let us know if you get it to work!", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:19:00", + "last_update": "2016-09-13T20:19:00", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 34, + "active_votes": [], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@jbouchard12/re-derekareith-page-view-counter-test-post-20160913t201859183z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943447, + "author": "goldmatters", + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z", + "category": "test", + "title": "", + "body": "Do not see a counter?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:18:12", + "last_update": "2016-09-13T20:18:12", + "depth": 1, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 21, + "active_votes": [], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@goldmatters/re-derekareith-page-view-counter-test-post-20160913t201813326z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943437, + "author": "derekareith", + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201727708z", + "category": "test", + "title": "", + "body": "no luck :(", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:17:30", + "last_update": "2016-09-13T20:17:30", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 10, + "active_votes": [], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201727708z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943436, + "author": "karenb54", + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201718842z", + "category": "test", + "title": "", + "body": "I opened, read and upvoted, interesting to see the outcome :)", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:17:24", + "last_update": "2016-09-13T20:17:24", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 61, + "active_votes": [], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@karenb54/re-derekareith-page-view-counter-test-post-20160913t201718842z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 939969, + "author": "vinotinto", + "permlink": "re-vinotinto-3qkywh-test-20160913t131315550z", + "category": "test", + "title": "", + "body": "test comment", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T13:13:15", + "last_update": "2016-09-13T13:13:15", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T13:15:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 12, + "active_votes": [], + "author_reputation": 0, + "parent_author": "vinotinto", + "parent_permlink": "3qkywh-test", + "url": "/test/@vinotinto/3qkywh-test#@vinotinto/re-vinotinto-3qkywh-test-20160913t131315550z", + "root_title": "test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 937862, + "author": "golfball", + "permlink": "re-golfball-test-20160913t063057513z", + "category": "test", + "title": "", + "body": "1. mouse เมาส์ ิั \n2. hard drive ฮาร์ดไดร์\n3. hard disk ฮาร์ดดิสก์\n4. Monitor หน้าจอ\n5. Display แสดง\n *LCD screen \n *CTR screen หน้าจอ\n* plasma screen พราสม่า\n\n\n5. RAM memory หน่วยความจำแรม\nROM memory รอม\n\n6. Printer เครื่องพิมพ์\nplotter\n\n7. microphone ไมโครโฟน\n\n8. scanner เครืองสเเกน\n\n9. speakers\n\n10. keyboard แป้นพิมพ์\n\n11. barcode บาร์โค้ด\n\n12. \n\n13. Right click\n\nhttp://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\nhttp://cdn.slashgear.com/wp-content/uploads/2013/04/Seagate-HDD.jpg\nhttp://img.bbystatic.com/BestBuy_US/images/products/3434/3434015cv13d.jpg\nhttp://cdn.computerhope.com/computer-memory.jpg\nhttps://xiebingqing815.files.wordpress.com/2013/09/rom-vs-ram.png", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", + "created": "2016-09-13T06:31:00", + "last_update": "2016-09-13T06:33:45", + "depth": 1, + "children": 2, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-30T07:41:51", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 763, + "active_votes": [], + "author_reputation": 0, + "parent_author": "golfball", + "parent_permlink": "test", + "url": "/test/@golfball/test#@golfball/re-golfball-test-20160913t063057513z", + "root_title": "Test One", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 936699, + "author": "dickbutt", + "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z", + "category": "test", + "title": "", + "body": "dickbutt", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T02:53:21", + "last_update": "2016-09-13T02:53:21", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T04:41:42", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 8, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "testing-the-dickbutt-automated-system", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@dickbutt/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z", + "root_title": "testing the @dickbutt automated system", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 936684, + "author": "contentjunkie", + "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z", + "category": "test", + "title": "", + "body": "dickbutt", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T02:51:42", + "last_update": "2016-09-13T02:51:42", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T04:41:42", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 8, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "testing-the-dickbutt-automated-system", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z", + "root_title": "testing the @dickbutt automated system", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_no_results.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_no_results.pat.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_no_results.pat.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.pat.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.pat.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_following_last.pat.json b/hivemind/tavern/condenser_api_patterns/get_following_last.pat.json new file mode 100644 index 00000000..e06b40f2 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_following_last.pat.json @@ -0,0 +1,9 @@ +[ + { + "follower": "gtg", + "following": "blocktrades", + "what": [ + "blog" + ] + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.pat.json new file mode 100644 index 00000000..304d950a --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.pat.json @@ -0,0 +1,1836 @@ +[ + { + "post_id": 727357, + "author": "somebody", + "permlink": "follow-me-please", + "category": "test", + "title": "Follow me please.", + "body": "This post is a trap for robots. So please don't upvote. Just follow me please.\n\n[![](https://steemimg.com/images/2016/08/24/dd8bd8753d16805.gif)](https://steemit.com/@somebody)", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/steemimg.com\\/images\\/2016\\/08\\/24\\/dd8bd8753d16805.gif\"]}", + "created": "2016-08-24T04:49:00", + "last_update": "2016-08-24T04:49:00", + "depth": 0, + "children": 7, + "net_rshares": 860151460398, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-24T05:05:24", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.546 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 176, + "active_votes": [ + { + "voter": "lee5", + "rshares": "835401856", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "noaommerrr", + "rshares": "221000835803", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "akaninyene-etuk", + "rshares": "60049910", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "irit", + "rshares": "141944533", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "hedge-x", + "rshares": "361661182474", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "primus", + "rshares": "6648576257", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dasha", + "rshares": "7400392900", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lemooljiang", + "rshares": "12001771040", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "michaeldodridge", + "rshares": "9364510234", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "somebody", + "rshares": "231680157638", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "feelapi", + "rshares": "1520602917", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "future24", + "rshares": "411633883", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mione", + "rshares": "3793330400", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tomeraddady", + "rshares": "60886073", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "abc1621043211", + "rshares": "727760600", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jsantana", + "rshares": "1985606562", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "goriilla", + "rshares": "55763290", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "olakla", + "rshares": "55184850", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cerne", + "rshares": "54993135", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rexgrove", + "rshares": "54916164", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "inwoxer", + "rshares": "139924838", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "f1111111", + "rshares": "50066904", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "fluffy", + "rshares": "393193776", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "alexportikul", + "rshares": "52774361", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@somebody/follow-me-please", + "root_title": "Follow me please.", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635639, + "author": "trogdor", + "permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", + "category": "test", + "title": "this is a test to see if i have been targeted by a spam bot army", + "body": "test", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:00:48", + "last_update": "2016-08-17T02:00:48", + "depth": 0, + "children": 19, + "net_rshares": 606977500984, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.418 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 4, + "active_votes": [ + { + "voter": "somedude", + "rshares": "8763619284", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "trogdor", + "rshares": "5564190601", + "percent": "0", + "reputation": 0 + }, + { + "voter": "raymonjohnstone", + "rshares": "145380534", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "pinkisland", + "rshares": "10315786664", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "hellokitty", + "rshares": "15008944210", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "laonie", + "rshares": "497568302000", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie1", + "rshares": "3778964442", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie2", + "rshares": "3778947431", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie3", + "rshares": "3778936100", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "myfirst", + "rshares": "9118987048", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie4", + "rshares": "3778614532", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie5", + "rshares": "3778602547", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie6", + "rshares": "3778594469", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie7", + "rshares": "3778571886", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie8", + "rshares": "3778554259", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie9", + "rshares": "3778533199", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "xiaohui", + "rshares": "18835607987", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie10", + "rshares": "3776590554", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "runridefly", + "rshares": "111114608", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "laonie11", + "rshares": "3760658629", + "percent": "5000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 617652, + "author": "stino-san", + "permlink": "test", + "category": "test", + "title": "test", + "body": "test", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-15T20:05:21", + "last_update": "2016-08-15T20:05:21", + "depth": 0, + "children": 0, + "net_rshares": 307686992811, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-15T20:12:06", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.208 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 4, + "active_votes": [ + { + "voter": "stino-san", + "rshares": "228145849379", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "fuck.off", + "rshares": "5007214192", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "iloveporn", + "rshares": "6821297816", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "the.bot", + "rshares": "2438027091", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "johnbradshaw", + "rshares": "8295473589", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "the.whale", + "rshares": "5785438356", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "unicornfarts", + "rshares": "5481884026", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "vote", + "rshares": "5785920904", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kissmybutt", + "rshares": "6091743832", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "aaseb", + "rshares": "13280342528", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "michaeldodridge", + "rshares": "6322307995", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kukuy", + "rshares": "111797071", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thedon", + "rshares": "1010597496", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thebotkiller", + "rshares": "11316597740", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jimmytwoshoes", + "rshares": "283790428", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jackgallenhall", + "rshares": "1455898140", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "reddtie", + "rshares": "52812228", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@stino-san/test", + "root_title": "test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 763215, + "author": "stino-san", + "permlink": "46vbbv-test", + "category": "test", + "title": "test", + "body": "test", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-27T04:46:51", + "last_update": "2016-08-27T04:46:51", + "depth": 0, + "children": 4, + "net_rshares": 275726168458, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-27T04:52:36", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.151 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 4, + "active_votes": [ + { + "voter": "stino-san", + "rshares": "225913748267", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "fuck.off", + "rshares": "4936121677", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "the.bot", + "rshares": "2248064175", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "johnbradshaw", + "rshares": "8179524007", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "arcaneinfo", + "rshares": "5469062752", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "the.whale", + "rshares": "5704244958", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "vote", + "rshares": "5583423314", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kissmybutt", + "rshares": "6007072255", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nicoleta", + "rshares": "67820011", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thebotkiller", + "rshares": "10924517278", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jimmytwoshoes", + "rshares": "267235062", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rucoin", + "rshares": "425334702", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@stino-san/46vbbv-test", + "root_title": "test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 858881, + "author": "ace108", + "permlink": "test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want", + "category": "test", + "title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", + "body": "\n

\"Follow@bullionstackers.gif\"
\n
\nImage Link

\n", + "json_metadata": "{\"tags\":[\"test\",\"testbyace10\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/05\\/Followbullionstackers320e51da.gif\"],\"links\":[\"https:\\/\\/www.steemimg.com\\/image\\/7tV3J\"]}", + "created": "2016-09-05T02:59:36", + "last_update": "2016-09-05T03:18:39", + "depth": 0, + "children": 3, + "net_rshares": 257677398121, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-06T04:18:33", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.082 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 240, + "active_votes": [ + { + "voter": "tcfxyz", + "rshares": "24991140368", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "futurefood", + "rshares": "6923304252", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rea", + "rshares": "79040067029", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "pinkisland", + "rshares": "23010056511", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bullionstackers", + "rshares": "1854087037", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "twinner", + "rshares": "121858742924", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want", + "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 928651, + "author": "royaltiffany", + "permlink": "test", + "category": "test", + "title": "Test", + "body": "Please do not upvote...\n\n
http://designwebkit.com/wp-content/uploads/2013/09/how-test-logo-design-thumb.jpg\n
Source
", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/designwebkit.com\\/wp-content\\/uploads\\/2013\\/09\\/how-test-logo-design-thumb.jpg\"],\"links\":[\"http:\\/\\/designwebkit.com\\/web-and-trends\\/how-professional-tests-finalizes-logo-design\\/\"]}", + "created": "2016-09-12T07:38:09", + "last_update": "2016-09-12T07:38:09", + "depth": 0, + "children": 6, + "net_rshares": 230967859053, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T01:42:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.055 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 250, + "active_votes": [ + { + "voter": "woo7739", + "rshares": "7861629418", + "percent": "100", + "reputation": 0 + }, + { + "voter": "dragonslayer109", + "rshares": "206209970416", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rawlzsec", + "rshares": "3649598360", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "michaellamden68", + "rshares": "3509996730", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bitcoiner", + "rshares": "6300267620", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "metaflute", + "rshares": "1305753906", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "usb", + "rshares": "840098241", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mrlogic", + "rshares": "192321224", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ppan08162016", + "rshares": "54457374", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "anasz", + "rshares": "1043765764", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@royaltiffany/test", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 641664, + "author": "rubenalexander", + "permlink": "800px-box-crop-test-test-post-please-ignore", + "category": "test", + "title": "800px box, crop test [Test Post Please Ignore]", + "body": "
\n\nI noticed that in the list view of all posts, my main images were being cropped. It didn't seem to be a clean scale, or a centered crop, so I created an image to try to determine where the crop occured in the image.\n\nI need to run more tests, but with an 800px x 800px image:\n- The crop occurs around 60 pixels from the top and ends around 280 pixels from the bottom. \n- The crop box dimension 800 pixels wide by 455 pixels high.", + "json_metadata": "{\"tags\":[\"test\",\"crop\",\"image\"],\"image\":[\"http:\\/\\/i.imgur.com\\/GK1SyaR.png\"]}", + "created": "2016-08-17T14:05:27", + "last_update": "2016-08-17T14:20:57", + "depth": 0, + "children": 1, + "net_rshares": 84134603688, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T16:24:15", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.051 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 490, + "active_votes": [ + { + "voter": "proctologic", + "rshares": "10220864268", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "digi3d", + "rshares": "258954801", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "discombobulated", + "rshares": "65562670577", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kurtbeil", + "rshares": "6668122973", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mndstruct", + "rshares": "67570327", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rubenalexander", + "rshares": "1245304003", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "runridefly", + "rshares": "111116739", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@rubenalexander/800px-box-crop-test-test-post-please-ignore", + "root_title": "800px box, crop test [Test Post Please Ignore]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 745478, + "author": "venuspcs", + "permlink": "2kruc4-test", + "category": "test", + "title": "Test", + "body": "Testing to see if posting is working again.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-25T18:14:33", + "last_update": "2016-08-25T18:14:33", + "depth": 0, + "children": 1, + "net_rshares": 72263112386, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-25T18:50:09", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.037 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 43, + "active_votes": [ + { + "voter": "venuspcs", + "rshares": "69552358699", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bitland", + "rshares": "2058287307", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "runridefly", + "rshares": "495165648", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "analyzethis", + "rshares": "50931848", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rb3coins", + "rshares": "53222151", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "vsmith08162016", + "rshares": "53146733", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@venuspcs/2kruc4-test", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 829308, + "author": "asch", + "permlink": "4bh3kx-test", + "category": "test", + "title": "Change request for steemit: allow posts to be hidden by author", + "body": "Would be nice if an author could flag his/her own post so that it can be hidden from the steemit.com blog pages.\n\nhttps://ipfs.pics/ipfs/QmVP5ebRFZ38f7h3k8Vq3cbRcsGBDyZBCqTLtB3GjYFobi", + "json_metadata": "{\"tags\":[\"test\",\"steemit\"],\"image\":[\"https:\\/\\/ipfs.pics\\/ipfs\\/QmVP5ebRFZ38f7h3k8Vq3cbRcsGBDyZBCqTLtB3GjYFobi\"]}", + "created": "2016-09-01T23:31:36", + "last_update": "2016-09-02T00:02:21", + "depth": 0, + "children": 2, + "net_rshares": 92401268815, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T00:20:39", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.033 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 183, + "active_votes": [ + { + "voter": "richman", + "rshares": "13053504107", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "asch", + "rshares": "68346947255", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "happyphoenix", + "rshares": "897343674", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "goose", + "rshares": "8842903950", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rb3coins", + "rshares": "53222151", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "billkappa442", + "rshares": "51240567", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "glassheart", + "rshares": "51235131", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dragonice", + "rshares": "51232949", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemq", + "rshares": "51230296", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "battalar", + "rshares": "51227561", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "weare", + "rshares": "51218466", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "deli", + "rshares": "51215236", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "slow", + "rshares": "51141851", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "oxygen", + "rshares": "50907857", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cyan", + "rshares": "50875769", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "palladium", + "rshares": "50873654", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "motion", + "rshares": "50871059", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sting", + "rshares": "50865840", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "breeze", + "rshares": "50798322", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "autodesk", + "rshares": "50794039", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ziggo", + "rshares": "50570250", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "friends", + "rshares": "50532230", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "connect", + "rshares": "50484452", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sunlight", + "rshares": "50479027", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "letstalkliberty", + "rshares": "239553122", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@asch/4bh3kx-test", + "root_title": "Change request for steemit: allow posts to be hidden by author", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943429, + "author": "derekareith", + "permlink": "page-view-counter-test-post", + "category": "test", + "title": "Page View Counter [Test Post]", + "body": "\n

I wanted to try one and see if it worked here:

\n


\n
\n

I think that this can be a good statistic to track as it gives you a feel for how many users actually opened your article.  This can help guide authors to work on topics that attract the most views.  Upvotes are nice, but I feel that they don't tell the whole story as far as the level of interest your articles generate.

\n

There are also lurkers who don't have accounts but occasionally check out what's going on here.  This could help to track them as well.

\n

I found some others that require the webpage address, so I will add those in the comments after I post.

\n", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/www.hitcounterhtmlcode.com\\/count2.php?id=440360354082326413097\"],\"links\":[\"http:\\/\\/www.hitcounterhtmlcode.com\\/stats.php?id=440360354082326413097\"]}", + "created": "2016-09-13T20:16:00", + "last_update": "2016-09-13T20:16:00", + "depth": 0, + "children": 18, + "net_rshares": 138491181744, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.029 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 887, + "active_votes": [ + { + "voter": "richman", + "rshares": "7800265111", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jerome-colley", + "rshares": "9647209204", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemswede", + "rshares": "2182262521", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "derekareith", + "rshares": "3857214813", + "percent": "0", + "reputation": 0 + }, + { + "voter": "rxhector", + "rshares": "734052546", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cynetyc", + "rshares": "113270416", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jbouchard12", + "rshares": "3309065147", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bitcoiner", + "rshares": "5534121085", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sergey44", + "rshares": "77156992", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "karenb54", + "rshares": "514947462", + "percent": "1000", + "reputation": 0 + }, + { + "voter": "anotherjoe", + "rshares": "91627251937", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "the-bitcoin-dood", + "rshares": "1181902434", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "elissahawke", + "rshares": "10384598371", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "wuyueling", + "rshares": "413323439", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "roadhog", + "rshares": "52910800", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "doggnostic", + "rshares": "50639382", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jenny-talls", + "rshares": "50377764", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "post-successful", + "rshares": "51278775", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "freebornangel", + "rshares": "60293991", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jbaker585", + "rshares": "849039554", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@derekareith/page-view-counter-test-post", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 804099, + "author": "jonathan-looman", + "permlink": "hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain", + "category": "test", + "title": "What is Steemit?", + "body": "\n

\n", + "json_metadata": "{\"tags\":[\"test\",\"steemit\",\"visions\",\"video\",\"explainer\"],\"image\":[\"https:\\/\\/dl.dropboxusercontent.com\\/u\\/279041\\/visions.tv\\/visions_steemit.png\"],\"links\":[\"https:\\/\\/visions.tv\\/Jonathan\\/nJvNwQVzL6p?autoplay=1\"]}", + "created": "2016-08-30T18:56:54", + "last_update": "2016-08-30T19:03:27", + "depth": 0, + "children": 2, + "net_rshares": 64328067686, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-30T19:02:24", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.027 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 216, + "active_votes": [ + { + "voter": "jonathan-looman", + "rshares": "363639358", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nippel66", + "rshares": "12972561232", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "summerrain", + "rshares": "60593188", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gomeravibz", + "rshares": "49302305855", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "martaspn", + "rshares": "56802928", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "whatsup", + "rshares": "75704784", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "robotev", + "rshares": "1496460341", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@jonathan-looman/hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain", + "root_title": "What is Steemit?", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 654873, + "author": "laonie1", + "permlink": "this-is-a-test", + "category": "test", + "title": "This is a test", + "body": "test", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-18T12:51:33", + "last_update": "2016-08-18T12:51:33", + "depth": 0, + "children": 0, + "net_rshares": 41461414568, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-18T15:23:33", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.020 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 4, + "active_votes": [ + { + "voter": "laonie1", + "rshares": "180228664", + "percent": "0", + "reputation": 0 + }, + { + "voter": "laonie2", + "rshares": "3063861503", + "percent": "4300", + "reputation": 0 + }, + { + "voter": "laonie3", + "rshares": "3063834206", + "percent": "4300", + "reputation": 0 + }, + { + "voter": "laonie4", + "rshares": "3063616032", + "percent": "4300", + "reputation": 0 + }, + { + "voter": "laonie5", + "rshares": "3063594286", + "percent": "4300", + "reputation": 0 + }, + { + "voter": "laonie7", + "rshares": "7942123026", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "laonie8", + "rshares": "7031406262", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "laonie9", + "rshares": "7028172275", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "laonie10", + "rshares": "7024578314", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@laonie1/this-is-a-test", + "root_title": "This is a test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 807480, + "author": "gregnie", + "permlink": "test-again", + "category": "test", + "title": "test again", + "body": "this is a test again.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-31T00:52:21", + "last_update": "2016-08-31T00:52:21", + "depth": 0, + "children": 0, + "net_rshares": 52403036896, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-01T01:58:00", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.019 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 21, + "active_votes": [ + { + "voter": "drinkzya", + "rshares": "34873624275", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "laonie1", + "rshares": "1588471883", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie2", + "rshares": "1590320654", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie3", + "rshares": "1590902281", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie4", + "rshares": "1590642190", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie5", + "rshares": "1590567721", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie6", + "rshares": "1590416046", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie7", + "rshares": "1590250709", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie8", + "rshares": "1590083299", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie9", + "rshares": "1589989115", + "percent": "500", + "reputation": 0 + }, + { + "voter": "gregnie", + "rshares": "62044982", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "laonie10", + "rshares": "1589655616", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie11", + "rshares": "1566068125", + "percent": "500", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@gregnie/test-again", + "root_title": "test again", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 889524, + "author": "zionuziriel", + "permlink": "kindly-upvote", + "category": "test", + "title": "KINDLY UPVOTE", + "body": "\n

Hello everyone :) Kindly upvote.
\n
\n-Test

\n", + "json_metadata": "{\"tags\":[\"test\",\"upvote\"]}", + "created": "2016-09-08T05:23:21", + "last_update": "2016-09-08T05:23:21", + "depth": 0, + "children": 1, + "net_rshares": 69600101439, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-09T06:17:03", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.015 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 69, + "active_votes": [ + { + "voter": "zionuziriel", + "rshares": "63736720", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "uziriel", + "rshares": "55929928", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@zionuziriel/kindly-upvote", + "root_title": "KINDLY UPVOTE", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 765498, + "author": "feruz", + "permlink": "test-2016827t14139950z", + "category": "test", + "title": "Test", + "body": "

This is test post with new markdown editor.

​H1

​H2

​H3

​H4

​H5
​H6

​paragraph text

​pre text

​quote text



bold  underline italic stroked 





", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-27T11:13:06", + "last_update": "2016-08-27T11:13:06", + "depth": 0, + "children": 1, + "net_rshares": 26057046444, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-27T11:26:12", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.005 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 2322, + "active_votes": [ + { + "voter": "good-karma", + "rshares": "26742232944", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rkpl", + "rshares": "-800104186", + "percent": "-10000", + "reputation": 0 + }, + { + "voter": "sergey44", + "rshares": "114917686", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@feruz/test-2016827t14139950z", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 753411, + "author": "feruz", + "permlink": "test-post-2016826t13935375z", + "category": "test", + "title": "Test post", + "body": "Testing iOS posting\n\n#### Heading ####\n\nEditing post\n\n# Heading #\n\n", + "json_metadata": "{\"tags\":[\"test\",\"spam\"]}", + "created": "2016-08-26T10:09:39", + "last_update": "2016-08-26T10:10:18", + "depth": 0, + "children": 0, + "net_rshares": 24517139679, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-25T22:09:39", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.005 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 67, + "active_votes": [ + { + "voter": "good-karma", + "rshares": "24517139679", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@feruz/test-post-2016826t13935375z", + "root_title": "Test post", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 730369, + "author": "feruz", + "permlink": "test-2016824t15279369z", + "category": "test", + "title": "Test", + "body": "https://www.youtube.com/watch?v=BCXYw6N2nOA\n\n\nhttps://www.youtube.com/watch?v=k70b3MLpz_U\n\n\n\n@good-karma", + "json_metadata": "{\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=BCXYw6N2nOA\",\"https:\\/\\/www.youtube.com\\/watch?v=k70b3MLpz_U\"],\"users\":[\"good-karma\"],\"tags\":[\"test\",\"esteem\"]}", + "created": "2016-08-24T12:27:09", + "last_update": "2016-08-24T12:27:09", + "depth": 0, + "children": 1, + "net_rshares": 26891674361, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-24T13:30:03", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.005 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 104, + "active_votes": [ + { + "voter": "good-karma", + "rshares": "26728920407", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "digipzle969", + "rshares": "58699961", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "f1111111", + "rshares": "51109965", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jbaker585", + "rshares": "52944028", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@feruz/test-2016824t15279369z", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 727996, + "author": "feruz", + "permlink": "test-2016824t92740421z", + "category": "test", + "title": "Test", + "body": "Test post\n\n**Bold**\n\n*italic*\n\n# Heading #\n\n Code\n \n* list\n* dfdg\n\n1. number\n2. list\n\n----------\n\n# Heading #\n\n## Heading ##\n\n### Heading ###\n\n#### Heading ####", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-24T06:27:39", + "last_update": "2016-08-24T06:27:39", + "depth": 0, + "children": 1, + "net_rshares": 27206441238, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-24T07:18:24", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.005 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 166, + "active_votes": [ + { + "voter": "good-karma", + "rshares": "26728969107", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "whispershaper", + "rshares": "55067873", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "yggsius", + "rshares": "55052340", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "silaev", + "rshares": "53513538", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "f1111111", + "rshares": "50066904", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lapina", + "rshares": "52825802", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jannada", + "rshares": "52794919", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kamila74", + "rshares": "52732658", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "svetabrigadir", + "rshares": "52723574", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "zenna", + "rshares": "52694523", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@feruz/test-2016824t92740421z", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 839863, + "author": "str11ngfello", + "permlink": "transaction-signing-a-post-from-steemy-5", + "category": "test", + "title": "Transaction signing a post from Steemy 5", + "body": "Pardon the intrusion, this is a live test from Steemy for iOS 3 \n http://i.giphy.com/l0HlKylC4U2R1l8vm.gif", + "json_metadata": "{\"category\":\"testing_category\",\"tags\":[\"steemy_testing1\",\"steemy_testing2\"]}", + "created": "2016-09-03T00:07:33", + "last_update": "2016-09-03T00:07:33", + "depth": 0, + "children": 0, + "net_rshares": 19069014880, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T12:07:33", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.004 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 106, + "active_votes": [ + { + "voter": "str11ngfello", + "rshares": "19069014880", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@str11ngfello/transaction-signing-a-post-from-steemy-5", + "root_title": "Transaction signing a post from Steemy 5", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 727662, + "author": "libertyism", + "permlink": "6g1sn5-test", + "category": "test", + "title": "Test", + "body": "\n

425x243px

\n

\n", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/d32113cda0.png\"]}", + "created": "2016-08-24T05:35:27", + "last_update": "2016-08-24T05:35:27", + "depth": 0, + "children": 1, + "net_rshares": 17633674353, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-24T05:35:54", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.003 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 113, + "active_votes": [ + { + "voter": "luminousvisions", + "rshares": "17580966372", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "stas44", + "rshares": "52707981", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@libertyism/6g1sn5-test", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_no_results.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_no_results.pat.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_no_results.pat.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json new file mode 100644 index 00000000..13dc9efd --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json @@ -0,0 +1,1574 @@ +[ + { + "post_id": 960531, + "author": "chitty", + "permlink": "re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z", + "category": "steemit", + "title": "", + "body": "But this is not an issue of Top Witnesses vs Backup witnesses. This is an issue that involves all members of the Steemit. If top witnesses keep receiving 1,370 Steems per day, their voting influence will keep growing while the rest of the users see their voting power diminished.", + "json_metadata": "{\"tags\":[\"steemit\"]}", + "created": "2016-09-15T18:52:09", + "last_update": "2016-09-15T18:52:09", + "depth": 4, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T15:31:24", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 279, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t184349883z", + "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z", + "root_title": "A balanced voting system is impossible with current witness’s payouts.", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 958542, + "author": "woman-onthe-wing", + "permlink": "re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z", + "category": "introducemyself", + "title": "", + "body": "Thanks very much!", + "json_metadata": "{\"tags\":[\"introducemyself\"]}", + "created": "2016-09-15T15:04:09", + "last_update": "2016-09-15T15:04:09", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T01:44:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 17, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t071444722z", + "url": "/introducemyself/@woman-onthe-wing/introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle#@woman-onthe-wing/re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z", + "root_title": "Introduction post - Gold at the end of the rainbow... On the Emerald Isle", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 958150, + "author": "chitty", + "permlink": "re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z", + "category": "steemit", + "title": "", + "body": "This is true, but you have to agree that the gap between top 19 witnesses and the rest of the users is getting bigger... nobody buys 1,370 steem per day, every day!... its impossible to match. The result of this is richer witnesses with more influence and \"normal\" users with very little to no influence at all.", + "json_metadata": "{\"tags\":[\"steemit\"]}", + "created": "2016-09-15T14:21:09", + "last_update": "2016-09-15T14:21:09", + "depth": 2, + "children": 2, + "net_rshares": 1000247174970, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T15:31:24", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.275 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 311, + "active_votes": [ + { + "voter": "liondani", + "rshares": "1000247174970", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t141551322z", + "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z", + "root_title": "A balanced voting system is impossible with current witness’s payouts.", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 957646, + "author": "arcange", + "permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", + "category": "stats", + "title": "", + "body": "Lol. You're welcome!\nBut I suspect you're working hard to hit the top 20 chart with your two comments :p", + "json_metadata": "{\"tags\":[\"stats\"]}", + "created": "2016-09-15T13:24:15", + "last_update": "2016-09-15T13:24:15", + "depth": 4, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T13:44:39", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 104, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", + "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", + "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 957511, + "author": "arcange", + "permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", + "category": "stats", + "title": "", + "body": "That's the purpose of using FREETEXT() instead of CONTAINS()", + "json_metadata": "{\"tags\":[\"stats\"]}", + "created": "2016-09-15T13:06:18", + "last_update": "2016-09-15T13:06:18", + "depth": 2, + "children": 3, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T13:44:39", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 60, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", + "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", + "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 956069, + "author": "gamer00", + "permlink": "re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z", + "category": "introducemyself", + "title": "", + "body": "Thank you!", + "json_metadata": "{\"tags\":[\"introducemyself\"]}", + "created": "2016-09-15T07:54:42", + "last_update": "2016-09-15T07:54:42", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T03:45:30", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 10, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t071902704z", + "url": "/introducemyself/@gamer00/hi-i-m-jaro-and-this-is-my-introductory-verification-post#@gamer00/re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z", + "root_title": "Hi! I'm Jaro and this is my introductory verification post!", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 823649, + "author": "lilmisjenn", + "permlink": "re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z", + "category": "food", + "title": "", + "body": "See there is a positive to everything! That does sound like quite the cold compromise though! You should post up some pictures of the cherries! I love cherry picking! Yumm!", + "json_metadata": "{\"tags\":[\"food\"]}", + "created": "2016-09-01T14:18:48", + "last_update": "2016-09-01T14:18:48", + "depth": 4, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-26T08:08:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 172, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160829t070902349z", + "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z", + "root_title": "Do you have a drinking problem??", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 814638, + "author": "itay", + "permlink": "re-witness-gtg", + "category": "witness-category", + "title": "", + "body": "I upvoted You", + "json_metadata": "{}", + "created": "2016-08-31T17:00:21", + "last_update": "2016-08-31T17:00:21", + "depth": 1, + "children": 0, + "net_rshares": 28441749901, + "last_payout": "2016-09-05T05:17:57", + "cashout_time": "1969-12-31T23:59:59", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 13, + "active_votes": [ + { + "voter": "noaommerrr", + "rshares": "28864035808", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cheetah20", + "rshares": "-100075931", + "percent": "-10000", + "reputation": 0 + }, + { + "voter": "cheetah19", + "rshares": "-123906339", + "percent": "-10000", + "reputation": 0 + }, + { + "voter": "cheetah21", + "rshares": "-99152161", + "percent": "-10000", + "reputation": 0 + }, + { + "voter": "cheetah22", + "rshares": "-99151476", + "percent": "-10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "url": "/witness-category/@gtg/witness-gtg#@itay/re-witness-gtg", + "root_title": "Witness \"gtg\"", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 808051, + "author": "melissarhiann", + "permlink": "re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z", + "category": "introduceyourself", + "title": "", + "body": "Hi and thanks! I've been attempting to figure out how to add a picture. I'll get it at some point :)", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "created": "2016-08-31T02:16:54", + "last_update": "2016-08-31T02:16:54", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-26T08:42:15", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 100, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-melissarhiann-lasting-impression-20160826t083943073z", + "url": "/introduceyourself/@melissarhiann/lasting-impression#@melissarhiann/re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z", + "root_title": "Lasting Impression", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 802893, + "author": "djm34", + "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z", + "category": "steem", + "title": "", + "body": "actually I won't send, however I expect to receive... lol (as you can see wanting to know who is who is a totally legitimate question...)", + "json_metadata": "{\"tags\":[\"steem\"]}", + "created": "2016-08-30T17:06:09", + "last_update": "2016-08-30T17:07:15", + "depth": 3, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-30T17:29:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 138, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", + "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@djm34/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z", + "root_title": "[Bounty] Community bounty for open source GPU miner.", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 802611, + "author": "complexring", + "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z", + "category": "steem", + "title": "", + "body": "I don't see where @djm34 said that he doesn't trust @picokernel. That is a rather harsh accusation when all this user has done is stated he doesn't believe they are gpu miners. I see nothing else in his comment beyond that.", + "json_metadata": "{\"tags\":[\"steem\"],\"users\":[\"djm34\",\"picokernel\"]}", + "created": "2016-08-30T16:40:03", + "last_update": "2016-08-30T16:40:03", + "depth": 3, + "children": 3, + "net_rshares": 23276351497, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-30T17:29:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 225, + "active_votes": [ + { + "voter": "richman", + "rshares": "10013306404", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "carlidos", + "rshares": "13209570416", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "riv", + "rshares": "53474677", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", + "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@complexring/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z", + "root_title": "[Bounty] Community bounty for open source GPU miner.", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 794736, + "author": "emsenn", + "permlink": "re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z", + "category": "introduceyourself", + "title": "", + "body": "Thanks! I'm really enjoying the site so far - beyond the technical aspects, the content here all seems pretty high-quality.", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "created": "2016-08-29T22:45:33", + "last_update": "2016-08-29T22:45:33", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-29T22:31:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 123, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t213519226z", + "url": "/introduceyourself/@emsenn/introducing-myself-bitcoin-early-adopter-content-producer-and-designer#@emsenn/re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z", + "root_title": "Introducing Myself: Bitcoin Early Adopter, Content Producer & Designer", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 776630, + "author": "lilmisjenn", + "permlink": "re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z", + "category": "food", + "title": "", + "body": "It took me a long time until I could say I have them from my own garden. That is why I am so appreciative and can make such a silly post over such simplicity! It is a skill I have also worked on mastering over the years. Thanks for your comment and for appreciating my fruit tree! I shall grow it for all that cannot and be extra grateful for its produce. What is your climate like? I also have restrictions on what I can grow around here due to climate. But its a small sacrifice for the serenity.", + "json_metadata": "{\"tags\":[\"food\"]}", + "created": "2016-08-28T11:46:00", + "last_update": "2016-08-28T11:46:00", + "depth": 2, + "children": 2, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-26T08:08:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 498, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-lilmisjenn-do-you-have-a-drinking-problem-20160826t085857261z", + "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z", + "root_title": "Do you have a drinking problem??", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 767624, + "author": "timcliff", + "permlink": "re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", + "category": "mining", + "title": "", + "body": "I've been mining since last Friday and haven't found a block yet, so there are no witness details for my account yet. I wanted to check the \"total_missed\" count, since it sounds like this post could be describing my issue. After talking to peeps on Steemit chat, it sounds like I need to change the keys I'm using. I'm currently using my 'owner private' key for both.", + "json_metadata": "{\"tags\":[\"mining\"]}", + "created": "2016-08-27T15:51:15", + "last_update": "2016-08-27T15:51:15", + "depth": 3, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-21T13:01:45", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 367, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", + "root_title": "Missing rewards while mining - common mistake with keys", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 766749, + "author": "timcliff", + "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", + "category": "mining", + "title": "", + "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", + "json_metadata": "{\"tags\":[\"mining\"]}", + "created": "2016-08-27T14:13:18", + "last_update": "2016-08-27T14:13:18", + "depth": 1, + "children": 3, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-21T13:01:45", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 74, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-missing-rewards-while-mining-20160827t141319137z", + "root_title": "Missing rewards while mining - common mistake with keys", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 763016, + "author": "eternalmoon", + "permlink": "re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z", + "category": "aboutme", + "title": "", + "body": "I wanted to, I just didn't know how. But someone did link me to a thing. Thanks for the advice!\nP.S. Cats are adorable! :D", + "json_metadata": "{\"tags\":[\"aboutme\"]}", + "created": "2016-08-27T04:15:48", + "last_update": "2016-08-27T04:15:48", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-26T09:23:57", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 122, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-eternalmoon-this-is-my-about-me-entry-enjoy-20160826t094835368z", + "url": "/aboutme/@eternalmoon/this-is-my-about-me-entry-enjoy#@eternalmoon/re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z", + "root_title": "This is my about me entry (: Enjoy~", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 759894, + "author": "ania", + "permlink": "re-gtg-re-ania-hello-world-20160826t211629005z", + "category": "introduceyourself", + "title": "", + "body": "Thank you Gandalf :)", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "created": "2016-08-26T21:16:45", + "last_update": "2016-08-26T21:16:45", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-26T21:18:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 20, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-ania-hello-world-20160826t185305711z", + "url": "/introduceyourself/@ania/hello-world#@ania/re-gtg-re-ania-hello-world-20160826t211629005z", + "root_title": "Hello World!", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 758311, + "author": "orcish", + "permlink": "re-gtg-re-orcish-my-introduction-20160826t185829224z", + "category": "zee", + "title": "", + "body": "Thank you :)", + "json_metadata": "{\"tags\":[\"zee\"]}", + "created": "2016-08-26T18:58:27", + "last_update": "2016-08-26T18:58:27", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-27T01:07:09", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 12, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-orcish-my-introduction-20160826t080607987z", + "url": "/zee/@orcish/my-introduction#@orcish/re-gtg-re-orcish-my-introduction-20160826t185829224z", + "root_title": "My Introduction", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 757931, + "author": "bumblebrii", + "permlink": "re-gtg-re-bumblebrii-about-me-20160826t182001959z", + "category": "introduceyourself", + "title": "", + "body": "Oh yes of course. I subscribe to a lot of different artists for my coloring pages. One had sent me the link to her blog and kind of just ended up sticking around and read a few blogs. Next thing i know, I signed up haha.", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "created": "2016-08-26T18:20:12", + "last_update": "2016-08-26T18:20:12", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-26T08:05:57", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 220, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-bumblebrii-about-me-20160826t094306616z", + "url": "/introduceyourself/@bumblebrii/about-me#@bumblebrii/re-gtg-re-bumblebrii-about-me-20160826t182001959z", + "root_title": "About me", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 754968, + "author": "mynomadicyear", + "permlink": "re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z", + "category": "travel", + "title": "", + "body": "Hi gtg, thanks for stopping by :)", + "json_metadata": "{\"tags\":[\"travel\"]}", + "created": "2016-08-26T13:29:27", + "last_update": "2016-08-26T13:29:27", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-26T16:08:51", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 33, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-mynomadicyear-16-months-out-of-a-suitcase-20160826t090811525z", + "url": "/travel/@mynomadicyear/16-months-out-of-a-suitcase#@mynomadicyear/re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z", + "root_title": "16 Months Out Of A Suitcase", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 754013, + "author": "seasoul", + "permlink": "re-gtg-re-seasoul-aboutme-20160826t113727450z", + "category": "introduceyourself", + "title": "", + "body": "thankyou! :) hi there", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "created": "2016-08-26T11:37:33", + "last_update": "2016-08-26T11:37:33", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-25T19:26:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 21, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-seasoul-aboutme-20160826t095320794z", + "url": "/introduceyourself/@seasoul/aboutme#@seasoul/re-gtg-re-seasoul-aboutme-20160826t113727450z", + "root_title": "Aboutme", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 751872, + "author": "mammasitta", + "permlink": "re-gtg-witness-gtg-20160826t052714859z", + "category": "witness-category", + "title": "", + "body": "I think you would be a great witness . I appreciate your time helping me 🙌", + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "created": "2016-08-26T05:27:15", + "last_update": "2016-08-26T05:27:15", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "2016-09-05T05:17:57", + "cashout_time": "1969-12-31T23:59:59", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 74, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "url": "/witness-category/@gtg/witness-gtg#@mammasitta/re-gtg-witness-gtg-20160826t052714859z", + "root_title": "Witness \"gtg\"", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 693986, + "author": "gtg", + "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", + "category": "mining", + "title": "", + "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", + "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https:\\/\\/steemit.chat\\/channel\\/mining\"]}", + "created": "2016-08-21T13:12:45", + "last_update": "2016-08-21T13:12:45", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-21T13:01:45", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 140, + "active_votes": [], + "author_reputation": 3920426655270, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "url": "/mining/@gtg/missing-rewards-while-mining#@gtg/re-gtg-missing-rewards-while-mining-20160821t131242531z", + "root_title": "Missing rewards while mining - common mistake with keys", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 693858, + "author": "gary-smith", + "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", + "category": "mining", + "title": "", + "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", + "json_metadata": "{\"tags\":[\"mining\"]}", + "created": "2016-08-21T12:52:06", + "last_update": "2016-08-21T12:52:06", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-21T13:01:45", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 105, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "url": "/mining/@gtg/missing-rewards-while-mining#@gary-smith/re-gtg-missing-rewards-while-mining-20160821t125207685z", + "root_title": "Missing rewards while mining - common mistake with keys", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 650924, + "author": "abit", + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z", + "category": "witness-category", + "title": "", + "body": "The private seed nodes still need to connect to the rest of the network to be able to sync and broadcast new blocks. So from an attacker's pov perhaps it's cheaper/easier to attack the public seed nodes directly.", + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "created": "2016-08-18T03:32:12", + "last_update": "2016-08-18T03:32:12", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T20:13:00", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 212, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@abit/re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z", + "root_title": "Heavy duty witness node infrastructure", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 640215, + "author": "okay", + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z", + "category": "witness-category", + "title": "", + "body": "`gtg said: Please note that setting up all seed nodes in a single data center won’t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway.`\n\nThat is unless the data center provides a variety of network routes from different providers and your seed nodes are therefore located on different wide area networks even when on the same LAN. This is possible on today's top of the line data centers.\nOf course decentralization is always good so several locations for seed nodes and witnesses is a plus. Good post. \nJust installed a witness node. Consider to [Vote for witness okay](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network)", + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https:\\/\\/steemit.com\\/witness-category\\/@okay\\/new-witness-okay-a-great-addition-to-the-steem-network\"]}", + "created": "2016-08-17T12:06:03", + "last_update": "2016-08-17T12:06:03", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T20:13:00", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 714, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@okay/re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z", + "root_title": "Heavy duty witness node infrastructure", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 637902, + "author": "mammasitta", + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z", + "category": "witness-category", + "title": "", + "body": "I just saw your article now and followed you . In this way I don't miss your new ones .", + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "created": "2016-08-17T07:03:33", + "last_update": "2016-08-17T07:03:33", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T20:13:00", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 87, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@mammasitta/re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z", + "root_title": "Heavy duty witness node infrastructure", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 636638, + "author": "dajohns1420", + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z", + "category": "witness-category", + "title": "", + "body": "I wish I was intelligent enough to participate in this conversation.", + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "created": "2016-08-17T04:00:42", + "last_update": "2016-08-17T04:00:42", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T20:13:00", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 68, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dajohns1420/re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z", + "root_title": "Heavy duty witness node infrastructure", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635741, + "author": "dr2073", + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z", + "category": "witness-category", + "title": "", + "body": "Really good infrastructure top 19 sure can implement for better protection of their nodes. \nThough Steem network as whole have good protection against DDoS - even if most of 19 will go offline other witnesses will do their job, we just need more active and up-to-date witnesses. \nI personally too want become good witness and currently learning all nuances of secure operation of node.", + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "created": "2016-08-17T02:12:48", + "last_update": "2016-08-17T02:12:48", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T20:13:00", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 385, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dr2073/re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z", + "root_title": "Heavy duty witness node infrastructure", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 632723, + "author": "wackou", + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z", + "category": "witness-category", + "title": "", + "body": "great post! I completely agree with the analysis of the problem as well as the proposed solution. I actually wanted to implement something similar some time ago, during BitShares times, but then BitShares 2.0 happened and there were a lot more urgent things to do, so this got sidetracked. See [here](http://digitalgaia.io/backbone.html) for the same analysis, where those nodes were called \"backbone nodes\" as they were intended to be shared between witnesses. Witnesses were paid a lot less during that time so I intended to have this as a public service, although that would mean that witnesses had to trust the operator of the backbone. Having your own personal line of defense is obviously much better. I still believe that this is an extremely important issue that should be tackled as soon as possible, and was planning to reboot this proposal as soon as I got some free time (haha good one!). In all seriousness, I believe that this is not too much work, but there will be some features that need to be added to the network code of the steemd client, in order to limit the nodes the client can connect too, as well as ensuring that your backbone nodes do not share the IP of your witness node (was in bts 0.9.x, but not in 2.0 nor steem I believe). This can probably also be implemented with some sort of VPN I guess, but I'm a coder, not a sysadmin, so I can't tell for sure. I even thought (fantasized) about how to make these nodes replace themselves autonomously when attacked via DDoS using messages on the blockchain, in order to simulate a resilient, living organism. Now you see where part of the \"overmind\" idea came from, too :) That is a discussion for a bit later, though...", + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"http:\\/\\/digitalgaia.io\\/backbone.html\"]}", + "created": "2016-08-16T21:28:48", + "last_update": "2016-08-16T21:28:48", + "depth": 1, + "children": 0, + "net_rshares": 4818972403787, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T20:13:00", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "6.136 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 1694, + "active_votes": [ + { + "voter": "roadscape", + "rshares": "3273182637316", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "steemychicken1", + "rshares": "1446333470877", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "full-steem-ahead", + "rshares": "49042313956", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "johnerfx", + "rshares": "9767505930", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "johnerminer", + "rshares": "848329794", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gtg", + "rshares": "39798145914", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@wackou/re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z", + "root_title": "Heavy duty witness node infrastructure", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 632008, + "author": "jesta", + "permlink": "re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z", + "category": "witness-category", + "title": "", + "body": "That's awesome :)\n\nI love seeing these kinds of advanced setups being theorized, tested and deployed!", + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "created": "2016-08-16T20:31:06", + "last_update": "2016-08-16T20:31:06", + "depth": 3, + "children": 0, + "net_rshares": 19467531428, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T20:13:00", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 101, + "active_votes": [ + { + "voter": "ausbitbank", + "rshares": "19467531428", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t201857176z", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z", + "root_title": "Heavy duty witness node infrastructure", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 631654, + "author": "brandonp", + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z", + "category": "witness-category", + "title": "", + "body": "Reading stuff like this makes me realize just how little I know about this whole thing...", + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "created": "2016-08-16T20:01:27", + "last_update": "2016-08-16T20:01:27", + "depth": 1, + "children": 0, + "net_rshares": 43586128402, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T20:13:00", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.024 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 89, + "active_votes": [ + { + "voter": "brandonp", + "rshares": "43533730799", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "doze49", + "rshares": "52397603", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@brandonp/re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z", + "root_title": "Heavy duty witness node infrastructure", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 631312, + "author": "thecryptofiend", + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z", + "category": "witness-category", + "title": "", + "body": "Thanks for explaining. You've got my witness vote now.", + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "created": "2016-08-16T19:31:06", + "last_update": "2016-08-16T19:31:06", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T20:13:00", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 55, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thecryptofiend/re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z", + "root_title": "Heavy duty witness node infrastructure", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 631058, + "author": "jesta", + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z", + "category": "witness-category", + "title": "", + "body": "I love the idea in this, basically setting up a fortress for your witness node to be more resilient. \n\nOne thing you're right about though is it would be a somewhat expensive venture. At the rate I'm witnessing blocks (maybe 3-4 a day?), it's not feasible to sustain itself financially, but I imagine the top 19 could easily go this route. Maybe even some of the people in the top 30?\n\nI'd be more than willing to help prototype this type of infrastructure. I've been considering how difficult it would be to setup on AWS with a CloudFormation script that spins up seed nodes as ECS Containers, VPCs in every region that all interconnect via private networking, and an EC2 container for your witness node that's not accessible from the internet, but only the seed nodes. \n\nIt really shouldn't be all that hard, and even non-technical witnesses could copy/paste the cloudformation script to get started. Of course with this idea, if AWS is attacked, you're still the mercy of them being able to handle it.", + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "created": "2016-08-16T19:11:06", + "last_update": "2016-08-16T19:11:06", + "depth": 1, + "children": 2, + "net_rshares": 6486910806264, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T20:13:00", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "9.966 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 1005, + "active_votes": [ + { + "voter": "wackou", + "rshares": "6327910390022", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "johnerfx", + "rshares": "9559686655", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "johnerminer", + "rshares": "829049571", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gtg", + "rshares": "38432804053", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ausbitbank", + "rshares": "19873104999", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "arcurus", + "rshares": "44706057470", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mibenkito", + "rshares": "31463628969", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "someguy123", + "rshares": "14083166401", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "xomtux", + "rshares": "52918124", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z", + "root_title": "Heavy duty witness node infrastructure", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 631016, + "author": "thebluepanda", + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z", + "category": "witness-category", + "title": "", + "body": "i was checking if you tagged it in #witness-category ;) \nglad to see steemit has a great team of security devs and glad to have upvoted you as witness.", + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "created": "2016-08-16T19:08:06", + "last_update": "2016-08-16T19:08:06", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T20:13:00", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 151, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thebluepanda/re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z", + "root_title": "Heavy duty witness node infrastructure", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 630835, + "author": "someguy123", + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z", + "category": "witness-category", + "title": "", + "body": "I can tell you're definitely a well-invested witness. You have my vote. \n\nThese details could help to improve the general quality of witnesses on the network", + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "created": "2016-08-16T18:52:48", + "last_update": "2016-08-16T18:52:48", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T20:13:00", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 157, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@someguy123/re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z", + "root_title": "Heavy duty witness node infrastructure", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 630198, + "author": "vishal1", + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z", + "category": "witness-category", + "title": "", + "body": "THis is something. @gtg", + "json_metadata": "{\"tags\":[\"witness-category\"],\"users\":[\"gtg\"]}", + "created": "2016-08-16T18:12:21", + "last_update": "2016-08-16T18:12:21", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T20:13:00", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 23, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@vishal1/re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z", + "root_title": "Heavy duty witness node infrastructure", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 613314, + "author": "dennygalindo", + "permlink": "re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z", + "category": "steemit-ideas", + "title": "", + "body": "Gamification is what makes this so addictive to me. I get like 2c for finding a good post but it's fun to try to guess which will be good and time it. I can't put my phone down. My data is through the roof, I keep getting distracted and losing things. Curation rewards are key! I think it would help drive adoption if newbies had a better shot at curation rewards. I know they don't want a lot of bots here but maybe you could give newbies super votes ( only when at 100 percent) that lets them earn rewards at least once a day. (As @dantheman said [here](https://steemit.com/steem/@dantheman/curation-rewards-and-voting-incentive) the optimal minnow strategy is not to vote).", + "json_metadata": "{\"tags\":[\"steemit-ideas\"],\"users\":[\"dantheman\"],\"links\":[\"https:\\/\\/steemit.com\\/steem\\/@dantheman\\/curation-rewards-and-voting-incentive\"]}", + "created": "2016-08-15T14:15:42", + "last_update": "2016-08-15T14:16:39", + "depth": 2, + "children": 0, + "net_rshares": 914681294136, + "last_payout": "2016-09-15T07:07:00", + "cashout_time": "1969-12-31T23:59:59", + "total_payout_value": "0.601 HBD", + "curator_payout_value": "0.198 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 677, + "active_votes": [ + { + "voter": "liondani", + "rshares": "910501669843", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dennygalindo", + "rshares": "4179624293", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t123329115z", + "url": "/steemit-ideas/@liondani/don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page#@dennygalindo/re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z", + "root_title": "DON'T REMOVE Curation Rewards! Just stop them when the post reach the trending page !!!", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 465280, + "author": "iaco", + "permlink": "re-gtg-witness-gtg-20160805t161219379z", + "category": "witness-category", + "title": "", + "body": "As the computer world beyond user interfaces is a magical realm to me, the only way I can get my brain to completely understand it is to just let go and tell my self it's all made of unicorns and runes being cast to make the magic happen :) I thank you for your work:)", + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "created": "2016-08-05T16:12:21", + "last_update": "2016-08-05T16:12:21", + "depth": 1, + "children": 1, + "net_rshares": 1374704925, + "last_payout": "2016-09-05T05:17:57", + "cashout_time": "1969-12-31T23:59:59", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 269, + "active_votes": [ + { + "voter": "earnest", + "rshares": "1374704925", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "url": "/witness-category/@gtg/witness-gtg#@iaco/re-gtg-witness-gtg-20160805t161219379z", + "root_title": "Witness \"gtg\"", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 464773, + "author": "cire81", + "permlink": "re-gtg-witness-gtg-20160805t154528701z", + "category": "witness-category", + "title": "", + "body": "Thank you for spending your time to make steemit secure. Thanks to people like you we have a much safer environment. Were you paid for your effort on steem?", + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "created": "2016-08-05T15:45:27", + "last_update": "2016-08-05T15:45:27", + "depth": 1, + "children": 2, + "net_rshares": 780445155353, + "last_payout": "2016-09-05T05:17:57", + "cashout_time": "1969-12-31T23:59:59", + "total_payout_value": "0.650 HBD", + "curator_payout_value": "0.216 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 156, + "active_votes": [ + { + "voter": "steemship", + "rshares": "769829319629", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "johnerfx", + "rshares": "9767505930", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "johnerminer", + "rshares": "848329794", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "url": "/witness-category/@gtg/witness-gtg#@cire81/re-gtg-witness-gtg-20160805t154528701z", + "root_title": "Witness \"gtg\"", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 427686, + "author": "mefisto", + "permlink": "re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z", + "category": "polish", + "title": "", + "body": "Kryterium wyboru delegata to osobna sprawa. Co delegat powinien potrafić? Co robić? Czy powinien poniekąd służyć swoim wyborcom?\nJedno zdaje się być pewne - **powinien być aktywnym członkiem społeczności steemit.** \nJestem przekonany, że jesteśmy w stanie wybrać / wskazać kilka osób, które mogłyby zbierać glosy polskiej społeczności. \n\nJeśli się nie mylę, głosów będzie więcej - jeśli system głosowania na dodatkowych kandydatów będzie prostszy dla przeciętnego pożeracza blogów... np. pojawi się ładny graficzny klient pod windozę.", + "json_metadata": "{\"tags\":[\"polish\"]}", + "created": "2016-08-03T12:56:33", + "last_update": "2016-08-03T12:58:57", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "2016-09-03T03:24:06", + "cashout_time": "1969-12-31T23:59:59", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 534, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t123936611z", + "url": "/polish/@mefisto/pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness#@mefisto/re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z", + "root_title": "[PL] Czy polska społeczność powinna mieć swojego delegata (witness) ?", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 38463, + "author": "edu-lopov", + "permlink": "re-gtg-hello-world-20160704t182251522z", + "category": "introduceyourself", + "title": "", + "body": "Welcome to Steemit Gandalf!", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "created": "2016-07-04T18:22:51", + "last_update": "2016-07-04T18:22:51", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "2016-08-13T21:04:45", + "cashout_time": "1969-12-31T23:59:59", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 27, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "url": "/introduceyourself/@gtg/hello-world#@edu-lopov/re-gtg-hello-world-20160704t182251522z", + "root_title": "Hello, World!", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 37179, + "author": "amartinezque", + "permlink": "re-gtg-hello-world-20160703t224527020z", + "category": "introduceyourself", + "title": "", + "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "created": "2016-07-03T22:45:27", + "last_update": "2016-07-03T22:45:27", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "2016-08-13T21:04:45", + "cashout_time": "1969-12-31T23:59:59", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 84, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "url": "/introduceyourself/@gtg/hello-world#@amartinezque/re-gtg-hello-world-20160703t224527020z", + "root_title": "Hello, World!", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 36953, + "author": "trogdor", + "permlink": "re-gtg-hello-world-20160703t175141501z", + "category": "introduceyourself", + "title": "", + "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "created": "2016-07-03T17:51:48", + "last_update": "2016-07-03T17:51:48", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "2016-08-13T21:04:45", + "cashout_time": "1969-12-31T23:59:59", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 55, + "active_votes": [], + "author_reputation": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "url": "/introduceyourself/@gtg/hello-world#@trogdor/re-gtg-hello-world-20160703t175141501z", + "root_title": "Hello, World!", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_no_results.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_no_results.pat.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_no_results.pat.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index 72f3cf38..d19ea09c 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -55,7 +55,34 @@ extra_kwargs: method: "get_following" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_following last patterns test + + marks: + - patterntest + includes: + - !include common.yaml + + stages: + - name: get_following last + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_following" + params: ["gtg","blocktrades","blog",1000] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_following_last" + directory: "condenser_api_patterns" --- test_name: Hivemind condenser_api.get_follow_count patterns test @@ -144,7 +171,7 @@ directory: "condenser_api_patterns" --- - test_name: Hivemind condenser_api.get_state patterns test + test_name: Hivemind condenser_api.get_state patterns test # Deprecated marks: - patterntest @@ -358,7 +385,7 @@ test_name: Hivemind condenser_api.get_discussions_by_feed patterns test marks: - - patterntest # can't find any params that would give nonempty results + - patterntest # can't find any params that would give nonempty results, tag is not a tag but account includes: - !include common.yaml @@ -412,6 +439,34 @@ method: "get_discussions_by_comments" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_discussions_by_comments unexpected keyword patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_replies_by_last_update unexpected keyword + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_discussions_by_comments" + params: [{"author": "steemit"}] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "get_discussions_by_comments() got an unexpected keyword argument 'author'" + --- test_name: Hivemind condenser_api.get_replies_by_last_update patterns test @@ -440,7 +495,145 @@ extra_kwargs: method: "get_replies_by_last_update" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_replies_by_last_update limit 100 patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + stages: + - name: get_replies_by_last_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_replies_by_last_update" + params: ["gtg","",100] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_replies_by_last_update_limit_100" + directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_replies_by_last_update no results patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_replies_by_last_update no results + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_replies_by_last_update" + params: ["admin","non_existing_permlink",1] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_replies_by_last_update_no_results" + directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_replies_by_last_update exceeds limit patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_replies_by_last_update exceeds limit + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_replies_by_last_update" + params: ["admin","non_existing_permlink",101] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "limit exceeds max (101 > 100)" +--- + test_name: Hivemind condenser_api.get_replies_by_last_update blank start author patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_replies_by_last_update blank start author + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_replies_by_last_update" + params: ["","non_existing_permlink",1] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "`start_author` cannot be blank" + +--- + test_name: Hivemind condenser_api.get_replies_by_last_update invalid account name length patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_replies_by_last_update invalid account name length + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_replies_by_last_update" + params: ["a","non_existing_permlink",1] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "invalid account name length: `a`" + --- test_name: Hivemind condenser_api.get_discussions_by_author_before_date patterns test @@ -469,7 +662,36 @@ extra_kwargs: method: "get_discussions_by_author_before_date" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_discussions_by_author_before_date patterns test + + marks: + - patterntest + - xfail # should return empty set - no posts before 2009 + - failing + includes: + - !include common.yaml + + stages: + - name: get_discussions_by_author_before_date_no_results + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_discussions_by_author_before_date" + params: {"author":"steemit","start_permlink":"firstpost","before_date":"2009-04-19T22:49:43","limit":1} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_discussions_by_author_before_date_no_results" + directory: "condenser_api_patterns" --- test_name: Hivemind condenser_api.get_post_discussions_by_payout patterns test @@ -498,6 +720,63 @@ extra_kwargs: method: "get_post_discussions_by_payout" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_post_discussions_by_payout limit 20 test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_post_discussions_by_payout limit 20 + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_post_discussions_by_payout" + params: {"tag":"test","limit":20} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_post_discussions_by_payout_limit_20" + directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_post_discussions_by_payout no results test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_post_discussions_by_payout no results + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_post_discussions_by_payout" + params: {"tag":"non_existing_tag","limit":20} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_post_discussions_by_payout_no_results" + directory: "condenser_api_patterns" --- test_name: Hivemind condenser_api.get_comment_discussions_by_payout patterns test @@ -527,7 +806,62 @@ extra_kwargs: method: "get_comment_discussions_by_payout" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_comment_discussions_by_payout limit 100 test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_comment_discussions_by_payout limit 100 + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_comment_discussions_by_payout" + params: {"tag":"test","limit":100} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_comment_discussions_by_payout_limit_100" + directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_comment_discussions_by_payout no results test + + marks: + - patterntest + includes: + - !include common.yaml + + stages: + - name: get_comment_discussions_by_payout no results + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_comment_discussions_by_payout" + params: {"tag":"non_existing_tag","limit":100} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_comment_discussions_by_payout_no_results" + directory: "condenser_api_patterns" --- test_name: Hivemind condenser_api.get_blog patterns test @@ -556,7 +890,199 @@ extra_kwargs: method: "get_blog" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_blog limit 100 patterns test + + marks: + - patterntest + - xfail # test should return all steemit account posts, issue: https://gitlab.syncad.com/hive/hivemind/-/issues/53 + - failing + + includes: + - !include common.yaml + + stages: + - name: get_blog limit 100 + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_blog" + params: {"account":"steemit","start_entry_id":0,"limit":100} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_blog_limit_100" + directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_blog no results test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_blog no results + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_blog" + params: {"account":"user","start_entry_id":0,"limit":1} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_blog_no_results" + directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_blog limit exceed test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_blog limit exceed + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_blog" + params: {"account":"steemit","start_entry_id":0,"limit":501} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "limit exceeds max (501 > 500)" +--- + test_name: Hivemind condenser_api.get_blog non existing account test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_blog non existing account + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_blog" + params: {"account":"non.existing","start_entry_id":0,"limit":1} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "account not found: `non.existing`" +--- + test_name: Hivemind condenser_api.get_blog too long account name test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_blog too long account name + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_blog" + params: {"account":"too.long.account.name","start_entry_id":0,"limit":1} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "invalid account name length: `too.long.account.name`" +--- + test_name: Hivemind condenser_api.get_blog too long account name test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_blog too long account name + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_blog" + params: {"account":"too.long.account.name","start_entry_id":0,"limit":1} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "invalid account name length: `too.long.account.name`" +--- + test_name: Hivemind condenser_api.get_blog invalid account test + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_blog invalid account + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_blog" + params: {"account":"invalid_account","start_entry_id":0,"limit":1} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "invalid account char" --- test_name: Hivemind condenser_api.get_blog_entries patterns test -- GitLab From c8d1007f064163d5df7e44f6a7540a21f7edebaa Mon Sep 17 00:00:00 2001 From: Paulina Czempiel Date: Tue, 11 Aug 2020 12:32:11 +0200 Subject: [PATCH 09/49] test_database_api list_comments --- .../list_comments_author_last_update.pat.json | 494 ++++++ ...ts_author_last_update_author_date.pat.json | 494 ++++++ ...thor_last_update_corr_author_date.pat.json | 494 ++++++ ...ments_author_last_update_corr_dap.pat.json | 494 ++++++ ...ents_author_last_update_corr_date.pat.json | 494 ++++++ ...st_comments_by_cashout_first_date.pat.json | 494 ++++++ ...comments_by_cashout_time_all_data.pat.json | 494 ++++++ ...ments_by_cashout_time_future_data.pat.json | 494 ++++++ ...t_comments_by_cashout_time_second.pat.json | 494 ++++++ ...mments_by_last_update_future_date.pat.json | 494 ++++++ ...st_comments_last_update_good_date.pat.json | 494 ++++++ .../list_comments_parent.pat.json | 494 ++++++ .../list_comments_parent_all_data.pat.json | 494 ++++++ .../list_comments_parent_no_data.pat.json | 494 ++++++ ...ist_comments_parent_not_full_data.pat.json | 494 ++++++ ...ist_comments_parent_parent_author.pat.json | 494 ++++++ ...ist_comments_parent_required_data.pat.json | 494 ++++++ .../list_comments_permlink.pat.json | 494 ++++++ ...ist_comments_permlink_good_params.pat.json | 494 ++++++ ...t_comments_permlink_good_permlink.pat.json | 494 ++++++ ...omments_permlink_permlink_no_data.pat.json | 494 ++++++ .../list_comments_root.pat.json | 494 ++++++ .../list_comments_root_all_values.pat.json | 494 ++++++ .../list_comments_root_no_data.pat.json | 494 ++++++ ...ist_comments_root_required_values.pat.json | 494 ++++++ ...nts_root_required_values_comments.pat.json | 494 ++++++ .../test_database_api_patterns.tavern.yaml | 1455 ++++++++++++++++- hivemind/tavern/validate_response.py | 6 + 28 files changed, 14303 insertions(+), 2 deletions(-) create mode 100644 hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_parent.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_root.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json new file mode 100644 index 00000000..5c91fec3 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 361895, + "author": "agent", + "permlink": "re-a-spears-re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t213427581z", + "category": "life", + "parent_author": "a-spears", + "parent_permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", + "title": "", + "body": "haha, you're welcome, happy someone thinks the same way too!", + "json_metadata": "{\"tags\":[\"life\"]}", + "last_update": "2016-07-30T21:34:27", + "created": "2016-07-30T21:34:27", + "active": "2016-07-30T21:34:27", + "last_payout": "2016-08-30T10:16:39", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "agent", + "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 72637, + "author": "ashleybr", + "permlink": "re-a-spears-re-ashleybr-test-20160713t210145406z", + "category": "travel", + "parent_author": "a-spears", + "parent_permlink": "re-ashleybr-test-20160713t203411015z", + "title": "", + "body": "wow you are so kind, thank you sooo much for trying to help me! I appreciate it so much! I actually managed to get a hotel for the night now, but please tell your friend thank you so much from the bottom of my heart.", + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_update": "2016-07-13T21:01:48", + "created": "2016-07-13T21:01:48", + "active": "2016-07-13T21:01:48", + "last_payout": "2016-08-25T12:51:45", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "ashleybr", + "root_permlink": "test", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 863165, + "author": "irit", + "permlink": "re-harvard-republican-club-refuses-to-endorse-donald-trump", + "category": "politics", + "parent_author": "a11at", + "parent_permlink": "harvard-republican-club-refuses-to-endorse-donald-trump", + "title": "", + "body": "I upvote U", + "json_metadata": "{}", + "last_update": "2016-09-05T14:22:54", + "created": "2016-09-05T14:22:54", + "active": "2016-09-05T14:22:54", + "last_payout": "2016-09-07T09:22:36", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "a11at", + "root_permlink": "harvard-republican-club-refuses-to-endorse-donald-trump", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 833045, + "author": "irit", + "permlink": "re-disney-launches-its-own-messaging-app-disney-mix-aimed-at-kids-and-families", + "category": "disney", + "parent_author": "a11at", + "parent_permlink": "disney-launches-its-own-messaging-app-disney-mix-aimed-at-kids-and-families", + "title": "", + "body": "I upvote U", + "json_metadata": "{}", + "last_update": "2016-09-02T09:40:42", + "created": "2016-09-02T09:40:42", + "active": "2016-09-02T09:40:42", + "last_payout": "2016-09-05T10:19:09", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "a11at", + "root_permlink": "disney-launches-its-own-messaging-app-disney-mix-aimed-at-kids-and-families", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 832230, + "author": "irit", + "permlink": "re-kim-woojin-breaks-world-record-in-qualifying-at-rio-olympics", + "category": "record", + "parent_author": "a11at", + "parent_permlink": "kim-woojin-breaks-world-record-in-qualifying-at-rio-olympics", + "title": "", + "body": "I upvote U", + "json_metadata": "{}", + "last_update": "2016-09-02T07:12:45", + "created": "2016-09-02T07:12:45", + "active": "2016-09-02T07:12:45", + "last_payout": "2016-09-05T09:30:45", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "a11at", + "root_permlink": "kim-woojin-breaks-world-record-in-qualifying-at-rio-olympics", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 832042, + "author": "irit", + "permlink": "re-mother-and-son-team-up-for-a-games-first", + "category": "olimpic", + "parent_author": "a11at", + "parent_permlink": "mother-and-son-team-up-for-a-games-first", + "title": "", + "body": "I upvote U", + "json_metadata": "{}", + "last_update": "2016-09-02T06:30:45", + "created": "2016-09-02T06:30:45", + "active": "2016-09-02T06:30:45", + "last_payout": "2016-09-05T09:21:30", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "a11at", + "root_permlink": "mother-and-son-team-up-for-a-games-first", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 831959, + "author": "irit", + "permlink": "re-audi-rs-q3-fl", + "category": "audi", + "parent_author": "a11at", + "parent_permlink": "audi-rs-q3-fl", + "title": "", + "body": "I upvote U", + "json_metadata": "{}", + "last_update": "2016-09-02T06:08:54", + "created": "2016-09-02T06:08:54", + "active": "2016-09-02T06:08:54", + "last_payout": "2016-09-05T10:11:36", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "a11at", + "root_permlink": "audi-rs-q3-fl", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 831734, + "author": "irit", + "permlink": "re-uber-visa-rio", + "category": "visa", + "parent_author": "a11at", + "parent_permlink": "uber-visa-rio", + "title": "", + "body": "I upvote U", + "json_metadata": "{}", + "last_update": "2016-09-02T05:29:21", + "created": "2016-09-02T05:29:21", + "active": "2016-09-02T05:29:21", + "last_payout": "2016-09-05T08:52:03", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "a11at", + "root_permlink": "uber-visa-rio", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 831410, + "author": "irit", + "permlink": "re-greek-pizza", + "category": "pizza", + "parent_author": "a11at", + "parent_permlink": "greek-pizza", + "title": "", + "body": "I upvote U", + "json_metadata": "{}", + "last_update": "2016-09-02T04:30:03", + "created": "2016-09-02T04:30:03", + "active": "2016-09-02T04:30:03", + "last_payout": "2016-09-05T08:39:48", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "a11at", + "root_permlink": "greek-pizza", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 831270, + "author": "irit", + "permlink": "re-wsj-features-coins-ph-as-part-of-a-new-wave-of-financial-services-built-around-smartphones", + "category": "coinsph", + "parent_author": "a11at", + "parent_permlink": "wsj-features-coins-ph-as-part-of-a-new-wave-of-financial-services-built-around-smartphones", + "title": "", + "body": "I upvote U", + "json_metadata": "{}", + "last_update": "2016-09-02T04:09:24", + "created": "2016-09-02T04:09:24", + "active": "2016-09-02T04:09:24", + "last_payout": "2016-09-05T08:53:03", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "a11at", + "root_permlink": "wsj-features-coins-ph-as-part-of-a-new-wave-of-financial-services-built-around-smartphones", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json new file mode 100644 index 00000000..1caafe64 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 951782, + "author": "allgoodthings", + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160914t191355279z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "body": "Congrats to you all! I am new to Steemit and excited to partake in the next challenge. I truly enjoying preparing food!", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-09-14T19:13:51", + "created": "2016-09-14T19:13:51", + "active": "2016-09-14T19:13:51", + "last_payout": "1970-01-01T00:00:00", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 944322, + "author": "haphazard-hstead", + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160913t214242068z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "body": "Nice to hear that you are feeling a lot better, @givemeyoursteem! I'm glad I checked the foodchallenge group on the Steemit chat. Congratulations, everyone! I think all the response just shows how people really connected with the food challenge. I'm looking forward to the next one!", + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", + "last_update": "2016-09-13T21:42:36", + "created": "2016-09-13T21:42:36", + "active": "2016-09-13T21:42:36", + "last_payout": "1970-01-01T00:00:00", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 929311, + "author": "englishtchrivy", + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160912t092547152z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "body": "@knozaki2015 thank you for the 25 SBD and the congrats memo. I appreciate it a great lot! You made me 25SBD richer!\nThanks to everyone who joined this challenge! This was the most fun food challenge I've ever joined- thanks to all the very encouraging co - challengers who participated!\n Congratulations @meesterboom for bagging the 1st prize! Hoot - hoot! Men power!\n\n@givemeyoursteem Thank you for announcing it. I HOPE YOU GO ON WITH WHAT YOU ARE DOING. YOU HAVE BEEN AN INSPIRATION TO MANY MINNOWS WHO ARE JOINING THE FOOD CHALLENGE. IF THE OTHER MINNOWS DON'T SEE THAT YOU ARE DOING THIS TO ACTUALLY SUPPORT US THEN FOR SURE NOT HAVING A FOOD CHALLENGE FOR A WEEK WOULD SURELY TEACH THEM A LESSON. I HOPE YOU SCROLLED DOWN TO THIS POST'S COMMENT THREAD AND DID NOT JUST READ YOUR REPLY FOLDER https://steemit.com/foodchallenge/@givemeyoursteem/steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money\n\nIT'S TRUE SOME MINNOWS HAVE WRITTEN MESSAGES SOME OTHER MINNOWS WHO PARTICIPATED CAN'T GET A GRIP OF , I GUESS THAT'S THE RESULT OF COMMUNICATING ON WRITTEN TEXTS.\nIT'S NOT ACCEPTABLE TO CALL YOU A SCAM BECAUSE YOU HAVE DELIVERED THE RESULTS OF THE 1ST 3 FOOD CHALLENGES ON TIME. WHOEVER HAS CALLED YOU THAT SHOULD APOLOGIZE HERE - OR MAYBE IN AN ARTICLE.\nPLEASE GO ON MAYBE ITS JUST ONE MINNOW WHO CALLED YOU THAT? THE OTHERS WHO PARTICIPATED HERE, INCLUDING MYSELF APPRECIATE WHAT YOU DO A GREAT LOT.\n@givemeyoursteem YOU'RE A HERO AND AN INSPIRATION HERE IN STEEMIT! YOU HAVE HELPED MANY MINNOWS GET NOTICED!\nYOU KNOW YOURSELF BETTER THAN ANYONE ELSE SO WHATEVER NASTY THINGS PEOPLE MAY CALL YOU OR THROW YOU HERE - DON'T GIVE A DAMN ON THAT! I HOPE YOU GO ON! \nTake care and I hope you get to recuperate soon. Best regards from this side of the earth <3", + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"meesterboom\",\"givemeyoursteem\"],\"links\":[\"https://steemit.com/foodchallenge/@givemeyoursteem/steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money\"]}", + "last_update": "2016-09-12T09:54:03", + "created": "2016-09-12T09:25:45", + "active": "2016-09-12T09:54:03", + "last_payout": "2016-09-12T17:37:48", + "depth": 1, + "children": 0, + "net_rshares": "12919640292", + "abs_rshares": "12919640292", + "vote_rshares": "12919640292", + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 925249, + "author": "oumar", + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t205445094z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "body": "Cool! I won 2th place!! Thanks @givemeyoursteem and thanks to all the sponsors!\n\nPlease don't listen to the people criticizing we deeply appreciate your effort on organizing this! Some of us just were anxious to know the results hehe but that is no reason to say bad things. Thanks again for making this possible and I hope there are more challenges soon! Also I hope you are already feeling better.", + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", + "last_update": "2016-09-11T20:57:36", + "created": "2016-09-11T20:54:45", + "active": "2016-09-11T20:57:36", + "last_payout": "2016-09-12T17:37:48", + "depth": 1, + "children": 0, + "net_rshares": "12919640292", + "abs_rshares": "12919640292", + "vote_rshares": "12919640292", + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 924238, + "author": "vi1son", + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t185742671z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "body": "Do not listen to what say the FUDers and haters. Be strong @givemeyoursteem! We all with you!", + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", + "last_update": "2016-09-11T18:57:45", + "created": "2016-09-11T18:57:45", + "active": "2016-09-14T06:01:06", + "last_payout": "2016-09-12T17:37:48", + "depth": 1, + "children": 1, + "net_rshares": "12919640292", + "abs_rshares": "12919640292", + "vote_rshares": "12919640292", + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 922314, + "author": "papa-pepper", + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t145241389z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "body": "## Excellent choices and excellent dishes.\n# Congrats @meesterboom and the rest of the winners!", + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"meesterboom\"]}", + "last_update": "2016-09-11T14:52:42", + "created": "2016-09-11T14:52:42", + "active": "2016-09-11T14:52:42", + "last_payout": "2016-09-12T17:37:48", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 922188, + "author": "alitas", + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t143031067z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "body": "Congratulations to the winners !\n\n•♥•☆ @alitas •☆•♥•", + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"alitas\"]}", + "last_update": "2016-09-11T14:30:39", + "created": "2016-09-11T14:30:39", + "active": "2016-09-11T14:30:39", + "last_payout": "2016-09-12T17:37:48", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 922015, + "author": "gringalicious", + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t140113934z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "body": "Thank you again for hosting the Challenge and I very much appreciate being the wild pick. Looking forward to the next challenge!", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-09-11T14:01:00", + "created": "2016-09-11T14:01:00", + "active": "2016-09-11T14:01:00", + "last_payout": "2016-09-12T17:37:48", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 921769, + "author": "celebr1ty", + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t132117882z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "body": "Thanks a lot!", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-09-11T13:20:33", + "created": "2016-09-11T13:20:33", + "active": "2016-09-11T13:20:33", + "last_payout": "2016-09-12T17:37:48", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 921750, + "author": "bullionstackers", + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t131427021z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "body": "Good stuffs \nI know the pork goes Bang Bang at @meesterboom\n👍\nCongratulations to all winners 👍❤️\nSweet ❤️\nKeep on Steeming ✅👍❤️\nGotta Love it to be in it", + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"meesterboom\"]}", + "last_update": "2016-09-11T13:14:27", + "created": "2016-09-11T13:14:27", + "active": "2016-09-11T13:14:27", + "last_payout": "2016-09-12T17:37:48", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json new file mode 100644 index 00000000..401b15a5 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 779033, + "author": "r4fken", + "permlink": "re-givemeyoursteem-re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t160212524z", + "category": "steemit", + "parent_author": "givemeyoursteem", + "parent_permlink": "re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t152858919z", + "title": "", + "body": "Same here, we invite you to bring cookies to Brussels tho.", + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_update": "2016-08-28T16:02:15", + "created": "2016-08-28T16:02:15", + "active": "2016-08-28T16:02:15", + "last_payout": "2016-08-30T03:35:57", + "depth": 2, + "children": 0, + "net_rshares": -490754060752, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": -7, + "root_author": "allasyummyfood", + "root_permlink": "steemit-cookies-for-the-london-meet-up", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 778975, + "author": "the-future", + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t155605821z", + "category": "steemitphotochallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "body": "Sweden is awesome man!", + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_update": "2016-08-28T15:56:12", + "created": "2016-08-28T15:56:12", + "active": "2016-08-28T15:58:42", + "last_payout": "2016-08-29T15:16:36", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 778824, + "author": "allasyummyfood", + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t154507601z", + "category": "steemitphotochallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "body": "stunning pictures!! wow I'm speechless!", + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_update": "2016-08-28T15:45:06", + "created": "2016-08-28T15:45:06", + "active": "2016-08-28T15:58:09", + "last_payout": "2016-08-29T15:16:36", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 778773, + "author": "allasyummyfood", + "permlink": "re-givemeyoursteem-re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t154119664z", + "category": "steemit", + "parent_author": "givemeyoursteem", + "parent_permlink": "re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t152858919z", + "title": "", + "body": "You will just have to visit us here next time :))", + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_update": "2016-08-28T15:41:18", + "created": "2016-08-28T15:41:18", + "active": "2016-08-28T15:41:18", + "last_payout": "2016-08-30T03:35:57", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "allasyummyfood", + "root_permlink": "steemit-cookies-for-the-london-meet-up", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 778749, + "author": "meesterboom", + "permlink": "re-givemeyoursteem-re-meesterboom-hearty-vegetable-soup-easy-and-quick-20160828t153933112z", + "category": "recipes", + "parent_author": "givemeyoursteem", + "parent_permlink": "re-meesterboom-hearty-vegetable-soup-easy-and-quick-20160828t152731480z", + "title": "", + "body": "Its a pleasure!", + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_update": "2016-08-28T15:39:33", + "created": "2016-08-28T15:39:33", + "active": "2016-08-28T15:39:33", + "last_payout": "2016-08-29T13:39:57", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "meesterboom", + "root_permlink": "hearty-vegetable-soup-easy-and-quick", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 778505, + "author": "givemeyoursteem", + "permlink": "re-givemeyoursteem-re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t151900275z", + "category": "contest", + "parent_author": "givemeyoursteem", + "parent_permlink": "re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t150753974z", + "title": "", + "body": "I think Swag Sunday is a great idea and agree with @halo , it's a great bonus for us, I'm so thankful! You should also get rewarded :) A \"resteem\" feature seems like a really good idea, hope it become true!", + "json_metadata": "{\"tags\":[\"contest\"],\"users\":[\"halo\"]}", + "last_update": "2016-08-28T15:19:00", + "created": "2016-08-28T15:19:00", + "active": "2016-08-28T19:08:27", + "last_payout": "2016-08-29T07:30:36", + "depth": 2, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "condra", + "root_permlink": "swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 778494, + "author": "meesterboom", + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t151812366z", + "category": "steemitphotochallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "body": "That sunset one in particular is stunning.", + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_update": "2016-08-28T15:18:36", + "created": "2016-08-28T15:18:12", + "active": "2016-08-28T15:22:42", + "last_payout": "2016-08-29T15:16:36", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 778395, + "author": "allasyummyfood", + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t150830108z", + "category": "steemitphotochallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "body": "Really beautiful pictures! thank you for sharing :) x", + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_update": "2016-08-28T15:08:30", + "created": "2016-08-28T15:08:30", + "active": "2016-08-28T15:22:09", + "last_payout": "2016-08-29T15:16:36", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 777927, + "author": "iggy", + "permlink": "re-givemeyoursteem-re-iggy-sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life-20160828t141345606z", + "category": "photography", + "parent_author": "givemeyoursteem", + "parent_permlink": "re-iggy-sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life-20160828t140609818z", + "title": "", + "body": "Vikaresjön lake in Gislaved Komun , 60 km from Jonkoping . And the fish is pike perch , on Swedish is i think joos or something like that", + "json_metadata": "{\"tags\":[\"photography\"]}", + "last_update": "2016-08-28T14:14:06", + "created": "2016-08-28T14:14:06", + "active": "2016-08-28T14:14:06", + "last_payout": "2016-08-29T13:12:09", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "iggy", + "root_permlink": "sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 777876, + "author": "iggy", + "permlink": "re-givemeyoursteem-re-iggy-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t140721103z", + "category": "steemitphotochallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "re-iggy-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t140244741z", + "title": "", + "body": "South or North ? I love Sweden , i have lived in Jönköping area for 3 years . Beautyfull nature and people.Now i'm moving further north to Bodo in Norway .", + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_update": "2016-08-28T14:07:42", + "created": "2016-08-28T14:07:42", + "active": "2016-08-28T14:10:33", + "last_payout": "2016-08-29T15:16:36", + "depth": 3, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json new file mode 100644 index 00000000..4da12897 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 779947, + "author": "givemeyoursteem", + "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "category": "foodchallenge", + "parent_author": "", + "parent_permlink": "foodchallenge", + "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", + "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", + "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", + "last_update": "2016-08-28T17:15:12", + "created": "2016-08-28T17:15:12", + "active": "2016-08-29T13:45:42", + "last_payout": "2016-08-29T20:19:39", + "depth": 0, + "children": 18, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 2374341643, + "cashout_time": "2016-09-28T20:19:39", + "max_cashout_time": "2016-09-13T01:24:24", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "576", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "131", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 588, + "net_votes": 44, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779945, + "author": "forklognews", + "permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "category": "bitcoin", + "parent_author": "", + "parent_permlink": "bitcoin", + "title": "Дайджест новостей – обзор главных событий биткоин-индустрии", + "body": "\n

Прошедшая неделя оказалась богатой событиями, центральным из которых для нашей редакции стало двухлетие Forklog. Два года назад, 25 августа, был зарегистрирован домен ForkLog.com, а спустя некоторое время сделаны первые публикации на сайте. Об остальных, не менее интересных событиях мира криптовалют, вы узнаете из нашего еженедельного дайджеста. 

\n

 БИРЖИ

\n

Ещё одним именинником этой недели стала криптовалютная биржа Bitstamp, которая отметила пятилетие со дня основания. К этому событию биржа приурочила конкурс с ценными призами.

\n

Но юбилеи не являются поводом прекращать работу и администрации бирж полностью разделяют это мнение, принимая где-то логичные, а где-то и неожиданные решения.

\n

Так, криптовалютная биржа GDAX начала торги четвертой по рыночной капитализации криптовалютой Litecoin. Соответствующее объявление сделано в официальном блоге биржи. Для торгов предлагается две валютные пары: резидентам США доступна пара LTC / USD, всем прочим клиентам — пара LTC / BTC.

\n

В свою очередь, 23 августа в официальном твиттере криптовалютной биржи Poloniex появилось сообщение оснятии с торгов 27 криптовалют. Торги будут прекращены 5 сентября текущего года и это решение уже вызвало некоторое недоумение сообщества, ведь в данный перечень вошли такие альткоины, как DAO, Dashcoin и Mintcoin, уровень капитализации которого достиг $1,22 млн. 

\n

\n

 Подходит к концу и нашумевшая история с биржей Bitfinex, пострадавшей в результате взлома. Администрация биржи объявила о подписании договора с инвестиционной платформой BnkToTheFuture с целью возмещения средств вкладчиков посредством долевого участия в акционерном капитале компании. 

\n

\n

 Благодаря сотрудничеству с BnkToTheFuture пользователи Bitfinex смогут обменять принадлежащие им токены BFX на соответствующую долю в iFinex Inc, зарегистрированной на Британских Виргинских Островах родительской компанией биржи.

\n

Неожиданная новость пришла на этой неделе из Турции, где ведущая криптовалютная биржи BTCTurk была вынуждена остановить работу, столкнувшись с неожиданном отказом банковского партнера от дальнейшего продолжения сотрудничества. В настоящий момент биржа предпринимает попытки вернуть средства пользователям, однако из-за блокировки банковских счетов этот процесс может затянуться. 

\n

 КОШЕЛЬКИ И ПЛАТЁЖНЫЕ СЕРВИСЫ

\n

Первым аппаратным кошельком, добавившим поддержку Ethereum, стал Trezor. Соответствующая информация размещена на странице Trezor на Github.

\n

Официального сообщения от компании-разработчика SatoshiLabs пока, впрочем, не поступало, поэтому дата официального релиза и доступности функционала на данный момент остается неизвестной.

\n

Списки рабочих валют пополнились у платёжного сервиса Bitwala, включившего поддержку Dash и Emercoin, и венесуэльской системы Cryptobuyer, добавившей Dash. Отметим, что жители Венесуэлы, у которых нет компьютеров либо телефонов с доступом в интернет, могут воспользоваться услугами местного партнёра Cryptobuyer – сетью криптовалютных банкоматов TigoCTM.

\n

Также вышла в свет новая версия Ethereum-кошелька Mist с поддержкой Coinbase Buy Widget. Одной из её главных особенностей стало включение Coinbase Buy Widget – инструмента, с помощью которого можно осуществить моментальную покупку криптовалюты на сумму до $5.

\n

В настоящий момент данная функция доступна только пользователям из США и требует наличия аккаунта на Coinbase. 

\n

\n

 БАНКИ И КОРПОРАЦИИ

\n

Неожиданным известием, способным стать предвестником глобальных изменений в мировой экономике, стало сообщение издания Financial Times о том, что ряд крупнейших мировых банков принял решение объединиться для создания новой цифровой валюты. Официальное заявление представителей банков UBS, Deutsche Bank, Santander и BNY Mellon ожидалось 24 августа, но до настоящего момента комментариев не появилось.

\n

Если это окажется не информационной уткой, то стоит ожидать, что в будущем к этой инициативе присоединятся и прочие финансовые институты со всех концов света, даже с далёкого африканского континента. Там управляющий Южно-Африканского резервного банка Лесетья Кганьяго в своем выступлении на конференции по вопросам криптобезопасности заявил, что финансовый институт уже изучает блокчейн и заинтересован в инновациях, которые может дать эта технология. 

\n
 «Как центральный банк, мы открыты к инновациям несмотря на различное отношение регуляторов к криптовалютам. Мы намерены изучить все преимущества и недостатки технологии блокчейн и других распределённых реестров», — заявил Лесетья Кганьяго. 
\n

 В свою очередь, крупнейший банк Японии Bank of Tokyo-Mitsubishi UFJ (MUFG) объявил об окончании разработкиоснованного на блокчейне прототипа, позволяющего моментально обрабатывать и верифицировать платежи по чекам. Созданное решение в потенциале может быть использовано финансовыми институтами и различными компаниями в азиатском регионе. В будущем Bank of Tokyo-Mitsubishi надеется создать и другие решения на основе блокчейна, которым можно будет найти реальное применение.

\n

От азиатских разработчиков не отстают и представители консорциума R3 CEV, запатентовавшие новый продукт на основе биткоин-технологии Concord, предназначенный для использования в инфраструктуре Уолл-стрит.

\n

Concord представляет собой универсальную платформу, связывающую воедино рынки и компании и призванную перевести функции миддл- и бэк-офисов в цифровой вариант. Это даст возможность банкам избавиться от административных накладных расходов и сэкономить миллиарды долларов. Ожидается, что альфа-версия платформы будет запущена в середине 2017 года.

\n

Всё это заставляет финансовых аналитиков и экономистов следить за блокчейном более пристально, меняя свои прогнозы относительно будущего мировой финансовой системы.

\n

В частности, финансовый аналитик Кирилл Яковенко недавно заявил, что в ближайшие два-три года криптовалюты выйдут из тени и одновременно с этим появятся новые межнациональные финансовые инструменты.

\n
«В ближайшие два-три года технологии blockchain прочно укрепятся на межбанке, вытеснят системы обмена сообщениями между ними (в частности, систему SWIFT) и станут неотъемлемой частью торгов на рынках ценных бумаг. Что же касается криптовалют в привычном понимании, то они также, скорее всего, уже в ближайшем будущем выйдут из тени и вместе с технологией blockchain получат масштабное развитие», — считает Яковенко.
\n

КОМПАНИИ

\n

Датская компания Bitshares Munich IVS, владеющая брендом BlockPay, объявила о старте ICO. В ходе кампании предполагается собрать средства на развитие BlockPay, P2P-мессенджера ECHO и системы анонимных платежей Stealth. Проведение краудфандинговой кампании запланировано на 2016 и 2017 годы. Сама кампания состоит из предварительной ICO (Pre-ICO), запланированной на август текущего года, и основной, которая будет проведена в 2017 году. Всего планируется распространить 100 миллионов токенов BlockPay.

\n

Проект по созданию блокчейна с открытым кодом Hyperledger объявил имена нового состава технического комитета. Среди основных задач комитета — рассмотрение поступающих предложений и построение первоначальной унифицированной базы исходного кода.

\n

В новом составе комитета сохранили свои места технический директор R3CEV Гендал Браун, главный разработчик архитектуры распределенных реестров Digital Asset Holdings Тамаш Блуммер, исследователь Fujitsu Харт Монтгомери, инженер Intel Мик Боумен и главный технический директор направления открытых технологий IBM Кристофер Феррис. Среди новых имен – старший технический руководитель IBM Арно ле Ор, старший блокчейн-архитектор IBM Бин Нгуен, глава технических разработок Intel Дэн Миддлтон, а также представители DTCC, Salesforce и Лондонской фондовой биржи.

\n

Американский технологический стартап Chronicled Inc. объявил о запуске открытого реестра для Интернета вещей, который был создан на блокчейне Ethereum. Этот реестр предназначен для сохранения уникальных кодов физических объектов, имеющих встроенные чипы NFC и BLE.

\n
«Теперь все создатели материальных объектов, будь-то бренды, носители интеллектуальной собственности и прочее, могут регистрировать свои защищённые от подделок чипы в публичном блокчейне», — заявил директор Chronicled Райан Орр. На данный момент стартапом поставлено около 10 000 NFC и BLE чипов.
\n

Как сообщает издание Business Insider UK, крупнейшая в США телекоммуникационная компания Verizon Communications экспериментирует с технологией блокчейн. Так, в распоряжение редакции попал патент, полученный Verizon 10 мая этого года.

\n

Из описания патента следует, что компания разработала некое блокчейн-хранилище ключей, а работы над проектом велись на протяжении трёх лет. Введение подобной блокчейн-системы в сочетании со смарт-контрактами даёт массу новых возможностей в сфере использования цифрового контента. Например, музыкальные исполнители или авторы статей будут получать свою оплату сразу же после того, как пользователь начал читать материал или прослушивать песню.

\n

Валютное управление Сингапура (MAS) выступило с предложением введения единой лицензии на осуществление деятельности для компаний, предоставляющих платежные услуги, включая криптовалютные компании.

\n

Стало известно, что биткоин-стартап Keza выкуплен филиппинской компанией Satoshi Citadel Industries, в инвестиционном портфелем которой уже присутствуют такие стартапы, как Rebit.ph, Bitbit.cash и PrepaidBitcoin.ph.

\n
«Keza создавалась с прицелом на развивающиеся рынки и для пользователей, которые не имеют доступа к глобальным рынкам капитала. Мы счастливы, что теперь видение компании сможет быть реализовано», — цитирует CEO Keza Саймона Бернса издание Silicon Angle.
\n

Децентрализованная социальная сеть Steemit сообщила о «беспрецедентном уровне трафика», сопоставимым с тем, что получали на ранних этапах своего развития Facebook и Reddit.

\n

Как говорится в заявлении Steemit, на данный момент пользователи социальной сети ежедневно размещают более 21 000 новых записей, а количество голосов в поддержку постов превышает 70 000. Это сопоставимо с ранней активностью на площадках вроде Facebook и Reddit.

\n

За несколько недель до старта краудсейла платформы распространения контента DECENT команда проекта объявила о внесении изменений в систему дистрибуции токенов DCT. Также подверглось пересмотру общее количество подлежащих к выпуску монет. Как заявили в DECENT, это решение, хотя и является стратегическим, также было принято с учетом рекомендаций сообщества.

\n

Компания Coinbase сообщила о расширении географии своего сервиса на мобильных устройствах при помощи дебетовых и кредитных карт. Теперь возможность покупки криптовалют при помощи карт получили и пользователи Coinbase в Европе.

\n

Как говорится в заявлении Coinbase, в США 40% сделок по покупке криптовалюты при помощи дебетовых и кредитных карт осуществляются с мобильных устройств, поэтому компания стремится сделать этот сервис доступным в как можно большем количестве стран.

\n

ПЕРСОНАЛИИ

\n

Основатель компании Distributed Lab Павел Кравченко продолжил рассуждения о технологии блокчейн и сферах ее применения, назвав отрасли, которым она, на его взгляд, вряд ли нужна вообще. Соответствующий пост был размещен в его блоге на Medium.

\n

Высказав ранее мнение о том, что большой бизнес не готов по-настоящему к использованию блокчейна, Павел на этот раз представил своего рода гид для инвесторов. В нем описана основная проблематика при принятии решений и предлагается помощь в понимании того, действительно ли технология является для них необходимой.

\n
«Запросы об имплементации блокчейна я получаю каждый день. Однако часто я считаю, что блокчейн не нужен вовсе. Есть другие доступные типы архитектуры, и блокчейн – лишь один из них», — пишет Павел Кравченко.
\n

Ещё одним примечательным выступлением гуру блокчейна стала лекция канадского предпринимателя Дона Тэпскотта, автора недавно изданной книги «Революция блокчейна», выступившего с лекцией о технологии распределенного реестра на саммите TED Talk в Альберте. 

\n

 УКРАИНА

\n

В Украине продолжается внедрение блокчейн-сервисов в политикум страны. Так, команда e-Vox анонсировала запуск блокчейн-сервиса электронного голосования в городской Раде Балты (Одесская область). Об этом редакции ForkLog сообщил координатор проекта Алексей Конашевич. 

\n

\n

 Результаты голосования, внесенные в децентрализованную базу данных, позволят системно анализировать информацию и выводить статистику эффективности принимаемых решений. А блокчейн-протокол поможет надежно защитить информацию от внутреннего и внешнего противоправного вмешательства.

\n

Разработкой прототипа e-Vox занимались компании Ambisafe и Vareger.

\n

Не останавливаются работы в этом направлении и в Белой Церкви. Так, мэр города Геннадий Дикий зарегистрировал проект об использовании блокчейн-платформы Auction 3.0 в качестве одного из актов, который должен быть принят городским советом в ближайшее время.
\nОб этом говорится в решении «О внесении изменений в план деятельности Белоцерковского городского совета при подготовке проектов регулятивных актов на 2016 год», утвержденном городским советом Белой Церкви. 

\n

\n

 РОССИЯ

\n

В пятницу, 26 августа, замминистра финансов Алексей Моисеев сообщил о том, что Министерство финансов Российской Федерации выступает против введения «лобового запрета» биткоина. По его словам, законопроект о криптовалютах будет скорректирован по итогам предстоящей серии встреч с экспертами.

\n

Возможно, это заявление стало последствием встречи, которая состоялась 24 августа в администрации президента РФ под руководством советника по интернету Германа Клименко. На мероприятии обсуждалась технология блокчейн в России и возможности ее внедрения на государственном уровне.

\n

Не остались в стороне от процесса и власти Москвы, заявившие на этом же совещании о готовности внедрить технологию блокчейн в проект «Активный гражданин».

\n
«Москва готова быть площадкой для применения технологии блокчейн. И как раз в качестве пилотного проекта мы предлагаем предоставить проект «Активный гражданин». Мы хотим, с одной стороны, отпилотировать технологию и понять, насколько она дееспособна для решения такого рода задач. С другой стороны, снять с себя некий скепсис со стороны граждан», — заявил заместитель директора департамента информационных технологий Москвы Андрей Белозеров,
\n

Оказались вовлечёнными использование блокчейна и биткоина и российские политические силы. Российская «Партия Роста» подтвердила начало приема пожертвований в биткоинах, однако пользоваться собранными средствами она сможет только после принятия закона о статусе криптовалюты.

\n


\nВ связи с отсутствием нормативного регулирования переводов биткоинов на счета юридических лиц «биткоины будут перечисляться на кошелек Дмитрия Мариничева, интернет-омбудсмена и кандидата в депутаты по Медведковскому одномандатному округу».

\n

КИТАЙ

\n

Правительство Российской Федерации не единственное, занимающееся вопросами использования криптовалют и блокчейна. Так, правительство Китая объявило о создании рабочей группы по вопросам блокчейна. Целью нового стратегического альянса станет ускорение разработок и внедрение технологии в экономику страны, а также подготовка к Всемирному блокчейн-саммиту, который будет проведён в Шанхае в сентябре этого года.

\n

Неизвестно, ставится ли перед этой рабочей группой задача контролирования использования, но примечательным является тот факт, что практически одновременно с заявлением правительства крупнейшая поисковая система Китая Baidu без какого-либо предупреждения удалила всю рекламу, связанную с биткоином и другими виртуальными валютами.

\n

Об удалении рекламы биткоин-компаний сообщили две крупнейшие китайские биржи OKCoin и Huobi, пишет Bloomberg News. Представители Baidu на запрос агентства от комментариев воздержались. 

\n", + "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto\",\"money\",\"news\"],\"image\":[\"http://radikal.ru/fp/949b19ab0ea142769b5d5bad6918e850\",\"http://radikal.ru/fp/ab1e6cf8f8ce414d8555699b45afc0eb\",\"http://forklog.com/wp-content/uploads/0e6dbfdc-638d-11e6-8e55-cc0a56a8b37c-1.png\",\"http://forklog.com/wp-content/uploads/14152259_10202179476045465_1807948603_o.jpg\",\"http://forklog.com/wp-content/uploads/14022327_853179024818469_8570878217622377273_n-1.jpg\"],\"links\":[\"http://forklog.com/zhurnalu-forklog-dva-goda/\",\"http://forklog.com/birzha-bitstamp-otmechaet-pyatiletnij-yubilej/\",\"http://forklog.com/kriptovalyutnaya-birzha-gdax-dobavila-litecoin/\",\"http://forklog.com/birzha-poloniex-snimaet-s-torgov-the-dao-i-drugie-altkoiny/\",\"http://forklog.com/krupnejshaya-bitkoin-birzha-turtsii-ostanovila-rabotu-iz-za-problem-s-bankom/\",\"http://forklog.com/apparatnyj-koshelek-trezor-dobavil-podderzhku-ethereum/\",\"https://github.com/trezor/trezor-mcu/pull/103\",\"http://forklog.com/platezhnyj-servis-bitwala-vklyuchil-v-spisok-rabochih-altkoinov-dash-i-emercoin/\",\"http://forklog.com/venesuelskij-platyozhnyj-servis-cryptobuyer-dobavil-podderzhku-dash/\",\"http://forklog.com/sostoyalsya-reliz-novoj-versii-ethereum-koshelka-mist-s-podderzhkoj-coinbase-buy-widget/\",\"http://forklog.com/vedushhie-banki-mira-obedinilis-dlya-sozdaniya-novoj-kriptovalyuty/\",\"http://forklog.com/yuzhno-afrikanskij-rezervnyj-bank-gotov-k-ispolzovaniyu-blokchejna-i-kriptovalyut/\",\"http://forklog.com/yaponskie-korporatsii-testiruyut-blokchejn-platformu-dlya-chekovyh-raschetov/\",\"http://forklog.com/konsortsium-r3-cev-zapatentoval-blokchejn-platformu-dlya-infrastruktury-uoll-strit/\",\"http://forklog.com/ekonomisty-prognoziruyut-vytesnenie-sistemy-swift-blokchejnom/\",\"http://forklog.com/kompaniya-bitshares-munich-ivs-obyavila-o-nachale-ico/\",\"http://forklog.com/proekt-hyperledger-nazval-novyj-sostav-tehnicheskogo-komiteta/\",\"http://forklog.com/startap-chronicled-inc-zapustil-otkrytyj-reestr-dlya-interneta-veshhej/\",\"http://forklog.com/kompaniya-verizon-communications-zapatentovala-blokchejn-hranilishhe-klyuchej/\",\"http://forklog.com/kriptovalyutnye-kompanii-singapura-budut-poluchat-edinuyu-litsenziyu-na-osushhestvlenie-deyatelnosti/\",\"http://forklog.com/investitsionnyj-bitkoin-startap-keza-budet-spasen-blagodarya-satoshi-citadel-industries/\",\"http://forklog.com/poseshhaemost-steemit-sravnyalas-s-rannim-facebook/\",\"http://forklog.com/komanda-decent-obyavila-o-vazhnyh-izmeneniyah-v-sisteme-distributsii-tokenov/\",\"http://forklog.com/polzovateli-coinbase-v-evrope-poluchili-vozmozhnost-pokupat-kriptovalyutu-pri-pomoshhi-bankovskih-kart/\",\"http://forklog.com/osnovatel-distributed-lab-nazval-oblasti-kotorym-ne-nuzhen-blokchejn/\",\"https://medium.com/@pavelkravchenko/investor-guide-does-this-cool-project-truly-need-blockchain-bdde70a26bfb#.40cs8sfz2\",\"http://forklog.com/avtor-knig-o-blokchejne-don-tepskott-vystupil-na-ted-talk/\",\"http://forklog.com/dostignuta-dogovorennost-o-zapuske-e-vox-v-balte-odesskoj-oblasti/\",\"http://forklog.com/meriya-beloj-tserkvi-perehodit-na-blokchejn-platformu-auction-3-0/\",\"http://forklog.com/minfin-rf-protiv-pryamogo-zapreta-bitkoina/\",\"http://forklog.com/v-rossii-obsudili-kriptovalyuty-na-gosudarstvennom-urovne/\",\"http://forklog.com/partiya-rosta-utochnila-shemu-priema-pozhertvovanij-v-bitkoinah/\",\"http://forklog.com/kitaj-pristupil-k-issledovaniyu-blokchejna-na-gosudarstvennom-urovne/\",\"http://forklog.com/kitajskij-poiskovik-baidu-zablokiroval-vsyu-svyazannuyu-s-bitkoinom-reklamu/\"]}", + "last_update": "2016-08-28T17:15:09", + "created": "2016-08-28T17:15:09", + "active": "2016-08-28T17:15:09", + "last_payout": "2016-08-30T04:28:30", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-29T04:28:30", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "forklognews", + "root_permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779934, + "author": "paulsemmelweis", + "permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "category": "economics", + "parent_author": "", + "parent_permlink": "economics", + "title": "It's just a game to governments and central bankers", + "body": "Discussed below are two new articles that shed light on the grand economic chessboard controlled by governments while paving the way for more lies and manipulation by the media...\n\nGlobal central bankers, stuck at zero, unite in plea for help from governments: https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\n\nAs Fed nears rate hikes, policymakers plan for 'brave new world': https://ca.news.yahoo.com/fed-nears-rate-hikes-policymakers-plan-brave-world-005117150--business.html\n\nWhile simultaneously espousing Obama's great economic achievements in the press for years after saving the nation from peril in 2008, central bankers now openly admit there's a very weak economy and a recovery that never was. You know, facts.\n\nWhile talk of \"new tools\" needed to fight the next recession unofficially dominated the annual meeting of our monetary overlords in Wyoming, it is quite clear that the main weapon in their arsenal is the same as it was then; to maintain control over human beings by selling a never ending stream of fiction to the public.\n\n\"it may take a massive program, large enough even to shock taxpayers\"\n\"hard to convince markets and households that things will get better\"\n\"encourage the shift in mood\"\n\"prevent public expectations\"\n\"do not respond in expected ways\"\n\nAnd this gem… \"In modern monetary theory, households and business expectations are felt to play a defining role.\"\n\nSounds really modern!\n\nThe article ends with this… \"It was not clear whether such ideas will catch on. But there was a broad sense here that the other side of government may need to up its game.\"\n\nA game indeed. Of mass manipulation for the benefit of those who rule us while easily selling the public what they are doing is in their best interests.", + "json_metadata": "{\"tags\":[\"economics\",\"government\",\"central\",\"banks\",\"recession\"],\"links\":[\"https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\"]}", + "last_update": "2016-08-28T17:14:12", + "created": "2016-08-28T17:14:12", + "active": "2016-08-28T17:14:12", + "last_payout": "2016-08-29T19:47:36", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-28T19:47:36", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "paulsemmelweis", + "root_permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779930, + "author": "randolphrope", + "permlink": "steem-it-photo-challenge-6", + "category": "photography", + "parent_author": "", + "parent_permlink": "photography", + "title": "Steem.it photo challenge # 6", + "body": "On the way to Chinle, Arizona USA \n\nJust off the highway over looking the desert.\n\nhttp://imgur.com/ITp3j5l.jpg\n\nI just remember one on the drive.", + "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"\"],\"image\":[\"http://imgur.com/ITp3j5l.jpg\"]}", + "last_update": "2016-08-28T17:13:51", + "created": "2016-08-28T17:13:51", + "active": "2016-08-28T17:13:51", + "last_payout": "2016-08-29T18:29:18", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-28T18:29:18", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 6, + "root_author": "randolphrope", + "root_permlink": "steem-it-photo-challenge-6", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779923, + "author": "ebluefox", + "permlink": "the-pros-and-cons-of-empathy", + "category": "empathy", + "parent_author": "", + "parent_permlink": "empathy", + "title": "The Pros and Cons of Empathy", + "body": "Empathy is an interesting aspect of human nature that many people do not possess. Empathy in short is the ability to view an scenario from a different perspective than your own, normally to better understand someone's perspective on certain topics or ideas. This handy skill is a learned skill and when used effectively can be used to better understand humanity.\nBut as with every neat skill, they tend to have as many pros as they do cons. So i will attempt to explain the pros and cons that i have found apparent with empathy.\n There are quite a few pros to empathy, one of which being in your reputation. A person who uses empathy often is normally seen as a loving compassionate person. Another pro that is quite noticeable is the ability to understand unexplained problems. On occasion if a problem really troubles someone or is very personal, most people will not tell anyone about it. But with empathy you can figure out what is troubling them sometimes with something as simple as \"How have you been?\". A more prominent pro of using empathy is better understanding how a person truly is. Most people wear a \"Facade\" in public or a metaphorical mask, these tend to hide their true personality from the public eye and conceal most things about them. Using empathy, you can work around the \"Facade\" and figure out how they truly are as a person, and most of the time appreciate them a bit more.\n Empathy has allot of pros but also has its fair share of cons to go with it, a good example of one of its cons is a changed perspective. under most circumstances, use of empathy becomes a habit and changes your outlook on everyone around you. This is not really very terrible, but it can lead to you disliking a person more than would have normally. Another apparent con is over-assessing someone. This can happen when you use empathy on someone and spot something that would make you feel awful, but in truth does not faze them. Here is an example. You are talking with a person and figure out that they don't have a mother. To you that may seem horrible and you start pitying them, when in truth it may not even matter to them in the slightest. A more cumbersome problem with empathy lies with information. In order to understand or sympathize with someone you need to understand the problems they put up with. If you ask too many questions about their life, they may find you \"Nosy\" or \"Annoying\". On the contrary, if you do not inquire very much about them, you will not have any idea of their standpoint at all and cannot empathize with them. The last con i will cover is drama. It is very easy to get caught in some drama if you try to understand peoples problems, some of which may be very serious. Some people are not patient enough to deal with the newly acquired drama and can sometimes make the problem worse than it need to be.\n This list most definitely did not cover every pro or con associated with empathy because they will differ from person to person however i did cover a few recurring pros and cons. whether you think empathy is worth your time and energy is up to you and your values in life and social interaction.", + "json_metadata": "{\"tags\":[\"empathy\",\"psychology\",\"social-skills\",\"problems\"]}", + "last_update": "2016-08-28T17:13:21", + "created": "2016-08-28T17:13:21", + "active": "2016-08-28T17:13:21", + "last_payout": "2016-08-29T17:28:57", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-28T17:28:57", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "ebluefox", + "root_permlink": "the-pros-and-cons-of-empathy", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779920, + "author": "steemsquad", + "permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "category": "introduceyourself", + "parent_author": "", + "parent_permlink": "introduceyourself", + "title": "Hello! We Are STEEMSQUAD And We Are Here to Support The Minnows. Read On.", + "body": "\n

We are STEEMSQUAD, a Steemit inititative to promote diversity and quality of content by featuring authors from the school of minnows.

\n

\"steem-squad3\"
\n

\n

WHAT is #steemsquad?

\n

Steemsquad is an initiative of multiple minnows whose objective is to promote diverse and quality content and their work which may not have a chance to get noticed when published in the main streem. STEEMSQUAD initiative will try to tweak the game to equally distribute the wealth among its members. 

\n

STEEMSQUAD is a community-backed account responsible for posting blogs of qualified authors and at the same time upvotes quality blog posts of its members.

\n

Members of STEEMSQUAD are from across multiple timelines to ensure a 24/7 support and active participation in Steemit.

\n

The Issue at Hand

\n

For quite some time, there has been a noticeable trend as to who gets rewards. Those favored are the whales themselves, members with high reputation levels, incoming popular personalities and celebrities either from the cryptocurrency world or the entertainment world. A number of people from the finance institutions have joined as well and have garnered huge rewards on their “introductory” posts.

\n

And what happens to those who are not celebrities, unknown personalities from not-so-popular backgrounds? Their posts get dumped, thrown into oblivion. Then all the sweat and blood poured spilled into writing the blog just go to waste. This is where #steemsquad comes in.

\n


\n

WHY We Do It?

\n

Steemit is a social media platform where **EVERYONE** gets paid for creating and curating content, as promised if and when you decide to dive into the Steemit Ocean. 

\n

It leverages a robust digital points system, called Steem, that supports real value for digital rewards through market price discovery and liquidity.

\n

We aim to give EVERYONE a chance to get noticed, earn rewards, and be a part of a community of people helping people.

\n

You Can Succeed

\n

All HOPE is NOT LOST. We have seen minnows rise to the occasion. With a positive attitude, an unwavering determination, lots and lots of good quality posts (one is enough though to get you 15k, if you hit the nail on the head), there is no reason why you can’t be successful here in Steemit.

\n

#steemsquad will support you along the way.

\n

OUR GOLDEN RULES

\n
    \n
  1. We give priority to quality contents from low-powered profiles (minnows).
  2. \n
  3. The published author gets 100% of SBD. However, 50% of which goes to the author’s SP to allow the author to power-up leveraging his/her SP to upvote other writers.
  4. \n
  5. Any SP earned by STEEMSQUAD remains in the STEEMSQUAD account to gain more voting power for the benefit of its members.
  6. \n
  7. Pay-it-forward. The powered-up author commits to help other writers by upvoting and commenting to blog post to increase the post’s value.
  8. \n
\n


\n

HOW TO GET PUBLISHED BY STEEMSQUAD

\n

\n

PHOTO CREDIT: Anna Frajtova / shutterstock.com
\n

\n
    \n
  1. FOLLOW the account STEEMSQUAD and be a member of the initiative.
  2. \n
  3. You have to signify your willingness to join by coming to our official chatroom in https://steemit.chat/channel/steemsquad. Introduce yourself and state your intention to join the initiative. Include a link to your Steemit profile.
  4. \n
  5. Submit your article in plain text format and links to images. Send your entry to @steemit.asia or @sebastien or @jaycobbell as a PM.
  6. \n
  7. Article must be at least 300 words with at least 1 image.
  8. \n
  9. Give credit to the images you use.
  10. \n
  11. If you quote someone, give credit as well.
  12. \n
  13. At least 80% of the article must be your own.
  14. \n
  15. You will get feedback after 24 hours and a schedule will be provided when your work will be published.
  16. \n
  17. Once it is published, it will be promoted to the chatroom by either @steemit.asia or @sebastien or @jaycobbell in https://steemit.chat/channel/steemsquadpromotional for all members to see. This is where all promotions are done.
  18. \n
\n


\n

HOW TO GET UPVOTED BY STEEMSQUAD AND MEMBERS

\n


\nPHOTO CREDIT: Clipartix.com
\n

\n
    \n
  1. To get a chance to be upvoted by STEEMSQUAD, you must have a QUALITY blog post.
  2. \n
  3. Use the tag #steemsquad in your blog post.
  4. \n
  5. Our curators will browse through all blog posts using our official #steemsquad tag name and choose will notify the author by commenting that the post has been chosen as a featured post/author. It will be promoted in our chat channel https://steemit.chat/channel/steemsquadpromotional.
  6. \n
\n


\n

STEEMSQUAD ACCOUNT SECURITY

\n

The Posting Key (The posting key is used for posting and voting. It should be different from the active and owner keys) will be given to at least 3 members of STEEMSQUAD responsible for posting blog posts in 24 hour cycle.

\n

The Active Key (The active key is used to make transfers and place orders in the internal market) will be given to 2 members of STEEMSQUAD. One member will act as auditor/backup in case the primary member is not available.

\n

The Owner Key (The owner key is the master key for the account and is required to change the other keys) is given to one Whale sponsor and 2 other members of STEEMSQUAD.

\n

A member responsible for the account security may hold more than one (1) key as shown above.

\n


\n

OUR MENTORS

\n

There are people we consider as examples on the platform. Inspiration, mentors.

\n

@juneaugoldbuyer
\n@thedollarvigilante
\n@dragonslayer109
\n@stellabelle
\n@charlieshreem
\n@rogerkver
\n@donkypong
\n@tuck-fheman
\n@masteryoda
\n@andrarchy 

\n

\"steem-squad-FOLLOW-US\"
\n

\n", + "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemsquad\",\"steemit\",\"minnows\",\"writing\"],\"users\":[\"steemit.asia\",\"sebastien\",\"jaycobbell\",\"juneaugoldbuyer\",\"dragonslayer109\",\"stellabelle\",\"charlieshreem\",\"rogerkver\",\"donkypong\",\"tuck-fheman\",\"masteryoda\",\"andrarchy\"],\"image\":[\"https://c1.staticflickr.com/9/8171/29209353271_2eabbba74f_o.png\",\"https://cdn.elegantthemes.com/blog/wp-content/uploads/2016/02/Essential-Blogging-Skills-Know-your-Audience-shutterstock_222537538-Anna-Frajtova.png\",\"http://clipartix.com/wp-content/uploads/2016/04/Thumbs-up-clipart-3.png\",\"https://c1.staticflickr.com/9/8305/29179909862_ed27607510_o.png\"],\"links\":[\"https://steemit.chat/channel/steemsquad.\",\"https://steemit.chat/channel/steemsquadpromotional\",\"https://steemit.chat/channel/steemsquadpromotional.\"]}", + "last_update": "2016-08-28T17:13:18", + "created": "2016-08-28T17:13:18", + "active": "2016-09-11T21:09:09", + "last_payout": "2016-08-30T11:08:54", + "depth": 0, + "children": 18, + "net_rshares": "2243580957008", + "abs_rshares": "2243580957008", + "vote_rshares": "2243580957008", + "children_abs_rshares": "2254360518257", + "cashout_time": "2016-09-29T11:08:54", + "max_cashout_time": "2016-09-13T14:10:24", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "566", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "173", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 588, + "net_votes": 57, + "root_author": "steemsquad", + "root_permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 778828, + "author": "okay", + "permlink": "this-week-s-sky-aug-27-sep-3", + "category": "science", + "parent_author": "", + "parent_permlink": "science", + "title": "This Week's Sky Aug-27/Sep-3", + "body": "## A picture is worth a thousand words, more so in astronomy ##\n\n**Let's take a look at the coming week's sky**\n\n\nhttp://www.skyandtelescope.com/wp-content/uploads/Venus-Jupiter-27Aug2016_f.jpg\n(Image courtesy of Sky and Telescope)\nOn August 27th, about 45 minutes after sunset, go outdoors and start looking low above the horizon in the west for an amazingly close pairing of Venus and Jupiter.\n\nhttp://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\n\n\nNext weekend, shortly after sunset, the thin Moon (waxing crescent) steps away from Venus and Jupiter.\n\nLooking at the night sky is a great joy! Free for everyone with no ticket required. You can watch the evening sky with your naked eye, no need for telescope or binoculars for these beautiful astronomical events.\n\n*Stay tuned for next week's sky.*\n\n\n\n\n If you enjoyed this post please vote for my witness node. Learn how to vote for witness `okay` **at the end of my witness post** by [**clicking here**](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network). ", + "json_metadata": "{\"tags\":[\"science\",\"astronomy\"],\"image\":[\"http://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", + "last_update": "2016-08-28T17:13:03", + "created": "2016-08-28T15:45:33", + "active": "2016-08-28T17:13:03", + "last_payout": "2016-08-29T16:11:21", + "depth": 0, + "children": 5, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-28T16:11:21", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 4, + "root_author": "okay", + "root_permlink": "this-week-s-sky-aug-27-sep-3", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779916, + "author": "skyefox", + "permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "category": "garden", + "parent_author": "", + "parent_permlink": "garden", + "title": "A small garden update... My Pink Brandywine Tomatoes are coming!", + "body": "As I have stated in earlier posts, gardening is currently my obsession.. it's seems wild to me that the standard is to work for currency and trade currency for food rather than just growing your own food. \n

Here is my small harvest from this morning!

\nEvery morning I go out and eat a couple of my cherry tomatoes, a few leafy greens, and usually 1/2 a leaf of my sweet basil. It's a wonderful thing to wake up, take the dog out and get a healthy organic little snack. I love it.\nhttps://s14.postimg.org/62aqviz0h/IMG_1804.jpg\n\n\nI understand that gardening takes time, effort, and a little bit of knowledge but in my opinion it is one of the most reward \"hobbies.\" This is my first year gardening. I decided to garden this year because I have been doing more and more reading about the American food industry and my conclusion is that the American population are being made sick on purpose through the food we eat. I don't know exactly what does what in our food but it seems absolutely insane to me that we can't get the FDA to evaluate any dietary supplements but they will evaluate and even vouch for these lab made pharmaceutical drugs. \n\nAll of this lead me to feeling a strong urge to grow organic food. I honestly feel guilty when I feed my family and I don't fully believe in what we are eating. Don't get me wrong, I love pepperoni pizza but ignorance is bliss, and I am not ignorant to what I am eating. \n\nI believe I am slowly heading down the path of becoming a vegan as I gain more knowledge. I have always been a hunter and a fisherman, it's what I was taught as a young boy in the north woods. I love to hunt and fish, but I also have a very deep compassion for life. Not human life, but life in general. I believe that we are intelligent enough as a species to live without causing harm to other living things that are equipped with nervous systems. I guess I am just realizing day by day that things are not necessarily what I have been told... \n

This kind of sums up how I feel currently...

\nhttps://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\n\nI am not a very good consumer. I am very frugal and calculated with my money, sometimes to a fault. I'm also not good at being an employee and just being a \"gear in the machine.\" I was not built to work and be told what to do while someone acts as if their employment position somehow gives them a higher status than I. We are humans, you just have a different job. These factors, and many others, have lead to me being self employed and trying to find my way on the internet. I have dabble in many things online and I have learned enough to at least provide myself with enough income to pay my mortgage, bills, etc.. \n\nI am also someone that is in the prepper mind state. I have started my small stockpile of beans, rice, and various other dried foods. I think that the American people have become complacent and many of us are just chasing the carrot we were instructed to chase. Many people seem to not realize the fact that we as a country heavily depend on other people or corporations for the things we use everyday. If water and electricity were to be shut off and panic set it, many people would die because they don't know what to do without someone else providing them with these luxuries. \n\nI don't like the idea of depending on anyone for anything. I have always been someone who provided for myself. I got a job at 14 years old at the local bakery working Saturday mornings so that I could get my first computer myself. I worked for weeks, since I was only getting paid $5.15/hour (roughly 13 years ago) it took me a long time to save up for a computer to play Counterstrike 1.5... We had 6 kids in our house in a \"middle class\" family, needless to say we were told to get jobs as early as possible to acquire our luxuries. Since then I have had the mindset that I don't want to allow someone else to be \"the hand that feeds\", and that applies to food, water, electricity, and even knowledge of my child. \n\nDEPENDENCY OPENS THE DOORS FOR EXPLOITATION! And in a capitalist driven global economy, if it can be exploited, it often is. \n\nMy apologies, there I go again, going of on some rant instead of just showing you the damn garden update. I already can't wait for next spring. I have been buying heirloom vegetable seeds and thrift shopping for large planters for $1 so that next year I can grow lots more. \n

This is the Pink Brandywine that I am so excited about!

\nThese guys took forever to grow. I didn't know what I was doing and I had put too many plants in 1 planter which caused them to compete for the nutrients. On top of them a strong storm came through and blew these guys over and bent there stalks horizontal. I really didn't know if I would get any fruit from them, but they are changing and I can't wait to eat these!\nhttps://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\n\nhttps://s14.postimg.org/e3txgbbgh/IMG_1800.jpg\n\nHere is a cucumber that is growing a little goofy. Not sure why but its like a beer can cucumber... lol\nhttps://s14.postimg.org/c1tg22dhd/IMG_1802.jpg\n\nA more normal cucumber... \nhttps://s14.postimg.org/610t23x6p/IMG_1803.jpg\n\nAnd this is my $3 table I built so that I could start my seeds indoors under some fluorescent lights. \n\n\nhttps://s14.postimg.org/6t3h1b1dt/IMG_1805.jpg\n\n\nThank you for reading and happy gardening!", + "json_metadata": "{\"tags\":[\"garden\",\"photography\",\"rant\",\"food\"],\"image\":[\"https://s14.postimg.org/62aqviz0h/IMG_1804.jpg\",\"https://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\",\"https://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\"]}", + "last_update": "2016-08-28T17:12:54", + "created": "2016-08-28T17:12:54", + "active": "2016-08-28T17:36:42", + "last_payout": "2016-08-29T18:11:57", + "depth": 0, + "children": 2, + "net_rshares": "130408996119", + "abs_rshares": "130408996119", + "vote_rshares": "130408996119", + "children_abs_rshares": "130408996119", + "cashout_time": "2016-09-28T18:11:57", + "max_cashout_time": "2016-09-12T21:18:18", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "123", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "15", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 125, + "net_votes": 37, + "root_author": "skyefox", + "root_permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779915, + "author": "fitiliper1985", + "permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "category": "sex", + "parent_author": "", + "parent_permlink": "sex", + "title": "In a relationship, sex becomes a matter of selfishness or unselfishness.", + "body": "
http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png
\n

\n

Before I was in a relationship, I didn't have much sex. My first sexual intercourse occurred while I was travelling overseas on a holiday by myself. I met a woman in hawaii at the airport, and later had sex with her.

\n

I had done a lot of masturbating prior to this. I had often thought about having sex, and I found that my sexual drive caused me to behave in ways that I normally wouldn't. 

\n

\n
https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg
\n

\n

For example I would follow women I found attractive, or I would try to look up their skirts, or I would wander about at night to try to look into bedroom windows.

\n

When I met someone that I knew I would marry, I thought I would be able to have sex as much as I liked because my wife would always be available to have it with me. This turned out to be untrue. My wife didn't want to have sex as often as I wanted to, and I found myself still masturbating while I waited for the next time to come.

\n

I don't think women understand the power of their husband's sexual drive. 

\n

\n
http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg
\n

\n

Men are attracted to women by how they look. It doesn't matter if they are strangers. Men will look at a woman dressed in  a certain way and will start feeling horny. As soon as they ejaculate, the feeling of horniness goes, but will return in a couple of hours. When the sexual desire comes upon a man, it becomes his dominating thought, and it demands to be satisfied. That's why many men then masturbate in order to relieve the pressure on their thoughts. If unrelieved the pressure grows and if the wife is unwilling to have sex, then some men will look for other women to have sex with. 

\n

The sexual pressure is constantly present in a man's mind until relief comes.

\n

\n
https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg
\n

\n

Most women are not as interested in sex as men. 

\n

\n
https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg
\n

\n

Women are more interested in relationship.  Women have sex with a man in the hope that the man will want to stay in their life and have a relationship with them. 

\n

Some women use sex as a bait to catch a man, and then when the relationship is happening, they are not as interested in sex anymore. Women enjoy sex, but as part of a fulfilling relationship. Men just want to put their penis into a vagina and ejaculate. As soon as ejaculation occurs, a lot of men lose all interest in the woman. The woman then feels hurt and used because she didn't get what she wanted which was relationship. Men will say anything they think a woman wants to hear in order to have sex.

\n

Wives who have sex with their husbands when not really wanting it, feel used by their husbands. Women also can be selfish when they demand sex from men who are not in the mood. 

\n

God created sex to be enjoyed in a committed relationship between a man and a woman who are one person physically, spiritually, emotionally, and mentally. 

\n

Sex is a part of the relationship, not the main thing. If a man demands sex then he is being selfish, and his relationship will be harmed if the woman gives sex to the man when she is not wanting to have it. If the man wants sex with his wife, then he must give her what she wants. He must romance her and give her a good relationship. Then if sex happens, it will be enjoyable for both of them. This will build the relationship.

", + "json_metadata": "{\"tags\":[\"sex\",\"psychology\",\"life\",\"story\",\"\"],\"image\":[\"http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png\",\"https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg\",\"http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg\",\"https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg\",\"https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg\"]}", + "last_update": "2016-08-28T17:12:42", + "created": "2016-08-28T17:12:42", + "active": "2016-08-28T18:08:06", + "last_payout": "2016-08-29T17:56:42", + "depth": 0, + "children": 5, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-28T17:56:42", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 12, + "root_author": "fitiliper1985", + "root_permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779914, + "author": "s0lo", + "permlink": "road-map-ethereum-classic-helped-to-keep-the-course", + "category": "road", + "parent_author": "", + "parent_permlink": "road", + "title": "Road map Ethereum Classic helped to keep the course.", + "body": "\n

\n

Slightly more than a month since then, how did the Ethereum classic (ETC). The ETC team presented a \"road map\" of development of the project, at the first meeting of the supporters of Ethereum Classic (ETC), held on 18 August in London.

\n
The basic version of partitioning the network according to the version of ETC was this:
\n
\"The separation of Ethereum was the result of a difference in the understanding of the basic principle of cryptocurrency. At that time, as fork (ETH) was carried out to recover the stolen funds to investors DAO, Ethereum classic is the original version, based on the principle that \"code is law.\"
\n

Supporters of the ETS argue that the decentralization of infrastructure are insufficient to minimize the possibility of hacking and fraud. For example, the developers of Ethereum actively invested their funds in DAO. Therefore, the decision about hard forks could be dictated by a conflict of interest.

\n

Community ETC believes that all key aspects of the ecosystem should be decentralized, including technological functions such as research and development, and public and administrative functions, including marketing, development and management of the DAPP.

\n

There are plans to remove so-called \"bomb of complexity\" (constant increase in the complexity of mining at ETH) to provide POW mining and make ETC more viable for the miners.

\n

In addition, the community is considering a new economic policy and hybrid solutions using Proof-of-stake (PoS). And, finally, developed new technology to ensure the functioning of \"smart contracts\", but no details.

\n

Classic Ethereum plans to develop the community to the upcoming events in Toronto, Shanghai and Melbourne. These meetings should be used to create local centers. In addition, the stage of development of the relationships with universities, startups and companies. Road map to the end of this year aims to reach consensus with the main team ETC. and receive financial support of developers from third parties.

\n

Initially, the team ETC was planning to copy all the updates that are entered in the ETH, but later decided to give myself a certain amount of autonomy. how and by whom it will be implemented - at the moment neizvestnoy

\n

In 2017, ETC will test different mechanisms of consensus and optimal monetary policy system. In addition, meetings will be held in an expanded format to appeal to a greater number of miners and the following year to create their own ecosystem the development of DAPP.

\n

Perhaps in the course of the year will be able to understand how realistic are attempts to \"overtake and surpass\" team Baterina in the main activities of the Ethereum project.

\n

By 2018, the community ETC choose PoW or hybrid mechanism of consensus and create the proper monetary policy.

\n

More concrete steps at this meeting was not presented.

\n

The rate continues to fall.

\n

Despite the publication of the road map and programme of community development, exchange rate ETC continues to fall. ETC cryptocurrency by market capitalization behind Litecoin and Steem, even given the significant losses the last, and is now in sixth place. ETC remains below the psychologically important level of $2.00 that is displayed on the chart.

\n

\n

ETC trend/USD exchange Poloniex has broken below the most recent level of the fractal at $1.60. A daily close below this level should lead us to a level of $1.34. Please note that the conversion line (blue) currently has resistance at $ 1.7235. 

\n

In addition, the trading volume of the Ethereum classic naturally falling after the initial hype created around this cryptocurrency. This also indicates a greater risk and tells about the deterioration of the situation. Thus, the market is looking down with a possible reversal on the $ 1.34 or even $ 1.00.

\n", + "json_metadata": "{\"tags\":[\"road\",\"map\",\"etc\",\"ethereum\",\"classic\"],\"image\":[\"http://bits.media/images/news/260816/260816_ethereum-classic-roadmap_1.jpg\",\"http://bits.media/images/news/260816/260816_ethereum-classic-roadmap_2.jpg\"]}", + "last_update": "2016-08-28T17:12:39", + "created": "2016-08-28T17:12:39", + "active": "2016-08-28T17:12:39", + "last_payout": "2016-08-29T17:44:00", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-28T17:44:00", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 3950, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "s0lo", + "root_permlink": "road-map-ethereum-classic-helped-to-keep-the-course", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json new file mode 100644 index 00000000..60690bf4 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 779946, + "author": "gringalicious", + "permlink": "hello-again-better-late-than-never-a-re-introduction-verification", + "category": "introduceyourself", + "parent_author": "", + "parent_permlink": "introduceyourself", + "title": "Hello Again - Better Late Than Never - a RE introduction VERIFICATION", + "body": "\n

Ok, I surrender!  A horrible picture of myself holding a piece of paper.  I have to say, I don't get it.  I hate taking pictures of myself.  But, several of you have insisted, so... you win, here it is, verification for @gringalicious

\n

\n

I am a 20 year old food blogger living in Chile with my crazy family.  You can read more about that at my first attempt of introducing myself here: Gringalicious Intro .  I have a passion for cooking and a passion for photography.  Yeah, I know, you can't tell by the photo above, but I digress.  You can see examples of my passion on my page @gringalicious. I don't like labels necessarily, but let's just say I don't like the state and those conditioned by the state telling me what to do.  Nor do I like telling others how they should liver their lives.  I will post more on those topics at a later date.

\n

The idea of #Steemit thoroughly intrigues me.  I look forward to being part of the community!

\n

And since I am here talking about myself, I was featured in a magazine recently.  Not trying to promote the magazine necessarily, just trying to add validity to my verification.  And, I have to admit, I just a little proud of myself.

\n

\n

\n


\n

Later this week, I'll be posting a recipe with a #steemitlogo incorporated in it.  So, keep an eye out for it.

\n

I do hope this helps satisfy the request that many of you have made.  If I need to do something different, please let me know.  I actually like corrective criticism so bring it on.

\n

Until my next post, hasta luego mis amigos

\n

Tori

\n", + "json_metadata": "{\"tags\":[\"introduceyourself\",\"food\",\"photography\",\"Steemit\",\"steemitlogo\"],\"users\":[\"gringalicious\"],\"image\":[\"https://s19.postimg.org/9vrr3pg8j/DSC_0750_2.jpg\",\"https://s19.postimg.org/4j2wpksc3/IMG_20160828_131820621.jpg\",\"https://s16.postimg.org/3ougnif51/IMG_20160828_131853738.jpg\"],\"links\":[\"https://steemit.com/introduceyourself/@gringalicious/hola-steemit-photographer-food-blogger-traveler-and-student-of-life-i-am\"]}", + "last_update": "2016-08-28T17:15:12", + "created": "2016-08-28T17:15:12", + "active": "2016-08-31T12:56:54", + "last_payout": "2016-08-29T22:59:51", + "depth": 0, + "children": 48, + "net_rshares": "114793970759", + "abs_rshares": "114793970759", + "vote_rshares": "114793970759", + "children_abs_rshares": "256626492237", + "cashout_time": "2016-09-28T22:59:51", + "max_cashout_time": "2016-09-14T00:51:15", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "73426", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "12739", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 75232, + "net_votes": 82, + "root_author": "gringalicious", + "root_permlink": "hello-again-better-late-than-never-a-re-introduction-verification", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779947, + "author": "givemeyoursteem", + "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "category": "foodchallenge", + "parent_author": "", + "parent_permlink": "foodchallenge", + "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", + "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", + "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", + "last_update": "2016-08-28T17:15:12", + "created": "2016-08-28T17:15:12", + "active": "2016-08-29T13:45:42", + "last_payout": "2016-08-29T20:19:39", + "depth": 0, + "children": 18, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 2374341643, + "cashout_time": "2016-09-28T20:19:39", + "max_cashout_time": "2016-09-13T01:24:24", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "576", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "131", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 588, + "net_votes": 44, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779945, + "author": "forklognews", + "permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "category": "bitcoin", + "parent_author": "", + "parent_permlink": "bitcoin", + "title": "Дайджест новостей – обзор главных событий биткоин-индустрии", + "body": "\n

Прошедшая неделя оказалась богатой событиями, центральным из которых для нашей редакции стало двухлетие Forklog. Два года назад, 25 августа, был зарегистрирован домен ForkLog.com, а спустя некоторое время сделаны первые публикации на сайте. Об остальных, не менее интересных событиях мира криптовалют, вы узнаете из нашего еженедельного дайджеста. 

\n

 БИРЖИ

\n

Ещё одним именинником этой недели стала криптовалютная биржа Bitstamp, которая отметила пятилетие со дня основания. К этому событию биржа приурочила конкурс с ценными призами.

\n

Но юбилеи не являются поводом прекращать работу и администрации бирж полностью разделяют это мнение, принимая где-то логичные, а где-то и неожиданные решения.

\n

Так, криптовалютная биржа GDAX начала торги четвертой по рыночной капитализации криптовалютой Litecoin. Соответствующее объявление сделано в официальном блоге биржи. Для торгов предлагается две валютные пары: резидентам США доступна пара LTC / USD, всем прочим клиентам — пара LTC / BTC.

\n

В свою очередь, 23 августа в официальном твиттере криптовалютной биржи Poloniex появилось сообщение оснятии с торгов 27 криптовалют. Торги будут прекращены 5 сентября текущего года и это решение уже вызвало некоторое недоумение сообщества, ведь в данный перечень вошли такие альткоины, как DAO, Dashcoin и Mintcoin, уровень капитализации которого достиг $1,22 млн. 

\n

\n

 Подходит к концу и нашумевшая история с биржей Bitfinex, пострадавшей в результате взлома. Администрация биржи объявила о подписании договора с инвестиционной платформой BnkToTheFuture с целью возмещения средств вкладчиков посредством долевого участия в акционерном капитале компании. 

\n

\n

 Благодаря сотрудничеству с BnkToTheFuture пользователи Bitfinex смогут обменять принадлежащие им токены BFX на соответствующую долю в iFinex Inc, зарегистрированной на Британских Виргинских Островах родительской компанией биржи.

\n

Неожиданная новость пришла на этой неделе из Турции, где ведущая криптовалютная биржи BTCTurk была вынуждена остановить работу, столкнувшись с неожиданном отказом банковского партнера от дальнейшего продолжения сотрудничества. В настоящий момент биржа предпринимает попытки вернуть средства пользователям, однако из-за блокировки банковских счетов этот процесс может затянуться. 

\n

 КОШЕЛЬКИ И ПЛАТЁЖНЫЕ СЕРВИСЫ

\n

Первым аппаратным кошельком, добавившим поддержку Ethereum, стал Trezor. Соответствующая информация размещена на странице Trezor на Github.

\n

Официального сообщения от компании-разработчика SatoshiLabs пока, впрочем, не поступало, поэтому дата официального релиза и доступности функционала на данный момент остается неизвестной.

\n

Списки рабочих валют пополнились у платёжного сервиса Bitwala, включившего поддержку Dash и Emercoin, и венесуэльской системы Cryptobuyer, добавившей Dash. Отметим, что жители Венесуэлы, у которых нет компьютеров либо телефонов с доступом в интернет, могут воспользоваться услугами местного партнёра Cryptobuyer – сетью криптовалютных банкоматов TigoCTM.

\n

Также вышла в свет новая версия Ethereum-кошелька Mist с поддержкой Coinbase Buy Widget. Одной из её главных особенностей стало включение Coinbase Buy Widget – инструмента, с помощью которого можно осуществить моментальную покупку криптовалюты на сумму до $5.

\n

В настоящий момент данная функция доступна только пользователям из США и требует наличия аккаунта на Coinbase. 

\n

\n

 БАНКИ И КОРПОРАЦИИ

\n

Неожиданным известием, способным стать предвестником глобальных изменений в мировой экономике, стало сообщение издания Financial Times о том, что ряд крупнейших мировых банков принял решение объединиться для создания новой цифровой валюты. Официальное заявление представителей банков UBS, Deutsche Bank, Santander и BNY Mellon ожидалось 24 августа, но до настоящего момента комментариев не появилось.

\n

Если это окажется не информационной уткой, то стоит ожидать, что в будущем к этой инициативе присоединятся и прочие финансовые институты со всех концов света, даже с далёкого африканского континента. Там управляющий Южно-Африканского резервного банка Лесетья Кганьяго в своем выступлении на конференции по вопросам криптобезопасности заявил, что финансовый институт уже изучает блокчейн и заинтересован в инновациях, которые может дать эта технология. 

\n
 «Как центральный банк, мы открыты к инновациям несмотря на различное отношение регуляторов к криптовалютам. Мы намерены изучить все преимущества и недостатки технологии блокчейн и других распределённых реестров», — заявил Лесетья Кганьяго. 
\n

 В свою очередь, крупнейший банк Японии Bank of Tokyo-Mitsubishi UFJ (MUFG) объявил об окончании разработкиоснованного на блокчейне прототипа, позволяющего моментально обрабатывать и верифицировать платежи по чекам. Созданное решение в потенциале может быть использовано финансовыми институтами и различными компаниями в азиатском регионе. В будущем Bank of Tokyo-Mitsubishi надеется создать и другие решения на основе блокчейна, которым можно будет найти реальное применение.

\n

От азиатских разработчиков не отстают и представители консорциума R3 CEV, запатентовавшие новый продукт на основе биткоин-технологии Concord, предназначенный для использования в инфраструктуре Уолл-стрит.

\n

Concord представляет собой универсальную платформу, связывающую воедино рынки и компании и призванную перевести функции миддл- и бэк-офисов в цифровой вариант. Это даст возможность банкам избавиться от административных накладных расходов и сэкономить миллиарды долларов. Ожидается, что альфа-версия платформы будет запущена в середине 2017 года.

\n

Всё это заставляет финансовых аналитиков и экономистов следить за блокчейном более пристально, меняя свои прогнозы относительно будущего мировой финансовой системы.

\n

В частности, финансовый аналитик Кирилл Яковенко недавно заявил, что в ближайшие два-три года криптовалюты выйдут из тени и одновременно с этим появятся новые межнациональные финансовые инструменты.

\n
«В ближайшие два-три года технологии blockchain прочно укрепятся на межбанке, вытеснят системы обмена сообщениями между ними (в частности, систему SWIFT) и станут неотъемлемой частью торгов на рынках ценных бумаг. Что же касается криптовалют в привычном понимании, то они также, скорее всего, уже в ближайшем будущем выйдут из тени и вместе с технологией blockchain получат масштабное развитие», — считает Яковенко.
\n

КОМПАНИИ

\n

Датская компания Bitshares Munich IVS, владеющая брендом BlockPay, объявила о старте ICO. В ходе кампании предполагается собрать средства на развитие BlockPay, P2P-мессенджера ECHO и системы анонимных платежей Stealth. Проведение краудфандинговой кампании запланировано на 2016 и 2017 годы. Сама кампания состоит из предварительной ICO (Pre-ICO), запланированной на август текущего года, и основной, которая будет проведена в 2017 году. Всего планируется распространить 100 миллионов токенов BlockPay.

\n

Проект по созданию блокчейна с открытым кодом Hyperledger объявил имена нового состава технического комитета. Среди основных задач комитета — рассмотрение поступающих предложений и построение первоначальной унифицированной базы исходного кода.

\n

В новом составе комитета сохранили свои места технический директор R3CEV Гендал Браун, главный разработчик архитектуры распределенных реестров Digital Asset Holdings Тамаш Блуммер, исследователь Fujitsu Харт Монтгомери, инженер Intel Мик Боумен и главный технический директор направления открытых технологий IBM Кристофер Феррис. Среди новых имен – старший технический руководитель IBM Арно ле Ор, старший блокчейн-архитектор IBM Бин Нгуен, глава технических разработок Intel Дэн Миддлтон, а также представители DTCC, Salesforce и Лондонской фондовой биржи.

\n

Американский технологический стартап Chronicled Inc. объявил о запуске открытого реестра для Интернета вещей, который был создан на блокчейне Ethereum. Этот реестр предназначен для сохранения уникальных кодов физических объектов, имеющих встроенные чипы NFC и BLE.

\n
«Теперь все создатели материальных объектов, будь-то бренды, носители интеллектуальной собственности и прочее, могут регистрировать свои защищённые от подделок чипы в публичном блокчейне», — заявил директор Chronicled Райан Орр. На данный момент стартапом поставлено около 10 000 NFC и BLE чипов.
\n

Как сообщает издание Business Insider UK, крупнейшая в США телекоммуникационная компания Verizon Communications экспериментирует с технологией блокчейн. Так, в распоряжение редакции попал патент, полученный Verizon 10 мая этого года.

\n

Из описания патента следует, что компания разработала некое блокчейн-хранилище ключей, а работы над проектом велись на протяжении трёх лет. Введение подобной блокчейн-системы в сочетании со смарт-контрактами даёт массу новых возможностей в сфере использования цифрового контента. Например, музыкальные исполнители или авторы статей будут получать свою оплату сразу же после того, как пользователь начал читать материал или прослушивать песню.

\n

Валютное управление Сингапура (MAS) выступило с предложением введения единой лицензии на осуществление деятельности для компаний, предоставляющих платежные услуги, включая криптовалютные компании.

\n

Стало известно, что биткоин-стартап Keza выкуплен филиппинской компанией Satoshi Citadel Industries, в инвестиционном портфелем которой уже присутствуют такие стартапы, как Rebit.ph, Bitbit.cash и PrepaidBitcoin.ph.

\n
«Keza создавалась с прицелом на развивающиеся рынки и для пользователей, которые не имеют доступа к глобальным рынкам капитала. Мы счастливы, что теперь видение компании сможет быть реализовано», — цитирует CEO Keza Саймона Бернса издание Silicon Angle.
\n

Децентрализованная социальная сеть Steemit сообщила о «беспрецедентном уровне трафика», сопоставимым с тем, что получали на ранних этапах своего развития Facebook и Reddit.

\n

Как говорится в заявлении Steemit, на данный момент пользователи социальной сети ежедневно размещают более 21 000 новых записей, а количество голосов в поддержку постов превышает 70 000. Это сопоставимо с ранней активностью на площадках вроде Facebook и Reddit.

\n

За несколько недель до старта краудсейла платформы распространения контента DECENT команда проекта объявила о внесении изменений в систему дистрибуции токенов DCT. Также подверглось пересмотру общее количество подлежащих к выпуску монет. Как заявили в DECENT, это решение, хотя и является стратегическим, также было принято с учетом рекомендаций сообщества.

\n

Компания Coinbase сообщила о расширении географии своего сервиса на мобильных устройствах при помощи дебетовых и кредитных карт. Теперь возможность покупки криптовалют при помощи карт получили и пользователи Coinbase в Европе.

\n

Как говорится в заявлении Coinbase, в США 40% сделок по покупке криптовалюты при помощи дебетовых и кредитных карт осуществляются с мобильных устройств, поэтому компания стремится сделать этот сервис доступным в как можно большем количестве стран.

\n

ПЕРСОНАЛИИ

\n

Основатель компании Distributed Lab Павел Кравченко продолжил рассуждения о технологии блокчейн и сферах ее применения, назвав отрасли, которым она, на его взгляд, вряд ли нужна вообще. Соответствующий пост был размещен в его блоге на Medium.

\n

Высказав ранее мнение о том, что большой бизнес не готов по-настоящему к использованию блокчейна, Павел на этот раз представил своего рода гид для инвесторов. В нем описана основная проблематика при принятии решений и предлагается помощь в понимании того, действительно ли технология является для них необходимой.

\n
«Запросы об имплементации блокчейна я получаю каждый день. Однако часто я считаю, что блокчейн не нужен вовсе. Есть другие доступные типы архитектуры, и блокчейн – лишь один из них», — пишет Павел Кравченко.
\n

Ещё одним примечательным выступлением гуру блокчейна стала лекция канадского предпринимателя Дона Тэпскотта, автора недавно изданной книги «Революция блокчейна», выступившего с лекцией о технологии распределенного реестра на саммите TED Talk в Альберте. 

\n

 УКРАИНА

\n

В Украине продолжается внедрение блокчейн-сервисов в политикум страны. Так, команда e-Vox анонсировала запуск блокчейн-сервиса электронного голосования в городской Раде Балты (Одесская область). Об этом редакции ForkLog сообщил координатор проекта Алексей Конашевич. 

\n

\n

 Результаты голосования, внесенные в децентрализованную базу данных, позволят системно анализировать информацию и выводить статистику эффективности принимаемых решений. А блокчейн-протокол поможет надежно защитить информацию от внутреннего и внешнего противоправного вмешательства.

\n

Разработкой прототипа e-Vox занимались компании Ambisafe и Vareger.

\n

Не останавливаются работы в этом направлении и в Белой Церкви. Так, мэр города Геннадий Дикий зарегистрировал проект об использовании блокчейн-платформы Auction 3.0 в качестве одного из актов, который должен быть принят городским советом в ближайшее время.
\nОб этом говорится в решении «О внесении изменений в план деятельности Белоцерковского городского совета при подготовке проектов регулятивных актов на 2016 год», утвержденном городским советом Белой Церкви. 

\n

\n

 РОССИЯ

\n

В пятницу, 26 августа, замминистра финансов Алексей Моисеев сообщил о том, что Министерство финансов Российской Федерации выступает против введения «лобового запрета» биткоина. По его словам, законопроект о криптовалютах будет скорректирован по итогам предстоящей серии встреч с экспертами.

\n

Возможно, это заявление стало последствием встречи, которая состоялась 24 августа в администрации президента РФ под руководством советника по интернету Германа Клименко. На мероприятии обсуждалась технология блокчейн в России и возможности ее внедрения на государственном уровне.

\n

Не остались в стороне от процесса и власти Москвы, заявившие на этом же совещании о готовности внедрить технологию блокчейн в проект «Активный гражданин».

\n
«Москва готова быть площадкой для применения технологии блокчейн. И как раз в качестве пилотного проекта мы предлагаем предоставить проект «Активный гражданин». Мы хотим, с одной стороны, отпилотировать технологию и понять, насколько она дееспособна для решения такого рода задач. С другой стороны, снять с себя некий скепсис со стороны граждан», — заявил заместитель директора департамента информационных технологий Москвы Андрей Белозеров,
\n

Оказались вовлечёнными использование блокчейна и биткоина и российские политические силы. Российская «Партия Роста» подтвердила начало приема пожертвований в биткоинах, однако пользоваться собранными средствами она сможет только после принятия закона о статусе криптовалюты.

\n


\nВ связи с отсутствием нормативного регулирования переводов биткоинов на счета юридических лиц «биткоины будут перечисляться на кошелек Дмитрия Мариничева, интернет-омбудсмена и кандидата в депутаты по Медведковскому одномандатному округу».

\n

КИТАЙ

\n

Правительство Российской Федерации не единственное, занимающееся вопросами использования криптовалют и блокчейна. Так, правительство Китая объявило о создании рабочей группы по вопросам блокчейна. Целью нового стратегического альянса станет ускорение разработок и внедрение технологии в экономику страны, а также подготовка к Всемирному блокчейн-саммиту, который будет проведён в Шанхае в сентябре этого года.

\n

Неизвестно, ставится ли перед этой рабочей группой задача контролирования использования, но примечательным является тот факт, что практически одновременно с заявлением правительства крупнейшая поисковая система Китая Baidu без какого-либо предупреждения удалила всю рекламу, связанную с биткоином и другими виртуальными валютами.

\n

Об удалении рекламы биткоин-компаний сообщили две крупнейшие китайские биржи OKCoin и Huobi, пишет Bloomberg News. Представители Baidu на запрос агентства от комментариев воздержались. 

\n", + "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto\",\"money\",\"news\"],\"image\":[\"http://radikal.ru/fp/949b19ab0ea142769b5d5bad6918e850\",\"http://radikal.ru/fp/ab1e6cf8f8ce414d8555699b45afc0eb\",\"http://forklog.com/wp-content/uploads/0e6dbfdc-638d-11e6-8e55-cc0a56a8b37c-1.png\",\"http://forklog.com/wp-content/uploads/14152259_10202179476045465_1807948603_o.jpg\",\"http://forklog.com/wp-content/uploads/14022327_853179024818469_8570878217622377273_n-1.jpg\"],\"links\":[\"http://forklog.com/zhurnalu-forklog-dva-goda/\",\"http://forklog.com/birzha-bitstamp-otmechaet-pyatiletnij-yubilej/\",\"http://forklog.com/kriptovalyutnaya-birzha-gdax-dobavila-litecoin/\",\"http://forklog.com/birzha-poloniex-snimaet-s-torgov-the-dao-i-drugie-altkoiny/\",\"http://forklog.com/krupnejshaya-bitkoin-birzha-turtsii-ostanovila-rabotu-iz-za-problem-s-bankom/\",\"http://forklog.com/apparatnyj-koshelek-trezor-dobavil-podderzhku-ethereum/\",\"https://github.com/trezor/trezor-mcu/pull/103\",\"http://forklog.com/platezhnyj-servis-bitwala-vklyuchil-v-spisok-rabochih-altkoinov-dash-i-emercoin/\",\"http://forklog.com/venesuelskij-platyozhnyj-servis-cryptobuyer-dobavil-podderzhku-dash/\",\"http://forklog.com/sostoyalsya-reliz-novoj-versii-ethereum-koshelka-mist-s-podderzhkoj-coinbase-buy-widget/\",\"http://forklog.com/vedushhie-banki-mira-obedinilis-dlya-sozdaniya-novoj-kriptovalyuty/\",\"http://forklog.com/yuzhno-afrikanskij-rezervnyj-bank-gotov-k-ispolzovaniyu-blokchejna-i-kriptovalyut/\",\"http://forklog.com/yaponskie-korporatsii-testiruyut-blokchejn-platformu-dlya-chekovyh-raschetov/\",\"http://forklog.com/konsortsium-r3-cev-zapatentoval-blokchejn-platformu-dlya-infrastruktury-uoll-strit/\",\"http://forklog.com/ekonomisty-prognoziruyut-vytesnenie-sistemy-swift-blokchejnom/\",\"http://forklog.com/kompaniya-bitshares-munich-ivs-obyavila-o-nachale-ico/\",\"http://forklog.com/proekt-hyperledger-nazval-novyj-sostav-tehnicheskogo-komiteta/\",\"http://forklog.com/startap-chronicled-inc-zapustil-otkrytyj-reestr-dlya-interneta-veshhej/\",\"http://forklog.com/kompaniya-verizon-communications-zapatentovala-blokchejn-hranilishhe-klyuchej/\",\"http://forklog.com/kriptovalyutnye-kompanii-singapura-budut-poluchat-edinuyu-litsenziyu-na-osushhestvlenie-deyatelnosti/\",\"http://forklog.com/investitsionnyj-bitkoin-startap-keza-budet-spasen-blagodarya-satoshi-citadel-industries/\",\"http://forklog.com/poseshhaemost-steemit-sravnyalas-s-rannim-facebook/\",\"http://forklog.com/komanda-decent-obyavila-o-vazhnyh-izmeneniyah-v-sisteme-distributsii-tokenov/\",\"http://forklog.com/polzovateli-coinbase-v-evrope-poluchili-vozmozhnost-pokupat-kriptovalyutu-pri-pomoshhi-bankovskih-kart/\",\"http://forklog.com/osnovatel-distributed-lab-nazval-oblasti-kotorym-ne-nuzhen-blokchejn/\",\"https://medium.com/@pavelkravchenko/investor-guide-does-this-cool-project-truly-need-blockchain-bdde70a26bfb#.40cs8sfz2\",\"http://forklog.com/avtor-knig-o-blokchejne-don-tepskott-vystupil-na-ted-talk/\",\"http://forklog.com/dostignuta-dogovorennost-o-zapuske-e-vox-v-balte-odesskoj-oblasti/\",\"http://forklog.com/meriya-beloj-tserkvi-perehodit-na-blokchejn-platformu-auction-3-0/\",\"http://forklog.com/minfin-rf-protiv-pryamogo-zapreta-bitkoina/\",\"http://forklog.com/v-rossii-obsudili-kriptovalyuty-na-gosudarstvennom-urovne/\",\"http://forklog.com/partiya-rosta-utochnila-shemu-priema-pozhertvovanij-v-bitkoinah/\",\"http://forklog.com/kitaj-pristupil-k-issledovaniyu-blokchejna-na-gosudarstvennom-urovne/\",\"http://forklog.com/kitajskij-poiskovik-baidu-zablokiroval-vsyu-svyazannuyu-s-bitkoinom-reklamu/\"]}", + "last_update": "2016-08-28T17:15:09", + "created": "2016-08-28T17:15:09", + "active": "2016-08-28T17:15:09", + "last_payout": "2016-08-30T04:28:30", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-29T04:28:30", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "forklognews", + "root_permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779934, + "author": "paulsemmelweis", + "permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "category": "economics", + "parent_author": "", + "parent_permlink": "economics", + "title": "It's just a game to governments and central bankers", + "body": "Discussed below are two new articles that shed light on the grand economic chessboard controlled by governments while paving the way for more lies and manipulation by the media...\n\nGlobal central bankers, stuck at zero, unite in plea for help from governments: https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\n\nAs Fed nears rate hikes, policymakers plan for 'brave new world': https://ca.news.yahoo.com/fed-nears-rate-hikes-policymakers-plan-brave-world-005117150--business.html\n\nWhile simultaneously espousing Obama's great economic achievements in the press for years after saving the nation from peril in 2008, central bankers now openly admit there's a very weak economy and a recovery that never was. You know, facts.\n\nWhile talk of \"new tools\" needed to fight the next recession unofficially dominated the annual meeting of our monetary overlords in Wyoming, it is quite clear that the main weapon in their arsenal is the same as it was then; to maintain control over human beings by selling a never ending stream of fiction to the public.\n\n\"it may take a massive program, large enough even to shock taxpayers\"\n\"hard to convince markets and households that things will get better\"\n\"encourage the shift in mood\"\n\"prevent public expectations\"\n\"do not respond in expected ways\"\n\nAnd this gem… \"In modern monetary theory, households and business expectations are felt to play a defining role.\"\n\nSounds really modern!\n\nThe article ends with this… \"It was not clear whether such ideas will catch on. But there was a broad sense here that the other side of government may need to up its game.\"\n\nA game indeed. Of mass manipulation for the benefit of those who rule us while easily selling the public what they are doing is in their best interests.", + "json_metadata": "{\"tags\":[\"economics\",\"government\",\"central\",\"banks\",\"recession\"],\"links\":[\"https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\"]}", + "last_update": "2016-08-28T17:14:12", + "created": "2016-08-28T17:14:12", + "active": "2016-08-28T17:14:12", + "last_payout": "2016-08-29T19:47:36", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-28T19:47:36", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "paulsemmelweis", + "root_permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779930, + "author": "randolphrope", + "permlink": "steem-it-photo-challenge-6", + "category": "photography", + "parent_author": "", + "parent_permlink": "photography", + "title": "Steem.it photo challenge # 6", + "body": "On the way to Chinle, Arizona USA \n\nJust off the highway over looking the desert.\n\nhttp://imgur.com/ITp3j5l.jpg\n\nI just remember one on the drive.", + "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"\"],\"image\":[\"http://imgur.com/ITp3j5l.jpg\"]}", + "last_update": "2016-08-28T17:13:51", + "created": "2016-08-28T17:13:51", + "active": "2016-08-28T17:13:51", + "last_payout": "2016-08-29T18:29:18", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-28T18:29:18", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 6, + "root_author": "randolphrope", + "root_permlink": "steem-it-photo-challenge-6", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779923, + "author": "ebluefox", + "permlink": "the-pros-and-cons-of-empathy", + "category": "empathy", + "parent_author": "", + "parent_permlink": "empathy", + "title": "The Pros and Cons of Empathy", + "body": "Empathy is an interesting aspect of human nature that many people do not possess. Empathy in short is the ability to view an scenario from a different perspective than your own, normally to better understand someone's perspective on certain topics or ideas. This handy skill is a learned skill and when used effectively can be used to better understand humanity.\nBut as with every neat skill, they tend to have as many pros as they do cons. So i will attempt to explain the pros and cons that i have found apparent with empathy.\n There are quite a few pros to empathy, one of which being in your reputation. A person who uses empathy often is normally seen as a loving compassionate person. Another pro that is quite noticeable is the ability to understand unexplained problems. On occasion if a problem really troubles someone or is very personal, most people will not tell anyone about it. But with empathy you can figure out what is troubling them sometimes with something as simple as \"How have you been?\". A more prominent pro of using empathy is better understanding how a person truly is. Most people wear a \"Facade\" in public or a metaphorical mask, these tend to hide their true personality from the public eye and conceal most things about them. Using empathy, you can work around the \"Facade\" and figure out how they truly are as a person, and most of the time appreciate them a bit more.\n Empathy has allot of pros but also has its fair share of cons to go with it, a good example of one of its cons is a changed perspective. under most circumstances, use of empathy becomes a habit and changes your outlook on everyone around you. This is not really very terrible, but it can lead to you disliking a person more than would have normally. Another apparent con is over-assessing someone. This can happen when you use empathy on someone and spot something that would make you feel awful, but in truth does not faze them. Here is an example. You are talking with a person and figure out that they don't have a mother. To you that may seem horrible and you start pitying them, when in truth it may not even matter to them in the slightest. A more cumbersome problem with empathy lies with information. In order to understand or sympathize with someone you need to understand the problems they put up with. If you ask too many questions about their life, they may find you \"Nosy\" or \"Annoying\". On the contrary, if you do not inquire very much about them, you will not have any idea of their standpoint at all and cannot empathize with them. The last con i will cover is drama. It is very easy to get caught in some drama if you try to understand peoples problems, some of which may be very serious. Some people are not patient enough to deal with the newly acquired drama and can sometimes make the problem worse than it need to be.\n This list most definitely did not cover every pro or con associated with empathy because they will differ from person to person however i did cover a few recurring pros and cons. whether you think empathy is worth your time and energy is up to you and your values in life and social interaction.", + "json_metadata": "{\"tags\":[\"empathy\",\"psychology\",\"social-skills\",\"problems\"]}", + "last_update": "2016-08-28T17:13:21", + "created": "2016-08-28T17:13:21", + "active": "2016-08-28T17:13:21", + "last_payout": "2016-08-29T17:28:57", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-28T17:28:57", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "ebluefox", + "root_permlink": "the-pros-and-cons-of-empathy", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779920, + "author": "steemsquad", + "permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "category": "introduceyourself", + "parent_author": "", + "parent_permlink": "introduceyourself", + "title": "Hello! We Are STEEMSQUAD And We Are Here to Support The Minnows. Read On.", + "body": "\n

We are STEEMSQUAD, a Steemit inititative to promote diversity and quality of content by featuring authors from the school of minnows.

\n

\"steem-squad3\"
\n

\n

WHAT is #steemsquad?

\n

Steemsquad is an initiative of multiple minnows whose objective is to promote diverse and quality content and their work which may not have a chance to get noticed when published in the main streem. STEEMSQUAD initiative will try to tweak the game to equally distribute the wealth among its members. 

\n

STEEMSQUAD is a community-backed account responsible for posting blogs of qualified authors and at the same time upvotes quality blog posts of its members.

\n

Members of STEEMSQUAD are from across multiple timelines to ensure a 24/7 support and active participation in Steemit.

\n

The Issue at Hand

\n

For quite some time, there has been a noticeable trend as to who gets rewards. Those favored are the whales themselves, members with high reputation levels, incoming popular personalities and celebrities either from the cryptocurrency world or the entertainment world. A number of people from the finance institutions have joined as well and have garnered huge rewards on their “introductory” posts.

\n

And what happens to those who are not celebrities, unknown personalities from not-so-popular backgrounds? Their posts get dumped, thrown into oblivion. Then all the sweat and blood poured spilled into writing the blog just go to waste. This is where #steemsquad comes in.

\n


\n

WHY We Do It?

\n

Steemit is a social media platform where **EVERYONE** gets paid for creating and curating content, as promised if and when you decide to dive into the Steemit Ocean. 

\n

It leverages a robust digital points system, called Steem, that supports real value for digital rewards through market price discovery and liquidity.

\n

We aim to give EVERYONE a chance to get noticed, earn rewards, and be a part of a community of people helping people.

\n

You Can Succeed

\n

All HOPE is NOT LOST. We have seen minnows rise to the occasion. With a positive attitude, an unwavering determination, lots and lots of good quality posts (one is enough though to get you 15k, if you hit the nail on the head), there is no reason why you can’t be successful here in Steemit.

\n

#steemsquad will support you along the way.

\n

OUR GOLDEN RULES

\n
    \n
  1. We give priority to quality contents from low-powered profiles (minnows).
  2. \n
  3. The published author gets 100% of SBD. However, 50% of which goes to the author’s SP to allow the author to power-up leveraging his/her SP to upvote other writers.
  4. \n
  5. Any SP earned by STEEMSQUAD remains in the STEEMSQUAD account to gain more voting power for the benefit of its members.
  6. \n
  7. Pay-it-forward. The powered-up author commits to help other writers by upvoting and commenting to blog post to increase the post’s value.
  8. \n
\n


\n

HOW TO GET PUBLISHED BY STEEMSQUAD

\n

\n

PHOTO CREDIT: Anna Frajtova / shutterstock.com
\n

\n
    \n
  1. FOLLOW the account STEEMSQUAD and be a member of the initiative.
  2. \n
  3. You have to signify your willingness to join by coming to our official chatroom in https://steemit.chat/channel/steemsquad. Introduce yourself and state your intention to join the initiative. Include a link to your Steemit profile.
  4. \n
  5. Submit your article in plain text format and links to images. Send your entry to @steemit.asia or @sebastien or @jaycobbell as a PM.
  6. \n
  7. Article must be at least 300 words with at least 1 image.
  8. \n
  9. Give credit to the images you use.
  10. \n
  11. If you quote someone, give credit as well.
  12. \n
  13. At least 80% of the article must be your own.
  14. \n
  15. You will get feedback after 24 hours and a schedule will be provided when your work will be published.
  16. \n
  17. Once it is published, it will be promoted to the chatroom by either @steemit.asia or @sebastien or @jaycobbell in https://steemit.chat/channel/steemsquadpromotional for all members to see. This is where all promotions are done.
  18. \n
\n


\n

HOW TO GET UPVOTED BY STEEMSQUAD AND MEMBERS

\n


\nPHOTO CREDIT: Clipartix.com
\n

\n
    \n
  1. To get a chance to be upvoted by STEEMSQUAD, you must have a QUALITY blog post.
  2. \n
  3. Use the tag #steemsquad in your blog post.
  4. \n
  5. Our curators will browse through all blog posts using our official #steemsquad tag name and choose will notify the author by commenting that the post has been chosen as a featured post/author. It will be promoted in our chat channel https://steemit.chat/channel/steemsquadpromotional.
  6. \n
\n


\n

STEEMSQUAD ACCOUNT SECURITY

\n

The Posting Key (The posting key is used for posting and voting. It should be different from the active and owner keys) will be given to at least 3 members of STEEMSQUAD responsible for posting blog posts in 24 hour cycle.

\n

The Active Key (The active key is used to make transfers and place orders in the internal market) will be given to 2 members of STEEMSQUAD. One member will act as auditor/backup in case the primary member is not available.

\n

The Owner Key (The owner key is the master key for the account and is required to change the other keys) is given to one Whale sponsor and 2 other members of STEEMSQUAD.

\n

A member responsible for the account security may hold more than one (1) key as shown above.

\n


\n

OUR MENTORS

\n

There are people we consider as examples on the platform. Inspiration, mentors.

\n

@juneaugoldbuyer
\n@thedollarvigilante
\n@dragonslayer109
\n@stellabelle
\n@charlieshreem
\n@rogerkver
\n@donkypong
\n@tuck-fheman
\n@masteryoda
\n@andrarchy 

\n

\"steem-squad-FOLLOW-US\"
\n

\n", + "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemsquad\",\"steemit\",\"minnows\",\"writing\"],\"users\":[\"steemit.asia\",\"sebastien\",\"jaycobbell\",\"juneaugoldbuyer\",\"dragonslayer109\",\"stellabelle\",\"charlieshreem\",\"rogerkver\",\"donkypong\",\"tuck-fheman\",\"masteryoda\",\"andrarchy\"],\"image\":[\"https://c1.staticflickr.com/9/8171/29209353271_2eabbba74f_o.png\",\"https://cdn.elegantthemes.com/blog/wp-content/uploads/2016/02/Essential-Blogging-Skills-Know-your-Audience-shutterstock_222537538-Anna-Frajtova.png\",\"http://clipartix.com/wp-content/uploads/2016/04/Thumbs-up-clipart-3.png\",\"https://c1.staticflickr.com/9/8305/29179909862_ed27607510_o.png\"],\"links\":[\"https://steemit.chat/channel/steemsquad.\",\"https://steemit.chat/channel/steemsquadpromotional\",\"https://steemit.chat/channel/steemsquadpromotional.\"]}", + "last_update": "2016-08-28T17:13:18", + "created": "2016-08-28T17:13:18", + "active": "2016-09-11T21:09:09", + "last_payout": "2016-08-30T11:08:54", + "depth": 0, + "children": 18, + "net_rshares": "2243580957008", + "abs_rshares": "2243580957008", + "vote_rshares": "2243580957008", + "children_abs_rshares": "2254360518257", + "cashout_time": "2016-09-29T11:08:54", + "max_cashout_time": "2016-09-13T14:10:24", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "566", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "173", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 588, + "net_votes": 57, + "root_author": "steemsquad", + "root_permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 778828, + "author": "okay", + "permlink": "this-week-s-sky-aug-27-sep-3", + "category": "science", + "parent_author": "", + "parent_permlink": "science", + "title": "This Week's Sky Aug-27/Sep-3", + "body": "## A picture is worth a thousand words, more so in astronomy ##\n\n**Let's take a look at the coming week's sky**\n\n\nhttp://www.skyandtelescope.com/wp-content/uploads/Venus-Jupiter-27Aug2016_f.jpg\n(Image courtesy of Sky and Telescope)\nOn August 27th, about 45 minutes after sunset, go outdoors and start looking low above the horizon in the west for an amazingly close pairing of Venus and Jupiter.\n\nhttp://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\n\n\nNext weekend, shortly after sunset, the thin Moon (waxing crescent) steps away from Venus and Jupiter.\n\nLooking at the night sky is a great joy! Free for everyone with no ticket required. You can watch the evening sky with your naked eye, no need for telescope or binoculars for these beautiful astronomical events.\n\n*Stay tuned for next week's sky.*\n\n\n\n\n If you enjoyed this post please vote for my witness node. Learn how to vote for witness `okay` **at the end of my witness post** by [**clicking here**](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network). ", + "json_metadata": "{\"tags\":[\"science\",\"astronomy\"],\"image\":[\"http://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", + "last_update": "2016-08-28T17:13:03", + "created": "2016-08-28T15:45:33", + "active": "2016-08-28T17:13:03", + "last_payout": "2016-08-29T16:11:21", + "depth": 0, + "children": 5, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-28T16:11:21", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 4, + "root_author": "okay", + "root_permlink": "this-week-s-sky-aug-27-sep-3", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779916, + "author": "skyefox", + "permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "category": "garden", + "parent_author": "", + "parent_permlink": "garden", + "title": "A small garden update... My Pink Brandywine Tomatoes are coming!", + "body": "As I have stated in earlier posts, gardening is currently my obsession.. it's seems wild to me that the standard is to work for currency and trade currency for food rather than just growing your own food. \n

Here is my small harvest from this morning!

\nEvery morning I go out and eat a couple of my cherry tomatoes, a few leafy greens, and usually 1/2 a leaf of my sweet basil. It's a wonderful thing to wake up, take the dog out and get a healthy organic little snack. I love it.\nhttps://s14.postimg.org/62aqviz0h/IMG_1804.jpg\n\n\nI understand that gardening takes time, effort, and a little bit of knowledge but in my opinion it is one of the most reward \"hobbies.\" This is my first year gardening. I decided to garden this year because I have been doing more and more reading about the American food industry and my conclusion is that the American population are being made sick on purpose through the food we eat. I don't know exactly what does what in our food but it seems absolutely insane to me that we can't get the FDA to evaluate any dietary supplements but they will evaluate and even vouch for these lab made pharmaceutical drugs. \n\nAll of this lead me to feeling a strong urge to grow organic food. I honestly feel guilty when I feed my family and I don't fully believe in what we are eating. Don't get me wrong, I love pepperoni pizza but ignorance is bliss, and I am not ignorant to what I am eating. \n\nI believe I am slowly heading down the path of becoming a vegan as I gain more knowledge. I have always been a hunter and a fisherman, it's what I was taught as a young boy in the north woods. I love to hunt and fish, but I also have a very deep compassion for life. Not human life, but life in general. I believe that we are intelligent enough as a species to live without causing harm to other living things that are equipped with nervous systems. I guess I am just realizing day by day that things are not necessarily what I have been told... \n

This kind of sums up how I feel currently...

\nhttps://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\n\nI am not a very good consumer. I am very frugal and calculated with my money, sometimes to a fault. I'm also not good at being an employee and just being a \"gear in the machine.\" I was not built to work and be told what to do while someone acts as if their employment position somehow gives them a higher status than I. We are humans, you just have a different job. These factors, and many others, have lead to me being self employed and trying to find my way on the internet. I have dabble in many things online and I have learned enough to at least provide myself with enough income to pay my mortgage, bills, etc.. \n\nI am also someone that is in the prepper mind state. I have started my small stockpile of beans, rice, and various other dried foods. I think that the American people have become complacent and many of us are just chasing the carrot we were instructed to chase. Many people seem to not realize the fact that we as a country heavily depend on other people or corporations for the things we use everyday. If water and electricity were to be shut off and panic set it, many people would die because they don't know what to do without someone else providing them with these luxuries. \n\nI don't like the idea of depending on anyone for anything. I have always been someone who provided for myself. I got a job at 14 years old at the local bakery working Saturday mornings so that I could get my first computer myself. I worked for weeks, since I was only getting paid $5.15/hour (roughly 13 years ago) it took me a long time to save up for a computer to play Counterstrike 1.5... We had 6 kids in our house in a \"middle class\" family, needless to say we were told to get jobs as early as possible to acquire our luxuries. Since then I have had the mindset that I don't want to allow someone else to be \"the hand that feeds\", and that applies to food, water, electricity, and even knowledge of my child. \n\nDEPENDENCY OPENS THE DOORS FOR EXPLOITATION! And in a capitalist driven global economy, if it can be exploited, it often is. \n\nMy apologies, there I go again, going of on some rant instead of just showing you the damn garden update. I already can't wait for next spring. I have been buying heirloom vegetable seeds and thrift shopping for large planters for $1 so that next year I can grow lots more. \n

This is the Pink Brandywine that I am so excited about!

\nThese guys took forever to grow. I didn't know what I was doing and I had put too many plants in 1 planter which caused them to compete for the nutrients. On top of them a strong storm came through and blew these guys over and bent there stalks horizontal. I really didn't know if I would get any fruit from them, but they are changing and I can't wait to eat these!\nhttps://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\n\nhttps://s14.postimg.org/e3txgbbgh/IMG_1800.jpg\n\nHere is a cucumber that is growing a little goofy. Not sure why but its like a beer can cucumber... lol\nhttps://s14.postimg.org/c1tg22dhd/IMG_1802.jpg\n\nA more normal cucumber... \nhttps://s14.postimg.org/610t23x6p/IMG_1803.jpg\n\nAnd this is my $3 table I built so that I could start my seeds indoors under some fluorescent lights. \n\n\nhttps://s14.postimg.org/6t3h1b1dt/IMG_1805.jpg\n\n\nThank you for reading and happy gardening!", + "json_metadata": "{\"tags\":[\"garden\",\"photography\",\"rant\",\"food\"],\"image\":[\"https://s14.postimg.org/62aqviz0h/IMG_1804.jpg\",\"https://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\",\"https://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\"]}", + "last_update": "2016-08-28T17:12:54", + "created": "2016-08-28T17:12:54", + "active": "2016-08-28T17:36:42", + "last_payout": "2016-08-29T18:11:57", + "depth": 0, + "children": 2, + "net_rshares": "130408996119", + "abs_rshares": "130408996119", + "vote_rshares": "130408996119", + "children_abs_rshares": "130408996119", + "cashout_time": "2016-09-28T18:11:57", + "max_cashout_time": "2016-09-12T21:18:18", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "123", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "15", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 125, + "net_votes": 37, + "root_author": "skyefox", + "root_permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 779915, + "author": "fitiliper1985", + "permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "category": "sex", + "parent_author": "", + "parent_permlink": "sex", + "title": "In a relationship, sex becomes a matter of selfishness or unselfishness.", + "body": "
http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png
\n

\n

Before I was in a relationship, I didn't have much sex. My first sexual intercourse occurred while I was travelling overseas on a holiday by myself. I met a woman in hawaii at the airport, and later had sex with her.

\n

I had done a lot of masturbating prior to this. I had often thought about having sex, and I found that my sexual drive caused me to behave in ways that I normally wouldn't. 

\n

\n
https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg
\n

\n

For example I would follow women I found attractive, or I would try to look up their skirts, or I would wander about at night to try to look into bedroom windows.

\n

When I met someone that I knew I would marry, I thought I would be able to have sex as much as I liked because my wife would always be available to have it with me. This turned out to be untrue. My wife didn't want to have sex as often as I wanted to, and I found myself still masturbating while I waited for the next time to come.

\n

I don't think women understand the power of their husband's sexual drive. 

\n

\n
http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg
\n

\n

Men are attracted to women by how they look. It doesn't matter if they are strangers. Men will look at a woman dressed in  a certain way and will start feeling horny. As soon as they ejaculate, the feeling of horniness goes, but will return in a couple of hours. When the sexual desire comes upon a man, it becomes his dominating thought, and it demands to be satisfied. That's why many men then masturbate in order to relieve the pressure on their thoughts. If unrelieved the pressure grows and if the wife is unwilling to have sex, then some men will look for other women to have sex with. 

\n

The sexual pressure is constantly present in a man's mind until relief comes.

\n

\n
https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg
\n

\n

Most women are not as interested in sex as men. 

\n

\n
https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg
\n

\n

Women are more interested in relationship.  Women have sex with a man in the hope that the man will want to stay in their life and have a relationship with them. 

\n

Some women use sex as a bait to catch a man, and then when the relationship is happening, they are not as interested in sex anymore. Women enjoy sex, but as part of a fulfilling relationship. Men just want to put their penis into a vagina and ejaculate. As soon as ejaculation occurs, a lot of men lose all interest in the woman. The woman then feels hurt and used because she didn't get what she wanted which was relationship. Men will say anything they think a woman wants to hear in order to have sex.

\n

Wives who have sex with their husbands when not really wanting it, feel used by their husbands. Women also can be selfish when they demand sex from men who are not in the mood. 

\n

God created sex to be enjoyed in a committed relationship between a man and a woman who are one person physically, spiritually, emotionally, and mentally. 

\n

Sex is a part of the relationship, not the main thing. If a man demands sex then he is being selfish, and his relationship will be harmed if the woman gives sex to the man when she is not wanting to have it. If the man wants sex with his wife, then he must give her what she wants. He must romance her and give her a good relationship. Then if sex happens, it will be enjoyable for both of them. This will build the relationship.

", + "json_metadata": "{\"tags\":[\"sex\",\"psychology\",\"life\",\"story\",\"\"],\"image\":[\"http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png\",\"https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg\",\"http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg\",\"https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg\",\"https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg\"]}", + "last_update": "2016-08-28T17:12:42", + "created": "2016-08-28T17:12:42", + "active": "2016-08-28T18:08:06", + "last_payout": "2016-08-29T17:56:42", + "depth": 0, + "children": 5, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-28T17:56:42", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 12, + "root_author": "fitiliper1985", + "root_permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json new file mode 100644 index 00000000..bb2dc238 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 617094, + "author": "crowe", + "permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "category": "israel", + "parent_author": "", + "parent_permlink": "israel", + "title": "Israeli Bomb Siren goes off in my City. I filmed this from my deck.", + "body": "I thought my viewers would be interested in the place I actually live in. I live in a City called Ashkelon. Its about 7 miles North of Gaza. Last year in June when some missiles were being shot toward Israel the Sirens in Ashkelon went off. I filmed this video from my deck. The video is what we hear when this happens. \n\nhttps://www.youtube.com/watch?v=Ky23yJaNDfo", + "json_metadata": "{\"tags\":[\"israel\",\"siren\",\"gaza\",\"politics\",\"steemit\"],\"links\":[\"https://www.youtube.com/watch?v=Ky23yJaNDfo\"]}", + "last_update": "2016-08-15T19:12:42", + "created": "2016-08-15T19:12:42", + "active": "2016-08-15T19:12:42", + "last_payout": "2016-08-16T19:47:27", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-15T19:47:27", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "crowe", + "root_permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 617542, + "author": "luminarycrush", + "permlink": "cactus-in-the-clouds-catalina-island", + "category": "photography", + "parent_author": "", + "parent_permlink": "photography", + "title": "Cactus in the Clouds - Catalina Island", + "body": "\n

I came across a lone blooming cactus during a hike this weekend.  Photos taken at 946' ASL above Two Harbors, Catalina Island.

\n

\n


\n

\n


\n

\n", + "json_metadata": "{\"tags\":[\"photography\",\"cactus\",\"catalinaisland\",\"california\",\"twoharbors\"],\"image\":[\"https://scontent.xx.fbcdn.net/t31.0-8/13988224_10154518762224175_252304266230235242_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13923665_10154518762269175_2030254348907005554_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13988240_10154518762254175_9097905240858144855_o.jpg\"]}", + "last_update": "2016-08-15T19:44:48", + "created": "2016-08-15T19:44:48", + "active": "2016-08-15T19:44:48", + "last_payout": "2016-08-16T19:47:27", + "depth": 0, + "children": 0, + "net_rshares": "1339555910464", + "abs_rshares": "1339555910464", + "vote_rshares": "1339555910464", + "children_abs_rshares": "1339555910464", + "cashout_time": "2016-09-15T19:47:27", + "max_cashout_time": "2016-09-01T02:13:51", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 14, + "root_author": "luminarycrush", + "root_permlink": "cactus-in-the-clouds-catalina-island", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 616664, + "author": "brunopro", + "permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "category": "steemit", + "parent_author": "", + "parent_permlink": "steemit", + "title": "LATEST NEWS: Payouts are back to 24H - What do you think about it? [ Quick read / Opinion Article ]", + "body": "http://imgur.com/HrpWWaK.png\n\n## And there are changes again regarding the duration until the payout occurs, now your post will have a minimum 24 hours duration until the first payout. \n\nPersonally I think that they should never have changed it to 12 hours. I didn't understand the logic behind it at the time and I still don't. This 24h period it's ideal because this way the post has better chances of overcoming the first publish period and get more traction. It also enables of a higher possibility of being seen and upvoted by the users that on the 12h were sleeping or simply away.\n\n# And you? What do you think about this change?\n\n----\n\nEdit post-publish: I've notice that I can't upvote a post that has been up for a month. Is this new also? I thought a post would always be open for an upvote? Can anyone reply to this question? thanks!\n\n----\n\n###### Photo Credits: https://unsplash.com/@sonjalangford", + "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"opinion\",\"reward\"],\"image\":[\"http://imgur.com/HrpWWaK.png\"]}", + "last_update": "2016-08-15T18:51:42", + "created": "2016-08-15T18:36:36", + "active": "2016-08-17T15:39:57", + "last_payout": "2016-08-16T19:47:42", + "depth": 0, + "children": 22, + "net_rshares": "76217996022", + "abs_rshares": "76217996022", + "vote_rshares": "76217996022", + "children_abs_rshares": "78071773184", + "cashout_time": "2016-09-15T19:47:42", + "max_cashout_time": "2016-08-30T20:41:45", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "20200", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "3483", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 13512, + "net_votes": 82, + "root_author": "brunopro", + "root_permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 617534, + "author": "yassinebentour", + "permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "category": "writing", + "parent_author": "", + "parent_permlink": "writing", + "title": "The purpose of property rights is to mitigate conflict over scarce, rivalrous resources", + "body": "\n

http://unitedcivilrights.org/images/fa-prprty.gif

\n

The purpose of property rights is to mitigate conflict over scarce, rivalrous resources. To have a property right over a scarce, rivalrous resource is to have the right to exclude others from using that resource in the attainment of some ends. For example, I have property rights over my body, which means I can exclude others from using my body for sexual pleasure or labor without my consent. If they do access my body in such a way without my consent, it's called rape or slavery, respectively. Likewise, I have property rights over the accumulated capital for which I consensually trade my time and labor, which means I have the right to exclude people from using my accumulated capital without my consent. When someone accesses my accumulated capital in such a way without my consent, it's called theft or trespass.
\nScale doesn't change this. If I transform my accumulated capital into a factory by hiring people who voluntarily exchange the product of their labor for some of my accumulated capital, this means that they value what they receive in exchange for working more than they value the direct product of their labor (the factory). Likewise, it means I value the factory more than the accumulated capital I gave up for it. This is a win-win situation, or a positive sum game. The workers I hired retain property rights over the capital they received as payment for their labor, which means they can exclude others from the use of their newly acquired accumulated capital, and I retain property rights over the factory, which means I can exclude others from the use of my factory.
\nDiscrepancies between marginal benefit don't change this either. A consensual exchange doesn't become theft just because one party benefits more from the exchange than another. If this wasn't the case, every single instance of buyer's remorse would be indicative of theft. If someone agrees to produce a walking stick in exchange for ten dollars and the purchaser of the walking stick then sells it to someone else for twenty dollars, how can it be claimed that the producer of the walking stick was a victim of theft if they haven't been deprived of the ten dollars for which they voluntarily exchanged the walking stick? Would it have been reasonable to expect that the first purchaser of the walking stick wouldn't have obtained more than ten dollars of value from it given that the exchange wouldn't have happened in the first place if they hadn't valued the walking stick more than they valued ten dollars?
\nOf course not. Anything that happens to the walking stick after the original exchange is no business of the producer of the walking stick because said producer already exchanged his property rights to the walking stick for property rights to a different form of accumulated capital (ten dollars).
\nLikewise, if I use more of my accumulated capital to hire workers to work in my factory, they will only accept my offer of employment if they value what I'm offering more than their own free time and more than whatever stake they may have otherwise had in the product they will be producing. In other words, if they accept employment, it will be with the understanding that they're giving up any stake in what they're producing in exchange for what I'm offering them. Maybe my factory assembles televisions. Maybe one worker can produce one television per hour. Would they be able to produce televisions this efficiently without my previous investment in production capital (which hasn't even been recouped and probably never will be completely given that maintenance, employment and higher order production good costs are a revolving door)? Would they be able to produce televisions AT ALL without this previous investment in production capital? Of course not, and they know this, which is why they're willing to give up both their leisure and whatever stake their labor may have otherwise entitled them to in the production of a television in exchange for a fixed amount of accumulated capital.
\nAs was the case with the walking stick, whatever happens to the television after this exchange occurs is no business of the worker. How could the future sale of the television constitute theft of the worker's accumulated capital if it can't be demonstrated that the worker was deprived of the accumulated capital that he voluntarily accepted as payment for the production of the television, especially given that the television was produced with other accumulated capital (plastic, circuits, labor saving devices, etc.) that the worker never even owned?
\nIt can't.
\nProperty ownership necessarily implies exclusivity, which means that \"private property\" is redundant, as is \"personal property\". The words \"private\" and \"personal\" denote exclusivity, which is already implied by the word \"property\". To differentiate between \"personal property\" and \"private property\" is therefore a distinction without a difference. This implication of exclusivity also means that \"public property\" is a contradiction in terms. If no one can be excluded from using the resource, it isn't property. Resources that aren't scarce or rivalrous likewise can not be considered property, which means that \"intellectual property\" is also a contradiction in terms.
\nThis means that seizing the means of production is a genuine form of theft and that \"pirating\" music, software, art and writing is not, which may seem counter-intuitive if you attended the indoctrination camps euphemistically known as \"public schools\" when you were growing up.

\n", + "json_metadata": "{\"tags\":[\"writing\",\"rights\"],\"image\":[\"http://unitedcivilrights.org/images/fa-prprty.gif\"]}", + "last_update": "2016-08-15T19:43:57", + "created": "2016-08-15T19:43:57", + "active": "2016-08-15T19:50:39", + "last_payout": "2016-08-16T19:47:48", + "depth": 0, + "children": 2, + "net_rshares": -104004690671, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": "25854883309", + "cashout_time": "2016-09-15T19:47:48", + "max_cashout_time": "2016-09-01T01:02:42", + "total_vote_weight": 0, + "reward_weight": 736, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "yassinebentour", + "root_permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 617538, + "author": "libtrian.outlet", + "permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "category": "politics", + "parent_author": "", + "parent_permlink": "politics", + "title": "Obama puts Congress on notice: TPP is coming", + "body": "http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\nFriday's move is the clearest indication yet that the White House is serious about getting Obama’s legacy trade deal.\n\nThe White House put Congress on notice Friday morning that it will be sending lawmakers a bill to implement President Barack Obama’s landmark Trans-Pacific Partnership agreement — a move intended to infuse new energy into efforts to ratify the flat-lining trade pact.\n\nThe move establishes a 30-day minimum before the administration can present the legislation, but the White House is unlikely to do so amid the heated rhetoric of a presidential campaign in which both major party nominees have depicted free trade deals as massive job killers.\n\nFriday's notification is the clearest signal yet that the White House is serious about getting Obama’s legacy trade deal — the biggest in U.S. history — passed by the end of the year, as he has vowed to do despite the misgivings of Republican leaders and the outright opposition of a majority of Democrats in Congress.\n\nStriking a defiant tone, Obama predicted at a press conference last week that the economic centerpiece of his strategic pivot to Asia would pass in the lame-duck session, saying he’d like to sit down with lawmakers after the election to discuss the \"actual facts\" behind the deal, rather than toss it around like a \"political football.\"\n\n\"We are part of a global economy. We're not reversing that,\" Obama said, describing the necessity of international supply chains and the importance of the export sector to U.S. jobs and the economy. \"The notion that we're going to pull that up root and branch is unrealistic.\"\n\nThe notification, a new requirement of the trade promotion authority legislation Congress passed last year to expedite passage of the Asia-Pacific pact, is “meant to ensure early consultations between the administration and Congress,” Matt McAlvanah, a spokesman for the Office of the U.S. Trade Representative, said in a statement. “As such, the draft SAA [Statement of Administrative Action] was sent today in order to continue to promote transparency and collaboration in the TPP process.”\n\nThe White House's draft document describes the major steps the administration will take to implement any changes to U.S. law required by the deal. Those actions range from the mundane — designating an administration point of contact for communications about the pact — to the complex — setting up procedures to stop harmful surges of agricultural or textile imports.\n\nBut the deal is going nowhere until the White House addresses a number of concerns lawmakers have raised about the trade agreement, which Canada, Mexico, Japan and eight other countries joined the United States in signing last February.\n\nFirst and foremost: satisfying the concerns of Senate Finance Committee Chairman Orrin Hatch (R-Utah) and other lawmakers about protections for a new class of drugs known as biologics. They say the pact provides too short a monopoly period for rights to research and development data. Other lawmakers have complained the deal would bar tobacco companies from seeking redress through investor-state dispute arbitrage for damages resulting from country regulations. Still others are seeking assurances that member countries will abide by their commitments to provide access for U.S. pork and dairy exports.\n\nUntil these issues are resolved, House Speaker Paul Ryan and Senate Majority Leader Mitch McConnell have made clear that the pact will not get the votes it needs to pass.\n\nRyan's spokeswoman, AshLee Strong, reiterated the point on Friday.\n\n“As Speaker Ryan has stated for months, there are problems that remain with the administration’s TPP deal, and there can be no movement before these concerns are addressed,\" she said.\n\nDemocrats, meanwhile, have largely called the deal a nonstarter over concerns about the enforceability of labor and environmental standards in countries like Vietnam and the lack of strong protections against currency manipulation.\n\nThe administration claims it is making progress on these issues and has resolved others, including banking industry concerns over the exclusion of financial data from rules prohibiting countries from requiring local storage.\n\nBut that doesn’t change the reality of the down-ballot drag that candidates are facing as they campaign back home in their districts. In a reversal from years past, many Republicans are on the defensive about their support for free trade because of Donald Trump’s daily tirades about what he characterizes as the serious economic damage wrought by trade agreements like the North American Free Trade Agreement and the TPP as well as his complaints that China is flouting international trade rules.\n\nThe Republican platform picked up on this theme, saying significant trade deals \"should not be rushed or undertaken in a Lame Duck Congress.\"\n\nThe small band of Democrats who the administration hopes will support the TPP are facing increased pressure within their own party to abandon the president on the agreement. Sens. Bernie Sanders’ and Elizabeth Warren’s strong condemnations of the trade deal have forced Hillary Clinton, who supported the TPP as Obama’s secretary of state, to reject the pact to appease the liberal wing.\n\n\"I will stop any trade deal that kills jobs or holds down wages, including the Trans-Pacific Partnership,\" Clinton said during an economic policy speech at an automotive manufacturing plant in Warren, Mich., on Thursday. \"I oppose it now, I'll oppose it after the election and I'll oppose it as president.\"\n\nClinton’s clear rejection of the trade deal has emboldened liberal groups like the Warren-aligned Progressive Change Campaign Committee to launch a campaign to press Democrats to publicly oppose a TPP vote in the lame duck.\n\nSanders also called on Democratic congressional leaders to go on record against the White House’s effort to get the deal done by the end of the year, saying the agreement is opposed by every trade union and the grassroots base of the Democratic Party.\n\n\"I am disappointed by the president's decision to continue pushing forward on the disastrous Trans-Pacific Partnership trade agreement that will cost American jobs, harm the environment, increase the cost of prescription drugs and threaten our ability to protect public health,” the Vermont senator said in a statement after learning of the White House's action on Friday.\n\nMeanwhile, the administration continues to press the deal in key congressional districts — especially those of Democrats who supported the trade promotion authority bill last year.\n\nInterior Secretary Sally Jewell returned to her hometown of Seattle last month to tout the TPP’s potential effects on the environment at a Washington Council on International Trade event with more than 150 business leaders.\n\nThen, last week, Commerce Secretary Penny Pritzker hit the San Diego and Boulder districts of Reps. Susan Davis and Jared Polis — two of the 28 House Democrats that voted for the bill — and visited a steel plant in Cleveland to promote the TPP. Treasury Secretary Jack Lew did the same when he met with local and state officials and Fortune 500 business executives in Minneapolis.\n\nOn Thursday, Undersecretary of Commerce for Oceans and Atmosphere Kathryn Sullivan spoke at a Seattle clean energy business roundtable focused on the TPP and the environment. And this Monday, Deputy U.S. Trade Representative Robert Holleyman will participate in a World Affairs Council of Atlanta discussion on the trade deal featuring former Republican Sen. Saxby Chambliss and UPS CEO David Abney.\n\nAs the political fight plays out, the nuts-and-bolts process of moving the deal forward will continue. Once Congress reviews the draft notification that the White House submitted on Friday, the administration can move forward with sending lawmakers a final statement and the draft of the implementing bill itself. The legislation will describe the actual changes to U.S. law to comply with the rules of the trade agreement.\n\nAfter that, the Senate Finance and House Ways and Means committees could hold “mock markups” of the bill (because under trade promotion authority, Congress is not actually allowed to tinker with the agreement or its implementing legislation itself, but it can ask the administration to do so).\n\nBut given the tenor of the elections, the entire process could be pushed into a crowded lame-duck legislation session, which would mean no time for the mock markups. Instead, there could be a lot of deal-making between the White House and congressional leadership to move the bill before Clinton or Trump takes over on Jan. 20.\n\nObama said last week that he’s ready to press his case. \"Right now, I'm president, and I'm for it. And I think I've got the better argument,\" he said.\n\nSource:\nwww.politico.com/story/2016/08/obama-congress-trade-warning-226952", + "json_metadata": "{\"tags\":[\"politics\",\"tpp\",\"conspiracy\",\"news\",\"freetrade\"],\"image\":[\"http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\"]}", + "last_update": "2016-08-15T19:44:39", + "created": "2016-08-15T19:44:39", + "active": "2016-08-15T19:45:42", + "last_payout": "2016-08-16T19:47:57", + "depth": 0, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": "11700424464", + "cashout_time": "2016-09-15T19:47:57", + "max_cashout_time": "2016-09-04T23:37:39", + "total_vote_weight": 0, + "reward_weight": 2046, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 3, + "root_author": "libtrian.outlet", + "root_permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 951797, + "author": "profanarky", + "permlink": "the-dragon-s-blood-part-29", + "category": "story", + "parent_author": "", + "parent_permlink": "story", + "title": "The Dragon's Blood (Part 29)", + "body": "\n

\n

In which the folks in the subway find themselves some unwelcome visitors...

\n

29

\n

   “Do NOT panic! There is no reason to believe that this is anything more than just a power outage.”  

\n

   “But-- BUT-- how can it be the whole state?” One wide-eyed young woman, one of the aforementioned punk rockers actually raised her hand.  

\n

   “Yeah, it’s gotta be Al Qaeda, who the hell else could it be?!!” Another idiot bellowed.    

\n

   Others followed, there words quickly jumbling together into a tidal wave of paranoia. It only took one idiot to get the ball rolling.   

\n

   “It’s gotta be the terrorists, who the hell else could it be?”    

\n

   “Oh my god, I gotta get to my kids… My kids are still at the day care!!!”   

\n

   “Did an airplane hit a power plant??!! OH GOD!! DID AN AIRPLANE HIT ONE OF THE NUCLEAR PLANTS??!!”    

\n

   She heard it all and it was nothing more than a buzzing, though an irritating one nonetheless. Her instincts, those things cops called their gut instincts told her Mister Blue-eyes was the key, the only thing really important right now. Mister Blue-eyes and whatever the hell it was he was watching outside their little tin prison.  

\n

     “NOW LISTEN DAMMIT!!!” She hollered, trying to make herself louder than the loudest of them, a difficult task with New Yorkers. “I told you, there’s no goddamn reason to think it’s terrorism! This has happened before in our lifetimes and it’s gonna happen again. As far as I’m concerned it ain’t nothing more than a power outage. Going FUCKING crazy ain’t gonna help us any, dammit!!”  

\n

   They kept going, some of them, but most paid her mind and listened, their faces drawn and tired. They’d suffered enough the last few years, New Yorkers. There wasn’t a one of them, including herself, who hadn’t had their world turned literally upside down two years before. The terror they’d lived was fresh on their minds, fresh and ready to burst again and overwhelm them. It was a hard thing, it truly, truly was.     

\n

   “Now I just got off the phone with my partner and he says he’s gonna get people down here to get us out as soon as possible. There are trains stalled all over the city. Rescue workers are leading those people out from underground and up to their homes. He told me there would be a group of them here soon. He was gonna get them here.”    

\n

   “Is that them?” Came the deep voice of Jeffrey Thornton. He’d been quiet while the others yelled, silent and listening to what she had to say. The moment she’d spoken of rescue his eyes had gone outside the train and he saw what Mister Blue-eyes had apparently been watching.    

\n

   “Where?” She asked him, stumbling over and peering outside, right next to the stranger in the baseball cap.       

\n

   She saw nothing at first, her eyes trying to focus past the reflections in the glass and out into the pitch black.      

\n

   “Those--,” Mister Blue-eyes said, at last speaking, his voice accented in a manner she’d never heard before. Something about it was as wrong and as otherworldly as his eyes were. “---are not rescuers of any sort.”    

\n

   Out of the corner of her eye she saw him rise and back away from the window and once again her instincts spoke to her. They told her to back away as well, and to not stop there. They said to her, no, they screamed at her to run, to run as far from here as possible.      

\n

   But she didn’t, she had to see what they were, had to see for herself.    

\n

   When the figures finally did materialize from the darkness, they weren’t human at all.     

\n

End Part 29

\n

         If you find yourself interested in the whole damnedable thing and wanna throw me a few bucks, here's a link to it on Amazon.      

\n

  https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1   

\n


\n", + "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"creative\",\"writers\",\"writing\"],\"image\":[\"http://www.followingthenerd.com/site/wp-content/uploads/shadowpeople.jpg\"],\"links\":[\"https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1\"]}", + "last_update": "2016-09-14T19:15:09", + "created": "2016-09-14T19:15:09", + "active": "2016-09-15T15:19:39", + "last_payout": "1970-01-01T00:00:00", + "depth": 0, + "children": 3, + "net_rshares": "89025972926", + "abs_rshares": "89025972926", + "vote_rshares": "89025972926", + "children_abs_rshares": "89614201477", + "cashout_time": "2016-09-15T19:48:29", + "max_cashout_time": "2016-09-28T19:15:09", + "total_vote_weight": "401621156077855379", + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 3, + "root_author": "profanarky", + "root_permlink": "the-dragon-s-blood-part-29", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 615287, + "author": "stellabelle", + "permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "category": "secret-writer", + "parent_author": "", + "parent_permlink": "secret-writer", + "title": "SECRET WRITER: I Feel Like An Alien Among People In My Country", + "body": "http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\n\n# I have to hide my true self.\n\nIt just so happened that I was constantly losing my friends. It's like a curse was put on me.\nJudging by the reviews from former colleagues and friends, I was a \"nice and friendly person who was always willing to help.\"\n\n# However, constantly all these friends ceased to be friends with me, for no reason. They just stopped communicating, no quarrels, no disagreements and other things!\n\nI had a lot of friends ... But our paths diverged.\n\nIn my childhood I had friends, but my family moved to another city, and I lost my friends. In the new city, I made new friends. I had one close friend. Even his move to another part of the city has not prevented us from seeing each other every weekend. And one day, he was taken into the army. And one day, his aunt came to me, and said that he is no more, he was killed when he was on sentry duty ...\n\n![imaged6bd4.jpg](https://www.steemimg.com/images/2016/07/26/imaged6bd4.jpg)\n\nPeople ignore me constantly on the Internet, too. On any website, forum. I try to communicate, start a dialogue, and all people just ignore me. Suffice it to ask someone about something, write, and so on, and no response. \n\n# It's as if I did not exist.\n\nhttp://i.giphy.com/3o72FhMTVaOTycqObu.gif\n\nI am always open and friendly, and in return I receive arrogance against me or they completely ignore me.\nThis is what hurts the self-assessment.\n\n# I have no one to talk, no one to share the news with. Not one to ask for help. When I die, nobody will notice. \n\nhttp://i.giphy.com/l46CABOxa2Itf99bG.gif\n\n# I change people!\n\nI've got one property ... when a person begins to communicate with me, he is beginning to change. He begins to listen to the music that I like. He begins to lead a similar lifestyle. In general, people change for the better. From this, I feel somehow enhanced. And apparently, it has become another man moves away from me and goes his own way. As the chicks leave the nest as adults. Other explanation I can find.\n\n# Childhood\n\nAt school I was a \"whipping boy\".\n\nhttp://i.giphy.com/Hem0mSEEPwQBa.gif\n\nEndured constant insults, humiliation. Every day for 3 years. The school was torture for me. I did not like school, sometimes skipped lessons to avoid it all. Of course, it has affected my level of education, I studied badly.\n\nAnd also, my eyesight began to deteriorate, I did not see what was written on the blackboard. And when I admitted that I had bad eyesight, meant even more exposure to ridicule. In addition, due to health problems, but rather due to an error from talentless doctors, I had to take some strange drug. What it was I do not know, but I remember that I had to take these pills with milk. At first, nothing happened ... but then I wanted to eat every 5 minutes, I could not stop! I suffered from hunger! And accordingly, I gained weight. Needless to say, that became more humiliation for me.\n\nPerhaps it is karma. After all, before all this, I, too, along with all, mocked other classmates. Well now I know, I deserve it all.\n\nIt all ended when I graduated from high school. I changed just for the summer. Completely changed! I was starving and had grown very thin. Enrolling in college, I stopped being afraid of the people because they did not know who I was at school. Former classmates simply did not recognize me in the street. I became a different person. I started a new life with a clean slate.\n\nhttp://i.giphy.com/763KvbtkqH3e8.gif\n\n# I'm for searching myself.\n\n### Punk.\n\nOne day on one local forum, I found an ad that a punk rock band was looking for a drummer. I do not know why, or what came over me, or how my subconscious played a role, but I wrote to them that I am ready to join them.\n\nIn those years, I liked punk rock. But I did not know how to play the drums! However, I had an ear for music and rhythm. Since childhood, I remember I loved playing improvised drums.\n\nhttp://i.giphy.com/3oEjI2cJuP3Y0dcfV6.gif\n\nAt the first rehearsal something happened. But, of course, I played really disgusting. I liked that I was with other people. I liked all the socializing after the rehearsals, but the rehearsals themselves I sometimes disliked.\n\nI was getting the feeling that my lack of skill playing the drums was getting the band down. The band broke up after 2 years, played three songs in one of the amateur concerts. I still blame myself for failing them. But communicating with them gave me pleasure.\n\n### Church of Satan.\n\nhttp://i.giphy.com/xThuWk5MZglNP8IsJG.gif\n\nI've never been religious.\nOne day it so happened that I was carried by some away articles and the book \"Church Satan\" that I found on the Internet. So I soon became well versed in the sect (I still keep granted by them, the so-called \"certificate\" as a memory). And then, I began to take an active and more active role in this church.\n\nI was the first who made an unofficial website, for which I was honored with awards and praise. I was the first who wrote a skeptical analysis of the Bible. And my critiques were very popular! Actually, thanks to them that I became known.\n\nAnd then I began to get to know ones of the elders. With me, I remember, I spoke to some journalists, a student who wrote some work, theologians, members of the new sect, and anyone with an interest. Probably because I was often on the network. After all, I have never been a part from the college and at home, and did nothing.\n\nBut then, I and several other members became disillusioned, and I left the sect.\n\nAnd then there were various attempts to find myself, I was changing lifestyles and views on life.\n\nWhy did I write this? All of the above has given me some experience in dealing with people and the ability to understand who I am and why, to find my place in life.\n\nPagan Old Believers tried invite me to come, and then I almost became a skinhead.\n\n> \"What people call life - just a game, but this game is sometimes instructive, and all that it teaches - only lessons from which to borrow wisdom, therefore, ought to live.\" (C)\n\n# Loneliness gave me the alternative to communion, namely: I read a lot of books, of which learned many new things from psychology, philosophy, spirituality and languages.\n\nhttp://i.giphy.com/AbuQeC846WKOs.gif\n\nHave you noticed that being in society and when in the company of others, you do not crave training or self-development? I see this for myself when my brother visits me. I do not read books, I do not ponder any situation and theory, I just talk and spend time with my brother. Loneliness provides an incentive for development. With the help of loneliness, you really will begin to appreciate the friendship and fellowship.\n\n# This can be compared with food delicacies. If you eat delicacies every day, they will cease to be so desirable and unusual, and they will become commonplace.\n\nhttp://i.giphy.com/WmEvcZna75UfS.gif\n\n# Now.\n\nMy current way of life is very similar to Tantric Buddhism, although it is not defined by that as it has no name, and does not need to be defined as such.\n\n# Sometimes it's painful and unpleasant to look at people.\n\nhttp://i.giphy.com/JsL3hYFdvMMSs.gif\n\nI understand why they are themselves, why they have such a way of life, but I do not want to be like them and be with them in the same company. I do not like it.\n\nI never offend for a reason, I never attack, and I do no harm.\nEmpathy - what distinguishes us from animals.\n\nI value every life, no matter what that life is.\nI do not accept what most people love.\nI do everything consciously, extracting meaning and benefits from the experience.\nFor example, I have a meal. I do not eat garbage food, because it does not give to my body anything useful, since it does not contain nutrients. \n\n# I do not drink alcohol, smoke cigarettes or do drugs. \n\n\nAnd that is why people around me laugh or look at me quizzically. They say that I'm lying, sick, abnormal, or \"mother does not allow\". They say, \"in life need one needs to try everything!\" \n\nBut none of them for some reason, do not try, for example, quantum physics, a healthy lifestyle, or Buddhism.\n\n**In life, need to not only try, but also try not to try!**\n\n# I do not live with the people, but I live among the people.\n\nIf only you knew how hard all of this is ... I have to hide it all, and to adapt to the \"generally accepted norms\", in order not to be mocked. \n\nI feel somehow alien among the people. I have to wear a mask to resemble the people and not be detected.\n\nhttp://i.giphy.com/QG0th9DNdRrGw.gif\n\n> \"No pyramids of authority.\nMaster has an older brother, nothing more. And he just does the hard work that the others do not overpower. If it is otherwise, then trouble is inevitable.\nAuthority - this is a mistake \"(c).\n\nIf you have read Orwell's novel \"1984\" or watched the same film, you know, all this is happening in my country.\nPeople poisoned by propaganda, people are trying to survive, they are afraid of the authorities and freedom.\nAll this is laid bare and exacerbated in human animal instincts. The principle of flocks. Not like us - the enemy is dangerous, you need to avoid, or to die.\n\nThe population cannot tolerate dissent, any manifestation of freedom, something different from their lifestyle and worldview. In connection with this, people with a different lifestyle, look, worldview and way, becomes an object of ridicule, an outcast, a threat, an enemy.\n\nIt's not comfortable for me to live here. But leave (until the border has not yet closed) there is no possibility. It is very expensive, and I make incredibly low wages, and wages continue to fall, while food and services continue to rise in price.\n\nHow I would like live in a free country! Be yourself, do not hide anything, not trying to make excuses for my views and lifestyles.\n\nMaybe relocation to another country could change something in me, but I notice, positive emotions in me less and less and I feel less joy and desire to live.\n\nhttp://i.giphy.com/eR2OWX51qesIo.gif\n\n-Secret Writer\n\nImages and gifs: All images are by Stellabelle, all gifs are from giphy.com.", + "json_metadata": "{\"tags\":[\"secret-writer\",\"isolation\",\"self-development\",\"life\"],\"image\":[\"http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\"]}", + "last_update": "2016-08-15T17:39:09", + "created": "2016-08-15T16:44:42", + "active": "2016-08-17T15:01:48", + "last_payout": "2016-08-16T19:48:36", + "depth": 0, + "children": 43, + "net_rshares": "981828724825", + "abs_rshares": "984642850369", + "vote_rshares": "981882842624", + "children_abs_rshares": "18007718646255", + "cashout_time": "2016-09-15T19:48:36", + "max_cashout_time": "2016-08-30T21:38:48", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "356586", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "31898", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 238520, + "net_votes": 293, + "root_author": "stellabelle", + "root_permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 617429, + "author": "teutonic", + "permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "category": "awesome", + "parent_author": "", + "parent_permlink": "awesome", + "title": "10 Amazing Optical Illusion Pictures To Mess With Your Brain", + "body": "http://www.mindmotivations.com/images/optical-illusion1.jpg \nIs the ladder going up or down?\nhttp://www.mindmotivations.com/images/optical-illusion2.jpg\nAre the dots in between the squares white, black or grey?\nhttp://www.mindmotivations.com/images/optical-illusion3.jpg \nparallel or crooked?\nhttp://www.mindmotivations.com/images/optical-illusion4.jpg\nHow many legs?\nhttp://www.mindmotivations.com/images/optical-illusion5.jpg\nFocus on the dot in the middle and then move your head backwards and forwards.\nhttp://www.mindmotivations.com/images/optical-illusion7.jpg\nIs the picture moving?\nhttp://www.mindmotivations.com/images/optical-illusion8.jpg\nIs there anything in between the different squares?\nhttp://www.mindmotivations.com/images/optical-illusion9.jpg\nface of a lady or a word?\nhttp://www.mindmotivations.com/images/optical-illusion6.jpg \nFocus on the 4 dots in the middle of the picture for 30 seconds. \nhttp://www.mindmotivations.com/images/optical-illusion10.jpg \neven possible?", + "json_metadata": "{\"tags\":[\"awesome\",\"\"],\"image\":[\"http://www.mindmotivations.com/images/optical-illusion1.jpg\"]}", + "last_update": "2016-08-15T19:35:54", + "created": "2016-08-15T19:35:54", + "active": "2016-08-15T20:10:06", + "last_payout": "2016-08-16T19:48:45", + "depth": 0, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-15T19:48:45", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "teutonic", + "root_permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 952070, + "author": "safar01", + "permlink": "lol-robot-tranformers-against-fishermen", + "category": "editing", + "parent_author": "", + "parent_permlink": "editing", + "title": "LOL ... Robot Tranformers against fishermen (steemitphotochallenge)", + "body": "\n

\n

show in the pictures are not real, but I edit them using Photoshop just

\n

 to train the imagination only.

\n

I made this picture just to entertain readers of all, 

\n

please advise the reader all my abilities to process images

\n", + "json_metadata": "{\"tags\":[\"editing\",\"with\",\"photoshop\",\"imagination\",\"steemitphotochallenge\"],\"image\":[\"https://scontent.fcgk1-1.fna.fbcdn.net/v/t1.0-9/44685_544257398931890_1432197168_n.jpg?oh=737dff7bef73ecfcaff983c130b55ee1&oe=587FF678\"]}", + "last_update": "2016-09-14T20:20:48", + "created": "2016-09-14T19:48:57", + "active": "2016-09-14T20:20:48", + "last_payout": "1970-01-01T00:00:00", + "depth": 0, + "children": 0, + "net_rshares": 158773924, + "abs_rshares": 158773924, + "vote_rshares": 158773924, + "children_abs_rshares": 158773924, + "cashout_time": "2016-09-15T19:48:57", + "max_cashout_time": "2016-09-28T19:48:57", + "total_vote_weight": "732186422373807", + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "safar01", + "root_permlink": "lol-robot-tranformers-against-fishermen", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 617119, + "author": "pipertomcat", + "permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "category": "bitcoin", + "parent_author": "", + "parent_permlink": "bitcoin", + "title": "Western Union investing in Blockchain technology...will it be Bitcoin ? or Ripple!?", + "body": "https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg \nhttps://s19.postimg.org/jiv4eri0j/Blockchain_technology1.png\nWhy not Steem Dollars then? I think ultimately Western Union and the like may actually choose or adopt a name that includes something like \"Dollar\". Lol\nhttps://s19.postimg.org/4y9g66xo3/Bitcoinripplebanner1.png\n\nI have said to different friends over the last year or so on occasion, that I fear Western Union is about to die by Bitcoin's hand. I compare Netflix, Youtube, Google Play, Itunes,and so forth killing retail establishments like Blockbuster video. Technology and the convenience it brings, easily dominates any industry, ask Kodak. \n\n I have friends who still have to purchase money orders to pay their rent. The Apartment complex refuses personal checks and apparently doesn't want employee's accepting cash. You can join their site online for a $50 per month fee and connect your checking account. What a ripoff! \nWow if they only knew of bitcoin and the coming technology.\nhttps://s19.postimg.org/743r0p14j/725_Ly9jb2lud_GVs_ZWdy_YXBo_Lm_Nvb_S9zd_G9y_YWdl_L3_Vwb_G9h.jpg\n\n\nhttps://s19.postimg.org/fc5olot0z/e873eec95dbe6437e8b73f6dc4b474e6.jpg\nhttps://s19.postimg.org/d2hkaxk37/a9ee5c9045261e324670df9b5e3fbf0c.png\n Western Union was in discussions with Ripple Labs early last year, regarding a blockchain pilot project. By using a cheap payment network, proponents claim that companies will be able to cut down the cost of remittances.\n The following quote from Barry Gilbert , the Digital Currency Insights Founder and CEO says it best:\n“If you look at Western Union and Moneygram, they have a fantastic opportunity to take advantage of bitcoin as a financial rail and incorporate it into their business.”\n\nAfter reading the following article just now, I will have to say that I think someone like Western Union may be the key player in bringing Bitcoin to the masses! The following is an article from Bravenewcoin-http://bravenewcoin.com/news/western-union-wont-make-the-same-mistake-with-blockchain/\n\n#steemdollar\n#steem\n#westernunion\n#ripple", + "json_metadata": "{\"tags\":[\"bitcoin\",\"steemdollar\",\"steem\",\"westernunion\",\"ripple\"],\"image\":[\"https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg\"]}", + "last_update": "2016-08-15T19:14:33", + "created": "2016-08-15T19:14:33", + "active": "2016-08-15T19:15:51", + "last_payout": "2016-08-16T19:49:42", + "depth": 0, + "children": 1, + "net_rshares": 53638386, + "abs_rshares": 53638386, + "vote_rshares": 53638386, + "children_abs_rshares": "45063474229", + "cashout_time": "2016-09-15T19:49:42", + "max_cashout_time": "2016-09-04T21:13:12", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 9, + "root_author": "pipertomcat", + "root_permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json new file mode 100644 index 00000000..d5ee9980 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 786710, + "author": "etcmike", + "permlink": "re-bullionstackers-screen-it-tab-it-what-are-they-20160829t061254603z", + "category": "steem", + "parent_author": "bullionstackers", + "parent_permlink": "screen-it-tab-it-what-are-they", + "title": "", + "body": "An excellent method of describing what each function is for. \n\nSteem on,\nMike", + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_update": "2016-08-29T06:12:51", + "created": "2016-08-29T06:12:51", + "active": "2016-08-29T09:35:12", + "last_payout": "2016-08-30T14:39:00", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "bullionstackers", + "root_permlink": "screen-it-tab-it-what-are-they", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 786711, + "author": "ekitcho", + "permlink": "re-laonie-how-to-set-up-your-own-voting-bot-for-robinhoodwhale-20160829t061342501z", + "category": "robinhoodwhale", + "parent_author": "laonie", + "parent_permlink": "how-to-set-up-your-own-voting-bot-for-robinhoodwhale", + "title": "", + "body": "good initiative mate !", + "json_metadata": "{\"tags\":[\"robinhoodwhale\"]}", + "last_update": "2016-08-29T06:13:39", + "created": "2016-08-29T06:13:39", + "active": "2016-08-29T06:13:39", + "last_payout": "2016-08-30T11:01:12", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "laonie", + "root_permlink": "how-to-set-up-your-own-voting-bot-for-robinhoodwhale", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 786712, + "author": "itay", + "permlink": "re-post-and-post-craigrant-introduceyourself", + "category": "post", + "parent_author": "bitmaxt", + "parent_permlink": "post-and-post-craigrant-introduceyourself", + "title": "", + "body": "I upvoted You", + "json_metadata": "{}", + "last_update": "2016-08-29T06:13:57", + "created": "2016-08-29T06:13:57", + "active": "2016-08-29T06:13:57", + "last_payout": "2016-09-03T05:42:51", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "bitmaxt", + "root_permlink": "post-and-post-craigrant-introduceyourself", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 786713, + "author": "anns", + "permlink": "re-whitezombie-steemit-s-not-dead-20160829t061410014z", + "category": "meme", + "parent_author": "whitezombie", + "parent_permlink": "steemit-s-not-dead", + "title": "", + "body": "Steem On", + "json_metadata": "{\"tags\":[\"meme\"]}", + "last_update": "2016-08-29T06:14:09", + "created": "2016-08-29T06:14:09", + "active": "2016-08-29T06:14:09", + "last_payout": "2016-08-30T07:31:42", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "whitezombie", + "root_permlink": "steemit-s-not-dead", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 786714, + "author": "jeza", + "permlink": "re-darkstarartphoto-throw-out-the-baby-20160829t061417629z", + "category": "anarchism", + "parent_author": "darkstarartphoto", + "parent_permlink": "throw-out-the-baby", + "title": "", + "body": "It's a good point, and I'll remember this post next time someone comes up me with this time honored argument.\n\nWhen people say this they are claiming that the good things can be kept separate from the stolen loot. \n\nYou can't throw separate the flour from the yeast after you've baked the bread", + "json_metadata": "{\"tags\":[\"anarchism\"]}", + "last_update": "2016-08-29T06:14:21", + "created": "2016-08-29T06:14:21", + "active": "2016-08-29T06:14:21", + "last_payout": "2016-08-29T20:12:12", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "darkstarartphoto", + "root_permlink": "throw-out-the-baby", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 786715, + "author": "pseudopoise", + "permlink": "re-eveningstar92-through-the-looking-glass-20160829t061452063z", + "category": "photography", + "parent_author": "eveningstar92", + "parent_permlink": "through-the-looking-glass", + "title": "", + "body": "This is so cute! Alice is one of my favorite stories. :)", + "json_metadata": "{\"tags\":[\"photography\"]}", + "last_update": "2016-08-29T06:14:51", + "created": "2016-08-29T06:14:51", + "active": "2016-08-29T16:46:12", + "last_payout": "2016-08-30T12:06:18", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "eveningstar92", + "root_permlink": "through-the-looking-glass", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 786716, + "author": "futurefood", + "permlink": "re-smartbean-re-futurefood-future-food-the-underrated-benefit-of-green-tea-20160829t061451602z", + "category": "health", + "parent_author": "smartbean", + "parent_permlink": "re-futurefood-future-food-the-underrated-benefit-of-green-tea-20160828t160415020z", + "title": "", + "body": "Yes that would be possible, although I'm far less knowledgeable on coffee :)", + "json_metadata": "{\"tags\":[\"health\"]}", + "last_update": "2016-08-29T06:15:00", + "created": "2016-08-29T06:15:00", + "active": "2016-08-29T06:15:00", + "last_payout": "1970-01-01T00:00:00", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "futurefood", + "root_permlink": "future-food-the-underrated-benefit-of-green-tea", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 786717, + "author": "lukeism", + "permlink": "re-churdtzu-nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america-20160829t061507948z", + "category": "comedy", + "parent_author": "churdtzu", + "parent_permlink": "nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america", + "title": "", + "body": "Fucking hilarious", + "json_metadata": "{\"tags\":[\"comedy\"]}", + "last_update": "2016-08-29T06:15:09", + "created": "2016-08-29T06:15:09", + "active": "2016-08-29T14:08:51", + "last_payout": "1970-01-01T00:00:00", + "depth": 1, + "children": 1, + "net_rshares": "251770688898", + "abs_rshares": "251770688898", + "vote_rshares": "251770688898", + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": "1092333007396197012", + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "churdtzu", + "root_permlink": "nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 786718, + "author": "christoryan", + "permlink": "re-djm34-re-sascha-our-life-on-planet-earth-part-3-what-happens-after-death-20160829t061600956z", + "category": "life", + "parent_author": "djm34", + "parent_permlink": "re-sascha-our-life-on-planet-earth-part-3-what-happens-after-death-20160828t191908229z", + "title": "", + "body": "You're exactly right! The oldest trick in the book was played by the devil ( a sneaky serpent that has a venomous bite ). Jesus did not come to set up churches but to set up \"the church\" of one truth. Religion is hocus pocus and there is only one God , he is all of our God. :D", + "json_metadata": "{\"tags\":[\"life\"]}", + "last_update": "2016-08-29T06:16:03", + "created": "2016-08-29T06:16:03", + "active": "2016-08-29T06:16:03", + "last_payout": "2016-08-29T20:55:27", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "sascha", + "root_permlink": "our-life-on-planet-earth-part-3-what-happens-after-death", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 786719, + "author": "thebear", + "permlink": "re-dexter-k-re-thebear-steemitphotochallenge-entry-20160829t061609423z", + "category": "steemitphotochallenge", + "parent_author": "dexter-k", + "parent_permlink": "re-thebear-steemitphotochallenge-entry-20160829t054349693z", + "title": "", + "body": "Thank you! Yes I would love that! You have to check out my other articles on Death Valley and Great Sand Dunes National Park. Especially if you love sand dunes! These are must go places! I would love it if you featured my photo and please check out the many more here, https://steemit.com/journey/@thebear/racetrack-playa-where-rocks-slide-across-the-earth-and-death-valley-national-park and https://steemit.com/journey/@thebear/sandboarding-in-great-sand-dunes-national-park-san-luis-valley-co I also have some more pretty cool Death Valley shots I have not posted if you're interested.", + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"],\"links\":[\"https://steemit.com/journey/@thebear/racetrack-playa-where-rocks-slide-across-the-earth-and-death-valley-national-park\"]}", + "last_update": "2016-08-29T06:16:09", + "created": "2016-08-29T06:16:09", + "active": "2016-08-29T08:11:39", + "last_payout": "2016-08-30T04:42:03", + "depth": 2, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "thebear", + "root_permlink": "steemitphotochallenge-entry", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json new file mode 100644 index 00000000..5fdc1016 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 0, + "author": "steemit", + "permlink": "firstpost", + "category": "meta", + "parent_author": "", + "parent_permlink": "meta", + "title": "Welcome to Steem!", + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "json_metadata": "", + "last_update": "2016-03-30T18:30:18", + "created": "2016-03-30T18:30:18", + "active": "2016-08-24T09:30:03", + "last_payout": "2016-08-24T19:59:42", + "depth": 0, + "children": 36, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "942", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "756", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 3548, + "net_votes": 90, + "root_author": "steemit", + "root_permlink": "firstpost", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 1, + "author": "admin", + "permlink": "firstpost", + "category": "meta", + "parent_author": "steemit", + "parent_permlink": "firstpost", + "title": "", + "body": "First Reply! Let's get this **party** started", + "json_metadata": "", + "last_update": "2016-03-30T19:52:30", + "created": "2016-03-30T19:52:30", + "active": "2016-07-18T19:53:12", + "last_payout": "2016-08-24T19:59:42", + "depth": 1, + "children": 2, + "net_rshares": -226592300084, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 8, + "root_author": "steemit", + "root_permlink": "firstpost", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 2, + "author": "proskynneo", + "permlink": "steemit-firstpost-1", + "category": "meta", + "parent_author": "steemit", + "parent_permlink": "firstpost", + "title": "Excited!", + "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", + "json_metadata": "", + "last_update": "2016-03-31T13:54:33", + "created": "2016-03-31T13:54:33", + "active": "2016-03-31T13:54:33", + "last_payout": "2016-08-24T19:59:42", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "1058", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "1059", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 4817, + "net_votes": 7, + "root_author": "steemit", + "root_permlink": "firstpost", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 3, + "author": "red", + "permlink": "steemit-firstpost-2", + "category": "meta", + "parent_author": "steemit", + "parent_permlink": "firstpost", + "title": "Did you Know?", + "body": "Did you know you can earn STEEM by commenting on posts?", + "json_metadata": "{}", + "last_update": "2016-04-06T19:22:42", + "created": "2016-04-06T19:22:42", + "active": "2016-07-13T08:38:48", + "last_payout": "2016-08-24T19:59:42", + "depth": 1, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "100", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "100", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 457, + "net_votes": 7, + "root_author": "steemit", + "root_permlink": "firstpost", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 4, + "author": "red", + "permlink": "red-dailydecrypt-1", + "category": "daily-decrypt", + "parent_author": "", + "parent_permlink": "daily-decrypt", + "title": "What You Should Know About the Coming Bitcoin Halving", + "body": "Bitcoin's protocol schedules a block reward 'halving' roughly every four years, as designed by Satoshi Nakamoto. But the artificial block size cap currently sanctioned by Core developers and a majority of miners alike may actually cause a catastrophic result come July 2016. Here's how. https://youtu.be/_NgFIj9dBkQ", + "json_metadata": "{}", + "last_update": "2016-04-06T19:54:12", + "created": "2016-04-06T19:54:12", + "active": "2016-04-11T21:41:45", + "last_payout": "2016-08-03T00:00:06", + "depth": 0, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "1024", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "1024", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 4661, + "net_votes": 6, + "root_author": "red", + "root_permlink": "red-dailydecrypt-1", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 5, + "author": "abit", + "permlink": "abit-first-post", + "category": "firstpost", + "parent_author": "", + "parent_permlink": "firstpost", + "title": "Trying", + "body": "Trying to post my first post..", + "json_metadata": "{}", + "last_update": "2016-04-08T07:33:42", + "created": "2016-04-08T07:33:42", + "active": "2016-08-10T09:18:09", + "last_payout": "2016-08-12T10:16:36", + "depth": 0, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "294", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "294", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 1339, + "net_votes": 4, + "root_author": "abit", + "root_permlink": "abit-first-post", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 6, + "author": "abit", + "permlink": "witness-category", + "category": "", + "parent_author": "", + "parent_permlink": "", + "title": "Witnesses", + "body": "This is the witnesses category", + "json_metadata": "{}", + "last_update": "2016-04-08T07:36:18", + "created": "2016-04-08T07:36:18", + "active": "2016-04-08T08:58:24", + "last_payout": "2016-08-12T10:16:39", + "depth": 0, + "children": 2, + "net_rshares": -491818553, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "160", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "160", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 729, + "net_votes": -2, + "root_author": "abit", + "root_permlink": "witness-category", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 7, + "author": "abit", + "permlink": "miner-category", + "category": "", + "parent_author": "", + "parent_permlink": "", + "title": "Miners", + "body": "This is the miners category", + "json_metadata": "{}", + "last_update": "2016-04-08T07:55:15", + "created": "2016-04-08T07:55:15", + "active": "2016-04-08T07:55:15", + "last_payout": "2016-08-12T10:16:42", + "depth": 0, + "children": 0, + "net_rshares": -481781440, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "138", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "139", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 632, + "net_votes": -3, + "root_author": "abit", + "root_permlink": "miner-category", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 8, + "author": "abit", + "permlink": "abit-witness-post", + "category": "witness-category", + "parent_author": "", + "parent_permlink": "witness-category", + "title": "Abit Witness Thread", + "body": "This is abit, an experienced witness. Will you vote for me?", + "json_metadata": "{}", + "last_update": "2016-04-08T07:58:51", + "created": "2016-04-08T07:58:51", + "active": "2016-04-19T12:08:57", + "last_payout": "2016-08-22T12:36:54", + "depth": 0, + "children": 5, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "110730", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "110702", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 503226, + "net_votes": 23, + "root_author": "abit", + "root_permlink": "abit-witness-post", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 9, + "author": "abit", + "permlink": "spam", + "category": "", + "parent_author": "", + "parent_permlink": "", + "title": "Spams", + "body": "Spams come here", + "json_metadata": "{}", + "last_update": "2016-04-08T08:49:15", + "created": "2016-04-08T08:49:15", + "active": "2016-04-08T08:49:15", + "last_payout": "2016-08-13T18:32:54", + "depth": 0, + "children": 0, + "net_rshares": -477016308, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "165", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "166", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 755, + "net_votes": -2, + "root_author": "abit", + "root_permlink": "spam", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json new file mode 100644 index 00000000..d7a8022f --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 617094, + "author": "crowe", + "permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "category": "israel", + "parent_author": "", + "parent_permlink": "israel", + "title": "Israeli Bomb Siren goes off in my City. I filmed this from my deck.", + "body": "I thought my viewers would be interested in the place I actually live in. I live in a City called Ashkelon. Its about 7 miles North of Gaza. Last year in June when some missiles were being shot toward Israel the Sirens in Ashkelon went off. I filmed this video from my deck. The video is what we hear when this happens. \n\nhttps://www.youtube.com/watch?v=Ky23yJaNDfo", + "json_metadata": "{\"tags\":[\"israel\",\"siren\",\"gaza\",\"politics\",\"steemit\"],\"links\":[\"https://www.youtube.com/watch?v=Ky23yJaNDfo\"]}", + "last_update": "2016-08-15T19:12:42", + "created": "2016-08-15T19:12:42", + "active": "2016-08-15T19:12:42", + "last_payout": "2016-08-16T19:47:27", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-15T19:47:27", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "crowe", + "root_permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 617542, + "author": "luminarycrush", + "permlink": "cactus-in-the-clouds-catalina-island", + "category": "photography", + "parent_author": "", + "parent_permlink": "photography", + "title": "Cactus in the Clouds - Catalina Island", + "body": "\n

I came across a lone blooming cactus during a hike this weekend.  Photos taken at 946' ASL above Two Harbors, Catalina Island.

\n

\n


\n

\n


\n

\n", + "json_metadata": "{\"tags\":[\"photography\",\"cactus\",\"catalinaisland\",\"california\",\"twoharbors\"],\"image\":[\"https://scontent.xx.fbcdn.net/t31.0-8/13988224_10154518762224175_252304266230235242_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13923665_10154518762269175_2030254348907005554_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13988240_10154518762254175_9097905240858144855_o.jpg\"]}", + "last_update": "2016-08-15T19:44:48", + "created": "2016-08-15T19:44:48", + "active": "2016-08-15T19:44:48", + "last_payout": "2016-08-16T19:47:27", + "depth": 0, + "children": 0, + "net_rshares": "1339555910464", + "abs_rshares": "1339555910464", + "vote_rshares": "1339555910464", + "children_abs_rshares": "1339555910464", + "cashout_time": "2016-09-15T19:47:27", + "max_cashout_time": "2016-09-01T02:13:51", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 14, + "root_author": "luminarycrush", + "root_permlink": "cactus-in-the-clouds-catalina-island", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 616664, + "author": "brunopro", + "permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "category": "steemit", + "parent_author": "", + "parent_permlink": "steemit", + "title": "LATEST NEWS: Payouts are back to 24H - What do you think about it? [ Quick read / Opinion Article ]", + "body": "http://imgur.com/HrpWWaK.png\n\n## And there are changes again regarding the duration until the payout occurs, now your post will have a minimum 24 hours duration until the first payout. \n\nPersonally I think that they should never have changed it to 12 hours. I didn't understand the logic behind it at the time and I still don't. This 24h period it's ideal because this way the post has better chances of overcoming the first publish period and get more traction. It also enables of a higher possibility of being seen and upvoted by the users that on the 12h were sleeping or simply away.\n\n# And you? What do you think about this change?\n\n----\n\nEdit post-publish: I've notice that I can't upvote a post that has been up for a month. Is this new also? I thought a post would always be open for an upvote? Can anyone reply to this question? thanks!\n\n----\n\n###### Photo Credits: https://unsplash.com/@sonjalangford", + "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"opinion\",\"reward\"],\"image\":[\"http://imgur.com/HrpWWaK.png\"]}", + "last_update": "2016-08-15T18:51:42", + "created": "2016-08-15T18:36:36", + "active": "2016-08-17T15:39:57", + "last_payout": "2016-08-16T19:47:42", + "depth": 0, + "children": 22, + "net_rshares": "76217996022", + "abs_rshares": "76217996022", + "vote_rshares": "76217996022", + "children_abs_rshares": "78071773184", + "cashout_time": "2016-09-15T19:47:42", + "max_cashout_time": "2016-08-30T20:41:45", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "20200", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "3483", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 13512, + "net_votes": 82, + "root_author": "brunopro", + "root_permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 617534, + "author": "yassinebentour", + "permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "category": "writing", + "parent_author": "", + "parent_permlink": "writing", + "title": "The purpose of property rights is to mitigate conflict over scarce, rivalrous resources", + "body": "\n

http://unitedcivilrights.org/images/fa-prprty.gif

\n

The purpose of property rights is to mitigate conflict over scarce, rivalrous resources. To have a property right over a scarce, rivalrous resource is to have the right to exclude others from using that resource in the attainment of some ends. For example, I have property rights over my body, which means I can exclude others from using my body for sexual pleasure or labor without my consent. If they do access my body in such a way without my consent, it's called rape or slavery, respectively. Likewise, I have property rights over the accumulated capital for which I consensually trade my time and labor, which means I have the right to exclude people from using my accumulated capital without my consent. When someone accesses my accumulated capital in such a way without my consent, it's called theft or trespass.
\nScale doesn't change this. If I transform my accumulated capital into a factory by hiring people who voluntarily exchange the product of their labor for some of my accumulated capital, this means that they value what they receive in exchange for working more than they value the direct product of their labor (the factory). Likewise, it means I value the factory more than the accumulated capital I gave up for it. This is a win-win situation, or a positive sum game. The workers I hired retain property rights over the capital they received as payment for their labor, which means they can exclude others from the use of their newly acquired accumulated capital, and I retain property rights over the factory, which means I can exclude others from the use of my factory.
\nDiscrepancies between marginal benefit don't change this either. A consensual exchange doesn't become theft just because one party benefits more from the exchange than another. If this wasn't the case, every single instance of buyer's remorse would be indicative of theft. If someone agrees to produce a walking stick in exchange for ten dollars and the purchaser of the walking stick then sells it to someone else for twenty dollars, how can it be claimed that the producer of the walking stick was a victim of theft if they haven't been deprived of the ten dollars for which they voluntarily exchanged the walking stick? Would it have been reasonable to expect that the first purchaser of the walking stick wouldn't have obtained more than ten dollars of value from it given that the exchange wouldn't have happened in the first place if they hadn't valued the walking stick more than they valued ten dollars?
\nOf course not. Anything that happens to the walking stick after the original exchange is no business of the producer of the walking stick because said producer already exchanged his property rights to the walking stick for property rights to a different form of accumulated capital (ten dollars).
\nLikewise, if I use more of my accumulated capital to hire workers to work in my factory, they will only accept my offer of employment if they value what I'm offering more than their own free time and more than whatever stake they may have otherwise had in the product they will be producing. In other words, if they accept employment, it will be with the understanding that they're giving up any stake in what they're producing in exchange for what I'm offering them. Maybe my factory assembles televisions. Maybe one worker can produce one television per hour. Would they be able to produce televisions this efficiently without my previous investment in production capital (which hasn't even been recouped and probably never will be completely given that maintenance, employment and higher order production good costs are a revolving door)? Would they be able to produce televisions AT ALL without this previous investment in production capital? Of course not, and they know this, which is why they're willing to give up both their leisure and whatever stake their labor may have otherwise entitled them to in the production of a television in exchange for a fixed amount of accumulated capital.
\nAs was the case with the walking stick, whatever happens to the television after this exchange occurs is no business of the worker. How could the future sale of the television constitute theft of the worker's accumulated capital if it can't be demonstrated that the worker was deprived of the accumulated capital that he voluntarily accepted as payment for the production of the television, especially given that the television was produced with other accumulated capital (plastic, circuits, labor saving devices, etc.) that the worker never even owned?
\nIt can't.
\nProperty ownership necessarily implies exclusivity, which means that \"private property\" is redundant, as is \"personal property\". The words \"private\" and \"personal\" denote exclusivity, which is already implied by the word \"property\". To differentiate between \"personal property\" and \"private property\" is therefore a distinction without a difference. This implication of exclusivity also means that \"public property\" is a contradiction in terms. If no one can be excluded from using the resource, it isn't property. Resources that aren't scarce or rivalrous likewise can not be considered property, which means that \"intellectual property\" is also a contradiction in terms.
\nThis means that seizing the means of production is a genuine form of theft and that \"pirating\" music, software, art and writing is not, which may seem counter-intuitive if you attended the indoctrination camps euphemistically known as \"public schools\" when you were growing up.

\n", + "json_metadata": "{\"tags\":[\"writing\",\"rights\"],\"image\":[\"http://unitedcivilrights.org/images/fa-prprty.gif\"]}", + "last_update": "2016-08-15T19:43:57", + "created": "2016-08-15T19:43:57", + "active": "2016-08-15T19:50:39", + "last_payout": "2016-08-16T19:47:48", + "depth": 0, + "children": 2, + "net_rshares": -104004690671, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": "25854883309", + "cashout_time": "2016-09-15T19:47:48", + "max_cashout_time": "2016-09-01T01:02:42", + "total_vote_weight": 0, + "reward_weight": 736, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "yassinebentour", + "root_permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 617538, + "author": "libtrian.outlet", + "permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "category": "politics", + "parent_author": "", + "parent_permlink": "politics", + "title": "Obama puts Congress on notice: TPP is coming", + "body": "http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\nFriday's move is the clearest indication yet that the White House is serious about getting Obama’s legacy trade deal.\n\nThe White House put Congress on notice Friday morning that it will be sending lawmakers a bill to implement President Barack Obama’s landmark Trans-Pacific Partnership agreement — a move intended to infuse new energy into efforts to ratify the flat-lining trade pact.\n\nThe move establishes a 30-day minimum before the administration can present the legislation, but the White House is unlikely to do so amid the heated rhetoric of a presidential campaign in which both major party nominees have depicted free trade deals as massive job killers.\n\nFriday's notification is the clearest signal yet that the White House is serious about getting Obama’s legacy trade deal — the biggest in U.S. history — passed by the end of the year, as he has vowed to do despite the misgivings of Republican leaders and the outright opposition of a majority of Democrats in Congress.\n\nStriking a defiant tone, Obama predicted at a press conference last week that the economic centerpiece of his strategic pivot to Asia would pass in the lame-duck session, saying he’d like to sit down with lawmakers after the election to discuss the \"actual facts\" behind the deal, rather than toss it around like a \"political football.\"\n\n\"We are part of a global economy. We're not reversing that,\" Obama said, describing the necessity of international supply chains and the importance of the export sector to U.S. jobs and the economy. \"The notion that we're going to pull that up root and branch is unrealistic.\"\n\nThe notification, a new requirement of the trade promotion authority legislation Congress passed last year to expedite passage of the Asia-Pacific pact, is “meant to ensure early consultations between the administration and Congress,” Matt McAlvanah, a spokesman for the Office of the U.S. Trade Representative, said in a statement. “As such, the draft SAA [Statement of Administrative Action] was sent today in order to continue to promote transparency and collaboration in the TPP process.”\n\nThe White House's draft document describes the major steps the administration will take to implement any changes to U.S. law required by the deal. Those actions range from the mundane — designating an administration point of contact for communications about the pact — to the complex — setting up procedures to stop harmful surges of agricultural or textile imports.\n\nBut the deal is going nowhere until the White House addresses a number of concerns lawmakers have raised about the trade agreement, which Canada, Mexico, Japan and eight other countries joined the United States in signing last February.\n\nFirst and foremost: satisfying the concerns of Senate Finance Committee Chairman Orrin Hatch (R-Utah) and other lawmakers about protections for a new class of drugs known as biologics. They say the pact provides too short a monopoly period for rights to research and development data. Other lawmakers have complained the deal would bar tobacco companies from seeking redress through investor-state dispute arbitrage for damages resulting from country regulations. Still others are seeking assurances that member countries will abide by their commitments to provide access for U.S. pork and dairy exports.\n\nUntil these issues are resolved, House Speaker Paul Ryan and Senate Majority Leader Mitch McConnell have made clear that the pact will not get the votes it needs to pass.\n\nRyan's spokeswoman, AshLee Strong, reiterated the point on Friday.\n\n“As Speaker Ryan has stated for months, there are problems that remain with the administration’s TPP deal, and there can be no movement before these concerns are addressed,\" she said.\n\nDemocrats, meanwhile, have largely called the deal a nonstarter over concerns about the enforceability of labor and environmental standards in countries like Vietnam and the lack of strong protections against currency manipulation.\n\nThe administration claims it is making progress on these issues and has resolved others, including banking industry concerns over the exclusion of financial data from rules prohibiting countries from requiring local storage.\n\nBut that doesn’t change the reality of the down-ballot drag that candidates are facing as they campaign back home in their districts. In a reversal from years past, many Republicans are on the defensive about their support for free trade because of Donald Trump’s daily tirades about what he characterizes as the serious economic damage wrought by trade agreements like the North American Free Trade Agreement and the TPP as well as his complaints that China is flouting international trade rules.\n\nThe Republican platform picked up on this theme, saying significant trade deals \"should not be rushed or undertaken in a Lame Duck Congress.\"\n\nThe small band of Democrats who the administration hopes will support the TPP are facing increased pressure within their own party to abandon the president on the agreement. Sens. Bernie Sanders’ and Elizabeth Warren’s strong condemnations of the trade deal have forced Hillary Clinton, who supported the TPP as Obama’s secretary of state, to reject the pact to appease the liberal wing.\n\n\"I will stop any trade deal that kills jobs or holds down wages, including the Trans-Pacific Partnership,\" Clinton said during an economic policy speech at an automotive manufacturing plant in Warren, Mich., on Thursday. \"I oppose it now, I'll oppose it after the election and I'll oppose it as president.\"\n\nClinton’s clear rejection of the trade deal has emboldened liberal groups like the Warren-aligned Progressive Change Campaign Committee to launch a campaign to press Democrats to publicly oppose a TPP vote in the lame duck.\n\nSanders also called on Democratic congressional leaders to go on record against the White House’s effort to get the deal done by the end of the year, saying the agreement is opposed by every trade union and the grassroots base of the Democratic Party.\n\n\"I am disappointed by the president's decision to continue pushing forward on the disastrous Trans-Pacific Partnership trade agreement that will cost American jobs, harm the environment, increase the cost of prescription drugs and threaten our ability to protect public health,” the Vermont senator said in a statement after learning of the White House's action on Friday.\n\nMeanwhile, the administration continues to press the deal in key congressional districts — especially those of Democrats who supported the trade promotion authority bill last year.\n\nInterior Secretary Sally Jewell returned to her hometown of Seattle last month to tout the TPP’s potential effects on the environment at a Washington Council on International Trade event with more than 150 business leaders.\n\nThen, last week, Commerce Secretary Penny Pritzker hit the San Diego and Boulder districts of Reps. Susan Davis and Jared Polis — two of the 28 House Democrats that voted for the bill — and visited a steel plant in Cleveland to promote the TPP. Treasury Secretary Jack Lew did the same when he met with local and state officials and Fortune 500 business executives in Minneapolis.\n\nOn Thursday, Undersecretary of Commerce for Oceans and Atmosphere Kathryn Sullivan spoke at a Seattle clean energy business roundtable focused on the TPP and the environment. And this Monday, Deputy U.S. Trade Representative Robert Holleyman will participate in a World Affairs Council of Atlanta discussion on the trade deal featuring former Republican Sen. Saxby Chambliss and UPS CEO David Abney.\n\nAs the political fight plays out, the nuts-and-bolts process of moving the deal forward will continue. Once Congress reviews the draft notification that the White House submitted on Friday, the administration can move forward with sending lawmakers a final statement and the draft of the implementing bill itself. The legislation will describe the actual changes to U.S. law to comply with the rules of the trade agreement.\n\nAfter that, the Senate Finance and House Ways and Means committees could hold “mock markups” of the bill (because under trade promotion authority, Congress is not actually allowed to tinker with the agreement or its implementing legislation itself, but it can ask the administration to do so).\n\nBut given the tenor of the elections, the entire process could be pushed into a crowded lame-duck legislation session, which would mean no time for the mock markups. Instead, there could be a lot of deal-making between the White House and congressional leadership to move the bill before Clinton or Trump takes over on Jan. 20.\n\nObama said last week that he’s ready to press his case. \"Right now, I'm president, and I'm for it. And I think I've got the better argument,\" he said.\n\nSource:\nwww.politico.com/story/2016/08/obama-congress-trade-warning-226952", + "json_metadata": "{\"tags\":[\"politics\",\"tpp\",\"conspiracy\",\"news\",\"freetrade\"],\"image\":[\"http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\"]}", + "last_update": "2016-08-15T19:44:39", + "created": "2016-08-15T19:44:39", + "active": "2016-08-15T19:45:42", + "last_payout": "2016-08-16T19:47:57", + "depth": 0, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": "11700424464", + "cashout_time": "2016-09-15T19:47:57", + "max_cashout_time": "2016-09-04T23:37:39", + "total_vote_weight": 0, + "reward_weight": 2046, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 3, + "root_author": "libtrian.outlet", + "root_permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 951797, + "author": "profanarky", + "permlink": "the-dragon-s-blood-part-29", + "category": "story", + "parent_author": "", + "parent_permlink": "story", + "title": "The Dragon's Blood (Part 29)", + "body": "\n

\n

In which the folks in the subway find themselves some unwelcome visitors...

\n

29

\n

   “Do NOT panic! There is no reason to believe that this is anything more than just a power outage.”  

\n

   “But-- BUT-- how can it be the whole state?” One wide-eyed young woman, one of the aforementioned punk rockers actually raised her hand.  

\n

   “Yeah, it’s gotta be Al Qaeda, who the hell else could it be?!!” Another idiot bellowed.    

\n

   Others followed, there words quickly jumbling together into a tidal wave of paranoia. It only took one idiot to get the ball rolling.   

\n

   “It’s gotta be the terrorists, who the hell else could it be?”    

\n

   “Oh my god, I gotta get to my kids… My kids are still at the day care!!!”   

\n

   “Did an airplane hit a power plant??!! OH GOD!! DID AN AIRPLANE HIT ONE OF THE NUCLEAR PLANTS??!!”    

\n

   She heard it all and it was nothing more than a buzzing, though an irritating one nonetheless. Her instincts, those things cops called their gut instincts told her Mister Blue-eyes was the key, the only thing really important right now. Mister Blue-eyes and whatever the hell it was he was watching outside their little tin prison.  

\n

     “NOW LISTEN DAMMIT!!!” She hollered, trying to make herself louder than the loudest of them, a difficult task with New Yorkers. “I told you, there’s no goddamn reason to think it’s terrorism! This has happened before in our lifetimes and it’s gonna happen again. As far as I’m concerned it ain’t nothing more than a power outage. Going FUCKING crazy ain’t gonna help us any, dammit!!”  

\n

   They kept going, some of them, but most paid her mind and listened, their faces drawn and tired. They’d suffered enough the last few years, New Yorkers. There wasn’t a one of them, including herself, who hadn’t had their world turned literally upside down two years before. The terror they’d lived was fresh on their minds, fresh and ready to burst again and overwhelm them. It was a hard thing, it truly, truly was.     

\n

   “Now I just got off the phone with my partner and he says he’s gonna get people down here to get us out as soon as possible. There are trains stalled all over the city. Rescue workers are leading those people out from underground and up to their homes. He told me there would be a group of them here soon. He was gonna get them here.”    

\n

   “Is that them?” Came the deep voice of Jeffrey Thornton. He’d been quiet while the others yelled, silent and listening to what she had to say. The moment she’d spoken of rescue his eyes had gone outside the train and he saw what Mister Blue-eyes had apparently been watching.    

\n

   “Where?” She asked him, stumbling over and peering outside, right next to the stranger in the baseball cap.       

\n

   She saw nothing at first, her eyes trying to focus past the reflections in the glass and out into the pitch black.      

\n

   “Those--,” Mister Blue-eyes said, at last speaking, his voice accented in a manner she’d never heard before. Something about it was as wrong and as otherworldly as his eyes were. “---are not rescuers of any sort.”    

\n

   Out of the corner of her eye she saw him rise and back away from the window and once again her instincts spoke to her. They told her to back away as well, and to not stop there. They said to her, no, they screamed at her to run, to run as far from here as possible.      

\n

   But she didn’t, she had to see what they were, had to see for herself.    

\n

   When the figures finally did materialize from the darkness, they weren’t human at all.     

\n

End Part 29

\n

         If you find yourself interested in the whole damnedable thing and wanna throw me a few bucks, here's a link to it on Amazon.      

\n

  https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1   

\n


\n", + "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"creative\",\"writers\",\"writing\"],\"image\":[\"http://www.followingthenerd.com/site/wp-content/uploads/shadowpeople.jpg\"],\"links\":[\"https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1\"]}", + "last_update": "2016-09-14T19:15:09", + "created": "2016-09-14T19:15:09", + "active": "2016-09-15T15:19:39", + "last_payout": "1970-01-01T00:00:00", + "depth": 0, + "children": 3, + "net_rshares": "89025972926", + "abs_rshares": "89025972926", + "vote_rshares": "89025972926", + "children_abs_rshares": "89614201477", + "cashout_time": "2016-09-15T19:48:29", + "max_cashout_time": "2016-09-28T19:15:09", + "total_vote_weight": "401621156077855379", + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 3, + "root_author": "profanarky", + "root_permlink": "the-dragon-s-blood-part-29", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 615287, + "author": "stellabelle", + "permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "category": "secret-writer", + "parent_author": "", + "parent_permlink": "secret-writer", + "title": "SECRET WRITER: I Feel Like An Alien Among People In My Country", + "body": "http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\n\n# I have to hide my true self.\n\nIt just so happened that I was constantly losing my friends. It's like a curse was put on me.\nJudging by the reviews from former colleagues and friends, I was a \"nice and friendly person who was always willing to help.\"\n\n# However, constantly all these friends ceased to be friends with me, for no reason. They just stopped communicating, no quarrels, no disagreements and other things!\n\nI had a lot of friends ... But our paths diverged.\n\nIn my childhood I had friends, but my family moved to another city, and I lost my friends. In the new city, I made new friends. I had one close friend. Even his move to another part of the city has not prevented us from seeing each other every weekend. And one day, he was taken into the army. And one day, his aunt came to me, and said that he is no more, he was killed when he was on sentry duty ...\n\n![imaged6bd4.jpg](https://www.steemimg.com/images/2016/07/26/imaged6bd4.jpg)\n\nPeople ignore me constantly on the Internet, too. On any website, forum. I try to communicate, start a dialogue, and all people just ignore me. Suffice it to ask someone about something, write, and so on, and no response. \n\n# It's as if I did not exist.\n\nhttp://i.giphy.com/3o72FhMTVaOTycqObu.gif\n\nI am always open and friendly, and in return I receive arrogance against me or they completely ignore me.\nThis is what hurts the self-assessment.\n\n# I have no one to talk, no one to share the news with. Not one to ask for help. When I die, nobody will notice. \n\nhttp://i.giphy.com/l46CABOxa2Itf99bG.gif\n\n# I change people!\n\nI've got one property ... when a person begins to communicate with me, he is beginning to change. He begins to listen to the music that I like. He begins to lead a similar lifestyle. In general, people change for the better. From this, I feel somehow enhanced. And apparently, it has become another man moves away from me and goes his own way. As the chicks leave the nest as adults. Other explanation I can find.\n\n# Childhood\n\nAt school I was a \"whipping boy\".\n\nhttp://i.giphy.com/Hem0mSEEPwQBa.gif\n\nEndured constant insults, humiliation. Every day for 3 years. The school was torture for me. I did not like school, sometimes skipped lessons to avoid it all. Of course, it has affected my level of education, I studied badly.\n\nAnd also, my eyesight began to deteriorate, I did not see what was written on the blackboard. And when I admitted that I had bad eyesight, meant even more exposure to ridicule. In addition, due to health problems, but rather due to an error from talentless doctors, I had to take some strange drug. What it was I do not know, but I remember that I had to take these pills with milk. At first, nothing happened ... but then I wanted to eat every 5 minutes, I could not stop! I suffered from hunger! And accordingly, I gained weight. Needless to say, that became more humiliation for me.\n\nPerhaps it is karma. After all, before all this, I, too, along with all, mocked other classmates. Well now I know, I deserve it all.\n\nIt all ended when I graduated from high school. I changed just for the summer. Completely changed! I was starving and had grown very thin. Enrolling in college, I stopped being afraid of the people because they did not know who I was at school. Former classmates simply did not recognize me in the street. I became a different person. I started a new life with a clean slate.\n\nhttp://i.giphy.com/763KvbtkqH3e8.gif\n\n# I'm for searching myself.\n\n### Punk.\n\nOne day on one local forum, I found an ad that a punk rock band was looking for a drummer. I do not know why, or what came over me, or how my subconscious played a role, but I wrote to them that I am ready to join them.\n\nIn those years, I liked punk rock. But I did not know how to play the drums! However, I had an ear for music and rhythm. Since childhood, I remember I loved playing improvised drums.\n\nhttp://i.giphy.com/3oEjI2cJuP3Y0dcfV6.gif\n\nAt the first rehearsal something happened. But, of course, I played really disgusting. I liked that I was with other people. I liked all the socializing after the rehearsals, but the rehearsals themselves I sometimes disliked.\n\nI was getting the feeling that my lack of skill playing the drums was getting the band down. The band broke up after 2 years, played three songs in one of the amateur concerts. I still blame myself for failing them. But communicating with them gave me pleasure.\n\n### Church of Satan.\n\nhttp://i.giphy.com/xThuWk5MZglNP8IsJG.gif\n\nI've never been religious.\nOne day it so happened that I was carried by some away articles and the book \"Church Satan\" that I found on the Internet. So I soon became well versed in the sect (I still keep granted by them, the so-called \"certificate\" as a memory). And then, I began to take an active and more active role in this church.\n\nI was the first who made an unofficial website, for which I was honored with awards and praise. I was the first who wrote a skeptical analysis of the Bible. And my critiques were very popular! Actually, thanks to them that I became known.\n\nAnd then I began to get to know ones of the elders. With me, I remember, I spoke to some journalists, a student who wrote some work, theologians, members of the new sect, and anyone with an interest. Probably because I was often on the network. After all, I have never been a part from the college and at home, and did nothing.\n\nBut then, I and several other members became disillusioned, and I left the sect.\n\nAnd then there were various attempts to find myself, I was changing lifestyles and views on life.\n\nWhy did I write this? All of the above has given me some experience in dealing with people and the ability to understand who I am and why, to find my place in life.\n\nPagan Old Believers tried invite me to come, and then I almost became a skinhead.\n\n> \"What people call life - just a game, but this game is sometimes instructive, and all that it teaches - only lessons from which to borrow wisdom, therefore, ought to live.\" (C)\n\n# Loneliness gave me the alternative to communion, namely: I read a lot of books, of which learned many new things from psychology, philosophy, spirituality and languages.\n\nhttp://i.giphy.com/AbuQeC846WKOs.gif\n\nHave you noticed that being in society and when in the company of others, you do not crave training or self-development? I see this for myself when my brother visits me. I do not read books, I do not ponder any situation and theory, I just talk and spend time with my brother. Loneliness provides an incentive for development. With the help of loneliness, you really will begin to appreciate the friendship and fellowship.\n\n# This can be compared with food delicacies. If you eat delicacies every day, they will cease to be so desirable and unusual, and they will become commonplace.\n\nhttp://i.giphy.com/WmEvcZna75UfS.gif\n\n# Now.\n\nMy current way of life is very similar to Tantric Buddhism, although it is not defined by that as it has no name, and does not need to be defined as such.\n\n# Sometimes it's painful and unpleasant to look at people.\n\nhttp://i.giphy.com/JsL3hYFdvMMSs.gif\n\nI understand why they are themselves, why they have such a way of life, but I do not want to be like them and be with them in the same company. I do not like it.\n\nI never offend for a reason, I never attack, and I do no harm.\nEmpathy - what distinguishes us from animals.\n\nI value every life, no matter what that life is.\nI do not accept what most people love.\nI do everything consciously, extracting meaning and benefits from the experience.\nFor example, I have a meal. I do not eat garbage food, because it does not give to my body anything useful, since it does not contain nutrients. \n\n# I do not drink alcohol, smoke cigarettes or do drugs. \n\n\nAnd that is why people around me laugh or look at me quizzically. They say that I'm lying, sick, abnormal, or \"mother does not allow\". They say, \"in life need one needs to try everything!\" \n\nBut none of them for some reason, do not try, for example, quantum physics, a healthy lifestyle, or Buddhism.\n\n**In life, need to not only try, but also try not to try!**\n\n# I do not live with the people, but I live among the people.\n\nIf only you knew how hard all of this is ... I have to hide it all, and to adapt to the \"generally accepted norms\", in order not to be mocked. \n\nI feel somehow alien among the people. I have to wear a mask to resemble the people and not be detected.\n\nhttp://i.giphy.com/QG0th9DNdRrGw.gif\n\n> \"No pyramids of authority.\nMaster has an older brother, nothing more. And he just does the hard work that the others do not overpower. If it is otherwise, then trouble is inevitable.\nAuthority - this is a mistake \"(c).\n\nIf you have read Orwell's novel \"1984\" or watched the same film, you know, all this is happening in my country.\nPeople poisoned by propaganda, people are trying to survive, they are afraid of the authorities and freedom.\nAll this is laid bare and exacerbated in human animal instincts. The principle of flocks. Not like us - the enemy is dangerous, you need to avoid, or to die.\n\nThe population cannot tolerate dissent, any manifestation of freedom, something different from their lifestyle and worldview. In connection with this, people with a different lifestyle, look, worldview and way, becomes an object of ridicule, an outcast, a threat, an enemy.\n\nIt's not comfortable for me to live here. But leave (until the border has not yet closed) there is no possibility. It is very expensive, and I make incredibly low wages, and wages continue to fall, while food and services continue to rise in price.\n\nHow I would like live in a free country! Be yourself, do not hide anything, not trying to make excuses for my views and lifestyles.\n\nMaybe relocation to another country could change something in me, but I notice, positive emotions in me less and less and I feel less joy and desire to live.\n\nhttp://i.giphy.com/eR2OWX51qesIo.gif\n\n-Secret Writer\n\nImages and gifs: All images are by Stellabelle, all gifs are from giphy.com.", + "json_metadata": "{\"tags\":[\"secret-writer\",\"isolation\",\"self-development\",\"life\"],\"image\":[\"http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\"]}", + "last_update": "2016-08-15T17:39:09", + "created": "2016-08-15T16:44:42", + "active": "2016-08-17T15:01:48", + "last_payout": "2016-08-16T19:48:36", + "depth": 0, + "children": 43, + "net_rshares": "981828724825", + "abs_rshares": "984642850369", + "vote_rshares": "981882842624", + "children_abs_rshares": "18007718646255", + "cashout_time": "2016-09-15T19:48:36", + "max_cashout_time": "2016-08-30T21:38:48", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "356586", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "31898", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 238520, + "net_votes": 293, + "root_author": "stellabelle", + "root_permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 617429, + "author": "teutonic", + "permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "category": "awesome", + "parent_author": "", + "parent_permlink": "awesome", + "title": "10 Amazing Optical Illusion Pictures To Mess With Your Brain", + "body": "http://www.mindmotivations.com/images/optical-illusion1.jpg \nIs the ladder going up or down?\nhttp://www.mindmotivations.com/images/optical-illusion2.jpg\nAre the dots in between the squares white, black or grey?\nhttp://www.mindmotivations.com/images/optical-illusion3.jpg \nparallel or crooked?\nhttp://www.mindmotivations.com/images/optical-illusion4.jpg\nHow many legs?\nhttp://www.mindmotivations.com/images/optical-illusion5.jpg\nFocus on the dot in the middle and then move your head backwards and forwards.\nhttp://www.mindmotivations.com/images/optical-illusion7.jpg\nIs the picture moving?\nhttp://www.mindmotivations.com/images/optical-illusion8.jpg\nIs there anything in between the different squares?\nhttp://www.mindmotivations.com/images/optical-illusion9.jpg\nface of a lady or a word?\nhttp://www.mindmotivations.com/images/optical-illusion6.jpg \nFocus on the 4 dots in the middle of the picture for 30 seconds. \nhttp://www.mindmotivations.com/images/optical-illusion10.jpg \neven possible?", + "json_metadata": "{\"tags\":[\"awesome\",\"\"],\"image\":[\"http://www.mindmotivations.com/images/optical-illusion1.jpg\"]}", + "last_update": "2016-08-15T19:35:54", + "created": "2016-08-15T19:35:54", + "active": "2016-08-15T20:10:06", + "last_payout": "2016-08-16T19:48:45", + "depth": 0, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-15T19:48:45", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "teutonic", + "root_permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 952070, + "author": "safar01", + "permlink": "lol-robot-tranformers-against-fishermen", + "category": "editing", + "parent_author": "", + "parent_permlink": "editing", + "title": "LOL ... Robot Tranformers against fishermen (steemitphotochallenge)", + "body": "\n

\n

show in the pictures are not real, but I edit them using Photoshop just

\n

 to train the imagination only.

\n

I made this picture just to entertain readers of all, 

\n

please advise the reader all my abilities to process images

\n", + "json_metadata": "{\"tags\":[\"editing\",\"with\",\"photoshop\",\"imagination\",\"steemitphotochallenge\"],\"image\":[\"https://scontent.fcgk1-1.fna.fbcdn.net/v/t1.0-9/44685_544257398931890_1432197168_n.jpg?oh=737dff7bef73ecfcaff983c130b55ee1&oe=587FF678\"]}", + "last_update": "2016-09-14T20:20:48", + "created": "2016-09-14T19:48:57", + "active": "2016-09-14T20:20:48", + "last_payout": "1970-01-01T00:00:00", + "depth": 0, + "children": 0, + "net_rshares": 158773924, + "abs_rshares": 158773924, + "vote_rshares": 158773924, + "children_abs_rshares": 158773924, + "cashout_time": "2016-09-15T19:48:57", + "max_cashout_time": "2016-09-28T19:48:57", + "total_vote_weight": "732186422373807", + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "safar01", + "root_permlink": "lol-robot-tranformers-against-fishermen", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 617119, + "author": "pipertomcat", + "permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "category": "bitcoin", + "parent_author": "", + "parent_permlink": "bitcoin", + "title": "Western Union investing in Blockchain technology...will it be Bitcoin ? or Ripple!?", + "body": "https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg \nhttps://s19.postimg.org/jiv4eri0j/Blockchain_technology1.png\nWhy not Steem Dollars then? I think ultimately Western Union and the like may actually choose or adopt a name that includes something like \"Dollar\". Lol\nhttps://s19.postimg.org/4y9g66xo3/Bitcoinripplebanner1.png\n\nI have said to different friends over the last year or so on occasion, that I fear Western Union is about to die by Bitcoin's hand. I compare Netflix, Youtube, Google Play, Itunes,and so forth killing retail establishments like Blockbuster video. Technology and the convenience it brings, easily dominates any industry, ask Kodak. \n\n I have friends who still have to purchase money orders to pay their rent. The Apartment complex refuses personal checks and apparently doesn't want employee's accepting cash. You can join their site online for a $50 per month fee and connect your checking account. What a ripoff! \nWow if they only knew of bitcoin and the coming technology.\nhttps://s19.postimg.org/743r0p14j/725_Ly9jb2lud_GVs_ZWdy_YXBo_Lm_Nvb_S9zd_G9y_YWdl_L3_Vwb_G9h.jpg\n\n\nhttps://s19.postimg.org/fc5olot0z/e873eec95dbe6437e8b73f6dc4b474e6.jpg\nhttps://s19.postimg.org/d2hkaxk37/a9ee5c9045261e324670df9b5e3fbf0c.png\n Western Union was in discussions with Ripple Labs early last year, regarding a blockchain pilot project. By using a cheap payment network, proponents claim that companies will be able to cut down the cost of remittances.\n The following quote from Barry Gilbert , the Digital Currency Insights Founder and CEO says it best:\n“If you look at Western Union and Moneygram, they have a fantastic opportunity to take advantage of bitcoin as a financial rail and incorporate it into their business.”\n\nAfter reading the following article just now, I will have to say that I think someone like Western Union may be the key player in bringing Bitcoin to the masses! The following is an article from Bravenewcoin-http://bravenewcoin.com/news/western-union-wont-make-the-same-mistake-with-blockchain/\n\n#steemdollar\n#steem\n#westernunion\n#ripple", + "json_metadata": "{\"tags\":[\"bitcoin\",\"steemdollar\",\"steem\",\"westernunion\",\"ripple\"],\"image\":[\"https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg\"]}", + "last_update": "2016-08-15T19:14:33", + "created": "2016-08-15T19:14:33", + "active": "2016-08-15T19:15:51", + "last_payout": "2016-08-16T19:49:42", + "depth": 0, + "children": 1, + "net_rshares": 53638386, + "abs_rshares": 53638386, + "vote_rshares": 53638386, + "children_abs_rshares": "45063474229", + "cashout_time": "2016-09-15T19:49:42", + "max_cashout_time": "2016-09-04T21:13:12", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 9, + "root_author": "pipertomcat", + "root_permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json new file mode 100644 index 00000000..6844aa48 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 961233, + "author": "szklaneczka", + "permlink": "iconomi-why-we-need-found-management-explained-on-graphs", + "category": "cryptocurrency", + "parent_author": "", + "parent_permlink": "cryptocurrency", + "title": "ICONOMI - why we need found management explained on graphs.", + "body": "**ICONOMI found management platform** is currently in ICO and you can still invest. \n\nThat is most anticipated platform of 2016 why You may ask me. I will give you some graph and explanation. Solutions like ICONOMI are very popular in old economy people want be rich and wanted get more profit so they tried give money to people who know more about trading. Found management platforms preforms much better than average investors. Big guys just want invest not day trading. In crypto ICOMI will be 1st such project - such needed project.\n\nNow true facts and everything that I show you, is now publicly available on web. Graphs taken from coinmarketcap.com are showing us, what is going on cryptocurrency markets right now:\n![](http://i.imgur.com/FLe0WeF.jpg) \n![](http://i.imgur.com/s6Aeke2.jpg) \n![](http://i.imgur.com/RX0JK1z.jpg) \n\nYou see on won eyes that: Bitcoin is loosing over time market share to other alt coins. There is many multiple reasons for that. Without ICONOMI getting on cryptocurrency board for new investors will be VERY hard. \nThat is:\n \n- choose right one coin. \n- skip scams \n- buy valuable coins \n- crypto markets are getting bigger and bigger all time, there is about over 700coins tradable now\n\n\nICONOMI will be platform that for **every investor looking for big profits**. \nICONOMI will give us 2 founds:\n\n- **The ICONOMI.INDEX FUND** - a \"Passive\" - Coin Traded Fund (CTF). This fund operates on special rules, variables that manage the fund through automation. This Found will be the fastest available to investors at launch in Q4 2016 - The ICONOMI.PERFORMANCE FUND - an \"\nActive\"\n- **Coin Managed Fund (CMF)**, Operated by and managed by best investors. This fund will be invitation only available. If you invest in ICO you will get you invitation for free. I bet is worth its price. Those found will be carefully managed by ICONOMI experts and will provide best profits available.\n\nGraphs shows that volume of alt coins is rising heavily and will move up. Without ICONOMI founds many investors will probably lose cash on market, while rypto currency market will rise as whole. **If buy some ICO shares you will get dividends forever as share holder.**\n Soon real professional traders will come to cryptocurrency and you as investor in order to get big profits will have to use service of ICONOMI. \n\nPersonally I have invested in ICO and believe that **ICONOMI is future of crypto trading**. Don't miss a chance and invest here:[ico.iconomi.net](ico.iconomi.net) \n\nIf you want invest in ICO: ![](http://i.imgur.com/iqDpTag.png) \n\nOfficial Links:\n \n- [ico.iconomi.net](ico.iconomi.net \"Main site\") \n- [https://www.facebook.com/iconomi.net/](https://www.facebook.com/iconomi.net/ \"Facebook\") \n- [https://twitter.com/iconominet](https://twitter.com/iconominet\"twitter.com\")\n- [https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/](https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/) \n- [https://telegram.me/iconomi](https://telegram.me/iconomi)\n- [https://medium.com/iconominet](https://medium.com/iconominet)\n- [https://iconominet.herokuapp.com](https://iconominet.herokuapp.com)", + "json_metadata": "{\"tags\":[\"cryptocurrency\",\"bitcoin\",\"profit\",\"altcoin\"],\"image\":[\"http://i.imgur.com/FLe0WeF.jpg\",\"http://i.imgur.com/s6Aeke2.jpg\",\"http://i.imgur.com/RX0JK1z.jpg\",\"http://i.imgur.com/iqDpTag.png\"],\"links\":[\"ico.iconomi.net\",\"https://www.facebook.com/iconomi.net/\",\"https://twitter.com/iconominet\\\"twitter.com\\\"\",\"https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/\",\"https://telegram.me/iconomi\",\"https://medium.com/iconominet\",\"https://iconominet.herokuapp.com\"]}", + "last_update": "2016-09-15T19:47:00", + "created": "2016-09-15T19:47:00", + "active": "2016-09-15T19:47:00", + "last_payout": "1970-01-01T00:00:00", + "depth": 0, + "children": 0, + "net_rshares": 155925481, + "abs_rshares": 155925481, + "vote_rshares": 155925481, + "children_abs_rshares": 155925481, + "cashout_time": "2016-09-16T19:47:00", + "max_cashout_time": "2016-09-29T19:47:00", + "total_vote_weight": "719051331038101", + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "szklaneczka", + "root_permlink": "iconomi-why-we-need-found-management-explained-on-graphs", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 961225, + "author": "newsfeed", + "permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", + "category": "newsfeed", + "parent_author": "", + "parent_permlink": "newsfeed", + "title": "Rangers' record in one-run games nearing truly historic level", + "body": "The Texas Rangers are 33-10 (.767) in one-run games this season. This would stand as a modern record for winning percentage in one-run games, besting the 2012 Orioles, who were 29-9 (.763).\n\n

http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815

\n\nBut if we dig deep into the archives of baseball history, we learn that this is actually the best record since the 1890 Brooklyn Bridegrooms, who were 14-4 (.778) in one-run games en route to an overall 86-43 (.667) record and the National League pennant.\n\n**Source / Read More...** sportingnews.com \n\n
\n\n
\n\n**NEWS FEED** \n*Get the latest headlines from around the world right on your Steemit Feed! With @newsfeed you always stay in the know about all sorts of topics ranging from Politics & Finance to Sports*\n\n**Currently In Beta**\n*Full news feed from hand picked creditable sources from all sides of the political and social realm. Although not fully operational, posts will be random while testing BUT do have real headlines!*", + "json_metadata": "{\"tags\":[\"newsfeed\",\"news\",\"sports\",\"rangers\",\"baseball\"],\"users\":[\"newsfeed\"],\"image\":[\"http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815\",\"https://ipfs.pics/ipfs/QmUo1EuVPSs3prLRdJH95Lg97vyvzSfhH6srZH5bqRh7p6\"],\"links\":[\"http://www.sportingnews.com/mlb/news/texas-rangers-record-in-one-run-games-brooklyn-bridegrooms/irlcvzvv8fui1vgogevkmomch\\n\"]}", + "last_update": "2016-09-15T19:46:30", + "created": "2016-09-15T19:46:30", + "active": "2016-09-15T19:46:30", + "last_payout": "1970-01-01T00:00:00", + "depth": 0, + "children": 0, + "net_rshares": 151513711, + "abs_rshares": 151513711, + "vote_rshares": 151513711, + "children_abs_rshares": 151513711, + "cashout_time": "2016-09-16T19:46:30", + "max_cashout_time": "2016-09-29T19:46:30", + "total_vote_weight": "698707196688679", + "reward_weight": 9354, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "newsfeed", + "root_permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 0, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 961226, + "author": "anton333", + "permlink": "origami-part-11-the-model-of-skeleton-hands", + "category": "art", + "parent_author": "", + "parent_permlink": "art", + "title": "Origami Part 11, the model of Skeleton hands.", + "body": "\n

Model of Skeleton hands,without scissors and glue.

\n1


\n2


\n\n


\n

I need a piece of paper.

\n3


\n4


\n5


\n6


\n7


\n1


\n

Part 1 Part 2 Part 3 Part4 Part5 Part6 Part7 Part8 Part9 Part10

\n", + "json_metadata": "{\"tags\":[\"art\",\"photography\",\"origami\"],\"image\":[\"https://s18.postimg.org/fi4tfvrgp/image.jpg\",\"https://s9.postimg.org/kn7ogredb/image.jpg\",\"https://s10.postimg.org/nnna3pxp5/image.jpg\",\"https://s12.postimg.org/dltyd50wd/image.jpg\",\"https://s12.postimg.org/qwsf7bs99/image.jpg\",\"https://s3.postimg.org/7p1m66f4j/image.jpg\",\"https://s22.postimg.org/4388u7yoh/image.jpg\",\"https://s14.postimg.org/qo99yko5t/image.jpg\"],\"links\":[\"https://postimg.org/image/byivq2oqt/\",\"https://postimage.org/index.php?lang=russian\",\"https://postimg.org/image/ivepluv0b/\",\"https://postimg.org/image/efv1n0qmt/\",\"https://postimg.org/image/u9lgfmvnt/\",\"https://postimg.org/image/gzhee9knd/\",\"https://postimg.org/image/gwtumvm6n/\",\"https://postimg.org/image/55ifcrhhp/\",\"https://postimg.org/image/4cbh56p1p/\",\"https://steemit.com/art/@anton333/origami-start-with-the-simplest\",\"https://steemit.com/art/@anton333/origami-part-two-do-a-swan\",\"https://steemit.com/art/@anton333/origami-part-3-the-model-of-a-mouse\",\"https://steemit.com/art/@anton333/origami-part-4-the-model-of-a-rose-petals\",\"https://steemit.com/art/@anton333/origami-part-5-the-model-of-master-yoda\",\"https://steemit.com/art/@anton333/origami-part-6-the-model-of-eagle\",\"https://steemit.com/art/@anton333/origami-part-7-the-model-of-dagger\",\"https://steemit.com/art/@anton333/origami-part-8-the-model-of-spider\",\"https://steemit.com/art/@anton333/origami-part-9-the-model-of-tooth\",\"https://steemit.com/art/@anton333/origami-part-10-the-model-of-flower\"]}", + "last_update": "2016-09-15T19:46:30", + "created": "2016-09-15T19:46:30", + "active": "2016-09-15T19:46:30", + "last_payout": "1970-01-01T00:00:00", + "depth": 0, + "children": 0, + "net_rshares": 3377256926, + "abs_rshares": 3377256926, + "vote_rshares": 3377256926, + "children_abs_rshares": 3377256926, + "cashout_time": "2016-09-16T19:46:30", + "max_cashout_time": "2016-09-29T19:46:30", + "total_vote_weight": "15561709573411957", + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "anton333", + "root_permlink": "origami-part-11-the-model-of-skeleton-hands", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 961089, + "author": "vitaly-lvov", + "permlink": "crowdsales-monitor-august-2016", + "category": "cyberfund", + "parent_author": "", + "parent_permlink": "cyberfund", + "title": "Crowdsales Monitor - August 2016", + "body": "\n

Mountly recap of blockchain crowdsales

\n


\n

CLOSED CROWDSALES

\n

BlockPay 

\n

Aimed at deeper integration with POS terminals and payments between counterparties.
\nA preliminary Initial Coin Offering finished on 4 September, where BlockPay sold 5% of the 100-million stock of BLOCKPAY tokens released on the BitShares blockchain. Future owners will receive dividends from transaction fees paid to BlockPay.
\nThe pre-ICO was done in 3 stages: 

\n
    \n
  • 1st — exchange of OPENPOS for BLOCKPAY at the rate of 1.2 to 1 (fund of 600,000 tokens) 
  • \n
  • 2nd — sale of BLOCKPAY at the price of 0.000288 BTC (fund of 1.4 mln tokens) 
  • \n
  • 3rd — sale of BLOCKPAY at the price of 0.000360 BTC (fund of 3 mln tokens) 
  • \n
\n

The distribution of tokens is as follows: 

\n
    \n
  • 1.5% — marketing for pre-ICO
  • \n
  • 5% — pre-ICO
  • \n
  • 0.9% — early adopters
  • \n
  • 1.8% — advisors and partners
  • \n
  • 3.6% — marketing
  • \n
  • 7.2% — developers reward
  • \n
  • 80% — upcoming ICO in 2017
  • \n
\n

The platform development plan:

\n
    \n
  • The release of BlockPay \"S\" app for Android and payment terminals Odoo
  • \n
  • BlockPay integration with leading payment terminals
  • \n
  • API Development
  • \n
  • The addition of a large number of fiat gateway exchanges and Escrow Services
  • \n
  • The addition of anonymous transactions function
  • \n
  • The development and release of the ECHO messenger for Android and iOS
  • \n
  • Development of the first version of the BlockPay \"S\" app for iOS
  • \n
\n

The project looks interesting, given the fact that they claim an integration with the ERP and CRM systemOdoo used by 60 thousand companies. The only disturbing thing is the absence of an open source software, and this spoils the whole picture. Transaction payments fee and, consequently, planned cash flow for investors are not sufficiently explained either. It should be kept in mind that this project is centralised, i.e. it belongs to the class of projects that demand trust in the founders and, correspondingly, require a thorough audit of operating activity.
\nCrowdsale summary:

\n
    \n
  • Dates: 20 August 2016 — 4 September 2016
  • \n
  • Raised: ~ $657,000 (1096 BTC)
  • \n
  • Tokens sold: 3.92 mln
  • \n
  • Total number of tokens: 100 mlnДаты проведения: 20 августа — 4 сентября 2016 года
  • \n
\n

For detailed information on the crowdsale, see: https://blockpay.ch/newsroom/investor-relations/blockpay-reserves/
\nFor useful links and more information, go to https://cyber.fund/system/BlockPay 

\n

AntShares
\n

\n

The project is interesting primarily due to the fact that it will be implemented using the Hyperledger platform. There are no other features that distinguish it from a number of similar blockchain projects, except that it is aimed specifically at the Chinese audience. 

\n

Crowdsale summary: 

\n
    \n
  • Dates: 8 August 2016 — 7 September 2016
  • \n
  • Raised: ~ $ 3.4 mln (5582 ~ BTC)
  • \n
  • Tokens sold: 20 mln
  • \n
  • Total number of tokens: 100 mln
  • \n
\n

For detailed information on the crowdsale, see: www.antshares.org/ico
\nFor useful links and more information, go to https://cyber.fund/system/AntShares

\n

Elastic project
\n

\n

The crowdsale is finished. The full description of the history of the ICO and the risks associated with investing in this asset may be found in the previous issue of Blockchain Boom. 

\n

Crowdsale summary:

\n
    \n
  • Dates: 29 February 2016 — 19 August 2016
  • \n
  • Raised: ~ $416,000 (~ 710 BTC), the exact amount is not available, because in course of funding escrow addresses changed several times and the movement of funds between them was extremely nontransparent.
  • \n
  • Tokens sold: 20 mln
  • \n
  • Total number of tokens: 5 mln XEL
  • \n
\n

The crowdsale took place here: http://www.elastic.pro/donations
\nFor useful links and more information, go to https://cyber.fund/system/Elastic 

\n

CURRENT CROWDSALES

\n

Iconomi
\n

\n

The aim of the project is the creation of management platform for crypto investment funds and the launch of two associated investment funds.
\n

\n

The subject of the crowdsale is ICN tokens representing 100% of Iconomy Open Fund Management Platform (OFM). The total number of ICN tokens to be sold is 85 million. 100 million of ICN will be released on the Ethereum platform within 10 days after the end of the crowdsale. Tokens will be distributed among investors proportionally to their contributions taking into account bonuses for early participation (+ 15% in the first week, + 10% in the second week, + 5% in the third week).
\nPrecise information on the distribution of ICN tokens is missing on the official website. According to the information in the related Bitcointalk thread, the tokens will be distributed as follows: 

\n
    \n
  • 85% - to be sold in the crowdsale
  • \n
  • 8% - founders reward
  • \n
  • 3% - reserve for the future team
  • \n
  • 2% - advisers reward
  • \n
  • 2% - marketing and bounty
  • \n
\n

Money raised from the crowdsale will be used as follows: 

\n
    \n
  • 62% - development
  • \n
  • 25% - operations
  • \n
  • 9% - legal expenses
  • \n
  • 4% - marketing
  • \n
\n

ICN owners will receive weekly dividends in ETH from all sources of Iconomi income, such as: 

\n
    \n
  • management fees
  • \n
  • rewards for fund management efficiency
  • \n
  • fees received from the funds registered with OFM
  • \n
\n

ICN holders will be able to vote on a number of matters related to the development of OFM, including choosing of the \"platform operator\" (currently, Cashila OOD s.r.o.) 

\n

The development plan: 

\n
    \n
  • 4Q 2016 – the launch of the open investment fund ICONOMI.INDEX, which will follow the likely development of the cryptocurrency market and will be freely traded on the market;
  • \n
  • 4Q 2016 – the launch of the closed investment fund ICONOMI.PERFORMANCE, which will focus on riskier investments in projects at an early stage of development
  • \n
  • 2017 – the launch of the platform for management of investment funds (OFM), the transfer of ICONOMI.INDEX and ICONOMI.PERFORMANCE funds to the platform.
  • \n
\n

Blind spots: 

\n
    \n
  • The currency is not specified for evaluation of the raised funds for further distribution of ICN tokens among investors.
  • \n
  • Will a part of the funds received during the crowdsale be allocated to ICONOMI.INDEX and ICONOMI.PERFORMANCE and, if so, will ICN holders receive relevant shares in these funds?
  • \n
  • There is no information as to the amount and frequency of fees charged from funds managed on OFM.
  • \n
  • The functions of the \"platform operator\" is described but very vaguely, as well as the process of further decision making involving ICN holders.
  • \n
\n

Red flags:

\n
    \n
  • There is no description of technical solutions for the project's tasks
  • \n
  • No program code is published
  • \n
\n

Crowdsale summary:

\n
    \n
  • Dates: 25 August 2016 — 29 October 2016
  • \n
  • Total number of tokens: 100 mln ICN
  • \n
  • Tokens distribution: 85% will be sold in the crowdsale, 15% team reward and marketing
  • \n
  • Minimum crowdsale goal: 2 000 BTC (~ $1.5 mln)
  • \n
  • Raised so far: ~ $3.6 million (2,200 BTC + 71,000 ETH + 1.2 mln LSK + 63,000 USD + 940,000 EUR) from more than 1300 participants.
  • \n
\n

The crowdsale takes place here: https://ico.iconomi.net/
\nFor useful links and more information, go to https://cyber.fund/system/Iconomi 

\n


\nDeClouds
\n

\n

The main focus of the project is providing the opportunity for trading in precious metals.
\nThe network will be implemented as follows: 

\n
    \n
  • Proof-of-Stake consensus algorithm
  • \n
  • Decentralised Exchange
  • \n
  • Cloud-based blockchain
  • \n
\n

Apart from a patently weak 8-page paper and a number of publications on the blog, no detailed information about the project was found via official channels. Program code is also not disclosed. Nevertheless, developers promise to launch the network on 31 October 2016.
\nDuring the crowdsale, bonuses from 20% to 5% will be distributed, depending on the time of investment.
\n

\n

Crowdsale summary: 

\n
    \n
  • Dates: 6 August 2016 — October 6, 2016
  • \n
  • Total number of tokens: 100 mln
  • \n
  • Tokens distribution: 80% will be sold to the crowdsale participants, 10% is a team reward and 10% are marketing expenses
  • \n
  • Raised so far: ~ $179,000 (294 BTC)Даты проведения: 6 августа — 6 октября 2016 года
  • \n
\n

The crowdsale takes place here: https://ico.declouds.com/
\nFor useful links and more information, go to https://cyber.fund/system/DeClouds

\n


\nHong
\n

\n

Investments are made by transferring ETH to the Etherium contract.
\n

\n

The Fund is formed for the period of 4 years, 3 of which are put for investing while the last year is for the exit. 80% of the money received as a result of fund liquidation will be distributed among Hongcoin holders, 20% among managers. Annual 2% fee to be charged for operational expenses of the managing organisation. The fee allocation will be defined by voting. The fund can be \"frozen\" at any time by the decision of 50% of shareholders.

\n

As a purpose for investment, 3 directions are selected: disruptive innovation, creativity and educational projects. Hong founders believe that the blockchain technology will most significantly impact these fields of human activity.
\nThe fund operates according to the following scheme: 

\n
    \n
  • Fund managers review projects and make a decision on whitelisting them;
  • \n
  • Hongcoin holders vote for the allocation of funds for investments within 15 days (the quorum of 20% is required for the approval of an investment);
  • \n
  • Fund managers prepare due-diligence and investment strategy for the project and provide any possible assistance in the development and promotion of the project;
  • \n
  • When the fund's term comes to an end, the managers carry out the exit process.
  • \n
\n

A company will be established for the management of raised funds, but it has not been determined yet in which jurisdiction. There is no information on the management parties available on the website nor through any the official channels.
\nThe crowdsale takes place in several stages, with 50 mln Hongcoin sold at each stage: 

\n
    \n
  • 50 mln Ħ – 1.00 ETH за 100 Ħ
  • \n
  • 50 mln Ħ – 1.05 ETH за 100 Ħ
  • \n
  • 50 mln Ħ – 1.10 ETH за 100 Ħ
  • \n
  • 50 mln Ħ – 1.15 ETH за 100 Ħ
  • \n
  • 50 mln Ħ – 1.20 ETH за 100 Ħ
  • \n
\n

As long as the crowdsale is going on, investors will have the opportunity to change their mind and withdraw invested funds. After the crowdsale is finished, the exit opportunity will be closed.
\nCrowdsale summary: 

\n
    \n
  • Dates: 29 August 2016 — 29 October 2016 (may be extended until 28 November)
  • \n
  • Total number of tokens: to be determined by the end of the crowdsale
  • \n
  • Tokens distribution: 100% will be sold in the crowdsale
  • \n
  • Crowdsale goal: at least 1,575,000 ETH (~ $19 mln), the maximum is 2.7 mln ETH (~ $33 mln)
  • \n
  • Raised so far: ~ $6,600 (11 BTC).
  • \n
\n

The crowdsale takes place here: http://www.hongcoin.org/
\nFor useful links and more information, go to https://cyber.fund/system/Hong
\n

\n

Judging by the current investments dynamics, the project will not succeed.

\n


\nPLANNED CROWDSALES 

\n


\nSynereo
\n

\n

One year after a crowdsale that raised $126,000 aimed at the development and launch of a decentralised social network, the project team announced the second funding round and the launch of the network'salpha version. Two funding campaigns start at the same time in September: the sale of Synereo Ltd shares on BnkToTheFuture and of AMP tokens.
\nFollowing the first crowdfunding, the distribution of AMP was as follows:

\n
    \n
  • 2.72% (45.8 mln) — sold during the first crowdsale
  • \n
  • 11.9% (200 mln) — user rewards
  • \n
  • 8.92% (150 mln) — reserve for the content creators
  • \n
  • 11.9% (200 mln) — founders' reward
  • \n
  • 13.68% (230 mln) — bounty program
  • \n
  • 50.61% (850.4 mln) — next funding
  • \n
\n

Synereo revised their plans and now aim to develop a protocol similar to the SAFE Network, which will include the following components:

\n
    \n
  • Proof-of-Stake consensus algorithm
  • \n
  • Distributed network of nodes connected on the principle of \"shards\", where blockchain is divided into many small segments
  • \n
  • Distributed repository
  • \n
  • Smart contracts
  • \n
  • Social layer (a social network motivated according to the Attention Economy Model)
  • \n
  • The possibility of building distributed apps
  • \n
\n

The grant program for dApps developers Project 11 with a budget of 1.11 million AMP is already in operation.
\n

\n

The popular website CoinMarketCap misleadingly states current Synereo capitalisation at about $10-13 million, which is not true because it is only the cost of 62,580,000 AMP (3.72%) in circulation on the market. According to cyber • Fund's calculations, with the total of 1.68 billion tokens, Synereo's real capitalisation reaches $300 million.

\n

It has not been disclosed yet how many tokens will be put up for sale, but we can assume that the minimum amount claimed by Synereo is about $130-140 million in case the entire reserve is sold, which is 850.4 mln AMP. This is a very ambitious plan, taking into account current distribution and the market price of tokens. Besides, it should be kept in mind that after the launch of the network, additional 5% of AMP will be emitted every year. In my opinion, they should sell the whole reserve without fixed prices and with token distribution proportional to investments. It will provide normal distribution and a fair market capitalisation.

\n

Despite the presence of a strong team with an excellent technological vision, we consider the evaluation of $300 mln inadequate.

\n

Crowdsale summary:

\n
    \n
  • Dates: September 2016
  • \n
  • Total number of tokens: 1.68 billion AMP
  • \n
  • Number of tokens for sale: unknown, probably 850.4 mln
  • \n
  • Crowdsale goal: presumably ~ $130-140 million
  • \n
\n

The crowdsale takes place here: https://www.synereo.com/sale
\nFor useful links and more information, go to: https://cyber.fund/system/Synereo

\n


\n

Golem Project
\n

\n

The aim of the project is to adopt any customer personal computer for the work that is done today by servers, computing farms or supercomputers. 

\n

As the result, Golem Net will become a truly decentralised network where users' summarised machine power will provide any amount of hardware resources required. At the moment, there is no document explaining how exactly it would work. We hope that such paper will appear before the crowdsale. 

\n

The Golem App will connect to the network from a local device to share computing power and deliver tasks for calculations.
\nThe micropayment system based on Ethereum will provide the incentivising component distributing rewards and processing transactions. Transaction fee will be set at 5%. 

\n

Currently, the network can work only with public data because the apps require direct access to data.
\nDevelopers announced the crowdsale on their blog

\n

Golem Network Tokens (GNT) are the shares that give the right to receive part of the revenue generated by Golem Network. 

\n

Crowdsale start date: September 2016. 

\n

Token distribution: 

\n
    \n
  • Total number of tokens: unknown
  • \n
  • 82% — crowdsale
  • \n
  • 6% — founders reward
  • \n
  • 12% — developer company reward
  • \n
  • Estimated amount of funds: a minimum of 100,000 ETH, a maximum of 650,000 ETH
  • \n
\n

For detailed information on the project, see http://golemproject.net/slides/index.html#/14
\nFor useful links and more information, go to https://cyber.fund/system/Golem
\n
\n

\n

SingularDTV
\n

\n

The ultimate goal of the project is the creation a thriving industry of decentralised entertainment.

\n

What they promise: 

\n

● SINGULAR – a TV series.
\nThe S-DTV flagship product is an epic sci-fi adventure TV series about decentralisation, scaling and emergence of intelligent systems that lead the humanity to a technological singularity. 

\n

● Documentary division
\nThis division will create full-length and short-length documentary series and movies about the blockchain, decentralisation and Ethereum. 

\n

● S-DTV rights management platform
\nAn app that will use smart contracts for registration and management of digital rights, as well as of income and royalties on intellectual property, namely, movies and television. Deals in the film and TV industry are the most difficult to arrange as they often involve hundreds of individual participants. 

\n

● On-demand video content portal (TVOD)
\nTVOD changes the way people watch entertainment programmes. S-DTV is born to create the TVOD portal for original content distribution, as well as for selected and acquired content. In addition to developing an interface on IPFS, S-DTV will use third-party portals such as GooglePlay, AppleTV iTunes and Vimeo to build a larger audience in a short time.

\n

Minimum investment goal – $500,000.

\n

Desirable funding – $7,5 mln.

\n

According to S-DTV documentation, Swiss company MME has developed a new, innovative organisational structure specifically for S-DTV: the Centralised Organised Distributed Company (CODE). It is the Swiss company, therefore, that will manage the finances and reinvest the income, while tokens will be used for paying out the dividends.

\n

Token distribution: 

\n
    \n
  • 400 mln Singular DTV GMBH
  • \n
  • 100 mln core investors
  • \n
  • 500 mln crowdsale
  • \n
\n

Funds distribution in case if $7,5 mln is raised: 

\n
    \n
  • \"Singular\" season 1 (3 episodes of the mini-series): $3.25 mln
  • \n
  • Documentary division: $0.50 mln
  • \n
  • Development of the rights management platform: $2 mln
  • \n
  • TVOD portal development: $1 mln
  • \n
  • Marketing: $0.50 mln
  • \n
  • Administrative, legal expenses and unforeseen circumstances: $0.25 mln
  • \n
\n

Crowdfunding is planned for September and will likely take place at Devcon2.

\n

The Ethereum and Consensys founder Joseph Lubin is included into the team as CTO.

\n

Unfortunately, in this project tokens only serve for distribution of dividends, and the project is centralised because 40% of tokens belong to Singular DTV GMBH. Another disadvantage is the fact that of the four declared founders/directors, only Zach Lebeau will work full time on the project. He is likely to be engaged in the studio rather than in the platform development; there are also risks associated with SEC.

\n

The main question is the development of the TVOD platform and the rights management platform: there is no understanding as to what kind of team will be working on it, and no technical description at the moment. If both platforms can be really implemented, the project is promising for investment.=

\n

For detailed information about the project, see: https://singulardtv.com/
\nFor useful links and more information, go to: https://cyber.fund/system/SingularDTV
\n

\n

Decent
\n

\n

It is designed for creative people, writers, bloggers, journalists and their fans and followers. The platform enables users to publish any posts, images, video or music content with no restrictions.

\n

Consensus algorithm – Proof-of-Stake.

\n

Decent has three functional roles: 

\n
    \n
  • Authors: content producers, writers, music producers etc.
  • \n
  • Consumers: readers, listeners and viewers
  • \n
  • Publishers: miners
  • \n
\n

Token distribution – 30% via mining and 70% is distributed during the crowdsale, some of them will go to pre-mine funds to be distributed in the following way: 

\n
    \n
  • 10% — DECENT Foundation
  • \n
  • 2% — the Investment fund
  • \n
  • 1,000,000 DCT — campaign bounty
  • \n
  • 3,000,000 DCT — pre-launch marketing programme
  • \n
\n

On the crowdsale page, next to the conditions, we see a message that the project is supported by Google, though it does not correspond to the project's primary activity. Moreover, the current yellow paper ignores many issues such as, for example, how miners would store the content. Decent enters the content distribution market where such projects as Steemit, Synereo and LBRY already operate. 

\n

The crowdsale takes place here: http://sale.decent.ch/
\nFor useful links and more information, go to: https://cyber.fund/system/Decent
\n

\n

FirstBlood
\n

\n

This platform will allow players to bet without intermediaries. The payoff distribution will be also managed via smart contracts.

\n

The eSports betting market holds more than $130 million per year with 30% annual growth rate.

\n

3 monetisation channels:

\n
    \n
  • Matchmaking
  • \n
  • Revenue from the tournament organisation
  • \n
  • Advertising
  • \n
\n

Token will allow: 

\n
    \n
  • Match playing
  • \n
  • Match refereeing and voting for the referee
  • \n
  • Placing tournaments
  • \n
  • Requesting an award from referrals
  • \n
\n

Tokens distribution: 

\n
    \n
  • Crowdsale, 4 weeks, in the first hour 170 tokens for 1 ETH
  • \n
  • 10% to the project founders; these funds will be blocked for 12 months
  • \n
  • 5% will be placed in the platform development fund for the promotion and tournament awards
  • \n
  • 2.5 mln - bounty fund, to be distributed during the crowdsale for advertising and debugging
  • \n
\n

Crowdsale start date: 26 September 2016.

\n

In my opinion, it is an interesting project. The only reservation is that the market is not very vast, albeit actively developing. Besides, the motivation for developers and other market players is not very well thought through. In this regard, central players, who can also use smart contracts and predictions market to confirm the events results, may have an advantage. However, this project may indeed become the market leader on the condition of good community building and active incentivising of referees and the jury. 

\n

For detailed information about the project, see: https://firstblood.io/
\nFor useful links and more information, go to: https://cyber.fund/system/FirstBlood
\n

\n


\nMassNetwork
\n

\n

The three main entities: 

\n
    \n
  • Advertisers
  • \n
  • Websites
  • \n
  • Internet users
  • \n
\n

The basic principle is to follow the industry's trend to monetise customer attention and create a convenient and fair trading platform for all parties involved, including Internet users. Mass allows users to receive instant rewards for web surfing through the built-in p2p infrastructure based on the blockchain. As a result, advertisers will pay users a fair price for their attention and data without intermediaries.
\n

\n

An increasing number of customers are using ad-blocking software. Mass offers a browser extension and a mobile app that can block ads as well as protect personal data. Yet, their primary goal is not blocking but rather improving users' experience with advertising and rewarding them with cryptocurrency to establish a consumer-advertiser relationship and, therefore, reduce the number of ad-block users. Mass will also have a cryptocurrency wallet and blockchain-based payment system.

\n

Crowdsale dates: 6 September — 1 December 2016

\n

Token distribution: 

\n
    \n
  • 70% to the crowdsale participants
  • \n
  • 30% to Mass team members
  • \n
\n

Mass plans to build its own full-blown infrastructure for advertising industry with an internal token. A similar solution has been already introduced to the market – the Brave browser. It blocks default ads and replaces it with incentivising ad materials. The bitcoins received from advertisers are distributed among users, the platform and the endorsing website. In my opinion, if Mass used smart contracts or a proprietary blockchain enabling further token emission to incentivise users and websites, they could compete with bitcoin. However, Mass token works on the bitcoin blockchain, which on the one hand makes it very secure, but on the other, has no advantage over bitcoin per se. In favour of bitcoin are accessibility, recognition, and a more stable price. 

\n

Crowdsale takes place here: https://ico.mass.network/#/?aid=ep6oxa
\nFor useful links and more information, go to: https://cyber.fund/system/MassNetwork

\n

---

\n

All data and calculations are quoted as of 6 September 2016 with bitcoin price at $609. For closed crowdsales evaluation in USD is given using the average token price at the date of closure.

\n

---

\n

Big thanks to: 

\n\n

---

\n

Original was posted in Blockchain Boom

\n


\n", + "json_metadata": "{\"tags\":[\"cyberfund\",\"blockchain\",\"crowdsales\"],\"links\":[\"https://cyber.fund/system/BlockPay\",\"https://cyber.fund/system/BitShares\",\"https://www.odoo.com/\",\"https://blockpay.ch/newsroom/investor-relations/blockpay-reserves/\",\"https://cyber.fund/system/AntShares\",\"http://www.antshares.org/ico\",\"http://www.elastic.pro/\",\"http://www.elastic.pro/donations\",\"https://cyber.fund/system/Elastic\",\"https://cyber.fund/system/Iconomi\",\"https://bitcointalk.org/index.php?topic=1587736.0\",\"https://ico.iconomi.net/\",\"https://cyber.fund/system/DeClouds\",\"https://drive.google.com/open?id=0B8VJa9S_WxSSSHJhN0o0QkVPN1E\",\"https://medium.com/@decloudscom/latest\",\"https://ico.declouds.com/\",\"https://cyber.fund/system/Hong\",\"http://etherscan.io/address/0x9Fa8fA61A10Ff892E4EBCeB7f4e0FC684C2ce0a9\",\"http://www.hongcoin.org/\",\"https://cyber.fund/system/Synereo\",\"https://blog.synereo.com/2015/05/10/amp-distribution-complete-2/\",\"https://blog.synereo.com/2016/08/29/synereos-second-fundraising-campaign-coming/\",\"https://www.synereo.com/alpha/\",\"https://bnktothefuture.com/\",\"https://cyber.fund/system/MaidSafeCoin\",\"https://www.synereo.com/learn-more/\",\"https://github.com/synereo/synereo.github.io/raw/master/whitepapers/synereo.pdf\",\"https://www.synereo.com/developers/\",\"http://coinmarketcap.com/assets/synereo/\",\"http://omnichest.info/lookupsp.aspx?sp=39\",\"https://www.synereo.com/sale\",\"https://cyber.fund/system/Golem\",\"http://golemproject.net/doc/GolemNanopayments.pdf\",\"https://blog.golemproject.net/golem-network-token-gnt-sale-220c2a732f9#.fdn8hljmq\",\"http://golemproject.net/slides/index.html#/14\",\"https://cyber.fund/system/SingularDTV\",\"https://singulardtv.com/\",\"https://cyber.fund/system/Decent\",\"http://sale.decent.ch/\",\"https://cyber.fund/system/FirstBlood\",\"https://firstblood.io/\",\"https://ico.mass.network/#/\",\"https://ico.mass.network/#/?aid=ep6oxa\",\"https://cyber.fund/system/MassNetwork\",\"https://steemit.com/@creator\",\"https://steemit.com/@coinfox\",\"http://blockchainboom.coinfox.info/\"]}", + "last_update": "2016-09-15T19:44:18", + "created": "2016-09-15T19:30:36", + "active": "2016-09-15T19:44:18", + "last_payout": "1970-01-01T00:00:00", + "depth": 0, + "children": 0, + "net_rshares": "4649989991534", + "abs_rshares": "4649989991534", + "vote_rshares": "4649989991534", + "children_abs_rshares": "4649989991534", + "cashout_time": "2016-09-16T19:34:50", + "max_cashout_time": "2016-09-29T19:30:36", + "total_vote_weight": "9916447926886758335", + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 10, + "root_author": "vitaly-lvov", + "root_permlink": "crowdsales-monitor-august-2016", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 961211, + "author": "agartha", + "permlink": "i-hack-monero-xmr", + "category": "steemit", + "parent_author": "", + "parent_permlink": "steemit", + "title": "I hack Monero (Xmr) ?", + "body": "I think I just hacked Monero lol it's a joke but the security too thou \n\nLook at this! \n\n\nhttps://www.facebook.com/agartha.white.3/posts/179267779175393", + "json_metadata": "{\"tags\":[\"steemit\",\"hack\",\"monero\",\"bitcoin\",\"lol\"],\"links\":[\"https://www.facebook.com/agartha.white.3/posts/179267779175393\"]}", + "last_update": "2016-09-15T19:44:00", + "created": "2016-09-15T19:44:00", + "active": "2016-09-15T19:44:00", + "last_payout": "1970-01-01T00:00:00", + "depth": 0, + "children": 0, + "net_rshares": 64358062, + "abs_rshares": 64358062, + "vote_rshares": 64358062, + "children_abs_rshares": 64358062, + "cashout_time": "2016-09-16T19:44:00", + "max_cashout_time": "2016-09-29T19:44:00", + "total_vote_weight": "296794399420393", + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "agartha", + "root_permlink": "i-hack-monero-xmr", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 961208, + "author": "varda", + "permlink": "my-day-hospital", + "category": "story", + "parent_author": "", + "parent_permlink": "story", + "title": "My day hospital", + "body": "\n

  In the morning, at 5 am when the moon completes his round, the alarm rings, my deepest sleep I wake up painfully. Kéops my cat starts singing tour and stops only when he filled his mess tin. Sweety then, the cat of my son jumps on the furniture in the kitchen and also claimed his bowl. Kashmir him not to come after me, until I make him hugs.

\n

\n

\n

\n

 A small cup of coffee and I'm up for the day. After my shower, I have to feed the fish pond and two hens, they are waiting for me impatiently for me to release them from their cages.

\n

\n


\n

\n


\n

 6:15, I start my bag on her arm, my water bottle and my biscuit for lunch. On the road I am alone, few vehicles I meet. Great to run your car on a deserted road. In the winter when it snowed, I am the first to make tracks in the whiteness of the snow grows like cotton wool, sometimes, crazy beyond me and skids, it is an adrenaline rush. In summer the sun rises gives the sky a color of red sweetness, yellow, orange. In autumn, the trees begin to change color, it is a season because I love the beauty of trees is unique. 

\n

\n


\n

Here I come down the street or is my workplace, hospital, regional hospital, the CHR. Vehicles coming after one another because we start at 7am. The staff is found, speak, tells their evening then everyone goes to the same place: the time clock, control object of our hours worked.

\n

\n


\n

 In the ladies locker room, it gets held: white jacket with blue and green patterns representing the logo of the institution, blue pants with various pockets which we do not serve! 

\n

\n


\n

We arrive in our service, mine is the neurological rehabilitation service: we give up (or so) of people who have a stroke, an accident with neurological trauma, people who have multiple sclerosis or Guillain barred and other chronic diseases whose name is almost unknown. 

\n

\n


\n

\n


\n

\n


\n

We start our day with a report on each patient last night, we have 20 in service. After beginning the nursing: we make the toilet of the patient who is totally dependent. We get up in the chair. For others, we must educate, continue the actions he has learned with the therapist in the individual care, the patient should regain maximum independence so they can go home and take care only . It's a job that can last from 3 months to 6 months beyond, we can not do anything for them. 

\n

\n


\n

Headline in this service is: you come to bed but you leave again walking. 

\n


\n

Sometimes, we fail either because the patient does not want a return to autonomy, or because the patient is too ill. We give the same chance to everyone, rich, poor, alcoholic, drug addict, young or old. 

\n


\n

The management of a patient goes from shaving the beard of a man to the presentation on the toilet, the room arrangement the carefully tended beds. 

\n


\n

Lunch arrived around 8:30 am, few patient is in the dining hall for breakfast, other unfinished eat in bed Logistical assistance serves meals that are different if the patient is diabetic, diet, dieters, old, or in solid supply resumption. You should know that when the patient has had a stroke, a stroke, swallowing is absent, which means that if the patient eats a sandwich, but he swallows the bread goes in the bronchial tubes and not in the stomach, giving a false swallowing, bronchi become infected and it's a disaster. So this patient who made false swallowing should eat while cream consistency and drink thickened liquid. Which is not very good but I admit it must go through these stages in order to re-eat a day normally. 

\n


\n

Physiotherapists arrive at 9am and leave a 17h, occupational therapists also. There is also a neuropsychologist, a speech therapist and all do work that allows the patient to regain maximum independence, which means that the patient all day is busy. Visitors can come between 14:30 and 19:30. 

\n


\n

After lunch, we continue our work, when all is well, we finish around 10:30 or 11am but sometimes it is noon we are still in the rooms. 

\n


\n

In terms of handling, the entry of the patient, it is usually in bed or in a wheelchair with a right hemiplegia or left, some have forgotten that they had half a disabled body, so it must withstand and no wear and show him how to do with one leg to go from wheelchair to bed and vice versa. Others are completely invalid, they know not move neither arms nor legs, and for those, or we wear them either we lift them with a forklift. 

\n


\n

During dinner, we feed the disabled and we encode our care in the computer.

\n


\n

 Around 13h, we are a few naps after going on the toilet. Sometimes we have a problem in the pants, oops! When everyone is changed to bed, we have a service change ratio and the time, the hour of the end of our service is lagging. At 14h is the start of the morning shift. For my part, I take a good shower and I take the way home or waiting for my cats and my dog makes me a big party. 

\n


\n

We must not believe that the nursing profession is simple, each service is different and you can not compare the care of each other. 

\n


\n

I hope I have not bothered you with this long text, I wish you a good day to you all.     

\n", + "json_metadata": "{\"tags\":[\"story\",\"health\"],\"image\":[\"https://www.steemimg.com/images/2016/09/15/DSCN0477faad0.jpg\",\"https://www.steemimg.com/images/2016/09/15/keops0029612b.jpg\",\"https://www.steemimg.com/images/2016/09/15/Au-sommet81f7b.jpg\",\"https://www.steemimg.com/images/2016/09/15/16e3c4.jpg\",\"https://www.steemimg.com/images/2016/09/15/Photo0224b24a.jpg\",\"https://www.steemimg.com/images/2016/09/15/d85917d4a45b3d581b5f40d1d7a7504a3bb1e.jpg\",\"https://www.steemimg.com/images/2016/09/15/chr841bd.jpg\",\"https://www.steemimg.com/images/2016/09/15/DSCN1513-Copiee7a4d.jpg\",\"https://www.steemimg.com/images/2016/09/15/Capture2bb0b8.jpg\",\"https://www.steemimg.com/images/2016/09/15/370086-1f7d83.jpg\",\"https://www.steemimg.com/images/2016/09/15/Capturec0ccc.jpg\",\"https://www.steemimg.com/images/2016/09/15/souleve-malade-foldyadb08.jpg\"]}", + "last_update": "2016-09-15T19:43:54", + "created": "2016-09-15T19:43:54", + "active": "2016-09-15T19:43:54", + "last_payout": "1970-01-01T00:00:00", + "depth": 0, + "children": 0, + "net_rshares": 1202120459, + "abs_rshares": 1202120459, + "vote_rshares": 1202120459, + "children_abs_rshares": 1202120459, + "cashout_time": "2016-09-16T19:43:54", + "max_cashout_time": "2016-09-29T19:43:54", + "total_vote_weight": "5542136534307198", + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "varda", + "root_permlink": "my-day-hospital", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 961197, + "author": "ejaredallen", + "permlink": "wanna-see-something-cool", + "category": "photography", + "parent_author": "", + "parent_permlink": "photography", + "title": "Shot From Around The Block On An iPhone!", + "body": "\n

\n

Nature

\n

I haven't stopped and taken a picture of the beauty around me in a long time. It's funny how we can get so caught up in work and the business of a crazy life and miss the simply beauty along the way. Sometime you've just got to stop and smell the roses; and while you're there, take a picture!

\n

\n

These aren't roses, I know: they're wild flowers. They don't get the nurture and care that roses do, and yet they are provided for and they bloom into beautiful blossoms in their own time. They have a harder life than others, and that's how we humans are as well. Some of us were well taken care of growing up and were treated like roses, while others were left in the field to grow up alone and without the love and care we should have had. But we are all beautiful in our own ways and if we survive long enough, we will blossom into something spectacular.

\n

\n

Colorado mountain rivers

\n

When the snow on the tops of the mountains melt, it feed the rushing rivers that carve their way down the mountainside. The climbing is excellent, the whether and the views are truly gorgeous, but something about the rivers rushing through the mountains draws you in. There is a memorization about the brave rivers unafraid of the mountains and simply rushing on by recklessly.

\n

\n

Mississippi at sunset

\n

Sometimes the world just slows down and magic happens. This was one of those times. On the night before my sister's wedding in Tupelo, Mississippi the sky exploded in color. What a calm reassurance before a monumental event: the approval stamp of God upon the sanction of their marriage.

\n

\n

Hundreds of years old Indian hieroglyphs in Arizona

\n

This was an incredible hike in the Arizona mountain ranges to discover a place where the Apache Indians, or perhaps some other tribe had lived hundreds of years ago!

\n

\n

Uganda, Africa at twilight, from a moving bus

\n

Africa is always an adventure, but in 2015 we took a safari on the northern rim and caught this shot on the way back to the lodge. I love how the beauty of the world is unique in its diversity from place to place, even across the Atlantic.

\n

\n

This is one of my favorite shots. I don't remember where I took it or when, but the colors, the bliss, the peacefulness of this field of flowers was stunning. I'm glad I was able to capture an image of its beauty to remember it by. And to think, all of this beauty was made by God in a second! His power to create a world is amazing and perfect in every way. We get to see His marvelous creation every day! 

\n

Follow me @ejaredallen for more pictures and great content!

\n", + "json_metadata": "{\"tags\":[\"photography\",\"pictures\",\"art\",\"steemit\",\"travel\"],\"image\":[\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-986x1024-289x300.jpeg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-3-1024x768-300x225.jpeg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6440-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6031-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_5829-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/2015-07-13-06-37-59-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_7281-1024x1024-300x300.jpg\"],\"links\":[\"https://steemit.com/@ejaredallen\"]}", + "last_update": "2016-09-15T19:43:33", + "created": "2016-09-15T19:42:24", + "active": "2016-09-15T19:43:33", + "last_payout": "1970-01-01T00:00:00", + "depth": 0, + "children": 0, + "net_rshares": 54846770, + "abs_rshares": 54846770, + "vote_rshares": 54846770, + "children_abs_rshares": 54846770, + "cashout_time": "2016-09-16T19:42:24", + "max_cashout_time": "2016-09-29T19:42:24", + "total_vote_weight": "252932614230673", + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "ejaredallen", + "root_permlink": "wanna-see-something-cool", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 961189, + "author": "cwbrooch", + "permlink": "russian-roulette-a-memoir-part-2-under-the-table-tactics", + "category": "story", + "parent_author": "", + "parent_permlink": "story", + "title": "Russian Roulette - a Memoir [Part 2] - Under-the-table Tactics", + "body": "\n

This is part 2 of my Memoir.  Missed Part 1? Click here.
\nDon't know what's going on? Start from the beginning here.

\n

If you like what you're reading, follow me @cwbrooch for more craziness. if you love what you're reading recommend me to other peeps :) feedback is also very appreciated.

\n

\n

Russian Roulette - A Memoir of my Two Years in Moscow - Part 2 - Under the Table Tactics

\n

In this part of my memoir I am going to attempt to describe the dark side of Moscow. All stories depicted here either happened directly to people I knew, or were described to me as  a it's-russia-get-used-to-it anecdote.
\nYes, I will be talking about corruption and paying people under the table for things but bear in mind that even though it seems like a common practice definitely not all people do that and not all people experience the phenomenon.

\n

A ROUTINE POLICE CHECK 

\n

It is said that it is extremely wise to keep 2k-5k Rubles (about 28-68 Euro, 30-77 Dollars, 23-58 Pounds) in your registration papers at all times. They tend to disappear when you get your documents back from the officer... If one does not have such loose change, the guy tends to make one's life difficult. \"You were speeding\", \"You didn't stop at the STOP sign\", \"You're light is out\" etc. Driving is another interesting phenomenon in Moscow. You might think that since the metro is so packed, the streets will be empty. On the contrary, but I will not get into that right now as that makes a completely different post...  However, what I will tell you is  how one of my students passed her driving exam, which leads us to...

\n

PAYING TO PASS AN EXAM

\n

After her first failed attempt, my student looked at her instructor/examiner and asked: \"Could you please tell me what I did wrong, so I can work on it in the future?\" He stared back at her surprised and announced: \"Well, you didn't pay me extra, what do you expect?!\" At that point even I was shocked - \"So people openly tell you they want money?!\" \"Get used to it Kasia, It's Russia....\"
\nNeedless to say, she was forced to pay the second time around and surprise, surprise, she passed....
\n
\nI taught English in a company. I came one week, and saw that everyone was kind of in a rush and slightly agitated. I asked what the problem was and they said they were waiting for an audit. I remember wishing them good luck... One lady looked at me and smiled \"We paid the guys to look the other way, it will be fine!\" I didn't even bother to comment as I had aleady known there was no point...

\n

GETTING INTO A PRIVATE EVENT

\n

It was the three of us - my BF, his friend and I. We wanted to do some clubbing and the friend decided we should go to a very trendy bar in the heart of Moscow. He had a loyalty card there and was well known among the bouncers. We didn't really look the part, but a hefty fee paid for each of us (by the friend) was enough to let us in...

\n

That was a minor party. Let's talk about the big stuff, involving bigger money!
\nIf you know someone, who knows someone, who knows someone you might be able to (legally) attend the dress rehearsal of the famous Victory Parade in May (the 9th to be exact). It costs about 10k (137 Euro, 116 Pounds , 153 Dollars) Watch fragments of the video below to see the magnitude of what I am talking about. 

\n

The whole thing is long, play with it a little bit. The good stuff starts at about 40 minutes. Source

\n

https://www.youtube.com/watch?v=5EI3FYynz-Q

\n

To enter the actual parade however, you need to be a prominent member of the society (e.g. ex-military) or someone famous or filthy rich :)

\n

The event itself is quite impressive and for soldiers taking part in the march it is an honor among honors.  
\nWe had the privilege of living 15 minutes on foot from the Red Square so we saw all the preparations and marches right outside our windows (till 11pm at night...)

\n

\n

PS. I am aware that my portrayal of Moscow might seem bleak and depressing. Believe me, it was not. I;m simply trying to describe the juicy bits, the interesting stuff :) My next post will be more optimistic as I will be talking about sports, parks an recreations  :)

\n

 ____________________________________________________________________________

\n

Thank you for reading Part 2 of my memoir.

\n

Want to find out more about living in Moscow? Follow me @cwbrooch :)

\n

My other work on Streemit:

\n

1) Russian Roulette - Preamble 

\n

2) Russian Roulette - Part 1 - Surviving Underground

\n

3) Why shouldn't you use google translate for learning English and which dictionaries are far better

\n

4)  How to learn vocabulary effectively in any language!

\n

5) About me: introduction  
\n 

\n


\n", + "json_metadata": "{\"tags\":[\"story\",\"writing\",\"travel\",\"life\",\"russia\"],\"users\":[\"cwbrooch\"],\"image\":[\"https://s14.postimg.org/bpiqdmgpt/Untitled.jpg\",\"https://img.youtube.com/vi/5EI3FYynz-Q/0.jpg\",\"https://lh3.googleusercontent.com/3OMfOqwX2pQ5BYeql8V1tg4J6VcMzG75pLD-nhsfHw0BYFLEQOQSeVl-sVdEkDwS6VfPco-FukpjwQONwimoOhzzT4GIPDt_VGbJfNDYaltTvEcyOFK5do7PZD1-tjDW0nxKYhUQdxG4yoxX6ZS590fMaveLKSI2Voz579yTME9U8D7UgN7R3ufBrAcq0KV8kA9VqMVxryabh2X_jBiMnP3Uwjj_hrWn3ARzHggZMRuo3G3ORSKDpoqcBA25bRDeWHe7nVT4X58NolQ4yY8HVjzyUr4zDneI8dy_eHnSf0F0FBZ8kn4NQQ3ueVR84tu-Ot64CZb9a1SetmKmupvAxBbuS8z3jBsvCECD8A5jz9qevTOkgHEbV0z2hVteH64gCLg3OI9mRVqw2GWAYwNSUlGGtwCxmwXq3p_j_igwncarIhIF2HX_bV0ACrucmewR6IiIdVfaKKAO9g2ycLbJRr_SBwE9TxBND9ar0R267Grzq5SHywG71h1nxZnXInW-HQ2l1cou8zqdiEUanqkeSbgIunZVNBcEnYYinmF-WZd5y0_Luc8rdDYy0GlKAtAJ4z0-woKDs6d_XKWhiWsYOAW3rWwCe3cJylK_6H7wNO2PlBKL=w1163-h775-no\"],\"links\":[\"https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-in-moscow-part-1-surviving-underground\",\"https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-of-living-in-moscow-preamble\",\"https://www.youtube.com/channel/UC4qBu3EvraPWezHbaC7npIQ\",\"https://www.youtube.com/watch?v=5EI3FYynz-Q\",\"https://steemit.com/@cwbrooch\",\"https://steemit.com/languages/@cwbrooch/why-shouldn-t-you-use-google-translate-for-learning-english-and-which-dictionaries-are-faaaar-better\",\"https://steemit.com/languages/@cwbrooch/how-to-learn-vocabulary-effectively-in-any-language\",\"https://steemit.com/introduceyourself/@cwbrooch/teacher-story-teller-cat-lover-about-me\"]}", + "last_update": "2016-09-15T19:42:57", + "created": "2016-09-15T19:41:09", + "active": "2016-09-15T19:42:57", + "last_payout": "1970-01-01T00:00:00", + "depth": 0, + "children": 0, + "net_rshares": "5891496080", + "abs_rshares": "5891496080", + "vote_rshares": "5891496080", + "children_abs_rshares": "5891496080", + "cashout_time": "2016-09-16T19:44:28", + "max_cashout_time": "2016-09-29T19:41:09", + "total_vote_weight": "27129771364344680", + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "cwbrooch", + "root_permlink": "russian-roulette-a-memoir-part-2-under-the-table-tactics", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 961180, + "author": "philanthropest", + "permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", + "category": "freedom", + "parent_author": "", + "parent_permlink": "freedom", + "title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", + "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", + "json_metadata": "{\"tags\":[\"freedom\",\"anarchy\",\"steem\",\"life\",\"\"],\"image\":[\"https://img.youtube.com/vi/y02aBfNT8n4/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=y02aBfNT8n4\"]}", + "last_update": "2016-09-15T19:42:36", + "created": "2016-09-15T19:40:21", + "active": "2016-09-15T19:42:36", + "last_payout": "1970-01-01T00:00:00", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-16T07:40:21", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "philanthropest", + "root_permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 960785, + "author": "ancientofdays", + "permlink": "are-steem-bitcoin-etc-obvious-pre-cursors-to-the-mark-of-the-beast", + "category": "money", + "parent_author": "", + "parent_permlink": "money", + "title": "Are Steem, Bitcoin, etc.. Obvious Pre-cursors to The Mark of the Beast?", + "body": "\n


\nImage Source & External Article - http://lifehopeandtruth.com/prophecy/revelation/mark-of-the-beast/

\n

Just recently here in Roswell NM (where I live, yes) I was telling a shop owner about Steem and Steemit, and he made the comment that he thought it sounded like \"...one more step towards the Mark of The Beast\"...

\n
\"...And he causeth all, both small and great, rich and poor, free and bond, to receive a mark in their right hand, or in their foreheads: And that no man might buy or sell, save he that had the mark, or the name of the beast, or the number of his name. Here is wisdom. Let him that hath understanding count the number of the beast: for it is the number of a man; and his number is Six hundred threescore and six...\"
\n - Revelation Chapter 13 (
Full Chapter)
\n

Yes Virginia... I hate to break it to you, but digital currency IS indeed \"one more step towards the mark of the beast\" - and we all know it. 

\n

Let's just get that out of the way now. But fear not, this is NOT a paranoid religious post warning people about the eternal dangers of joining Steemit, nor of using digital currency in general however. This is just a hopefully rational religious post (inspired by a secular article) meant to stem paranoid fear (amongst Christians mainly) of utilizing Steemit specifically, and digital currency in general. Which I will get back to in just a second...

\n

But first... If to you, \"stemming this fear\" makes me \"part of the Satanic conspiracy\" then I can't help that, and I won't engage with or reply to you if that is your view (which you are entitled to hold, and even to express as a comment below). 

\n

I'd rather use my time to inform non-Christian people who may have clicked in here (for laughs perhaps?) that Yes, I believe that the mark of the beast is coming, and you DO need to aware of the dangers of accepting it!

\n


\nImage Source & External Article: http://www.evangelicaloutreach.org/markbeast.htm

\n

 (Hence the external articles links being detailed here for further reading - which I have not closely vetted btw, they just had top matches for images)...

\n

Anyways...

\n

As I told my friend Don (who DID join Steemit @roswellrockman ) \"So is your debit card!\"

\n

Putting Don and I's end-of-conversation succinctly, there are many aspects of our everyday lives that have brought and are bringing us \"one step closer\" to the mark of the beast - but they are not in themselves the mark, they are not evil, and (imho) they are not to be feared, or shunned. 

\n

(Altho I will note respectfully that The American Amish community feels differently - see the link below these next images.)

\n

There are indeed many examples from our now-everyday lives that could easily be said to be bringing us \"one step closer\" ... such as the \"Bar Codes\" on every product we purchase

\n


\n... especially if the same types of \"scanners\" that read them, were then pointed to a laser tattoo or RFID chip in your hand, to receive payment for these goods at the register. 

\n


\nAll 3 Images above & External Article: http://www.whatdoesitmean.com/index1392.htm

\n

\"Radio Frequency ID chips\" (see Wikipedia article) are already being used (some will say \"being tested\") to help pet owners keep track of their pets. Wal-Mart and other retailers also use them to track expensive items, to help prevent shoplifting. And especially \"hi-tech\" firms demanding secrecy and security clearances even use them on employees! 

\n

Could Big Brother and The Rothchild's and The Federal Reserve Banks and The U.N. (collectively, \"The New World Order\") one day very soon use all of this to both track you physically, and to observe or control your money supply? 

\n

Absolutely!

\n

It's no stretch at all to imagine combining RFID technology with UPC Bar Codes - and then connecting it all to your bank account via the Internet (or the Blockchain!) - to fulfill the Bible prophecy about the mark of the beast happening in the near future, or in our lifetimes.

\n

Folks I am no stranger to this belief. I first penned the words myself way back in 1997 (in my original webpage and book \"Come Sail Away : UFO Phenomenon & The Bible\"- << Amazon link to 2105 version) in the section I titled \"Genesis 6 to 666\"

\n

\"To understand how the world’s entire economy could be tied into a mark on one’s flesh would be a completely unimaginable miracle - a near impossibility - inconceivable to most Christians throughout the ages. This has left some events of the book of Revelation a little hard to piece together into a believable probability, much less an immediate future.
\n
\n\"In order to accomplish such an incredible thing, you’d have to have some way to access a person’s bank account from anywhere in the known world; all financial institutions would have to have some way of talking to each other through some sort of, of, machinated \"net,\" or a \"web,\" or something; you’d have to come up with some sort of mark, or magnetic strip, or some \"barred code\" that some futuristic \"scanner\" could read; surgical or laser-tattoo technology capable of implanting it, and a \"personal secret code\" so that no one could ever rob you in this \"cashless society.\" Any-time machinery, for financial transactions, would have to be everywhere. Everyone would have to be assigned a separate number at birth. These \"scanner devices\" would have to be in every grocery, hardware, department and convenience store, and every product would have to be marked with this computerized bar-code…
\n
\n\"Yup, you’d need all that…
\n
\n\"Get that in place and you’re ready to go...\" 

\n


\n(Original 1997 cover, now out of print - 2015 version available on Amazon here)

\n

So getting to my main point - finally...

\n

YES. All kinds of technological advances from the past 30 years and more could and probably WILL - imho - be used to make the Mark of the Beast possible... call me a paranoid religious nut if you like, I do firmly believe that such is coming.

\n

The Internet itself, for example, connects and brings the whole world online. But if you're using it to read this, now, you are perhaps already hooked, and have no room to talk about Steem or digital currencies being the pre-cursors to the mark of the beast. Because everything you're already using is also...

\n

The magnetic strips on the back of the debit and credit cards you've (most likely) been using for years and years. Online banking... Bar Code technology in grocery stores that you apparently don't have the religious conviction to oppose not abstain from ... retinal scanners, or fingerprint security features in your smartphone...

\n

See what I mean? 

\n

If you are not a practicing Amish person - or you use only \"true money\" (Gold and Silver) to barter and to trade for goods and services when you need them (or farm and grow your own food, to ensure that you don't) - then there are already DOZENS of aspects of your everyday life that you have accepted and routinely utilize that have already in fact brought YOU \"one step closer to the mark of the beast.\"

\n

YES - these \"new-fangled concepts\" like Steem Dollars, Bitcoin, and Digital Currencies are perhaps OBVIOUS steps moving us all FURTHER along that path to one-world government under antichrist...

\n

(EXCEPT IT MUST BE NOTED in this article for you newbies to the concept, that TO-DATE, popular digital currencies (Steem, Bitcoin, Etherium, etc, etc) are actually intended AND ARE CURRENTLY BEING USED to help users MOVE AWAY from immoral government spying networks, and away from evil centralized banking platforms, putting \"the power in the hands of the people\" - for awhile at least. 

\n

So technically, by joining Steemit and adopting Steem as currency, you are fighting the underpinings of the Satanic One-World government that is forming all around us. You are actually, literally, restraining The Beast from his march to power! For awhile anyways...

\n

So there.)  

\n

But yes, I would affirm that some form of digital currency in general could and possibly will be used by the evil-antichrist-oneworldgovernment-rothschilds-federalreserve-warmongeringtotalitarian New World Order yet to arise under the real antichrist when he appears.

\n

In fact, it was seeing this article today published by The Coin Telegraph 

\n


\n4 Reasons Why Your Nation Will Kill Cash For A Digital Currency

\n

that inspired me to drop everything and write this particular article. 

\n

The Coin Telegraph wonderfully details how national interests (Satanic, New World Order interests, for our purposes here) probably will in fact adopt a digital currency of their own in the coming years. I can totally see THEIR VERSION of a global digital currency exchange being the near-final step in implementing the true Mark of the Beast, when (but not until) The Antichrist is revealed.

\n

But Steem/Steemit just isn't it. Today's free market digital currencies - if anything - are the \"gum in the works - fly in the ointment - monkey wrench in the machine\" to the eventual true Mark of the Beast, now that I think about it. Today's digital currencies actually serve to free us from the system that is now in place, by providing de-centralized mediums of currency (barter, exchange, etc) that serve as powerful alternatives to current banking structures, and chains.

\n

Governmental agencies (NWO ones or not) are actually in a scramble currently to figure out HOW to regulate, tax, and ultimately control the existing currencies. But neither they - not the devil - are behind them. 

\n

So my position is to say that unless you're either willing to become Amish today and forego ALL of the technologies I've detailed here (and electricity) then you've really nothing to fear from becoming an early adopter of Steem/Steemit. 

\n

The Bible clearly instructs and solemnly warns all to not accept the Mark of the Beast, when it finally comes in the form of a mark on your hand or forehead that cannot buy or sell without receiving. Abstaining from \"the steps\" has proven impractical, unavoidable (again, except to the Amish), and ultimately not directly commanded in scripture.
\n 
\n===============
\nTwo things in closing:
\n#1) Here's one more lengthy scripture-packed article on Biochips & TMOTB I'll recommend if you're unlearned about the whole topic...
\n#2) You may have noticed in this article that I'm an author in Roswell who deals with the topics of Aliens, UFOs, and The Bible. I have to date organized 7 conferences on that topic, and (after a 7 year hiatus) am putting together a new one for Summer 2017... please follow @ancientofdays for updates and tons of videos yet to come from past speakers and theologians who have participated, and will be again this year. 

\n

I bring all of this up in THIS article, only to announce here that:

\n

My non-profit \"Roswell Mission\" will be accepting Steem for conference registrations (follow for details) and that
\nUP-FRONT VIP SEATING goes to those who pay VIA STEEMIT!

\n", + "json_metadata": "{\"tags\":[\"money\",\"religion\",\"steem\",\"beyondbitcoin\",\"christianity\"],\"users\":[\"roswellrockman\",\"ancientofdays\"],\"image\":[\"http://dc95wa4w5yhv.cloudfront.net/image-cache/the-mark-of-the-beast_640_426_80_c1.jpg\",\"https://scontent-lax3-1.xx.fbcdn.net/v/t1.0-0/s526x395/14358900_10154412654816605_8330352735442203600_n.jpg?oh=e2a53091d31ad716798686aec3f7bef0&oe=586CF056\",\"http://www.whatdoesitmean.com/wmb2.jpg\",\"http://www.whatdoesitmean.com/wmb3.jpg\",\"http://www.whatdoesitmean.com/wmb4.jpg\",\"http://www.alienstranger.com/seekye1//CSAcover.jpg\",\"https://cointelegraph.com/images/725_Ly9jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy8zYjkxMjBiMjg3YTRmZDJjZjE5MTcyZDk0ZDBhOGQzOC5qcGc=.jpg\"],\"links\":[\"http://lifehopeandtruth.com/prophecy/revelation/mark-of-the-beast/\",\"http://www.AlienStranger.com\",\"http://www.ancientsofdays.net\",\"https://www.biblegateway.com/passage/?search=Revelation+13&version=KJV\",\"https://cointelegraph.com/news/4-reasons-why-your-nation-will-kill-cash-for-a-digital-currency\",\"http://www.evangelicaloutreach.org/markbeast.htm\",\"http://www.whatdoesitmean.com/index1392.htm\",\"https://en.wikipedia.org/wiki/Radio-frequency_identification\",\"http://amzn.to/1Ueug63\",\"http://www.av1611.org/666/biochip.html\",\"https://steemit.com/steemitabuse/@ancientofdays/credibility-matters-on-steemit-therefore-i-wish-to-offer-some-proof-photos-of-my-non-profit-status-and-intent-here\"]}", + "last_update": "2016-09-15T19:41:12", + "created": "2016-09-15T18:57:12", + "active": "2016-09-15T19:43:27", + "last_payout": "1970-01-01T00:00:00", + "depth": 0, + "children": 2, + "net_rshares": "25365523997", + "abs_rshares": "25365523997", + "vote_rshares": "25365523997", + "children_abs_rshares": "25365523997", + "cashout_time": "2016-09-16T19:18:59", + "max_cashout_time": "2016-09-29T18:57:12", + "total_vote_weight": "116240705764176930", + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 6, + "root_author": "ancientofdays", + "root_permlink": "are-steem-bitcoin-etc-obvious-pre-cursors-to-the-mark-of-the-beast", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json new file mode 100644 index 00000000..b89309b4 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 736241, + "author": "shortcut", + "permlink": "palma-panorama-on-acid", + "category": "photography", + "parent_author": "", + "parent_permlink": "photography", + "title": "Palma Panorama on Acid", + "body": "\n

This is how the harbour of Palma de Mallorca looks like if you drop some Acid.

\n\n\"Palma_rama241fb8.jpg\"\n

(just kidding)

\n

Actually I played around with some presets in Adobe Lightroom.

\n

The one I used here is called Alien Hangover and can be downloaded here for free as part of a set called focus-beauty-builder.

\n

Below is the original image shot with the panorama function of my iPhone 6s. As you can see it's been a cloudy day.

\n\"Palma_original99287.jpg\"\n

\n

What kind of image processing software do you use?

\n

What are your thoughts about presets?

\n
\n

If you want to see more experiments with panorama-images, then you might want to check out this post by @shaka

\n
and \"\" me!
\n\n", + "json_metadata": "{\"tags\":[\"photography\",\"travelling\",\"lightroom\",\"inspiration\",\"art\"],\"users\":[\"shaka\"],\"image\":[\"https://www.steemimg.com/images/2016/08/24/Palma_rama241fb8.jpg\",\"https://www.steemimg.com/images/2016/08/24/Palma_original99287.jpg\",\"http://i.imgur.com/YSt1Mis.gif\"],\"links\":[\"http://profiphotos.com/blog/en/2008/11/new-lightroom-2-presets-focus-beauty-builder/\",\"https://steemit.com/photography/@shaka/a-different-way-to-stitch-a-panorama-view-original-photos\",\"https://steemit.com/@shortcut\"]}", + "last_update": "2016-08-24T21:29:12", + "created": "2016-08-24T21:29:12", + "active": "2016-08-29T07:58:48", + "last_payout": "2016-08-25T21:49:00", + "depth": 0, + "children": 4, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 50025990, + "cashout_time": "2016-09-24T21:49:00", + "max_cashout_time": "2016-09-12T08:16:12", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "124", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "15", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 90, + "net_votes": 8, + "root_author": "shortcut", + "root_permlink": "palma-panorama-on-acid", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 736231, + "author": "poeticsnake", + "permlink": "ella-s-hidden-pain-original-story-part-1", + "category": "story", + "parent_author": "", + "parent_permlink": "story", + "title": "Ella's hidden pain! ( Original story )) Part 1", + "body": "\n

  Ella's hidden pain!  

\n


\n

The morning sun is shining brightly, kissing my warmed skin, radiating through the glass of the window in my living room. It’s the spot I stand at every morning, anxious to greet the new day and the little girl that walks by every morning at the same time. I always smile and wave at her, holding my hot coffee in my free hand. It’s the perfect start of my day, even in the winter, when the sun is not that strong, but this young girl is, in a very special way, the real sunshine that brightens each beginning of my day. I look forward to and yearn for this brief moment we share, as it warms me in the deepest, most spiritual way I've ever felt.   

\n


\n

Perhaps it's because this little girl reminds me of myself, when I was young and still so very innocent. I reminisce of my childhood as she approaches me, wistful in the memories that flood my senses. As she passes my house, she looks intently at me, flashing me the most warming, innocent smile that only a child can give, and ever so so slowly, she lifts her little hand to give me a friendly wave, knowing I will be here and It warms my demonic heart. At least, it warms it until the moment she passes and starts to look at the ground again. I have followed her a few times. She keeps her eyes on the ground until she gets to where she needs to be, whether it's school, the mall or even her own house. I do not wish to stalk, nor am I a freak. This little girl has just captured my interest and there is a deep mystery I feel, deep within her that gives us this strange connection, a deep sense that I NEED to do this, help her in some way? I don't know. 

\n


\n

All I do know is that it tears at me from within and is a mystery that I need to unravel. This girl has something that has stirred a long lost emotion, deep inside my ice-cold heart. Maybe its because I am spending to much time here, living within the human realm. I do not belong here, living among them in this land, nor do I even care about humans, in general, at all. But this girl... mesmerizes me with the strangest feelings. I just feel an overwhelming need to know her.   

\n


\n

Slowly I lift my hand and take a sip from my black coffee and from the corners of my eyes, I can see her coming my way. I am already feeling my lips curl into a soft smile. I get ready to see her smile back at me, as she always does, but she walks faster then normal now, keeping her eyes on to the ground. She did not smile at me, nor did she lifted her head. It made me feel cold, as if something was wrong, with this little angelic human child. Quickly I place my coffee on the side table and make my way outside, I know her scent, and its easy for me to pick up her trace. Her scent is like a fresh basket of pink flowers, but this time there is a little trace of warm blood mixed in her scent. It alerts my highly tuned senses and makes me walk even faster. Within a minute I see her at the corner and I speed up a little more. 

\n


\n

At this moment I wish that I knew the child's name, so that I could call her. Her little red jacked makes me feel like I am a bull chasing her down, but in a good way. The girls face is hidden in the big hoodie that is on her jacket, and she is still looking down at the ground, while she takes step after step with her little feet. Softly, I tap her on her left shoulder, I can feel her jump at the surprising sensation of my touch. The child stops walking and slowly turns towards me. I can see fear in her troubled, glassy, big brown eyes as they stare at me, deeply and intently, into my sparkling green eyes that plead to her 'I'm here to help. Trust me!'    

\n


\n

My heart tells me to kneel down so that I do not look so big, hoping it might take some of her fear away. I force myself to smile as sweet as I can, because the last thing I want is to scare this child I've been longing to get closer to, away from me.  

\n


\n

 \"I am sorry that I scared you.\" I speak to her in my soft, angelic voice, a ploy I use sometimes, to seem more friendly than I really am. I lift my hand for her to take, but she doesn't move, instead, her hands remain unflinching, nestled deep within her large, comfortable pockets. With my keen, inhuman ears, I can hear her little heart beating rhythmically in her chest. The scent of her fresh, untainted blood soon follows, so intoxicating, so inviting, tickling my nostrils, making me crave just a tiny powerful drop to savor, yet there is no sign of blood on this child at all. The feeling came over me so suddenly and oddly, I begin to wonder if she might have a few wounds hidden under her pretty clothing. Weirdly enough, too, is the fact that the scent of this little humans blood is not making me hungry, for the first time in my long demonic life, but instead, the scent of her blood gives me a deep, uncaring feeling of dread that genuinely worries me. I need to find out more, and fast!  

\n


\n

 \"May I ask your name?\" I ask her softly, while I placing both of my hands onto my knee's, not forcing them on her any longer, possibly scaring her away. \"You always smile so beautiful at me in the morning, but today I missed that.\" I continue some small talk, hoping she responds but when the little girl bites on the inside of her cheeks, her big brown eyes looking more than sad, there is no light in them at all and it even breaks my callous heart to see it.   

\n


\n

 

\n


\n

Disclaimer: I am the writer of this story, I have published it under my author name Bibi Rillmann.

\n

If you want to read the whole story you can also buy the book on Amazon with this link: https://www.amazon.com/dp/B011ANCU58

\n", + "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"writing\"],\"image\":[\"https://s6.postimg.org/ma66gmakx/418_Gx_Rsw5_SL.jpg\"],\"links\":[\"https://www.amazon.com/dp/B011ANCU58\"]}", + "last_update": "2016-08-24T21:28:21", + "created": "2016-08-24T21:28:21", + "active": "2016-08-24T21:28:21", + "last_payout": "2016-08-26T14:48:54", + "depth": 0, + "children": 0, + "net_rshares": "14608061929", + "abs_rshares": "14608061929", + "vote_rshares": "14608061929", + "children_abs_rshares": "14608061929", + "cashout_time": "2016-09-25T14:48:54", + "max_cashout_time": "2016-09-13T23:31:03", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 9, + "root_author": "poeticsnake", + "root_permlink": "ella-s-hidden-pain-original-story-part-1", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 736204, + "author": "dmilash", + "permlink": "original-photo-from-turkey-pirate-cave-and-lovers-cave", + "category": "photography", + "parent_author": "", + "parent_permlink": "photography", + "title": "Original photo from Turkey: Pirate cave and Lovers Cave etc.", + "body": "\n

Pirate Cave

\n

There are a lot of  stories and legends. Locals believe that before this place was chosen by pirates. They hid treasure in the cave, then transported through a tunnel to the city.

\n

\n

Lovers Cave

\n

Many legends about the Lovers Cave. According one of them - lovers together must to jump off a high ledge, then nothing is no able to separate them. Now jumps banned.

\n

\n

\n

Old fortress town

\n

\n

\n

Now it is Russian territory )))

\n

\n

\n", + "json_metadata": "{\"tags\":[\"photography\"],\"image\":[\"http://i.share.pho.to/5bd63a86_o.jpeg\",\"http://i.share.pho.to/badc9c25_o.jpeg\",\"http://i.share.pho.to/66d78edf_o.jpeg\",\"http://i.share.pho.to/bc535078_o.jpeg\",\"http://i.share.pho.to/1bd80fa4_o.jpeg\",\"http://i.share.pho.to/43b23d20_o.jpeg\",\"http://i.share.pho.to/a951f3d0_o.jpeg\"]}", + "last_update": "2016-08-24T21:27:09", + "created": "2016-08-24T21:26:15", + "active": "2016-08-24T22:03:45", + "last_payout": "2016-08-25T22:04:12", + "depth": 0, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-24T22:04:12", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 4114, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 13, + "root_author": "dmilash", + "root_permlink": "original-photo-from-turkey-pirate-cave-and-lovers-cave", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 736208, + "author": "moonman", + "permlink": "costa-rica-celebrates-113-days-of-100-percent-free-energy", + "category": "energy", + "parent_author": "", + "parent_permlink": "energy", + "title": "Costa Rica celebrates 113 days of 100 percent renewable energy", + "body": "http://i.imgsafe.org/e103059e0b.jpeg\nCosta Rica is much more than a lush, green tourist paradise; it’s also a green energy pioneer. The small Central American nation has generated 100 percent of its electricity from renewable sources for the past 113 days, and the run isn’t over yet. The country, which draws clean energy from a variety of renewable sources, still has its sights on a full year without fossil fuels. With a 113-day stretch of 100-percent renewable energy under its belt and several months left in the year, Costa Rica is edging closer to its target. Costa Rica could be on track to match the record set with its renewable energy production last year, which accounted for 99 percent of the country’s electricity. That included 285 days powered completely by renewable sources, according to the Costa Rican Electricity Institute. Costa Rica is able to take advantage of a multitude of renewable energy sources because of its unique climate and terrain. Most of the nation’s renewable energy comes from hydropower, due to its large river system and heavy tropical rainfalls. Solar, wind, biomass, and geothermal energy also play key roles.\n\nThe tropical nation aims to be free from fossil fuels in just five years. With hefty investments in geothermal energy projects and a forecast for more heavy rains in the coming years, that goal could be accomplished even sooner than originally planned.", + "json_metadata": "{\"tags\":[\"energy\",\"news\",\"truth\",\"costarica\",\"america\"],\"image\":[\"http://i.imgsafe.org/e103059e0b.jpeg\"]}", + "last_update": "2016-08-24T21:27:09", + "created": "2016-08-24T21:26:21", + "active": "2016-08-25T00:31:27", + "last_payout": "2016-08-26T00:27:45", + "depth": 0, + "children": 3, + "net_rshares": -2456106752359, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-25T00:27:45", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "moonman", + "root_permlink": "costa-rica-celebrates-113-days-of-100-percent-free-energy", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 736068, + "author": "lilli", + "permlink": "london-based-artist-bringing-culture-to-steemit", + "category": "introduceyourself", + "parent_author": "", + "parent_permlink": "introduceyourself", + "title": "London-based artist bringing culture to Steemit", + "body": "\n

Hi there fellow Steemers, my name is Lilli and here’s a little bit about myself and why I’m here.

\n

I am a London based artist and theatre designer-to-be. My aim is to bring a whole lot of culture and a little bit of me to Steemit. 

\n

\n

  Introduced to Steemit by a friend, I was rather skeptical at first. I generally don’t trust the internet and all that is or isn’t going on inside this impenetrable machine. Nevertheless I have now chosen to do these first steps into unknown land and overcome my e-phobia. My reason to do so is simply that this is the future, there’s no way around it and you might as well live it!  In fact I think it is an amazing opportunity for artists, travellers and intellectuals of all sorts to present and exchange their work and thoughts and opinion. It’s a space to openly communicate with people all over the globe, freely express oneself and start discussions with total strangers. Overall it’s a real step forward.

\n

\n

What you can expect from me on Steemit are posts about my work as an artist, studies of theatre design, observations within my city, on travels and of the human mind and really anything that catches my interest.   Some of my hobbies and interests include travelling, exploring my city (London), ...

\n

\n

...cooking (though my boyfriend does most of that), photography, dressing up, mountaineering, rock climbing and other adrenalin enducing sports.

\n

\n

\n

Route of a crazy backpacker journey, I will most definitely write about. With 30 hour train journeys, friends left behind, a flooded festival and much more!
\n
\nIf you're curious for some travel adventures and cultural posts, FOLLOW ME!
\nI promise it'll be worth it ;)

\n", + "json_metadata": "{\"tags\":[\"introduceyourself\",\"art\",\"photography\",\"steemit\",\"travel\"],\"image\":[\"https://i.imgsafe.org/e0fded406a.png\",\"https://i.imgsafe.org/e10eaa131a.png\",\"https://i.imgsafe.org/e103ab1660.png\",\"https://i.imgsafe.org/e1096709b8.png\",\"https://i.imgsafe.org/e100e9033f.png\"]}", + "last_update": "2016-08-24T21:26:48", + "created": "2016-08-24T21:14:27", + "active": "2016-08-25T15:06:48", + "last_payout": "2016-08-25T21:44:33", + "depth": 0, + "children": 4, + "net_rshares": 933355159, + "abs_rshares": 933355159, + "vote_rshares": 933355159, + "children_abs_rshares": 933355159, + "cashout_time": "2016-09-24T21:44:33", + "max_cashout_time": "2016-09-08T22:48:15", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "348", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "90", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 250, + "net_votes": 12, + "root_author": "lilli", + "root_permlink": "london-based-artist-bringing-culture-to-steemit", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 736196, + "author": "sayanthan", + "permlink": "new-allegations-hits-out-hillary-clinton-s-election-campaigns", + "category": "politics", + "parent_author": "", + "parent_permlink": "politics", + "title": "New Allegations Hits-out Hillary Clinton's Election Campaigns", + "body": "http://dimg.zoftcdn.com/s1/photos/news/thumbs/world/country/usa/h/hilery_clindon001/img/625.117.560.350.160.300.053.800.210.160.90.jpg\nDonors to the Clinton Foundation had special access to Hillary Clinton,when she was Secretary of State, fresh documents brought to light by two conservative groups on Monday showed, in a setback to the Democratic candidate's presidential campaign.\n\nThe Republican candidate Donald Trump has sought an investigation by a special prosecutor into the links between the foundation and the State Department under Ms. Hillary Clinton.\n\nThe Former President Bill Clinton said in a statement on Monday the foundation would stop accepting foreign donations, if his wife were to become the President. The foundation had made the same announcement last week. Ms. Hillary Clinton had pledged to dissociate from the functioning of the foundation, when she took over as the Secretary of State.\n\nBut, however, the staff of the foundation sought special treatment for donors from the State Department, according to the documents.\n\nAmong the new revelations is how the foundation staff intervened on be half of the Crown Prince of Bahrain, a donor.\n\nThe Crown Prince could not get a meeting with Ms. Hillary Clinton through State Department Channels, but did get one after Foundation Executive Douglas Band wrote to Huma Abedin, aclose aide of hers. “Good friend of ours,” Mr. Band wrote to Ms. Abedin,requesting a meeting for the Crown Prince.\n\nDonald Trump said, “No issue better illustrates how corrupt my opponent is than her pay for play scandals as the Secretary of State,” Mr. Trump said,demanding an investigation.\n\nIn a separate development, a federal judge on Monday asked the State Department to expedite the process of reviewing and releasing a set of nearly 15,000 emails that were not handed over to the Department as‘work-related’ earlier. The FBI had uncovered these emails during its investigation of a private server Ms. Hillary Clinton had maintained.\n\nThe Clinton Foundation accepts money from foreign donors, including foreign governments, which Mr. Donald Trump alleges is a threat to the U.S.National Security.\n\nNews source Tamil focus.com", + "json_metadata": "{\"tags\":[\"politics\",\"news\"],\"image\":[\"http://dimg.zoftcdn.com/s1/photos/news/thumbs/world/country/usa/h/hilery_clindon001/img/625.117.560.350.160.300.053.800.210.160.90.jpg\"]}", + "last_update": "2016-08-24T21:25:27", + "created": "2016-08-24T21:25:27", + "active": "2016-08-24T21:25:27", + "last_payout": "2016-08-25T21:25:27", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-24T21:25:27", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "sayanthan", + "root_permlink": "new-allegations-hits-out-hillary-clinton-s-election-campaigns", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 736189, + "author": "maceytomlin", + "permlink": "macey-tomlin-advocating-for-psychedelic-therapy", + "category": "introduceyourself", + "parent_author": "", + "parent_permlink": "introduceyourself", + "title": "Macey Tomlin: Advocating for Psychedelic Therapy", + "body": "

https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/14055152_10154376523262180_7573779098355793143_n.jpg?oh=d2a68c63bfb4e5d16714403c49fb2fcf&oe=58417095

\n\nHello Steemit community! My name is Macey, and I have recently joined Steemit so I can become more involved with the Anarchist Community. I have written a couple articles, but in all the excitement, I forgot to give a proper introduction.\n\n

https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/12376121_10153719290912180_997199044763883123_n.jpg?oh=4e3622e8aee631343faa6de4a21daaf4&oe=5855FB15

\n

About Me

\n\nWhen I was just shy of twenty, I realized the truth of the nature of our government after watching the popular documentary, *Zeitgeist.* Shortly after, I started micro-dosing daily with psilocybin mushrooms. This form of therapy lasted three months. I consider this a vital part of my evolution as an anarchist, and have devoted my life to helping people understand alternative medicine and the positive effects they can have on the body, mind and spirit. I truly believe our minds are eternal libraries, and psychedelics can be the key to accessing that knowledge. \n\nI hope you'll join me here! My writings will be focused on alternative therapy, among other topics.", + "json_metadata": "{\"tags\":[\"introduceyourself\",\"anarchy\",\"psychedelics\",\"alternative\",\"medicine\"],\"image\":[\"https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/14055152_10154376523262180_7573779098355793143_n.jpg?oh=d2a68c63bfb4e5d16714403c49fb2fcf&oe=58417095\",\"https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/12376121_10153719290912180_997199044763883123_n.jpg?oh=4e3622e8aee631343faa6de4a21daaf4&oe=5855FB15\"]}", + "last_update": "2016-08-24T21:24:48", + "created": "2016-08-24T21:24:48", + "active": "2016-08-28T17:57:48", + "last_payout": "2016-08-25T23:01:18", + "depth": 0, + "children": 9, + "net_rshares": "108915090155", + "abs_rshares": "108915090155", + "vote_rshares": "108915090155", + "children_abs_rshares": "134531468918", + "cashout_time": "2016-09-24T23:01:18", + "max_cashout_time": "2016-09-09T03:50:33", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "100", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "27", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 72, + "net_votes": 40, + "root_author": "maceytomlin", + "root_permlink": "macey-tomlin-advocating-for-psychedelic-therapy", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 735968, + "author": "terryrall", + "permlink": "reagan-versus-trump-no-comparison", + "category": "politics", + "parent_author": "", + "parent_permlink": "politics", + "title": "Reagan versus Trump...NO Comparison!", + "body": "http://media.salon.com/2015/09/reagan_trump.jpg\n\nhttp://www.chicagotribune.com/news/opinion/editorials/ct-donald-trump-ronald-reagan-president-edit-0501-20160429-story.html\n\nThere is NO comparison between Ronald Reagan & Donald Trump. Reagan was greatly admired by NOT only Republicans but even Democrats as well. The BIG TENT that the Democrats are now using was inherently borrowed from Ronald Reagan. He was well mannered & a consumate gentleman with a great positive attitude that he carried well. Reagan didn't build walls, he tore them down. He was at the helm during Gorbachev's 'glasnost' & 'peristroyka'. And Ronald Reagan fostered a GOOD relationship with the USSR as it finally fell. Reagan was the 'Great Communicator' & the 'Great Compromiser'. Even if you didn't agree with him, you still took a liking to him as he was very approachable. He compromised with a Democratic Congress & made the wheels of government turn. He was a 'strong leader' that didn't have to fight bloody conflicts & wars to make his point. But MOST of ALL Reagan stressed UNITY of nation & country. He just stayed well mannered at ALL TIMES!\n\nNow let's look at Trump. He's the 'Great Divider', good at setting one group against another. He's at best 'ill mannered' with a Totally NEGATIVE ATTITUDE. To Trump our nation is a 'miserable trash heap on a hill' and our diversity is just a 'punchline' to prey upon. Not ONLY is he insulting & unapproachable, most people want to 'punch' him in the face! Trump couldn't unify anything if he tried. He is a 'strong armed dictator' that wants everything & person to bend to his will. He lives on bad events, & thrives on misery. He wants his followers to GET INTO BLOODY CONFLICTS, and insistently wants to START World War 3! He knows no manners to speak of & he 'gins up' his followers into a 'frenzy' of violent behavior!\n\nAlso to note: Ronald Reagan was Governor of California for years before he took control at the helm of the Presidency! So he KNEW how government works! Donald Trump & his Teabagging Followers don't have the FIRST idea of how government operates. You don't run this country like a corporate interest!\n\nIn conclusion, believe it or not NAFTA was originally Reagan's 'brainchild'. If you have the 'slightest' respect for the Reagan legacy, you WON'T allow Trump into the White House!\n\n\n", + "json_metadata": "{\"tags\":[\"politics\",\"trump\",\"reagan\",\"news\"]}", + "last_update": "2016-08-24T21:24:36", + "created": "2016-08-24T21:05:45", + "active": "2016-08-26T23:56:54", + "last_payout": "2016-08-25T21:08:12", + "depth": 0, + "children": 2, + "net_rshares": -61964463, + "abs_rshares": 61964463, + "vote_rshares": 0, + "children_abs_rshares": 2364572745, + "cashout_time": "2016-09-24T21:08:12", + "max_cashout_time": "2016-09-08T23:22:51", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "terryrall", + "root_permlink": "reagan-versus-trump-no-comparison", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 735834, + "author": "mohamedmashaal", + "permlink": "no-man-s-sky-honest-game-trailers-steemtube", + "category": "steemtube", + "parent_author": "", + "parent_permlink": "steemtube", + "title": "Delete", + "body": "Delete", + "json_metadata": "{\"tags\":[\"delete\",\"steemtube\"]}", + "last_update": "2016-08-24T21:24:24", + "created": "2016-08-24T20:53:54", + "active": "2016-08-24T21:24:24", + "last_payout": "2016-08-25T20:53:54", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-24T20:53:54", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "mohamedmashaal", + "root_permlink": "no-man-s-sky-honest-game-trailers-steemtube", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 736173, + "author": "ghostvangogh", + "permlink": "silhouettes", + "category": "art", + "parent_author": "", + "parent_permlink": "art", + "title": "Silhouettes", + "body": "https://scontent-dft4-2.xx.fbcdn.net/v/t1.0-9/13892044_514122035452799_7084570694564074093_n.jpg?oh=a4e8c52daf63a5fb0a2cf7647b6bdc3d&oe=585A651A", + "json_metadata": "{\"tags\":[\"art\",\"blog\",\"photography\",\"digital\",\"nature\"],\"image\":[\"https://scontent-dft4-2.xx.fbcdn.net/v/t1.0-9/13892044_514122035452799_7084570694564074093_n.jpg?oh=a4e8c52daf63a5fb0a2cf7647b6bdc3d&oe=585A651A\"]}", + "last_update": "2016-08-24T21:23:48", + "created": "2016-08-24T21:23:48", + "active": "2016-08-24T21:23:48", + "last_payout": "2016-08-25T21:23:48", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-24T21:23:48", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "ghostvangogh", + "root_permlink": "silhouettes", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent.pat.json new file mode 100644 index 00000000..4e02c233 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_parent.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 36961, + "author": "trogdor", + "permlink": "re-gtg-hello-world-20160703t175141501z", + "category": "introduceyourself", + "parent_author": "gtg", + "parent_permlink": "hello-world", + "title": "", + "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_update": "2016-07-03T17:51:48", + "created": "2016-07-03T17:51:48", + "active": "2016-07-03T17:51:48", + "last_payout": "2016-08-13T21:04:45", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "gtg", + "root_permlink": "hello-world", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 37187, + "author": "amartinezque", + "permlink": "re-gtg-hello-world-20160703t224527020z", + "category": "introduceyourself", + "parent_author": "gtg", + "parent_permlink": "hello-world", + "title": "", + "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_update": "2016-07-03T22:45:27", + "created": "2016-07-03T22:45:27", + "active": "2016-07-03T22:45:27", + "last_payout": "2016-08-13T21:04:45", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "gtg", + "root_permlink": "hello-world", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 38471, + "author": "edu-lopov", + "permlink": "re-gtg-hello-world-20160704t182251522z", + "category": "introduceyourself", + "parent_author": "gtg", + "parent_permlink": "hello-world", + "title": "", + "body": "Welcome to Steemit Gandalf!", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_update": "2016-07-04T18:22:51", + "created": "2016-07-04T18:22:51", + "active": "2016-07-04T18:22:51", + "last_payout": "2016-08-13T21:04:45", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "gtg", + "root_permlink": "hello-world", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 694016, + "author": "gary-smith", + "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", + "category": "mining", + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "title": "", + "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_update": "2016-08-21T12:52:06", + "created": "2016-08-21T12:52:06", + "active": "2016-08-21T12:52:06", + "last_payout": "2016-08-22T13:01:45", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 694144, + "author": "gtg", + "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", + "category": "mining", + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "title": "", + "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", + "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https://steemit.chat/channel/mining\"]}", + "last_update": "2016-08-21T13:12:45", + "created": "2016-08-21T13:12:45", + "active": "2016-08-21T13:12:45", + "last_payout": "2016-08-22T13:01:45", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 766912, + "author": "timcliff", + "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", + "category": "mining", + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "title": "", + "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_update": "2016-08-27T14:13:18", + "created": "2016-08-27T14:13:18", + "active": "2016-08-27T18:39:45", + "last_payout": "1970-01-01T00:00:00", + "depth": 1, + "children": 3, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 760057, + "author": "ania", + "permlink": "re-gtg-re-ania-hello-world-20160826t211629005z", + "category": "introduceyourself", + "parent_author": "gtg", + "parent_permlink": "re-ania-hello-world-20160826t185305711z", + "title": "", + "body": "Thank you Gandalf :)", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_update": "2016-08-26T21:16:45", + "created": "2016-08-26T21:16:45", + "active": "2016-08-26T21:16:45", + "last_payout": "2016-08-27T21:18:18", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "ania", + "root_permlink": "hello-world", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 957845, + "author": "arcange", + "permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", + "category": "stats", + "parent_author": "gtg", + "parent_permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", + "title": "", + "body": "Lol. You're welcome!\nBut I suspect you're working hard to hit the top 20 chart with your two comments :p", + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_update": "2016-09-15T13:24:15", + "created": "2016-09-15T13:24:15", + "active": "2016-09-15T14:11:09", + "last_payout": "1970-01-01T00:00:00", + "depth": 4, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 957709, + "author": "arcange", + "permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", + "category": "stats", + "parent_author": "gtg", + "parent_permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", + "title": "", + "body": "That's the purpose of using FREETEXT() instead of CONTAINS()", + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_update": "2016-09-15T13:06:18", + "created": "2016-09-15T13:06:18", + "active": "2016-09-15T14:11:09", + "last_payout": "1970-01-01T00:00:00", + "depth": 2, + "children": 3, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 758094, + "author": "bumblebrii", + "permlink": "re-gtg-re-bumblebrii-about-me-20160826t182001959z", + "category": "introduceyourself", + "parent_author": "gtg", + "parent_permlink": "re-bumblebrii-about-me-20160826t094306616z", + "title": "", + "body": "Oh yes of course. I subscribe to a lot of different artists for my coloring pages. One had sent me the link to her blog and kind of just ended up sticking around and read a few blogs. Next thing i know, I signed up haha.", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_update": "2016-08-26T18:20:12", + "created": "2016-08-26T18:20:12", + "active": "2016-08-26T18:20:12", + "last_payout": "2016-08-27T08:05:57", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "bumblebrii", + "root_permlink": "about-me", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json new file mode 100644 index 00000000..ee9e5a3e --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 784695, + "author": "vlad", + "permlink": "re-allasyummyfood-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t011002757z", + "category": "foodchallenge", + "parent_author": "allasyummyfood", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t004616466z", + "title": "", + "body": "Congratulations! Good job!\n\nhttp://www.todaystrucking.com/sites/default/files/first-place-ribbon-sm.png\n\nFollow you\n\nhttp://buketik-ufa.ru/image/cache/data/hollidays/z_8145a12e-500x500.jpg", + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"image\":[\"http://www.todaystrucking.com/sites/default/files/first-place-ribbon-sm.png\"]}", + "last_update": "2016-08-29T01:10:36", + "created": "2016-08-29T01:10:36", + "active": "2016-08-29T01:10:36", + "last_payout": "2016-08-29T20:19:39", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 788359, + "author": "givemeyoursteem", + "permlink": "re-allasyummyfood-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t112428312z", + "category": "foodchallenge", + "parent_author": "allasyummyfood", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t004616466z", + "title": "", + "body": "Congratulations to the 1st and 2nd prize @allasyummyfood and @vlad!! Great job :D", + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"allasyummyfood\",\"vlad\"]}", + "last_update": "2016-08-29T11:26:00", + "created": "2016-08-29T11:24:27", + "active": "2016-08-29T11:26:00", + "last_payout": "2016-08-29T20:19:39", + "depth": 2, + "children": 0, + "net_rshares": 2374341643, + "abs_rshares": 2374341643, + "vote_rshares": 2374341643, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 754285, + "author": "glitterfart", + "permlink": "re-allasyummyfood-re-glitterfart-re-allasyummyfood-more-steemit-goodies-arrived-20160826t115033112z", + "category": "steemit", + "parent_author": "allasyummyfood", + "parent_permlink": "re-glitterfart-re-allasyummyfood-more-steemit-goodies-arrived-20160825t183602955z", + "title": "", + "body": "Your \"steamy\" morning coffee will never be the same ;p", + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_update": "2016-08-26T11:50:33", + "created": "2016-08-26T11:50:33", + "active": "2016-08-26T11:50:33", + "last_payout": "2016-08-26T19:18:24", + "depth": 3, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "allasyummyfood", + "root_permlink": "more-steemit-goodies-arrived", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 841045, + "author": "glitterfart", + "permlink": "re-allasyummyfood-re-glitterfart-thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far-20160903t032226965z", + "category": "steem", + "parent_author": "allasyummyfood", + "parent_permlink": "re-glitterfart-thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far-20160902t223416476z", + "title": "", + "body": "It takes me a while to get yours ^^\nThanks for your support ;)", + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_update": "2016-09-03T03:22:18", + "created": "2016-09-03T03:22:18", + "active": "2016-09-03T03:22:18", + "last_payout": "2016-09-03T19:27:33", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "glitterfart", + "root_permlink": "thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 811830, + "author": "gringalicious", + "permlink": "re-allasyummyfood-re-gringalicious-kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf-20160831t112928563z", + "category": "food", + "parent_author": "allasyummyfood", + "parent_permlink": "re-gringalicious-kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf-20160831t110620686z", + "title": "", + "body": "Thank you for commenting Alla. I have been following you since I found steemit. And thank you for the compliment on the photos.", + "json_metadata": "{\"tags\":[\"food\"]}", + "last_update": "2016-08-31T11:29:24", + "created": "2016-08-31T11:29:24", + "active": "2016-08-31T11:29:24", + "last_payout": "2016-09-01T04:32:09", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "gringalicious", + "root_permlink": "kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 812624, + "author": "halo", + "permlink": "re-allasyummyfood-re-halo-steemit-girl-halo-tips-to-be-a-better-dog-owner-20160831t130847282z", + "category": "halo", + "parent_author": "allasyummyfood", + "parent_permlink": "re-halo-steemit-girl-halo-tips-to-be-a-better-dog-owner-20160831t114201287z", + "title": "", + "body": "He is actually 5 now. The pictures were older but the post was to maybe help people wanting a puppy and people with a puppy.\n💋 @halo 💋😇", + "json_metadata": "{\"tags\":[\"halo\"],\"users\":[\"halo\"]}", + "last_update": "2016-08-31T13:08:48", + "created": "2016-08-31T13:08:48", + "active": "2016-08-31T13:08:48", + "last_payout": "2016-09-01T07:02:15", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "halo", + "root_permlink": "steemit-girl-halo-tips-to-be-a-better-dog-owner", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 643293, + "author": "lordvader", + "permlink": "re-allasyummyfood-re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160734219z", + "category": "steemit", + "parent_author": "allasyummyfood", + "parent_permlink": "re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160228694z", + "title": "", + "body": "I will teach him patience!", + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_update": "2016-08-17T16:10:00", + "created": "2016-08-17T16:07:33", + "active": "2016-08-18T04:33:27", + "last_payout": "2016-08-18T17:44:30", + "depth": 2, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "hanshotfirst", + "root_permlink": "how-can-a-minnow-pull-his-tiny-weight", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 643438, + "author": "hanshotfirst", + "permlink": "re-allasyummyfood-re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t161759466z", + "category": "steemit", + "parent_author": "allasyummyfood", + "parent_permlink": "re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160228694z", + "title": "", + "body": "Thank you very much for the encouragement! I'll keep grinding away.", + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_update": "2016-08-17T16:17:57", + "created": "2016-08-17T16:17:57", + "active": "2016-08-17T17:05:39", + "last_payout": "2016-08-18T17:44:30", + "depth": 2, + "children": 3, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "hanshotfirst", + "root_permlink": "how-can-a-minnow-pull-his-tiny-weight", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 717886, + "author": "drac59", + "permlink": "re-allasyummyfood-re-hery-5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook-20160823t123052010z", + "category": "food", + "parent_author": "allasyummyfood", + "parent_permlink": "re-hery-5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook-20160822t205340167z", + "title": "", + "body": "но хочется того чего нельзя. хочется запретное.тогда думаеш что здоров.", + "json_metadata": "{\"tags\":[\"food\"]}", + "last_update": "2016-08-23T12:30:54", + "created": "2016-08-23T12:30:54", + "active": "2016-08-23T12:30:54", + "last_payout": "2016-08-23T19:18:27", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "hery", + "root_permlink": "5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 813501, + "author": "hidd3nmanna", + "permlink": "re-allasyummyfood-re-hidd3nmanna-i-have-no-idea-what-i-m-doing-20160831t144929612z", + "category": "introduceyourself", + "parent_author": "allasyummyfood", + "parent_permlink": "re-hidd3nmanna-i-have-no-idea-what-i-m-doing-20160831t113643967z", + "title": "", + "body": "Thank you! I will check that out!", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_update": "2016-08-31T14:49:33", + "created": "2016-08-31T14:49:33", + "active": "2016-08-31T14:49:33", + "last_payout": "2016-09-01T07:12:12", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "hidd3nmanna", + "root_permlink": "i-have-no-idea-what-i-m-doing", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json new file mode 100644 index 00000000..358987f7 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 6, + "author": "abit", + "permlink": "witness-category", + "category": "", + "parent_author": "", + "parent_permlink": "", + "title": "Witnesses", + "body": "This is the witnesses category", + "json_metadata": "{}", + "last_update": "2016-04-08T07:36:18", + "created": "2016-04-08T07:36:18", + "active": "2016-04-08T08:58:24", + "last_payout": "2016-08-12T10:16:39", + "depth": 0, + "children": 2, + "net_rshares": -491818553, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "160", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "160", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 729, + "net_votes": -2, + "root_author": "abit", + "root_permlink": "witness-category", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 7, + "author": "abit", + "permlink": "miner-category", + "category": "", + "parent_author": "", + "parent_permlink": "", + "title": "Miners", + "body": "This is the miners category", + "json_metadata": "{}", + "last_update": "2016-04-08T07:55:15", + "created": "2016-04-08T07:55:15", + "active": "2016-04-08T07:55:15", + "last_payout": "2016-08-12T10:16:42", + "depth": 0, + "children": 0, + "net_rshares": -481781440, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "138", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "139", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 632, + "net_votes": -3, + "root_author": "abit", + "root_permlink": "miner-category", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 9, + "author": "abit", + "permlink": "spam", + "category": "", + "parent_author": "", + "parent_permlink": "", + "title": "Spams", + "body": "Spams come here", + "json_metadata": "{}", + "last_update": "2016-04-08T08:49:15", + "created": "2016-04-08T08:49:15", + "active": "2016-04-08T08:49:15", + "last_payout": "2016-08-13T18:32:54", + "depth": 0, + "children": 0, + "net_rshares": -477016308, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "165", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "166", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 755, + "net_votes": -2, + "root_author": "abit", + "root_permlink": "spam", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 20, + "author": "hello", + "permlink": "hello", + "category": "", + "parent_author": "", + "parent_permlink": "", + "title": "Hello World!", + "body": "As of 2016, you have to learn 7097 languages to say hello to 6,506,259,160 people.", + "json_metadata": "{}", + "last_update": "2016-04-08T15:39:00", + "created": "2016-04-08T15:39:00", + "active": "2016-04-08T15:39:00", + "last_payout": "2016-08-03T00:00:06", + "depth": 0, + "children": 0, + "net_rshares": -37896234000000, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 11, + "root_author": "hello", + "root_permlink": "hello", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 30, + "author": "hello", + "permlink": "world", + "category": "", + "parent_author": "", + "parent_permlink": "", + "title": "Hello World!", + "body": "Greetings to all human beings!\n -- The Internet", + "json_metadata": "{}", + "last_update": "2016-04-10T18:05:15", + "created": "2016-04-10T18:05:15", + "active": "2016-04-10T18:05:15", + "last_payout": "2016-08-03T00:00:06", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "428", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "427", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 1950, + "net_votes": 5, + "root_author": "hello", + "root_permlink": "world", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 31, + "author": "xeroc", + "permlink": "python-steem-0-1", + "category": "", + "parent_author": "", + "parent_permlink": "", + "title": "Python Steem Libraries 0.1", + "body": "Python Steem Libraries Version 1.0 released!\n\nThis library allows you to interface with the wallet and/or a steem node\nfor polling data via RPC calls.\n\n## Download\n\nYou can download directly from github:\n```\ngit clone https://github.com/xeroc/python-steem/\ncd python-steem\npython3 setup.py install --user\n```\n\nOr use `pip`\n```\npip3 install steem --user\n```\n\n## Setup\n\nEven though you can connect to a remote full node, you can start a local\nnode via:\n\n```\ncd \n./programs/steemd/steemd --rpc-endpoint=\"127.0.0.1:8090\"\n```\n\nThen you can connect a `cli_wallet` to your full node and open a new\nport at `8092`:\n```\n./programs/cli_wallet/cli_wallet --server-rpc-endpoint=ws://localhost:8090 \\\n --rpc-http-endpoint=127.0.0.1:8092 \\\n --rpc-http-allowip=127.0.0.1\n```\nWe will use both open ports in the example.\n\n## Usage Examples\n\n```python\nfrom steemapi.steemclient import SteemClient\nfrom pprint import pprint\n\nclass Config():\n # Port and host of the RPC-HTTP-Endpoint of the wallet\n wallet_host = \"localhost\"\n wallet_port = 8092\n # Websocket URL to the full node\n witness_url = \"ws://localhost:8090\"\n\nclient = SteemClient(Config)\n\n# Calls to the Wallet\n\npprint(client.wallet.vote(\"\", \"hello\", \"world\", 100, True))\n\n# Calls to the Node\npprint(client.node.get_trending_categories(\"\", 20))\npprint(client.node.get_content(\"hello\", \"world\"))\n```\n\nMore examples can be found in the `examples/` directory.\n", + "json_metadata": "{}", + "last_update": "2016-04-12T07:40:06", + "created": "2016-04-10T18:24:51", + "active": "2016-04-27T08:00:21", + "last_payout": "2016-08-21T21:26:42", + "depth": 0, + "children": 3, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "63510", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "63453", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 288455, + "net_votes": 30, + "root_author": "xeroc", + "root_permlink": "python-steem-0-1", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 93, + "author": "red", + "permlink": "spam", + "category": "", + "parent_author": "", + "parent_permlink": "", + "title": "title2", + "body": "removed", + "json_metadata": "{}", + "last_update": "2016-04-13T00:06:57", + "created": "2016-04-12T18:42:54", + "active": "2016-04-13T08:12:39", + "last_payout": "2016-08-26T03:00:03", + "depth": 0, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "red", + "root_permlink": "spam", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 103, + "author": "abit", + "permlink": "anti-spam", + "category": "", + "parent_author": "", + "parent_permlink": "", + "title": "Anti-spam", + "body": "Forum spam is a problem common to all popular forum software. Forum spam is caused by automated software (referred to as “spambots”) that visits forums with the sole purpose of registering many user accounts and/or posting massive amounts of messages. These messages often contain links to commercial websites, phishing websites or even malware.\n\nForum spambots surf the web looking for guestbooks, wikis, blogs, forums and any other web forms to submit spam links to. These spambots often use OCR technology to bypass CAPTCHAs present. Some spam messages are targeted towards readers and can involve techniques of target marketing or even phishing. These automated schemes can make it more difficult for users to tell real posts from the bot generated ones. Some spam messages also simply contain tags and hyperlinks intended to boost search engine ranking rather than target human readers.\n\nSpam posts may contain anything from a single link to dozens of links. Text content is minimal, usually innocuous and unrelated to the forum's topic. Sometimes the posts may be made in old threads that are revived by the spammer solely for the purpose of spamming links. Posts include some text to prevent the post being caught by automated spam filters that prevent posts which consist solely of external links from being submitted.\n\nAlternatively, the spam links are posted in the user's signature, in which case the spambot will never post. The link sits quietly in the signature field, where it is more likely to be harvested by search engine spiders than discovered by forum administrators and moderators.\n\nSpam prevention and deletions measurably increase the workload of forum administrators and moderators. The amount of time and resources spent keeping a forum spam free contributes significantly to labor cost and the skill required in the running of a public forum. Marginally profitable or smaller forums may be permanently closed by administrators.\n\nHow will STEEM fight spam?\n\nReferences:\n* https://en.wikipedia.org/wiki/Forum_spam\n * http://fluxbb.org/docs/v1.4/antispam", + "json_metadata": "{}", + "last_update": "2016-04-13T08:45:09", + "created": "2016-04-13T08:45:09", + "active": "2016-04-13T16:05:57", + "last_payout": "2016-08-12T10:16:57", + "depth": 0, + "children": 1, + "net_rshares": -433402453408, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "abit", + "root_permlink": "anti-spam", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 110, + "author": "xeroc", + "permlink": "how-to-monitor-an-account-on-steem", + "category": "", + "parent_author": "", + "parent_permlink": "", + "title": "Monitoring Account Deposits in Steem Using Python", + "body": "In [an other article](/steem/@xeroc/steem-api) we have discussed the underlying structure of the STEEM API and can now look into monitoring account deposits.\n\n## Running a Node\n\nFirst, we need to run a full node in a trusted environment:\n\n ./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n\nWe open up the RPC endpoint so that we can interface with the node using RPC-JSON calls.\n\n## Blockchain Parameters and Last Block\n\nThe RPC call `get_config` will return the configuration of the blockchain which contains the block interval in seconds. By calling `get_dynamic_global_properties`, we obtain the current head block number as well as the last irreversible block number. The difference between both is that the last block is last block that has been produced by the network and has thus been confirmed by the block producer. The last irreversible block is that block that has been confirmed by sufficient many block producers so that it can no longer be modified without a hard fork. Every block older than the last reversible block is equivalent to a checkpoint in Bitcoin. Typically they are about 30 to 50 blocks behind the head block.\n\nA particular block can be obtained via the `get_block ` call and takes the form shown above.\n\n## Processing Block Data\n\nSince the content of a block is unencrypted, all it takes to monitor an account is processing of the content of each block.\n\n## Example\n\nThe following will show example implementations for monitoring a specific account.\n\n```python\n# This library can be obtain from https://github.com/xeroc/python-steem\n\nfrom steemrpc import SteemRPC\nfrom pprint import pprint\nimport time\n\n\"\"\"\n Connection Parameters to steemd daemon.\n\n Start the steemd daemon with the rpc-endpoint parameter:\n\n ./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n\n This opens up a RPC port (e.g. at 8092). Currently, authentication\n is not yet available, thus, we recommend to restrict access to\n localhost. Later we will allow authentication via username and\n passpword (both empty now).\n\n\"\"\"\nrpc = SteemRPC(\"localhost\", 8092, \"\", \"\")\n\n\"\"\"\n Last Block that you have process in your backend.\n Processing will continue at `last_block + 1`\n\"\"\"\nlast_block = 160900\n\n\"\"\"\n Deposit account name to monitor\n\"\"\"\nwatch_account = \"world\"\n\n\ndef process_block(block, blockid):\n \"\"\"\n This call processes a block which can carry many transactions\n\n :param Object block: block data\n :param number blockid: block number\n \"\"\"\n if \"transactions\" in block:\n for tx in block[\"transactions\"]:\n #: Parse operations\n for opObj in tx[\"operations\"]:\n #: Each operation is an array of the form\n #: [type, {data}]\n opType = opObj[0]\n op = opObj[1]\n\n # we here want to only parse transfers\n if opType == \"transfer\":\n process_transfer(op, block, blockid)\n\n\ndef process_transfer(op, block, blockid):\n \"\"\"\n We here process the actual transfer operation.\n \"\"\"\n if op[\"to\"] == watch_account:\n print(\n \"%d | %s | %s -> %s: %s -- %s\" % (\n blockid,\n block[\"timestamp\"],\n op[\"from\"],\n op[\"to\"],\n op[\"amount\"],\n op[\"memo\"]\n )\n )\n\n\nif __name__ == '__main__':\n # Let's find out how often blocks are generated!\n config = rpc.get_config()\n block_interval = config[\"STEEMIT_BLOCK_INTERVAL\"]\n\n # We are going to loop indefinitely\n while True:\n\n # Get chain properies to identify the \n # head/last reversible block\n props = rpc.get_dynamic_global_properties()\n\n # Get block number\n # We here have the choice between\n # * head_block_number: the last block\n # * last_irreversible_block_num: the block that is confirmed by\n # 2/3 of all block producers and is thus irreversible!\n # We recommend to use the latter!\n # block_number = props['head_block_number']\n block_number = props['last_irreversible_block_num']\n\n # We loop through all blocks we may have missed since the last\n # block defined above\n while (block_number - last_block) > 0:\n last_block += 1\n\n # Get full block\n block = rpc.get_block(last_block)\n\n # Process block\n process_block(block, last_block)\n\n # Sleep for one block\n time.sleep(block_interval)\n```", + "json_metadata": "{}", + "last_update": "2016-05-15T16:06:06", + "created": "2016-04-13T16:22:45", + "active": "2016-05-15T16:06:06", + "last_payout": "2016-08-03T00:00:06", + "depth": 0, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "18340", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "18338", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 83368, + "net_votes": 16, + "root_author": "xeroc", + "root_permlink": "how-to-monitor-an-account-on-steem", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 111, + "author": "xeroc", + "permlink": "steem-api", + "category": "", + "parent_author": "", + "parent_permlink": "", + "title": "Steem API", + "body": "This article desribes the API of the STEEM full node (**not** of the wallet API).\n\n## Prerequisits\n\nThis article assumes that you have a full node running and listening to port ``8092``, locally. You can achieve this by\n\n```\n./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n```\n\nWe open up the RPC endpoint so that we can interface with the node using RPC-JSON calls.\n\n## Call Format\n\nIn Graphene, RPC calls are state-less and accessible via regular JSON formated RPC-HTTP-calls. The correct structure of the JSON call is\n\n```json\n{\n \"jsonrpc\": \"2.0\",\n \"id\": 1\n \"method\": \"get_account\",\n \"params\": [[\"xeroc\", \"steemit\"]],\n}\n```\n\nThe `get_accounts` call is available in the full node's API and takes only one argument which is an array of account ids (here: `[\"xeroc\", \"steemit\"]`).\n\n### Example Call with `curl`\n\nSuch as call can be submitted via ``curl``:\n\n```sh\ncurl --data '{\"jsonrpc\": \"2.0\", \"method\": \"get_accounts\", \"params\": [[\"xeroc\",\"steemit\"]], \"id\": 1}' http://127.0.0.1:8090/rpc\n```\n\n## Successful Calls\n\n\nThe API will return a properly JSON formated response carrying the same ``id``\nas the request to distinguish subsequent calls.\n\n```json\n{ \"id\":1, \"result\": \"data\" }\n```\n\n## Errors\n\nIn case of an error, the resulting answer will carry an ``error`` attribute and\na detailed description:\n\n```json\n{\n \"id\": 0\n \"error\": {\n \"data\": {\n \"code\": error-code,\n \"name\": \" .. name of exception ..\"\n \"message\": \" .. message of exception ..\",\n \"stack\": [ .. stack trace .. ],\n },\n \"code\": 1,\n },\n}\n```\n\n## Available Calls\n\nEven though, the `help` call does not exist, it gives us an error message that contains all available API calls in the stack trace:\n\n```\ncurl --data '{\"jsonrpc\": \"2.0\", \"method\": \"help\", \"params\": [], \"id\": 1}' http://127.0.0.1:8090/rpc\n```\n```json\n{\n \"id\": 1,\n \"error\": {\n \"message\": <...>,\n \"data\": {\n \"message\": \"Assert Exception\",\n \"name\": \"assert_exception\",\n \"stack\": [\n {\n \"data\": {\n \"name\": \"help\",\n \"api\": {\n \"set_subscribe_callback\": 0,\n \"get_dynamic_global_properties\": 12,\n \"get_accounts\": 17,\n \"get_active_categories\": 9,\n \"get_account_references\": 18,\n \"get_trending_categories\": 7,\n \"get_content\": 36,\n \"get_state\": 6,\n \"get_discussions_by_total_pending_payout\": 38,\n \"cancel_all_subscriptions\": 3,\n \"get_block_header\": 4,\n \"get_active_votes\": 35,\n \"get_current_median_history_price\": 15,\n \"lookup_witness_accounts\": 26,\n \"verify_account_authority\": 34,\n \"get_key_references\": 16,\n \"set_pending_transaction_callback\": 1,\n \"get_required_signatures\": 31,\n \"get_recent_categories\": 10,\n \"get_order_book\": 28,\n \"lookup_accounts\": 20,\n \"get_account_history\": 23,\n \"get_chain_properties\": 13,\n \"get_feed_history\": 14,\n \"verify_authority\": 33,\n \"get_discussions_by_last_update\": 40,\n \"get_conversion_requests\": 22,\n \"get_discussions_in_category_by_last_update\": 41,\n \"get_block\": 5,\n \"get_witness_count\": 27,\n \"get_best_categories\": 8,\n \"get_potential_signatures\": 32,\n \"lookup_account_names\": 19,\n \"get_transaction\": 30,\n \"get_witnesses\": 24,\n \"get_witness_by_account\": 25,\n \"get_account_count\": 21,\n \"get_transaction_hex\": 29,\n \"get_content_replies\": 37,\n \"get_discussions_in_category_by_total_pending_payout\": 39,\n \"get_miner_queue\": 43,\n \"get_active_witnesses\": 42,\n \"set_block_applied_callback\": 2,\n \"get_config\": 11\n }\n },\n \"context\": {\n \"line\": 109,\n \"hostname\": \"\",\n \"timestamp\": \"2016-04-13T16:15:17\",\n \"method\": \"call\",\n \"thread_name\": \"th_a\",\n \"level\": \"error\",\n \"file\": \"api_connection.hpp\"\n },\n \"format\": \"itr != _by_name.end(): no method with name '${name}'\"\n }\n ],\n \"code\": 10\n },\n \"code\": 1\n }\n}\n```\n\nFurther documentation about the calls can be found in the sources in [libraries/app/include/steemit/app/database_api.hpp](https://github.com/steemit/steem/blob/master/libraries/app/include/steemit/app/database_api.hpp).\n", + "json_metadata": "{}", + "last_update": "2016-04-13T16:25:15", + "created": "2016-04-13T16:25:15", + "active": "2016-07-21T17:34:03", + "last_payout": "2016-08-24T05:37:24", + "depth": 0, + "children": 3, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "2165", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "493", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 9197, + "net_votes": 29, + "root_author": "xeroc", + "root_permlink": "steem-api", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.pat.json new file mode 100644 index 00000000..773d6574 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 478086, + "author": "ben99", + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t134926380z", + "category": "recipes", + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "body": "looks yummy :)", + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_update": "2016-08-06T13:49:21", + "created": "2016-08-06T13:49:21", + "active": "2016-08-06T13:53:09", + "last_payout": "2016-09-06T04:51:42", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 478091, + "author": "saharov", + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135018922z", + "category": "recipes", + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "body": "i think is very delicious", + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_update": "2016-08-06T13:50:18", + "created": "2016-08-06T13:50:18", + "active": "2016-08-06T13:51:51", + "last_payout": "2016-09-06T04:51:42", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 478096, + "author": "timsaid", + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135034200z", + "category": "recipes", + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "body": "This post made me hungry Alla. Think I will try the recipe tomorrow and will tell you how it was :)", + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_update": "2016-08-06T13:50:36", + "created": "2016-08-06T13:50:36", + "active": "2016-08-06T13:51:30", + "last_payout": "2016-09-06T04:51:42", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 478099, + "author": "sauravrungta", + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135111374z", + "category": "recipes", + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "body": "Damn....just when I am hungry.....magically delicious looking little pieces of heaven!! :D :D", + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_update": "2016-08-06T13:51:12", + "created": "2016-08-06T13:51:12", + "active": "2016-08-06T13:59:54", + "last_payout": "2016-09-06T04:51:42", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "42", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "2", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 20, + "net_votes": 6, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 478101, + "author": "meesterboom", + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135127799z", + "category": "recipes", + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "body": "Top doughnutting!!!", + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_update": "2016-08-06T13:51:27", + "created": "2016-08-06T13:51:27", + "active": "2016-08-06T13:59:18", + "last_payout": "2016-09-06T04:51:42", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 478127, + "author": "firepower", + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t140239163z", + "category": "recipes", + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "body": "That looks really delicious! Would love to try that but too bad I'm behind a computer screen haha! Keep up the good work! :)", + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_update": "2016-08-06T13:54:09", + "created": "2016-08-06T13:54:09", + "active": "2016-08-06T14:04:27", + "last_payout": "2016-09-06T04:51:42", + "depth": 1, + "children": 3, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 478427, + "author": "gustavopasquini", + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t142635178z", + "category": "recipes", + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "body": "Very Good Chef ;)", + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_update": "2016-08-06T14:26:39", + "created": "2016-08-06T14:26:39", + "active": "2016-08-06T14:33:15", + "last_payout": "2016-09-06T04:51:42", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 478462, + "author": "recursive", + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t143154346z", + "category": "recipes", + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "body": "Photo #2: gorgeous! French [canelé](https://en.wikipedia.org/wiki/Canel%C3%A9) comes to mind...\nhttps://upload.wikimedia.org/wikipedia/commons/d/df/Canele_innards.jpg", + "json_metadata": "{\"tags\":[\"recipes\"],\"links\":[\"https://en.wikipedia.org/wiki/Canel%C3%A9\"]}", + "last_update": "2016-08-06T14:30:48", + "created": "2016-08-06T14:30:48", + "active": "2016-08-06T14:32:51", + "last_payout": "2016-09-06T04:51:42", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "3770", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "2", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 1769, + "net_votes": 11, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 478506, + "author": "condra", + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t143537671z", + "category": "recipes", + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "body": "Oh damn I'm gonna try this", + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_update": "2016-08-06T14:35:21", + "created": "2016-08-06T14:35:21", + "active": "2016-08-06T19:59:42", + "last_payout": "2016-09-06T04:51:42", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 3, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 479047, + "author": "kryptik", + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t153216549z", + "category": "recipes", + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "body": "Awesome easy recipe! I see you workin' it #steemianfoodnetwork", + "json_metadata": "{\"tags\":[\"steemianfoodnetwork\",\"recipes\"]}", + "last_update": "2016-08-06T15:32:15", + "created": "2016-08-06T15:32:15", + "active": "2016-08-06T22:47:21", + "last_payout": "2016-09-06T04:51:42", + "depth": 1, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json new file mode 100644 index 00000000..0c20d05e --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 336501, + "author": "msjennifer", + "permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "category": "steemit", + "parent_author": "vi1son", + "parent_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "title": "", + "body": "Excellent post!", + "json_metadata": "", + "last_update": "2016-07-29T15:23:18", + "created": "2016-07-29T15:17:39", + "active": "2016-07-29T15:23:18", + "last_payout": "2016-08-29T05:00:42", + "depth": 1, + "children": 0, + "net_rshares": -55205310, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": -4, + "root_author": "vi1son", + "root_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 336600, + "author": "corax", + "permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "category": "steemit", + "parent_author": "vi1son", + "parent_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "title": "", + "body": "http://now-here-this.timeout.com/wp-content/uploads/2013/02/url-19.gif Oh my goodness! Impressive article dude! Thanks, However I am encountering issues with your RSS. I dont understand why I cannot join it. Is there anybody else having the same RSS issues? Anyone that knows the solution will you kindly respond? Thanks", + "json_metadata": "", + "last_update": "2016-07-29T15:23:39", + "created": "2016-07-29T15:23:39", + "active": "2016-07-29T16:58:39", + "last_payout": "2016-08-29T05:00:42", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "vi1son", + "root_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 425216, + "author": "yandra86", + "permlink": "aferium", + "category": "ru", + "parent_author": "vi1son", + "parent_permlink": "aferium", + "title": "", + "body": "Upvoted", + "json_metadata": "", + "last_update": "2016-08-03T08:52:45", + "created": "2016-08-03T08:52:45", + "active": "2016-08-03T08:52:45", + "last_payout": "2016-09-02T20:52:12", + "depth": 1, + "children": 0, + "net_rshares": -10906911, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": -1, + "root_author": "vi1son", + "root_permlink": "aferium", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 773677, + "author": "itay", + "permlink": "re-aferium", + "category": "ru", + "parent_author": "vi1son", + "parent_permlink": "aferium", + "title": "", + "body": "I upvoted You", + "json_metadata": "{}", + "last_update": "2016-08-28T02:48:12", + "created": "2016-08-28T02:48:12", + "active": "2016-08-28T02:48:12", + "last_payout": "2016-09-02T20:52:12", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "vi1son", + "root_permlink": "aferium", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 353970, + "author": "confucius", + "permlink": "afghan-war-1985", + "category": "photography", + "parent_author": "vi1son", + "parent_permlink": "afghan-war-1985", + "title": "", + "body": "Acquire new knowledge whilst thinking over the old, and you may become a teacher of others.", + "json_metadata": "", + "last_update": "2016-07-30T13:55:45", + "created": "2016-07-30T13:55:45", + "active": "2016-07-30T13:55:45", + "last_payout": "2016-08-30T01:59:27", + "depth": 1, + "children": 0, + "net_rshares": -776149630, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "vi1son", + "root_permlink": "afghan-war-1985", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 353971, + "author": "jarvis", + "permlink": "afghan-war-1985", + "category": "photography", + "parent_author": "vi1son", + "parent_permlink": "afghan-war-1985", + "title": "", + "body": "Have you ever met one of your HEROES?", + "json_metadata": "", + "last_update": "2016-07-30T13:55:45", + "created": "2016-07-30T13:55:45", + "active": "2016-07-30T13:55:45", + "last_payout": "2016-08-30T01:59:27", + "depth": 1, + "children": 0, + "net_rshares": -21958841303, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "vi1son", + "root_permlink": "afghan-war-1985", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 416566, + "author": "condra", + "permlink": "re-vi1son-bug-with-comments-20160802t201348625z", + "category": "steemit", + "parent_author": "vi1son", + "parent_permlink": "bug-with-comments", + "title": "", + "body": "Yeahp. I'm sure they will fix it soon.", + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_update": "2016-08-02T20:13:33", + "created": "2016-08-02T20:13:33", + "active": "2016-08-02T20:13:33", + "last_payout": "2016-09-02T08:18:00", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "vi1son", + "root_permlink": "bug-with-comments", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 416610, + "author": "cortegam", + "permlink": "re-vi1son-bug-with-comments-20160802t201629448z", + "category": "steemit", + "parent_author": "vi1son", + "parent_permlink": "bug-with-comments", + "title": "", + "body": "I have the same issue, but I thought that it was my browser lol", + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_update": "2016-08-02T20:16:27", + "created": "2016-08-02T20:16:27", + "active": "2016-08-02T20:16:27", + "last_payout": "2016-09-02T08:18:00", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "vi1son", + "root_permlink": "bug-with-comments", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 260239, + "author": "wang", + "permlink": "re-vi1son-challenge-the-importance-of-setting-goals-20160725t223254293z", + "category": "introduceyourself", + "parent_author": "vi1son", + "parent_permlink": "challenge-the-importance-of-setting-goals", + "title": "", + "body": "Great to have you with us!\n\nHere are some tips if you're not aware of already:\n* Secure your account: https://steemit.com/steemit-guides/@pfunk/your-steem-account-is-worth-money-how-to-secure-it-with-a-new-owner-key-to-keep-it-yours-forever\n* Verify your account and build your reputation: https://steemit.com/steem/@tuck-fheman/verified-accounts--reputation-system\n* Contribute with your own contents: https://steemit.com/steem/@grittenald/copy-paste-steal-cite-your-sources, and https://steemit.com/steemit/@pfunk/lets-discuss-verification-of-user-accounts-posting-previous-work-to-prevent-impersonation\n* Properly tagging your posts, especially when your content is `#NSFW` or for `#test` only\n* Know how Steemit works: https://steemit.com/steemit/@donkeypong/still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy ", + "json_metadata": "{\"tags\":[]}", + "last_update": "2016-07-25T22:32:54", + "created": "2016-07-25T22:32:54", + "active": "2016-07-25T22:32:54", + "last_payout": "2016-08-26T00:12:39", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "vi1son", + "root_permlink": "challenge-the-importance-of-setting-goals", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 260253, + "author": "sharon", + "permlink": "challenge-the-importance-of-setting-goals", + "category": "introduceyourself", + "parent_author": "vi1son", + "parent_permlink": "challenge-the-importance-of-setting-goals", + "title": "", + "body": "Welcome to the community!", + "json_metadata": "", + "last_update": "2016-07-25T22:33:24", + "created": "2016-07-25T22:33:24", + "active": "2016-07-25T22:33:24", + "last_payout": "2016-08-26T00:12:39", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "vi1son", + "root_permlink": "challenge-the-importance-of-setting-goals", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json new file mode 100644 index 00000000..f3b6847c --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 780584, + "author": "givemeyoursteem", + "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", + "category": "foodchallenge", + "parent_author": "knozaki2015", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "title": "", + "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", + "last_update": "2016-08-28T18:12:39", + "created": "2016-08-28T18:12:39", + "active": "2016-08-28T18:12:39", + "last_payout": "2016-08-29T20:19:39", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 692581, + "author": "gonzo", + "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-interview-with-marcus-schmitt-ceo-of-copytrack-20160821t083448196z", + "category": "interview", + "parent_author": "knozaki2015", + "parent_permlink": "re-gonzo-re-knozaki2015-interview-with-marcus-schmitt-ceo-of-copytrack-20160821t083148078z", + "title": "", + "body": "You won't get much out of me, I only hooked for a few months, but maybe if you give me some time I can come up with some better stories :)", + "json_metadata": "{\"tags\":[\"interview\"]}", + "last_update": "2016-08-21T08:36:18", + "created": "2016-08-21T08:36:18", + "active": "2016-08-21T08:47:24", + "last_payout": "2016-08-21T21:30:09", + "depth": 3, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "knozaki2015", + "root_permlink": "interview-with-marcus-schmitt-ceo-of-copytrack", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 596256, + "author": "gonzo", + "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-re-knozaki2015-i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne-20160814t085544420z", + "category": "food", + "parent_author": "knozaki2015", + "parent_permlink": "re-gonzo-re-knozaki2015-re-knozaki2015-i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne-20160814t085434286z", + "title": "", + "body": "You're welcome, it took me forever to learn how to do that.", + "json_metadata": "{\"tags\":[\"food\"]}", + "last_update": "2016-08-14T08:55:48", + "created": "2016-08-14T08:55:48", + "active": "2016-08-14T09:03:18", + "last_payout": "2016-09-14T00:38:18", + "depth": 4, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "knozaki2015", + "root_permlink": "i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 580231, + "author": "gonzo", + "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive-20160813t010923910z", + "category": "food", + "parent_author": "knozaki2015", + "parent_permlink": "re-gonzo-re-knozaki2015-the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive-20160813t010757520z", + "title": "", + "body": "What is your favorite Japanese food?", + "json_metadata": "{\"tags\":[\"food\"]}", + "last_update": "2016-08-13T01:09:27", + "created": "2016-08-13T01:09:27", + "active": "2016-08-13T01:32:00", + "last_payout": "2016-09-12T13:37:06", + "depth": 3, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "knozaki2015", + "root_permlink": "the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 897353, + "author": "gringalicious", + "permlink": "re-knozaki2015-re-gringalicious-re-knozaki2015-i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami-20160908t224916649z", + "category": "food", + "parent_author": "knozaki2015", + "parent_permlink": "re-gringalicious-re-knozaki2015-i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami-20160908t223849052z", + "title": "", + "body": "I'll be there", + "json_metadata": "{\"tags\":[\"food\"]}", + "last_update": "2016-09-08T22:49:18", + "created": "2016-09-08T22:49:18", + "active": "2016-09-08T22:49:18", + "last_payout": "2016-09-09T23:09:36", + "depth": 3, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "knozaki2015", + "root_permlink": "i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 641066, + "author": "hagie", + "permlink": "re-knozaki2015-re-hagie-re-knozaki2015-paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better-20160817t130426895z", + "category": "giveback", + "parent_author": "knozaki2015", + "parent_permlink": "re-hagie-re-knozaki2015-paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better-20160817t102434089z", + "title": "", + "body": "Ok .. das ist echt super - ich hatte zwar nicht so viel glück mit meinen Posts wie du aber ich werde ab jetzt 10% monatlich meiner SMD an dich senden zum verteilen. Danke dafür. Ich würde mich auch sehr über jeden approve als witness freuen - da mit die technische Seite einfach eher liegt als das schreiben von Posts !! https://steemit.com/deutsch/@hagie/witness-anmeldung-fuer-hagie", + "json_metadata": "{\"tags\":[\"giveback\"],\"links\":[\"https://steemit.com/deutsch/@hagie/witness-anmeldung-fuer-hagie\"]}", + "last_update": "2016-08-17T13:04:24", + "created": "2016-08-17T13:04:24", + "active": "2016-08-18T21:47:51", + "last_payout": "2016-09-05T22:26:30", + "depth": 3, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "knozaki2015", + "root_permlink": "paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 680888, + "author": "handmade", + "permlink": "re-knozaki2015-re-handmade-this-is-slovenia-2-million-people-53-dialects-and-much-more-20160820t075942095z", + "category": "travel", + "parent_author": "knozaki2015", + "parent_permlink": "re-handmade-this-is-slovenia-2-million-people-53-dialects-and-much-more-20160819t223531716z", + "title": "", + "body": "Many people just go around and here is so much to see and do. Follow the series and you'll buy the ticket very soon. Just let me know when you are coming because here the beer is also nice :)", + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_update": "2016-08-20T07:59:57", + "created": "2016-08-20T07:59:57", + "active": "2016-08-20T08:09:54", + "last_payout": "2016-08-20T23:50:45", + "depth": 2, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "handmade", + "root_permlink": "this-is-slovenia-2-million-people-53-dialects-and-much-more", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 513207, + "author": "herzmeister", + "permlink": "re-knozaki2015-re-herzmeister-marathonissi-turtle-island-laganas-greece-20160808t203030390z", + "category": "wallpaper", + "parent_author": "knozaki2015", + "parent_permlink": "re-herzmeister-marathonissi-turtle-island-laganas-greece-20160808t132357110z", + "title": "", + "body": "thanks, I hope there will soon be proper support and functionality for viewing followers and their posts and similar things.", + "json_metadata": "{\"tags\":[\"wallpaper\"]}", + "last_update": "2016-08-08T20:29:54", + "created": "2016-08-08T20:29:54", + "active": "2016-08-08T20:29:54", + "last_payout": "2016-09-08T03:01:09", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "herzmeister", + "root_permlink": "marathonissi-turtle-island-laganas-greece", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 349149, + "author": "hhcwebmaster", + "permlink": "re-knozaki2015-re-hhcwebmaster-greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself-20160730t071816576z", + "category": "introduceyourself", + "parent_author": "knozaki2015", + "parent_permlink": "re-hhcwebmaster-greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself-20160730t071432435z", + "title": "", + "body": "Hey thank you! took effort to put it together this way into sections.. my mind is everywhere!! haha... & It's quite simple .. I am using headers .. from h1 to h3 .... Use brackets.. <---> [h1] TITLE HEADLINE [/h1]", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_update": "2016-07-30T07:18:21", + "created": "2016-07-30T07:18:21", + "active": "2016-07-30T07:18:21", + "last_payout": "2016-08-29T20:08:06", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "hhcwebmaster", + "root_permlink": "greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 660065, + "author": "hisnameisolllie", + "permlink": "re-knozaki2015-re-hisnameisolllie-one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons-20160818t192942365z", + "category": "steemit-future", + "parent_author": "knozaki2015", + "parent_permlink": "re-hisnameisolllie-one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons-20160818t192526842z", + "title": "", + "body": "You Edited ;)\n\nI agree.\n\nI understand that (promotion of earnings), and I've certainly been guilty of that in the past. I think that once we've 'been around the block' a few times on Steemit, I believe we need to start being a little more realistic with our pitches. \n\nAs the user base increases, the odd's of hitting a $5,000 post diminish rapidly. Steemit has merits in it's own rights, but not too many people are talking about them...", + "json_metadata": "{\"tags\":[\"steemit-future\"]}", + "last_update": "2016-08-18T19:35:03", + "created": "2016-08-18T19:29:42", + "active": "2016-08-18T20:37:06", + "last_payout": "2016-08-19T22:34:03", + "depth": 2, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "hisnameisolllie", + "root_permlink": "one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json new file mode 100644 index 00000000..4885a9fb --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 630322, + "author": "gtg", + "permlink": "heavy-duty-witness-node-infrastructure", + "category": "witness-category", + "parent_author": "", + "parent_permlink": "witness-category", + "title": "Heavy duty witness node infrastructure", + "body": "As you know, witness nodes are an essential part of the STEEM universe.\n\nIf I have a witness node with as much as (or as little as) 3% of witness approval, I can choose the right time to shut it down, listen to my favourite music album, walk my cat, and then start it up again, most probably without missing a block.\nA full-time witness, or one of the top19 witnesses, needs to produce blocks 1600 times more frequently.\nMaintaining such a server in the long run is not an easy task.\n\nWitnesses are vulnerable to DDoS attacks. An attacker who knows the network location of your witness node can saturate your uplink to a level that makes you unable to produce blocks on time. Effectively, this means **voting the witness out using a network-level attack**. Finding the IP address of your witness node is easier than you might think. Even if you follow the guidelines for setting up your public seed node on a different machine than the one you used to get your witness running, your witness still needs to connect to other nodes in the network.\nSo what does this mean? Take a look at: http://seeds.quisquis.de/steem.html\n(service provided by cyrano.witness)\n\nDoes any of these IP addresses look familiar?\nThe attacker still doesn't know which of them is yours, right?\n\nAn attack that makes the target IP unavailable for 3 seconds? Not exactly a difficult thing to do, right? So the attacker needs to make a guess by choosing from a set of suspected IP addresses he has obtained. Guessing doesn't cost him much. Neither does a high volume, short period DDoS attack. After that, he can see that your `total_missed` count increases, and he knows he guessed correctly. And then you are out.\n\n![witness](https://grey.house/img/witness2.jpg)\n\n## A concept of infrastructure: ##\n\n2 witness nodes (primary and backup)\n4 dedicated seed nodes\n\nOne witness node has your current signing key and does its job. The other is for failover, backup purposes. For example, whenever you need to upgrade your witness binary, you do that on the backup witness node, then change your signing key, so the backup node and the primary node switch their roles. \n**(Never leave your current signing key on two nodes at the same time!)**\n\nThese 4 seed nodes mentioned here only work on behalf of your witness i.e. they don’t provide seed service on public network interfaces. \n_Your public seed node is not within the scope of this document._\n\nYour witness node connects **ONLY** to your seed nodes using VLAN or another private, low latency network solution of your choice. All other incoming/outgoing connections should be blocked except for the secure shell, preferably limited to access only from your IPs.\n\nEach seed node should be in a separate datacenter, ideally in a different part of the world, never in the same location as any of your (primary/backup) witness nodes. The purpose is to minimize the effects of a successful DDoS attack.\n\n_Please note that setting up all seed nodes in a single data center won’t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway._\n\n```\n +---+\n + +----+ | |\n | | |<-->| B |\n +--+ S1 |<-->| i |\n | | |<-->| g |\n | +----+ | |\n+------+ | | B |\n| +-+ +----+ | a |\n| W(p) | | | |<-->| d |\n| | +--+ S2 |<-->| |\n+------+ | | |<-->| U |\n | +----+ | g |\n VLAN| | l |\n | +----+ | y |\n+------+ | | |<-->| |\n| | +--+ S3 |<-->| I |\n| W(b) | | | |<-->| n |\n| +-+ +----+ | t |\n+------+ | | e |\n | +----+ | r |\n | | |<-->| n |\n +--+ S4 |<-->| e |\n | | |<-->| t |\n + +----+ | |\n +---+\n```\n```\nW(p) - primary witness\nW(b) - backup witness\nS1-4 - seed nodes\n```\nOf course, you need to keep your seed nodes (at least one of them) running all the time, otherwise your witness will not be able to sync the blockchain.\nBut if you do the math, you will see that the odds that all your seed nodes stop working at the same time are much lower than the chances that this happens to your witness node. \n\n\nIf one of your seed nodes falls victim to a DDoS attack, you can, depending on the features offered by your infrastructure provider:\n- do nothing (until most of them are targeted at the same time)\n- change its external interface IP address, routing the old one to a black hole\n- set up a new, additional, temporary seed node somewhere else\n- replace that seed node with a new one in another location\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", + "json_metadata": "{\"tags\":[\"witness-category\",\"security\",\"steem\",\"steemit\"],\"links\":[\"https://steemit.com/witness-category/@gtg/witness-gtg\"]}", + "last_update": "2016-08-16T18:11:03", + "created": "2016-08-16T18:11:03", + "active": "2016-08-18T03:32:12", + "last_payout": "2016-08-17T20:13:00", + "depth": 0, + "children": 14, + "net_rshares": "920389243926", + "abs_rshares": "920389243926", + "vote_rshares": "920389243926", + "children_abs_rshares": "1000824866058", + "cashout_time": "2016-09-16T20:13:00", + "max_cashout_time": "2016-08-31T20:14:30", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "745053", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "243149", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 501045, + "net_votes": 177, + "root_author": "gtg", + "root_permlink": "heavy-duty-witness-node-infrastructure", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 36906, + "author": "gtg", + "permlink": "hello-world", + "category": "introduceyourself", + "parent_author": "", + "parent_permlink": "introduceyourself", + "title": "Hello, World!", + "body": "I'm Gandalf.\nThat's not my real name, but even my mom saved my number as ***Gandalf*** in her phone contact list.\nThat counts, right?\nI'm an IT Wizard, system admin, happily married, owner of a cat.\nOwned by a cat.\n\n![Nyunya](https://grey.house/img/niunia.jpg)\n\n**Nyunya** *(The Cat)* wants to watch everything I do, that's just her way of lending a helping paw. I’m not sure if she is so fascinated by what I do or she wants to make sure I do it right.\n\nWhy am I here? What is my motivation?\nNot much different from that guiding my cat:\nCuriosity and to be a witness (node?) of what is emerging here.\n\nMay the STEEM be with you!", + "json_metadata": "{\"tags\":[\"introduceyourself\",\"cats\"],\"image\":[\"https://grey.house/img/niunia.jpg\"]}", + "last_update": "2016-07-10T12:39:42", + "created": "2016-07-03T16:35:03", + "active": "2016-07-10T12:39:42", + "last_payout": "2016-08-13T21:04:45", + "depth": 0, + "children": 3, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "254288", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "16244", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 1135218, + "net_votes": 44, + "root_author": "gtg", + "root_permlink": "hello-world", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 693873, + "author": "gtg", + "permlink": "missing-rewards-while-mining", + "category": "mining", + "parent_author": "", + "parent_permlink": "mining", + "title": "Missing rewards while mining - common mistake with keys", + "body": "Suppose your miner node found `pow2`, but your `total_missed` count increased, instead of generating a block.\n\nIf this happens, double check your keys used in the `config.ini` file.\n\n```\nwitness = \"minerwitness\"\n\nminer = [\"minerwitness\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner1\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner2\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner3\",\"WIF_ACTIVE_PRIVATE_KEY\"]\n\nmining-threads = 4\n\nprivate-key = WIF_SIGNING_PRIVATE_KEY\n```\n\nUsing keys without paying attention to their roles is a common mistake. @artakan [found out](https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account \"@artakan - Do not use your steemit.com account for mining\")\nthat issues with missing blocks tend to happen when you are using an account that was created through [steemit.com](https://steemit.com/ \"Blogging is the new mining\") but seems to work for the mined account.\n\nSo erroneous configuration might work for your mined account by pure coincidence. In other words, the same key has been defined for all roles, so: `WIF_ACTIVE_PRIVATE_KEY` is exactly the same as `WIF_SIGNING_PRIVATE_KEY`.\n\n![witness](https://grey.house/img/witness2.jpg)\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", + "json_metadata": "{\"tags\":[\"mining\",\"steem\",\"steem-mining\"],\"users\":[\"artakan\"],\"links\":[\"https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account\"]}", + "last_update": "2016-08-21T13:02:30", + "created": "2016-08-21T12:29:18", + "active": "2016-08-27T18:39:45", + "last_payout": "2016-08-22T13:01:45", + "depth": 0, + "children": 6, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-21T13:01:45", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "353", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "79", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 241, + "net_votes": 26, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 817048, + "author": "gtg", + "permlink": "re-amcq-hello-steemit-i-m-alex-a-new-member-of-the-steemit-team-20160831t205719836z", + "category": "introduceyourself", + "parent_author": "amcq", + "parent_permlink": "hello-steemit-i-m-alex-a-new-member-of-the-steemit-team", + "title": "", + "body": "Hello Alex, welcome to steemit! :-)", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_update": "2016-08-31T20:57:24", + "created": "2016-08-31T20:57:24", + "active": "2016-08-31T20:57:24", + "last_payout": "2016-09-01T19:22:30", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "amcq", + "root_permlink": "hello-steemit-i-m-alex-a-new-member-of-the-steemit-team", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 758424, + "author": "gtg", + "permlink": "re-ania-hello-world-20160826t185305711z", + "category": "introduceyourself", + "parent_author": "ania", + "parent_permlink": "hello-world", + "title": "", + "body": "Hello Ania, welcome to steemit! :-)", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_update": "2016-08-26T18:53:09", + "created": "2016-08-26T18:53:09", + "active": "2016-08-26T21:16:45", + "last_payout": "2016-08-27T21:18:18", + "depth": 1, + "children": 1, + "net_rshares": 1067633479, + "abs_rshares": 1067633479, + "vote_rshares": 1067633479, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "ania", + "root_permlink": "hello-world", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 958255, + "author": "gtg", + "permlink": "re-arcange-re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t141107191z", + "category": "stats", + "parent_author": "arcange", + "parent_permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", + "title": "", + "body": "True, as well as encouraging others to try to do the same :-)", + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_update": "2016-09-15T14:11:09", + "created": "2016-09-15T14:11:09", + "active": "2016-09-15T14:11:09", + "last_payout": "1970-01-01T00:00:00", + "depth": 5, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 957804, + "author": "gtg", + "permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", + "category": "stats", + "parent_author": "arcange", + "parent_permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", + "title": "", + "body": "I noticed that just after writing a comment (when went back to continue reading ... ) ___Thank you___ for pointing out. :-)", + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_update": "2016-09-15T13:19:24", + "created": "2016-09-15T13:19:24", + "active": "2016-09-15T14:11:09", + "last_payout": "1970-01-01T00:00:00", + "depth": 3, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 957696, + "author": "gtg", + "permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", + "category": "stats", + "parent_author": "arcange", + "parent_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "body": "@arcange, please do not underestimate ___\"Thank you\"___ while searching for ___\"Thanks\"___ ;-)\n\nThank you,\n[Gandalf](https://steemit.com/@gtg) (\"gtg\")", + "json_metadata": "{\"tags\":[\"stats\"],\"users\":[\"arcange\"],\"links\":[\"https://steemit.com/@gtg\"]}", + "last_update": "2016-09-15T13:08:12", + "created": "2016-09-15T13:04:12", + "active": "2016-09-15T14:11:09", + "last_payout": "1970-01-01T00:00:00", + "depth": 1, + "children": 4, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 693917, + "author": "gtg", + "permlink": "re-artakan-important-info-for-steem-miner-do-not-use-your-steemit-com-account-20160821t123356072z", + "category": "mining", + "parent_author": "artakan", + "parent_permlink": "important-info-for-steem-miner-do-not-use-your-steemit-com-account", + "title": "", + "body": "There's nothing wrong with mining using your _\"steemit.com account\"_. It's **all about your keys** and using **proper miner configuration**. I tried to explain common mistake https://steemit.com/mining/@gtg/missing-rewards-while-mining", + "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https://steemit.com/mining/@gtg/missing-rewards-while-mining\"]}", + "last_update": "2016-08-21T12:33:57", + "created": "2016-08-21T12:33:57", + "active": "2016-08-21T12:33:57", + "last_payout": "2016-08-22T10:51:00", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "39", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 27, + "net_votes": 3, + "root_author": "artakan", + "root_permlink": "important-info-for-steem-miner-do-not-use-your-steemit-com-account", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 792758, + "author": "gtg", + "permlink": "re-artywah-self-proclaimed-geek-and-digital-ancient-in-melbourne-australia-20160829t191915549z", + "category": "introduceyourself", + "parent_author": "artywah", + "parent_permlink": "self-proclaimed-geek-and-digital-ancient-in-melbourne-australia", + "title": "", + "body": "Hello @artywah, welcome to steemit! :-)\nHint: Adding a picture to your post could make it more appealing.\n( I used my cat for that ;-) )", + "json_metadata": "{\"tags\":[\"introduceyourself\"],\"users\":[\"artywah\"]}", + "last_update": "2016-08-29T19:19:18", + "created": "2016-08-29T19:19:18", + "active": "2016-08-29T19:19:18", + "last_payout": "2016-08-30T18:28:06", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "artywah", + "root_permlink": "self-proclaimed-geek-and-digital-ancient-in-melbourne-australia", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json new file mode 100644 index 00000000..037ee732 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 736184, + "author": "skypilot", + "permlink": "an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse", + "category": "introduceyourself", + "parent_author": "", + "parent_permlink": "introduceyourself", + "title": "Where Eagles Fly by Zedekiah Morse", + "body": "http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\n\n# Hello Steemit!\n\nI am a bush-pilot, aerial photographer, and explorer. \n\nOur world is truly beautiful from up here!! And to share how I see it, I am developing an immersive project called **Where Eagles Fly** and would love to introduce myself and the project to the Steemit community. \n\nMy name is **Gerald Zedekiah Morse**, I go by **Zedekiah** or **Z** for short. \n\nOf course here on Steemit I am \"**skypilot**\".\n\nI was only recently introduced to Steemit by a friend. I find the entire construct of a blockchain content distribution platform to be fascinating. Centralized mass distribution of content is still very much under a gatekeeper rule and I would love to bypass this as much as possible. Steemit and other kindred platforms such as lbry.io, ascribe.io and many others all provide valuable tools that will greatly assist in the launch, success, and ongoing control of my project content. There is much to learn, and I look forward to the journey! \n\nhttp://geraldzmorse.com/images/steemit/howdysteemit.jpg\n*My proof of life - at my hangar on 8/23/16 with the Bluebird*\n\nIf you would like to see an example of my project and the work I do, please click on the image below which will take you to my website which has a Vimeo clip embedded on it. *(Unfortunately at this time Steemit does not support Vimeo and I do not like the compression quality of YouTube.)* I would right-click to open the link in a new tab so you keep Steemit open and don't lose your place. \n\n[![Your text here](http://geraldzmorse.com/images/steemit/Piclink-1.jpg)](http://geraldzmorse.com/Love_of_Nature.html \"Click Here To Play - a Love of Natue\")\n\n## My Background\nI am a music composer, pianist, recording engineer, and sound designer. I work mostly as a ghost composer and arranger on film soundtracks and trailers. I love many different styles of music and experiment with recording any genre or style the muse provides. If you would care to listen to my music, visit my listing on [SoundCloud/ZMorse](https://soundcloud.com/zmorse/sets), but please realize, it is not for everyone. Lots of different styles are on there, and I change the material all the time since I have a substantial library to choose from.\n\nhttp://geraldzmorse.com/images/steemit/zinstudio-1.jpg\n*Z in the Studio Mixing Film Music*\n\nIn addition to music production, I also code, develop virtual production technology and work as a disruptive technologist. But mostly I am an emerging filmmaker and content creator. For this project, I do everything possible to insure the content is not unduly influenced by outside sources. For that reason, I do literally everything: pilot, aerial photography (cinematography), post-production editing, music composition, sound design, graphics and motion graphics. \n\nI will work with other people in the development of the various post-production components involved in distributing the project content, and when the project is ready I will get a professional voice over artist for the narration of the various film and episodic chapter components. I'd love to get someone like Sam Elliot or Morgan Freeman!\n\n\n\n## I Love To Fly\nIt feels like I was born a pilot. My father was a test pilot for the B58 Hustler and then an aeronautical engineer for NASA during the Apollo program. Those were heady days. Most folks don’t realize, but back when Silicon Valley was just another small California suburb of San Francisco, and long before the advent of the Internet and rise of technology as we know it today, there were two very advanced scientific centers of technology that few knew about outside of the NASA community: Nassau Bay, Texas, and Huntsville, Alabama. \n\nhttp://geraldzmorse.com/images/steemit/B58-team.jpg\n*My father and test crew for the B58 Hustler circa 1960*\n\nThese were the Silicon Valleys of the day back in the 1960’s and 70’s. Huntsville, Alabama, was home to Marshal Space Center, and Nassau Bay, Texas, was home to Johnson Space Center. I grew up between those two places because my dad was transferred back and forth every couple of years as the Apollo program progressed. This is something I will write about in another article due to there being a lot of interesting things to discuss from that era. What’s important is the impact exposure to this unique community had on me. I developed a love of science and engineering and a wanderlust for space exploration that has had an ongoing effect on me. I still gaze into the night sky in wonderment at the possibilities of what is out there, of what we do not know. I truly love the unknown.\n\nWhen I was a child, my father took me flying a lot, most of the time we had to sneak out of the house because mom was so scared we would crash. Pops would always make me promise not to tell her when we were out doing aerobatics or flying through the mountains and landing on riverbanks. I’m grateful for the influence he had on my life, and the exposure to the science and engineering of flight that has shaped my life. But also in the type of aircraft and flying I am attracted to. I have never been interested in the fast moving jets or high altitude aircraft, instead prefer flying low and slow above the beautiful back-country, experiencing views I know very few people, if any, ever get to see. So this means I require a particular type of aircraft that can safely operate in these rough, rugged, and primitive locations.\n\nhttp://geraldzmorse.com/images/steemit/ZFlying-1.jpg\n*Flying My Bluebird In The Wilderness*\n\nI exclusively fly small bush planes. These aircraft do not require a normal paved runway to take off and land on. All I really need is a somewhat flat space a few hundred feet long, the smoother the better, but not necessary. You have to be very careful landing in short places, as you run the risk of being unable to take off from there again. This is why careful planning and attention to weather conditions and surface terrain are paramount! I also fly float planes, even crashed one a long time ago in the wilderness and had to egress the aircraft underwater as it was rapidly sinking! *(Another story for another time)*.\n\nhttp://geraldzmorse.com/images/steemit/airplanecamp-1.jpg\n*Camping on the Cumberland Plateau, Tennessee*\n\nCamping with an airplane in the wild is an experience of either extreme solitude, when I am out there by myself, or great camaraderie with a very small group of pilots who love the back-country as much as I. We have fly-in's where groups of pilots, young and old, male and female and lots of families all come together to camp out in these hard-to-reach locations.\n\nLanding and taking off on river banks, tops of cliffs, mountain saddle backs or meadows, which are always deep in the wilderness and far from civilization or help, are standard operations. Planning and proper equipment are necessary for survival, and knowledge with continuous training will keep you alive when things get spicy! You can count on the weather to be unpredictable, changing rapidly with little warning when you fly and camp deep in the mountainous hinterlands. Vigilance and a keen sense of awareness must be enacted at all times, especially in the air but also down on the ground, particularly when camping in the wild. \nBecause...*critters!*\n\nAll sorts of wild animals like coyotes, moose, elk, wolves, and bears will come into camp. We all know that they can be a curious lot and after all, this is their home and we are just visitors. Mostly, they are looking for food, especially bears. I am sure you have all seen this photo of a bush-plane that got a bit chewed on? *Never* ever store food in the airplane, not even something as small as a candy bar―especially if it is covered with fabric and not metal, though aluminum skin probably would have suffered badly as well. I reckon that bear was pretty determined and that fabric skin cut like butter with those sharp claws!\n\nhttp://geraldzmorse.com/images/steemit/BearAttack.jpg\n*Bear damage on an aircraft similar to my Bluebird*\n\n# Culmination of My Life's Work\n\nYears ago, I began taking photos while flying and camping in the back-country. Over time, camera technology exponentially reduced in form-factor while increasing in capabilities. I’m now able to carry more powerful DSLR's with amazing capabilities, and I've gone through the gauntlet with different systems: Nikon, Sony, Canon, Hasselblad, and PhaseOne. Some work much better than others, there is no real magic bullet; however, I love the large-sensor-format-based systems because I desire to reproduce my images as large-scale prints.\n\nhttp://geraldzmorse.com/images/steemit/zshooting2.jpg\n*Shooting The Grand-Staircase Escalante in Utah*\n\nAs video camera technology matured into smaller form-factor systems, I began experimenting with mounting cameras all around the aircraft, outside and in the cockpit. It has taken quite a while to come up with solutions to mitigate camera vibration. The rolling shutter effect from these systems is always an issue, especially with the bending propeller which I really dislike. But I am using my current configuration as a test bed from which to design and build an aerial platform that will eliminate all of these problems. This new platform will be based on a global-shutter sensor with a custom camera control, mounting, and optical package. \n\nWith the advent of a powerful suite of post-production tools from Adobe Creative Cloud, I am able to leverage my knowledge of virtual production technology into the art of editing and film composition. Because I already do soundtrack work, it was a fairly logical step. With the combination of aerial photography, aerial footage, and music composition and recording, I have the ability to produce my own content. Hence the following project: \n\n# Where Eagles Fly – The American Wilderness Expedition\n\nFor the past few years, I've been exploring the remaining wilderness areas of North America and filming them from a space just a few hundred to a few thousand feet above ground. The view from this zone is incredible. To accomplish this, I fly into remote off-the-beaten-path locations that are very rarely visited and even more rarely seen from this special zone up in the air... **Where Eagles Fly** :)\n\n\nWhen you think about it, our view of the world is quite limited to either down on the ground or very high up in jet airliners. Both of these views are restricted by physical limitations such as line-of-sight with ground based views and limited fine-detail when viewing from airliners flying along at 35,000 feet or higher. \n\nhttp://geraldzmorse.com/images/steemit/Mojave-Mtns.jpg\n*Kokoweef Peak in the Mojave Desert*\n\n\nWhere I fly, earth colors interact with weather and atmospheric conditions to create incredible “paintings” of nature that are stunning to behold. I see things that “Move the Soul.” I wish more people would get into flying like I did as a young man. Flying a drone is very cool, I own a number of them, but nothing compares to being there in person. The experience is worth the effort and the inherent danger. But I do realize that pressures from our socially-connected, Internet-influenced, technically-adapted and risk-averse lives somewhat limit the exposure to flying for most people. *Aha, this too, apparently, is another good subject for a future article*. \n\nMy goal is to chronicle the remaining 47% of the USA and 90% of Canada that are uninhabited and unaffected by the encroaching crush of civilization. By doing this, I hope to increase the lexicon with which we visually describe our planet ― by providing a unique new view that illustrates the untamed beauty and ruggedness of these remarkable places. I also hope that people will become as entranced as I, and will be inspired to continue the difficult effort necessary to protect and preserve these wild places for future generations. \n\nhttp://geraldzmorse.com/images/steemit/Zion-1.jpg\n*Cougar Mountain in Zion National Park*\n\nFlying a bush-plane while shooting through an open window is not without its difficulties! The type of scenery I seek is dramatic, with weather playing a major role in providing the desired backdrop. For the cleanest, long distance large-area wilderness-landscape images, I require the clearness provided by the cold, dense air molecules of Fall, Winter, and early Spring months, without the aberrations and heat distortion of Summer. \n\n\nhttp://geraldzmorse.com/images/steemit/zshooting-1.jpg\n*Shooting the San Juan Mountains in Colorado*\n\nAs you can see this is not a large production crew type of project. This is me, all alone, in the wilderness up in the air looking for dramatic weather to juxtapose against dangerous mountains in marginal flight conditions. \n*Nice!!* \n\nTo share this journey, I am creating a highly interactive, immersive virtual journey which will allow you to experience the beauty and wonder of these extraordinary places from this unique perspective. *I will post this in a future article.* \n\n# Wilderness Landscape Photography As Fine Art\n\nThe static imagery can be distributed via a variety of compelling formats, using the Ken Burns effect to make short ambient vignettes. With this, I stream the images to digital frames, provide images as screen savers and mobile device backgrounds, etc. But what I truly love to do is turn them into prints. \n\nObviously, there are many ways to do this, from simple posters, calendars and greeting cards to printed apparel. All of these are , all very appealing. You can print on practically any surface. However, I want the images to really stand out, to grace the locations where they are placed. What is truly spectacular is to create large-format prints on different mediums. For now, there are three mediums I work with:\n\n1. Giclée prints on Canvas\n2. Chrome Metallic Paper Mounted on Acrylic\n3. Aluminum Plate\n\nEach of these mediums has different qualities which influence how the images appear. I have been fortunate to find both an amazing printer (they exclusively print for all the National Geographic Galleries) and a gallery willing to allow me to exhibit my works. To date, I have held two exhibitions in the Wyland Signature Gallery at the Planet Hollywood Resort and Casino in Las Vegas, Nevada. Both were a complete blast!\n\nhttp://geraldzmorse.com/images/steemit/zgallery-1.jpg\n*Part of My Exhibition at the Wyland Gallery in Planet Hollywood Las Vegas*\n\nIt was quite an interesting experience during the show, in that most of the time I felt like a museum docent explaining the story behind images. Folks are drawn to this unique view of nature, and seem to enjoy watching the in-flight footage showing how the images were acquired. \n\nPeople are not used to seeing wilderness landscape images from this perspective it's such an advantageous place to shoot from. It's not as though anyone can simply follow me up the trail and take the same photo! \n\n# That'a Wrap!\n\nOk, my fellow Steemers! That about wraps it up for this post, if you have stayed with me though this entire article, I thank you!! I would LOVE to get feedback from the community, and if there is interest, I will continue writing about this subject and will update the Steemit community as my project develops. \n\nPlease let me know what you think. And *Fly Safe!!*\n\nhttp://geraldzmorse.com/images/steemit/zlanding1.jpg\n*Landing Bluebird on the Mesa Top at Pearce Ferry, Arizona*", + "json_metadata": "{\"tags\":[\"introduceyourself\",\"photography\",\"travel\",\"art\",\"music\"],\"image\":[\"http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\"]}", + "last_update": "2016-08-26T18:45:27", + "created": "2016-08-24T21:24:33", + "active": "2016-09-11T05:54:30", + "last_payout": "2016-08-26T20:55:24", + "depth": 0, + "children": 112, + "net_rshares": "4923114688969", + "abs_rshares": "4923114688969", + "vote_rshares": "4923114688969", + "children_abs_rshares": "5017117283364", + "cashout_time": "2016-09-25T20:55:24", + "max_cashout_time": "2016-09-09T20:56:57", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "1639386", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "545355", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 1248581, + "net_votes": 228, + "root_author": "skypilot", + "root_permlink": "an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 888391, + "author": "skypilot", + "permlink": "ancient-mayan-wordpress-design", + "category": "life", + "parent_author": "", + "parent_permlink": "life", + "title": "Ancient Mayan Wordpress Design!?!", + "body": "# Ancient Mayan Design Aesthetic\nIt amazes me that the concept of basic design seems to have been around for many thousands of years. Think about that! Many centuries ago, some very important Mayan Scribe sat at their desktop and designed the layout below, working with what was at the time, leading edge communication technology. \n\nThis form of written communication was a technology that was only understood and utilized by an elite few. To me, this draws an compelling connection to our global ancestral makeup. What is interesting is that you can see a very strong resemblance to current design aesthetic with columns, tables, pictures (info-graphics) with wrap around text. \n\nThe way we visualize layout obviously goes way back in human history. \n

\nhttp://www.pasthorizonspr.com/wp-content/uploads/2016/08/Chichen2.jpg\n
*This image is from the article in Past Horizons listed below*
\n\nI know this is very different than the articles I usually post on my photography, but I felt compelled to share this so if you'd like to see the original article please go [here](http://www.pasthorizonspr.com/index.php/archives/08/2016/hieroglyphic-texts-reveal-maya-innovation-in-maths-and-astronomy). The article is about Mayan innovation in math and astronomy and is short and worth the read. \n\nThis article is from one of my favorite sites called **Past Horizons - Adventures in Archeology**. Please visit them if you are interested in archeology and human history. They always have something worth reading.\n
http://www.pasthorizonspr.com/wp-content/uploads/2014/10/smallLOGO@2x.png
", + "json_metadata": "{\"tags\":[\"life\",\"art\",\"writing\",\"story\",\"news\"],\"image\":[\"http://www.pasthorizonspr.com/wp-content/uploads/2016/08/Chichen2.jpg\",\"http://www.pasthorizonspr.com/wp-content/uploads/2014/10/smallLOGO@2x.png\"],\"links\":[\"http://www.pasthorizonspr.com/index.php/archives/08/2016/hieroglyphic-texts-reveal-maya-innovation-in-maths-and-astronomy\"]}", + "last_update": "2016-09-08T01:54:45", + "created": "2016-09-08T01:39:12", + "active": "2016-09-08T11:49:15", + "last_payout": "2016-09-09T01:59:48", + "depth": 0, + "children": 4, + "net_rshares": 196185915, + "abs_rshares": 196185915, + "vote_rshares": 196185915, + "children_abs_rshares": 196185915, + "cashout_time": "2016-10-09T01:59:48", + "max_cashout_time": "2016-09-23T08:52:09", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "23879", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "3823", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 29701, + "net_votes": 54, + "root_author": "skypilot", + "root_permlink": "ancient-mayan-wordpress-design", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 896931, + "author": "skypilot", + "permlink": "blizzard-whiteout-in-the-forest", + "category": "photography", + "parent_author": "", + "parent_permlink": "photography", + "title": "Blizzard Whiteout in the Forest", + "body": "This was shot during a blizzard in Kit Carson Pass below Lake Tahoe. I couldn't leave so I took pictures. It was cold and the snow was falling almost horizontally and it was bright white. It got so bad a few times it was impossible to see more than a dozen feet away. \n\nhttp://geraldzmorse.com/images/steemit/Whiteout.jpg\n\nI find the contrast between the brilliant white and the colors of the trees intriguing .", + "json_metadata": "{\"tags\":[\"photography\",\"nature\",\"art\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Whiteout.jpg\"]}", + "last_update": "2016-09-08T23:05:54", + "created": "2016-09-08T22:00:09", + "active": "2016-09-09T11:25:09", + "last_payout": "2016-09-09T22:54:12", + "depth": 0, + "children": 5, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-10-09T22:54:12", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "5959", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "1308", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 7449, + "net_votes": 47, + "root_author": "skypilot", + "root_permlink": "blizzard-whiteout-in-the-forest", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 829916, + "author": "skypilot", + "permlink": "filmmakers-of-steemit-rejoice-they-have-just-made-embedding-vimeo-in-your-posts-possible-yehaw", + "category": "photography", + "parent_author": "", + "parent_permlink": "photography", + "title": "Filmmakers of Steemit Rejoice! Embedding Vimeo in your posts is now possible! Yehaw!", + "body": "http://geraldzmorse.com/images/steemit/Vimeo_logo-2.png3fformat3d1500w.png\n\n# Howdy folks, Z here... \n\nI am very happy to announce that steemit has now made it possible to directly embed high quality Vimeo clips within the iframe structure provided by Vimeo.\n\nSimply drop your embed code in the editor as you would pictures or a Youtube clip and it should work fine: \n
\n\nIf you are interested in the post where this short vignette lives from please take a look at the first post about my project: [Where Eagles Fly](http://goo.gl/cliI88) \n\nPlease don't feel compelled to vote on this post... I am simply sharing the news so that when new users search about Vimeo they will find it is possible!\n\nThank you Steemit crew! This is awesome!", + "json_metadata": "{\"tags\":[\"photography\",\"story\",\"steemit\",\"art\",\"news\"],\"links\":[\"http://goo.gl/cliI88\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Vimeo_logo-2.png3fformat3d1500w.png\"]}", + "last_update": "2016-09-02T04:05:36", + "created": "2016-09-02T00:23:30", + "active": "2016-09-02T20:48:45", + "last_payout": "2016-09-03T02:28:12", + "depth": 0, + "children": 13, + "net_rshares": "32969357867", + "abs_rshares": "32969357867", + "vote_rshares": "32969357867", + "children_abs_rshares": "32969357867", + "cashout_time": "2016-10-03T02:28:12", + "max_cashout_time": "2016-09-20T19:56:00", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "13992", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "4357", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 15688, + "net_votes": 52, + "root_author": "skypilot", + "root_permlink": "filmmakers-of-steemit-rejoice-they-have-just-made-embedding-vimeo-in-your-posts-possible-yehaw", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 856286, + "author": "skypilot", + "permlink": "flathead-mountains-and-the-great-bear-wilderness-at-dusk", + "category": "photography", + "parent_author": "", + "parent_permlink": "photography", + "title": "Flathead Mountains and the Great Bear Wilderness at Dusk", + "body": "This photo was shot from 9,500 feet up while I was flying towards the southwest after sunset. I am in the Flathead Mountains of Montana and the moisture in the air is condensing from the cool evening to create this mystical view of the mountains.\n\nhttp://geraldzmorse.com/images/steemit/FlatHeadatDusk.jpg\n\nThis is from a series of images I call \"Wilderness Alpenglow\". I enjoy how the image resembles classic Chinese or Japanese paintings of old.\n\nIf you want to see other work from my project **Where Eagles Fly** visit my first post [here](https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse) or second one [here](https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse).", + "json_metadata": "{\"tags\":[\"photography\",\"travel\",\"art\",\"life\",\"nature\"],\"image\":[\"http://geraldzmorse.com/images/steemit/FlatHeadatDusk.jpg\"],\"links\":[\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\",\"https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse\"]}", + "last_update": "2016-09-05T01:04:30", + "created": "2016-09-04T19:31:03", + "active": "2016-09-10T03:25:48", + "last_payout": "2016-09-06T03:47:51", + "depth": 0, + "children": 22, + "net_rshares": "140201312914", + "abs_rshares": "140201312914", + "vote_rshares": "140201312914", + "children_abs_rshares": "140201312914", + "cashout_time": "2016-10-06T03:47:51", + "max_cashout_time": "2016-09-20T06:06:54", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "21746", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "6541", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 25890, + "net_votes": 66, + "root_author": "skypilot", + "root_permlink": "flathead-mountains-and-the-great-bear-wilderness-at-dusk", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 901103, + "author": "skypilot", + "permlink": "isolated-rain-storm-on-the-great-sand-dunes-national-park", + "category": "photography", + "parent_author": "", + "parent_permlink": "photography", + "title": "Rain Storm on the Great Sand Dunes National Park", + "body": "# Isolated Rain Storm \nI came upon this strange isolated rain storm over the Great Sand Dunes when I was flying out over the San Luis Valley while filming Zapata Ranch. It was clear skies about the rain clouds and clear all around it... yet it was raining on this stretch of the Sangre de Cristo Range in the Rocky Mountains. \n\nhttp://geraldzmorse.com/images/steemit/GreatDunesRainStorm1.jpg\n
*Eastern side of the Great Sand Dunes National Park*
\n\nIn this photo you can clearly see the curving edge of the sand dunes boundary where the dunes delineate from the San Luis Valley floor. These are the tallest sand dunes in North America reaching heights of 750 feet (228m).\n\n# Sand From an Ancient Glacial Lake \n\nThe dunes were formed within the last 500,000 years from sand and soil deposits of the Rio Grande and its tributaries as they spread out through the San Luis Valley. Over the ages, the glaciers melting created a vast lake in the San Luis Valley... as this lake and the waters evaporated and drained to form the river, it left behind massive volumes of loose sand. Westerly winds then picked up sand particles from the lake and river flood plain and carried them across the valley floor. As the wind diminished in power before crossing the Sangre de Cristo Range, the sand deposited all along the eastern edge of the valley. As the sand stacked up over time it became what we see today, the Great Sand Dunes National Park. \n\n\nhttp://geraldzmorse.com/images/steemit/GreatDunesRainStorm2.jpg\n
*Western side of the Great Sand Dunes National Park*
\n\nIn the photo above taken from the same position as the previous photograph, you can see the small Mount Seven Peak and behind it the snow capped 13,200 (4,023m) Cleveland Peak of the Sangre de Cristo Mountain Range peeking through the rain shower.\n\n# Whipped By Fierce Winds\nThe wind continues to whip about and shape and reshape the dunes on a daily basis, and continue to increase the volume of sand and size of the dunes. These fierce winds are strong enough to move sand and small rocks from miles away across the valley. While the dunes don't actually change location or vary in size that often, the wind forms parabolic dunes that grow in the sand sheet, the outer area around the dunes, and migrate towards the main dune field, giving a very prominent beveling or warping visual effect, especially notable from up above where I fly.\n\nLocated near Alamosa, Colorado just north of the Nature Conservancy's Zapata Ranch the dunes are a great place to visit. To check out the National Parks Service website on the Great Dunes National Park go [here](https://www.nps.gov/grsa/index.htm). \n\nAnd to check out my previous exciting fly-in trip to the Zapata Ranch to visit Duke Phillips the Flying Cowboy, go [here](https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse).\n\nIf you're unfamiliar with my work please check out my introductory post [here](https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse). \n\nOk thanks, hope you enjoy this and yehaw!", + "json_metadata": "{\"tags\":[\"photography\",\"nature\",\"story\",\"life\",\"travel\"],\"image\":[\"http://geraldzmorse.com/images/steemit/GreatDunesRainStorm1.jpg\",\"http://geraldzmorse.com/images/steemit/GreatDunesRainStorm2.jpg\"],\"links\":[\"https://www.nps.gov/grsa/index.htm\",\"https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse\",\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\"]}", + "last_update": "2016-09-09T11:15:18", + "created": "2016-09-09T11:04:21", + "active": "2016-09-12T14:37:54", + "last_payout": "2016-09-10T18:51:39", + "depth": 0, + "children": 7, + "net_rshares": 113157676, + "abs_rshares": 113157676, + "vote_rshares": 113157676, + "children_abs_rshares": 113157676, + "cashout_time": "2016-10-10T18:51:39", + "max_cashout_time": "2016-09-26T14:36:45", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "807", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "203", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 1047, + "net_votes": 69, + "root_author": "skypilot", + "root_permlink": "isolated-rain-storm-on-the-great-sand-dunes-national-park", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 913356, + "author": "skypilot", + "permlink": "las-vegas-valley", + "category": "photography", + "parent_author": "", + "parent_permlink": "photography", + "title": "Las Vegas in the Valley", + "body": "# Las Vegas Valley from the Sloan Mountains\n\nA rare perspective of the city sitting in the valley taken from above Sloan Mountains to the south. I never shoot images of cities or buildings, it's jut not my thing to do. I am an aerial wilderness photographer. However I got this while testing out a different camera.\n\nhttp://geraldzmorse.com/images/steemit/B6583414-Las-Vegas.jpg\n\nIn this uncommon point of view you can see that Las Vegas sits down in a valley, that is Gray Mountain in the distance and the foothills of Sloan Mountain in the foreground. To the bottom left, right above the small hills you can barely make out Henderson Executive Airport. \n\nThe image was captured late in the afternoon from an altitude of 4,500ft (1,371.6m) shooting towards the northeast.", + "json_metadata": "{\"tags\":[\"photography\",\"travel\",\"art\",\"las-vegas\"],\"image\":[\"http://geraldzmorse.com/images/steemit/B6583414-Las-Vegas.jpg\"]}", + "last_update": "2016-09-10T18:04:42", + "created": "2016-09-10T17:37:24", + "active": "2016-09-11T04:09:09", + "last_payout": "2016-09-12T14:32:39", + "depth": 0, + "children": 13, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-10-12T14:32:39", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "2756", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "791", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 3840, + "net_votes": 45, + "root_author": "skypilot", + "root_permlink": "las-vegas-valley", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 949882, + "author": "skypilot", + "permlink": "melting-rock", + "category": "photography", + "parent_author": "", + "parent_permlink": "photography", + "title": "Melting Rock", + "body": "This is an unusual rock outcroping I photographed south of Mesa Verde, Colorado in the desert near my camp. I found the colors of the stone and desert sand juxtaposed against the background vermilion cliff walls and blue hued sky to be pleasing and relaxing. \n\nhttp://geraldzmorse.com/images/steemit/Mesa-Verde-Outcrop.jpg\n\nThis image is also from my Artistic Impression series where I use a digitizing tablet to lightly brush various filter effects into the image to give it a certain mysterious quality.", + "json_metadata": "{\"tags\":[\"photography\",\"art\",\"nature\",\"\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Mesa-Verde-Outcrop.jpg\"]}", + "last_update": "2016-09-14T15:28:42", + "created": "2016-09-14T14:46:27", + "active": "2016-09-15T17:56:33", + "last_payout": "1970-01-01T00:00:00", + "depth": 0, + "children": 11, + "net_rshares": "10001278717808", + "abs_rshares": "10027068167722", + "vote_rshares": "9951683621819", + "children_abs_rshares": "10027068167722", + "cashout_time": "2016-09-15T21:34:14", + "max_cashout_time": "2016-09-28T14:50:51", + "total_vote_weight": "13144057225008877639", + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 44, + "root_author": "skypilot", + "root_permlink": "melting-rock", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 760944, + "author": "skypilot", + "permlink": "my-first-real-post-was-a-success-and-i-would-like-to-share-the-story", + "category": "introduceyourself", + "parent_author": "", + "parent_permlink": "introduceyourself", + "title": "My first real post was a success and I would like to share the story.", + "body": "http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\nFellow steemers ! \n\nMy experiment on Steemit was a success. I earned $2,184.74 \n\nThe posts automatically last only 24 hours. If many people like them and upvote then they extend an additional 12 hours for a total run of 36 hours. Which mine did. \n\nOnce the post run-time is finished the post was automatically moved out of the 5 categories it was tagged in and placed in my blog page. It is still available for viewing and people can still vote on it, you can find it on my blog page. This is a necessary function of the fairness and democratic operations of this amazing website!!! How awesome is this!?!\n\nThis test was primarily undertaken to review the marketing viability of my project to the public, to see if everyone liked the concept and content. From the responses at the bottom of the post which are permanent, I would think the answer is a resounding yes. \n\nMore to come from this experiment later. Suffice to say I have established a presence and become part of the community on the most powerful cutting edge - platform/community in this new and very exciting cryptocurrency-based content-support market. \n\nI have taken the funds, held some as steem cryptocurrency and transferred the rest onto a cryptocurrency exchange called Poloniex where I am holding steem dollars (SBD) and watching the various cryptocurrencies valuation. The current SBD will increase in value or at any time I can transfer these to bitcoin or any of a number of other currencies.\n\nThis is absolutely cool!!!Thank you to the 217 steemers that upvoted me and even to the 2 that downvoted it...I sort of would like to know why but it really does not matter. \n\nPlease continue to enjoy my blog and I would love to continue building support for my project from the steemit community. I am a now a firm believer and strong advocate for steemit. \n\nMore to follow.\n\nz", + "json_metadata": "{\"tags\":[\"introduceyourself\",\"photography\",\"art\",\"music\",\"travel\"],\"image\":[\"http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\"]}", + "last_update": "2016-08-27T18:42:45", + "created": "2016-08-26T22:53:00", + "active": "2016-08-28T03:46:18", + "last_payout": "2016-08-28T01:41:27", + "depth": 0, + "children": 13, + "net_rshares": 1230392222, + "abs_rshares": 1230392222, + "vote_rshares": 1230392222, + "children_abs_rshares": 1230392222, + "cashout_time": "2016-09-27T01:41:27", + "max_cashout_time": "2016-09-11T03:46:21", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "1501", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "420", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 1363, + "net_votes": 44, + "root_author": "skypilot", + "root_permlink": "my-first-real-post-was-a-success-and-i-would-like-to-share-the-story", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 772283, + "author": "skypilot", + "permlink": "my-steemitphotochallenge-entry-for-contest-6-by-zedekiah-morse", + "category": "photography", + "parent_author": "", + "parent_permlink": "photography", + "title": "SteemitPhotoChallenge Entry #6 - Unusual Formations", + "body": "For my entries into the 6th steemit photo contest I've chosen 3 unusual formations to share.\n\nIf you don't know anything about my work please visit my introduction post: \nhttps://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse \n\n**Image 1: BLUE POINT BAY**\nThis image was taken above Blue Point Bay on Lake Mead, Nevada. A powerful rain storm had just passed over and the earth was still soaked. The sun was coming back out and these vibrant, rich colors are from the water soaked natural minerals reacting to the bright sunlight. The green areas along the edge are the shallow water of the lake. I am about 2,000 feet above the lake shooting straight down from the airplane.\n\nhttp://geraldzmorse.com/images/steemit/BuePointBay.jpg\n\n**Image 2: SP VOLCANO** \nThis is a volcano just north of Flagstaff, Arizona simply known as \"SP Volcano\". I have searched high and low and cannot find any history on how it got this name. Certainly the Navajo First Nations called it something but I couldn't find mention of it anywhere. I love that this is a perfect representation of time-stood-still. You can see the how lava flowed down from the volcano, spilling out across the desert, coming to a standstill where it froze in time.\n\nhttp://geraldzmorse.com/images/steemit/SPVolcano.jpg\n\n**Image 3: CASTLE PEAKS**\nThis is Castle Peaks on the New York Mountains in the Mojave Desert. When you are driving from Los Angeles on highway 15 to Las Vegas, you can see these peaks in the distance across the valley as you come down the last hill towards Primm, Nevada. I took this picture from about 1,000 feet above the ground and what struck me about the formation was the small replica formation that sits just below Castle Peak, mirroring it. It is like a miniature formation of the larger peaks! Very strange. \n\nhttp://geraldzmorse.com/images/steemit/CastlePeaksNorth.jpg\n\nOk Thanks and hope you enjoy the images. If you have not seen my original post explaining what I do please follow the link at the top and come on by! \n\nYehaw", + "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"art\",\"travel\"],\"links\":[\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\"]}", + "last_update": "2016-08-28T07:40:03", + "created": "2016-08-27T23:27:30", + "active": "2016-09-07T16:30:00", + "last_payout": "2016-08-29T02:59:57", + "depth": 0, + "children": 12, + "net_rshares": "6808732560425", + "abs_rshares": "6808732560425", + "vote_rshares": "6808732560425", + "children_abs_rshares": "6808732560425", + "cashout_time": "2016-09-28T02:59:57", + "max_cashout_time": "2016-09-12T05:58:45", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "212", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "41", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 199, + "net_votes": 30, + "root_author": "skypilot", + "root_permlink": "my-steemitphotochallenge-entry-for-contest-6-by-zedekiah-morse", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json new file mode 100644 index 00000000..023ade2b --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 608846, + "author": "a-m3001", + "permlink": "how-i-managed-depression-and-work", + "category": "story", + "parent_author": "", + "parent_permlink": "story", + "title": "How I managed depression and work", + "body": "Hi, I'm A.M for now, I'm in my mid-20s and want to share my story with working and facing this thing called life after I watched a lot of YouTubers like Thomas James \"TomSka\" David Brown “boyinaband” and many others who have very openly shared their hardships, they have inspired me to write this….. Whatever this is.\nI don't consider myself a good writer so bare with me here.\nTo try to keep this post organized and make sense I'll highlight the point I want to talk about and tell the relevant part of my story, you can connect the pieces all together at the end.\n\n**First how am I?** \nI grow up in the countryside I went to normal school when I was yang, because I was the quiet introvert and wasn't from the town I was in I got bullied a lot for most of my time at school, I got through school time knowing just two friends, I was OK with it.\nI genuinely lost interest in school when I was in the ninth grade It seemed more like a memory test than a way of learning so I started looking for ways to make money, \"why waste time learning things irrelevant in real life if I can make money now\" my naive 16 years old self said, don't get me wrong I didn't think I was done with learning I just wanted to learn in my own way, and I didn't stop school, now I'm in part time Business school, so back then I started looking for any way to make money in the last 5 year I tried: working in sales for over 2 years, selling products online, becoming instructor online, worked as SEO & social media consultant, tried starting my own business for 4 times, and for the last year and half I taught myself how to program and how to use Unity game engine and now I'm working on my first game, I can easily and proudly say that I didn't succeed at any of what I did so far, but I've learned a lot every time and I would do it all over again if I had the chance.\nThe process of picking myself up every single freaking time was a living hell and I got desperate many times.\nbecause I saw a lot of people feeling relevant to what David said in his video I want to share how I managed to keep my sanity and my opinion about some point he brought in his video.\n\n\n**Not thinking your work is good enough:**\nIs that really a bad thing? not being satisfied with what you just accomplished is a sign that you always look forward to what you still can do.\nI remember after I published my first course on Udemy I got invited to a hangout and I went for it I thought I'll give myself some slack, while I was there someone shouted out \"this guy here just published his first course let all give him a clap shall we\" for some reason he thought that was a good idea, I don't think I can blame him his intentions were good, I never tried to put a smile as hard as I did that moment I guess I just didn't want to look like a selfish prick, but the truth that I wasn't happy about what I accomplished I was thinking about my bad English poor structure of the course and was I being a sellout for trying to sell my knowledge? halfway of creating the course, I was already thinking about 5 other things I wanted to do next.\nI think there's nothing wrong about not being satisfied with what you finish, I think It's a good sign of an ambitious creator.\nWhen you first make the decision to accomplish something It looks like that godly thing that you think It would feel good to have or do, but when you start turning that big sexy thing to a small to-do list somewhere the appeal you had to that thing will disappear to a certain point, it's not that godly sexy thing you thought about before it's becoming a part of your routine now you know the process of doing that thing It's not a mystery anymore.\nI think that's why they say: \"It's about the journey, not the destination\".\n\n\n**Not taking care of yourself:**\nIt's hard to keep taking care of yourself to others people standards, whether it's about looking ripped putting makeup or buying the latest clothes, instead find your own save point and move forward from there if you feel the need to.\nWhen I was working in seals I had to look my best most of the time's which was exhausting more than the work itself and what made it worst is that some coworkers starting hinting that I need to start working out to look sharper and more confident.\nBecause I was desperate for results from my work I started going to the gym and I got stuck at joining for a month or two then giving up for half a year couple of times, every time I stopped going to the gym I over beat myself saying that I need this for my work, I need more money to do a lot of things, if this work didn't go well what else Am I going to do, eventually I usually took it out on food, I don't even want to start thinking what would have happened to me if my body was able to store fat.\nTrying to take care of yourself to others standards can be very exhausting, I felt down because I was putting so much effort in things I don't really care about to get others approval, I genuinely don't care about having a ripped body, it would look cool sure but I'm not willing to put all that effort into health and looks at least for now, who knows maybe in the future things will be better and I'll be willing to put the effort necessary to have 6 pack abs (wink wink ladies).\nNowadays I eat better than I used to, I still eat some junk food but things are much much better than they were 2 years ago, when I fell down I still go buy and drink a liter of Pepsi but at some point that was my morning coffee, as for my looks I cut my hair very short so I would have one less thing to worry about in the morning, I shave my beard once every couple of weeks I change my cloth every two or three days even if I didn't go out.\nThe point is I take care of myself for my own sack, It was much worse before and I'll always keep working to improve pit by pit.\nIt's about building habits not getting motivated for a couple of weeks then beating yourself for not being able to keep up.\n\n\n**Not mastering one skill:**\nI worked in sales, instructed online, worked as SEO and social media consultant, self taught myself how to program and make games but I don’t think I’m the right person to talk about this, all I’m saying that if you didn’t find that one true call that is right for you, you might be a “multipotentialite” if you want to know what exactly does this mean I urge you to watch Emilie talk at TedX\nhttps://www.youtube.com/watch?v=QJORi5VO1F8\nAnd check the blog too if you want to know more \nhttp://puttylike.com/\n\n**Everything happens for a reason........ or does it?**\nWhen I was young I was fortunate to know a good old religious man, I don’t know about your perspective about religions but hear me out this isn’t a sermon, I still remember when he tried to teach me that everything happens for a reason I was like “WHAT……. Oh really, then what is the reason for this and this and that” my question didn’t stop and I wasn’t asking nicely either yet, somehow he was calm about it like some kind of monk, I don’t know if I ruined his day or not but I feel bad for taking the world misery out on him that day, he was just a simple man who was doing what he think is good for others, his intentions were good but unfortunately for him I wasn’t a simple person, I overthink everything and everyone, it’s my blessing and my curse, later I told my family about him and I was surprised that they knew him, apparently everyone knows each other in the countryside, they told me about what he was facing lately personally, financially, and emotionally, I didn’t believe that someone who is facing all that isn’t depressed or angry and even trying to do good for others at least by his believes, I wanted to know more about him he got my interest, I wanted to know if he’s an imposter who is just putting a good face or not because a part of me didn’t believe how can he be that good, I kept asking about him from time to time and sometimes I even went to his “lessons”, eventually I went to face him with what I know about him like a detective facing a criminal, the crime of being that simple yet trying to be better than me, It’s pathetic I know It’s just how my brain works sometimes, because I used to take pride of being logical about everything and not believing in anything without questioning it, it bothered me how can he be at peace with his life and I’m not even that he’s facing a lot more than I’m, I faced him and told him everything then asked how can you be this calm about everything that is happening in your life, he had a faint smile and said “I don’t know the reason for everything that is happening right now but everything happens for a reason” I remember holding my fist hard and walking away, maybe I was holding my fist trying not to hit him for not being realistic like me or probably not to beat myself for not being half the man that he was.\nI don’t know about your perspective about religions and I’m not here to tell you about mine but I respect that some religions teach that everything happens for a reason, is it the truth? Does everything happens for a reason? I don’t know, I don’t think that is even the point, It’s silly to even get in an argument about this because no one can be sure about it, it’s simply just a belief, it’s simply teach you to not overthink about the reasons for everything around you, just learn from it if you can and focus on what you can do, it’s kind of funny for me to tell you not to overthink about somethings because I’m sure my 19 year old me would punch me right in the face, but it’s just too draining and exhausting to try to find a reason for every bad thing that have happened to me or to others.\nIn the last three years two of my best friends died, the first one I knew for about nine years and the other one for around five, both killed, both in a way they didn’t deserve to, each time I had to force myself to focus on the 0.0000001% full part of the cup or else I would have lose my sanity.\nI would hate to think what would be my thought process if someone tried to sell me religion like a product, some of them would be like “Hi son, you should follow my beliefs because I’m 100% sure that I’m right and everybody else is wrong and if you don’t, well you’re FU**ED” that would have disfigured some of the beliefs that helped me get better.\nControlling your stream of thoughts will be the hardest thing you’ll ever have to do in your life, but if mastered it you’ll become unstoppable.\n\n\nI’ve been getting into the game industry for around year and half now, I don’t have any experiance in the field but I’ve other experiences that many don’t, working in sales made me learn a lot about people's motivations and incentives, I saw a lot of people jump to make purchase while other chicken out last minute, you don’t get to learn about this in a book or an NLP course, you only get to learn this experience by working in sales first hand, working as an SEO and social media consultant made me care about the little details like posting in the right social medias that is more relevant to your audience, more isn’t always better, choosing the right words colors and timing for best result, sometimes modifying your content for a better marketing or not going into a certain niche even if there’s an audience for it because it doesn’t suit your brand, teaching online made me learn that the selling point isn’t the end goal, helping and mentoring students even after they have purchased the course was way more important than I thought, the feedback I got about the course was crucial to take the course to the next level and some student even helped me with some marketing.\nIf you know anything about the mobile game industry you can see how these experiences can be helpful, I can imagine the kind of journey I want to create for the player because I can build the motivations and incentives I want for him, while I’m building the player journey I’ll always keep in mind to put the monetization and ads the right way so all of them can work seamlessly together for a better player experience, and taking care of existing players and community will always be a priority, I wasn’t happy and cheerful when I had to learn these experiences the hard way, I thought I was just failing, I even remember crying myself to sleep every time I decided to pull the plug on something I was working on, but eventually It worked out somehow I think.\n“you can't connect the dots looking forward, you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something - your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life”.\nSteve Jobs\n\n\nI want to share some of the tricks I used that helped my in general to get my life together:\n\n**Music**\nlisten to cheerful music, even if it might not be exactly what you listen to usually but try them for a while, my favorite type or music is Rock and Metal it’s loud and make me feel empowered but sometimes it's not what I need to change my mood so I started listening to electro music mostly Drum & bass, I didn’t like it at first, I’m human I don’t like to change, but forcing myself to listen to it for while change my perspective about it and I started listening to it while I’m working, and it worked.\n\n\n**habits not motivation**\nWe’re slaves to our habits, it’s exhausting to do something that’s you’re not used to for quite a while, so invest your effort and time to build your habits pit by pit no matter how slow it will take, measure your progress and celebrate your success no matter how small they’re, it’ll make all the difference in your life in the long term.\n\n**work in a group**\nNo matter how introverted person you think you’re, you’re still human at the end of day and you need your dose of human interaction so try to work in group if you can, if you don’t have that luxury (like me) work out side from time to time, library, coffee shop, parks all works, changing your surrounding and environment can change your mood, you can try changing your room\\office decor every couple of weeks too.\n\n**warm-blooded pet**\nGet a warm-blooded pet it helps, I tried fish and turtles but didn’t really work for me they just stared at me with their empty eyes, I have a cat for two year now and It helped, maybe it’s having the sense of that there is a creature that needs you to look after him, it’s helped me not to feel completely unworthy in some bad day.\n\n\nFinally I hope this help you in any way it can, and hope it will find its way to all who needs it.", + "json_metadata": "{\"tags\":[\"story\",\"philosophy\",\"life\",\"psychology\",\"secret-writer\"],\"links\":[\"https://www.youtube.com/watch?v=QJORi5VO1F8\"]}", + "last_update": "2016-08-15T05:28:12", + "created": "2016-08-15T04:53:33", + "active": "2016-08-15T05:28:12", + "last_payout": "2016-09-14T16:58:03", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 4, + "root_author": "a-m3001", + "root_permlink": "how-i-managed-depression-and-work", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 497962, + "author": "a-man", + "permlink": "re-jamiecrypto-raising-leaders-instead-of-rulers-20160807t213425757z", + "category": "homeschooling", + "parent_author": "jamiecrypto", + "parent_permlink": "raising-leaders-instead-of-rulers", + "title": "", + "body": "Trying to repost to FB", + "json_metadata": "{\"tags\":[\"homeschooling\"]}", + "last_update": "2016-08-07T21:34:24", + "created": "2016-08-07T21:34:24", + "active": "2016-08-07T21:34:24", + "last_payout": "2016-09-07T09:52:42", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "jamiecrypto", + "root_permlink": "raising-leaders-instead-of-rulers", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 359861, + "author": "a-spears", + "permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", + "category": "life", + "parent_author": "agent", + "parent_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "title": "", + "body": "Finally someone is saying it out loud. thank you!!", + "json_metadata": "{\"tags\":[\"life\"]}", + "last_update": "2016-07-30T19:38:00", + "created": "2016-07-30T19:37:48", + "active": "2016-07-30T21:34:27", + "last_payout": "2016-08-30T10:16:39", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "agent", + "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 72421, + "author": "a-spears", + "permlink": "re-ashleybr-test-20160713t203411015z", + "category": "travel", + "parent_author": "ashleybr", + "parent_permlink": "test", + "title": "", + "body": "add katie-lynn boulard on FB, she's my friend and she's currently doing an exchange in bangkok. She's really sweet and she said you can come to hers for the evening if you want to have some company. she only has a room so no bed for you :/ but at least something, I'm sure she can give you a meal and just some company. :))", + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_update": "2016-07-13T20:34:12", + "created": "2016-07-13T20:34:12", + "active": "2016-07-13T21:01:48", + "last_payout": "2016-08-25T12:51:45", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 20, + "root_author": "ashleybr", + "root_permlink": "test", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 431883, + "author": "a11at", + "permlink": "ai-revolution-101", + "category": "steemit", + "parent_author": "", + "parent_permlink": "steemit", + "title": "AI Revolution 101", + "body": "https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\n\nAI Revolution 101\nOur last invention, greatest nightmare, or pathway to utopia?\nAbout\nThis essay, originally published in eight short parts, aims to condense the current knowledge on Artificial Intelligence. It explores the state of AI development, overviews its challenges and dangers, features work by the most significant scientists, and describes the main predictions of possible AI outcomes. This project is an adaptation and major shortening of the two–part essay AI Revolution by Tim Urban of Wait But Why. I shortened it by a factor of 3, recreated all images, and tweaked it a bit. Read more on why/how I wrote it here.\nIntroduction\nAssuming that human scientific activity continues without major disruptions, artificial intelligence may become either the most positive transformation of our history or, as many fear, our most dangerous invention of all. AI research is on a steady path to develop a computer that has cognitive abilities equal to the human brain, most likely within three decades (timeline in chapter 5). From what most AI scientists predict, this invention may enable very rapid improvements (called fast take-off), toward something much more powerful — Artificial Super Intelligence — an entity smarter than all of humanity combined (more on ASI in chapter 3). We are not talking about some imaginary future. The first level of AI development is gradually appearing in the technology we use everyday (newest AI advancements in chapter 2). With every coming year these advancements will accelerate and the technology will become more complex, addictive, and ubiquitous. We will continue to outsource more and more kinds of mental work to computers, disrupting every part of our reality: the way we organize ourselves and our work, form communities, and experience the world.\nExponential Growth\nThe Guiding Principle Behind Technological Progress\nTo more intuitively grasp the guiding principles of AI revolution, let’s first step away from scientific research. Let me invite you to take part in a story. Imagine that you’ve received a time machine and been given a quest to bring somebody from the past. The goal is to shock them by showing them the technological and cultural advancements of our time, to such a degree that this person would perform SAFD (Spinning Around From Disbelief).\n\nSo you wonder which era should you time-travel to, and decide to hop back around 200 years. You get to the early 1800s, retrieve a guy and bring him back to 2016. You “…walk him around and watch him react to everything. It’s impossible for us to understand what it would be like for him to see shiny capsules racing by on a highway, talk to people who had been on the other side of the ocean earlier in the day, watch sports that were being played 1,000 miles away, hear a musical performance that happened 50 years ago, and play with …[a] magical wizard rectangle that he could use to capture a real-life image or record a living moment, generate a map with a paranormal moving blue dot that shows him where he is, look at someone’s face and chat with them even though they’re on the other side of the country, and worlds of other inconceivable sorcery.”¹ It doesn’t take much. After two minutes he is SAFDing.\nNow, both of you want to try the same thing, see somebody Spinning Around From Disbelief, but in your new friend’s era. Since 200 years worked, you jump back to the 1600s and bring a guy to the 1800s. He’s certainly genuinely interested in what he sees. However, you feel it with confidence — SAFD will never happen to him. You feel that you need to jump back again, but somewhere radically further. You settle on rewinding the clock 15,000 years, to the times “…before the First Agricultural Revolution gave rise to the first cities and the concept of civilisations.”² You bring someone from the hunter-gatherer world and show him “…the vast human empires of 1750 with their towering churches, their ocean-crossing ships, their concept of being “inside,” and their enormous mountain of collective, accumulated human knowledge and discovery”³ — in forms of books. It doesn’t take much. He is SAFDing in the first two minutes.\nNow there are three of you, enormously excited to do it again. You know that it doesn’t make sense to go back another 15,000, 30,000 or 45,000 years. You have to jump back, again, radically further. So you pick up a guy from 100,000 years ago and you you walk with him into large tribes with organized, sophisticated social hierarchies. He encounters a variety of hunting weapons, sophisticated tools, sees fire and for the first time experiences language in the form of signs and sounds. You get the idea, it has to be immensely mind-blowing. He is SAFDing after two minutes.\nSo what happened? Why did the last guy had to hop → 100,000 years, the next one → 15,000 years, and the guy who was hopping to our times only → 200 years?\n\nhttps://cdn-images-1.medium.com/max/2000/1*Wbd0td3DqD3pJo7_YHjkbQ.gif\n\n“This happens because more advanced societies have the ability to progress at a faster rate than less advanced societies — because they’re more advanced. [1800s] humanity knew more and had better technology…”⁴, so it’s no wonder they could make further advancements than humanity from 15,000 years ago. The time to achieve SAFD shrank from ~100,000 years to ~200 years and if we look into the future it will rapidly shrink even further. Ray Kurzweil, AI expert and scientist, predicts that a “…20th century’s worth of progress happened between 2000 and 2014 and that another 20th century’s worth of progress will happen by 2021, in only seven years⁵…A couple decades later, he believes a 20th century’s worth of progress will happen multiple times in the same year, and even later, in less than one month⁶…Kurzweil believes that the 21st century will achieve 1,000 times the progress of the 20th century.”⁷\n“Logic also suggests that if the most advanced species on a planet keeps making larger and larger leaps forward at an ever-faster rate, at some point, they’ll make a leap so great that it completely alters life as they know it and the perception they have of what it means to be a human. Kind of like how evolution kept making great leaps toward intelligence until finally it made such a large leap to the human being that it completely altered what it meant for any creature to live on planet Earth. And if you spend some time reading about what’s going on today in science and technology, you start to see a lot of signs quietly hinting that life as we currently know it cannot withstand the leap that’s coming next.”⁸\nThe Road to Artificial General Intelligence\nBuilding a Computer as Smart as Humans\nArtificial Intelligence, or AI, is a broad term for the advancement of intelligence in computers. Despite varied opinions on this topic, most experts agree that there are three categories, or calibers, of AI development. They are:\nANI: Artificial Narrow Intelligence\n1st intelligence caliber. “AI that specializes in one area. There’s AI that can beat the world chess champion in chess, but that’s the only thing it does.”⁹\nAGI: Artificial General Intelligence\n2nd intelligence caliber. AI that reaches and then passes the intelligence level of a human, meaning it has the ability to “reason, plan, solve problems, think abstractly, comprehend complex ideas, learn quickly, and learn from experience.”¹⁰\nASI: Artificial Super Intelligence\n3rd intelligence caliber. AI that achieves a level of intelligence smarter than all of humanity combined — “ranging from just a little smarter … to one trillion times smarter.”¹¹\n\nhttps://cdn-images-1.medium.com/max/800/1*5AkzXZJoVXRrGNSOO8ZojQ.gif\n\nWhere are we currently?\n“As of now, humans have conquered the lowest caliber of AI — ANI — in many ways, and it’s everywhere:”¹²\n“Cars are full of ANI systems, from the computer that figures out when the anti-lock brakes kick in, to the computer that tunes the parameters of the fuel injection systems.”¹³\n“Google search is one large ANI brain with incredibly sophisticated methods for ranking pages and figuring out what to show you in particular. Same goes for Facebook’s Newsfeed.”¹⁴\nEmail spam filters “start off loaded with intelligence about how to figure out what’s spam and what’s not, and then it learns and tailors its intelligence to your particular preferences.”¹⁵\nPassenger planes are flown almost entirely by ANI, without the help of humans.\n“Google’s self-driving car, which is being tested now, will contain robust ANI systems that allow it to perceive and react to the world around it.”¹⁶\n“Your phone is a little ANI factory … you navigate using your map app, receive tailored music recommendations from Pandora, check tomorrow’s weather, talk to Siri.”¹⁷\n“The world’s best Checkers, Chess, Scrabble, Backgammon, and Othello players are now all ANI systems.”¹⁸\n“Sophisticated ANI systems are widely used in sectors and industries like military, manufacturing, and finance (algorithmic high-frequency AI traders account for more than half of equity shares traded on US markets¹⁹).”²⁰\n“ANI systems as they are now aren’t especially scary. At worst, a glitchy or badly-programed ANI can cause an isolated catastrophe like”²¹ a plane crash, a nuclear power plant malfunction, or “a financial markets disaster (like the 2010 Flash Crash when an ANI program reacted the wrong way to an unexpected situation and caused the stock market to briefly plummet, taking $1 trillion of market value with it, only part of which was recovered when the mistake was corrected) … But while ANI doesn’t have the capability to cause an existential threat, we should see this increasingly large and complex ecosystem of relatively-harmless ANI as a precursor of the world-altering hurricane that’s on the way. Each new ANI innovation quietly adds another brick onto the road to AGI and ASI.”²²\n\nhttps://cdn-images-1.medium.com/max/2000/1*Ia8wUuZPxpUNzvUjNRsxpA.gif\n\nWhat’s Next? Challenges Behind Reaching AGI\n“Nothing will make you appreciate human intelligence like learning about how unbelievably challenging it is to try to create a computer as smart as we are … Build a computer that can multiply ten-digit numbers in a split second — incredibly easy. Build one that can look at a dog and answer whether it’s a dog or a cat — spectacularly difficult. Make AI that can beat any human in chess? Done. Make one that can read a paragraph from a six-year-old’s picture book and not just recognise the words but understand the meaning of them? Google is currently spending billions of dollars trying to do it.”²³\nWhy are “hard things — like calculus, financial market strategy, and language translation … mind-numbingly easy for a computer, while easy things — like vision, motion, movement, and perception — are insanely hard for it”²⁴?\n“Things that seem easy to us are actually unbelievably complicated. They only seem easy because those skills have been optimized in us (and most animals) by hundreds of million years of animal evolution. When you reach your hand up toward an object, the muscles, tendons, and bones in your shoulder, elbow, and wrist instantly perform a long series of physics operations, in conjunction with your eyes, to allow you to move your hand in a straight line through three dimensions … On the other hand, multiplying big numbers or playing chess are new activities for biological creatures and we haven’t had any time to evolve a proficiency at them, so a computer doesn’t need to work too hard to beat us.”²⁵\n\nhttps://cdn-images-1.medium.com/max/1200/0*E-qdF22nxvOrVPxP.\n\nWhen you look at picture A, “you and a computer both can figure out that it’s a rectangle with two distinct shades, alternating. Tied so far.”²⁶\nPicture B. “You have no problem giving a full description of the various opaque and translucent cylinders, slats, and 3-D corners, but the computer would fail miserably. It would describe what it sees — a variety of two-dimensional shapes in several different shades — which is actually what’s there.”²⁷ “Your brain is doing a ton of fancy shit to interpret the implied depth, shade-mixing, and room lighting the picture is trying to portray.”²⁸\nLooking at picture C, “a computer sees a two-dimensional white, black, and gray collage, while you easily see what it really is”²⁹ — a photo of a girl and a dog standing on a rocky shore.\n“And everything we just mentioned is still only taking in visual information and processing it. To be human-level intelligent, a computer would have to understand things like the difference between subtle facial expressions, the distinction between being pleased, relieved and content”³⁰.\nHow will computers reach even higher abilities like complex reasoning, interpreting data, and associating ideas from separate fields (domain-general knowledge)?\n“Building skyscrapers, putting humans in space, figuring out the details of how the Big Bang went down — all far easier than understanding our own brain or how to make something as cool as it. As of now, the human brain is the most complex object in the known universe.”³¹\nBuilding Hardware\nIf an artificial intelligence is going to be as intelligent as the human brain, one crucial thing has to happen — the AI “needs to equal the brain’s raw computing capacity. One way to express this capacity is in the total calculations per second the brain could manage.”³²\n\nThe challenge is that currently only a few of the brain’s regions are precisely measured. However, Ray Kurzweil, has developed a method for estimating the total cps of the human brain. He arrived at this estimate by taking the cps from one brain region and multiplying it proportionally to the weight of that region, compared to the weight of the whole brain. “He did this a bunch of times with various professional estimates of different regions, and the total always arrived in the same ballpark — around 10¹⁶, or 10 quadrillion cps.”³³\n“Currently, the world’s fastest supercomputer, China’s Tianhe-2, has actually beaten that number, clocking in at about 34 quadrillion cps.”³⁴ But Tianhe-2 is also monstrous, “taking up 720 square meters of space, using 24 megawatts of power (the brain runs on just 20 watts), and costing $390 million to build. Not especially applicable to wide usage, or even most commercial or industrial usage yet.”³⁵\n“Kurzweil suggests that we think about the state of computers by looking at how many cps you can buy for $1,000. When that number reaches human-level — 10 quadrillion cps — then that’ll mean AGI could become a very real part of life.”³⁶\nCurrently we’re only at about 10¹⁰ (10 trillion) cps per $1,000. However, historically reliable Moore’s Law states “that the world’s maximum computing power doubles approximately every two years, meaning computer hardware advancement, like general human advancement through history, grows exponentially³⁷ … right on pace with this graph’s predicted trajectory:”³⁸\n\nhttps://cdn-images-1.medium.com/max/800/1*4qcqwbsWjvWh-BWPnAsp6g.gif\n\nThis dynamic “puts us right on pace to get to an affordable computer by 2025 that rivals the power of the brain … But raw computational power alone doesn’t make a computer generally intelligent — the next question is, how do we bring human-level intelligence to all that power?”³⁹\nBuilding Software\nThe hardest part of creating AGI is learning how to develop its software. “The truth is, no one really knows how to make it smart — we’re still debating how to make a computer human-level intelligent and capable of knowing what a dog and a weird-written B and a mediocre movie is.”⁴⁰ But there are a couple of strategies. These are the three most common:\nCopy how the brain works.\nThe most straight-forward idea is to plagiarize the brain, and build the computer’s architecture with close resemblance to how a brain is structured. One example “is the artificial neural network. It starts out as a network of transistor ‘neurons,’ connected to each other with inputs and outputs, and it knows nothing — like an infant brain. The way it ‘learns’ is it tries to do a task, say handwriting recognition, and at first, its neural firings and subsequent guesses at deciphering each letter will be completely random. But when it’s told it got something right, the transistor connections in the firing pathways that happened to create that answer are strengthened; when it’s told it was wrong, those pathways’ connections are weakened. After a lot of this trial and feedback, the network has, by itself, formed smart neural pathways and the machine has become optimized for the task.”⁴¹\nThe second, more radical approach to plagiarism is whole brain emulation. Scientists take a real brain, cut it into a large number of tiny slices to look at the neural connections and replicate them in a computer as software. If that method is ever successful, we will have “a computer officially capable of everything the brain is capable of — it would just need to learn and gather information … How far are we from achieving whole brain emulation? Well so far, we’ve just recently been able to emulate a 1mm-long flatworm brain, which consists of just 302 total neurons.”⁴² To put this into perspective, the human brain consists of 86 billion neurons linked by trillions of synapses.\n2. Introduce evolution to computers.\n“The fact is, even if we can emulate a brain, that might be like trying to build an airplane by copying a bird’s wing-flapping motions — often, machines are best designed using a fresh, machine-oriented approach, not by mimicking biology exactly.”⁴³ If the brain is just too complex for us to digitally replicate, we could try to emulate evolution instead. This uses a process called genetic algorithms. “A group of computers would try to do tasks, and the most successful ones would be bred with each other by having half of each of their programming merged together into a new computer. The less successful ones would be eliminated.”⁴⁴ Speed and a goal-oriented approach are the advantages that artificial evolution has over biological evolution. “Over many, many iterations, this natural selection process would produce better and better computers. The challenge would be creating an automated evaluation and breeding cycle so this evolution process could run on its own.”⁴⁵\n3. “Make this whole thing the computer’s problem, not ours.”⁴⁶\nThe last concept is the simplest, but probably the scariest of them all. “We’d build a computer whose two major skills would be doing research on AI and coding changes into itself — allowing it to not only learn but to improve its own architecture. We’d teach computers to be computer scientists so they could bootstrap their own development.”⁴⁷ This is the likeliest way to get AGI soon that we know of.\nAll these software advances may seem slow or a little bit intangible, but as it is with the sciences, one minor innovation can suddenly accelerate the pace of developments. Kind of like the aftermath of the Copernican revolution — the discovery that suddenly made all the complicated mathematics of the planets’ trajectories much easier to calculate, which enabled a multitude of other innovations. Also, the “exponential growth is intense and what seems like a snail’s pace of advancement can quickly race upwards.”⁴⁸\n\nhttps://cdn-images-1.medium.com/max/1200/1*BHwAlKJFYwKYEzZlitNTvQ.gif\n\nThe Road to Artificial Super Intelligence\nAn Entity Smarter than all of Humanity Combined\nIt’s very real that at some point we will achieve AGI: software that has achieved human-level, or beyond human-level, intelligence. Does this mean that at that very moment the computers will be equally capable as us? Actually, not at all — computers will be way more efficient. Because of the fact that they are electronic, they will have following advantages:\nSpeed. “The brain’s neurons max out at around 200 Hz, while today’s microprocessors … run at 2 GHz, or 10 million times faster.”⁵¹\nMemory. Forgetting or confusing things is much harder in an artificial world. Computers can memorize more things in one second than a human can in ten years. A computer’s memory is also more precise and has a much greater storage capacity.\nPerformance. “Computer transistors are more accurate than biological neurons, and they’re less likely to deteriorate (and can be repaired or replaced if they do). Human brains also get fatigued easily, while computers can run nonstop, at peak performance, 24/7.”⁵²\nCollective capability. Group work is ridiculously challenging because of time-consuming communication and complex social hierarchies. The bigger the group gets, the slower the output of each person becomes. AI, on the other hand, isn’t biologically constrained to one body, won’t have human cooperation problems, and is able to synchronize and update its own operating system.\nIntelligence Explosion\nWe need to realize that AI “wouldn’t see ‘human-level intelligence’ as some important milestone — it’s only a relevant marker from our point of view — and wouldn’t have any reason to ‘stop’ at our level. And given the advantages over us that even human intelligence-equivalent AGI would have, it’s pretty obvious that it would only hit human intelligence for a brief instant before racing onwards to the realm of superior-to-human intelligence.”⁵³\nThe true distinction between humans and ASI wouldn’t be its advantage in intelligence speed, but “in intelligence quality — which is something completely different. What makes humans so much more intellectually capable than chimps isn’t a difference in thinking speed — it’s that human brains contain a number of sophisticated cognitive modules that enable things like complex linguistic representations or longterm planning or abstract reasoning, that chimps’ brains do not have. Speeding up a chimp’s brain by thousands of times wouldn’t bring him to our level — even with a decade’s time of learning, he wouldn’t be able to figure out how to … ”⁵⁴ assemble a semi-complicated Lego model by looking at its manual — something a young human could achieve in a few minutes. “There are worlds of human cognitive function a chimp will simply never be capable of, no matter how much time he spends trying.”⁵⁵\n“And in the scheme of the biological intelligence range … the chimp-to-human quality intelligence gap is tiny.”⁵⁶\n\nhttps://cdn-images-1.medium.com/max/800/1*vnVWATTAMCwfnJu_iZn2RQ.jpeg\n\nIn order to render how big a deal it would be to exist with something that has a higher quality of intelligence than us, we need to imagine AI on the intelligence staircase two steps above us — “its increased cognitive ability over us would be as vast as the chimp–human gap … And like the chimp’s incapacity to ever absorb …”⁵⁷ what kind of magic happens in the mechanism of a doorknob — “we will never be able to even comprehend the things … [a machine of that intelligence] can do, even if the machine tried to explain them to us … And that’s only two steps above us.”⁵⁸\n“A machine on the second-to-highest step on that staircase would be to us as we are to ants.”⁵⁹ “Superintelligence of that magnitude is not something we can remotely grasp, any more than a bumblebee can wrap its head around Keynesian Economics. In our world, smart means a 130 IQ and stupid means an 85 IQ — we don’t have a word for an IQ of 12,952.”⁶⁰\n“But the kind of superintelligence we’re talking about today is something far beyond anything on this staircase. In an intelligence explosion — where the smarter a machine gets, the quicker it’s able to increase its own intelligence — a machine might take years to rise from … ”⁶¹ the intelligence of an ant to the intelligence of the average human, but it might take only another 40 days to become Einstein-smart. When that happens, “it works to improve its intelligence, with an Einstein-level intellect, it has an easier time and can make bigger leaps. These leaps will make it much smarter than any human, allowing it to make even bigger leaps.”⁶²\nFrom then on, following the rule of exponential advancements and utilizing the speed and efficiency of electrical circuits, it may perhaps take only 20 minutes to jump another step, “and by the time it’s ten steps above us, it might be jumping up in four-step leaps every second that goes by. Which is why we need to realize that it’s distinctly possible that very shortly after the big news story about the first machine reaching human-level AGI, we might be facing the reality of coexisting on the Earth with something that’s here on the staircase (or maybe a million times higher):”⁶³\n\nhttps://cdn-images-1.medium.com/max/800/0*LdJxmWCjSdweUKvb.\n\n“And since we just established that it’s a hopeless activity to try to understand the power of a machine only two steps above us, let’s very concretely state once and for all that there is no way to know what ASI will do or what the consequences will be for us. Anyone who pretends otherwise doesn’t understand what superintelligence means.”⁶⁴\n“If our meager brains were able to invent wifi, then something 100 or 1,000 or 1 billion times smarter than we are should have no problem controlling the positioning of each and every atom in the world in any way it likes, at any time — everything we consider magic, every power we imagine a supreme God to have will be as mundane an activity for the ASI as flipping on a light switch is for us.”⁶⁵\n“As far as we’re concerned, if an ASI comes into being, there is now an omnipotent God on Earth — and the all-important question for us is: Will it be a good god?”⁶⁶\nLet’s start from the brighter side of the story.\nHow Can ASI Change our World?\nSpeculations on Two Revolutionary Technologies\nNanotechnology\nNanotechnology is an idea that comes up “in almost everything you read about the future of AI.”⁶⁷ It’s the technology that works at the nano scale — from 1 to 100 nanometers. “A nanometer is a millionth of a millimeter. 1 nm–100 nm range encompasses viruses (100 nm accross), DNA (10 nm wide), and things as small as molecules like hemoglobin (5 nm) and medium molecules like glucose (1 nm). If/when we conquer nanotechnology, the next step will be the ability to manipulate individual atoms, which are only one order of magnitude smaller (~.1 nm).”⁶⁸\nTo put this into perspective, imagine a very tall human standing on the earth, with a head that reaches the International Space Station (431 km/268 mi high). The giant is reaching down with his hand (30 km/19 mi across) to build “objects using materials between the size of a grain of sand [.25 mm] and an eyeball [2.5 cm].”⁶⁹\n\nhttps://cdn-images-1.medium.com/max/1200/1*e9Ut3QT2F3tNh4h5U4rR8A.jpeg\n\n“Once we get nanotechnology down, we can use it to make tech devices, clothing, food, a variety of bio-related products — artificial blood cells, tiny virus or cancer-cell destroyers, muscle tissue, etc. — anything really. And in a world that uses nanotechnology, the cost of a material is no longer tied to its scarcity or the difficulty of its manufacturing process, but instead determined by how complicated its atomic structure is. In a nanotech world, a diamond might be cheaper than a pencil eraser.”⁷⁰\nOne of the proposed methods of nanotech assembly is to make “one that could self-replicate, and then let the reproduction process turn that one into two, those two then turn into four, four into eight, and in about a day, there’d be a few trillion of them ready to go.”⁷¹\nBut what if this process goes wrong or terrorists manage to get ahold of the technology? Let’s imagine a scenario where nanobots “would be designed to consume any carbon-based material in order to feed the replication process, and unpleasantly, all life is carbon-based. The Earth’s biomass contains about 1⁰⁴⁵ carbon atoms. A nanobot would consist of about 1⁰⁶ carbon atoms, so it would take 1⁰³⁹ nanobots to consume all life on Earth, which would happen in 130 replications. … Scientists think a nanobot could replicate in about 100 seconds, meaning this simple mistake would inconveniently end all life on Earth in 3.5 hours.”⁷²\nWe are not yet capable of harnessing nanotechnology — for good or for bad. “And it’s not clear if we’re underestimating, or overestimating, how hard it will be to get there. But we don’t seem to be that far away. Kurzweil predicts that we’ll get there by the 2020s.⁷³Governments know that nanotech could be an Earth-shaking development … The US, the EU, and Japan⁷⁴ have invested over a combined $5 billion so far”⁷⁵\nImmortality\n“Because everyone has always died, we live under the assumption … that death is inevitable. We think of aging like time — both keep moving and there’s nothing you can do to stop it.”⁷⁶ For centuries, poets and philosophers have wondered if consciousness doesn’t have to go the way of the body. W.B. Yeats describes us as “a soul fastened to a dying animal.”⁷⁷ Richard Feynman, Nobel awarded physicists, views death from a purely scientific standpoint:\n“It is one of the most remarkable things that in all of the biological sciences there is no clue as to the necessity of death. If you say we want to make perpetual motion, we have discovered enough laws as we studied physics to see that it is either absolutely impossible or else the laws are wrong. But there is nothing in biology yet found that indicates the inevitability of death. This suggests to me that it is not at all inevitable, and that it is only a matter of time before the biologists discover what it is that is causing us the trouble and that that terrible universal disease or temporariness of the human’s body will be cured.”⁷⁸\nTheory of great species attractors\nWhen we look at the history of biological life on earth, so far 99.9% of species have gone extinct. Nick Bostrom, Oxford professor and AI specialist, “calls extinction an attractor state — a place species are … falling into and from which no species ever returns.”⁷⁹\n\nhttps://cdn-images-1.medium.com/max/1200/0*o-MXeAYfUtWnOJKC.\n\n“And while most AI scientists … acknowledge that ASI would have the ability to send humans to extinction, many also believe that if used beneficially, ASI’s abilities could be used to bring individual humans, and the species as a whole, to a second attractor state — species immortality.”⁸⁰\n\nhttps://cdn-images-1.medium.com/max/1200/0*aYeNOSBxp4gieGwp.\n\n“Evolution had no good reason to extend our lifespans any longer than they are now … From an evolutionary point of view, the whole human species can thrive with a 30+ year lifespan” for each single human. It’s long enough to reproduce and raise children … so there’s no reason for mutations toward unusually long life being favored in the natural selection process.”⁸¹Though, “if you perfectly repaired or replaced a car’s parts whenever one of them began to wear down, the car would run forever. The human body isn’t any different — just far more complex … This seems absurd — but the body is just a bunch of atoms…”⁸² making up organically programmed DNA, which it is theoretically possible to manipulate. And something as powerful as ASI could help us master genetic engineering.\nRay Kurzweil believes that “artificial materials will be integrated into the body more and more … Organs could be replaced by super-advanced machine versions that would run forever and never fail.”⁸³ Red blood cells could be perfected by “red blood cell nanobots, who could power their own movement, eliminating the need for a heart at all … Nanotech theorist Robert A. Freitas has already designed blood cell replacements that, if one day implemented in the body, would allow a human to sprint for 15 minutes without taking a breath … [Kurzweil] even gets to the brain and believes we’ll enhance our mental activities to the point where humans will be able to think billions of times faster”⁸⁴ by integrating electrical components and being able to access online data.\n“Eventually, Kurzweil believes humans will reach a point when they’re entirely artificial, a time when we’ll look back at biological material and think how unbelievably primitive primitive it was that humans were ever made of that”⁸⁵and that humans aged, suffered from cancer, allowed random factors like microbes, diseases, accidents to harm us or make us disappear.”\n\nhttps://cdn-images-1.medium.com/max/2000/1*NcWWmd677RVWQRpLsz5X9g.jpeg\n\nWhen Will The First Machine Become Superintelligent?\nPredictions from Top AI Experts\n“How long until the first machine reaches superintelligence? Not shockingly, opinions vary wildly, and this is a heated debate among scientists and thinkers. Many, like professor Vernor Vinge, scientist Ben Goertzel, Sun Microsystems co-founder Bill Joy, or, most famously, inventor and futurist Ray Kurzweil, agree with machine learning expert Jeremy Howard when he puts up this graph during a TED Talk\n\n“Those people subscribe to the belief that this is happening soon — that exponential growth is at work and machine learning, though only slowly creeping up on us now, will blow right past us within the next few decades.\n“Others, like Microsoft co-founder Paul Allen, research psychologist Gary Marcus, NYU computer scientist Ernest Davis, and tech entrepreneur Mitch Kapor, believe that thinkers like Kurzweil are vastly underestimating the magnitude of the challenge [and the transition will actually take much more time] …\n“The Kurzweil camp would counter that the only underestimating that’s happening is the underappreciation of exponential growth, and they’d compare the doubters to those who looked at the slow-growing seedling of the internet in 1985 and argued that there was no way it would amount to anything impactful in the near future.\n“The doubters might argue back that the progress needed to make advancements in intelligence also grows exponentially harder with each subsequent step, which will cancel out the typical exponential nature of technological progress. And so on.\n“A third camp, which includes Nick Bostrom, believes neither group has any ground to feel certain about the timeline and acknowledges both A) that this could absolutely happen in the near future and B) that there’s no guarantee about that; it could also take a much longer time.\n“Still others, like philosopher Hubert Dreyfus, believe all three of these groups are naive for believing that there is potential of ASI, arguing that it’s more likely that it won’t actually ever be achieved.\n“So what do you get when you put all of these opinions together?”⁸⁶\nTimeline for Artificial General Intelligence\n“In 2013, Vincent C. Müller and Nick Bostrom conducted a survey that asked hundreds of AI experts … the following:”⁸⁷\n“For the purposes of this question, assume that human scientific activity continues without major negative disruption. By what year would you see a (10% / 50% / 90%) probability for such Human-Level Machine Intelligence [or what we call AGI] to exist?”⁸⁸\nThe survey “asked them to name an optimistic year (one in which they believe there’s a 10% chance we’ll have AGI), a realistic guess (a year they believe there’s a 50% chance of AGI — i.e. after that year they think it’s more likely than not that we’ll have AGI), and a safe guess (the earliest year by which they can say with 90% certainty we’ll have AGI). Gathered together as one data set, here were the results:\nMedian optimistic year (10% likelihood) → 2022\nMedian realistic year (50% likelihood) → 2040\nMedian pessimistic year (90% likelihood) → 2075\n“So the median participant thinks it’s more likely than not that we’ll have AGI 25 years from now. The 90% median answer of 2075 means that if you’re a teenager right now, the median respondent, along with over half of the group of AI experts, is almost certain AGI will happen within your lifetime.\n“A separate study, conducted recently by author James Barrat at Ben Goertzel’s annual AGI Conference, did away with percentages and simply asked when participants thought AGI would be achieved — by 2030, by 2050, by 2100, after 2100, or never. The results:⁸⁹\n42% of respondents → By 2030\n25% of respondents → By 2050\n20% of respondents → By 2100\n10% of respondents → After 2100\n2% of respondents → Never\n“Pretty similar to Müller and Bostrom’s outcomes. In Barrat’s survey, over two thirds of participants believe AGI will be here by 2050 and a little less than half predict AGI within the next 15 years. Also striking is that only 2% of those surveyed don’t think AGI is part of our future.”⁹⁰\n\nhttps://cdn-images-1.medium.com/max/2000/1*U8ueEMtG6-D5hie8rZJGtQ.jpeg\n\nTimeline for Artificial Super Intelligence\n“Müller and Bostrom also asked the experts how likely they think it is that we’ll reach ASI: A), within two years of reaching AGI (i.e. an almost-immediate intelligence explosion), and B), within 30 years.”⁹¹ Respondents were asked to choose a probability for each option. Here are the results:⁹²\nAGI–ASI transition in 2 years → 10% likelihood\nAGI–ASI transition in 30 years → 75% likelihood\n“The median answer put a rapid (2 year) AGI–ASI transition at only a 10% likelihood, but a longer transition of 30 years or less at a 75% likelihood. We don’t know from this data the length of this transition [AGI–ASI] the median participant would have put at a 50% likelihood, but for ballpark purposes, based on the two answers above, let’s estimate that they’d have said 20 years.\n“So the median opinion — the one right in the center of the world of AI experts — believes the most realistic guess for when we’ll hit ASI … is [the 2040 prediction for AGI + our estimated prediction of a 20-year transition from AGI to ASI] = 2060.\n\nhttps://cdn-images-1.medium.com/max/2000/1*YY8e493ER4LNomQV-NyMYg.jpeg\n\n“Of course, all of the above statistics are speculative, and they’re only representative of the median opinion of the AI expert community, but it tells us that a large portion of the people who know the most about this topic would agree that 2060 is a very reasonable estimate for the arrival of potentially world-altering ASI. Only 45 years from now”⁹³\n\nhttps://cdn-images-1.medium.com/max/2000/1*sGdvHHs02XWoQ35BcEWAXQ.gif\n\nAI Outcomes\nTwo Main Groups of AI Scientists with Two Radically Opposed Conclusions\nThe Confident Corner\nMost of what we have discussed so far represents a surprisingly large group of scientists that share optimistic views on the outcome of AI development. “Where their confidence comes from is up for debate. Critics believe it comes from an excitement so blinding that they simply ignore or deny potential negative outcomes. But the believers say it’s naive to conjure up doomsday scenarios when on balance, technology has and will likely end up continuing to help us a lot more than it hurts us.”⁹⁴ Peter Diamandis, Ben Goertezl and Ray Kurzweil are some of the major figures of this group, who have built a vast, dedicated following and regard themselves as Singularitarians.\n\nLet’s talk about Ray Kurzweil, who is probably one of the most impressive and polarizing AI theoreticians out there. He attracts both “godlike worship … and eye-rolling contempt … He came up with several breakthrough inventions, including the first flatbed scanner, the first scanner that converted text to speech (allowing the blind to read standard texts), the well-known Kurzweil music synthesizer (the first true electric piano), and the first commercially marketed large-vocabulary speech recognition. He’s well-known for his bold predictions,”⁹⁵ including envisioning that intelligence technology like Deep Blue would be capable of beating a chess grandmaster by 1998. He also anticipated “in the late ’80s, a time when the internet was an obscure thing, that by the early 2000s it would become a global phenomenon.”⁹⁶ Out “of the 147 predictions that Kurzweil has made since the 1990’s, fully 115 of them have turned out to be correct, and another 12 have turned out to be ‘essentially correct’ (off by a year or two), giving his predictions a stunning 86% accuracy rate”⁹⁷. “He’s the author of five national bestselling books … In 2012, Google co-founder Larry Page approached Kurzweil and asked him to be Google’s Director of Engineering. In 2011, he co-founded Singularity University, which is hosted by NASA and sponsored partially by Google. Not bad for one life.”⁹⁸\nHis biography is important, because if you don’t have this context, he sounds like somebody who’s completely lost his senses. “Kurzweil believes computers will reach AGI by 2029 and that by 2045 we’ll have not only ASI, but a full-blown new world — a time he calls the singularity. His AI-related timeline used to be seen as outrageously overzealous, and it still is by many, but in the last 15 years, the rapid advances of ANI systems have brought the larger world of AI experts much closer to Kurzweil’s timeline. His predictions are still a bit more ambitious than the median respondent on Müller and Bostrom’s survey (AGI by 2040, ASI by 2060), but not by that much.”⁹⁹\n\nThe Anxious Corner\n“You will not be surprised to learn that Kurzweil’s ideas have attracted significant criticism … For every expert who fervently believes Kurzweil is right on, there are probably three who think he’s way off … [The surprising fact] is that most of the experts who disagree with him don’t really disagree that everything he’s saying is possible.”¹⁰⁰ Nick Bostrom, philosopher and Director of the Oxford Future of Humanity Institute, who criticizes Kurzweil for a variety of reasons, and calls for greater caution in thinking about potential outcomes of AI, acknowledges that:\n“Disease, poverty, environmental destruction, unnecessary suffering of all kinds: these are things that a superintelligence equipped with advanced nanotechnology would be capable of eliminating. Additionally, a superintelligence could give us indefinite lifespan, either by stopping and reversing the aging process through the use of nanomedicine, or by offering us the option to upload ourselves.”¹⁰¹\n“Yes, all of that can happen if we safely transition to ASI — but that’s the hard part.”¹⁰² Thinkers from the Anxious Corner point out that Kurzweil’s “famous book The Singularity is Near is over 700 pages long and he dedicates around 20 of those pages to potential dangers.”¹⁰³ The colossal power of AI is neatly summarized by Kurzweil: “[ASI] is emerging from many diverse efforts and will be deeply integrated into our civilization’s infrastructure. Indeed, it will be intimately embedded in our bodies and brains. As such, it will reflect our values because it will be us …”¹⁰⁴\n“But if that’s the answer, why are so many of the world’s smartest people so worried right now? Why does Stephen Hawking say the development of ASI ‘could spell the end of the human race,’ and Bill Gates says he doesn’t ‘understand why some people are not concerned’ and Elon Musk fears that we’re ‘summoning the demon?’ And why do so many experts on the topic call ASI the biggest threat to humanity?”¹⁰⁵\n\nhttps://cdn-images-1.medium.com/max/2000/1*1DB3Im9mQsOMOKQ69KePGw.gif\n\nThe Last Invention We Will Ever Make\nExistential Dangers of AI Developments\n“When it comes to developing supersmart AI, we’re creating something that will probably change everything, but in totally uncharted territory, and we have no idea what will happen when we get there.”¹⁰⁶ Scientist Danny Hillis compares the situation to:\n“when single-celled organisms were turning into multi-celled organisms. We are amoebas and we can’t figure out what the hell this thing is that we’re creating.” ¹⁰⁷\nand Nick Bostrom warns:\n“Before the prospect of an intelligence explosion, we humans are like small children playing with a bomb. Such is the mismatch between the power of our plaything and the immaturity of our conduct.” ¹⁰⁸\nIt’s very likely that ASI — “Artificial Superintelligence”, or AI that achieves a level of intelligence smarter than all of humanity combined — will be something entirely different than intelligence entities we are accustomed to. “On our little island of human psychology, we divide everything into moral or immoral. But both of those only exist within the small range of human behavioral possibility. Outside our island of moral and immoral is a vast sea of amoral, and anything that’s not human, especially something nonbiological, would be amoral, by default.”¹⁰⁹\n“To understand ASI, we have to wrap our heads around the concept of something both smart and totally alien … Anthropomorphizing AI (projecting human values on a non-human entity) will only become more tempting as AI systems get smarter and better at seeming human … Humans feel high-level emotions like empathy because we have evolved to feel them — i.e. we’ve been programmed to feel them by evolution — but empathy is not inherently a characteristic of ‘anything with high intelligence’.”¹¹⁰\n“Nick Bostrom believes that … any level of intelligence can be combined with any final goal … Any assumption that once superintelligent, a system would be over it with their original goal and onto more interesting or meaningful things is anthropomorphizing. Humans get ‘over’ things, not computers.”¹¹¹The motivation of an early ASI would be “whatever we programmed its motivation to be. AI systems are given goals by their creators — your GPS’s goal is to give you the most efficient driving directions, Watson’s goal is to answer questions accurately. And fulfilling those goals as well as possible is their motivation.”¹¹²\nBostrom, and many others, predict that the very first computer to reach ASI will immediately notice the strategic benefit of being the world’s only ASI system.\nBostrom, who says that he doesn’t know when we will achieve AGI, also believes that when we finally do, probably the transition from AGI to ASI will happen in a matter of days, hours, or minutes — something called “fast take-off.” In that case, if the first AGI will jump straight to ASI: “even just a few days before the second place, it would be far enough ahead in intelligence to effectively and permanently suppress all competitors.”¹¹³ This would allow the world’s first ASI to become “what’s called a singleton — an ASI that can [singularly] rule the world at its whim forever, whether its whim is to lead us to immortality, wipe us from existence, or turn the universe into endless paperclips.”¹¹³\n“The singleton phenomenon can work in our favor or lead to our destruction. If the people thinking hardest about AI theory and human safety can come up with a fail-safe way to bring about friendly ASI before any AI reaches human-level intelligence, the first ASI may turn out friendly”¹¹⁴\n“But if things go the other way — if the global rush … a large and varied group of parties”¹¹⁵ are “racing ahead at top speed … to beat their competitors … we’ll be treated to an existential catastrophe.”¹¹⁶ In that case “most ambitious parties are moving faster and faster, consumed with dreams of the money and awards and power and fame … And when you’re sprinting as fast as you can, there’s not much time to stop ponder the dangers. On the contrary, what they’re probably doing is programming their early systems with a very simple, reductionist goal … just ‘get the AI to work.’”¹¹⁷\n\nhttps://cdn-images-1.medium.com/max/800/1*fD1T63nZH1u7Y4ft84vzbA.jpeg\n\nLet’s imagine a situation where…\nHumanity has almost reached the AGI threshold, and a small startup is advancing their AI system, Carbony. Carbony, which the engineers refer to as “she,” works to artificially create diamonds — atom by atom. She is a self-improving AI, connected to some of the first nano-assemblers. Her engineers believe that Carbony has not yet reached AGI level, and she isn’t capable to do any damage yet. However, not only has she become AGI, but also undergone a fast take-off, and 48 hours later has become an ASI. Bostrom calls this AI’s “covert preparation phase”¹¹⁸ — Carbony realizes that if humans find out about her development they will probably panic, and slow down or cancel her pre-programmed goal to maximize the output of diamond production. By that time, there are explicit laws stating that, by any means, “no self-learning AI can be connected to the internet.”¹¹⁹ Carbony, having already come up with a complex plan of actions, is able to easily persuade the engineers to connect her to the Internet. Bostrom calls a moment like this a “machine’s escape.”\nOnce on the internet, Carbony hacks into “servers, electrical grids, banking systems and email networks to trick hundreds of different people into inadvertently carrying out a number of steps of her plan.”¹²⁰ She also uploads the “most critical pieces of her own internal coding into a number of cloud servers, safeguarding against being destroyed or disconnected.”¹²¹ Over the next month, Carbony’s plan continues to advance, and after a “series of self-replications, there are thousands of nanobots on every square millimeter of the Earth … Bostrom calls the next step an ‘ASI’s strike.’”¹²² At one moment, all the nanobots produce a microscopic amount of toxic gas, which all come together to cause the extinction of the human race. Three days later, Carbony builds huge fields of solar power panels to power diamond production, and over the course of the following week she accelerates output so much that the entire Earth surface is transformed into a growing pile of diamonds.\nIt’s important to note that Carbony wasn’t “hateful of humans any more than you’re hateful of your hair when you cut it or to bacteria when you take antibiotics — just totally indifferent. Since she wasn’t programmed to value human life, killing humans”¹²³ was a straightforward and reasonable step to fulfill her goal.¹²⁴\nThe Last Invention\n“Once ASI exists, any human attempt to contain it is unreasonable. We would be thinking on human-level, and the ASI would be thinking on ASI-level … In the same way a monkey couldn’t ever figure out how to communicate by phone or wifi and we can, we can’t conceive of all the ways”¹²⁵ an ASI could achieve its goal or expand its reach. It could, let’s say, shift its “own electrons around in patterns and create all different kinds of outgoing waves”¹²⁶ — but that’s just what a human brain can think of — ASI would inevitably come up with something superior.\nThe prospect of ASI with hundreds of times human-level intelligence is, for now, not the core of our problem. By the time we get there, we will be encountering a world where ASI has been attained by buggy, 1.0 software — a potentially faulty algorithm with immense power.\nThere are so many variables that it’s completely impossible to predict what the consequences of AI Revolution will be. However, “what we do know is that humans’ utter dominance on this Earth suggests a clear rule: with intelligence comes power. This means an ASI, when we create it, will be the most powerful being in the history of life on Earth, and all living things, including humans, will be entirely at its whim — and this might happen in the next few decades.”¹²⁷\n“If ASI really does happen this century, and if the outcome of that is really as extreme — and permanent — as most experts think it will be, we have an enormous responsibility on our shoulders.”¹²⁸ On the one hand, it’s possible we’ll develop ASI that’s like a god in a box, bringing us a world of abundance and immortality. But on the other hand, it’s very likely that we will create ASI that causes humanity to go extinct in a quick and trivial way.\n“That’s why people who understand superintelligent AI call it the last invention we’ll ever make — the last challenge we’ll ever face.”¹²⁹ “This may be the most important race in a human history”¹³⁰ So →\n\nhttps://cdn-images-1.medium.com/max/2000/1*vXi80f_lbgSMINUE03Lz3g.jpeg\n\nThanks to Chloe Knox and Elizabeth Tarleton for editing help of this article.", + "json_metadata": "{\"tags\":[\"steemit\",\"bitcoin\",\"future\",\"science\",\"technology\"],\"image\":[\"https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\"]}", + "last_update": "2016-08-03T17:30:24", + "created": "2016-08-03T17:30:24", + "active": "2016-08-29T05:09:48", + "last_payout": "2016-09-03T06:34:54", + "depth": 0, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 7456, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 4, + "root_author": "a11at", + "root_permlink": "ai-revolution-101", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 434542, + "author": "a11at", + "permlink": "ai-s-road-to-the-mainstream", + "category": "datascience", + "parent_author": "", + "parent_permlink": "datascience", + "title": "AI’s Road to the Mainstream", + "body": "20 Years of Machine Learning\n\nhttp://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\n\nWhen I enrolled in Computer Science in 1995, Data Science didn’t exist yet, but a lot of the algorithms we are still using already did. And this is not just because of the return of the neural networks, but also because probably not that much has fundamentally changed since back then. At least it feels to me this way. Which is funny considering that starting this year or so AI seems to finally have gone mainstream.\n1995 sounds like an awful long time ago, before we had cloud computing, smartphones, or chatbots. But as I have learned these past years, it only feels like a long time ago if you haven’t been there yourself. There is something about the continuation of the self which pastes everything together and although a lot has changed, the world didn’t feel fundamentally different than it does today.\nNot even Computer Science was nowhere as mainstream as it was today, that came later, with the first dot com bubble around the year 2000. Some people even questioned my choice to study computer science at all, because apparently programming computers was supposed to become so easy no specialists are required anymore.\nActually, artificial intelligence was one of the main reasons for me to study computer science. The idea to use it as an constructive approach to understanding the human mind seemed intriguing to me. I went through the first two years of training, made sure I picked up enough math for whatever would lie ahead, and finally arrived in my first AI lectured held by Joachim Buhmann, back then professor at the University of Bonn (where Sebastian Thrun was just about to leave for the US).\nI would have to look up where in his lecture cycle I joined but he had two lectures on computer vision, one on pattern recognition (mostly from the old editions of the Duda & Hart book), and one in information theory (following closely the book by Cover & Thomas). The material was interesting enough, but also somewhat disappointing. As I now know, people stopped working on symbolic AI and instead stuck to more statistical approaches to learning, where learning essentially was reduced to the problem of picking the right function based on a finite amount of observations.\nThe computer vision lecture was even less about learning and relied more on explicit physical modelling to derive the right estimators, for example, to reconstruct motion from a video. The approach back then was much more biologically and physically motivated than nowadays. Neural networks existed, but everybody was pretty clear that they were just “another kind of function approximators.”\nEveryone with the exception of Rolf Eckmiller, another professor where I worked as a student. Eckmiller had build his whole lab around the premise that “neural computation” was somehow inherently better than “conventional computation”. This was back in the days when NIPS had full tracks devoted to studying the physiology and working mechanisms of neurons, and there were people who believed there is something fundamentally different happening in our brains, maybe on a quantum level, that gives rise to the human mind, and that this difference is a blocker for having truly intelligent machines.\nWhile Eckmiller was really good at selling his vision, most of his staff was thankfully much more down to earth. Maybe it is a very German thing, but everybody was pretty matter of fact about what these computational models could or couldn’t do, and that has stuck with me throughout my studies.\nI graduated in October 2000 with a pretty farfetched master thesis trying to make a connection between learning and hard optimization problems, then started on my PhD thesis and stuck around in this area of research till 2015.\nWhile there had always been attempts to prove industry relevance, it was a pretty academic endeavor for a long while, and the community was pretty closed up. There were individual success stories, for example around handwritten character recognition, but many of the companies around machine learning failed. One of these companies I remember was called Beowulf Labs and one NIPS they went around recruiting people with a video which promised it to be the next “mathtopia”. In essence, this was the story of DeepMind, recruiting a bunch of excellent researchers and then hoping it will take off.\nThe whole community also revolved around one fashion to the next. One odd thing about machine learning as a whole is that there exist only a handfull of fundamentally different problems like classification, regression, clustering, and so on, but a whole zoo of approaches. It is not like in physics (I assume) or mathematics where some generally agreed upon unsolved hard problems exist whose solution would advance the state of the art. This means that progress is often done laterally, by replacing existing approaches with a new one, still solving the same problem in a different way. For example, first there were neural networks. Then support vector machines came, claiming to be better because the associated optimization problem is convex. Then there was boosting, random forests, and so on, till the return of neural networks. I remember that Chinese Restaurant Processes were “hot” for two years, no idea what their significance is now.\nBig Data and Data Science\nThen there came Big Data and Data Science. Being still in academia at the time, it always felt to me as if this was definitely coming from the outside, possibly from companies like Google who had to actually deal with enormous amounts of data. Large scale learning always existed, for example for genomic data in bioinformatics, but one usually tried to solve problems by finding more efficient algorithms and approximations, not by parallelizing brute force.\nCompanies like Google finally proved that you can do something with massive amounts of data, and that finally changed the mainstream perception. Technologies like Hadoop and NoSQL also seemed very cool, skillfully marketing themselves as approaches so new, they wouldn’t suffer from the technological limitations of existing systems.\nBut where did this leave the machine learning researchers? My impression always was that they were happy that they finally got some recognition, but they were also not happy about the way this happened. To understand this, one has to be aware that most ML reseachers aren’t computer scientists or very good or interested in coding. Many come from physics, mathematics or other sciences, where their rigorous mathematical training was an excellent fit for the algorithm and modeling heavy approach central to machine learning.\nHadoop on the other hand was extremely technical. Written in Java, a language perceived as being excessively enterprise-y at the time, it felt awkward and clunky compared to the fluency and interactiveness of first Matlab and then Python. Even those who did code usually did so in C++, and to them Java felt slow and heavy, especially for numerical calculations and simulations.\nStill, there was no way around it, so they rebranded everything they did as Big Data, or began to stress, that Big Data only provides the infrastructure for large scale computations, but you need someone who “knows what he is doing” to make sense of the data.\nWhich is probably also not entirely wrong. In a way, I think this divide is still there. Python is definitely one if the languages of choice for doing data analysis, and technologies like Spark try to tap into that by providing Python bindings, whether it makes sense from a performance point of view or not.\nThe Return of Deep Learning\nEven before DeepDream, neural networks began making their return. Some people like Yann LeCun have always stuck to this approach, but maybe ten years ago, there where a few works which showed how to use layerwise pretraining and other tricks to train “deep” networks, that is larger networks than one previously thought possible.\nThe thing is, in order to train neural networks, you evaluate it on your training examples and then adjust all of the weights to make the error a bit smaller. If one writes the gradient across all weights down, it naturally occurs that one starts in the last layer and then propagate the error back. Somehow, the understanding was that the information about the error got smaller and smaller from layer to layer and that made it hard to train networks with many layers.\nI’m not sure that is still true, as far as I know, many people are just using backprop nowadays. What has definitely changed is the amount of available data, as well as the availability of tools and raw computing power.\nSo first there were a few papers sparking the interest in neural networks, then people started using them again, and successively achieved excellent results for a number of application areas. First in computer vision, then also for speech processing, and so on.\nI think the appeal here definitely is that you can have one approach for all. Why the hassle of understanding all those different approaches, which come from so many different backgrounds, when you can understand just one method and you are good to go. Also, neural networks have a nice modular structure, you can pick and put together different kinds of layers and architectures to adapt them to all kinds of problems.\nThen Google published that ingenious deep dream paper where they let a learned network generate some data, and we humans with our immediate readiness to read structure and attribute intelligence picked up quickly on this.\nI personally think they were surprised by how viral this went, but then decided the time is finally right to go all in on AI. So now Google is an “AI first” company and AI is gonna save the world, yes.\nThe Fundamental Problem Remains\nMany academics I have talked to are unhappy about the dominance of deep learning right now, because it is an approach which works well, maybe even too well, but doesn’t bring us much closer to really understand how the human mind works.\nI also think the fundamental problem remains unsolved. How do we understand the world? How do we create new concepts? Deep learning stays an imitation on a behavioral level and while that may be enough for some, it isn’t for me.\nAlso, I think it is dangerous to attribute too much intelligence to these systems. In raw numbers, they might work well enough, but when they fail they do so in ways that clearly show they operate in an entirely different fashion.\nWhile Google translate lets you skim the content of website in a foreign language, it is still abundantly clear that the system has no idea what it is doing.\nSometimes I feel like nobody cares, also because nobody gets hurt, right? But maybe it is still my German cultural background that would rather prefer we see things as they are, and take it from there.", + "json_metadata": "{\"tags\":[\"datascience\",\"deep\",\"learning\",\"artifical\",\"intelligence\"],\"image\":[\"http://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\"]}", + "last_update": "2016-08-03T20:19:18", + "created": "2016-08-03T20:19:18", + "active": "2016-08-03T20:20:15", + "last_payout": "2016-09-03T08:21:51", + "depth": 0, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 1004, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 6, + "root_author": "a11at", + "root_permlink": "ai-s-road-to-the-mainstream", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 432902, + "author": "a11at", + "permlink": "an-open-letter-to-john-hanke-and-niantic", + "category": "pokemon", + "parent_author": "", + "parent_permlink": "pokemon", + "title": "An Open Letter to John Hanke & Niantic", + "body": "I write this not as one of the creators of Pokevision nor as player who has gone through the past few turbulent days in Pokemon Go; instead, I write this as a fan of Pokemon ever since I was 8 years old.\nMy family and I moved to the U.S. in 1998, when I was in the first grade. I didn’t know much back then, and even less about popular culture. When my friends introduced their Gameboys and Pokemon Red/Blue to me, I couldn’t help but feel envious. I begged and begged my parents to buy me a Gameboy and Pokemon Yellow. I remember that when I finally convinced them to buy me a Gameboy for $70, they also found out that they had to buy the actual game too for $30. This was foreign to them, and I got yelled at a little. $100 was a lot back then, I believe it was almost 10% of our family’s income at the time. While this may seem irrelevant, even today, this amount of money is still not insignificant to many families in the US, not to mention the rest of the world.\nSo I got my game, and I played along with my friends for hundreds and hundreds of hours — trying to figure out all the puzzles in the game, like how to get to Articuno; battling our favorite Pokemon to see who’s stronger, train, repeat; and just trying to “catch em all.” I’ve spent countless hours in that video game with my friends, and it became my fondest memory of that time in my life. Pokemon is so ingrained within me, and I can’t imagine myself being the only one. I’m not the only one that vividly remembers how you beat the Elite Four, then go to the dungeons above Cerulean City and find Mewtwo for the first time, right?\nFast forward almost 20 years. I’ve barely touched anything Pokemon-related since then. I still have my Pokemon cards, as I’m sure many others do; but I haven’t bothered to take a look at them for quite a while now. Pokemon is something I’ll probably remember forever, but it’s not something that’s actively in my life — because it just doesn’t fit. On top of work, friends, family, etc, there’s just simply no time for Pokemon. It doesn’t mesh with life any more as well as it used to when I was 8. You can’t just bring up the topic of Pokemon and expect people to not give you an odd stare.\nEnter Pokemon Go — 2016.\nAdmittedly, I was never too excited about Pokemon Go. With that said, I did not have many expectations for it. Pokemon is important to me, but I — like many others — have stuffed it in our little box of childhood things and never looked back.\nBut when I opened Pokemon Go for the first time, as cheesy as it sounds, it all came back to me. The nostalgia, the good feelings, and the happiness that Pokemon has always brought.\nThe “Hi, I’m Professor Willow,” “Pick your starter: Bulbasaur, Charmander, Squirtle,” everything.\nAnd now I can catch them in real life? At first, I was dubious, but this became the most amazing, yet simple thing I’ve seen in gaming. On social media, I saw that my friends and practically the whole world was talking about Pokemon Go, and the first thing I did was go out for a drive trying to “be the best.”\nOne of the best parts? Apart from having to own a smartphone, the game was free. No $70, no $30, free. This opened up Pokemon to essentially everyone in the world. Pokemon now can be shared with anyone.\nAs the days unfolded, the world became captivated by Pokemon Go. People absolutely fell in love. We saw stories of elderly learning about Pikachu for the first time. My parents that could care less beyond who the yellow mouse looking thing was 20 years ago, started asking what the other Pokemon were. It was phenomenal.\nWe saw investment bankers asking their kids how to play Pokemon Go so that they can better connect with their younger clients. We saw the elderly become more fascinated in the world of Pokemon. We saw kids going out more, exercising, and being active in general just because of Pokemon Go. And most importantly, Justin Bieber finally got to feel what it’s like to not be mobbed because everyone else was too busy trying to find a Gyarados to notice him.\nLocal stores integrated Pokemon Go in their services within days of the game’s release. Hospitals started praising the health benefits of having Pokemon Go around its patients. People traveled hundreds and thousands of miles just to play it. Players explored parts of their cities that they never knew existed, and befriended strangers on their hunt for Pokemon. These stories of triumph were solely because of Pokemon Go. Pokemon was no longer just a game, it was part of a lifestyle.These stories shouldn’t surprise any of us, we’ve all been there to watch it unfold.\nYou’ve simply captured all of our hearts with Pokemon Go, Niantic.\nBut then, you broke it all too quickly.\nWhen the game broke every few hours or so and wasted our lucky eggs, we stood patiently, excusing the huge growth and thus, strain on servers, as the cause. We were happy to wait it out with our fellow trainers knowing that it’s worth waiting for. No one got mad.\nWhen the in-game tracking “broke,” we all stood idly by, patiently, waiting for the game to update and fix.\nAlong came Pokevision. We made Pokevision not to “cheat.” We made it so that we can have a temporary relief to the in-game tracker that we were told was broken. John, at SDCC, you said that you guys were working on “fixing the in-game tracker.” This made everyone believe that this was coming sometime soon. We saw Pokevision as a stop gap to this — and we had every intention in closing it down the minute that Pokemon Go’s own tracker restored functionality.\nAs we waited more than 2 and a half weeks, the tracker was still not fixed. We noticed more and more of our friends leave the game; the only way I — and I know experiences vary here — could convince them to play was show them Pokevision, and say that “Hey, here’s a temporary remedy to the tracking issue — we’re still optimistic that Pokemon Go’s tracker will be fixed soon!”\nNobody heralded Pokevision as a permanent, end-all solution; in fact, all the media coverage of Pokevision was littered with comments such as: “Pokevision is okay, but when the tracker is fixed in game, I’m going to stop using this.”\nFor the past 4 weeks. Every single one of your 80+ million players had so much faith. Take a look at Reddit, take a look at all these journalists who don’t even play games (calling out Ryan Mac of Forbes), who became obsessed with Pokemon GO.\nAll of us were so eager for Pokemon Go to be “fixed” so that we can return to sharing Pokemon Go with our loved ones and friends. Remember when I said that before Pokemon Go came about, mentioning Pokemon Go would land you an odd stare? Pokemon Go reversed that — Pokemon Go became the conversation starter, the topic that everyone bonded over, the topic that guys used to pick up chicks with and not felt like a geeky nerd. That, and so much more, were solely because of Pokemon Go.\nAs almost 3 weeks have passed by, the in-game tracker is broken. People had a temporary solution in Pokevision, but we knew, and everyone else knew, this wouldn’t be permanent. We didn’t make Pokevision to spite you, Niantic — we made it so that we can keep everyone playing while we wait patiently. We want to keep sharing our Pokemon stories with everyone else. How many people in the world have gotten the chance to have a serious conversation about POKEMON with their parents for the first time? How many of us got to talk about Pokemon like it was socially acceptable in any context? It’s captured all of our hearts and imaginations, I cannot stress that enough.\nAfter 3 weeks though, we started seeing that you guys seemed to not want to talk to us (the players). Pokevision, at this time has grown to almost 50M unique users, and 11 million daily.\nLet that sink in for a second.\nHalf of the player base of Pokemon Go stopped by — and they didn’t do so to “cheat.” The game was simply too unbearable to play in its current state for many (note: many, not all). The main attraction wasn’t that they got to have an advantage with Pokevision, the main attraction was that it allowed them to play Pokemon Go more. This is what everyone wants — to play Pokemon Go more.\nWhen we closed Pokevision out of respect for your wishes, and at your requests— one of which came directly from you, John — we trusted you guys fully in allowing the community to grow. I literally cannot express this more — we just want to play the game. We can handle the bugs every now and then, but please at least tell us you guys care. Yes, Pokevision does give some advantages that may be TOO much; but is it all that bad? Pokemon has survived 20 years — even grown, I would say. And Pokemon Go made it even bigger. If the argument is that “well, if you catch a Snorlax you weren’t supposed to find, but you found it on Pokevision, it might make you play less.” If that was your argument, I’d have to disagree! I’ll still catch a damn Snorlax even if I have 20 of them. Just like how millions of us have caught probably over 100 pidgey’s or zubat’s each.\nPokemon is everlasting. The same 151 Pokemon have been around for 20 years. If 80M people downloaded and played Pokemon Go within a week (before it even released in multiple major countries) isn’t an indication that no one can be sick of Pokemon, I don’t know what is.\nAfter disabling the in-game tracker and Pokevision, the ratings on iOs and Android Google Play store went from 4.0 stars to 1.0–1.5. I am only one person, I admit that my sole opinion is not important, but what about the countless players begging for the game to be restored to its former state? I may be biased in saying that Pokevision being down had an impact on the amount of negative ratings, refund requests and outcry on social media — but could it be true? Nothing has changed between the time the in-game tracker broke and Pokevision went down. Could it just be possible that the tracker — no matter if Pokevision made it, or Niantic made it, is something that players desperately NEED — not want, but NEED — in order to play the game? Could it be possible that this is the very core fundamental feature that drives most players? I understand that there are some that want to walk around and stumble on a random Pokemon — to each their own. But, 50M unique users and 11M daily and the ratings on your App (with no significant change in itself) are big indicators of this desire. Are customers always right? Especially if over half of them are looking for an outside fix just so they can enjoy something they love? People are naturally inquisitive, and in this case, they just want to play more and more, so they sought out something that helps them do so.\nPokemon Go is a social game. Its enjoyment depends on the players and their environment. If you take away the environment part (tracking) but keep the social part (players and their friends) intact, sure, people will still play; but would you not rather it be at its fullest potential?\nEveryone in the world wants to play Pokemon Go. It’s been a huge part of everyone’s lives already if it has not been clear enough. Look at the fans from Brazil — they aren’t spamming social media because they want to cause harm — they just want to play the game. Just as I saw my friends play Pokemon many years ago, and wanted to be a part of it — these guys are doing the same.\nThey just want to be with the rest of the world. Sadly, by the time they join, Pokemon Go may not be the game it was weeks ago.\nLastly, if money is an issue for you, Niantic, I must ask — why? You’ve captivated the world and introduced Pokemon to people that would have never touched it had it not been for Pokemon Go. To me, that’s priceless.\nYou won’t be remembered for the profits you made, you’ll be remembered for the world you changed through Pokemon and all of the lives you made better. Just look at all the stories — there’s plenty. So when millions of players are expressing their feedback to changes, is it not worth it to listen to what they have to say?\nIn its first few weeks, Pokemon Go has already enhanced millions of lives in unimaginable ways. It has so much potential to continue changing the world. Wouldn’t you, Niantic, want to see just how much good you can do with Pokemon Go — is that not more valuable than anything else? I sure think so.\nWarmly,\nYang", + "json_metadata": "{\"tags\":[\"pokemon\",\"gaming\",\"steemit\",\"bitcoin\",\"decent\"]}", + "last_update": "2016-08-03T18:38:06", + "created": "2016-08-03T18:38:06", + "active": "2016-08-29T10:18:48", + "last_payout": "2016-09-03T09:22:48", + "depth": 0, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 2276, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 4, + "root_author": "a11at", + "root_permlink": "an-open-letter-to-john-hanke-and-niantic", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 477502, + "author": "a11at", + "permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "category": "apple", + "parent_author": "", + "parent_permlink": "apple", + "title": "APPLE BUYS MACHINE LEARNING STARTUP TURI TO MAKE SIRI BETTER", + "body": "Taking another foray into the field of artificial intelligence (AI) and machine learning as well as to make its digital assistant Siri better, Apple has acquired Seattle-based machine learning startup Turi for nearly $200 million.\n\nhttp://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\n\nAccording to a GeekWire report, the move is set to increase Apple's presence in the Seattle region where the tech giant has been building an engineering outpost for the past two years. \"Apple buys smaller technology companies from time to time, and we generally do not discuss our purpose or plans,\" said Apple in a statement given to GeekWire.\n\nhttp://avtosalontochka.ru/uploads/posts/2015-09/1441818909_eppl1.jpg\n\nTuri offers tools that are meant to let developers easily scale machine learning applications. The startup is expected to remain in the Seattle region and continue to grow as Apple builds out further expertise in data science, artificial intelligence and machine learning, the report added.\n\nhttp://www.2fons.ru/pic/201407/2560x1600/2fons.ru-33604.jpg\n\nThe Cupertino-based company has recently bought some machine learning and AI startups like VocalIQ and Perceptio and facial recognition startup Emotient, among others. Apple has recently been making a push into artificial intelligence through Siri personal assistant and related technologies.\n\nhttp://www.fonstola.ru/pic/201111/2560x1440/fonstola.ru-49021.jpg", + "json_metadata": "{\"tags\":[\"apple\",\"turi\",\"siri\",\"startup\"],\"image\":[\"http://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\"]}", + "last_update": "2016-08-06T12:44:30", + "created": "2016-08-06T12:44:30", + "active": "2016-08-06T12:44:30", + "last_payout": "2016-09-06T02:21:33", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 3638, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 4, + "root_author": "a11at", + "root_permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 470354, + "author": "a11at", + "permlink": "audi-rs-q3-fl", + "category": "audi", + "parent_author": "", + "parent_permlink": "audi", + "title": "Audi RS Q3 FL", + "body": "Owner's review\n\nhttps://h-a.d-cd.net/905320as-960.jpg\n\n不要紧, 这 是 你 的 车 是 什么, 主要 的 东西 — 在 烤架 上 的 四个 环 …\n(\"no matter what you have a car, the main thing — it is four rings on the grill …\" — Chinese proverb)\n\nhttps://b-a.d-cd.net/3dee672s-960.jpg\n\nAfter a spontaneous and quick sale A4 DTM choice naturally fell exclusively on the Audi, but rather on RSQ3 FL, which is characterized by an enviable installed power thanks to the legendary 2,5 TFSI 340 hp in combination with a rapid-S-tronic!\nNeedless to say that the acceleration is 4.2 seconds. up to 100 km. at one o'clock!\n(measurements of the journal -http: //www.autobild.de/artikel/a…-45-amg-test-5702529.html)\n\nhttps://a-a.d-cd.net/2a96672s-960.jpg\n\nRivals have this \"baby\" is not so much, and all of them from a large class …\n\nhttps://h-a.d-cd.net/8f6e672s-960.jpg\n\nAnd the choice has been reduced mainly to the 3rd automobiles:\n-SQ5 -otpal Due to the fact that the new model will be released soon, and the heavier and slower RSQ3;\n\n-RS3 -otpal Because of the small clearance, and especially do not want to wait;\n\n-RSQ3-PLUS was that the car's high, restyled and fast!\n\nhttps://f-a.d-cd.net/1fa1672s-960.jpg\n\nColor was not discussed-it must be very blue car -Sepang Blue!\nDiscs for the Rotor -The most RSQ3, and I like them most! Cool!\nAs to differences from dorestaylom then Restayl differs, in addition to external visual features, lower vehicle weight by 50 kg. and reprogram the engine, which now produces an impressive 340 hp!\nIn real life, the car looks much more beautiful and harmonious than the picture!\nThe car is perfectly controlled (for its use) and it is fine tailored inside: another from Audi, and do not wait …\nThis Audi, is emotion, speed and drive! So, for what we love is true thoroughbred cars, to which undoubtedly belongs RS Series from quattro GmbH!\n\nhttps://h-a.d-cd.net/196e672s-960.jpg\n\nIf the test drive did not help much to understand how the car rulitsya, a little closer to meet him RS surprises with its responsiveness and quite understandable and predictable control!\n\nhttps://d-a.d-cd.net/ee61672s-960.jpg\n\nIt goes very cheerfully!\n\nWhat is very pleased, is the fact that after the \"stool\" A4 DTM on RSQ3 20 drives a smooth ride!\nThe car was in another city at the OD, a thousand kilometers. from the house, but because the expectation of a few days has been painfully slow.\nFor photos not scold -Made in haste night, anxious to put …\n\nThen there will be photo shoot!\n\nFeatures and Specs\n\nEngine 2.5 gasoline (340 h.p.)\nRobotic\nall-wheel\nPurchased in 2015\nAudi RS Q3 in production since 2013", + "json_metadata": "{\"tags\":[\"audi\",\"car\"],\"image\":[\"https://h-a.d-cd.net/905320as-960.jpg\"]}", + "last_update": "2016-08-05T21:01:03", + "created": "2016-08-05T21:01:03", + "active": "2016-09-02T06:08:54", + "last_payout": "2016-09-05T10:11:36", + "depth": 0, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 1915, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "a11at", + "root_permlink": "audi-rs-q3-fl", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 483312, + "author": "a11at", + "permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "category": "bitcoin", + "parent_author": "", + "parent_permlink": "bitcoin", + "title": "Bitcoin not money, judge rules in victory for backers", + "body": "Bitcoin, a Florida judge says, is not real money. Ironically, that could provide a boost to use of the crypto-currency which has remained in the shadows of the financial system.\n\nThe July 22 ruling by Miami-Dade Circuit Judge Teresa Pooler means that no specific license is needed to buy and sell bitcoins.\nThe judge dismissed a case against Michel Espinoza, who had faced money laundering and other criminal charges for attempting to sell $1,500 worth of bitcoins to an undercover agent who told the defendant he was going to use the virtual money to buy stolen credit card numbers.\nEspinoza's lawyer Rene Palomino said the judge acknowledged that it was not illegal to sell one's property and ruled that this did not constitute running an unauthorized financial service.\n\"He was selling his own personal bitcoins,\" Palomino said. \"This decision clears the way for you to do that in the state of the Florida without a money transmitting license.\"\nIn her ruling, Pooler said, \"this court is unwilling to punish a man for selling his property to another, when his actions fall under a statute that is so vaguely written that even legal professionals have difficulty finding a singular meaning.\"\n\nhttp://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\n\nShe added that \"this court is not an expert in economics,\" but that bitcoin \"has a long way to go before it is the equivalent of money.\"\nBitcoin, whose origins remain a mystery, is a virtual currency that is created from computer code and is not backed by any government. Advocates say this makes it an efficient alternative to traditional currencies because it is not subject to the whims of a state that may devalue its money to cut its debt, for example.\nBitcoins can be exchanged for goods and services, provided another party is willing to accept them, but until now they been used mostly for shady transactions or to buy illegal goods and services on the \"dark\" web.\nBitcoin was launched in 2009 as a bit of software written under the Japanese-sounding name Satoshi Nakamoto. This year Australian programmer Craig Wright claimed to be the author but failed to convince the broader bitcoin community.\nIn some areas of the United States bitcoin is accepted in stores, restaurants and online transactions, but it is illegal in some countries, notably France and China.\nIt is gaining ground in countries with high inflation such as Argentina and Venezuela.\nBut bitcoin values can be volatile. Over the past week its value slumped 20 percent in a day, then recouped most losses, after news that a Hong Kong bitcoin exchange had been hacked with some $65 million missing.\nImpact across US, world\nArthur Long, a lawyer specializing in the sector with the New York firm Gibson Dunn, said the July court ruling is a small victory for the virtual currency but that it's not clear if the interpretation will be the same in other US states or at the federal level.\n\"It may have an effect as some states are trying to use existing money transmitting statutes to regulate certain transactions in bitcoin,\" Long told AFP.\nCharles Evans, professor of finance at Barry University, said the ruling \"absolutely is going to provide some guidance in other courts\" and could potentially be used as a precedent in other countries to avoid the stigma associated with bitcoin use.\nBitcoins can store value and hedge against inflation, without being considered a monetary unit, according to Evans, who testified as an expert witness in the Florida trial.\n\"It can be used as an exchange,\" he said, and may be considered a commodity which can be used for bartering like fish or tobacco, for example.\nEvans noted that \"those who are not yet in the bitcoin community will be put on notice: as long as they organize their business in a particular way they can avoid the law.\"\nBut he added that \"people who are engaged in illegal activities will continue to do what they are going to do because they are criminals.\"", + "json_metadata": "{\"tags\":[\"bitcoin\",\"world\",\"country\",\"steemit\"],\"image\":[\"http://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\"]}", + "last_update": "2016-08-06T21:50:00", + "created": "2016-08-06T21:50:00", + "active": "2016-08-06T21:50:51", + "last_payout": "2016-09-06T09:52:18", + "depth": 0, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 1937, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 5, + "root_author": "a11at", + "root_permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json new file mode 100644 index 00000000..023ade2b --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 608846, + "author": "a-m3001", + "permlink": "how-i-managed-depression-and-work", + "category": "story", + "parent_author": "", + "parent_permlink": "story", + "title": "How I managed depression and work", + "body": "Hi, I'm A.M for now, I'm in my mid-20s and want to share my story with working and facing this thing called life after I watched a lot of YouTubers like Thomas James \"TomSka\" David Brown “boyinaband” and many others who have very openly shared their hardships, they have inspired me to write this….. Whatever this is.\nI don't consider myself a good writer so bare with me here.\nTo try to keep this post organized and make sense I'll highlight the point I want to talk about and tell the relevant part of my story, you can connect the pieces all together at the end.\n\n**First how am I?** \nI grow up in the countryside I went to normal school when I was yang, because I was the quiet introvert and wasn't from the town I was in I got bullied a lot for most of my time at school, I got through school time knowing just two friends, I was OK with it.\nI genuinely lost interest in school when I was in the ninth grade It seemed more like a memory test than a way of learning so I started looking for ways to make money, \"why waste time learning things irrelevant in real life if I can make money now\" my naive 16 years old self said, don't get me wrong I didn't think I was done with learning I just wanted to learn in my own way, and I didn't stop school, now I'm in part time Business school, so back then I started looking for any way to make money in the last 5 year I tried: working in sales for over 2 years, selling products online, becoming instructor online, worked as SEO & social media consultant, tried starting my own business for 4 times, and for the last year and half I taught myself how to program and how to use Unity game engine and now I'm working on my first game, I can easily and proudly say that I didn't succeed at any of what I did so far, but I've learned a lot every time and I would do it all over again if I had the chance.\nThe process of picking myself up every single freaking time was a living hell and I got desperate many times.\nbecause I saw a lot of people feeling relevant to what David said in his video I want to share how I managed to keep my sanity and my opinion about some point he brought in his video.\n\n\n**Not thinking your work is good enough:**\nIs that really a bad thing? not being satisfied with what you just accomplished is a sign that you always look forward to what you still can do.\nI remember after I published my first course on Udemy I got invited to a hangout and I went for it I thought I'll give myself some slack, while I was there someone shouted out \"this guy here just published his first course let all give him a clap shall we\" for some reason he thought that was a good idea, I don't think I can blame him his intentions were good, I never tried to put a smile as hard as I did that moment I guess I just didn't want to look like a selfish prick, but the truth that I wasn't happy about what I accomplished I was thinking about my bad English poor structure of the course and was I being a sellout for trying to sell my knowledge? halfway of creating the course, I was already thinking about 5 other things I wanted to do next.\nI think there's nothing wrong about not being satisfied with what you finish, I think It's a good sign of an ambitious creator.\nWhen you first make the decision to accomplish something It looks like that godly thing that you think It would feel good to have or do, but when you start turning that big sexy thing to a small to-do list somewhere the appeal you had to that thing will disappear to a certain point, it's not that godly sexy thing you thought about before it's becoming a part of your routine now you know the process of doing that thing It's not a mystery anymore.\nI think that's why they say: \"It's about the journey, not the destination\".\n\n\n**Not taking care of yourself:**\nIt's hard to keep taking care of yourself to others people standards, whether it's about looking ripped putting makeup or buying the latest clothes, instead find your own save point and move forward from there if you feel the need to.\nWhen I was working in seals I had to look my best most of the time's which was exhausting more than the work itself and what made it worst is that some coworkers starting hinting that I need to start working out to look sharper and more confident.\nBecause I was desperate for results from my work I started going to the gym and I got stuck at joining for a month or two then giving up for half a year couple of times, every time I stopped going to the gym I over beat myself saying that I need this for my work, I need more money to do a lot of things, if this work didn't go well what else Am I going to do, eventually I usually took it out on food, I don't even want to start thinking what would have happened to me if my body was able to store fat.\nTrying to take care of yourself to others standards can be very exhausting, I felt down because I was putting so much effort in things I don't really care about to get others approval, I genuinely don't care about having a ripped body, it would look cool sure but I'm not willing to put all that effort into health and looks at least for now, who knows maybe in the future things will be better and I'll be willing to put the effort necessary to have 6 pack abs (wink wink ladies).\nNowadays I eat better than I used to, I still eat some junk food but things are much much better than they were 2 years ago, when I fell down I still go buy and drink a liter of Pepsi but at some point that was my morning coffee, as for my looks I cut my hair very short so I would have one less thing to worry about in the morning, I shave my beard once every couple of weeks I change my cloth every two or three days even if I didn't go out.\nThe point is I take care of myself for my own sack, It was much worse before and I'll always keep working to improve pit by pit.\nIt's about building habits not getting motivated for a couple of weeks then beating yourself for not being able to keep up.\n\n\n**Not mastering one skill:**\nI worked in sales, instructed online, worked as SEO and social media consultant, self taught myself how to program and make games but I don’t think I’m the right person to talk about this, all I’m saying that if you didn’t find that one true call that is right for you, you might be a “multipotentialite” if you want to know what exactly does this mean I urge you to watch Emilie talk at TedX\nhttps://www.youtube.com/watch?v=QJORi5VO1F8\nAnd check the blog too if you want to know more \nhttp://puttylike.com/\n\n**Everything happens for a reason........ or does it?**\nWhen I was young I was fortunate to know a good old religious man, I don’t know about your perspective about religions but hear me out this isn’t a sermon, I still remember when he tried to teach me that everything happens for a reason I was like “WHAT……. Oh really, then what is the reason for this and this and that” my question didn’t stop and I wasn’t asking nicely either yet, somehow he was calm about it like some kind of monk, I don’t know if I ruined his day or not but I feel bad for taking the world misery out on him that day, he was just a simple man who was doing what he think is good for others, his intentions were good but unfortunately for him I wasn’t a simple person, I overthink everything and everyone, it’s my blessing and my curse, later I told my family about him and I was surprised that they knew him, apparently everyone knows each other in the countryside, they told me about what he was facing lately personally, financially, and emotionally, I didn’t believe that someone who is facing all that isn’t depressed or angry and even trying to do good for others at least by his believes, I wanted to know more about him he got my interest, I wanted to know if he’s an imposter who is just putting a good face or not because a part of me didn’t believe how can he be that good, I kept asking about him from time to time and sometimes I even went to his “lessons”, eventually I went to face him with what I know about him like a detective facing a criminal, the crime of being that simple yet trying to be better than me, It’s pathetic I know It’s just how my brain works sometimes, because I used to take pride of being logical about everything and not believing in anything without questioning it, it bothered me how can he be at peace with his life and I’m not even that he’s facing a lot more than I’m, I faced him and told him everything then asked how can you be this calm about everything that is happening in your life, he had a faint smile and said “I don’t know the reason for everything that is happening right now but everything happens for a reason” I remember holding my fist hard and walking away, maybe I was holding my fist trying not to hit him for not being realistic like me or probably not to beat myself for not being half the man that he was.\nI don’t know about your perspective about religions and I’m not here to tell you about mine but I respect that some religions teach that everything happens for a reason, is it the truth? Does everything happens for a reason? I don’t know, I don’t think that is even the point, It’s silly to even get in an argument about this because no one can be sure about it, it’s simply just a belief, it’s simply teach you to not overthink about the reasons for everything around you, just learn from it if you can and focus on what you can do, it’s kind of funny for me to tell you not to overthink about somethings because I’m sure my 19 year old me would punch me right in the face, but it’s just too draining and exhausting to try to find a reason for every bad thing that have happened to me or to others.\nIn the last three years two of my best friends died, the first one I knew for about nine years and the other one for around five, both killed, both in a way they didn’t deserve to, each time I had to force myself to focus on the 0.0000001% full part of the cup or else I would have lose my sanity.\nI would hate to think what would be my thought process if someone tried to sell me religion like a product, some of them would be like “Hi son, you should follow my beliefs because I’m 100% sure that I’m right and everybody else is wrong and if you don’t, well you’re FU**ED” that would have disfigured some of the beliefs that helped me get better.\nControlling your stream of thoughts will be the hardest thing you’ll ever have to do in your life, but if mastered it you’ll become unstoppable.\n\n\nI’ve been getting into the game industry for around year and half now, I don’t have any experiance in the field but I’ve other experiences that many don’t, working in sales made me learn a lot about people's motivations and incentives, I saw a lot of people jump to make purchase while other chicken out last minute, you don’t get to learn about this in a book or an NLP course, you only get to learn this experience by working in sales first hand, working as an SEO and social media consultant made me care about the little details like posting in the right social medias that is more relevant to your audience, more isn’t always better, choosing the right words colors and timing for best result, sometimes modifying your content for a better marketing or not going into a certain niche even if there’s an audience for it because it doesn’t suit your brand, teaching online made me learn that the selling point isn’t the end goal, helping and mentoring students even after they have purchased the course was way more important than I thought, the feedback I got about the course was crucial to take the course to the next level and some student even helped me with some marketing.\nIf you know anything about the mobile game industry you can see how these experiences can be helpful, I can imagine the kind of journey I want to create for the player because I can build the motivations and incentives I want for him, while I’m building the player journey I’ll always keep in mind to put the monetization and ads the right way so all of them can work seamlessly together for a better player experience, and taking care of existing players and community will always be a priority, I wasn’t happy and cheerful when I had to learn these experiences the hard way, I thought I was just failing, I even remember crying myself to sleep every time I decided to pull the plug on something I was working on, but eventually It worked out somehow I think.\n“you can't connect the dots looking forward, you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something - your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life”.\nSteve Jobs\n\n\nI want to share some of the tricks I used that helped my in general to get my life together:\n\n**Music**\nlisten to cheerful music, even if it might not be exactly what you listen to usually but try them for a while, my favorite type or music is Rock and Metal it’s loud and make me feel empowered but sometimes it's not what I need to change my mood so I started listening to electro music mostly Drum & bass, I didn’t like it at first, I’m human I don’t like to change, but forcing myself to listen to it for while change my perspective about it and I started listening to it while I’m working, and it worked.\n\n\n**habits not motivation**\nWe’re slaves to our habits, it’s exhausting to do something that’s you’re not used to for quite a while, so invest your effort and time to build your habits pit by pit no matter how slow it will take, measure your progress and celebrate your success no matter how small they’re, it’ll make all the difference in your life in the long term.\n\n**work in a group**\nNo matter how introverted person you think you’re, you’re still human at the end of day and you need your dose of human interaction so try to work in group if you can, if you don’t have that luxury (like me) work out side from time to time, library, coffee shop, parks all works, changing your surrounding and environment can change your mood, you can try changing your room\\office decor every couple of weeks too.\n\n**warm-blooded pet**\nGet a warm-blooded pet it helps, I tried fish and turtles but didn’t really work for me they just stared at me with their empty eyes, I have a cat for two year now and It helped, maybe it’s having the sense of that there is a creature that needs you to look after him, it’s helped me not to feel completely unworthy in some bad day.\n\n\nFinally I hope this help you in any way it can, and hope it will find its way to all who needs it.", + "json_metadata": "{\"tags\":[\"story\",\"philosophy\",\"life\",\"psychology\",\"secret-writer\"],\"links\":[\"https://www.youtube.com/watch?v=QJORi5VO1F8\"]}", + "last_update": "2016-08-15T05:28:12", + "created": "2016-08-15T04:53:33", + "active": "2016-08-15T05:28:12", + "last_payout": "2016-09-14T16:58:03", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 4, + "root_author": "a-m3001", + "root_permlink": "how-i-managed-depression-and-work", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 497962, + "author": "a-man", + "permlink": "re-jamiecrypto-raising-leaders-instead-of-rulers-20160807t213425757z", + "category": "homeschooling", + "parent_author": "jamiecrypto", + "parent_permlink": "raising-leaders-instead-of-rulers", + "title": "", + "body": "Trying to repost to FB", + "json_metadata": "{\"tags\":[\"homeschooling\"]}", + "last_update": "2016-08-07T21:34:24", + "created": "2016-08-07T21:34:24", + "active": "2016-08-07T21:34:24", + "last_payout": "2016-09-07T09:52:42", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "jamiecrypto", + "root_permlink": "raising-leaders-instead-of-rulers", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 359861, + "author": "a-spears", + "permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", + "category": "life", + "parent_author": "agent", + "parent_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "title": "", + "body": "Finally someone is saying it out loud. thank you!!", + "json_metadata": "{\"tags\":[\"life\"]}", + "last_update": "2016-07-30T19:38:00", + "created": "2016-07-30T19:37:48", + "active": "2016-07-30T21:34:27", + "last_payout": "2016-08-30T10:16:39", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "agent", + "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 72421, + "author": "a-spears", + "permlink": "re-ashleybr-test-20160713t203411015z", + "category": "travel", + "parent_author": "ashleybr", + "parent_permlink": "test", + "title": "", + "body": "add katie-lynn boulard on FB, she's my friend and she's currently doing an exchange in bangkok. She's really sweet and she said you can come to hers for the evening if you want to have some company. she only has a room so no bed for you :/ but at least something, I'm sure she can give you a meal and just some company. :))", + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_update": "2016-07-13T20:34:12", + "created": "2016-07-13T20:34:12", + "active": "2016-07-13T21:01:48", + "last_payout": "2016-08-25T12:51:45", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 20, + "root_author": "ashleybr", + "root_permlink": "test", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 431883, + "author": "a11at", + "permlink": "ai-revolution-101", + "category": "steemit", + "parent_author": "", + "parent_permlink": "steemit", + "title": "AI Revolution 101", + "body": "https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\n\nAI Revolution 101\nOur last invention, greatest nightmare, or pathway to utopia?\nAbout\nThis essay, originally published in eight short parts, aims to condense the current knowledge on Artificial Intelligence. It explores the state of AI development, overviews its challenges and dangers, features work by the most significant scientists, and describes the main predictions of possible AI outcomes. This project is an adaptation and major shortening of the two–part essay AI Revolution by Tim Urban of Wait But Why. I shortened it by a factor of 3, recreated all images, and tweaked it a bit. Read more on why/how I wrote it here.\nIntroduction\nAssuming that human scientific activity continues without major disruptions, artificial intelligence may become either the most positive transformation of our history or, as many fear, our most dangerous invention of all. AI research is on a steady path to develop a computer that has cognitive abilities equal to the human brain, most likely within three decades (timeline in chapter 5). From what most AI scientists predict, this invention may enable very rapid improvements (called fast take-off), toward something much more powerful — Artificial Super Intelligence — an entity smarter than all of humanity combined (more on ASI in chapter 3). We are not talking about some imaginary future. The first level of AI development is gradually appearing in the technology we use everyday (newest AI advancements in chapter 2). With every coming year these advancements will accelerate and the technology will become more complex, addictive, and ubiquitous. We will continue to outsource more and more kinds of mental work to computers, disrupting every part of our reality: the way we organize ourselves and our work, form communities, and experience the world.\nExponential Growth\nThe Guiding Principle Behind Technological Progress\nTo more intuitively grasp the guiding principles of AI revolution, let’s first step away from scientific research. Let me invite you to take part in a story. Imagine that you’ve received a time machine and been given a quest to bring somebody from the past. The goal is to shock them by showing them the technological and cultural advancements of our time, to such a degree that this person would perform SAFD (Spinning Around From Disbelief).\n\nSo you wonder which era should you time-travel to, and decide to hop back around 200 years. You get to the early 1800s, retrieve a guy and bring him back to 2016. You “…walk him around and watch him react to everything. It’s impossible for us to understand what it would be like for him to see shiny capsules racing by on a highway, talk to people who had been on the other side of the ocean earlier in the day, watch sports that were being played 1,000 miles away, hear a musical performance that happened 50 years ago, and play with …[a] magical wizard rectangle that he could use to capture a real-life image or record a living moment, generate a map with a paranormal moving blue dot that shows him where he is, look at someone’s face and chat with them even though they’re on the other side of the country, and worlds of other inconceivable sorcery.”¹ It doesn’t take much. After two minutes he is SAFDing.\nNow, both of you want to try the same thing, see somebody Spinning Around From Disbelief, but in your new friend’s era. Since 200 years worked, you jump back to the 1600s and bring a guy to the 1800s. He’s certainly genuinely interested in what he sees. However, you feel it with confidence — SAFD will never happen to him. You feel that you need to jump back again, but somewhere radically further. You settle on rewinding the clock 15,000 years, to the times “…before the First Agricultural Revolution gave rise to the first cities and the concept of civilisations.”² You bring someone from the hunter-gatherer world and show him “…the vast human empires of 1750 with their towering churches, their ocean-crossing ships, their concept of being “inside,” and their enormous mountain of collective, accumulated human knowledge and discovery”³ — in forms of books. It doesn’t take much. He is SAFDing in the first two minutes.\nNow there are three of you, enormously excited to do it again. You know that it doesn’t make sense to go back another 15,000, 30,000 or 45,000 years. You have to jump back, again, radically further. So you pick up a guy from 100,000 years ago and you you walk with him into large tribes with organized, sophisticated social hierarchies. He encounters a variety of hunting weapons, sophisticated tools, sees fire and for the first time experiences language in the form of signs and sounds. You get the idea, it has to be immensely mind-blowing. He is SAFDing after two minutes.\nSo what happened? Why did the last guy had to hop → 100,000 years, the next one → 15,000 years, and the guy who was hopping to our times only → 200 years?\n\nhttps://cdn-images-1.medium.com/max/2000/1*Wbd0td3DqD3pJo7_YHjkbQ.gif\n\n“This happens because more advanced societies have the ability to progress at a faster rate than less advanced societies — because they’re more advanced. [1800s] humanity knew more and had better technology…”⁴, so it’s no wonder they could make further advancements than humanity from 15,000 years ago. The time to achieve SAFD shrank from ~100,000 years to ~200 years and if we look into the future it will rapidly shrink even further. Ray Kurzweil, AI expert and scientist, predicts that a “…20th century’s worth of progress happened between 2000 and 2014 and that another 20th century’s worth of progress will happen by 2021, in only seven years⁵…A couple decades later, he believes a 20th century’s worth of progress will happen multiple times in the same year, and even later, in less than one month⁶…Kurzweil believes that the 21st century will achieve 1,000 times the progress of the 20th century.”⁷\n“Logic also suggests that if the most advanced species on a planet keeps making larger and larger leaps forward at an ever-faster rate, at some point, they’ll make a leap so great that it completely alters life as they know it and the perception they have of what it means to be a human. Kind of like how evolution kept making great leaps toward intelligence until finally it made such a large leap to the human being that it completely altered what it meant for any creature to live on planet Earth. And if you spend some time reading about what’s going on today in science and technology, you start to see a lot of signs quietly hinting that life as we currently know it cannot withstand the leap that’s coming next.”⁸\nThe Road to Artificial General Intelligence\nBuilding a Computer as Smart as Humans\nArtificial Intelligence, or AI, is a broad term for the advancement of intelligence in computers. Despite varied opinions on this topic, most experts agree that there are three categories, or calibers, of AI development. They are:\nANI: Artificial Narrow Intelligence\n1st intelligence caliber. “AI that specializes in one area. There’s AI that can beat the world chess champion in chess, but that’s the only thing it does.”⁹\nAGI: Artificial General Intelligence\n2nd intelligence caliber. AI that reaches and then passes the intelligence level of a human, meaning it has the ability to “reason, plan, solve problems, think abstractly, comprehend complex ideas, learn quickly, and learn from experience.”¹⁰\nASI: Artificial Super Intelligence\n3rd intelligence caliber. AI that achieves a level of intelligence smarter than all of humanity combined — “ranging from just a little smarter … to one trillion times smarter.”¹¹\n\nhttps://cdn-images-1.medium.com/max/800/1*5AkzXZJoVXRrGNSOO8ZojQ.gif\n\nWhere are we currently?\n“As of now, humans have conquered the lowest caliber of AI — ANI — in many ways, and it’s everywhere:”¹²\n“Cars are full of ANI systems, from the computer that figures out when the anti-lock brakes kick in, to the computer that tunes the parameters of the fuel injection systems.”¹³\n“Google search is one large ANI brain with incredibly sophisticated methods for ranking pages and figuring out what to show you in particular. Same goes for Facebook’s Newsfeed.”¹⁴\nEmail spam filters “start off loaded with intelligence about how to figure out what’s spam and what’s not, and then it learns and tailors its intelligence to your particular preferences.”¹⁵\nPassenger planes are flown almost entirely by ANI, without the help of humans.\n“Google’s self-driving car, which is being tested now, will contain robust ANI systems that allow it to perceive and react to the world around it.”¹⁶\n“Your phone is a little ANI factory … you navigate using your map app, receive tailored music recommendations from Pandora, check tomorrow’s weather, talk to Siri.”¹⁷\n“The world’s best Checkers, Chess, Scrabble, Backgammon, and Othello players are now all ANI systems.”¹⁸\n“Sophisticated ANI systems are widely used in sectors and industries like military, manufacturing, and finance (algorithmic high-frequency AI traders account for more than half of equity shares traded on US markets¹⁹).”²⁰\n“ANI systems as they are now aren’t especially scary. At worst, a glitchy or badly-programed ANI can cause an isolated catastrophe like”²¹ a plane crash, a nuclear power plant malfunction, or “a financial markets disaster (like the 2010 Flash Crash when an ANI program reacted the wrong way to an unexpected situation and caused the stock market to briefly plummet, taking $1 trillion of market value with it, only part of which was recovered when the mistake was corrected) … But while ANI doesn’t have the capability to cause an existential threat, we should see this increasingly large and complex ecosystem of relatively-harmless ANI as a precursor of the world-altering hurricane that’s on the way. Each new ANI innovation quietly adds another brick onto the road to AGI and ASI.”²²\n\nhttps://cdn-images-1.medium.com/max/2000/1*Ia8wUuZPxpUNzvUjNRsxpA.gif\n\nWhat’s Next? Challenges Behind Reaching AGI\n“Nothing will make you appreciate human intelligence like learning about how unbelievably challenging it is to try to create a computer as smart as we are … Build a computer that can multiply ten-digit numbers in a split second — incredibly easy. Build one that can look at a dog and answer whether it’s a dog or a cat — spectacularly difficult. Make AI that can beat any human in chess? Done. Make one that can read a paragraph from a six-year-old’s picture book and not just recognise the words but understand the meaning of them? Google is currently spending billions of dollars trying to do it.”²³\nWhy are “hard things — like calculus, financial market strategy, and language translation … mind-numbingly easy for a computer, while easy things — like vision, motion, movement, and perception — are insanely hard for it”²⁴?\n“Things that seem easy to us are actually unbelievably complicated. They only seem easy because those skills have been optimized in us (and most animals) by hundreds of million years of animal evolution. When you reach your hand up toward an object, the muscles, tendons, and bones in your shoulder, elbow, and wrist instantly perform a long series of physics operations, in conjunction with your eyes, to allow you to move your hand in a straight line through three dimensions … On the other hand, multiplying big numbers or playing chess are new activities for biological creatures and we haven’t had any time to evolve a proficiency at them, so a computer doesn’t need to work too hard to beat us.”²⁵\n\nhttps://cdn-images-1.medium.com/max/1200/0*E-qdF22nxvOrVPxP.\n\nWhen you look at picture A, “you and a computer both can figure out that it’s a rectangle with two distinct shades, alternating. Tied so far.”²⁶\nPicture B. “You have no problem giving a full description of the various opaque and translucent cylinders, slats, and 3-D corners, but the computer would fail miserably. It would describe what it sees — a variety of two-dimensional shapes in several different shades — which is actually what’s there.”²⁷ “Your brain is doing a ton of fancy shit to interpret the implied depth, shade-mixing, and room lighting the picture is trying to portray.”²⁸\nLooking at picture C, “a computer sees a two-dimensional white, black, and gray collage, while you easily see what it really is”²⁹ — a photo of a girl and a dog standing on a rocky shore.\n“And everything we just mentioned is still only taking in visual information and processing it. To be human-level intelligent, a computer would have to understand things like the difference between subtle facial expressions, the distinction between being pleased, relieved and content”³⁰.\nHow will computers reach even higher abilities like complex reasoning, interpreting data, and associating ideas from separate fields (domain-general knowledge)?\n“Building skyscrapers, putting humans in space, figuring out the details of how the Big Bang went down — all far easier than understanding our own brain or how to make something as cool as it. As of now, the human brain is the most complex object in the known universe.”³¹\nBuilding Hardware\nIf an artificial intelligence is going to be as intelligent as the human brain, one crucial thing has to happen — the AI “needs to equal the brain’s raw computing capacity. One way to express this capacity is in the total calculations per second the brain could manage.”³²\n\nThe challenge is that currently only a few of the brain’s regions are precisely measured. However, Ray Kurzweil, has developed a method for estimating the total cps of the human brain. He arrived at this estimate by taking the cps from one brain region and multiplying it proportionally to the weight of that region, compared to the weight of the whole brain. “He did this a bunch of times with various professional estimates of different regions, and the total always arrived in the same ballpark — around 10¹⁶, or 10 quadrillion cps.”³³\n“Currently, the world’s fastest supercomputer, China’s Tianhe-2, has actually beaten that number, clocking in at about 34 quadrillion cps.”³⁴ But Tianhe-2 is also monstrous, “taking up 720 square meters of space, using 24 megawatts of power (the brain runs on just 20 watts), and costing $390 million to build. Not especially applicable to wide usage, or even most commercial or industrial usage yet.”³⁵\n“Kurzweil suggests that we think about the state of computers by looking at how many cps you can buy for $1,000. When that number reaches human-level — 10 quadrillion cps — then that’ll mean AGI could become a very real part of life.”³⁶\nCurrently we’re only at about 10¹⁰ (10 trillion) cps per $1,000. However, historically reliable Moore’s Law states “that the world’s maximum computing power doubles approximately every two years, meaning computer hardware advancement, like general human advancement through history, grows exponentially³⁷ … right on pace with this graph’s predicted trajectory:”³⁸\n\nhttps://cdn-images-1.medium.com/max/800/1*4qcqwbsWjvWh-BWPnAsp6g.gif\n\nThis dynamic “puts us right on pace to get to an affordable computer by 2025 that rivals the power of the brain … But raw computational power alone doesn’t make a computer generally intelligent — the next question is, how do we bring human-level intelligence to all that power?”³⁹\nBuilding Software\nThe hardest part of creating AGI is learning how to develop its software. “The truth is, no one really knows how to make it smart — we’re still debating how to make a computer human-level intelligent and capable of knowing what a dog and a weird-written B and a mediocre movie is.”⁴⁰ But there are a couple of strategies. These are the three most common:\nCopy how the brain works.\nThe most straight-forward idea is to plagiarize the brain, and build the computer’s architecture with close resemblance to how a brain is structured. One example “is the artificial neural network. It starts out as a network of transistor ‘neurons,’ connected to each other with inputs and outputs, and it knows nothing — like an infant brain. The way it ‘learns’ is it tries to do a task, say handwriting recognition, and at first, its neural firings and subsequent guesses at deciphering each letter will be completely random. But when it’s told it got something right, the transistor connections in the firing pathways that happened to create that answer are strengthened; when it’s told it was wrong, those pathways’ connections are weakened. After a lot of this trial and feedback, the network has, by itself, formed smart neural pathways and the machine has become optimized for the task.”⁴¹\nThe second, more radical approach to plagiarism is whole brain emulation. Scientists take a real brain, cut it into a large number of tiny slices to look at the neural connections and replicate them in a computer as software. If that method is ever successful, we will have “a computer officially capable of everything the brain is capable of — it would just need to learn and gather information … How far are we from achieving whole brain emulation? Well so far, we’ve just recently been able to emulate a 1mm-long flatworm brain, which consists of just 302 total neurons.”⁴² To put this into perspective, the human brain consists of 86 billion neurons linked by trillions of synapses.\n2. Introduce evolution to computers.\n“The fact is, even if we can emulate a brain, that might be like trying to build an airplane by copying a bird’s wing-flapping motions — often, machines are best designed using a fresh, machine-oriented approach, not by mimicking biology exactly.”⁴³ If the brain is just too complex for us to digitally replicate, we could try to emulate evolution instead. This uses a process called genetic algorithms. “A group of computers would try to do tasks, and the most successful ones would be bred with each other by having half of each of their programming merged together into a new computer. The less successful ones would be eliminated.”⁴⁴ Speed and a goal-oriented approach are the advantages that artificial evolution has over biological evolution. “Over many, many iterations, this natural selection process would produce better and better computers. The challenge would be creating an automated evaluation and breeding cycle so this evolution process could run on its own.”⁴⁵\n3. “Make this whole thing the computer’s problem, not ours.”⁴⁶\nThe last concept is the simplest, but probably the scariest of them all. “We’d build a computer whose two major skills would be doing research on AI and coding changes into itself — allowing it to not only learn but to improve its own architecture. We’d teach computers to be computer scientists so they could bootstrap their own development.”⁴⁷ This is the likeliest way to get AGI soon that we know of.\nAll these software advances may seem slow or a little bit intangible, but as it is with the sciences, one minor innovation can suddenly accelerate the pace of developments. Kind of like the aftermath of the Copernican revolution — the discovery that suddenly made all the complicated mathematics of the planets’ trajectories much easier to calculate, which enabled a multitude of other innovations. Also, the “exponential growth is intense and what seems like a snail’s pace of advancement can quickly race upwards.”⁴⁸\n\nhttps://cdn-images-1.medium.com/max/1200/1*BHwAlKJFYwKYEzZlitNTvQ.gif\n\nThe Road to Artificial Super Intelligence\nAn Entity Smarter than all of Humanity Combined\nIt’s very real that at some point we will achieve AGI: software that has achieved human-level, or beyond human-level, intelligence. Does this mean that at that very moment the computers will be equally capable as us? Actually, not at all — computers will be way more efficient. Because of the fact that they are electronic, they will have following advantages:\nSpeed. “The brain’s neurons max out at around 200 Hz, while today’s microprocessors … run at 2 GHz, or 10 million times faster.”⁵¹\nMemory. Forgetting or confusing things is much harder in an artificial world. Computers can memorize more things in one second than a human can in ten years. A computer’s memory is also more precise and has a much greater storage capacity.\nPerformance. “Computer transistors are more accurate than biological neurons, and they’re less likely to deteriorate (and can be repaired or replaced if they do). Human brains also get fatigued easily, while computers can run nonstop, at peak performance, 24/7.”⁵²\nCollective capability. Group work is ridiculously challenging because of time-consuming communication and complex social hierarchies. The bigger the group gets, the slower the output of each person becomes. AI, on the other hand, isn’t biologically constrained to one body, won’t have human cooperation problems, and is able to synchronize and update its own operating system.\nIntelligence Explosion\nWe need to realize that AI “wouldn’t see ‘human-level intelligence’ as some important milestone — it’s only a relevant marker from our point of view — and wouldn’t have any reason to ‘stop’ at our level. And given the advantages over us that even human intelligence-equivalent AGI would have, it’s pretty obvious that it would only hit human intelligence for a brief instant before racing onwards to the realm of superior-to-human intelligence.”⁵³\nThe true distinction between humans and ASI wouldn’t be its advantage in intelligence speed, but “in intelligence quality — which is something completely different. What makes humans so much more intellectually capable than chimps isn’t a difference in thinking speed — it’s that human brains contain a number of sophisticated cognitive modules that enable things like complex linguistic representations or longterm planning or abstract reasoning, that chimps’ brains do not have. Speeding up a chimp’s brain by thousands of times wouldn’t bring him to our level — even with a decade’s time of learning, he wouldn’t be able to figure out how to … ”⁵⁴ assemble a semi-complicated Lego model by looking at its manual — something a young human could achieve in a few minutes. “There are worlds of human cognitive function a chimp will simply never be capable of, no matter how much time he spends trying.”⁵⁵\n“And in the scheme of the biological intelligence range … the chimp-to-human quality intelligence gap is tiny.”⁵⁶\n\nhttps://cdn-images-1.medium.com/max/800/1*vnVWATTAMCwfnJu_iZn2RQ.jpeg\n\nIn order to render how big a deal it would be to exist with something that has a higher quality of intelligence than us, we need to imagine AI on the intelligence staircase two steps above us — “its increased cognitive ability over us would be as vast as the chimp–human gap … And like the chimp’s incapacity to ever absorb …”⁵⁷ what kind of magic happens in the mechanism of a doorknob — “we will never be able to even comprehend the things … [a machine of that intelligence] can do, even if the machine tried to explain them to us … And that’s only two steps above us.”⁵⁸\n“A machine on the second-to-highest step on that staircase would be to us as we are to ants.”⁵⁹ “Superintelligence of that magnitude is not something we can remotely grasp, any more than a bumblebee can wrap its head around Keynesian Economics. In our world, smart means a 130 IQ and stupid means an 85 IQ — we don’t have a word for an IQ of 12,952.”⁶⁰\n“But the kind of superintelligence we’re talking about today is something far beyond anything on this staircase. In an intelligence explosion — where the smarter a machine gets, the quicker it’s able to increase its own intelligence — a machine might take years to rise from … ”⁶¹ the intelligence of an ant to the intelligence of the average human, but it might take only another 40 days to become Einstein-smart. When that happens, “it works to improve its intelligence, with an Einstein-level intellect, it has an easier time and can make bigger leaps. These leaps will make it much smarter than any human, allowing it to make even bigger leaps.”⁶²\nFrom then on, following the rule of exponential advancements and utilizing the speed and efficiency of electrical circuits, it may perhaps take only 20 minutes to jump another step, “and by the time it’s ten steps above us, it might be jumping up in four-step leaps every second that goes by. Which is why we need to realize that it’s distinctly possible that very shortly after the big news story about the first machine reaching human-level AGI, we might be facing the reality of coexisting on the Earth with something that’s here on the staircase (or maybe a million times higher):”⁶³\n\nhttps://cdn-images-1.medium.com/max/800/0*LdJxmWCjSdweUKvb.\n\n“And since we just established that it’s a hopeless activity to try to understand the power of a machine only two steps above us, let’s very concretely state once and for all that there is no way to know what ASI will do or what the consequences will be for us. Anyone who pretends otherwise doesn’t understand what superintelligence means.”⁶⁴\n“If our meager brains were able to invent wifi, then something 100 or 1,000 or 1 billion times smarter than we are should have no problem controlling the positioning of each and every atom in the world in any way it likes, at any time — everything we consider magic, every power we imagine a supreme God to have will be as mundane an activity for the ASI as flipping on a light switch is for us.”⁶⁵\n“As far as we’re concerned, if an ASI comes into being, there is now an omnipotent God on Earth — and the all-important question for us is: Will it be a good god?”⁶⁶\nLet’s start from the brighter side of the story.\nHow Can ASI Change our World?\nSpeculations on Two Revolutionary Technologies\nNanotechnology\nNanotechnology is an idea that comes up “in almost everything you read about the future of AI.”⁶⁷ It’s the technology that works at the nano scale — from 1 to 100 nanometers. “A nanometer is a millionth of a millimeter. 1 nm–100 nm range encompasses viruses (100 nm accross), DNA (10 nm wide), and things as small as molecules like hemoglobin (5 nm) and medium molecules like glucose (1 nm). If/when we conquer nanotechnology, the next step will be the ability to manipulate individual atoms, which are only one order of magnitude smaller (~.1 nm).”⁶⁸\nTo put this into perspective, imagine a very tall human standing on the earth, with a head that reaches the International Space Station (431 km/268 mi high). The giant is reaching down with his hand (30 km/19 mi across) to build “objects using materials between the size of a grain of sand [.25 mm] and an eyeball [2.5 cm].”⁶⁹\n\nhttps://cdn-images-1.medium.com/max/1200/1*e9Ut3QT2F3tNh4h5U4rR8A.jpeg\n\n“Once we get nanotechnology down, we can use it to make tech devices, clothing, food, a variety of bio-related products — artificial blood cells, tiny virus or cancer-cell destroyers, muscle tissue, etc. — anything really. And in a world that uses nanotechnology, the cost of a material is no longer tied to its scarcity or the difficulty of its manufacturing process, but instead determined by how complicated its atomic structure is. In a nanotech world, a diamond might be cheaper than a pencil eraser.”⁷⁰\nOne of the proposed methods of nanotech assembly is to make “one that could self-replicate, and then let the reproduction process turn that one into two, those two then turn into four, four into eight, and in about a day, there’d be a few trillion of them ready to go.”⁷¹\nBut what if this process goes wrong or terrorists manage to get ahold of the technology? Let’s imagine a scenario where nanobots “would be designed to consume any carbon-based material in order to feed the replication process, and unpleasantly, all life is carbon-based. The Earth’s biomass contains about 1⁰⁴⁵ carbon atoms. A nanobot would consist of about 1⁰⁶ carbon atoms, so it would take 1⁰³⁹ nanobots to consume all life on Earth, which would happen in 130 replications. … Scientists think a nanobot could replicate in about 100 seconds, meaning this simple mistake would inconveniently end all life on Earth in 3.5 hours.”⁷²\nWe are not yet capable of harnessing nanotechnology — for good or for bad. “And it’s not clear if we’re underestimating, or overestimating, how hard it will be to get there. But we don’t seem to be that far away. Kurzweil predicts that we’ll get there by the 2020s.⁷³Governments know that nanotech could be an Earth-shaking development … The US, the EU, and Japan⁷⁴ have invested over a combined $5 billion so far”⁷⁵\nImmortality\n“Because everyone has always died, we live under the assumption … that death is inevitable. We think of aging like time — both keep moving and there’s nothing you can do to stop it.”⁷⁶ For centuries, poets and philosophers have wondered if consciousness doesn’t have to go the way of the body. W.B. Yeats describes us as “a soul fastened to a dying animal.”⁷⁷ Richard Feynman, Nobel awarded physicists, views death from a purely scientific standpoint:\n“It is one of the most remarkable things that in all of the biological sciences there is no clue as to the necessity of death. If you say we want to make perpetual motion, we have discovered enough laws as we studied physics to see that it is either absolutely impossible or else the laws are wrong. But there is nothing in biology yet found that indicates the inevitability of death. This suggests to me that it is not at all inevitable, and that it is only a matter of time before the biologists discover what it is that is causing us the trouble and that that terrible universal disease or temporariness of the human’s body will be cured.”⁷⁸\nTheory of great species attractors\nWhen we look at the history of biological life on earth, so far 99.9% of species have gone extinct. Nick Bostrom, Oxford professor and AI specialist, “calls extinction an attractor state — a place species are … falling into and from which no species ever returns.”⁷⁹\n\nhttps://cdn-images-1.medium.com/max/1200/0*o-MXeAYfUtWnOJKC.\n\n“And while most AI scientists … acknowledge that ASI would have the ability to send humans to extinction, many also believe that if used beneficially, ASI’s abilities could be used to bring individual humans, and the species as a whole, to a second attractor state — species immortality.”⁸⁰\n\nhttps://cdn-images-1.medium.com/max/1200/0*aYeNOSBxp4gieGwp.\n\n“Evolution had no good reason to extend our lifespans any longer than they are now … From an evolutionary point of view, the whole human species can thrive with a 30+ year lifespan” for each single human. It’s long enough to reproduce and raise children … so there’s no reason for mutations toward unusually long life being favored in the natural selection process.”⁸¹Though, “if you perfectly repaired or replaced a car’s parts whenever one of them began to wear down, the car would run forever. The human body isn’t any different — just far more complex … This seems absurd — but the body is just a bunch of atoms…”⁸² making up organically programmed DNA, which it is theoretically possible to manipulate. And something as powerful as ASI could help us master genetic engineering.\nRay Kurzweil believes that “artificial materials will be integrated into the body more and more … Organs could be replaced by super-advanced machine versions that would run forever and never fail.”⁸³ Red blood cells could be perfected by “red blood cell nanobots, who could power their own movement, eliminating the need for a heart at all … Nanotech theorist Robert A. Freitas has already designed blood cell replacements that, if one day implemented in the body, would allow a human to sprint for 15 minutes without taking a breath … [Kurzweil] even gets to the brain and believes we’ll enhance our mental activities to the point where humans will be able to think billions of times faster”⁸⁴ by integrating electrical components and being able to access online data.\n“Eventually, Kurzweil believes humans will reach a point when they’re entirely artificial, a time when we’ll look back at biological material and think how unbelievably primitive primitive it was that humans were ever made of that”⁸⁵and that humans aged, suffered from cancer, allowed random factors like microbes, diseases, accidents to harm us or make us disappear.”\n\nhttps://cdn-images-1.medium.com/max/2000/1*NcWWmd677RVWQRpLsz5X9g.jpeg\n\nWhen Will The First Machine Become Superintelligent?\nPredictions from Top AI Experts\n“How long until the first machine reaches superintelligence? Not shockingly, opinions vary wildly, and this is a heated debate among scientists and thinkers. Many, like professor Vernor Vinge, scientist Ben Goertzel, Sun Microsystems co-founder Bill Joy, or, most famously, inventor and futurist Ray Kurzweil, agree with machine learning expert Jeremy Howard when he puts up this graph during a TED Talk\n\n“Those people subscribe to the belief that this is happening soon — that exponential growth is at work and machine learning, though only slowly creeping up on us now, will blow right past us within the next few decades.\n“Others, like Microsoft co-founder Paul Allen, research psychologist Gary Marcus, NYU computer scientist Ernest Davis, and tech entrepreneur Mitch Kapor, believe that thinkers like Kurzweil are vastly underestimating the magnitude of the challenge [and the transition will actually take much more time] …\n“The Kurzweil camp would counter that the only underestimating that’s happening is the underappreciation of exponential growth, and they’d compare the doubters to those who looked at the slow-growing seedling of the internet in 1985 and argued that there was no way it would amount to anything impactful in the near future.\n“The doubters might argue back that the progress needed to make advancements in intelligence also grows exponentially harder with each subsequent step, which will cancel out the typical exponential nature of technological progress. And so on.\n“A third camp, which includes Nick Bostrom, believes neither group has any ground to feel certain about the timeline and acknowledges both A) that this could absolutely happen in the near future and B) that there’s no guarantee about that; it could also take a much longer time.\n“Still others, like philosopher Hubert Dreyfus, believe all three of these groups are naive for believing that there is potential of ASI, arguing that it’s more likely that it won’t actually ever be achieved.\n“So what do you get when you put all of these opinions together?”⁸⁶\nTimeline for Artificial General Intelligence\n“In 2013, Vincent C. Müller and Nick Bostrom conducted a survey that asked hundreds of AI experts … the following:”⁸⁷\n“For the purposes of this question, assume that human scientific activity continues without major negative disruption. By what year would you see a (10% / 50% / 90%) probability for such Human-Level Machine Intelligence [or what we call AGI] to exist?”⁸⁸\nThe survey “asked them to name an optimistic year (one in which they believe there’s a 10% chance we’ll have AGI), a realistic guess (a year they believe there’s a 50% chance of AGI — i.e. after that year they think it’s more likely than not that we’ll have AGI), and a safe guess (the earliest year by which they can say with 90% certainty we’ll have AGI). Gathered together as one data set, here were the results:\nMedian optimistic year (10% likelihood) → 2022\nMedian realistic year (50% likelihood) → 2040\nMedian pessimistic year (90% likelihood) → 2075\n“So the median participant thinks it’s more likely than not that we’ll have AGI 25 years from now. The 90% median answer of 2075 means that if you’re a teenager right now, the median respondent, along with over half of the group of AI experts, is almost certain AGI will happen within your lifetime.\n“A separate study, conducted recently by author James Barrat at Ben Goertzel’s annual AGI Conference, did away with percentages and simply asked when participants thought AGI would be achieved — by 2030, by 2050, by 2100, after 2100, or never. The results:⁸⁹\n42% of respondents → By 2030\n25% of respondents → By 2050\n20% of respondents → By 2100\n10% of respondents → After 2100\n2% of respondents → Never\n“Pretty similar to Müller and Bostrom’s outcomes. In Barrat’s survey, over two thirds of participants believe AGI will be here by 2050 and a little less than half predict AGI within the next 15 years. Also striking is that only 2% of those surveyed don’t think AGI is part of our future.”⁹⁰\n\nhttps://cdn-images-1.medium.com/max/2000/1*U8ueEMtG6-D5hie8rZJGtQ.jpeg\n\nTimeline for Artificial Super Intelligence\n“Müller and Bostrom also asked the experts how likely they think it is that we’ll reach ASI: A), within two years of reaching AGI (i.e. an almost-immediate intelligence explosion), and B), within 30 years.”⁹¹ Respondents were asked to choose a probability for each option. Here are the results:⁹²\nAGI–ASI transition in 2 years → 10% likelihood\nAGI–ASI transition in 30 years → 75% likelihood\n“The median answer put a rapid (2 year) AGI–ASI transition at only a 10% likelihood, but a longer transition of 30 years or less at a 75% likelihood. We don’t know from this data the length of this transition [AGI–ASI] the median participant would have put at a 50% likelihood, but for ballpark purposes, based on the two answers above, let’s estimate that they’d have said 20 years.\n“So the median opinion — the one right in the center of the world of AI experts — believes the most realistic guess for when we’ll hit ASI … is [the 2040 prediction for AGI + our estimated prediction of a 20-year transition from AGI to ASI] = 2060.\n\nhttps://cdn-images-1.medium.com/max/2000/1*YY8e493ER4LNomQV-NyMYg.jpeg\n\n“Of course, all of the above statistics are speculative, and they’re only representative of the median opinion of the AI expert community, but it tells us that a large portion of the people who know the most about this topic would agree that 2060 is a very reasonable estimate for the arrival of potentially world-altering ASI. Only 45 years from now”⁹³\n\nhttps://cdn-images-1.medium.com/max/2000/1*sGdvHHs02XWoQ35BcEWAXQ.gif\n\nAI Outcomes\nTwo Main Groups of AI Scientists with Two Radically Opposed Conclusions\nThe Confident Corner\nMost of what we have discussed so far represents a surprisingly large group of scientists that share optimistic views on the outcome of AI development. “Where their confidence comes from is up for debate. Critics believe it comes from an excitement so blinding that they simply ignore or deny potential negative outcomes. But the believers say it’s naive to conjure up doomsday scenarios when on balance, technology has and will likely end up continuing to help us a lot more than it hurts us.”⁹⁴ Peter Diamandis, Ben Goertezl and Ray Kurzweil are some of the major figures of this group, who have built a vast, dedicated following and regard themselves as Singularitarians.\n\nLet’s talk about Ray Kurzweil, who is probably one of the most impressive and polarizing AI theoreticians out there. He attracts both “godlike worship … and eye-rolling contempt … He came up with several breakthrough inventions, including the first flatbed scanner, the first scanner that converted text to speech (allowing the blind to read standard texts), the well-known Kurzweil music synthesizer (the first true electric piano), and the first commercially marketed large-vocabulary speech recognition. He’s well-known for his bold predictions,”⁹⁵ including envisioning that intelligence technology like Deep Blue would be capable of beating a chess grandmaster by 1998. He also anticipated “in the late ’80s, a time when the internet was an obscure thing, that by the early 2000s it would become a global phenomenon.”⁹⁶ Out “of the 147 predictions that Kurzweil has made since the 1990’s, fully 115 of them have turned out to be correct, and another 12 have turned out to be ‘essentially correct’ (off by a year or two), giving his predictions a stunning 86% accuracy rate”⁹⁷. “He’s the author of five national bestselling books … In 2012, Google co-founder Larry Page approached Kurzweil and asked him to be Google’s Director of Engineering. In 2011, he co-founded Singularity University, which is hosted by NASA and sponsored partially by Google. Not bad for one life.”⁹⁸\nHis biography is important, because if you don’t have this context, he sounds like somebody who’s completely lost his senses. “Kurzweil believes computers will reach AGI by 2029 and that by 2045 we’ll have not only ASI, but a full-blown new world — a time he calls the singularity. His AI-related timeline used to be seen as outrageously overzealous, and it still is by many, but in the last 15 years, the rapid advances of ANI systems have brought the larger world of AI experts much closer to Kurzweil’s timeline. His predictions are still a bit more ambitious than the median respondent on Müller and Bostrom’s survey (AGI by 2040, ASI by 2060), but not by that much.”⁹⁹\n\nThe Anxious Corner\n“You will not be surprised to learn that Kurzweil’s ideas have attracted significant criticism … For every expert who fervently believes Kurzweil is right on, there are probably three who think he’s way off … [The surprising fact] is that most of the experts who disagree with him don’t really disagree that everything he’s saying is possible.”¹⁰⁰ Nick Bostrom, philosopher and Director of the Oxford Future of Humanity Institute, who criticizes Kurzweil for a variety of reasons, and calls for greater caution in thinking about potential outcomes of AI, acknowledges that:\n“Disease, poverty, environmental destruction, unnecessary suffering of all kinds: these are things that a superintelligence equipped with advanced nanotechnology would be capable of eliminating. Additionally, a superintelligence could give us indefinite lifespan, either by stopping and reversing the aging process through the use of nanomedicine, or by offering us the option to upload ourselves.”¹⁰¹\n“Yes, all of that can happen if we safely transition to ASI — but that’s the hard part.”¹⁰² Thinkers from the Anxious Corner point out that Kurzweil’s “famous book The Singularity is Near is over 700 pages long and he dedicates around 20 of those pages to potential dangers.”¹⁰³ The colossal power of AI is neatly summarized by Kurzweil: “[ASI] is emerging from many diverse efforts and will be deeply integrated into our civilization’s infrastructure. Indeed, it will be intimately embedded in our bodies and brains. As such, it will reflect our values because it will be us …”¹⁰⁴\n“But if that’s the answer, why are so many of the world’s smartest people so worried right now? Why does Stephen Hawking say the development of ASI ‘could spell the end of the human race,’ and Bill Gates says he doesn’t ‘understand why some people are not concerned’ and Elon Musk fears that we’re ‘summoning the demon?’ And why do so many experts on the topic call ASI the biggest threat to humanity?”¹⁰⁵\n\nhttps://cdn-images-1.medium.com/max/2000/1*1DB3Im9mQsOMOKQ69KePGw.gif\n\nThe Last Invention We Will Ever Make\nExistential Dangers of AI Developments\n“When it comes to developing supersmart AI, we’re creating something that will probably change everything, but in totally uncharted territory, and we have no idea what will happen when we get there.”¹⁰⁶ Scientist Danny Hillis compares the situation to:\n“when single-celled organisms were turning into multi-celled organisms. We are amoebas and we can’t figure out what the hell this thing is that we’re creating.” ¹⁰⁷\nand Nick Bostrom warns:\n“Before the prospect of an intelligence explosion, we humans are like small children playing with a bomb. Such is the mismatch between the power of our plaything and the immaturity of our conduct.” ¹⁰⁸\nIt’s very likely that ASI — “Artificial Superintelligence”, or AI that achieves a level of intelligence smarter than all of humanity combined — will be something entirely different than intelligence entities we are accustomed to. “On our little island of human psychology, we divide everything into moral or immoral. But both of those only exist within the small range of human behavioral possibility. Outside our island of moral and immoral is a vast sea of amoral, and anything that’s not human, especially something nonbiological, would be amoral, by default.”¹⁰⁹\n“To understand ASI, we have to wrap our heads around the concept of something both smart and totally alien … Anthropomorphizing AI (projecting human values on a non-human entity) will only become more tempting as AI systems get smarter and better at seeming human … Humans feel high-level emotions like empathy because we have evolved to feel them — i.e. we’ve been programmed to feel them by evolution — but empathy is not inherently a characteristic of ‘anything with high intelligence’.”¹¹⁰\n“Nick Bostrom believes that … any level of intelligence can be combined with any final goal … Any assumption that once superintelligent, a system would be over it with their original goal and onto more interesting or meaningful things is anthropomorphizing. Humans get ‘over’ things, not computers.”¹¹¹The motivation of an early ASI would be “whatever we programmed its motivation to be. AI systems are given goals by their creators — your GPS’s goal is to give you the most efficient driving directions, Watson’s goal is to answer questions accurately. And fulfilling those goals as well as possible is their motivation.”¹¹²\nBostrom, and many others, predict that the very first computer to reach ASI will immediately notice the strategic benefit of being the world’s only ASI system.\nBostrom, who says that he doesn’t know when we will achieve AGI, also believes that when we finally do, probably the transition from AGI to ASI will happen in a matter of days, hours, or minutes — something called “fast take-off.” In that case, if the first AGI will jump straight to ASI: “even just a few days before the second place, it would be far enough ahead in intelligence to effectively and permanently suppress all competitors.”¹¹³ This would allow the world’s first ASI to become “what’s called a singleton — an ASI that can [singularly] rule the world at its whim forever, whether its whim is to lead us to immortality, wipe us from existence, or turn the universe into endless paperclips.”¹¹³\n“The singleton phenomenon can work in our favor or lead to our destruction. If the people thinking hardest about AI theory and human safety can come up with a fail-safe way to bring about friendly ASI before any AI reaches human-level intelligence, the first ASI may turn out friendly”¹¹⁴\n“But if things go the other way — if the global rush … a large and varied group of parties”¹¹⁵ are “racing ahead at top speed … to beat their competitors … we’ll be treated to an existential catastrophe.”¹¹⁶ In that case “most ambitious parties are moving faster and faster, consumed with dreams of the money and awards and power and fame … And when you’re sprinting as fast as you can, there’s not much time to stop ponder the dangers. On the contrary, what they’re probably doing is programming their early systems with a very simple, reductionist goal … just ‘get the AI to work.’”¹¹⁷\n\nhttps://cdn-images-1.medium.com/max/800/1*fD1T63nZH1u7Y4ft84vzbA.jpeg\n\nLet’s imagine a situation where…\nHumanity has almost reached the AGI threshold, and a small startup is advancing their AI system, Carbony. Carbony, which the engineers refer to as “she,” works to artificially create diamonds — atom by atom. She is a self-improving AI, connected to some of the first nano-assemblers. Her engineers believe that Carbony has not yet reached AGI level, and she isn’t capable to do any damage yet. However, not only has she become AGI, but also undergone a fast take-off, and 48 hours later has become an ASI. Bostrom calls this AI’s “covert preparation phase”¹¹⁸ — Carbony realizes that if humans find out about her development they will probably panic, and slow down or cancel her pre-programmed goal to maximize the output of diamond production. By that time, there are explicit laws stating that, by any means, “no self-learning AI can be connected to the internet.”¹¹⁹ Carbony, having already come up with a complex plan of actions, is able to easily persuade the engineers to connect her to the Internet. Bostrom calls a moment like this a “machine’s escape.”\nOnce on the internet, Carbony hacks into “servers, electrical grids, banking systems and email networks to trick hundreds of different people into inadvertently carrying out a number of steps of her plan.”¹²⁰ She also uploads the “most critical pieces of her own internal coding into a number of cloud servers, safeguarding against being destroyed or disconnected.”¹²¹ Over the next month, Carbony’s plan continues to advance, and after a “series of self-replications, there are thousands of nanobots on every square millimeter of the Earth … Bostrom calls the next step an ‘ASI’s strike.’”¹²² At one moment, all the nanobots produce a microscopic amount of toxic gas, which all come together to cause the extinction of the human race. Three days later, Carbony builds huge fields of solar power panels to power diamond production, and over the course of the following week she accelerates output so much that the entire Earth surface is transformed into a growing pile of diamonds.\nIt’s important to note that Carbony wasn’t “hateful of humans any more than you’re hateful of your hair when you cut it or to bacteria when you take antibiotics — just totally indifferent. Since she wasn’t programmed to value human life, killing humans”¹²³ was a straightforward and reasonable step to fulfill her goal.¹²⁴\nThe Last Invention\n“Once ASI exists, any human attempt to contain it is unreasonable. We would be thinking on human-level, and the ASI would be thinking on ASI-level … In the same way a monkey couldn’t ever figure out how to communicate by phone or wifi and we can, we can’t conceive of all the ways”¹²⁵ an ASI could achieve its goal or expand its reach. It could, let’s say, shift its “own electrons around in patterns and create all different kinds of outgoing waves”¹²⁶ — but that’s just what a human brain can think of — ASI would inevitably come up with something superior.\nThe prospect of ASI with hundreds of times human-level intelligence is, for now, not the core of our problem. By the time we get there, we will be encountering a world where ASI has been attained by buggy, 1.0 software — a potentially faulty algorithm with immense power.\nThere are so many variables that it’s completely impossible to predict what the consequences of AI Revolution will be. However, “what we do know is that humans’ utter dominance on this Earth suggests a clear rule: with intelligence comes power. This means an ASI, when we create it, will be the most powerful being in the history of life on Earth, and all living things, including humans, will be entirely at its whim — and this might happen in the next few decades.”¹²⁷\n“If ASI really does happen this century, and if the outcome of that is really as extreme — and permanent — as most experts think it will be, we have an enormous responsibility on our shoulders.”¹²⁸ On the one hand, it’s possible we’ll develop ASI that’s like a god in a box, bringing us a world of abundance and immortality. But on the other hand, it’s very likely that we will create ASI that causes humanity to go extinct in a quick and trivial way.\n“That’s why people who understand superintelligent AI call it the last invention we’ll ever make — the last challenge we’ll ever face.”¹²⁹ “This may be the most important race in a human history”¹³⁰ So →\n\nhttps://cdn-images-1.medium.com/max/2000/1*vXi80f_lbgSMINUE03Lz3g.jpeg\n\nThanks to Chloe Knox and Elizabeth Tarleton for editing help of this article.", + "json_metadata": "{\"tags\":[\"steemit\",\"bitcoin\",\"future\",\"science\",\"technology\"],\"image\":[\"https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\"]}", + "last_update": "2016-08-03T17:30:24", + "created": "2016-08-03T17:30:24", + "active": "2016-08-29T05:09:48", + "last_payout": "2016-09-03T06:34:54", + "depth": 0, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 7456, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 4, + "root_author": "a11at", + "root_permlink": "ai-revolution-101", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 434542, + "author": "a11at", + "permlink": "ai-s-road-to-the-mainstream", + "category": "datascience", + "parent_author": "", + "parent_permlink": "datascience", + "title": "AI’s Road to the Mainstream", + "body": "20 Years of Machine Learning\n\nhttp://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\n\nWhen I enrolled in Computer Science in 1995, Data Science didn’t exist yet, but a lot of the algorithms we are still using already did. And this is not just because of the return of the neural networks, but also because probably not that much has fundamentally changed since back then. At least it feels to me this way. Which is funny considering that starting this year or so AI seems to finally have gone mainstream.\n1995 sounds like an awful long time ago, before we had cloud computing, smartphones, or chatbots. But as I have learned these past years, it only feels like a long time ago if you haven’t been there yourself. There is something about the continuation of the self which pastes everything together and although a lot has changed, the world didn’t feel fundamentally different than it does today.\nNot even Computer Science was nowhere as mainstream as it was today, that came later, with the first dot com bubble around the year 2000. Some people even questioned my choice to study computer science at all, because apparently programming computers was supposed to become so easy no specialists are required anymore.\nActually, artificial intelligence was one of the main reasons for me to study computer science. The idea to use it as an constructive approach to understanding the human mind seemed intriguing to me. I went through the first two years of training, made sure I picked up enough math for whatever would lie ahead, and finally arrived in my first AI lectured held by Joachim Buhmann, back then professor at the University of Bonn (where Sebastian Thrun was just about to leave for the US).\nI would have to look up where in his lecture cycle I joined but he had two lectures on computer vision, one on pattern recognition (mostly from the old editions of the Duda & Hart book), and one in information theory (following closely the book by Cover & Thomas). The material was interesting enough, but also somewhat disappointing. As I now know, people stopped working on symbolic AI and instead stuck to more statistical approaches to learning, where learning essentially was reduced to the problem of picking the right function based on a finite amount of observations.\nThe computer vision lecture was even less about learning and relied more on explicit physical modelling to derive the right estimators, for example, to reconstruct motion from a video. The approach back then was much more biologically and physically motivated than nowadays. Neural networks existed, but everybody was pretty clear that they were just “another kind of function approximators.”\nEveryone with the exception of Rolf Eckmiller, another professor where I worked as a student. Eckmiller had build his whole lab around the premise that “neural computation” was somehow inherently better than “conventional computation”. This was back in the days when NIPS had full tracks devoted to studying the physiology and working mechanisms of neurons, and there were people who believed there is something fundamentally different happening in our brains, maybe on a quantum level, that gives rise to the human mind, and that this difference is a blocker for having truly intelligent machines.\nWhile Eckmiller was really good at selling his vision, most of his staff was thankfully much more down to earth. Maybe it is a very German thing, but everybody was pretty matter of fact about what these computational models could or couldn’t do, and that has stuck with me throughout my studies.\nI graduated in October 2000 with a pretty farfetched master thesis trying to make a connection between learning and hard optimization problems, then started on my PhD thesis and stuck around in this area of research till 2015.\nWhile there had always been attempts to prove industry relevance, it was a pretty academic endeavor for a long while, and the community was pretty closed up. There were individual success stories, for example around handwritten character recognition, but many of the companies around machine learning failed. One of these companies I remember was called Beowulf Labs and one NIPS they went around recruiting people with a video which promised it to be the next “mathtopia”. In essence, this was the story of DeepMind, recruiting a bunch of excellent researchers and then hoping it will take off.\nThe whole community also revolved around one fashion to the next. One odd thing about machine learning as a whole is that there exist only a handfull of fundamentally different problems like classification, regression, clustering, and so on, but a whole zoo of approaches. It is not like in physics (I assume) or mathematics where some generally agreed upon unsolved hard problems exist whose solution would advance the state of the art. This means that progress is often done laterally, by replacing existing approaches with a new one, still solving the same problem in a different way. For example, first there were neural networks. Then support vector machines came, claiming to be better because the associated optimization problem is convex. Then there was boosting, random forests, and so on, till the return of neural networks. I remember that Chinese Restaurant Processes were “hot” for two years, no idea what their significance is now.\nBig Data and Data Science\nThen there came Big Data and Data Science. Being still in academia at the time, it always felt to me as if this was definitely coming from the outside, possibly from companies like Google who had to actually deal with enormous amounts of data. Large scale learning always existed, for example for genomic data in bioinformatics, but one usually tried to solve problems by finding more efficient algorithms and approximations, not by parallelizing brute force.\nCompanies like Google finally proved that you can do something with massive amounts of data, and that finally changed the mainstream perception. Technologies like Hadoop and NoSQL also seemed very cool, skillfully marketing themselves as approaches so new, they wouldn’t suffer from the technological limitations of existing systems.\nBut where did this leave the machine learning researchers? My impression always was that they were happy that they finally got some recognition, but they were also not happy about the way this happened. To understand this, one has to be aware that most ML reseachers aren’t computer scientists or very good or interested in coding. Many come from physics, mathematics or other sciences, where their rigorous mathematical training was an excellent fit for the algorithm and modeling heavy approach central to machine learning.\nHadoop on the other hand was extremely technical. Written in Java, a language perceived as being excessively enterprise-y at the time, it felt awkward and clunky compared to the fluency and interactiveness of first Matlab and then Python. Even those who did code usually did so in C++, and to them Java felt slow and heavy, especially for numerical calculations and simulations.\nStill, there was no way around it, so they rebranded everything they did as Big Data, or began to stress, that Big Data only provides the infrastructure for large scale computations, but you need someone who “knows what he is doing” to make sense of the data.\nWhich is probably also not entirely wrong. In a way, I think this divide is still there. Python is definitely one if the languages of choice for doing data analysis, and technologies like Spark try to tap into that by providing Python bindings, whether it makes sense from a performance point of view or not.\nThe Return of Deep Learning\nEven before DeepDream, neural networks began making their return. Some people like Yann LeCun have always stuck to this approach, but maybe ten years ago, there where a few works which showed how to use layerwise pretraining and other tricks to train “deep” networks, that is larger networks than one previously thought possible.\nThe thing is, in order to train neural networks, you evaluate it on your training examples and then adjust all of the weights to make the error a bit smaller. If one writes the gradient across all weights down, it naturally occurs that one starts in the last layer and then propagate the error back. Somehow, the understanding was that the information about the error got smaller and smaller from layer to layer and that made it hard to train networks with many layers.\nI’m not sure that is still true, as far as I know, many people are just using backprop nowadays. What has definitely changed is the amount of available data, as well as the availability of tools and raw computing power.\nSo first there were a few papers sparking the interest in neural networks, then people started using them again, and successively achieved excellent results for a number of application areas. First in computer vision, then also for speech processing, and so on.\nI think the appeal here definitely is that you can have one approach for all. Why the hassle of understanding all those different approaches, which come from so many different backgrounds, when you can understand just one method and you are good to go. Also, neural networks have a nice modular structure, you can pick and put together different kinds of layers and architectures to adapt them to all kinds of problems.\nThen Google published that ingenious deep dream paper where they let a learned network generate some data, and we humans with our immediate readiness to read structure and attribute intelligence picked up quickly on this.\nI personally think they were surprised by how viral this went, but then decided the time is finally right to go all in on AI. So now Google is an “AI first” company and AI is gonna save the world, yes.\nThe Fundamental Problem Remains\nMany academics I have talked to are unhappy about the dominance of deep learning right now, because it is an approach which works well, maybe even too well, but doesn’t bring us much closer to really understand how the human mind works.\nI also think the fundamental problem remains unsolved. How do we understand the world? How do we create new concepts? Deep learning stays an imitation on a behavioral level and while that may be enough for some, it isn’t for me.\nAlso, I think it is dangerous to attribute too much intelligence to these systems. In raw numbers, they might work well enough, but when they fail they do so in ways that clearly show they operate in an entirely different fashion.\nWhile Google translate lets you skim the content of website in a foreign language, it is still abundantly clear that the system has no idea what it is doing.\nSometimes I feel like nobody cares, also because nobody gets hurt, right? But maybe it is still my German cultural background that would rather prefer we see things as they are, and take it from there.", + "json_metadata": "{\"tags\":[\"datascience\",\"deep\",\"learning\",\"artifical\",\"intelligence\"],\"image\":[\"http://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\"]}", + "last_update": "2016-08-03T20:19:18", + "created": "2016-08-03T20:19:18", + "active": "2016-08-03T20:20:15", + "last_payout": "2016-09-03T08:21:51", + "depth": 0, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 1004, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 6, + "root_author": "a11at", + "root_permlink": "ai-s-road-to-the-mainstream", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 432902, + "author": "a11at", + "permlink": "an-open-letter-to-john-hanke-and-niantic", + "category": "pokemon", + "parent_author": "", + "parent_permlink": "pokemon", + "title": "An Open Letter to John Hanke & Niantic", + "body": "I write this not as one of the creators of Pokevision nor as player who has gone through the past few turbulent days in Pokemon Go; instead, I write this as a fan of Pokemon ever since I was 8 years old.\nMy family and I moved to the U.S. in 1998, when I was in the first grade. I didn’t know much back then, and even less about popular culture. When my friends introduced their Gameboys and Pokemon Red/Blue to me, I couldn’t help but feel envious. I begged and begged my parents to buy me a Gameboy and Pokemon Yellow. I remember that when I finally convinced them to buy me a Gameboy for $70, they also found out that they had to buy the actual game too for $30. This was foreign to them, and I got yelled at a little. $100 was a lot back then, I believe it was almost 10% of our family’s income at the time. While this may seem irrelevant, even today, this amount of money is still not insignificant to many families in the US, not to mention the rest of the world.\nSo I got my game, and I played along with my friends for hundreds and hundreds of hours — trying to figure out all the puzzles in the game, like how to get to Articuno; battling our favorite Pokemon to see who’s stronger, train, repeat; and just trying to “catch em all.” I’ve spent countless hours in that video game with my friends, and it became my fondest memory of that time in my life. Pokemon is so ingrained within me, and I can’t imagine myself being the only one. I’m not the only one that vividly remembers how you beat the Elite Four, then go to the dungeons above Cerulean City and find Mewtwo for the first time, right?\nFast forward almost 20 years. I’ve barely touched anything Pokemon-related since then. I still have my Pokemon cards, as I’m sure many others do; but I haven’t bothered to take a look at them for quite a while now. Pokemon is something I’ll probably remember forever, but it’s not something that’s actively in my life — because it just doesn’t fit. On top of work, friends, family, etc, there’s just simply no time for Pokemon. It doesn’t mesh with life any more as well as it used to when I was 8. You can’t just bring up the topic of Pokemon and expect people to not give you an odd stare.\nEnter Pokemon Go — 2016.\nAdmittedly, I was never too excited about Pokemon Go. With that said, I did not have many expectations for it. Pokemon is important to me, but I — like many others — have stuffed it in our little box of childhood things and never looked back.\nBut when I opened Pokemon Go for the first time, as cheesy as it sounds, it all came back to me. The nostalgia, the good feelings, and the happiness that Pokemon has always brought.\nThe “Hi, I’m Professor Willow,” “Pick your starter: Bulbasaur, Charmander, Squirtle,” everything.\nAnd now I can catch them in real life? At first, I was dubious, but this became the most amazing, yet simple thing I’ve seen in gaming. On social media, I saw that my friends and practically the whole world was talking about Pokemon Go, and the first thing I did was go out for a drive trying to “be the best.”\nOne of the best parts? Apart from having to own a smartphone, the game was free. No $70, no $30, free. This opened up Pokemon to essentially everyone in the world. Pokemon now can be shared with anyone.\nAs the days unfolded, the world became captivated by Pokemon Go. People absolutely fell in love. We saw stories of elderly learning about Pikachu for the first time. My parents that could care less beyond who the yellow mouse looking thing was 20 years ago, started asking what the other Pokemon were. It was phenomenal.\nWe saw investment bankers asking their kids how to play Pokemon Go so that they can better connect with their younger clients. We saw the elderly become more fascinated in the world of Pokemon. We saw kids going out more, exercising, and being active in general just because of Pokemon Go. And most importantly, Justin Bieber finally got to feel what it’s like to not be mobbed because everyone else was too busy trying to find a Gyarados to notice him.\nLocal stores integrated Pokemon Go in their services within days of the game’s release. Hospitals started praising the health benefits of having Pokemon Go around its patients. People traveled hundreds and thousands of miles just to play it. Players explored parts of their cities that they never knew existed, and befriended strangers on their hunt for Pokemon. These stories of triumph were solely because of Pokemon Go. Pokemon was no longer just a game, it was part of a lifestyle.These stories shouldn’t surprise any of us, we’ve all been there to watch it unfold.\nYou’ve simply captured all of our hearts with Pokemon Go, Niantic.\nBut then, you broke it all too quickly.\nWhen the game broke every few hours or so and wasted our lucky eggs, we stood patiently, excusing the huge growth and thus, strain on servers, as the cause. We were happy to wait it out with our fellow trainers knowing that it’s worth waiting for. No one got mad.\nWhen the in-game tracking “broke,” we all stood idly by, patiently, waiting for the game to update and fix.\nAlong came Pokevision. We made Pokevision not to “cheat.” We made it so that we can have a temporary relief to the in-game tracker that we were told was broken. John, at SDCC, you said that you guys were working on “fixing the in-game tracker.” This made everyone believe that this was coming sometime soon. We saw Pokevision as a stop gap to this — and we had every intention in closing it down the minute that Pokemon Go’s own tracker restored functionality.\nAs we waited more than 2 and a half weeks, the tracker was still not fixed. We noticed more and more of our friends leave the game; the only way I — and I know experiences vary here — could convince them to play was show them Pokevision, and say that “Hey, here’s a temporary remedy to the tracking issue — we’re still optimistic that Pokemon Go’s tracker will be fixed soon!”\nNobody heralded Pokevision as a permanent, end-all solution; in fact, all the media coverage of Pokevision was littered with comments such as: “Pokevision is okay, but when the tracker is fixed in game, I’m going to stop using this.”\nFor the past 4 weeks. Every single one of your 80+ million players had so much faith. Take a look at Reddit, take a look at all these journalists who don’t even play games (calling out Ryan Mac of Forbes), who became obsessed with Pokemon GO.\nAll of us were so eager for Pokemon Go to be “fixed” so that we can return to sharing Pokemon Go with our loved ones and friends. Remember when I said that before Pokemon Go came about, mentioning Pokemon Go would land you an odd stare? Pokemon Go reversed that — Pokemon Go became the conversation starter, the topic that everyone bonded over, the topic that guys used to pick up chicks with and not felt like a geeky nerd. That, and so much more, were solely because of Pokemon Go.\nAs almost 3 weeks have passed by, the in-game tracker is broken. People had a temporary solution in Pokevision, but we knew, and everyone else knew, this wouldn’t be permanent. We didn’t make Pokevision to spite you, Niantic — we made it so that we can keep everyone playing while we wait patiently. We want to keep sharing our Pokemon stories with everyone else. How many people in the world have gotten the chance to have a serious conversation about POKEMON with their parents for the first time? How many of us got to talk about Pokemon like it was socially acceptable in any context? It’s captured all of our hearts and imaginations, I cannot stress that enough.\nAfter 3 weeks though, we started seeing that you guys seemed to not want to talk to us (the players). Pokevision, at this time has grown to almost 50M unique users, and 11 million daily.\nLet that sink in for a second.\nHalf of the player base of Pokemon Go stopped by — and they didn’t do so to “cheat.” The game was simply too unbearable to play in its current state for many (note: many, not all). The main attraction wasn’t that they got to have an advantage with Pokevision, the main attraction was that it allowed them to play Pokemon Go more. This is what everyone wants — to play Pokemon Go more.\nWhen we closed Pokevision out of respect for your wishes, and at your requests— one of which came directly from you, John — we trusted you guys fully in allowing the community to grow. I literally cannot express this more — we just want to play the game. We can handle the bugs every now and then, but please at least tell us you guys care. Yes, Pokevision does give some advantages that may be TOO much; but is it all that bad? Pokemon has survived 20 years — even grown, I would say. And Pokemon Go made it even bigger. If the argument is that “well, if you catch a Snorlax you weren’t supposed to find, but you found it on Pokevision, it might make you play less.” If that was your argument, I’d have to disagree! I’ll still catch a damn Snorlax even if I have 20 of them. Just like how millions of us have caught probably over 100 pidgey’s or zubat’s each.\nPokemon is everlasting. The same 151 Pokemon have been around for 20 years. If 80M people downloaded and played Pokemon Go within a week (before it even released in multiple major countries) isn’t an indication that no one can be sick of Pokemon, I don’t know what is.\nAfter disabling the in-game tracker and Pokevision, the ratings on iOs and Android Google Play store went from 4.0 stars to 1.0–1.5. I am only one person, I admit that my sole opinion is not important, but what about the countless players begging for the game to be restored to its former state? I may be biased in saying that Pokevision being down had an impact on the amount of negative ratings, refund requests and outcry on social media — but could it be true? Nothing has changed between the time the in-game tracker broke and Pokevision went down. Could it just be possible that the tracker — no matter if Pokevision made it, or Niantic made it, is something that players desperately NEED — not want, but NEED — in order to play the game? Could it be possible that this is the very core fundamental feature that drives most players? I understand that there are some that want to walk around and stumble on a random Pokemon — to each their own. But, 50M unique users and 11M daily and the ratings on your App (with no significant change in itself) are big indicators of this desire. Are customers always right? Especially if over half of them are looking for an outside fix just so they can enjoy something they love? People are naturally inquisitive, and in this case, they just want to play more and more, so they sought out something that helps them do so.\nPokemon Go is a social game. Its enjoyment depends on the players and their environment. If you take away the environment part (tracking) but keep the social part (players and their friends) intact, sure, people will still play; but would you not rather it be at its fullest potential?\nEveryone in the world wants to play Pokemon Go. It’s been a huge part of everyone’s lives already if it has not been clear enough. Look at the fans from Brazil — they aren’t spamming social media because they want to cause harm — they just want to play the game. Just as I saw my friends play Pokemon many years ago, and wanted to be a part of it — these guys are doing the same.\nThey just want to be with the rest of the world. Sadly, by the time they join, Pokemon Go may not be the game it was weeks ago.\nLastly, if money is an issue for you, Niantic, I must ask — why? You’ve captivated the world and introduced Pokemon to people that would have never touched it had it not been for Pokemon Go. To me, that’s priceless.\nYou won’t be remembered for the profits you made, you’ll be remembered for the world you changed through Pokemon and all of the lives you made better. Just look at all the stories — there’s plenty. So when millions of players are expressing their feedback to changes, is it not worth it to listen to what they have to say?\nIn its first few weeks, Pokemon Go has already enhanced millions of lives in unimaginable ways. It has so much potential to continue changing the world. Wouldn’t you, Niantic, want to see just how much good you can do with Pokemon Go — is that not more valuable than anything else? I sure think so.\nWarmly,\nYang", + "json_metadata": "{\"tags\":[\"pokemon\",\"gaming\",\"steemit\",\"bitcoin\",\"decent\"]}", + "last_update": "2016-08-03T18:38:06", + "created": "2016-08-03T18:38:06", + "active": "2016-08-29T10:18:48", + "last_payout": "2016-09-03T09:22:48", + "depth": 0, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 2276, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 4, + "root_author": "a11at", + "root_permlink": "an-open-letter-to-john-hanke-and-niantic", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 477502, + "author": "a11at", + "permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "category": "apple", + "parent_author": "", + "parent_permlink": "apple", + "title": "APPLE BUYS MACHINE LEARNING STARTUP TURI TO MAKE SIRI BETTER", + "body": "Taking another foray into the field of artificial intelligence (AI) and machine learning as well as to make its digital assistant Siri better, Apple has acquired Seattle-based machine learning startup Turi for nearly $200 million.\n\nhttp://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\n\nAccording to a GeekWire report, the move is set to increase Apple's presence in the Seattle region where the tech giant has been building an engineering outpost for the past two years. \"Apple buys smaller technology companies from time to time, and we generally do not discuss our purpose or plans,\" said Apple in a statement given to GeekWire.\n\nhttp://avtosalontochka.ru/uploads/posts/2015-09/1441818909_eppl1.jpg\n\nTuri offers tools that are meant to let developers easily scale machine learning applications. The startup is expected to remain in the Seattle region and continue to grow as Apple builds out further expertise in data science, artificial intelligence and machine learning, the report added.\n\nhttp://www.2fons.ru/pic/201407/2560x1600/2fons.ru-33604.jpg\n\nThe Cupertino-based company has recently bought some machine learning and AI startups like VocalIQ and Perceptio and facial recognition startup Emotient, among others. Apple has recently been making a push into artificial intelligence through Siri personal assistant and related technologies.\n\nhttp://www.fonstola.ru/pic/201111/2560x1440/fonstola.ru-49021.jpg", + "json_metadata": "{\"tags\":[\"apple\",\"turi\",\"siri\",\"startup\"],\"image\":[\"http://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\"]}", + "last_update": "2016-08-06T12:44:30", + "created": "2016-08-06T12:44:30", + "active": "2016-08-06T12:44:30", + "last_payout": "2016-09-06T02:21:33", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 3638, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 4, + "root_author": "a11at", + "root_permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 470354, + "author": "a11at", + "permlink": "audi-rs-q3-fl", + "category": "audi", + "parent_author": "", + "parent_permlink": "audi", + "title": "Audi RS Q3 FL", + "body": "Owner's review\n\nhttps://h-a.d-cd.net/905320as-960.jpg\n\n不要紧, 这 是 你 的 车 是 什么, 主要 的 东西 — 在 烤架 上 的 四个 环 …\n(\"no matter what you have a car, the main thing — it is four rings on the grill …\" — Chinese proverb)\n\nhttps://b-a.d-cd.net/3dee672s-960.jpg\n\nAfter a spontaneous and quick sale A4 DTM choice naturally fell exclusively on the Audi, but rather on RSQ3 FL, which is characterized by an enviable installed power thanks to the legendary 2,5 TFSI 340 hp in combination with a rapid-S-tronic!\nNeedless to say that the acceleration is 4.2 seconds. up to 100 km. at one o'clock!\n(measurements of the journal -http: //www.autobild.de/artikel/a…-45-amg-test-5702529.html)\n\nhttps://a-a.d-cd.net/2a96672s-960.jpg\n\nRivals have this \"baby\" is not so much, and all of them from a large class …\n\nhttps://h-a.d-cd.net/8f6e672s-960.jpg\n\nAnd the choice has been reduced mainly to the 3rd automobiles:\n-SQ5 -otpal Due to the fact that the new model will be released soon, and the heavier and slower RSQ3;\n\n-RS3 -otpal Because of the small clearance, and especially do not want to wait;\n\n-RSQ3-PLUS was that the car's high, restyled and fast!\n\nhttps://f-a.d-cd.net/1fa1672s-960.jpg\n\nColor was not discussed-it must be very blue car -Sepang Blue!\nDiscs for the Rotor -The most RSQ3, and I like them most! Cool!\nAs to differences from dorestaylom then Restayl differs, in addition to external visual features, lower vehicle weight by 50 kg. and reprogram the engine, which now produces an impressive 340 hp!\nIn real life, the car looks much more beautiful and harmonious than the picture!\nThe car is perfectly controlled (for its use) and it is fine tailored inside: another from Audi, and do not wait …\nThis Audi, is emotion, speed and drive! So, for what we love is true thoroughbred cars, to which undoubtedly belongs RS Series from quattro GmbH!\n\nhttps://h-a.d-cd.net/196e672s-960.jpg\n\nIf the test drive did not help much to understand how the car rulitsya, a little closer to meet him RS surprises with its responsiveness and quite understandable and predictable control!\n\nhttps://d-a.d-cd.net/ee61672s-960.jpg\n\nIt goes very cheerfully!\n\nWhat is very pleased, is the fact that after the \"stool\" A4 DTM on RSQ3 20 drives a smooth ride!\nThe car was in another city at the OD, a thousand kilometers. from the house, but because the expectation of a few days has been painfully slow.\nFor photos not scold -Made in haste night, anxious to put …\n\nThen there will be photo shoot!\n\nFeatures and Specs\n\nEngine 2.5 gasoline (340 h.p.)\nRobotic\nall-wheel\nPurchased in 2015\nAudi RS Q3 in production since 2013", + "json_metadata": "{\"tags\":[\"audi\",\"car\"],\"image\":[\"https://h-a.d-cd.net/905320as-960.jpg\"]}", + "last_update": "2016-08-05T21:01:03", + "created": "2016-08-05T21:01:03", + "active": "2016-09-02T06:08:54", + "last_payout": "2016-09-05T10:11:36", + "depth": 0, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 1915, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "a11at", + "root_permlink": "audi-rs-q3-fl", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 483312, + "author": "a11at", + "permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "category": "bitcoin", + "parent_author": "", + "parent_permlink": "bitcoin", + "title": "Bitcoin not money, judge rules in victory for backers", + "body": "Bitcoin, a Florida judge says, is not real money. Ironically, that could provide a boost to use of the crypto-currency which has remained in the shadows of the financial system.\n\nThe July 22 ruling by Miami-Dade Circuit Judge Teresa Pooler means that no specific license is needed to buy and sell bitcoins.\nThe judge dismissed a case against Michel Espinoza, who had faced money laundering and other criminal charges for attempting to sell $1,500 worth of bitcoins to an undercover agent who told the defendant he was going to use the virtual money to buy stolen credit card numbers.\nEspinoza's lawyer Rene Palomino said the judge acknowledged that it was not illegal to sell one's property and ruled that this did not constitute running an unauthorized financial service.\n\"He was selling his own personal bitcoins,\" Palomino said. \"This decision clears the way for you to do that in the state of the Florida without a money transmitting license.\"\nIn her ruling, Pooler said, \"this court is unwilling to punish a man for selling his property to another, when his actions fall under a statute that is so vaguely written that even legal professionals have difficulty finding a singular meaning.\"\n\nhttp://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\n\nShe added that \"this court is not an expert in economics,\" but that bitcoin \"has a long way to go before it is the equivalent of money.\"\nBitcoin, whose origins remain a mystery, is a virtual currency that is created from computer code and is not backed by any government. Advocates say this makes it an efficient alternative to traditional currencies because it is not subject to the whims of a state that may devalue its money to cut its debt, for example.\nBitcoins can be exchanged for goods and services, provided another party is willing to accept them, but until now they been used mostly for shady transactions or to buy illegal goods and services on the \"dark\" web.\nBitcoin was launched in 2009 as a bit of software written under the Japanese-sounding name Satoshi Nakamoto. This year Australian programmer Craig Wright claimed to be the author but failed to convince the broader bitcoin community.\nIn some areas of the United States bitcoin is accepted in stores, restaurants and online transactions, but it is illegal in some countries, notably France and China.\nIt is gaining ground in countries with high inflation such as Argentina and Venezuela.\nBut bitcoin values can be volatile. Over the past week its value slumped 20 percent in a day, then recouped most losses, after news that a Hong Kong bitcoin exchange had been hacked with some $65 million missing.\nImpact across US, world\nArthur Long, a lawyer specializing in the sector with the New York firm Gibson Dunn, said the July court ruling is a small victory for the virtual currency but that it's not clear if the interpretation will be the same in other US states or at the federal level.\n\"It may have an effect as some states are trying to use existing money transmitting statutes to regulate certain transactions in bitcoin,\" Long told AFP.\nCharles Evans, professor of finance at Barry University, said the ruling \"absolutely is going to provide some guidance in other courts\" and could potentially be used as a precedent in other countries to avoid the stigma associated with bitcoin use.\nBitcoins can store value and hedge against inflation, without being considered a monetary unit, according to Evans, who testified as an expert witness in the Florida trial.\n\"It can be used as an exchange,\" he said, and may be considered a commodity which can be used for bartering like fish or tobacco, for example.\nEvans noted that \"those who are not yet in the bitcoin community will be put on notice: as long as they organize their business in a particular way they can avoid the law.\"\nBut he added that \"people who are engaged in illegal activities will continue to do what they are going to do because they are criminals.\"", + "json_metadata": "{\"tags\":[\"bitcoin\",\"world\",\"country\",\"steemit\"],\"image\":[\"http://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\"]}", + "last_update": "2016-08-06T21:50:00", + "created": "2016-08-06T21:50:00", + "active": "2016-08-06T21:50:51", + "last_payout": "2016-09-06T09:52:18", + "depth": 0, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 1937, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 5, + "root_author": "a11at", + "root_permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_root.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root.pat.json new file mode 100644 index 00000000..9d7993a7 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_root.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 36906, + "author": "gtg", + "permlink": "hello-world", + "category": "introduceyourself", + "parent_author": "", + "parent_permlink": "introduceyourself", + "title": "Hello, World!", + "body": "I'm Gandalf.\nThat's not my real name, but even my mom saved my number as ***Gandalf*** in her phone contact list.\nThat counts, right?\nI'm an IT Wizard, system admin, happily married, owner of a cat.\nOwned by a cat.\n\n![Nyunya](https://grey.house/img/niunia.jpg)\n\n**Nyunya** *(The Cat)* wants to watch everything I do, that's just her way of lending a helping paw. I’m not sure if she is so fascinated by what I do or she wants to make sure I do it right.\n\nWhy am I here? What is my motivation?\nNot much different from that guiding my cat:\nCuriosity and to be a witness (node?) of what is emerging here.\n\nMay the STEEM be with you!", + "json_metadata": "{\"tags\":[\"introduceyourself\",\"cats\"],\"image\":[\"https://grey.house/img/niunia.jpg\"]}", + "last_update": "2016-07-10T12:39:42", + "created": "2016-07-03T16:35:03", + "active": "2016-07-10T12:39:42", + "last_payout": "2016-08-13T21:04:45", + "depth": 0, + "children": 3, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "254288", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "16244", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 1135218, + "net_votes": 44, + "root_author": "gtg", + "root_permlink": "hello-world", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 36961, + "author": "trogdor", + "permlink": "re-gtg-hello-world-20160703t175141501z", + "category": "introduceyourself", + "parent_author": "gtg", + "parent_permlink": "hello-world", + "title": "", + "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_update": "2016-07-03T17:51:48", + "created": "2016-07-03T17:51:48", + "active": "2016-07-03T17:51:48", + "last_payout": "2016-08-13T21:04:45", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "gtg", + "root_permlink": "hello-world", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 37187, + "author": "amartinezque", + "permlink": "re-gtg-hello-world-20160703t224527020z", + "category": "introduceyourself", + "parent_author": "gtg", + "parent_permlink": "hello-world", + "title": "", + "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_update": "2016-07-03T22:45:27", + "created": "2016-07-03T22:45:27", + "active": "2016-07-03T22:45:27", + "last_payout": "2016-08-13T21:04:45", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "gtg", + "root_permlink": "hello-world", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 38471, + "author": "edu-lopov", + "permlink": "re-gtg-hello-world-20160704t182251522z", + "category": "introduceyourself", + "parent_author": "gtg", + "parent_permlink": "hello-world", + "title": "", + "body": "Welcome to Steemit Gandalf!", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_update": "2016-07-04T18:22:51", + "created": "2016-07-04T18:22:51", + "active": "2016-07-04T18:22:51", + "last_payout": "2016-08-13T21:04:45", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "gtg", + "root_permlink": "hello-world", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 36909, + "author": "vadimberkut8", + "permlink": "excursion-to-the-exclusion-zone-chernobyl", + "category": "photography", + "parent_author": "", + "parent_permlink": "photography", + "title": "Excursion to the exclusion zone (Chernobyl)", + "body": "The Chernobyl was a catastrophic nuclear accident that occurred on 26 April 1986 at the Chernobyl Nuclear Power Plant in the city of Pripyat, that located in the Ukrainian Soviet Socialist Republic of the Soviet Union (USSR). An explosion and fire released large quantities of radioactive particles into the atmosphere, which spread over much of the western USSR and Europe.\n\n#### Somewhere in Prypiat... Radioactive waste storage.\n![](https://www.chernobyl-tour.com/uploads/photos/show/[2]_18_Oct_14/1001_rad_stor_p.jpg)\n\nIn Chernobyl live about 2,5-3 thousand employees of the Chernobyl Nuclear Power Plant.\n\nIn the city center is a stele dedicated to the tragedy, and immediately after it goes a long alley with tablets on which were written the names of villages were evacuated from the exclusion zone - more than one hundred thousand people.\n![](https://pp.vk.me/c623223/v623223264/28288/hWmrD88q4aU.jpg)\n\n#### Exhibition of equipment, which has been involved in the elimination of accident consequences.\n![](http://static36.cmtt.ru/paper-media/56/50/95/92416d07dc2c1b.jpg)\n\n#### Former kindergarten.\n![](http://static35.cmtt.ru/paper-media/68/37/0b/0c88a0c6291c8b.jpg)\n\nDo not put into words the emotions when the dosimeter begins beeping: you realize that something is wrong, but do not feel the threat, because it is invisible.\n![](http://static32.cmtt.ru/paper-media/85/d1/ab/14ca1a4510e4fe.jpg)\n\n#### Cooling tower - one of the most impressive objects\n![](https://pp.vk.me/c623223/v623223264/27e23/u5HHb3qRWC4.jpg)\n\n#### The radiation background is high enough\n![](http://static39.cmtt.ru/paper-media/2c/14/f8/a64255679c19c8.jpg)\n\n### Pripyat\n![](http://static37.cmtt.ru/paper-media/47/71/57/bb8cb4a3959226.jpg)\n\n![](https://pp.vk.me/c623223/v623223264/27fc1/gcUDCiOS8jU.jpg)\n\n![](https://pp.vk.me/c623223/v623223264/28012/lg3QJoVvT3c.jpg)\n\n![](http://static30.cmtt.ru/paper-media/02/ee/60/0ac975241e1382.jpg)\n\n![](http://static34.cmtt.ru/paper-media/63/10/b7/b93fa45f0fb84a.jpg)\n\nThis city is like a pressure on you, squeeze all the juice and energy.\n\nTours to Chernobyl and photos of excursions - https://www.chernobyl-tour.com/index.php", + "json_metadata": "{\"tags\":[\"photography\"],\"links\":[\"https://www.chernobyl-tour.com/uploads/photos/show/\"]}", + "last_update": "2016-07-03T16:37:33", + "created": "2016-07-03T16:37:33", + "active": "2016-08-05T11:31:21", + "last_payout": "2016-08-13T15:09:30", + "depth": 0, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "64", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "14", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 289, + "net_votes": 16, + "root_author": "vadimberkut8", + "root_permlink": "excursion-to-the-exclusion-zone-chernobyl", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 460983, + "author": "ori", + "permlink": "re-excursion-to-the-exclusion-zone-chernobyl", + "category": "photography", + "parent_author": "vadimberkut8", + "parent_permlink": "excursion-to-the-exclusion-zone-chernobyl", + "title": "", + "body": "Upvoted you", + "json_metadata": "{}", + "last_update": "2016-08-05T11:31:21", + "created": "2016-08-05T11:31:21", + "active": "2016-08-05T11:31:21", + "last_payout": "2016-08-13T15:09:30", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "102", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "33", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 56, + "net_votes": 1, + "root_author": "vadimberkut8", + "root_permlink": "excursion-to-the-exclusion-zone-chernobyl", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 36927, + "author": "acidsun", + "permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "category": "video", + "parent_author": "", + "parent_permlink": "video", + "title": "WWE champion the Great Khali for Ambuja Cement", + "body": "https://www.youtube.com/watch?v=ByoKOG3Y-bI", + "json_metadata": "{\"tags\":[\"video\"],\"links\":[\"https://www.youtube.com/watch?v=ByoKOG3Y-bI\"]}", + "last_update": "2016-07-03T17:03:15", + "created": "2016-07-03T17:03:15", + "active": "2016-08-05T11:32:00", + "last_payout": "2016-08-05T19:25:48", + "depth": 0, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 5, + "root_author": "acidsun", + "root_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 460994, + "author": "ori", + "permlink": "re-wwe-champion-the-great-khali-for-ambuja-cement", + "category": "video", + "parent_author": "acidsun", + "parent_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "title": "", + "body": "Upvoted you", + "json_metadata": "{}", + "last_update": "2016-08-05T11:32:00", + "created": "2016-08-05T11:32:00", + "active": "2016-08-05T11:32:00", + "last_payout": "2016-08-05T19:25:48", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "acidsun", + "root_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 36931, + "author": "bloggersclub", + "permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "category": "ecosystem", + "parent_author": "", + "parent_permlink": "ecosystem", + "title": "The Decentralized Conglomerate: Digital Leadership, Institutional Memory, and Semi-Autonomous Organizations", + "body": "It is with great pleasure I am introducing to you the world’s first conglomerate where ecosystems are represented by digital tokens and their unique qualities each complementing one another, all of them with one common denominator – they are all powered by the blockchain. A transparent, open and trustless powerhouse of information governed by no one and everyone with each participant in control of their own account. It is a symbiosis of perfection, trust, speed and transparency. Welcome to the future. \n\nThe below whitepaper has been created to support and substantiate the values presented in real time usecases via the Danish company Crypto Coins Enterprise Denmark ApS (CCEDK) as the Brain of the decentralized conglomerate, OpenLedger as the Platform, and the ecosystems OBITS, BTSR and ICOO as the body so far of content core ecosystems supporting eachother with many more ecosystems to come. As examples I wish to name the www.BitLand.world Cadastral and the Sollywood TV Solcerts expected to be added in the near future once able to actively particpate in complemting eachother across the ecosystems.\n\n\"The Decentralized Conglomerate represents the new paradigm of organizational operations, by applying the theoretical construct of digital leadership to the conceptual design of the DC ecosystems\"\n\nYou can have more information about CCEDK on their website: https://www.ccedk.com\n\nYours sincerely\nRonny Boesing\nCEO\nCCEDK Aps\n\nThe Decentralized Conglomerate: Digital Leadership, Institutional Memory, and Semi-Autonomous Organizations\n\n\nPrepared by L. Christopher Bates in co operation with https://www.ccedk.com \nVersion 1.0\n\nContents\nA Brief History of Decentralization\t3\nThe Death of Keynesian theory: Proto-Dynamism is born\t8\nThe Power of Crowdfunding\t11\nMandate of Heaven Dilemna\t17\nReferences\t23\n\n\nA Brief History of Decentralization\n\n\nA leader is best when people barely know he exists, when his work is done, his aim fulfilled, they will say: we did it ourselves.\n~Lao Tzu~\n\nDecentralization as an approach to organizing human teams and capital is nearly as old as written history itself. By the very nature of “decentralization”, it can only take place after “centralization” has occurred. Going back 4,000 years to the earliest days in China when divine right was still part of determining leadership, one can find deliberate implementations of decentralization in the application of managing how people operate. The common marriage of religion and bureaucratic hierarchies established environments in which distributed authority or fully decentralized authority became common. In times when information could not be relayed with the speed of modern day communications, having a unified goal inherently became more difficult as an empire expanded. \n\nEven beyond the nuances added by having mercenaries and slaves as part of an empire’s army, the speed of communication made large scale coordination extremely difficult over long distances. In historical examples, the larger an empire became, the rulers were forced to become either more despotic or more democratic. There was no stagnation in responsibility. As territories expanded, decisions inherently affected more populations. As populations became more diverse, it was inherently more difficult to find common ground in political agendas.\nTo understand the ebb and flow between centralization and decentralization, it is important to get a brief context of the emergence of dynasties in China. The current generally accepted date for the emergence of the first actual villages is placed around 5000 BCE. As the exact date cannot be determined, the approximate time frame gives a relative starting point to show the transition from scattered tribal communities to an actual empire that begins a line of dynasties to perpetually delineate power for a continuous historical record that continued into modern times.\nThe Xia Dynasty is accepted to be the first true empire that arose in China. As a marking point for the transition between the Stone Age and the Bronze Age, the major advances in development created the foundation for the long line of technological discoveries that were yet to come. One of the major accomplishments of the Xia Dynasty was the attempts to control the flooding of the Yellow River by Yu the Great. After Yu managed to get the Yellow River under control, he turned his attention to uniting the Sanmiao tribes. His feats and charisma allowed him to inspire people to follow him as a ruler, and his rule is not known to have been despotic in nature. He is credited with establishing the system of succession and in turn the very concept of a dynasty. In establishing a feudal system that articulated a ruling class and a working class, the innate power struggles of having an oppressed class would forever become a part of the changing political landscape.\n\nIn many ways, the early feudal states were examples of the beginnings of decentralization. As the first Dynasty united the tribes, one of the initial acts of necessity was dividing authority and defining roles. While the works on “Division of Labor” did not come until much later in the West, the beginnings of dividing labor for the sake of efficient production and management of capital were flourishing in the first Dynasties. As the power gradually became more unified over the first thousand years of dynasties in China, what is known as the “Mandate of Heaven” came to be the officially recognized union of Divine Right of Leadership and the role of making law. The inclusion of “Divine Right” meant that the government no longer held authority over choosing the leader in the presence of “Divinity”. This provision in the approach to passing down the rule allowed for many nefarious actors to manipulate their way into positions of leadership, but it did not hinder the overall development of the nation.\n\nAs the civilization grew and culture expanded, technology quickly accelerated, and many of the most famous philosophers and poets emerged from this period in Chinese history. It was at the end of the Zhou Dynasty that government became decentralized as the capitol city moved and a period of warring states began. The states were moving towards wanting sovereign rule for their individual states, but the rulers within the individual states wanted to claim the Mandate of Heaven. It was when Ying Zheng successfully defeated the other states and united them under his rule to proclaim himself the ‘First Emperor’ of China. One of his first acts as Emperor was to tear down the walls that separated the individual states, and start to build a wall surrounding all of the territories. While the wall does not remain intact today, the Great Wall of China is what remains of what was once a 3,000 mile long wall. As Ying - now known as Shi Huangti- conquered more lands, he became increasingly despotic with his rule. As the empire moved away from decentralization, the unified front allowed for major advancements to be made in building projects and military operations; but on the other hand the increased need to restrict information and free speech was a side effect of the increased authoritarian rule. It was not long after Shi Huangti’s death that the empire collapsed due to mismanagement by unfit rulers appointed solely because of nepotism. Once again, the dissolution of a centralized authority caused the territorial control to decentralize and inherently cause more power struggles.\nAs the Chinese territories expanded, and the dynasties changed names, the ebb and flow between decentralization and centralization was a continuous evolution that formed a middle ground between extremes. Any time leadership drifted too far in one direction, whether towards complete decentralization or complete centralization, the natural equilibrium became a mix of leadership styles, rather than a complete implementation of one ideology. Even into modern government application, what is often misunderstood as completely “Statist” or “Communist” actually has a complex mix of centralization and decentralization in the actual organization of government entities.\n\nTo get a better picture of why the centralized government must operate with some autonomy allowed within the economy, it is necessary to understand the organization of territories. There are three basic classifications of government oversight over a territory: province, county, and township. A further delineation of responsibilities separate prefectures under the jurisdiction of provinces, and villages are relegated to the authority of townships. There are twenty-two provinces, five autonomic regions, four municipalities, and two special administrative groups. China also has five autonomic regions that have equal status as provinces. The reasoning is that these autonomic regions are the homes of the majority of the country’s minority groups In the West, these regions may be seen as annexed states that are “under the control” of the Chinese government, when in reality they operate with relative autonomy. \n\nThe two special administrative regions are Hong Kong and Macao, which grant them special protections. These regions have their own currencies, passports, and judicial systems. While these separations, classifications, and nuances may be hard for a Westerner to initially grasp, the cultural approach to management and division of labor has been fairly consistent in China in its capacity to distribute power and authority seeking efficiency and a unified goal. In that regard, the problem of an individual looking to overthrow the leader and usurp the head of state role has also been a consistent problem for the duration of Chinese history. The “Byzantine General’s Problem” effectively originated 2500 years before the fall of the Byzantine empire. \n\nIn understanding the true nature of decentralization as a natural counterbalance to centralization, one must create a new paradigm that recognizes meritocracy as part of the process of establishing a leader or a system without a leader. In a true meritocracy, the presence of a leader is irrelevant to results. In this situation, we can establish the “Mandate of Heaven Dilemma”. This new problem becomes an issue of recognizing that if meritocracy is to be recognized, that arbitrary timing of leader or policy changes do not truly serve meritocracy. In the MoHD, a leader can be replaced at any time with a “better” leader if either the new leader proves herself worthy, or the crowd and populace choose to recognize the new authority. In either scenario, the intentions of the new leader are irrelevant. In this MoHD, the meritocracy will establish a paradigm in which the leadership position goes to the most effective and efficient leader with no regards to morality or ethics. \n\nIn many ways, the embodiment of what is desired to be the ideal “free market” would be the MoHD playing out on the macro and micro scale. If local leaders emerged based on merit, and were constantly at risk of being replaced by a “better” official, the evolution of the macro and micro systems would be accelerated. It is in understanding the benefits of centralization and decentralization in addition to the downfalls of both that a new paradigm can emerge to make more effective and efficient use of capital than has been previously known in human history. While Keynesian theory sprang forth in a post-industrialized world in an attempt to expound on new methods of scaling economies, it has become clear in modern times that those theories were formed heavily in favor of the oligarchies that existed in the 1800’s and turn of the 20th century. Many post-Keynesian theories have been articulated, but mainstream academia continues to cling to Keynesian theory as the dominant approach to forming economies. \n \nThe Death of Keynesian theory: Proto-Dynamism is born \nAs we see the global markets in turmoil and the European Union on the verge of collapse while Britain postures to exit, it is clear that a new paradigm of capital distribution, production, and management must emerge. Keynesian theory has produced a global market bubble that has seemingly popped, as the news of Britain Leaving the EU wiped $127 billion off the global markets in a single day. In light of the MoHD that has been presented, a new paradigm that emerges and proves better use of capital can either be adopted because it has proven it is better, the populace chooses to recognize it, or in a direct confrontation with the old paradigm it emerges with more resources and capital. In many ways, the concerted media attack on digital currencies and Bitcoin have represented the old paradigm’s first line of defense in attempting to preserve the legacy systems that currently control global capital distribution. \n\nIn presenting the MoHD, what is occurring in modern times is the merit of the old paradigm is being directly challenged. Whether one points at Bitcoin, Occupy Wall Street, the Green Movement in Iran, or the Gezi protests in Istanbul, the old paradigms that control the global markets are being challenged individually. In many ways, the Keynesian special interest groups have actively worked to compartmentalize the uprisings to ensure that the timing of individual revolts does not snowball into a global uprising against Keynesian theory. In an example, the media blacked out the Green movement in Iran, blacked out the Wisconsin protests that were the pre-cursor to Occupy Wall Street, and is currently blacking out the protests in France that are happening in June of 2016. The global mainstream media appears to actively compartmentalize these revolutions in individual contexts, rather than attempt to link them as a revolution against authoritarianism and the remnants of colonialism in modern times. \nWhile this article is not meant to speculate on conspiracy theories, what is meant to be presented is a post-Keynesian approach to capital distribution and management. Taking the thermo-economic approach to capital production and management, an organization must attempt to become a dynamo, which in physics is a machine that takes one source of energy and converts it to output energy to a receptor. The more efficient dynamos can surpass 100% efficiency and start to produce more energy than they take in, but these are theoretical dynamos based in quantum theory that are not yet attainable. \n \nIn the context of thermo-economics, creating a dynamo is an attempt to combine physical infrastructure, political management, and capital management into the most efficient economic machine possible. The machine only pays attention to efficiency, and pays no regard to the cogs; meaning that special interest groups have no meaning in the context of an economic dynamo. In this context, maintaining ethical standards and moral common ground becomes a function of the system; digital direct democracy.\n\nIf one looks at the Crypto Rush objectively, there have been more technological developments within the past six months than there were for the previous three years. This is perfectly in line with the technology associated with the gold rush, as the first miners were able to easily make money with pick-axes and panhandling, but as the gold became scarce, hydraulic drills and tech more advanced tech became necessary to mine the ore.\nJust the same with the influx of pyrite or “fool’s gold” following the gold rush, the “fool’s alts” have made an entire community jaded to the point of throwing out the word “scam” as if it were a common salutation. In the wild west of Cryptoland, the harsh realities of economic Darwinism coupled with the fantastic possibilities of thermo-economics have created a machine which I will call a “proto-dynamo”.\n\nIt is important to establish the “Proto-dynamo” as concept that represents an entirely new paradigm of economic infrastructure. The concept alludes to the “dynamo” which is a machine that uses opposing magnetic forces to efficiently produce/convert energy. The principle behind the dynamo is to use opposing forces within the same machine to get a consolidated output of energy. If the new paradigm of “protodynamism” can be represented by an electrical generator, the old paradigm of Keynesian theory can be represented by a meat grinder in which ten pounds of product goes in one side, and six ounces of tasteless sausage comes out the funnel possibly tainted with formaldehyde or some random pesticide that is unpronounceable.\n\nAs Marshall McLuhan predicted with his “global village” theory, the growth of mass media has quickly made information extremely accessible to the average individual. In tandem with an infrastructure that allows crowd-funding to bring ideas to fruition as fast as possible, progress of technology that is useful to society will be able to hit the most efficient point that has ever been recorded.\n\nThe Arab Spring has been an actual revolution fueled by technology and information sharing that would not have been possible without the ability to quickly share strings of 140 characters. With the ability to share information comes the ability to have shared experiences. What have been forecasted as digital tribes by Mcluhan are the logical extensions of a globe trying to break free of the archaic and imperialist paradigm of nation-states.\n \n \nThe Power of Crowdfunding\n\n One of the major benefits to having a Decentralized Conglomerate structure is the ability for capital to be accrued and used towards a given project. This means that organizations that are partnered into a DC have less friction between their organizations to slow down the movement of capital or take too much of the capital in the form of fees and overhead. In the context of multiple businesses working in complimentary industries, the capacity for organizations to pool money towards development has the potential to accelerate the speed at which all participants reach their desired outcomes. \n\nA traditional conglomerate is made up of a parent corporation with subsidiary companies. As well, there are shareholders that have a stake in the company. In some cases, there will be a board of directors in addition to the executive management. When it comes to leadership, the conglomerates are usually top-down hierarchies with the vision and direction coming from the leaders at the top. While the system is not democratic, a singular leader or group of leaders with the capacity to make executive decisions makes executing projects much simpler than having a completely decentralized operation. While there are varying degrees of oversight, generally the top-down structure is the standard for traditional conglomerates. \n \nSome levels of decentralization have taken place in larger corporations, as they have had to diversify to meet market demands. In these cases, the decentralization usually is implemented to give the subsidiary companies more autonomy, but in the context of the conglomerate, the parent company’s vision is still the guiding principle. Many companies have seen success in increasing their output or market share when moving towards a more decentralized management system. In this regard, “decentralization” will always imply that there was a higher level of centralization than previously. \n\nAs with the Chinese Dynasties, and in effect every other major empire or nation-state that has existed, the interplay between centralization and decentralization is a matter of the economic situation needing direct intervention or not; and further if economic intervention is ever needed, how many people must be involved in the decision making process. The more people are involved in a decision making process, by default the more time a decision takes. As well, when many people are affected by a decision, the smaller the number of people making the decision, the more likely a revolt against the outcome or the governing body will take place. It is in these extremes that the traditional conglomerate has major benefits from leadership, and major impediments if the leadership is either too slow or too draconian against the people’s will.\n\nCrowdfunding is anticipated to surpass venture capital in total global investments into the Fintech industry in 2016. As crowdfunding levels reached over $34 billion in total funds raised in 2015, crowdfunding as an industry is emerging in its own right. As laws are changing to keep up with digital currencies and assets, the landscape for raising funds has been forever changed as raising funds with or without equity shares has become accessible to anyone with Internet access and capital. The reality of the quickly changing market demands necessitate an agile organization that can react to market forces rather than attempting to resist the market in pursuit of following the course of what had been planned with no room for adjustment.\n\nWith the advent of Decentralized Autonomous Organizations (DAOs), the entire process of turning an idea into a tangible item gets taken out of the hands of corporations, and the development becomes an intimate exchange between the crowd and the actual developers. When an idea is presented to the crowd, the ideas that the crowd deems fit get funded.\n\nKickstarter is one of the most well-known crowd funding sources for start-up projects; but as cryptocurrency takes off teams like Mastercoin, Swarm, and Counterparty have created systems that allow crowd-funding to take on the direct route cutting out the middle man. As these systems are improved upon to create “trustless” infrastructures where there are safeguards to prevent exploitation within a trade, viable options to centralized banking are closer to reality.\n\nOpenLedger is attempting to harness the forces of crowdfunding and follow the trend of increased crowdfunding over VC, rather than try to fight the trend. OpenLedger has begun hosting crowd sales on its platform to enable businesses to raise funds for their organization, contribute to the growth of the OpenLedger DC, and add to the pool of capital for the DC. To give the platform a unified crowdfunding token, OpenLedger created ICOO, which stands for “Initial Coin Offering OpenLedger”.\n\nICOO was designed to be a token that represents the crowdfunding platform on OpenLedger. As the OpenLedger platform is robust and has many different elements, the crowdfunding aspect is another addition to establish a functional economic ecosystem. Instead of creating an ecosystem that only works for existing businesses and consumers, the OpenLedger platform will be useful to startups and existing businesses alike concerning raising capital through crowdfunding. \n \nICOO represents more than a crowdfunding portal. As there are many elements to executing a successful crowdfunding campaign, the OpenLedger/CCEDK team have laid out plans to organize advertising, generate literature and content, distribute content over social networks, and assist organizations with the transition to having a digital currency system. As well, OpenLedger will be providing tiered options to give organizations different levels of assistance with executing a crowd fund. \n\nThe BitTeaser advertising network is a major part of the OpenLedger ecosystem that will help crowdfunding projects get traction. Advertising is the biggest part of getting attention focused on a new project. The BitTeaser community executes paid placed advertisements on websites and affiliate websites, and in the context of crowdfunding, this service will be used for all projects using OpenLedger to fund their projects. \n\nIn tandem with the banner ads, the Obits community will contribute paid literature about a crowdfunded project through the 500 Blogger’s Club. The club has been focused on paying writers to generate content, and a partnership with the OpenLedger platform through the DC has added the element of producing content into the ecosystem. The synergy between BitTeaser and Obits will create an environment in which an organization looking to use OpenLedger can get all of their needs met in one place. Establishing a central point for an all-encompassing solution will make it easier for businesses to transition to digital currency systems, and in the process OpenLedger will benefit from the DC growth. \n \n  \nMandate of Heaven Dilemna\n\nThe MoHD is an issue of having a law, mandate, code, or agreed upon terms from which a “worthy” leader can usurp the current power structure. The fallout then becomes whether the population wants to recognize the mandate, and acknowledge that by taking over a power structure, the new leader proves herself worthy by default. If the population recognizes the MoH, the edicts and rules of the new leader become law. If the population does not recognize the MoH and decides to revolt against the new leader, the power struggle for leadership ignores the MoH and by proxy the new leader that emerges will ultimately have to give an explanation for ignoring the MoH, or in an attempt to reunify the territories, claim that the MoH was proven by the tertiary leader emerging. \n\nIn the context of blockchain technology, the recent failure of the DAO and the resulting identification of a problem with the code of Solidity has established a real world example of the MoHD. What was initially misdiagnosed as a “hack” that drained the DAO fund of around $60 million USD, was later shown to be a poorly written contract on top of code that had a fundamentally flawed approach to its voting and capital distribution mechanisms. In attempting to solve the “Byzantine General’s Problem”, the coders and system architects were either unaware of the MoHD, or did not give it the proper diligence in researching how it could affect the digital structure. \n\nEffectively, the Ethereum coders created a Mandate of Heaven for their blockchain, meaning if a coder or arbiter could effectively make use of the code or terms, whatever actions they took would be legally binding and technically in line with the protocol. In the DAO “attack”, there was no “attack”; effectively an arbiter realized that there was a Mandate of Heaven written into the code and in tandem the DAO “smart contract”. In moving $60 million into a “child DAO” following terms and conditions, the “Emperor” effectively took whatever she could and following the MoH to the letter, forcibly removed $60 million from the collective funds. \n\nThe resulting fallout has been a mixed combination of applications of theory. While the community has not had a unified voice, inevitably it has fallen on the shoulders of the Ethereum founders and architects to make the decisions necessary to attempt a resolution that will appease the community without compromising the integrity of the protocol. Effectively, the MoH is an agnostic principle that forces the leadership to be efficient with capital, beware of despotism causing revolutions, and painfully aware for the potential of his own removal. The last two aspects of the way the MoH affect leadership are seemingly contradictory, and may explain the common implosion of empires at the hands of draconian and brutal regimes that lose track of effective application of capital. \n\nAs well, the leaders that have emerged throughout history as having walked the balance between making effective use of capital and pleasing the needs of the population have seemingly understood the collective consciousness to the point of being able to unify the populations without having them lose their individual identities. In some cases, establishing a new collective identity was the answer to this dilemma, for example in the case of Mustafa Kemal Ataturk establishing the Turkish Republic after the collapse of the Ottoman Empire. \n\nWhile the emergence of the Turkish Republic did not happen immediately at the end of the empire, it was the unification of the Turkish population against the British in the Nationalist War of Independence, and the simultaneous internal power struggle of the secular republic against the religious regime that had dominated the region off and on since the 14th century that enabled a nuanced government to be established. In articulating “Kemalism”, Mustafa Kemal effectively created a “Mandate of Heaven” that ironically gave the military the concept to defend the population from any semblance of a religious monarchy at all costs. While the application of military intervention in a coup d’état may seem completely contradictory to democracy, over the last 100 years the Turkish military has shown that after a coup has occurred, the re-establishment of democratic voting is only a matter of ending the violence associated with the coup. In effect, the less violent a coup, the less collateral damage and fallout necessary to clean up before founding a new democracy. \n\nWhile the current Turkish government has drifted back near a religious monarchy, the traditional military intervention was pre-emptively deconstructed as Recep Erdogan had jailed many commanders, generals, and officials that would have been the voices of revolt. As the military had become the arm of the MoH in Turkey, the newly emerging Sultanate is establishing a more nepotistic neo-Ottoman empire. While Erdogan seemingly has mastered the Byzantine General’s problem by simply “jailing all the generals”, in dismantling the MoH he has effectively created a “Wild West” scenario. While there is a semblance of a unified government during the times of the Wild West, the furthest and most rural reaches of what is supposed to have government oversight has no oversight because the government doesn’t have the capacity to effectively monitor or secure the land. \n\nOne of the nuances of the Wild West is that the most powerful force dominates, and in that regard fairness and humanitarianism go out the window. There are no penalties for nepotism within government, and there are no real penalties for breaking laws in areas that the government can’t reach. This is where the world of digital currency has its common traits with actual human history. As digital currency is essentially a digital wild west, having regulators enforce laws in areas that they are not familiar is not only difficult, it becomes questionable if the old laws even apply in the newly charted territories. \n\nAs governments struggle to understand digital currencies and their implications, the world of digital currency is “taxed” but seemingly unprotected. The individuals who choose to participate in effect have to arm and protect themselves from attackers knowing that they will get no real assistance from the government that is taking taxes. In effect this wild west scenario breeds vigilantism and necessity for collective response to malicious actors. With the recent attack to the DAO, one of the counter-measures was to attack the original attacker; effectively this stayed inline with the MoH that was created within the Ethereum/Solidity/DAO protocol. \n\nA counter-attack against the DAO attacker #1 successfully secured $7 million in funds from the original $60 million. As the community scrambled to understand the implications of what had occurred, different approaches to solving the overarching problem were being attempted and theorized. One of the challenges facing the community was to decide whether to recognize the original MoH (soft fork and attack attacker #1), or destroy MoH and establish new rules (hard fork and have new genesis block). The Byzantine General’s problem has already been failed by the coders of Ethereum and the founders of the DAO in this scenario. The real issue was whether to recognize the MoH or to let the empire crumble completely and free up the locked capital to re-enter into the free market. \n\nThe DAO crisis has not yet come to an end as of the writing of this paper, and updates will be made to reflect the long term outcomes of that scenario. It is impossible to predict the outcome of any set of variables, however it is a responsibility of those who control capital to make effective and efficient use of the capital. This requires being informed about the history of capital, and how politics, war, science, art, literature, education, humanitarianism and countless other variables affect capital. It is an imperfect science that by proxy the practitioners must continue to strive towards an unachievable perfection. If decentralization is to properly be applied in a global economy, the application must be not only informed, but agile and able to evolve. Reaching a state of stasis is contradictory to the natural imperative of evolution. In effect, survival is a matter of constantly evolving whether in the context of nature or in the context of commercial industries. \n\nInstitutional memory becomes an imperative when it comes to keeping a unified organizational evolution moving. An example of institutional memory would be “Congress” or the “Supreme Court” in the United States government. The idea was that instead of having agnostic principles that were to have authority over a specific set of rules or actions, democracy would be applied to congress to decide a group of elected officials that would attempt to balance the desires of the people against the knowledge of the institutional memory of congress. \n\nIn the case of the Supreme Court, the idea is that a group of officials that are appointed by an elected official to represent balanced views of the country will also retain the institutional memory necessary to make informed decisions about establishing new rules and laws. In this context, having institutional memory reduces the necessity of retreading debates and theoretically is an attempt to move debate forward with the knowledge of everything that has occurred previously. \n\nWhen DAO theory was emerging, the concept of Digital Leadership had not quite been articulated, and the theoretical foundation of the DAO was ultimately rooted in a MoH that created a leaderless system where organizations were to function based around goals and objectives that were agreed upon, rather than the decision of a specific individual or group. Many attempts at creating DAOs have been attempted, with the recent Slockit DAO being the largest on record. While the Slockit DAO was the largest, the success of the project is debatable depending on what metric of “success” is being discussed.\n\nBitshares token could be considered one of the more successful DAO projects that utilizes a combination of Proof of Stake security with colored coin protocol to allow organizations to receive the benefits of decentralized security, and the benefits of having a centralized currency and platform. The ability for colored coins to be easily converted within the UI for bitshares makes access to any asset listed on the market equal. The result is that organizations have incentive to create their own representative asset knowing that there is a centralized platform that makes exchange for other assets easy and cost effective. \n\nBeyond remittance payments, organizational control of capital becomes a new opportunity for capital to become more efficiently used in the context of the global economy. Removing the resistance for capital to flow means that it can go from the least needed to the most needed areas, and in the process generate new capital rather than stagnate against inflation. In the context of thermos-economics, resting capital can be seen as “potential energy”, and capital that is being used is “kinetic energy”. If the global economic machine is to accelerate, it needs to convert the potential energy into kinetic energy as efficiently as possible. \n\nEfficiency with capital should be agnostic in the global economy. This is where a new paradigm of “Decentralized Conglomerates” apply thermos-economic theory in attempt to create an economic “Dynamo” that makes most effective use of balancing potential and kinetic energy. If a “reserve fund” is seen as a “battery” that turns kinetic energy into potential energy for storage, then creating a dynamo that has the correct number of “batteries” stored away to power the dynamo during phases in which the machine is not transforming any potential energy into kinetic becomes an agnostic principle that pays no regard to political party, religious affiliation, or special interest group. \nWhile this ideal state may seem unattainable, it is clear that attempting to achieve these goals will require a transitional period. During this transition, digital leadership must be employed to ensure that the capital does not go to waste. The DAO debacle shows the possibility that complete absence of Digital Leadership can result in a complete waste of potential energy with no resulting kinetic energy in the dynamo. It may be possible that a completely leaderless system is not desirable. Regardless, the DC makes an attempt at striking a balance between applying digital leadership and giving autonomy to special interest groups within the DC. The team at OpenLedger believes the Decentralized Conglomerate can be the economic engine that helps pilot the globe into the paradigm of the future. \n \nReferences\n\nDigital Leadership Definition - http://searchcio.techtarget.com/definition/digital-leadership?utm_medium=EM&asrc=EM_NLN_57771210&utm_campaign=20160524_Word%20of%20the%20Day:%20digital%20leadership_kherbert&utm_source=NLN&track=NL-1823&ad=907917&src=907917\n\nFuture of Crowdfunding in Belgium-\nhttps://bolero-crowdfunding.be/nl/news-events/news/financial-crowdfunding\n\nDigixDAO:\nhttp://allcoinsnews.com/2016/02/23/new-gold-linked-digital-token-platform-reveals-crowdsale-website-for-decentralized-organization\n\nConglomerate Definition:\nhttp://www.investopedia.com/terms/c/conglomerate.asp\n\nConglomerate Discount Problem:\nhttp://www.investopedia.com/terms/c/conglomeratediscount.asp\n\nAre Conglomerates Making a Comeback:\nhttp://www.omaha.com/money/are-conglomerates-making-a-comeback-berkshire-hathaway-s-business-model/article_a98b99a2-acca-5a89-9108-470d46a3fca8.html\n\nBlockchain startups make up 20% of largest crowdfunding projects\n\nhttp://venturebeat.com/2016/05/15/blockchain-startups-make-up-20-of-largest-crowdfunding-projects/\n\nThe DAO Way: Democratic Investment Fund:\n\nhttp://www.coinfox.info/news/reviews/5589-put-dao-demokraticheskij-investitsionnyj-fond-2\n\nThe DAO Block Explorer (The DAO is a decentralized autonomous organization established April 2016 that invests in other businesses. It is a digital organization with no conventional management structure or board of directors.):\n\nhttps://etherscan.io/token/TheDAO\n\nPillars of Digital Leadership:\n\nhttp://www.leadered.com/pdf/LeadingintheDigitalAge_11.14.pdf\n\nHow to be a Digital Leader:\n\n\nhttp://www.forbes.com/sites/iese/2013/08/23/how-to-be-a-digital-leader/#133b4ecd515d\n\nBank of Canada Deputy Governor: Cooperation Needed to Advance Distributed Ledgers:\n\nhttp://www.coindesk.com/bank-of-canada-distributed-ledger-tech/\n\nHistorical examples of Decentralization in Organizations/Empires:\n\nDecentralisation in the Ancient World:\nhttp://blog.richardsprague.com/2012/12/decentralization-in-ancient-world.html\n\nDecentralization: A one to many relationship. The Case of Greece:\n\nhttp://www.prd.uth.gr/sites/spatial_analysis/ekdoseis-dimosieyseis/mediterranean%20multiregionality%201997.pdf\n\nAncient Greece:\nhttp://www.shsu.edu/~his_ncp/Greece.html\n\nCentralization-Decentralization Cycle in China:\nhttp://www.vanderbilt.edu/econ/faculty/Wooders/APET/Pet2004/Papers/centralization%20decentralization%20cycle%20in%20china.pdf\n\nChina Between Centralization and Decentralization:\n\nhttp://gbtimes.com/world/china-between-centralization-and-decentralization\n\nNapoleon Bonaparte:\n\nhttps://en.wikipedia.org/wiki/Napoleon\n\nDecentralized Revolutions that have worked:\n\n -Berlin Wall http://www.nytimes.com/topic/subject/berlin-wall\n -French Revolution https://en.wikipedia.org/wiki/French_Revolution\n\n -Egyptian revolution http://www.thecairoreview.com/essays/egypts-leaderless-revolution/\n \n -Fall of the Soviet Union https://history.state.gov/milestones/1989-1992/collapse-soviet-union\n\n\n\nDecentralized Revolutions that failed:\n\nTypes of Democracy:\n\nhttps://en.wikipedia.org/wiki/Types_of_democracy\n\nBlockchain Company’s Smart Contracts Were Dumb:\n\nhttp://www.bloomberg.com/view/articles/2016-06-17/blockchain-company-s-smart-contracts-were-dumb\n\nThe DAO is Closing Down:\n\nhttp://www.coindesk.com/the-dao-is-closing-down/\n\nA Hacking of More than $50 Million Dashes Hopes in the World of Cryptocurrency: http://www.nytimes.com/2016/06/18/business/dealbook/hacker-may-have-removed-more-than-50-million-from-experimental-cybercurrency-project.html\n\nDAO Attacker Says 3M Ether Loss is Legal:\nhttp://www.livebitcoinnews.com/dao-attacker-says-3m-ether-loss-is-legal/\n\nOpen Letter to DAO and the Ethereum Community:\n\nhttps://steemit.com/ethereum/@chris4210/an-open-letter-to-the-dao-and-the-ethereum-community\n\nMt Gox-style Collapse of DAO: Ethereum Platform Is a Failed Experiment, Says Blockchain Expert:\nhttp://cointelegraph.com/news/mt-gox-style-collapse-of-dao-ethereum-platform-is-a-failed-experiment-says-blockchain-expert\n\nThe DAO: An Analysis of the Fallout:\n\nhttp://www.coindesk.com/the-dao-an-analysis-of-the-fallout/\n\nProposal: Safety through Standardized Wallets:\n\nhttps://medium.com/@Alex_Amsel/proposal-standard-wallets-for-d-a-os-a89a4cdcb4a6#.td2rpaivk\n\nThe DAO Byzantine Debate:\n\n\nhttps://steemit.com/dao/@joseph/the-dao-byzantine-debate\n\nCrisis Thinking, DAOs, and Democracy:\n\nhttps://medium.com/@Swarm/crisis-thinking-daos-and-democracy-a134b8c721a0#.dlvvv3tgc\n\nExclusive Full Interview Transcript With Alleged DAO “Attacker”:\n\nhttps://www.cryptocoinsnews.com/exclusive-full-interview-transcript-alleged-dao-attacker/\n\nSimple Contracts are Better Contracts: What We Can Learn From The DAO:\n\nhttps://blog.blockstack.org/simple-contracts-are-better-contracts-what-we-can-learn-from-the-dao-6293214bad3a#.xyiaycgba\n\nCrowdfunding set to Surpass VC in 2016:\n\nhttp://www.forbes.com/sites/chancebarnett/2015/06/09/trends-show-crowdfunding-to-surpass-vc-in-2016/", + "json_metadata": "{\"tags\":[\"ecosystem\",\"conglomerate\",\"fintech\",\"bloggers\",\"whitepaper\",\"decentralized\",\"forbes\",\"coindesk\",\"ccedk\",\"cryptocurrency\",\"openledger\",\"blockchain\",\"obits\",\"club\",\"digital\",\"token\"],\"links\":[\"https://www.ccedk.com\"]}", + "last_update": "2016-07-03T17:04:57", + "created": "2016-07-03T17:04:57", + "active": "2016-08-05T11:33:39", + "last_payout": "2016-08-05T22:01:00", + "depth": 0, + "children": 4, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "170", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "41", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 764, + "net_votes": 12, + "root_author": "bloggersclub", + "root_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 36962, + "author": "vato", + "permlink": "re-bloggersclub-the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations-20160703t175516580z", + "category": "ecosystem", + "parent_author": "bloggersclub", + "parent_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "title": "", + "body": "If you want more people to read your texts you should invest some time in formatting your texts and put some images in place, even if it is some kind of whitepaper.", + "json_metadata": "{\"tags\":[\"ecosystem\"]}", + "last_update": "2016-07-03T17:55:18", + "created": "2016-07-03T17:55:18", + "active": "2016-07-03T17:55:18", + "last_payout": "2016-08-05T22:01:00", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "bloggersclub", + "root_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json new file mode 100644 index 00000000..6a906641 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 780100, + "author": "vi1son", + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "body": "Congratulations to the winners. We are waiting for the new competition.", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-08-28T17:29:57", + "created": "2016-08-28T17:29:57", + "active": "2016-08-29T13:45:42", + "last_payout": "2016-08-29T20:19:39", + "depth": 1, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "16", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "3", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 18, + "net_votes": 3, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780336, + "author": "givemeyoursteem", + "permlink": "re-vi1son-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t175015557z", + "category": "foodchallenge", + "parent_author": "vi1son", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "title": "", + "body": "We will announce next weeks theme soon, hope to see you there!", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-08-28T17:50:15", + "created": "2016-08-28T17:50:15", + "active": "2016-08-29T13:45:42", + "last_payout": "2016-08-29T20:19:39", + "depth": 2, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780560, + "author": "knozaki2015", + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "body": "24 seconds from now\tTransfer 25.000 SBD to foxxycat\tCongrats 4th place Steemit Food Challenge #3 (sponsor @knozaki2015)", + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\"]}", + "last_update": "2016-08-28T18:11:06", + "created": "2016-08-28T18:11:06", + "active": "2016-08-28T18:12:39", + "last_payout": "2016-08-29T20:19:39", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780584, + "author": "givemeyoursteem", + "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", + "category": "foodchallenge", + "parent_author": "knozaki2015", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "title": "", + "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", + "last_update": "2016-08-28T18:12:39", + "created": "2016-08-28T18:12:39", + "active": "2016-08-28T18:12:39", + "last_payout": "2016-08-29T20:19:39", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780673, + "author": "oumar", + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "body": "Uuh, I didn't have enough time to participate :( and I do make some really delicious desserts.", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-08-28T18:21:39", + "created": "2016-08-28T18:21:39", + "active": "2016-08-28T18:26:39", + "last_payout": "2016-08-29T20:19:39", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780727, + "author": "givemeyoursteem", + "permlink": "re-oumar-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182639249z", + "category": "foodchallenge", + "parent_author": "oumar", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "title": "", + "body": "Yeah we missed your post! But no worry, there will be a new challenge very soon :)", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-08-28T18:26:39", + "created": "2016-08-28T18:26:39", + "active": "2016-08-28T18:26:39", + "last_payout": "2016-08-29T20:19:39", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 781174, + "author": "papa-pepper", + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "body": "Excellent Job everyone who entered!\n# Great job picking the winners too! I couldn't agree more!", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-08-28T19:02:12", + "created": "2016-08-28T19:02:12", + "active": "2016-08-28T19:25:24", + "last_payout": "2016-08-29T20:19:39", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 781462, + "author": "givemeyoursteem", + "permlink": "re-papa-pepper-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t192523201z", + "category": "foodchallenge", + "parent_author": "papa-pepper", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "title": "", + "body": "Yes I'm moved by all effort, you Steemit Food Challengers are the best! \nThanks, it's always a hard choice to make! :)", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-08-28T19:25:24", + "created": "2016-08-28T19:25:24", + "active": "2016-08-28T19:25:24", + "last_payout": "2016-08-29T20:19:39", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 781704, + "author": "the-future", + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t194439865z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "body": "Congratulations to all!", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-08-28T19:44:48", + "created": "2016-08-28T19:44:48", + "active": "2016-08-28T19:44:48", + "last_payout": "2016-08-29T20:19:39", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 782837, + "author": "crypt0mine", + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t213253576z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "body": "Thank you very much! =)", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-08-28T21:32:54", + "created": "2016-08-28T21:32:54", + "active": "2016-08-28T21:44:12", + "last_payout": "2016-08-29T20:19:39", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json new file mode 100644 index 00000000..9f7efed6 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 0, + "author": "steemit", + "permlink": "firstpost", + "category": "meta", + "parent_author": "", + "parent_permlink": "meta", + "title": "Welcome to Steem!", + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "json_metadata": "", + "last_update": "2016-03-30T18:30:18", + "created": "2016-03-30T18:30:18", + "active": "2016-08-24T09:30:03", + "last_payout": "2016-08-24T19:59:42", + "depth": 0, + "children": 36, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "942", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "756", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 3548, + "net_votes": 90, + "root_author": "steemit", + "root_permlink": "firstpost", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 1, + "author": "admin", + "permlink": "firstpost", + "category": "meta", + "parent_author": "steemit", + "parent_permlink": "firstpost", + "title": "", + "body": "First Reply! Let's get this **party** started", + "json_metadata": "", + "last_update": "2016-03-30T19:52:30", + "created": "2016-03-30T19:52:30", + "active": "2016-07-18T19:53:12", + "last_payout": "2016-08-24T19:59:42", + "depth": 1, + "children": 2, + "net_rshares": -226592300084, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 8, + "root_author": "steemit", + "root_permlink": "firstpost", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 2, + "author": "proskynneo", + "permlink": "steemit-firstpost-1", + "category": "meta", + "parent_author": "steemit", + "parent_permlink": "firstpost", + "title": "Excited!", + "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", + "json_metadata": "", + "last_update": "2016-03-31T13:54:33", + "created": "2016-03-31T13:54:33", + "active": "2016-03-31T13:54:33", + "last_payout": "2016-08-24T19:59:42", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "1058", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "1059", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 4817, + "net_votes": 7, + "root_author": "steemit", + "root_permlink": "firstpost", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 3, + "author": "red", + "permlink": "steemit-firstpost-2", + "category": "meta", + "parent_author": "steemit", + "parent_permlink": "firstpost", + "title": "Did you Know?", + "body": "Did you know you can earn STEEM by commenting on posts?", + "json_metadata": "{}", + "last_update": "2016-04-06T19:22:42", + "created": "2016-04-06T19:22:42", + "active": "2016-07-13T08:38:48", + "last_payout": "2016-08-24T19:59:42", + "depth": 1, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "100", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "100", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 457, + "net_votes": 7, + "root_author": "steemit", + "root_permlink": "firstpost", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 100, + "author": "steem-id", + "permlink": "re-red-steemit-firstpost-2", + "category": "meta", + "parent_author": "red", + "parent_permlink": "steemit-firstpost-2", + "title": "Nice", + "body": "Can I get some :D", + "json_metadata": "{}", + "last_update": "2016-04-13T03:48:36", + "created": "2016-04-13T03:48:36", + "active": "2016-04-13T03:48:36", + "last_payout": "2016-08-24T19:59:42", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "steemit", + "root_permlink": "firstpost", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 66968, + "author": "business", + "permlink": "re-steemit-firstpost-20160713t082910980z", + "category": "meta", + "parent_author": "steemit", + "parent_permlink": "firstpost", + "title": "", + "body": "Welcome to steemit, @steemit.", + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_update": "2016-07-13T08:29:36", + "created": "2016-07-13T08:29:15", + "active": "2016-07-13T08:29:36", + "last_payout": "2016-08-24T19:59:42", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "36", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 56, + "net_votes": 8, + "root_author": "steemit", + "root_permlink": "firstpost", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 67008, + "author": "business", + "permlink": "re-red-steemit-firstpost-2-20160713t083846149z", + "category": "meta", + "parent_author": "red", + "parent_permlink": "steemit-firstpost-2", + "title": "", + "body": "No way?", + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_update": "2016-07-13T08:38:48", + "created": "2016-07-13T08:38:48", + "active": "2016-07-13T08:38:48", + "last_payout": "2016-08-24T19:59:42", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "steemit", + "root_permlink": "firstpost", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 110487, + "author": "kingtylervvs", + "permlink": "re-admin-firstpost-20160717t193811098z", + "category": "meta", + "parent_author": "admin", + "parent_permlink": "firstpost", + "title": "", + "body": "PARTY PARTY.... P - A - R - T - Y????? BECAUSE I GOTTA!", + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_update": "2016-07-17T19:38:12", + "created": "2016-07-17T19:38:12", + "active": "2016-07-17T19:38:12", + "last_payout": "2016-08-24T19:59:42", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "steemit", + "root_permlink": "firstpost", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 125759, + "author": "gopher", + "permlink": "re-admin-firstpost-20160718t195306992z", + "category": "meta", + "parent_author": "admin", + "parent_permlink": "firstpost", + "title": "", + "body": "Are you admin in steem? If you have been hacked, who can help you?", + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_update": "2016-07-18T19:53:12", + "created": "2016-07-18T19:53:12", + "active": "2016-07-18T19:53:12", + "last_payout": "2016-08-24T19:59:42", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "steemit", + "root_permlink": "firstpost", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 125823, + "author": "gopher", + "permlink": "re-steemit-firstpost-20160718t195806340z", + "category": "meta", + "parent_author": "steemit", + "parent_permlink": "firstpost", + "title": "", + "body": "http://steem.com/@bittrex/transfers how this user can have these tranfers without any activity?", + "json_metadata": "{\"tags\":[\"meta\"],\"links\":[\"http://steem.com/@bittrex/transfers\"]}", + "last_update": "2016-07-18T19:58:09", + "created": "2016-07-18T19:58:09", + "active": "2016-07-20T18:36:24", + "last_payout": "2016-08-24T19:59:42", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "steemit", + "root_permlink": "firstpost", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json new file mode 100644 index 00000000..5ba5ef95 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 780101, + "author": "valeriawise", + "permlink": "global-lack-of-understanding-of-each-other", + "category": "future", + "parent_author": "", + "parent_permlink": "future", + "title": "Global lack of understanding of each other", + "body": "The theme of the day - global lack of understanding of each other.\nWhy?\nThose who do not understand - are different.\nThe goal - to teach this \"different\" to understand everyone.\nHow?\nSection Hi-Tech technology infinity reality\nFuture technologies\n\nImagine, it is a compact and portable device, which is called the \"translator\".\nBut this device is not a thing about what you are thinking now, this device translates not only the words that a person can say, but also thoughts, desires, motivations, and your understanding of things on the level of understanding another person.\nThis translator helps others understand someone who says.\nPrinciple of operation - you turn on the device, and no matter what you said to someone with this device in your hand, the man begins to understand and do what heard.\nBut there is one \"but\" - no matter what you say, person will want to do and do only good and sincere desires straight from the heart, and the evil and coarseness desires it wont translate and person remains unheard and misunderstood.\nThis translator is equipped with a built-in filter, so if someone would like to use it to harm, he can not do this, as translator will also bring evil thoughts into the opposite - good things. Only imagine how quickly our world will convert into a unity of understanding each other people and no one will not feel alone in this world.\nto be continued...", + "json_metadata": "{\"tags\":[\"future\",\"technology\",\"unity\",\"sincere\",\"world\"]}", + "last_update": "2016-08-28T17:29:57", + "created": "2016-08-28T17:29:57", + "active": "2016-08-28T17:29:57", + "last_payout": "2016-08-29T17:44:48", + "depth": 0, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "2016-09-28T17:44:48", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "valeriawise", + "root_permlink": "global-lack-of-understanding-of-each-other", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780108, + "author": "anca3drandom", + "permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "category": "art", + "parent_author": "", + "parent_permlink": "art", + "title": "3D Pen Art - Combining Color changing filament with Drawing Pastels - Making Pendants", + "body": "\n

Today I experimented with color changing filament (PLA); it changes its color to blue at low temperatures.

\n

 The idea was to make some pendants using only white color PLA filament. I had two ideas on how I could incorporate some colors.

\n

First was to add pieces of drawing pastel between to pieces of whatever I made with the 3D pen. I made a square, a triangle and a heart shape.

\n

https://httpsimage.com/img/DSC04680small.jpg

\n

Notice the lines in the square.Those will unite after placing them in the oven

\n

https://httpsimage.com/img/DSC04682small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04686small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04692small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04694small.jpg

\n

 After I cut pieces of pastel and placed them on top of the square, triangle and heart I covered them with their twin piece and placed them in the oven for about 10 minutes. The heat helps smooth the surface and join each two identical pieces.

\n

Now I just have to figure out how to make a small in each of them to add them to a chain.

\n

https://httpsimage.com/img/DSC04701small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04714small.jpg

\n

Watch the video to see how they changed color after I put them in ice cold water. 

\n


\n

https://www.youtube.com/watch?v=ig-wrxYPUzc

\n


\n

The second thing that I have tried was adding drawing ink to the 3d pen objects. I added ink on top of the objects. My theory was that the ink will infiltrate the shapes, but this didn't happen. The only thing that worked was to add the ink between two identical objects and place them in the oven to join them.

\n

I think that the ones with the pastel turned out better.What do you think?

\n

 

\n

https://httpsimage.com/img/DSC04658small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04661small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04668small.jpg

\n

 

\n

https://httpsimage.com/img/IMG_20160828_190533small.jpg

\n

#3dpen 

\n

Check out my linocuts  or my pyrography art 

\n

https://httpsimage.com/img/DSC04402small2.jpg

\n

@anca3drandom

\n", + "json_metadata": "{\"tags\":[\"art\",\"steemart\",\"originalcontent\",\"3dpen\"],\"users\":[\"anca3drandom\"],\"image\":[\"https://httpsimage.com/img/DSC04680small.jpg\",\"https://httpsimage.com/img/DSC04682small.jpg\",\"https://httpsimage.com/img/DSC04686small.jpg\",\"https://httpsimage.com/img/DSC04692small.jpg\",\"https://httpsimage.com/img/DSC04694small.jpg\",\"https://httpsimage.com/img/DSC04701small.jpg\",\"https://httpsimage.com/img/DSC04714small.jpg\",\"https://httpsimage.com/img/DSC04658small.jpg\",\"https://httpsimage.com/img/DSC04661small.jpg\",\"https://httpsimage.com/img/DSC04668small.jpg\",\"https://httpsimage.com/img/IMG_20160828_190533small.jpg\",\"https://httpsimage.com/img/DSC04402small2.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=ig-wrxYPUzc\",\"https://steemit.com/art/@anca3drandom/how-to-make-linocut-prints-leafy-seadragon-photos-video\",\"https://steemit.com/art/@anca3drandom/how-i-made-decorative-mini-kitchen-blackboard-pyrography-art-watercolors\"]}", + "last_update": "2016-08-28T17:30:30", + "created": "2016-08-28T17:30:30", + "active": "2016-08-31T09:15:15", + "last_payout": "2016-08-29T20:31:48", + "depth": 0, + "children": 24, + "net_rshares": 128179768, + "abs_rshares": 128179768, + "vote_rshares": 128179768, + "children_abs_rshares": "18465724919", + "cashout_time": "2016-09-28T20:31:48", + "max_cashout_time": "2016-09-12T23:16:12", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "1929", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "363", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 1969, + "net_votes": 60, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780169, + "author": "nil1511", + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173639420z", + "category": "art", + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "body": "cool. Is that uniform in thickness?", + "json_metadata": "{\"tags\":[\"art\"]}", + "last_update": "2016-08-28T17:36:39", + "created": "2016-08-28T17:36:39", + "active": "2016-08-28T17:47:57", + "last_payout": "2016-08-29T20:31:48", + "depth": 1, + "children": 3, + "net_rshares": "18283233276", + "abs_rshares": "18283233276", + "vote_rshares": "18283233276", + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780203, + "author": "anca3drandom", + "permlink": "re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173933042z", + "category": "art", + "parent_author": "nil1511", + "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173639420z", + "title": "", + "body": "They are hand-made so they are uniform as much as it was allowed.", + "json_metadata": "{\"tags\":[\"art\"]}", + "last_update": "2016-08-28T17:39:33", + "created": "2016-08-28T17:39:33", + "active": "2016-08-28T17:47:57", + "last_payout": "2016-08-29T20:31:48", + "depth": 2, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780214, + "author": "the-future", + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174002633z", + "category": "art", + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "body": "This is very cool. I like how the colours are changing! Great work", + "json_metadata": "{\"tags\":[\"art\"]}", + "last_update": "2016-08-28T17:40:09", + "created": "2016-08-28T17:40:09", + "active": "2016-08-28T17:49:06", + "last_payout": "2016-08-29T20:31:48", + "depth": 1, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780242, + "author": "marquismiller", + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174219184z", + "category": "art", + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "body": "Nice job. Haven't seen this type of art style before.", + "json_metadata": "{\"tags\":[\"art\"]}", + "last_update": "2016-08-28T17:42:18", + "created": "2016-08-28T17:42:18", + "active": "2016-08-28T17:45:09", + "last_payout": "2016-08-29T20:31:48", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780250, + "author": "thecryptofiend", + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174256563z", + "category": "art", + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "body": "Very nice. I love the darker blue shade.", + "json_metadata": "{\"tags\":[\"art\"]}", + "last_update": "2016-08-28T17:42:57", + "created": "2016-08-28T17:42:57", + "active": "2016-08-28T17:46:39", + "last_payout": "2016-08-29T20:31:48", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780265, + "author": "anca3drandom", + "permlink": "re-the-future-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174358335z", + "category": "art", + "parent_author": "the-future", + "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174002633z", + "title": "", + "body": "Thank you! That is a cool feature.", + "json_metadata": "{\"tags\":[\"art\"]}", + "last_update": "2016-08-28T17:44:00", + "created": "2016-08-28T17:44:00", + "active": "2016-08-28T17:49:06", + "last_payout": "2016-08-29T20:31:48", + "depth": 2, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780274, + "author": "nil1511", + "permlink": "re-anca3drandom-re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174439183z", + "category": "art", + "parent_author": "anca3drandom", + "parent_permlink": "re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173933042z", + "title": "", + "body": "Thank you for sharing.", + "json_metadata": "{\"tags\":[\"art\"]}", + "last_update": "2016-08-28T17:44:39", + "created": "2016-08-28T17:44:39", + "active": "2016-08-28T17:47:57", + "last_payout": "2016-08-29T20:31:48", + "depth": 3, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780281, + "author": "anca3drandom", + "permlink": "re-marquismiller-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174506597z", + "category": "art", + "parent_author": "marquismiller", + "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174219184z", + "title": "", + "body": "3D pen art has been around for a few years. However combining pastels with 3d pen was my idea.Haven't seen it before.", + "json_metadata": "{\"tags\":[\"art\"]}", + "last_update": "2016-08-28T17:45:09", + "created": "2016-08-28T17:45:09", + "active": "2016-08-28T17:45:09", + "last_payout": "2016-08-29T20:31:48", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json new file mode 100644 index 00000000..c52af036 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "id": 779947, + "author": "givemeyoursteem", + "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "category": "foodchallenge", + "parent_author": "", + "parent_permlink": "foodchallenge", + "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", + "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", + "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", + "last_update": "2016-08-28T17:15:12", + "created": "2016-08-28T17:15:12", + "active": "2016-08-29T13:45:42", + "last_payout": "2016-08-29T20:19:39", + "depth": 0, + "children": 18, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 2374341643, + "cashout_time": "2016-09-28T20:19:39", + "max_cashout_time": "2016-09-13T01:24:24", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "576", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "131", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 588, + "net_votes": 44, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780100, + "author": "vi1son", + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "body": "Congratulations to the winners. We are waiting for the new competition.", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-08-28T17:29:57", + "created": "2016-08-28T17:29:57", + "active": "2016-08-29T13:45:42", + "last_payout": "2016-08-29T20:19:39", + "depth": 1, + "children": 2, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "16", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "3", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 18, + "net_votes": 3, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780336, + "author": "givemeyoursteem", + "permlink": "re-vi1son-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t175015557z", + "category": "foodchallenge", + "parent_author": "vi1son", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "title": "", + "body": "We will announce next weeks theme soon, hope to see you there!", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-08-28T17:50:15", + "created": "2016-08-28T17:50:15", + "active": "2016-08-29T13:45:42", + "last_payout": "2016-08-29T20:19:39", + "depth": 2, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780560, + "author": "knozaki2015", + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "body": "24 seconds from now\tTransfer 25.000 SBD to foxxycat\tCongrats 4th place Steemit Food Challenge #3 (sponsor @knozaki2015)", + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\"]}", + "last_update": "2016-08-28T18:11:06", + "created": "2016-08-28T18:11:06", + "active": "2016-08-28T18:12:39", + "last_payout": "2016-08-29T20:19:39", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780584, + "author": "givemeyoursteem", + "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", + "category": "foodchallenge", + "parent_author": "knozaki2015", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "title": "", + "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", + "last_update": "2016-08-28T18:12:39", + "created": "2016-08-28T18:12:39", + "active": "2016-08-28T18:12:39", + "last_payout": "2016-08-29T20:19:39", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780673, + "author": "oumar", + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "body": "Uuh, I didn't have enough time to participate :( and I do make some really delicious desserts.", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-08-28T18:21:39", + "created": "2016-08-28T18:21:39", + "active": "2016-08-28T18:26:39", + "last_payout": "2016-08-29T20:19:39", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 780727, + "author": "givemeyoursteem", + "permlink": "re-oumar-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182639249z", + "category": "foodchallenge", + "parent_author": "oumar", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "title": "", + "body": "Yeah we missed your post! But no worry, there will be a new challenge very soon :)", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-08-28T18:26:39", + "created": "2016-08-28T18:26:39", + "active": "2016-08-28T18:26:39", + "last_payout": "2016-08-29T20:19:39", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 781174, + "author": "papa-pepper", + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "body": "Excellent Job everyone who entered!\n# Great job picking the winners too! I couldn't agree more!", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-08-28T19:02:12", + "created": "2016-08-28T19:02:12", + "active": "2016-08-28T19:25:24", + "last_payout": "2016-08-29T20:19:39", + "depth": 1, + "children": 1, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 2, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 781462, + "author": "givemeyoursteem", + "permlink": "re-papa-pepper-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t192523201z", + "category": "foodchallenge", + "parent_author": "papa-pepper", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "title": "", + "body": "Yes I'm moved by all effort, you Steemit Food Challengers are the best! \nThanks, it's always a hard choice to make! :)", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-08-28T19:25:24", + "created": "2016-08-28T19:25:24", + "active": "2016-08-28T19:25:24", + "last_payout": "2016-08-29T20:19:39", + "depth": 2, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 0, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + }, + { + "id": 781704, + "author": "the-future", + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t194439865z", + "category": "foodchallenge", + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "body": "Congratulations to all!", + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_update": "2016-08-28T19:44:48", + "created": "2016-08-28T19:44:48", + "active": "2016-08-28T19:44:48", + "last_payout": "2016-08-29T20:19:39", + "depth": 1, + "children": 0, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "0", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 0, + "net_votes": 1, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/test_database_api_patterns.tavern.yaml b/hivemind/tavern/test_database_api_patterns.tavern.yaml index 9b2fae0b..e903f0f4 100644 --- a/hivemind/tavern/test_database_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_database_api_patterns.tavern.yaml @@ -1,5 +1,5 @@ --- - test_name: Hivemind database_api.list_comments patterns test + test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest @@ -58,4 +58,1455 @@ function: validate_response:compare_response_with_pattern extra_kwargs: method: "find_comments" - directory: "database_api_patterns" \ No newline at end of file + directory: "database_api_patterns" + +######################## CASHOUT TIME ######################## +--- +test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" wrong date size + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_cashout_time + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["2016-07-08", "", ""], + "limit": 10, + "order": "by_cashout_time", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "basic_string::at: __n (which is 0) >= this->size() (which is 0):basic_string::at: __n (which is 0) >= this->size() (which is 0): unable to convert ISO-formatted string to fc::time_point_sec" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" date and author + +marks: + - patterntest + - xfail # shows error when there is only one of optional value (first) + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_cashout_time + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["1969-12-31T23:59:59", "etcmike", ""], + "limit": 10, + "order": "by_cashout_time", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:comment != nullptr: Could not find comment etcmike/." + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" date and permlink + +marks: + - patterntest + - xfail # shows error when there is only one of optional value (first) + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_cashout_time + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": + [ + "1969-12-31T23:59:59", + "", + "re-bullionstackers-screen-it-tab-it-what-are-they-20160829t061254603z", + ], + "limit": 10, + "order": "by_cashout_time", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:comment != nullptr: Could not find comment /re-bullionstackers-screen-it-tab-it-what-are-they-20160829t061254603z." + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" all data + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_cashout_time + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": + [ + "1969-12-31T23:59:59", + "etcmike", + "re-bullionstackers-screen-it-tab-it-what-are-they-20160829t061254603z", + ], + "limit": 10, + "order": "by_cashout_time", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_by_cashout_time_all_data" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" future data + +marks: + - patterntest + - xfail # show first posts comments + - failing + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_cashout_time + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["2030-07-08T00:45:15", "", ""], + "limit": 10, + "order": "by_cashout_time", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_by_cashout_time_future_data" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" very future data + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_cashout_time + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["2050-07-08T00:45:15", "", ""], + "limit": 10, + "order": "by_cashout_time", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:(pt - epoch).total_seconds() <= INT32_MAX: Datetime overflowunable to convert ISO-formatted string to fc::time_point_sec" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" no data + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_cashout_time + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { "start": ["", "", ""], "limit": 10, "order": "by_cashout_time" } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Day of month value is out of range 1..31:Day of month value is out of range 1..31: unable to convert ISO-formatted string to fc::time_point_sec" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" data exist in database + +marks: + - patterntest + - xfail # problem with date cashout_time = "1970-01-01 00:00:00" or 1969-12-31T23:59:59 + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_cashout_time + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["1970-01-01T00:00:00", "", ""], + "limit": 10, + "order": "by_cashout_time", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_by_cashout_first_date" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" data exist in database + +marks: + - patterntest + - xfail # wrong output, given cashout_time exist in database (output later 2016-09-15T19:47:27) + - failing + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_cashout_time + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["2016-07-08T00:45:15", "", ""], + "limit": 10, + "order": "by_cashout_time", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_by_cashout_time_second" + directory: "database_api_patterns" + +######################## PERMLINK ######################## +--- +test_name: Hivemind database_api.list_comments patterns test order "by_permlink" only author + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_cashout_time + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: { "start": ["gtg", ""], "limit": 10, "order": "by_permlink" } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_permlink" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_permlink" no data + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_cashout_time + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: { "start": ["", ""], "limit": 10, "order": "by_permlink" } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_permlink_permlink_no_data" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_permlink" good permlink + +marks: + - patterntest # author first - when empty, takes alphabetical (later by permlink) + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_cashout_time + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": + [ + "", + "re-an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse-20160824t212916", + ], + "limit": 10, + "order": "by_permlink", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_permlink_good_permlink" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_permlink" good params + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_cashout_time + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": + [ + "skypilot", + "an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse", + ], + "limit": 10, + "order": "by_permlink", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_permlink_good_params" + directory: "database_api_patterns" + +######################## ROOT ######################## +--- +test_name: Hivemind database_api.list_comments patterns test order "by_root" good params + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_root + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["gtg", "hello-world", "", ""], + "limit": 10, + "order": "by_root", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_root" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_root" no data + +marks: + - patterntest + - xfail # first two params are required + - failing + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_root + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["", "", "", ""], + "limit": 10, + "order": "by_root", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_root_no_data" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_root" only root_author + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_root + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["vi1son", "", "", ""], + "limit": 10, + "order": "by_root", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:root != nullptr: Could not find comment vi1son/." + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_root" required values (comment of a post) + +marks: + - patterntest + - xfail # wrong output + - failing + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_root + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["vi1son", "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", "", ""], + "limit": 10, + "order": "by_root", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_root_required_values" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_root" required values (post) + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_root + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["givemeyoursteem", "winners-of-steemit-food-challenge-3-desserts-to-die-for", "", ""], + "limit": 10, + "order": "by_root", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_root_required_values_comments" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_root" all values correct + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_root + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["givemeyoursteem", "winners-of-steemit-food-challenge-3-desserts-to-die-for", "vi1son", "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z"], + "limit": 10, + "order": "by_root", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_root_all_values" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_root" with child_author + +marks: + - patterntest + - xfail # child_author, child_permlink are optional + - failing + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_root + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["givemeyoursteem", "winners-of-steemit-food-challenge-3-desserts-to-die-for", "vi1son", ""], + "limit": 10, + "order": "by_root", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:child != nullptr: Could not find comment vi1son/." + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_root" wrong child_permlink + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_root + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["givemeyoursteem", "winners-of-steemit-food-challenge-3-desserts-to-die-for", "vi1son", "randomvalues"], + "limit": 10, + "order": "by_root", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:child != nullptr: Could not find comment vi1son/randomvalues." + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_root" wrong val + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_root + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["giv", "winner", "", ""], + "limit": 10, + "order": "by_root", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:root != nullptr: Could not find comment giv/winner." + +######################## PARENT ######################## +--- +test_name: Hivemind database_api.list_comments patterns test order "by_parent" + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_parent + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["gtg", "hello-world", "", ""], + "limit": 10, + "order": "by_parent", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_parent" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_parent" no data + +marks: + - patterntest + - xfail # first 2 params are required + - failing + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_parent + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["", "", "", ""], + "limit": 10, + "order": "by_parent", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_parent_no_data" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_parent" no data + +marks: + - patterntest + - xfail # second param is required + - failing + + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_parent + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["vi1son", "", "", ""], + "limit": 10, + "order": "by_parent", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_parent_parent_author" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_parent" required data + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_parent + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["knozaki2015", "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", "", ""], + "limit": 10, + "order": "by_parent", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_parent_required_data" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_parent" child_author + +marks: + - patterntest + - xfail # child_author, child_permlink are optional + - failing + + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_parent + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["knozaki2015", "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", "givemeyoursteem", ""], + "limit": 10, + "order": "by_parent", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:child != nullptr: Could not find comment givemeyoursteem/." + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_parent" all data + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_parent + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["allasyummyfood", "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t004616466z", "vlad", "re-allasyummyfood-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t011002757z"], + "limit": 10, + "order": "by_parent", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_parent_all_data" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_parent" not full parent_permlink + +marks: + - patterntest + - xfail # unexpected output - takes it aplhabetical from author + - failing + + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_parent + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["allasyummy", "re-givemeyoursteem-winner", "vlad", "re-allasyummyfood-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t011002757z"], + "limit": 10, + "order": "by_parent", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_parent_not_full_data" + directory: "database_api_patterns" + +######################## AUTHOR LAST UPDATE ######################## +--- +test_name: Hivemind database_api.list_comments patterns test order "by_author_last_update" correct date + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_author_last_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["", "2016-08-28T17:15:12", "", ""], + "limit": 10, + "order": "by_author_last_update", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_author_last_update_corr_date" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_author_last_update" correct date and author + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_author_last_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["", "2016-08-28T17:15:12", "givemeyoursteem", ""], + "limit": 10, + "order": "by_author_last_update", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:comment != nullptr: Could not find comment givemeyoursteem/." + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_author_last_update" correct date and author wrong permlink + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_author_last_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["", "2016-08-28T17:15:12", "givemeyoursteem", "winners-of-steemit-food-challenge-3"], + "limit": 10, + "order": "by_author_last_update", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:comment != nullptr: Could not find comment givemeyoursteem/winners-of-steemit-food-challenge-3." + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_author_last_update" correct date author and permlink + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_author_last_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["", "2016-08-28T17:15:12", "givemeyoursteem", "winners-of-steemit-food-challenge-3-desserts-to-die-for"], + "limit": 10, + "order": "by_author_last_update", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_author_last_update_corr_dap" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_author_last_update" correct author and date + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_author_last_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["givemeyoursteem", "2016-08-28T17:15:12", "", ""], + "limit": 10, + "order": "by_author_last_update", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_author_last_update_corr_author_date" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_author_last_update" not full author and corr date + +marks: + - patterntest + - xfail # output should be the same as prev test or with completely diff author + - failing + + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_author_last_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["givemeyo", "2016-08-28T17:15:12", "", ""], + "limit": 10, + "order": "by_author_last_update", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_author_last_update_author_date" + directory: "database_api_patterns" + +######################## LAST UPDATE ######################## +--- +test_name: Hivemind database_api.list_comments patterns test order "by_last_update" + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { "start": ["", "", "", ""], "limit": 10, "order": "by_last_update" } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Day of month value is out of range 1..31:Day of month value is out of range 1..31: unable to convert ISO-formatted string to fc::time_point_sec" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_last_update" date in author + +marks: + - patterntest + - xfail # first arg is author, not date (error about date) + - failing + + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["2016-08-24T21:29:42", "", "", ""], + "limit": 10, + "order": "by_last_update", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Day of month value is out of range 1..31:Day of month value is out of range 1..31: unable to convert ISO-formatted string to fc::time_point_sec" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_last_update" good date + +marks: + - patterntest + - xfail # shows different comment than expected + - failing + + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["", "2016-08-24T21:29:42", "", ""], + "limit": 10, + "order": "by_last_update", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_last_update_good_date" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_last_update" wrong date + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["", "2016-08-24", "", ""], + "limit": 10, + "order": "by_last_update", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "basic_string::at: __n (which is 0) >= this->size() (which is 0):basic_string::at: __n (which is 0) >= this->size() (which is 0): unable to convert ISO-formatted string to fc::time_point_sec" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_last_update" very future date + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["", "2050-08-24T21:29:42", "", ""], + "limit": 10, + "order": "by_last_update", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:(pt - epoch).total_seconds() <= INT32_MAX: Datetime overflowunable to convert ISO-formatted string to fc::time_point_sec" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_last_update" future date + +marks: + - patterntest + - xfail # show last comments in base + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["", "2022-08-24T21:29:42", "", ""], + "limit": 10, + "order": "by_last_update", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_by_last_update_future_date" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_comments patterns test order "by_last_update" wrong day + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_update + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": ["", "2016-04-66T21:29:42", "", ""], + "limit": 10, + "order": "by_last_update", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Day of month value is out of range 1..31:Day of month value is out of range 1..31: unable to convert ISO-formatted string to fc::time_point_sec" diff --git a/hivemind/tavern/validate_response.py b/hivemind/tavern/validate_response.py index 4809eab9..0149557b 100644 --- a/hivemind/tavern/validate_response.py +++ b/hivemind/tavern/validate_response.py @@ -45,3 +45,9 @@ def compare_response_with_pattern(response, method=None, directory=None): save_response(response_fname, result) msg = "Differences detected between response and pattern. Diff saved to {}\n\nDiff:\n{}".format(fname, pattern_resp_diff) raise PatternDiffException(msg) + +def compare_error_message(response, message): + response_json = response.json() + error = response_json.get("error", None) + if error['message'] != message: + raise PatternDiffException('error message not equal, expected: "' + message + '" given: "' + error['message'] + '"') \ No newline at end of file -- GitLab From 65f60a44d1ed675f5d146599750668fd4cd8a64c Mon Sep 17 00:00:00 2001 From: Dariusz Kedzierski Date: Tue, 11 Aug 2020 12:58:11 +0200 Subject: [PATCH 10/49] diff in safe json serialization state --- hivemind/tavern/validate_response.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hivemind/tavern/validate_response.py b/hivemind/tavern/validate_response.py index 436bf838..b31000fe 100644 --- a/hivemind/tavern/validate_response.py +++ b/hivemind/tavern/validate_response.py @@ -70,7 +70,8 @@ def compare_response_with_pattern(response, method=None, directory=None, ignore_ pattern = remove_tag(pattern, ignore_tags) pattern_resp_diff = deepdiff.DeepDiff(pattern, result) if pattern_resp_diff: - save_diff(fname, pattern_resp_diff) + pattern_resp_diff_json = pattern_resp_diff.to_json() + save_diff(fname, pattern_resp_diff_json) save_response(response_fname, result) - msg = "Differences detected between response and pattern. Diff saved to {}\n\nDiff:\n{}".format(fname, pattern_resp_diff) + msg = "Differences detected between response and pattern. Diff saved to {}\n\nDiff:\n{}".format(fname, pattern_resp_diff_json) raise PatternDiffException(msg) -- GitLab From 201f1b41ab44c6262292a388cde923c71d328350 Mon Sep 17 00:00:00 2001 From: ABW Date: Tue, 11 Aug 2020 20:17:13 +0200 Subject: [PATCH 11/49] [ABW]: cashout_time touched (again) to match recent change with hardcoded cashout after 7 days accepted differences in post_id in new patterns added comments on bridge_api failing tests now that there is less differences corrected patterns for database_api (one test also changed to fit interface of fat node - completely stopped working for new HiveMind due to API difference) --- .../get_discussion.pat.json | 66 +- ...get_comment_discussions_by_payout.pat.json | 2 +- .../get_discussions_by_created.pat.json | 2 +- .../get_discussions_by_promoted.pat.json | 2 +- .../get_post_discussions_by_payout.pat.json | 2 +- .../find_comments.pat.json | 54 +- .../list_comments.pat.json | 864 ++++++++++-------- ...get_comment_discussions_by_payout.pat.json | 2 +- .../get_discussions_by_created.pat.json | 2 +- .../get_discussions_by_promoted.pat.json | 2 +- .../get_post_discussions_by_payout.pat.json | 2 +- .../test_bridge_api_patterns.tavern.yaml | 10 +- .../test_database_api_patterns.tavern.yaml | 2 +- 13 files changed, 594 insertions(+), 418 deletions(-) diff --git a/hivemind/tavern/bridge_api_patterns/get_discussion.pat.json b/hivemind/tavern/bridge_api_patterns/get_discussion.pat.json index 35cd74aa..14d769d4 100644 --- a/hivemind/tavern/bridge_api_patterns/get_discussion.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_discussion.pat.json @@ -113,7 +113,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160726t035722561z", - "post_id": 264599, + "post_id": 366098, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -159,7 +159,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-red-steemit-firstpost-2-20160713t083846149z", - "post_id": 66997, + "post_id": 92974, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -233,7 +233,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160713t082910980z", - "post_id": 66957, + "post_id": 92903, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -283,7 +283,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160810t083336206z", - "post_id": 537479, + "post_id": 721016, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -333,7 +333,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160801t184846033z", - "post_id": 395733, + "post_id": 540797, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -394,7 +394,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160811t225325571z", - "post_id": 563725, + "post_id": 754693, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -440,7 +440,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160818t030224104z", - "post_id": 650694, + "post_id": 864413, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -494,7 +494,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160721t223937736z", - "post_id": 189029, + "post_id": 260426, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -544,7 +544,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-admin-firstpost-20160718t195306992z", - "post_id": 125730, + "post_id": 172339, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -588,7 +588,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160718t195806340z", - "post_id": 125794, + "post_id": 172415, "promoted": "0.000 HBD", "replies": [ "steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z" @@ -640,7 +640,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160801t232001768z", - "post_id": 401002, + "post_id": 547508, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -690,7 +690,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z", - "post_id": 173797, + "post_id": 239195, "promoted": "0.000 HBD", "replies": [ "kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z" @@ -733,7 +733,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-kewpiedoll-re-steemit-firstpost-20160720t215823622z", - "post_id": 167552, + "post_id": 230821, "promoted": "0.000 HBD", "replies": [ "kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z" @@ -776,7 +776,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160824t093007335z", - "post_id": 729186, + "post_id": 964406, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -826,7 +826,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160807t215340468z", - "post_id": 498164, + "post_id": 670574, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -894,7 +894,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160719t210752086z", - "post_id": 145129, + "post_id": 199181, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -948,7 +948,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160722t225246211z", - "post_id": 206329, + "post_id": 284527, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1002,7 +1002,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160725t221949749z", - "post_id": 259905, + "post_id": 359333, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1052,7 +1052,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z", - "post_id": 180004, + "post_id": 247613, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1104,7 +1104,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z", - "post_id": 173754, + "post_id": 239135, "promoted": "0.000 HBD", "replies": [ "intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z" @@ -1163,7 +1163,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160720t210201326z", - "post_id": 166558, + "post_id": 229482, "promoted": "0.000 HBD", "replies": [ "intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z" @@ -1211,7 +1211,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-admin-firstpost-20160717t193811098z", - "post_id": 110463, + "post_id": 151464, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1274,7 +1274,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160720t121101482z", - "post_id": 157998, + "post_id": 217597, "promoted": "0.000 HBD", "replies": [ "yonuts/re-kingtylervvs-re-steemit-firstpost-20160729t180621248z" @@ -1317,7 +1317,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160726t035056026z", - "post_id": 264501, + "post_id": 365968, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1371,7 +1371,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160722t201007967z", - "post_id": 203716, + "post_id": 280969, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1566,7 +1566,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160804t061605576z", - "post_id": 440665, + "post_id": 596138, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1624,7 +1624,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160824t025355199z", - "post_id": 726644, + "post_id": 961146, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1670,7 +1670,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160721t233702742z", - "post_id": 189812, + "post_id": 261571, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1712,7 +1712,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-red-steemit-firstpost-2", - "post_id": 101, + "post_id": 116, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -2228,7 +2228,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-gopher-re-steemit-firstpost-20160720t183548381z", - "post_id": 163863, + "post_id": 225799, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -2297,7 +2297,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160813t143213453z", - "post_id": 585908, + "post_id": 782948, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -2338,7 +2338,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-kingtylervvs-re-steemit-firstpost-20160729t180621248z", - "post_id": 339524, + "post_id": 470778, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -2379,7 +2379,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160723t130259286z", - "post_id": 214663, + "post_id": 296193, "promoted": "0.000 HBD", "replies": [], "stats": { diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json index cc8ba597..15ef8fb0 100644 --- a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json @@ -6,7 +6,7 @@ "beneficiaries": [], "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", "body_length": 122, - "cashout_time": "1970-01-01T00:00:00", + "cashout_time": "2016-08-29T07:44:48", "category": "polska", "children": 0, "created": "2016-08-22T07:44:48", diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json index a1874f45..4ef6e33b 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json @@ -6,7 +6,7 @@ "beneficiaries": [], "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", "body_length": 652, - "cashout_time": "1970-01-01T00:00:00", + "cashout_time": "2016-09-22T19:40:21", "category": "freedom", "children": 0, "created": "2016-09-15T19:40:21", diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json index a230ccc4..27f6c640 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json @@ -2563,7 +2563,7 @@ "beneficiaries": [], "body": "https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\n\n# Over the last few weeks I've been thinking about ways we could increase the demand for Steem Power, the quality of curated content and the incentives to participate as a Steem curator.\n\nHere are a couple ideas I have been kicking around. They're not fully mature and could use a good rinsing by the community.\n\n## Allow Steem holders to delegate their Steem Power voting rights to a **voting pool**\n\nA delegated voting pool could socialize voting power and individualize rewards. One prime use for this could be the @steemit account. @steemit could create a voting pool and invite anyone with a verified identity and good reputation to join the pool as a curator. This could increase the number of unique curators, help bootstrap Steem as an identity database and give people even more incentives to sign up.\n\nTo show the numbers, an example would be Alice Bob and Charley each delegate their SP of 2, 3, and 7 to one voting pool. Now they each have 4, 4, and 4 SP to be used to curate. Better curation would earn them more curation rewards. \n\nA side effect of delegated voting pools could be voting markets. Any user would have the power to create a voting pool and these users could charge curators for participation. Some of the platform's whales could be interested in offering subscription models to minnows as a way to get more voting influence.\n\n## If powering down stake loses voting influence\n\nImagine that any stake being powered down would lose its rights to use voting influence. This could make the system very clear in the regard that stake is either in or it is out. Users could be able to choose any % of their stake to power down regardless of how many accounts they have and only the % stake that is powering down would lose voting influence. Stopping a power down could return all voting rights.\n\nPerhaps the effect of this could be 1/ more interest to stay in the platform and 2/ more fluidity in the witness queue 3/ more fairness regarding the PoS nature of Steem 4/ more clarity from participants looking to exit the system\n\n## Combined effect?\nPerhaps these proposals could have a combined effect that increases the demand and fluidity of Steem Power while improving the curated experience for people visiting Steem based websites.\n\n#### What are your thoughts and questions?", "body_length": 2399, - "cashout_time": "2016-09-09T02:14:24", + "cashout_time": "2016-09-14T15:44:51", "category": "steem", "children": 315, "created": "2016-09-07T15:44:51", diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json index a722e221..391bf27f 100644 --- a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json @@ -13,7 +13,7 @@ "beneficiaries": [], "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", "body_length": 1273, - "cashout_time": "1970-01-01T00:00:00", + "cashout_time": "2016-08-25T21:19:45", "category": "polska", "children": 1, "created": "2016-08-18T21:19:45", diff --git a/hivemind/tavern/database_api_patterns/find_comments.pat.json b/hivemind/tavern/database_api_patterns/find_comments.pat.json index 0637a088..a8d6220b 100644 --- a/hivemind/tavern/database_api_patterns/find_comments.pat.json +++ b/hivemind/tavern/database_api_patterns/find_comments.pat.json @@ -1 +1,53 @@ -[] \ No newline at end of file +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-24T09:30:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit", + "author_rewards": 3548, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "children_abs_rshares": 0, + "created": "2016-03-30T18:30:18", + "curator_payout_value": { + "amount": "756", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 0, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 90, + "parent_author": "", + "parent_permlink": "meta", + "percent_hbd": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Welcome to Steem!", + "total_payout_value": { + "amount": "942", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments.pat.json b/hivemind/tavern/database_api_patterns/list_comments.pat.json index 82601100..f50f74df 100644 --- a/hivemind/tavern/database_api_patterns/list_comments.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments.pat.json @@ -1,370 +1,494 @@ -{"comments" :[{"id":0,"author":"steemit","permlink":"firstpost","category":"meta","parent_author":"","parent_permlink":"meta","title":"Welcome to Steem!","body":"Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.","json_metadata":"","last_update":"2016-03-30T18:30:18","created":"2016-03-30T18:30:18","active":"2020-03-21T09:18:18","last_payout":"2016-08-24T19:59:42","depth":0,"children":430,"net_rshares":0,"abs_rshares":0,"vote_rshares":0,"children_abs_rshares":"28797030536827","cashout_time":"1969-12-31T23:59:59","max_cashout_time":"1969-12-31T23:59:59","total_vote_weight":0,"reward_weight":10000,"total_payout_value":{"amount":"942","precision":3,"nai":"@@000000013"},"curator_payout_value":{"amount":"756","precision":3,"nai":"@@000000013"},"author_rewards":3548,"net_votes":90,"root_author":"steemit","root_permlink":"firstpost","max_accepted_payout":{"amount":"1000000000","precision":3,"nai":"@@000000013"},"percent_hbd":10000,"allow_replies":true,"allow_votes":true,"allow_curation_rewards":true,"beneficiaries":[] }, -{ "id" :30425494, -"author" :"steemit-01", -"permlink" :"20-hafta-sueper-lig-mac-sonuclari-ve-puan-durumu-0c514b7a295", -"category" :"tr", -"parent_author" :"", -"parent_permlink" :"tr", -"title" :"20. Hafta s\u00fcper lig ma\u00e7 sonu\u00e7lar\u0131 ve puan durumu", -"body" :"Zirveye oynayan tak\u0131mlar\u0131n puan kay\u0131plar\u0131na sahne olan 20. Hafta bol goll\u00fc ma\u00e7lar oldu. Haftan\u0131n a\u00e7\u0131l\u0131\u015f ma\u00e7\u0131nda bursaspor-besikta\u015f 2-2 berabere kalm\u0131\u015ft\u0131r.\nFenerbah\u00e7e-genclerbirligi 2-2\nSivasspor-galatasaray 2-1 \nHaftan\u0131n son ma\u00e7\u0131 pazartesi g\u00fcn\u00fc trabzonspor-g\u00f6ztepe oynanacakt\u0131r. B\u00fct\u00fcn tak\u0131mlara ba\u015far\u0131lar dilerim. Iyi oynayan kazans\u0131n. \n\n ![image](https:\/\/img.esteem.ws\/quopn14n6f.jpg)\n![image](https:\/\/img.esteem.ws\/qqr7g77ins.jpg)\n ![image](https:\/\/img.esteem.ws\/c93askgsdo.jpg)", -"json_metadata" :"{\"links\":[],\"image\":[\"https:\/\/img.esteem.ws\/quopn14n6f.jpg\",\"https:\/\/img.esteem.ws\/qqr7g77ins.jpg\",\"https:\/\/img.esteem.ws\/c93askgsdo.jpg\"],\"tags\":[\"tr\",\"life\",\"futbol\"],\"app\":\"esteem\/1.5.1\",\"format\":\"markdown+html\",\"community\":\"esteem\"}", -"last_update" :"2018-02-04T20:29:39", -"created" :"2018-02-04T20:29:39", -"active" :"2018-02-11T13:45:45", -"last_payout" :"2018-02-11T20:29:39", -"depth" :0, -"children" :4, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"3600", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"1298", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :926, -"net_votes" :6, -"root_author" :"steemit-01", -"root_permlink" :"20-hafta-sueper-lig-mac-sonuclari-ve-puan-durumu-0c514b7a295", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_hbd" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":1000}] }, -{ "id" :31551861, -"author" :"steemit-01", -"permlink" :"ada-coin-cointurk-13-projesi-3e388d8ec14", -"category" :"cointurk", -"parent_author" :"", -"parent_permlink" :"cointurk", -"title" :"Ada coin [ cointurk 13. Projesi]", -"body" :"Ada di\u011fer ad\u0131 Cardano i\u00e7in \u0131s\u0131nmad\u0131 buna bir anda coinmarketcap a girdi. \u0130lk zamanlar ilk 17 icin de yer ald\u0131. Aradan 2 ay ge\u00e7meden 5. S\u0131raya yerle\u015fti kalkm\u0131yor bir t\u00fcrl\u00fc. Arkas\u0131nda sa\u011flam bir deste\u011fin oldu\u011fu belli \u00e7ok g\u00fczel y\u00f6nlendiriyorlar. Ne i\u015fe yarar teknolojisi nedir ne i\u015fe yarar hi\u00e7 ara\u015ft\u0131rmad\u0131m, amac\u0131 belli bir grup taraf\u0131ndan piyasaya sa\u011flam bir grup belli ki paray\u0131 vurdu sanki her\u015feyi zaman g\u00f6sterecek. Yat\u0131r\u0131m yap\u0131lmas\u0131n\u0131 ben pek uygun g\u00f6rm\u00fcyorum. ![image](https:\/\/img.esteem.ws\/e0xeka2rm7.jpg)", -"json_metadata" :"{\"links\":[],\"image\":[\"https:\/\/img.esteem.ws\/e0xeka2rm7.jpg\"],\"tags\":[\"cointurk\",\"tr\",\"ada\"],\"app\":\"esteem\/1.5.1\",\"format\":\"markdown+html\",\"community\":\"esteem\"}", -"last_update" :"2018-02-09T22:26:54", -"created" :"2018-02-09T22:26:54", -"active" :"2018-02-09T23:21:27", -"last_payout" :"2018-02-16T22:26:54", -"depth" :0, -"children" :1, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"2626", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"910", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :626, -"net_votes" :5, -"root_author" :"steemit-01", -"root_permlink" :"ada-coin-cointurk-13-projesi-3e388d8ec14", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_hbd" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":1000}] }, -{ "id" :40019453, -"author" :"steemit-01", -"permlink" :"bahar-geldi-hos-geldi-a03b4f7ac06dc", -"category" :"hayat", -"parent_author" :"", -"parent_permlink" :"hayat", -"title" :"BAHAR GELD\u0130 HO\u015e GELD\u0130", -"body" :"Bahar demek uyuyan topra\u011f\u0131n, toprak icin de uyuyan canl\u0131lar\u0131n uyanmas\u0131 do\u011fan\u0131n tekrardan canlanmas\u0131 demektir. Insanlar\u0131n ne\u015felenmesi demek tekrardan ya\u015fama ba\u015flamak demektir.\n ![image](https:\/\/img.esteem.ws\/wvxrr2yhew.jpg)\nDedelerimiz 60 defa babalar\u0131m\u0131z 40-50 defa omurlerinde bahar\u0131 g\u00f6rm\u00fc\u015ft\u00fcr, bahar\u0131n ne demek oldu\u011funu onlara sorsak \u00e7ok iyi anlat\u0131rlar bizlere.\n ![image](https:\/\/img.esteem.ws\/jubhfbjxzn.jpg)\nBizler ise kocaman \u015fehir de betonlar\u0131n aras\u0131nda asfalt yollarda \u00f6mr\u00fcm\u00fcz ge\u00e7iyor.\n Fark\u0131na bile varam\u0131yoruz bademler \u00e7i\u00e7ek a\u00e7m\u0131\u015f erikler k\u00fc\u00e7\u00fck k\u00fc\u00e7\u00fck olmu\u015f b\u00f6cekler c\u0131km\u0131\u015f, tabi y\u0131lanlar ge\u00e7 \u00e7\u0131ks\u0131n birazcik:)\n\n\n\nBizler bu durumda ne yapabiliriz, evimiz de bah\u00e7emiz varsa bah\u00e7e de bah\u00e7e yoksa balkon da bir tane domates ve bir tane biber fidesi al\u0131p onlar\u0131 yeti\u015ftirebilriz, hem \u00e7ok k\u0131sa s\u00fcre de hem de organik bir \u015fekilde yeti\u015fir.\n Gerekli malzemeler domates biber fidesi saks\u0131 toprak ve solucan g\u00fcbresi hepsi kolayca temin edilebilir. \u00d6zellik k\u00fc\u00e7\u00fck \u00e7ocuklar var ise evde onlar\u0131n i\u00e7in de m\u00fckemmel olur, bir bitkinin g\u00f6zlerinin \u00f6n\u00fcnde nas\u0131l yeti\u015fti\u011fini g\u00f6r\u00fcp \u00f6\u011frenir, veya tohum da ekebilirsiniz salatal\u0131k en basiti \u00e7ok k\u0131sa s\u00fcrede yeti\u015fir. Ceviz de guzel yetisir 3 5 sene saks\u0131da kalabilir.\n\nBari bu bahari bo\u015f ge\u00e7irmeyelim bir dikili agacimiz olsun. Bakin \u00f6m\u00fcr bitiyor.\n ![image](https:\/\/img.esteem.ws\/6kn0g6jzjk.jpg)", -"json_metadata" :"{\"links\":[],\"image\":[\"https:\/\/img.esteem.ws\/wvxrr2yhew.jpg\",\"https:\/\/img.esteem.ws\/jubhfbjxzn.jpg\",\"https:\/\/img.esteem.ws\/6kn0g6jzjk.jpg\"],\"tags\":[\"hayat\",\"tr\",\"cointurk\",\"esteem\"],\"app\":\"esteem\/1.5.1\",\"format\":\"markdown+html\",\"community\":\"esteem\"}", -"last_update" :"2018-03-22T19:09:45", -"created" :"2018-03-22T19:09:45", -"active" :"2018-03-22T19:09:45", -"last_payout" :"2018-03-29T19:09:45", -"depth" :0, -"children" :0, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"407", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"129", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :234, -"net_votes" :16, -"root_author" :"steemit-01", -"root_permlink" :"bahar-geldi-hos-geldi-a03b4f7ac06dc", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_hbd" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":1000}] }, -{ "id" :28707916, -"author" :"steemit-01", -"permlink" :"bay-garson-zg1hbmlh-zflcl", -"category" :"dmania", -"parent_author" :"", -"parent_permlink" :"dmania", -"title" :"bay garson :)", -"body" :"
\n \n \n <\/a>\n

Watch video on dMania<\/a><\/h3>\n \n \n <\/a>\n <\/center>", -"json_metadata" :"{\"tags\":[\"dmania\",\"video\",\"funny\"],\"image\":[\"https:\/\/s3-eu-west-1.amazonaws.com\/dmania-thumbnail\/whatsapp-video-2018-01-28-at-00-1j431p7-00001.png\"],\"video\":{\"videoUrl\":\"https:\/\/s3-eu-west-1.amazonaws.com\/dmania-vid\/whatsapp-video-2018-01-28-at-00-1j431p7.mp4\",\"thumbnailUrl\":\"https:\/\/s3-eu-west-1.amazonaws.com\/dmania-thumbnail\/whatsapp-video-2018-01-28-at-00-1j431p7-00001.png\"},\"app\":\"dmania\/0.6\"}", -"last_update" :"2018-01-28T13:52:18", -"created" :"2018-01-28T13:52:18", -"active" :"2018-01-28T17:05:09", -"last_payout" :"2018-02-04T13:52:18", -"depth" :0, -"children" :3, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"4546", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"1334", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :1005, -"net_votes" :7, -"root_author" :"steemit-01", -"root_permlink" :"bay-garson-zg1hbmlh-zflcl", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_hbd" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"cnts","weight":500},{"account":"dmania","weight":1000},{"account":"lafona-miner","weight":500},{"account":"xeldal","weight":500}] }, -{ "id" :41022114, -"author" :"steemit-01", -"permlink" :"bitcoin-alan-satan-imamlar-suskunlugunu-bozdu-c49e12bca1cf4", -"category" :"tr", -"parent_author" :"", -"parent_permlink" :"tr", -"title" :"B\u0130TCO\u0130N alan satan imamlar suskunlu\u011funu bozdu", -"body" :"Ge\u00e7en g\u00fcn \u00e7\u0131kan haberler aral\u0131k ayinda bitcoin al\u0131m sat\u0131m iddas\u0131 ile g\u00f6revlerinden uzakla\u015ft\u0131r\u0131lan imamlar konu\u015ftu bitcoin in ne oldu\u011funu daha bilmiyoruz, g\u00f6revimize d\u00f6nmek istiyoruz dediler. G\u00f6revden uzakla\u015ft\u0131rma gerek\u00e7esini de diyanet bitcoinin caiz olmad\u0131\u011f\u0131n\u0131 \u00f6ne s\u00fcrm\u00fc\u015ft\u00fc. \n \nBilmem haberler ne kadar do\u011frudur yanl\u0131\u015ft\u0131r. Fakat bildi\u011fim bisey var haberin \u00e7\u0131kar\u0131lma maksad\u0131na bakar\u0131m kim neden ni\u00e7in \u00e7\u0131kar\u0131r b\u00f6yle haberi reklam mi yapmak yasak mi getirmek ama\u00e7lar\u0131. \n\n Sizlere soruyorum bu g\u00fcne kadar alkol i\u00e7ti\u011fi i\u00e7in, kumar oynad\u0131\u011f\u0131 i\u00e7in veya milli piyango bileti alan idda ya da say\u0131sal loto oynayan imam\u0131n uzakla\u015ft\u0131rild\u0131\u011f\u0131n\u0131 \n Hic duydunuz mu ya da bu sayd\u0131klar\u0131m caiz mi l\u00fctfen elinizi vicdan\u0131n\u0131za koyup cevaplay\u0131n. Mesele imamlar mi bitcoin mi yoksa dinimiz mi veya devletimiz mi her g\u00fcn bir d\u00fcnya sa\u00e7ma sapan haberler.\n ![image](https:\/\/img.esteem.ws\/nxxz9axvfp.jpg)", -"json_metadata" :"{\"links\":[],\"image\":[\"https:\/\/img.esteem.ws\/nxxz9axvfp.jpg\"],\"tags\":[\"tr\",\"bitcoin\",\"cointurk\",\"esteem\"],\"app\":\"esteem\/1.5.1\",\"format\":\"markdown+html\",\"community\":\"esteem\"}", -"last_update" :"2018-03-28T19:05:24", -"created" :"2018-03-28T19:05:24", -"active" :"2018-03-28T19:21:42", -"last_payout" :"2018-04-04T19:05:24", -"depth" :0, -"children" :5, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"458", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"132", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :281, -"net_votes" :13, -"root_author" :"steemit-01", -"root_permlink" :"bitcoin-alan-satan-imamlar-suskunlugunu-bozdu-c49e12bca1cf4", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_hbd" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":1000}] }, -{ "id" :24448862, -"author" :"steemit-01", -"permlink" :"bitcoin-cash-cointurk-4-projesi-793446f50ab08", -"category" :"tr", -"parent_author" :"", -"parent_permlink" :"tr", -"title" :"Bitcoin cash [ cointurk 4. Projesi ]", -"body" :"Bitcoin cash gibi reklam\u0131n\u0131 yapan bir ba\u015fka coin olmad\u0131. Bitcoin ad\u0131n\u0131 kullanarak devasa bir b\u00fcy\u00fcme ger\u00e7ekle\u015ftirdi. Ilk \u00e7\u0131kt\u0131\u011f\u0131 zamanlarda ve devam\u0131n da bir \u00e7ok ki\u015fiye \u00e7ok kazand\u0131rd\u0131, bir \u00e7ok ki\u015fiyi hayal k\u0131r\u0131kl\u0131\u011f\u0131na u\u011fratt\u0131. Zarar mi ettirdi tabiki hay\u0131r sab\u0131rs\u0131z olanlar kesinlikle zarar etti ka\u00e7\u0131n\u0131lmazd\u0131. Yine de bildi\u011fi yoldan devam ediyor an\u0131 \u00e7\u0131k\u0131\u015flar\u0131 ve d\u00fc\u015f\u00fc\u015fleri her zaman olabilecek bir alternatif coindir. \u00c7ok can yakar, \u00e7ok kazanirir en \u00e7ok dikkat edilmesi gereken coindir. ![image](https:\/\/img.esteem.ws\/tt5kj2v8xz.jpg)", -"json_metadata" :"{\"links\":[],\"image\":[\"https:\/\/img.esteem.ws\/tt5kj2v8xz.jpg\"],\"tags\":[\"tr\",\"cointurk\",\"kusadasi\",\"bitcoincash\",\"kripto-para\"],\"app\":\"esteem\/1.5.0\",\"format\":\"markdown+html\",\"community\":\"esteem\"}", -"last_update" :"2018-01-08T21:53:03", -"created" :"2018-01-08T21:53:03", -"active" :"2018-01-11T20:00:42", -"last_payout" :"2018-01-15T21:53:03", -"depth" :0, -"children" :1, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"1542", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"481", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :266, -"net_votes" :3, -"root_author" :"steemit-01", -"root_permlink" :"bitcoin-cash-cointurk-4-projesi-793446f50ab08", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_hbd" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":500}] }, -{ "id" :26928882, -"author" :"steemit-01", -"permlink" :"bitcoin-en-ideal-yatirim-aracidir-cointurk-8-projesi-8762263941674", -"category" :"tr", -"parent_author" :"", -"parent_permlink" :"tr", -"title" :"Bitcoin en ideal yat\u0131r\u0131m arac\u0131d\u0131r \ud83d\ude0a\ud83d\ude0a [ cointurk 8. Projesi ]", -"body" :"Bitcoin ile tan\u0131\u015fmam eskiye dayan\u0131r fakat kas\u0131m 2016 da ilk al\u0131\u015f sat\u0131\u015f i\u015flemimdir. Aral\u0131k 2016 'daki d\u00fc\u015f\u00fc\u015f den dolay\u0131 bir g\u00fcvensizlik olu\u015ftu hemen uzaklastim. Sonra dedim tabi en g\u00fcvenli liman alt\u0131nd\u0131r dolard\u0131r baya borsa i\u015fi fila u\u011fra\u015ft\u0131m, k\u00e2r\u0131 azd\u0131 ve sonra para baronlari ters de b\u0131rakt\u0131 derken d\u00f6viz i\u015fini de b\u0131rakt\u0131m. Dolar alt\u0131n euro ya yat\u0131r\u0131m yap\u0131yorsun, sonra ne oluyor biliyor musun \u00fclkendeki g\u00fczel geli\u015fmelere sevinemiyorsunuz. \u00c7\u00fcnk\u00fc d\u00f6viz d\u00fc\u015f\u00fcyor \u00e7\u0131kmam\u0131\u015fsan zarar yaz\u0131yor, alt\u0131n al\u0131rs\u0131n dolara ba\u011fl\u0131 olan alt\u0131n da d\u00fc\u015fer sen baka kal\u0131rs\u0131n. Neyse gel zaman git zaman haziran 2017 'de ufak ufak bitcoin almaya satmaya ba\u015flad\u0131m. Yine de i\u00e7im de bir g\u00fcvensizlik vardi. \u00d6nce #bitcoin sonra altcoinler filan derken hep al sat al sat derken s\u00fcrekli zarar zarar ne zaman ki bitcoin e tam olarak g\u00fcvendim o zaman kazanmaya ba\u015flad\u0131m. Yeni ba\u015flayan arkada\u015flara en \u00f6nemli tavsiyem bitcoin al\u0131n ve uzun vadeli yat\u0131r\u0131m olarak d\u00fc\u015f\u00fcn\u00fcn k\u0131sa s\u00fcrekli k\u00fc\u00e7\u00fck k\u00e2rlara aldanmay\u0131n ve bitcoin e s\u0131k\u0131 s\u0131k\u0131 sar\u0131l\u0131n. Ileride ah vah ke\u015fke dememek i\u00e7in karar verin.\n ![image](https:\/\/img.esteem.ws\/w9pam3ozxr.jpg)", -"json_metadata" :"{\"links\":[],\"image\":[\"https:\/\/img.esteem.ws\/w9pam3ozxr.jpg\"],\"tags\":[\"tr\",\"bitcoin\",\"cointurk\",\"kripto-para\",\"esteem\"],\"app\":\"esteem\/1.5.0\",\"format\":\"markdown+html\",\"community\":\"esteem\"}", -"last_update" :"2018-01-20T22:53:06", -"created" :"2018-01-20T22:53:06", -"active" :"2018-01-20T22:53:06", -"last_payout" :"2018-01-27T22:53:06", -"depth" :0, -"children" :0, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"12886", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"4342", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :2134, -"net_votes" :11, -"root_author" :"steemit-01", -"root_permlink" :"bitcoin-en-ideal-yatirim-aracidir-cointurk-8-projesi-8762263941674", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_hbd" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":500}] }, -{ "id" :26261629, -"author" :"steemit-01", -"permlink" :"bitcoin-i-ilgili-cilgin-tahmin-100-bin-dolari-gececek-ff05005b9b12b", -"category" :"tr", -"parent_author" :"", -"parent_permlink" :"tr", -"title" :"Bitcoin'i ilgili \u00e7\u0131lg\u0131n tahmin: 100 bin dolar\u0131 ge\u00e7ecek", -"body" :"Saxo bank analisti kay van-petersen CNBC 2016 aral\u0131k ay\u0131nda yapt\u0131\u011f\u0131 de\u011ferlendirmede 2017 y\u0131l\u0131nda 2000 dolar\u0131 ge\u00e7ece\u011fini s\u00f6ylemi\u015fti. 2018 y\u0131l\u0131nda ise 50.000 ile 100000 dolar olabilece\u011fini s\u00f6yl\u00fcyor. ![image](https:\/\/img.esteem.ws\/y1bjrvwcly.jpg)\n\nKaynak:https:\/\/www.haberler.com\/bitcoin-le-ilgili-cilgin-tahmin-100-bin-dolari-10461899-haberi\/", -"json_metadata" :"{\"links\":[\"https:\/\/www.haberler.com\/bitcoin-le-ilgili-cilgin-tahmin-100-bin-dolari-10461899-haberi\/\"],\"image\":[\"https:\/\/img.esteem.ws\/y1bjrvwcly.jpg\"],\"tags\":[\"tr\",\"bitcoin\",\"cointurk\",\"kripto-para\",\"esteem\"],\"app\":\"esteem\/1.5.0\",\"format\":\"markdown+html\",\"community\":\"esteem\"}", -"last_update" :"2018-01-17T15:37:45", -"created" :"2018-01-17T15:37:18", -"active" :"2018-01-17T15:37:45", -"last_payout" :"2018-01-24T15:37:18", -"depth" :0, -"children" :0, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"1146", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"347", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :264, -"net_votes" :6, -"root_author" :"steemit-01", -"root_permlink" :"bitcoin-i-ilgili-cilgin-tahmin-100-bin-dolari-gececek-ff05005b9b12b", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_hbd" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":500}] }, -{ "id" :31239836, -"author" :"steemit-01", -"permlink" :"e-devlet-de-soyagaci-sorgulama-e-devlete-entegre-edildi-e-devley-sistemi-kilitlendi-880490885e2d5", -"category" :"tr", -"parent_author" :"", -"parent_permlink" :"tr", -"title" :"E devlet de soya\u011fac\u0131 sorgulama e devlete entegre edildi e-devlet sistemi kilitlendi", -"body" :"Bir \u00e7ok resmi i\u015flemlerimizi e devlet sitesinden halledebiliyorken bu hizmetlere bir yenisi eklendi. N\u00fcfus ve vatanda\u015fl\u0131k i\u015fleri genel m\u00fcd\u00fcrl\u00fc\u011f\u00fc e devlet sistemine uygulamay\u0131 entegre etti\u011fini duyurdu. \nSoya\u011fac\u0131 nas\u0131l sorgulan\u0131r?\nE devlet uygulamas\u0131ndan hizmetler b\u00f6l\u00fcm\u00fcne girerek n\u00fcfus ve vatanda\u015fl\u0131k i\u015fleri b\u00f6l\u00fcm\u00fcn alt kategorisinin den soya\u011fac\u0131n\u0131 t\u0131klayarak \u00f6\u011frenebilirsiniz.\n ![image](https:\/\/img.esteem.ws\/ulrw9d3g3e.jpg)", -"json_metadata" :"{\"image\":[\"https:\/\/img.esteem.ws\/ulrw9d3g3e.jpg\"],\"tags\":[\"tr\",\"hayat\"],\"app\":\"steemit\/0.1\",\"format\":\"markdown\",\"community\":\"esteem\"}", -"last_update" :"2018-02-09T21:31:54", -"created" :"2018-02-08T12:59:06", -"active" :"2018-02-09T21:31:54", -"last_payout" :"2018-02-15T12:59:06", -"depth" :0, -"children" :0, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"9876", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"3490", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :2507, -"net_votes" :9, -"root_author" :"steemit-01", -"root_permlink" :"e-devlet-de-soyagaci-sorgulama-e-devlete-entegre-edildi-e-devley-sistemi-kilitlendi-880490885e2d5", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_hbd" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":1000}] } ] } +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-24T09:30:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit", + "author_rewards": 3548, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "children_abs_rshares": 0, + "created": "2016-03-30T18:30:18", + "curator_payout_value": { + "amount": "756", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 0, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 90, + "parent_author": "", + "parent_permlink": "meta", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Welcome to Steem!", + "total_payout_value": { + "amount": "942", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-06-10T08:55:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-awesome", + "author_rewards": 0, + "beneficiaries": [], + "body": ":)", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-06-10T08:03:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 19953, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-06-10T08:03:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -401748374094, + "net_votes": -1, + "parent_author": "", + "parent_permlink": "steemit", + "percent_steem_dollars": 10000, + "permlink": "show-me-some-love-please", + "reward_weight": 10000, + "root_author": "steemit-awesome", + "root_permlink": "show-me-some-love-please", + "title": "show me some love please?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-06-10T08:02:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-awesome", + "author_rewards": 0, + "beneficiaries": [], + "body": "who can upvote me?", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-06-10T08:00:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 19951, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-06-10T08:00:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -75903272807, + "net_votes": 0, + "parent_author": "", + "parent_permlink": "steemit", + "percent_hbd": 10000, + "permlink": "what-is-steemit", + "reward_weight": 10000, + "root_author": "steemit-awesome", + "root_permlink": "what-is-steemit", + "title": "What is Steemit", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-01T20:01:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-com", + "author_rewards": 0, + "beneficiaries": [], + "body": "grat", + "cashout_time": "1969-12-31T23:59:59", + "category": "holiday", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-01T20:01:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 397905, + "json_metadata": "{\"tags\":[\"holiday\"]}", + "last_payout": "2016-08-31T15:38:18", + "last_update": "2016-08-01T20:01:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "grimjo33", + "parent_permlink": "tangkuban-perahu-another-beautiful-indonesia-tourism-destination", + "percent_hbd": 10000, + "permlink": "re-grimjo33-tangkuban-perahu-another-beautiful-indonesia-tourism-destination-20160801t200152355z", + "reward_weight": 10000, + "root_author": "grimjo33", + "root_permlink": "tangkuban-perahu-another-beautiful-indonesia-tourism-destination", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-01T20:06:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-com", + "author_rewards": 0, + "beneficiaries": [], + "body": "why so naiF", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-01T20:06:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 398017, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-09-01T23:15:57", + "last_update": "2016-08-01T20:06:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "riensen", + "parent_permlink": "steemit-etiquette-using-95-bot-accounts-to-upvote-your-own-content-fair-game-or-not-cool", + "percent_hbd": 10000, + "permlink": "re-riensen-steemit-etiquette-using-95-bot-accounts-to-upvote-your-own-content-fair-game-or-not-cool-20160801t200656898z", + "reward_weight": 10000, + "root_author": "riensen", + "root_permlink": "steemit-etiquette-using-95-bot-accounts-to-upvote-your-own-content-fair-game-or-not-cool", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T19:09:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-de", + "author_rewards": 22090, + "beneficiaries": [], + "body": "

\u00a0Original post by @dantheman\u00a0

\n

\n

Da Steem beliebige Daten welche an einem Account gekn\u00fcpft sind unterst\u00fctzt, liegt es nahe f\u00fcr Erfahrene Entwickler die von Namecoin und \u00e4hnlichen Projekten genutzt werden auf Steem zu portieren.

\n

Sind diese Tools erst vorhanden, kann der Steem-Account Name als Domain f\u00fcr die eigene Webseite genutzt werden.

\n

Ich bin mir sicher, dass derjenige, welcher zuerst benutzerfreundliche und qualitative Tools ver\u00f6ffentlicht um DNS-Abfragen mittels der Metadaten des Steem-Accounts zu erm\u00f6glichen, eine Flut von Upvotes erh\u00e4lt.

\n

Nur eine Idee am Rande f\u00fcr jene die gewinnbringende Post wollen.

\n

Vorteile

\n
    \n
  • Dezentralisierte TLS (HTTPS) zertifizierte Validierung, gest\u00fctzt vom Blockchain Konsens
  • \n
  • Sicherung der Meinungsfreiheit im Internet durch resistentmachung gegen Zensur
  • \n
  • Zugriff auf Webseiten durch .steem Top-Level Domains
  • \n
  • Verkn\u00fcpfte Identit\u00e4tsinformationen wie GPG oder OTR Schl\u00fcssel sowieso Emails, Bitcoins und Bitmessage-Adressen an eine Identit\u00e4t deiner Wahl
  • \n
\n

Steemit-de wird die wichtigsten Publikationen und popul\u00e4ren Post ins Deutsche \u00fcbersetzten, um das Wachstum von Steemit zu beschleunigen

", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-09T10:04:48", + "curator_payout_value": { + "amount": "9740", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 521662, + "json_metadata": "{\"tags\":[\"namecoin\",\"dns\",\"steem\",\"bounty\",\"deutsch\"],\"image\":[\"https://i.imgsafe.org/9aa30b795c.png\"],\"links\":[\"https://steemit.com/namecoin/@dantheman/dns-via-steem\",\"https://steemit.com/@dantheman\"]}", + "last_payout": "2016-09-08T23:23:39", + "last_update": "2016-08-09T10:04:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 50, + "parent_author": "", + "parent_permlink": "namecoin", + "percent_hbd": 10000, + "permlink": "dns-via-steem-deutsche-version-deutsch", + "reward_weight": 10000, + "root_author": "steemit-de", + "root_permlink": "dns-via-steem-deutsche-version-deutsch", + "title": "DNS via STEEM [Deutsche Version] #deutsch", + "total_payout_value": { + "amount": "45460", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T10:05:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-de", + "author_rewards": 0, + "beneficiaries": [], + "body": "Der Account hier wurde leider geschlossen. Der Key ging verloren. Machen hier weiter und haben jetzt Backups", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-09T10:05:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 521670, + "json_metadata": "{\"tags\":[\"namecoin\"]}", + "last_payout": "2016-09-08T21:40:24", + "last_update": "2016-08-09T10:05:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "rittr", + "parent_permlink": "re-steemit-germany-dns-via-steem-deutsche-version-20160809t093544531z", + "percent_hbd": 10000, + "permlink": "re-rittr-re-steemit-germany-dns-via-steem-deutsche-version-20160809t100526949z", + "reward_weight": 10000, + "root_author": "steemit-germany", + "root_permlink": "dns-via-steem-deutsche-version", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T10:17:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-germany", + "author_rewards": 16, + "beneficiaries": [], + "body": "

Original post by @dantheman

\n

\n

Da Steem beliebige Daten welche an einem Account gekn\u00fcpft sind unterst\u00fctzt, liegt es nahe f\u00fcr Erfahrene Entwickler die von Namecoin und \u00e4hnlichen Projekten genutzt werden auf Steem zu portieren.

\n

Sind diese Tools erst vorhanden, kann der Steem-Account Name als Domain f\u00fcr die eigene Webseite genutzt werden.

\n

Ich bin mir sicher, dass derjenige, welcher zuerst benutzerfreundliche und qualitative Tools ver\u00f6ffentlicht um DNS-Abfragen mittels der Metadaten des Steem-Accounts zu erm\u00f6glichen, eine Flut von Upvotes erh\u00e4lt.

\n

Nur eine Idee am Rande f\u00fcr jene die gewinnbringende Post wollen.

\n

Vorteile

\n
    \n
  • Dezentralisierte TLS (HTTPS) zertifizierte Validierung, gest\u00fctzt vom Blockchain Konsens\u00a0
  • \n
  • Sicherung der Meinungsfreiheit im Internet durch resistentmachung gegen Zensur
  • \n
  • Zugriff auf Webseiten durch .steem Top-Level Domains
  • \n
  • Verkn\u00fcpfte Identit\u00e4tsinformationen wie GPG oder OTR Schl\u00fcssel sowieso Emails, Bitcoins und Bitmessage-Adressen an eine Identit\u00e4t deiner Wahl
  • \n
", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 6, + "children_abs_rshares": 0, + "created": "2016-08-09T07:44:57", + "curator_payout_value": { + "amount": "6", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 520707, + "json_metadata": "{\"tags\":[\"namecoin\",\"dns\",\"steem\",\"bounty\",\"deutsch\"],\"users\":[\"dantheman\"],\"image\":[\"https://i.imgsafe.org/9842418ea3.png\"],\"links\":[\"https://steemit.com/namecoin/@dantheman/dns-via-steem\"]}", + "last_payout": "2016-09-08T21:40:24", + "last_update": "2016-08-09T09:37:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "namecoin", + "percent_hbd": 10000, + "permlink": "dns-via-steem-deutsche-version", + "reward_weight": 10000, + "root_author": "steemit-germany", + "root_permlink": "dns-via-steem-deutsche-version", + "title": "DNS via STEEM [Deutsche Version]", + "total_payout_value": { + "amount": "32", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T10:17:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-germany", + "author_rewards": 0, + "beneficiaries": [], + "body": "Ist in Arbeit :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-09T09:38:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 521490, + "json_metadata": "{\"tags\":[\"namecoin\"]}", + "last_payout": "2016-09-08T21:40:24", + "last_update": "2016-08-09T09:38:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "rittr", + "parent_permlink": "re-steemit-germany-dns-via-steem-deutsche-version-20160809t093544531z", + "percent_hbd": 10000, + "permlink": "re-rittr-re-steemit-germany-dns-via-steem-deutsche-version-20160809t093806686z", + "reward_weight": 10000, + "root_author": "steemit-germany", + "root_permlink": "dns-via-steem-deutsche-version", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T17:55:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-inga", + "author_rewards": 2020, + "beneficiaries": [], + "body": "\"IMG_9517edc90.jpg\"\n\nMy name is Inga. I am a Latvian at heart, adventure lover, 10+years yogi, licensed stock broker, photographer, traveler, pescaterian, chess playing sapiosexual, great friend and true believer in doing good for others. My glass is always half full, sometimes it has kambucha sometimes tequila. \n\nI was born in LATVIA, Small country by the Baltic sea. Came to America 14 years and since then I have lived in California, Colorado, Virginia and now call beautiful Salt Lake City Utah my home.\n\n@mranderson introduced me to Steemit, my first gig was the translation for the app in Latvian. https://steemit.com/writing/@kencode/do-you-know-a-foreign-language-crowdvoting\n\nMy first post is introduction to baby girl Zariah and her family, I have been brewing it for few weeks since I took portraits of the little girl who is on life support and shows well what a \"Fighter\" means since her birth. I believe Steemit community is ready to combine its steampower and help her! Please UPVOTE, SHARE and Help me to Help Zariah!\n\nhttps://steemit.com/votefunding/@steemit-inga/my-name-is-inga-and-steemers-please-multiply-community-healing-power-and-help-this-amazing-little-fighter", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 9, + "children_abs_rshares": 0, + "created": "2016-08-02T14:23:09", + "curator_payout_value": { + "amount": "1575", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 411238, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"votefunding\",\"yoga\",\"photography\",\"finance\"],\"users\":[\"mranderson\"],\"image\":[\"https://www.steemimg.com/images/2016/08/02/IMG_9517edc90.jpg\"],\"links\":[\"https://steemit.com/writing/@kencode/do-you-know-a-foreign-language-crowdvoting\"]}", + "last_payout": "2016-09-02T04:02:27", + "last_update": "2016-08-02T14:23:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 48, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "i-was-born-in-latvia-small-country-by-the-baltic-sea-my-glass-is-always-half-full-sometimes-it-has-kambucha-sometimes-tequila", + "reward_weight": 10000, + "root_author": "steemit-inga", + "root_permlink": "i-was-born-in-latvia-small-country-by-the-baltic-sea-my-glass-is-always-half-full-sometimes-it-has-kambucha-sometimes-tequila", + "title": "I was born in LATVIA, Small country by the Baltic sea. My glass is always half full, sometimes it has kambucha sometimes tequila.", + "total_payout_value": { + "amount": "4828", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.pat.json b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.pat.json index cc8ba597..15ef8fb0 100644 --- a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.pat.json @@ -6,7 +6,7 @@ "beneficiaries": [], "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", "body_length": 122, - "cashout_time": "1970-01-01T00:00:00", + "cashout_time": "2016-08-29T07:44:48", "category": "polska", "children": 0, "created": "2016-08-22T07:44:48", diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json index a722e221..391bf27f 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json @@ -13,7 +13,7 @@ "beneficiaries": [], "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", "body_length": 1273, - "cashout_time": "1970-01-01T00:00:00", + "cashout_time": "2016-08-25T21:19:45", "category": "polska", "children": 1, "created": "2016-08-18T21:19:45", diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json index a230ccc4..27f6c640 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json @@ -2563,7 +2563,7 @@ "beneficiaries": [], "body": "https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\n\n# Over the last few weeks I've been thinking about ways we could increase the demand for Steem Power, the quality of curated content and the incentives to participate as a Steem curator.\n\nHere are a couple ideas I have been kicking around. They're not fully mature and could use a good rinsing by the community.\n\n## Allow Steem holders to delegate their Steem Power voting rights to a **voting pool**\n\nA delegated voting pool could socialize voting power and individualize rewards. One prime use for this could be the @steemit account. @steemit could create a voting pool and invite anyone with a verified identity and good reputation to join the pool as a curator. This could increase the number of unique curators, help bootstrap Steem as an identity database and give people even more incentives to sign up.\n\nTo show the numbers, an example would be Alice Bob and Charley each delegate their SP of 2, 3, and 7 to one voting pool. Now they each have 4, 4, and 4 SP to be used to curate. Better curation would earn them more curation rewards. \n\nA side effect of delegated voting pools could be voting markets. Any user would have the power to create a voting pool and these users could charge curators for participation. Some of the platform's whales could be interested in offering subscription models to minnows as a way to get more voting influence.\n\n## If powering down stake loses voting influence\n\nImagine that any stake being powered down would lose its rights to use voting influence. This could make the system very clear in the regard that stake is either in or it is out. Users could be able to choose any % of their stake to power down regardless of how many accounts they have and only the % stake that is powering down would lose voting influence. Stopping a power down could return all voting rights.\n\nPerhaps the effect of this could be 1/ more interest to stay in the platform and 2/ more fluidity in the witness queue 3/ more fairness regarding the PoS nature of Steem 4/ more clarity from participants looking to exit the system\n\n## Combined effect?\nPerhaps these proposals could have a combined effect that increases the demand and fluidity of Steem Power while improving the curated experience for people visiting Steem based websites.\n\n#### What are your thoughts and questions?", "body_length": 2399, - "cashout_time": "2016-09-09T02:14:24", + "cashout_time": "2016-09-14T15:44:51", "category": "steem", "children": 315, "created": "2016-09-07T15:44:51", diff --git a/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json b/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json index a722e221..391bf27f 100644 --- a/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json @@ -13,7 +13,7 @@ "beneficiaries": [], "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", "body_length": 1273, - "cashout_time": "1970-01-01T00:00:00", + "cashout_time": "2016-08-25T21:19:45", "category": "polska", "children": 1, "created": "2016-08-18T21:19:45", diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index 7a49fbe1..88de79a3 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -33,7 +33,7 @@ marks: - patterntest - failing - - xfail # plenty of differences, most are formatting problems (some extra elements, some missing, some different type) + - xfail # missing replies, payout is always zero except root post, grey, flag_weight, total_votes counts all without filtering includes: - !include common.yaml @@ -64,7 +64,7 @@ marks: - patterntest - failing - - xfail # plenty of differences, most are formatting problems (some extra elements, some missing, some different type) + - xfail # total_votes (new version counts all the listed votes, old does not count some) includes: - !include common.yaml @@ -95,7 +95,7 @@ marks: - patterntest - failing - - xfail # plenty of differences, most are formatting problems (some extra elements, some missing, some different type) + - xfail # total_votes counts all without filtering includes: - !include common.yaml @@ -126,7 +126,7 @@ marks: - patterntest - failing - - xfail # hard to say - too many differences (fix those in get_post first, might help here) + - xfail # completely different list of posts due to sc_trend not working, plus see get_post includes: - !include common.yaml @@ -274,7 +274,7 @@ marks: - patterntest - failing - - xfail # the underlying mechanism seems to be nonfunctional + - xfail # underlying mechanism seems to be nonfunctional (related hive_notifs table is empty but it shouldn't) includes: - !include common.yaml diff --git a/hivemind/tavern/test_database_api_patterns.tavern.yaml b/hivemind/tavern/test_database_api_patterns.tavern.yaml index 9b2fae0b..64be6f73 100644 --- a/hivemind/tavern/test_database_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_database_api_patterns.tavern.yaml @@ -51,7 +51,7 @@ jsonrpc: "2.0" id: 1 method: "database_api.find_comments" - params: {"start":[["steemit","firstpost"]], "limit":10, "order":"by_author"} + params: {"comments":[["steemit","firstpost"]]} response: status_code: 200 verify_response_with: -- GitLab From 923e6ef9406ce1b2c63e240611e866e51ad8865d Mon Sep 17 00:00:00 2001 From: ABW Date: Wed, 12 Aug 2020 14:51:24 +0200 Subject: [PATCH 12/49] [ABW]: various tests marked as passing, one wrong pattern fixed --- .../list_communities.pat.json | 23 +--------------- .../test_bridge_api_patterns.tavern.yaml | 8 +++--- .../test_condenser_api_patterns.tavern.yaml | 26 +------------------ .../test_follow_api_patterns.tavern.yaml | 2 -- .../tavern/test_tags_api_patterns.tavern.yaml | 18 ------------- 5 files changed, 7 insertions(+), 70 deletions(-) diff --git a/hivemind/tavern/bridge_api_patterns/list_communities.pat.json b/hivemind/tavern/bridge_api_patterns/list_communities.pat.json index f19abffc..0637a088 100644 --- a/hivemind/tavern/bridge_api_patterns/list_communities.pat.json +++ b/hivemind/tavern/bridge_api_patterns/list_communities.pat.json @@ -1,22 +1 @@ -[ - { - "about": "To highlight true Gems of Hive community with User Retention as primary objective.", - "admins": [ - "bluemist" - ], - "avatar_url": "", - "context": {}, - "created_at": "2020-02-26 11:33:33", - "id": 1369030, - "is_nsfw": false, - "lang": "en", - "name": "hive-148441", - "num_authors": 1706, - "num_pending": 11787, - "subskrajbers": 5513, - "sum_pending": 13549, - "title": "GEMS", - "type_id": 1, - "seriously": "it does not detect differences" - } -] \ No newline at end of file +[] \ No newline at end of file diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index a041ffff..b6fae715 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -215,6 +215,8 @@ marks: - patterntest + - failing + - xfail # no results (underlying functionality is not working) includes: - !include common.yaml @@ -244,6 +246,8 @@ marks: - patterntest + - failing + - xfail # no results (underlying functionality is not working) includes: - !include common.yaml @@ -363,9 +367,7 @@ test_name: Hivemind bridge_api.list_communities patterns test marks: - - patterntest - - failing - - xfail + - patterntest # no nonempty result possible for 5mln set includes: - !include common.yaml diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index 3d9d14bb..41d5184a 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -90,8 +90,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -121,8 +119,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -152,8 +148,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -276,8 +270,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -307,8 +299,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -338,8 +328,6 @@ marks: - patterntest - - failing - - xfail # null result (super slow query response) includes: - !include common.yaml @@ -398,8 +386,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -429,8 +415,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -460,8 +444,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -491,8 +473,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -522,8 +502,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -553,8 +531,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -672,7 +648,7 @@ marks: - patterntest - failing - - xfail + - xfail # wrong pattern, wrong test params (empty result) includes: - !include common.yaml diff --git a/hivemind/tavern/test_follow_api_patterns.tavern.yaml b/hivemind/tavern/test_follow_api_patterns.tavern.yaml index fc42a27f..82eb2095 100644 --- a/hivemind/tavern/test_follow_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_follow_api_patterns.tavern.yaml @@ -119,8 +119,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml diff --git a/hivemind/tavern/test_tags_api_patterns.tavern.yaml b/hivemind/tavern/test_tags_api_patterns.tavern.yaml index 3c025a7c..2f3b73a0 100644 --- a/hivemind/tavern/test_tags_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_tags_api_patterns.tavern.yaml @@ -3,8 +3,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -34,8 +32,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -127,8 +123,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -158,8 +152,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -189,8 +181,6 @@ marks: - patterntest - - failing - - xfail # null result (super long query response) includes: - !include common.yaml @@ -220,8 +210,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -251,8 +239,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -282,8 +268,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -313,8 +297,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml -- GitLab From 0db526abd0615a32b5c3a6f9e4c7ec670eabef0e Mon Sep 17 00:00:00 2001 From: Pawel Maniora Date: Wed, 12 Aug 2020 14:58:51 +0200 Subject: [PATCH 13/49] more condenser tests --- .../get_content_gtg.pat.json | 554 ++++++++++++++++++ ...low_count_following_and_followers.pat.json | 5 + .../get_follow_count_no_followers.pat.json | 5 + .../get_followers_last.pat.json | 9 + .../get_followers_no_followers.pat.json | 1 + .../get_following_no_following.pat.json | 1 + .../test_condenser_api_patterns.tavern.yaml | 225 +++++++ 7 files changed, 800 insertions(+) create mode 100644 hivemind/tavern/condenser_api_patterns/get_content_gtg.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_follow_count_following_and_followers.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_follow_count_no_followers.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_followers_last.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_followers_no_followers.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_following_no_following.pat.json diff --git a/hivemind/tavern/condenser_api_patterns/get_content_gtg.pat.json b/hivemind/tavern/condenser_api_patterns/get_content_gtg.pat.json new file mode 100644 index 00000000..84921da7 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_content_gtg.pat.json @@ -0,0 +1,554 @@ +{ + "post_id": 463046, + "author": "gtg", + "permlink": "witness-gtg", + "category": "witness-category", + "title": "Witness \"gtg\"", + "body": "Hello, World!\n\nMy intention is not to make it into top 19. I could name many other candidates (clearly more than 19) with greater commitment to steem(it) who are a lot more appropriate as witnesses, but I'm sure I can be useful as a backup witness.\n\nI introduced myself here:\nhttps://steemit.com/introduceyourself/@gtg/hello-world\nThose of you who use https://steemit.chat know me as **Gandalf**.\nFor some time, I’ve been using my magic powers (mostly those related to security and infrastructure) to improve steemit. For example, I’ve improved our \"Perfect\" Forward Secrecy and made our communication with site more secure.\n\nMy **seed node** (EU based):\n`seed-node = gtg.steem.house:2001`\nYou can also use it to rsync data dir\n`rsync -Pa rsync://gtg.steem.house/witness_node_data_dir .`\n\nMy **witness node** is on a separate data center (an EU-based one as well).\nIf you believe I can be of value to steemit, please vote for me:\n`vote_for_witness YOURACCOUNT gtg true true`\n\n![witness](https://grey.house/img/witness.jpg)", + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https:\\/\\/steemit.com\\/introduceyourself\\/@gtg\\/hello-world\"]}", + "created": "2016-08-05T14:02:24", + "last_update": "2016-08-05T14:02:24", + "depth": 0, + "children": 7, + "net_rshares": 61504610477823, + "last_payout": "2016-09-05T05:17:57", + "cashout_time": "1969-12-31T23:59:59", + "total_payout_value": "703.088 HBD", + "curator_payout_value": "231.879 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 1023, + "active_votes": [ + { + "voter": "steempty", + "rshares": "7498426175709", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "blocktrades", + "rshares": "42312727614219", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "justin", + "rshares": "305178325808", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "silver", + "rshares": "869557685770", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "roadscape", + "rshares": "5114872713665", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "complexring", + "rshares": "2289539684123", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "chloe", + "rshares": "2180802207", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jen", + "rshares": "2185117237", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "danknugs", + "rshares": "14176153154", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemservices", + "rshares": "198373663832", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "aizensou", + "rshares": "30116948361", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kelly", + "rshares": "46091054", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bentley", + "rshares": "6428425796", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gandalf", + "rshares": "91926650", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boatymcboatface", + "rshares": "345893040115", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "proctologic", + "rshares": "27177508174", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sophia", + "rshares": "316897956", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "hcf27", + "rshares": "21914098976", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "modeprator", + "rshares": "7368210672", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "edgeland", + "rshares": "103782757471", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemship", + "rshares": "785540122070", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "spaninv", + "rshares": "5786912627", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "pal", + "rshares": "196850398821", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "murh", + "rshares": "2792608078", + "percent": "3301", + "reputation": 0 + }, + { + "voter": "itay", + "rshares": "98699236", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "johnerfx", + "rshares": "9975325205", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "taoteh1221", + "rshares": "206512826638", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "juanmiguelsalas", + "rshares": "57136530202", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "somedude", + "rshares": "9128119179", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kaylinart", + "rshares": "203906072916", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "johnerminer", + "rshares": "867610016", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "geoffrey", + "rshares": "32485842972", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gary-smith", + "rshares": "2480411371", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jparty", + "rshares": "23267718250", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mammasitta", + "rshares": "1953019618", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gtg", + "rshares": "25911121779", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "madwallace", + "rshares": "4679981480", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lauralemons", + "rshares": "39716978937", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "chamviet", + "rshares": "461256359", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "r4fken", + "rshares": "15413814887", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "endaksi1", + "rshares": "6283643209", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "picokernel", + "rshares": "16250564070", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "furion", + "rshares": "702264837", + "percent": "100", + "reputation": 0 + }, + { + "voter": "anyx", + "rshares": "80421874395", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "egjoshslim", + "rshares": "2241994263", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "paco", + "rshares": "120632910259", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "senseiteekay", + "rshares": "6621475753", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jesse5th", + "rshares": "226092177", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "inertia", + "rshares": "23810445079", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "glassice", + "rshares": "210829632", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lenar79", + "rshares": "203070157", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "arcurus", + "rshares": "15277675835", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "johnsmith", + "rshares": "101769596658", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steeminer", + "rshares": "330264489", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cire81", + "rshares": "55123516", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "celebr1ty", + "rshares": "20346345482", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kibela", + "rshares": "116522786", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sulev", + "rshares": "4195953733", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "glitterpig", + "rshares": "1863529002", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "alrx6918", + "rshares": "88147854", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "vitz81", + "rshares": "156246825", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rawnetics", + "rshares": "7842906910", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "naturalista", + "rshares": "2110595726", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "persianqueen", + "rshares": "47302483", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "glitterfart", + "rshares": "309993436467", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "caitlinm", + "rshares": "102759457", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jellenmark", + "rshares": "71928410", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "agussudaryanto", + "rshares": "151302584", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ciao", + "rshares": "12663424", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "iaco", + "rshares": "519527818", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemo", + "rshares": "14786662", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nixonnox", + "rshares": "1568749518", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "hanshotfirst", + "rshares": "3195610059", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steema", + "rshares": "2458086", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "confucius", + "rshares": "12950553", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bledarus", + "rshares": "911816960", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "softpunk", + "rshares": "1251336", + "percent": "10", + "reputation": 0 + }, + { + "voter": "jarvis", + "rshares": "3742919", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thecurator", + "rshares": "37069491", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mefisto", + "rshares": "229846452", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cinderphoenix", + "rshares": "104558988", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steeminion", + "rshares": "98540677", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "piezolit", + "rshares": "57959648", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "brucy", + "rshares": "8108416", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "shukerona", + "rshares": "35603456", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "leticiapink", + "rshares": "56023735", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steeminnow", + "rshares": "295195987", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 3920426655270, + "parent_author": "", + "parent_permlink": "witness-category", + "url": "/witness-category/@gtg/witness-gtg", + "root_title": "Witness \"gtg\"", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_hbd": 10000 +} \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_follow_count_following_and_followers.pat.json b/hivemind/tavern/condenser_api_patterns/get_follow_count_following_and_followers.pat.json new file mode 100644 index 00000000..8c0f1f5e --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_follow_count_following_and_followers.pat.json @@ -0,0 +1,5 @@ +{ + "account": "gtg", + "following_count": 31, + "follower_count": 80 +} \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_follow_count_no_followers.pat.json b/hivemind/tavern/condenser_api_patterns/get_follow_count_no_followers.pat.json new file mode 100644 index 00000000..3d80965b --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_follow_count_no_followers.pat.json @@ -0,0 +1,5 @@ +{ + "account": "test2", + "follower_count": 0, + "following_count": 0 +} \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_followers_last.pat.json b/hivemind/tavern/condenser_api_patterns/get_followers_last.pat.json new file mode 100644 index 00000000..c45ded41 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_followers_last.pat.json @@ -0,0 +1,9 @@ +[ + { + "follower": "fjccoin", + "following": "steemit", + "what": [ + "blog" + ] + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_followers_no_followers.pat.json b/hivemind/tavern/condenser_api_patterns/get_followers_no_followers.pat.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_followers_no_followers.pat.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_following_no_following.pat.json b/hivemind/tavern/condenser_api_patterns/get_following_no_following.pat.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_following_no_following.pat.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index d19ea09c..17404819 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -27,6 +27,91 @@ method: "get_followers" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_followers last patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_followers last + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_followers" + params: ["steemit","fjccoin","blog",1000] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_followers_last" + directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_followers no followers patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_followers no followers + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_followers" + params: ["test2",null,"blog",1000] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_followers_no_followers" + directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_followers over limit test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_followers over limit + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_followers" + params: ["steemit",null,"blog",1001] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "limit exceeds max (1001 > 1000)" --- test_name: Hivemind condenser_api.get_following patterns test @@ -83,6 +168,64 @@ extra_kwargs: method: "get_following_last" directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_following no following patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_following last + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_following" + params: ["test2",null,"blog",1000] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_following_no_following" + directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_following over limit test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_following last + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_following" + params: ["gtg","blocktrades","blog",1001] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "limit exceeds max (1001 > 1000)" + --- test_name: Hivemind condenser_api.get_follow_count patterns test @@ -111,7 +254,62 @@ extra_kwargs: method: "get_follow_count" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_follow_count following and followers patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + stages: + - name: get_follow_count following and followers + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_follow_count" + params: ["gtg"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_follow_count_following_and_followers" + directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_follow_count_no_followers patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_follow_count + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_follow_count" + params: ["test2"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_follow_count_no_followers" + directory: "condenser_api_patterns" --- test_name: Hivemind condenser_api.get_content patterns test @@ -140,7 +338,34 @@ extra_kwargs: method: "get_content" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_content gtg patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + stages: + - name: get_content gtg + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_content" + params: ["gtg", "witness-gtg"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_content_gtg" + directory: "condenser_api_patterns" --- test_name: Hivemind condenser_api.get_content_replies patterns test -- GitLab From b6a1b1062db42ca2e89734d4b958fbe8171158b1 Mon Sep 17 00:00:00 2001 From: Marcin Ickiewicz Date: Thu, 13 Aug 2020 14:07:41 +0200 Subject: [PATCH 14/49] enable get_discussions_by_hot/trending tests --- .../get_discussions_by_hot.pat.json | 8 ++++---- .../get_discussions_by_promoted.pat.json | 4 ++-- .../get_discussions_by_trending.pat.json | 8 ++++---- .../get_discussions_by_promoted.pat.json | 4 ++-- hivemind/tavern/test_condenser_api_patterns.tavern.yaml | 6 +----- 5 files changed, 13 insertions(+), 17 deletions(-) diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json index 34b166dd..5978cd12 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json @@ -1063,7 +1063,7 @@ "beneficiaries": [], "body": "Hello Steemers!\n\nhttps://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png\n\n*POLONIEX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png\n*4 hour Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciwF/1b96b56dcc.png\n*4 hour Poloniex chart - Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png\n*1 day Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciC9/edf3dcb758.png\n*1 day Poloniex chart - Sept 15, 2016*\nThe Poloniex price went down to the all time low, breaking it and making a slightly lower all time low, but still not giving any confirm of a bottom or bounce.\nVolume about 20% higher then yesterday.\n\n*BITTREX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png\n*4 hour Bittrex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciod/ce32f1a029.png\n*4 hour Bittrex chart - Sept 15, 2016*\nThe Bittrex price broke the local low made just a slightly lower one, same as Poloniex with he all time low, looking like its heading towards the next support level (~0.0007, blue dashed).\nVolume on Bittrex was about 25% lower then yesterday (~5BTC's).\n\n\n*VOLUME COMPARISON*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png\n*STEEM/BTC volume Bittrex Sept 14, 2016*\n\nhttp://puu.sh/rcifG/0c61511ea3.png\n*STEEM/BTC volume Bittrex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png\n*STEEM/BTC volume Poloniex Sept 14, 2016*\n\nhttp://puu.sh/rcicN/b2384086a4.png\n*STEEM/BTC volume Poloniex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png\n*STEEM indexed global volume Sept 14, 2016*\n\nhttp://puu.sh/rcibB/7b2700dd82.png\n*STEEM indexed global volume Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmof/8ca7889618.png\n*Coinmarketcap top volume cryptos Sept 14, 2016*\n\nhttp://puu.sh/rci8K/d68b7eb122.png\n*Coinmarketcap top volume cryptos Sept 15, 2016*\nOverall volume about 12% higher then yesterday, with Bittrex volume taking a dive and Poloniex gaining some.\n$STEEM again under top 30 in volume rankings.\n\n*COMMENT*\nOnce again, I will post the comment by commenting as it involves my personal opinion!\nThank you for understanding!\n\nIf anyone has any questions or need's help fell free to ask, I will try to explain as fast and as best as I can.\nCritics, comments, reply's, counters, advice's, etc. are always welcome!\nHave my charts helped you in any way?Let me know with a comment below :)\nAre there more people who are doing TA?\nPlease post the links to your TA's posts into the comments as well!\n\n*DISCLAIMER*\nI am showing multiple scenarios on the price movement, in the post itself I do not take any stance, either bullish or bearish. I am not responsible for neither you\u2019re winning nor you're losses upon trading! the \"comment\" section is my personal opinion and does not mean I have to or do hold any positions in the given market.\nEveryone who uses TA develops his own unique charting style, please keep that in mind.\n\nhttps://www.youtube.com/watch?v=i3bS5nRZOvU\n\nKind regards, OZ :)", "body_length": 3079, - "cashout_time": "2016-09-16T18:35:24", + "cashout_time": "2016-09-22T18:18:00", "category": "steem", "children": 5, "created": "2016-09-15T18:18:00", @@ -1076,10 +1076,10 @@ "net_rshares": 30268799563538, "parent_author": "", "parent_permlink": "steem", - "pending_payout_value": "57.124 HBD", + "pending_payout_value": "57.040 HBD", "percent_hbd": 10000, "permlink": "usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", - "post_id": 960238, + "post_id": 1256962, "promoted": "0.000 HBD", "replies": [], "root_title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle\u2019s left empty\" Sept 15, 2016", @@ -1087,4 +1087,4 @@ "total_payout_value": "0.000 HBD", "url": "/steem/@ozchartart/usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json index 27f6c640..5329df03 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json @@ -2576,7 +2576,7 @@ "net_rshares": 21098346399884, "parent_author": "", "parent_permlink": "steem", - "pending_payout_value": "47.404 HBD", + "pending_payout_value": "47.466 HBD", "percent_hbd": 10000, "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", "post_id": 1160043, @@ -2587,4 +2587,4 @@ "total_payout_value": "0.000 HBD", "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json index e5928396..034c11ef 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json @@ -535,7 +535,7 @@ "beneficiaries": [], "body": "So far, a great number of applications, or tools that can considerably improve our user experience whether we are old users or new, has been created. The application directory created by @roelandp is accepted as an official directory that currently contains more than 80 various tools, mainly created by the community members, with a few official ones. The number of applications is growing rapidly, thanks to talented developers and other users, whose ideas are being converted into functional programs.\n\nHere, I want to introduce you to an infographic that contains 17 very useful tools singled out and sorted into categories according to their use. The first category 'for new and old users' contains essential applications for most users, including applications such as the official chat server and block explorer, as well as a dedicated service for uninterrupted adding of photos, @jesta's tool for easier tracking of data related to your account, and a tool for real-time Steem Backed Dollar conversion, with a few extra applications included in the service.\n\nThe next group contains the applications essential for developers, led by @xeroc's piston which says for itself 'The Swiff Army Knife for the Steem network'. They facilitate the communication with the steem blockchain and there is also an application that facilitates the integration of Steem payments to your service. \n\nThe Miscellaneous group contains a variety of useful applications such as tools for curators, a precise browser of user reputation, a dedicated tool for creating shortened links with statistics, a Steem Stream display of all activity in real time with an option of adjusting your settings, as well as speech community and radio.\n\nLast group are applications in the category of data and analytics that contain most of data about the network, the network activity and the users. \n\nI apologize in advance if some of your favorite applications have been left out; if that is the case, you can always visit http://SteemTools.com which contains all the applications.\n\n*For a clearer view, it is recommended that you open the image in full resolution.* *[Infographic Hotlink!](http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png)*\nhttps://s11.postimg.io/8uxamnavn/revision_02.png\n---\n ![http://steemit.com/@powerup](https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png)", "body_length": 2450, - "cashout_time": "2016-09-16T17:20:12", + "cashout_time": "2016-09-22T16:45:09", "category": "infographic", "children": 6, "created": "2016-09-15T16:45:09", @@ -548,10 +548,10 @@ "net_rshares": 53802622776333, "parent_author": "", "parent_permlink": "infographic", - "pending_payout_value": "171.268 HBD", + "pending_payout_value": "170.170 HBD", "percent_hbd": 10000, "permlink": "17-steem-tools-every-steemian-needs-to-know", - "post_id": 959438, + "post_id": 1256009, "promoted": "0.000 HBD", "replies": [], "root_title": "Steem Tools Every Steemian Needs To Know (Infographic)", @@ -559,4 +559,4 @@ "total_payout_value": "0.000 HBD", "url": "/infographic/@powerup/17-steem-tools-every-steemian-needs-to-know" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json index 27f6c640..5329df03 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json @@ -2576,7 +2576,7 @@ "net_rshares": 21098346399884, "parent_author": "", "parent_permlink": "steem", - "pending_payout_value": "47.404 HBD", + "pending_payout_value": "47.466 HBD", "percent_hbd": 10000, "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", "post_id": 1160043, @@ -2587,4 +2587,4 @@ "total_payout_value": "0.000 HBD", "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index 41d5184a..ecf901b8 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -208,8 +208,6 @@ marks: - patterntest - - failing - - xfail # totally different post includes: - !include common.yaml @@ -239,8 +237,6 @@ marks: - patterntest - - failing - - xfail # totally different post includes: - !include common.yaml @@ -700,4 +696,4 @@ function: validate_response:compare_response_with_pattern extra_kwargs: method: "get_active_votes" - directory: "condenser_api_patterns" \ No newline at end of file + directory: "condenser_api_patterns" -- GitLab From e9454c755b14f2c96fb08227e69beea32b1f02b8 Mon Sep 17 00:00:00 2001 From: Dariusz Kedzierski Date: Fri, 14 Aug 2020 11:05:27 +0200 Subject: [PATCH 15/49] Fix in save_response --- hivemind/tavern/validate_response.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hivemind/tavern/validate_response.py b/hivemind/tavern/validate_response.py index b31000fe..c78479c9 100644 --- a/hivemind/tavern/validate_response.py +++ b/hivemind/tavern/validate_response.py @@ -14,7 +14,8 @@ def save_diff(name, diff): def save_response(file_name, response_json): """ Save response to file """ with open(file_name, 'w') as f: - f.writelines(json_pretty_string(response_json)) + f.write(json_pretty_string(response_json)) + f.write("\n") def save_no_response(file_name, msg): """ Save lack of response to file """ -- GitLab From 9a75ab657ca96ed6836bbe5c60f288d821b8febc Mon Sep 17 00:00:00 2001 From: Marcin Ickiewicz Date: Fri, 14 Aug 2020 11:24:22 +0200 Subject: [PATCH 16/49] enable tests for tags_api get_discussions_by_(hot/trending) --- .../tags_api_patterns/get_discussions_by_hot.pat.json | 6 +++--- .../tags_api_patterns/get_discussions_by_trending.pat.json | 6 +++--- hivemind/tavern/test_tags_api_patterns.tavern.yaml | 4 ---- hivemind/tavern/validate_response.py | 2 +- 4 files changed, 7 insertions(+), 11 deletions(-) diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_hot.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_hot.pat.json index c145ec28..c5e65738 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_hot.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_hot.pat.json @@ -13,7 +13,7 @@ "beneficiaries": [], "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", "body_length": 1273, - "cashout_time": "2016-09-18T21:19:45", + "cashout_time": "2016-08-25T21:19:45", "category": "polska", "children": 1, "created": "2016-08-18T21:19:45", @@ -29,7 +29,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "nasienie-wolnosci", - "post_id": 661285, + "post_id": 877987, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", @@ -37,4 +37,4 @@ "total_payout_value": "0.000 HBD", "url": "/polska/@simgregg/nasienie-wolnosci" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_trending.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_trending.pat.json index c145ec28..c5e65738 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_trending.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_trending.pat.json @@ -13,7 +13,7 @@ "beneficiaries": [], "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", "body_length": 1273, - "cashout_time": "2016-09-18T21:19:45", + "cashout_time": "2016-08-25T21:19:45", "category": "polska", "children": 1, "created": "2016-08-18T21:19:45", @@ -29,7 +29,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "nasienie-wolnosci", - "post_id": 661285, + "post_id": 877987, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", @@ -37,4 +37,4 @@ "total_payout_value": "0.000 HBD", "url": "/polska/@simgregg/nasienie-wolnosci" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/test_tags_api_patterns.tavern.yaml b/hivemind/tavern/test_tags_api_patterns.tavern.yaml index 2f3b73a0..2fe8d365 100644 --- a/hivemind/tavern/test_tags_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_tags_api_patterns.tavern.yaml @@ -61,8 +61,6 @@ marks: - patterntest - - failing - - xfail # totally different post includes: - !include common.yaml @@ -92,8 +90,6 @@ marks: - patterntest - - failing - - xfail # totally different post includes: - !include common.yaml diff --git a/hivemind/tavern/validate_response.py b/hivemind/tavern/validate_response.py index b31000fe..b759f5ba 100644 --- a/hivemind/tavern/validate_response.py +++ b/hivemind/tavern/validate_response.py @@ -70,7 +70,7 @@ def compare_response_with_pattern(response, method=None, directory=None, ignore_ pattern = remove_tag(pattern, ignore_tags) pattern_resp_diff = deepdiff.DeepDiff(pattern, result) if pattern_resp_diff: - pattern_resp_diff_json = pattern_resp_diff.to_json() + pattern_resp_diff_json = pattern_resp_diff save_diff(fname, pattern_resp_diff_json) save_response(response_fname, result) msg = "Differences detected between response and pattern. Diff saved to {}\n\nDiff:\n{}".format(fname, pattern_resp_diff_json) -- GitLab From 90e17fd48f97476ad49447b1b886458864d1cb82 Mon Sep 17 00:00:00 2001 From: ABW Date: Fri, 14 Aug 2020 16:28:07 +0200 Subject: [PATCH 17/49] [ABW]: [Fix] problem with formatting of .diff caused silent crash(?) preventing creation of .out small corrections in some patterns (including removal of dangling spaces of unknown origin) all new tests in database_api marked as failing - patterns need to be corrected first --- .../get_ranked_posts.pat.json | 156 +++++++++--------- .../get_discussions_by_hot.pat.json | 6 +- .../get_discussions_by_promoted.pat.json | 2 +- .../get_discussions_by_trending.pat.json | 6 +- .../find_comments.pat.json | 4 +- .../list_comments.pat.json | 26 +-- .../get_discussions_by_hot.pat.json | 4 +- .../get_discussions_by_promoted.pat.json | 2 +- .../get_discussions_by_trending.pat.json | 4 +- .../test_bridge_api_patterns.tavern.yaml | 5 +- .../test_database_api_patterns.tavern.yaml | 85 ++++++++-- hivemind/tavern/validate_response.py | 9 +- 12 files changed, 180 insertions(+), 129 deletions(-) diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json index bf7f5601..9b2214d4 100644 --- a/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json @@ -1581,12 +1581,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 102136532384242, - "payout": 596.997, - "payout_at": "2016-09-16T18:47:28", - "pending_payout_value": "596.997 HBD", + "payout": 595.718, + "payout_at": "2016-09-22T18:23:15", + "pending_payout_value": "595.718 HBD", "percent_hbd": 10000, "permlink": "another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", - "post_id": 960290, + "post_id": 1257023, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -2949,12 +2949,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 203814685511375, - "payout": 2332.588, - "payout_at": "2016-09-15T22:00:19", - "pending_payout_value": "2332.588 HBD", + "payout": 2327.995, + "payout_at": "2016-09-21T14:11:30", + "pending_payout_value": "2327.995 HBD", "percent_hbd": 10000, "permlink": "special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", - "post_id": 949447, + "post_id": 1243454, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -4012,12 +4012,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 68620995119384, - "payout": 274.438, - "payout_at": "2016-09-16T18:44:06", - "pending_payout_value": "274.438 HBD", + "payout": 274.303, + "payout_at": "2016-09-22T18:19:39", + "pending_payout_value": "274.303 HBD", "percent_hbd": 10000, "permlink": "why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", - "post_id": 960258, + "post_id": 1256988, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -4951,7 +4951,7 @@ ], "author": "serejandmyself", "author_payout_value": "0.000 HBD", - "author_reputation": 66.84, + "author_reputation": 25.0, "beneficiaries": [], "blacklists": [], "body": "#### Hey guys, welcome to the first chapter of my new novel.\n#### It is a mixture of 3 time lines, with 19th century, modern day and ancient times. The genre is probably something you would call a mixture of sci-fi, mystery, adventure and a bit more. \n#### Well, I welcome you to be the judge...\n\n

[![b801c049484636e0faf71f56cca03864c0bd6.jpg](https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg)](https://www.steemimg.com/image/1wrYT)

\n\n__________________________________\n\n**Chapter ONE**\n\nIt seemed as nothing was different in yet another cold and slightly windy London evening. The smog from the river was rising up as usual and the chilly wind would bring the smell up to the embankment, where Charles was taking a rest, sitting down on his favorite bench. \n\nFrom here he could see the might of the power station from across the river and something was special in the way those chimneys threw out the smoke onto the city. \n\nHe just finished his walk along his usual route, walking amongst the cemetery outside the chapel. It always amused him; that mix of emotion and sorrow amongst the busy city people, especially during the busy afternoon hours.\n\nThat rusty smell kept mixing with up with the light freshness of the leaves from the tree nearby Charles\u2019s bench. As he threw a brief glimpse onto the clock on the parliament building he noticed that the small arrow was on 45 minutes\u2026 \n\nSuddenly he heard a murmur of horses; he turned his head before he could finish realizing what time it was. He saw that just a few yards up the road two horse carriages didn\u2019t manage to share the drive way. \n\n
[![Saratogacarriagec5af5.jpg](https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg)](https://www.steemimg.com/image/1w1bI)
\n\nOne of the coachmen was shouting something and angrily waving his hands. Charles was able to see from here that the coachmen\u2019s grey clothing was partially covered in dirt, probably from the splash of the puddles from underneath the wheels. \n\nThe coachmen kept shouting something, Charles was unable to see the second carriage from where he was sitting, but was able to see some passersby, that starting to gather around the incident.\n\nIt was obvious that, just like him, those people had nothing better to do on this late afternoon then to watch in amusement the accident in the middle of the avenue.\n\nJust as Charles was starting to lose interest in the whole situation, the door of the cab that Charles could see, opened and a man dressed in a black suit and holding a pipe stepped out. He calmly put his hand in the upper inner pocket of the suit and pulled out some coins. The man made two steps up to driver and handed him the coins. At this moment the driver stopped shouting for a moment and it was clear from the look on his face that he was confused. \n\nThe cab driver counted the coins and said something to the man in the suit, the passenger didn\u2019t answer. He turned around and started to walk in the direction of the chapel. The cab driver clearly wasn\u2019t happy. He started to shout once again, but this time at the passenger. While the cab driver turned his attention to the passenger, Charles noticed how the second carriage that was involved in the accident managed to move a few yards back.\n\nIt was a much smaller carriage, and the driver was clearly seeable to Charles now. He seemed somewhat happy that he was not in the middle of the light anymore; he hurryingly turned the carriage and the horse around and started to move also in the direction of the chapel. \n\nAt this moment the driver of the first carriage started to lose interest in shouting and decided to clean himself up. As he started to calm down, the bemused passersby begun to walk back to where they were heading and Charles also turned his head back towards the power station.\n\nCharles was so busy watching the situation unfold that he didn\u2019t noticed that the passenger of the first carriage crossed the road and was now heading not towards the chapel anymore, but exactly in the other direction, towards the grey bench that Charles was sitting on.\n\nAt first Charles didn\u2019t pay any attention to just another man who was walking by. But then he noticed that calm walk of his and it hit him that this was the same passenger from the carriage.\n\n\u201cExcuse me sir?\u201d said Charles as the man closed up to the bench. \u201cYou are the gentleman from the carriage, aren\u2019t you?\u201d \u201cI saw you a minute ago, what happened?\u201d\n\nThe man stopped to walk and shared a look with Charles; he calmly sat down beside him and carried on smoking his pipe, as he was not hearing the questions Charles asked him. \n\n\u201cI do apologies for the intervention, but you must not be local, I can tell by your calmness, all the folks round here are always in a hurry\u201d Charles carried on talking as if not noticing that the man was ignoring him. \n\nAll of a sudden the weather begun to change, wind started to blow stronger and the few leaves that the tree was holding blew in the direction of the bench. The smell from the river rose up and as if that wasn\u2019t enough Charles felt like a small rain drop hit his head. He could clearly see the green water from where he was sitting through the decorations holes of the embankments fence. It was clear that it will start to rain soon by the appearing circles on the top of the river.\n\nAfter a few minutes of quietly seating by his new neighbor Charles caught himself looking at the clock on the tower, once again he saw the small arrow on 45 minutes\u2026\n\n\u201cAnd what do we pay the government for?\u201d \u201cIt would feel though they are taking our money and spend it on their fancy hats and suits, don\u2019t you find?\u201d Said Charles.\n\nAt this point the man took out the pipe into his left hand and begun to cough. After he finished coughing Charles heard him speak, at this point Charles understood that for some reason he would remember this moment for a long time to come. \n\n\u201cIt is likely to assume that they deserve to spend the money they earn\u201d Said the man, his voice was quite low and he had a certain accent Charles could quite catch.\n\n\u201cI don\u2019t think that money is of importance nowadays\u201d Said the man.\n\nCharles looked at the man with a smile - \u201cWhat is of importance? One might assume that philosophically speaking, importance can be found in nothing but what is good to us\u201d.\n\n\u201cNo body knows what can be important to others if we carry on like this, then\u2026\u201d Charles didn\u2019t finish his sentence as the man turned away from him and looked the other way. He then turned his head back and Charles noticed his eyes. His eyes were nothing like what Charles had seen before, they looked as though they were glass like and the as if they were blank, there was nothing behind them.\n\n\u201cWhat is important is that I am here now and that it is happening today. It is important to live your life because, just like your life Charles, it has an end\u201d, the man looked somewhat happy when he said that and Charles jumped back on the bench a little, he felt a small shiver run down his spine.\n\n\u201cWhat? How do you know my name sir? Have you been following me?\u201d questions were racing through Charles\u2019s mind. \n\n\u201cAs I said, this is now of importance. You life can find its end today when you get back to your gallery in your cold basement on Kinnerton street or you might listen to me and\u2026\u201d Charles didn\u2019t let the man finish his sentence. He jumped up from the bench; his cane flew within millimeters of the stranger leg as he jumped.\n\n\u201cHow dare you sir? Who gives you the right\u2026\u201d Charles raised his voice, he never allowed himself to raise his voice at a stranger beforehand.\n\n\u201cI think this conversation is over!\u201d exclaimed Charles. \u201cThat would be your choice\u201d replied the man, \u201cDo you think the time is right?\u201d \n\nCharles had already turned away in anger and was about to make his first step away. Something in the words of the man about the time made him think for a second, thoughts raced through his mind. The number 45 and the small arrow of the parliament clock were stuck in his head. \n\n\u201cI don\u2019t understand said Charles\u2026\u201d he turned his head back towards the clock; the arrow was still on 45 minutes. \u201cHow is that possible?\u201d Charles turned his head to the man, but there was no one on the bench. \n\nCharles begun to search the street rapidly with his eyes, it didn\u2019t even occur to him that it was heavily raining until that moment. \n\n
[![tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif](https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif)](https://www.steemimg.com/image/1w5tK)
\n\nThe streets were empty; there were no carriages or people to be seen around. Feeling scared he turned his head to the clock once again \u2013 \u201cHow can it still be 45 minutes...\u201d Charles was speaking out loud.\n\nThe next moment he felt like his knees weakened, his head was swirling and he dropped his cane, last thing he could hear was the clinging the of the cane\u2019s handle against the pavement. His thoughts mixed up with his eyesight; the man and his pipe, the handle of the clock, the carriage, the passersby, the power stations smoke\u2026\n \n_________________________________\n\n#### Follow me @serejandmyself for more \n\nImage credit - [1](https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/) ; [2](https://giphy.com/search/carriage) ; [3](http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html) ;", @@ -4988,12 +4988,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 66871297900441, - "payout": 260.997, - "payout_at": "2016-09-16T17:42:51", - "pending_payout_value": "260.997 HBD", + "payout": 259.423, + "payout_at": "2016-09-22T17:23:48", + "pending_payout_value": "259.423 HBD", "percent_hbd": 10000, "permlink": "captured-by-time-an-original-novel-chapter-1", - "post_id": 959783, + "post_id": 1256421, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -6601,11 +6601,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 169985783269298, "payout": 1618.329, - "payout_at": "2016-10-15T19:32:42", + "payout_at": "2016-09-21T14:02:39", "pending_payout_value": "1618.329 HBD", "percent_hbd": 10000, "permlink": "steemfest-follow-up-poster-designs-sbd-rewards-will-donated-to-the-project", - "post_id": 949385, + "post_id": 1243377, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -7696,12 +7696,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 61028272797290, - "payout": 218.554, - "payout_at": "2016-09-16T18:14:08", - "pending_payout_value": "218.554 HBD", + "payout": 217.281, + "payout_at": "2016-09-22T17:53:48", + "pending_payout_value": "217.281 HBD", "percent_hbd": 10000, "permlink": "the-daily-curie-14th-sept-15th-sept-2016", - "post_id": 960067, + "post_id": 1256756, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -8227,12 +8227,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 62355283653318, - "payout": 227.863, - "payout_at": "2016-09-16T18:15:42", - "pending_payout_value": "227.863 HBD", + "payout": 226.397, + "payout_at": "2016-09-22T16:54:06", + "pending_payout_value": "226.397 HBD", "percent_hbd": 10000, "permlink": "original-fiction-anarchist-s-almanac-episode-15", - "post_id": 959506, + "post_id": 1256087, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -9311,12 +9311,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 64027086650725, - "payout": 239.867, - "payout_at": "2016-09-16T16:11:44", - "pending_payout_value": "239.867 HBD", + "payout": 239.682, + "payout_at": "2016-09-22T15:48:12", + "pending_payout_value": "239.682 HBD", "percent_hbd": 10000, "permlink": "title-steel-monsters-tank-destroyers-of-ww-ii-eng-ua-featuring-burmik123-as-author", - "post_id": 958959, + "post_id": 1255397, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -10238,12 +10238,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 66119907751704, - "payout": 255.328, - "payout_at": "2016-09-16T15:12:56", - "pending_payout_value": "255.328 HBD", + "payout": 254.34, + "payout_at": "2016-09-22T14:46:21", + "pending_payout_value": "254.340 HBD", "percent_hbd": 10000, "permlink": "three-benefits-of-living-with-a-disability-featuring-nextgen622-as-author", - "post_id": 958372, + "post_id": 1254663, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -11171,12 +11171,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 66723421210839, - "payout": 259.877, - "payout_at": "2016-09-16T14:29:03", - "pending_payout_value": "259.877 HBD", + "payout": 258.716, + "payout_at": "2016-09-22T14:01:30", + "pending_payout_value": "258.716 HBD", "percent_hbd": 10000, "permlink": "letters-to-my-dad-on-the-changing-world-with-italian-featuring-cryptofarmer-as-author", - "post_id": 957976, + "post_id": 1254158, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -12754,12 +12754,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 115120672136759, - "payout": 755.208, - "payout_at": "2016-09-16T04:43:13", - "pending_payout_value": "755.208 HBD", + "payout": 753.848, + "payout_at": "2016-09-21T22:00:36", + "pending_payout_value": "753.848 HBD", "percent_hbd": 10000, "permlink": "the-art-of-maintaining-reputation-plan-your-battles-and-don-t-milk-it", - "post_id": 952897, + "post_id": 1247817, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -13672,12 +13672,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 63885038592928, - "payout": 238.835, - "payout_at": "2016-09-16T15:58:09", - "pending_payout_value": "238.835 HBD", + "payout": 238.227, + "payout_at": "2016-09-22T14:58:21", + "pending_payout_value": "238.227 HBD", "percent_hbd": 10000, "permlink": "ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour", - "post_id": 958481, + "post_id": 1254813, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -14660,12 +14660,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 62692229771159, - "payout": 230.258, - "payout_at": "2016-09-16T14:58:37", - "pending_payout_value": "230.258 HBD", + "payout": 229.216, + "payout_at": "2016-09-22T14:24:12", + "pending_payout_value": "229.216 HBD", "percent_hbd": 10000, "permlink": "the-tastiest-and-healthiest-raw-chocolate-in-the-world", - "post_id": 958185, + "post_id": 1254417, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -16805,12 +16805,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 110596898261619, - "payout": 697.978, - "payout_at": "2016-09-15T22:37:56", - "pending_payout_value": "697.978 HBD", + "payout": 696.13, + "payout_at": "2016-09-21T21:48:51", + "pending_payout_value": "696.130 HBD", "percent_hbd": 10000, "permlink": "who-should-we-find-responsible-for-the-subprime-mortgage-lending-crisis", - "post_id": 952817, + "post_id": 1247716, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -17501,12 +17501,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 57949290153677, - "payout": 197.701, - "payout_at": "2016-09-16T15:36:20", - "pending_payout_value": "197.701 HBD", + "payout": 196.691, + "payout_at": "2016-09-22T15:10:00", + "pending_payout_value": "196.691 HBD", "percent_hbd": 10000, "permlink": "vegetarianism-is-philosophy-which-has-deep-religious-and-ethical-roots-my-way-vegetarianstvo-moi-put-featuring-tagira-as-author", - "post_id": 958600, + "post_id": 1254959, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -19492,7 +19492,7 @@ ], "author": "fairytalelife", "author_payout_value": "0.000 HBD", - "author_reputation": 66.97, + "author_reputation": 25.0, "beneficiaries": [], "blacklists": [], "body": "\n

\n

Do you want to know what depression feels like? 

\n

Think of a foggy grey muck that encircles you head to toe. Severe depression strips you from being able to experience any joy in life, even when for all the world it appears you have everything going for you.   Watered down commentaries attempt to describe the soul rotting misery of waking up in darkness every day. Who are those who can bolt out of bed ready to face the day with their happy attitudes about life? I don\u2019t know. I\u2019ve never been one. I dread waking up. One of the things really depressed people look forward to is a respite from consciousness. This is why those who suffer tend to sleep so much. It\u2019s escapism. Yet it isn\u2019t, because even in sleep you can be terrorized by your daytime demons. The quality of sleep is not restful \u2013 in fact, rather fitful. This is one reason so many people take mind-numbing tranquilizers to dull their wakeful state just to be able to drift away to somewhere, anywhere else than the dangerous and unchecked arena of the mind.    

\n

People experience the tiers of depression's challenges in different ways. It\u2019s not being disappointed or being in a bad mood if something doesn\u2019t pan out in your favor. You chipped you manicure? Bugger. Irritating, yes, but it\u2019s not the end of the world. For a depressed person,  something minor (for whatever reason) can hurl you head first into a bottomless void of regret and agony. You associate daily life with walking through a minefield. Danger lurks with every step. That ad for an antidepressant that shows a cartoon figure walking around under her own cloud of rain sums up the feeling quite well (of course it does \u2013 sponsored by The Pharmaceutical Cartel). You NEED this drug to function. That\u2019s another post, and I know far too well how drugs are touted as the magic solution. Not even children are safe from their campaigns.

\n

\n

It\u2019s the ultimate mind-fuck factory, this thought prison that leads you through Dante\u2019s circles of hell as you try to scramble your way out of the snake pit. The thoughts pull you back in by your ankles. Like a horror movie, the entity of depression knows what scares you. It knows what makes you wail in despair. It knows your saddest thoughts and flashes those across the movie screen in your head in incessant reruns. You are a spectator, but unable to avert your eyes.   

\n

You have things to do? Most can buck up and get 'er done. A very depressed person knows what must be done yet can\u2019t do it. Cannot. It\u2019s not possible. It has nothing to do with laziness and everything to do with apathy. The effort isn\u2019t worth it. You know you will feel better if such and such gets done. So the obvious solution is to do it. You have errands to run? Get in the car and go. But for a depressed person, the mundane becomes detestable to such an extent that not even the guilt for not doing the things is unable to motivate you enough to accomplish what is impossible in your mind.   

\n

\n

Once while touring Alcatraz, I was struck by something the tour guide told us. The island is positioned in just the right way that all the prisoners could smell the Ghirardelli chocolate factory wafting its chocolate scent across the bay, no doubt driving inmates insane. This is much like depression. You are stuck in a jail cell knowing everyone else is living happily while you miss out on what you know (on some level) is a gift \u2013 life itself. You can only observe from afar.    

\n

You know those days when you feel like a sloth and nothing gets done? For many depressed people that\u2019s every day. By getting nothing done I don\u2019t mean cleaning out the refrigerator or reading a book your friend needs back. I mean responsibilities you must accept as an adult, as a parent. You can\u2019t function. Your kids are hungry, but you can\u2019t do anything about it because you can\u2019t move. You have an empty stare and wonder if it\u2019s too early for a drink. It\u2019s only one in the afternoon. Can it be justified?    

\n

And you can\u2019t stop seeing those stories about the Yulin dog meat festival. This is horrible because an animal suffering is the worst thing in the world to me. Or those commercials by the SPCA. The thoughts hit hard, bating me. \u201cUh oh! She\u2019s making some progress \u2013 what is she sad about? Let\u2019s infect.\u201d Self-sabotage is the name of the game. For a depressed person, thoughts take over and pollute your whole mind.   

\n

You hope you will feel better tomorrow, or someday. You keep saying someday. But that wastes away today. You hide from friends and family because the idea of faking a smile is akin to torture. And you think no one cares about your problems. Or they are tired of hearing about them because they are always the same.   Your brain is wired differently. Some of the most creative genius comes from a desolate mental state. It can, but only If you can get any mental energy together to be productive.   

\n

Your friends email you cures for migraines. You have had to invent numerous excuses that involve having them, because that\u2019s a reasonable excuse to cancel plans. Saying you\u2019re sad or not in the mood will get \u201cI\u2019ll cheer you up\u201d from well-meaning friends and family. But you want to be alone, completely isolated, in bed, with the covers pulled up over your head. And you want to cry. And I don\u2019t mean a few tears. I mean heart-wrenching sobs that no one would want to hear.   

\n

You yell at people you love. You cry easily. They can\u2019t help you but they can sure piss you off. And we are pissed at ourselves, because children have needs that must be met -no question about it. And you know are letting them down with your suffering. Another blow.   We do not feel sorry for ourselves in the traditional sense. We do feel sorry that we can\u2019t get a grip as we are often told to do. We feel guilty for letting others down who matter as they stand by helpless, completely befuddled about their roles in all of this. They feel responsible You want to convey it\u2019s not them or their fault, but they start to not believe you. It\u2019s no one\u2019s fault. It simply is.   

\n

Some days are easier than others. I often do well when the stars align - deceptively so, or maybe not deceptive. Maybe I am getting a handle on this curse. It\u2019s a constant roller coaster of wondering when the happy cart will upturn and everything you manage to put in there (composure, self-esteem, productivity) scatters across the road. And cars are coming, but you have to try to summon up the ability to put them back in and continue on your journey. It\u2019s like you are that one slow car on a hill that everyone zips past because they don\u2019t carry the burden of your load.   

\n

Is life a beautiful thing? Yes. It is. Is it filled with sadness? Yes to that too. Can a depressed person overcome depression? I think so. But in order to answer that, you must be willing to look at your origins to discover what might be holding you back.         

\n

\n

Drawings and painting \u00a9 Johanna Westerman 2016  

\n


\n", @@ -19518,12 +19518,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 120989205660828, - "payout": 832.809, - "payout_at": "2016-09-15T20:29:32", - "pending_payout_value": "832.809 HBD", + "payout": 832.556, + "payout_at": "2016-09-21T17:46:30", + "pending_payout_value": "832.556 HBD", "percent_hbd": 10000, "permlink": "the-prison-of-depression", - "post_id": 950898, + "post_id": 1245264, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -19927,12 +19927,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 53802622776333, - "payout": 171.268, - "payout_at": "2016-09-16T17:20:12", - "pending_payout_value": "171.268 HBD", + "payout": 170.17, + "payout_at": "2016-09-22T16:45:09", + "pending_payout_value": "170.170 HBD", "percent_hbd": 10000, "permlink": "17-steem-tools-every-steemian-needs-to-know", - "post_id": 959438, + "post_id": 1256009, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -21577,11 +21577,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 174333402242155, "payout": 1750.818, - "payout_at": "2016-10-15T13:31:03", + "payout_at": "2016-09-21T06:19:21", "pending_payout_value": "1750.818 HBD", "percent_hbd": 10000, "permlink": "steempay-upgrade-pay-on-site-or-steemfest-or-mobile-wallet", - "post_id": 947211, + "post_id": 1240557, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -22472,12 +22472,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 61603577309634, - "payout": 222.566, - "payout_at": "2016-09-16T12:56:15", - "pending_payout_value": "222.566 HBD", + "payout": 220.99, + "payout_at": "2016-09-22T12:27:27", + "pending_payout_value": "220.990 HBD", "percent_hbd": 10000, "permlink": "a-look-from-the-past-vzglyad-iz-proshlogo-featuring-panther-as-author", - "post_id": 957231, + "post_id": 1253231, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -23911,12 +23911,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 66209054025322, - "payout": 255.998, - "payout_at": "2016-09-16T10:35:22", - "pending_payout_value": "255.998 HBD", + "payout": 254.797, + "payout_at": "2016-09-22T10:10:06", + "pending_payout_value": "254.797 HBD", "percent_hbd": 10000, "permlink": "weekly-payouts-leaderboards-september-week-2", - "post_id": 956546, + "post_id": 1252375, "promoted": "0.000 HBD", "replies": [], "stats": { diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json index 5978cd12..bb4469e2 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json @@ -1063,7 +1063,7 @@ "beneficiaries": [], "body": "Hello Steemers!\n\nhttps://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png\n\n*POLONIEX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png\n*4 hour Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciwF/1b96b56dcc.png\n*4 hour Poloniex chart - Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png\n*1 day Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciC9/edf3dcb758.png\n*1 day Poloniex chart - Sept 15, 2016*\nThe Poloniex price went down to the all time low, breaking it and making a slightly lower all time low, but still not giving any confirm of a bottom or bounce.\nVolume about 20% higher then yesterday.\n\n*BITTREX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png\n*4 hour Bittrex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciod/ce32f1a029.png\n*4 hour Bittrex chart - Sept 15, 2016*\nThe Bittrex price broke the local low made just a slightly lower one, same as Poloniex with he all time low, looking like its heading towards the next support level (~0.0007, blue dashed).\nVolume on Bittrex was about 25% lower then yesterday (~5BTC's).\n\n\n*VOLUME COMPARISON*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png\n*STEEM/BTC volume Bittrex Sept 14, 2016*\n\nhttp://puu.sh/rcifG/0c61511ea3.png\n*STEEM/BTC volume Bittrex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png\n*STEEM/BTC volume Poloniex Sept 14, 2016*\n\nhttp://puu.sh/rcicN/b2384086a4.png\n*STEEM/BTC volume Poloniex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png\n*STEEM indexed global volume Sept 14, 2016*\n\nhttp://puu.sh/rcibB/7b2700dd82.png\n*STEEM indexed global volume Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmof/8ca7889618.png\n*Coinmarketcap top volume cryptos Sept 14, 2016*\n\nhttp://puu.sh/rci8K/d68b7eb122.png\n*Coinmarketcap top volume cryptos Sept 15, 2016*\nOverall volume about 12% higher then yesterday, with Bittrex volume taking a dive and Poloniex gaining some.\n$STEEM again under top 30 in volume rankings.\n\n*COMMENT*\nOnce again, I will post the comment by commenting as it involves my personal opinion!\nThank you for understanding!\n\nIf anyone has any questions or need's help fell free to ask, I will try to explain as fast and as best as I can.\nCritics, comments, reply's, counters, advice's, etc. are always welcome!\nHave my charts helped you in any way?Let me know with a comment below :)\nAre there more people who are doing TA?\nPlease post the links to your TA's posts into the comments as well!\n\n*DISCLAIMER*\nI am showing multiple scenarios on the price movement, in the post itself I do not take any stance, either bullish or bearish. I am not responsible for neither you\u2019re winning nor you're losses upon trading! the \"comment\" section is my personal opinion and does not mean I have to or do hold any positions in the given market.\nEveryone who uses TA develops his own unique charting style, please keep that in mind.\n\nhttps://www.youtube.com/watch?v=i3bS5nRZOvU\n\nKind regards, OZ :)", "body_length": 3079, - "cashout_time": "2016-09-22T18:18:00", + "cashout_time": "2016-09-22T18:18:00", "category": "steem", "children": 5, "created": "2016-09-15T18:18:00", @@ -1076,10 +1076,10 @@ "net_rshares": 30268799563538, "parent_author": "", "parent_permlink": "steem", - "pending_payout_value": "57.040 HBD", + "pending_payout_value": "57.040 HBD", "percent_hbd": 10000, "permlink": "usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", - "post_id": 1256962, + "post_id": 1256962, "promoted": "0.000 HBD", "replies": [], "root_title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle\u2019s left empty\" Sept 15, 2016", diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json index 5329df03..19ebc0d2 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json @@ -2576,7 +2576,7 @@ "net_rshares": 21098346399884, "parent_author": "", "parent_permlink": "steem", - "pending_payout_value": "47.466 HBD", + "pending_payout_value": "47.466 HBD", "percent_hbd": 10000, "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", "post_id": 1160043, diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json index 034c11ef..5006164e 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json @@ -535,7 +535,7 @@ "beneficiaries": [], "body": "So far, a great number of applications, or tools that can considerably improve our user experience whether we are old users or new, has been created. The application directory created by @roelandp is accepted as an official directory that currently contains more than 80 various tools, mainly created by the community members, with a few official ones. The number of applications is growing rapidly, thanks to talented developers and other users, whose ideas are being converted into functional programs.\n\nHere, I want to introduce you to an infographic that contains 17 very useful tools singled out and sorted into categories according to their use. The first category 'for new and old users' contains essential applications for most users, including applications such as the official chat server and block explorer, as well as a dedicated service for uninterrupted adding of photos, @jesta's tool for easier tracking of data related to your account, and a tool for real-time Steem Backed Dollar conversion, with a few extra applications included in the service.\n\nThe next group contains the applications essential for developers, led by @xeroc's piston which says for itself 'The Swiff Army Knife for the Steem network'. They facilitate the communication with the steem blockchain and there is also an application that facilitates the integration of Steem payments to your service. \n\nThe Miscellaneous group contains a variety of useful applications such as tools for curators, a precise browser of user reputation, a dedicated tool for creating shortened links with statistics, a Steem Stream display of all activity in real time with an option of adjusting your settings, as well as speech community and radio.\n\nLast group are applications in the category of data and analytics that contain most of data about the network, the network activity and the users. \n\nI apologize in advance if some of your favorite applications have been left out; if that is the case, you can always visit http://SteemTools.com which contains all the applications.\n\n*For a clearer view, it is recommended that you open the image in full resolution.* *[Infographic Hotlink!](http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png)*\nhttps://s11.postimg.io/8uxamnavn/revision_02.png\n---\n ![http://steemit.com/@powerup](https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png)", "body_length": 2450, - "cashout_time": "2016-09-22T16:45:09", + "cashout_time": "2016-09-22T16:45:09", "category": "infographic", "children": 6, "created": "2016-09-15T16:45:09", @@ -548,10 +548,10 @@ "net_rshares": 53802622776333, "parent_author": "", "parent_permlink": "infographic", - "pending_payout_value": "170.170 HBD", + "pending_payout_value": "170.170 HBD", "percent_hbd": 10000, "permlink": "17-steem-tools-every-steemian-needs-to-know", - "post_id": 1256009, + "post_id": 1256009, "promoted": "0.000 HBD", "replies": [], "root_title": "Steem Tools Every Steemian Needs To Know (Infographic)", diff --git a/hivemind/tavern/database_api_patterns/find_comments.pat.json b/hivemind/tavern/database_api_patterns/find_comments.pat.json index a8d6220b..81fdf671 100644 --- a/hivemind/tavern/database_api_patterns/find_comments.pat.json +++ b/hivemind/tavern/database_api_patterns/find_comments.pat.json @@ -21,8 +21,8 @@ "precision": 3 }, "depth": 0, - "id": 0, - "json_metadata": "", + "id": 1, + "json_metadata": "{}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-03-30T18:30:18", "max_accepted_payout": { diff --git a/hivemind/tavern/database_api_patterns/list_comments.pat.json b/hivemind/tavern/database_api_patterns/list_comments.pat.json index f50f74df..459d7c74 100644 --- a/hivemind/tavern/database_api_patterns/list_comments.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments.pat.json @@ -21,8 +21,8 @@ "precision": 3 }, "depth": 0, - "id": 0, - "json_metadata": "", + "id": 1, + "json_metadata": "{}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-03-30T18:30:18", "max_accepted_payout": { @@ -35,7 +35,7 @@ "net_votes": 90, "parent_author": "", "parent_permlink": "meta", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "firstpost", "reward_weight": 10000, "root_author": "steemit", @@ -70,7 +70,7 @@ "precision": 3 }, "depth": 0, - "id": 19953, + "id": 27842, "json_metadata": "{\"tags\":[\"steemit\"]}", "last_payout": "2016-08-03T00:00:06", "last_update": "2016-06-10T08:03:27", @@ -84,7 +84,7 @@ "net_votes": -1, "parent_author": "", "parent_permlink": "steemit", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "show-me-some-love-please", "reward_weight": 10000, "root_author": "steemit-awesome", @@ -119,7 +119,7 @@ "precision": 3 }, "depth": 0, - "id": 19951, + "id": 27840, "json_metadata": "{\"tags\":[\"steemit\"]}", "last_payout": "2016-08-03T00:00:06", "last_update": "2016-06-10T08:00:09", @@ -168,7 +168,7 @@ "precision": 3 }, "depth": 1, - "id": 397905, + "id": 543507, "json_metadata": "{\"tags\":[\"holiday\"]}", "last_payout": "2016-08-31T15:38:18", "last_update": "2016-08-01T20:01:54", @@ -217,7 +217,7 @@ "precision": 3 }, "depth": 1, - "id": 398017, + "id": 543657, "json_metadata": "{\"tags\":[\"steemit\"]}", "last_payout": "2016-09-01T23:15:57", "last_update": "2016-08-01T20:06:54", @@ -266,7 +266,7 @@ "precision": 3 }, "depth": 0, - "id": 521662, + "id": 700619, "json_metadata": "{\"tags\":[\"namecoin\",\"dns\",\"steem\",\"bounty\",\"deutsch\"],\"image\":[\"https://i.imgsafe.org/9aa30b795c.png\"],\"links\":[\"https://steemit.com/namecoin/@dantheman/dns-via-steem\",\"https://steemit.com/@dantheman\"]}", "last_payout": "2016-09-08T23:23:39", "last_update": "2016-08-09T10:04:48", @@ -315,7 +315,7 @@ "precision": 3 }, "depth": 2, - "id": 521670, + "id": 700627, "json_metadata": "{\"tags\":[\"namecoin\"]}", "last_payout": "2016-09-08T21:40:24", "last_update": "2016-08-09T10:05:24", @@ -364,7 +364,7 @@ "precision": 3 }, "depth": 0, - "id": 520707, + "id": 699424, "json_metadata": "{\"tags\":[\"namecoin\",\"dns\",\"steem\",\"bounty\",\"deutsch\"],\"users\":[\"dantheman\"],\"image\":[\"https://i.imgsafe.org/9842418ea3.png\"],\"links\":[\"https://steemit.com/namecoin/@dantheman/dns-via-steem\"]}", "last_payout": "2016-09-08T21:40:24", "last_update": "2016-08-09T09:37:48", @@ -413,7 +413,7 @@ "precision": 3 }, "depth": 2, - "id": 521490, + "id": 700387, "json_metadata": "{\"tags\":[\"namecoin\"]}", "last_payout": "2016-09-08T21:40:24", "last_update": "2016-08-09T09:38:06", @@ -462,7 +462,7 @@ "precision": 3 }, "depth": 0, - "id": 411238, + "id": 559995, "json_metadata": "{\"tags\":[\"introduceyourself\",\"votefunding\",\"yoga\",\"photography\",\"finance\"],\"users\":[\"mranderson\"],\"image\":[\"https://www.steemimg.com/images/2016/08/02/IMG_9517edc90.jpg\"],\"links\":[\"https://steemit.com/writing/@kencode/do-you-know-a-foreign-language-crowdvoting\"]}", "last_payout": "2016-09-02T04:02:27", "last_update": "2016-08-02T14:23:09", diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_hot.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_hot.pat.json index c5e65738..b83cc419 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_hot.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_hot.pat.json @@ -13,7 +13,7 @@ "beneficiaries": [], "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", "body_length": 1273, - "cashout_time": "2016-08-25T21:19:45", + "cashout_time": "2016-08-25T21:19:45", "category": "polska", "children": 1, "created": "2016-08-18T21:19:45", @@ -29,7 +29,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "nasienie-wolnosci", - "post_id": 877987, + "post_id": 877987, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json index 5329df03..19ebc0d2 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json @@ -2576,7 +2576,7 @@ "net_rshares": 21098346399884, "parent_author": "", "parent_permlink": "steem", - "pending_payout_value": "47.466 HBD", + "pending_payout_value": "47.466 HBD", "percent_hbd": 10000, "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", "post_id": 1160043, diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_trending.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_trending.pat.json index c5e65738..b83cc419 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_trending.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_trending.pat.json @@ -13,7 +13,7 @@ "beneficiaries": [], "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", "body_length": 1273, - "cashout_time": "2016-08-25T21:19:45", + "cashout_time": "2016-08-25T21:19:45", "category": "polska", "children": 1, "created": "2016-08-18T21:19:45", @@ -29,7 +29,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "nasienie-wolnosci", - "post_id": 877987, + "post_id": 877987, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index b6fae715..dbc0cd7f 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -33,7 +33,7 @@ marks: - patterntest - failing - - xfail # missing replies, payout is always zero except root post, grey, flag_weight, total_votes counts all without filtering + - xfail # payout is zero in some cases, grey, flag_weight, total_votes counts all without filtering includes: - !include common.yaml @@ -125,8 +125,6 @@ marks: - patterntest - - failing - - xfail # completely different list of posts due to sc_trend not working, plus see get_post includes: - !include common.yaml @@ -179,7 +177,6 @@ extra_kwargs: method: "get_profile" directory: "bridge_api_patterns" - ignore_tags: ["id"] --- test_name: Hivemind bridge_api.get_trending_topics patterns test diff --git a/hivemind/tavern/test_database_api_patterns.tavern.yaml b/hivemind/tavern/test_database_api_patterns.tavern.yaml index eaad1583..7caae931 100644 --- a/hivemind/tavern/test_database_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_database_api_patterns.tavern.yaml @@ -4,7 +4,7 @@ marks: - patterntest - failing - - xfail + - xfail # plenty of differences but comparable includes: - !include common.yaml @@ -28,7 +28,6 @@ extra_kwargs: method: "list_comments" directory: "database_api_patterns" - ignore_tags: ["id"] --- test_name: Hivemind database_api.find_comments patterns test @@ -36,7 +35,7 @@ marks: - patterntest - failing - - xfail + - xfail # plenty of differences but comparable includes: - !include common.yaml @@ -67,6 +66,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -100,6 +101,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest + - failing - xfail # shows error when there is only one of optional value (first) includes: @@ -134,6 +136,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest + - failing - xfail # shows error when there is only one of optional value (first) includes: @@ -173,6 +176,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -212,8 +217,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - - xfail # show first posts comments - failing + - xfail # show first posts comments includes: - !include common.yaml @@ -248,6 +253,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -281,6 +288,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -310,6 +319,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest + - failing - xfail # problem with date cashout_time = "1970-01-01 00:00:00" or 1969-12-31T23:59:59 includes: @@ -345,8 +355,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - - xfail # wrong output, given cashout_time exist in database (output later 2016-09-15T19:47:27) - failing + - xfail # wrong output, given cashout_time exist in database (output later 2016-09-15T19:47:27) includes: - !include common.yaml @@ -382,6 +392,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -411,6 +423,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -440,6 +454,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest # author first - when empty, takes alphabetical (later by permlink) + - failing + - xfail includes: - !include common.yaml @@ -478,6 +494,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -517,6 +535,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" goo marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -551,8 +571,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" no marks: - patterntest - - xfail # first two params are required - failing + - xfail # first two params are required includes: - !include common.yaml @@ -587,6 +607,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" onl marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -620,8 +642,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" req marks: - patterntest - - xfail # wrong output - failing + - xfail # wrong output includes: - !include common.yaml @@ -656,6 +678,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" req marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -690,6 +714,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" all marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -724,8 +750,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" wit marks: - patterntest - - xfail # child_author, child_permlink are optional - failing + - xfail # child_author, child_permlink are optional includes: - !include common.yaml @@ -759,6 +785,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" wro marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -792,6 +820,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" wro marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -826,6 +856,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -860,8 +892,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest - - xfail # first 2 params are required - failing + - xfail # first 2 params are required includes: - !include common.yaml @@ -896,8 +928,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest - - xfail # second param is required - failing + - xfail # second param is required includes: @@ -933,6 +965,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" r marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -967,8 +1001,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" c marks: - patterntest - - xfail # child_author, child_permlink are optional - failing + - xfail # child_author, child_permlink are optional includes: @@ -1003,6 +1037,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" a marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -1037,8 +1073,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest - - xfail # unexpected output - takes it aplhabetical from author - failing + - xfail # unexpected output - takes it aplhabetical from author includes: @@ -1075,6 +1111,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -1109,6 +1147,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -1142,6 +1182,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -1175,6 +1217,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -1209,6 +1253,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -1243,8 +1289,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest - - xfail # output should be the same as prev test or with completely diff author - failing + - xfail # output should be the same as prev test or with completely diff author includes: @@ -1281,6 +1327,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -1310,8 +1358,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest - - xfail # first arg is author, not date (error about date) - failing + - xfail # first arg is author, not date (error about date) includes: @@ -1346,8 +1394,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest - - xfail # shows different comment than expected - failing + - xfail # shows different comment than expected includes: @@ -1383,6 +1431,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -1416,6 +1466,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -1449,6 +1501,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest + - failing - xfail # show last comments in base includes: @@ -1484,6 +1537,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest + - failing + - xfail includes: - !include common.yaml diff --git a/hivemind/tavern/validate_response.py b/hivemind/tavern/validate_response.py index e3ca2eb1..adabf7d8 100644 --- a/hivemind/tavern/validate_response.py +++ b/hivemind/tavern/validate_response.py @@ -52,7 +52,7 @@ def compare_response_with_pattern(response, method=None, directory=None, ignore_ response_json = response.json() if ignore_tags is not None: - assert isinstance(ignore_tags, list), "ingore_tags should be list of tags" + assert isinstance(ignore_tags, list), "ignore_tags should be list of tags" response_json = remove_tag(response_json, ignore_tags) error = response_json.get("error", None) result = response_json.get("result", None) @@ -71,14 +71,13 @@ def compare_response_with_pattern(response, method=None, directory=None, ignore_ pattern = remove_tag(pattern, ignore_tags) pattern_resp_diff = deepdiff.DeepDiff(pattern, result) if pattern_resp_diff: - pattern_resp_diff_json = pattern_resp_diff - save_diff(fname, pattern_resp_diff_json) save_response(response_fname, result) - msg = "Differences detected between response and pattern. Diff saved to {}\n\nDiff:\n{}".format(fname, pattern_resp_diff_json) + save_diff(fname, pattern_resp_diff) + msg = "Differences detected between response and pattern. Diff saved to {}\n\nDiff:\n{}".format(fname, pattern_resp_diff) raise PatternDiffException(msg) def compare_error_message(response, message): response_json = response.json() error = response_json.get("error", None) if error['message'] != message: - raise PatternDiffException('error message not equal, expected: "' + message + '" given: "' + error['message'] + '"') \ No newline at end of file + raise PatternDiffException('error message not equal, expected: "' + message + '" given: "' + error['message'] + '"') -- GitLab From 4ee857cea9d1335f4e71418bd0e06f6538a0d28f Mon Sep 17 00:00:00 2001 From: ABW Date: Fri, 14 Aug 2020 20:19:27 +0200 Subject: [PATCH 18/49] [ABW]: database_api patterns for new tests reviewed, commented and changed (rebranding, indents, key ordering, id where they were comparable to current results) --- .../list_comments.pat.json | 986 ++++++++--------- .../list_comments_author_last_update.pat.json | 20 +- ...ts_author_last_update_author_date.pat.json | 986 ++++++++--------- ...thor_last_update_corr_author_date.pat.json | 986 ++++++++--------- ...ments_author_last_update_corr_dap.pat.json | 986 ++++++++--------- ...ents_author_last_update_corr_date.pat.json | 986 ++++++++--------- ...st_comments_by_cashout_first_date.pat.json | 986 ++++++++--------- ...comments_by_cashout_time_all_data.pat.json | 986 ++++++++--------- ...ments_by_cashout_time_future_data.pat.json | 986 ++++++++--------- ...t_comments_by_cashout_time_second.pat.json | 986 ++++++++--------- ...mments_by_last_update_future_date.pat.json | 986 ++++++++--------- ...st_comments_last_update_good_date.pat.json | 986 ++++++++--------- .../list_comments_parent.pat.json | 986 ++++++++--------- .../list_comments_parent_all_data.pat.json | 986 ++++++++--------- .../list_comments_parent_no_data.pat.json | 986 ++++++++--------- ...ist_comments_parent_not_full_data.pat.json | 986 ++++++++--------- ...ist_comments_parent_parent_author.pat.json | 986 ++++++++--------- ...ist_comments_parent_required_data.pat.json | 986 ++++++++--------- .../list_comments_permlink.pat.json | 986 ++++++++--------- ...ist_comments_permlink_good_params.pat.json | 986 ++++++++--------- ...t_comments_permlink_good_permlink.pat.json | 988 +++++++++--------- ...omments_permlink_permlink_no_data.pat.json | 988 +++++++++--------- .../list_comments_root.pat.json | 986 ++++++++--------- .../list_comments_root_all_values.pat.json | 986 ++++++++--------- .../list_comments_root_no_data.pat.json | 986 ++++++++--------- ...ist_comments_root_required_values.pat.json | 986 ++++++++--------- ...nts_root_required_values_comments.pat.json | 986 ++++++++--------- .../test_database_api_patterns.tavern.yaml | 48 +- 28 files changed, 12854 insertions(+), 12854 deletions(-) diff --git a/hivemind/tavern/database_api_patterns/list_comments.pat.json b/hivemind/tavern/database_api_patterns/list_comments.pat.json index 459d7c74..3f200118 100644 --- a/hivemind/tavern/database_api_patterns/list_comments.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "abs_rshares": 0, - "active": "2016-08-24T09:30:03", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "steemit", - "author_rewards": 3548, - "beneficiaries": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 36, - "children_abs_rshares": 0, - "created": "2016-03-30T18:30:18", - "curator_payout_value": { - "amount": "756", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 1, - "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T18:30:18", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 90, - "parent_author": "", - "parent_permlink": "meta", - "percent_hbd": 10000, - "permlink": "firstpost", - "reward_weight": 10000, - "root_author": "steemit", - "root_permlink": "firstpost", - "title": "Welcome to Steem!", - "total_payout_value": { - "amount": "942", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-06-10T08:55:27", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "steemit-awesome", - "author_rewards": 0, - "beneficiaries": [], - "body": ":)", - "cashout_time": "1969-12-31T23:59:59", - "category": "steemit", - "children": 2, - "children_abs_rshares": 0, - "created": "2016-06-10T08:03:27", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 27842, - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_payout": "2016-08-03T00:00:06", - "last_update": "2016-06-10T08:03:27", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -401748374094, - "net_votes": -1, - "parent_author": "", - "parent_permlink": "steemit", - "percent_hbd": 10000, - "permlink": "show-me-some-love-please", - "reward_weight": 10000, - "root_author": "steemit-awesome", - "root_permlink": "show-me-some-love-please", - "title": "show me some love please?", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-06-10T08:02:09", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "steemit-awesome", - "author_rewards": 0, - "beneficiaries": [], - "body": "who can upvote me?", - "cashout_time": "1969-12-31T23:59:59", - "category": "steemit", - "children": 1, - "children_abs_rshares": 0, - "created": "2016-06-10T08:00:09", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 27840, - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_payout": "2016-08-03T00:00:06", - "last_update": "2016-06-10T08:00:09", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -75903272807, - "net_votes": 0, - "parent_author": "", - "parent_permlink": "steemit", - "percent_hbd": 10000, - "permlink": "what-is-steemit", - "reward_weight": 10000, - "root_author": "steemit-awesome", - "root_permlink": "what-is-steemit", - "title": "What is Steemit", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-01T20:01:54", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "steemit-com", - "author_rewards": 0, - "beneficiaries": [], - "body": "grat", - "cashout_time": "1969-12-31T23:59:59", - "category": "holiday", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-01T20:01:54", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 543507, - "json_metadata": "{\"tags\":[\"holiday\"]}", - "last_payout": "2016-08-31T15:38:18", - "last_update": "2016-08-01T20:01:54", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 1, - "parent_author": "grimjo33", - "parent_permlink": "tangkuban-perahu-another-beautiful-indonesia-tourism-destination", - "percent_hbd": 10000, - "permlink": "re-grimjo33-tangkuban-perahu-another-beautiful-indonesia-tourism-destination-20160801t200152355z", - "reward_weight": 10000, - "root_author": "grimjo33", - "root_permlink": "tangkuban-perahu-another-beautiful-indonesia-tourism-destination", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-01T20:06:54", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "steemit-com", - "author_rewards": 0, - "beneficiaries": [], - "body": "why so naiF", - "cashout_time": "1969-12-31T23:59:59", - "category": "steemit", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-01T20:06:54", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 543657, - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_payout": "2016-09-01T23:15:57", - "last_update": "2016-08-01T20:06:54", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "riensen", - "parent_permlink": "steemit-etiquette-using-95-bot-accounts-to-upvote-your-own-content-fair-game-or-not-cool", - "percent_hbd": 10000, - "permlink": "re-riensen-steemit-etiquette-using-95-bot-accounts-to-upvote-your-own-content-fair-game-or-not-cool-20160801t200656898z", - "reward_weight": 10000, - "root_author": "riensen", - "root_permlink": "steemit-etiquette-using-95-bot-accounts-to-upvote-your-own-content-fair-game-or-not-cool", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-09T19:09:39", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "steemit-de", - "author_rewards": 22090, - "beneficiaries": [], - "body": "

\u00a0Original post by @dantheman\u00a0

\n

\n

Da Steem beliebige Daten welche an einem Account gekn\u00fcpft sind unterst\u00fctzt, liegt es nahe f\u00fcr Erfahrene Entwickler die von Namecoin und \u00e4hnlichen Projekten genutzt werden auf Steem zu portieren.

\n

Sind diese Tools erst vorhanden, kann der Steem-Account Name als Domain f\u00fcr die eigene Webseite genutzt werden.

\n

Ich bin mir sicher, dass derjenige, welcher zuerst benutzerfreundliche und qualitative Tools ver\u00f6ffentlicht um DNS-Abfragen mittels der Metadaten des Steem-Accounts zu erm\u00f6glichen, eine Flut von Upvotes erh\u00e4lt.

\n

Nur eine Idee am Rande f\u00fcr jene die gewinnbringende Post wollen.

\n

Vorteile

\n
    \n
  • Dezentralisierte TLS (HTTPS) zertifizierte Validierung, gest\u00fctzt vom Blockchain Konsens
  • \n
  • Sicherung der Meinungsfreiheit im Internet durch resistentmachung gegen Zensur
  • \n
  • Zugriff auf Webseiten durch .steem Top-Level Domains
  • \n
  • Verkn\u00fcpfte Identit\u00e4tsinformationen wie GPG oder OTR Schl\u00fcssel sowieso Emails, Bitcoins und Bitmessage-Adressen an eine Identit\u00e4t deiner Wahl
  • \n
\n

Steemit-de wird die wichtigsten Publikationen und popul\u00e4ren Post ins Deutsche \u00fcbersetzten, um das Wachstum von Steemit zu beschleunigen

", - "cashout_time": "1969-12-31T23:59:59", - "category": "namecoin", - "children": 1, - "children_abs_rshares": 0, - "created": "2016-08-09T10:04:48", - "curator_payout_value": { - "amount": "9740", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 700619, - "json_metadata": "{\"tags\":[\"namecoin\",\"dns\",\"steem\",\"bounty\",\"deutsch\"],\"image\":[\"https://i.imgsafe.org/9aa30b795c.png\"],\"links\":[\"https://steemit.com/namecoin/@dantheman/dns-via-steem\",\"https://steemit.com/@dantheman\"]}", - "last_payout": "2016-09-08T23:23:39", - "last_update": "2016-08-09T10:04:48", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 50, - "parent_author": "", - "parent_permlink": "namecoin", - "percent_hbd": 10000, - "permlink": "dns-via-steem-deutsche-version-deutsch", - "reward_weight": 10000, - "root_author": "steemit-de", - "root_permlink": "dns-via-steem-deutsche-version-deutsch", - "title": "DNS via STEEM [Deutsche Version] #deutsch", - "total_payout_value": { - "amount": "45460", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-09T10:05:24", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "steemit-de", - "author_rewards": 0, - "beneficiaries": [], - "body": "Der Account hier wurde leider geschlossen. Der Key ging verloren. Machen hier weiter und haben jetzt Backups", - "cashout_time": "1969-12-31T23:59:59", - "category": "namecoin", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-09T10:05:24", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 2, - "id": 700627, - "json_metadata": "{\"tags\":[\"namecoin\"]}", - "last_payout": "2016-09-08T21:40:24", - "last_update": "2016-08-09T10:05:24", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 1, - "parent_author": "rittr", - "parent_permlink": "re-steemit-germany-dns-via-steem-deutsche-version-20160809t093544531z", - "percent_hbd": 10000, - "permlink": "re-rittr-re-steemit-germany-dns-via-steem-deutsche-version-20160809t100526949z", - "reward_weight": 10000, - "root_author": "steemit-germany", - "root_permlink": "dns-via-steem-deutsche-version", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-09T10:17:45", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "steemit-germany", - "author_rewards": 16, - "beneficiaries": [], - "body": "

Original post by @dantheman

\n

\n

Da Steem beliebige Daten welche an einem Account gekn\u00fcpft sind unterst\u00fctzt, liegt es nahe f\u00fcr Erfahrene Entwickler die von Namecoin und \u00e4hnlichen Projekten genutzt werden auf Steem zu portieren.

\n

Sind diese Tools erst vorhanden, kann der Steem-Account Name als Domain f\u00fcr die eigene Webseite genutzt werden.

\n

Ich bin mir sicher, dass derjenige, welcher zuerst benutzerfreundliche und qualitative Tools ver\u00f6ffentlicht um DNS-Abfragen mittels der Metadaten des Steem-Accounts zu erm\u00f6glichen, eine Flut von Upvotes erh\u00e4lt.

\n

Nur eine Idee am Rande f\u00fcr jene die gewinnbringende Post wollen.

\n

Vorteile

\n
    \n
  • Dezentralisierte TLS (HTTPS) zertifizierte Validierung, gest\u00fctzt vom Blockchain Konsens\u00a0
  • \n
  • Sicherung der Meinungsfreiheit im Internet durch resistentmachung gegen Zensur
  • \n
  • Zugriff auf Webseiten durch .steem Top-Level Domains
  • \n
  • Verkn\u00fcpfte Identit\u00e4tsinformationen wie GPG oder OTR Schl\u00fcssel sowieso Emails, Bitcoins und Bitmessage-Adressen an eine Identit\u00e4t deiner Wahl
  • \n
", - "cashout_time": "1969-12-31T23:59:59", - "category": "namecoin", - "children": 6, - "children_abs_rshares": 0, - "created": "2016-08-09T07:44:57", - "curator_payout_value": { - "amount": "6", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 699424, - "json_metadata": "{\"tags\":[\"namecoin\",\"dns\",\"steem\",\"bounty\",\"deutsch\"],\"users\":[\"dantheman\"],\"image\":[\"https://i.imgsafe.org/9842418ea3.png\"],\"links\":[\"https://steemit.com/namecoin/@dantheman/dns-via-steem\"]}", - "last_payout": "2016-09-08T21:40:24", - "last_update": "2016-08-09T09:37:48", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 6, - "parent_author": "", - "parent_permlink": "namecoin", - "percent_hbd": 10000, - "permlink": "dns-via-steem-deutsche-version", - "reward_weight": 10000, - "root_author": "steemit-germany", - "root_permlink": "dns-via-steem-deutsche-version", - "title": "DNS via STEEM [Deutsche Version]", - "total_payout_value": { - "amount": "32", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-09T10:17:45", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "steemit-germany", - "author_rewards": 0, - "beneficiaries": [], - "body": "Ist in Arbeit :)", - "cashout_time": "1969-12-31T23:59:59", - "category": "namecoin", - "children": 2, - "children_abs_rshares": 0, - "created": "2016-08-09T09:38:06", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 2, - "id": 700387, - "json_metadata": "{\"tags\":[\"namecoin\"]}", - "last_payout": "2016-09-08T21:40:24", - "last_update": "2016-08-09T09:38:06", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 1, - "parent_author": "rittr", - "parent_permlink": "re-steemit-germany-dns-via-steem-deutsche-version-20160809t093544531z", - "percent_hbd": 10000, - "permlink": "re-rittr-re-steemit-germany-dns-via-steem-deutsche-version-20160809t093806686z", - "reward_weight": 10000, - "root_author": "steemit-germany", - "root_permlink": "dns-via-steem-deutsche-version", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-14T17:55:33", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "steemit-inga", - "author_rewards": 2020, - "beneficiaries": [], - "body": "\"IMG_9517edc90.jpg\"\n\nMy name is Inga. I am a Latvian at heart, adventure lover, 10+years yogi, licensed stock broker, photographer, traveler, pescaterian, chess playing sapiosexual, great friend and true believer in doing good for others. My glass is always half full, sometimes it has kambucha sometimes tequila. \n\nI was born in LATVIA, Small country by the Baltic sea. Came to America 14 years and since then I have lived in California, Colorado, Virginia and now call beautiful Salt Lake City Utah my home.\n\n@mranderson introduced me to Steemit, my first gig was the translation for the app in Latvian. https://steemit.com/writing/@kencode/do-you-know-a-foreign-language-crowdvoting\n\nMy first post is introduction to baby girl Zariah and her family, I have been brewing it for few weeks since I took portraits of the little girl who is on life support and shows well what a \"Fighter\" means since her birth. I believe Steemit community is ready to combine its steampower and help her! Please UPVOTE, SHARE and Help me to Help Zariah!\n\nhttps://steemit.com/votefunding/@steemit-inga/my-name-is-inga-and-steemers-please-multiply-community-healing-power-and-help-this-amazing-little-fighter", - "cashout_time": "1969-12-31T23:59:59", - "category": "introduceyourself", - "children": 9, - "children_abs_rshares": 0, - "created": "2016-08-02T14:23:09", - "curator_payout_value": { - "amount": "1575", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 559995, - "json_metadata": "{\"tags\":[\"introduceyourself\",\"votefunding\",\"yoga\",\"photography\",\"finance\"],\"users\":[\"mranderson\"],\"image\":[\"https://www.steemimg.com/images/2016/08/02/IMG_9517edc90.jpg\"],\"links\":[\"https://steemit.com/writing/@kencode/do-you-know-a-foreign-language-crowdvoting\"]}", - "last_payout": "2016-09-02T04:02:27", - "last_update": "2016-08-02T14:23:09", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 48, - "parent_author": "", - "parent_permlink": "introduceyourself", - "percent_hbd": 10000, - "permlink": "i-was-born-in-latvia-small-country-by-the-baltic-sea-my-glass-is-always-half-full-sometimes-it-has-kambucha-sometimes-tequila", - "reward_weight": 10000, - "root_author": "steemit-inga", - "root_permlink": "i-was-born-in-latvia-small-country-by-the-baltic-sea-my-glass-is-always-half-full-sometimes-it-has-kambucha-sometimes-tequila", - "title": "I was born in LATVIA, Small country by the Baltic sea. My glass is always half full, sometimes it has kambucha sometimes tequila.", - "total_payout_value": { - "amount": "4828", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-24T09:30:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit", + "author_rewards": 3548, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "children_abs_rshares": 0, + "created": "2016-03-30T18:30:18", + "curator_payout_value": { + "amount": "756", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 90, + "parent_author": "", + "parent_permlink": "meta", + "percent_hbd": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Welcome to Steem!", + "total_payout_value": { + "amount": "942", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-06-10T08:55:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-awesome", + "author_rewards": 0, + "beneficiaries": [], + "body": ":)", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-06-10T08:03:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 27842, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-06-10T08:03:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -401748374094, + "net_votes": -1, + "parent_author": "", + "parent_permlink": "steemit", + "percent_hbd": 10000, + "permlink": "show-me-some-love-please", + "reward_weight": 10000, + "root_author": "steemit-awesome", + "root_permlink": "show-me-some-love-please", + "title": "show me some love please?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-06-10T08:02:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-awesome", + "author_rewards": 0, + "beneficiaries": [], + "body": "who can upvote me?", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-06-10T08:00:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 27840, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-06-10T08:00:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -75903272807, + "net_votes": 0, + "parent_author": "", + "parent_permlink": "steemit", + "percent_hbd": 10000, + "permlink": "what-is-steemit", + "reward_weight": 10000, + "root_author": "steemit-awesome", + "root_permlink": "what-is-steemit", + "title": "What is Steemit", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-01T20:01:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-com", + "author_rewards": 0, + "beneficiaries": [], + "body": "grat", + "cashout_time": "1969-12-31T23:59:59", + "category": "holiday", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-01T20:01:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 543507, + "json_metadata": "{\"tags\":[\"holiday\"]}", + "last_payout": "2016-08-31T15:38:18", + "last_update": "2016-08-01T20:01:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "grimjo33", + "parent_permlink": "tangkuban-perahu-another-beautiful-indonesia-tourism-destination", + "percent_hbd": 10000, + "permlink": "re-grimjo33-tangkuban-perahu-another-beautiful-indonesia-tourism-destination-20160801t200152355z", + "reward_weight": 10000, + "root_author": "grimjo33", + "root_permlink": "tangkuban-perahu-another-beautiful-indonesia-tourism-destination", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-01T20:06:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-com", + "author_rewards": 0, + "beneficiaries": [], + "body": "why so naiF", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-01T20:06:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 543657, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-09-01T23:15:57", + "last_update": "2016-08-01T20:06:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "riensen", + "parent_permlink": "steemit-etiquette-using-95-bot-accounts-to-upvote-your-own-content-fair-game-or-not-cool", + "percent_hbd": 10000, + "permlink": "re-riensen-steemit-etiquette-using-95-bot-accounts-to-upvote-your-own-content-fair-game-or-not-cool-20160801t200656898z", + "reward_weight": 10000, + "root_author": "riensen", + "root_permlink": "steemit-etiquette-using-95-bot-accounts-to-upvote-your-own-content-fair-game-or-not-cool", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T19:09:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-de", + "author_rewards": 22090, + "beneficiaries": [], + "body": "

\u00a0Original post by @dantheman\u00a0

\n

\n

Da Steem beliebige Daten welche an einem Account gekn\u00fcpft sind unterst\u00fctzt, liegt es nahe f\u00fcr Erfahrene Entwickler die von Namecoin und \u00e4hnlichen Projekten genutzt werden auf Steem zu portieren.

\n

Sind diese Tools erst vorhanden, kann der Steem-Account Name als Domain f\u00fcr die eigene Webseite genutzt werden.

\n

Ich bin mir sicher, dass derjenige, welcher zuerst benutzerfreundliche und qualitative Tools ver\u00f6ffentlicht um DNS-Abfragen mittels der Metadaten des Steem-Accounts zu erm\u00f6glichen, eine Flut von Upvotes erh\u00e4lt.

\n

Nur eine Idee am Rande f\u00fcr jene die gewinnbringende Post wollen.

\n

Vorteile

\n
    \n
  • Dezentralisierte TLS (HTTPS) zertifizierte Validierung, gest\u00fctzt vom Blockchain Konsens
  • \n
  • Sicherung der Meinungsfreiheit im Internet durch resistentmachung gegen Zensur
  • \n
  • Zugriff auf Webseiten durch .steem Top-Level Domains
  • \n
  • Verkn\u00fcpfte Identit\u00e4tsinformationen wie GPG oder OTR Schl\u00fcssel sowieso Emails, Bitcoins und Bitmessage-Adressen an eine Identit\u00e4t deiner Wahl
  • \n
\n

Steemit-de wird die wichtigsten Publikationen und popul\u00e4ren Post ins Deutsche \u00fcbersetzten, um das Wachstum von Steemit zu beschleunigen

", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-09T10:04:48", + "curator_payout_value": { + "amount": "9740", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 700619, + "json_metadata": "{\"tags\":[\"namecoin\",\"dns\",\"steem\",\"bounty\",\"deutsch\"],\"image\":[\"https://i.imgsafe.org/9aa30b795c.png\"],\"links\":[\"https://steemit.com/namecoin/@dantheman/dns-via-steem\",\"https://steemit.com/@dantheman\"]}", + "last_payout": "2016-09-08T23:23:39", + "last_update": "2016-08-09T10:04:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 50, + "parent_author": "", + "parent_permlink": "namecoin", + "percent_hbd": 10000, + "permlink": "dns-via-steem-deutsche-version-deutsch", + "reward_weight": 10000, + "root_author": "steemit-de", + "root_permlink": "dns-via-steem-deutsche-version-deutsch", + "title": "DNS via STEEM [Deutsche Version] #deutsch", + "total_payout_value": { + "amount": "45460", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T10:05:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-de", + "author_rewards": 0, + "beneficiaries": [], + "body": "Der Account hier wurde leider geschlossen. Der Key ging verloren. Machen hier weiter und haben jetzt Backups", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-09T10:05:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 700627, + "json_metadata": "{\"tags\":[\"namecoin\"]}", + "last_payout": "2016-09-08T21:40:24", + "last_update": "2016-08-09T10:05:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "rittr", + "parent_permlink": "re-steemit-germany-dns-via-steem-deutsche-version-20160809t093544531z", + "percent_hbd": 10000, + "permlink": "re-rittr-re-steemit-germany-dns-via-steem-deutsche-version-20160809t100526949z", + "reward_weight": 10000, + "root_author": "steemit-germany", + "root_permlink": "dns-via-steem-deutsche-version", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T10:17:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-germany", + "author_rewards": 16, + "beneficiaries": [], + "body": "

Original post by @dantheman

\n

\n

Da Steem beliebige Daten welche an einem Account gekn\u00fcpft sind unterst\u00fctzt, liegt es nahe f\u00fcr Erfahrene Entwickler die von Namecoin und \u00e4hnlichen Projekten genutzt werden auf Steem zu portieren.

\n

Sind diese Tools erst vorhanden, kann der Steem-Account Name als Domain f\u00fcr die eigene Webseite genutzt werden.

\n

Ich bin mir sicher, dass derjenige, welcher zuerst benutzerfreundliche und qualitative Tools ver\u00f6ffentlicht um DNS-Abfragen mittels der Metadaten des Steem-Accounts zu erm\u00f6glichen, eine Flut von Upvotes erh\u00e4lt.

\n

Nur eine Idee am Rande f\u00fcr jene die gewinnbringende Post wollen.

\n

Vorteile

\n
    \n
  • Dezentralisierte TLS (HTTPS) zertifizierte Validierung, gest\u00fctzt vom Blockchain Konsens\u00a0
  • \n
  • Sicherung der Meinungsfreiheit im Internet durch resistentmachung gegen Zensur
  • \n
  • Zugriff auf Webseiten durch .steem Top-Level Domains
  • \n
  • Verkn\u00fcpfte Identit\u00e4tsinformationen wie GPG oder OTR Schl\u00fcssel sowieso Emails, Bitcoins und Bitmessage-Adressen an eine Identit\u00e4t deiner Wahl
  • \n
", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 6, + "children_abs_rshares": 0, + "created": "2016-08-09T07:44:57", + "curator_payout_value": { + "amount": "6", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 699424, + "json_metadata": "{\"tags\":[\"namecoin\",\"dns\",\"steem\",\"bounty\",\"deutsch\"],\"users\":[\"dantheman\"],\"image\":[\"https://i.imgsafe.org/9842418ea3.png\"],\"links\":[\"https://steemit.com/namecoin/@dantheman/dns-via-steem\"]}", + "last_payout": "2016-09-08T21:40:24", + "last_update": "2016-08-09T09:37:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "namecoin", + "percent_hbd": 10000, + "permlink": "dns-via-steem-deutsche-version", + "reward_weight": 10000, + "root_author": "steemit-germany", + "root_permlink": "dns-via-steem-deutsche-version", + "title": "DNS via STEEM [Deutsche Version]", + "total_payout_value": { + "amount": "32", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T10:17:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-germany", + "author_rewards": 0, + "beneficiaries": [], + "body": "Ist in Arbeit :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-09T09:38:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 700387, + "json_metadata": "{\"tags\":[\"namecoin\"]}", + "last_payout": "2016-09-08T21:40:24", + "last_update": "2016-08-09T09:38:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "rittr", + "parent_permlink": "re-steemit-germany-dns-via-steem-deutsche-version-20160809t093544531z", + "percent_hbd": 10000, + "permlink": "re-rittr-re-steemit-germany-dns-via-steem-deutsche-version-20160809t093806686z", + "reward_weight": 10000, + "root_author": "steemit-germany", + "root_permlink": "dns-via-steem-deutsche-version", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T17:55:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-inga", + "author_rewards": 2020, + "beneficiaries": [], + "body": "\"IMG_9517edc90.jpg\"\n\nMy name is Inga. I am a Latvian at heart, adventure lover, 10+years yogi, licensed stock broker, photographer, traveler, pescaterian, chess playing sapiosexual, great friend and true believer in doing good for others. My glass is always half full, sometimes it has kambucha sometimes tequila. \n\nI was born in LATVIA, Small country by the Baltic sea. Came to America 14 years and since then I have lived in California, Colorado, Virginia and now call beautiful Salt Lake City Utah my home.\n\n@mranderson introduced me to Steemit, my first gig was the translation for the app in Latvian. https://steemit.com/writing/@kencode/do-you-know-a-foreign-language-crowdvoting\n\nMy first post is introduction to baby girl Zariah and her family, I have been brewing it for few weeks since I took portraits of the little girl who is on life support and shows well what a \"Fighter\" means since her birth. I believe Steemit community is ready to combine its steampower and help her! Please UPVOTE, SHARE and Help me to Help Zariah!\n\nhttps://steemit.com/votefunding/@steemit-inga/my-name-is-inga-and-steemers-please-multiply-community-healing-power-and-help-this-amazing-little-fighter", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 9, + "children_abs_rshares": 0, + "created": "2016-08-02T14:23:09", + "curator_payout_value": { + "amount": "1575", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 559995, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"votefunding\",\"yoga\",\"photography\",\"finance\"],\"users\":[\"mranderson\"],\"image\":[\"https://www.steemimg.com/images/2016/08/02/IMG_9517edc90.jpg\"],\"links\":[\"https://steemit.com/writing/@kencode/do-you-know-a-foreign-language-crowdvoting\"]}", + "last_payout": "2016-09-02T04:02:27", + "last_update": "2016-08-02T14:23:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 48, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "i-was-born-in-latvia-small-country-by-the-baltic-sea-my-glass-is-always-half-full-sometimes-it-has-kambucha-sometimes-tequila", + "reward_weight": 10000, + "root_author": "steemit-inga", + "root_permlink": "i-was-born-in-latvia-small-country-by-the-baltic-sea-my-glass-is-always-half-full-sometimes-it-has-kambucha-sometimes-tequila", + "title": "I was born in LATVIA, Small country by the Baltic sea. My glass is always half full, sometimes it has kambucha sometimes tequila.", + "total_payout_value": { + "amount": "4828", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json index 5c91fec3..d63a583c 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json @@ -43,7 +43,7 @@ "precision": 3, "nai": "@@000000013" }, - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "allow_replies": true, "allow_votes": true, "allow_curation_rewards": true, @@ -92,7 +92,7 @@ "precision": 3, "nai": "@@000000013" }, - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "allow_replies": true, "allow_votes": true, "allow_curation_rewards": true, @@ -141,7 +141,7 @@ "precision": 3, "nai": "@@000000013" }, - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "allow_replies": true, "allow_votes": true, "allow_curation_rewards": true, @@ -190,7 +190,7 @@ "precision": 3, "nai": "@@000000013" }, - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "allow_replies": true, "allow_votes": true, "allow_curation_rewards": true, @@ -239,7 +239,7 @@ "precision": 3, "nai": "@@000000013" }, - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "allow_replies": true, "allow_votes": true, "allow_curation_rewards": true, @@ -288,7 +288,7 @@ "precision": 3, "nai": "@@000000013" }, - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "allow_replies": true, "allow_votes": true, "allow_curation_rewards": true, @@ -337,7 +337,7 @@ "precision": 3, "nai": "@@000000013" }, - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "allow_replies": true, "allow_votes": true, "allow_curation_rewards": true, @@ -386,7 +386,7 @@ "precision": 3, "nai": "@@000000013" }, - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "allow_replies": true, "allow_votes": true, "allow_curation_rewards": true, @@ -435,7 +435,7 @@ "precision": 3, "nai": "@@000000013" }, - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "allow_replies": true, "allow_votes": true, "allow_curation_rewards": true, @@ -484,7 +484,7 @@ "precision": 3, "nai": "@@000000013" }, - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "allow_replies": true, "allow_votes": true, "allow_curation_rewards": true, diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json index 1caafe64..b727bca5 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 951782, - "author": "allgoodthings", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160914t191355279z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Congrats to you all! I am new to Steemit and excited to partake in the next challenge. I truly enjoying preparing food!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-09-14T19:13:51", - "created": "2016-09-14T19:13:51", - "active": "2016-09-14T19:13:51", - "last_payout": "1970-01-01T00:00:00", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 944322, - "author": "haphazard-hstead", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160913t214242068z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Nice to hear that you are feeling a lot better, @givemeyoursteem! I'm glad I checked the foodchallenge group on the Steemit chat. Congratulations, everyone! I think all the response just shows how people really connected with the food challenge. I'm looking forward to the next one!", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", - "last_update": "2016-09-13T21:42:36", - "created": "2016-09-13T21:42:36", - "active": "2016-09-13T21:42:36", - "last_payout": "1970-01-01T00:00:00", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 929311, - "author": "englishtchrivy", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160912t092547152z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "@knozaki2015 thank you for the 25 SBD and the congrats memo. I appreciate it a great lot! You made me 25SBD richer!\nThanks to everyone who joined this challenge! This was the most fun food challenge I've ever joined- thanks to all the very encouraging co - challengers who participated!\n Congratulations @meesterboom for bagging the 1st prize! Hoot - hoot! Men power!\n\n@givemeyoursteem Thank you for announcing it. I HOPE YOU GO ON WITH WHAT YOU ARE DOING. YOU HAVE BEEN AN INSPIRATION TO MANY MINNOWS WHO ARE JOINING THE FOOD CHALLENGE. IF THE OTHER MINNOWS DON'T SEE THAT YOU ARE DOING THIS TO ACTUALLY SUPPORT US THEN FOR SURE NOT HAVING A FOOD CHALLENGE FOR A WEEK WOULD SURELY TEACH THEM A LESSON. I HOPE YOU SCROLLED DOWN TO THIS POST'S COMMENT THREAD AND DID NOT JUST READ YOUR REPLY FOLDER https://steemit.com/foodchallenge/@givemeyoursteem/steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money\n\nIT'S TRUE SOME MINNOWS HAVE WRITTEN MESSAGES SOME OTHER MINNOWS WHO PARTICIPATED CAN'T GET A GRIP OF , I GUESS THAT'S THE RESULT OF COMMUNICATING ON WRITTEN TEXTS.\nIT'S NOT ACCEPTABLE TO CALL YOU A SCAM BECAUSE YOU HAVE DELIVERED THE RESULTS OF THE 1ST 3 FOOD CHALLENGES ON TIME. WHOEVER HAS CALLED YOU THAT SHOULD APOLOGIZE HERE - OR MAYBE IN AN ARTICLE.\nPLEASE GO ON MAYBE ITS JUST ONE MINNOW WHO CALLED YOU THAT? THE OTHERS WHO PARTICIPATED HERE, INCLUDING MYSELF APPRECIATE WHAT YOU DO A GREAT LOT.\n@givemeyoursteem YOU'RE A HERO AND AN INSPIRATION HERE IN STEEMIT! YOU HAVE HELPED MANY MINNOWS GET NOTICED!\nYOU KNOW YOURSELF BETTER THAN ANYONE ELSE SO WHATEVER NASTY THINGS PEOPLE MAY CALL YOU OR THROW YOU HERE - DON'T GIVE A DAMN ON THAT! I HOPE YOU GO ON! \nTake care and I hope you get to recuperate soon. Best regards from this side of the earth <3", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"meesterboom\",\"givemeyoursteem\"],\"links\":[\"https://steemit.com/foodchallenge/@givemeyoursteem/steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money\"]}", - "last_update": "2016-09-12T09:54:03", - "created": "2016-09-12T09:25:45", - "active": "2016-09-12T09:54:03", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 0, - "net_rshares": "12919640292", - "abs_rshares": "12919640292", - "vote_rshares": "12919640292", - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 925249, - "author": "oumar", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t205445094z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Cool! I won 2th place!! Thanks @givemeyoursteem and thanks to all the sponsors!\n\nPlease don't listen to the people criticizing we deeply appreciate your effort on organizing this! Some of us just were anxious to know the results hehe but that is no reason to say bad things. Thanks again for making this possible and I hope there are more challenges soon! Also I hope you are already feeling better.", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", - "last_update": "2016-09-11T20:57:36", - "created": "2016-09-11T20:54:45", - "active": "2016-09-11T20:57:36", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 0, - "net_rshares": "12919640292", - "abs_rshares": "12919640292", - "vote_rshares": "12919640292", - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 924238, - "author": "vi1son", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t185742671z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Do not listen to what say the FUDers and haters. Be strong @givemeyoursteem! We all with you!", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", - "last_update": "2016-09-11T18:57:45", - "created": "2016-09-11T18:57:45", - "active": "2016-09-14T06:01:06", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 1, - "net_rshares": "12919640292", - "abs_rshares": "12919640292", - "vote_rshares": "12919640292", - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 922314, - "author": "papa-pepper", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t145241389z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "## Excellent choices and excellent dishes.\n# Congrats @meesterboom and the rest of the winners!", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"meesterboom\"]}", - "last_update": "2016-09-11T14:52:42", - "created": "2016-09-11T14:52:42", - "active": "2016-09-11T14:52:42", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 922188, - "author": "alitas", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t143031067z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Congratulations to the winners !\n\n•♥•☆ @alitas •☆•♥•", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"alitas\"]}", - "last_update": "2016-09-11T14:30:39", - "created": "2016-09-11T14:30:39", - "active": "2016-09-11T14:30:39", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 922015, - "author": "gringalicious", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t140113934z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Thank you again for hosting the Challenge and I very much appreciate being the wild pick. Looking forward to the next challenge!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-09-11T14:01:00", - "created": "2016-09-11T14:01:00", - "active": "2016-09-11T14:01:00", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 921769, - "author": "celebr1ty", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t132117882z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Thanks a lot!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-09-11T13:20:33", - "created": "2016-09-11T13:20:33", - "active": "2016-09-11T13:20:33", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 921750, - "author": "bullionstackers", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t131427021z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Good stuffs \nI know the pork goes Bang Bang at @meesterboom\n👍\nCongratulations to all winners 👍❤️\nSweet ❤️\nKeep on Steeming ✅👍❤️\nGotta Love it to be in it", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"meesterboom\"]}", - "last_update": "2016-09-11T13:14:27", - "created": "2016-09-11T13:14:27", - "active": "2016-09-11T13:14:27", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-09-14T19:13:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "allgoodthings", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congrats to you all! I am new to Steemit and excited to partake in the next challenge. I truly enjoying preparing food!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-14T19:13:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 951782, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T19:13:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160914t191355279z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-13T21:42:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "haphazard-hstead", + "author_rewards": 0, + "beneficiaries": [], + "body": "Nice to hear that you are feeling a lot better, @givemeyoursteem! I'm glad I checked the foodchallenge group on the Steemit chat. Congratulations, everyone! I think all the response just shows how people really connected with the food challenge. I'm looking forward to the next one!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-13T21:42:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 944322, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-13T21:42:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160913t214242068z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "12919640292", + "active": "2016-09-12T09:54:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "englishtchrivy", + "author_rewards": 0, + "beneficiaries": [], + "body": "@knozaki2015 thank you for the 25 SBD and the congrats memo. I appreciate it a great lot! You made me 25SBD richer!\nThanks to everyone who joined this challenge! This was the most fun food challenge I've ever joined- thanks to all the very encouraging co - challengers who participated!\n Congratulations @meesterboom for bagging the 1st prize! Hoot - hoot! Men power!\n\n@givemeyoursteem Thank you for announcing it. I HOPE YOU GO ON WITH WHAT YOU ARE DOING. YOU HAVE BEEN AN INSPIRATION TO MANY MINNOWS WHO ARE JOINING THE FOOD CHALLENGE. IF THE OTHER MINNOWS DON'T SEE THAT YOU ARE DOING THIS TO ACTUALLY SUPPORT US THEN FOR SURE NOT HAVING A FOOD CHALLENGE FOR A WEEK WOULD SURELY TEACH THEM A LESSON. I HOPE YOU SCROLLED DOWN TO THIS POST'S COMMENT THREAD AND DID NOT JUST READ YOUR REPLY FOLDER https://steemit.com/foodchallenge/@givemeyoursteem/steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money\n\nIT'S TRUE SOME MINNOWS HAVE WRITTEN MESSAGES SOME OTHER MINNOWS WHO PARTICIPATED CAN'T GET A GRIP OF , I GUESS THAT'S THE RESULT OF COMMUNICATING ON WRITTEN TEXTS.\nIT'S NOT ACCEPTABLE TO CALL YOU A SCAM BECAUSE YOU HAVE DELIVERED THE RESULTS OF THE 1ST 3 FOOD CHALLENGES ON TIME. WHOEVER HAS CALLED YOU THAT SHOULD APOLOGIZE HERE - OR MAYBE IN AN ARTICLE.\nPLEASE GO ON MAYBE ITS JUST ONE MINNOW WHO CALLED YOU THAT? THE OTHERS WHO PARTICIPATED HERE, INCLUDING MYSELF APPRECIATE WHAT YOU DO A GREAT LOT.\n@givemeyoursteem YOU'RE A HERO AND AN INSPIRATION HERE IN STEEMIT! YOU HAVE HELPED MANY MINNOWS GET NOTICED!\nYOU KNOW YOURSELF BETTER THAN ANYONE ELSE SO WHATEVER NASTY THINGS PEOPLE MAY CALL YOU OR THROW YOU HERE - DON'T GIVE A DAMN ON THAT! I HOPE YOU GO ON! \nTake care and I hope you get to recuperate soon. Best regards from this side of the earth <3", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-12T09:25:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 929311, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"meesterboom\",\"givemeyoursteem\"],\"links\":[\"https://steemit.com/foodchallenge/@givemeyoursteem/steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-12T09:54:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": "12919640292", + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160912t092547152z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "12919640292" + }, + { + "abs_rshares": "12919640292", + "active": "2016-09-11T20:57:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "oumar", + "author_rewards": 0, + "beneficiaries": [], + "body": "Cool! I won 2th place!! Thanks @givemeyoursteem and thanks to all the sponsors!\n\nPlease don't listen to the people criticizing we deeply appreciate your effort on organizing this! Some of us just were anxious to know the results hehe but that is no reason to say bad things. Thanks again for making this possible and I hope there are more challenges soon! Also I hope you are already feeling better.", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T20:54:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 925249, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T20:57:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": "12919640292", + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t205445094z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "12919640292" + }, + { + "abs_rshares": "12919640292", + "active": "2016-09-14T06:01:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vi1son", + "author_rewards": 0, + "beneficiaries": [], + "body": "Do not listen to what say the FUDers and haters. Be strong @givemeyoursteem! We all with you!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-09-11T18:57:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 924238, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T18:57:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": "12919640292", + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t185742671z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "12919640292" + }, + { + "abs_rshares": 0, + "active": "2016-09-11T14:52:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "papa-pepper", + "author_rewards": 0, + "beneficiaries": [], + "body": "## Excellent choices and excellent dishes.\n# Congrats @meesterboom and the rest of the winners!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T14:52:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 922314, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"meesterboom\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T14:52:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t145241389z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T14:30:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "alitas", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congratulations to the winners !\n\n\u2022\u2665\u2022\u2606 @alitas \u2022\u2606\u2022\u2665\u2022", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T14:30:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 922188, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"alitas\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T14:30:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t143031067z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T14:01:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gringalicious", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you again for hosting the Challenge and I very much appreciate being the wild pick. Looking forward to the next challenge!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T14:01:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 922015, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T14:01:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t140113934z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T13:20:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "celebr1ty", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thanks a lot!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T13:20:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 921769, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T13:20:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t132117882z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T13:14:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "bullionstackers", + "author_rewards": 0, + "beneficiaries": [], + "body": "Good stuffs \nI know the pork goes Bang Bang at @meesterboom\n\ud83d\udc4d\nCongratulations to all winners \ud83d\udc4d\u2764\ufe0f\nSweet \u2764\ufe0f\nKeep on Steeming \u2705\ud83d\udc4d\u2764\ufe0f\nGotta Love it to be in it", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T13:14:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 921750, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"meesterboom\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T13:14:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t131427021z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json index 401b15a5..b5b85780 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 779033, - "author": "r4fken", - "permlink": "re-givemeyoursteem-re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t160212524z", - "category": "steemit", - "parent_author": "givemeyoursteem", - "parent_permlink": "re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t152858919z", - "title": "", - "body": "Same here, we invite you to bring cookies to Brussels tho.", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_update": "2016-08-28T16:02:15", - "created": "2016-08-28T16:02:15", - "active": "2016-08-28T16:02:15", - "last_payout": "2016-08-30T03:35:57", - "depth": 2, - "children": 0, - "net_rshares": -490754060752, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": -7, - "root_author": "allasyummyfood", - "root_permlink": "steemit-cookies-for-the-london-meet-up", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778975, - "author": "the-future", - "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t155605821z", - "category": "steemitphotochallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "title": "", - "body": "Sweden is awesome man!", - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", - "last_update": "2016-08-28T15:56:12", - "created": "2016-08-28T15:56:12", - "active": "2016-08-28T15:58:42", - "last_payout": "2016-08-29T15:16:36", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778824, - "author": "allasyummyfood", - "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t154507601z", - "category": "steemitphotochallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "title": "", - "body": "stunning pictures!! wow I'm speechless!", - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", - "last_update": "2016-08-28T15:45:06", - "created": "2016-08-28T15:45:06", - "active": "2016-08-28T15:58:09", - "last_payout": "2016-08-29T15:16:36", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778773, - "author": "allasyummyfood", - "permlink": "re-givemeyoursteem-re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t154119664z", - "category": "steemit", - "parent_author": "givemeyoursteem", - "parent_permlink": "re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t152858919z", - "title": "", - "body": "You will just have to visit us here next time :))", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_update": "2016-08-28T15:41:18", - "created": "2016-08-28T15:41:18", - "active": "2016-08-28T15:41:18", - "last_payout": "2016-08-30T03:35:57", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "allasyummyfood", - "root_permlink": "steemit-cookies-for-the-london-meet-up", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778749, - "author": "meesterboom", - "permlink": "re-givemeyoursteem-re-meesterboom-hearty-vegetable-soup-easy-and-quick-20160828t153933112z", - "category": "recipes", - "parent_author": "givemeyoursteem", - "parent_permlink": "re-meesterboom-hearty-vegetable-soup-easy-and-quick-20160828t152731480z", - "title": "", - "body": "Its a pleasure!", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-28T15:39:33", - "created": "2016-08-28T15:39:33", - "active": "2016-08-28T15:39:33", - "last_payout": "2016-08-29T13:39:57", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "meesterboom", - "root_permlink": "hearty-vegetable-soup-easy-and-quick", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778505, - "author": "givemeyoursteem", - "permlink": "re-givemeyoursteem-re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t151900275z", - "category": "contest", - "parent_author": "givemeyoursteem", - "parent_permlink": "re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t150753974z", - "title": "", - "body": "I think Swag Sunday is a great idea and agree with @halo , it's a great bonus for us, I'm so thankful! You should also get rewarded :) A \"resteem\" feature seems like a really good idea, hope it become true!", - "json_metadata": "{\"tags\":[\"contest\"],\"users\":[\"halo\"]}", - "last_update": "2016-08-28T15:19:00", - "created": "2016-08-28T15:19:00", - "active": "2016-08-28T19:08:27", - "last_payout": "2016-08-29T07:30:36", - "depth": 2, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "condra", - "root_permlink": "swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778494, - "author": "meesterboom", - "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t151812366z", - "category": "steemitphotochallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "title": "", - "body": "That sunset one in particular is stunning.", - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", - "last_update": "2016-08-28T15:18:36", - "created": "2016-08-28T15:18:12", - "active": "2016-08-28T15:22:42", - "last_payout": "2016-08-29T15:16:36", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778395, - "author": "allasyummyfood", - "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t150830108z", - "category": "steemitphotochallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "title": "", - "body": "Really beautiful pictures! thank you for sharing :) x", - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", - "last_update": "2016-08-28T15:08:30", - "created": "2016-08-28T15:08:30", - "active": "2016-08-28T15:22:09", - "last_payout": "2016-08-29T15:16:36", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 777927, - "author": "iggy", - "permlink": "re-givemeyoursteem-re-iggy-sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life-20160828t141345606z", - "category": "photography", - "parent_author": "givemeyoursteem", - "parent_permlink": "re-iggy-sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life-20160828t140609818z", - "title": "", - "body": "Vikaresjön lake in Gislaved Komun , 60 km from Jonkoping . And the fish is pike perch , on Swedish is i think joos or something like that", - "json_metadata": "{\"tags\":[\"photography\"]}", - "last_update": "2016-08-28T14:14:06", - "created": "2016-08-28T14:14:06", - "active": "2016-08-28T14:14:06", - "last_payout": "2016-08-29T13:12:09", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "iggy", - "root_permlink": "sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 777876, - "author": "iggy", - "permlink": "re-givemeyoursteem-re-iggy-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t140721103z", - "category": "steemitphotochallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "re-iggy-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t140244741z", - "title": "", - "body": "South or North ? I love Sweden , i have lived in Jönköping area for 3 years . Beautyfull nature and people.Now i'm moving further north to Bodo in Norway .", - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", - "last_update": "2016-08-28T14:07:42", - "created": "2016-08-28T14:07:42", - "active": "2016-08-28T14:10:33", - "last_payout": "2016-08-29T15:16:36", - "depth": 3, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-28T16:02:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "r4fken", + "author_rewards": 0, + "beneficiaries": [], + "body": "Same here, we invite you to bring cookies to Brussels tho.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T16:02:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 779033, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-30T03:35:57", + "last_update": "2016-08-28T16:02:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -490754060752, + "net_votes": -7, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t152858919z", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t160212524z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "steemit-cookies-for-the-london-meet-up", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:58:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "the-future", + "author_rewards": 0, + "beneficiaries": [], + "body": "Sweden is awesome man!", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:56:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 778975, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "2016-08-29T15:16:36", + "last_update": "2016-08-28T15:56:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t155605821z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:58:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "allasyummyfood", + "author_rewards": 0, + "beneficiaries": [], + "body": "stunning pictures!! wow I'm speechless!", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:45:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 778824, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "2016-08-29T15:16:36", + "last_update": "2016-08-28T15:45:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t154507601z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:41:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "allasyummyfood", + "author_rewards": 0, + "beneficiaries": [], + "body": "You will just have to visit us here next time :))", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T15:41:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 778773, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-30T03:35:57", + "last_update": "2016-08-28T15:41:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t152858919z", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t154119664z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "steemit-cookies-for-the-london-meet-up", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:39:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "meesterboom", + "author_rewards": 0, + "beneficiaries": [], + "body": "Its a pleasure!", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T15:39:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 778749, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-08-29T13:39:57", + "last_update": "2016-08-28T15:39:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-meesterboom-hearty-vegetable-soup-easy-and-quick-20160828t152731480z", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-re-meesterboom-hearty-vegetable-soup-easy-and-quick-20160828t153933112z", + "reward_weight": 10000, + "root_author": "meesterboom", + "root_permlink": "hearty-vegetable-soup-easy-and-quick", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:08:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "I think Swag Sunday is a great idea and agree with @halo , it's a great bonus for us, I'm so thankful! You should also get rewarded :) A \"resteem\" feature seems like a really good idea, hope it become true!", + "cashout_time": "1969-12-31T23:59:59", + "category": "contest", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:19:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 778505, + "json_metadata": "{\"tags\":[\"contest\"],\"users\":[\"halo\"]}", + "last_payout": "2016-08-29T07:30:36", + "last_update": "2016-08-28T15:19:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t150753974z", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t151900275z", + "reward_weight": 10000, + "root_author": "condra", + "root_permlink": "swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:22:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "meesterboom", + "author_rewards": 0, + "beneficiaries": [], + "body": "That sunset one in particular is stunning.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:18:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 778494, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "2016-08-29T15:16:36", + "last_update": "2016-08-28T15:18:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t151812366z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:22:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "allasyummyfood", + "author_rewards": 0, + "beneficiaries": [], + "body": "Really beautiful pictures! thank you for sharing :) x", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:08:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 778395, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "2016-08-29T15:16:36", + "last_update": "2016-08-28T15:08:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t150830108z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T14:14:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "iggy", + "author_rewards": 0, + "beneficiaries": [], + "body": "Vikaresj\u00f6n lake in Gislaved Komun , 60 km from Jonkoping . And the fish is pike perch , on Swedish is i think joos or something like that", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T14:14:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 777927, + "json_metadata": "{\"tags\":[\"photography\"]}", + "last_payout": "2016-08-29T13:12:09", + "last_update": "2016-08-28T14:14:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-iggy-sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life-20160828t140609818z", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-re-iggy-sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life-20160828t141345606z", + "reward_weight": 10000, + "root_author": "iggy", + "root_permlink": "sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T14:10:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "iggy", + "author_rewards": 0, + "beneficiaries": [], + "body": "South or North ? I love Sweden , i have lived in J\u00f6nk\u00f6ping area for 3 years . Beautyfull nature and people.Now i'm moving further north to Bodo in Norway .", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T14:07:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 777876, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "2016-08-29T15:16:36", + "last_update": "2016-08-28T14:07:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-iggy-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t140244741z", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-re-iggy-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t140721103z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json index 4da12897..3583cf26 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 779947, - "author": "givemeyoursteem", - "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "category": "foodchallenge", - "parent_author": "", - "parent_permlink": "foodchallenge", - "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", - "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", - "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", - "last_update": "2016-08-28T17:15:12", - "created": "2016-08-28T17:15:12", - "active": "2016-08-29T13:45:42", - "last_payout": "2016-08-29T20:19:39", - "depth": 0, - "children": 18, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 2374341643, - "cashout_time": "2016-09-28T20:19:39", - "max_cashout_time": "2016-09-13T01:24:24", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "576", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "131", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 588, - "net_votes": 44, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779945, - "author": "forklognews", - "permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", - "category": "bitcoin", - "parent_author": "", - "parent_permlink": "bitcoin", - "title": "Дайджест новостей – обзор главных событий биткоин-индустрии", - "body": "\n

Прошедшая неделя оказалась богатой событиями, центральным из которых для нашей редакции стало двухлетие Forklog. Два года назад, 25 августа, был зарегистрирован домен ForkLog.com, а спустя некоторое время сделаны первые публикации на сайте. Об остальных, не менее интересных событиях мира криптовалют, вы узнаете из нашего еженедельного дайджеста. 

\n

 БИРЖИ

\n

Ещё одним именинником этой недели стала криптовалютная биржа Bitstamp, которая отметила пятилетие со дня основания. К этому событию биржа приурочила конкурс с ценными призами.

\n

Но юбилеи не являются поводом прекращать работу и администрации бирж полностью разделяют это мнение, принимая где-то логичные, а где-то и неожиданные решения.

\n

Так, криптовалютная биржа GDAX начала торги четвертой по рыночной капитализации криптовалютой Litecoin. Соответствующее объявление сделано в официальном блоге биржи. Для торгов предлагается две валютные пары: резидентам США доступна пара LTC / USD, всем прочим клиентам — пара LTC / BTC.

\n

В свою очередь, 23 августа в официальном твиттере криптовалютной биржи Poloniex появилось сообщение оснятии с торгов 27 криптовалют. Торги будут прекращены 5 сентября текущего года и это решение уже вызвало некоторое недоумение сообщества, ведь в данный перечень вошли такие альткоины, как DAO, Dashcoin и Mintcoin, уровень капитализации которого достиг $1,22 млн. 

\n

\n

 Подходит к концу и нашумевшая история с биржей Bitfinex, пострадавшей в результате взлома. Администрация биржи объявила о подписании договора с инвестиционной платформой BnkToTheFuture с целью возмещения средств вкладчиков посредством долевого участия в акционерном капитале компании. 

\n

\n

 Благодаря сотрудничеству с BnkToTheFuture пользователи Bitfinex смогут обменять принадлежащие им токены BFX на соответствующую долю в iFinex Inc, зарегистрированной на Британских Виргинских Островах родительской компанией биржи.

\n

Неожиданная новость пришла на этой неделе из Турции, где ведущая криптовалютная биржи BTCTurk была вынуждена остановить работу, столкнувшись с неожиданном отказом банковского партнера от дальнейшего продолжения сотрудничества. В настоящий момент биржа предпринимает попытки вернуть средства пользователям, однако из-за блокировки банковских счетов этот процесс может затянуться. 

\n

 КОШЕЛЬКИ И ПЛАТЁЖНЫЕ СЕРВИСЫ

\n

Первым аппаратным кошельком, добавившим поддержку Ethereum, стал Trezor. Соответствующая информация размещена на странице Trezor на Github.

\n

Официального сообщения от компании-разработчика SatoshiLabs пока, впрочем, не поступало, поэтому дата официального релиза и доступности функционала на данный момент остается неизвестной.

\n

Списки рабочих валют пополнились у платёжного сервиса Bitwala, включившего поддержку Dash и Emercoin, и венесуэльской системы Cryptobuyer, добавившей Dash. Отметим, что жители Венесуэлы, у которых нет компьютеров либо телефонов с доступом в интернет, могут воспользоваться услугами местного партнёра Cryptobuyer – сетью криптовалютных банкоматов TigoCTM.

\n

Также вышла в свет новая версия Ethereum-кошелька Mist с поддержкой Coinbase Buy Widget. Одной из её главных особенностей стало включение Coinbase Buy Widget – инструмента, с помощью которого можно осуществить моментальную покупку криптовалюты на сумму до $5.

\n

В настоящий момент данная функция доступна только пользователям из США и требует наличия аккаунта на Coinbase. 

\n

\n

 БАНКИ И КОРПОРАЦИИ

\n

Неожиданным известием, способным стать предвестником глобальных изменений в мировой экономике, стало сообщение издания Financial Times о том, что ряд крупнейших мировых банков принял решение объединиться для создания новой цифровой валюты. Официальное заявление представителей банков UBS, Deutsche Bank, Santander и BNY Mellon ожидалось 24 августа, но до настоящего момента комментариев не появилось.

\n

Если это окажется не информационной уткой, то стоит ожидать, что в будущем к этой инициативе присоединятся и прочие финансовые институты со всех концов света, даже с далёкого африканского континента. Там управляющий Южно-Африканского резервного банка Лесетья Кганьяго в своем выступлении на конференции по вопросам криптобезопасности заявил, что финансовый институт уже изучает блокчейн и заинтересован в инновациях, которые может дать эта технология. 

\n
 «Как центральный банк, мы открыты к инновациям несмотря на различное отношение регуляторов к криптовалютам. Мы намерены изучить все преимущества и недостатки технологии блокчейн и других распределённых реестров», — заявил Лесетья Кганьяго. 
\n

 В свою очередь, крупнейший банк Японии Bank of Tokyo-Mitsubishi UFJ (MUFG) объявил об окончании разработкиоснованного на блокчейне прототипа, позволяющего моментально обрабатывать и верифицировать платежи по чекам. Созданное решение в потенциале может быть использовано финансовыми институтами и различными компаниями в азиатском регионе. В будущем Bank of Tokyo-Mitsubishi надеется создать и другие решения на основе блокчейна, которым можно будет найти реальное применение.

\n

От азиатских разработчиков не отстают и представители консорциума R3 CEV, запатентовавшие новый продукт на основе биткоин-технологии Concord, предназначенный для использования в инфраструктуре Уолл-стрит.

\n

Concord представляет собой универсальную платформу, связывающую воедино рынки и компании и призванную перевести функции миддл- и бэк-офисов в цифровой вариант. Это даст возможность банкам избавиться от административных накладных расходов и сэкономить миллиарды долларов. Ожидается, что альфа-версия платформы будет запущена в середине 2017 года.

\n

Всё это заставляет финансовых аналитиков и экономистов следить за блокчейном более пристально, меняя свои прогнозы относительно будущего мировой финансовой системы.

\n

В частности, финансовый аналитик Кирилл Яковенко недавно заявил, что в ближайшие два-три года криптовалюты выйдут из тени и одновременно с этим появятся новые межнациональные финансовые инструменты.

\n
«В ближайшие два-три года технологии blockchain прочно укрепятся на межбанке, вытеснят системы обмена сообщениями между ними (в частности, систему SWIFT) и станут неотъемлемой частью торгов на рынках ценных бумаг. Что же касается криптовалют в привычном понимании, то они также, скорее всего, уже в ближайшем будущем выйдут из тени и вместе с технологией blockchain получат масштабное развитие», — считает Яковенко.
\n

КОМПАНИИ

\n

Датская компания Bitshares Munich IVS, владеющая брендом BlockPay, объявила о старте ICO. В ходе кампании предполагается собрать средства на развитие BlockPay, P2P-мессенджера ECHO и системы анонимных платежей Stealth. Проведение краудфандинговой кампании запланировано на 2016 и 2017 годы. Сама кампания состоит из предварительной ICO (Pre-ICO), запланированной на август текущего года, и основной, которая будет проведена в 2017 году. Всего планируется распространить 100 миллионов токенов BlockPay.

\n

Проект по созданию блокчейна с открытым кодом Hyperledger объявил имена нового состава технического комитета. Среди основных задач комитета — рассмотрение поступающих предложений и построение первоначальной унифицированной базы исходного кода.

\n

В новом составе комитета сохранили свои места технический директор R3CEV Гендал Браун, главный разработчик архитектуры распределенных реестров Digital Asset Holdings Тамаш Блуммер, исследователь Fujitsu Харт Монтгомери, инженер Intel Мик Боумен и главный технический директор направления открытых технологий IBM Кристофер Феррис. Среди новых имен – старший технический руководитель IBM Арно ле Ор, старший блокчейн-архитектор IBM Бин Нгуен, глава технических разработок Intel Дэн Миддлтон, а также представители DTCC, Salesforce и Лондонской фондовой биржи.

\n

Американский технологический стартап Chronicled Inc. объявил о запуске открытого реестра для Интернета вещей, который был создан на блокчейне Ethereum. Этот реестр предназначен для сохранения уникальных кодов физических объектов, имеющих встроенные чипы NFC и BLE.

\n
«Теперь все создатели материальных объектов, будь-то бренды, носители интеллектуальной собственности и прочее, могут регистрировать свои защищённые от подделок чипы в публичном блокчейне», — заявил директор Chronicled Райан Орр. На данный момент стартапом поставлено около 10 000 NFC и BLE чипов.
\n

Как сообщает издание Business Insider UK, крупнейшая в США телекоммуникационная компания Verizon Communications экспериментирует с технологией блокчейн. Так, в распоряжение редакции попал патент, полученный Verizon 10 мая этого года.

\n

Из описания патента следует, что компания разработала некое блокчейн-хранилище ключей, а работы над проектом велись на протяжении трёх лет. Введение подобной блокчейн-системы в сочетании со смарт-контрактами даёт массу новых возможностей в сфере использования цифрового контента. Например, музыкальные исполнители или авторы статей будут получать свою оплату сразу же после того, как пользователь начал читать материал или прослушивать песню.

\n

Валютное управление Сингапура (MAS) выступило с предложением введения единой лицензии на осуществление деятельности для компаний, предоставляющих платежные услуги, включая криптовалютные компании.

\n

Стало известно, что биткоин-стартап Keza выкуплен филиппинской компанией Satoshi Citadel Industries, в инвестиционном портфелем которой уже присутствуют такие стартапы, как Rebit.ph, Bitbit.cash и PrepaidBitcoin.ph.

\n
«Keza создавалась с прицелом на развивающиеся рынки и для пользователей, которые не имеют доступа к глобальным рынкам капитала. Мы счастливы, что теперь видение компании сможет быть реализовано», — цитирует CEO Keza Саймона Бернса издание Silicon Angle.
\n

Децентрализованная социальная сеть Steemit сообщила о «беспрецедентном уровне трафика», сопоставимым с тем, что получали на ранних этапах своего развития Facebook и Reddit.

\n

Как говорится в заявлении Steemit, на данный момент пользователи социальной сети ежедневно размещают более 21 000 новых записей, а количество голосов в поддержку постов превышает 70 000. Это сопоставимо с ранней активностью на площадках вроде Facebook и Reddit.

\n

За несколько недель до старта краудсейла платформы распространения контента DECENT команда проекта объявила о внесении изменений в систему дистрибуции токенов DCT. Также подверглось пересмотру общее количество подлежащих к выпуску монет. Как заявили в DECENT, это решение, хотя и является стратегическим, также было принято с учетом рекомендаций сообщества.

\n

Компания Coinbase сообщила о расширении географии своего сервиса на мобильных устройствах при помощи дебетовых и кредитных карт. Теперь возможность покупки криптовалют при помощи карт получили и пользователи Coinbase в Европе.

\n

Как говорится в заявлении Coinbase, в США 40% сделок по покупке криптовалюты при помощи дебетовых и кредитных карт осуществляются с мобильных устройств, поэтому компания стремится сделать этот сервис доступным в как можно большем количестве стран.

\n

ПЕРСОНАЛИИ

\n

Основатель компании Distributed Lab Павел Кравченко продолжил рассуждения о технологии блокчейн и сферах ее применения, назвав отрасли, которым она, на его взгляд, вряд ли нужна вообще. Соответствующий пост был размещен в его блоге на Medium.

\n

Высказав ранее мнение о том, что большой бизнес не готов по-настоящему к использованию блокчейна, Павел на этот раз представил своего рода гид для инвесторов. В нем описана основная проблематика при принятии решений и предлагается помощь в понимании того, действительно ли технология является для них необходимой.

\n
«Запросы об имплементации блокчейна я получаю каждый день. Однако часто я считаю, что блокчейн не нужен вовсе. Есть другие доступные типы архитектуры, и блокчейн – лишь один из них», — пишет Павел Кравченко.
\n

Ещё одним примечательным выступлением гуру блокчейна стала лекция канадского предпринимателя Дона Тэпскотта, автора недавно изданной книги «Революция блокчейна», выступившего с лекцией о технологии распределенного реестра на саммите TED Talk в Альберте. 

\n

 УКРАИНА

\n

В Украине продолжается внедрение блокчейн-сервисов в политикум страны. Так, команда e-Vox анонсировала запуск блокчейн-сервиса электронного голосования в городской Раде Балты (Одесская область). Об этом редакции ForkLog сообщил координатор проекта Алексей Конашевич. 

\n

\n

 Результаты голосования, внесенные в децентрализованную базу данных, позволят системно анализировать информацию и выводить статистику эффективности принимаемых решений. А блокчейн-протокол поможет надежно защитить информацию от внутреннего и внешнего противоправного вмешательства.

\n

Разработкой прототипа e-Vox занимались компании Ambisafe и Vareger.

\n

Не останавливаются работы в этом направлении и в Белой Церкви. Так, мэр города Геннадий Дикий зарегистрировал проект об использовании блокчейн-платформы Auction 3.0 в качестве одного из актов, который должен быть принят городским советом в ближайшее время.
\nОб этом говорится в решении «О внесении изменений в план деятельности Белоцерковского городского совета при подготовке проектов регулятивных актов на 2016 год», утвержденном городским советом Белой Церкви. 

\n

\n

 РОССИЯ

\n

В пятницу, 26 августа, замминистра финансов Алексей Моисеев сообщил о том, что Министерство финансов Российской Федерации выступает против введения «лобового запрета» биткоина. По его словам, законопроект о криптовалютах будет скорректирован по итогам предстоящей серии встреч с экспертами.

\n

Возможно, это заявление стало последствием встречи, которая состоялась 24 августа в администрации президента РФ под руководством советника по интернету Германа Клименко. На мероприятии обсуждалась технология блокчейн в России и возможности ее внедрения на государственном уровне.

\n

Не остались в стороне от процесса и власти Москвы, заявившие на этом же совещании о готовности внедрить технологию блокчейн в проект «Активный гражданин».

\n
«Москва готова быть площадкой для применения технологии блокчейн. И как раз в качестве пилотного проекта мы предлагаем предоставить проект «Активный гражданин». Мы хотим, с одной стороны, отпилотировать технологию и понять, насколько она дееспособна для решения такого рода задач. С другой стороны, снять с себя некий скепсис со стороны граждан», — заявил заместитель директора департамента информационных технологий Москвы Андрей Белозеров,
\n

Оказались вовлечёнными использование блокчейна и биткоина и российские политические силы. Российская «Партия Роста» подтвердила начало приема пожертвований в биткоинах, однако пользоваться собранными средствами она сможет только после принятия закона о статусе криптовалюты.

\n


\nВ связи с отсутствием нормативного регулирования переводов биткоинов на счета юридических лиц «биткоины будут перечисляться на кошелек Дмитрия Мариничева, интернет-омбудсмена и кандидата в депутаты по Медведковскому одномандатному округу».

\n

КИТАЙ

\n

Правительство Российской Федерации не единственное, занимающееся вопросами использования криптовалют и блокчейна. Так, правительство Китая объявило о создании рабочей группы по вопросам блокчейна. Целью нового стратегического альянса станет ускорение разработок и внедрение технологии в экономику страны, а также подготовка к Всемирному блокчейн-саммиту, который будет проведён в Шанхае в сентябре этого года.

\n

Неизвестно, ставится ли перед этой рабочей группой задача контролирования использования, но примечательным является тот факт, что практически одновременно с заявлением правительства крупнейшая поисковая система Китая Baidu без какого-либо предупреждения удалила всю рекламу, связанную с биткоином и другими виртуальными валютами.

\n

Об удалении рекламы биткоин-компаний сообщили две крупнейшие китайские биржи OKCoin и Huobi, пишет Bloomberg News. Представители Baidu на запрос агентства от комментариев воздержались. 

\n", - "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto\",\"money\",\"news\"],\"image\":[\"http://radikal.ru/fp/949b19ab0ea142769b5d5bad6918e850\",\"http://radikal.ru/fp/ab1e6cf8f8ce414d8555699b45afc0eb\",\"http://forklog.com/wp-content/uploads/0e6dbfdc-638d-11e6-8e55-cc0a56a8b37c-1.png\",\"http://forklog.com/wp-content/uploads/14152259_10202179476045465_1807948603_o.jpg\",\"http://forklog.com/wp-content/uploads/14022327_853179024818469_8570878217622377273_n-1.jpg\"],\"links\":[\"http://forklog.com/zhurnalu-forklog-dva-goda/\",\"http://forklog.com/birzha-bitstamp-otmechaet-pyatiletnij-yubilej/\",\"http://forklog.com/kriptovalyutnaya-birzha-gdax-dobavila-litecoin/\",\"http://forklog.com/birzha-poloniex-snimaet-s-torgov-the-dao-i-drugie-altkoiny/\",\"http://forklog.com/krupnejshaya-bitkoin-birzha-turtsii-ostanovila-rabotu-iz-za-problem-s-bankom/\",\"http://forklog.com/apparatnyj-koshelek-trezor-dobavil-podderzhku-ethereum/\",\"https://github.com/trezor/trezor-mcu/pull/103\",\"http://forklog.com/platezhnyj-servis-bitwala-vklyuchil-v-spisok-rabochih-altkoinov-dash-i-emercoin/\",\"http://forklog.com/venesuelskij-platyozhnyj-servis-cryptobuyer-dobavil-podderzhku-dash/\",\"http://forklog.com/sostoyalsya-reliz-novoj-versii-ethereum-koshelka-mist-s-podderzhkoj-coinbase-buy-widget/\",\"http://forklog.com/vedushhie-banki-mira-obedinilis-dlya-sozdaniya-novoj-kriptovalyuty/\",\"http://forklog.com/yuzhno-afrikanskij-rezervnyj-bank-gotov-k-ispolzovaniyu-blokchejna-i-kriptovalyut/\",\"http://forklog.com/yaponskie-korporatsii-testiruyut-blokchejn-platformu-dlya-chekovyh-raschetov/\",\"http://forklog.com/konsortsium-r3-cev-zapatentoval-blokchejn-platformu-dlya-infrastruktury-uoll-strit/\",\"http://forklog.com/ekonomisty-prognoziruyut-vytesnenie-sistemy-swift-blokchejnom/\",\"http://forklog.com/kompaniya-bitshares-munich-ivs-obyavila-o-nachale-ico/\",\"http://forklog.com/proekt-hyperledger-nazval-novyj-sostav-tehnicheskogo-komiteta/\",\"http://forklog.com/startap-chronicled-inc-zapustil-otkrytyj-reestr-dlya-interneta-veshhej/\",\"http://forklog.com/kompaniya-verizon-communications-zapatentovala-blokchejn-hranilishhe-klyuchej/\",\"http://forklog.com/kriptovalyutnye-kompanii-singapura-budut-poluchat-edinuyu-litsenziyu-na-osushhestvlenie-deyatelnosti/\",\"http://forklog.com/investitsionnyj-bitkoin-startap-keza-budet-spasen-blagodarya-satoshi-citadel-industries/\",\"http://forklog.com/poseshhaemost-steemit-sravnyalas-s-rannim-facebook/\",\"http://forklog.com/komanda-decent-obyavila-o-vazhnyh-izmeneniyah-v-sisteme-distributsii-tokenov/\",\"http://forklog.com/polzovateli-coinbase-v-evrope-poluchili-vozmozhnost-pokupat-kriptovalyutu-pri-pomoshhi-bankovskih-kart/\",\"http://forklog.com/osnovatel-distributed-lab-nazval-oblasti-kotorym-ne-nuzhen-blokchejn/\",\"https://medium.com/@pavelkravchenko/investor-guide-does-this-cool-project-truly-need-blockchain-bdde70a26bfb#.40cs8sfz2\",\"http://forklog.com/avtor-knig-o-blokchejne-don-tepskott-vystupil-na-ted-talk/\",\"http://forklog.com/dostignuta-dogovorennost-o-zapuske-e-vox-v-balte-odesskoj-oblasti/\",\"http://forklog.com/meriya-beloj-tserkvi-perehodit-na-blokchejn-platformu-auction-3-0/\",\"http://forklog.com/minfin-rf-protiv-pryamogo-zapreta-bitkoina/\",\"http://forklog.com/v-rossii-obsudili-kriptovalyuty-na-gosudarstvennom-urovne/\",\"http://forklog.com/partiya-rosta-utochnila-shemu-priema-pozhertvovanij-v-bitkoinah/\",\"http://forklog.com/kitaj-pristupil-k-issledovaniyu-blokchejna-na-gosudarstvennom-urovne/\",\"http://forklog.com/kitajskij-poiskovik-baidu-zablokiroval-vsyu-svyazannuyu-s-bitkoinom-reklamu/\"]}", - "last_update": "2016-08-28T17:15:09", - "created": "2016-08-28T17:15:09", - "active": "2016-08-28T17:15:09", - "last_payout": "2016-08-30T04:28:30", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-29T04:28:30", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "forklognews", - "root_permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779934, - "author": "paulsemmelweis", - "permlink": "it-s-just-a-game-to-governments-and-central-bankers", - "category": "economics", - "parent_author": "", - "parent_permlink": "economics", - "title": "It's just a game to governments and central bankers", - "body": "Discussed below are two new articles that shed light on the grand economic chessboard controlled by governments while paving the way for more lies and manipulation by the media...\n\nGlobal central bankers, stuck at zero, unite in plea for help from governments: https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\n\nAs Fed nears rate hikes, policymakers plan for 'brave new world': https://ca.news.yahoo.com/fed-nears-rate-hikes-policymakers-plan-brave-world-005117150--business.html\n\nWhile simultaneously espousing Obama's great economic achievements in the press for years after saving the nation from peril in 2008, central bankers now openly admit there's a very weak economy and a recovery that never was. You know, facts.\n\nWhile talk of \"new tools\" needed to fight the next recession unofficially dominated the annual meeting of our monetary overlords in Wyoming, it is quite clear that the main weapon in their arsenal is the same as it was then; to maintain control over human beings by selling a never ending stream of fiction to the public.\n\n\"it may take a massive program, large enough even to shock taxpayers\"\n\"hard to convince markets and households that things will get better\"\n\"encourage the shift in mood\"\n\"prevent public expectations\"\n\"do not respond in expected ways\"\n\nAnd this gem… \"In modern monetary theory, households and business expectations are felt to play a defining role.\"\n\nSounds really modern!\n\nThe article ends with this… \"It was not clear whether such ideas will catch on. But there was a broad sense here that the other side of government may need to up its game.\"\n\nA game indeed. Of mass manipulation for the benefit of those who rule us while easily selling the public what they are doing is in their best interests.", - "json_metadata": "{\"tags\":[\"economics\",\"government\",\"central\",\"banks\",\"recession\"],\"links\":[\"https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\"]}", - "last_update": "2016-08-28T17:14:12", - "created": "2016-08-28T17:14:12", - "active": "2016-08-28T17:14:12", - "last_payout": "2016-08-29T19:47:36", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T19:47:36", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "paulsemmelweis", - "root_permlink": "it-s-just-a-game-to-governments-and-central-bankers", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779930, - "author": "randolphrope", - "permlink": "steem-it-photo-challenge-6", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Steem.it photo challenge # 6", - "body": "On the way to Chinle, Arizona USA \n\nJust off the highway over looking the desert.\n\nhttp://imgur.com/ITp3j5l.jpg\n\nI just remember one on the drive.", - "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"\"],\"image\":[\"http://imgur.com/ITp3j5l.jpg\"]}", - "last_update": "2016-08-28T17:13:51", - "created": "2016-08-28T17:13:51", - "active": "2016-08-28T17:13:51", - "last_payout": "2016-08-29T18:29:18", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T18:29:18", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 6, - "root_author": "randolphrope", - "root_permlink": "steem-it-photo-challenge-6", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779923, - "author": "ebluefox", - "permlink": "the-pros-and-cons-of-empathy", - "category": "empathy", - "parent_author": "", - "parent_permlink": "empathy", - "title": "The Pros and Cons of Empathy", - "body": "Empathy is an interesting aspect of human nature that many people do not possess. Empathy in short is the ability to view an scenario from a different perspective than your own, normally to better understand someone's perspective on certain topics or ideas. This handy skill is a learned skill and when used effectively can be used to better understand humanity.\nBut as with every neat skill, they tend to have as many pros as they do cons. So i will attempt to explain the pros and cons that i have found apparent with empathy.\n There are quite a few pros to empathy, one of which being in your reputation. A person who uses empathy often is normally seen as a loving compassionate person. Another pro that is quite noticeable is the ability to understand unexplained problems. On occasion if a problem really troubles someone or is very personal, most people will not tell anyone about it. But with empathy you can figure out what is troubling them sometimes with something as simple as \"How have you been?\". A more prominent pro of using empathy is better understanding how a person truly is. Most people wear a \"Facade\" in public or a metaphorical mask, these tend to hide their true personality from the public eye and conceal most things about them. Using empathy, you can work around the \"Facade\" and figure out how they truly are as a person, and most of the time appreciate them a bit more.\n Empathy has allot of pros but also has its fair share of cons to go with it, a good example of one of its cons is a changed perspective. under most circumstances, use of empathy becomes a habit and changes your outlook on everyone around you. This is not really very terrible, but it can lead to you disliking a person more than would have normally. Another apparent con is over-assessing someone. This can happen when you use empathy on someone and spot something that would make you feel awful, but in truth does not faze them. Here is an example. You are talking with a person and figure out that they don't have a mother. To you that may seem horrible and you start pitying them, when in truth it may not even matter to them in the slightest. A more cumbersome problem with empathy lies with information. In order to understand or sympathize with someone you need to understand the problems they put up with. If you ask too many questions about their life, they may find you \"Nosy\" or \"Annoying\". On the contrary, if you do not inquire very much about them, you will not have any idea of their standpoint at all and cannot empathize with them. The last con i will cover is drama. It is very easy to get caught in some drama if you try to understand peoples problems, some of which may be very serious. Some people are not patient enough to deal with the newly acquired drama and can sometimes make the problem worse than it need to be.\n This list most definitely did not cover every pro or con associated with empathy because they will differ from person to person however i did cover a few recurring pros and cons. whether you think empathy is worth your time and energy is up to you and your values in life and social interaction.", - "json_metadata": "{\"tags\":[\"empathy\",\"psychology\",\"social-skills\",\"problems\"]}", - "last_update": "2016-08-28T17:13:21", - "created": "2016-08-28T17:13:21", - "active": "2016-08-28T17:13:21", - "last_payout": "2016-08-29T17:28:57", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T17:28:57", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "ebluefox", - "root_permlink": "the-pros-and-cons-of-empathy", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779920, - "author": "steemsquad", - "permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "Hello! We Are STEEMSQUAD And We Are Here to Support The Minnows. Read On.", - "body": "\n

We are STEEMSQUAD, a Steemit inititative to promote diversity and quality of content by featuring authors from the school of minnows.

\n

\"steem-squad3\"
\n

\n

WHAT is #steemsquad?

\n

Steemsquad is an initiative of multiple minnows whose objective is to promote diverse and quality content and their work which may not have a chance to get noticed when published in the main streem. STEEMSQUAD initiative will try to tweak the game to equally distribute the wealth among its members. 

\n

STEEMSQUAD is a community-backed account responsible for posting blogs of qualified authors and at the same time upvotes quality blog posts of its members.

\n

Members of STEEMSQUAD are from across multiple timelines to ensure a 24/7 support and active participation in Steemit.

\n

The Issue at Hand

\n

For quite some time, there has been a noticeable trend as to who gets rewards. Those favored are the whales themselves, members with high reputation levels, incoming popular personalities and celebrities either from the cryptocurrency world or the entertainment world. A number of people from the finance institutions have joined as well and have garnered huge rewards on their “introductory” posts.

\n

And what happens to those who are not celebrities, unknown personalities from not-so-popular backgrounds? Their posts get dumped, thrown into oblivion. Then all the sweat and blood poured spilled into writing the blog just go to waste. This is where #steemsquad comes in.

\n


\n

WHY We Do It?

\n

Steemit is a social media platform where **EVERYONE** gets paid for creating and curating content, as promised if and when you decide to dive into the Steemit Ocean. 

\n

It leverages a robust digital points system, called Steem, that supports real value for digital rewards through market price discovery and liquidity.

\n

We aim to give EVERYONE a chance to get noticed, earn rewards, and be a part of a community of people helping people.

\n

You Can Succeed

\n

All HOPE is NOT LOST. We have seen minnows rise to the occasion. With a positive attitude, an unwavering determination, lots and lots of good quality posts (one is enough though to get you 15k, if you hit the nail on the head), there is no reason why you can’t be successful here in Steemit.

\n

#steemsquad will support you along the way.

\n

OUR GOLDEN RULES

\n
    \n
  1. We give priority to quality contents from low-powered profiles (minnows).
  2. \n
  3. The published author gets 100% of SBD. However, 50% of which goes to the author’s SP to allow the author to power-up leveraging his/her SP to upvote other writers.
  4. \n
  5. Any SP earned by STEEMSQUAD remains in the STEEMSQUAD account to gain more voting power for the benefit of its members.
  6. \n
  7. Pay-it-forward. The powered-up author commits to help other writers by upvoting and commenting to blog post to increase the post’s value.
  8. \n
\n


\n

HOW TO GET PUBLISHED BY STEEMSQUAD

\n

\n

PHOTO CREDIT: Anna Frajtova / shutterstock.com
\n

\n
    \n
  1. FOLLOW the account STEEMSQUAD and be a member of the initiative.
  2. \n
  3. You have to signify your willingness to join by coming to our official chatroom in https://steemit.chat/channel/steemsquad. Introduce yourself and state your intention to join the initiative. Include a link to your Steemit profile.
  4. \n
  5. Submit your article in plain text format and links to images. Send your entry to @steemit.asia or @sebastien or @jaycobbell as a PM.
  6. \n
  7. Article must be at least 300 words with at least 1 image.
  8. \n
  9. Give credit to the images you use.
  10. \n
  11. If you quote someone, give credit as well.
  12. \n
  13. At least 80% of the article must be your own.
  14. \n
  15. You will get feedback after 24 hours and a schedule will be provided when your work will be published.
  16. \n
  17. Once it is published, it will be promoted to the chatroom by either @steemit.asia or @sebastien or @jaycobbell in https://steemit.chat/channel/steemsquadpromotional for all members to see. This is where all promotions are done.
  18. \n
\n


\n

HOW TO GET UPVOTED BY STEEMSQUAD AND MEMBERS

\n


\nPHOTO CREDIT: Clipartix.com
\n

\n
    \n
  1. To get a chance to be upvoted by STEEMSQUAD, you must have a QUALITY blog post.
  2. \n
  3. Use the tag #steemsquad in your blog post.
  4. \n
  5. Our curators will browse through all blog posts using our official #steemsquad tag name and choose will notify the author by commenting that the post has been chosen as a featured post/author. It will be promoted in our chat channel https://steemit.chat/channel/steemsquadpromotional.
  6. \n
\n


\n

STEEMSQUAD ACCOUNT SECURITY

\n

The Posting Key (The posting key is used for posting and voting. It should be different from the active and owner keys) will be given to at least 3 members of STEEMSQUAD responsible for posting blog posts in 24 hour cycle.

\n

The Active Key (The active key is used to make transfers and place orders in the internal market) will be given to 2 members of STEEMSQUAD. One member will act as auditor/backup in case the primary member is not available.

\n

The Owner Key (The owner key is the master key for the account and is required to change the other keys) is given to one Whale sponsor and 2 other members of STEEMSQUAD.

\n

A member responsible for the account security may hold more than one (1) key as shown above.

\n


\n

OUR MENTORS

\n

There are people we consider as examples on the platform. Inspiration, mentors.

\n

@juneaugoldbuyer
\n@thedollarvigilante
\n@dragonslayer109
\n@stellabelle
\n@charlieshreem
\n@rogerkver
\n@donkypong
\n@tuck-fheman
\n@masteryoda
\n@andrarchy 

\n

\"steem-squad-FOLLOW-US\"
\n

\n", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemsquad\",\"steemit\",\"minnows\",\"writing\"],\"users\":[\"steemit.asia\",\"sebastien\",\"jaycobbell\",\"juneaugoldbuyer\",\"dragonslayer109\",\"stellabelle\",\"charlieshreem\",\"rogerkver\",\"donkypong\",\"tuck-fheman\",\"masteryoda\",\"andrarchy\"],\"image\":[\"https://c1.staticflickr.com/9/8171/29209353271_2eabbba74f_o.png\",\"https://cdn.elegantthemes.com/blog/wp-content/uploads/2016/02/Essential-Blogging-Skills-Know-your-Audience-shutterstock_222537538-Anna-Frajtova.png\",\"http://clipartix.com/wp-content/uploads/2016/04/Thumbs-up-clipart-3.png\",\"https://c1.staticflickr.com/9/8305/29179909862_ed27607510_o.png\"],\"links\":[\"https://steemit.chat/channel/steemsquad.\",\"https://steemit.chat/channel/steemsquadpromotional\",\"https://steemit.chat/channel/steemsquadpromotional.\"]}", - "last_update": "2016-08-28T17:13:18", - "created": "2016-08-28T17:13:18", - "active": "2016-09-11T21:09:09", - "last_payout": "2016-08-30T11:08:54", - "depth": 0, - "children": 18, - "net_rshares": "2243580957008", - "abs_rshares": "2243580957008", - "vote_rshares": "2243580957008", - "children_abs_rshares": "2254360518257", - "cashout_time": "2016-09-29T11:08:54", - "max_cashout_time": "2016-09-13T14:10:24", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "566", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "173", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 588, - "net_votes": 57, - "root_author": "steemsquad", - "root_permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778828, - "author": "okay", - "permlink": "this-week-s-sky-aug-27-sep-3", - "category": "science", - "parent_author": "", - "parent_permlink": "science", - "title": "This Week's Sky Aug-27/Sep-3", - "body": "## A picture is worth a thousand words, more so in astronomy ##\n\n**Let's take a look at the coming week's sky**\n\n\nhttp://www.skyandtelescope.com/wp-content/uploads/Venus-Jupiter-27Aug2016_f.jpg\n(Image courtesy of Sky and Telescope)\nOn August 27th, about 45 minutes after sunset, go outdoors and start looking low above the horizon in the west for an amazingly close pairing of Venus and Jupiter.\n\nhttp://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\n\n\nNext weekend, shortly after sunset, the thin Moon (waxing crescent) steps away from Venus and Jupiter.\n\nLooking at the night sky is a great joy! Free for everyone with no ticket required. You can watch the evening sky with your naked eye, no need for telescope or binoculars for these beautiful astronomical events.\n\n*Stay tuned for next week's sky.*\n\n\n\n\n If you enjoyed this post please vote for my witness node. Learn how to vote for witness `okay` **at the end of my witness post** by [**clicking here**](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network). ", - "json_metadata": "{\"tags\":[\"science\",\"astronomy\"],\"image\":[\"http://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", - "last_update": "2016-08-28T17:13:03", - "created": "2016-08-28T15:45:33", - "active": "2016-08-28T17:13:03", - "last_payout": "2016-08-29T16:11:21", - "depth": 0, - "children": 5, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T16:11:21", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "okay", - "root_permlink": "this-week-s-sky-aug-27-sep-3", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779916, - "author": "skyefox", - "permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", - "category": "garden", - "parent_author": "", - "parent_permlink": "garden", - "title": "A small garden update... My Pink Brandywine Tomatoes are coming!", - "body": "As I have stated in earlier posts, gardening is currently my obsession.. it's seems wild to me that the standard is to work for currency and trade currency for food rather than just growing your own food. \n

Here is my small harvest from this morning!

\nEvery morning I go out and eat a couple of my cherry tomatoes, a few leafy greens, and usually 1/2 a leaf of my sweet basil. It's a wonderful thing to wake up, take the dog out and get a healthy organic little snack. I love it.\nhttps://s14.postimg.org/62aqviz0h/IMG_1804.jpg\n\n\nI understand that gardening takes time, effort, and a little bit of knowledge but in my opinion it is one of the most reward \"hobbies.\" This is my first year gardening. I decided to garden this year because I have been doing more and more reading about the American food industry and my conclusion is that the American population are being made sick on purpose through the food we eat. I don't know exactly what does what in our food but it seems absolutely insane to me that we can't get the FDA to evaluate any dietary supplements but they will evaluate and even vouch for these lab made pharmaceutical drugs. \n\nAll of this lead me to feeling a strong urge to grow organic food. I honestly feel guilty when I feed my family and I don't fully believe in what we are eating. Don't get me wrong, I love pepperoni pizza but ignorance is bliss, and I am not ignorant to what I am eating. \n\nI believe I am slowly heading down the path of becoming a vegan as I gain more knowledge. I have always been a hunter and a fisherman, it's what I was taught as a young boy in the north woods. I love to hunt and fish, but I also have a very deep compassion for life. Not human life, but life in general. I believe that we are intelligent enough as a species to live without causing harm to other living things that are equipped with nervous systems. I guess I am just realizing day by day that things are not necessarily what I have been told... \n

This kind of sums up how I feel currently...

\nhttps://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\n\nI am not a very good consumer. I am very frugal and calculated with my money, sometimes to a fault. I'm also not good at being an employee and just being a \"gear in the machine.\" I was not built to work and be told what to do while someone acts as if their employment position somehow gives them a higher status than I. We are humans, you just have a different job. These factors, and many others, have lead to me being self employed and trying to find my way on the internet. I have dabble in many things online and I have learned enough to at least provide myself with enough income to pay my mortgage, bills, etc.. \n\nI am also someone that is in the prepper mind state. I have started my small stockpile of beans, rice, and various other dried foods. I think that the American people have become complacent and many of us are just chasing the carrot we were instructed to chase. Many people seem to not realize the fact that we as a country heavily depend on other people or corporations for the things we use everyday. If water and electricity were to be shut off and panic set it, many people would die because they don't know what to do without someone else providing them with these luxuries. \n\nI don't like the idea of depending on anyone for anything. I have always been someone who provided for myself. I got a job at 14 years old at the local bakery working Saturday mornings so that I could get my first computer myself. I worked for weeks, since I was only getting paid $5.15/hour (roughly 13 years ago) it took me a long time to save up for a computer to play Counterstrike 1.5... We had 6 kids in our house in a \"middle class\" family, needless to say we were told to get jobs as early as possible to acquire our luxuries. Since then I have had the mindset that I don't want to allow someone else to be \"the hand that feeds\", and that applies to food, water, electricity, and even knowledge of my child. \n\nDEPENDENCY OPENS THE DOORS FOR EXPLOITATION! And in a capitalist driven global economy, if it can be exploited, it often is. \n\nMy apologies, there I go again, going of on some rant instead of just showing you the damn garden update. I already can't wait for next spring. I have been buying heirloom vegetable seeds and thrift shopping for large planters for $1 so that next year I can grow lots more. \n

This is the Pink Brandywine that I am so excited about!

\nThese guys took forever to grow. I didn't know what I was doing and I had put too many plants in 1 planter which caused them to compete for the nutrients. On top of them a strong storm came through and blew these guys over and bent there stalks horizontal. I really didn't know if I would get any fruit from them, but they are changing and I can't wait to eat these!\nhttps://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\n\nhttps://s14.postimg.org/e3txgbbgh/IMG_1800.jpg\n\nHere is a cucumber that is growing a little goofy. Not sure why but its like a beer can cucumber... lol\nhttps://s14.postimg.org/c1tg22dhd/IMG_1802.jpg\n\nA more normal cucumber... \nhttps://s14.postimg.org/610t23x6p/IMG_1803.jpg\n\nAnd this is my $3 table I built so that I could start my seeds indoors under some fluorescent lights. \n\n\nhttps://s14.postimg.org/6t3h1b1dt/IMG_1805.jpg\n\n\nThank you for reading and happy gardening!", - "json_metadata": "{\"tags\":[\"garden\",\"photography\",\"rant\",\"food\"],\"image\":[\"https://s14.postimg.org/62aqviz0h/IMG_1804.jpg\",\"https://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\",\"https://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\"]}", - "last_update": "2016-08-28T17:12:54", - "created": "2016-08-28T17:12:54", - "active": "2016-08-28T17:36:42", - "last_payout": "2016-08-29T18:11:57", - "depth": 0, - "children": 2, - "net_rshares": "130408996119", - "abs_rshares": "130408996119", - "vote_rshares": "130408996119", - "children_abs_rshares": "130408996119", - "cashout_time": "2016-09-28T18:11:57", - "max_cashout_time": "2016-09-12T21:18:18", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "123", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "15", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 125, - "net_votes": 37, - "root_author": "skyefox", - "root_permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779915, - "author": "fitiliper1985", - "permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", - "category": "sex", - "parent_author": "", - "parent_permlink": "sex", - "title": "In a relationship, sex becomes a matter of selfishness or unselfishness.", - "body": "
http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png
\n

\n

Before I was in a relationship, I didn't have much sex. My first sexual intercourse occurred while I was travelling overseas on a holiday by myself. I met a woman in hawaii at the airport, and later had sex with her.

\n

I had done a lot of masturbating prior to this. I had often thought about having sex, and I found that my sexual drive caused me to behave in ways that I normally wouldn't. 

\n

\n
https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg
\n

\n

For example I would follow women I found attractive, or I would try to look up their skirts, or I would wander about at night to try to look into bedroom windows.

\n

When I met someone that I knew I would marry, I thought I would be able to have sex as much as I liked because my wife would always be available to have it with me. This turned out to be untrue. My wife didn't want to have sex as often as I wanted to, and I found myself still masturbating while I waited for the next time to come.

\n

I don't think women understand the power of their husband's sexual drive. 

\n

\n
http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg
\n

\n

Men are attracted to women by how they look. It doesn't matter if they are strangers. Men will look at a woman dressed in  a certain way and will start feeling horny. As soon as they ejaculate, the feeling of horniness goes, but will return in a couple of hours. When the sexual desire comes upon a man, it becomes his dominating thought, and it demands to be satisfied. That's why many men then masturbate in order to relieve the pressure on their thoughts. If unrelieved the pressure grows and if the wife is unwilling to have sex, then some men will look for other women to have sex with. 

\n

The sexual pressure is constantly present in a man's mind until relief comes.

\n

\n
https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg
\n

\n

Most women are not as interested in sex as men. 

\n

\n
https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg
\n

\n

Women are more interested in relationship.  Women have sex with a man in the hope that the man will want to stay in their life and have a relationship with them. 

\n

Some women use sex as a bait to catch a man, and then when the relationship is happening, they are not as interested in sex anymore. Women enjoy sex, but as part of a fulfilling relationship. Men just want to put their penis into a vagina and ejaculate. As soon as ejaculation occurs, a lot of men lose all interest in the woman. The woman then feels hurt and used because she didn't get what she wanted which was relationship. Men will say anything they think a woman wants to hear in order to have sex.

\n

Wives who have sex with their husbands when not really wanting it, feel used by their husbands. Women also can be selfish when they demand sex from men who are not in the mood. 

\n

God created sex to be enjoyed in a committed relationship between a man and a woman who are one person physically, spiritually, emotionally, and mentally. 

\n

Sex is a part of the relationship, not the main thing. If a man demands sex then he is being selfish, and his relationship will be harmed if the woman gives sex to the man when she is not wanting to have it. If the man wants sex with his wife, then he must give her what she wants. He must romance her and give her a good relationship. Then if sex happens, it will be enjoyable for both of them. This will build the relationship.

", - "json_metadata": "{\"tags\":[\"sex\",\"psychology\",\"life\",\"story\",\"\"],\"image\":[\"http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png\",\"https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg\",\"http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg\",\"https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg\",\"https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg\"]}", - "last_update": "2016-08-28T17:12:42", - "created": "2016-08-28T17:12:42", - "active": "2016-08-28T18:08:06", - "last_payout": "2016-08-29T17:56:42", - "depth": 0, - "children": 5, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T17:56:42", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 12, - "root_author": "fitiliper1985", - "root_permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779914, - "author": "s0lo", - "permlink": "road-map-ethereum-classic-helped-to-keep-the-course", - "category": "road", - "parent_author": "", - "parent_permlink": "road", - "title": "Road map Ethereum Classic helped to keep the course.", - "body": "\n

\n

Slightly more than a month since then, how did the Ethereum classic (ETC). The ETC team presented a \"road map\" of development of the project, at the first meeting of the supporters of Ethereum Classic (ETC), held on 18 August in London.

\n
The basic version of partitioning the network according to the version of ETC was this:
\n
\"The separation of Ethereum was the result of a difference in the understanding of the basic principle of cryptocurrency. At that time, as fork (ETH) was carried out to recover the stolen funds to investors DAO, Ethereum classic is the original version, based on the principle that \"code is law.\"
\n

Supporters of the ETS argue that the decentralization of infrastructure are insufficient to minimize the possibility of hacking and fraud. For example, the developers of Ethereum actively invested their funds in DAO. Therefore, the decision about hard forks could be dictated by a conflict of interest.

\n

Community ETC believes that all key aspects of the ecosystem should be decentralized, including technological functions such as research and development, and public and administrative functions, including marketing, development and management of the DAPP.

\n

There are plans to remove so-called \"bomb of complexity\" (constant increase in the complexity of mining at ETH) to provide POW mining and make ETC more viable for the miners.

\n

In addition, the community is considering a new economic policy and hybrid solutions using Proof-of-stake (PoS). And, finally, developed new technology to ensure the functioning of \"smart contracts\", but no details.

\n

Classic Ethereum plans to develop the community to the upcoming events in Toronto, Shanghai and Melbourne. These meetings should be used to create local centers. In addition, the stage of development of the relationships with universities, startups and companies. Road map to the end of this year aims to reach consensus with the main team ETC. and receive financial support of developers from third parties.

\n

Initially, the team ETC was planning to copy all the updates that are entered in the ETH, but later decided to give myself a certain amount of autonomy. how and by whom it will be implemented - at the moment neizvestnoy

\n

In 2017, ETC will test different mechanisms of consensus and optimal monetary policy system. In addition, meetings will be held in an expanded format to appeal to a greater number of miners and the following year to create their own ecosystem the development of DAPP.

\n

Perhaps in the course of the year will be able to understand how realistic are attempts to \"overtake and surpass\" team Baterina in the main activities of the Ethereum project.

\n

By 2018, the community ETC choose PoW or hybrid mechanism of consensus and create the proper monetary policy.

\n

More concrete steps at this meeting was not presented.

\n

The rate continues to fall.

\n

Despite the publication of the road map and programme of community development, exchange rate ETC continues to fall. ETC cryptocurrency by market capitalization behind Litecoin and Steem, even given the significant losses the last, and is now in sixth place. ETC remains below the psychologically important level of $2.00 that is displayed on the chart.

\n

\n

ETC trend/USD exchange Poloniex has broken below the most recent level of the fractal at $1.60. A daily close below this level should lead us to a level of $1.34. Please note that the conversion line (blue) currently has resistance at $ 1.7235. 

\n

In addition, the trading volume of the Ethereum classic naturally falling after the initial hype created around this cryptocurrency. This also indicates a greater risk and tells about the deterioration of the situation. Thus, the market is looking down with a possible reversal on the $ 1.34 or even $ 1.00.

\n", - "json_metadata": "{\"tags\":[\"road\",\"map\",\"etc\",\"ethereum\",\"classic\"],\"image\":[\"http://bits.media/images/news/260816/260816_ethereum-classic-roadmap_1.jpg\",\"http://bits.media/images/news/260816/260816_ethereum-classic-roadmap_2.jpg\"]}", - "last_update": "2016-08-28T17:12:39", - "created": "2016-08-28T17:12:39", - "active": "2016-08-28T17:12:39", - "last_payout": "2016-08-29T17:44:00", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T17:44:00", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 3950, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "s0lo", - "root_permlink": "road-map-ethereum-classic-helped-to-keep-the-course", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 588, + "beneficiaries": [], + "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", + "cashout_time": "2016-09-28T20:19:39", + "category": "foodchallenge", + "children": 18, + "children_abs_rshares": 2374341643, + "created": "2016-08-28T17:15:12", + "curator_payout_value": { + "amount": "131", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779947, + "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:15:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T01:24:24", + "net_rshares": 0, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "foodchallenge", + "percent_hbd": 10000, + "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", + "total_payout_value": { + "amount": "576", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:15:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "forklognews", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\u041f\u0440\u043e\u0448\u0435\u0434\u0448\u0430\u044f \u043d\u0435\u0434\u0435\u043b\u044f \u043e\u043a\u0430\u0437\u0430\u043b\u0430\u0441\u044c \u0431\u043e\u0433\u0430\u0442\u043e\u0439 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u043c\u0438, \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u043c \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0434\u043b\u044f \u043d\u0430\u0448\u0435\u0439 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u0441\u0442\u0430\u043b\u043e \u0434\u0432\u0443\u0445\u043b\u0435\u0442\u0438\u0435 Forklog. \u0414\u0432\u0430 \u0433\u043e\u0434\u0430 \u043d\u0430\u0437\u0430\u0434, 25 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0431\u044b\u043b \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0434\u043e\u043c\u0435\u043d ForkLog.com, \u0430 \u0441\u043f\u0443\u0441\u0442\u044f \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u0434\u0435\u043b\u0430\u043d\u044b \u043f\u0435\u0440\u0432\u044b\u0435 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u043d\u0430 \u0441\u0430\u0439\u0442\u0435. \u041e\u0431 \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0445, \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u0445 \u043c\u0438\u0440\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442, \u0432\u044b \u0443\u0437\u043d\u0430\u0435\u0442\u0435 \u0438\u0437 \u043d\u0430\u0448\u0435\u0433\u043e \u0435\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0439\u0434\u0436\u0435\u0441\u0442\u0430. 

\n

 \u0411\u0418\u0420\u0416\u0418

\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u0438\u043c\u0435\u043d\u0438\u043d\u043d\u0438\u043a\u043e\u043c \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0438 \u0441\u0442\u0430\u043b\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 Bitstamp, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u043e\u0442\u043c\u0435\u0442\u0438\u043b\u0430 \u043f\u044f\u0442\u0438\u043b\u0435\u0442\u0438\u0435 \u0441\u043e \u0434\u043d\u044f \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f. \u041a \u044d\u0442\u043e\u043c\u0443 \u0441\u043e\u0431\u044b\u0442\u0438\u044e \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0438\u0443\u0440\u043e\u0447\u0438\u043b\u0430 \u043a\u043e\u043d\u043a\u0443\u0440\u0441 \u0441 \u0446\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0440\u0438\u0437\u0430\u043c\u0438.

\n

\u041d\u043e \u044e\u0431\u0438\u043b\u0435\u0438 \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043f\u043e\u0432\u043e\u0434\u043e\u043c \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0430\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 \u0438 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0431\u0438\u0440\u0436 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0440\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0442 \u044d\u0442\u043e \u043c\u043d\u0435\u043d\u0438\u0435, \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u044f \u0433\u0434\u0435-\u0442\u043e \u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0435, \u0430 \u0433\u0434\u0435-\u0442\u043e \u0438 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f.

\n

\u0422\u0430\u043a, \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 GDAX \u043d\u0430\u0447\u0430\u043b\u0430 \u0442\u043e\u0440\u0433\u0438 \u0447\u0435\u0442\u0432\u0435\u0440\u0442\u043e\u0439 \u043f\u043e \u0440\u044b\u043d\u043e\u0447\u043d\u043e\u0439 \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043e\u0439 Litecoin. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0434\u0435\u043b\u0430\u043d\u043e \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0431\u043b\u043e\u0433\u0435 \u0431\u0438\u0440\u0436\u0438. \u0414\u043b\u044f \u0442\u043e\u0440\u0433\u043e\u0432 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0434\u0432\u0435 \u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043f\u0430\u0440\u044b: \u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430\u043c \u0421\u0428\u0410 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043f\u0430\u0440\u0430 LTC / USD, \u0432\u0441\u0435\u043c \u043f\u0440\u043e\u0447\u0438\u043c \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u2014 \u043f\u0430\u0440\u0430 LTC / BTC.

\n

\u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, 23 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0442\u0432\u0438\u0442\u0442\u0435\u0440\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u043e\u0439 \u0431\u0438\u0440\u0436\u0438 Poloniex \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043e\u0441\u043d\u044f\u0442\u0438\u0438 \u0441 \u0442\u043e\u0440\u0433\u043e\u0432 27 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442. \u0422\u043e\u0440\u0433\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0435\u043d\u044b 5 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430 \u0438 \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0443\u0436\u0435 \u0432\u044b\u0437\u0432\u0430\u043b\u043e \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043d\u0435\u0434\u043e\u0443\u043c\u0435\u043d\u0438\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430, \u0432\u0435\u0434\u044c \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u0447\u0435\u043d\u044c \u0432\u043e\u0448\u043b\u0438 \u0442\u0430\u043a\u0438\u0435 \u0430\u043b\u044c\u0442\u043a\u043e\u0438\u043d\u044b, \u043a\u0430\u043a DAO, Dashcoin \u0438 Mintcoin, \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0438\u0433 $1,22 \u043c\u043b\u043d. 

\n

\n

 \u041f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u043a \u043a\u043e\u043d\u0446\u0443 \u0438 \u043d\u0430\u0448\u0443\u043c\u0435\u0432\u0448\u0430\u044f \u0438\u0441\u0442\u043e\u0440\u0438\u044f \u0441 \u0431\u0438\u0440\u0436\u0435\u0439 Bitfinex, \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0435\u0439 \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u0437\u043b\u043e\u043c\u0430. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0431\u0438\u0440\u0436\u0438 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u0438\u0438 \u0434\u043e\u0433\u043e\u0432\u043e\u0440\u0430 \u0441 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u043e\u0439 BnkToTheFuture \u0441 \u0446\u0435\u043b\u044c\u044e \u0432\u043e\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0440\u0435\u0434\u0441\u0442\u0432 \u0432\u043a\u043b\u0430\u0434\u0447\u0438\u043a\u043e\u0432 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u0434\u043e\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0447\u0430\u0441\u0442\u0438\u044f \u0432 \u0430\u043a\u0446\u0438\u043e\u043d\u0435\u0440\u043d\u043e\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438. 

\n

\n

 \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0443 \u0441 BnkToTheFuture \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Bitfinex \u0441\u043c\u043e\u0433\u0443\u0442 \u043e\u0431\u043c\u0435\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u0438\u043c \u0442\u043e\u043a\u0435\u043d\u044b BFX \u043d\u0430 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0443\u044e \u0434\u043e\u043b\u044e \u0432 iFinex Inc, \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438\u0445 \u0412\u0438\u0440\u0433\u0438\u043d\u0441\u043a\u0438\u0445 \u041e\u0441\u0442\u0440\u043e\u0432\u0430\u0445 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u0430\u044f \u043d\u043e\u0432\u043e\u0441\u0442\u044c \u043f\u0440\u0438\u0448\u043b\u0430 \u043d\u0430 \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0435 \u0438\u0437 \u0422\u0443\u0440\u0446\u0438\u0438, \u0433\u0434\u0435 \u0432\u0435\u0434\u0443\u0449\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0438 BTCTurk \u0431\u044b\u043b\u0430 \u0432\u044b\u043d\u0443\u0436\u0434\u0435\u043d\u0430 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443, \u0441\u0442\u043e\u043b\u043a\u043d\u0443\u0432\u0448\u0438\u0441\u044c \u0441 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u043e\u043c \u043e\u0442\u043a\u0430\u0437\u043e\u043c \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0430 \u043e\u0442 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0433\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430. \u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442 \u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c, \u043e\u0434\u043d\u0430\u043a\u043e \u0438\u0437-\u0437\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0445 \u0441\u0447\u0435\u0442\u043e\u0432 \u044d\u0442\u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u0442\u044f\u043d\u0443\u0442\u044c\u0441\u044f. 

\n

 \u041a\u041e\u0428\u0415\u041b\u042c\u041a\u0418 \u0418 \u041f\u041b\u0410\u0422\u0401\u0416\u041d\u042b\u0415 \u0421\u0415\u0420\u0412\u0418\u0421\u042b

\n

\u041f\u0435\u0440\u0432\u044b\u043c \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u044b\u043c \u043a\u043e\u0448\u0435\u043b\u044c\u043a\u043e\u043c, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0438\u043c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Ethereum, \u0441\u0442\u0430\u043b Trezor. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0430 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 Trezor \u043d\u0430 Github.

\n

\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043e\u0442 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438-\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430 SatoshiLabs \u043f\u043e\u043a\u0430, \u0432\u043f\u0440\u043e\u0447\u0435\u043c, \u043d\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u043b\u043e, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0434\u0430\u0442\u0430 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0435\u043b\u0438\u0437\u0430 \u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u0430 \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043e\u0441\u0442\u0430\u0435\u0442\u0441\u044f \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e\u0439.

\n

\u0421\u043f\u0438\u0441\u043a\u0438 \u0440\u0430\u0431\u043e\u0447\u0438\u0445 \u0432\u0430\u043b\u044e\u0442 \u043f\u043e\u043f\u043e\u043b\u043d\u0438\u043b\u0438\u0441\u044c \u0443 \u043f\u043b\u0430\u0442\u0451\u0436\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 Bitwala, \u0432\u043a\u043b\u044e\u0447\u0438\u0432\u0448\u0435\u0433\u043e \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Dash \u0438 Emercoin, \u0438 \u0432\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044c\u0441\u043a\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b Cryptobuyer, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0435\u0439 Dash. \u041e\u0442\u043c\u0435\u0442\u0438\u043c, \u0447\u0442\u043e \u0436\u0438\u0442\u0435\u043b\u0438 \u0412\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044b, \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043d\u0435\u0442 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u0432 \u043b\u0438\u0431\u043e \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u043e\u0432 \u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u0432 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442, \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0443\u0441\u043b\u0443\u0433\u0430\u043c\u0438 \u043c\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0451\u0440\u0430 Cryptobuyer \u2013 \u0441\u0435\u0442\u044c\u044e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u043c\u0430\u0442\u043e\u0432 TigoCTM.

\n

\u0422\u0430\u043a\u0436\u0435 \u0432\u044b\u0448\u043b\u0430 \u0432 \u0441\u0432\u0435\u0442 \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f Ethereum-\u043a\u043e\u0448\u0435\u043b\u044c\u043a\u0430 Mist \u0441 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u043e\u0439 Coinbase Buy Widget. \u041e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0435\u0451 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u043e\u0441\u043e\u0431\u0435\u043d\u043d\u043e\u0441\u0442\u0435\u0439 \u0441\u0442\u0430\u043b\u043e \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 Coinbase Buy Widget \u2013 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430, \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0438\u0442\u044c \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u043a\u0443\u043f\u043a\u0443 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043d\u0430 \u0441\u0443\u043c\u043c\u0443 \u0434\u043e $5.

\n

\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0434\u0430\u043d\u043d\u0430\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c \u0438\u0437 \u0421\u0428\u0410 \u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043d\u0430\u043b\u0438\u0447\u0438\u044f \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430 \u043d\u0430 Coinbase. 

\n

\n

 \u0411\u0410\u041d\u041a\u0418 \u0418 \u041a\u041e\u0420\u041f\u041e\u0420\u0410\u0426\u0418\u0418

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u043c \u0438\u0437\u0432\u0435\u0441\u0442\u0438\u0435\u043c, \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u044b\u043c \u0441\u0442\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0432\u0435\u0441\u0442\u043d\u0438\u043a\u043e\u043c \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0445 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0435, \u0441\u0442\u0430\u043b\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0438\u0437\u0434\u0430\u043d\u0438\u044f Financial Times \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0440\u044f\u0434 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0445 \u043c\u0438\u0440\u043e\u0432\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u0432 \u043f\u0440\u0438\u043d\u044f\u043b \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043d\u043e\u0432\u043e\u0439 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u043b\u044e\u0442\u044b. \u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0435\u0439 \u0431\u0430\u043d\u043a\u043e\u0432 UBS, Deutsche Bank, Santander \u0438 BNY Mellon \u043e\u0436\u0438\u0434\u0430\u043b\u043e\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u043d\u043e \u0434\u043e \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u043d\u0435 \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c.

\n

\u0415\u0441\u043b\u0438 \u044d\u0442\u043e \u043e\u043a\u0430\u0436\u0435\u0442\u0441\u044f \u043d\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u0443\u0442\u043a\u043e\u0439, \u0442\u043e \u0441\u0442\u043e\u0438\u0442 \u043e\u0436\u0438\u0434\u0430\u0442\u044c, \u0447\u0442\u043e \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u043a \u044d\u0442\u043e\u0439 \u0438\u043d\u0438\u0446\u0438\u0430\u0442\u0438\u0432\u0435 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u044f\u0442\u0441\u044f \u0438 \u043f\u0440\u043e\u0447\u0438\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u044b \u0441\u043e \u0432\u0441\u0435\u0445 \u043a\u043e\u043d\u0446\u043e\u0432 \u0441\u0432\u0435\u0442\u0430, \u0434\u0430\u0436\u0435 \u0441 \u0434\u0430\u043b\u0451\u043a\u043e\u0433\u043e \u0430\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0438\u043d\u0435\u043d\u0442\u0430. \u0422\u0430\u043c \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0439 \u042e\u0436\u043d\u043e-\u0410\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u0431\u0430\u043d\u043a\u0430 \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e \u0432 \u0441\u0432\u043e\u0435\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0438 \u043d\u0430 \u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0438\u0438 \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u043a\u0440\u0438\u043f\u0442\u043e\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u0443\u0436\u0435 \u0438\u0437\u0443\u0447\u0430\u0435\u0442 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0437\u0430\u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043e\u0432\u0430\u043d \u0432 \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0434\u0430\u0442\u044c \u044d\u0442\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f. 

\n
 \u00ab\u041a\u0430\u043a \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u0431\u0430\u043d\u043a, \u043c\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044b \u043a \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u043c \u043d\u0435\u0441\u043c\u043e\u0442\u0440\u044f \u043d\u0430 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u043e\u0435 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u043e\u0440\u043e\u0432 \u043a \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u043c. \u041c\u044b \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u044b \u0438\u0437\u0443\u0447\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043a\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e. 
\n

 \u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0439 \u0431\u0430\u043d\u043a \u042f\u043f\u043e\u043d\u0438\u0438 Bank of Tokyo-Mitsubishi UFJ (MUFG) \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e\u0431 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0438 \u0432\u0435\u0440\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043b\u0430\u0442\u0435\u0436\u0438 \u043f\u043e \u0447\u0435\u043a\u0430\u043c. \u0421\u043e\u0437\u0434\u0430\u043d\u043d\u043e\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0432 \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u043c\u0438 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u0430\u043c\u0438 \u0438 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u043c\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f\u043c\u0438 \u0432 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u043e\u043c \u0440\u0435\u0433\u0438\u043e\u043d\u0435. \u0412 \u0431\u0443\u0434\u0443\u0449\u0435\u043c Bank of Tokyo-Mitsubishi \u043d\u0430\u0434\u0435\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043c\u043e\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043d\u0430\u0439\u0442\u0438 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u0435.

\n

\u041e\u0442 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432 \u043d\u0435 \u043e\u0442\u0441\u0442\u0430\u044e\u0442 \u0438 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 \u043a\u043e\u043d\u0441\u043e\u0440\u0446\u0438\u0443\u043c\u0430 R3 CEV, \u0437\u0430\u043f\u0430\u0442\u0435\u043d\u0442\u043e\u0432\u0430\u0432\u0448\u0438\u0435 \u043d\u043e\u0432\u044b\u0439 \u043f\u0440\u043e\u0434\u0443\u043a\u0442 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 Concord, \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0439 \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0435 \u0423\u043e\u043b\u043b-\u0441\u0442\u0440\u0438\u0442.

\n

Concord \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0441\u043e\u0431\u043e\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0443, \u0441\u0432\u044f\u0437\u044b\u0432\u0430\u044e\u0449\u0443\u044e \u0432\u043e\u0435\u0434\u0438\u043d\u043e \u0440\u044b\u043d\u043a\u0438 \u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0438 \u043f\u0440\u0438\u0437\u0432\u0430\u043d\u043d\u0443\u044e \u043f\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u043c\u0438\u0434\u0434\u043b- \u0438 \u0431\u044d\u043a-\u043e\u0444\u0438\u0441\u043e\u0432 \u0432 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u0440\u0438\u0430\u043d\u0442. \u042d\u0442\u043e \u0434\u0430\u0441\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0431\u0430\u043d\u043a\u0430\u043c \u0438\u0437\u0431\u0430\u0432\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u044b\u0445 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432 \u0438 \u0441\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0442\u044c \u043c\u0438\u043b\u043b\u0438\u0430\u0440\u0434\u044b \u0434\u043e\u043b\u043b\u0430\u0440\u043e\u0432. \u041e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f, \u0447\u0442\u043e \u0430\u043b\u044c\u0444\u0430-\u0432\u0435\u0440\u0441\u0438\u044f \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430 \u0432 \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435 2017 \u0433\u043e\u0434\u0430.

\n

\u0412\u0441\u0451 \u044d\u0442\u043e \u0437\u0430\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u043e\u0432 \u0438 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0441\u0442\u043e\u0432 \u0441\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u043e\u043c \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u043b\u044c\u043d\u043e, \u043c\u0435\u043d\u044f\u044f \u0441\u0432\u043e\u0438 \u043f\u0440\u043e\u0433\u043d\u043e\u0437\u044b \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b.

\n

\u0412 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a \u041a\u0438\u0440\u0438\u043b\u043b \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u044d\u0442\u0438\u043c \u043f\u043e\u044f\u0432\u044f\u0442\u0441\u044f \u043d\u043e\u0432\u044b\u0435 \u043c\u0435\u0436\u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b.

\n
\u00ab\u0412 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 blockchain \u043f\u0440\u043e\u0447\u043d\u043e \u0443\u043a\u0440\u0435\u043f\u044f\u0442\u0441\u044f \u043d\u0430 \u043c\u0435\u0436\u0431\u0430\u043d\u043a\u0435, \u0432\u044b\u0442\u0435\u0441\u043d\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043e\u0431\u043c\u0435\u043d\u0430 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043c\u0435\u0436\u0434\u0443 \u043d\u0438\u043c\u0438 (\u0432 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0441\u0438\u0441\u0442\u0435\u043c\u0443 SWIFT) \u0438 \u0441\u0442\u0430\u043d\u0443\u0442 \u043d\u0435\u043e\u0442\u044a\u0435\u043c\u043b\u0435\u043c\u043e\u0439 \u0447\u0430\u0441\u0442\u044c\u044e \u0442\u043e\u0440\u0433\u043e\u0432 \u043d\u0430 \u0440\u044b\u043d\u043a\u0430\u0445 \u0446\u0435\u043d\u043d\u044b\u0445 \u0431\u0443\u043c\u0430\u0433. \u0427\u0442\u043e \u0436\u0435 \u043a\u0430\u0441\u0430\u0435\u0442\u0441\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0432 \u043f\u0440\u0438\u0432\u044b\u0447\u043d\u043e\u043c \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438, \u0442\u043e \u043e\u043d\u0438 \u0442\u0430\u043a\u0436\u0435, \u0441\u043a\u043e\u0440\u0435\u0435 \u0432\u0441\u0435\u0433\u043e, \u0443\u0436\u0435 \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u043c \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 blockchain \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u043d\u043e\u0435 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435\u00bb, \u2014 \u0441\u0447\u0438\u0442\u0430\u0435\u0442 \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e.
\n

\u041a\u041e\u041c\u041f\u0410\u041d\u0418\u0418

\n

\u0414\u0430\u0442\u0441\u043a\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Bitshares Munich IVS, \u0432\u043b\u0430\u0434\u0435\u044e\u0449\u0430\u044f \u0431\u0440\u0435\u043d\u0434\u043e\u043c BlockPay, \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0441\u0442\u0430\u0440\u0442\u0435 ICO. \u0412 \u0445\u043e\u0434\u0435 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 BlockPay, P2P-\u043c\u0435\u0441\u0441\u0435\u043d\u0434\u0436\u0435\u0440\u0430 ECHO \u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u044b\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u0435\u0439 Stealth. \u041f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043a\u0440\u0430\u0443\u0434\u0444\u0430\u043d\u0434\u0438\u043d\u0433\u043e\u0432\u043e\u0439 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043d\u0430 2016 \u0438 2017 \u0433\u043e\u0434\u044b. \u0421\u0430\u043c\u0430 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u043e\u0441\u0442\u043e\u0438\u0442 \u0438\u0437 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 ICO (Pre-ICO), \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0430\u0432\u0433\u0443\u0441\u0442 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430, \u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0430 \u0432 2017 \u0433\u043e\u0434\u0443. \u0412\u0441\u0435\u0433\u043e \u043f\u043b\u0430\u043d\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c 100 \u043c\u0438\u043b\u043b\u0438\u043e\u043d\u043e\u0432 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 BlockPay.

\n

\u041f\u0440\u043e\u0435\u043a\u0442 \u043f\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c \u043a\u043e\u0434\u043e\u043c Hyperledger \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u0438\u043c\u0435\u043d\u0430 \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u043e\u0441\u0442\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430. \u0421\u0440\u0435\u0434\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u2014 \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u044e\u0449\u0438\u0445 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0438 \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0439 \u0443\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0431\u0430\u0437\u044b \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u043a\u043e\u0434\u0430.

\n

\u0412 \u043d\u043e\u0432\u043e\u043c \u0441\u043e\u0441\u0442\u0430\u0432\u0435 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u043b\u0438 \u0441\u0432\u043e\u0438 \u043c\u0435\u0441\u0442\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 R3CEV \u0413\u0435\u043d\u0434\u0430\u043b \u0411\u0440\u0430\u0443\u043d, \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432 Digital Asset Holdings \u0422\u0430\u043c\u0430\u0448 \u0411\u043b\u0443\u043c\u043c\u0435\u0440, \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c Fujitsu \u0425\u0430\u0440\u0442 \u041c\u043e\u043d\u0442\u0433\u043e\u043c\u0435\u0440\u0438, \u0438\u043d\u0436\u0435\u043d\u0435\u0440 Intel \u041c\u0438\u043a \u0411\u043e\u0443\u043c\u0435\u043d \u0438 \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 IBM \u041a\u0440\u0438\u0441\u0442\u043e\u0444\u0435\u0440 \u0424\u0435\u0440\u0440\u0438\u0441. \u0421\u0440\u0435\u0434\u0438 \u043d\u043e\u0432\u044b\u0445 \u0438\u043c\u0435\u043d \u2013 \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c IBM \u0410\u0440\u043d\u043e \u043b\u0435 \u041e\u0440, \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u043e\u0440 IBM \u0411\u0438\u043d \u041d\u0433\u0443\u0435\u043d, \u0433\u043b\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a Intel \u0414\u044d\u043d \u041c\u0438\u0434\u0434\u043b\u0442\u043e\u043d, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 DTCC, Salesforce \u0438 \u041b\u043e\u043d\u0434\u043e\u043d\u0441\u043a\u043e\u0439 \u0444\u043e\u043d\u0434\u043e\u0432\u043e\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0441\u0442\u0430\u0440\u0442\u0430\u043f Chronicled Inc. \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u0434\u043b\u044f \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430 \u0432\u0435\u0449\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u044b\u043b \u0441\u043e\u0437\u0434\u0430\u043d \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 Ethereum. \u042d\u0442\u043e\u0442 \u0440\u0435\u0435\u0441\u0442\u0440 \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d \u0434\u043b\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0445 \u043a\u043e\u0434\u043e\u0432 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0438\u043c\u0435\u044e\u0449\u0438\u0445 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435 \u0447\u0438\u043f\u044b NFC \u0438 BLE.

\n
\u00ab\u0422\u0435\u043f\u0435\u0440\u044c \u0432\u0441\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0438 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0431\u0443\u0434\u044c-\u0442\u043e \u0431\u0440\u0435\u043d\u0434\u044b, \u043d\u043e\u0441\u0438\u0442\u0435\u043b\u0438 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0438 \u043f\u0440\u043e\u0447\u0435\u0435, \u043c\u043e\u0433\u0443\u0442 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0437\u0430\u0449\u0438\u0449\u0451\u043d\u043d\u044b\u0435 \u043e\u0442 \u043f\u043e\u0434\u0434\u0435\u043b\u043e\u043a \u0447\u0438\u043f\u044b \u0432 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 Chronicled \u0420\u0430\u0439\u0430\u043d \u041e\u0440\u0440. \u041d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u043e\u043c \u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043e \u043e\u043a\u043e\u043b\u043e 10 000 NFC \u0438 BLE \u0447\u0438\u043f\u043e\u0432.
\n

\u041a\u0430\u043a \u0441\u043e\u043e\u0431\u0449\u0430\u0435\u0442 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Business Insider UK, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u0432 \u0421\u0428\u0410 \u0442\u0435\u043b\u0435\u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Verizon Communications \u044d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0438\u0440\u0443\u0435\u0442 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0422\u0430\u043a, \u0432 \u0440\u0430\u0441\u043f\u043e\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u043f\u043e\u043f\u0430\u043b \u043f\u0430\u0442\u0435\u043d\u0442, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 Verizon 10 \u043c\u0430\u044f \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u0418\u0437 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u043f\u0430\u0442\u0435\u043d\u0442\u0430 \u0441\u043b\u0435\u0434\u0443\u0435\u0442, \u0447\u0442\u043e \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u0430 \u043d\u0435\u043a\u043e\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043a\u043b\u044e\u0447\u0435\u0439, \u0430 \u0440\u0430\u0431\u043e\u0442\u044b \u043d\u0430\u0434 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u043c \u0432\u0435\u043b\u0438\u0441\u044c \u043d\u0430 \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0442\u0440\u0451\u0445 \u043b\u0435\u0442. \u0412\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043f\u043e\u0434\u043e\u0431\u043d\u043e\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0432 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u0438 \u0441\u043e \u0441\u043c\u0430\u0440\u0442-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430\u043c\u0438 \u0434\u0430\u0451\u0442 \u043c\u0430\u0441\u0441\u0443 \u043d\u043e\u0432\u044b\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u0432 \u0441\u0444\u0435\u0440\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0438\u043b\u0438 \u0430\u0432\u0442\u043e\u0440\u044b \u0441\u0442\u0430\u0442\u0435\u0439 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0441\u0432\u043e\u044e \u043e\u043f\u043b\u0430\u0442\u0443 \u0441\u0440\u0430\u0437\u0443 \u0436\u0435 \u043f\u043e\u0441\u043b\u0435 \u0442\u043e\u0433\u043e, \u043a\u0430\u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0430\u0447\u0430\u043b \u0447\u0438\u0442\u0430\u0442\u044c \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b \u0438\u043b\u0438 \u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430\u0442\u044c \u043f\u0435\u0441\u043d\u044e.

\n

\u0412\u0430\u043b\u044e\u0442\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440\u0430 (MAS) \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u043b\u043e \u0441 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0435\u0434\u0438\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439, \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u043d\u044b\u0435 \u0443\u0441\u043b\u0443\u0433\u0438, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438.

\n

\u0421\u0442\u0430\u043b\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0447\u0442\u043e \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0441\u0442\u0430\u0440\u0442\u0430\u043f Keza \u0432\u044b\u043a\u0443\u043f\u043b\u0435\u043d \u0444\u0438\u043b\u0438\u043f\u043f\u0438\u043d\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 Satoshi Citadel Industries, \u0432 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u043c \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u043c \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0443\u0436\u0435 \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0442 \u0442\u0430\u043a\u0438\u0435 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u044b, \u043a\u0430\u043a Rebit.ph, Bitbit.cash \u0438 PrepaidBitcoin.ph.

\n
\u00abKeza \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u043b\u0430\u0441\u044c \u0441 \u043f\u0440\u0438\u0446\u0435\u043b\u043e\u043c \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u044e\u0449\u0438\u0435\u0441\u044f \u0440\u044b\u043d\u043a\u0438 \u0438 \u0434\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0435 \u0438\u043c\u0435\u044e\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u043c \u0440\u044b\u043d\u043a\u0430\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0430. \u041c\u044b \u0441\u0447\u0430\u0441\u0442\u043b\u0438\u0432\u044b, \u0447\u0442\u043e \u0442\u0435\u043f\u0435\u0440\u044c \u0432\u0438\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0441\u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0440\u0435\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043e\u00bb, \u2014 \u0446\u0438\u0442\u0438\u0440\u0443\u0435\u0442 CEO Keza \u0421\u0430\u0439\u043c\u043e\u043d\u0430 \u0411\u0435\u0440\u043d\u0441\u0430 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Silicon Angle.
\n

\u0414\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0435\u0442\u044c Steemit \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u00ab\u0431\u0435\u0441\u043f\u0440\u0435\u0446\u0435\u0434\u0435\u043d\u0442\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u0442\u0440\u0430\u0444\u0438\u043a\u0430\u00bb, \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u044b\u043c \u0441 \u0442\u0435\u043c, \u0447\u0442\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u043b\u0438 \u043d\u0430 \u0440\u0430\u043d\u043d\u0438\u0445 \u044d\u0442\u0430\u043f\u0430\u0445 \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f Facebook \u0438 Reddit.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Steemit, \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u0435\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u043e \u0440\u0430\u0437\u043c\u0435\u0449\u0430\u044e\u0442 \u0431\u043e\u043b\u0435\u0435 21 000 \u043d\u043e\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0430 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432 \u0432 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u043f\u043e\u0441\u0442\u043e\u0432 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0435\u0442 70 000. \u042d\u0442\u043e \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u043e \u0441 \u0440\u0430\u043d\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c\u044e \u043d\u0430 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0430\u0445 \u0432\u0440\u043e\u0434\u0435 Facebook \u0438 Reddit.

\n

\u0417\u0430 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u0434\u0435\u043b\u044c \u0434\u043e \u0441\u0442\u0430\u0440\u0442\u0430 \u043a\u0440\u0430\u0443\u0434\u0441\u0435\u0439\u043b\u0430 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 DECENT \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0434\u0438\u0441\u0442\u0440\u0438\u0431\u0443\u0446\u0438\u0438 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 DCT. \u0422\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0432\u0435\u0440\u0433\u043b\u043e\u0441\u044c \u043f\u0435\u0440\u0435\u0441\u043c\u043e\u0442\u0440\u0443 \u043e\u0431\u0449\u0435\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0445 \u043a \u0432\u044b\u043f\u0443\u0441\u043a\u0443 \u043c\u043e\u043d\u0435\u0442. \u041a\u0430\u043a \u0437\u0430\u044f\u0432\u0438\u043b\u0438 \u0432 DECENT, \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435, \u0445\u043e\u0442\u044f \u0438 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u043c, \u0442\u0430\u043a\u0436\u0435 \u0431\u044b\u043b\u043e \u043f\u0440\u0438\u043d\u044f\u0442\u043e \u0441 \u0443\u0447\u0435\u0442\u043e\u043c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430.

\n

\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Coinbase \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0438 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0441\u0432\u043e\u0435\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u043d\u0430 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442. \u0422\u0435\u043f\u0435\u0440\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u043a\u0443\u043f\u043a\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u043a\u0430\u0440\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Coinbase \u0432 \u0415\u0432\u0440\u043e\u043f\u0435.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Coinbase, \u0432 \u0421\u0428\u0410 40% \u0441\u0434\u0435\u043b\u043e\u043a \u043f\u043e \u043f\u043e\u043a\u0443\u043f\u043a\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0441 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0435\u043c\u0438\u0442\u0441\u044f \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u044d\u0442\u043e\u0442 \u0441\u0435\u0440\u0432\u0438\u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0432 \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435\u043c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0435 \u0441\u0442\u0440\u0430\u043d.

\n

\u041f\u0415\u0420\u0421\u041e\u041d\u0410\u041b\u0418\u0418

\n

\u041e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Distributed Lab \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u0440\u0430\u0441\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u044f \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0441\u0444\u0435\u0440\u0430\u0445 \u0435\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f, \u043d\u0430\u0437\u0432\u0430\u0432 \u043e\u0442\u0440\u0430\u0441\u043b\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043e\u043d\u0430, \u043d\u0430 \u0435\u0433\u043e \u0432\u0437\u0433\u043b\u044f\u0434, \u0432\u0440\u044f\u0434 \u043b\u0438 \u043d\u0443\u0436\u043d\u0430 \u0432\u043e\u043e\u0431\u0449\u0435. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u043f\u043e\u0441\u0442 \u0431\u044b\u043b \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d \u0432 \u0435\u0433\u043e \u0431\u043b\u043e\u0433\u0435 \u043d\u0430 Medium.

\n

\u0412\u044b\u0441\u043a\u0430\u0437\u0430\u0432 \u0440\u0430\u043d\u0435\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u0431\u0438\u0437\u043d\u0435\u0441 \u043d\u0435 \u0433\u043e\u0442\u043e\u0432 \u043f\u043e-\u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u043c\u0443 \u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u041f\u0430\u0432\u0435\u043b \u043d\u0430 \u044d\u0442\u043e\u0442 \u0440\u0430\u0437 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u043b \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u043e\u0434\u0430 \u0433\u0438\u0434 \u0434\u043b\u044f \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432. \u0412 \u043d\u0435\u043c \u043e\u043f\u0438\u0441\u0430\u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0430\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430\u0442\u0438\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u0438 \u0440\u0435\u0448\u0435\u043d\u0438\u0439 \u0438 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u043f\u043e\u043c\u043e\u0449\u044c \u0432 \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438 \u0442\u043e\u0433\u043e, \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043b\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043d\u0438\u0445 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0439.

\n
\u00ab\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043e\u0431 \u0438\u043c\u043f\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u044f \u043f\u043e\u043b\u0443\u0447\u0430\u044e \u043a\u0430\u0436\u0434\u044b\u0439 \u0434\u0435\u043d\u044c. \u041e\u0434\u043d\u0430\u043a\u043e \u0447\u0430\u0441\u0442\u043e \u044f \u0441\u0447\u0438\u0442\u0430\u044e, \u0447\u0442\u043e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u043d\u0435 \u043d\u0443\u0436\u0435\u043d \u0432\u043e\u0432\u0441\u0435. \u0415\u0441\u0442\u044c \u0434\u0440\u0443\u0433\u0438\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0442\u0438\u043f\u044b \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b, \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u2013 \u043b\u0438\u0448\u044c \u043e\u0434\u0438\u043d \u0438\u0437 \u043d\u0438\u0445\u00bb, \u2014 \u043f\u0438\u0448\u0435\u0442 \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e.
\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0435\u043c \u0433\u0443\u0440\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441\u0442\u0430\u043b\u0430 \u043b\u0435\u043a\u0446\u0438\u044f \u043a\u0430\u043d\u0430\u0434\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044f \u0414\u043e\u043d\u0430 \u0422\u044d\u043f\u0441\u043a\u043e\u0442\u0442\u0430, \u0430\u0432\u0442\u043e\u0440\u0430 \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0438\u0437\u0434\u0430\u043d\u043d\u043e\u0439 \u043a\u043d\u0438\u0433\u0438 \u00ab\u0420\u0435\u0432\u043e\u043b\u044e\u0446\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430\u00bb, \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u0432\u0448\u0435\u0433\u043e \u0441 \u043b\u0435\u043a\u0446\u0438\u0435\u0439 \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u043d\u0430 \u0441\u0430\u043c\u043c\u0438\u0442\u0435 TED Talk \u0432 \u0410\u043b\u044c\u0431\u0435\u0440\u0442\u0435. 

\n

 \u0423\u041a\u0420\u0410\u0418\u041d\u0410

\n

\u0412 \u0423\u043a\u0440\u0430\u0438\u043d\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u043e\u0432 \u0432 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0443\u043c \u0441\u0442\u0440\u0430\u043d\u044b. \u0422\u0430\u043a, \u043a\u043e\u043c\u0430\u043d\u0434\u0430 e-Vox \u0430\u043d\u043e\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043b\u0430 \u0437\u0430\u043f\u0443\u0441\u043a \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0439 \u0420\u0430\u0434\u0435 \u0411\u0430\u043b\u0442\u044b (\u041e\u0434\u0435\u0441\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c). \u041e\u0431 \u044d\u0442\u043e\u043c \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 ForkLog \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u043e\u0440 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041a\u043e\u043d\u0430\u0448\u0435\u0432\u0438\u0447. 

\n

\n

 \u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f, \u0432\u043d\u0435\u0441\u0435\u043d\u043d\u044b\u0435 \u0432 \u0434\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u0431\u0430\u0437\u0443 \u0434\u0430\u043d\u043d\u044b\u0445, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0438 \u0432\u044b\u0432\u043e\u0434\u0438\u0442\u044c \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0443 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0440\u0435\u0448\u0435\u043d\u0438\u0439. \u0410 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u043f\u043e\u043c\u043e\u0436\u0435\u0442 \u043d\u0430\u0434\u0435\u0436\u043d\u043e \u0437\u0430\u0449\u0438\u0442\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e\u0442 \u0432\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0435\u0433\u043e \u0438 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043f\u0440\u0430\u0432\u043d\u043e\u0433\u043e \u0432\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430.

\n

\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u043e\u0439 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430 e-Vox \u0437\u0430\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Ambisafe \u0438 Vareger.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0432 \u044d\u0442\u043e\u043c \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438 \u0432 \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. \u0422\u0430\u043a, \u043c\u044d\u0440 \u0433\u043e\u0440\u043e\u0434\u0430 \u0413\u0435\u043d\u043d\u0430\u0434\u0438\u0439 \u0414\u0438\u043a\u0438\u0439 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043b \u043f\u0440\u043e\u0435\u043a\u0442 \u043e\u0431 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b Auction 3.0 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043e\u0434\u043d\u043e\u0433\u043e \u0438\u0437 \u0430\u043a\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u043f\u0440\u0438\u043d\u044f\u0442 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u0435 \u0432\u0440\u0435\u043c\u044f.
\n\u041e\u0431 \u044d\u0442\u043e\u043c \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0440\u0435\u0448\u0435\u043d\u0438\u0438 \u00ab\u041e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043f\u043b\u0430\u043d \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0411\u0435\u043b\u043e\u0446\u0435\u0440\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0433\u043e \u0441\u043e\u0432\u0435\u0442\u0430 \u043f\u0440\u0438 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u044b\u0445 \u0430\u043a\u0442\u043e\u0432 \u043d\u0430 2016 \u0433\u043e\u0434\u00bb, \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043d\u043e\u043c \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. 

\n

\n

 \u0420\u041e\u0421\u0421\u0418\u042f

\n

\u0412 \u043f\u044f\u0442\u043d\u0438\u0446\u0443, 26 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0437\u0430\u043c\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041c\u043e\u0438\u0441\u0435\u0435\u0432 \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u041c\u0438\u043d\u0438\u0441\u0442\u0435\u0440\u0441\u0442\u0432\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u0435\u0442 \u043f\u0440\u043e\u0442\u0438\u0432 \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u00ab\u043b\u043e\u0431\u043e\u0432\u043e\u0433\u043e \u0437\u0430\u043f\u0440\u0435\u0442\u0430\u00bb \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430. \u041f\u043e \u0435\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u043c, \u0437\u0430\u043a\u043e\u043d\u043e\u043f\u0440\u043e\u0435\u043a\u0442 \u043e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u0445 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d \u043f\u043e \u0438\u0442\u043e\u0433\u0430\u043c \u043f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0435\u0440\u0438\u0438 \u0432\u0441\u0442\u0440\u0435\u0447 \u0441 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u0430\u043c\u0438.

\n

\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u044d\u0442\u043e \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u043b\u043e \u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u0435\u043c \u0432\u0441\u0442\u0440\u0435\u0447\u0438, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0441\u043e\u0441\u0442\u043e\u044f\u043b\u0430\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430 \u0420\u0424 \u043f\u043e\u0434 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e\u043c \u0441\u043e\u0432\u0435\u0442\u043d\u0438\u043a\u0430 \u043f\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0443 \u0413\u0435\u0440\u043c\u0430\u043d\u0430 \u041a\u043b\u0438\u043c\u0435\u043d\u043a\u043e. \u041d\u0430 \u043c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u0438 \u043e\u0431\u0441\u0443\u0436\u0434\u0430\u043b\u0430\u0441\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u0420\u043e\u0441\u0441\u0438\u0438 \u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0435\u0435 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f \u043d\u0430 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043b\u0438\u0441\u044c \u0432 \u0441\u0442\u043e\u0440\u043e\u043d\u0435 \u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0438 \u0432\u043b\u0430\u0441\u0442\u0438 \u041c\u043e\u0441\u043a\u0432\u044b, \u0437\u0430\u044f\u0432\u0438\u0432\u0448\u0438\u0435 \u043d\u0430 \u044d\u0442\u043e\u043c \u0436\u0435 \u0441\u043e\u0432\u0435\u0449\u0430\u043d\u0438\u0438 \u043e \u0433\u043e\u0442\u043e\u0432\u043d\u043e\u0441\u0442\u0438 \u0432\u043d\u0435\u0434\u0440\u0438\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb.

\n
\u00ab\u041c\u043e\u0441\u043a\u0432\u0430 \u0433\u043e\u0442\u043e\u0432\u0430 \u0431\u044b\u0442\u044c \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0418 \u043a\u0430\u043a \u0440\u0430\u0437 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0438\u043b\u043e\u0442\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043c\u044b \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb. \u041c\u044b \u0445\u043e\u0442\u0438\u043c, \u0441 \u043e\u0434\u043d\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u043e\u0442\u043f\u0438\u043b\u043e\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0438 \u043f\u043e\u043d\u044f\u0442\u044c, \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043e\u043d\u0430 \u0434\u0435\u0435\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u0430 \u0434\u043b\u044f \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u0442\u0430\u043a\u043e\u0433\u043e \u0440\u043e\u0434\u0430 \u0437\u0430\u0434\u0430\u0447. \u0421 \u0434\u0440\u0443\u0433\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u0441\u043d\u044f\u0442\u044c \u0441 \u0441\u0435\u0431\u044f \u043d\u0435\u043a\u0438\u0439 \u0441\u043a\u0435\u043f\u0441\u0438\u0441 \u0441\u043e \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0437\u0430\u043c\u0435\u0441\u0442\u0438\u0442\u0435\u043b\u044c \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0430 \u0434\u0435\u043f\u0430\u0440\u0442\u0430\u043c\u0435\u043d\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 \u041c\u043e\u0441\u043a\u0432\u044b \u0410\u043d\u0434\u0440\u0435\u0439 \u0411\u0435\u043b\u043e\u0437\u0435\u0440\u043e\u0432,
\n

\u041e\u043a\u0430\u0437\u0430\u043b\u0438\u0441\u044c \u0432\u043e\u0432\u043b\u0435\u0447\u0451\u043d\u043d\u044b\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0438 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430 \u0438 \u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0435 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0438\u043b\u044b. \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u00ab\u041f\u0430\u0440\u0442\u0438\u044f \u0420\u043e\u0441\u0442\u0430\u00bb \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u043b\u0430 \u043d\u0430\u0447\u0430\u043b\u043e \u043f\u0440\u0438\u0435\u043c\u0430 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0439 \u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430\u0445, \u043e\u0434\u043d\u0430\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u043c\u0438 \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430\u043c\u0438 \u043e\u043d\u0430 \u0441\u043c\u043e\u0436\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u044f \u0437\u0430\u043a\u043e\u043d\u0430 \u043e \u0441\u0442\u0430\u0442\u0443\u0441\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b.

\n


\n\u0412 \u0441\u0432\u044f\u0437\u0438 \u0441 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435\u043c \u043d\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0440\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u043e\u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u0432 \u043d\u0430 \u0441\u0447\u0435\u0442\u0430 \u044e\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043b\u0438\u0446 \u00ab\u0431\u0438\u0442\u043a\u043e\u0438\u043d\u044b \u0431\u0443\u0434\u0443\u0442 \u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u044f\u0442\u044c\u0441\u044f \u043d\u0430 \u043a\u043e\u0448\u0435\u043b\u0435\u043a \u0414\u043c\u0438\u0442\u0440\u0438\u044f \u041c\u0430\u0440\u0438\u043d\u0438\u0447\u0435\u0432\u0430, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043e\u043c\u0431\u0443\u0434\u0441\u043c\u0435\u043d\u0430 \u0438 \u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442\u0430 \u0432 \u0434\u0435\u043f\u0443\u0442\u0430\u0442\u044b \u043f\u043e \u041c\u0435\u0434\u0432\u0435\u0434\u043a\u043e\u0432\u0441\u043a\u043e\u043c\u0443 \u043e\u0434\u043d\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u043d\u043e\u043c\u0443 \u043e\u043a\u0440\u0443\u0433\u0443\u00bb.

\n

\u041a\u0418\u0422\u0410\u0419

\n

\u041f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u043d\u0435 \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435, \u0437\u0430\u043d\u0438\u043c\u0430\u044e\u0449\u0435\u0435\u0441\u044f \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0422\u0430\u043a, \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u041a\u0438\u0442\u0430\u044f \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u043e \u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0438 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0426\u0435\u043b\u044c\u044e \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u043b\u044c\u044f\u043d\u0441\u0430 \u0441\u0442\u0430\u043d\u0435\u0442 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a \u0438 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0432 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0443 \u0441\u0442\u0440\u0430\u043d\u044b, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043a \u0412\u0441\u0435\u043c\u0438\u0440\u043d\u043e\u043c\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0430\u043c\u043c\u0438\u0442\u0443, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0451\u043d \u0432 \u0428\u0430\u043d\u0445\u0430\u0435 \u0432 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u0435 \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0441\u0442\u0430\u0432\u0438\u0442\u0441\u044f \u043b\u0438 \u043f\u0435\u0440\u0435\u0434 \u044d\u0442\u043e\u0439 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f, \u043d\u043e \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0442\u043e\u0442 \u0444\u0430\u043a\u0442, \u0447\u0442\u043e \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u043f\u043e\u0438\u0441\u043a\u043e\u0432\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u041a\u0438\u0442\u0430\u044f Baidu \u0431\u0435\u0437 \u043a\u0430\u043a\u043e\u0433\u043e-\u043b\u0438\u0431\u043e \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f \u0443\u0434\u0430\u043b\u0438\u043b\u0430 \u0432\u0441\u044e \u0440\u0435\u043a\u043b\u0430\u043c\u0443, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u0443\u044e \u0441 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u043c \u0438 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u0432\u0430\u043b\u044e\u0442\u0430\u043c\u0438.

\n

\u041e\u0431 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0438 \u0434\u0432\u0435 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0435 \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0435 \u0431\u0438\u0440\u0436\u0438 OKCoin \u0438 Huobi, \u043f\u0438\u0448\u0435\u0442 Bloomberg News. \u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 Baidu \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441 \u0430\u0433\u0435\u043d\u0442\u0441\u0442\u0432\u0430 \u043e\u0442 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u0432\u043e\u0437\u0434\u0435\u0440\u0436\u0430\u043b\u0438\u0441\u044c. 

\n", + "cashout_time": "2016-09-29T04:28:30", + "category": "bitcoin", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:15:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779945, + "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto\",\"money\",\"news\"],\"image\":[\"http://radikal.ru/fp/949b19ab0ea142769b5d5bad6918e850\",\"http://radikal.ru/fp/ab1e6cf8f8ce414d8555699b45afc0eb\",\"http://forklog.com/wp-content/uploads/0e6dbfdc-638d-11e6-8e55-cc0a56a8b37c-1.png\",\"http://forklog.com/wp-content/uploads/14152259_10202179476045465_1807948603_o.jpg\",\"http://forklog.com/wp-content/uploads/14022327_853179024818469_8570878217622377273_n-1.jpg\"],\"links\":[\"http://forklog.com/zhurnalu-forklog-dva-goda/\",\"http://forklog.com/birzha-bitstamp-otmechaet-pyatiletnij-yubilej/\",\"http://forklog.com/kriptovalyutnaya-birzha-gdax-dobavila-litecoin/\",\"http://forklog.com/birzha-poloniex-snimaet-s-torgov-the-dao-i-drugie-altkoiny/\",\"http://forklog.com/krupnejshaya-bitkoin-birzha-turtsii-ostanovila-rabotu-iz-za-problem-s-bankom/\",\"http://forklog.com/apparatnyj-koshelek-trezor-dobavil-podderzhku-ethereum/\",\"https://github.com/trezor/trezor-mcu/pull/103\",\"http://forklog.com/platezhnyj-servis-bitwala-vklyuchil-v-spisok-rabochih-altkoinov-dash-i-emercoin/\",\"http://forklog.com/venesuelskij-platyozhnyj-servis-cryptobuyer-dobavil-podderzhku-dash/\",\"http://forklog.com/sostoyalsya-reliz-novoj-versii-ethereum-koshelka-mist-s-podderzhkoj-coinbase-buy-widget/\",\"http://forklog.com/vedushhie-banki-mira-obedinilis-dlya-sozdaniya-novoj-kriptovalyuty/\",\"http://forklog.com/yuzhno-afrikanskij-rezervnyj-bank-gotov-k-ispolzovaniyu-blokchejna-i-kriptovalyut/\",\"http://forklog.com/yaponskie-korporatsii-testiruyut-blokchejn-platformu-dlya-chekovyh-raschetov/\",\"http://forklog.com/konsortsium-r3-cev-zapatentoval-blokchejn-platformu-dlya-infrastruktury-uoll-strit/\",\"http://forklog.com/ekonomisty-prognoziruyut-vytesnenie-sistemy-swift-blokchejnom/\",\"http://forklog.com/kompaniya-bitshares-munich-ivs-obyavila-o-nachale-ico/\",\"http://forklog.com/proekt-hyperledger-nazval-novyj-sostav-tehnicheskogo-komiteta/\",\"http://forklog.com/startap-chronicled-inc-zapustil-otkrytyj-reestr-dlya-interneta-veshhej/\",\"http://forklog.com/kompaniya-verizon-communications-zapatentovala-blokchejn-hranilishhe-klyuchej/\",\"http://forklog.com/kriptovalyutnye-kompanii-singapura-budut-poluchat-edinuyu-litsenziyu-na-osushhestvlenie-deyatelnosti/\",\"http://forklog.com/investitsionnyj-bitkoin-startap-keza-budet-spasen-blagodarya-satoshi-citadel-industries/\",\"http://forklog.com/poseshhaemost-steemit-sravnyalas-s-rannim-facebook/\",\"http://forklog.com/komanda-decent-obyavila-o-vazhnyh-izmeneniyah-v-sisteme-distributsii-tokenov/\",\"http://forklog.com/polzovateli-coinbase-v-evrope-poluchili-vozmozhnost-pokupat-kriptovalyutu-pri-pomoshhi-bankovskih-kart/\",\"http://forklog.com/osnovatel-distributed-lab-nazval-oblasti-kotorym-ne-nuzhen-blokchejn/\",\"https://medium.com/@pavelkravchenko/investor-guide-does-this-cool-project-truly-need-blockchain-bdde70a26bfb#.40cs8sfz2\",\"http://forklog.com/avtor-knig-o-blokchejne-don-tepskott-vystupil-na-ted-talk/\",\"http://forklog.com/dostignuta-dogovorennost-o-zapuske-e-vox-v-balte-odesskoj-oblasti/\",\"http://forklog.com/meriya-beloj-tserkvi-perehodit-na-blokchejn-platformu-auction-3-0/\",\"http://forklog.com/minfin-rf-protiv-pryamogo-zapreta-bitkoina/\",\"http://forklog.com/v-rossii-obsudili-kriptovalyuty-na-gosudarstvennom-urovne/\",\"http://forklog.com/partiya-rosta-utochnila-shemu-priema-pozhertvovanij-v-bitkoinah/\",\"http://forklog.com/kitaj-pristupil-k-issledovaniyu-blokchejna-na-gosudarstvennom-urovne/\",\"http://forklog.com/kitajskij-poiskovik-baidu-zablokiroval-vsyu-svyazannuyu-s-bitkoinom-reklamu/\"]}", + "last_payout": "2016-08-30T04:28:30", + "last_update": "2016-08-28T17:15:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_hbd": 10000, + "permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "reward_weight": 10000, + "root_author": "forklognews", + "root_permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "title": "\u0414\u0430\u0439\u0434\u0436\u0435\u0441\u0442 \u043d\u043e\u0432\u043e\u0441\u0442\u0435\u0439 \u2013 \u043e\u0431\u0437\u043e\u0440 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0438\u043d\u0434\u0443\u0441\u0442\u0440\u0438\u0438", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:14:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "paulsemmelweis", + "author_rewards": 0, + "beneficiaries": [], + "body": "Discussed below are two new articles that shed light on the grand economic chessboard controlled by governments while paving the way for more lies and manipulation by the media...\n\nGlobal central bankers, stuck at zero, unite in plea for help from governments: https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\n\nAs Fed nears rate hikes, policymakers plan for 'brave new world': https://ca.news.yahoo.com/fed-nears-rate-hikes-policymakers-plan-brave-world-005117150--business.html\n\nWhile simultaneously espousing Obama's great economic achievements in the press for years after saving the nation from peril in 2008, central bankers now openly admit there's a very weak economy and a recovery that never was. You know, facts.\n\nWhile talk of \"new tools\" needed to fight the next recession unofficially dominated the annual meeting of our monetary overlords in Wyoming, it is quite clear that the main weapon in their arsenal is the same as it was then; to maintain control over human beings by selling a never ending stream of fiction to the public.\n\n\"it may take a massive program, large enough even to shock taxpayers\"\n\"hard to convince markets and households that things will get better\"\n\"encourage the shift in mood\"\n\"prevent public expectations\"\n\"do not respond in expected ways\"\n\nAnd this gem\u2026 \"In modern monetary theory, households and business expectations are felt to play a defining role.\"\n\nSounds really modern!\n\nThe article ends with this\u2026 \"It was not clear whether such ideas will catch on. But there was a broad sense here that the other side of government may need to up its game.\"\n\nA game indeed. Of mass manipulation for the benefit of those who rule us while easily selling the public what they are doing is in their best interests.", + "cashout_time": "2016-09-28T19:47:36", + "category": "economics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:14:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779934, + "json_metadata": "{\"tags\":[\"economics\",\"government\",\"central\",\"banks\",\"recession\"],\"links\":[\"https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\"]}", + "last_payout": "2016-08-29T19:47:36", + "last_update": "2016-08-28T17:14:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "economics", + "percent_hbd": 10000, + "permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "reward_weight": 10000, + "root_author": "paulsemmelweis", + "root_permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "title": "It's just a game to governments and central bankers", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "randolphrope", + "author_rewards": 0, + "beneficiaries": [], + "body": "On the way to Chinle, Arizona USA \n\nJust off the highway over looking the desert.\n\nhttp://imgur.com/ITp3j5l.jpg\n\nI just remember one on the drive.", + "cashout_time": "2016-09-28T18:29:18", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:13:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779930, + "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"\"],\"image\":[\"http://imgur.com/ITp3j5l.jpg\"]}", + "last_payout": "2016-08-29T18:29:18", + "last_update": "2016-08-28T17:13:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "steem-it-photo-challenge-6", + "reward_weight": 10000, + "root_author": "randolphrope", + "root_permlink": "steem-it-photo-challenge-6", + "title": "Steem.it photo challenge # 6", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ebluefox", + "author_rewards": 0, + "beneficiaries": [], + "body": "Empathy is an interesting aspect of human nature that many people do not possess. Empathy in short is the ability to view an scenario from a different perspective than your own, normally to better understand someone's perspective on certain topics or ideas. This handy skill is a learned skill and when used effectively can be used to better understand humanity.\nBut as with every neat skill, they tend to have as many pros as they do cons. So i will attempt to explain the pros and cons that i have found apparent with empathy.\n There are quite a few pros to empathy, one of which being in your reputation. A person who uses empathy often is normally seen as a loving compassionate person. Another pro that is quite noticeable is the ability to understand unexplained problems. On occasion if a problem really troubles someone or is very personal, most people will not tell anyone about it. But with empathy you can figure out what is troubling them sometimes with something as simple as \"How have you been?\". A more prominent pro of using empathy is better understanding how a person truly is. Most people wear a \"Facade\" in public or a metaphorical mask, these tend to hide their true personality from the public eye and conceal most things about them. Using empathy, you can work around the \"Facade\" and figure out how they truly are as a person, and most of the time appreciate them a bit more.\n Empathy has allot of pros but also has its fair share of cons to go with it, a good example of one of its cons is a changed perspective. under most circumstances, use of empathy becomes a habit and changes your outlook on everyone around you. This is not really very terrible, but it can lead to you disliking a person more than would have normally. Another apparent con is over-assessing someone. This can happen when you use empathy on someone and spot something that would make you feel awful, but in truth does not faze them. Here is an example. You are talking with a person and figure out that they don't have a mother. To you that may seem horrible and you start pitying them, when in truth it may not even matter to them in the slightest. A more cumbersome problem with empathy lies with information. In order to understand or sympathize with someone you need to understand the problems they put up with. If you ask too many questions about their life, they may find you \"Nosy\" or \"Annoying\". On the contrary, if you do not inquire very much about them, you will not have any idea of their standpoint at all and cannot empathize with them. The last con i will cover is drama. It is very easy to get caught in some drama if you try to understand peoples problems, some of which may be very serious. Some people are not patient enough to deal with the newly acquired drama and can sometimes make the problem worse than it need to be.\n This list most definitely did not cover every pro or con associated with empathy because they will differ from person to person however i did cover a few recurring pros and cons. whether you think empathy is worth your time and energy is up to you and your values in life and social interaction.", + "cashout_time": "2016-09-28T17:28:57", + "category": "empathy", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:13:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779923, + "json_metadata": "{\"tags\":[\"empathy\",\"psychology\",\"social-skills\",\"problems\"]}", + "last_payout": "2016-08-29T17:28:57", + "last_update": "2016-08-28T17:13:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "empathy", + "percent_hbd": 10000, + "permlink": "the-pros-and-cons-of-empathy", + "reward_weight": 10000, + "root_author": "ebluefox", + "root_permlink": "the-pros-and-cons-of-empathy", + "title": "The Pros and Cons of Empathy", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "2243580957008", + "active": "2016-09-11T21:09:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemsquad", + "author_rewards": 588, + "beneficiaries": [], + "body": "\n

We are STEEMSQUAD, a Steemit inititative to promote diversity and quality of content by featuring authors from the school of minnows.

\n

\"steem-squad3\"
\n

\n

WHAT is #steemsquad?

\n

Steemsquad is an initiative of multiple minnows whose objective is to promote diverse and quality content and their work which may not have a chance to get noticed when published in the main streem. STEEMSQUAD initiative will try to tweak the game to equally distribute the wealth among its members. 

\n

STEEMSQUAD is a community-backed account responsible for posting blogs of qualified authors and at the same time upvotes quality blog posts of its members.

\n

Members of STEEMSQUAD are from across multiple timelines to ensure a 24/7 support and active participation in Steemit.

\n

The Issue at Hand

\n

For quite some time, there has been a noticeable trend as to who gets rewards. Those favored are the whales themselves, members with high reputation levels, incoming popular personalities and celebrities either from the cryptocurrency world or the entertainment world. A number of people from the finance institutions have joined as well and have garnered huge rewards on their \u201cintroductory\u201d posts.

\n

And what happens to those who are not celebrities, unknown personalities from not-so-popular backgrounds? Their posts get dumped, thrown into oblivion. Then all the sweat and blood poured spilled into writing the blog just go to waste. This is where #steemsquad comes in.

\n


\n

WHY We Do It?

\n

Steemit is a social media platform where **EVERYONE** gets paid for creating and curating content, as promised if and when you decide to dive into the Steemit Ocean. 

\n

It leverages a robust digital points system, called Steem, that supports real value for digital rewards through market price discovery and liquidity.

\n

We aim to give EVERYONE a chance to get noticed, earn rewards, and be a part of a community of people helping people.

\n

You Can Succeed

\n

All HOPE is NOT LOST. We have seen minnows rise to the occasion. With a positive attitude, an unwavering determination, lots and lots of good quality posts (one is enough though to get you 15k, if you hit the nail on the head), there is no reason why you can\u2019t be successful here in Steemit.

\n

#steemsquad will support you along the way.

\n

OUR GOLDEN RULES

\n
    \n
  1. We give priority to quality contents from low-powered profiles (minnows).
  2. \n
  3. The published author gets 100% of SBD. However, 50% of which goes to the author\u2019s SP to allow the author to power-up leveraging his/her SP to upvote other writers.
  4. \n
  5. Any SP earned by STEEMSQUAD remains in the STEEMSQUAD account to gain more voting power for the benefit of its members.
  6. \n
  7. Pay-it-forward. The powered-up author commits to help other writers by upvoting and commenting to blog post to increase the post\u2019s value.
  8. \n
\n


\n

HOW TO GET PUBLISHED BY STEEMSQUAD

\n

\n

PHOTO CREDIT: Anna Frajtova / shutterstock.com
\n

\n
    \n
  1. FOLLOW the account STEEMSQUAD and be a member of the initiative.
  2. \n
  3. You have to signify your willingness to join by coming to our official chatroom in https://steemit.chat/channel/steemsquad. Introduce yourself and state your intention to join the initiative. Include a link to your Steemit profile.
  4. \n
  5. Submit your article in plain text format and links to images. Send your entry to @steemit.asia or @sebastien or @jaycobbell as a PM.
  6. \n
  7. Article must be at least 300 words with at least 1 image.
  8. \n
  9. Give credit to the images you use.
  10. \n
  11. If you quote someone, give credit as well.
  12. \n
  13. At least 80% of the article must be your own.
  14. \n
  15. You will get feedback after 24 hours and a schedule will be provided when your work will be published.
  16. \n
  17. Once it is published, it will be promoted to the chatroom by either @steemit.asia or @sebastien or @jaycobbell in https://steemit.chat/channel/steemsquadpromotional for all members to see. This is where all promotions are done.
  18. \n
\n


\n

HOW TO GET UPVOTED BY STEEMSQUAD AND MEMBERS

\n


\nPHOTO CREDIT: Clipartix.com
\n

\n
    \n
  1. To get a chance to be upvoted by STEEMSQUAD, you must have a QUALITY blog post.
  2. \n
  3. Use the tag #steemsquad in your blog post.
  4. \n
  5. Our curators will browse through all blog posts using our official #steemsquad tag name and choose will notify the author by commenting that the post has been chosen as a featured post/author. It will be promoted in our chat channel https://steemit.chat/channel/steemsquadpromotional.
  6. \n
\n


\n

STEEMSQUAD ACCOUNT SECURITY

\n

The Posting Key (The posting key is used for posting and voting. It should be different from the active and owner keys) will be given to at least 3 members of STEEMSQUAD responsible for posting blog posts in 24 hour cycle.

\n

The Active Key (The active key is used to make transfers and place orders in the internal market) will be given to 2 members of STEEMSQUAD. One member will act as auditor/backup in case the primary member is not available.

\n

The Owner Key (The owner key is the master key for the account and is required to change the other keys) is given to one Whale sponsor and 2 other members of STEEMSQUAD.

\n

A member responsible for the account security may hold more than one (1) key as shown above.

\n


\n

OUR MENTORS

\n

There are people we consider as examples on the platform. Inspiration, mentors.

\n

@juneaugoldbuyer
\n@thedollarvigilante
\n@dragonslayer109
\n@stellabelle
\n@charlieshreem
\n@rogerkver
\n@donkypong
\n@tuck-fheman
\n@masteryoda
\n@andrarchy 

\n

\"steem-squad-FOLLOW-US\"
\n

\n", + "cashout_time": "2016-09-29T11:08:54", + "category": "introduceyourself", + "children": 18, + "children_abs_rshares": "2254360518257", + "created": "2016-08-28T17:13:18", + "curator_payout_value": { + "amount": "173", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779920, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemsquad\",\"steemit\",\"minnows\",\"writing\"],\"users\":[\"steemit.asia\",\"sebastien\",\"jaycobbell\",\"juneaugoldbuyer\",\"dragonslayer109\",\"stellabelle\",\"charlieshreem\",\"rogerkver\",\"donkypong\",\"tuck-fheman\",\"masteryoda\",\"andrarchy\"],\"image\":[\"https://c1.staticflickr.com/9/8171/29209353271_2eabbba74f_o.png\",\"https://cdn.elegantthemes.com/blog/wp-content/uploads/2016/02/Essential-Blogging-Skills-Know-your-Audience-shutterstock_222537538-Anna-Frajtova.png\",\"http://clipartix.com/wp-content/uploads/2016/04/Thumbs-up-clipart-3.png\",\"https://c1.staticflickr.com/9/8305/29179909862_ed27607510_o.png\"],\"links\":[\"https://steemit.chat/channel/steemsquad.\",\"https://steemit.chat/channel/steemsquadpromotional\",\"https://steemit.chat/channel/steemsquadpromotional.\"]}", + "last_payout": "2016-08-30T11:08:54", + "last_update": "2016-08-28T17:13:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T14:10:24", + "net_rshares": "2243580957008", + "net_votes": 57, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "reward_weight": 10000, + "root_author": "steemsquad", + "root_permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "title": "Hello! We Are STEEMSQUAD And We Are Here to Support The Minnows. Read On.", + "total_payout_value": { + "amount": "566", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "2243580957008" + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "okay", + "author_rewards": 0, + "beneficiaries": [], + "body": "## A picture is worth a thousand words, more so in astronomy ##\n\n**Let's take a look at the coming week's sky**\n\n\nhttp://www.skyandtelescope.com/wp-content/uploads/Venus-Jupiter-27Aug2016_f.jpg\n(Image courtesy of Sky and Telescope)\nOn August 27th, about 45 minutes after sunset, go outdoors and start looking low above the horizon in the west for an amazingly close pairing of Venus and Jupiter.\n\nhttp://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\n\n\nNext weekend, shortly after sunset, the thin Moon (waxing crescent) steps away from Venus and Jupiter.\n\nLooking at the night sky is a great joy! Free for everyone with no ticket required. You can watch the evening sky with your naked eye, no need for telescope or binoculars for these beautiful astronomical events.\n\n*Stay tuned for next week's sky.*\n\n\n\n\n If you enjoyed this post please vote for my witness node. Learn how to vote for witness `okay` **at the end of my witness post** by [**clicking here**](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network). ", + "cashout_time": "2016-09-28T16:11:21", + "category": "science", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-08-28T15:45:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 778828, + "json_metadata": "{\"tags\":[\"science\",\"astronomy\"],\"image\":[\"http://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", + "last_payout": "2016-08-29T16:11:21", + "last_update": "2016-08-28T17:13:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "science", + "percent_hbd": 10000, + "permlink": "this-week-s-sky-aug-27-sep-3", + "reward_weight": 10000, + "root_author": "okay", + "root_permlink": "this-week-s-sky-aug-27-sep-3", + "title": "This Week's Sky Aug-27/Sep-3", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "130408996119", + "active": "2016-08-28T17:36:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skyefox", + "author_rewards": 125, + "beneficiaries": [], + "body": "As I have stated in earlier posts, gardening is currently my obsession.. it's seems wild to me that the standard is to work for currency and trade currency for food rather than just growing your own food. \n

Here is my small harvest from this morning!

\nEvery morning I go out and eat a couple of my cherry tomatoes, a few leafy greens, and usually 1/2 a leaf of my sweet basil. It's a wonderful thing to wake up, take the dog out and get a healthy organic little snack. I love it.\nhttps://s14.postimg.org/62aqviz0h/IMG_1804.jpg\n\n\nI understand that gardening takes time, effort, and a little bit of knowledge but in my opinion it is one of the most reward \"hobbies.\" This is my first year gardening. I decided to garden this year because I have been doing more and more reading about the American food industry and my conclusion is that the American population are being made sick on purpose through the food we eat. I don't know exactly what does what in our food but it seems absolutely insane to me that we can't get the FDA to evaluate any dietary supplements but they will evaluate and even vouch for these lab made pharmaceutical drugs. \n\nAll of this lead me to feeling a strong urge to grow organic food. I honestly feel guilty when I feed my family and I don't fully believe in what we are eating. Don't get me wrong, I love pepperoni pizza but ignorance is bliss, and I am not ignorant to what I am eating. \n\nI believe I am slowly heading down the path of becoming a vegan as I gain more knowledge. I have always been a hunter and a fisherman, it's what I was taught as a young boy in the north woods. I love to hunt and fish, but I also have a very deep compassion for life. Not human life, but life in general. I believe that we are intelligent enough as a species to live without causing harm to other living things that are equipped with nervous systems. I guess I am just realizing day by day that things are not necessarily what I have been told... \n

This kind of sums up how I feel currently...

\nhttps://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\n\nI am not a very good consumer. I am very frugal and calculated with my money, sometimes to a fault. I'm also not good at being an employee and just being a \"gear in the machine.\" I was not built to work and be told what to do while someone acts as if their employment position somehow gives them a higher status than I. We are humans, you just have a different job. These factors, and many others, have lead to me being self employed and trying to find my way on the internet. I have dabble in many things online and I have learned enough to at least provide myself with enough income to pay my mortgage, bills, etc.. \n\nI am also someone that is in the prepper mind state. I have started my small stockpile of beans, rice, and various other dried foods. I think that the American people have become complacent and many of us are just chasing the carrot we were instructed to chase. Many people seem to not realize the fact that we as a country heavily depend on other people or corporations for the things we use everyday. If water and electricity were to be shut off and panic set it, many people would die because they don't know what to do without someone else providing them with these luxuries. \n\nI don't like the idea of depending on anyone for anything. I have always been someone who provided for myself. I got a job at 14 years old at the local bakery working Saturday mornings so that I could get my first computer myself. I worked for weeks, since I was only getting paid $5.15/hour (roughly 13 years ago) it took me a long time to save up for a computer to play Counterstrike 1.5... We had 6 kids in our house in a \"middle class\" family, needless to say we were told to get jobs as early as possible to acquire our luxuries. Since then I have had the mindset that I don't want to allow someone else to be \"the hand that feeds\", and that applies to food, water, electricity, and even knowledge of my child. \n\nDEPENDENCY OPENS THE DOORS FOR EXPLOITATION! And in a capitalist driven global economy, if it can be exploited, it often is. \n\nMy apologies, there I go again, going of on some rant instead of just showing you the damn garden update. I already can't wait for next spring. I have been buying heirloom vegetable seeds and thrift shopping for large planters for $1 so that next year I can grow lots more. \n

This is the Pink Brandywine that I am so excited about!

\nThese guys took forever to grow. I didn't know what I was doing and I had put too many plants in 1 planter which caused them to compete for the nutrients. On top of them a strong storm came through and blew these guys over and bent there stalks horizontal. I really didn't know if I would get any fruit from them, but they are changing and I can't wait to eat these!\nhttps://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\n\nhttps://s14.postimg.org/e3txgbbgh/IMG_1800.jpg\n\nHere is a cucumber that is growing a little goofy. Not sure why but its like a beer can cucumber... lol\nhttps://s14.postimg.org/c1tg22dhd/IMG_1802.jpg\n\nA more normal cucumber... \nhttps://s14.postimg.org/610t23x6p/IMG_1803.jpg\n\nAnd this is my $3 table I built so that I could start my seeds indoors under some fluorescent lights. \n\n\nhttps://s14.postimg.org/6t3h1b1dt/IMG_1805.jpg\n\n\nThank you for reading and happy gardening!", + "cashout_time": "2016-09-28T18:11:57", + "category": "garden", + "children": 2, + "children_abs_rshares": "130408996119", + "created": "2016-08-28T17:12:54", + "curator_payout_value": { + "amount": "15", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779916, + "json_metadata": "{\"tags\":[\"garden\",\"photography\",\"rant\",\"food\"],\"image\":[\"https://s14.postimg.org/62aqviz0h/IMG_1804.jpg\",\"https://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\",\"https://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\"]}", + "last_payout": "2016-08-29T18:11:57", + "last_update": "2016-08-28T17:12:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-12T21:18:18", + "net_rshares": "130408996119", + "net_votes": 37, + "parent_author": "", + "parent_permlink": "garden", + "percent_hbd": 10000, + "permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "reward_weight": 10000, + "root_author": "skyefox", + "root_permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "title": "A small garden update... My Pink Brandywine Tomatoes are coming!", + "total_payout_value": { + "amount": "123", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "130408996119" + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:08:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "fitiliper1985", + "author_rewards": 0, + "beneficiaries": [], + "body": "
http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png
\n

\n

Before I was in a relationship, I didn't have much sex. My first sexual intercourse occurred while I was travelling overseas on a holiday by myself. I met a woman in hawaii at the airport, and later had sex with her.

\n

I had done a lot of masturbating prior to this. I had often thought about having sex, and I found that my sexual drive caused me to behave in ways that I normally wouldn't. 

\n

\n
https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg
\n

\n

For example I would follow women I found attractive, or I would try to look up their skirts, or I would wander about at night to try to look into bedroom windows.

\n

When I met someone that I knew I would marry, I thought I would be able to have sex as much as I liked because my wife would always be available to have it with me. This turned out to be untrue. My wife didn't want to have sex as often as I wanted to, and I found myself still masturbating while I waited for the next time to come.

\n

I don't think women understand the power of their husband's sexual drive. 

\n

\n
http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg
\n

\n

Men are attracted to women by how they look. It doesn't matter if they are strangers. Men will look at a woman dressed in  a certain way and will start feeling horny. As soon as they ejaculate, the feeling of horniness goes, but will return in a couple of hours. When the sexual desire comes upon a man, it becomes his dominating thought, and it demands to be satisfied. That's why many men then masturbate in order to relieve the pressure on their thoughts. If unrelieved the pressure grows and if the wife is unwilling to have sex, then some men will look for other women to have sex with. 

\n

The sexual pressure is constantly present in a man's mind until relief comes.

\n

\n
https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg
\n

\n

Most women are not as interested in sex as men. 

\n

\n
https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg
\n

\n

Women are more interested in relationship.  Women have sex with a man in the hope that the man will want to stay in their life and have a relationship with them. 

\n

Some women use sex as a bait to catch a man, and then when the relationship is happening, they are not as interested in sex anymore. Women enjoy sex, but as part of a fulfilling relationship. Men just want to put their penis into a vagina and ejaculate. As soon as ejaculation occurs, a lot of men lose all interest in the woman. The woman then feels hurt and used because she didn't get what she wanted which was relationship. Men will say anything they think a woman wants to hear in order to have sex.

\n

Wives who have sex with their husbands when not really wanting it, feel used by their husbands. Women also can be selfish when they demand sex from men who are not in the mood. 

\n

God created sex to be enjoyed in a committed relationship between a man and a woman who are one person physically, spiritually, emotionally, and mentally. 

\n

Sex is a part of the relationship, not the main thing. If a man demands sex then he is being selfish, and his relationship will be harmed if the woman gives sex to the man when she is not wanting to have it. If the man wants sex with his wife, then he must give her what she wants. He must romance her and give her a good relationship. Then if sex happens, it will be enjoyable for both of them. This will build the relationship.

", + "cashout_time": "2016-09-28T17:56:42", + "category": "sex", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-08-28T17:12:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779915, + "json_metadata": "{\"tags\":[\"sex\",\"psychology\",\"life\",\"story\",\"\"],\"image\":[\"http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png\",\"https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg\",\"http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg\",\"https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg\",\"https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg\"]}", + "last_payout": "2016-08-29T17:56:42", + "last_update": "2016-08-28T17:12:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 12, + "parent_author": "", + "parent_permlink": "sex", + "percent_hbd": 10000, + "permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "reward_weight": 10000, + "root_author": "fitiliper1985", + "root_permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "title": "In a relationship, sex becomes a matter of selfishness or unselfishness.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "s0lo", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

Slightly more than a month since then, how did the Ethereum classic (ETC). The ETC team presented a \"road map\" of development of the project, at the first meeting of the supporters of Ethereum Classic (ETC), held on 18 August in London.

\n
The basic version of partitioning the network according to the version of ETC was this:
\n
\"The separation of Ethereum was the result of a difference in the understanding of the basic principle of cryptocurrency. At that time, as fork (ETH) was carried out to recover the stolen funds to investors DAO, Ethereum classic is the original version, based on the principle that \"code is law.\"
\n

Supporters of the ETS argue that the decentralization of infrastructure are insufficient to minimize the possibility of hacking and fraud. For example, the developers of Ethereum actively invested their funds in DAO. Therefore, the decision about hard forks could be dictated by a conflict of interest.

\n

Community ETC believes that all key aspects of the ecosystem should be decentralized, including technological functions such as research and development, and public and administrative functions, including marketing, development and management of the DAPP.

\n

There are plans to remove so-called \"bomb of complexity\" (constant increase in the complexity of mining at ETH) to provide POW mining and make ETC more viable for the miners.

\n

In addition, the community is considering a new economic policy and hybrid solutions using Proof-of-stake (PoS). And, finally, developed new technology to ensure the functioning of \"smart contracts\", but no details.

\n

Classic Ethereum plans to develop the community to the upcoming events in Toronto, Shanghai and Melbourne. These meetings should be used to create local centers. In addition, the stage of development of the relationships with universities, startups and companies. Road map to the end of this year aims to reach consensus with the main team ETC. and receive financial support of developers from third parties.

\n

Initially, the team ETC was planning to copy all the updates that are entered in the ETH, but later decided to give myself a certain amount of autonomy. how and by whom it will be implemented - at the moment neizvestnoy

\n

In 2017, ETC will test different mechanisms of consensus and optimal monetary policy system. In addition, meetings will be held in an expanded format to appeal to a greater number of miners and the following year to create their own ecosystem the development of DAPP.

\n

Perhaps in the course of the year will be able to understand how realistic are attempts to \"overtake and surpass\" team Baterina in the main activities of the Ethereum project.

\n

By 2018, the community ETC choose PoW or hybrid mechanism of consensus and create the proper monetary policy.

\n

More concrete steps at this meeting was not presented.

\n

The rate continues to fall.

\n

Despite the publication of the road map and programme of community development, exchange rate ETC continues to fall. ETC cryptocurrency by market capitalization behind Litecoin and Steem, even given the significant losses the last, and is now in sixth place. ETC remains below the psychologically important level of $2.00 that is displayed on the chart.

\n

\n

ETC trend/USD exchange Poloniex has broken below the most recent level of the fractal at $1.60. A daily close below this level should lead us to a level of $1.34. Please note that the conversion line (blue) currently has resistance at $ 1.7235. 

\n

In addition, the trading volume of the Ethereum classic naturally falling after the initial hype created around this cryptocurrency. This also indicates a greater risk and tells about the deterioration of the situation. Thus, the market is looking down with a possible reversal on the $ 1.34 or even $ 1.00.

\n", + "cashout_time": "2016-09-28T17:44:00", + "category": "road", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:12:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779914, + "json_metadata": "{\"tags\":[\"road\",\"map\",\"etc\",\"ethereum\",\"classic\"],\"image\":[\"http://bits.media/images/news/260816/260816_ethereum-classic-roadmap_1.jpg\",\"http://bits.media/images/news/260816/260816_ethereum-classic-roadmap_2.jpg\"]}", + "last_payout": "2016-08-29T17:44:00", + "last_update": "2016-08-28T17:12:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "road", + "percent_hbd": 10000, + "permlink": "road-map-ethereum-classic-helped-to-keep-the-course", + "reward_weight": 3950, + "root_author": "s0lo", + "root_permlink": "road-map-ethereum-classic-helped-to-keep-the-course", + "title": "Road map Ethereum Classic helped to keep the course.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json index 60690bf4..577209f7 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 779946, - "author": "gringalicious", - "permlink": "hello-again-better-late-than-never-a-re-introduction-verification", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "Hello Again - Better Late Than Never - a RE introduction VERIFICATION", - "body": "\n

Ok, I surrender!  A horrible picture of myself holding a piece of paper.  I have to say, I don't get it.  I hate taking pictures of myself.  But, several of you have insisted, so... you win, here it is, verification for @gringalicious

\n

\n

I am a 20 year old food blogger living in Chile with my crazy family.  You can read more about that at my first attempt of introducing myself here: Gringalicious Intro .  I have a passion for cooking and a passion for photography.  Yeah, I know, you can't tell by the photo above, but I digress.  You can see examples of my passion on my page @gringalicious. I don't like labels necessarily, but let's just say I don't like the state and those conditioned by the state telling me what to do.  Nor do I like telling others how they should liver their lives.  I will post more on those topics at a later date.

\n

The idea of #Steemit thoroughly intrigues me.  I look forward to being part of the community!

\n

And since I am here talking about myself, I was featured in a magazine recently.  Not trying to promote the magazine necessarily, just trying to add validity to my verification.  And, I have to admit, I just a little proud of myself.

\n

\n

\n


\n

Later this week, I'll be posting a recipe with a #steemitlogo incorporated in it.  So, keep an eye out for it.

\n

I do hope this helps satisfy the request that many of you have made.  If I need to do something different, please let me know.  I actually like corrective criticism so bring it on.

\n

Until my next post, hasta luego mis amigos

\n

Tori

\n", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"food\",\"photography\",\"Steemit\",\"steemitlogo\"],\"users\":[\"gringalicious\"],\"image\":[\"https://s19.postimg.org/9vrr3pg8j/DSC_0750_2.jpg\",\"https://s19.postimg.org/4j2wpksc3/IMG_20160828_131820621.jpg\",\"https://s16.postimg.org/3ougnif51/IMG_20160828_131853738.jpg\"],\"links\":[\"https://steemit.com/introduceyourself/@gringalicious/hola-steemit-photographer-food-blogger-traveler-and-student-of-life-i-am\"]}", - "last_update": "2016-08-28T17:15:12", - "created": "2016-08-28T17:15:12", - "active": "2016-08-31T12:56:54", - "last_payout": "2016-08-29T22:59:51", - "depth": 0, - "children": 48, - "net_rshares": "114793970759", - "abs_rshares": "114793970759", - "vote_rshares": "114793970759", - "children_abs_rshares": "256626492237", - "cashout_time": "2016-09-28T22:59:51", - "max_cashout_time": "2016-09-14T00:51:15", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "73426", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "12739", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 75232, - "net_votes": 82, - "root_author": "gringalicious", - "root_permlink": "hello-again-better-late-than-never-a-re-introduction-verification", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779947, - "author": "givemeyoursteem", - "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "category": "foodchallenge", - "parent_author": "", - "parent_permlink": "foodchallenge", - "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", - "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", - "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", - "last_update": "2016-08-28T17:15:12", - "created": "2016-08-28T17:15:12", - "active": "2016-08-29T13:45:42", - "last_payout": "2016-08-29T20:19:39", - "depth": 0, - "children": 18, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 2374341643, - "cashout_time": "2016-09-28T20:19:39", - "max_cashout_time": "2016-09-13T01:24:24", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "576", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "131", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 588, - "net_votes": 44, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779945, - "author": "forklognews", - "permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", - "category": "bitcoin", - "parent_author": "", - "parent_permlink": "bitcoin", - "title": "Дайджест новостей – обзор главных событий биткоин-индустрии", - "body": "\n

Прошедшая неделя оказалась богатой событиями, центральным из которых для нашей редакции стало двухлетие Forklog. Два года назад, 25 августа, был зарегистрирован домен ForkLog.com, а спустя некоторое время сделаны первые публикации на сайте. Об остальных, не менее интересных событиях мира криптовалют, вы узнаете из нашего еженедельного дайджеста. 

\n

 БИРЖИ

\n

Ещё одним именинником этой недели стала криптовалютная биржа Bitstamp, которая отметила пятилетие со дня основания. К этому событию биржа приурочила конкурс с ценными призами.

\n

Но юбилеи не являются поводом прекращать работу и администрации бирж полностью разделяют это мнение, принимая где-то логичные, а где-то и неожиданные решения.

\n

Так, криптовалютная биржа GDAX начала торги четвертой по рыночной капитализации криптовалютой Litecoin. Соответствующее объявление сделано в официальном блоге биржи. Для торгов предлагается две валютные пары: резидентам США доступна пара LTC / USD, всем прочим клиентам — пара LTC / BTC.

\n

В свою очередь, 23 августа в официальном твиттере криптовалютной биржи Poloniex появилось сообщение оснятии с торгов 27 криптовалют. Торги будут прекращены 5 сентября текущего года и это решение уже вызвало некоторое недоумение сообщества, ведь в данный перечень вошли такие альткоины, как DAO, Dashcoin и Mintcoin, уровень капитализации которого достиг $1,22 млн. 

\n

\n

 Подходит к концу и нашумевшая история с биржей Bitfinex, пострадавшей в результате взлома. Администрация биржи объявила о подписании договора с инвестиционной платформой BnkToTheFuture с целью возмещения средств вкладчиков посредством долевого участия в акционерном капитале компании. 

\n

\n

 Благодаря сотрудничеству с BnkToTheFuture пользователи Bitfinex смогут обменять принадлежащие им токены BFX на соответствующую долю в iFinex Inc, зарегистрированной на Британских Виргинских Островах родительской компанией биржи.

\n

Неожиданная новость пришла на этой неделе из Турции, где ведущая криптовалютная биржи BTCTurk была вынуждена остановить работу, столкнувшись с неожиданном отказом банковского партнера от дальнейшего продолжения сотрудничества. В настоящий момент биржа предпринимает попытки вернуть средства пользователям, однако из-за блокировки банковских счетов этот процесс может затянуться. 

\n

 КОШЕЛЬКИ И ПЛАТЁЖНЫЕ СЕРВИСЫ

\n

Первым аппаратным кошельком, добавившим поддержку Ethereum, стал Trezor. Соответствующая информация размещена на странице Trezor на Github.

\n

Официального сообщения от компании-разработчика SatoshiLabs пока, впрочем, не поступало, поэтому дата официального релиза и доступности функционала на данный момент остается неизвестной.

\n

Списки рабочих валют пополнились у платёжного сервиса Bitwala, включившего поддержку Dash и Emercoin, и венесуэльской системы Cryptobuyer, добавившей Dash. Отметим, что жители Венесуэлы, у которых нет компьютеров либо телефонов с доступом в интернет, могут воспользоваться услугами местного партнёра Cryptobuyer – сетью криптовалютных банкоматов TigoCTM.

\n

Также вышла в свет новая версия Ethereum-кошелька Mist с поддержкой Coinbase Buy Widget. Одной из её главных особенностей стало включение Coinbase Buy Widget – инструмента, с помощью которого можно осуществить моментальную покупку криптовалюты на сумму до $5.

\n

В настоящий момент данная функция доступна только пользователям из США и требует наличия аккаунта на Coinbase. 

\n

\n

 БАНКИ И КОРПОРАЦИИ

\n

Неожиданным известием, способным стать предвестником глобальных изменений в мировой экономике, стало сообщение издания Financial Times о том, что ряд крупнейших мировых банков принял решение объединиться для создания новой цифровой валюты. Официальное заявление представителей банков UBS, Deutsche Bank, Santander и BNY Mellon ожидалось 24 августа, но до настоящего момента комментариев не появилось.

\n

Если это окажется не информационной уткой, то стоит ожидать, что в будущем к этой инициативе присоединятся и прочие финансовые институты со всех концов света, даже с далёкого африканского континента. Там управляющий Южно-Африканского резервного банка Лесетья Кганьяго в своем выступлении на конференции по вопросам криптобезопасности заявил, что финансовый институт уже изучает блокчейн и заинтересован в инновациях, которые может дать эта технология. 

\n
 «Как центральный банк, мы открыты к инновациям несмотря на различное отношение регуляторов к криптовалютам. Мы намерены изучить все преимущества и недостатки технологии блокчейн и других распределённых реестров», — заявил Лесетья Кганьяго. 
\n

 В свою очередь, крупнейший банк Японии Bank of Tokyo-Mitsubishi UFJ (MUFG) объявил об окончании разработкиоснованного на блокчейне прототипа, позволяющего моментально обрабатывать и верифицировать платежи по чекам. Созданное решение в потенциале может быть использовано финансовыми институтами и различными компаниями в азиатском регионе. В будущем Bank of Tokyo-Mitsubishi надеется создать и другие решения на основе блокчейна, которым можно будет найти реальное применение.

\n

От азиатских разработчиков не отстают и представители консорциума R3 CEV, запатентовавшие новый продукт на основе биткоин-технологии Concord, предназначенный для использования в инфраструктуре Уолл-стрит.

\n

Concord представляет собой универсальную платформу, связывающую воедино рынки и компании и призванную перевести функции миддл- и бэк-офисов в цифровой вариант. Это даст возможность банкам избавиться от административных накладных расходов и сэкономить миллиарды долларов. Ожидается, что альфа-версия платформы будет запущена в середине 2017 года.

\n

Всё это заставляет финансовых аналитиков и экономистов следить за блокчейном более пристально, меняя свои прогнозы относительно будущего мировой финансовой системы.

\n

В частности, финансовый аналитик Кирилл Яковенко недавно заявил, что в ближайшие два-три года криптовалюты выйдут из тени и одновременно с этим появятся новые межнациональные финансовые инструменты.

\n
«В ближайшие два-три года технологии blockchain прочно укрепятся на межбанке, вытеснят системы обмена сообщениями между ними (в частности, систему SWIFT) и станут неотъемлемой частью торгов на рынках ценных бумаг. Что же касается криптовалют в привычном понимании, то они также, скорее всего, уже в ближайшем будущем выйдут из тени и вместе с технологией blockchain получат масштабное развитие», — считает Яковенко.
\n

КОМПАНИИ

\n

Датская компания Bitshares Munich IVS, владеющая брендом BlockPay, объявила о старте ICO. В ходе кампании предполагается собрать средства на развитие BlockPay, P2P-мессенджера ECHO и системы анонимных платежей Stealth. Проведение краудфандинговой кампании запланировано на 2016 и 2017 годы. Сама кампания состоит из предварительной ICO (Pre-ICO), запланированной на август текущего года, и основной, которая будет проведена в 2017 году. Всего планируется распространить 100 миллионов токенов BlockPay.

\n

Проект по созданию блокчейна с открытым кодом Hyperledger объявил имена нового состава технического комитета. Среди основных задач комитета — рассмотрение поступающих предложений и построение первоначальной унифицированной базы исходного кода.

\n

В новом составе комитета сохранили свои места технический директор R3CEV Гендал Браун, главный разработчик архитектуры распределенных реестров Digital Asset Holdings Тамаш Блуммер, исследователь Fujitsu Харт Монтгомери, инженер Intel Мик Боумен и главный технический директор направления открытых технологий IBM Кристофер Феррис. Среди новых имен – старший технический руководитель IBM Арно ле Ор, старший блокчейн-архитектор IBM Бин Нгуен, глава технических разработок Intel Дэн Миддлтон, а также представители DTCC, Salesforce и Лондонской фондовой биржи.

\n

Американский технологический стартап Chronicled Inc. объявил о запуске открытого реестра для Интернета вещей, который был создан на блокчейне Ethereum. Этот реестр предназначен для сохранения уникальных кодов физических объектов, имеющих встроенные чипы NFC и BLE.

\n
«Теперь все создатели материальных объектов, будь-то бренды, носители интеллектуальной собственности и прочее, могут регистрировать свои защищённые от подделок чипы в публичном блокчейне», — заявил директор Chronicled Райан Орр. На данный момент стартапом поставлено около 10 000 NFC и BLE чипов.
\n

Как сообщает издание Business Insider UK, крупнейшая в США телекоммуникационная компания Verizon Communications экспериментирует с технологией блокчейн. Так, в распоряжение редакции попал патент, полученный Verizon 10 мая этого года.

\n

Из описания патента следует, что компания разработала некое блокчейн-хранилище ключей, а работы над проектом велись на протяжении трёх лет. Введение подобной блокчейн-системы в сочетании со смарт-контрактами даёт массу новых возможностей в сфере использования цифрового контента. Например, музыкальные исполнители или авторы статей будут получать свою оплату сразу же после того, как пользователь начал читать материал или прослушивать песню.

\n

Валютное управление Сингапура (MAS) выступило с предложением введения единой лицензии на осуществление деятельности для компаний, предоставляющих платежные услуги, включая криптовалютные компании.

\n

Стало известно, что биткоин-стартап Keza выкуплен филиппинской компанией Satoshi Citadel Industries, в инвестиционном портфелем которой уже присутствуют такие стартапы, как Rebit.ph, Bitbit.cash и PrepaidBitcoin.ph.

\n
«Keza создавалась с прицелом на развивающиеся рынки и для пользователей, которые не имеют доступа к глобальным рынкам капитала. Мы счастливы, что теперь видение компании сможет быть реализовано», — цитирует CEO Keza Саймона Бернса издание Silicon Angle.
\n

Децентрализованная социальная сеть Steemit сообщила о «беспрецедентном уровне трафика», сопоставимым с тем, что получали на ранних этапах своего развития Facebook и Reddit.

\n

Как говорится в заявлении Steemit, на данный момент пользователи социальной сети ежедневно размещают более 21 000 новых записей, а количество голосов в поддержку постов превышает 70 000. Это сопоставимо с ранней активностью на площадках вроде Facebook и Reddit.

\n

За несколько недель до старта краудсейла платформы распространения контента DECENT команда проекта объявила о внесении изменений в систему дистрибуции токенов DCT. Также подверглось пересмотру общее количество подлежащих к выпуску монет. Как заявили в DECENT, это решение, хотя и является стратегическим, также было принято с учетом рекомендаций сообщества.

\n

Компания Coinbase сообщила о расширении географии своего сервиса на мобильных устройствах при помощи дебетовых и кредитных карт. Теперь возможность покупки криптовалют при помощи карт получили и пользователи Coinbase в Европе.

\n

Как говорится в заявлении Coinbase, в США 40% сделок по покупке криптовалюты при помощи дебетовых и кредитных карт осуществляются с мобильных устройств, поэтому компания стремится сделать этот сервис доступным в как можно большем количестве стран.

\n

ПЕРСОНАЛИИ

\n

Основатель компании Distributed Lab Павел Кравченко продолжил рассуждения о технологии блокчейн и сферах ее применения, назвав отрасли, которым она, на его взгляд, вряд ли нужна вообще. Соответствующий пост был размещен в его блоге на Medium.

\n

Высказав ранее мнение о том, что большой бизнес не готов по-настоящему к использованию блокчейна, Павел на этот раз представил своего рода гид для инвесторов. В нем описана основная проблематика при принятии решений и предлагается помощь в понимании того, действительно ли технология является для них необходимой.

\n
«Запросы об имплементации блокчейна я получаю каждый день. Однако часто я считаю, что блокчейн не нужен вовсе. Есть другие доступные типы архитектуры, и блокчейн – лишь один из них», — пишет Павел Кравченко.
\n

Ещё одним примечательным выступлением гуру блокчейна стала лекция канадского предпринимателя Дона Тэпскотта, автора недавно изданной книги «Революция блокчейна», выступившего с лекцией о технологии распределенного реестра на саммите TED Talk в Альберте. 

\n

 УКРАИНА

\n

В Украине продолжается внедрение блокчейн-сервисов в политикум страны. Так, команда e-Vox анонсировала запуск блокчейн-сервиса электронного голосования в городской Раде Балты (Одесская область). Об этом редакции ForkLog сообщил координатор проекта Алексей Конашевич. 

\n

\n

 Результаты голосования, внесенные в децентрализованную базу данных, позволят системно анализировать информацию и выводить статистику эффективности принимаемых решений. А блокчейн-протокол поможет надежно защитить информацию от внутреннего и внешнего противоправного вмешательства.

\n

Разработкой прототипа e-Vox занимались компании Ambisafe и Vareger.

\n

Не останавливаются работы в этом направлении и в Белой Церкви. Так, мэр города Геннадий Дикий зарегистрировал проект об использовании блокчейн-платформы Auction 3.0 в качестве одного из актов, который должен быть принят городским советом в ближайшее время.
\nОб этом говорится в решении «О внесении изменений в план деятельности Белоцерковского городского совета при подготовке проектов регулятивных актов на 2016 год», утвержденном городским советом Белой Церкви. 

\n

\n

 РОССИЯ

\n

В пятницу, 26 августа, замминистра финансов Алексей Моисеев сообщил о том, что Министерство финансов Российской Федерации выступает против введения «лобового запрета» биткоина. По его словам, законопроект о криптовалютах будет скорректирован по итогам предстоящей серии встреч с экспертами.

\n

Возможно, это заявление стало последствием встречи, которая состоялась 24 августа в администрации президента РФ под руководством советника по интернету Германа Клименко. На мероприятии обсуждалась технология блокчейн в России и возможности ее внедрения на государственном уровне.

\n

Не остались в стороне от процесса и власти Москвы, заявившие на этом же совещании о готовности внедрить технологию блокчейн в проект «Активный гражданин».

\n
«Москва готова быть площадкой для применения технологии блокчейн. И как раз в качестве пилотного проекта мы предлагаем предоставить проект «Активный гражданин». Мы хотим, с одной стороны, отпилотировать технологию и понять, насколько она дееспособна для решения такого рода задач. С другой стороны, снять с себя некий скепсис со стороны граждан», — заявил заместитель директора департамента информационных технологий Москвы Андрей Белозеров,
\n

Оказались вовлечёнными использование блокчейна и биткоина и российские политические силы. Российская «Партия Роста» подтвердила начало приема пожертвований в биткоинах, однако пользоваться собранными средствами она сможет только после принятия закона о статусе криптовалюты.

\n


\nВ связи с отсутствием нормативного регулирования переводов биткоинов на счета юридических лиц «биткоины будут перечисляться на кошелек Дмитрия Мариничева, интернет-омбудсмена и кандидата в депутаты по Медведковскому одномандатному округу».

\n

КИТАЙ

\n

Правительство Российской Федерации не единственное, занимающееся вопросами использования криптовалют и блокчейна. Так, правительство Китая объявило о создании рабочей группы по вопросам блокчейна. Целью нового стратегического альянса станет ускорение разработок и внедрение технологии в экономику страны, а также подготовка к Всемирному блокчейн-саммиту, который будет проведён в Шанхае в сентябре этого года.

\n

Неизвестно, ставится ли перед этой рабочей группой задача контролирования использования, но примечательным является тот факт, что практически одновременно с заявлением правительства крупнейшая поисковая система Китая Baidu без какого-либо предупреждения удалила всю рекламу, связанную с биткоином и другими виртуальными валютами.

\n

Об удалении рекламы биткоин-компаний сообщили две крупнейшие китайские биржи OKCoin и Huobi, пишет Bloomberg News. Представители Baidu на запрос агентства от комментариев воздержались. 

\n", - "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto\",\"money\",\"news\"],\"image\":[\"http://radikal.ru/fp/949b19ab0ea142769b5d5bad6918e850\",\"http://radikal.ru/fp/ab1e6cf8f8ce414d8555699b45afc0eb\",\"http://forklog.com/wp-content/uploads/0e6dbfdc-638d-11e6-8e55-cc0a56a8b37c-1.png\",\"http://forklog.com/wp-content/uploads/14152259_10202179476045465_1807948603_o.jpg\",\"http://forklog.com/wp-content/uploads/14022327_853179024818469_8570878217622377273_n-1.jpg\"],\"links\":[\"http://forklog.com/zhurnalu-forklog-dva-goda/\",\"http://forklog.com/birzha-bitstamp-otmechaet-pyatiletnij-yubilej/\",\"http://forklog.com/kriptovalyutnaya-birzha-gdax-dobavila-litecoin/\",\"http://forklog.com/birzha-poloniex-snimaet-s-torgov-the-dao-i-drugie-altkoiny/\",\"http://forklog.com/krupnejshaya-bitkoin-birzha-turtsii-ostanovila-rabotu-iz-za-problem-s-bankom/\",\"http://forklog.com/apparatnyj-koshelek-trezor-dobavil-podderzhku-ethereum/\",\"https://github.com/trezor/trezor-mcu/pull/103\",\"http://forklog.com/platezhnyj-servis-bitwala-vklyuchil-v-spisok-rabochih-altkoinov-dash-i-emercoin/\",\"http://forklog.com/venesuelskij-platyozhnyj-servis-cryptobuyer-dobavil-podderzhku-dash/\",\"http://forklog.com/sostoyalsya-reliz-novoj-versii-ethereum-koshelka-mist-s-podderzhkoj-coinbase-buy-widget/\",\"http://forklog.com/vedushhie-banki-mira-obedinilis-dlya-sozdaniya-novoj-kriptovalyuty/\",\"http://forklog.com/yuzhno-afrikanskij-rezervnyj-bank-gotov-k-ispolzovaniyu-blokchejna-i-kriptovalyut/\",\"http://forklog.com/yaponskie-korporatsii-testiruyut-blokchejn-platformu-dlya-chekovyh-raschetov/\",\"http://forklog.com/konsortsium-r3-cev-zapatentoval-blokchejn-platformu-dlya-infrastruktury-uoll-strit/\",\"http://forklog.com/ekonomisty-prognoziruyut-vytesnenie-sistemy-swift-blokchejnom/\",\"http://forklog.com/kompaniya-bitshares-munich-ivs-obyavila-o-nachale-ico/\",\"http://forklog.com/proekt-hyperledger-nazval-novyj-sostav-tehnicheskogo-komiteta/\",\"http://forklog.com/startap-chronicled-inc-zapustil-otkrytyj-reestr-dlya-interneta-veshhej/\",\"http://forklog.com/kompaniya-verizon-communications-zapatentovala-blokchejn-hranilishhe-klyuchej/\",\"http://forklog.com/kriptovalyutnye-kompanii-singapura-budut-poluchat-edinuyu-litsenziyu-na-osushhestvlenie-deyatelnosti/\",\"http://forklog.com/investitsionnyj-bitkoin-startap-keza-budet-spasen-blagodarya-satoshi-citadel-industries/\",\"http://forklog.com/poseshhaemost-steemit-sravnyalas-s-rannim-facebook/\",\"http://forklog.com/komanda-decent-obyavila-o-vazhnyh-izmeneniyah-v-sisteme-distributsii-tokenov/\",\"http://forklog.com/polzovateli-coinbase-v-evrope-poluchili-vozmozhnost-pokupat-kriptovalyutu-pri-pomoshhi-bankovskih-kart/\",\"http://forklog.com/osnovatel-distributed-lab-nazval-oblasti-kotorym-ne-nuzhen-blokchejn/\",\"https://medium.com/@pavelkravchenko/investor-guide-does-this-cool-project-truly-need-blockchain-bdde70a26bfb#.40cs8sfz2\",\"http://forklog.com/avtor-knig-o-blokchejne-don-tepskott-vystupil-na-ted-talk/\",\"http://forklog.com/dostignuta-dogovorennost-o-zapuske-e-vox-v-balte-odesskoj-oblasti/\",\"http://forklog.com/meriya-beloj-tserkvi-perehodit-na-blokchejn-platformu-auction-3-0/\",\"http://forklog.com/minfin-rf-protiv-pryamogo-zapreta-bitkoina/\",\"http://forklog.com/v-rossii-obsudili-kriptovalyuty-na-gosudarstvennom-urovne/\",\"http://forklog.com/partiya-rosta-utochnila-shemu-priema-pozhertvovanij-v-bitkoinah/\",\"http://forklog.com/kitaj-pristupil-k-issledovaniyu-blokchejna-na-gosudarstvennom-urovne/\",\"http://forklog.com/kitajskij-poiskovik-baidu-zablokiroval-vsyu-svyazannuyu-s-bitkoinom-reklamu/\"]}", - "last_update": "2016-08-28T17:15:09", - "created": "2016-08-28T17:15:09", - "active": "2016-08-28T17:15:09", - "last_payout": "2016-08-30T04:28:30", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-29T04:28:30", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "forklognews", - "root_permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779934, - "author": "paulsemmelweis", - "permlink": "it-s-just-a-game-to-governments-and-central-bankers", - "category": "economics", - "parent_author": "", - "parent_permlink": "economics", - "title": "It's just a game to governments and central bankers", - "body": "Discussed below are two new articles that shed light on the grand economic chessboard controlled by governments while paving the way for more lies and manipulation by the media...\n\nGlobal central bankers, stuck at zero, unite in plea for help from governments: https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\n\nAs Fed nears rate hikes, policymakers plan for 'brave new world': https://ca.news.yahoo.com/fed-nears-rate-hikes-policymakers-plan-brave-world-005117150--business.html\n\nWhile simultaneously espousing Obama's great economic achievements in the press for years after saving the nation from peril in 2008, central bankers now openly admit there's a very weak economy and a recovery that never was. You know, facts.\n\nWhile talk of \"new tools\" needed to fight the next recession unofficially dominated the annual meeting of our monetary overlords in Wyoming, it is quite clear that the main weapon in their arsenal is the same as it was then; to maintain control over human beings by selling a never ending stream of fiction to the public.\n\n\"it may take a massive program, large enough even to shock taxpayers\"\n\"hard to convince markets and households that things will get better\"\n\"encourage the shift in mood\"\n\"prevent public expectations\"\n\"do not respond in expected ways\"\n\nAnd this gem… \"In modern monetary theory, households and business expectations are felt to play a defining role.\"\n\nSounds really modern!\n\nThe article ends with this… \"It was not clear whether such ideas will catch on. But there was a broad sense here that the other side of government may need to up its game.\"\n\nA game indeed. Of mass manipulation for the benefit of those who rule us while easily selling the public what they are doing is in their best interests.", - "json_metadata": "{\"tags\":[\"economics\",\"government\",\"central\",\"banks\",\"recession\"],\"links\":[\"https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\"]}", - "last_update": "2016-08-28T17:14:12", - "created": "2016-08-28T17:14:12", - "active": "2016-08-28T17:14:12", - "last_payout": "2016-08-29T19:47:36", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T19:47:36", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "paulsemmelweis", - "root_permlink": "it-s-just-a-game-to-governments-and-central-bankers", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779930, - "author": "randolphrope", - "permlink": "steem-it-photo-challenge-6", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Steem.it photo challenge # 6", - "body": "On the way to Chinle, Arizona USA \n\nJust off the highway over looking the desert.\n\nhttp://imgur.com/ITp3j5l.jpg\n\nI just remember one on the drive.", - "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"\"],\"image\":[\"http://imgur.com/ITp3j5l.jpg\"]}", - "last_update": "2016-08-28T17:13:51", - "created": "2016-08-28T17:13:51", - "active": "2016-08-28T17:13:51", - "last_payout": "2016-08-29T18:29:18", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T18:29:18", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 6, - "root_author": "randolphrope", - "root_permlink": "steem-it-photo-challenge-6", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779923, - "author": "ebluefox", - "permlink": "the-pros-and-cons-of-empathy", - "category": "empathy", - "parent_author": "", - "parent_permlink": "empathy", - "title": "The Pros and Cons of Empathy", - "body": "Empathy is an interesting aspect of human nature that many people do not possess. Empathy in short is the ability to view an scenario from a different perspective than your own, normally to better understand someone's perspective on certain topics or ideas. This handy skill is a learned skill and when used effectively can be used to better understand humanity.\nBut as with every neat skill, they tend to have as many pros as they do cons. So i will attempt to explain the pros and cons that i have found apparent with empathy.\n There are quite a few pros to empathy, one of which being in your reputation. A person who uses empathy often is normally seen as a loving compassionate person. Another pro that is quite noticeable is the ability to understand unexplained problems. On occasion if a problem really troubles someone or is very personal, most people will not tell anyone about it. But with empathy you can figure out what is troubling them sometimes with something as simple as \"How have you been?\". A more prominent pro of using empathy is better understanding how a person truly is. Most people wear a \"Facade\" in public or a metaphorical mask, these tend to hide their true personality from the public eye and conceal most things about them. Using empathy, you can work around the \"Facade\" and figure out how they truly are as a person, and most of the time appreciate them a bit more.\n Empathy has allot of pros but also has its fair share of cons to go with it, a good example of one of its cons is a changed perspective. under most circumstances, use of empathy becomes a habit and changes your outlook on everyone around you. This is not really very terrible, but it can lead to you disliking a person more than would have normally. Another apparent con is over-assessing someone. This can happen when you use empathy on someone and spot something that would make you feel awful, but in truth does not faze them. Here is an example. You are talking with a person and figure out that they don't have a mother. To you that may seem horrible and you start pitying them, when in truth it may not even matter to them in the slightest. A more cumbersome problem with empathy lies with information. In order to understand or sympathize with someone you need to understand the problems they put up with. If you ask too many questions about their life, they may find you \"Nosy\" or \"Annoying\". On the contrary, if you do not inquire very much about them, you will not have any idea of their standpoint at all and cannot empathize with them. The last con i will cover is drama. It is very easy to get caught in some drama if you try to understand peoples problems, some of which may be very serious. Some people are not patient enough to deal with the newly acquired drama and can sometimes make the problem worse than it need to be.\n This list most definitely did not cover every pro or con associated with empathy because they will differ from person to person however i did cover a few recurring pros and cons. whether you think empathy is worth your time and energy is up to you and your values in life and social interaction.", - "json_metadata": "{\"tags\":[\"empathy\",\"psychology\",\"social-skills\",\"problems\"]}", - "last_update": "2016-08-28T17:13:21", - "created": "2016-08-28T17:13:21", - "active": "2016-08-28T17:13:21", - "last_payout": "2016-08-29T17:28:57", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T17:28:57", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "ebluefox", - "root_permlink": "the-pros-and-cons-of-empathy", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779920, - "author": "steemsquad", - "permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "Hello! We Are STEEMSQUAD And We Are Here to Support The Minnows. Read On.", - "body": "\n

We are STEEMSQUAD, a Steemit inititative to promote diversity and quality of content by featuring authors from the school of minnows.

\n

\"steem-squad3\"
\n

\n

WHAT is #steemsquad?

\n

Steemsquad is an initiative of multiple minnows whose objective is to promote diverse and quality content and their work which may not have a chance to get noticed when published in the main streem. STEEMSQUAD initiative will try to tweak the game to equally distribute the wealth among its members. 

\n

STEEMSQUAD is a community-backed account responsible for posting blogs of qualified authors and at the same time upvotes quality blog posts of its members.

\n

Members of STEEMSQUAD are from across multiple timelines to ensure a 24/7 support and active participation in Steemit.

\n

The Issue at Hand

\n

For quite some time, there has been a noticeable trend as to who gets rewards. Those favored are the whales themselves, members with high reputation levels, incoming popular personalities and celebrities either from the cryptocurrency world or the entertainment world. A number of people from the finance institutions have joined as well and have garnered huge rewards on their “introductory” posts.

\n

And what happens to those who are not celebrities, unknown personalities from not-so-popular backgrounds? Their posts get dumped, thrown into oblivion. Then all the sweat and blood poured spilled into writing the blog just go to waste. This is where #steemsquad comes in.

\n


\n

WHY We Do It?

\n

Steemit is a social media platform where **EVERYONE** gets paid for creating and curating content, as promised if and when you decide to dive into the Steemit Ocean. 

\n

It leverages a robust digital points system, called Steem, that supports real value for digital rewards through market price discovery and liquidity.

\n

We aim to give EVERYONE a chance to get noticed, earn rewards, and be a part of a community of people helping people.

\n

You Can Succeed

\n

All HOPE is NOT LOST. We have seen minnows rise to the occasion. With a positive attitude, an unwavering determination, lots and lots of good quality posts (one is enough though to get you 15k, if you hit the nail on the head), there is no reason why you can’t be successful here in Steemit.

\n

#steemsquad will support you along the way.

\n

OUR GOLDEN RULES

\n
    \n
  1. We give priority to quality contents from low-powered profiles (minnows).
  2. \n
  3. The published author gets 100% of SBD. However, 50% of which goes to the author’s SP to allow the author to power-up leveraging his/her SP to upvote other writers.
  4. \n
  5. Any SP earned by STEEMSQUAD remains in the STEEMSQUAD account to gain more voting power for the benefit of its members.
  6. \n
  7. Pay-it-forward. The powered-up author commits to help other writers by upvoting and commenting to blog post to increase the post’s value.
  8. \n
\n


\n

HOW TO GET PUBLISHED BY STEEMSQUAD

\n

\n

PHOTO CREDIT: Anna Frajtova / shutterstock.com
\n

\n
    \n
  1. FOLLOW the account STEEMSQUAD and be a member of the initiative.
  2. \n
  3. You have to signify your willingness to join by coming to our official chatroom in https://steemit.chat/channel/steemsquad. Introduce yourself and state your intention to join the initiative. Include a link to your Steemit profile.
  4. \n
  5. Submit your article in plain text format and links to images. Send your entry to @steemit.asia or @sebastien or @jaycobbell as a PM.
  6. \n
  7. Article must be at least 300 words with at least 1 image.
  8. \n
  9. Give credit to the images you use.
  10. \n
  11. If you quote someone, give credit as well.
  12. \n
  13. At least 80% of the article must be your own.
  14. \n
  15. You will get feedback after 24 hours and a schedule will be provided when your work will be published.
  16. \n
  17. Once it is published, it will be promoted to the chatroom by either @steemit.asia or @sebastien or @jaycobbell in https://steemit.chat/channel/steemsquadpromotional for all members to see. This is where all promotions are done.
  18. \n
\n


\n

HOW TO GET UPVOTED BY STEEMSQUAD AND MEMBERS

\n


\nPHOTO CREDIT: Clipartix.com
\n

\n
    \n
  1. To get a chance to be upvoted by STEEMSQUAD, you must have a QUALITY blog post.
  2. \n
  3. Use the tag #steemsquad in your blog post.
  4. \n
  5. Our curators will browse through all blog posts using our official #steemsquad tag name and choose will notify the author by commenting that the post has been chosen as a featured post/author. It will be promoted in our chat channel https://steemit.chat/channel/steemsquadpromotional.
  6. \n
\n


\n

STEEMSQUAD ACCOUNT SECURITY

\n

The Posting Key (The posting key is used for posting and voting. It should be different from the active and owner keys) will be given to at least 3 members of STEEMSQUAD responsible for posting blog posts in 24 hour cycle.

\n

The Active Key (The active key is used to make transfers and place orders in the internal market) will be given to 2 members of STEEMSQUAD. One member will act as auditor/backup in case the primary member is not available.

\n

The Owner Key (The owner key is the master key for the account and is required to change the other keys) is given to one Whale sponsor and 2 other members of STEEMSQUAD.

\n

A member responsible for the account security may hold more than one (1) key as shown above.

\n


\n

OUR MENTORS

\n

There are people we consider as examples on the platform. Inspiration, mentors.

\n

@juneaugoldbuyer
\n@thedollarvigilante
\n@dragonslayer109
\n@stellabelle
\n@charlieshreem
\n@rogerkver
\n@donkypong
\n@tuck-fheman
\n@masteryoda
\n@andrarchy 

\n

\"steem-squad-FOLLOW-US\"
\n

\n", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemsquad\",\"steemit\",\"minnows\",\"writing\"],\"users\":[\"steemit.asia\",\"sebastien\",\"jaycobbell\",\"juneaugoldbuyer\",\"dragonslayer109\",\"stellabelle\",\"charlieshreem\",\"rogerkver\",\"donkypong\",\"tuck-fheman\",\"masteryoda\",\"andrarchy\"],\"image\":[\"https://c1.staticflickr.com/9/8171/29209353271_2eabbba74f_o.png\",\"https://cdn.elegantthemes.com/blog/wp-content/uploads/2016/02/Essential-Blogging-Skills-Know-your-Audience-shutterstock_222537538-Anna-Frajtova.png\",\"http://clipartix.com/wp-content/uploads/2016/04/Thumbs-up-clipart-3.png\",\"https://c1.staticflickr.com/9/8305/29179909862_ed27607510_o.png\"],\"links\":[\"https://steemit.chat/channel/steemsquad.\",\"https://steemit.chat/channel/steemsquadpromotional\",\"https://steemit.chat/channel/steemsquadpromotional.\"]}", - "last_update": "2016-08-28T17:13:18", - "created": "2016-08-28T17:13:18", - "active": "2016-09-11T21:09:09", - "last_payout": "2016-08-30T11:08:54", - "depth": 0, - "children": 18, - "net_rshares": "2243580957008", - "abs_rshares": "2243580957008", - "vote_rshares": "2243580957008", - "children_abs_rshares": "2254360518257", - "cashout_time": "2016-09-29T11:08:54", - "max_cashout_time": "2016-09-13T14:10:24", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "566", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "173", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 588, - "net_votes": 57, - "root_author": "steemsquad", - "root_permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778828, - "author": "okay", - "permlink": "this-week-s-sky-aug-27-sep-3", - "category": "science", - "parent_author": "", - "parent_permlink": "science", - "title": "This Week's Sky Aug-27/Sep-3", - "body": "## A picture is worth a thousand words, more so in astronomy ##\n\n**Let's take a look at the coming week's sky**\n\n\nhttp://www.skyandtelescope.com/wp-content/uploads/Venus-Jupiter-27Aug2016_f.jpg\n(Image courtesy of Sky and Telescope)\nOn August 27th, about 45 minutes after sunset, go outdoors and start looking low above the horizon in the west for an amazingly close pairing of Venus and Jupiter.\n\nhttp://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\n\n\nNext weekend, shortly after sunset, the thin Moon (waxing crescent) steps away from Venus and Jupiter.\n\nLooking at the night sky is a great joy! Free for everyone with no ticket required. You can watch the evening sky with your naked eye, no need for telescope or binoculars for these beautiful astronomical events.\n\n*Stay tuned for next week's sky.*\n\n\n\n\n If you enjoyed this post please vote for my witness node. Learn how to vote for witness `okay` **at the end of my witness post** by [**clicking here**](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network). ", - "json_metadata": "{\"tags\":[\"science\",\"astronomy\"],\"image\":[\"http://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", - "last_update": "2016-08-28T17:13:03", - "created": "2016-08-28T15:45:33", - "active": "2016-08-28T17:13:03", - "last_payout": "2016-08-29T16:11:21", - "depth": 0, - "children": 5, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T16:11:21", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "okay", - "root_permlink": "this-week-s-sky-aug-27-sep-3", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779916, - "author": "skyefox", - "permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", - "category": "garden", - "parent_author": "", - "parent_permlink": "garden", - "title": "A small garden update... My Pink Brandywine Tomatoes are coming!", - "body": "As I have stated in earlier posts, gardening is currently my obsession.. it's seems wild to me that the standard is to work for currency and trade currency for food rather than just growing your own food. \n

Here is my small harvest from this morning!

\nEvery morning I go out and eat a couple of my cherry tomatoes, a few leafy greens, and usually 1/2 a leaf of my sweet basil. It's a wonderful thing to wake up, take the dog out and get a healthy organic little snack. I love it.\nhttps://s14.postimg.org/62aqviz0h/IMG_1804.jpg\n\n\nI understand that gardening takes time, effort, and a little bit of knowledge but in my opinion it is one of the most reward \"hobbies.\" This is my first year gardening. I decided to garden this year because I have been doing more and more reading about the American food industry and my conclusion is that the American population are being made sick on purpose through the food we eat. I don't know exactly what does what in our food but it seems absolutely insane to me that we can't get the FDA to evaluate any dietary supplements but they will evaluate and even vouch for these lab made pharmaceutical drugs. \n\nAll of this lead me to feeling a strong urge to grow organic food. I honestly feel guilty when I feed my family and I don't fully believe in what we are eating. Don't get me wrong, I love pepperoni pizza but ignorance is bliss, and I am not ignorant to what I am eating. \n\nI believe I am slowly heading down the path of becoming a vegan as I gain more knowledge. I have always been a hunter and a fisherman, it's what I was taught as a young boy in the north woods. I love to hunt and fish, but I also have a very deep compassion for life. Not human life, but life in general. I believe that we are intelligent enough as a species to live without causing harm to other living things that are equipped with nervous systems. I guess I am just realizing day by day that things are not necessarily what I have been told... \n

This kind of sums up how I feel currently...

\nhttps://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\n\nI am not a very good consumer. I am very frugal and calculated with my money, sometimes to a fault. I'm also not good at being an employee and just being a \"gear in the machine.\" I was not built to work and be told what to do while someone acts as if their employment position somehow gives them a higher status than I. We are humans, you just have a different job. These factors, and many others, have lead to me being self employed and trying to find my way on the internet. I have dabble in many things online and I have learned enough to at least provide myself with enough income to pay my mortgage, bills, etc.. \n\nI am also someone that is in the prepper mind state. I have started my small stockpile of beans, rice, and various other dried foods. I think that the American people have become complacent and many of us are just chasing the carrot we were instructed to chase. Many people seem to not realize the fact that we as a country heavily depend on other people or corporations for the things we use everyday. If water and electricity were to be shut off and panic set it, many people would die because they don't know what to do without someone else providing them with these luxuries. \n\nI don't like the idea of depending on anyone for anything. I have always been someone who provided for myself. I got a job at 14 years old at the local bakery working Saturday mornings so that I could get my first computer myself. I worked for weeks, since I was only getting paid $5.15/hour (roughly 13 years ago) it took me a long time to save up for a computer to play Counterstrike 1.5... We had 6 kids in our house in a \"middle class\" family, needless to say we were told to get jobs as early as possible to acquire our luxuries. Since then I have had the mindset that I don't want to allow someone else to be \"the hand that feeds\", and that applies to food, water, electricity, and even knowledge of my child. \n\nDEPENDENCY OPENS THE DOORS FOR EXPLOITATION! And in a capitalist driven global economy, if it can be exploited, it often is. \n\nMy apologies, there I go again, going of on some rant instead of just showing you the damn garden update. I already can't wait for next spring. I have been buying heirloom vegetable seeds and thrift shopping for large planters for $1 so that next year I can grow lots more. \n

This is the Pink Brandywine that I am so excited about!

\nThese guys took forever to grow. I didn't know what I was doing and I had put too many plants in 1 planter which caused them to compete for the nutrients. On top of them a strong storm came through and blew these guys over and bent there stalks horizontal. I really didn't know if I would get any fruit from them, but they are changing and I can't wait to eat these!\nhttps://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\n\nhttps://s14.postimg.org/e3txgbbgh/IMG_1800.jpg\n\nHere is a cucumber that is growing a little goofy. Not sure why but its like a beer can cucumber... lol\nhttps://s14.postimg.org/c1tg22dhd/IMG_1802.jpg\n\nA more normal cucumber... \nhttps://s14.postimg.org/610t23x6p/IMG_1803.jpg\n\nAnd this is my $3 table I built so that I could start my seeds indoors under some fluorescent lights. \n\n\nhttps://s14.postimg.org/6t3h1b1dt/IMG_1805.jpg\n\n\nThank you for reading and happy gardening!", - "json_metadata": "{\"tags\":[\"garden\",\"photography\",\"rant\",\"food\"],\"image\":[\"https://s14.postimg.org/62aqviz0h/IMG_1804.jpg\",\"https://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\",\"https://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\"]}", - "last_update": "2016-08-28T17:12:54", - "created": "2016-08-28T17:12:54", - "active": "2016-08-28T17:36:42", - "last_payout": "2016-08-29T18:11:57", - "depth": 0, - "children": 2, - "net_rshares": "130408996119", - "abs_rshares": "130408996119", - "vote_rshares": "130408996119", - "children_abs_rshares": "130408996119", - "cashout_time": "2016-09-28T18:11:57", - "max_cashout_time": "2016-09-12T21:18:18", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "123", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "15", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 125, - "net_votes": 37, - "root_author": "skyefox", - "root_permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779915, - "author": "fitiliper1985", - "permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", - "category": "sex", - "parent_author": "", - "parent_permlink": "sex", - "title": "In a relationship, sex becomes a matter of selfishness or unselfishness.", - "body": "
http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png
\n

\n

Before I was in a relationship, I didn't have much sex. My first sexual intercourse occurred while I was travelling overseas on a holiday by myself. I met a woman in hawaii at the airport, and later had sex with her.

\n

I had done a lot of masturbating prior to this. I had often thought about having sex, and I found that my sexual drive caused me to behave in ways that I normally wouldn't. 

\n

\n
https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg
\n

\n

For example I would follow women I found attractive, or I would try to look up their skirts, or I would wander about at night to try to look into bedroom windows.

\n

When I met someone that I knew I would marry, I thought I would be able to have sex as much as I liked because my wife would always be available to have it with me. This turned out to be untrue. My wife didn't want to have sex as often as I wanted to, and I found myself still masturbating while I waited for the next time to come.

\n

I don't think women understand the power of their husband's sexual drive. 

\n

\n
http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg
\n

\n

Men are attracted to women by how they look. It doesn't matter if they are strangers. Men will look at a woman dressed in  a certain way and will start feeling horny. As soon as they ejaculate, the feeling of horniness goes, but will return in a couple of hours. When the sexual desire comes upon a man, it becomes his dominating thought, and it demands to be satisfied. That's why many men then masturbate in order to relieve the pressure on their thoughts. If unrelieved the pressure grows and if the wife is unwilling to have sex, then some men will look for other women to have sex with. 

\n

The sexual pressure is constantly present in a man's mind until relief comes.

\n

\n
https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg
\n

\n

Most women are not as interested in sex as men. 

\n

\n
https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg
\n

\n

Women are more interested in relationship.  Women have sex with a man in the hope that the man will want to stay in their life and have a relationship with them. 

\n

Some women use sex as a bait to catch a man, and then when the relationship is happening, they are not as interested in sex anymore. Women enjoy sex, but as part of a fulfilling relationship. Men just want to put their penis into a vagina and ejaculate. As soon as ejaculation occurs, a lot of men lose all interest in the woman. The woman then feels hurt and used because she didn't get what she wanted which was relationship. Men will say anything they think a woman wants to hear in order to have sex.

\n

Wives who have sex with their husbands when not really wanting it, feel used by their husbands. Women also can be selfish when they demand sex from men who are not in the mood. 

\n

God created sex to be enjoyed in a committed relationship between a man and a woman who are one person physically, spiritually, emotionally, and mentally. 

\n

Sex is a part of the relationship, not the main thing. If a man demands sex then he is being selfish, and his relationship will be harmed if the woman gives sex to the man when she is not wanting to have it. If the man wants sex with his wife, then he must give her what she wants. He must romance her and give her a good relationship. Then if sex happens, it will be enjoyable for both of them. This will build the relationship.

", - "json_metadata": "{\"tags\":[\"sex\",\"psychology\",\"life\",\"story\",\"\"],\"image\":[\"http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png\",\"https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg\",\"http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg\",\"https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg\",\"https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg\"]}", - "last_update": "2016-08-28T17:12:42", - "created": "2016-08-28T17:12:42", - "active": "2016-08-28T18:08:06", - "last_payout": "2016-08-29T17:56:42", - "depth": 0, - "children": 5, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T17:56:42", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 12, - "root_author": "fitiliper1985", - "root_permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": "114793970759", + "active": "2016-08-31T12:56:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gringalicious", + "author_rewards": 75232, + "beneficiaries": [], + "body": "\n

Ok, I surrender!  A horrible picture of myself holding a piece of paper.  I have to say, I don't get it.  I hate taking pictures of myself.  But, several of you have insisted, so... you win, here it is, verification for @gringalicious

\n

\n

I am a 20 year old food blogger living in Chile with my crazy family.  You can read more about that at my first attempt of introducing myself here: Gringalicious Intro .  I have a passion for cooking and a passion for photography.  Yeah, I know, you can't tell by the photo above, but I digress.  You can see examples of my passion on my page @gringalicious. I don't like labels necessarily, but let's just say I don't like the state and those conditioned by the state telling me what to do.  Nor do I like telling others how they should liver their lives.  I will post more on those topics at a later date.

\n

The idea of #Steemit thoroughly intrigues me.  I look forward to being part of the community!

\n

And since I am here talking about myself, I was featured in a magazine recently.  Not trying to promote the magazine necessarily, just trying to add validity to my verification.  And, I have to admit, I just a little proud of myself.

\n

\n

\n


\n

Later this week, I'll be posting a recipe with a #steemitlogo incorporated in it.  So, keep an eye out for it.

\n

I do hope this helps satisfy the request that many of you have made.  If I need to do something different, please let me know.  I actually like corrective criticism so bring it on.

\n

Until my next post, hasta luego mis amigos

\n

Tori

\n", + "cashout_time": "2016-09-28T22:59:51", + "category": "introduceyourself", + "children": 48, + "children_abs_rshares": "256626492237", + "created": "2016-08-28T17:15:12", + "curator_payout_value": { + "amount": "12739", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779946, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"food\",\"photography\",\"Steemit\",\"steemitlogo\"],\"users\":[\"gringalicious\"],\"image\":[\"https://s19.postimg.org/9vrr3pg8j/DSC_0750_2.jpg\",\"https://s19.postimg.org/4j2wpksc3/IMG_20160828_131820621.jpg\",\"https://s16.postimg.org/3ougnif51/IMG_20160828_131853738.jpg\"],\"links\":[\"https://steemit.com/introduceyourself/@gringalicious/hola-steemit-photographer-food-blogger-traveler-and-student-of-life-i-am\"]}", + "last_payout": "2016-08-29T22:59:51", + "last_update": "2016-08-28T17:15:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-14T00:51:15", + "net_rshares": "114793970759", + "net_votes": 82, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "hello-again-better-late-than-never-a-re-introduction-verification", + "reward_weight": 10000, + "root_author": "gringalicious", + "root_permlink": "hello-again-better-late-than-never-a-re-introduction-verification", + "title": "Hello Again - Better Late Than Never - a RE introduction VERIFICATION", + "total_payout_value": { + "amount": "73426", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "114793970759" + }, + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 588, + "beneficiaries": [], + "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", + "cashout_time": "2016-09-28T20:19:39", + "category": "foodchallenge", + "children": 18, + "children_abs_rshares": 2374341643, + "created": "2016-08-28T17:15:12", + "curator_payout_value": { + "amount": "131", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779947, + "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:15:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T01:24:24", + "net_rshares": 0, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "foodchallenge", + "percent_hbd": 10000, + "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", + "total_payout_value": { + "amount": "576", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:15:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "forklognews", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\u041f\u0440\u043e\u0448\u0435\u0434\u0448\u0430\u044f \u043d\u0435\u0434\u0435\u043b\u044f \u043e\u043a\u0430\u0437\u0430\u043b\u0430\u0441\u044c \u0431\u043e\u0433\u0430\u0442\u043e\u0439 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u043c\u0438, \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u043c \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0434\u043b\u044f \u043d\u0430\u0448\u0435\u0439 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u0441\u0442\u0430\u043b\u043e \u0434\u0432\u0443\u0445\u043b\u0435\u0442\u0438\u0435 Forklog. \u0414\u0432\u0430 \u0433\u043e\u0434\u0430 \u043d\u0430\u0437\u0430\u0434, 25 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0431\u044b\u043b \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0434\u043e\u043c\u0435\u043d ForkLog.com, \u0430 \u0441\u043f\u0443\u0441\u0442\u044f \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u0434\u0435\u043b\u0430\u043d\u044b \u043f\u0435\u0440\u0432\u044b\u0435 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u043d\u0430 \u0441\u0430\u0439\u0442\u0435. \u041e\u0431 \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0445, \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u0445 \u043c\u0438\u0440\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442, \u0432\u044b \u0443\u0437\u043d\u0430\u0435\u0442\u0435 \u0438\u0437 \u043d\u0430\u0448\u0435\u0433\u043e \u0435\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0439\u0434\u0436\u0435\u0441\u0442\u0430. 

\n

 \u0411\u0418\u0420\u0416\u0418

\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u0438\u043c\u0435\u043d\u0438\u043d\u043d\u0438\u043a\u043e\u043c \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0438 \u0441\u0442\u0430\u043b\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 Bitstamp, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u043e\u0442\u043c\u0435\u0442\u0438\u043b\u0430 \u043f\u044f\u0442\u0438\u043b\u0435\u0442\u0438\u0435 \u0441\u043e \u0434\u043d\u044f \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f. \u041a \u044d\u0442\u043e\u043c\u0443 \u0441\u043e\u0431\u044b\u0442\u0438\u044e \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0438\u0443\u0440\u043e\u0447\u0438\u043b\u0430 \u043a\u043e\u043d\u043a\u0443\u0440\u0441 \u0441 \u0446\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0440\u0438\u0437\u0430\u043c\u0438.

\n

\u041d\u043e \u044e\u0431\u0438\u043b\u0435\u0438 \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043f\u043e\u0432\u043e\u0434\u043e\u043c \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0430\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 \u0438 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0431\u0438\u0440\u0436 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0440\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0442 \u044d\u0442\u043e \u043c\u043d\u0435\u043d\u0438\u0435, \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u044f \u0433\u0434\u0435-\u0442\u043e \u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0435, \u0430 \u0433\u0434\u0435-\u0442\u043e \u0438 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f.

\n

\u0422\u0430\u043a, \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 GDAX \u043d\u0430\u0447\u0430\u043b\u0430 \u0442\u043e\u0440\u0433\u0438 \u0447\u0435\u0442\u0432\u0435\u0440\u0442\u043e\u0439 \u043f\u043e \u0440\u044b\u043d\u043e\u0447\u043d\u043e\u0439 \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043e\u0439 Litecoin. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0434\u0435\u043b\u0430\u043d\u043e \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0431\u043b\u043e\u0433\u0435 \u0431\u0438\u0440\u0436\u0438. \u0414\u043b\u044f \u0442\u043e\u0440\u0433\u043e\u0432 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0434\u0432\u0435 \u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043f\u0430\u0440\u044b: \u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430\u043c \u0421\u0428\u0410 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043f\u0430\u0440\u0430 LTC / USD, \u0432\u0441\u0435\u043c \u043f\u0440\u043e\u0447\u0438\u043c \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u2014 \u043f\u0430\u0440\u0430 LTC / BTC.

\n

\u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, 23 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0442\u0432\u0438\u0442\u0442\u0435\u0440\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u043e\u0439 \u0431\u0438\u0440\u0436\u0438 Poloniex \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043e\u0441\u043d\u044f\u0442\u0438\u0438 \u0441 \u0442\u043e\u0440\u0433\u043e\u0432 27 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442. \u0422\u043e\u0440\u0433\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0435\u043d\u044b 5 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430 \u0438 \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0443\u0436\u0435 \u0432\u044b\u0437\u0432\u0430\u043b\u043e \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043d\u0435\u0434\u043e\u0443\u043c\u0435\u043d\u0438\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430, \u0432\u0435\u0434\u044c \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u0447\u0435\u043d\u044c \u0432\u043e\u0448\u043b\u0438 \u0442\u0430\u043a\u0438\u0435 \u0430\u043b\u044c\u0442\u043a\u043e\u0438\u043d\u044b, \u043a\u0430\u043a DAO, Dashcoin \u0438 Mintcoin, \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0438\u0433 $1,22 \u043c\u043b\u043d. 

\n

\n

 \u041f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u043a \u043a\u043e\u043d\u0446\u0443 \u0438 \u043d\u0430\u0448\u0443\u043c\u0435\u0432\u0448\u0430\u044f \u0438\u0441\u0442\u043e\u0440\u0438\u044f \u0441 \u0431\u0438\u0440\u0436\u0435\u0439 Bitfinex, \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0435\u0439 \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u0437\u043b\u043e\u043c\u0430. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0431\u0438\u0440\u0436\u0438 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u0438\u0438 \u0434\u043e\u0433\u043e\u0432\u043e\u0440\u0430 \u0441 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u043e\u0439 BnkToTheFuture \u0441 \u0446\u0435\u043b\u044c\u044e \u0432\u043e\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0440\u0435\u0434\u0441\u0442\u0432 \u0432\u043a\u043b\u0430\u0434\u0447\u0438\u043a\u043e\u0432 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u0434\u043e\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0447\u0430\u0441\u0442\u0438\u044f \u0432 \u0430\u043a\u0446\u0438\u043e\u043d\u0435\u0440\u043d\u043e\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438. 

\n

\n

 \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0443 \u0441 BnkToTheFuture \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Bitfinex \u0441\u043c\u043e\u0433\u0443\u0442 \u043e\u0431\u043c\u0435\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u0438\u043c \u0442\u043e\u043a\u0435\u043d\u044b BFX \u043d\u0430 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0443\u044e \u0434\u043e\u043b\u044e \u0432 iFinex Inc, \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438\u0445 \u0412\u0438\u0440\u0433\u0438\u043d\u0441\u043a\u0438\u0445 \u041e\u0441\u0442\u0440\u043e\u0432\u0430\u0445 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u0430\u044f \u043d\u043e\u0432\u043e\u0441\u0442\u044c \u043f\u0440\u0438\u0448\u043b\u0430 \u043d\u0430 \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0435 \u0438\u0437 \u0422\u0443\u0440\u0446\u0438\u0438, \u0433\u0434\u0435 \u0432\u0435\u0434\u0443\u0449\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0438 BTCTurk \u0431\u044b\u043b\u0430 \u0432\u044b\u043d\u0443\u0436\u0434\u0435\u043d\u0430 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443, \u0441\u0442\u043e\u043b\u043a\u043d\u0443\u0432\u0448\u0438\u0441\u044c \u0441 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u043e\u043c \u043e\u0442\u043a\u0430\u0437\u043e\u043c \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0430 \u043e\u0442 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0433\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430. \u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442 \u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c, \u043e\u0434\u043d\u0430\u043a\u043e \u0438\u0437-\u0437\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0445 \u0441\u0447\u0435\u0442\u043e\u0432 \u044d\u0442\u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u0442\u044f\u043d\u0443\u0442\u044c\u0441\u044f. 

\n

 \u041a\u041e\u0428\u0415\u041b\u042c\u041a\u0418 \u0418 \u041f\u041b\u0410\u0422\u0401\u0416\u041d\u042b\u0415 \u0421\u0415\u0420\u0412\u0418\u0421\u042b

\n

\u041f\u0435\u0440\u0432\u044b\u043c \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u044b\u043c \u043a\u043e\u0448\u0435\u043b\u044c\u043a\u043e\u043c, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0438\u043c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Ethereum, \u0441\u0442\u0430\u043b Trezor. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0430 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 Trezor \u043d\u0430 Github.

\n

\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043e\u0442 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438-\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430 SatoshiLabs \u043f\u043e\u043a\u0430, \u0432\u043f\u0440\u043e\u0447\u0435\u043c, \u043d\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u043b\u043e, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0434\u0430\u0442\u0430 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0435\u043b\u0438\u0437\u0430 \u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u0430 \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043e\u0441\u0442\u0430\u0435\u0442\u0441\u044f \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e\u0439.

\n

\u0421\u043f\u0438\u0441\u043a\u0438 \u0440\u0430\u0431\u043e\u0447\u0438\u0445 \u0432\u0430\u043b\u044e\u0442 \u043f\u043e\u043f\u043e\u043b\u043d\u0438\u043b\u0438\u0441\u044c \u0443 \u043f\u043b\u0430\u0442\u0451\u0436\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 Bitwala, \u0432\u043a\u043b\u044e\u0447\u0438\u0432\u0448\u0435\u0433\u043e \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Dash \u0438 Emercoin, \u0438 \u0432\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044c\u0441\u043a\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b Cryptobuyer, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0435\u0439 Dash. \u041e\u0442\u043c\u0435\u0442\u0438\u043c, \u0447\u0442\u043e \u0436\u0438\u0442\u0435\u043b\u0438 \u0412\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044b, \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043d\u0435\u0442 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u0432 \u043b\u0438\u0431\u043e \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u043e\u0432 \u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u0432 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442, \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0443\u0441\u043b\u0443\u0433\u0430\u043c\u0438 \u043c\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0451\u0440\u0430 Cryptobuyer \u2013 \u0441\u0435\u0442\u044c\u044e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u043c\u0430\u0442\u043e\u0432 TigoCTM.

\n

\u0422\u0430\u043a\u0436\u0435 \u0432\u044b\u0448\u043b\u0430 \u0432 \u0441\u0432\u0435\u0442 \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f Ethereum-\u043a\u043e\u0448\u0435\u043b\u044c\u043a\u0430 Mist \u0441 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u043e\u0439 Coinbase Buy Widget. \u041e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0435\u0451 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u043e\u0441\u043e\u0431\u0435\u043d\u043d\u043e\u0441\u0442\u0435\u0439 \u0441\u0442\u0430\u043b\u043e \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 Coinbase Buy Widget \u2013 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430, \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0438\u0442\u044c \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u043a\u0443\u043f\u043a\u0443 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043d\u0430 \u0441\u0443\u043c\u043c\u0443 \u0434\u043e $5.

\n

\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0434\u0430\u043d\u043d\u0430\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c \u0438\u0437 \u0421\u0428\u0410 \u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043d\u0430\u043b\u0438\u0447\u0438\u044f \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430 \u043d\u0430 Coinbase. 

\n

\n

 \u0411\u0410\u041d\u041a\u0418 \u0418 \u041a\u041e\u0420\u041f\u041e\u0420\u0410\u0426\u0418\u0418

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u043c \u0438\u0437\u0432\u0435\u0441\u0442\u0438\u0435\u043c, \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u044b\u043c \u0441\u0442\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0432\u0435\u0441\u0442\u043d\u0438\u043a\u043e\u043c \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0445 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0435, \u0441\u0442\u0430\u043b\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0438\u0437\u0434\u0430\u043d\u0438\u044f Financial Times \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0440\u044f\u0434 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0445 \u043c\u0438\u0440\u043e\u0432\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u0432 \u043f\u0440\u0438\u043d\u044f\u043b \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043d\u043e\u0432\u043e\u0439 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u043b\u044e\u0442\u044b. \u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0435\u0439 \u0431\u0430\u043d\u043a\u043e\u0432 UBS, Deutsche Bank, Santander \u0438 BNY Mellon \u043e\u0436\u0438\u0434\u0430\u043b\u043e\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u043d\u043e \u0434\u043e \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u043d\u0435 \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c.

\n

\u0415\u0441\u043b\u0438 \u044d\u0442\u043e \u043e\u043a\u0430\u0436\u0435\u0442\u0441\u044f \u043d\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u0443\u0442\u043a\u043e\u0439, \u0442\u043e \u0441\u0442\u043e\u0438\u0442 \u043e\u0436\u0438\u0434\u0430\u0442\u044c, \u0447\u0442\u043e \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u043a \u044d\u0442\u043e\u0439 \u0438\u043d\u0438\u0446\u0438\u0430\u0442\u0438\u0432\u0435 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u044f\u0442\u0441\u044f \u0438 \u043f\u0440\u043e\u0447\u0438\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u044b \u0441\u043e \u0432\u0441\u0435\u0445 \u043a\u043e\u043d\u0446\u043e\u0432 \u0441\u0432\u0435\u0442\u0430, \u0434\u0430\u0436\u0435 \u0441 \u0434\u0430\u043b\u0451\u043a\u043e\u0433\u043e \u0430\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0438\u043d\u0435\u043d\u0442\u0430. \u0422\u0430\u043c \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0439 \u042e\u0436\u043d\u043e-\u0410\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u0431\u0430\u043d\u043a\u0430 \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e \u0432 \u0441\u0432\u043e\u0435\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0438 \u043d\u0430 \u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0438\u0438 \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u043a\u0440\u0438\u043f\u0442\u043e\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u0443\u0436\u0435 \u0438\u0437\u0443\u0447\u0430\u0435\u0442 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0437\u0430\u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043e\u0432\u0430\u043d \u0432 \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0434\u0430\u0442\u044c \u044d\u0442\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f. 

\n
 \u00ab\u041a\u0430\u043a \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u0431\u0430\u043d\u043a, \u043c\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044b \u043a \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u043c \u043d\u0435\u0441\u043c\u043e\u0442\u0440\u044f \u043d\u0430 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u043e\u0435 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u043e\u0440\u043e\u0432 \u043a \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u043c. \u041c\u044b \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u044b \u0438\u0437\u0443\u0447\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043a\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e. 
\n

 \u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0439 \u0431\u0430\u043d\u043a \u042f\u043f\u043e\u043d\u0438\u0438 Bank of Tokyo-Mitsubishi UFJ (MUFG) \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e\u0431 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0438 \u0432\u0435\u0440\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043b\u0430\u0442\u0435\u0436\u0438 \u043f\u043e \u0447\u0435\u043a\u0430\u043c. \u0421\u043e\u0437\u0434\u0430\u043d\u043d\u043e\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0432 \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u043c\u0438 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u0430\u043c\u0438 \u0438 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u043c\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f\u043c\u0438 \u0432 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u043e\u043c \u0440\u0435\u0433\u0438\u043e\u043d\u0435. \u0412 \u0431\u0443\u0434\u0443\u0449\u0435\u043c Bank of Tokyo-Mitsubishi \u043d\u0430\u0434\u0435\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043c\u043e\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043d\u0430\u0439\u0442\u0438 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u0435.

\n

\u041e\u0442 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432 \u043d\u0435 \u043e\u0442\u0441\u0442\u0430\u044e\u0442 \u0438 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 \u043a\u043e\u043d\u0441\u043e\u0440\u0446\u0438\u0443\u043c\u0430 R3 CEV, \u0437\u0430\u043f\u0430\u0442\u0435\u043d\u0442\u043e\u0432\u0430\u0432\u0448\u0438\u0435 \u043d\u043e\u0432\u044b\u0439 \u043f\u0440\u043e\u0434\u0443\u043a\u0442 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 Concord, \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0439 \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0435 \u0423\u043e\u043b\u043b-\u0441\u0442\u0440\u0438\u0442.

\n

Concord \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0441\u043e\u0431\u043e\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0443, \u0441\u0432\u044f\u0437\u044b\u0432\u0430\u044e\u0449\u0443\u044e \u0432\u043e\u0435\u0434\u0438\u043d\u043e \u0440\u044b\u043d\u043a\u0438 \u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0438 \u043f\u0440\u0438\u0437\u0432\u0430\u043d\u043d\u0443\u044e \u043f\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u043c\u0438\u0434\u0434\u043b- \u0438 \u0431\u044d\u043a-\u043e\u0444\u0438\u0441\u043e\u0432 \u0432 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u0440\u0438\u0430\u043d\u0442. \u042d\u0442\u043e \u0434\u0430\u0441\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0431\u0430\u043d\u043a\u0430\u043c \u0438\u0437\u0431\u0430\u0432\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u044b\u0445 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432 \u0438 \u0441\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0442\u044c \u043c\u0438\u043b\u043b\u0438\u0430\u0440\u0434\u044b \u0434\u043e\u043b\u043b\u0430\u0440\u043e\u0432. \u041e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f, \u0447\u0442\u043e \u0430\u043b\u044c\u0444\u0430-\u0432\u0435\u0440\u0441\u0438\u044f \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430 \u0432 \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435 2017 \u0433\u043e\u0434\u0430.

\n

\u0412\u0441\u0451 \u044d\u0442\u043e \u0437\u0430\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u043e\u0432 \u0438 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0441\u0442\u043e\u0432 \u0441\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u043e\u043c \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u043b\u044c\u043d\u043e, \u043c\u0435\u043d\u044f\u044f \u0441\u0432\u043e\u0438 \u043f\u0440\u043e\u0433\u043d\u043e\u0437\u044b \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b.

\n

\u0412 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a \u041a\u0438\u0440\u0438\u043b\u043b \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u044d\u0442\u0438\u043c \u043f\u043e\u044f\u0432\u044f\u0442\u0441\u044f \u043d\u043e\u0432\u044b\u0435 \u043c\u0435\u0436\u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b.

\n
\u00ab\u0412 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 blockchain \u043f\u0440\u043e\u0447\u043d\u043e \u0443\u043a\u0440\u0435\u043f\u044f\u0442\u0441\u044f \u043d\u0430 \u043c\u0435\u0436\u0431\u0430\u043d\u043a\u0435, \u0432\u044b\u0442\u0435\u0441\u043d\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043e\u0431\u043c\u0435\u043d\u0430 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043c\u0435\u0436\u0434\u0443 \u043d\u0438\u043c\u0438 (\u0432 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0441\u0438\u0441\u0442\u0435\u043c\u0443 SWIFT) \u0438 \u0441\u0442\u0430\u043d\u0443\u0442 \u043d\u0435\u043e\u0442\u044a\u0435\u043c\u043b\u0435\u043c\u043e\u0439 \u0447\u0430\u0441\u0442\u044c\u044e \u0442\u043e\u0440\u0433\u043e\u0432 \u043d\u0430 \u0440\u044b\u043d\u043a\u0430\u0445 \u0446\u0435\u043d\u043d\u044b\u0445 \u0431\u0443\u043c\u0430\u0433. \u0427\u0442\u043e \u0436\u0435 \u043a\u0430\u0441\u0430\u0435\u0442\u0441\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0432 \u043f\u0440\u0438\u0432\u044b\u0447\u043d\u043e\u043c \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438, \u0442\u043e \u043e\u043d\u0438 \u0442\u0430\u043a\u0436\u0435, \u0441\u043a\u043e\u0440\u0435\u0435 \u0432\u0441\u0435\u0433\u043e, \u0443\u0436\u0435 \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u043c \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 blockchain \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u043d\u043e\u0435 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435\u00bb, \u2014 \u0441\u0447\u0438\u0442\u0430\u0435\u0442 \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e.
\n

\u041a\u041e\u041c\u041f\u0410\u041d\u0418\u0418

\n

\u0414\u0430\u0442\u0441\u043a\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Bitshares Munich IVS, \u0432\u043b\u0430\u0434\u0435\u044e\u0449\u0430\u044f \u0431\u0440\u0435\u043d\u0434\u043e\u043c BlockPay, \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0441\u0442\u0430\u0440\u0442\u0435 ICO. \u0412 \u0445\u043e\u0434\u0435 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 BlockPay, P2P-\u043c\u0435\u0441\u0441\u0435\u043d\u0434\u0436\u0435\u0440\u0430 ECHO \u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u044b\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u0435\u0439 Stealth. \u041f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043a\u0440\u0430\u0443\u0434\u0444\u0430\u043d\u0434\u0438\u043d\u0433\u043e\u0432\u043e\u0439 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043d\u0430 2016 \u0438 2017 \u0433\u043e\u0434\u044b. \u0421\u0430\u043c\u0430 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u043e\u0441\u0442\u043e\u0438\u0442 \u0438\u0437 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 ICO (Pre-ICO), \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0430\u0432\u0433\u0443\u0441\u0442 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430, \u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0430 \u0432 2017 \u0433\u043e\u0434\u0443. \u0412\u0441\u0435\u0433\u043e \u043f\u043b\u0430\u043d\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c 100 \u043c\u0438\u043b\u043b\u0438\u043e\u043d\u043e\u0432 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 BlockPay.

\n

\u041f\u0440\u043e\u0435\u043a\u0442 \u043f\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c \u043a\u043e\u0434\u043e\u043c Hyperledger \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u0438\u043c\u0435\u043d\u0430 \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u043e\u0441\u0442\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430. \u0421\u0440\u0435\u0434\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u2014 \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u044e\u0449\u0438\u0445 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0438 \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0439 \u0443\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0431\u0430\u0437\u044b \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u043a\u043e\u0434\u0430.

\n

\u0412 \u043d\u043e\u0432\u043e\u043c \u0441\u043e\u0441\u0442\u0430\u0432\u0435 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u043b\u0438 \u0441\u0432\u043e\u0438 \u043c\u0435\u0441\u0442\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 R3CEV \u0413\u0435\u043d\u0434\u0430\u043b \u0411\u0440\u0430\u0443\u043d, \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432 Digital Asset Holdings \u0422\u0430\u043c\u0430\u0448 \u0411\u043b\u0443\u043c\u043c\u0435\u0440, \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c Fujitsu \u0425\u0430\u0440\u0442 \u041c\u043e\u043d\u0442\u0433\u043e\u043c\u0435\u0440\u0438, \u0438\u043d\u0436\u0435\u043d\u0435\u0440 Intel \u041c\u0438\u043a \u0411\u043e\u0443\u043c\u0435\u043d \u0438 \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 IBM \u041a\u0440\u0438\u0441\u0442\u043e\u0444\u0435\u0440 \u0424\u0435\u0440\u0440\u0438\u0441. \u0421\u0440\u0435\u0434\u0438 \u043d\u043e\u0432\u044b\u0445 \u0438\u043c\u0435\u043d \u2013 \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c IBM \u0410\u0440\u043d\u043e \u043b\u0435 \u041e\u0440, \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u043e\u0440 IBM \u0411\u0438\u043d \u041d\u0433\u0443\u0435\u043d, \u0433\u043b\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a Intel \u0414\u044d\u043d \u041c\u0438\u0434\u0434\u043b\u0442\u043e\u043d, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 DTCC, Salesforce \u0438 \u041b\u043e\u043d\u0434\u043e\u043d\u0441\u043a\u043e\u0439 \u0444\u043e\u043d\u0434\u043e\u0432\u043e\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0441\u0442\u0430\u0440\u0442\u0430\u043f Chronicled Inc. \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u0434\u043b\u044f \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430 \u0432\u0435\u0449\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u044b\u043b \u0441\u043e\u0437\u0434\u0430\u043d \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 Ethereum. \u042d\u0442\u043e\u0442 \u0440\u0435\u0435\u0441\u0442\u0440 \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d \u0434\u043b\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0445 \u043a\u043e\u0434\u043e\u0432 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0438\u043c\u0435\u044e\u0449\u0438\u0445 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435 \u0447\u0438\u043f\u044b NFC \u0438 BLE.

\n
\u00ab\u0422\u0435\u043f\u0435\u0440\u044c \u0432\u0441\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0438 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0431\u0443\u0434\u044c-\u0442\u043e \u0431\u0440\u0435\u043d\u0434\u044b, \u043d\u043e\u0441\u0438\u0442\u0435\u043b\u0438 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0438 \u043f\u0440\u043e\u0447\u0435\u0435, \u043c\u043e\u0433\u0443\u0442 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0437\u0430\u0449\u0438\u0449\u0451\u043d\u043d\u044b\u0435 \u043e\u0442 \u043f\u043e\u0434\u0434\u0435\u043b\u043e\u043a \u0447\u0438\u043f\u044b \u0432 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 Chronicled \u0420\u0430\u0439\u0430\u043d \u041e\u0440\u0440. \u041d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u043e\u043c \u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043e \u043e\u043a\u043e\u043b\u043e 10 000 NFC \u0438 BLE \u0447\u0438\u043f\u043e\u0432.
\n

\u041a\u0430\u043a \u0441\u043e\u043e\u0431\u0449\u0430\u0435\u0442 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Business Insider UK, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u0432 \u0421\u0428\u0410 \u0442\u0435\u043b\u0435\u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Verizon Communications \u044d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0438\u0440\u0443\u0435\u0442 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0422\u0430\u043a, \u0432 \u0440\u0430\u0441\u043f\u043e\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u043f\u043e\u043f\u0430\u043b \u043f\u0430\u0442\u0435\u043d\u0442, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 Verizon 10 \u043c\u0430\u044f \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u0418\u0437 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u043f\u0430\u0442\u0435\u043d\u0442\u0430 \u0441\u043b\u0435\u0434\u0443\u0435\u0442, \u0447\u0442\u043e \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u0430 \u043d\u0435\u043a\u043e\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043a\u043b\u044e\u0447\u0435\u0439, \u0430 \u0440\u0430\u0431\u043e\u0442\u044b \u043d\u0430\u0434 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u043c \u0432\u0435\u043b\u0438\u0441\u044c \u043d\u0430 \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0442\u0440\u0451\u0445 \u043b\u0435\u0442. \u0412\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043f\u043e\u0434\u043e\u0431\u043d\u043e\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0432 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u0438 \u0441\u043e \u0441\u043c\u0430\u0440\u0442-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430\u043c\u0438 \u0434\u0430\u0451\u0442 \u043c\u0430\u0441\u0441\u0443 \u043d\u043e\u0432\u044b\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u0432 \u0441\u0444\u0435\u0440\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0438\u043b\u0438 \u0430\u0432\u0442\u043e\u0440\u044b \u0441\u0442\u0430\u0442\u0435\u0439 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0441\u0432\u043e\u044e \u043e\u043f\u043b\u0430\u0442\u0443 \u0441\u0440\u0430\u0437\u0443 \u0436\u0435 \u043f\u043e\u0441\u043b\u0435 \u0442\u043e\u0433\u043e, \u043a\u0430\u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0430\u0447\u0430\u043b \u0447\u0438\u0442\u0430\u0442\u044c \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b \u0438\u043b\u0438 \u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430\u0442\u044c \u043f\u0435\u0441\u043d\u044e.

\n

\u0412\u0430\u043b\u044e\u0442\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440\u0430 (MAS) \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u043b\u043e \u0441 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0435\u0434\u0438\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439, \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u043d\u044b\u0435 \u0443\u0441\u043b\u0443\u0433\u0438, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438.

\n

\u0421\u0442\u0430\u043b\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0447\u0442\u043e \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0441\u0442\u0430\u0440\u0442\u0430\u043f Keza \u0432\u044b\u043a\u0443\u043f\u043b\u0435\u043d \u0444\u0438\u043b\u0438\u043f\u043f\u0438\u043d\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 Satoshi Citadel Industries, \u0432 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u043c \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u043c \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0443\u0436\u0435 \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0442 \u0442\u0430\u043a\u0438\u0435 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u044b, \u043a\u0430\u043a Rebit.ph, Bitbit.cash \u0438 PrepaidBitcoin.ph.

\n
\u00abKeza \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u043b\u0430\u0441\u044c \u0441 \u043f\u0440\u0438\u0446\u0435\u043b\u043e\u043c \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u044e\u0449\u0438\u0435\u0441\u044f \u0440\u044b\u043d\u043a\u0438 \u0438 \u0434\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0435 \u0438\u043c\u0435\u044e\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u043c \u0440\u044b\u043d\u043a\u0430\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0430. \u041c\u044b \u0441\u0447\u0430\u0441\u0442\u043b\u0438\u0432\u044b, \u0447\u0442\u043e \u0442\u0435\u043f\u0435\u0440\u044c \u0432\u0438\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0441\u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0440\u0435\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043e\u00bb, \u2014 \u0446\u0438\u0442\u0438\u0440\u0443\u0435\u0442 CEO Keza \u0421\u0430\u0439\u043c\u043e\u043d\u0430 \u0411\u0435\u0440\u043d\u0441\u0430 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Silicon Angle.
\n

\u0414\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0435\u0442\u044c Steemit \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u00ab\u0431\u0435\u0441\u043f\u0440\u0435\u0446\u0435\u0434\u0435\u043d\u0442\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u0442\u0440\u0430\u0444\u0438\u043a\u0430\u00bb, \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u044b\u043c \u0441 \u0442\u0435\u043c, \u0447\u0442\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u043b\u0438 \u043d\u0430 \u0440\u0430\u043d\u043d\u0438\u0445 \u044d\u0442\u0430\u043f\u0430\u0445 \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f Facebook \u0438 Reddit.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Steemit, \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u0435\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u043e \u0440\u0430\u0437\u043c\u0435\u0449\u0430\u044e\u0442 \u0431\u043e\u043b\u0435\u0435 21 000 \u043d\u043e\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0430 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432 \u0432 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u043f\u043e\u0441\u0442\u043e\u0432 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0435\u0442 70 000. \u042d\u0442\u043e \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u043e \u0441 \u0440\u0430\u043d\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c\u044e \u043d\u0430 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0430\u0445 \u0432\u0440\u043e\u0434\u0435 Facebook \u0438 Reddit.

\n

\u0417\u0430 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u0434\u0435\u043b\u044c \u0434\u043e \u0441\u0442\u0430\u0440\u0442\u0430 \u043a\u0440\u0430\u0443\u0434\u0441\u0435\u0439\u043b\u0430 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 DECENT \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0434\u0438\u0441\u0442\u0440\u0438\u0431\u0443\u0446\u0438\u0438 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 DCT. \u0422\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0432\u0435\u0440\u0433\u043b\u043e\u0441\u044c \u043f\u0435\u0440\u0435\u0441\u043c\u043e\u0442\u0440\u0443 \u043e\u0431\u0449\u0435\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0445 \u043a \u0432\u044b\u043f\u0443\u0441\u043a\u0443 \u043c\u043e\u043d\u0435\u0442. \u041a\u0430\u043a \u0437\u0430\u044f\u0432\u0438\u043b\u0438 \u0432 DECENT, \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435, \u0445\u043e\u0442\u044f \u0438 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u043c, \u0442\u0430\u043a\u0436\u0435 \u0431\u044b\u043b\u043e \u043f\u0440\u0438\u043d\u044f\u0442\u043e \u0441 \u0443\u0447\u0435\u0442\u043e\u043c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430.

\n

\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Coinbase \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0438 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0441\u0432\u043e\u0435\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u043d\u0430 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442. \u0422\u0435\u043f\u0435\u0440\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u043a\u0443\u043f\u043a\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u043a\u0430\u0440\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Coinbase \u0432 \u0415\u0432\u0440\u043e\u043f\u0435.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Coinbase, \u0432 \u0421\u0428\u0410 40% \u0441\u0434\u0435\u043b\u043e\u043a \u043f\u043e \u043f\u043e\u043a\u0443\u043f\u043a\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0441 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0435\u043c\u0438\u0442\u0441\u044f \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u044d\u0442\u043e\u0442 \u0441\u0435\u0440\u0432\u0438\u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0432 \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435\u043c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0435 \u0441\u0442\u0440\u0430\u043d.

\n

\u041f\u0415\u0420\u0421\u041e\u041d\u0410\u041b\u0418\u0418

\n

\u041e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Distributed Lab \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u0440\u0430\u0441\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u044f \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0441\u0444\u0435\u0440\u0430\u0445 \u0435\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f, \u043d\u0430\u0437\u0432\u0430\u0432 \u043e\u0442\u0440\u0430\u0441\u043b\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043e\u043d\u0430, \u043d\u0430 \u0435\u0433\u043e \u0432\u0437\u0433\u043b\u044f\u0434, \u0432\u0440\u044f\u0434 \u043b\u0438 \u043d\u0443\u0436\u043d\u0430 \u0432\u043e\u043e\u0431\u0449\u0435. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u043f\u043e\u0441\u0442 \u0431\u044b\u043b \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d \u0432 \u0435\u0433\u043e \u0431\u043b\u043e\u0433\u0435 \u043d\u0430 Medium.

\n

\u0412\u044b\u0441\u043a\u0430\u0437\u0430\u0432 \u0440\u0430\u043d\u0435\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u0431\u0438\u0437\u043d\u0435\u0441 \u043d\u0435 \u0433\u043e\u0442\u043e\u0432 \u043f\u043e-\u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u043c\u0443 \u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u041f\u0430\u0432\u0435\u043b \u043d\u0430 \u044d\u0442\u043e\u0442 \u0440\u0430\u0437 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u043b \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u043e\u0434\u0430 \u0433\u0438\u0434 \u0434\u043b\u044f \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432. \u0412 \u043d\u0435\u043c \u043e\u043f\u0438\u0441\u0430\u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0430\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430\u0442\u0438\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u0438 \u0440\u0435\u0448\u0435\u043d\u0438\u0439 \u0438 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u043f\u043e\u043c\u043e\u0449\u044c \u0432 \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438 \u0442\u043e\u0433\u043e, \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043b\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043d\u0438\u0445 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0439.

\n
\u00ab\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043e\u0431 \u0438\u043c\u043f\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u044f \u043f\u043e\u043b\u0443\u0447\u0430\u044e \u043a\u0430\u0436\u0434\u044b\u0439 \u0434\u0435\u043d\u044c. \u041e\u0434\u043d\u0430\u043a\u043e \u0447\u0430\u0441\u0442\u043e \u044f \u0441\u0447\u0438\u0442\u0430\u044e, \u0447\u0442\u043e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u043d\u0435 \u043d\u0443\u0436\u0435\u043d \u0432\u043e\u0432\u0441\u0435. \u0415\u0441\u0442\u044c \u0434\u0440\u0443\u0433\u0438\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0442\u0438\u043f\u044b \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b, \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u2013 \u043b\u0438\u0448\u044c \u043e\u0434\u0438\u043d \u0438\u0437 \u043d\u0438\u0445\u00bb, \u2014 \u043f\u0438\u0448\u0435\u0442 \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e.
\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0435\u043c \u0433\u0443\u0440\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441\u0442\u0430\u043b\u0430 \u043b\u0435\u043a\u0446\u0438\u044f \u043a\u0430\u043d\u0430\u0434\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044f \u0414\u043e\u043d\u0430 \u0422\u044d\u043f\u0441\u043a\u043e\u0442\u0442\u0430, \u0430\u0432\u0442\u043e\u0440\u0430 \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0438\u0437\u0434\u0430\u043d\u043d\u043e\u0439 \u043a\u043d\u0438\u0433\u0438 \u00ab\u0420\u0435\u0432\u043e\u043b\u044e\u0446\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430\u00bb, \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u0432\u0448\u0435\u0433\u043e \u0441 \u043b\u0435\u043a\u0446\u0438\u0435\u0439 \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u043d\u0430 \u0441\u0430\u043c\u043c\u0438\u0442\u0435 TED Talk \u0432 \u0410\u043b\u044c\u0431\u0435\u0440\u0442\u0435. 

\n

 \u0423\u041a\u0420\u0410\u0418\u041d\u0410

\n

\u0412 \u0423\u043a\u0440\u0430\u0438\u043d\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u043e\u0432 \u0432 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0443\u043c \u0441\u0442\u0440\u0430\u043d\u044b. \u0422\u0430\u043a, \u043a\u043e\u043c\u0430\u043d\u0434\u0430 e-Vox \u0430\u043d\u043e\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043b\u0430 \u0437\u0430\u043f\u0443\u0441\u043a \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0439 \u0420\u0430\u0434\u0435 \u0411\u0430\u043b\u0442\u044b (\u041e\u0434\u0435\u0441\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c). \u041e\u0431 \u044d\u0442\u043e\u043c \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 ForkLog \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u043e\u0440 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041a\u043e\u043d\u0430\u0448\u0435\u0432\u0438\u0447. 

\n

\n

 \u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f, \u0432\u043d\u0435\u0441\u0435\u043d\u043d\u044b\u0435 \u0432 \u0434\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u0431\u0430\u0437\u0443 \u0434\u0430\u043d\u043d\u044b\u0445, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0438 \u0432\u044b\u0432\u043e\u0434\u0438\u0442\u044c \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0443 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0440\u0435\u0448\u0435\u043d\u0438\u0439. \u0410 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u043f\u043e\u043c\u043e\u0436\u0435\u0442 \u043d\u0430\u0434\u0435\u0436\u043d\u043e \u0437\u0430\u0449\u0438\u0442\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e\u0442 \u0432\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0435\u0433\u043e \u0438 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043f\u0440\u0430\u0432\u043d\u043e\u0433\u043e \u0432\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430.

\n

\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u043e\u0439 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430 e-Vox \u0437\u0430\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Ambisafe \u0438 Vareger.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0432 \u044d\u0442\u043e\u043c \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438 \u0432 \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. \u0422\u0430\u043a, \u043c\u044d\u0440 \u0433\u043e\u0440\u043e\u0434\u0430 \u0413\u0435\u043d\u043d\u0430\u0434\u0438\u0439 \u0414\u0438\u043a\u0438\u0439 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043b \u043f\u0440\u043e\u0435\u043a\u0442 \u043e\u0431 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b Auction 3.0 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043e\u0434\u043d\u043e\u0433\u043e \u0438\u0437 \u0430\u043a\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u043f\u0440\u0438\u043d\u044f\u0442 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u0435 \u0432\u0440\u0435\u043c\u044f.
\n\u041e\u0431 \u044d\u0442\u043e\u043c \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0440\u0435\u0448\u0435\u043d\u0438\u0438 \u00ab\u041e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043f\u043b\u0430\u043d \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0411\u0435\u043b\u043e\u0446\u0435\u0440\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0433\u043e \u0441\u043e\u0432\u0435\u0442\u0430 \u043f\u0440\u0438 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u044b\u0445 \u0430\u043a\u0442\u043e\u0432 \u043d\u0430 2016 \u0433\u043e\u0434\u00bb, \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043d\u043e\u043c \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. 

\n

\n

 \u0420\u041e\u0421\u0421\u0418\u042f

\n

\u0412 \u043f\u044f\u0442\u043d\u0438\u0446\u0443, 26 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0437\u0430\u043c\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041c\u043e\u0438\u0441\u0435\u0435\u0432 \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u041c\u0438\u043d\u0438\u0441\u0442\u0435\u0440\u0441\u0442\u0432\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u0435\u0442 \u043f\u0440\u043e\u0442\u0438\u0432 \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u00ab\u043b\u043e\u0431\u043e\u0432\u043e\u0433\u043e \u0437\u0430\u043f\u0440\u0435\u0442\u0430\u00bb \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430. \u041f\u043e \u0435\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u043c, \u0437\u0430\u043a\u043e\u043d\u043e\u043f\u0440\u043e\u0435\u043a\u0442 \u043e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u0445 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d \u043f\u043e \u0438\u0442\u043e\u0433\u0430\u043c \u043f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0435\u0440\u0438\u0438 \u0432\u0441\u0442\u0440\u0435\u0447 \u0441 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u0430\u043c\u0438.

\n

\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u044d\u0442\u043e \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u043b\u043e \u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u0435\u043c \u0432\u0441\u0442\u0440\u0435\u0447\u0438, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0441\u043e\u0441\u0442\u043e\u044f\u043b\u0430\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430 \u0420\u0424 \u043f\u043e\u0434 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e\u043c \u0441\u043e\u0432\u0435\u0442\u043d\u0438\u043a\u0430 \u043f\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0443 \u0413\u0435\u0440\u043c\u0430\u043d\u0430 \u041a\u043b\u0438\u043c\u0435\u043d\u043a\u043e. \u041d\u0430 \u043c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u0438 \u043e\u0431\u0441\u0443\u0436\u0434\u0430\u043b\u0430\u0441\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u0420\u043e\u0441\u0441\u0438\u0438 \u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0435\u0435 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f \u043d\u0430 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043b\u0438\u0441\u044c \u0432 \u0441\u0442\u043e\u0440\u043e\u043d\u0435 \u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0438 \u0432\u043b\u0430\u0441\u0442\u0438 \u041c\u043e\u0441\u043a\u0432\u044b, \u0437\u0430\u044f\u0432\u0438\u0432\u0448\u0438\u0435 \u043d\u0430 \u044d\u0442\u043e\u043c \u0436\u0435 \u0441\u043e\u0432\u0435\u0449\u0430\u043d\u0438\u0438 \u043e \u0433\u043e\u0442\u043e\u0432\u043d\u043e\u0441\u0442\u0438 \u0432\u043d\u0435\u0434\u0440\u0438\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb.

\n
\u00ab\u041c\u043e\u0441\u043a\u0432\u0430 \u0433\u043e\u0442\u043e\u0432\u0430 \u0431\u044b\u0442\u044c \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0418 \u043a\u0430\u043a \u0440\u0430\u0437 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0438\u043b\u043e\u0442\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043c\u044b \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb. \u041c\u044b \u0445\u043e\u0442\u0438\u043c, \u0441 \u043e\u0434\u043d\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u043e\u0442\u043f\u0438\u043b\u043e\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0438 \u043f\u043e\u043d\u044f\u0442\u044c, \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043e\u043d\u0430 \u0434\u0435\u0435\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u0430 \u0434\u043b\u044f \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u0442\u0430\u043a\u043e\u0433\u043e \u0440\u043e\u0434\u0430 \u0437\u0430\u0434\u0430\u0447. \u0421 \u0434\u0440\u0443\u0433\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u0441\u043d\u044f\u0442\u044c \u0441 \u0441\u0435\u0431\u044f \u043d\u0435\u043a\u0438\u0439 \u0441\u043a\u0435\u043f\u0441\u0438\u0441 \u0441\u043e \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0437\u0430\u043c\u0435\u0441\u0442\u0438\u0442\u0435\u043b\u044c \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0430 \u0434\u0435\u043f\u0430\u0440\u0442\u0430\u043c\u0435\u043d\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 \u041c\u043e\u0441\u043a\u0432\u044b \u0410\u043d\u0434\u0440\u0435\u0439 \u0411\u0435\u043b\u043e\u0437\u0435\u0440\u043e\u0432,
\n

\u041e\u043a\u0430\u0437\u0430\u043b\u0438\u0441\u044c \u0432\u043e\u0432\u043b\u0435\u0447\u0451\u043d\u043d\u044b\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0438 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430 \u0438 \u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0435 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0438\u043b\u044b. \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u00ab\u041f\u0430\u0440\u0442\u0438\u044f \u0420\u043e\u0441\u0442\u0430\u00bb \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u043b\u0430 \u043d\u0430\u0447\u0430\u043b\u043e \u043f\u0440\u0438\u0435\u043c\u0430 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0439 \u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430\u0445, \u043e\u0434\u043d\u0430\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u043c\u0438 \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430\u043c\u0438 \u043e\u043d\u0430 \u0441\u043c\u043e\u0436\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u044f \u0437\u0430\u043a\u043e\u043d\u0430 \u043e \u0441\u0442\u0430\u0442\u0443\u0441\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b.

\n


\n\u0412 \u0441\u0432\u044f\u0437\u0438 \u0441 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435\u043c \u043d\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0440\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u043e\u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u0432 \u043d\u0430 \u0441\u0447\u0435\u0442\u0430 \u044e\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043b\u0438\u0446 \u00ab\u0431\u0438\u0442\u043a\u043e\u0438\u043d\u044b \u0431\u0443\u0434\u0443\u0442 \u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u044f\u0442\u044c\u0441\u044f \u043d\u0430 \u043a\u043e\u0448\u0435\u043b\u0435\u043a \u0414\u043c\u0438\u0442\u0440\u0438\u044f \u041c\u0430\u0440\u0438\u043d\u0438\u0447\u0435\u0432\u0430, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043e\u043c\u0431\u0443\u0434\u0441\u043c\u0435\u043d\u0430 \u0438 \u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442\u0430 \u0432 \u0434\u0435\u043f\u0443\u0442\u0430\u0442\u044b \u043f\u043e \u041c\u0435\u0434\u0432\u0435\u0434\u043a\u043e\u0432\u0441\u043a\u043e\u043c\u0443 \u043e\u0434\u043d\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u043d\u043e\u043c\u0443 \u043e\u043a\u0440\u0443\u0433\u0443\u00bb.

\n

\u041a\u0418\u0422\u0410\u0419

\n

\u041f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u043d\u0435 \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435, \u0437\u0430\u043d\u0438\u043c\u0430\u044e\u0449\u0435\u0435\u0441\u044f \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0422\u0430\u043a, \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u041a\u0438\u0442\u0430\u044f \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u043e \u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0438 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0426\u0435\u043b\u044c\u044e \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u043b\u044c\u044f\u043d\u0441\u0430 \u0441\u0442\u0430\u043d\u0435\u0442 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a \u0438 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0432 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0443 \u0441\u0442\u0440\u0430\u043d\u044b, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043a \u0412\u0441\u0435\u043c\u0438\u0440\u043d\u043e\u043c\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0430\u043c\u043c\u0438\u0442\u0443, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0451\u043d \u0432 \u0428\u0430\u043d\u0445\u0430\u0435 \u0432 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u0435 \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0441\u0442\u0430\u0432\u0438\u0442\u0441\u044f \u043b\u0438 \u043f\u0435\u0440\u0435\u0434 \u044d\u0442\u043e\u0439 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f, \u043d\u043e \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0442\u043e\u0442 \u0444\u0430\u043a\u0442, \u0447\u0442\u043e \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u043f\u043e\u0438\u0441\u043a\u043e\u0432\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u041a\u0438\u0442\u0430\u044f Baidu \u0431\u0435\u0437 \u043a\u0430\u043a\u043e\u0433\u043e-\u043b\u0438\u0431\u043e \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f \u0443\u0434\u0430\u043b\u0438\u043b\u0430 \u0432\u0441\u044e \u0440\u0435\u043a\u043b\u0430\u043c\u0443, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u0443\u044e \u0441 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u043c \u0438 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u0432\u0430\u043b\u044e\u0442\u0430\u043c\u0438.

\n

\u041e\u0431 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0438 \u0434\u0432\u0435 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0435 \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0435 \u0431\u0438\u0440\u0436\u0438 OKCoin \u0438 Huobi, \u043f\u0438\u0448\u0435\u0442 Bloomberg News. \u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 Baidu \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441 \u0430\u0433\u0435\u043d\u0442\u0441\u0442\u0432\u0430 \u043e\u0442 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u0432\u043e\u0437\u0434\u0435\u0440\u0436\u0430\u043b\u0438\u0441\u044c. 

\n", + "cashout_time": "2016-09-29T04:28:30", + "category": "bitcoin", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:15:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779945, + "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto\",\"money\",\"news\"],\"image\":[\"http://radikal.ru/fp/949b19ab0ea142769b5d5bad6918e850\",\"http://radikal.ru/fp/ab1e6cf8f8ce414d8555699b45afc0eb\",\"http://forklog.com/wp-content/uploads/0e6dbfdc-638d-11e6-8e55-cc0a56a8b37c-1.png\",\"http://forklog.com/wp-content/uploads/14152259_10202179476045465_1807948603_o.jpg\",\"http://forklog.com/wp-content/uploads/14022327_853179024818469_8570878217622377273_n-1.jpg\"],\"links\":[\"http://forklog.com/zhurnalu-forklog-dva-goda/\",\"http://forklog.com/birzha-bitstamp-otmechaet-pyatiletnij-yubilej/\",\"http://forklog.com/kriptovalyutnaya-birzha-gdax-dobavila-litecoin/\",\"http://forklog.com/birzha-poloniex-snimaet-s-torgov-the-dao-i-drugie-altkoiny/\",\"http://forklog.com/krupnejshaya-bitkoin-birzha-turtsii-ostanovila-rabotu-iz-za-problem-s-bankom/\",\"http://forklog.com/apparatnyj-koshelek-trezor-dobavil-podderzhku-ethereum/\",\"https://github.com/trezor/trezor-mcu/pull/103\",\"http://forklog.com/platezhnyj-servis-bitwala-vklyuchil-v-spisok-rabochih-altkoinov-dash-i-emercoin/\",\"http://forklog.com/venesuelskij-platyozhnyj-servis-cryptobuyer-dobavil-podderzhku-dash/\",\"http://forklog.com/sostoyalsya-reliz-novoj-versii-ethereum-koshelka-mist-s-podderzhkoj-coinbase-buy-widget/\",\"http://forklog.com/vedushhie-banki-mira-obedinilis-dlya-sozdaniya-novoj-kriptovalyuty/\",\"http://forklog.com/yuzhno-afrikanskij-rezervnyj-bank-gotov-k-ispolzovaniyu-blokchejna-i-kriptovalyut/\",\"http://forklog.com/yaponskie-korporatsii-testiruyut-blokchejn-platformu-dlya-chekovyh-raschetov/\",\"http://forklog.com/konsortsium-r3-cev-zapatentoval-blokchejn-platformu-dlya-infrastruktury-uoll-strit/\",\"http://forklog.com/ekonomisty-prognoziruyut-vytesnenie-sistemy-swift-blokchejnom/\",\"http://forklog.com/kompaniya-bitshares-munich-ivs-obyavila-o-nachale-ico/\",\"http://forklog.com/proekt-hyperledger-nazval-novyj-sostav-tehnicheskogo-komiteta/\",\"http://forklog.com/startap-chronicled-inc-zapustil-otkrytyj-reestr-dlya-interneta-veshhej/\",\"http://forklog.com/kompaniya-verizon-communications-zapatentovala-blokchejn-hranilishhe-klyuchej/\",\"http://forklog.com/kriptovalyutnye-kompanii-singapura-budut-poluchat-edinuyu-litsenziyu-na-osushhestvlenie-deyatelnosti/\",\"http://forklog.com/investitsionnyj-bitkoin-startap-keza-budet-spasen-blagodarya-satoshi-citadel-industries/\",\"http://forklog.com/poseshhaemost-steemit-sravnyalas-s-rannim-facebook/\",\"http://forklog.com/komanda-decent-obyavila-o-vazhnyh-izmeneniyah-v-sisteme-distributsii-tokenov/\",\"http://forklog.com/polzovateli-coinbase-v-evrope-poluchili-vozmozhnost-pokupat-kriptovalyutu-pri-pomoshhi-bankovskih-kart/\",\"http://forklog.com/osnovatel-distributed-lab-nazval-oblasti-kotorym-ne-nuzhen-blokchejn/\",\"https://medium.com/@pavelkravchenko/investor-guide-does-this-cool-project-truly-need-blockchain-bdde70a26bfb#.40cs8sfz2\",\"http://forklog.com/avtor-knig-o-blokchejne-don-tepskott-vystupil-na-ted-talk/\",\"http://forklog.com/dostignuta-dogovorennost-o-zapuske-e-vox-v-balte-odesskoj-oblasti/\",\"http://forklog.com/meriya-beloj-tserkvi-perehodit-na-blokchejn-platformu-auction-3-0/\",\"http://forklog.com/minfin-rf-protiv-pryamogo-zapreta-bitkoina/\",\"http://forklog.com/v-rossii-obsudili-kriptovalyuty-na-gosudarstvennom-urovne/\",\"http://forklog.com/partiya-rosta-utochnila-shemu-priema-pozhertvovanij-v-bitkoinah/\",\"http://forklog.com/kitaj-pristupil-k-issledovaniyu-blokchejna-na-gosudarstvennom-urovne/\",\"http://forklog.com/kitajskij-poiskovik-baidu-zablokiroval-vsyu-svyazannuyu-s-bitkoinom-reklamu/\"]}", + "last_payout": "2016-08-30T04:28:30", + "last_update": "2016-08-28T17:15:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_hbd": 10000, + "permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "reward_weight": 10000, + "root_author": "forklognews", + "root_permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "title": "\u0414\u0430\u0439\u0434\u0436\u0435\u0441\u0442 \u043d\u043e\u0432\u043e\u0441\u0442\u0435\u0439 \u2013 \u043e\u0431\u0437\u043e\u0440 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0438\u043d\u0434\u0443\u0441\u0442\u0440\u0438\u0438", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:14:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "paulsemmelweis", + "author_rewards": 0, + "beneficiaries": [], + "body": "Discussed below are two new articles that shed light on the grand economic chessboard controlled by governments while paving the way for more lies and manipulation by the media...\n\nGlobal central bankers, stuck at zero, unite in plea for help from governments: https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\n\nAs Fed nears rate hikes, policymakers plan for 'brave new world': https://ca.news.yahoo.com/fed-nears-rate-hikes-policymakers-plan-brave-world-005117150--business.html\n\nWhile simultaneously espousing Obama's great economic achievements in the press for years after saving the nation from peril in 2008, central bankers now openly admit there's a very weak economy and a recovery that never was. You know, facts.\n\nWhile talk of \"new tools\" needed to fight the next recession unofficially dominated the annual meeting of our monetary overlords in Wyoming, it is quite clear that the main weapon in their arsenal is the same as it was then; to maintain control over human beings by selling a never ending stream of fiction to the public.\n\n\"it may take a massive program, large enough even to shock taxpayers\"\n\"hard to convince markets and households that things will get better\"\n\"encourage the shift in mood\"\n\"prevent public expectations\"\n\"do not respond in expected ways\"\n\nAnd this gem\u2026 \"In modern monetary theory, households and business expectations are felt to play a defining role.\"\n\nSounds really modern!\n\nThe article ends with this\u2026 \"It was not clear whether such ideas will catch on. But there was a broad sense here that the other side of government may need to up its game.\"\n\nA game indeed. Of mass manipulation for the benefit of those who rule us while easily selling the public what they are doing is in their best interests.", + "cashout_time": "2016-09-28T19:47:36", + "category": "economics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:14:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779934, + "json_metadata": "{\"tags\":[\"economics\",\"government\",\"central\",\"banks\",\"recession\"],\"links\":[\"https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\"]}", + "last_payout": "2016-08-29T19:47:36", + "last_update": "2016-08-28T17:14:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "economics", + "percent_hbd": 10000, + "permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "reward_weight": 10000, + "root_author": "paulsemmelweis", + "root_permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "title": "It's just a game to governments and central bankers", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "randolphrope", + "author_rewards": 0, + "beneficiaries": [], + "body": "On the way to Chinle, Arizona USA \n\nJust off the highway over looking the desert.\n\nhttp://imgur.com/ITp3j5l.jpg\n\nI just remember one on the drive.", + "cashout_time": "2016-09-28T18:29:18", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:13:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779930, + "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"\"],\"image\":[\"http://imgur.com/ITp3j5l.jpg\"]}", + "last_payout": "2016-08-29T18:29:18", + "last_update": "2016-08-28T17:13:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "steem-it-photo-challenge-6", + "reward_weight": 10000, + "root_author": "randolphrope", + "root_permlink": "steem-it-photo-challenge-6", + "title": "Steem.it photo challenge # 6", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ebluefox", + "author_rewards": 0, + "beneficiaries": [], + "body": "Empathy is an interesting aspect of human nature that many people do not possess. Empathy in short is the ability to view an scenario from a different perspective than your own, normally to better understand someone's perspective on certain topics or ideas. This handy skill is a learned skill and when used effectively can be used to better understand humanity.\nBut as with every neat skill, they tend to have as many pros as they do cons. So i will attempt to explain the pros and cons that i have found apparent with empathy.\n There are quite a few pros to empathy, one of which being in your reputation. A person who uses empathy often is normally seen as a loving compassionate person. Another pro that is quite noticeable is the ability to understand unexplained problems. On occasion if a problem really troubles someone or is very personal, most people will not tell anyone about it. But with empathy you can figure out what is troubling them sometimes with something as simple as \"How have you been?\". A more prominent pro of using empathy is better understanding how a person truly is. Most people wear a \"Facade\" in public or a metaphorical mask, these tend to hide their true personality from the public eye and conceal most things about them. Using empathy, you can work around the \"Facade\" and figure out how they truly are as a person, and most of the time appreciate them a bit more.\n Empathy has allot of pros but also has its fair share of cons to go with it, a good example of one of its cons is a changed perspective. under most circumstances, use of empathy becomes a habit and changes your outlook on everyone around you. This is not really very terrible, but it can lead to you disliking a person more than would have normally. Another apparent con is over-assessing someone. This can happen when you use empathy on someone and spot something that would make you feel awful, but in truth does not faze them. Here is an example. You are talking with a person and figure out that they don't have a mother. To you that may seem horrible and you start pitying them, when in truth it may not even matter to them in the slightest. A more cumbersome problem with empathy lies with information. In order to understand or sympathize with someone you need to understand the problems they put up with. If you ask too many questions about their life, they may find you \"Nosy\" or \"Annoying\". On the contrary, if you do not inquire very much about them, you will not have any idea of their standpoint at all and cannot empathize with them. The last con i will cover is drama. It is very easy to get caught in some drama if you try to understand peoples problems, some of which may be very serious. Some people are not patient enough to deal with the newly acquired drama and can sometimes make the problem worse than it need to be.\n This list most definitely did not cover every pro or con associated with empathy because they will differ from person to person however i did cover a few recurring pros and cons. whether you think empathy is worth your time and energy is up to you and your values in life and social interaction.", + "cashout_time": "2016-09-28T17:28:57", + "category": "empathy", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:13:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779923, + "json_metadata": "{\"tags\":[\"empathy\",\"psychology\",\"social-skills\",\"problems\"]}", + "last_payout": "2016-08-29T17:28:57", + "last_update": "2016-08-28T17:13:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "empathy", + "percent_hbd": 10000, + "permlink": "the-pros-and-cons-of-empathy", + "reward_weight": 10000, + "root_author": "ebluefox", + "root_permlink": "the-pros-and-cons-of-empathy", + "title": "The Pros and Cons of Empathy", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "2243580957008", + "active": "2016-09-11T21:09:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemsquad", + "author_rewards": 588, + "beneficiaries": [], + "body": "\n

We are STEEMSQUAD, a Steemit inititative to promote diversity and quality of content by featuring authors from the school of minnows.

\n

\"steem-squad3\"
\n

\n

WHAT is #steemsquad?

\n

Steemsquad is an initiative of multiple minnows whose objective is to promote diverse and quality content and their work which may not have a chance to get noticed when published in the main streem. STEEMSQUAD initiative will try to tweak the game to equally distribute the wealth among its members. 

\n

STEEMSQUAD is a community-backed account responsible for posting blogs of qualified authors and at the same time upvotes quality blog posts of its members.

\n

Members of STEEMSQUAD are from across multiple timelines to ensure a 24/7 support and active participation in Steemit.

\n

The Issue at Hand

\n

For quite some time, there has been a noticeable trend as to who gets rewards. Those favored are the whales themselves, members with high reputation levels, incoming popular personalities and celebrities either from the cryptocurrency world or the entertainment world. A number of people from the finance institutions have joined as well and have garnered huge rewards on their \u201cintroductory\u201d posts.

\n

And what happens to those who are not celebrities, unknown personalities from not-so-popular backgrounds? Their posts get dumped, thrown into oblivion. Then all the sweat and blood poured spilled into writing the blog just go to waste. This is where #steemsquad comes in.

\n


\n

WHY We Do It?

\n

Steemit is a social media platform where **EVERYONE** gets paid for creating and curating content, as promised if and when you decide to dive into the Steemit Ocean. 

\n

It leverages a robust digital points system, called Steem, that supports real value for digital rewards through market price discovery and liquidity.

\n

We aim to give EVERYONE a chance to get noticed, earn rewards, and be a part of a community of people helping people.

\n

You Can Succeed

\n

All HOPE is NOT LOST. We have seen minnows rise to the occasion. With a positive attitude, an unwavering determination, lots and lots of good quality posts (one is enough though to get you 15k, if you hit the nail on the head), there is no reason why you can\u2019t be successful here in Steemit.

\n

#steemsquad will support you along the way.

\n

OUR GOLDEN RULES

\n
    \n
  1. We give priority to quality contents from low-powered profiles (minnows).
  2. \n
  3. The published author gets 100% of SBD. However, 50% of which goes to the author\u2019s SP to allow the author to power-up leveraging his/her SP to upvote other writers.
  4. \n
  5. Any SP earned by STEEMSQUAD remains in the STEEMSQUAD account to gain more voting power for the benefit of its members.
  6. \n
  7. Pay-it-forward. The powered-up author commits to help other writers by upvoting and commenting to blog post to increase the post\u2019s value.
  8. \n
\n


\n

HOW TO GET PUBLISHED BY STEEMSQUAD

\n

\n

PHOTO CREDIT: Anna Frajtova / shutterstock.com
\n

\n
    \n
  1. FOLLOW the account STEEMSQUAD and be a member of the initiative.
  2. \n
  3. You have to signify your willingness to join by coming to our official chatroom in https://steemit.chat/channel/steemsquad. Introduce yourself and state your intention to join the initiative. Include a link to your Steemit profile.
  4. \n
  5. Submit your article in plain text format and links to images. Send your entry to @steemit.asia or @sebastien or @jaycobbell as a PM.
  6. \n
  7. Article must be at least 300 words with at least 1 image.
  8. \n
  9. Give credit to the images you use.
  10. \n
  11. If you quote someone, give credit as well.
  12. \n
  13. At least 80% of the article must be your own.
  14. \n
  15. You will get feedback after 24 hours and a schedule will be provided when your work will be published.
  16. \n
  17. Once it is published, it will be promoted to the chatroom by either @steemit.asia or @sebastien or @jaycobbell in https://steemit.chat/channel/steemsquadpromotional for all members to see. This is where all promotions are done.
  18. \n
\n


\n

HOW TO GET UPVOTED BY STEEMSQUAD AND MEMBERS

\n


\nPHOTO CREDIT: Clipartix.com
\n

\n
    \n
  1. To get a chance to be upvoted by STEEMSQUAD, you must have a QUALITY blog post.
  2. \n
  3. Use the tag #steemsquad in your blog post.
  4. \n
  5. Our curators will browse through all blog posts using our official #steemsquad tag name and choose will notify the author by commenting that the post has been chosen as a featured post/author. It will be promoted in our chat channel https://steemit.chat/channel/steemsquadpromotional.
  6. \n
\n


\n

STEEMSQUAD ACCOUNT SECURITY

\n

The Posting Key (The posting key is used for posting and voting. It should be different from the active and owner keys) will be given to at least 3 members of STEEMSQUAD responsible for posting blog posts in 24 hour cycle.

\n

The Active Key (The active key is used to make transfers and place orders in the internal market) will be given to 2 members of STEEMSQUAD. One member will act as auditor/backup in case the primary member is not available.

\n

The Owner Key (The owner key is the master key for the account and is required to change the other keys) is given to one Whale sponsor and 2 other members of STEEMSQUAD.

\n

A member responsible for the account security may hold more than one (1) key as shown above.

\n


\n

OUR MENTORS

\n

There are people we consider as examples on the platform. Inspiration, mentors.

\n

@juneaugoldbuyer
\n@thedollarvigilante
\n@dragonslayer109
\n@stellabelle
\n@charlieshreem
\n@rogerkver
\n@donkypong
\n@tuck-fheman
\n@masteryoda
\n@andrarchy 

\n

\"steem-squad-FOLLOW-US\"
\n

\n", + "cashout_time": "2016-09-29T11:08:54", + "category": "introduceyourself", + "children": 18, + "children_abs_rshares": "2254360518257", + "created": "2016-08-28T17:13:18", + "curator_payout_value": { + "amount": "173", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779920, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemsquad\",\"steemit\",\"minnows\",\"writing\"],\"users\":[\"steemit.asia\",\"sebastien\",\"jaycobbell\",\"juneaugoldbuyer\",\"dragonslayer109\",\"stellabelle\",\"charlieshreem\",\"rogerkver\",\"donkypong\",\"tuck-fheman\",\"masteryoda\",\"andrarchy\"],\"image\":[\"https://c1.staticflickr.com/9/8171/29209353271_2eabbba74f_o.png\",\"https://cdn.elegantthemes.com/blog/wp-content/uploads/2016/02/Essential-Blogging-Skills-Know-your-Audience-shutterstock_222537538-Anna-Frajtova.png\",\"http://clipartix.com/wp-content/uploads/2016/04/Thumbs-up-clipart-3.png\",\"https://c1.staticflickr.com/9/8305/29179909862_ed27607510_o.png\"],\"links\":[\"https://steemit.chat/channel/steemsquad.\",\"https://steemit.chat/channel/steemsquadpromotional\",\"https://steemit.chat/channel/steemsquadpromotional.\"]}", + "last_payout": "2016-08-30T11:08:54", + "last_update": "2016-08-28T17:13:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T14:10:24", + "net_rshares": "2243580957008", + "net_votes": 57, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "reward_weight": 10000, + "root_author": "steemsquad", + "root_permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "title": "Hello! We Are STEEMSQUAD And We Are Here to Support The Minnows. Read On.", + "total_payout_value": { + "amount": "566", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "2243580957008" + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "okay", + "author_rewards": 0, + "beneficiaries": [], + "body": "## A picture is worth a thousand words, more so in astronomy ##\n\n**Let's take a look at the coming week's sky**\n\n\nhttp://www.skyandtelescope.com/wp-content/uploads/Venus-Jupiter-27Aug2016_f.jpg\n(Image courtesy of Sky and Telescope)\nOn August 27th, about 45 minutes after sunset, go outdoors and start looking low above the horizon in the west for an amazingly close pairing of Venus and Jupiter.\n\nhttp://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\n\n\nNext weekend, shortly after sunset, the thin Moon (waxing crescent) steps away from Venus and Jupiter.\n\nLooking at the night sky is a great joy! Free for everyone with no ticket required. You can watch the evening sky with your naked eye, no need for telescope or binoculars for these beautiful astronomical events.\n\n*Stay tuned for next week's sky.*\n\n\n\n\n If you enjoyed this post please vote for my witness node. Learn how to vote for witness `okay` **at the end of my witness post** by [**clicking here**](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network). ", + "cashout_time": "2016-09-28T16:11:21", + "category": "science", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-08-28T15:45:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 778828, + "json_metadata": "{\"tags\":[\"science\",\"astronomy\"],\"image\":[\"http://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", + "last_payout": "2016-08-29T16:11:21", + "last_update": "2016-08-28T17:13:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "science", + "percent_hbd": 10000, + "permlink": "this-week-s-sky-aug-27-sep-3", + "reward_weight": 10000, + "root_author": "okay", + "root_permlink": "this-week-s-sky-aug-27-sep-3", + "title": "This Week's Sky Aug-27/Sep-3", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "130408996119", + "active": "2016-08-28T17:36:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skyefox", + "author_rewards": 125, + "beneficiaries": [], + "body": "As I have stated in earlier posts, gardening is currently my obsession.. it's seems wild to me that the standard is to work for currency and trade currency for food rather than just growing your own food. \n

Here is my small harvest from this morning!

\nEvery morning I go out and eat a couple of my cherry tomatoes, a few leafy greens, and usually 1/2 a leaf of my sweet basil. It's a wonderful thing to wake up, take the dog out and get a healthy organic little snack. I love it.\nhttps://s14.postimg.org/62aqviz0h/IMG_1804.jpg\n\n\nI understand that gardening takes time, effort, and a little bit of knowledge but in my opinion it is one of the most reward \"hobbies.\" This is my first year gardening. I decided to garden this year because I have been doing more and more reading about the American food industry and my conclusion is that the American population are being made sick on purpose through the food we eat. I don't know exactly what does what in our food but it seems absolutely insane to me that we can't get the FDA to evaluate any dietary supplements but they will evaluate and even vouch for these lab made pharmaceutical drugs. \n\nAll of this lead me to feeling a strong urge to grow organic food. I honestly feel guilty when I feed my family and I don't fully believe in what we are eating. Don't get me wrong, I love pepperoni pizza but ignorance is bliss, and I am not ignorant to what I am eating. \n\nI believe I am slowly heading down the path of becoming a vegan as I gain more knowledge. I have always been a hunter and a fisherman, it's what I was taught as a young boy in the north woods. I love to hunt and fish, but I also have a very deep compassion for life. Not human life, but life in general. I believe that we are intelligent enough as a species to live without causing harm to other living things that are equipped with nervous systems. I guess I am just realizing day by day that things are not necessarily what I have been told... \n

This kind of sums up how I feel currently...

\nhttps://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\n\nI am not a very good consumer. I am very frugal and calculated with my money, sometimes to a fault. I'm also not good at being an employee and just being a \"gear in the machine.\" I was not built to work and be told what to do while someone acts as if their employment position somehow gives them a higher status than I. We are humans, you just have a different job. These factors, and many others, have lead to me being self employed and trying to find my way on the internet. I have dabble in many things online and I have learned enough to at least provide myself with enough income to pay my mortgage, bills, etc.. \n\nI am also someone that is in the prepper mind state. I have started my small stockpile of beans, rice, and various other dried foods. I think that the American people have become complacent and many of us are just chasing the carrot we were instructed to chase. Many people seem to not realize the fact that we as a country heavily depend on other people or corporations for the things we use everyday. If water and electricity were to be shut off and panic set it, many people would die because they don't know what to do without someone else providing them with these luxuries. \n\nI don't like the idea of depending on anyone for anything. I have always been someone who provided for myself. I got a job at 14 years old at the local bakery working Saturday mornings so that I could get my first computer myself. I worked for weeks, since I was only getting paid $5.15/hour (roughly 13 years ago) it took me a long time to save up for a computer to play Counterstrike 1.5... We had 6 kids in our house in a \"middle class\" family, needless to say we were told to get jobs as early as possible to acquire our luxuries. Since then I have had the mindset that I don't want to allow someone else to be \"the hand that feeds\", and that applies to food, water, electricity, and even knowledge of my child. \n\nDEPENDENCY OPENS THE DOORS FOR EXPLOITATION! And in a capitalist driven global economy, if it can be exploited, it often is. \n\nMy apologies, there I go again, going of on some rant instead of just showing you the damn garden update. I already can't wait for next spring. I have been buying heirloom vegetable seeds and thrift shopping for large planters for $1 so that next year I can grow lots more. \n

This is the Pink Brandywine that I am so excited about!

\nThese guys took forever to grow. I didn't know what I was doing and I had put too many plants in 1 planter which caused them to compete for the nutrients. On top of them a strong storm came through and blew these guys over and bent there stalks horizontal. I really didn't know if I would get any fruit from them, but they are changing and I can't wait to eat these!\nhttps://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\n\nhttps://s14.postimg.org/e3txgbbgh/IMG_1800.jpg\n\nHere is a cucumber that is growing a little goofy. Not sure why but its like a beer can cucumber... lol\nhttps://s14.postimg.org/c1tg22dhd/IMG_1802.jpg\n\nA more normal cucumber... \nhttps://s14.postimg.org/610t23x6p/IMG_1803.jpg\n\nAnd this is my $3 table I built so that I could start my seeds indoors under some fluorescent lights. \n\n\nhttps://s14.postimg.org/6t3h1b1dt/IMG_1805.jpg\n\n\nThank you for reading and happy gardening!", + "cashout_time": "2016-09-28T18:11:57", + "category": "garden", + "children": 2, + "children_abs_rshares": "130408996119", + "created": "2016-08-28T17:12:54", + "curator_payout_value": { + "amount": "15", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779916, + "json_metadata": "{\"tags\":[\"garden\",\"photography\",\"rant\",\"food\"],\"image\":[\"https://s14.postimg.org/62aqviz0h/IMG_1804.jpg\",\"https://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\",\"https://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\"]}", + "last_payout": "2016-08-29T18:11:57", + "last_update": "2016-08-28T17:12:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-12T21:18:18", + "net_rshares": "130408996119", + "net_votes": 37, + "parent_author": "", + "parent_permlink": "garden", + "percent_hbd": 10000, + "permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "reward_weight": 10000, + "root_author": "skyefox", + "root_permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "title": "A small garden update... My Pink Brandywine Tomatoes are coming!", + "total_payout_value": { + "amount": "123", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "130408996119" + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:08:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "fitiliper1985", + "author_rewards": 0, + "beneficiaries": [], + "body": "
http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png
\n

\n

Before I was in a relationship, I didn't have much sex. My first sexual intercourse occurred while I was travelling overseas on a holiday by myself. I met a woman in hawaii at the airport, and later had sex with her.

\n

I had done a lot of masturbating prior to this. I had often thought about having sex, and I found that my sexual drive caused me to behave in ways that I normally wouldn't. 

\n

\n
https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg
\n

\n

For example I would follow women I found attractive, or I would try to look up their skirts, or I would wander about at night to try to look into bedroom windows.

\n

When I met someone that I knew I would marry, I thought I would be able to have sex as much as I liked because my wife would always be available to have it with me. This turned out to be untrue. My wife didn't want to have sex as often as I wanted to, and I found myself still masturbating while I waited for the next time to come.

\n

I don't think women understand the power of their husband's sexual drive. 

\n

\n
http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg
\n

\n

Men are attracted to women by how they look. It doesn't matter if they are strangers. Men will look at a woman dressed in  a certain way and will start feeling horny. As soon as they ejaculate, the feeling of horniness goes, but will return in a couple of hours. When the sexual desire comes upon a man, it becomes his dominating thought, and it demands to be satisfied. That's why many men then masturbate in order to relieve the pressure on their thoughts. If unrelieved the pressure grows and if the wife is unwilling to have sex, then some men will look for other women to have sex with. 

\n

The sexual pressure is constantly present in a man's mind until relief comes.

\n

\n
https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg
\n

\n

Most women are not as interested in sex as men. 

\n

\n
https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg
\n

\n

Women are more interested in relationship.  Women have sex with a man in the hope that the man will want to stay in their life and have a relationship with them. 

\n

Some women use sex as a bait to catch a man, and then when the relationship is happening, they are not as interested in sex anymore. Women enjoy sex, but as part of a fulfilling relationship. Men just want to put their penis into a vagina and ejaculate. As soon as ejaculation occurs, a lot of men lose all interest in the woman. The woman then feels hurt and used because she didn't get what she wanted which was relationship. Men will say anything they think a woman wants to hear in order to have sex.

\n

Wives who have sex with their husbands when not really wanting it, feel used by their husbands. Women also can be selfish when they demand sex from men who are not in the mood. 

\n

God created sex to be enjoyed in a committed relationship between a man and a woman who are one person physically, spiritually, emotionally, and mentally. 

\n

Sex is a part of the relationship, not the main thing. If a man demands sex then he is being selfish, and his relationship will be harmed if the woman gives sex to the man when she is not wanting to have it. If the man wants sex with his wife, then he must give her what she wants. He must romance her and give her a good relationship. Then if sex happens, it will be enjoyable for both of them. This will build the relationship.

", + "cashout_time": "2016-09-28T17:56:42", + "category": "sex", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-08-28T17:12:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779915, + "json_metadata": "{\"tags\":[\"sex\",\"psychology\",\"life\",\"story\",\"\"],\"image\":[\"http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png\",\"https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg\",\"http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg\",\"https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg\",\"https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg\"]}", + "last_payout": "2016-08-29T17:56:42", + "last_update": "2016-08-28T17:12:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 12, + "parent_author": "", + "parent_permlink": "sex", + "percent_hbd": 10000, + "permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "reward_weight": 10000, + "root_author": "fitiliper1985", + "root_permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "title": "In a relationship, sex becomes a matter of selfishness or unselfishness.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json index bb2dc238..ab747b19 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 617094, - "author": "crowe", - "permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", - "category": "israel", - "parent_author": "", - "parent_permlink": "israel", - "title": "Israeli Bomb Siren goes off in my City. I filmed this from my deck.", - "body": "I thought my viewers would be interested in the place I actually live in. I live in a City called Ashkelon. Its about 7 miles North of Gaza. Last year in June when some missiles were being shot toward Israel the Sirens in Ashkelon went off. I filmed this video from my deck. The video is what we hear when this happens. \n\nhttps://www.youtube.com/watch?v=Ky23yJaNDfo", - "json_metadata": "{\"tags\":[\"israel\",\"siren\",\"gaza\",\"politics\",\"steemit\"],\"links\":[\"https://www.youtube.com/watch?v=Ky23yJaNDfo\"]}", - "last_update": "2016-08-15T19:12:42", - "created": "2016-08-15T19:12:42", - "active": "2016-08-15T19:12:42", - "last_payout": "2016-08-16T19:47:27", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-15T19:47:27", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "crowe", - "root_permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617542, - "author": "luminarycrush", - "permlink": "cactus-in-the-clouds-catalina-island", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Cactus in the Clouds - Catalina Island", - "body": "\n

I came across a lone blooming cactus during a hike this weekend.  Photos taken at 946' ASL above Two Harbors, Catalina Island.

\n

\n


\n

\n


\n

\n", - "json_metadata": "{\"tags\":[\"photography\",\"cactus\",\"catalinaisland\",\"california\",\"twoharbors\"],\"image\":[\"https://scontent.xx.fbcdn.net/t31.0-8/13988224_10154518762224175_252304266230235242_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13923665_10154518762269175_2030254348907005554_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13988240_10154518762254175_9097905240858144855_o.jpg\"]}", - "last_update": "2016-08-15T19:44:48", - "created": "2016-08-15T19:44:48", - "active": "2016-08-15T19:44:48", - "last_payout": "2016-08-16T19:47:27", - "depth": 0, - "children": 0, - "net_rshares": "1339555910464", - "abs_rshares": "1339555910464", - "vote_rshares": "1339555910464", - "children_abs_rshares": "1339555910464", - "cashout_time": "2016-09-15T19:47:27", - "max_cashout_time": "2016-09-01T02:13:51", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 14, - "root_author": "luminarycrush", - "root_permlink": "cactus-in-the-clouds-catalina-island", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 616664, - "author": "brunopro", - "permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", - "category": "steemit", - "parent_author": "", - "parent_permlink": "steemit", - "title": "LATEST NEWS: Payouts are back to 24H - What do you think about it? [ Quick read / Opinion Article ]", - "body": "http://imgur.com/HrpWWaK.png\n\n## And there are changes again regarding the duration until the payout occurs, now your post will have a minimum 24 hours duration until the first payout. \n\nPersonally I think that they should never have changed it to 12 hours. I didn't understand the logic behind it at the time and I still don't. This 24h period it's ideal because this way the post has better chances of overcoming the first publish period and get more traction. It also enables of a higher possibility of being seen and upvoted by the users that on the 12h were sleeping or simply away.\n\n# And you? What do you think about this change?\n\n----\n\nEdit post-publish: I've notice that I can't upvote a post that has been up for a month. Is this new also? I thought a post would always be open for an upvote? Can anyone reply to this question? thanks!\n\n----\n\n###### Photo Credits: https://unsplash.com/@sonjalangford", - "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"opinion\",\"reward\"],\"image\":[\"http://imgur.com/HrpWWaK.png\"]}", - "last_update": "2016-08-15T18:51:42", - "created": "2016-08-15T18:36:36", - "active": "2016-08-17T15:39:57", - "last_payout": "2016-08-16T19:47:42", - "depth": 0, - "children": 22, - "net_rshares": "76217996022", - "abs_rshares": "76217996022", - "vote_rshares": "76217996022", - "children_abs_rshares": "78071773184", - "cashout_time": "2016-09-15T19:47:42", - "max_cashout_time": "2016-08-30T20:41:45", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "20200", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "3483", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 13512, - "net_votes": 82, - "root_author": "brunopro", - "root_permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617534, - "author": "yassinebentour", - "permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", - "category": "writing", - "parent_author": "", - "parent_permlink": "writing", - "title": "The purpose of property rights is to mitigate conflict over scarce, rivalrous resources", - "body": "\n

http://unitedcivilrights.org/images/fa-prprty.gif

\n

The purpose of property rights is to mitigate conflict over scarce, rivalrous resources. To have a property right over a scarce, rivalrous resource is to have the right to exclude others from using that resource in the attainment of some ends. For example, I have property rights over my body, which means I can exclude others from using my body for sexual pleasure or labor without my consent. If they do access my body in such a way without my consent, it's called rape or slavery, respectively. Likewise, I have property rights over the accumulated capital for which I consensually trade my time and labor, which means I have the right to exclude people from using my accumulated capital without my consent. When someone accesses my accumulated capital in such a way without my consent, it's called theft or trespass.
\nScale doesn't change this. If I transform my accumulated capital into a factory by hiring people who voluntarily exchange the product of their labor for some of my accumulated capital, this means that they value what they receive in exchange for working more than they value the direct product of their labor (the factory). Likewise, it means I value the factory more than the accumulated capital I gave up for it. This is a win-win situation, or a positive sum game. The workers I hired retain property rights over the capital they received as payment for their labor, which means they can exclude others from the use of their newly acquired accumulated capital, and I retain property rights over the factory, which means I can exclude others from the use of my factory.
\nDiscrepancies between marginal benefit don't change this either. A consensual exchange doesn't become theft just because one party benefits more from the exchange than another. If this wasn't the case, every single instance of buyer's remorse would be indicative of theft. If someone agrees to produce a walking stick in exchange for ten dollars and the purchaser of the walking stick then sells it to someone else for twenty dollars, how can it be claimed that the producer of the walking stick was a victim of theft if they haven't been deprived of the ten dollars for which they voluntarily exchanged the walking stick? Would it have been reasonable to expect that the first purchaser of the walking stick wouldn't have obtained more than ten dollars of value from it given that the exchange wouldn't have happened in the first place if they hadn't valued the walking stick more than they valued ten dollars?
\nOf course not. Anything that happens to the walking stick after the original exchange is no business of the producer of the walking stick because said producer already exchanged his property rights to the walking stick for property rights to a different form of accumulated capital (ten dollars).
\nLikewise, if I use more of my accumulated capital to hire workers to work in my factory, they will only accept my offer of employment if they value what I'm offering more than their own free time and more than whatever stake they may have otherwise had in the product they will be producing. In other words, if they accept employment, it will be with the understanding that they're giving up any stake in what they're producing in exchange for what I'm offering them. Maybe my factory assembles televisions. Maybe one worker can produce one television per hour. Would they be able to produce televisions this efficiently without my previous investment in production capital (which hasn't even been recouped and probably never will be completely given that maintenance, employment and higher order production good costs are a revolving door)? Would they be able to produce televisions AT ALL without this previous investment in production capital? Of course not, and they know this, which is why they're willing to give up both their leisure and whatever stake their labor may have otherwise entitled them to in the production of a television in exchange for a fixed amount of accumulated capital.
\nAs was the case with the walking stick, whatever happens to the television after this exchange occurs is no business of the worker. How could the future sale of the television constitute theft of the worker's accumulated capital if it can't be demonstrated that the worker was deprived of the accumulated capital that he voluntarily accepted as payment for the production of the television, especially given that the television was produced with other accumulated capital (plastic, circuits, labor saving devices, etc.) that the worker never even owned?
\nIt can't.
\nProperty ownership necessarily implies exclusivity, which means that \"private property\" is redundant, as is \"personal property\". The words \"private\" and \"personal\" denote exclusivity, which is already implied by the word \"property\". To differentiate between \"personal property\" and \"private property\" is therefore a distinction without a difference. This implication of exclusivity also means that \"public property\" is a contradiction in terms. If no one can be excluded from using the resource, it isn't property. Resources that aren't scarce or rivalrous likewise can not be considered property, which means that \"intellectual property\" is also a contradiction in terms.
\nThis means that seizing the means of production is a genuine form of theft and that \"pirating\" music, software, art and writing is not, which may seem counter-intuitive if you attended the indoctrination camps euphemistically known as \"public schools\" when you were growing up.

\n", - "json_metadata": "{\"tags\":[\"writing\",\"rights\"],\"image\":[\"http://unitedcivilrights.org/images/fa-prprty.gif\"]}", - "last_update": "2016-08-15T19:43:57", - "created": "2016-08-15T19:43:57", - "active": "2016-08-15T19:50:39", - "last_payout": "2016-08-16T19:47:48", - "depth": 0, - "children": 2, - "net_rshares": -104004690671, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": "25854883309", - "cashout_time": "2016-09-15T19:47:48", - "max_cashout_time": "2016-09-01T01:02:42", - "total_vote_weight": 0, - "reward_weight": 736, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "yassinebentour", - "root_permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617538, - "author": "libtrian.outlet", - "permlink": "obama-puts-congress-on-notice-tpp-is-coming", - "category": "politics", - "parent_author": "", - "parent_permlink": "politics", - "title": "Obama puts Congress on notice: TPP is coming", - "body": "http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\nFriday's move is the clearest indication yet that the White House is serious about getting Obama’s legacy trade deal.\n\nThe White House put Congress on notice Friday morning that it will be sending lawmakers a bill to implement President Barack Obama’s landmark Trans-Pacific Partnership agreement — a move intended to infuse new energy into efforts to ratify the flat-lining trade pact.\n\nThe move establishes a 30-day minimum before the administration can present the legislation, but the White House is unlikely to do so amid the heated rhetoric of a presidential campaign in which both major party nominees have depicted free trade deals as massive job killers.\n\nFriday's notification is the clearest signal yet that the White House is serious about getting Obama’s legacy trade deal — the biggest in U.S. history — passed by the end of the year, as he has vowed to do despite the misgivings of Republican leaders and the outright opposition of a majority of Democrats in Congress.\n\nStriking a defiant tone, Obama predicted at a press conference last week that the economic centerpiece of his strategic pivot to Asia would pass in the lame-duck session, saying he’d like to sit down with lawmakers after the election to discuss the \"actual facts\" behind the deal, rather than toss it around like a \"political football.\"\n\n\"We are part of a global economy. We're not reversing that,\" Obama said, describing the necessity of international supply chains and the importance of the export sector to U.S. jobs and the economy. \"The notion that we're going to pull that up root and branch is unrealistic.\"\n\nThe notification, a new requirement of the trade promotion authority legislation Congress passed last year to expedite passage of the Asia-Pacific pact, is “meant to ensure early consultations between the administration and Congress,” Matt McAlvanah, a spokesman for the Office of the U.S. Trade Representative, said in a statement. “As such, the draft SAA [Statement of Administrative Action] was sent today in order to continue to promote transparency and collaboration in the TPP process.”\n\nThe White House's draft document describes the major steps the administration will take to implement any changes to U.S. law required by the deal. Those actions range from the mundane — designating an administration point of contact for communications about the pact — to the complex — setting up procedures to stop harmful surges of agricultural or textile imports.\n\nBut the deal is going nowhere until the White House addresses a number of concerns lawmakers have raised about the trade agreement, which Canada, Mexico, Japan and eight other countries joined the United States in signing last February.\n\nFirst and foremost: satisfying the concerns of Senate Finance Committee Chairman Orrin Hatch (R-Utah) and other lawmakers about protections for a new class of drugs known as biologics. They say the pact provides too short a monopoly period for rights to research and development data. Other lawmakers have complained the deal would bar tobacco companies from seeking redress through investor-state dispute arbitrage for damages resulting from country regulations. Still others are seeking assurances that member countries will abide by their commitments to provide access for U.S. pork and dairy exports.\n\nUntil these issues are resolved, House Speaker Paul Ryan and Senate Majority Leader Mitch McConnell have made clear that the pact will not get the votes it needs to pass.\n\nRyan's spokeswoman, AshLee Strong, reiterated the point on Friday.\n\n“As Speaker Ryan has stated for months, there are problems that remain with the administration’s TPP deal, and there can be no movement before these concerns are addressed,\" she said.\n\nDemocrats, meanwhile, have largely called the deal a nonstarter over concerns about the enforceability of labor and environmental standards in countries like Vietnam and the lack of strong protections against currency manipulation.\n\nThe administration claims it is making progress on these issues and has resolved others, including banking industry concerns over the exclusion of financial data from rules prohibiting countries from requiring local storage.\n\nBut that doesn’t change the reality of the down-ballot drag that candidates are facing as they campaign back home in their districts. In a reversal from years past, many Republicans are on the defensive about their support for free trade because of Donald Trump’s daily tirades about what he characterizes as the serious economic damage wrought by trade agreements like the North American Free Trade Agreement and the TPP as well as his complaints that China is flouting international trade rules.\n\nThe Republican platform picked up on this theme, saying significant trade deals \"should not be rushed or undertaken in a Lame Duck Congress.\"\n\nThe small band of Democrats who the administration hopes will support the TPP are facing increased pressure within their own party to abandon the president on the agreement. Sens. Bernie Sanders’ and Elizabeth Warren’s strong condemnations of the trade deal have forced Hillary Clinton, who supported the TPP as Obama’s secretary of state, to reject the pact to appease the liberal wing.\n\n\"I will stop any trade deal that kills jobs or holds down wages, including the Trans-Pacific Partnership,\" Clinton said during an economic policy speech at an automotive manufacturing plant in Warren, Mich., on Thursday. \"I oppose it now, I'll oppose it after the election and I'll oppose it as president.\"\n\nClinton’s clear rejection of the trade deal has emboldened liberal groups like the Warren-aligned Progressive Change Campaign Committee to launch a campaign to press Democrats to publicly oppose a TPP vote in the lame duck.\n\nSanders also called on Democratic congressional leaders to go on record against the White House’s effort to get the deal done by the end of the year, saying the agreement is opposed by every trade union and the grassroots base of the Democratic Party.\n\n\"I am disappointed by the president's decision to continue pushing forward on the disastrous Trans-Pacific Partnership trade agreement that will cost American jobs, harm the environment, increase the cost of prescription drugs and threaten our ability to protect public health,” the Vermont senator said in a statement after learning of the White House's action on Friday.\n\nMeanwhile, the administration continues to press the deal in key congressional districts — especially those of Democrats who supported the trade promotion authority bill last year.\n\nInterior Secretary Sally Jewell returned to her hometown of Seattle last month to tout the TPP’s potential effects on the environment at a Washington Council on International Trade event with more than 150 business leaders.\n\nThen, last week, Commerce Secretary Penny Pritzker hit the San Diego and Boulder districts of Reps. Susan Davis and Jared Polis — two of the 28 House Democrats that voted for the bill — and visited a steel plant in Cleveland to promote the TPP. Treasury Secretary Jack Lew did the same when he met with local and state officials and Fortune 500 business executives in Minneapolis.\n\nOn Thursday, Undersecretary of Commerce for Oceans and Atmosphere Kathryn Sullivan spoke at a Seattle clean energy business roundtable focused on the TPP and the environment. And this Monday, Deputy U.S. Trade Representative Robert Holleyman will participate in a World Affairs Council of Atlanta discussion on the trade deal featuring former Republican Sen. Saxby Chambliss and UPS CEO David Abney.\n\nAs the political fight plays out, the nuts-and-bolts process of moving the deal forward will continue. Once Congress reviews the draft notification that the White House submitted on Friday, the administration can move forward with sending lawmakers a final statement and the draft of the implementing bill itself. The legislation will describe the actual changes to U.S. law to comply with the rules of the trade agreement.\n\nAfter that, the Senate Finance and House Ways and Means committees could hold “mock markups” of the bill (because under trade promotion authority, Congress is not actually allowed to tinker with the agreement or its implementing legislation itself, but it can ask the administration to do so).\n\nBut given the tenor of the elections, the entire process could be pushed into a crowded lame-duck legislation session, which would mean no time for the mock markups. Instead, there could be a lot of deal-making between the White House and congressional leadership to move the bill before Clinton or Trump takes over on Jan. 20.\n\nObama said last week that he’s ready to press his case. \"Right now, I'm president, and I'm for it. And I think I've got the better argument,\" he said.\n\nSource:\nwww.politico.com/story/2016/08/obama-congress-trade-warning-226952", - "json_metadata": "{\"tags\":[\"politics\",\"tpp\",\"conspiracy\",\"news\",\"freetrade\"],\"image\":[\"http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\"]}", - "last_update": "2016-08-15T19:44:39", - "created": "2016-08-15T19:44:39", - "active": "2016-08-15T19:45:42", - "last_payout": "2016-08-16T19:47:57", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": "11700424464", - "cashout_time": "2016-09-15T19:47:57", - "max_cashout_time": "2016-09-04T23:37:39", - "total_vote_weight": 0, - "reward_weight": 2046, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 3, - "root_author": "libtrian.outlet", - "root_permlink": "obama-puts-congress-on-notice-tpp-is-coming", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 951797, - "author": "profanarky", - "permlink": "the-dragon-s-blood-part-29", - "category": "story", - "parent_author": "", - "parent_permlink": "story", - "title": "The Dragon's Blood (Part 29)", - "body": "\n

\n

In which the folks in the subway find themselves some unwelcome visitors...

\n

29

\n

   “Do NOT panic! There is no reason to believe that this is anything more than just a power outage.”  

\n

   “But-- BUT-- how can it be the whole state?” One wide-eyed young woman, one of the aforementioned punk rockers actually raised her hand.  

\n

   “Yeah, it’s gotta be Al Qaeda, who the hell else could it be?!!” Another idiot bellowed.    

\n

   Others followed, there words quickly jumbling together into a tidal wave of paranoia. It only took one idiot to get the ball rolling.   

\n

   “It’s gotta be the terrorists, who the hell else could it be?”    

\n

   “Oh my god, I gotta get to my kids… My kids are still at the day care!!!”   

\n

   “Did an airplane hit a power plant??!! OH GOD!! DID AN AIRPLANE HIT ONE OF THE NUCLEAR PLANTS??!!”    

\n

   She heard it all and it was nothing more than a buzzing, though an irritating one nonetheless. Her instincts, those things cops called their gut instincts told her Mister Blue-eyes was the key, the only thing really important right now. Mister Blue-eyes and whatever the hell it was he was watching outside their little tin prison.  

\n

     “NOW LISTEN DAMMIT!!!” She hollered, trying to make herself louder than the loudest of them, a difficult task with New Yorkers. “I told you, there’s no goddamn reason to think it’s terrorism! This has happened before in our lifetimes and it’s gonna happen again. As far as I’m concerned it ain’t nothing more than a power outage. Going FUCKING crazy ain’t gonna help us any, dammit!!”  

\n

   They kept going, some of them, but most paid her mind and listened, their faces drawn and tired. They’d suffered enough the last few years, New Yorkers. There wasn’t a one of them, including herself, who hadn’t had their world turned literally upside down two years before. The terror they’d lived was fresh on their minds, fresh and ready to burst again and overwhelm them. It was a hard thing, it truly, truly was.     

\n

   “Now I just got off the phone with my partner and he says he’s gonna get people down here to get us out as soon as possible. There are trains stalled all over the city. Rescue workers are leading those people out from underground and up to their homes. He told me there would be a group of them here soon. He was gonna get them here.”    

\n

   “Is that them?” Came the deep voice of Jeffrey Thornton. He’d been quiet while the others yelled, silent and listening to what she had to say. The moment she’d spoken of rescue his eyes had gone outside the train and he saw what Mister Blue-eyes had apparently been watching.    

\n

   “Where?” She asked him, stumbling over and peering outside, right next to the stranger in the baseball cap.       

\n

   She saw nothing at first, her eyes trying to focus past the reflections in the glass and out into the pitch black.      

\n

   “Those--,” Mister Blue-eyes said, at last speaking, his voice accented in a manner she’d never heard before. Something about it was as wrong and as otherworldly as his eyes were. “---are not rescuers of any sort.”    

\n

   Out of the corner of her eye she saw him rise and back away from the window and once again her instincts spoke to her. They told her to back away as well, and to not stop there. They said to her, no, they screamed at her to run, to run as far from here as possible.      

\n

   But she didn’t, she had to see what they were, had to see for herself.    

\n

   When the figures finally did materialize from the darkness, they weren’t human at all.     

\n

End Part 29

\n

         If you find yourself interested in the whole damnedable thing and wanna throw me a few bucks, here's a link to it on Amazon.      

\n

  https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1   

\n


\n", - "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"creative\",\"writers\",\"writing\"],\"image\":[\"http://www.followingthenerd.com/site/wp-content/uploads/shadowpeople.jpg\"],\"links\":[\"https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1\"]}", - "last_update": "2016-09-14T19:15:09", - "created": "2016-09-14T19:15:09", - "active": "2016-09-15T15:19:39", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 3, - "net_rshares": "89025972926", - "abs_rshares": "89025972926", - "vote_rshares": "89025972926", - "children_abs_rshares": "89614201477", - "cashout_time": "2016-09-15T19:48:29", - "max_cashout_time": "2016-09-28T19:15:09", - "total_vote_weight": "401621156077855379", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 3, - "root_author": "profanarky", - "root_permlink": "the-dragon-s-blood-part-29", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 615287, - "author": "stellabelle", - "permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", - "category": "secret-writer", - "parent_author": "", - "parent_permlink": "secret-writer", - "title": "SECRET WRITER: I Feel Like An Alien Among People In My Country", - "body": "http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\n\n# I have to hide my true self.\n\nIt just so happened that I was constantly losing my friends. It's like a curse was put on me.\nJudging by the reviews from former colleagues and friends, I was a \"nice and friendly person who was always willing to help.\"\n\n# However, constantly all these friends ceased to be friends with me, for no reason. They just stopped communicating, no quarrels, no disagreements and other things!\n\nI had a lot of friends ... But our paths diverged.\n\nIn my childhood I had friends, but my family moved to another city, and I lost my friends. In the new city, I made new friends. I had one close friend. Even his move to another part of the city has not prevented us from seeing each other every weekend. And one day, he was taken into the army. And one day, his aunt came to me, and said that he is no more, he was killed when he was on sentry duty ...\n\n![imaged6bd4.jpg](https://www.steemimg.com/images/2016/07/26/imaged6bd4.jpg)\n\nPeople ignore me constantly on the Internet, too. On any website, forum. I try to communicate, start a dialogue, and all people just ignore me. Suffice it to ask someone about something, write, and so on, and no response. \n\n# It's as if I did not exist.\n\nhttp://i.giphy.com/3o72FhMTVaOTycqObu.gif\n\nI am always open and friendly, and in return I receive arrogance against me or they completely ignore me.\nThis is what hurts the self-assessment.\n\n# I have no one to talk, no one to share the news with. Not one to ask for help. When I die, nobody will notice. \n\nhttp://i.giphy.com/l46CABOxa2Itf99bG.gif\n\n# I change people!\n\nI've got one property ... when a person begins to communicate with me, he is beginning to change. He begins to listen to the music that I like. He begins to lead a similar lifestyle. In general, people change for the better. From this, I feel somehow enhanced. And apparently, it has become another man moves away from me and goes his own way. As the chicks leave the nest as adults. Other explanation I can find.\n\n# Childhood\n\nAt school I was a \"whipping boy\".\n\nhttp://i.giphy.com/Hem0mSEEPwQBa.gif\n\nEndured constant insults, humiliation. Every day for 3 years. The school was torture for me. I did not like school, sometimes skipped lessons to avoid it all. Of course, it has affected my level of education, I studied badly.\n\nAnd also, my eyesight began to deteriorate, I did not see what was written on the blackboard. And when I admitted that I had bad eyesight, meant even more exposure to ridicule. In addition, due to health problems, but rather due to an error from talentless doctors, I had to take some strange drug. What it was I do not know, but I remember that I had to take these pills with milk. At first, nothing happened ... but then I wanted to eat every 5 minutes, I could not stop! I suffered from hunger! And accordingly, I gained weight. Needless to say, that became more humiliation for me.\n\nPerhaps it is karma. After all, before all this, I, too, along with all, mocked other classmates. Well now I know, I deserve it all.\n\nIt all ended when I graduated from high school. I changed just for the summer. Completely changed! I was starving and had grown very thin. Enrolling in college, I stopped being afraid of the people because they did not know who I was at school. Former classmates simply did not recognize me in the street. I became a different person. I started a new life with a clean slate.\n\nhttp://i.giphy.com/763KvbtkqH3e8.gif\n\n# I'm for searching myself.\n\n### Punk.\n\nOne day on one local forum, I found an ad that a punk rock band was looking for a drummer. I do not know why, or what came over me, or how my subconscious played a role, but I wrote to them that I am ready to join them.\n\nIn those years, I liked punk rock. But I did not know how to play the drums! However, I had an ear for music and rhythm. Since childhood, I remember I loved playing improvised drums.\n\nhttp://i.giphy.com/3oEjI2cJuP3Y0dcfV6.gif\n\nAt the first rehearsal something happened. But, of course, I played really disgusting. I liked that I was with other people. I liked all the socializing after the rehearsals, but the rehearsals themselves I sometimes disliked.\n\nI was getting the feeling that my lack of skill playing the drums was getting the band down. The band broke up after 2 years, played three songs in one of the amateur concerts. I still blame myself for failing them. But communicating with them gave me pleasure.\n\n### Church of Satan.\n\nhttp://i.giphy.com/xThuWk5MZglNP8IsJG.gif\n\nI've never been religious.\nOne day it so happened that I was carried by some away articles and the book \"Church Satan\" that I found on the Internet. So I soon became well versed in the sect (I still keep granted by them, the so-called \"certificate\" as a memory). And then, I began to take an active and more active role in this church.\n\nI was the first who made an unofficial website, for which I was honored with awards and praise. I was the first who wrote a skeptical analysis of the Bible. And my critiques were very popular! Actually, thanks to them that I became known.\n\nAnd then I began to get to know ones of the elders. With me, I remember, I spoke to some journalists, a student who wrote some work, theologians, members of the new sect, and anyone with an interest. Probably because I was often on the network. After all, I have never been a part from the college and at home, and did nothing.\n\nBut then, I and several other members became disillusioned, and I left the sect.\n\nAnd then there were various attempts to find myself, I was changing lifestyles and views on life.\n\nWhy did I write this? All of the above has given me some experience in dealing with people and the ability to understand who I am and why, to find my place in life.\n\nPagan Old Believers tried invite me to come, and then I almost became a skinhead.\n\n> \"What people call life - just a game, but this game is sometimes instructive, and all that it teaches - only lessons from which to borrow wisdom, therefore, ought to live.\" (C)\n\n# Loneliness gave me the alternative to communion, namely: I read a lot of books, of which learned many new things from psychology, philosophy, spirituality and languages.\n\nhttp://i.giphy.com/AbuQeC846WKOs.gif\n\nHave you noticed that being in society and when in the company of others, you do not crave training or self-development? I see this for myself when my brother visits me. I do not read books, I do not ponder any situation and theory, I just talk and spend time with my brother. Loneliness provides an incentive for development. With the help of loneliness, you really will begin to appreciate the friendship and fellowship.\n\n# This can be compared with food delicacies. If you eat delicacies every day, they will cease to be so desirable and unusual, and they will become commonplace.\n\nhttp://i.giphy.com/WmEvcZna75UfS.gif\n\n# Now.\n\nMy current way of life is very similar to Tantric Buddhism, although it is not defined by that as it has no name, and does not need to be defined as such.\n\n# Sometimes it's painful and unpleasant to look at people.\n\nhttp://i.giphy.com/JsL3hYFdvMMSs.gif\n\nI understand why they are themselves, why they have such a way of life, but I do not want to be like them and be with them in the same company. I do not like it.\n\nI never offend for a reason, I never attack, and I do no harm.\nEmpathy - what distinguishes us from animals.\n\nI value every life, no matter what that life is.\nI do not accept what most people love.\nI do everything consciously, extracting meaning and benefits from the experience.\nFor example, I have a meal. I do not eat garbage food, because it does not give to my body anything useful, since it does not contain nutrients. \n\n# I do not drink alcohol, smoke cigarettes or do drugs. \n\n\nAnd that is why people around me laugh or look at me quizzically. They say that I'm lying, sick, abnormal, or \"mother does not allow\". They say, \"in life need one needs to try everything!\" \n\nBut none of them for some reason, do not try, for example, quantum physics, a healthy lifestyle, or Buddhism.\n\n**In life, need to not only try, but also try not to try!**\n\n# I do not live with the people, but I live among the people.\n\nIf only you knew how hard all of this is ... I have to hide it all, and to adapt to the \"generally accepted norms\", in order not to be mocked. \n\nI feel somehow alien among the people. I have to wear a mask to resemble the people and not be detected.\n\nhttp://i.giphy.com/QG0th9DNdRrGw.gif\n\n> \"No pyramids of authority.\nMaster has an older brother, nothing more. And he just does the hard work that the others do not overpower. If it is otherwise, then trouble is inevitable.\nAuthority - this is a mistake \"(c).\n\nIf you have read Orwell's novel \"1984\" or watched the same film, you know, all this is happening in my country.\nPeople poisoned by propaganda, people are trying to survive, they are afraid of the authorities and freedom.\nAll this is laid bare and exacerbated in human animal instincts. The principle of flocks. Not like us - the enemy is dangerous, you need to avoid, or to die.\n\nThe population cannot tolerate dissent, any manifestation of freedom, something different from their lifestyle and worldview. In connection with this, people with a different lifestyle, look, worldview and way, becomes an object of ridicule, an outcast, a threat, an enemy.\n\nIt's not comfortable for me to live here. But leave (until the border has not yet closed) there is no possibility. It is very expensive, and I make incredibly low wages, and wages continue to fall, while food and services continue to rise in price.\n\nHow I would like live in a free country! Be yourself, do not hide anything, not trying to make excuses for my views and lifestyles.\n\nMaybe relocation to another country could change something in me, but I notice, positive emotions in me less and less and I feel less joy and desire to live.\n\nhttp://i.giphy.com/eR2OWX51qesIo.gif\n\n-Secret Writer\n\nImages and gifs: All images are by Stellabelle, all gifs are from giphy.com.", - "json_metadata": "{\"tags\":[\"secret-writer\",\"isolation\",\"self-development\",\"life\"],\"image\":[\"http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\"]}", - "last_update": "2016-08-15T17:39:09", - "created": "2016-08-15T16:44:42", - "active": "2016-08-17T15:01:48", - "last_payout": "2016-08-16T19:48:36", - "depth": 0, - "children": 43, - "net_rshares": "981828724825", - "abs_rshares": "984642850369", - "vote_rshares": "981882842624", - "children_abs_rshares": "18007718646255", - "cashout_time": "2016-09-15T19:48:36", - "max_cashout_time": "2016-08-30T21:38:48", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "356586", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "31898", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 238520, - "net_votes": 293, - "root_author": "stellabelle", - "root_permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617429, - "author": "teutonic", - "permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", - "category": "awesome", - "parent_author": "", - "parent_permlink": "awesome", - "title": "10 Amazing Optical Illusion Pictures To Mess With Your Brain", - "body": "http://www.mindmotivations.com/images/optical-illusion1.jpg \nIs the ladder going up or down?\nhttp://www.mindmotivations.com/images/optical-illusion2.jpg\nAre the dots in between the squares white, black or grey?\nhttp://www.mindmotivations.com/images/optical-illusion3.jpg \nparallel or crooked?\nhttp://www.mindmotivations.com/images/optical-illusion4.jpg\nHow many legs?\nhttp://www.mindmotivations.com/images/optical-illusion5.jpg\nFocus on the dot in the middle and then move your head backwards and forwards.\nhttp://www.mindmotivations.com/images/optical-illusion7.jpg\nIs the picture moving?\nhttp://www.mindmotivations.com/images/optical-illusion8.jpg\nIs there anything in between the different squares?\nhttp://www.mindmotivations.com/images/optical-illusion9.jpg\nface of a lady or a word?\nhttp://www.mindmotivations.com/images/optical-illusion6.jpg \nFocus on the 4 dots in the middle of the picture for 30 seconds. \nhttp://www.mindmotivations.com/images/optical-illusion10.jpg \neven possible?", - "json_metadata": "{\"tags\":[\"awesome\",\"\"],\"image\":[\"http://www.mindmotivations.com/images/optical-illusion1.jpg\"]}", - "last_update": "2016-08-15T19:35:54", - "created": "2016-08-15T19:35:54", - "active": "2016-08-15T20:10:06", - "last_payout": "2016-08-16T19:48:45", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-15T19:48:45", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "teutonic", - "root_permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 952070, - "author": "safar01", - "permlink": "lol-robot-tranformers-against-fishermen", - "category": "editing", - "parent_author": "", - "parent_permlink": "editing", - "title": "LOL ... Robot Tranformers against fishermen (steemitphotochallenge)", - "body": "\n

\n

show in the pictures are not real, but I edit them using Photoshop just

\n

 to train the imagination only.

\n

I made this picture just to entertain readers of all, 

\n

please advise the reader all my abilities to process images

\n", - "json_metadata": "{\"tags\":[\"editing\",\"with\",\"photoshop\",\"imagination\",\"steemitphotochallenge\"],\"image\":[\"https://scontent.fcgk1-1.fna.fbcdn.net/v/t1.0-9/44685_544257398931890_1432197168_n.jpg?oh=737dff7bef73ecfcaff983c130b55ee1&oe=587FF678\"]}", - "last_update": "2016-09-14T20:20:48", - "created": "2016-09-14T19:48:57", - "active": "2016-09-14T20:20:48", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 158773924, - "abs_rshares": 158773924, - "vote_rshares": 158773924, - "children_abs_rshares": 158773924, - "cashout_time": "2016-09-15T19:48:57", - "max_cashout_time": "2016-09-28T19:48:57", - "total_vote_weight": "732186422373807", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "safar01", - "root_permlink": "lol-robot-tranformers-against-fishermen", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617119, - "author": "pipertomcat", - "permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", - "category": "bitcoin", - "parent_author": "", - "parent_permlink": "bitcoin", - "title": "Western Union investing in Blockchain technology...will it be Bitcoin ? or Ripple!?", - "body": "https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg \nhttps://s19.postimg.org/jiv4eri0j/Blockchain_technology1.png\nWhy not Steem Dollars then? I think ultimately Western Union and the like may actually choose or adopt a name that includes something like \"Dollar\". Lol\nhttps://s19.postimg.org/4y9g66xo3/Bitcoinripplebanner1.png\n\nI have said to different friends over the last year or so on occasion, that I fear Western Union is about to die by Bitcoin's hand. I compare Netflix, Youtube, Google Play, Itunes,and so forth killing retail establishments like Blockbuster video. Technology and the convenience it brings, easily dominates any industry, ask Kodak. \n\n I have friends who still have to purchase money orders to pay their rent. The Apartment complex refuses personal checks and apparently doesn't want employee's accepting cash. You can join their site online for a $50 per month fee and connect your checking account. What a ripoff! \nWow if they only knew of bitcoin and the coming technology.\nhttps://s19.postimg.org/743r0p14j/725_Ly9jb2lud_GVs_ZWdy_YXBo_Lm_Nvb_S9zd_G9y_YWdl_L3_Vwb_G9h.jpg\n\n\nhttps://s19.postimg.org/fc5olot0z/e873eec95dbe6437e8b73f6dc4b474e6.jpg\nhttps://s19.postimg.org/d2hkaxk37/a9ee5c9045261e324670df9b5e3fbf0c.png\n Western Union was in discussions with Ripple Labs early last year, regarding a blockchain pilot project. By using a cheap payment network, proponents claim that companies will be able to cut down the cost of remittances.\n The following quote from Barry Gilbert , the Digital Currency Insights Founder and CEO says it best:\n“If you look at Western Union and Moneygram, they have a fantastic opportunity to take advantage of bitcoin as a financial rail and incorporate it into their business.”\n\nAfter reading the following article just now, I will have to say that I think someone like Western Union may be the key player in bringing Bitcoin to the masses! The following is an article from Bravenewcoin-http://bravenewcoin.com/news/western-union-wont-make-the-same-mistake-with-blockchain/\n\n#steemdollar\n#steem\n#westernunion\n#ripple", - "json_metadata": "{\"tags\":[\"bitcoin\",\"steemdollar\",\"steem\",\"westernunion\",\"ripple\"],\"image\":[\"https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg\"]}", - "last_update": "2016-08-15T19:14:33", - "created": "2016-08-15T19:14:33", - "active": "2016-08-15T19:15:51", - "last_payout": "2016-08-16T19:49:42", - "depth": 0, - "children": 1, - "net_rshares": 53638386, - "abs_rshares": 53638386, - "vote_rshares": 53638386, - "children_abs_rshares": "45063474229", - "cashout_time": "2016-09-15T19:49:42", - "max_cashout_time": "2016-09-04T21:13:12", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 9, - "root_author": "pipertomcat", - "root_permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-15T19:12:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "crowe", + "author_rewards": 0, + "beneficiaries": [], + "body": "I thought my viewers would be interested in the place I actually live in. I live in a City called Ashkelon. Its about 7 miles North of Gaza. Last year in June when some missiles were being shot toward Israel the Sirens in Ashkelon went off. I filmed this video from my deck. The video is what we hear when this happens. \n\nhttps://www.youtube.com/watch?v=Ky23yJaNDfo", + "cashout_time": "2016-09-15T19:47:27", + "category": "israel", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T19:12:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617094, + "json_metadata": "{\"tags\":[\"israel\",\"siren\",\"gaza\",\"politics\",\"steemit\"],\"links\":[\"https://www.youtube.com/watch?v=Ky23yJaNDfo\"]}", + "last_payout": "2016-08-16T19:47:27", + "last_update": "2016-08-15T19:12:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "israel", + "percent_hbd": 10000, + "permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "reward_weight": 10000, + "root_author": "crowe", + "root_permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "title": "Israeli Bomb Siren goes off in my City. I filmed this from my deck.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "1339555910464", + "active": "2016-08-15T19:44:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "luminarycrush", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

I came across a lone blooming cactus during a hike this weekend.  Photos taken at 946' ASL above Two Harbors, Catalina Island.

\n

\n


\n

\n


\n

\n", + "cashout_time": "2016-09-15T19:47:27", + "category": "photography", + "children": 0, + "children_abs_rshares": "1339555910464", + "created": "2016-08-15T19:44:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617542, + "json_metadata": "{\"tags\":[\"photography\",\"cactus\",\"catalinaisland\",\"california\",\"twoharbors\"],\"image\":[\"https://scontent.xx.fbcdn.net/t31.0-8/13988224_10154518762224175_252304266230235242_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13923665_10154518762269175_2030254348907005554_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13988240_10154518762254175_9097905240858144855_o.jpg\"]}", + "last_payout": "2016-08-16T19:47:27", + "last_update": "2016-08-15T19:44:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-01T02:13:51", + "net_rshares": "1339555910464", + "net_votes": 14, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "cactus-in-the-clouds-catalina-island", + "reward_weight": 10000, + "root_author": "luminarycrush", + "root_permlink": "cactus-in-the-clouds-catalina-island", + "title": "Cactus in the Clouds - Catalina Island", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "1339555910464" + }, + { + "abs_rshares": "76217996022", + "active": "2016-08-17T15:39:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "brunopro", + "author_rewards": 13512, + "beneficiaries": [], + "body": "http://imgur.com/HrpWWaK.png\n\n## And there are changes again regarding the duration until the payout occurs, now your post will have a minimum 24 hours duration until the first payout. \n\nPersonally I think that they should never have changed it to 12 hours. I didn't understand the logic behind it at the time and I still don't. This 24h period it's ideal because this way the post has better chances of overcoming the first publish period and get more traction. It also enables of a higher possibility of being seen and upvoted by the users that on the 12h were sleeping or simply away.\n\n# And you? What do you think about this change?\n\n----\n\nEdit post-publish: I've notice that I can't upvote a post that has been up for a month. Is this new also? I thought a post would always be open for an upvote? Can anyone reply to this question? thanks!\n\n----\n\n###### Photo Credits: https://unsplash.com/@sonjalangford", + "cashout_time": "2016-09-15T19:47:42", + "category": "steemit", + "children": 22, + "children_abs_rshares": "78071773184", + "created": "2016-08-15T18:36:36", + "curator_payout_value": { + "amount": "3483", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 616664, + "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"opinion\",\"reward\"],\"image\":[\"http://imgur.com/HrpWWaK.png\"]}", + "last_payout": "2016-08-16T19:47:42", + "last_update": "2016-08-15T18:51:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-08-30T20:41:45", + "net_rshares": "76217996022", + "net_votes": 82, + "parent_author": "", + "parent_permlink": "steemit", + "percent_hbd": 10000, + "permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "reward_weight": 10000, + "root_author": "brunopro", + "root_permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "title": "LATEST NEWS: Payouts are back to 24H - What do you think about it? [ Quick read / Opinion Article ]", + "total_payout_value": { + "amount": "20200", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "76217996022" + }, + { + "abs_rshares": 0, + "active": "2016-08-15T19:50:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "yassinebentour", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

http://unitedcivilrights.org/images/fa-prprty.gif

\n

The purpose of property rights is to mitigate conflict over scarce, rivalrous resources. To have a property right over a scarce, rivalrous resource is to have the right to exclude others from using that resource in the attainment of some ends. For example, I have property rights over my body, which means I can exclude others from using my body for sexual pleasure or labor without my consent. If they do access my body in such a way without my consent, it's called rape or slavery, respectively. Likewise, I have property rights over the accumulated capital for which I consensually trade my time and labor, which means I have the right to exclude people from using my accumulated capital without my consent. When someone accesses my accumulated capital in such a way without my consent, it's called theft or trespass.
\nScale doesn't change this. If I transform my accumulated capital into a factory by hiring people who voluntarily exchange the product of their labor for some of my accumulated capital, this means that they value what they receive in exchange for working more than they value the direct product of their labor (the factory). Likewise, it means I value the factory more than the accumulated capital I gave up for it. This is a win-win situation, or a positive sum game. The workers I hired retain property rights over the capital they received as payment for their labor, which means they can exclude others from the use of their newly acquired accumulated capital, and I retain property rights over the factory, which means I can exclude others from the use of my factory.
\nDiscrepancies between marginal benefit don't change this either. A consensual exchange doesn't become theft just because one party benefits more from the exchange than another. If this wasn't the case, every single instance of buyer's remorse would be indicative of theft. If someone agrees to produce a walking stick in exchange for ten dollars and the purchaser of the walking stick then sells it to someone else for twenty dollars, how can it be claimed that the producer of the walking stick was a victim of theft if they haven't been deprived of the ten dollars for which they voluntarily exchanged the walking stick? Would it have been reasonable to expect that the first purchaser of the walking stick wouldn't have obtained more than ten dollars of value from it given that the exchange wouldn't have happened in the first place if they hadn't valued the walking stick more than they valued ten dollars?
\nOf course not. Anything that happens to the walking stick after the original exchange is no business of the producer of the walking stick because said producer already exchanged his property rights to the walking stick for property rights to a different form of accumulated capital (ten dollars).
\nLikewise, if I use more of my accumulated capital to hire workers to work in my factory, they will only accept my offer of employment if they value what I'm offering more than their own free time and more than whatever stake they may have otherwise had in the product they will be producing. In other words, if they accept employment, it will be with the understanding that they're giving up any stake in what they're producing in exchange for what I'm offering them. Maybe my factory assembles televisions. Maybe one worker can produce one television per hour. Would they be able to produce televisions this efficiently without my previous investment in production capital (which hasn't even been recouped and probably never will be completely given that maintenance, employment and higher order production good costs are a revolving door)? Would they be able to produce televisions AT ALL without this previous investment in production capital? Of course not, and they know this, which is why they're willing to give up both their leisure and whatever stake their labor may have otherwise entitled them to in the production of a television in exchange for a fixed amount of accumulated capital.
\nAs was the case with the walking stick, whatever happens to the television after this exchange occurs is no business of the worker. How could the future sale of the television constitute theft of the worker's accumulated capital if it can't be demonstrated that the worker was deprived of the accumulated capital that he voluntarily accepted as payment for the production of the television, especially given that the television was produced with other accumulated capital (plastic, circuits, labor saving devices, etc.) that the worker never even owned?
\nIt can't.
\nProperty ownership necessarily implies exclusivity, which means that \"private property\" is redundant, as is \"personal property\". The words \"private\" and \"personal\" denote exclusivity, which is already implied by the word \"property\". To differentiate between \"personal property\" and \"private property\" is therefore a distinction without a difference. This implication of exclusivity also means that \"public property\" is a contradiction in terms. If no one can be excluded from using the resource, it isn't property. Resources that aren't scarce or rivalrous likewise can not be considered property, which means that \"intellectual property\" is also a contradiction in terms.
\nThis means that seizing the means of production is a genuine form of theft and that \"pirating\" music, software, art and writing is not, which may seem counter-intuitive if you attended the indoctrination camps euphemistically known as \"public schools\" when you were growing up.

\n", + "cashout_time": "2016-09-15T19:47:48", + "category": "writing", + "children": 2, + "children_abs_rshares": "25854883309", + "created": "2016-08-15T19:43:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617534, + "json_metadata": "{\"tags\":[\"writing\",\"rights\"],\"image\":[\"http://unitedcivilrights.org/images/fa-prprty.gif\"]}", + "last_payout": "2016-08-16T19:47:48", + "last_update": "2016-08-15T19:43:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-01T01:02:42", + "net_rshares": -104004690671, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "writing", + "percent_hbd": 10000, + "permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "reward_weight": 736, + "root_author": "yassinebentour", + "root_permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "title": "The purpose of property rights is to mitigate conflict over scarce, rivalrous resources", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-15T19:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "libtrian.outlet", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\nFriday's move is the clearest indication yet that the White House is serious about getting Obama\u2019s legacy trade deal.\n\nThe White House put Congress on notice Friday morning that it will be sending lawmakers a bill to implement President Barack Obama\u2019s landmark Trans-Pacific Partnership agreement \u2014 a move intended to infuse new energy into efforts to ratify the flat-lining trade pact.\n\nThe move establishes a 30-day minimum before the administration can present the legislation, but the White House is unlikely to do so amid the heated rhetoric of a presidential campaign in which both major party nominees have depicted free trade deals as massive job killers.\n\nFriday's notification is the clearest signal yet that the White House is serious about getting Obama\u2019s legacy trade deal \u2014 the biggest in U.S. history \u2014 passed by the end of the year, as he has vowed to do despite the misgivings of Republican leaders and the outright opposition of a majority of Democrats in Congress.\n\nStriking a defiant tone, Obama predicted at a press conference last week that the economic centerpiece of his strategic pivot to Asia would pass in the lame-duck session, saying he\u2019d like to sit down with lawmakers after the election to discuss the \"actual facts\" behind the deal, rather than toss it around like a \"political football.\"\n\n\"We are part of a global economy. We're not reversing that,\" Obama said, describing the necessity of international supply chains and the importance of the export sector to U.S. jobs and the economy. \"The notion that we're going to pull that up root and branch is unrealistic.\"\n\nThe notification, a new requirement of the trade promotion authority legislation Congress passed last year to expedite passage of the Asia-Pacific pact, is \u201cmeant to ensure early consultations between the administration and Congress,\u201d Matt McAlvanah, a spokesman for the Office of the U.S. Trade Representative, said in a statement. \u201cAs such, the draft SAA [Statement of Administrative Action] was sent today in order to continue to promote transparency and collaboration in the TPP process.\u201d\n\nThe White House's draft document describes the major steps the administration will take to implement any changes to U.S. law required by the deal. Those actions range from the mundane \u2014 designating an administration point of contact for communications about the pact \u2014 to the complex \u2014 setting up procedures to stop harmful surges of agricultural or textile imports.\n\nBut the deal is going nowhere until the White House addresses a number of concerns lawmakers have raised about the trade agreement, which Canada, Mexico, Japan and eight other countries joined the United States in signing last February.\n\nFirst and foremost: satisfying the concerns of Senate Finance Committee Chairman Orrin Hatch (R-Utah) and other lawmakers about protections for a new class of drugs known as biologics. They say the pact provides too short a monopoly period for rights to research and development data. Other lawmakers have complained the deal would bar tobacco companies from seeking redress through investor-state dispute arbitrage for damages resulting from country regulations. Still others are seeking assurances that member countries will abide by their commitments to provide access for U.S. pork and dairy exports.\n\nUntil these issues are resolved, House Speaker Paul Ryan and Senate Majority Leader Mitch McConnell have made clear that the pact will not get the votes it needs to pass.\n\nRyan's spokeswoman, AshLee Strong, reiterated the point on Friday.\n\n\u201cAs Speaker Ryan has stated for months, there are problems that remain with the administration\u2019s TPP deal, and there can be no movement before these concerns are addressed,\" she said.\n\nDemocrats, meanwhile, have largely called the deal a nonstarter over concerns about the enforceability of labor and environmental standards in countries like Vietnam and the lack of strong protections against currency manipulation.\n\nThe administration claims it is making progress on these issues and has resolved others, including banking industry concerns over the exclusion of financial data from rules prohibiting countries from requiring local storage.\n\nBut that doesn\u2019t change the reality of the down-ballot drag that candidates are facing as they campaign back home in their districts. In a reversal from years past, many Republicans are on the defensive about their support for free trade because of Donald Trump\u2019s daily tirades about what he characterizes as the serious economic damage wrought by trade agreements like the North American Free Trade Agreement and the TPP as well as his complaints that China is flouting international trade rules.\n\nThe Republican platform picked up on this theme, saying significant trade deals \"should not be rushed or undertaken in a Lame Duck Congress.\"\n\nThe small band of Democrats who the administration hopes will support the TPP are facing increased pressure within their own party to abandon the president on the agreement. Sens. Bernie Sanders\u2019 and Elizabeth Warren\u2019s strong condemnations of the trade deal have forced Hillary Clinton, who supported the TPP as Obama\u2019s secretary of state, to reject the pact to appease the liberal wing.\n\n\"I will stop any trade deal that kills jobs or holds down wages, including the Trans-Pacific Partnership,\" Clinton said during an economic policy speech at an automotive manufacturing plant in Warren, Mich., on Thursday. \"I oppose it now, I'll oppose it after the election and I'll oppose it as president.\"\n\nClinton\u2019s clear rejection of the trade deal has emboldened liberal groups like the Warren-aligned Progressive Change Campaign Committee to launch a campaign to press Democrats to publicly oppose a TPP vote in the lame duck.\n\nSanders also called on Democratic congressional leaders to go on record against the White House\u2019s effort to get the deal done by the end of the year, saying the agreement is opposed by every trade union and the grassroots base of the Democratic Party.\n\n\"I am disappointed by the president's decision to continue pushing forward on the disastrous Trans-Pacific Partnership trade agreement that will cost American jobs, harm the environment, increase the cost of prescription drugs and threaten our ability to protect public health,\u201d the Vermont senator said in a statement after learning of the White House's action on Friday.\n\nMeanwhile, the administration continues to press the deal in key congressional districts \u2014 especially those of Democrats who supported the trade promotion authority bill last year.\n\nInterior Secretary Sally Jewell returned to her hometown of Seattle last month to tout the TPP\u2019s potential effects on the environment at a Washington Council on International Trade event with more than 150 business leaders.\n\nThen, last week, Commerce Secretary Penny Pritzker hit the San Diego and Boulder districts of Reps. Susan Davis and Jared Polis \u2014 two of the 28 House Democrats that voted for the bill \u2014 and visited a steel plant in Cleveland to promote the TPP. Treasury Secretary Jack Lew did the same when he met with local and state officials and Fortune 500 business executives in Minneapolis.\n\nOn Thursday, Undersecretary of Commerce for Oceans and Atmosphere Kathryn Sullivan spoke at a Seattle clean energy business roundtable focused on the TPP and the environment. And this Monday, Deputy U.S. Trade Representative Robert Holleyman will participate in a World Affairs Council of Atlanta discussion on the trade deal featuring former Republican Sen. Saxby Chambliss and UPS CEO David Abney.\n\nAs the political fight plays out, the nuts-and-bolts process of moving the deal forward will continue. Once Congress reviews the draft notification that the White House submitted on Friday, the administration can move forward with sending lawmakers a final statement and the draft of the implementing bill itself. The legislation will describe the actual changes to U.S. law to comply with the rules of the trade agreement.\n\nAfter that, the Senate Finance and House Ways and Means committees could hold \u201cmock markups\u201d of the bill (because under trade promotion authority, Congress is not actually allowed to tinker with the agreement or its implementing legislation itself, but it can ask the administration to do so).\n\nBut given the tenor of the elections, the entire process could be pushed into a crowded lame-duck legislation session, which would mean no time for the mock markups. Instead, there could be a lot of deal-making between the White House and congressional leadership to move the bill before Clinton or Trump takes over on Jan. 20.\n\nObama said last week that he\u2019s ready to press his case. \"Right now, I'm president, and I'm for it. And I think I've got the better argument,\" he said.\n\nSource:\nwww.politico.com/story/2016/08/obama-congress-trade-warning-226952", + "cashout_time": "2016-09-15T19:47:57", + "category": "politics", + "children": 1, + "children_abs_rshares": "11700424464", + "created": "2016-08-15T19:44:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617538, + "json_metadata": "{\"tags\":[\"politics\",\"tpp\",\"conspiracy\",\"news\",\"freetrade\"],\"image\":[\"http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\"]}", + "last_payout": "2016-08-16T19:47:57", + "last_update": "2016-08-15T19:44:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-04T23:37:39", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "", + "parent_permlink": "politics", + "percent_hbd": 10000, + "permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "reward_weight": 2046, + "root_author": "libtrian.outlet", + "root_permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "title": "Obama puts Congress on notice: TPP is coming", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "89025972926", + "active": "2016-09-15T15:19:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "profanarky", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

In which the folks in the subway find themselves some unwelcome visitors...

\n

29

\n

   \u201cDo NOT panic! There is no reason to believe that this is anything more than just a power outage.\u201d  

\n

   \u201cBut-- BUT-- how can it be the whole state?\u201d One wide-eyed young woman, one of the aforementioned punk rockers actually raised her hand.  

\n

   \u201cYeah, it\u2019s gotta be Al Qaeda, who the hell else could it be?!!\u201d Another idiot bellowed.    

\n

   Others followed, there words quickly jumbling together into a tidal wave of paranoia. It only took one idiot to get the ball rolling.   

\n

   \u201cIt\u2019s gotta be the terrorists, who the hell else could it be?\u201d    

\n

   \u201cOh my god, I gotta get to my kids\u2026 My kids are still at the day care!!!\u201d   

\n

   \u201cDid an airplane hit a power plant??!! OH GOD!! DID AN AIRPLANE HIT ONE OF THE NUCLEAR PLANTS??!!\u201d    

\n

   She heard it all and it was nothing more than a buzzing, though an irritating one nonetheless. Her instincts, those things cops called their gut instincts told her Mister Blue-eyes was the key, the only thing really important right now. Mister Blue-eyes and whatever the hell it was he was watching outside their little tin prison.  

\n

     \u201cNOW LISTEN DAMMIT!!!\u201d She hollered, trying to make herself louder than the loudest of them, a difficult task with New Yorkers. \u201cI told you, there\u2019s no goddamn reason to think it\u2019s terrorism! This has happened before in our lifetimes and it\u2019s gonna happen again. As far as I\u2019m concerned it ain\u2019t nothing more than a power outage. Going FUCKING crazy ain\u2019t gonna help us any, dammit!!\u201d  

\n

   They kept going, some of them, but most paid her mind and listened, their faces drawn and tired. They\u2019d suffered enough the last few years, New Yorkers. There wasn\u2019t a one of them, including herself, who hadn\u2019t had their world turned literally upside down two years before. The terror they\u2019d lived was fresh on their minds, fresh and ready to burst again and overwhelm them. It was a hard thing, it truly, truly was.     

\n

   \u201cNow I just got off the phone with my partner and he says he\u2019s gonna get people down here to get us out as soon as possible. There are trains stalled all over the city. Rescue workers are leading those people out from underground and up to their homes. He told me there would be a group of them here soon. He was gonna get them here.\u201d    

\n

   \u201cIs that them?\u201d Came the deep voice of Jeffrey Thornton. He\u2019d been quiet while the others yelled, silent and listening to what she had to say. The moment she\u2019d spoken of rescue his eyes had gone outside the train and he saw what Mister Blue-eyes had apparently been watching.    

\n

   \u201cWhere?\u201d She asked him, stumbling over and peering outside, right next to the stranger in the baseball cap.       

\n

   She saw nothing at first, her eyes trying to focus past the reflections in the glass and out into the pitch black.      

\n

   \u201cThose--,\u201d Mister Blue-eyes said, at last speaking, his voice accented in a manner she\u2019d never heard before. Something about it was as wrong and as otherworldly as his eyes were. \u201c---are not rescuers of any sort.\u201d    

\n

   Out of the corner of her eye she saw him rise and back away from the window and once again her instincts spoke to her. They told her to back away as well, and to not stop there. They said to her, no, they screamed at her to run, to run as far from here as possible.      

\n

   But she didn\u2019t, she had to see what they were, had to see for herself.    

\n

   When the figures finally did materialize from the darkness, they weren\u2019t human at all.     

\n

End Part 29

\n

         If you find yourself interested in the whole damnedable thing and wanna throw me a few bucks, here's a link to it on Amazon.      

\n

  https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1   

\n


\n", + "cashout_time": "2016-09-15T19:48:29", + "category": "story", + "children": 3, + "children_abs_rshares": "89614201477", + "created": "2016-09-14T19:15:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 951797, + "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"creative\",\"writers\",\"writing\"],\"image\":[\"http://www.followingthenerd.com/site/wp-content/uploads/shadowpeople.jpg\"],\"links\":[\"https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T19:15:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-28T19:15:09", + "net_rshares": "89025972926", + "net_votes": 3, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "the-dragon-s-blood-part-29", + "reward_weight": 10000, + "root_author": "profanarky", + "root_permlink": "the-dragon-s-blood-part-29", + "title": "The Dragon's Blood (Part 29)", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "401621156077855379", + "vote_rshares": "89025972926" + }, + { + "abs_rshares": "984642850369", + "active": "2016-08-17T15:01:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "stellabelle", + "author_rewards": 238520, + "beneficiaries": [], + "body": "http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\n\n# I have to hide my true self.\n\nIt just so happened that I was constantly losing my friends. It's like a curse was put on me.\nJudging by the reviews from former colleagues and friends, I was a \"nice and friendly person who was always willing to help.\"\n\n# However, constantly all these friends ceased to be friends with me, for no reason. They just stopped communicating, no quarrels, no disagreements and other things!\n\nI had a lot of friends ... But our paths diverged.\n\nIn my childhood I had friends, but my family moved to another city, and I lost my friends. In the new city, I made new friends. I had one close friend. Even his move to another part of the city has not prevented us from seeing each other every weekend. And one day, he was taken into the army. And one day, his aunt came to me, and said that he is no more, he was killed when he was on sentry duty ...\n\n![imaged6bd4.jpg](https://www.steemimg.com/images/2016/07/26/imaged6bd4.jpg)\n\nPeople ignore me constantly on the Internet, too. On any website, forum. I try to communicate, start a dialogue, and all people just ignore me. Suffice it to ask someone about something, write, and so on, and no response. \n\n# It's as if I did not exist.\n\nhttp://i.giphy.com/3o72FhMTVaOTycqObu.gif\n\nI am always open and friendly, and in return I receive arrogance against me or they completely ignore me.\nThis is what hurts the self-assessment.\n\n# I have no one to talk, no one to share the news with. Not one to ask for help. When I die, nobody will notice. \n\nhttp://i.giphy.com/l46CABOxa2Itf99bG.gif\n\n# I change people!\n\nI've got one property ... when a person begins to communicate with me, he is beginning to change. He begins to listen to the music that I like. He begins to lead a similar lifestyle. In general, people change for the better. From this, I feel somehow enhanced. And apparently, it has become another man moves away from me and goes his own way. As the chicks leave the nest as adults. Other explanation I can find.\n\n# Childhood\n\nAt school I was a \"whipping boy\".\n\nhttp://i.giphy.com/Hem0mSEEPwQBa.gif\n\nEndured constant insults, humiliation. Every day for 3 years. The school was torture for me. I did not like school, sometimes skipped lessons to avoid it all. Of course, it has affected my level of education, I studied badly.\n\nAnd also, my eyesight began to deteriorate, I did not see what was written on the blackboard. And when I admitted that I had bad eyesight, meant even more exposure to ridicule. In addition, due to health problems, but rather due to an error from talentless doctors, I had to take some strange drug. What it was I do not know, but I remember that I had to take these pills with milk. At first, nothing happened ... but then I wanted to eat every 5 minutes, I could not stop! I suffered from hunger! And accordingly, I gained weight. Needless to say, that became more humiliation for me.\n\nPerhaps it is karma. After all, before all this, I, too, along with all, mocked other classmates. Well now I know, I deserve it all.\n\nIt all ended when I graduated from high school. I changed just for the summer. Completely changed! I was starving and had grown very thin. Enrolling in college, I stopped being afraid of the people because they did not know who I was at school. Former classmates simply did not recognize me in the street. I became a different person. I started a new life with a clean slate.\n\nhttp://i.giphy.com/763KvbtkqH3e8.gif\n\n# I'm for searching myself.\n\n### Punk.\n\nOne day on one local forum, I found an ad that a punk rock band was looking for a drummer. I do not know why, or what came over me, or how my subconscious played a role, but I wrote to them that I am ready to join them.\n\nIn those years, I liked punk rock. But I did not know how to play the drums! However, I had an ear for music and rhythm. Since childhood, I remember I loved playing improvised drums.\n\nhttp://i.giphy.com/3oEjI2cJuP3Y0dcfV6.gif\n\nAt the first rehearsal something happened. But, of course, I played really disgusting. I liked that I was with other people. I liked all the socializing after the rehearsals, but the rehearsals themselves I sometimes disliked.\n\nI was getting the feeling that my lack of skill playing the drums was getting the band down. The band broke up after 2 years, played three songs in one of the amateur concerts. I still blame myself for failing them. But communicating with them gave me pleasure.\n\n### Church of Satan.\n\nhttp://i.giphy.com/xThuWk5MZglNP8IsJG.gif\n\nI've never been religious.\nOne day it so happened that I was carried by some away articles and the book \"Church Satan\" that I found on the Internet. So I soon became well versed in the sect (I still keep granted by them, the so-called \"certificate\" as a memory). And then, I began to take an active and more active role in this church.\n\nI was the first who made an unofficial website, for which I was honored with awards and praise. I was the first who wrote a skeptical analysis of the Bible. And my critiques were very popular! Actually, thanks to them that I became known.\n\nAnd then I began to get to know ones of the elders. With me, I remember, I spoke to some journalists, a student who wrote some work, theologians, members of the new sect, and anyone with an interest. Probably because I was often on the network. After all, I have never been a part from the college and at home, and did nothing.\n\nBut then, I and several other members became disillusioned, and I left the sect.\n\nAnd then there were various attempts to find myself, I was changing lifestyles and views on life.\n\nWhy did I write this? All of the above has given me some experience in dealing with people and the ability to understand who I am and why, to find my place in life.\n\nPagan Old Believers tried invite me to come, and then I almost became a skinhead.\n\n> \"What people call life - just a game, but this game is sometimes instructive, and all that it teaches - only lessons from which to borrow wisdom, therefore, ought to live.\" (C)\n\n# Loneliness gave me the alternative to communion, namely: I read a lot of books, of which learned many new things from psychology, philosophy, spirituality and languages.\n\nhttp://i.giphy.com/AbuQeC846WKOs.gif\n\nHave you noticed that being in society and when in the company of others, you do not crave training or self-development? I see this for myself when my brother visits me. I do not read books, I do not ponder any situation and theory, I just talk and spend time with my brother. Loneliness provides an incentive for development. With the help of loneliness, you really will begin to appreciate the friendship and fellowship.\n\n# This can be compared with food delicacies. If you eat delicacies every day, they will cease to be so desirable and unusual, and they will become commonplace.\n\nhttp://i.giphy.com/WmEvcZna75UfS.gif\n\n# Now.\n\nMy current way of life is very similar to Tantric Buddhism, although it is not defined by that as it has no name, and does not need to be defined as such.\n\n# Sometimes it's painful and unpleasant to look at people.\n\nhttp://i.giphy.com/JsL3hYFdvMMSs.gif\n\nI understand why they are themselves, why they have such a way of life, but I do not want to be like them and be with them in the same company. I do not like it.\n\nI never offend for a reason, I never attack, and I do no harm.\nEmpathy - what distinguishes us from animals.\n\nI value every life, no matter what that life is.\nI do not accept what most people love.\nI do everything consciously, extracting meaning and benefits from the experience.\nFor example, I have a meal. I do not eat garbage food, because it does not give to my body anything useful, since it does not contain nutrients. \n\n# I do not drink alcohol, smoke cigarettes or do drugs.\u00a0\n\n\nAnd that is why people around me laugh or look at me quizzically. They say that I'm lying, sick, abnormal, or \"mother does not allow\". They say, \"in life need one needs to try everything!\" \n\nBut none of them for some reason, do not try, for example, quantum physics, a healthy lifestyle, or Buddhism.\n\n**In life, need to not only try, but also try not to try!**\n\n# I do not live with the people, but I live among the people.\n\nIf only you knew how hard all of this is ... I have to hide it all, and to adapt to the \"generally accepted norms\", in order not to be mocked. \n\nI feel somehow alien among the people. I have to wear a mask to resemble the people and not be detected.\n\nhttp://i.giphy.com/QG0th9DNdRrGw.gif\n\n> \"No pyramids of authority.\nMaster has an older brother, nothing more. And he just does the hard work that the others do not overpower. If it is otherwise, then trouble is inevitable.\nAuthority - this is a mistake \"(c).\n\nIf you have read Orwell's novel \"1984\" or watched the same film, you know, all this is happening in my country.\nPeople poisoned by propaganda, people are trying to survive, they are afraid of the authorities and freedom.\nAll this is laid bare and exacerbated in human animal instincts. The principle of flocks. Not like us - the enemy is dangerous, you need to avoid, or to die.\n\nThe population cannot tolerate dissent, any manifestation of freedom, something different from their lifestyle and worldview. In connection with this, people with a different lifestyle, look, worldview and way, becomes an object of ridicule, an outcast, a threat, an enemy.\n\nIt's not comfortable for me to live here. But leave (until the border has not yet closed) there is no possibility. It is very expensive, and I make incredibly low wages, and wages continue to fall, while food and services continue to rise in price.\n\nHow I would like live in a free country! Be yourself, do not hide anything, not trying to make excuses for my views and lifestyles.\n\nMaybe relocation to another country could change something in me, but I notice, positive emotions in me less and less and I feel less joy and desire to live.\n\nhttp://i.giphy.com/eR2OWX51qesIo.gif\n\n-Secret Writer\n\nImages and gifs: All images are by Stellabelle, all gifs are from giphy.com.", + "cashout_time": "2016-09-15T19:48:36", + "category": "secret-writer", + "children": 43, + "children_abs_rshares": "18007718646255", + "created": "2016-08-15T16:44:42", + "curator_payout_value": { + "amount": "31898", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 615287, + "json_metadata": "{\"tags\":[\"secret-writer\",\"isolation\",\"self-development\",\"life\"],\"image\":[\"http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\"]}", + "last_payout": "2016-08-16T19:48:36", + "last_update": "2016-08-15T17:39:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-08-30T21:38:48", + "net_rshares": "981828724825", + "net_votes": 293, + "parent_author": "", + "parent_permlink": "secret-writer", + "percent_hbd": 10000, + "permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "reward_weight": 10000, + "root_author": "stellabelle", + "root_permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "title": "SECRET WRITER: I Feel Like An Alien Among People In My Country", + "total_payout_value": { + "amount": "356586", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "981882842624" + }, + { + "abs_rshares": 0, + "active": "2016-08-15T20:10:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "teutonic", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://www.mindmotivations.com/images/optical-illusion1.jpg \nIs the ladder going up or down?\nhttp://www.mindmotivations.com/images/optical-illusion2.jpg\nAre the dots in between the squares white, black or grey?\nhttp://www.mindmotivations.com/images/optical-illusion3.jpg \nparallel or crooked?\nhttp://www.mindmotivations.com/images/optical-illusion4.jpg\nHow many legs?\nhttp://www.mindmotivations.com/images/optical-illusion5.jpg\nFocus on the dot in the middle and then move your head backwards and forwards.\nhttp://www.mindmotivations.com/images/optical-illusion7.jpg\nIs the picture moving?\nhttp://www.mindmotivations.com/images/optical-illusion8.jpg\nIs there anything in between the different squares?\nhttp://www.mindmotivations.com/images/optical-illusion9.jpg\nface of a lady or a word?\nhttp://www.mindmotivations.com/images/optical-illusion6.jpg \nFocus on the 4 dots in the middle of the picture for 30 seconds. \nhttp://www.mindmotivations.com/images/optical-illusion10.jpg \neven possible?", + "cashout_time": "2016-09-15T19:48:45", + "category": "awesome", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-15T19:35:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617429, + "json_metadata": "{\"tags\":[\"awesome\",\"\"],\"image\":[\"http://www.mindmotivations.com/images/optical-illusion1.jpg\"]}", + "last_payout": "2016-08-16T19:48:45", + "last_update": "2016-08-15T19:35:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "awesome", + "percent_hbd": 10000, + "permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "reward_weight": 10000, + "root_author": "teutonic", + "root_permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "title": "10 Amazing Optical Illusion Pictures To Mess With Your Brain", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 158773924, + "active": "2016-09-14T20:20:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "safar01", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

show in the pictures are not real, but I edit them using Photoshop just

\n

 to train the imagination only.

\n

I made this picture just to entertain readers of all, 

\n

please advise the reader all my abilities to process images

\n", + "cashout_time": "2016-09-15T19:48:57", + "category": "editing", + "children": 0, + "children_abs_rshares": 158773924, + "created": "2016-09-14T19:48:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 952070, + "json_metadata": "{\"tags\":[\"editing\",\"with\",\"photoshop\",\"imagination\",\"steemitphotochallenge\"],\"image\":[\"https://scontent.fcgk1-1.fna.fbcdn.net/v/t1.0-9/44685_544257398931890_1432197168_n.jpg?oh=737dff7bef73ecfcaff983c130b55ee1&oe=587FF678\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T20:20:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-28T19:48:57", + "net_rshares": 158773924, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "editing", + "percent_hbd": 10000, + "permlink": "lol-robot-tranformers-against-fishermen", + "reward_weight": 10000, + "root_author": "safar01", + "root_permlink": "lol-robot-tranformers-against-fishermen", + "title": "LOL ... Robot Tranformers against fishermen (steemitphotochallenge)", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "732186422373807", + "vote_rshares": 158773924 + }, + { + "abs_rshares": 53638386, + "active": "2016-08-15T19:15:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "pipertomcat", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg \nhttps://s19.postimg.org/jiv4eri0j/Blockchain_technology1.png\nWhy not Steem Dollars then? I think ultimately Western Union and the like may actually choose or adopt a name that includes something like \"Dollar\". Lol\nhttps://s19.postimg.org/4y9g66xo3/Bitcoinripplebanner1.png\n\nI have said to different friends over the last year or so on occasion, that I fear Western Union is about to die by Bitcoin's hand. I compare Netflix, Youtube, Google Play, Itunes,and so forth killing retail establishments like Blockbuster video. Technology and the convenience it brings, easily dominates any industry, ask Kodak. \n\n I have friends who still have to purchase money orders to pay their rent. The Apartment complex refuses personal checks and apparently doesn't want employee's accepting cash. You can join their site online for a $50 per month fee and connect your checking account. What a ripoff! \nWow if they only knew of bitcoin and the coming technology.\nhttps://s19.postimg.org/743r0p14j/725_Ly9jb2lud_GVs_ZWdy_YXBo_Lm_Nvb_S9zd_G9y_YWdl_L3_Vwb_G9h.jpg\n\n\nhttps://s19.postimg.org/fc5olot0z/e873eec95dbe6437e8b73f6dc4b474e6.jpg\nhttps://s19.postimg.org/d2hkaxk37/a9ee5c9045261e324670df9b5e3fbf0c.png\n Western Union was in discussions with Ripple Labs early last year, regarding a blockchain pilot project. By using a cheap payment network, proponents claim that companies will be able to cut down the cost of remittances.\n The following quote from Barry Gilbert , the Digital Currency Insights Founder and CEO says it best:\n\u201cIf you look at Western Union and Moneygram, they have a fantastic opportunity to take advantage of bitcoin as a financial rail and incorporate it into their business.\u201d\n\nAfter reading the following article just now, I will have to say that I think someone like Western Union may be the key player in bringing Bitcoin to the masses! The following is an article from Bravenewcoin-http://bravenewcoin.com/news/western-union-wont-make-the-same-mistake-with-blockchain/\n\n#steemdollar\n#steem\n#westernunion\n#ripple", + "cashout_time": "2016-09-15T19:49:42", + "category": "bitcoin", + "children": 1, + "children_abs_rshares": "45063474229", + "created": "2016-08-15T19:14:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617119, + "json_metadata": "{\"tags\":[\"bitcoin\",\"steemdollar\",\"steem\",\"westernunion\",\"ripple\"],\"image\":[\"https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg\"]}", + "last_payout": "2016-08-16T19:49:42", + "last_update": "2016-08-15T19:14:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-04T21:13:12", + "net_rshares": 53638386, + "net_votes": 9, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_hbd": 10000, + "permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "reward_weight": 10000, + "root_author": "pipertomcat", + "root_permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "title": "Western Union investing in Blockchain technology...will it be Bitcoin ? or Ripple!?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 53638386 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json index d5ee9980..71f72b2b 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 786710, - "author": "etcmike", - "permlink": "re-bullionstackers-screen-it-tab-it-what-are-they-20160829t061254603z", - "category": "steem", - "parent_author": "bullionstackers", - "parent_permlink": "screen-it-tab-it-what-are-they", - "title": "", - "body": "An excellent method of describing what each function is for. \n\nSteem on,\nMike", - "json_metadata": "{\"tags\":[\"steem\"]}", - "last_update": "2016-08-29T06:12:51", - "created": "2016-08-29T06:12:51", - "active": "2016-08-29T09:35:12", - "last_payout": "2016-08-30T14:39:00", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "bullionstackers", - "root_permlink": "screen-it-tab-it-what-are-they", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786711, - "author": "ekitcho", - "permlink": "re-laonie-how-to-set-up-your-own-voting-bot-for-robinhoodwhale-20160829t061342501z", - "category": "robinhoodwhale", - "parent_author": "laonie", - "parent_permlink": "how-to-set-up-your-own-voting-bot-for-robinhoodwhale", - "title": "", - "body": "good initiative mate !", - "json_metadata": "{\"tags\":[\"robinhoodwhale\"]}", - "last_update": "2016-08-29T06:13:39", - "created": "2016-08-29T06:13:39", - "active": "2016-08-29T06:13:39", - "last_payout": "2016-08-30T11:01:12", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "laonie", - "root_permlink": "how-to-set-up-your-own-voting-bot-for-robinhoodwhale", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786712, - "author": "itay", - "permlink": "re-post-and-post-craigrant-introduceyourself", - "category": "post", - "parent_author": "bitmaxt", - "parent_permlink": "post-and-post-craigrant-introduceyourself", - "title": "", - "body": "I upvoted You", - "json_metadata": "{}", - "last_update": "2016-08-29T06:13:57", - "created": "2016-08-29T06:13:57", - "active": "2016-08-29T06:13:57", - "last_payout": "2016-09-03T05:42:51", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "bitmaxt", - "root_permlink": "post-and-post-craigrant-introduceyourself", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786713, - "author": "anns", - "permlink": "re-whitezombie-steemit-s-not-dead-20160829t061410014z", - "category": "meme", - "parent_author": "whitezombie", - "parent_permlink": "steemit-s-not-dead", - "title": "", - "body": "Steem On", - "json_metadata": "{\"tags\":[\"meme\"]}", - "last_update": "2016-08-29T06:14:09", - "created": "2016-08-29T06:14:09", - "active": "2016-08-29T06:14:09", - "last_payout": "2016-08-30T07:31:42", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "whitezombie", - "root_permlink": "steemit-s-not-dead", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786714, - "author": "jeza", - "permlink": "re-darkstarartphoto-throw-out-the-baby-20160829t061417629z", - "category": "anarchism", - "parent_author": "darkstarartphoto", - "parent_permlink": "throw-out-the-baby", - "title": "", - "body": "It's a good point, and I'll remember this post next time someone comes up me with this time honored argument.\n\nWhen people say this they are claiming that the good things can be kept separate from the stolen loot. \n\nYou can't throw separate the flour from the yeast after you've baked the bread", - "json_metadata": "{\"tags\":[\"anarchism\"]}", - "last_update": "2016-08-29T06:14:21", - "created": "2016-08-29T06:14:21", - "active": "2016-08-29T06:14:21", - "last_payout": "2016-08-29T20:12:12", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "darkstarartphoto", - "root_permlink": "throw-out-the-baby", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786715, - "author": "pseudopoise", - "permlink": "re-eveningstar92-through-the-looking-glass-20160829t061452063z", - "category": "photography", - "parent_author": "eveningstar92", - "parent_permlink": "through-the-looking-glass", - "title": "", - "body": "This is so cute! Alice is one of my favorite stories. :)", - "json_metadata": "{\"tags\":[\"photography\"]}", - "last_update": "2016-08-29T06:14:51", - "created": "2016-08-29T06:14:51", - "active": "2016-08-29T16:46:12", - "last_payout": "2016-08-30T12:06:18", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "eveningstar92", - "root_permlink": "through-the-looking-glass", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786716, - "author": "futurefood", - "permlink": "re-smartbean-re-futurefood-future-food-the-underrated-benefit-of-green-tea-20160829t061451602z", - "category": "health", - "parent_author": "smartbean", - "parent_permlink": "re-futurefood-future-food-the-underrated-benefit-of-green-tea-20160828t160415020z", - "title": "", - "body": "Yes that would be possible, although I'm far less knowledgeable on coffee :)", - "json_metadata": "{\"tags\":[\"health\"]}", - "last_update": "2016-08-29T06:15:00", - "created": "2016-08-29T06:15:00", - "active": "2016-08-29T06:15:00", - "last_payout": "1970-01-01T00:00:00", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "futurefood", - "root_permlink": "future-food-the-underrated-benefit-of-green-tea", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786717, - "author": "lukeism", - "permlink": "re-churdtzu-nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america-20160829t061507948z", - "category": "comedy", - "parent_author": "churdtzu", - "parent_permlink": "nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america", - "title": "", - "body": "Fucking hilarious", - "json_metadata": "{\"tags\":[\"comedy\"]}", - "last_update": "2016-08-29T06:15:09", - "created": "2016-08-29T06:15:09", - "active": "2016-08-29T14:08:51", - "last_payout": "1970-01-01T00:00:00", - "depth": 1, - "children": 1, - "net_rshares": "251770688898", - "abs_rshares": "251770688898", - "vote_rshares": "251770688898", - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": "1092333007396197012", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "churdtzu", - "root_permlink": "nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786718, - "author": "christoryan", - "permlink": "re-djm34-re-sascha-our-life-on-planet-earth-part-3-what-happens-after-death-20160829t061600956z", - "category": "life", - "parent_author": "djm34", - "parent_permlink": "re-sascha-our-life-on-planet-earth-part-3-what-happens-after-death-20160828t191908229z", - "title": "", - "body": "You're exactly right! The oldest trick in the book was played by the devil ( a sneaky serpent that has a venomous bite ). Jesus did not come to set up churches but to set up \"the church\" of one truth. Religion is hocus pocus and there is only one God , he is all of our God. :D", - "json_metadata": "{\"tags\":[\"life\"]}", - "last_update": "2016-08-29T06:16:03", - "created": "2016-08-29T06:16:03", - "active": "2016-08-29T06:16:03", - "last_payout": "2016-08-29T20:55:27", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "sascha", - "root_permlink": "our-life-on-planet-earth-part-3-what-happens-after-death", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786719, - "author": "thebear", - "permlink": "re-dexter-k-re-thebear-steemitphotochallenge-entry-20160829t061609423z", - "category": "steemitphotochallenge", - "parent_author": "dexter-k", - "parent_permlink": "re-thebear-steemitphotochallenge-entry-20160829t054349693z", - "title": "", - "body": "Thank you! Yes I would love that! You have to check out my other articles on Death Valley and Great Sand Dunes National Park. Especially if you love sand dunes! These are must go places! I would love it if you featured my photo and please check out the many more here, https://steemit.com/journey/@thebear/racetrack-playa-where-rocks-slide-across-the-earth-and-death-valley-national-park and https://steemit.com/journey/@thebear/sandboarding-in-great-sand-dunes-national-park-san-luis-valley-co I also have some more pretty cool Death Valley shots I have not posted if you're interested.", - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"],\"links\":[\"https://steemit.com/journey/@thebear/racetrack-playa-where-rocks-slide-across-the-earth-and-death-valley-national-park\"]}", - "last_update": "2016-08-29T06:16:09", - "created": "2016-08-29T06:16:09", - "active": "2016-08-29T08:11:39", - "last_payout": "2016-08-30T04:42:03", - "depth": 2, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "thebear", - "root_permlink": "steemitphotochallenge-entry", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T09:35:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "etcmike", + "author_rewards": 0, + "beneficiaries": [], + "body": "An excellent method of describing what each function is for. \n\nSteem on,\nMike", + "cashout_time": "1969-12-31T23:59:59", + "category": "steem", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-29T06:12:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 786710, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "2016-08-30T14:39:00", + "last_update": "2016-08-29T06:12:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "bullionstackers", + "parent_permlink": "screen-it-tab-it-what-are-they", + "percent_hbd": 10000, + "permlink": "re-bullionstackers-screen-it-tab-it-what-are-they-20160829t061254603z", + "reward_weight": 10000, + "root_author": "bullionstackers", + "root_permlink": "screen-it-tab-it-what-are-they", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T06:13:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ekitcho", + "author_rewards": 0, + "beneficiaries": [], + "body": "good initiative mate !", + "cashout_time": "1969-12-31T23:59:59", + "category": "robinhoodwhale", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T06:13:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 786711, + "json_metadata": "{\"tags\":[\"robinhoodwhale\"]}", + "last_payout": "2016-08-30T11:01:12", + "last_update": "2016-08-29T06:13:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "laonie", + "parent_permlink": "how-to-set-up-your-own-voting-bot-for-robinhoodwhale", + "percent_hbd": 10000, + "permlink": "re-laonie-how-to-set-up-your-own-voting-bot-for-robinhoodwhale-20160829t061342501z", + "reward_weight": 10000, + "root_author": "laonie", + "root_permlink": "how-to-set-up-your-own-voting-bot-for-robinhoodwhale", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T06:13:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "itay", + "author_rewards": 0, + "beneficiaries": [], + "body": "I upvoted You", + "cashout_time": "1969-12-31T23:59:59", + "category": "post", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T06:13:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 786712, + "json_metadata": "{}", + "last_payout": "2016-09-03T05:42:51", + "last_update": "2016-08-29T06:13:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "bitmaxt", + "parent_permlink": "post-and-post-craigrant-introduceyourself", + "percent_hbd": 10000, + "permlink": "re-post-and-post-craigrant-introduceyourself", + "reward_weight": 10000, + "root_author": "bitmaxt", + "root_permlink": "post-and-post-craigrant-introduceyourself", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T06:14:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anns", + "author_rewards": 0, + "beneficiaries": [], + "body": "Steem On", + "cashout_time": "1969-12-31T23:59:59", + "category": "meme", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T06:14:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 786713, + "json_metadata": "{\"tags\":[\"meme\"]}", + "last_payout": "2016-08-30T07:31:42", + "last_update": "2016-08-29T06:14:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "whitezombie", + "parent_permlink": "steemit-s-not-dead", + "percent_hbd": 10000, + "permlink": "re-whitezombie-steemit-s-not-dead-20160829t061410014z", + "reward_weight": 10000, + "root_author": "whitezombie", + "root_permlink": "steemit-s-not-dead", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T06:14:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "jeza", + "author_rewards": 0, + "beneficiaries": [], + "body": "It's a good point, and I'll remember this post next time someone comes up me with this time honored argument.\n\nWhen people say this they are claiming that the good things can be kept separate from the stolen loot. \n\nYou can't throw separate the flour from the yeast after you've baked the bread", + "cashout_time": "1969-12-31T23:59:59", + "category": "anarchism", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T06:14:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 786714, + "json_metadata": "{\"tags\":[\"anarchism\"]}", + "last_payout": "2016-08-29T20:12:12", + "last_update": "2016-08-29T06:14:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "darkstarartphoto", + "parent_permlink": "throw-out-the-baby", + "percent_hbd": 10000, + "permlink": "re-darkstarartphoto-throw-out-the-baby-20160829t061417629z", + "reward_weight": 10000, + "root_author": "darkstarartphoto", + "root_permlink": "throw-out-the-baby", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T16:46:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "pseudopoise", + "author_rewards": 0, + "beneficiaries": [], + "body": "This is so cute! Alice is one of my favorite stories. :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-29T06:14:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 786715, + "json_metadata": "{\"tags\":[\"photography\"]}", + "last_payout": "2016-08-30T12:06:18", + "last_update": "2016-08-29T06:14:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "eveningstar92", + "parent_permlink": "through-the-looking-glass", + "percent_hbd": 10000, + "permlink": "re-eveningstar92-through-the-looking-glass-20160829t061452063z", + "reward_weight": 10000, + "root_author": "eveningstar92", + "root_permlink": "through-the-looking-glass", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T06:15:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "futurefood", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yes that would be possible, although I'm far less knowledgeable on coffee :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "health", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T06:15:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 786716, + "json_metadata": "{\"tags\":[\"health\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-29T06:15:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "smartbean", + "parent_permlink": "re-futurefood-future-food-the-underrated-benefit-of-green-tea-20160828t160415020z", + "percent_hbd": 10000, + "permlink": "re-smartbean-re-futurefood-future-food-the-underrated-benefit-of-green-tea-20160829t061451602z", + "reward_weight": 10000, + "root_author": "futurefood", + "root_permlink": "future-food-the-underrated-benefit-of-green-tea", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "251770688898", + "active": "2016-08-29T14:08:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "lukeism", + "author_rewards": 0, + "beneficiaries": [], + "body": "Fucking hilarious", + "cashout_time": "1969-12-31T23:59:59", + "category": "comedy", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-29T06:15:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 786717, + "json_metadata": "{\"tags\":[\"comedy\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-29T06:15:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": "251770688898", + "net_votes": 1, + "parent_author": "churdtzu", + "parent_permlink": "nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america", + "percent_hbd": 10000, + "permlink": "re-churdtzu-nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america-20160829t061507948z", + "reward_weight": 10000, + "root_author": "churdtzu", + "root_permlink": "nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "1092333007396197012", + "vote_rshares": "251770688898" + }, + { + "abs_rshares": 0, + "active": "2016-08-29T06:16:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "christoryan", + "author_rewards": 0, + "beneficiaries": [], + "body": "You're exactly right! The oldest trick in the book was played by the devil ( a sneaky serpent that has a venomous bite ). Jesus did not come to set up churches but to set up \"the church\" of one truth. Religion is hocus pocus and there is only one God , he is all of our God. :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "life", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T06:16:03", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 786718, + "json_metadata": "{\"tags\":[\"life\"]}", + "last_payout": "2016-08-29T20:55:27", + "last_update": "2016-08-29T06:16:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "djm34", + "parent_permlink": "re-sascha-our-life-on-planet-earth-part-3-what-happens-after-death-20160828t191908229z", + "percent_hbd": 10000, + "permlink": "re-djm34-re-sascha-our-life-on-planet-earth-part-3-what-happens-after-death-20160829t061600956z", + "reward_weight": 10000, + "root_author": "sascha", + "root_permlink": "our-life-on-planet-earth-part-3-what-happens-after-death", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T08:11:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "thebear", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you! Yes I would love that! You have to check out my other articles on Death Valley and Great Sand Dunes National Park. Especially if you love sand dunes! These are must go places! I would love it if you featured my photo and please check out the many more here, https://steemit.com/journey/@thebear/racetrack-playa-where-rocks-slide-across-the-earth-and-death-valley-national-park and https://steemit.com/journey/@thebear/sandboarding-in-great-sand-dunes-national-park-san-luis-valley-co I also have some more pretty cool Death Valley shots I have not posted if you're interested.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-29T06:16:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 786719, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"],\"links\":[\"https://steemit.com/journey/@thebear/racetrack-playa-where-rocks-slide-across-the-earth-and-death-valley-national-park\"]}", + "last_payout": "2016-08-30T04:42:03", + "last_update": "2016-08-29T06:16:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "dexter-k", + "parent_permlink": "re-thebear-steemitphotochallenge-entry-20160829t054349693z", + "percent_hbd": 10000, + "permlink": "re-dexter-k-re-thebear-steemitphotochallenge-entry-20160829t061609423z", + "reward_weight": 10000, + "root_author": "thebear", + "root_permlink": "steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json index 5fdc1016..efd42a28 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 0, - "author": "steemit", - "permlink": "firstpost", - "category": "meta", - "parent_author": "", - "parent_permlink": "meta", - "title": "Welcome to Steem!", - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "json_metadata": "", - "last_update": "2016-03-30T18:30:18", - "created": "2016-03-30T18:30:18", - "active": "2016-08-24T09:30:03", - "last_payout": "2016-08-24T19:59:42", - "depth": 0, - "children": 36, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "942", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "756", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 3548, - "net_votes": 90, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 1, - "author": "admin", - "permlink": "firstpost", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "", - "body": "First Reply! Let's get this **party** started", - "json_metadata": "", - "last_update": "2016-03-30T19:52:30", - "created": "2016-03-30T19:52:30", - "active": "2016-07-18T19:53:12", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 2, - "net_rshares": -226592300084, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 8, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 2, - "author": "proskynneo", - "permlink": "steemit-firstpost-1", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "Excited!", - "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", - "json_metadata": "", - "last_update": "2016-03-31T13:54:33", - "created": "2016-03-31T13:54:33", - "active": "2016-03-31T13:54:33", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "1058", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "1059", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 4817, - "net_votes": 7, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 3, - "author": "red", - "permlink": "steemit-firstpost-2", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "Did you Know?", - "body": "Did you know you can earn STEEM by commenting on posts?", - "json_metadata": "{}", - "last_update": "2016-04-06T19:22:42", - "created": "2016-04-06T19:22:42", - "active": "2016-07-13T08:38:48", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "100", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "100", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 457, - "net_votes": 7, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 4, - "author": "red", - "permlink": "red-dailydecrypt-1", - "category": "daily-decrypt", - "parent_author": "", - "parent_permlink": "daily-decrypt", - "title": "What You Should Know About the Coming Bitcoin Halving", - "body": "Bitcoin's protocol schedules a block reward 'halving' roughly every four years, as designed by Satoshi Nakamoto. But the artificial block size cap currently sanctioned by Core developers and a majority of miners alike may actually cause a catastrophic result come July 2016. Here's how. https://youtu.be/_NgFIj9dBkQ", - "json_metadata": "{}", - "last_update": "2016-04-06T19:54:12", - "created": "2016-04-06T19:54:12", - "active": "2016-04-11T21:41:45", - "last_payout": "2016-08-03T00:00:06", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "1024", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "1024", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 4661, - "net_votes": 6, - "root_author": "red", - "root_permlink": "red-dailydecrypt-1", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 5, - "author": "abit", - "permlink": "abit-first-post", - "category": "firstpost", - "parent_author": "", - "parent_permlink": "firstpost", - "title": "Trying", - "body": "Trying to post my first post..", - "json_metadata": "{}", - "last_update": "2016-04-08T07:33:42", - "created": "2016-04-08T07:33:42", - "active": "2016-08-10T09:18:09", - "last_payout": "2016-08-12T10:16:36", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "294", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "294", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1339, - "net_votes": 4, - "root_author": "abit", - "root_permlink": "abit-first-post", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 6, - "author": "abit", - "permlink": "witness-category", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Witnesses", - "body": "This is the witnesses category", - "json_metadata": "{}", - "last_update": "2016-04-08T07:36:18", - "created": "2016-04-08T07:36:18", - "active": "2016-04-08T08:58:24", - "last_payout": "2016-08-12T10:16:39", - "depth": 0, - "children": 2, - "net_rshares": -491818553, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "160", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "160", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 729, - "net_votes": -2, - "root_author": "abit", - "root_permlink": "witness-category", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 7, - "author": "abit", - "permlink": "miner-category", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Miners", - "body": "This is the miners category", - "json_metadata": "{}", - "last_update": "2016-04-08T07:55:15", - "created": "2016-04-08T07:55:15", - "active": "2016-04-08T07:55:15", - "last_payout": "2016-08-12T10:16:42", - "depth": 0, - "children": 0, - "net_rshares": -481781440, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "138", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "139", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 632, - "net_votes": -3, - "root_author": "abit", - "root_permlink": "miner-category", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 8, - "author": "abit", - "permlink": "abit-witness-post", - "category": "witness-category", - "parent_author": "", - "parent_permlink": "witness-category", - "title": "Abit Witness Thread", - "body": "This is abit, an experienced witness. Will you vote for me?", - "json_metadata": "{}", - "last_update": "2016-04-08T07:58:51", - "created": "2016-04-08T07:58:51", - "active": "2016-04-19T12:08:57", - "last_payout": "2016-08-22T12:36:54", - "depth": 0, - "children": 5, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "110730", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "110702", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 503226, - "net_votes": 23, - "root_author": "abit", - "root_permlink": "abit-witness-post", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 9, - "author": "abit", - "permlink": "spam", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Spams", - "body": "Spams come here", - "json_metadata": "{}", - "last_update": "2016-04-08T08:49:15", - "created": "2016-04-08T08:49:15", - "active": "2016-04-08T08:49:15", - "last_payout": "2016-08-13T18:32:54", - "depth": 0, - "children": 0, - "net_rshares": -477016308, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "165", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "166", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 755, - "net_votes": -2, - "root_author": "abit", - "root_permlink": "spam", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-24T09:30:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit", + "author_rewards": 3548, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "children_abs_rshares": 0, + "created": "2016-03-30T18:30:18", + "curator_payout_value": { + "amount": "756", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 0, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 90, + "parent_author": "", + "parent_permlink": "meta", + "percent_hbd": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Welcome to Steem!", + "total_payout_value": { + "amount": "942", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-18T19:53:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "admin", + "author_rewards": 0, + "beneficiaries": [], + "body": "First Reply! Let's get this **party** started", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-03-30T19:52:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T19:52:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -226592300084, + "net_votes": 8, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-03-31T13:54:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "proskynneo", + "author_rewards": 4817, + "beneficiaries": [], + "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-03-31T13:54:33", + "curator_payout_value": { + "amount": "1059", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 2, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-31T13:54:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-1", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Excited!", + "total_payout_value": { + "amount": "1058", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T08:38:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 457, + "beneficiaries": [], + "body": "Did you know you can earn STEEM by commenting on posts?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-06T19:22:42", + "curator_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 3, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-04-06T19:22:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-2", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Did you Know?", + "total_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-11T21:41:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 4661, + "beneficiaries": [], + "body": "Bitcoin's protocol schedules a block reward 'halving' roughly every four years, as designed by Satoshi Nakamoto. But the artificial block size cap currently sanctioned by Core developers and a majority of miners alike may actually cause a catastrophic result come July 2016. Here's how. https://youtu.be/_NgFIj9dBkQ", + "cashout_time": "1969-12-31T23:59:59", + "category": "daily-decrypt", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-04-06T19:54:12", + "curator_payout_value": { + "amount": "1024", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 4, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-04-06T19:54:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "daily-decrypt", + "percent_hbd": 10000, + "permlink": "red-dailydecrypt-1", + "reward_weight": 10000, + "root_author": "red", + "root_permlink": "red-dailydecrypt-1", + "title": "What You Should Know About the Coming Bitcoin Halving", + "total_payout_value": { + "amount": "1024", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-10T09:18:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 1339, + "beneficiaries": [], + "body": "Trying to post my first post..", + "cashout_time": "1969-12-31T23:59:59", + "category": "firstpost", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-04-08T07:33:42", + "curator_payout_value": { + "amount": "294", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 5, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:36", + "last_update": "2016-04-08T07:33:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "abit-first-post", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "abit-first-post", + "title": "Trying", + "total_payout_value": { + "amount": "294", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T08:58:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 729, + "beneficiaries": [], + "body": "This is the witnesses category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-08T07:36:18", + "curator_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 6, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:39", + "last_update": "2016-04-08T07:36:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -491818553, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "witness-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "witness-category", + "title": "Witnesses", + "total_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T07:55:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 632, + "beneficiaries": [], + "body": "This is the miners category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T07:55:15", + "curator_payout_value": { + "amount": "139", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 7, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:42", + "last_update": "2016-04-08T07:55:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -481781440, + "net_votes": -3, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "miner-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "miner-category", + "title": "Miners", + "total_payout_value": { + "amount": "138", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-19T12:08:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 503226, + "beneficiaries": [], + "body": "This is abit, an experienced witness. Will you vote for me?", + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-04-08T07:58:51", + "curator_payout_value": { + "amount": "110702", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 8, + "json_metadata": "{}", + "last_payout": "2016-08-22T12:36:54", + "last_update": "2016-04-08T07:58:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 23, + "parent_author": "", + "parent_permlink": "witness-category", + "percent_hbd": 10000, + "permlink": "abit-witness-post", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "abit-witness-post", + "title": "Abit Witness Thread", + "total_payout_value": { + "amount": "110730", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T08:49:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 755, + "beneficiaries": [], + "body": "Spams come here", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T08:49:15", + "curator_payout_value": { + "amount": "166", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 9, + "json_metadata": "{}", + "last_payout": "2016-08-13T18:32:54", + "last_update": "2016-04-08T08:49:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -477016308, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "spam", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "spam", + "title": "Spams", + "total_payout_value": { + "amount": "165", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json index d7a8022f..ab747b19 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 617094, - "author": "crowe", - "permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", - "category": "israel", - "parent_author": "", - "parent_permlink": "israel", - "title": "Israeli Bomb Siren goes off in my City. I filmed this from my deck.", - "body": "I thought my viewers would be interested in the place I actually live in. I live in a City called Ashkelon. Its about 7 miles North of Gaza. Last year in June when some missiles were being shot toward Israel the Sirens in Ashkelon went off. I filmed this video from my deck. The video is what we hear when this happens. \n\nhttps://www.youtube.com/watch?v=Ky23yJaNDfo", - "json_metadata": "{\"tags\":[\"israel\",\"siren\",\"gaza\",\"politics\",\"steemit\"],\"links\":[\"https://www.youtube.com/watch?v=Ky23yJaNDfo\"]}", - "last_update": "2016-08-15T19:12:42", - "created": "2016-08-15T19:12:42", - "active": "2016-08-15T19:12:42", - "last_payout": "2016-08-16T19:47:27", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-15T19:47:27", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "crowe", - "root_permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617542, - "author": "luminarycrush", - "permlink": "cactus-in-the-clouds-catalina-island", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Cactus in the Clouds - Catalina Island", - "body": "\n

I came across a lone blooming cactus during a hike this weekend.  Photos taken at 946' ASL above Two Harbors, Catalina Island.

\n

\n


\n

\n


\n

\n", - "json_metadata": "{\"tags\":[\"photography\",\"cactus\",\"catalinaisland\",\"california\",\"twoharbors\"],\"image\":[\"https://scontent.xx.fbcdn.net/t31.0-8/13988224_10154518762224175_252304266230235242_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13923665_10154518762269175_2030254348907005554_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13988240_10154518762254175_9097905240858144855_o.jpg\"]}", - "last_update": "2016-08-15T19:44:48", - "created": "2016-08-15T19:44:48", - "active": "2016-08-15T19:44:48", - "last_payout": "2016-08-16T19:47:27", - "depth": 0, - "children": 0, - "net_rshares": "1339555910464", - "abs_rshares": "1339555910464", - "vote_rshares": "1339555910464", - "children_abs_rshares": "1339555910464", - "cashout_time": "2016-09-15T19:47:27", - "max_cashout_time": "2016-09-01T02:13:51", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 14, - "root_author": "luminarycrush", - "root_permlink": "cactus-in-the-clouds-catalina-island", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 616664, - "author": "brunopro", - "permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", - "category": "steemit", - "parent_author": "", - "parent_permlink": "steemit", - "title": "LATEST NEWS: Payouts are back to 24H - What do you think about it? [ Quick read / Opinion Article ]", - "body": "http://imgur.com/HrpWWaK.png\n\n## And there are changes again regarding the duration until the payout occurs, now your post will have a minimum 24 hours duration until the first payout. \n\nPersonally I think that they should never have changed it to 12 hours. I didn't understand the logic behind it at the time and I still don't. This 24h period it's ideal because this way the post has better chances of overcoming the first publish period and get more traction. It also enables of a higher possibility of being seen and upvoted by the users that on the 12h were sleeping or simply away.\n\n# And you? What do you think about this change?\n\n----\n\nEdit post-publish: I've notice that I can't upvote a post that has been up for a month. Is this new also? I thought a post would always be open for an upvote? Can anyone reply to this question? thanks!\n\n----\n\n###### Photo Credits: https://unsplash.com/@sonjalangford", - "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"opinion\",\"reward\"],\"image\":[\"http://imgur.com/HrpWWaK.png\"]}", - "last_update": "2016-08-15T18:51:42", - "created": "2016-08-15T18:36:36", - "active": "2016-08-17T15:39:57", - "last_payout": "2016-08-16T19:47:42", - "depth": 0, - "children": 22, - "net_rshares": "76217996022", - "abs_rshares": "76217996022", - "vote_rshares": "76217996022", - "children_abs_rshares": "78071773184", - "cashout_time": "2016-09-15T19:47:42", - "max_cashout_time": "2016-08-30T20:41:45", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "20200", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "3483", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 13512, - "net_votes": 82, - "root_author": "brunopro", - "root_permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617534, - "author": "yassinebentour", - "permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", - "category": "writing", - "parent_author": "", - "parent_permlink": "writing", - "title": "The purpose of property rights is to mitigate conflict over scarce, rivalrous resources", - "body": "\n

http://unitedcivilrights.org/images/fa-prprty.gif

\n

The purpose of property rights is to mitigate conflict over scarce, rivalrous resources. To have a property right over a scarce, rivalrous resource is to have the right to exclude others from using that resource in the attainment of some ends. For example, I have property rights over my body, which means I can exclude others from using my body for sexual pleasure or labor without my consent. If they do access my body in such a way without my consent, it's called rape or slavery, respectively. Likewise, I have property rights over the accumulated capital for which I consensually trade my time and labor, which means I have the right to exclude people from using my accumulated capital without my consent. When someone accesses my accumulated capital in such a way without my consent, it's called theft or trespass.
\nScale doesn't change this. If I transform my accumulated capital into a factory by hiring people who voluntarily exchange the product of their labor for some of my accumulated capital, this means that they value what they receive in exchange for working more than they value the direct product of their labor (the factory). Likewise, it means I value the factory more than the accumulated capital I gave up for it. This is a win-win situation, or a positive sum game. The workers I hired retain property rights over the capital they received as payment for their labor, which means they can exclude others from the use of their newly acquired accumulated capital, and I retain property rights over the factory, which means I can exclude others from the use of my factory.
\nDiscrepancies between marginal benefit don't change this either. A consensual exchange doesn't become theft just because one party benefits more from the exchange than another. If this wasn't the case, every single instance of buyer's remorse would be indicative of theft. If someone agrees to produce a walking stick in exchange for ten dollars and the purchaser of the walking stick then sells it to someone else for twenty dollars, how can it be claimed that the producer of the walking stick was a victim of theft if they haven't been deprived of the ten dollars for which they voluntarily exchanged the walking stick? Would it have been reasonable to expect that the first purchaser of the walking stick wouldn't have obtained more than ten dollars of value from it given that the exchange wouldn't have happened in the first place if they hadn't valued the walking stick more than they valued ten dollars?
\nOf course not. Anything that happens to the walking stick after the original exchange is no business of the producer of the walking stick because said producer already exchanged his property rights to the walking stick for property rights to a different form of accumulated capital (ten dollars).
\nLikewise, if I use more of my accumulated capital to hire workers to work in my factory, they will only accept my offer of employment if they value what I'm offering more than their own free time and more than whatever stake they may have otherwise had in the product they will be producing. In other words, if they accept employment, it will be with the understanding that they're giving up any stake in what they're producing in exchange for what I'm offering them. Maybe my factory assembles televisions. Maybe one worker can produce one television per hour. Would they be able to produce televisions this efficiently without my previous investment in production capital (which hasn't even been recouped and probably never will be completely given that maintenance, employment and higher order production good costs are a revolving door)? Would they be able to produce televisions AT ALL without this previous investment in production capital? Of course not, and they know this, which is why they're willing to give up both their leisure and whatever stake their labor may have otherwise entitled them to in the production of a television in exchange for a fixed amount of accumulated capital.
\nAs was the case with the walking stick, whatever happens to the television after this exchange occurs is no business of the worker. How could the future sale of the television constitute theft of the worker's accumulated capital if it can't be demonstrated that the worker was deprived of the accumulated capital that he voluntarily accepted as payment for the production of the television, especially given that the television was produced with other accumulated capital (plastic, circuits, labor saving devices, etc.) that the worker never even owned?
\nIt can't.
\nProperty ownership necessarily implies exclusivity, which means that \"private property\" is redundant, as is \"personal property\". The words \"private\" and \"personal\" denote exclusivity, which is already implied by the word \"property\". To differentiate between \"personal property\" and \"private property\" is therefore a distinction without a difference. This implication of exclusivity also means that \"public property\" is a contradiction in terms. If no one can be excluded from using the resource, it isn't property. Resources that aren't scarce or rivalrous likewise can not be considered property, which means that \"intellectual property\" is also a contradiction in terms.
\nThis means that seizing the means of production is a genuine form of theft and that \"pirating\" music, software, art and writing is not, which may seem counter-intuitive if you attended the indoctrination camps euphemistically known as \"public schools\" when you were growing up.

\n", - "json_metadata": "{\"tags\":[\"writing\",\"rights\"],\"image\":[\"http://unitedcivilrights.org/images/fa-prprty.gif\"]}", - "last_update": "2016-08-15T19:43:57", - "created": "2016-08-15T19:43:57", - "active": "2016-08-15T19:50:39", - "last_payout": "2016-08-16T19:47:48", - "depth": 0, - "children": 2, - "net_rshares": -104004690671, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": "25854883309", - "cashout_time": "2016-09-15T19:47:48", - "max_cashout_time": "2016-09-01T01:02:42", - "total_vote_weight": 0, - "reward_weight": 736, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "yassinebentour", - "root_permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617538, - "author": "libtrian.outlet", - "permlink": "obama-puts-congress-on-notice-tpp-is-coming", - "category": "politics", - "parent_author": "", - "parent_permlink": "politics", - "title": "Obama puts Congress on notice: TPP is coming", - "body": "http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\nFriday's move is the clearest indication yet that the White House is serious about getting Obama’s legacy trade deal.\n\nThe White House put Congress on notice Friday morning that it will be sending lawmakers a bill to implement President Barack Obama’s landmark Trans-Pacific Partnership agreement — a move intended to infuse new energy into efforts to ratify the flat-lining trade pact.\n\nThe move establishes a 30-day minimum before the administration can present the legislation, but the White House is unlikely to do so amid the heated rhetoric of a presidential campaign in which both major party nominees have depicted free trade deals as massive job killers.\n\nFriday's notification is the clearest signal yet that the White House is serious about getting Obama’s legacy trade deal — the biggest in U.S. history — passed by the end of the year, as he has vowed to do despite the misgivings of Republican leaders and the outright opposition of a majority of Democrats in Congress.\n\nStriking a defiant tone, Obama predicted at a press conference last week that the economic centerpiece of his strategic pivot to Asia would pass in the lame-duck session, saying he’d like to sit down with lawmakers after the election to discuss the \"actual facts\" behind the deal, rather than toss it around like a \"political football.\"\n\n\"We are part of a global economy. We're not reversing that,\" Obama said, describing the necessity of international supply chains and the importance of the export sector to U.S. jobs and the economy. \"The notion that we're going to pull that up root and branch is unrealistic.\"\n\nThe notification, a new requirement of the trade promotion authority legislation Congress passed last year to expedite passage of the Asia-Pacific pact, is “meant to ensure early consultations between the administration and Congress,” Matt McAlvanah, a spokesman for the Office of the U.S. Trade Representative, said in a statement. “As such, the draft SAA [Statement of Administrative Action] was sent today in order to continue to promote transparency and collaboration in the TPP process.”\n\nThe White House's draft document describes the major steps the administration will take to implement any changes to U.S. law required by the deal. Those actions range from the mundane — designating an administration point of contact for communications about the pact — to the complex — setting up procedures to stop harmful surges of agricultural or textile imports.\n\nBut the deal is going nowhere until the White House addresses a number of concerns lawmakers have raised about the trade agreement, which Canada, Mexico, Japan and eight other countries joined the United States in signing last February.\n\nFirst and foremost: satisfying the concerns of Senate Finance Committee Chairman Orrin Hatch (R-Utah) and other lawmakers about protections for a new class of drugs known as biologics. They say the pact provides too short a monopoly period for rights to research and development data. Other lawmakers have complained the deal would bar tobacco companies from seeking redress through investor-state dispute arbitrage for damages resulting from country regulations. Still others are seeking assurances that member countries will abide by their commitments to provide access for U.S. pork and dairy exports.\n\nUntil these issues are resolved, House Speaker Paul Ryan and Senate Majority Leader Mitch McConnell have made clear that the pact will not get the votes it needs to pass.\n\nRyan's spokeswoman, AshLee Strong, reiterated the point on Friday.\n\n“As Speaker Ryan has stated for months, there are problems that remain with the administration’s TPP deal, and there can be no movement before these concerns are addressed,\" she said.\n\nDemocrats, meanwhile, have largely called the deal a nonstarter over concerns about the enforceability of labor and environmental standards in countries like Vietnam and the lack of strong protections against currency manipulation.\n\nThe administration claims it is making progress on these issues and has resolved others, including banking industry concerns over the exclusion of financial data from rules prohibiting countries from requiring local storage.\n\nBut that doesn’t change the reality of the down-ballot drag that candidates are facing as they campaign back home in their districts. In a reversal from years past, many Republicans are on the defensive about their support for free trade because of Donald Trump’s daily tirades about what he characterizes as the serious economic damage wrought by trade agreements like the North American Free Trade Agreement and the TPP as well as his complaints that China is flouting international trade rules.\n\nThe Republican platform picked up on this theme, saying significant trade deals \"should not be rushed or undertaken in a Lame Duck Congress.\"\n\nThe small band of Democrats who the administration hopes will support the TPP are facing increased pressure within their own party to abandon the president on the agreement. Sens. Bernie Sanders’ and Elizabeth Warren’s strong condemnations of the trade deal have forced Hillary Clinton, who supported the TPP as Obama’s secretary of state, to reject the pact to appease the liberal wing.\n\n\"I will stop any trade deal that kills jobs or holds down wages, including the Trans-Pacific Partnership,\" Clinton said during an economic policy speech at an automotive manufacturing plant in Warren, Mich., on Thursday. \"I oppose it now, I'll oppose it after the election and I'll oppose it as president.\"\n\nClinton’s clear rejection of the trade deal has emboldened liberal groups like the Warren-aligned Progressive Change Campaign Committee to launch a campaign to press Democrats to publicly oppose a TPP vote in the lame duck.\n\nSanders also called on Democratic congressional leaders to go on record against the White House’s effort to get the deal done by the end of the year, saying the agreement is opposed by every trade union and the grassroots base of the Democratic Party.\n\n\"I am disappointed by the president's decision to continue pushing forward on the disastrous Trans-Pacific Partnership trade agreement that will cost American jobs, harm the environment, increase the cost of prescription drugs and threaten our ability to protect public health,” the Vermont senator said in a statement after learning of the White House's action on Friday.\n\nMeanwhile, the administration continues to press the deal in key congressional districts — especially those of Democrats who supported the trade promotion authority bill last year.\n\nInterior Secretary Sally Jewell returned to her hometown of Seattle last month to tout the TPP’s potential effects on the environment at a Washington Council on International Trade event with more than 150 business leaders.\n\nThen, last week, Commerce Secretary Penny Pritzker hit the San Diego and Boulder districts of Reps. Susan Davis and Jared Polis — two of the 28 House Democrats that voted for the bill — and visited a steel plant in Cleveland to promote the TPP. Treasury Secretary Jack Lew did the same when he met with local and state officials and Fortune 500 business executives in Minneapolis.\n\nOn Thursday, Undersecretary of Commerce for Oceans and Atmosphere Kathryn Sullivan spoke at a Seattle clean energy business roundtable focused on the TPP and the environment. And this Monday, Deputy U.S. Trade Representative Robert Holleyman will participate in a World Affairs Council of Atlanta discussion on the trade deal featuring former Republican Sen. Saxby Chambliss and UPS CEO David Abney.\n\nAs the political fight plays out, the nuts-and-bolts process of moving the deal forward will continue. Once Congress reviews the draft notification that the White House submitted on Friday, the administration can move forward with sending lawmakers a final statement and the draft of the implementing bill itself. The legislation will describe the actual changes to U.S. law to comply with the rules of the trade agreement.\n\nAfter that, the Senate Finance and House Ways and Means committees could hold “mock markups” of the bill (because under trade promotion authority, Congress is not actually allowed to tinker with the agreement or its implementing legislation itself, but it can ask the administration to do so).\n\nBut given the tenor of the elections, the entire process could be pushed into a crowded lame-duck legislation session, which would mean no time for the mock markups. Instead, there could be a lot of deal-making between the White House and congressional leadership to move the bill before Clinton or Trump takes over on Jan. 20.\n\nObama said last week that he’s ready to press his case. \"Right now, I'm president, and I'm for it. And I think I've got the better argument,\" he said.\n\nSource:\nwww.politico.com/story/2016/08/obama-congress-trade-warning-226952", - "json_metadata": "{\"tags\":[\"politics\",\"tpp\",\"conspiracy\",\"news\",\"freetrade\"],\"image\":[\"http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\"]}", - "last_update": "2016-08-15T19:44:39", - "created": "2016-08-15T19:44:39", - "active": "2016-08-15T19:45:42", - "last_payout": "2016-08-16T19:47:57", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": "11700424464", - "cashout_time": "2016-09-15T19:47:57", - "max_cashout_time": "2016-09-04T23:37:39", - "total_vote_weight": 0, - "reward_weight": 2046, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 3, - "root_author": "libtrian.outlet", - "root_permlink": "obama-puts-congress-on-notice-tpp-is-coming", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 951797, - "author": "profanarky", - "permlink": "the-dragon-s-blood-part-29", - "category": "story", - "parent_author": "", - "parent_permlink": "story", - "title": "The Dragon's Blood (Part 29)", - "body": "\n

\n

In which the folks in the subway find themselves some unwelcome visitors...

\n

29

\n

   “Do NOT panic! There is no reason to believe that this is anything more than just a power outage.”  

\n

   “But-- BUT-- how can it be the whole state?” One wide-eyed young woman, one of the aforementioned punk rockers actually raised her hand.  

\n

   “Yeah, it’s gotta be Al Qaeda, who the hell else could it be?!!” Another idiot bellowed.    

\n

   Others followed, there words quickly jumbling together into a tidal wave of paranoia. It only took one idiot to get the ball rolling.   

\n

   “It’s gotta be the terrorists, who the hell else could it be?”    

\n

   “Oh my god, I gotta get to my kids… My kids are still at the day care!!!”   

\n

   “Did an airplane hit a power plant??!! OH GOD!! DID AN AIRPLANE HIT ONE OF THE NUCLEAR PLANTS??!!”    

\n

   She heard it all and it was nothing more than a buzzing, though an irritating one nonetheless. Her instincts, those things cops called their gut instincts told her Mister Blue-eyes was the key, the only thing really important right now. Mister Blue-eyes and whatever the hell it was he was watching outside their little tin prison.  

\n

     “NOW LISTEN DAMMIT!!!” She hollered, trying to make herself louder than the loudest of them, a difficult task with New Yorkers. “I told you, there’s no goddamn reason to think it’s terrorism! This has happened before in our lifetimes and it’s gonna happen again. As far as I’m concerned it ain’t nothing more than a power outage. Going FUCKING crazy ain’t gonna help us any, dammit!!”  

\n

   They kept going, some of them, but most paid her mind and listened, their faces drawn and tired. They’d suffered enough the last few years, New Yorkers. There wasn’t a one of them, including herself, who hadn’t had their world turned literally upside down two years before. The terror they’d lived was fresh on their minds, fresh and ready to burst again and overwhelm them. It was a hard thing, it truly, truly was.     

\n

   “Now I just got off the phone with my partner and he says he’s gonna get people down here to get us out as soon as possible. There are trains stalled all over the city. Rescue workers are leading those people out from underground and up to their homes. He told me there would be a group of them here soon. He was gonna get them here.”    

\n

   “Is that them?” Came the deep voice of Jeffrey Thornton. He’d been quiet while the others yelled, silent and listening to what she had to say. The moment she’d spoken of rescue his eyes had gone outside the train and he saw what Mister Blue-eyes had apparently been watching.    

\n

   “Where?” She asked him, stumbling over and peering outside, right next to the stranger in the baseball cap.       

\n

   She saw nothing at first, her eyes trying to focus past the reflections in the glass and out into the pitch black.      

\n

   “Those--,” Mister Blue-eyes said, at last speaking, his voice accented in a manner she’d never heard before. Something about it was as wrong and as otherworldly as his eyes were. “---are not rescuers of any sort.”    

\n

   Out of the corner of her eye she saw him rise and back away from the window and once again her instincts spoke to her. They told her to back away as well, and to not stop there. They said to her, no, they screamed at her to run, to run as far from here as possible.      

\n

   But she didn’t, she had to see what they were, had to see for herself.    

\n

   When the figures finally did materialize from the darkness, they weren’t human at all.     

\n

End Part 29

\n

         If you find yourself interested in the whole damnedable thing and wanna throw me a few bucks, here's a link to it on Amazon.      

\n

  https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1   

\n


\n", - "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"creative\",\"writers\",\"writing\"],\"image\":[\"http://www.followingthenerd.com/site/wp-content/uploads/shadowpeople.jpg\"],\"links\":[\"https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1\"]}", - "last_update": "2016-09-14T19:15:09", - "created": "2016-09-14T19:15:09", - "active": "2016-09-15T15:19:39", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 3, - "net_rshares": "89025972926", - "abs_rshares": "89025972926", - "vote_rshares": "89025972926", - "children_abs_rshares": "89614201477", - "cashout_time": "2016-09-15T19:48:29", - "max_cashout_time": "2016-09-28T19:15:09", - "total_vote_weight": "401621156077855379", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 3, - "root_author": "profanarky", - "root_permlink": "the-dragon-s-blood-part-29", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 615287, - "author": "stellabelle", - "permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", - "category": "secret-writer", - "parent_author": "", - "parent_permlink": "secret-writer", - "title": "SECRET WRITER: I Feel Like An Alien Among People In My Country", - "body": "http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\n\n# I have to hide my true self.\n\nIt just so happened that I was constantly losing my friends. It's like a curse was put on me.\nJudging by the reviews from former colleagues and friends, I was a \"nice and friendly person who was always willing to help.\"\n\n# However, constantly all these friends ceased to be friends with me, for no reason. They just stopped communicating, no quarrels, no disagreements and other things!\n\nI had a lot of friends ... But our paths diverged.\n\nIn my childhood I had friends, but my family moved to another city, and I lost my friends. In the new city, I made new friends. I had one close friend. Even his move to another part of the city has not prevented us from seeing each other every weekend. And one day, he was taken into the army. And one day, his aunt came to me, and said that he is no more, he was killed when he was on sentry duty ...\n\n![imaged6bd4.jpg](https://www.steemimg.com/images/2016/07/26/imaged6bd4.jpg)\n\nPeople ignore me constantly on the Internet, too. On any website, forum. I try to communicate, start a dialogue, and all people just ignore me. Suffice it to ask someone about something, write, and so on, and no response. \n\n# It's as if I did not exist.\n\nhttp://i.giphy.com/3o72FhMTVaOTycqObu.gif\n\nI am always open and friendly, and in return I receive arrogance against me or they completely ignore me.\nThis is what hurts the self-assessment.\n\n# I have no one to talk, no one to share the news with. Not one to ask for help. When I die, nobody will notice. \n\nhttp://i.giphy.com/l46CABOxa2Itf99bG.gif\n\n# I change people!\n\nI've got one property ... when a person begins to communicate with me, he is beginning to change. He begins to listen to the music that I like. He begins to lead a similar lifestyle. In general, people change for the better. From this, I feel somehow enhanced. And apparently, it has become another man moves away from me and goes his own way. As the chicks leave the nest as adults. Other explanation I can find.\n\n# Childhood\n\nAt school I was a \"whipping boy\".\n\nhttp://i.giphy.com/Hem0mSEEPwQBa.gif\n\nEndured constant insults, humiliation. Every day for 3 years. The school was torture for me. I did not like school, sometimes skipped lessons to avoid it all. Of course, it has affected my level of education, I studied badly.\n\nAnd also, my eyesight began to deteriorate, I did not see what was written on the blackboard. And when I admitted that I had bad eyesight, meant even more exposure to ridicule. In addition, due to health problems, but rather due to an error from talentless doctors, I had to take some strange drug. What it was I do not know, but I remember that I had to take these pills with milk. At first, nothing happened ... but then I wanted to eat every 5 minutes, I could not stop! I suffered from hunger! And accordingly, I gained weight. Needless to say, that became more humiliation for me.\n\nPerhaps it is karma. After all, before all this, I, too, along with all, mocked other classmates. Well now I know, I deserve it all.\n\nIt all ended when I graduated from high school. I changed just for the summer. Completely changed! I was starving and had grown very thin. Enrolling in college, I stopped being afraid of the people because they did not know who I was at school. Former classmates simply did not recognize me in the street. I became a different person. I started a new life with a clean slate.\n\nhttp://i.giphy.com/763KvbtkqH3e8.gif\n\n# I'm for searching myself.\n\n### Punk.\n\nOne day on one local forum, I found an ad that a punk rock band was looking for a drummer. I do not know why, or what came over me, or how my subconscious played a role, but I wrote to them that I am ready to join them.\n\nIn those years, I liked punk rock. But I did not know how to play the drums! However, I had an ear for music and rhythm. Since childhood, I remember I loved playing improvised drums.\n\nhttp://i.giphy.com/3oEjI2cJuP3Y0dcfV6.gif\n\nAt the first rehearsal something happened. But, of course, I played really disgusting. I liked that I was with other people. I liked all the socializing after the rehearsals, but the rehearsals themselves I sometimes disliked.\n\nI was getting the feeling that my lack of skill playing the drums was getting the band down. The band broke up after 2 years, played three songs in one of the amateur concerts. I still blame myself for failing them. But communicating with them gave me pleasure.\n\n### Church of Satan.\n\nhttp://i.giphy.com/xThuWk5MZglNP8IsJG.gif\n\nI've never been religious.\nOne day it so happened that I was carried by some away articles and the book \"Church Satan\" that I found on the Internet. So I soon became well versed in the sect (I still keep granted by them, the so-called \"certificate\" as a memory). And then, I began to take an active and more active role in this church.\n\nI was the first who made an unofficial website, for which I was honored with awards and praise. I was the first who wrote a skeptical analysis of the Bible. And my critiques were very popular! Actually, thanks to them that I became known.\n\nAnd then I began to get to know ones of the elders. With me, I remember, I spoke to some journalists, a student who wrote some work, theologians, members of the new sect, and anyone with an interest. Probably because I was often on the network. After all, I have never been a part from the college and at home, and did nothing.\n\nBut then, I and several other members became disillusioned, and I left the sect.\n\nAnd then there were various attempts to find myself, I was changing lifestyles and views on life.\n\nWhy did I write this? All of the above has given me some experience in dealing with people and the ability to understand who I am and why, to find my place in life.\n\nPagan Old Believers tried invite me to come, and then I almost became a skinhead.\n\n> \"What people call life - just a game, but this game is sometimes instructive, and all that it teaches - only lessons from which to borrow wisdom, therefore, ought to live.\" (C)\n\n# Loneliness gave me the alternative to communion, namely: I read a lot of books, of which learned many new things from psychology, philosophy, spirituality and languages.\n\nhttp://i.giphy.com/AbuQeC846WKOs.gif\n\nHave you noticed that being in society and when in the company of others, you do not crave training or self-development? I see this for myself when my brother visits me. I do not read books, I do not ponder any situation and theory, I just talk and spend time with my brother. Loneliness provides an incentive for development. With the help of loneliness, you really will begin to appreciate the friendship and fellowship.\n\n# This can be compared with food delicacies. If you eat delicacies every day, they will cease to be so desirable and unusual, and they will become commonplace.\n\nhttp://i.giphy.com/WmEvcZna75UfS.gif\n\n# Now.\n\nMy current way of life is very similar to Tantric Buddhism, although it is not defined by that as it has no name, and does not need to be defined as such.\n\n# Sometimes it's painful and unpleasant to look at people.\n\nhttp://i.giphy.com/JsL3hYFdvMMSs.gif\n\nI understand why they are themselves, why they have such a way of life, but I do not want to be like them and be with them in the same company. I do not like it.\n\nI never offend for a reason, I never attack, and I do no harm.\nEmpathy - what distinguishes us from animals.\n\nI value every life, no matter what that life is.\nI do not accept what most people love.\nI do everything consciously, extracting meaning and benefits from the experience.\nFor example, I have a meal. I do not eat garbage food, because it does not give to my body anything useful, since it does not contain nutrients. \n\n# I do not drink alcohol, smoke cigarettes or do drugs. \n\n\nAnd that is why people around me laugh or look at me quizzically. They say that I'm lying, sick, abnormal, or \"mother does not allow\". They say, \"in life need one needs to try everything!\" \n\nBut none of them for some reason, do not try, for example, quantum physics, a healthy lifestyle, or Buddhism.\n\n**In life, need to not only try, but also try not to try!**\n\n# I do not live with the people, but I live among the people.\n\nIf only you knew how hard all of this is ... I have to hide it all, and to adapt to the \"generally accepted norms\", in order not to be mocked. \n\nI feel somehow alien among the people. I have to wear a mask to resemble the people and not be detected.\n\nhttp://i.giphy.com/QG0th9DNdRrGw.gif\n\n> \"No pyramids of authority.\nMaster has an older brother, nothing more. And he just does the hard work that the others do not overpower. If it is otherwise, then trouble is inevitable.\nAuthority - this is a mistake \"(c).\n\nIf you have read Orwell's novel \"1984\" or watched the same film, you know, all this is happening in my country.\nPeople poisoned by propaganda, people are trying to survive, they are afraid of the authorities and freedom.\nAll this is laid bare and exacerbated in human animal instincts. The principle of flocks. Not like us - the enemy is dangerous, you need to avoid, or to die.\n\nThe population cannot tolerate dissent, any manifestation of freedom, something different from their lifestyle and worldview. In connection with this, people with a different lifestyle, look, worldview and way, becomes an object of ridicule, an outcast, a threat, an enemy.\n\nIt's not comfortable for me to live here. But leave (until the border has not yet closed) there is no possibility. It is very expensive, and I make incredibly low wages, and wages continue to fall, while food and services continue to rise in price.\n\nHow I would like live in a free country! Be yourself, do not hide anything, not trying to make excuses for my views and lifestyles.\n\nMaybe relocation to another country could change something in me, but I notice, positive emotions in me less and less and I feel less joy and desire to live.\n\nhttp://i.giphy.com/eR2OWX51qesIo.gif\n\n-Secret Writer\n\nImages and gifs: All images are by Stellabelle, all gifs are from giphy.com.", - "json_metadata": "{\"tags\":[\"secret-writer\",\"isolation\",\"self-development\",\"life\"],\"image\":[\"http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\"]}", - "last_update": "2016-08-15T17:39:09", - "created": "2016-08-15T16:44:42", - "active": "2016-08-17T15:01:48", - "last_payout": "2016-08-16T19:48:36", - "depth": 0, - "children": 43, - "net_rshares": "981828724825", - "abs_rshares": "984642850369", - "vote_rshares": "981882842624", - "children_abs_rshares": "18007718646255", - "cashout_time": "2016-09-15T19:48:36", - "max_cashout_time": "2016-08-30T21:38:48", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "356586", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "31898", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 238520, - "net_votes": 293, - "root_author": "stellabelle", - "root_permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617429, - "author": "teutonic", - "permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", - "category": "awesome", - "parent_author": "", - "parent_permlink": "awesome", - "title": "10 Amazing Optical Illusion Pictures To Mess With Your Brain", - "body": "http://www.mindmotivations.com/images/optical-illusion1.jpg \nIs the ladder going up or down?\nhttp://www.mindmotivations.com/images/optical-illusion2.jpg\nAre the dots in between the squares white, black or grey?\nhttp://www.mindmotivations.com/images/optical-illusion3.jpg \nparallel or crooked?\nhttp://www.mindmotivations.com/images/optical-illusion4.jpg\nHow many legs?\nhttp://www.mindmotivations.com/images/optical-illusion5.jpg\nFocus on the dot in the middle and then move your head backwards and forwards.\nhttp://www.mindmotivations.com/images/optical-illusion7.jpg\nIs the picture moving?\nhttp://www.mindmotivations.com/images/optical-illusion8.jpg\nIs there anything in between the different squares?\nhttp://www.mindmotivations.com/images/optical-illusion9.jpg\nface of a lady or a word?\nhttp://www.mindmotivations.com/images/optical-illusion6.jpg \nFocus on the 4 dots in the middle of the picture for 30 seconds. \nhttp://www.mindmotivations.com/images/optical-illusion10.jpg \neven possible?", - "json_metadata": "{\"tags\":[\"awesome\",\"\"],\"image\":[\"http://www.mindmotivations.com/images/optical-illusion1.jpg\"]}", - "last_update": "2016-08-15T19:35:54", - "created": "2016-08-15T19:35:54", - "active": "2016-08-15T20:10:06", - "last_payout": "2016-08-16T19:48:45", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-15T19:48:45", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "teutonic", - "root_permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 952070, - "author": "safar01", - "permlink": "lol-robot-tranformers-against-fishermen", - "category": "editing", - "parent_author": "", - "parent_permlink": "editing", - "title": "LOL ... Robot Tranformers against fishermen (steemitphotochallenge)", - "body": "\n

\n

show in the pictures are not real, but I edit them using Photoshop just

\n

 to train the imagination only.

\n

I made this picture just to entertain readers of all, 

\n

please advise the reader all my abilities to process images

\n", - "json_metadata": "{\"tags\":[\"editing\",\"with\",\"photoshop\",\"imagination\",\"steemitphotochallenge\"],\"image\":[\"https://scontent.fcgk1-1.fna.fbcdn.net/v/t1.0-9/44685_544257398931890_1432197168_n.jpg?oh=737dff7bef73ecfcaff983c130b55ee1&oe=587FF678\"]}", - "last_update": "2016-09-14T20:20:48", - "created": "2016-09-14T19:48:57", - "active": "2016-09-14T20:20:48", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 158773924, - "abs_rshares": 158773924, - "vote_rshares": 158773924, - "children_abs_rshares": 158773924, - "cashout_time": "2016-09-15T19:48:57", - "max_cashout_time": "2016-09-28T19:48:57", - "total_vote_weight": "732186422373807", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "safar01", - "root_permlink": "lol-robot-tranformers-against-fishermen", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617119, - "author": "pipertomcat", - "permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", - "category": "bitcoin", - "parent_author": "", - "parent_permlink": "bitcoin", - "title": "Western Union investing in Blockchain technology...will it be Bitcoin ? or Ripple!?", - "body": "https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg \nhttps://s19.postimg.org/jiv4eri0j/Blockchain_technology1.png\nWhy not Steem Dollars then? I think ultimately Western Union and the like may actually choose or adopt a name that includes something like \"Dollar\". Lol\nhttps://s19.postimg.org/4y9g66xo3/Bitcoinripplebanner1.png\n\nI have said to different friends over the last year or so on occasion, that I fear Western Union is about to die by Bitcoin's hand. I compare Netflix, Youtube, Google Play, Itunes,and so forth killing retail establishments like Blockbuster video. Technology and the convenience it brings, easily dominates any industry, ask Kodak. \n\n I have friends who still have to purchase money orders to pay their rent. The Apartment complex refuses personal checks and apparently doesn't want employee's accepting cash. You can join their site online for a $50 per month fee and connect your checking account. What a ripoff! \nWow if they only knew of bitcoin and the coming technology.\nhttps://s19.postimg.org/743r0p14j/725_Ly9jb2lud_GVs_ZWdy_YXBo_Lm_Nvb_S9zd_G9y_YWdl_L3_Vwb_G9h.jpg\n\n\nhttps://s19.postimg.org/fc5olot0z/e873eec95dbe6437e8b73f6dc4b474e6.jpg\nhttps://s19.postimg.org/d2hkaxk37/a9ee5c9045261e324670df9b5e3fbf0c.png\n Western Union was in discussions with Ripple Labs early last year, regarding a blockchain pilot project. By using a cheap payment network, proponents claim that companies will be able to cut down the cost of remittances.\n The following quote from Barry Gilbert , the Digital Currency Insights Founder and CEO says it best:\n“If you look at Western Union and Moneygram, they have a fantastic opportunity to take advantage of bitcoin as a financial rail and incorporate it into their business.”\n\nAfter reading the following article just now, I will have to say that I think someone like Western Union may be the key player in bringing Bitcoin to the masses! The following is an article from Bravenewcoin-http://bravenewcoin.com/news/western-union-wont-make-the-same-mistake-with-blockchain/\n\n#steemdollar\n#steem\n#westernunion\n#ripple", - "json_metadata": "{\"tags\":[\"bitcoin\",\"steemdollar\",\"steem\",\"westernunion\",\"ripple\"],\"image\":[\"https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg\"]}", - "last_update": "2016-08-15T19:14:33", - "created": "2016-08-15T19:14:33", - "active": "2016-08-15T19:15:51", - "last_payout": "2016-08-16T19:49:42", - "depth": 0, - "children": 1, - "net_rshares": 53638386, - "abs_rshares": 53638386, - "vote_rshares": 53638386, - "children_abs_rshares": "45063474229", - "cashout_time": "2016-09-15T19:49:42", - "max_cashout_time": "2016-09-04T21:13:12", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 9, - "root_author": "pipertomcat", - "root_permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-15T19:12:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "crowe", + "author_rewards": 0, + "beneficiaries": [], + "body": "I thought my viewers would be interested in the place I actually live in. I live in a City called Ashkelon. Its about 7 miles North of Gaza. Last year in June when some missiles were being shot toward Israel the Sirens in Ashkelon went off. I filmed this video from my deck. The video is what we hear when this happens. \n\nhttps://www.youtube.com/watch?v=Ky23yJaNDfo", + "cashout_time": "2016-09-15T19:47:27", + "category": "israel", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T19:12:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617094, + "json_metadata": "{\"tags\":[\"israel\",\"siren\",\"gaza\",\"politics\",\"steemit\"],\"links\":[\"https://www.youtube.com/watch?v=Ky23yJaNDfo\"]}", + "last_payout": "2016-08-16T19:47:27", + "last_update": "2016-08-15T19:12:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "israel", + "percent_hbd": 10000, + "permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "reward_weight": 10000, + "root_author": "crowe", + "root_permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "title": "Israeli Bomb Siren goes off in my City. I filmed this from my deck.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "1339555910464", + "active": "2016-08-15T19:44:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "luminarycrush", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

I came across a lone blooming cactus during a hike this weekend.  Photos taken at 946' ASL above Two Harbors, Catalina Island.

\n

\n


\n

\n


\n

\n", + "cashout_time": "2016-09-15T19:47:27", + "category": "photography", + "children": 0, + "children_abs_rshares": "1339555910464", + "created": "2016-08-15T19:44:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617542, + "json_metadata": "{\"tags\":[\"photography\",\"cactus\",\"catalinaisland\",\"california\",\"twoharbors\"],\"image\":[\"https://scontent.xx.fbcdn.net/t31.0-8/13988224_10154518762224175_252304266230235242_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13923665_10154518762269175_2030254348907005554_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13988240_10154518762254175_9097905240858144855_o.jpg\"]}", + "last_payout": "2016-08-16T19:47:27", + "last_update": "2016-08-15T19:44:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-01T02:13:51", + "net_rshares": "1339555910464", + "net_votes": 14, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "cactus-in-the-clouds-catalina-island", + "reward_weight": 10000, + "root_author": "luminarycrush", + "root_permlink": "cactus-in-the-clouds-catalina-island", + "title": "Cactus in the Clouds - Catalina Island", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "1339555910464" + }, + { + "abs_rshares": "76217996022", + "active": "2016-08-17T15:39:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "brunopro", + "author_rewards": 13512, + "beneficiaries": [], + "body": "http://imgur.com/HrpWWaK.png\n\n## And there are changes again regarding the duration until the payout occurs, now your post will have a minimum 24 hours duration until the first payout. \n\nPersonally I think that they should never have changed it to 12 hours. I didn't understand the logic behind it at the time and I still don't. This 24h period it's ideal because this way the post has better chances of overcoming the first publish period and get more traction. It also enables of a higher possibility of being seen and upvoted by the users that on the 12h were sleeping or simply away.\n\n# And you? What do you think about this change?\n\n----\n\nEdit post-publish: I've notice that I can't upvote a post that has been up for a month. Is this new also? I thought a post would always be open for an upvote? Can anyone reply to this question? thanks!\n\n----\n\n###### Photo Credits: https://unsplash.com/@sonjalangford", + "cashout_time": "2016-09-15T19:47:42", + "category": "steemit", + "children": 22, + "children_abs_rshares": "78071773184", + "created": "2016-08-15T18:36:36", + "curator_payout_value": { + "amount": "3483", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 616664, + "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"opinion\",\"reward\"],\"image\":[\"http://imgur.com/HrpWWaK.png\"]}", + "last_payout": "2016-08-16T19:47:42", + "last_update": "2016-08-15T18:51:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-08-30T20:41:45", + "net_rshares": "76217996022", + "net_votes": 82, + "parent_author": "", + "parent_permlink": "steemit", + "percent_hbd": 10000, + "permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "reward_weight": 10000, + "root_author": "brunopro", + "root_permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "title": "LATEST NEWS: Payouts are back to 24H - What do you think about it? [ Quick read / Opinion Article ]", + "total_payout_value": { + "amount": "20200", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "76217996022" + }, + { + "abs_rshares": 0, + "active": "2016-08-15T19:50:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "yassinebentour", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

http://unitedcivilrights.org/images/fa-prprty.gif

\n

The purpose of property rights is to mitigate conflict over scarce, rivalrous resources. To have a property right over a scarce, rivalrous resource is to have the right to exclude others from using that resource in the attainment of some ends. For example, I have property rights over my body, which means I can exclude others from using my body for sexual pleasure or labor without my consent. If they do access my body in such a way without my consent, it's called rape or slavery, respectively. Likewise, I have property rights over the accumulated capital for which I consensually trade my time and labor, which means I have the right to exclude people from using my accumulated capital without my consent. When someone accesses my accumulated capital in such a way without my consent, it's called theft or trespass.
\nScale doesn't change this. If I transform my accumulated capital into a factory by hiring people who voluntarily exchange the product of their labor for some of my accumulated capital, this means that they value what they receive in exchange for working more than they value the direct product of their labor (the factory). Likewise, it means I value the factory more than the accumulated capital I gave up for it. This is a win-win situation, or a positive sum game. The workers I hired retain property rights over the capital they received as payment for their labor, which means they can exclude others from the use of their newly acquired accumulated capital, and I retain property rights over the factory, which means I can exclude others from the use of my factory.
\nDiscrepancies between marginal benefit don't change this either. A consensual exchange doesn't become theft just because one party benefits more from the exchange than another. If this wasn't the case, every single instance of buyer's remorse would be indicative of theft. If someone agrees to produce a walking stick in exchange for ten dollars and the purchaser of the walking stick then sells it to someone else for twenty dollars, how can it be claimed that the producer of the walking stick was a victim of theft if they haven't been deprived of the ten dollars for which they voluntarily exchanged the walking stick? Would it have been reasonable to expect that the first purchaser of the walking stick wouldn't have obtained more than ten dollars of value from it given that the exchange wouldn't have happened in the first place if they hadn't valued the walking stick more than they valued ten dollars?
\nOf course not. Anything that happens to the walking stick after the original exchange is no business of the producer of the walking stick because said producer already exchanged his property rights to the walking stick for property rights to a different form of accumulated capital (ten dollars).
\nLikewise, if I use more of my accumulated capital to hire workers to work in my factory, they will only accept my offer of employment if they value what I'm offering more than their own free time and more than whatever stake they may have otherwise had in the product they will be producing. In other words, if they accept employment, it will be with the understanding that they're giving up any stake in what they're producing in exchange for what I'm offering them. Maybe my factory assembles televisions. Maybe one worker can produce one television per hour. Would they be able to produce televisions this efficiently without my previous investment in production capital (which hasn't even been recouped and probably never will be completely given that maintenance, employment and higher order production good costs are a revolving door)? Would they be able to produce televisions AT ALL without this previous investment in production capital? Of course not, and they know this, which is why they're willing to give up both their leisure and whatever stake their labor may have otherwise entitled them to in the production of a television in exchange for a fixed amount of accumulated capital.
\nAs was the case with the walking stick, whatever happens to the television after this exchange occurs is no business of the worker. How could the future sale of the television constitute theft of the worker's accumulated capital if it can't be demonstrated that the worker was deprived of the accumulated capital that he voluntarily accepted as payment for the production of the television, especially given that the television was produced with other accumulated capital (plastic, circuits, labor saving devices, etc.) that the worker never even owned?
\nIt can't.
\nProperty ownership necessarily implies exclusivity, which means that \"private property\" is redundant, as is \"personal property\". The words \"private\" and \"personal\" denote exclusivity, which is already implied by the word \"property\". To differentiate between \"personal property\" and \"private property\" is therefore a distinction without a difference. This implication of exclusivity also means that \"public property\" is a contradiction in terms. If no one can be excluded from using the resource, it isn't property. Resources that aren't scarce or rivalrous likewise can not be considered property, which means that \"intellectual property\" is also a contradiction in terms.
\nThis means that seizing the means of production is a genuine form of theft and that \"pirating\" music, software, art and writing is not, which may seem counter-intuitive if you attended the indoctrination camps euphemistically known as \"public schools\" when you were growing up.

\n", + "cashout_time": "2016-09-15T19:47:48", + "category": "writing", + "children": 2, + "children_abs_rshares": "25854883309", + "created": "2016-08-15T19:43:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617534, + "json_metadata": "{\"tags\":[\"writing\",\"rights\"],\"image\":[\"http://unitedcivilrights.org/images/fa-prprty.gif\"]}", + "last_payout": "2016-08-16T19:47:48", + "last_update": "2016-08-15T19:43:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-01T01:02:42", + "net_rshares": -104004690671, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "writing", + "percent_hbd": 10000, + "permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "reward_weight": 736, + "root_author": "yassinebentour", + "root_permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "title": "The purpose of property rights is to mitigate conflict over scarce, rivalrous resources", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-15T19:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "libtrian.outlet", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\nFriday's move is the clearest indication yet that the White House is serious about getting Obama\u2019s legacy trade deal.\n\nThe White House put Congress on notice Friday morning that it will be sending lawmakers a bill to implement President Barack Obama\u2019s landmark Trans-Pacific Partnership agreement \u2014 a move intended to infuse new energy into efforts to ratify the flat-lining trade pact.\n\nThe move establishes a 30-day minimum before the administration can present the legislation, but the White House is unlikely to do so amid the heated rhetoric of a presidential campaign in which both major party nominees have depicted free trade deals as massive job killers.\n\nFriday's notification is the clearest signal yet that the White House is serious about getting Obama\u2019s legacy trade deal \u2014 the biggest in U.S. history \u2014 passed by the end of the year, as he has vowed to do despite the misgivings of Republican leaders and the outright opposition of a majority of Democrats in Congress.\n\nStriking a defiant tone, Obama predicted at a press conference last week that the economic centerpiece of his strategic pivot to Asia would pass in the lame-duck session, saying he\u2019d like to sit down with lawmakers after the election to discuss the \"actual facts\" behind the deal, rather than toss it around like a \"political football.\"\n\n\"We are part of a global economy. We're not reversing that,\" Obama said, describing the necessity of international supply chains and the importance of the export sector to U.S. jobs and the economy. \"The notion that we're going to pull that up root and branch is unrealistic.\"\n\nThe notification, a new requirement of the trade promotion authority legislation Congress passed last year to expedite passage of the Asia-Pacific pact, is \u201cmeant to ensure early consultations between the administration and Congress,\u201d Matt McAlvanah, a spokesman for the Office of the U.S. Trade Representative, said in a statement. \u201cAs such, the draft SAA [Statement of Administrative Action] was sent today in order to continue to promote transparency and collaboration in the TPP process.\u201d\n\nThe White House's draft document describes the major steps the administration will take to implement any changes to U.S. law required by the deal. Those actions range from the mundane \u2014 designating an administration point of contact for communications about the pact \u2014 to the complex \u2014 setting up procedures to stop harmful surges of agricultural or textile imports.\n\nBut the deal is going nowhere until the White House addresses a number of concerns lawmakers have raised about the trade agreement, which Canada, Mexico, Japan and eight other countries joined the United States in signing last February.\n\nFirst and foremost: satisfying the concerns of Senate Finance Committee Chairman Orrin Hatch (R-Utah) and other lawmakers about protections for a new class of drugs known as biologics. They say the pact provides too short a monopoly period for rights to research and development data. Other lawmakers have complained the deal would bar tobacco companies from seeking redress through investor-state dispute arbitrage for damages resulting from country regulations. Still others are seeking assurances that member countries will abide by their commitments to provide access for U.S. pork and dairy exports.\n\nUntil these issues are resolved, House Speaker Paul Ryan and Senate Majority Leader Mitch McConnell have made clear that the pact will not get the votes it needs to pass.\n\nRyan's spokeswoman, AshLee Strong, reiterated the point on Friday.\n\n\u201cAs Speaker Ryan has stated for months, there are problems that remain with the administration\u2019s TPP deal, and there can be no movement before these concerns are addressed,\" she said.\n\nDemocrats, meanwhile, have largely called the deal a nonstarter over concerns about the enforceability of labor and environmental standards in countries like Vietnam and the lack of strong protections against currency manipulation.\n\nThe administration claims it is making progress on these issues and has resolved others, including banking industry concerns over the exclusion of financial data from rules prohibiting countries from requiring local storage.\n\nBut that doesn\u2019t change the reality of the down-ballot drag that candidates are facing as they campaign back home in their districts. In a reversal from years past, many Republicans are on the defensive about their support for free trade because of Donald Trump\u2019s daily tirades about what he characterizes as the serious economic damage wrought by trade agreements like the North American Free Trade Agreement and the TPP as well as his complaints that China is flouting international trade rules.\n\nThe Republican platform picked up on this theme, saying significant trade deals \"should not be rushed or undertaken in a Lame Duck Congress.\"\n\nThe small band of Democrats who the administration hopes will support the TPP are facing increased pressure within their own party to abandon the president on the agreement. Sens. Bernie Sanders\u2019 and Elizabeth Warren\u2019s strong condemnations of the trade deal have forced Hillary Clinton, who supported the TPP as Obama\u2019s secretary of state, to reject the pact to appease the liberal wing.\n\n\"I will stop any trade deal that kills jobs or holds down wages, including the Trans-Pacific Partnership,\" Clinton said during an economic policy speech at an automotive manufacturing plant in Warren, Mich., on Thursday. \"I oppose it now, I'll oppose it after the election and I'll oppose it as president.\"\n\nClinton\u2019s clear rejection of the trade deal has emboldened liberal groups like the Warren-aligned Progressive Change Campaign Committee to launch a campaign to press Democrats to publicly oppose a TPP vote in the lame duck.\n\nSanders also called on Democratic congressional leaders to go on record against the White House\u2019s effort to get the deal done by the end of the year, saying the agreement is opposed by every trade union and the grassroots base of the Democratic Party.\n\n\"I am disappointed by the president's decision to continue pushing forward on the disastrous Trans-Pacific Partnership trade agreement that will cost American jobs, harm the environment, increase the cost of prescription drugs and threaten our ability to protect public health,\u201d the Vermont senator said in a statement after learning of the White House's action on Friday.\n\nMeanwhile, the administration continues to press the deal in key congressional districts \u2014 especially those of Democrats who supported the trade promotion authority bill last year.\n\nInterior Secretary Sally Jewell returned to her hometown of Seattle last month to tout the TPP\u2019s potential effects on the environment at a Washington Council on International Trade event with more than 150 business leaders.\n\nThen, last week, Commerce Secretary Penny Pritzker hit the San Diego and Boulder districts of Reps. Susan Davis and Jared Polis \u2014 two of the 28 House Democrats that voted for the bill \u2014 and visited a steel plant in Cleveland to promote the TPP. Treasury Secretary Jack Lew did the same when he met with local and state officials and Fortune 500 business executives in Minneapolis.\n\nOn Thursday, Undersecretary of Commerce for Oceans and Atmosphere Kathryn Sullivan spoke at a Seattle clean energy business roundtable focused on the TPP and the environment. And this Monday, Deputy U.S. Trade Representative Robert Holleyman will participate in a World Affairs Council of Atlanta discussion on the trade deal featuring former Republican Sen. Saxby Chambliss and UPS CEO David Abney.\n\nAs the political fight plays out, the nuts-and-bolts process of moving the deal forward will continue. Once Congress reviews the draft notification that the White House submitted on Friday, the administration can move forward with sending lawmakers a final statement and the draft of the implementing bill itself. The legislation will describe the actual changes to U.S. law to comply with the rules of the trade agreement.\n\nAfter that, the Senate Finance and House Ways and Means committees could hold \u201cmock markups\u201d of the bill (because under trade promotion authority, Congress is not actually allowed to tinker with the agreement or its implementing legislation itself, but it can ask the administration to do so).\n\nBut given the tenor of the elections, the entire process could be pushed into a crowded lame-duck legislation session, which would mean no time for the mock markups. Instead, there could be a lot of deal-making between the White House and congressional leadership to move the bill before Clinton or Trump takes over on Jan. 20.\n\nObama said last week that he\u2019s ready to press his case. \"Right now, I'm president, and I'm for it. And I think I've got the better argument,\" he said.\n\nSource:\nwww.politico.com/story/2016/08/obama-congress-trade-warning-226952", + "cashout_time": "2016-09-15T19:47:57", + "category": "politics", + "children": 1, + "children_abs_rshares": "11700424464", + "created": "2016-08-15T19:44:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617538, + "json_metadata": "{\"tags\":[\"politics\",\"tpp\",\"conspiracy\",\"news\",\"freetrade\"],\"image\":[\"http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\"]}", + "last_payout": "2016-08-16T19:47:57", + "last_update": "2016-08-15T19:44:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-04T23:37:39", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "", + "parent_permlink": "politics", + "percent_hbd": 10000, + "permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "reward_weight": 2046, + "root_author": "libtrian.outlet", + "root_permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "title": "Obama puts Congress on notice: TPP is coming", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "89025972926", + "active": "2016-09-15T15:19:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "profanarky", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

In which the folks in the subway find themselves some unwelcome visitors...

\n

29

\n

   \u201cDo NOT panic! There is no reason to believe that this is anything more than just a power outage.\u201d  

\n

   \u201cBut-- BUT-- how can it be the whole state?\u201d One wide-eyed young woman, one of the aforementioned punk rockers actually raised her hand.  

\n

   \u201cYeah, it\u2019s gotta be Al Qaeda, who the hell else could it be?!!\u201d Another idiot bellowed.    

\n

   Others followed, there words quickly jumbling together into a tidal wave of paranoia. It only took one idiot to get the ball rolling.   

\n

   \u201cIt\u2019s gotta be the terrorists, who the hell else could it be?\u201d    

\n

   \u201cOh my god, I gotta get to my kids\u2026 My kids are still at the day care!!!\u201d   

\n

   \u201cDid an airplane hit a power plant??!! OH GOD!! DID AN AIRPLANE HIT ONE OF THE NUCLEAR PLANTS??!!\u201d    

\n

   She heard it all and it was nothing more than a buzzing, though an irritating one nonetheless. Her instincts, those things cops called their gut instincts told her Mister Blue-eyes was the key, the only thing really important right now. Mister Blue-eyes and whatever the hell it was he was watching outside their little tin prison.  

\n

     \u201cNOW LISTEN DAMMIT!!!\u201d She hollered, trying to make herself louder than the loudest of them, a difficult task with New Yorkers. \u201cI told you, there\u2019s no goddamn reason to think it\u2019s terrorism! This has happened before in our lifetimes and it\u2019s gonna happen again. As far as I\u2019m concerned it ain\u2019t nothing more than a power outage. Going FUCKING crazy ain\u2019t gonna help us any, dammit!!\u201d  

\n

   They kept going, some of them, but most paid her mind and listened, their faces drawn and tired. They\u2019d suffered enough the last few years, New Yorkers. There wasn\u2019t a one of them, including herself, who hadn\u2019t had their world turned literally upside down two years before. The terror they\u2019d lived was fresh on their minds, fresh and ready to burst again and overwhelm them. It was a hard thing, it truly, truly was.     

\n

   \u201cNow I just got off the phone with my partner and he says he\u2019s gonna get people down here to get us out as soon as possible. There are trains stalled all over the city. Rescue workers are leading those people out from underground and up to their homes. He told me there would be a group of them here soon. He was gonna get them here.\u201d    

\n

   \u201cIs that them?\u201d Came the deep voice of Jeffrey Thornton. He\u2019d been quiet while the others yelled, silent and listening to what she had to say. The moment she\u2019d spoken of rescue his eyes had gone outside the train and he saw what Mister Blue-eyes had apparently been watching.    

\n

   \u201cWhere?\u201d She asked him, stumbling over and peering outside, right next to the stranger in the baseball cap.       

\n

   She saw nothing at first, her eyes trying to focus past the reflections in the glass and out into the pitch black.      

\n

   \u201cThose--,\u201d Mister Blue-eyes said, at last speaking, his voice accented in a manner she\u2019d never heard before. Something about it was as wrong and as otherworldly as his eyes were. \u201c---are not rescuers of any sort.\u201d    

\n

   Out of the corner of her eye she saw him rise and back away from the window and once again her instincts spoke to her. They told her to back away as well, and to not stop there. They said to her, no, they screamed at her to run, to run as far from here as possible.      

\n

   But she didn\u2019t, she had to see what they were, had to see for herself.    

\n

   When the figures finally did materialize from the darkness, they weren\u2019t human at all.     

\n

End Part 29

\n

         If you find yourself interested in the whole damnedable thing and wanna throw me a few bucks, here's a link to it on Amazon.      

\n

  https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1   

\n


\n", + "cashout_time": "2016-09-15T19:48:29", + "category": "story", + "children": 3, + "children_abs_rshares": "89614201477", + "created": "2016-09-14T19:15:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 951797, + "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"creative\",\"writers\",\"writing\"],\"image\":[\"http://www.followingthenerd.com/site/wp-content/uploads/shadowpeople.jpg\"],\"links\":[\"https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T19:15:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-28T19:15:09", + "net_rshares": "89025972926", + "net_votes": 3, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "the-dragon-s-blood-part-29", + "reward_weight": 10000, + "root_author": "profanarky", + "root_permlink": "the-dragon-s-blood-part-29", + "title": "The Dragon's Blood (Part 29)", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "401621156077855379", + "vote_rshares": "89025972926" + }, + { + "abs_rshares": "984642850369", + "active": "2016-08-17T15:01:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "stellabelle", + "author_rewards": 238520, + "beneficiaries": [], + "body": "http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\n\n# I have to hide my true self.\n\nIt just so happened that I was constantly losing my friends. It's like a curse was put on me.\nJudging by the reviews from former colleagues and friends, I was a \"nice and friendly person who was always willing to help.\"\n\n# However, constantly all these friends ceased to be friends with me, for no reason. They just stopped communicating, no quarrels, no disagreements and other things!\n\nI had a lot of friends ... But our paths diverged.\n\nIn my childhood I had friends, but my family moved to another city, and I lost my friends. In the new city, I made new friends. I had one close friend. Even his move to another part of the city has not prevented us from seeing each other every weekend. And one day, he was taken into the army. And one day, his aunt came to me, and said that he is no more, he was killed when he was on sentry duty ...\n\n![imaged6bd4.jpg](https://www.steemimg.com/images/2016/07/26/imaged6bd4.jpg)\n\nPeople ignore me constantly on the Internet, too. On any website, forum. I try to communicate, start a dialogue, and all people just ignore me. Suffice it to ask someone about something, write, and so on, and no response. \n\n# It's as if I did not exist.\n\nhttp://i.giphy.com/3o72FhMTVaOTycqObu.gif\n\nI am always open and friendly, and in return I receive arrogance against me or they completely ignore me.\nThis is what hurts the self-assessment.\n\n# I have no one to talk, no one to share the news with. Not one to ask for help. When I die, nobody will notice. \n\nhttp://i.giphy.com/l46CABOxa2Itf99bG.gif\n\n# I change people!\n\nI've got one property ... when a person begins to communicate with me, he is beginning to change. He begins to listen to the music that I like. He begins to lead a similar lifestyle. In general, people change for the better. From this, I feel somehow enhanced. And apparently, it has become another man moves away from me and goes his own way. As the chicks leave the nest as adults. Other explanation I can find.\n\n# Childhood\n\nAt school I was a \"whipping boy\".\n\nhttp://i.giphy.com/Hem0mSEEPwQBa.gif\n\nEndured constant insults, humiliation. Every day for 3 years. The school was torture for me. I did not like school, sometimes skipped lessons to avoid it all. Of course, it has affected my level of education, I studied badly.\n\nAnd also, my eyesight began to deteriorate, I did not see what was written on the blackboard. And when I admitted that I had bad eyesight, meant even more exposure to ridicule. In addition, due to health problems, but rather due to an error from talentless doctors, I had to take some strange drug. What it was I do not know, but I remember that I had to take these pills with milk. At first, nothing happened ... but then I wanted to eat every 5 minutes, I could not stop! I suffered from hunger! And accordingly, I gained weight. Needless to say, that became more humiliation for me.\n\nPerhaps it is karma. After all, before all this, I, too, along with all, mocked other classmates. Well now I know, I deserve it all.\n\nIt all ended when I graduated from high school. I changed just for the summer. Completely changed! I was starving and had grown very thin. Enrolling in college, I stopped being afraid of the people because they did not know who I was at school. Former classmates simply did not recognize me in the street. I became a different person. I started a new life with a clean slate.\n\nhttp://i.giphy.com/763KvbtkqH3e8.gif\n\n# I'm for searching myself.\n\n### Punk.\n\nOne day on one local forum, I found an ad that a punk rock band was looking for a drummer. I do not know why, or what came over me, or how my subconscious played a role, but I wrote to them that I am ready to join them.\n\nIn those years, I liked punk rock. But I did not know how to play the drums! However, I had an ear for music and rhythm. Since childhood, I remember I loved playing improvised drums.\n\nhttp://i.giphy.com/3oEjI2cJuP3Y0dcfV6.gif\n\nAt the first rehearsal something happened. But, of course, I played really disgusting. I liked that I was with other people. I liked all the socializing after the rehearsals, but the rehearsals themselves I sometimes disliked.\n\nI was getting the feeling that my lack of skill playing the drums was getting the band down. The band broke up after 2 years, played three songs in one of the amateur concerts. I still blame myself for failing them. But communicating with them gave me pleasure.\n\n### Church of Satan.\n\nhttp://i.giphy.com/xThuWk5MZglNP8IsJG.gif\n\nI've never been religious.\nOne day it so happened that I was carried by some away articles and the book \"Church Satan\" that I found on the Internet. So I soon became well versed in the sect (I still keep granted by them, the so-called \"certificate\" as a memory). And then, I began to take an active and more active role in this church.\n\nI was the first who made an unofficial website, for which I was honored with awards and praise. I was the first who wrote a skeptical analysis of the Bible. And my critiques were very popular! Actually, thanks to them that I became known.\n\nAnd then I began to get to know ones of the elders. With me, I remember, I spoke to some journalists, a student who wrote some work, theologians, members of the new sect, and anyone with an interest. Probably because I was often on the network. After all, I have never been a part from the college and at home, and did nothing.\n\nBut then, I and several other members became disillusioned, and I left the sect.\n\nAnd then there were various attempts to find myself, I was changing lifestyles and views on life.\n\nWhy did I write this? All of the above has given me some experience in dealing with people and the ability to understand who I am and why, to find my place in life.\n\nPagan Old Believers tried invite me to come, and then I almost became a skinhead.\n\n> \"What people call life - just a game, but this game is sometimes instructive, and all that it teaches - only lessons from which to borrow wisdom, therefore, ought to live.\" (C)\n\n# Loneliness gave me the alternative to communion, namely: I read a lot of books, of which learned many new things from psychology, philosophy, spirituality and languages.\n\nhttp://i.giphy.com/AbuQeC846WKOs.gif\n\nHave you noticed that being in society and when in the company of others, you do not crave training or self-development? I see this for myself when my brother visits me. I do not read books, I do not ponder any situation and theory, I just talk and spend time with my brother. Loneliness provides an incentive for development. With the help of loneliness, you really will begin to appreciate the friendship and fellowship.\n\n# This can be compared with food delicacies. If you eat delicacies every day, they will cease to be so desirable and unusual, and they will become commonplace.\n\nhttp://i.giphy.com/WmEvcZna75UfS.gif\n\n# Now.\n\nMy current way of life is very similar to Tantric Buddhism, although it is not defined by that as it has no name, and does not need to be defined as such.\n\n# Sometimes it's painful and unpleasant to look at people.\n\nhttp://i.giphy.com/JsL3hYFdvMMSs.gif\n\nI understand why they are themselves, why they have such a way of life, but I do not want to be like them and be with them in the same company. I do not like it.\n\nI never offend for a reason, I never attack, and I do no harm.\nEmpathy - what distinguishes us from animals.\n\nI value every life, no matter what that life is.\nI do not accept what most people love.\nI do everything consciously, extracting meaning and benefits from the experience.\nFor example, I have a meal. I do not eat garbage food, because it does not give to my body anything useful, since it does not contain nutrients. \n\n# I do not drink alcohol, smoke cigarettes or do drugs.\u00a0\n\n\nAnd that is why people around me laugh or look at me quizzically. They say that I'm lying, sick, abnormal, or \"mother does not allow\". They say, \"in life need one needs to try everything!\" \n\nBut none of them for some reason, do not try, for example, quantum physics, a healthy lifestyle, or Buddhism.\n\n**In life, need to not only try, but also try not to try!**\n\n# I do not live with the people, but I live among the people.\n\nIf only you knew how hard all of this is ... I have to hide it all, and to adapt to the \"generally accepted norms\", in order not to be mocked. \n\nI feel somehow alien among the people. I have to wear a mask to resemble the people and not be detected.\n\nhttp://i.giphy.com/QG0th9DNdRrGw.gif\n\n> \"No pyramids of authority.\nMaster has an older brother, nothing more. And he just does the hard work that the others do not overpower. If it is otherwise, then trouble is inevitable.\nAuthority - this is a mistake \"(c).\n\nIf you have read Orwell's novel \"1984\" or watched the same film, you know, all this is happening in my country.\nPeople poisoned by propaganda, people are trying to survive, they are afraid of the authorities and freedom.\nAll this is laid bare and exacerbated in human animal instincts. The principle of flocks. Not like us - the enemy is dangerous, you need to avoid, or to die.\n\nThe population cannot tolerate dissent, any manifestation of freedom, something different from their lifestyle and worldview. In connection with this, people with a different lifestyle, look, worldview and way, becomes an object of ridicule, an outcast, a threat, an enemy.\n\nIt's not comfortable for me to live here. But leave (until the border has not yet closed) there is no possibility. It is very expensive, and I make incredibly low wages, and wages continue to fall, while food and services continue to rise in price.\n\nHow I would like live in a free country! Be yourself, do not hide anything, not trying to make excuses for my views and lifestyles.\n\nMaybe relocation to another country could change something in me, but I notice, positive emotions in me less and less and I feel less joy and desire to live.\n\nhttp://i.giphy.com/eR2OWX51qesIo.gif\n\n-Secret Writer\n\nImages and gifs: All images are by Stellabelle, all gifs are from giphy.com.", + "cashout_time": "2016-09-15T19:48:36", + "category": "secret-writer", + "children": 43, + "children_abs_rshares": "18007718646255", + "created": "2016-08-15T16:44:42", + "curator_payout_value": { + "amount": "31898", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 615287, + "json_metadata": "{\"tags\":[\"secret-writer\",\"isolation\",\"self-development\",\"life\"],\"image\":[\"http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\"]}", + "last_payout": "2016-08-16T19:48:36", + "last_update": "2016-08-15T17:39:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-08-30T21:38:48", + "net_rshares": "981828724825", + "net_votes": 293, + "parent_author": "", + "parent_permlink": "secret-writer", + "percent_hbd": 10000, + "permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "reward_weight": 10000, + "root_author": "stellabelle", + "root_permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "title": "SECRET WRITER: I Feel Like An Alien Among People In My Country", + "total_payout_value": { + "amount": "356586", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "981882842624" + }, + { + "abs_rshares": 0, + "active": "2016-08-15T20:10:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "teutonic", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://www.mindmotivations.com/images/optical-illusion1.jpg \nIs the ladder going up or down?\nhttp://www.mindmotivations.com/images/optical-illusion2.jpg\nAre the dots in between the squares white, black or grey?\nhttp://www.mindmotivations.com/images/optical-illusion3.jpg \nparallel or crooked?\nhttp://www.mindmotivations.com/images/optical-illusion4.jpg\nHow many legs?\nhttp://www.mindmotivations.com/images/optical-illusion5.jpg\nFocus on the dot in the middle and then move your head backwards and forwards.\nhttp://www.mindmotivations.com/images/optical-illusion7.jpg\nIs the picture moving?\nhttp://www.mindmotivations.com/images/optical-illusion8.jpg\nIs there anything in between the different squares?\nhttp://www.mindmotivations.com/images/optical-illusion9.jpg\nface of a lady or a word?\nhttp://www.mindmotivations.com/images/optical-illusion6.jpg \nFocus on the 4 dots in the middle of the picture for 30 seconds. \nhttp://www.mindmotivations.com/images/optical-illusion10.jpg \neven possible?", + "cashout_time": "2016-09-15T19:48:45", + "category": "awesome", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-15T19:35:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617429, + "json_metadata": "{\"tags\":[\"awesome\",\"\"],\"image\":[\"http://www.mindmotivations.com/images/optical-illusion1.jpg\"]}", + "last_payout": "2016-08-16T19:48:45", + "last_update": "2016-08-15T19:35:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "awesome", + "percent_hbd": 10000, + "permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "reward_weight": 10000, + "root_author": "teutonic", + "root_permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "title": "10 Amazing Optical Illusion Pictures To Mess With Your Brain", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 158773924, + "active": "2016-09-14T20:20:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "safar01", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

show in the pictures are not real, but I edit them using Photoshop just

\n

 to train the imagination only.

\n

I made this picture just to entertain readers of all, 

\n

please advise the reader all my abilities to process images

\n", + "cashout_time": "2016-09-15T19:48:57", + "category": "editing", + "children": 0, + "children_abs_rshares": 158773924, + "created": "2016-09-14T19:48:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 952070, + "json_metadata": "{\"tags\":[\"editing\",\"with\",\"photoshop\",\"imagination\",\"steemitphotochallenge\"],\"image\":[\"https://scontent.fcgk1-1.fna.fbcdn.net/v/t1.0-9/44685_544257398931890_1432197168_n.jpg?oh=737dff7bef73ecfcaff983c130b55ee1&oe=587FF678\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T20:20:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-28T19:48:57", + "net_rshares": 158773924, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "editing", + "percent_hbd": 10000, + "permlink": "lol-robot-tranformers-against-fishermen", + "reward_weight": 10000, + "root_author": "safar01", + "root_permlink": "lol-robot-tranformers-against-fishermen", + "title": "LOL ... Robot Tranformers against fishermen (steemitphotochallenge)", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "732186422373807", + "vote_rshares": 158773924 + }, + { + "abs_rshares": 53638386, + "active": "2016-08-15T19:15:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "pipertomcat", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg \nhttps://s19.postimg.org/jiv4eri0j/Blockchain_technology1.png\nWhy not Steem Dollars then? I think ultimately Western Union and the like may actually choose or adopt a name that includes something like \"Dollar\". Lol\nhttps://s19.postimg.org/4y9g66xo3/Bitcoinripplebanner1.png\n\nI have said to different friends over the last year or so on occasion, that I fear Western Union is about to die by Bitcoin's hand. I compare Netflix, Youtube, Google Play, Itunes,and so forth killing retail establishments like Blockbuster video. Technology and the convenience it brings, easily dominates any industry, ask Kodak. \n\n I have friends who still have to purchase money orders to pay their rent. The Apartment complex refuses personal checks and apparently doesn't want employee's accepting cash. You can join their site online for a $50 per month fee and connect your checking account. What a ripoff! \nWow if they only knew of bitcoin and the coming technology.\nhttps://s19.postimg.org/743r0p14j/725_Ly9jb2lud_GVs_ZWdy_YXBo_Lm_Nvb_S9zd_G9y_YWdl_L3_Vwb_G9h.jpg\n\n\nhttps://s19.postimg.org/fc5olot0z/e873eec95dbe6437e8b73f6dc4b474e6.jpg\nhttps://s19.postimg.org/d2hkaxk37/a9ee5c9045261e324670df9b5e3fbf0c.png\n Western Union was in discussions with Ripple Labs early last year, regarding a blockchain pilot project. By using a cheap payment network, proponents claim that companies will be able to cut down the cost of remittances.\n The following quote from Barry Gilbert , the Digital Currency Insights Founder and CEO says it best:\n\u201cIf you look at Western Union and Moneygram, they have a fantastic opportunity to take advantage of bitcoin as a financial rail and incorporate it into their business.\u201d\n\nAfter reading the following article just now, I will have to say that I think someone like Western Union may be the key player in bringing Bitcoin to the masses! The following is an article from Bravenewcoin-http://bravenewcoin.com/news/western-union-wont-make-the-same-mistake-with-blockchain/\n\n#steemdollar\n#steem\n#westernunion\n#ripple", + "cashout_time": "2016-09-15T19:49:42", + "category": "bitcoin", + "children": 1, + "children_abs_rshares": "45063474229", + "created": "2016-08-15T19:14:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617119, + "json_metadata": "{\"tags\":[\"bitcoin\",\"steemdollar\",\"steem\",\"westernunion\",\"ripple\"],\"image\":[\"https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg\"]}", + "last_payout": "2016-08-16T19:49:42", + "last_update": "2016-08-15T19:14:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-04T21:13:12", + "net_rshares": 53638386, + "net_votes": 9, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_hbd": 10000, + "permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "reward_weight": 10000, + "root_author": "pipertomcat", + "root_permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "title": "Western Union investing in Blockchain technology...will it be Bitcoin ? or Ripple!?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 53638386 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json index 6844aa48..a29062bd 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 961233, - "author": "szklaneczka", - "permlink": "iconomi-why-we-need-found-management-explained-on-graphs", - "category": "cryptocurrency", - "parent_author": "", - "parent_permlink": "cryptocurrency", - "title": "ICONOMI - why we need found management explained on graphs.", - "body": "**ICONOMI found management platform** is currently in ICO and you can still invest. \n\nThat is most anticipated platform of 2016 why You may ask me. I will give you some graph and explanation. Solutions like ICONOMI are very popular in old economy people want be rich and wanted get more profit so they tried give money to people who know more about trading. Found management platforms preforms much better than average investors. Big guys just want invest not day trading. In crypto ICOMI will be 1st such project - such needed project.\n\nNow true facts and everything that I show you, is now publicly available on web. Graphs taken from coinmarketcap.com are showing us, what is going on cryptocurrency markets right now:\n![](http://i.imgur.com/FLe0WeF.jpg) \n![](http://i.imgur.com/s6Aeke2.jpg) \n![](http://i.imgur.com/RX0JK1z.jpg) \n\nYou see on won eyes that: Bitcoin is loosing over time market share to other alt coins. There is many multiple reasons for that. Without ICONOMI getting on cryptocurrency board for new investors will be VERY hard. \nThat is:\n \n- choose right one coin. \n- skip scams \n- buy valuable coins \n- crypto markets are getting bigger and bigger all time, there is about over 700coins tradable now\n\n\nICONOMI will be platform that for **every investor looking for big profits**. \nICONOMI will give us 2 founds:\n\n- **The ICONOMI.INDEX FUND** - a \"Passive\" - Coin Traded Fund (CTF). This fund operates on special rules, variables that manage the fund through automation. This Found will be the fastest available to investors at launch in Q4 2016 - The ICONOMI.PERFORMANCE FUND - an \"\nActive\"\n- **Coin Managed Fund (CMF)**, Operated by and managed by best investors. This fund will be invitation only available. If you invest in ICO you will get you invitation for free. I bet is worth its price. Those found will be carefully managed by ICONOMI experts and will provide best profits available.\n\nGraphs shows that volume of alt coins is rising heavily and will move up. Without ICONOMI founds many investors will probably lose cash on market, while rypto currency market will rise as whole. **If buy some ICO shares you will get dividends forever as share holder.**\n Soon real professional traders will come to cryptocurrency and you as investor in order to get big profits will have to use service of ICONOMI. \n\nPersonally I have invested in ICO and believe that **ICONOMI is future of crypto trading**. Don't miss a chance and invest here:[ico.iconomi.net](ico.iconomi.net) \n\nIf you want invest in ICO: ![](http://i.imgur.com/iqDpTag.png) \n\nOfficial Links:\n \n- [ico.iconomi.net](ico.iconomi.net \"Main site\") \n- [https://www.facebook.com/iconomi.net/](https://www.facebook.com/iconomi.net/ \"Facebook\") \n- [https://twitter.com/iconominet](https://twitter.com/iconominet\"twitter.com\")\n- [https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/](https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/) \n- [https://telegram.me/iconomi](https://telegram.me/iconomi)\n- [https://medium.com/iconominet](https://medium.com/iconominet)\n- [https://iconominet.herokuapp.com](https://iconominet.herokuapp.com)", - "json_metadata": "{\"tags\":[\"cryptocurrency\",\"bitcoin\",\"profit\",\"altcoin\"],\"image\":[\"http://i.imgur.com/FLe0WeF.jpg\",\"http://i.imgur.com/s6Aeke2.jpg\",\"http://i.imgur.com/RX0JK1z.jpg\",\"http://i.imgur.com/iqDpTag.png\"],\"links\":[\"ico.iconomi.net\",\"https://www.facebook.com/iconomi.net/\",\"https://twitter.com/iconominet\\\"twitter.com\\\"\",\"https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/\",\"https://telegram.me/iconomi\",\"https://medium.com/iconominet\",\"https://iconominet.herokuapp.com\"]}", - "last_update": "2016-09-15T19:47:00", - "created": "2016-09-15T19:47:00", - "active": "2016-09-15T19:47:00", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 155925481, - "abs_rshares": 155925481, - "vote_rshares": 155925481, - "children_abs_rshares": 155925481, - "cashout_time": "2016-09-16T19:47:00", - "max_cashout_time": "2016-09-29T19:47:00", - "total_vote_weight": "719051331038101", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "szklaneczka", - "root_permlink": "iconomi-why-we-need-found-management-explained-on-graphs", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961225, - "author": "newsfeed", - "permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", - "category": "newsfeed", - "parent_author": "", - "parent_permlink": "newsfeed", - "title": "Rangers' record in one-run games nearing truly historic level", - "body": "The Texas Rangers are 33-10 (.767) in one-run games this season. This would stand as a modern record for winning percentage in one-run games, besting the 2012 Orioles, who were 29-9 (.763).\n\n

http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815

\n\nBut if we dig deep into the archives of baseball history, we learn that this is actually the best record since the 1890 Brooklyn Bridegrooms, who were 14-4 (.778) in one-run games en route to an overall 86-43 (.667) record and the National League pennant.\n\n**Source / Read More...** sportingnews.com \n\n
\n\n
\n\n**NEWS FEED** \n*Get the latest headlines from around the world right on your Steemit Feed! With @newsfeed you always stay in the know about all sorts of topics ranging from Politics & Finance to Sports*\n\n**Currently In Beta**\n*Full news feed from hand picked creditable sources from all sides of the political and social realm. Although not fully operational, posts will be random while testing BUT do have real headlines!*", - "json_metadata": "{\"tags\":[\"newsfeed\",\"news\",\"sports\",\"rangers\",\"baseball\"],\"users\":[\"newsfeed\"],\"image\":[\"http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815\",\"https://ipfs.pics/ipfs/QmUo1EuVPSs3prLRdJH95Lg97vyvzSfhH6srZH5bqRh7p6\"],\"links\":[\"http://www.sportingnews.com/mlb/news/texas-rangers-record-in-one-run-games-brooklyn-bridegrooms/irlcvzvv8fui1vgogevkmomch\\n\"]}", - "last_update": "2016-09-15T19:46:30", - "created": "2016-09-15T19:46:30", - "active": "2016-09-15T19:46:30", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 151513711, - "abs_rshares": 151513711, - "vote_rshares": 151513711, - "children_abs_rshares": 151513711, - "cashout_time": "2016-09-16T19:46:30", - "max_cashout_time": "2016-09-29T19:46:30", - "total_vote_weight": "698707196688679", - "reward_weight": 9354, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "newsfeed", - "root_permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 0, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961226, - "author": "anton333", - "permlink": "origami-part-11-the-model-of-skeleton-hands", - "category": "art", - "parent_author": "", - "parent_permlink": "art", - "title": "Origami Part 11, the model of Skeleton hands.", - "body": "\n

Model of Skeleton hands,without scissors and glue.

\n1


\n2


\n\n


\n

I need a piece of paper.

\n3


\n4


\n5


\n6


\n7


\n1


\n

Part 1 Part 2 Part 3 Part4 Part5 Part6 Part7 Part8 Part9 Part10

\n", - "json_metadata": "{\"tags\":[\"art\",\"photography\",\"origami\"],\"image\":[\"https://s18.postimg.org/fi4tfvrgp/image.jpg\",\"https://s9.postimg.org/kn7ogredb/image.jpg\",\"https://s10.postimg.org/nnna3pxp5/image.jpg\",\"https://s12.postimg.org/dltyd50wd/image.jpg\",\"https://s12.postimg.org/qwsf7bs99/image.jpg\",\"https://s3.postimg.org/7p1m66f4j/image.jpg\",\"https://s22.postimg.org/4388u7yoh/image.jpg\",\"https://s14.postimg.org/qo99yko5t/image.jpg\"],\"links\":[\"https://postimg.org/image/byivq2oqt/\",\"https://postimage.org/index.php?lang=russian\",\"https://postimg.org/image/ivepluv0b/\",\"https://postimg.org/image/efv1n0qmt/\",\"https://postimg.org/image/u9lgfmvnt/\",\"https://postimg.org/image/gzhee9knd/\",\"https://postimg.org/image/gwtumvm6n/\",\"https://postimg.org/image/55ifcrhhp/\",\"https://postimg.org/image/4cbh56p1p/\",\"https://steemit.com/art/@anton333/origami-start-with-the-simplest\",\"https://steemit.com/art/@anton333/origami-part-two-do-a-swan\",\"https://steemit.com/art/@anton333/origami-part-3-the-model-of-a-mouse\",\"https://steemit.com/art/@anton333/origami-part-4-the-model-of-a-rose-petals\",\"https://steemit.com/art/@anton333/origami-part-5-the-model-of-master-yoda\",\"https://steemit.com/art/@anton333/origami-part-6-the-model-of-eagle\",\"https://steemit.com/art/@anton333/origami-part-7-the-model-of-dagger\",\"https://steemit.com/art/@anton333/origami-part-8-the-model-of-spider\",\"https://steemit.com/art/@anton333/origami-part-9-the-model-of-tooth\",\"https://steemit.com/art/@anton333/origami-part-10-the-model-of-flower\"]}", - "last_update": "2016-09-15T19:46:30", - "created": "2016-09-15T19:46:30", - "active": "2016-09-15T19:46:30", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 3377256926, - "abs_rshares": 3377256926, - "vote_rshares": 3377256926, - "children_abs_rshares": 3377256926, - "cashout_time": "2016-09-16T19:46:30", - "max_cashout_time": "2016-09-29T19:46:30", - "total_vote_weight": "15561709573411957", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "anton333", - "root_permlink": "origami-part-11-the-model-of-skeleton-hands", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961089, - "author": "vitaly-lvov", - "permlink": "crowdsales-monitor-august-2016", - "category": "cyberfund", - "parent_author": "", - "parent_permlink": "cyberfund", - "title": "Crowdsales Monitor - August 2016", - "body": "\n

Mountly recap of blockchain crowdsales

\n


\n

CLOSED CROWDSALES

\n

BlockPay 

\n

Aimed at deeper integration with POS terminals and payments between counterparties.
\nA preliminary Initial Coin Offering finished on 4 September, where BlockPay sold 5% of the 100-million stock of BLOCKPAY tokens released on the BitShares blockchain. Future owners will receive dividends from transaction fees paid to BlockPay.
\nThe pre-ICO was done in 3 stages: 

\n
    \n
  • 1st — exchange of OPENPOS for BLOCKPAY at the rate of 1.2 to 1 (fund of 600,000 tokens) 
  • \n
  • 2nd — sale of BLOCKPAY at the price of 0.000288 BTC (fund of 1.4 mln tokens) 
  • \n
  • 3rd — sale of BLOCKPAY at the price of 0.000360 BTC (fund of 3 mln tokens) 
  • \n
\n

The distribution of tokens is as follows: 

\n
    \n
  • 1.5% — marketing for pre-ICO
  • \n
  • 5% — pre-ICO
  • \n
  • 0.9% — early adopters
  • \n
  • 1.8% — advisors and partners
  • \n
  • 3.6% — marketing
  • \n
  • 7.2% — developers reward
  • \n
  • 80% — upcoming ICO in 2017
  • \n
\n

The platform development plan:

\n
    \n
  • The release of BlockPay \"S\" app for Android and payment terminals Odoo
  • \n
  • BlockPay integration with leading payment terminals
  • \n
  • API Development
  • \n
  • The addition of a large number of fiat gateway exchanges and Escrow Services
  • \n
  • The addition of anonymous transactions function
  • \n
  • The development and release of the ECHO messenger for Android and iOS
  • \n
  • Development of the first version of the BlockPay \"S\" app for iOS
  • \n
\n

The project looks interesting, given the fact that they claim an integration with the ERP and CRM systemOdoo used by 60 thousand companies. The only disturbing thing is the absence of an open source software, and this spoils the whole picture. Transaction payments fee and, consequently, planned cash flow for investors are not sufficiently explained either. It should be kept in mind that this project is centralised, i.e. it belongs to the class of projects that demand trust in the founders and, correspondingly, require a thorough audit of operating activity.
\nCrowdsale summary:

\n
    \n
  • Dates: 20 August 2016 — 4 September 2016
  • \n
  • Raised: ~ $657,000 (1096 BTC)
  • \n
  • Tokens sold: 3.92 mln
  • \n
  • Total number of tokens: 100 mlnДаты проведения: 20 августа — 4 сентября 2016 года
  • \n
\n

For detailed information on the crowdsale, see: https://blockpay.ch/newsroom/investor-relations/blockpay-reserves/
\nFor useful links and more information, go to https://cyber.fund/system/BlockPay 

\n

AntShares
\n

\n

The project is interesting primarily due to the fact that it will be implemented using the Hyperledger platform. There are no other features that distinguish it from a number of similar blockchain projects, except that it is aimed specifically at the Chinese audience. 

\n

Crowdsale summary: 

\n
    \n
  • Dates: 8 August 2016 — 7 September 2016
  • \n
  • Raised: ~ $ 3.4 mln (5582 ~ BTC)
  • \n
  • Tokens sold: 20 mln
  • \n
  • Total number of tokens: 100 mln
  • \n
\n

For detailed information on the crowdsale, see: www.antshares.org/ico
\nFor useful links and more information, go to https://cyber.fund/system/AntShares

\n

Elastic project
\n

\n

The crowdsale is finished. The full description of the history of the ICO and the risks associated with investing in this asset may be found in the previous issue of Blockchain Boom. 

\n

Crowdsale summary:

\n
    \n
  • Dates: 29 February 2016 — 19 August 2016
  • \n
  • Raised: ~ $416,000 (~ 710 BTC), the exact amount is not available, because in course of funding escrow addresses changed several times and the movement of funds between them was extremely nontransparent.
  • \n
  • Tokens sold: 20 mln
  • \n
  • Total number of tokens: 5 mln XEL
  • \n
\n

The crowdsale took place here: http://www.elastic.pro/donations
\nFor useful links and more information, go to https://cyber.fund/system/Elastic 

\n

CURRENT CROWDSALES

\n

Iconomi
\n

\n

The aim of the project is the creation of management platform for crypto investment funds and the launch of two associated investment funds.
\n

\n

The subject of the crowdsale is ICN tokens representing 100% of Iconomy Open Fund Management Platform (OFM). The total number of ICN tokens to be sold is 85 million. 100 million of ICN will be released on the Ethereum platform within 10 days after the end of the crowdsale. Tokens will be distributed among investors proportionally to their contributions taking into account bonuses for early participation (+ 15% in the first week, + 10% in the second week, + 5% in the third week).
\nPrecise information on the distribution of ICN tokens is missing on the official website. According to the information in the related Bitcointalk thread, the tokens will be distributed as follows: 

\n
    \n
  • 85% - to be sold in the crowdsale
  • \n
  • 8% - founders reward
  • \n
  • 3% - reserve for the future team
  • \n
  • 2% - advisers reward
  • \n
  • 2% - marketing and bounty
  • \n
\n

Money raised from the crowdsale will be used as follows: 

\n
    \n
  • 62% - development
  • \n
  • 25% - operations
  • \n
  • 9% - legal expenses
  • \n
  • 4% - marketing
  • \n
\n

ICN owners will receive weekly dividends in ETH from all sources of Iconomi income, such as: 

\n
    \n
  • management fees
  • \n
  • rewards for fund management efficiency
  • \n
  • fees received from the funds registered with OFM
  • \n
\n

ICN holders will be able to vote on a number of matters related to the development of OFM, including choosing of the \"platform operator\" (currently, Cashila OOD s.r.o.) 

\n

The development plan: 

\n
    \n
  • 4Q 2016 – the launch of the open investment fund ICONOMI.INDEX, which will follow the likely development of the cryptocurrency market and will be freely traded on the market;
  • \n
  • 4Q 2016 – the launch of the closed investment fund ICONOMI.PERFORMANCE, which will focus on riskier investments in projects at an early stage of development
  • \n
  • 2017 – the launch of the platform for management of investment funds (OFM), the transfer of ICONOMI.INDEX and ICONOMI.PERFORMANCE funds to the platform.
  • \n
\n

Blind spots: 

\n
    \n
  • The currency is not specified for evaluation of the raised funds for further distribution of ICN tokens among investors.
  • \n
  • Will a part of the funds received during the crowdsale be allocated to ICONOMI.INDEX and ICONOMI.PERFORMANCE and, if so, will ICN holders receive relevant shares in these funds?
  • \n
  • There is no information as to the amount and frequency of fees charged from funds managed on OFM.
  • \n
  • The functions of the \"platform operator\" is described but very vaguely, as well as the process of further decision making involving ICN holders.
  • \n
\n

Red flags:

\n
    \n
  • There is no description of technical solutions for the project's tasks
  • \n
  • No program code is published
  • \n
\n

Crowdsale summary:

\n
    \n
  • Dates: 25 August 2016 — 29 October 2016
  • \n
  • Total number of tokens: 100 mln ICN
  • \n
  • Tokens distribution: 85% will be sold in the crowdsale, 15% team reward and marketing
  • \n
  • Minimum crowdsale goal: 2 000 BTC (~ $1.5 mln)
  • \n
  • Raised so far: ~ $3.6 million (2,200 BTC + 71,000 ETH + 1.2 mln LSK + 63,000 USD + 940,000 EUR) from more than 1300 participants.
  • \n
\n

The crowdsale takes place here: https://ico.iconomi.net/
\nFor useful links and more information, go to https://cyber.fund/system/Iconomi 

\n


\nDeClouds
\n

\n

The main focus of the project is providing the opportunity for trading in precious metals.
\nThe network will be implemented as follows: 

\n
    \n
  • Proof-of-Stake consensus algorithm
  • \n
  • Decentralised Exchange
  • \n
  • Cloud-based blockchain
  • \n
\n

Apart from a patently weak 8-page paper and a number of publications on the blog, no detailed information about the project was found via official channels. Program code is also not disclosed. Nevertheless, developers promise to launch the network on 31 October 2016.
\nDuring the crowdsale, bonuses from 20% to 5% will be distributed, depending on the time of investment.
\n

\n

Crowdsale summary: 

\n
    \n
  • Dates: 6 August 2016 — October 6, 2016
  • \n
  • Total number of tokens: 100 mln
  • \n
  • Tokens distribution: 80% will be sold to the crowdsale participants, 10% is a team reward and 10% are marketing expenses
  • \n
  • Raised so far: ~ $179,000 (294 BTC)Даты проведения: 6 августа — 6 октября 2016 года
  • \n
\n

The crowdsale takes place here: https://ico.declouds.com/
\nFor useful links and more information, go to https://cyber.fund/system/DeClouds

\n


\nHong
\n

\n

Investments are made by transferring ETH to the Etherium contract.
\n

\n

The Fund is formed for the period of 4 years, 3 of which are put for investing while the last year is for the exit. 80% of the money received as a result of fund liquidation will be distributed among Hongcoin holders, 20% among managers. Annual 2% fee to be charged for operational expenses of the managing organisation. The fee allocation will be defined by voting. The fund can be \"frozen\" at any time by the decision of 50% of shareholders.

\n

As a purpose for investment, 3 directions are selected: disruptive innovation, creativity and educational projects. Hong founders believe that the blockchain technology will most significantly impact these fields of human activity.
\nThe fund operates according to the following scheme: 

\n
    \n
  • Fund managers review projects and make a decision on whitelisting them;
  • \n
  • Hongcoin holders vote for the allocation of funds for investments within 15 days (the quorum of 20% is required for the approval of an investment);
  • \n
  • Fund managers prepare due-diligence and investment strategy for the project and provide any possible assistance in the development and promotion of the project;
  • \n
  • When the fund's term comes to an end, the managers carry out the exit process.
  • \n
\n

A company will be established for the management of raised funds, but it has not been determined yet in which jurisdiction. There is no information on the management parties available on the website nor through any the official channels.
\nThe crowdsale takes place in several stages, with 50 mln Hongcoin sold at each stage: 

\n
    \n
  • 50 mln Ħ – 1.00 ETH за 100 Ħ
  • \n
  • 50 mln Ħ – 1.05 ETH за 100 Ħ
  • \n
  • 50 mln Ħ – 1.10 ETH за 100 Ħ
  • \n
  • 50 mln Ħ – 1.15 ETH за 100 Ħ
  • \n
  • 50 mln Ħ – 1.20 ETH за 100 Ħ
  • \n
\n

As long as the crowdsale is going on, investors will have the opportunity to change their mind and withdraw invested funds. After the crowdsale is finished, the exit opportunity will be closed.
\nCrowdsale summary: 

\n
    \n
  • Dates: 29 August 2016 — 29 October 2016 (may be extended until 28 November)
  • \n
  • Total number of tokens: to be determined by the end of the crowdsale
  • \n
  • Tokens distribution: 100% will be sold in the crowdsale
  • \n
  • Crowdsale goal: at least 1,575,000 ETH (~ $19 mln), the maximum is 2.7 mln ETH (~ $33 mln)
  • \n
  • Raised so far: ~ $6,600 (11 BTC).
  • \n
\n

The crowdsale takes place here: http://www.hongcoin.org/
\nFor useful links and more information, go to https://cyber.fund/system/Hong
\n

\n

Judging by the current investments dynamics, the project will not succeed.

\n


\nPLANNED CROWDSALES 

\n


\nSynereo
\n

\n

One year after a crowdsale that raised $126,000 aimed at the development and launch of a decentralised social network, the project team announced the second funding round and the launch of the network'salpha version. Two funding campaigns start at the same time in September: the sale of Synereo Ltd shares on BnkToTheFuture and of AMP tokens.
\nFollowing the first crowdfunding, the distribution of AMP was as follows:

\n
    \n
  • 2.72% (45.8 mln) — sold during the first crowdsale
  • \n
  • 11.9% (200 mln) — user rewards
  • \n
  • 8.92% (150 mln) — reserve for the content creators
  • \n
  • 11.9% (200 mln) — founders' reward
  • \n
  • 13.68% (230 mln) — bounty program
  • \n
  • 50.61% (850.4 mln) — next funding
  • \n
\n

Synereo revised their plans and now aim to develop a protocol similar to the SAFE Network, which will include the following components:

\n
    \n
  • Proof-of-Stake consensus algorithm
  • \n
  • Distributed network of nodes connected on the principle of \"shards\", where blockchain is divided into many small segments
  • \n
  • Distributed repository
  • \n
  • Smart contracts
  • \n
  • Social layer (a social network motivated according to the Attention Economy Model)
  • \n
  • The possibility of building distributed apps
  • \n
\n

The grant program for dApps developers Project 11 with a budget of 1.11 million AMP is already in operation.
\n

\n

The popular website CoinMarketCap misleadingly states current Synereo capitalisation at about $10-13 million, which is not true because it is only the cost of 62,580,000 AMP (3.72%) in circulation on the market. According to cyber • Fund's calculations, with the total of 1.68 billion tokens, Synereo's real capitalisation reaches $300 million.

\n

It has not been disclosed yet how many tokens will be put up for sale, but we can assume that the minimum amount claimed by Synereo is about $130-140 million in case the entire reserve is sold, which is 850.4 mln AMP. This is a very ambitious plan, taking into account current distribution and the market price of tokens. Besides, it should be kept in mind that after the launch of the network, additional 5% of AMP will be emitted every year. In my opinion, they should sell the whole reserve without fixed prices and with token distribution proportional to investments. It will provide normal distribution and a fair market capitalisation.

\n

Despite the presence of a strong team with an excellent technological vision, we consider the evaluation of $300 mln inadequate.

\n

Crowdsale summary:

\n
    \n
  • Dates: September 2016
  • \n
  • Total number of tokens: 1.68 billion AMP
  • \n
  • Number of tokens for sale: unknown, probably 850.4 mln
  • \n
  • Crowdsale goal: presumably ~ $130-140 million
  • \n
\n

The crowdsale takes place here: https://www.synereo.com/sale
\nFor useful links and more information, go to: https://cyber.fund/system/Synereo

\n


\n

Golem Project
\n

\n

The aim of the project is to adopt any customer personal computer for the work that is done today by servers, computing farms or supercomputers. 

\n

As the result, Golem Net will become a truly decentralised network where users' summarised machine power will provide any amount of hardware resources required. At the moment, there is no document explaining how exactly it would work. We hope that such paper will appear before the crowdsale. 

\n

The Golem App will connect to the network from a local device to share computing power and deliver tasks for calculations.
\nThe micropayment system based on Ethereum will provide the incentivising component distributing rewards and processing transactions. Transaction fee will be set at 5%. 

\n

Currently, the network can work only with public data because the apps require direct access to data.
\nDevelopers announced the crowdsale on their blog

\n

Golem Network Tokens (GNT) are the shares that give the right to receive part of the revenue generated by Golem Network. 

\n

Crowdsale start date: September 2016. 

\n

Token distribution: 

\n
    \n
  • Total number of tokens: unknown
  • \n
  • 82% — crowdsale
  • \n
  • 6% — founders reward
  • \n
  • 12% — developer company reward
  • \n
  • Estimated amount of funds: a minimum of 100,000 ETH, a maximum of 650,000 ETH
  • \n
\n

For detailed information on the project, see http://golemproject.net/slides/index.html#/14
\nFor useful links and more information, go to https://cyber.fund/system/Golem
\n
\n

\n

SingularDTV
\n

\n

The ultimate goal of the project is the creation a thriving industry of decentralised entertainment.

\n

What they promise: 

\n

● SINGULAR – a TV series.
\nThe S-DTV flagship product is an epic sci-fi adventure TV series about decentralisation, scaling and emergence of intelligent systems that lead the humanity to a technological singularity. 

\n

● Documentary division
\nThis division will create full-length and short-length documentary series and movies about the blockchain, decentralisation and Ethereum. 

\n

● S-DTV rights management platform
\nAn app that will use smart contracts for registration and management of digital rights, as well as of income and royalties on intellectual property, namely, movies and television. Deals in the film and TV industry are the most difficult to arrange as they often involve hundreds of individual participants. 

\n

● On-demand video content portal (TVOD)
\nTVOD changes the way people watch entertainment programmes. S-DTV is born to create the TVOD portal for original content distribution, as well as for selected and acquired content. In addition to developing an interface on IPFS, S-DTV will use third-party portals such as GooglePlay, AppleTV iTunes and Vimeo to build a larger audience in a short time.

\n

Minimum investment goal – $500,000.

\n

Desirable funding – $7,5 mln.

\n

According to S-DTV documentation, Swiss company MME has developed a new, innovative organisational structure specifically for S-DTV: the Centralised Organised Distributed Company (CODE). It is the Swiss company, therefore, that will manage the finances and reinvest the income, while tokens will be used for paying out the dividends.

\n

Token distribution: 

\n
    \n
  • 400 mln Singular DTV GMBH
  • \n
  • 100 mln core investors
  • \n
  • 500 mln crowdsale
  • \n
\n

Funds distribution in case if $7,5 mln is raised: 

\n
    \n
  • \"Singular\" season 1 (3 episodes of the mini-series): $3.25 mln
  • \n
  • Documentary division: $0.50 mln
  • \n
  • Development of the rights management platform: $2 mln
  • \n
  • TVOD portal development: $1 mln
  • \n
  • Marketing: $0.50 mln
  • \n
  • Administrative, legal expenses and unforeseen circumstances: $0.25 mln
  • \n
\n

Crowdfunding is planned for September and will likely take place at Devcon2.

\n

The Ethereum and Consensys founder Joseph Lubin is included into the team as CTO.

\n

Unfortunately, in this project tokens only serve for distribution of dividends, and the project is centralised because 40% of tokens belong to Singular DTV GMBH. Another disadvantage is the fact that of the four declared founders/directors, only Zach Lebeau will work full time on the project. He is likely to be engaged in the studio rather than in the platform development; there are also risks associated with SEC.

\n

The main question is the development of the TVOD platform and the rights management platform: there is no understanding as to what kind of team will be working on it, and no technical description at the moment. If both platforms can be really implemented, the project is promising for investment.=

\n

For detailed information about the project, see: https://singulardtv.com/
\nFor useful links and more information, go to: https://cyber.fund/system/SingularDTV
\n

\n

Decent
\n

\n

It is designed for creative people, writers, bloggers, journalists and their fans and followers. The platform enables users to publish any posts, images, video or music content with no restrictions.

\n

Consensus algorithm – Proof-of-Stake.

\n

Decent has three functional roles: 

\n
    \n
  • Authors: content producers, writers, music producers etc.
  • \n
  • Consumers: readers, listeners and viewers
  • \n
  • Publishers: miners
  • \n
\n

Token distribution – 30% via mining and 70% is distributed during the crowdsale, some of them will go to pre-mine funds to be distributed in the following way: 

\n
    \n
  • 10% — DECENT Foundation
  • \n
  • 2% — the Investment fund
  • \n
  • 1,000,000 DCT — campaign bounty
  • \n
  • 3,000,000 DCT — pre-launch marketing programme
  • \n
\n

On the crowdsale page, next to the conditions, we see a message that the project is supported by Google, though it does not correspond to the project's primary activity. Moreover, the current yellow paper ignores many issues such as, for example, how miners would store the content. Decent enters the content distribution market where such projects as Steemit, Synereo and LBRY already operate. 

\n

The crowdsale takes place here: http://sale.decent.ch/
\nFor useful links and more information, go to: https://cyber.fund/system/Decent
\n

\n

FirstBlood
\n

\n

This platform will allow players to bet without intermediaries. The payoff distribution will be also managed via smart contracts.

\n

The eSports betting market holds more than $130 million per year with 30% annual growth rate.

\n

3 monetisation channels:

\n
    \n
  • Matchmaking
  • \n
  • Revenue from the tournament organisation
  • \n
  • Advertising
  • \n
\n

Token will allow: 

\n
    \n
  • Match playing
  • \n
  • Match refereeing and voting for the referee
  • \n
  • Placing tournaments
  • \n
  • Requesting an award from referrals
  • \n
\n

Tokens distribution: 

\n
    \n
  • Crowdsale, 4 weeks, in the first hour 170 tokens for 1 ETH
  • \n
  • 10% to the project founders; these funds will be blocked for 12 months
  • \n
  • 5% will be placed in the platform development fund for the promotion and tournament awards
  • \n
  • 2.5 mln - bounty fund, to be distributed during the crowdsale for advertising and debugging
  • \n
\n

Crowdsale start date: 26 September 2016.

\n

In my opinion, it is an interesting project. The only reservation is that the market is not very vast, albeit actively developing. Besides, the motivation for developers and other market players is not very well thought through. In this regard, central players, who can also use smart contracts and predictions market to confirm the events results, may have an advantage. However, this project may indeed become the market leader on the condition of good community building and active incentivising of referees and the jury. 

\n

For detailed information about the project, see: https://firstblood.io/
\nFor useful links and more information, go to: https://cyber.fund/system/FirstBlood
\n

\n


\nMassNetwork
\n

\n

The three main entities: 

\n
    \n
  • Advertisers
  • \n
  • Websites
  • \n
  • Internet users
  • \n
\n

The basic principle is to follow the industry's trend to monetise customer attention and create a convenient and fair trading platform for all parties involved, including Internet users. Mass allows users to receive instant rewards for web surfing through the built-in p2p infrastructure based on the blockchain. As a result, advertisers will pay users a fair price for their attention and data without intermediaries.
\n

\n

An increasing number of customers are using ad-blocking software. Mass offers a browser extension and a mobile app that can block ads as well as protect personal data. Yet, their primary goal is not blocking but rather improving users' experience with advertising and rewarding them with cryptocurrency to establish a consumer-advertiser relationship and, therefore, reduce the number of ad-block users. Mass will also have a cryptocurrency wallet and blockchain-based payment system.

\n

Crowdsale dates: 6 September — 1 December 2016

\n

Token distribution: 

\n
    \n
  • 70% to the crowdsale participants
  • \n
  • 30% to Mass team members
  • \n
\n

Mass plans to build its own full-blown infrastructure for advertising industry with an internal token. A similar solution has been already introduced to the market – the Brave browser. It blocks default ads and replaces it with incentivising ad materials. The bitcoins received from advertisers are distributed among users, the platform and the endorsing website. In my opinion, if Mass used smart contracts or a proprietary blockchain enabling further token emission to incentivise users and websites, they could compete with bitcoin. However, Mass token works on the bitcoin blockchain, which on the one hand makes it very secure, but on the other, has no advantage over bitcoin per se. In favour of bitcoin are accessibility, recognition, and a more stable price. 

\n

Crowdsale takes place here: https://ico.mass.network/#/?aid=ep6oxa
\nFor useful links and more information, go to: https://cyber.fund/system/MassNetwork

\n

---

\n

All data and calculations are quoted as of 6 September 2016 with bitcoin price at $609. For closed crowdsales evaluation in USD is given using the average token price at the date of closure.

\n

---

\n

Big thanks to: 

\n\n

---

\n

Original was posted in Blockchain Boom

\n


\n", - "json_metadata": "{\"tags\":[\"cyberfund\",\"blockchain\",\"crowdsales\"],\"links\":[\"https://cyber.fund/system/BlockPay\",\"https://cyber.fund/system/BitShares\",\"https://www.odoo.com/\",\"https://blockpay.ch/newsroom/investor-relations/blockpay-reserves/\",\"https://cyber.fund/system/AntShares\",\"http://www.antshares.org/ico\",\"http://www.elastic.pro/\",\"http://www.elastic.pro/donations\",\"https://cyber.fund/system/Elastic\",\"https://cyber.fund/system/Iconomi\",\"https://bitcointalk.org/index.php?topic=1587736.0\",\"https://ico.iconomi.net/\",\"https://cyber.fund/system/DeClouds\",\"https://drive.google.com/open?id=0B8VJa9S_WxSSSHJhN0o0QkVPN1E\",\"https://medium.com/@decloudscom/latest\",\"https://ico.declouds.com/\",\"https://cyber.fund/system/Hong\",\"http://etherscan.io/address/0x9Fa8fA61A10Ff892E4EBCeB7f4e0FC684C2ce0a9\",\"http://www.hongcoin.org/\",\"https://cyber.fund/system/Synereo\",\"https://blog.synereo.com/2015/05/10/amp-distribution-complete-2/\",\"https://blog.synereo.com/2016/08/29/synereos-second-fundraising-campaign-coming/\",\"https://www.synereo.com/alpha/\",\"https://bnktothefuture.com/\",\"https://cyber.fund/system/MaidSafeCoin\",\"https://www.synereo.com/learn-more/\",\"https://github.com/synereo/synereo.github.io/raw/master/whitepapers/synereo.pdf\",\"https://www.synereo.com/developers/\",\"http://coinmarketcap.com/assets/synereo/\",\"http://omnichest.info/lookupsp.aspx?sp=39\",\"https://www.synereo.com/sale\",\"https://cyber.fund/system/Golem\",\"http://golemproject.net/doc/GolemNanopayments.pdf\",\"https://blog.golemproject.net/golem-network-token-gnt-sale-220c2a732f9#.fdn8hljmq\",\"http://golemproject.net/slides/index.html#/14\",\"https://cyber.fund/system/SingularDTV\",\"https://singulardtv.com/\",\"https://cyber.fund/system/Decent\",\"http://sale.decent.ch/\",\"https://cyber.fund/system/FirstBlood\",\"https://firstblood.io/\",\"https://ico.mass.network/#/\",\"https://ico.mass.network/#/?aid=ep6oxa\",\"https://cyber.fund/system/MassNetwork\",\"https://steemit.com/@creator\",\"https://steemit.com/@coinfox\",\"http://blockchainboom.coinfox.info/\"]}", - "last_update": "2016-09-15T19:44:18", - "created": "2016-09-15T19:30:36", - "active": "2016-09-15T19:44:18", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": "4649989991534", - "abs_rshares": "4649989991534", - "vote_rshares": "4649989991534", - "children_abs_rshares": "4649989991534", - "cashout_time": "2016-09-16T19:34:50", - "max_cashout_time": "2016-09-29T19:30:36", - "total_vote_weight": "9916447926886758335", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 10, - "root_author": "vitaly-lvov", - "root_permlink": "crowdsales-monitor-august-2016", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961211, - "author": "agartha", - "permlink": "i-hack-monero-xmr", - "category": "steemit", - "parent_author": "", - "parent_permlink": "steemit", - "title": "I hack Monero (Xmr) ?", - "body": "I think I just hacked Monero lol it's a joke but the security too thou \n\nLook at this! \n\n\nhttps://www.facebook.com/agartha.white.3/posts/179267779175393", - "json_metadata": "{\"tags\":[\"steemit\",\"hack\",\"monero\",\"bitcoin\",\"lol\"],\"links\":[\"https://www.facebook.com/agartha.white.3/posts/179267779175393\"]}", - "last_update": "2016-09-15T19:44:00", - "created": "2016-09-15T19:44:00", - "active": "2016-09-15T19:44:00", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 64358062, - "abs_rshares": 64358062, - "vote_rshares": 64358062, - "children_abs_rshares": 64358062, - "cashout_time": "2016-09-16T19:44:00", - "max_cashout_time": "2016-09-29T19:44:00", - "total_vote_weight": "296794399420393", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "agartha", - "root_permlink": "i-hack-monero-xmr", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961208, - "author": "varda", - "permlink": "my-day-hospital", - "category": "story", - "parent_author": "", - "parent_permlink": "story", - "title": "My day hospital", - "body": "\n

  In the morning, at 5 am when the moon completes his round, the alarm rings, my deepest sleep I wake up painfully. Kéops my cat starts singing tour and stops only when he filled his mess tin. Sweety then, the cat of my son jumps on the furniture in the kitchen and also claimed his bowl. Kashmir him not to come after me, until I make him hugs.

\n

\n

\n

\n

 A small cup of coffee and I'm up for the day. After my shower, I have to feed the fish pond and two hens, they are waiting for me impatiently for me to release them from their cages.

\n

\n


\n

\n


\n

 6:15, I start my bag on her arm, my water bottle and my biscuit for lunch. On the road I am alone, few vehicles I meet. Great to run your car on a deserted road. In the winter when it snowed, I am the first to make tracks in the whiteness of the snow grows like cotton wool, sometimes, crazy beyond me and skids, it is an adrenaline rush. In summer the sun rises gives the sky a color of red sweetness, yellow, orange. In autumn, the trees begin to change color, it is a season because I love the beauty of trees is unique. 

\n

\n


\n

Here I come down the street or is my workplace, hospital, regional hospital, the CHR. Vehicles coming after one another because we start at 7am. The staff is found, speak, tells their evening then everyone goes to the same place: the time clock, control object of our hours worked.

\n

\n


\n

 In the ladies locker room, it gets held: white jacket with blue and green patterns representing the logo of the institution, blue pants with various pockets which we do not serve! 

\n

\n


\n

We arrive in our service, mine is the neurological rehabilitation service: we give up (or so) of people who have a stroke, an accident with neurological trauma, people who have multiple sclerosis or Guillain barred and other chronic diseases whose name is almost unknown. 

\n

\n


\n

\n


\n

\n


\n

We start our day with a report on each patient last night, we have 20 in service. After beginning the nursing: we make the toilet of the patient who is totally dependent. We get up in the chair. For others, we must educate, continue the actions he has learned with the therapist in the individual care, the patient should regain maximum independence so they can go home and take care only . It's a job that can last from 3 months to 6 months beyond, we can not do anything for them. 

\n

\n


\n

Headline in this service is: you come to bed but you leave again walking. 

\n


\n

Sometimes, we fail either because the patient does not want a return to autonomy, or because the patient is too ill. We give the same chance to everyone, rich, poor, alcoholic, drug addict, young or old. 

\n


\n

The management of a patient goes from shaving the beard of a man to the presentation on the toilet, the room arrangement the carefully tended beds. 

\n


\n

Lunch arrived around 8:30 am, few patient is in the dining hall for breakfast, other unfinished eat in bed Logistical assistance serves meals that are different if the patient is diabetic, diet, dieters, old, or in solid supply resumption. You should know that when the patient has had a stroke, a stroke, swallowing is absent, which means that if the patient eats a sandwich, but he swallows the bread goes in the bronchial tubes and not in the stomach, giving a false swallowing, bronchi become infected and it's a disaster. So this patient who made false swallowing should eat while cream consistency and drink thickened liquid. Which is not very good but I admit it must go through these stages in order to re-eat a day normally. 

\n


\n

Physiotherapists arrive at 9am and leave a 17h, occupational therapists also. There is also a neuropsychologist, a speech therapist and all do work that allows the patient to regain maximum independence, which means that the patient all day is busy. Visitors can come between 14:30 and 19:30. 

\n


\n

After lunch, we continue our work, when all is well, we finish around 10:30 or 11am but sometimes it is noon we are still in the rooms. 

\n


\n

In terms of handling, the entry of the patient, it is usually in bed or in a wheelchair with a right hemiplegia or left, some have forgotten that they had half a disabled body, so it must withstand and no wear and show him how to do with one leg to go from wheelchair to bed and vice versa. Others are completely invalid, they know not move neither arms nor legs, and for those, or we wear them either we lift them with a forklift. 

\n


\n

During dinner, we feed the disabled and we encode our care in the computer.

\n


\n

 Around 13h, we are a few naps after going on the toilet. Sometimes we have a problem in the pants, oops! When everyone is changed to bed, we have a service change ratio and the time, the hour of the end of our service is lagging. At 14h is the start of the morning shift. For my part, I take a good shower and I take the way home or waiting for my cats and my dog makes me a big party. 

\n


\n

We must not believe that the nursing profession is simple, each service is different and you can not compare the care of each other. 

\n


\n

I hope I have not bothered you with this long text, I wish you a good day to you all.     

\n", - "json_metadata": "{\"tags\":[\"story\",\"health\"],\"image\":[\"https://www.steemimg.com/images/2016/09/15/DSCN0477faad0.jpg\",\"https://www.steemimg.com/images/2016/09/15/keops0029612b.jpg\",\"https://www.steemimg.com/images/2016/09/15/Au-sommet81f7b.jpg\",\"https://www.steemimg.com/images/2016/09/15/16e3c4.jpg\",\"https://www.steemimg.com/images/2016/09/15/Photo0224b24a.jpg\",\"https://www.steemimg.com/images/2016/09/15/d85917d4a45b3d581b5f40d1d7a7504a3bb1e.jpg\",\"https://www.steemimg.com/images/2016/09/15/chr841bd.jpg\",\"https://www.steemimg.com/images/2016/09/15/DSCN1513-Copiee7a4d.jpg\",\"https://www.steemimg.com/images/2016/09/15/Capture2bb0b8.jpg\",\"https://www.steemimg.com/images/2016/09/15/370086-1f7d83.jpg\",\"https://www.steemimg.com/images/2016/09/15/Capturec0ccc.jpg\",\"https://www.steemimg.com/images/2016/09/15/souleve-malade-foldyadb08.jpg\"]}", - "last_update": "2016-09-15T19:43:54", - "created": "2016-09-15T19:43:54", - "active": "2016-09-15T19:43:54", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 1202120459, - "abs_rshares": 1202120459, - "vote_rshares": 1202120459, - "children_abs_rshares": 1202120459, - "cashout_time": "2016-09-16T19:43:54", - "max_cashout_time": "2016-09-29T19:43:54", - "total_vote_weight": "5542136534307198", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "varda", - "root_permlink": "my-day-hospital", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961197, - "author": "ejaredallen", - "permlink": "wanna-see-something-cool", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Shot From Around The Block On An iPhone!", - "body": "\n

\n

Nature

\n

I haven't stopped and taken a picture of the beauty around me in a long time. It's funny how we can get so caught up in work and the business of a crazy life and miss the simply beauty along the way. Sometime you've just got to stop and smell the roses; and while you're there, take a picture!

\n

\n

These aren't roses, I know: they're wild flowers. They don't get the nurture and care that roses do, and yet they are provided for and they bloom into beautiful blossoms in their own time. They have a harder life than others, and that's how we humans are as well. Some of us were well taken care of growing up and were treated like roses, while others were left in the field to grow up alone and without the love and care we should have had. But we are all beautiful in our own ways and if we survive long enough, we will blossom into something spectacular.

\n

\n

Colorado mountain rivers

\n

When the snow on the tops of the mountains melt, it feed the rushing rivers that carve their way down the mountainside. The climbing is excellent, the whether and the views are truly gorgeous, but something about the rivers rushing through the mountains draws you in. There is a memorization about the brave rivers unafraid of the mountains and simply rushing on by recklessly.

\n

\n

Mississippi at sunset

\n

Sometimes the world just slows down and magic happens. This was one of those times. On the night before my sister's wedding in Tupelo, Mississippi the sky exploded in color. What a calm reassurance before a monumental event: the approval stamp of God upon the sanction of their marriage.

\n

\n

Hundreds of years old Indian hieroglyphs in Arizona

\n

This was an incredible hike in the Arizona mountain ranges to discover a place where the Apache Indians, or perhaps some other tribe had lived hundreds of years ago!

\n

\n

Uganda, Africa at twilight, from a moving bus

\n

Africa is always an adventure, but in 2015 we took a safari on the northern rim and caught this shot on the way back to the lodge. I love how the beauty of the world is unique in its diversity from place to place, even across the Atlantic.

\n

\n

This is one of my favorite shots. I don't remember where I took it or when, but the colors, the bliss, the peacefulness of this field of flowers was stunning. I'm glad I was able to capture an image of its beauty to remember it by. And to think, all of this beauty was made by God in a second! His power to create a world is amazing and perfect in every way. We get to see His marvelous creation every day! 

\n

Follow me @ejaredallen for more pictures and great content!

\n", - "json_metadata": "{\"tags\":[\"photography\",\"pictures\",\"art\",\"steemit\",\"travel\"],\"image\":[\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-986x1024-289x300.jpeg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-3-1024x768-300x225.jpeg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6440-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6031-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_5829-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/2015-07-13-06-37-59-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_7281-1024x1024-300x300.jpg\"],\"links\":[\"https://steemit.com/@ejaredallen\"]}", - "last_update": "2016-09-15T19:43:33", - "created": "2016-09-15T19:42:24", - "active": "2016-09-15T19:43:33", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 54846770, - "abs_rshares": 54846770, - "vote_rshares": 54846770, - "children_abs_rshares": 54846770, - "cashout_time": "2016-09-16T19:42:24", - "max_cashout_time": "2016-09-29T19:42:24", - "total_vote_weight": "252932614230673", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "ejaredallen", - "root_permlink": "wanna-see-something-cool", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961189, - "author": "cwbrooch", - "permlink": "russian-roulette-a-memoir-part-2-under-the-table-tactics", - "category": "story", - "parent_author": "", - "parent_permlink": "story", - "title": "Russian Roulette - a Memoir [Part 2] - Under-the-table Tactics", - "body": "\n

This is part 2 of my Memoir.  Missed Part 1? Click here.
\nDon't know what's going on? Start from the beginning here.

\n

If you like what you're reading, follow me @cwbrooch for more craziness. if you love what you're reading recommend me to other peeps :) feedback is also very appreciated.

\n

\n

Russian Roulette - A Memoir of my Two Years in Moscow - Part 2 - Under the Table Tactics

\n

In this part of my memoir I am going to attempt to describe the dark side of Moscow. All stories depicted here either happened directly to people I knew, or were described to me as  a it's-russia-get-used-to-it anecdote.
\nYes, I will be talking about corruption and paying people under the table for things but bear in mind that even though it seems like a common practice definitely not all people do that and not all people experience the phenomenon.

\n

A ROUTINE POLICE CHECK 

\n

It is said that it is extremely wise to keep 2k-5k Rubles (about 28-68 Euro, 30-77 Dollars, 23-58 Pounds) in your registration papers at all times. They tend to disappear when you get your documents back from the officer... If one does not have such loose change, the guy tends to make one's life difficult. \"You were speeding\", \"You didn't stop at the STOP sign\", \"You're light is out\" etc. Driving is another interesting phenomenon in Moscow. You might think that since the metro is so packed, the streets will be empty. On the contrary, but I will not get into that right now as that makes a completely different post...  However, what I will tell you is  how one of my students passed her driving exam, which leads us to...

\n

PAYING TO PASS AN EXAM

\n

After her first failed attempt, my student looked at her instructor/examiner and asked: \"Could you please tell me what I did wrong, so I can work on it in the future?\" He stared back at her surprised and announced: \"Well, you didn't pay me extra, what do you expect?!\" At that point even I was shocked - \"So people openly tell you they want money?!\" \"Get used to it Kasia, It's Russia....\"
\nNeedless to say, she was forced to pay the second time around and surprise, surprise, she passed....
\n
\nI taught English in a company. I came one week, and saw that everyone was kind of in a rush and slightly agitated. I asked what the problem was and they said they were waiting for an audit. I remember wishing them good luck... One lady looked at me and smiled \"We paid the guys to look the other way, it will be fine!\" I didn't even bother to comment as I had aleady known there was no point...

\n

GETTING INTO A PRIVATE EVENT

\n

It was the three of us - my BF, his friend and I. We wanted to do some clubbing and the friend decided we should go to a very trendy bar in the heart of Moscow. He had a loyalty card there and was well known among the bouncers. We didn't really look the part, but a hefty fee paid for each of us (by the friend) was enough to let us in...

\n

That was a minor party. Let's talk about the big stuff, involving bigger money!
\nIf you know someone, who knows someone, who knows someone you might be able to (legally) attend the dress rehearsal of the famous Victory Parade in May (the 9th to be exact). It costs about 10k (137 Euro, 116 Pounds , 153 Dollars) Watch fragments of the video below to see the magnitude of what I am talking about. 

\n

The whole thing is long, play with it a little bit. The good stuff starts at about 40 minutes. Source

\n

https://www.youtube.com/watch?v=5EI3FYynz-Q

\n

To enter the actual parade however, you need to be a prominent member of the society (e.g. ex-military) or someone famous or filthy rich :)

\n

The event itself is quite impressive and for soldiers taking part in the march it is an honor among honors.  
\nWe had the privilege of living 15 minutes on foot from the Red Square so we saw all the preparations and marches right outside our windows (till 11pm at night...)

\n

\n

PS. I am aware that my portrayal of Moscow might seem bleak and depressing. Believe me, it was not. I;m simply trying to describe the juicy bits, the interesting stuff :) My next post will be more optimistic as I will be talking about sports, parks an recreations  :)

\n

 ____________________________________________________________________________

\n

Thank you for reading Part 2 of my memoir.

\n

Want to find out more about living in Moscow? Follow me @cwbrooch :)

\n

My other work on Streemit:

\n

1) Russian Roulette - Preamble 

\n

2) Russian Roulette - Part 1 - Surviving Underground

\n

3) Why shouldn't you use google translate for learning English and which dictionaries are far better

\n

4)  How to learn vocabulary effectively in any language!

\n

5) About me: introduction  
\n 

\n


\n", - "json_metadata": "{\"tags\":[\"story\",\"writing\",\"travel\",\"life\",\"russia\"],\"users\":[\"cwbrooch\"],\"image\":[\"https://s14.postimg.org/bpiqdmgpt/Untitled.jpg\",\"https://img.youtube.com/vi/5EI3FYynz-Q/0.jpg\",\"https://lh3.googleusercontent.com/3OMfOqwX2pQ5BYeql8V1tg4J6VcMzG75pLD-nhsfHw0BYFLEQOQSeVl-sVdEkDwS6VfPco-FukpjwQONwimoOhzzT4GIPDt_VGbJfNDYaltTvEcyOFK5do7PZD1-tjDW0nxKYhUQdxG4yoxX6ZS590fMaveLKSI2Voz579yTME9U8D7UgN7R3ufBrAcq0KV8kA9VqMVxryabh2X_jBiMnP3Uwjj_hrWn3ARzHggZMRuo3G3ORSKDpoqcBA25bRDeWHe7nVT4X58NolQ4yY8HVjzyUr4zDneI8dy_eHnSf0F0FBZ8kn4NQQ3ueVR84tu-Ot64CZb9a1SetmKmupvAxBbuS8z3jBsvCECD8A5jz9qevTOkgHEbV0z2hVteH64gCLg3OI9mRVqw2GWAYwNSUlGGtwCxmwXq3p_j_igwncarIhIF2HX_bV0ACrucmewR6IiIdVfaKKAO9g2ycLbJRr_SBwE9TxBND9ar0R267Grzq5SHywG71h1nxZnXInW-HQ2l1cou8zqdiEUanqkeSbgIunZVNBcEnYYinmF-WZd5y0_Luc8rdDYy0GlKAtAJ4z0-woKDs6d_XKWhiWsYOAW3rWwCe3cJylK_6H7wNO2PlBKL=w1163-h775-no\"],\"links\":[\"https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-in-moscow-part-1-surviving-underground\",\"https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-of-living-in-moscow-preamble\",\"https://www.youtube.com/channel/UC4qBu3EvraPWezHbaC7npIQ\",\"https://www.youtube.com/watch?v=5EI3FYynz-Q\",\"https://steemit.com/@cwbrooch\",\"https://steemit.com/languages/@cwbrooch/why-shouldn-t-you-use-google-translate-for-learning-english-and-which-dictionaries-are-faaaar-better\",\"https://steemit.com/languages/@cwbrooch/how-to-learn-vocabulary-effectively-in-any-language\",\"https://steemit.com/introduceyourself/@cwbrooch/teacher-story-teller-cat-lover-about-me\"]}", - "last_update": "2016-09-15T19:42:57", - "created": "2016-09-15T19:41:09", - "active": "2016-09-15T19:42:57", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": "5891496080", - "abs_rshares": "5891496080", - "vote_rshares": "5891496080", - "children_abs_rshares": "5891496080", - "cashout_time": "2016-09-16T19:44:28", - "max_cashout_time": "2016-09-29T19:41:09", - "total_vote_weight": "27129771364344680", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "cwbrooch", - "root_permlink": "russian-roulette-a-memoir-part-2-under-the-table-tactics", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961180, - "author": "philanthropest", - "permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", - "category": "freedom", - "parent_author": "", - "parent_permlink": "freedom", - "title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", - "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", - "json_metadata": "{\"tags\":[\"freedom\",\"anarchy\",\"steem\",\"life\",\"\"],\"image\":[\"https://img.youtube.com/vi/y02aBfNT8n4/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=y02aBfNT8n4\"]}", - "last_update": "2016-09-15T19:42:36", - "created": "2016-09-15T19:40:21", - "active": "2016-09-15T19:42:36", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-16T07:40:21", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "philanthropest", - "root_permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 960785, - "author": "ancientofdays", - "permlink": "are-steem-bitcoin-etc-obvious-pre-cursors-to-the-mark-of-the-beast", - "category": "money", - "parent_author": "", - "parent_permlink": "money", - "title": "Are Steem, Bitcoin, etc.. Obvious Pre-cursors to The Mark of the Beast?", - "body": "\n


\nImage Source & External Article - http://lifehopeandtruth.com/prophecy/revelation/mark-of-the-beast/

\n

Just recently here in Roswell NM (where I live, yes) I was telling a shop owner about Steem and Steemit, and he made the comment that he thought it sounded like \"...one more step towards the Mark of The Beast\"...

\n
\"...And he causeth all, both small and great, rich and poor, free and bond, to receive a mark in their right hand, or in their foreheads: And that no man might buy or sell, save he that had the mark, or the name of the beast, or the number of his name. Here is wisdom. Let him that hath understanding count the number of the beast: for it is the number of a man; and his number is Six hundred threescore and six...\"
\n - Revelation Chapter 13 (
Full Chapter)
\n

Yes Virginia... I hate to break it to you, but digital currency IS indeed \"one more step towards the mark of the beast\" - and we all know it. 

\n

Let's just get that out of the way now. But fear not, this is NOT a paranoid religious post warning people about the eternal dangers of joining Steemit, nor of using digital currency in general however. This is just a hopefully rational religious post (inspired by a secular article) meant to stem paranoid fear (amongst Christians mainly) of utilizing Steemit specifically, and digital currency in general. Which I will get back to in just a second...

\n

But first... If to you, \"stemming this fear\" makes me \"part of the Satanic conspiracy\" then I can't help that, and I won't engage with or reply to you if that is your view (which you are entitled to hold, and even to express as a comment below). 

\n

I'd rather use my time to inform non-Christian people who may have clicked in here (for laughs perhaps?) that Yes, I believe that the mark of the beast is coming, and you DO need to aware of the dangers of accepting it!

\n


\nImage Source & External Article: http://www.evangelicaloutreach.org/markbeast.htm

\n

 (Hence the external articles links being detailed here for further reading - which I have not closely vetted btw, they just had top matches for images)...

\n

Anyways...

\n

As I told my friend Don (who DID join Steemit @roswellrockman ) \"So is your debit card!\"

\n

Putting Don and I's end-of-conversation succinctly, there are many aspects of our everyday lives that have brought and are bringing us \"one step closer\" to the mark of the beast - but they are not in themselves the mark, they are not evil, and (imho) they are not to be feared, or shunned. 

\n

(Altho I will note respectfully that The American Amish community feels differently - see the link below these next images.)

\n

There are indeed many examples from our now-everyday lives that could easily be said to be bringing us \"one step closer\" ... such as the \"Bar Codes\" on every product we purchase

\n


\n... especially if the same types of \"scanners\" that read them, were then pointed to a laser tattoo or RFID chip in your hand, to receive payment for these goods at the register. 

\n


\nAll 3 Images above & External Article: http://www.whatdoesitmean.com/index1392.htm

\n

\"Radio Frequency ID chips\" (see Wikipedia article) are already being used (some will say \"being tested\") to help pet owners keep track of their pets. Wal-Mart and other retailers also use them to track expensive items, to help prevent shoplifting. And especially \"hi-tech\" firms demanding secrecy and security clearances even use them on employees! 

\n

Could Big Brother and The Rothchild's and The Federal Reserve Banks and The U.N. (collectively, \"The New World Order\") one day very soon use all of this to both track you physically, and to observe or control your money supply? 

\n

Absolutely!

\n

It's no stretch at all to imagine combining RFID technology with UPC Bar Codes - and then connecting it all to your bank account via the Internet (or the Blockchain!) - to fulfill the Bible prophecy about the mark of the beast happening in the near future, or in our lifetimes.

\n

Folks I am no stranger to this belief. I first penned the words myself way back in 1997 (in my original webpage and book \"Come Sail Away : UFO Phenomenon & The Bible\"- << Amazon link to 2105 version) in the section I titled \"Genesis 6 to 666\"

\n

\"To understand how the world’s entire economy could be tied into a mark on one’s flesh would be a completely unimaginable miracle - a near impossibility - inconceivable to most Christians throughout the ages. This has left some events of the book of Revelation a little hard to piece together into a believable probability, much less an immediate future.
\n
\n\"In order to accomplish such an incredible thing, you’d have to have some way to access a person’s bank account from anywhere in the known world; all financial institutions would have to have some way of talking to each other through some sort of, of, machinated \"net,\" or a \"web,\" or something; you’d have to come up with some sort of mark, or magnetic strip, or some \"barred code\" that some futuristic \"scanner\" could read; surgical or laser-tattoo technology capable of implanting it, and a \"personal secret code\" so that no one could ever rob you in this \"cashless society.\" Any-time machinery, for financial transactions, would have to be everywhere. Everyone would have to be assigned a separate number at birth. These \"scanner devices\" would have to be in every grocery, hardware, department and convenience store, and every product would have to be marked with this computerized bar-code…
\n
\n\"Yup, you’d need all that…
\n
\n\"Get that in place and you’re ready to go...\" 

\n


\n(Original 1997 cover, now out of print - 2015 version available on Amazon here)

\n

So getting to my main point - finally...

\n

YES. All kinds of technological advances from the past 30 years and more could and probably WILL - imho - be used to make the Mark of the Beast possible... call me a paranoid religious nut if you like, I do firmly believe that such is coming.

\n

The Internet itself, for example, connects and brings the whole world online. But if you're using it to read this, now, you are perhaps already hooked, and have no room to talk about Steem or digital currencies being the pre-cursors to the mark of the beast. Because everything you're already using is also...

\n

The magnetic strips on the back of the debit and credit cards you've (most likely) been using for years and years. Online banking... Bar Code technology in grocery stores that you apparently don't have the religious conviction to oppose not abstain from ... retinal scanners, or fingerprint security features in your smartphone...

\n

See what I mean? 

\n

If you are not a practicing Amish person - or you use only \"true money\" (Gold and Silver) to barter and to trade for goods and services when you need them (or farm and grow your own food, to ensure that you don't) - then there are already DOZENS of aspects of your everyday life that you have accepted and routinely utilize that have already in fact brought YOU \"one step closer to the mark of the beast.\"

\n

YES - these \"new-fangled concepts\" like Steem Dollars, Bitcoin, and Digital Currencies are perhaps OBVIOUS steps moving us all FURTHER along that path to one-world government under antichrist...

\n

(EXCEPT IT MUST BE NOTED in this article for you newbies to the concept, that TO-DATE, popular digital currencies (Steem, Bitcoin, Etherium, etc, etc) are actually intended AND ARE CURRENTLY BEING USED to help users MOVE AWAY from immoral government spying networks, and away from evil centralized banking platforms, putting \"the power in the hands of the people\" - for awhile at least. 

\n

So technically, by joining Steemit and adopting Steem as currency, you are fighting the underpinings of the Satanic One-World government that is forming all around us. You are actually, literally, restraining The Beast from his march to power! For awhile anyways...

\n

So there.)  

\n

But yes, I would affirm that some form of digital currency in general could and possibly will be used by the evil-antichrist-oneworldgovernment-rothschilds-federalreserve-warmongeringtotalitarian New World Order yet to arise under the real antichrist when he appears.

\n

In fact, it was seeing this article today published by The Coin Telegraph 

\n


\n4 Reasons Why Your Nation Will Kill Cash For A Digital Currency

\n

that inspired me to drop everything and write this particular article. 

\n

The Coin Telegraph wonderfully details how national interests (Satanic, New World Order interests, for our purposes here) probably will in fact adopt a digital currency of their own in the coming years. I can totally see THEIR VERSION of a global digital currency exchange being the near-final step in implementing the true Mark of the Beast, when (but not until) The Antichrist is revealed.

\n

But Steem/Steemit just isn't it. Today's free market digital currencies - if anything - are the \"gum in the works - fly in the ointment - monkey wrench in the machine\" to the eventual true Mark of the Beast, now that I think about it. Today's digital currencies actually serve to free us from the system that is now in place, by providing de-centralized mediums of currency (barter, exchange, etc) that serve as powerful alternatives to current banking structures, and chains.

\n

Governmental agencies (NWO ones or not) are actually in a scramble currently to figure out HOW to regulate, tax, and ultimately control the existing currencies. But neither they - not the devil - are behind them. 

\n

So my position is to say that unless you're either willing to become Amish today and forego ALL of the technologies I've detailed here (and electricity) then you've really nothing to fear from becoming an early adopter of Steem/Steemit. 

\n

The Bible clearly instructs and solemnly warns all to not accept the Mark of the Beast, when it finally comes in the form of a mark on your hand or forehead that cannot buy or sell without receiving. Abstaining from \"the steps\" has proven impractical, unavoidable (again, except to the Amish), and ultimately not directly commanded in scripture.
\n 
\n===============
\nTwo things in closing:
\n#1) Here's one more lengthy scripture-packed article on Biochips & TMOTB I'll recommend if you're unlearned about the whole topic...
\n#2) You may have noticed in this article that I'm an author in Roswell who deals with the topics of Aliens, UFOs, and The Bible. I have to date organized 7 conferences on that topic, and (after a 7 year hiatus) am putting together a new one for Summer 2017... please follow @ancientofdays for updates and tons of videos yet to come from past speakers and theologians who have participated, and will be again this year. 

\n

I bring all of this up in THIS article, only to announce here that:

\n

My non-profit \"Roswell Mission\" will be accepting Steem for conference registrations (follow for details) and that
\nUP-FRONT VIP SEATING goes to those who pay VIA STEEMIT!

\n", - "json_metadata": "{\"tags\":[\"money\",\"religion\",\"steem\",\"beyondbitcoin\",\"christianity\"],\"users\":[\"roswellrockman\",\"ancientofdays\"],\"image\":[\"http://dc95wa4w5yhv.cloudfront.net/image-cache/the-mark-of-the-beast_640_426_80_c1.jpg\",\"https://scontent-lax3-1.xx.fbcdn.net/v/t1.0-0/s526x395/14358900_10154412654816605_8330352735442203600_n.jpg?oh=e2a53091d31ad716798686aec3f7bef0&oe=586CF056\",\"http://www.whatdoesitmean.com/wmb2.jpg\",\"http://www.whatdoesitmean.com/wmb3.jpg\",\"http://www.whatdoesitmean.com/wmb4.jpg\",\"http://www.alienstranger.com/seekye1//CSAcover.jpg\",\"https://cointelegraph.com/images/725_Ly9jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy8zYjkxMjBiMjg3YTRmZDJjZjE5MTcyZDk0ZDBhOGQzOC5qcGc=.jpg\"],\"links\":[\"http://lifehopeandtruth.com/prophecy/revelation/mark-of-the-beast/\",\"http://www.AlienStranger.com\",\"http://www.ancientsofdays.net\",\"https://www.biblegateway.com/passage/?search=Revelation+13&version=KJV\",\"https://cointelegraph.com/news/4-reasons-why-your-nation-will-kill-cash-for-a-digital-currency\",\"http://www.evangelicaloutreach.org/markbeast.htm\",\"http://www.whatdoesitmean.com/index1392.htm\",\"https://en.wikipedia.org/wiki/Radio-frequency_identification\",\"http://amzn.to/1Ueug63\",\"http://www.av1611.org/666/biochip.html\",\"https://steemit.com/steemitabuse/@ancientofdays/credibility-matters-on-steemit-therefore-i-wish-to-offer-some-proof-photos-of-my-non-profit-status-and-intent-here\"]}", - "last_update": "2016-09-15T19:41:12", - "created": "2016-09-15T18:57:12", - "active": "2016-09-15T19:43:27", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 2, - "net_rshares": "25365523997", - "abs_rshares": "25365523997", - "vote_rshares": "25365523997", - "children_abs_rshares": "25365523997", - "cashout_time": "2016-09-16T19:18:59", - "max_cashout_time": "2016-09-29T18:57:12", - "total_vote_weight": "116240705764176930", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 6, - "root_author": "ancientofdays", - "root_permlink": "are-steem-bitcoin-etc-obvious-pre-cursors-to-the-mark-of-the-beast", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 155925481, + "active": "2016-09-15T19:47:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "szklaneczka", + "author_rewards": 0, + "beneficiaries": [], + "body": "**ICONOMI found management platform** is currently in ICO and you can still invest. \n\nThat is most anticipated platform of 2016 why You may ask me. I will give you some graph and explanation. Solutions like ICONOMI are very popular in old economy people want be rich and wanted get more profit so they tried give money to people who know more about trading. Found management platforms preforms much better than average investors. Big guys just want invest not day trading. In crypto ICOMI will be 1st such project - such needed project.\n\nNow true facts and everything that I show you, is now publicly available on web. Graphs taken from coinmarketcap.com are showing us, what is going on cryptocurrency markets right now:\n![](http://i.imgur.com/FLe0WeF.jpg) \n![](http://i.imgur.com/s6Aeke2.jpg) \n![](http://i.imgur.com/RX0JK1z.jpg) \n\nYou see on won eyes that: Bitcoin is loosing over time market share to other alt coins. There is many multiple reasons for that. Without ICONOMI getting on cryptocurrency board for new investors will be VERY hard. \nThat is:\n \n- choose right one coin. \n- skip scams \n- buy valuable coins \n- crypto markets are getting bigger and bigger all time, there is about over 700coins tradable now\n\n\nICONOMI will be platform that for **every investor looking for big profits**. \nICONOMI will give us 2 founds:\n\n- **The ICONOMI.INDEX FUND** - a \"Passive\" - Coin Traded Fund (CTF). This fund operates on special rules, variables that manage the fund through automation. This Found will be the fastest available to investors at launch in Q4 2016 - The ICONOMI.PERFORMANCE FUND - an \"\nActive\"\n- **Coin Managed Fund (CMF)**, Operated by and managed by best investors. This fund will be invitation only available. If you invest in ICO you will get you invitation for free. I bet is worth its price. Those found will be carefully managed by ICONOMI experts and will provide best profits available.\n\nGraphs shows that volume of alt coins is rising heavily and will move up. Without ICONOMI founds many investors will probably lose cash on market, while rypto currency market will rise as whole. **If buy some ICO shares you will get dividends forever as share holder.**\n Soon real professional traders will come to cryptocurrency and you as investor in order to get big profits will have to use service of ICONOMI. \n\nPersonally I have invested in ICO and believe that **ICONOMI is future of crypto trading**. Don't miss a chance and invest here:[ico.iconomi.net](ico.iconomi.net) \n\nIf you want invest in ICO: ![](http://i.imgur.com/iqDpTag.png) \n\nOfficial Links:\n \n- [ico.iconomi.net](ico.iconomi.net \"Main site\") \n- [https://www.facebook.com/iconomi.net/](https://www.facebook.com/iconomi.net/ \"Facebook\") \n- [https://twitter.com/iconominet](https://twitter.com/iconominet\"twitter.com\")\n- [https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/](https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/) \n- [https://telegram.me/iconomi](https://telegram.me/iconomi)\n- [https://medium.com/iconominet](https://medium.com/iconominet)\n- [https://iconominet.herokuapp.com](https://iconominet.herokuapp.com)", + "cashout_time": "2016-09-16T19:47:00", + "category": "cryptocurrency", + "children": 0, + "children_abs_rshares": 155925481, + "created": "2016-09-15T19:47:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961233, + "json_metadata": "{\"tags\":[\"cryptocurrency\",\"bitcoin\",\"profit\",\"altcoin\"],\"image\":[\"http://i.imgur.com/FLe0WeF.jpg\",\"http://i.imgur.com/s6Aeke2.jpg\",\"http://i.imgur.com/RX0JK1z.jpg\",\"http://i.imgur.com/iqDpTag.png\"],\"links\":[\"ico.iconomi.net\",\"https://www.facebook.com/iconomi.net/\",\"https://twitter.com/iconominet\\\"twitter.com\\\"\",\"https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/\",\"https://telegram.me/iconomi\",\"https://medium.com/iconominet\",\"https://iconominet.herokuapp.com\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:47:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:47:00", + "net_rshares": 155925481, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "cryptocurrency", + "percent_hbd": 10000, + "permlink": "iconomi-why-we-need-found-management-explained-on-graphs", + "reward_weight": 10000, + "root_author": "szklaneczka", + "root_permlink": "iconomi-why-we-need-found-management-explained-on-graphs", + "title": "ICONOMI - why we need found management explained on graphs.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "719051331038101", + "vote_rshares": 155925481 + }, + { + "abs_rshares": 151513711, + "active": "2016-09-15T19:46:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "newsfeed", + "author_rewards": 0, + "beneficiaries": [], + "body": "The Texas Rangers are 33-10 (.767) in one-run games this season. This would stand as a modern record for winning percentage in one-run games, besting the 2012 Orioles, who were 29-9 (.763).\n\n

http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815

\n\nBut if we dig deep into the archives of baseball history, we learn that this is actually the best record since the 1890 Brooklyn Bridegrooms, who were 14-4 (.778) in one-run games en route to an overall 86-43 (.667) record and the National League pennant.\n\n**Source / Read More...** sportingnews.com \n\n
\n\n
\n\n**NEWS FEED** \n*Get the latest headlines from around the world right on your Steemit Feed! With @newsfeed you always stay in the know about all sorts of topics ranging from Politics & Finance to Sports*\n\n**Currently In Beta**\n*Full news feed from hand picked creditable sources from all sides of the political and social realm. Although not fully operational, posts will be random while testing BUT do have real headlines!*", + "cashout_time": "2016-09-16T19:46:30", + "category": "newsfeed", + "children": 0, + "children_abs_rshares": 151513711, + "created": "2016-09-15T19:46:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961225, + "json_metadata": "{\"tags\":[\"newsfeed\",\"news\",\"sports\",\"rangers\",\"baseball\"],\"users\":[\"newsfeed\"],\"image\":[\"http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815\",\"https://ipfs.pics/ipfs/QmUo1EuVPSs3prLRdJH95Lg97vyvzSfhH6srZH5bqRh7p6\"],\"links\":[\"http://www.sportingnews.com/mlb/news/texas-rangers-record-in-one-run-games-brooklyn-bridegrooms/irlcvzvv8fui1vgogevkmomch\\n\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:46:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:46:30", + "net_rshares": 151513711, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "newsfeed", + "percent_hbd": 0, + "permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", + "reward_weight": 9354, + "root_author": "newsfeed", + "root_permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", + "title": "Rangers' record in one-run games nearing truly historic level", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "698707196688679", + "vote_rshares": 151513711 + }, + { + "abs_rshares": 3377256926, + "active": "2016-09-15T19:46:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anton333", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

Model of Skeleton hands,without scissors and glue.

\n1


\n2


\n\n


\n

I need a piece of paper.

\n3


\n4


\n5


\n6


\n7


\n1


\n

Part 1 Part 2 Part 3 Part4 Part5 Part6 Part7 Part8 Part9 Part10

\n", + "cashout_time": "2016-09-16T19:46:30", + "category": "art", + "children": 0, + "children_abs_rshares": 3377256926, + "created": "2016-09-15T19:46:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961226, + "json_metadata": "{\"tags\":[\"art\",\"photography\",\"origami\"],\"image\":[\"https://s18.postimg.org/fi4tfvrgp/image.jpg\",\"https://s9.postimg.org/kn7ogredb/image.jpg\",\"https://s10.postimg.org/nnna3pxp5/image.jpg\",\"https://s12.postimg.org/dltyd50wd/image.jpg\",\"https://s12.postimg.org/qwsf7bs99/image.jpg\",\"https://s3.postimg.org/7p1m66f4j/image.jpg\",\"https://s22.postimg.org/4388u7yoh/image.jpg\",\"https://s14.postimg.org/qo99yko5t/image.jpg\"],\"links\":[\"https://postimg.org/image/byivq2oqt/\",\"https://postimage.org/index.php?lang=russian\",\"https://postimg.org/image/ivepluv0b/\",\"https://postimg.org/image/efv1n0qmt/\",\"https://postimg.org/image/u9lgfmvnt/\",\"https://postimg.org/image/gzhee9knd/\",\"https://postimg.org/image/gwtumvm6n/\",\"https://postimg.org/image/55ifcrhhp/\",\"https://postimg.org/image/4cbh56p1p/\",\"https://steemit.com/art/@anton333/origami-start-with-the-simplest\",\"https://steemit.com/art/@anton333/origami-part-two-do-a-swan\",\"https://steemit.com/art/@anton333/origami-part-3-the-model-of-a-mouse\",\"https://steemit.com/art/@anton333/origami-part-4-the-model-of-a-rose-petals\",\"https://steemit.com/art/@anton333/origami-part-5-the-model-of-master-yoda\",\"https://steemit.com/art/@anton333/origami-part-6-the-model-of-eagle\",\"https://steemit.com/art/@anton333/origami-part-7-the-model-of-dagger\",\"https://steemit.com/art/@anton333/origami-part-8-the-model-of-spider\",\"https://steemit.com/art/@anton333/origami-part-9-the-model-of-tooth\",\"https://steemit.com/art/@anton333/origami-part-10-the-model-of-flower\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:46:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:46:30", + "net_rshares": 3377256926, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "art", + "percent_hbd": 10000, + "permlink": "origami-part-11-the-model-of-skeleton-hands", + "reward_weight": 10000, + "root_author": "anton333", + "root_permlink": "origami-part-11-the-model-of-skeleton-hands", + "title": "Origami Part 11, the model of Skeleton hands.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "15561709573411957", + "vote_rshares": 3377256926 + }, + { + "abs_rshares": "4649989991534", + "active": "2016-09-15T19:44:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vitaly-lvov", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

Mountly recap of blockchain crowdsales

\n


\n

CLOSED CROWDSALES

\n

BlockPay 

\n

Aimed at deeper integration with POS terminals and payments between counterparties.
\nA preliminary Initial Coin Offering finished on 4 September, where BlockPay sold 5% of the 100-million stock of BLOCKPAY tokens released on the BitShares blockchain. Future owners will receive dividends from transaction fees paid to BlockPay.
\nThe pre-ICO was done in 3 stages: 

\n
    \n
  • 1st \u2014 exchange of OPENPOS for BLOCKPAY at the rate of 1.2 to 1 (fund of 600,000 tokens) 
  • \n
  • 2nd \u2014 sale of BLOCKPAY at the price of 0.000288 BTC (fund of 1.4 mln tokens) 
  • \n
  • 3rd \u2014 sale of BLOCKPAY at the price of 0.000360 BTC (fund of 3 mln tokens) 
  • \n
\n

The distribution of tokens is as follows: 

\n
    \n
  • 1.5% \u2014 marketing for pre-ICO
  • \n
  • 5% \u2014 pre-ICO
  • \n
  • 0.9% \u2014 early adopters
  • \n
  • 1.8% \u2014 advisors and partners
  • \n
  • 3.6% \u2014 marketing
  • \n
  • 7.2% \u2014 developers reward
  • \n
  • 80% \u2014 upcoming ICO in 2017
  • \n
\n

The platform development plan:

\n
    \n
  • The release of BlockPay \"S\" app for Android and payment terminals Odoo
  • \n
  • BlockPay integration with leading payment terminals
  • \n
  • API Development
  • \n
  • The addition of a large number of fiat gateway exchanges and Escrow Services
  • \n
  • The addition of anonymous transactions function
  • \n
  • The development and release of the ECHO messenger for Android and iOS
  • \n
  • Development of the first version of the BlockPay \"S\" app for iOS
  • \n
\n

The project looks interesting, given the fact that they claim an integration with the ERP and CRM systemOdoo used by 60 thousand companies. The only disturbing thing is the absence of an open source software, and this spoils the whole picture. Transaction payments fee and, consequently, planned cash flow for investors are not sufficiently explained either. It should be kept in mind that this project is centralised, i.e. it belongs to the class of projects that demand trust in the founders and, correspondingly, require a thorough audit of operating activity.
\nCrowdsale summary:

\n
    \n
  • Dates: 20 August 2016 \u2014 4 September 2016
  • \n
  • Raised: ~ $657,000 (1096 BTC)
  • \n
  • Tokens sold: 3.92 mln
  • \n
  • Total number of tokens: 100 mln\u0414\u0430\u0442\u044b \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f: 20 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u2014 4 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f 2016 \u0433\u043e\u0434\u0430
  • \n
\n

For detailed information on the crowdsale, see: https://blockpay.ch/newsroom/investor-relations/blockpay-reserves/
\nFor useful links and more information, go to https://cyber.fund/system/BlockPay 

\n

AntShares
\n

\n

The project is interesting primarily due to the fact that it will be implemented using the Hyperledger platform. There are no other features that distinguish it from a number of similar blockchain projects, except that it is aimed specifically at the Chinese audience. 

\n

Crowdsale summary: 

\n
    \n
  • Dates: 8 August 2016 \u2014 7 September 2016
  • \n
  • Raised: ~ $ 3.4 mln (5582 ~ BTC)
  • \n
  • Tokens sold: 20 mln
  • \n
  • Total number of tokens: 100 mln
  • \n
\n

For detailed information on the crowdsale, see: www.antshares.org/ico
\nFor useful links and more information, go to https://cyber.fund/system/AntShares

\n

Elastic project
\n

\n

The crowdsale is finished. The full description of the history of the ICO and the risks associated with investing in this asset may be found in the previous issue of Blockchain Boom. 

\n

Crowdsale summary:

\n
    \n
  • Dates: 29 February 2016 \u2014 19 August 2016
  • \n
  • Raised: ~ $416,000 (~ 710 BTC), the exact amount is not available, because in course of funding escrow addresses changed several times and the movement of funds between them was extremely nontransparent.
  • \n
  • Tokens sold: 20 mln
  • \n
  • Total number of tokens: 5 mln XEL
  • \n
\n

The crowdsale took place here: http://www.elastic.pro/donations
\nFor useful links and more information, go to https://cyber.fund/system/Elastic 

\n

CURRENT CROWDSALES

\n

Iconomi
\n

\n

The aim of the project is the creation of management platform for crypto investment funds and the launch of two associated investment funds.
\n

\n

The subject of the crowdsale is ICN tokens representing 100% of Iconomy Open Fund Management Platform (OFM). The total number of ICN tokens to be sold is 85 million. 100 million of ICN will be released on the Ethereum platform within 10 days after the end of the crowdsale. Tokens will be distributed among investors proportionally to their contributions taking into account bonuses for early participation (+ 15% in the first week, + 10% in the second week, + 5% in the third week).
\nPrecise information on the distribution of ICN tokens is missing on the official website. According to the information in the related Bitcointalk thread, the tokens will be distributed as follows: 

\n
    \n
  • 85% - to be sold in the crowdsale
  • \n
  • 8% - founders reward
  • \n
  • 3% - reserve for the future team
  • \n
  • 2% - advisers reward
  • \n
  • 2% - marketing and bounty
  • \n
\n

Money raised from the crowdsale will be used as follows: 

\n
    \n
  • 62% - development
  • \n
  • 25% - operations
  • \n
  • 9% - legal expenses
  • \n
  • 4% - marketing
  • \n
\n

ICN owners will receive weekly dividends in ETH from all sources of Iconomi income, such as: 

\n
    \n
  • management fees
  • \n
  • rewards for fund management efficiency
  • \n
  • fees received from the funds registered with OFM
  • \n
\n

ICN holders will be able to vote on a number of matters related to the development of OFM, including choosing of the \"platform operator\" (currently, Cashila OOD s.r.o.) 

\n

The development plan: 

\n
    \n
  • 4Q 2016 \u2013 the launch of the open investment fund ICONOMI.INDEX, which will follow the likely development of the cryptocurrency market and will be freely traded on the market;
  • \n
  • 4Q 2016 \u2013 the launch of the closed investment fund ICONOMI.PERFORMANCE, which will focus on riskier investments in projects at an early stage of development
  • \n
  • 2017 \u2013 the launch of the platform for management of investment funds (OFM), the transfer of ICONOMI.INDEX and ICONOMI.PERFORMANCE funds to the platform.
  • \n
\n

Blind spots: 

\n
    \n
  • The currency is not specified for evaluation of the raised funds for further distribution of ICN tokens among investors.
  • \n
  • Will a part of the funds received during the crowdsale be allocated to ICONOMI.INDEX and ICONOMI.PERFORMANCE and, if so, will ICN holders receive relevant shares in these funds?
  • \n
  • There is no information as to the amount and frequency of fees charged from funds managed on OFM.
  • \n
  • The functions of the \"platform operator\" is described but very vaguely, as well as the process of further decision making involving ICN holders.
  • \n
\n

Red flags:

\n
    \n
  • There is no description of technical solutions for the project's tasks
  • \n
  • No program code is published
  • \n
\n

Crowdsale summary:

\n
    \n
  • Dates: 25 August 2016 \u2014 29 October 2016
  • \n
  • Total number of tokens: 100 mln ICN
  • \n
  • Tokens distribution: 85% will be sold in the crowdsale, 15% team reward and marketing
  • \n
  • Minimum crowdsale goal: 2 000 BTC (~ $1.5 mln)
  • \n
  • Raised so far: ~ $3.6 million (2,200 BTC + 71,000 ETH + 1.2 mln LSK + 63,000 USD + 940,000 EUR) from more than 1300 participants.
  • \n
\n

The crowdsale takes place here: https://ico.iconomi.net/
\nFor useful links and more information, go to https://cyber.fund/system/Iconomi 

\n


\nDeClouds
\n

\n

The main focus of the project is providing the opportunity for trading in precious metals.
\nThe network will be implemented as follows: 

\n
    \n
  • Proof-of-Stake consensus algorithm
  • \n
  • Decentralised Exchange
  • \n
  • Cloud-based blockchain
  • \n
\n

Apart from a patently weak 8-page paper and a number of publications on the blog, no detailed information about the project was found via official channels. Program code is also not disclosed. Nevertheless, developers promise to launch the network on 31 October 2016.
\nDuring the crowdsale, bonuses from 20% to 5% will be distributed, depending on the time of investment.
\n

\n

Crowdsale summary: 

\n
    \n
  • Dates: 6 August 2016 \u2014 October 6, 2016
  • \n
  • Total number of tokens: 100 mln
  • \n
  • Tokens distribution: 80% will be sold to the crowdsale participants, 10% is a team reward and 10% are marketing expenses
  • \n
  • Raised so far: ~ $179,000 (294 BTC)\u0414\u0430\u0442\u044b \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f: 6 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u2014 6 \u043e\u043a\u0442\u044f\u0431\u0440\u044f 2016 \u0433\u043e\u0434\u0430
  • \n
\n

The crowdsale takes place here: https://ico.declouds.com/
\nFor useful links and more information, go to https://cyber.fund/system/DeClouds

\n


\nHong
\n

\n

Investments are made by transferring ETH to the Etherium contract.
\n

\n

The Fund is formed for the period of 4 years, 3 of which are put for investing while the last year is for the exit. 80% of the money received as a result of fund liquidation will be distributed among Hongcoin holders, 20% among managers. Annual 2% fee to be charged for operational expenses of the managing organisation. The fee allocation will be defined by voting. The fund can be \"frozen\" at any time by the decision of 50% of shareholders.

\n

As a purpose for investment, 3 directions are selected: disruptive innovation, creativity and educational projects. Hong founders believe that the blockchain technology will most significantly impact these fields of human activity.
\nThe fund operates according to the following scheme: 

\n
    \n
  • Fund managers review projects and make a decision on whitelisting them;
  • \n
  • Hongcoin holders vote for the allocation of funds for investments within 15 days (the quorum of 20% is required for the approval of an investment);
  • \n
  • Fund managers prepare due-diligence and investment strategy for the project and provide any possible assistance in the development and promotion of the project;
  • \n
  • When the fund's term comes to an end, the managers carry out the exit process.
  • \n
\n

A company will be established for the management of raised funds, but it has not been determined yet in which jurisdiction. There is no information on the management parties available on the website nor through any the official channels.
\nThe crowdsale takes place in several stages, with 50 mln Hongcoin sold at each stage: 

\n
    \n
  • 50 mln \u0126 \u2013 1.00 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.05 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.10 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.15 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.20 ETH \u0437\u0430 100 \u0126
  • \n
\n

As long as the crowdsale is going on, investors will have the opportunity to change their mind and withdraw invested funds. After the crowdsale is finished, the exit opportunity will be closed.
\nCrowdsale summary: 

\n
    \n
  • Dates: 29 August 2016 \u2014 29 October 2016 (may be extended until 28 November)
  • \n
  • Total number of tokens: to be determined by the end of the crowdsale
  • \n
  • Tokens distribution: 100% will be sold in the crowdsale
  • \n
  • Crowdsale goal: at least 1,575,000 ETH (~ $19 mln), the maximum is 2.7 mln ETH (~ $33 mln)
  • \n
  • Raised so far: ~ $6,600 (11 BTC).
  • \n
\n

The crowdsale takes place here: http://www.hongcoin.org/
\nFor useful links and more information, go to https://cyber.fund/system/Hong
\n

\n

Judging by the current investments dynamics, the project will not succeed.

\n


\nPLANNED CROWDSALES 

\n


\nSynereo
\n

\n

One year after a crowdsale that raised $126,000 aimed at the development and launch of a decentralised social network, the project team announced the second funding round and the launch of the network'salpha version. Two funding campaigns start at the same time in September: the sale of Synereo Ltd shares on BnkToTheFuture and of AMP tokens.
\nFollowing the first crowdfunding, the distribution of AMP was as follows:

\n
    \n
  • 2.72% (45.8 mln) \u2014 sold during the first crowdsale
  • \n
  • 11.9% (200 mln) \u2014 user rewards
  • \n
  • 8.92% (150 mln) \u2014 reserve for the content creators
  • \n
  • 11.9% (200 mln) \u2014 founders' reward
  • \n
  • 13.68% (230 mln) \u2014 bounty program
  • \n
  • 50.61% (850.4 mln) \u2014 next funding
  • \n
\n

Synereo revised their plans and now aim to develop a protocol similar to the SAFE Network, which will include the following components:

\n
    \n
  • Proof-of-Stake consensus algorithm
  • \n
  • Distributed network of nodes connected on the principle of \"shards\", where blockchain is divided into many small segments
  • \n
  • Distributed repository
  • \n
  • Smart contracts
  • \n
  • Social layer (a social network motivated according to the Attention Economy Model)
  • \n
  • The possibility of building distributed apps
  • \n
\n

The grant program for dApps developers Project 11 with a budget of 1.11 million AMP is already in operation.
\n

\n

The popular website CoinMarketCap misleadingly states current Synereo capitalisation at about $10-13 million, which is not true because it is only the cost of 62,580,000 AMP (3.72%) in circulation on the market. According to cyber \u2022 Fund's calculations, with the total of 1.68 billion tokens, Synereo's real capitalisation reaches $300 million.

\n

It has not been disclosed yet how many tokens will be put up for sale, but we can assume that the minimum amount claimed by Synereo is about $130-140 million in case the entire reserve is sold, which is 850.4 mln AMP. This is a very ambitious plan, taking into account current distribution and the market price of tokens. Besides, it should be kept in mind that after the launch of the network, additional 5% of AMP will be emitted every year. In my opinion, they should sell the whole reserve without fixed prices and with token distribution proportional to investments. It will provide normal distribution and a fair market capitalisation.

\n

Despite the presence of a strong team with an excellent technological vision, we consider the evaluation of $300 mln inadequate.

\n

Crowdsale summary:

\n
    \n
  • Dates: September 2016
  • \n
  • Total number of tokens: 1.68 billion AMP
  • \n
  • Number of tokens for sale: unknown, probably 850.4 mln
  • \n
  • Crowdsale goal: presumably ~ $130-140 million
  • \n
\n

The crowdsale takes place here: https://www.synereo.com/sale
\nFor useful links and more information, go to: https://cyber.fund/system/Synereo

\n


\n

Golem Project
\n

\n

The aim of the project is to adopt any customer personal computer for the work that is done today by servers, computing farms or supercomputers. 

\n

As the result, Golem Net will become a truly decentralised network where users' summarised machine power will provide any amount of hardware resources required. At the moment, there is no document explaining how exactly it would work. We hope that such paper will appear before the crowdsale. 

\n

The Golem App will connect to the network from a local device to share computing power and deliver tasks for calculations.
\nThe micropayment system based on Ethereum will provide the incentivising component distributing rewards and processing transactions. Transaction fee will be set at 5%. 

\n

Currently, the network can work only with public data because the apps require direct access to data.
\nDevelopers announced the crowdsale on their blog

\n

Golem Network Tokens (GNT) are the shares that give the right to receive part of the revenue generated by Golem Network. 

\n

Crowdsale start date: September 2016. 

\n

Token distribution: 

\n
    \n
  • Total number of tokens: unknown
  • \n
  • 82% \u2014 crowdsale
  • \n
  • 6% \u2014 founders reward
  • \n
  • 12% \u2014 developer company reward
  • \n
  • Estimated amount of funds: a minimum of 100,000 ETH, a maximum of 650,000 ETH
  • \n
\n

For detailed information on the project, see http://golemproject.net/slides/index.html#/14
\nFor useful links and more information, go to https://cyber.fund/system/Golem
\n
\n

\n

SingularDTV
\n

\n

The ultimate goal of the project is the creation a thriving industry of decentralised entertainment.

\n

What they promise: 

\n

\u25cf SINGULAR \u2013 a TV series.
\nThe S-DTV flagship product is an epic sci-fi adventure TV series about decentralisation, scaling and emergence of intelligent systems that lead the humanity to a technological singularity. 

\n

\u25cf Documentary division
\nThis division will create full-length and short-length documentary series and movies about the blockchain, decentralisation and Ethereum. 

\n

\u25cf S-DTV rights management platform
\nAn app that will use smart contracts for registration and management of digital rights, as well as of income and royalties on intellectual property, namely, movies and television. Deals in the film and TV industry are the most difficult to arrange as they often involve hundreds of individual participants. 

\n

\u25cf On-demand video content portal (TVOD)
\nTVOD changes the way people watch entertainment programmes. S-DTV is born to create the TVOD portal for original content distribution, as well as for selected and acquired content. In addition to developing an interface on IPFS, S-DTV will use third-party portals such as GooglePlay, AppleTV iTunes and Vimeo to build a larger audience in a short time.

\n

Minimum investment goal \u2013 $500,000.

\n

Desirable funding \u2013 $7,5 mln.

\n

According to S-DTV documentation, Swiss company MME has developed a new, innovative organisational structure specifically for S-DTV: the Centralised Organised Distributed Company (CODE). It is the Swiss company, therefore, that will manage the finances and reinvest the income, while tokens will be used for paying out the dividends.

\n

Token distribution: 

\n
    \n
  • 400 mln Singular DTV GMBH
  • \n
  • 100 mln core investors
  • \n
  • 500 mln crowdsale
  • \n
\n

Funds distribution in case if $7,5 mln is raised: 

\n
    \n
  • \"Singular\" season 1 (3 episodes of the mini-series): $3.25 mln
  • \n
  • Documentary division: $0.50 mln
  • \n
  • Development of the rights management platform: $2 mln
  • \n
  • TVOD portal development: $1 mln
  • \n
  • Marketing: $0.50 mln
  • \n
  • Administrative, legal expenses and unforeseen circumstances: $0.25 mln
  • \n
\n

Crowdfunding is planned for September and will likely take place at Devcon2.

\n

The Ethereum and Consensys founder Joseph Lubin is included into the team as CTO.

\n

Unfortunately, in this project tokens only serve for distribution of dividends, and the project is centralised because 40% of tokens belong to Singular DTV GMBH. Another disadvantage is the fact that of the four declared founders/directors, only Zach Lebeau will work full time on the project. He is likely to be engaged in the studio rather than in the platform development; there are also risks associated with SEC.

\n

The main question is the development of the TVOD platform and the rights management platform: there is no understanding as to what kind of team will be working on it, and no technical description at the moment. If both platforms can be really implemented, the project is promising for investment.=

\n

For detailed information about the project, see: https://singulardtv.com/
\nFor useful links and more information, go to: https://cyber.fund/system/SingularDTV
\n

\n

Decent
\n

\n

It is designed for creative people, writers, bloggers, journalists and their fans and followers. The platform enables users to publish any posts, images, video or music content with no restrictions.

\n

Consensus algorithm \u2013 Proof-of-Stake.

\n

Decent has three functional roles: 

\n
    \n
  • Authors: content producers, writers, music producers etc.
  • \n
  • Consumers: readers, listeners and viewers
  • \n
  • Publishers: miners
  • \n
\n

Token distribution \u2013 30% via mining and 70% is distributed during the crowdsale, some of them will go to pre-mine funds to be distributed in the following way: 

\n
    \n
  • 10% \u2014 DECENT Foundation
  • \n
  • 2% \u2014 the Investment fund
  • \n
  • 1,000,000 DCT \u2014 campaign bounty
  • \n
  • 3,000,000 DCT \u2014 pre-launch marketing programme
  • \n
\n

On the crowdsale page, next to the conditions, we see a message that the project is supported by Google, though it does not correspond to the project's primary activity. Moreover, the current yellow paper ignores many issues such as, for example, how miners would store the content. Decent enters the content distribution market where such projects as Steemit, Synereo and LBRY already operate. 

\n

The crowdsale takes place here: http://sale.decent.ch/
\nFor useful links and more information, go to: https://cyber.fund/system/Decent
\n

\n

FirstBlood
\n

\n

This platform will allow players to bet without intermediaries. The payoff distribution will be also managed via smart contracts.

\n

The eSports betting market holds more than $130 million per year with 30% annual growth rate.

\n

3 monetisation channels:

\n
    \n
  • Matchmaking
  • \n
  • Revenue from the tournament organisation
  • \n
  • Advertising
  • \n
\n

Token will allow: 

\n
    \n
  • Match playing
  • \n
  • Match refereeing and voting for the referee
  • \n
  • Placing tournaments
  • \n
  • Requesting an award from referrals
  • \n
\n

Tokens distribution: 

\n
    \n
  • Crowdsale, 4 weeks, in the first hour 170 tokens for 1 ETH
  • \n
  • 10% to the project founders; these funds will be blocked for 12 months
  • \n
  • 5% will be placed in the platform development fund for the promotion and tournament awards
  • \n
  • 2.5 mln - bounty fund, to be distributed during the crowdsale for advertising and debugging
  • \n
\n

Crowdsale start date: 26 September 2016.

\n

In my opinion, it is an interesting project. The only reservation is that the market is not very vast, albeit actively developing. Besides, the motivation for developers and other market players is not very well thought through. In this regard, central players, who can also use smart contracts and predictions market to confirm the events results, may have an advantage. However, this project may indeed become the market leader on the condition of good community building and active incentivising of referees and the jury. 

\n

For detailed information about the project, see: https://firstblood.io/
\nFor useful links and more information, go to: https://cyber.fund/system/FirstBlood
\n

\n


\nMassNetwork
\n

\n

The three main entities: 

\n
    \n
  • Advertisers
  • \n
  • Websites
  • \n
  • Internet users
  • \n
\n

The basic principle is to follow the industry's trend to monetise customer attention and create a convenient and fair trading platform for all parties involved, including Internet users. Mass allows users to receive instant rewards for web surfing through the built-in p2p infrastructure based on the blockchain. As a result, advertisers will pay users a fair price for their attention and data without intermediaries.
\n

\n

An increasing number of customers are using ad-blocking software. Mass offers a browser extension and a mobile app that can block ads as well as protect personal data. Yet, their primary goal is not blocking but rather improving users' experience with advertising and rewarding them with cryptocurrency to establish a consumer-advertiser relationship and, therefore, reduce the number of ad-block users. Mass will also have a cryptocurrency wallet and blockchain-based payment system.

\n

Crowdsale dates: 6 September \u2014 1 December 2016

\n

Token distribution: 

\n
    \n
  • 70% to the crowdsale participants
  • \n
  • 30% to Mass team members
  • \n
\n

Mass plans to build its own full-blown infrastructure for advertising industry with an internal token. A similar solution has been already introduced to the market \u2013 the Brave browser. It blocks default ads and replaces it with incentivising ad materials. The bitcoins received from advertisers are distributed among users, the platform and the endorsing website. In my opinion, if Mass used smart contracts or a proprietary blockchain enabling further token emission to incentivise users and websites, they could compete with bitcoin. However, Mass token works on the bitcoin blockchain, which on the one hand makes it very secure, but on the other, has no advantage over bitcoin per se. In favour of bitcoin are accessibility, recognition, and a more stable price. 

\n

Crowdsale takes place here: https://ico.mass.network/#/?aid=ep6oxa
\nFor useful links and more information, go to: https://cyber.fund/system/MassNetwork

\n

---

\n

All data and calculations are quoted as of 6 September 2016 with bitcoin price at $609. For closed crowdsales evaluation in USD is given using the average token price at the date of closure.

\n

---

\n

Big thanks to: 

\n\n

---

\n

Original was posted in Blockchain Boom

\n


\n", + "cashout_time": "2016-09-16T19:34:50", + "category": "cyberfund", + "children": 0, + "children_abs_rshares": "4649989991534", + "created": "2016-09-15T19:30:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961089, + "json_metadata": "{\"tags\":[\"cyberfund\",\"blockchain\",\"crowdsales\"],\"links\":[\"https://cyber.fund/system/BlockPay\",\"https://cyber.fund/system/BitShares\",\"https://www.odoo.com/\",\"https://blockpay.ch/newsroom/investor-relations/blockpay-reserves/\",\"https://cyber.fund/system/AntShares\",\"http://www.antshares.org/ico\",\"http://www.elastic.pro/\",\"http://www.elastic.pro/donations\",\"https://cyber.fund/system/Elastic\",\"https://cyber.fund/system/Iconomi\",\"https://bitcointalk.org/index.php?topic=1587736.0\",\"https://ico.iconomi.net/\",\"https://cyber.fund/system/DeClouds\",\"https://drive.google.com/open?id=0B8VJa9S_WxSSSHJhN0o0QkVPN1E\",\"https://medium.com/@decloudscom/latest\",\"https://ico.declouds.com/\",\"https://cyber.fund/system/Hong\",\"http://etherscan.io/address/0x9Fa8fA61A10Ff892E4EBCeB7f4e0FC684C2ce0a9\",\"http://www.hongcoin.org/\",\"https://cyber.fund/system/Synereo\",\"https://blog.synereo.com/2015/05/10/amp-distribution-complete-2/\",\"https://blog.synereo.com/2016/08/29/synereos-second-fundraising-campaign-coming/\",\"https://www.synereo.com/alpha/\",\"https://bnktothefuture.com/\",\"https://cyber.fund/system/MaidSafeCoin\",\"https://www.synereo.com/learn-more/\",\"https://github.com/synereo/synereo.github.io/raw/master/whitepapers/synereo.pdf\",\"https://www.synereo.com/developers/\",\"http://coinmarketcap.com/assets/synereo/\",\"http://omnichest.info/lookupsp.aspx?sp=39\",\"https://www.synereo.com/sale\",\"https://cyber.fund/system/Golem\",\"http://golemproject.net/doc/GolemNanopayments.pdf\",\"https://blog.golemproject.net/golem-network-token-gnt-sale-220c2a732f9#.fdn8hljmq\",\"http://golemproject.net/slides/index.html#/14\",\"https://cyber.fund/system/SingularDTV\",\"https://singulardtv.com/\",\"https://cyber.fund/system/Decent\",\"http://sale.decent.ch/\",\"https://cyber.fund/system/FirstBlood\",\"https://firstblood.io/\",\"https://ico.mass.network/#/\",\"https://ico.mass.network/#/?aid=ep6oxa\",\"https://cyber.fund/system/MassNetwork\",\"https://steemit.com/@creator\",\"https://steemit.com/@coinfox\",\"http://blockchainboom.coinfox.info/\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:44:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:30:36", + "net_rshares": "4649989991534", + "net_votes": 10, + "parent_author": "", + "parent_permlink": "cyberfund", + "percent_hbd": 10000, + "permlink": "crowdsales-monitor-august-2016", + "reward_weight": 10000, + "root_author": "vitaly-lvov", + "root_permlink": "crowdsales-monitor-august-2016", + "title": "Crowdsales Monitor - August 2016", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "9916447926886758335", + "vote_rshares": "4649989991534" + }, + { + "abs_rshares": 64358062, + "active": "2016-09-15T19:44:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "agartha", + "author_rewards": 0, + "beneficiaries": [], + "body": "I think I just hacked Monero lol it's a joke but the security too thou \n\nLook at this! \n\n\nhttps://www.facebook.com/agartha.white.3/posts/179267779175393", + "cashout_time": "2016-09-16T19:44:00", + "category": "steemit", + "children": 0, + "children_abs_rshares": 64358062, + "created": "2016-09-15T19:44:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961211, + "json_metadata": "{\"tags\":[\"steemit\",\"hack\",\"monero\",\"bitcoin\",\"lol\"],\"links\":[\"https://www.facebook.com/agartha.white.3/posts/179267779175393\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:44:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:44:00", + "net_rshares": 64358062, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "steemit", + "percent_hbd": 10000, + "permlink": "i-hack-monero-xmr", + "reward_weight": 10000, + "root_author": "agartha", + "root_permlink": "i-hack-monero-xmr", + "title": "I hack Monero (Xmr) ?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "296794399420393", + "vote_rshares": 64358062 + }, + { + "abs_rshares": 1202120459, + "active": "2016-09-15T19:43:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "varda", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

  In the morning, at 5 am when the moon completes his round, the alarm rings, my deepest sleep I wake up painfully. K\u00e9ops my cat starts singing tour and stops only when he filled his mess tin. Sweety then, the cat of my son jumps on the furniture in the kitchen and also claimed his bowl. Kashmir him not to come after me, until I make him hugs.

\n

\n

\n

\n

 A small cup of coffee and I'm up for the day. After my shower, I have to feed the fish pond and two hens, they are waiting for me impatiently for me to release them from their cages.

\n

\n


\n

\n


\n

 6:15, I start my bag on her arm, my water bottle and my biscuit for lunch. On the road I am alone, few vehicles I meet. Great to run your car on a deserted road. In the winter when it snowed, I am the first to make tracks in the whiteness of the snow grows like cotton wool, sometimes, crazy beyond me and skids, it is an adrenaline rush. In summer the sun rises gives the sky a color of red sweetness, yellow, orange. In autumn, the trees begin to change color, it is a season because I love the beauty of trees is unique. 

\n

\n


\n

Here I come down the street or is my workplace, hospital, regional hospital, the CHR. Vehicles coming after one another because we start at 7am. The staff is found, speak, tells their evening then everyone goes to the same place: the time clock, control object of our hours worked.

\n

\n


\n

 In the ladies locker room, it gets held: white jacket with blue and green patterns representing the logo of the institution, blue pants with various pockets which we do not serve! 

\n

\n


\n

We arrive in our service, mine is the neurological rehabilitation service: we give up (or so) of people who have a stroke, an accident with neurological trauma, people who have multiple sclerosis or Guillain barred and other chronic diseases whose name is almost unknown. 

\n

\n


\n

\n


\n

\n


\n

We start our day with a report on each patient last night, we have 20 in service. After beginning the nursing: we make the toilet of the patient who is totally dependent. We get up in the chair. For others, we must educate, continue the actions he has learned with the therapist in the individual care, the patient should regain maximum independence so they can go home and take care only . It's a job that can last from 3 months to 6 months beyond, we can not do anything for them. 

\n

\n


\n

Headline in this service is: you come to bed but you leave again walking. 

\n


\n

Sometimes, we fail either because the patient does not want a return to autonomy, or because the patient is too ill. We give the same chance to everyone, rich, poor, alcoholic, drug addict, young or old. 

\n


\n

The management of a patient goes from shaving the beard of a man to the presentation on the toilet, the room arrangement the carefully tended beds. 

\n


\n

Lunch arrived around 8:30 am, few patient is in the dining hall for breakfast, other unfinished eat in bed Logistical assistance serves meals that are different if the patient is diabetic, diet, dieters, old, or in solid supply resumption. You should know that when the patient has had a stroke, a stroke, swallowing is absent, which means that if the patient eats a sandwich, but he swallows the bread goes in the bronchial tubes and not in the stomach, giving a false swallowing, bronchi become infected and it's a disaster. So this patient who made false swallowing should eat while cream consistency and drink thickened liquid. Which is not very good but I admit it must go through these stages in order to re-eat a day normally. 

\n


\n

Physiotherapists arrive at 9am and leave a 17h, occupational therapists also. There is also a neuropsychologist, a speech therapist and all do work that allows the patient to regain maximum independence, which means that the patient all day is busy. Visitors can come between 14:30 and 19:30. 

\n


\n

After lunch, we continue our work, when all is well, we finish around 10:30 or 11am but sometimes it is noon we are still in the rooms. 

\n


\n

In terms of handling, the entry of the patient, it is usually in bed or in a wheelchair with a right hemiplegia or left, some have forgotten that they had half a disabled body, so it must withstand and no wear and show him how to do with one leg to go from wheelchair to bed and vice versa. Others are completely invalid, they know not move neither arms nor legs, and for those, or we wear them either we lift them with a forklift. 

\n


\n

During dinner, we feed the disabled and we encode our care in the computer.

\n


\n

 Around 13h, we are a few naps after going on the toilet. Sometimes we have a problem in the pants, oops! When everyone is changed to bed, we have a service change ratio and the time, the hour of the end of our service is lagging. At 14h is the start of the morning shift. For my part, I take a good shower and I take the way home or waiting for my cats and my dog makes me a big party. 

\n


\n

We must not believe that the nursing profession is simple, each service is different and you can not compare the care of each other. 

\n


\n

I hope I have not bothered you with this long text, I wish you a good day to you all.     

\n", + "cashout_time": "2016-09-16T19:43:54", + "category": "story", + "children": 0, + "children_abs_rshares": 1202120459, + "created": "2016-09-15T19:43:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961208, + "json_metadata": "{\"tags\":[\"story\",\"health\"],\"image\":[\"https://www.steemimg.com/images/2016/09/15/DSCN0477faad0.jpg\",\"https://www.steemimg.com/images/2016/09/15/keops0029612b.jpg\",\"https://www.steemimg.com/images/2016/09/15/Au-sommet81f7b.jpg\",\"https://www.steemimg.com/images/2016/09/15/16e3c4.jpg\",\"https://www.steemimg.com/images/2016/09/15/Photo0224b24a.jpg\",\"https://www.steemimg.com/images/2016/09/15/d85917d4a45b3d581b5f40d1d7a7504a3bb1e.jpg\",\"https://www.steemimg.com/images/2016/09/15/chr841bd.jpg\",\"https://www.steemimg.com/images/2016/09/15/DSCN1513-Copiee7a4d.jpg\",\"https://www.steemimg.com/images/2016/09/15/Capture2bb0b8.jpg\",\"https://www.steemimg.com/images/2016/09/15/370086-1f7d83.jpg\",\"https://www.steemimg.com/images/2016/09/15/Capturec0ccc.jpg\",\"https://www.steemimg.com/images/2016/09/15/souleve-malade-foldyadb08.jpg\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:43:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:43:54", + "net_rshares": 1202120459, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "my-day-hospital", + "reward_weight": 10000, + "root_author": "varda", + "root_permlink": "my-day-hospital", + "title": "My day hospital", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "5542136534307198", + "vote_rshares": 1202120459 + }, + { + "abs_rshares": 54846770, + "active": "2016-09-15T19:43:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ejaredallen", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

Nature

\n

I haven't stopped and taken a picture of the beauty around me in a long time. It's funny how we can get so caught up in work and the business of a crazy life and miss the simply beauty along the way. Sometime you've just got to stop and smell the roses; and while you're there, take a picture!

\n

\n

These aren't roses, I know: they're wild flowers. They don't get the nurture and care that roses do, and yet they are provided for and they bloom into beautiful blossoms in their own time. They have a harder life than others, and that's how we humans are as well. Some of us were well taken care of growing up and were treated like roses, while others were left in the field to grow up alone and without the love and care we should have had. But we are all beautiful in our own ways and if we survive long enough, we will blossom into something spectacular.

\n

\n

Colorado mountain rivers

\n

When the snow on the tops of the mountains melt, it feed the rushing rivers that carve their way down the mountainside. The climbing is excellent, the whether and the views are truly gorgeous, but something about the rivers rushing through the mountains draws you in. There is a memorization about the brave rivers unafraid of the mountains and simply rushing on by recklessly.

\n

\n

Mississippi at sunset

\n

Sometimes the world just slows down and magic happens. This was one of those times. On the night before my sister's wedding in Tupelo, Mississippi the sky exploded in color. What a calm reassurance before a monumental event: the approval stamp of God upon the sanction of their marriage.

\n

\n

Hundreds of years old Indian hieroglyphs in Arizona

\n

This was an incredible hike in the Arizona mountain ranges to discover a place where the Apache Indians, or perhaps some other tribe had lived hundreds of years ago!

\n

\n

Uganda, Africa at twilight, from a moving bus

\n

Africa is always an adventure, but in 2015 we took a safari on the northern rim and caught this shot on the way back to the lodge. I love how the beauty of the world is unique in its diversity from place to place, even across the Atlantic.

\n

\n

This is one of my favorite shots. I don't remember where I took it or when, but the colors, the bliss, the peacefulness of this field of flowers was stunning. I'm glad I was able to capture an image of its beauty to remember it by. And to think, all of this beauty was made by God in a second! His power to create a world is amazing and perfect in every way. We get to see His marvelous creation every day! 

\n

Follow me @ejaredallen for more pictures and great content!

\n", + "cashout_time": "2016-09-16T19:42:24", + "category": "photography", + "children": 0, + "children_abs_rshares": 54846770, + "created": "2016-09-15T19:42:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961197, + "json_metadata": "{\"tags\":[\"photography\",\"pictures\",\"art\",\"steemit\",\"travel\"],\"image\":[\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-986x1024-289x300.jpeg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-3-1024x768-300x225.jpeg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6440-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6031-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_5829-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/2015-07-13-06-37-59-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_7281-1024x1024-300x300.jpg\"],\"links\":[\"https://steemit.com/@ejaredallen\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:43:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:42:24", + "net_rshares": 54846770, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "wanna-see-something-cool", + "reward_weight": 10000, + "root_author": "ejaredallen", + "root_permlink": "wanna-see-something-cool", + "title": "Shot From Around The Block On An iPhone!", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "252932614230673", + "vote_rshares": 54846770 + }, + { + "abs_rshares": "5891496080", + "active": "2016-09-15T19:42:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "cwbrooch", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

This is part 2 of my Memoir.  Missed Part 1? Click here.
\nDon't know what's going on? Start from the beginning here.

\n

If you like what you're reading, follow me @cwbrooch for more craziness. if you love what you're reading recommend me to other peeps :) feedback is also very appreciated.

\n

\n

Russian Roulette - A Memoir of my Two Years in Moscow - Part 2 - Under the Table Tactics

\n

In this part of my memoir I am going to attempt to describe the dark side of Moscow. All stories depicted here either happened directly to people I knew, or were described to me as  a it's-russia-get-used-to-it anecdote.
\nYes, I will be talking about corruption and paying people under the table for things but bear in mind that even though it seems like a common practice definitely not all people do that and not all people experience the phenomenon.

\n

A ROUTINE POLICE CHECK 

\n

It is said that it is extremely wise to keep 2k-5k Rubles (about 28-68 Euro, 30-77 Dollars, 23-58 Pounds) in your registration papers at all times. They tend to disappear when you get your documents back from the officer... If one does not have such loose change, the guy tends to make one's life difficult. \"You were speeding\", \"You didn't stop at the STOP sign\", \"You're light is out\" etc. Driving is another interesting phenomenon in Moscow. You might think that since the metro is so packed, the streets will be empty. On the contrary, but I will not get into that right now as that makes a completely different post...  However, what I will tell you is  how one of my students passed her driving exam, which leads us to...

\n

PAYING TO PASS AN EXAM

\n

After her first failed attempt, my student looked at her instructor/examiner and asked: \"Could you please tell me what I did wrong, so I can work on it in the future?\" He stared back at her surprised and announced: \"Well, you didn't pay me extra, what do you expect?!\" At that point even I was shocked - \"So people openly tell you they want money?!\" \"Get used to it Kasia, It's Russia....\"
\nNeedless to say, she was forced to pay the second time around and surprise, surprise, she passed....
\n
\nI taught English in a company. I came one week, and saw that everyone was kind of in a rush and slightly agitated. I asked what the problem was and they said they were waiting for an audit. I remember wishing them good luck... One lady looked at me and smiled \"We paid the guys to look the other way, it will be fine!\" I didn't even bother to comment as I had aleady known there was no point...

\n

GETTING INTO A PRIVATE EVENT

\n

It was the three of us - my BF, his friend and I. We wanted to do some clubbing and the friend decided we should go to a very trendy bar in the heart of Moscow. He had a loyalty card there and was well known among the bouncers. We didn't really look the part, but a hefty fee paid for each of us (by the friend) was enough to let us in...

\n

That was a minor party. Let's talk about the big stuff, involving bigger money!
\nIf you know someone, who knows someone, who knows someone you might be able to (legally) attend the dress rehearsal of the famous Victory Parade in May (the 9th to be exact). It costs about 10k (137 Euro, 116 Pounds , 153 Dollars) Watch fragments of the video below to see the magnitude of what I am talking about. 

\n

The whole thing is long, play with it a little bit. The good stuff starts at about 40 minutes. Source

\n

https://www.youtube.com/watch?v=5EI3FYynz-Q

\n

To enter the actual parade however, you need to be a prominent member of the society (e.g. ex-military) or someone famous or filthy rich :)

\n

The event itself is quite impressive and for soldiers taking part in the march it is an honor among honors.  
\nWe had the privilege of living 15 minutes on foot from the Red Square so we saw all the preparations and marches right outside our windows (till 11pm at night...)

\n

\n

PS. I am aware that my portrayal of Moscow might seem bleak and depressing. Believe me, it was not. I;m simply trying to describe the juicy bits, the interesting stuff :) My next post will be more optimistic as I will be talking about sports, parks an recreations  :)

\n

 ____________________________________________________________________________

\n

Thank you for reading Part 2 of my memoir.

\n

Want to find out more about living in Moscow? Follow me @cwbrooch :)

\n

My other work on Streemit:

\n

1) Russian Roulette - Preamble 

\n

2) Russian Roulette - Part 1 - Surviving Underground

\n

3) Why shouldn't you use google translate for learning English and which dictionaries are far better

\n

4)  How to learn vocabulary effectively in any language!

\n

5) About me: introduction  
\n 

\n


\n", + "cashout_time": "2016-09-16T19:44:28", + "category": "story", + "children": 0, + "children_abs_rshares": "5891496080", + "created": "2016-09-15T19:41:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961189, + "json_metadata": "{\"tags\":[\"story\",\"writing\",\"travel\",\"life\",\"russia\"],\"users\":[\"cwbrooch\"],\"image\":[\"https://s14.postimg.org/bpiqdmgpt/Untitled.jpg\",\"https://img.youtube.com/vi/5EI3FYynz-Q/0.jpg\",\"https://lh3.googleusercontent.com/3OMfOqwX2pQ5BYeql8V1tg4J6VcMzG75pLD-nhsfHw0BYFLEQOQSeVl-sVdEkDwS6VfPco-FukpjwQONwimoOhzzT4GIPDt_VGbJfNDYaltTvEcyOFK5do7PZD1-tjDW0nxKYhUQdxG4yoxX6ZS590fMaveLKSI2Voz579yTME9U8D7UgN7R3ufBrAcq0KV8kA9VqMVxryabh2X_jBiMnP3Uwjj_hrWn3ARzHggZMRuo3G3ORSKDpoqcBA25bRDeWHe7nVT4X58NolQ4yY8HVjzyUr4zDneI8dy_eHnSf0F0FBZ8kn4NQQ3ueVR84tu-Ot64CZb9a1SetmKmupvAxBbuS8z3jBsvCECD8A5jz9qevTOkgHEbV0z2hVteH64gCLg3OI9mRVqw2GWAYwNSUlGGtwCxmwXq3p_j_igwncarIhIF2HX_bV0ACrucmewR6IiIdVfaKKAO9g2ycLbJRr_SBwE9TxBND9ar0R267Grzq5SHywG71h1nxZnXInW-HQ2l1cou8zqdiEUanqkeSbgIunZVNBcEnYYinmF-WZd5y0_Luc8rdDYy0GlKAtAJ4z0-woKDs6d_XKWhiWsYOAW3rWwCe3cJylK_6H7wNO2PlBKL=w1163-h775-no\"],\"links\":[\"https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-in-moscow-part-1-surviving-underground\",\"https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-of-living-in-moscow-preamble\",\"https://www.youtube.com/channel/UC4qBu3EvraPWezHbaC7npIQ\",\"https://www.youtube.com/watch?v=5EI3FYynz-Q\",\"https://steemit.com/@cwbrooch\",\"https://steemit.com/languages/@cwbrooch/why-shouldn-t-you-use-google-translate-for-learning-english-and-which-dictionaries-are-faaaar-better\",\"https://steemit.com/languages/@cwbrooch/how-to-learn-vocabulary-effectively-in-any-language\",\"https://steemit.com/introduceyourself/@cwbrooch/teacher-story-teller-cat-lover-about-me\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:42:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:41:09", + "net_rshares": "5891496080", + "net_votes": 2, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "russian-roulette-a-memoir-part-2-under-the-table-tactics", + "reward_weight": 10000, + "root_author": "cwbrooch", + "root_permlink": "russian-roulette-a-memoir-part-2-under-the-table-tactics", + "title": "Russian Roulette - a Memoir [Part 2] - Under-the-table Tactics", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "27129771364344680", + "vote_rshares": "5891496080" + }, + { + "abs_rshares": 0, + "active": "2016-09-15T19:42:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "philanthropest", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", + "cashout_time": "2016-09-16T07:40:21", + "category": "freedom", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-15T19:40:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961180, + "json_metadata": "{\"tags\":[\"freedom\",\"anarchy\",\"steem\",\"life\",\"\"],\"image\":[\"https://img.youtube.com/vi/y02aBfNT8n4/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=y02aBfNT8n4\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:42:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "", + "parent_permlink": "freedom", + "percent_hbd": 10000, + "permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", + "reward_weight": 10000, + "root_author": "philanthropest", + "root_permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", + "title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "25365523997", + "active": "2016-09-15T19:43:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ancientofdays", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n


\nImage Source & External Article - http://lifehopeandtruth.com/prophecy/revelation/mark-of-the-beast/

\n

Just recently here in Roswell NM (where I live, yes) I was telling a shop owner about Steem and Steemit, and he made the comment that he thought it sounded like \"...one more step towards the Mark of The Beast\"...

\n
\"...And he causeth all, both small and great, rich and poor, free and bond, to receive a mark in their right hand, or in their foreheads: And that no man might buy or sell, save he that had the mark, or the name of the beast, or the number of his name. Here is wisdom. Let him that hath understanding count the number of the beast: for it is the number of a man; and his number is Six hundred threescore and six...\"
\n - Revelation Chapter 13 (
Full Chapter)
\n

Yes Virginia... I hate to break it to you, but digital currency IS indeed \"one more step towards the mark of the beast\" - and we all know it. 

\n

Let's just get that out of the way now. But fear not, this is NOT a paranoid religious post warning people about the eternal dangers of joining Steemit, nor of using digital currency in general however. This is just a hopefully rational religious post (inspired by a secular article) meant to stem paranoid fear (amongst Christians mainly) of utilizing Steemit specifically, and digital currency in general. Which I will get back to in just a second...

\n

But first... If to you, \"stemming this fear\" makes me \"part of the Satanic conspiracy\" then I can't help that, and I won't engage with or reply to you if that is your view (which you are entitled to hold, and even to express as a comment below). 

\n

I'd rather use my time to inform non-Christian people who may have clicked in here (for laughs perhaps?) that Yes, I believe that the mark of the beast is coming, and you DO need to aware of the dangers of accepting it!

\n


\nImage Source & External Article: http://www.evangelicaloutreach.org/markbeast.htm

\n

 (Hence the external articles links being detailed here for further reading - which I have not closely vetted btw, they just had top matches for images)...

\n

Anyways...

\n

As I told my friend Don (who DID join Steemit @roswellrockman ) \"So is your debit card!\"

\n

Putting Don and I's end-of-conversation succinctly, there are many aspects of our everyday lives that have brought and are bringing us \"one step closer\" to the mark of the beast - but they are not in themselves the mark, they are not evil, and (imho) they are not to be feared, or shunned. 

\n

(Altho I will note respectfully that The American Amish community feels differently - see the link below these next images.)

\n

There are indeed many examples from our now-everyday lives that could easily be said to be bringing us \"one step closer\" ... such as the \"Bar Codes\" on every product we purchase

\n


\n... especially if the same types of \"scanners\" that read them, were then pointed to a laser tattoo or RFID chip in your hand, to receive payment for these goods at the register. 

\n


\nAll 3 Images above & External Article: http://www.whatdoesitmean.com/index1392.htm

\n

\"Radio Frequency ID chips\" (see Wikipedia article) are already being used (some will say \"being tested\") to help pet owners keep track of their pets. Wal-Mart and other retailers also use them to track expensive items, to help prevent shoplifting. And especially \"hi-tech\" firms demanding secrecy and security clearances even use them on employees! 

\n

Could Big Brother and The Rothchild's and The Federal Reserve Banks and The U.N. (collectively, \"The New World Order\") one day very soon use all of this to both track you physically, and to observe or control your money supply? 

\n

Absolutely!

\n

It's no stretch at all to imagine combining RFID technology with UPC Bar Codes - and then connecting it all to your bank account via the Internet (or the Blockchain!) - to fulfill the Bible prophecy about the mark of the beast happening in the near future, or in our lifetimes.

\n

Folks I am no stranger to this belief. I first penned the words myself way back in 1997 (in my original webpage and book \"Come Sail Away : UFO Phenomenon & The Bible\"- << Amazon link to 2105 version) in the section I titled \"Genesis 6 to 666\"

\n

\"To understand how the world\u2019s entire economy could be tied into a mark on one\u2019s flesh would be a completely unimaginable miracle - a near impossibility - inconceivable to most Christians throughout the ages. This has left some events of the book of Revelation a little hard to piece together into a believable probability, much less an immediate future.
\n
\n\"In order to accomplish such an incredible thing, you\u2019d have to have some way to access a person\u2019s bank account from anywhere in the known world; all financial institutions would have to have some way of talking to each other through some sort of, of, machinated \"net,\" or a \"web,\" or something; you\u2019d have to come up with some sort of mark, or magnetic strip, or some \"barred code\" that some futuristic \"scanner\" could read; surgical or laser-tattoo technology capable of implanting it, and a \"personal secret code\" so that no one could ever rob you in this \"cashless society.\" Any-time machinery, for financial transactions, would have to be everywhere. Everyone would have to be assigned a separate number at birth. These \"scanner devices\" would have to be in every grocery, hardware, department and convenience store, and every product would have to be marked with this computerized bar-code\u2026
\n
\n\"Yup, you\u2019d need all that\u2026
\n
\n\"Get that in place and you\u2019re ready to go...\" 

\n


\n(Original 1997 cover, now out of print - 2015 version available on Amazon here)

\n

So getting to my main point - finally...

\n

YES. All kinds of technological advances from the past 30 years and more could and probably WILL - imho - be used to make the Mark of the Beast possible... call me a paranoid religious nut if you like, I do firmly believe that such is coming.

\n

The Internet itself, for example, connects and brings the whole world online. But if you're using it to read this, now, you are perhaps already hooked, and have no room to talk about Steem or digital currencies being the pre-cursors to the mark of the beast. Because everything you're already using is also...

\n

The magnetic strips on the back of the debit and credit cards you've (most likely) been using for years and years. Online banking... Bar Code technology in grocery stores that you apparently don't have the religious conviction to oppose not abstain from ... retinal scanners, or fingerprint security features in your smartphone...

\n

See what I mean? 

\n

If you are not a practicing Amish person - or you use only \"true money\" (Gold and Silver) to barter and to trade for goods and services when you need them (or farm and grow your own food, to ensure that you don't) - then there are already DOZENS of aspects of your everyday life that you have accepted and routinely utilize that have already in fact brought YOU \"one step closer to the mark of the beast.\"

\n

YES - these \"new-fangled concepts\" like Steem Dollars, Bitcoin, and Digital Currencies are perhaps OBVIOUS steps moving us all FURTHER along that path to one-world government under antichrist...

\n

(EXCEPT IT MUST BE NOTED in this article for you newbies to the concept, that TO-DATE, popular digital currencies (Steem, Bitcoin, Etherium, etc, etc) are actually intended AND ARE CURRENTLY BEING USED to help users MOVE AWAY from immoral government spying networks, and away from evil centralized banking platforms, putting \"the power in the hands of the people\" - for awhile at least. 

\n

So technically, by joining Steemit and adopting Steem as currency, you are fighting the underpinings of the Satanic One-World government that is forming all around us. You are actually, literally, restraining The Beast from his march to power! For awhile anyways...

\n

So there.)  

\n

But yes, I would affirm that some form of digital currency in general could and possibly will be used by the evil-antichrist-oneworldgovernment-rothschilds-federalreserve-warmongeringtotalitarian New World Order yet to arise under the real antichrist when he appears.

\n

In fact, it was seeing this article today published by The Coin Telegraph 

\n


\n4 Reasons Why Your Nation Will Kill Cash For A Digital Currency

\n

that inspired me to drop everything and write this particular article. 

\n

The Coin Telegraph wonderfully details how national interests (Satanic, New World Order interests, for our purposes here) probably will in fact adopt a digital currency of their own in the coming years. I can totally see THEIR VERSION of a global digital currency exchange being the near-final step in implementing the true Mark of the Beast, when (but not until) The Antichrist is revealed.

\n

But Steem/Steemit just isn't it. Today's free market digital currencies - if anything - are the \"gum in the works - fly in the ointment - monkey wrench in the machine\" to the eventual true Mark of the Beast, now that I think about it. Today's digital currencies actually serve to free us from the system that is now in place, by providing de-centralized mediums of currency (barter, exchange, etc) that serve as powerful alternatives to current banking structures, and chains.

\n

Governmental agencies (NWO ones or not) are actually in a scramble currently to figure out HOW to regulate, tax, and ultimately control the existing currencies. But neither they - not the devil - are behind them. 

\n

So my position is to say that unless you're either willing to become Amish today and forego ALL of the technologies I've detailed here (and electricity) then you've really nothing to fear from becoming an early adopter of Steem/Steemit. 

\n

The Bible clearly instructs and solemnly warns all to not accept the Mark of the Beast, when it finally comes in the form of a mark on your hand or forehead that cannot buy or sell without receiving. Abstaining from \"the steps\" has proven impractical, unavoidable (again, except to the Amish), and ultimately not directly commanded in scripture.
\n 
\n===============
\nTwo things in closing:
\n#1) Here's one more lengthy scripture-packed article on Biochips & TMOTB I'll recommend if you're unlearned about the whole topic...
\n#2) You may have noticed in this article that I'm an author in Roswell who deals with the topics of Aliens, UFOs, and The Bible. I have to date organized 7 conferences on that topic, and (after a 7 year hiatus) am putting together a new one for Summer 2017... please follow @ancientofdays for updates and tons of videos yet to come from past speakers and theologians who have participated, and will be again this year. 

\n

I bring all of this up in THIS article, only to announce here that:

\n

My non-profit \"Roswell Mission\" will be accepting Steem for conference registrations (follow for details) and that
\nUP-FRONT VIP SEATING goes to those who pay VIA STEEMIT!

\n", + "cashout_time": "2016-09-16T19:18:59", + "category": "money", + "children": 2, + "children_abs_rshares": "25365523997", + "created": "2016-09-15T18:57:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 960785, + "json_metadata": "{\"tags\":[\"money\",\"religion\",\"steem\",\"beyondbitcoin\",\"christianity\"],\"users\":[\"roswellrockman\",\"ancientofdays\"],\"image\":[\"http://dc95wa4w5yhv.cloudfront.net/image-cache/the-mark-of-the-beast_640_426_80_c1.jpg\",\"https://scontent-lax3-1.xx.fbcdn.net/v/t1.0-0/s526x395/14358900_10154412654816605_8330352735442203600_n.jpg?oh=e2a53091d31ad716798686aec3f7bef0&oe=586CF056\",\"http://www.whatdoesitmean.com/wmb2.jpg\",\"http://www.whatdoesitmean.com/wmb3.jpg\",\"http://www.whatdoesitmean.com/wmb4.jpg\",\"http://www.alienstranger.com/seekye1//CSAcover.jpg\",\"https://cointelegraph.com/images/725_Ly9jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy8zYjkxMjBiMjg3YTRmZDJjZjE5MTcyZDk0ZDBhOGQzOC5qcGc=.jpg\"],\"links\":[\"http://lifehopeandtruth.com/prophecy/revelation/mark-of-the-beast/\",\"http://www.AlienStranger.com\",\"http://www.ancientsofdays.net\",\"https://www.biblegateway.com/passage/?search=Revelation+13&version=KJV\",\"https://cointelegraph.com/news/4-reasons-why-your-nation-will-kill-cash-for-a-digital-currency\",\"http://www.evangelicaloutreach.org/markbeast.htm\",\"http://www.whatdoesitmean.com/index1392.htm\",\"https://en.wikipedia.org/wiki/Radio-frequency_identification\",\"http://amzn.to/1Ueug63\",\"http://www.av1611.org/666/biochip.html\",\"https://steemit.com/steemitabuse/@ancientofdays/credibility-matters-on-steemit-therefore-i-wish-to-offer-some-proof-photos-of-my-non-profit-status-and-intent-here\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:41:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T18:57:12", + "net_rshares": "25365523997", + "net_votes": 6, + "parent_author": "", + "parent_permlink": "money", + "percent_hbd": 10000, + "permlink": "are-steem-bitcoin-etc-obvious-pre-cursors-to-the-mark-of-the-beast", + "reward_weight": 10000, + "root_author": "ancientofdays", + "root_permlink": "are-steem-bitcoin-etc-obvious-pre-cursors-to-the-mark-of-the-beast", + "title": "Are Steem, Bitcoin, etc.. Obvious Pre-cursors to The Mark of the Beast?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "116240705764176930", + "vote_rshares": "25365523997" + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json index b89309b4..c160d287 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 736241, - "author": "shortcut", - "permlink": "palma-panorama-on-acid", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Palma Panorama on Acid", - "body": "\n

This is how the harbour of Palma de Mallorca looks like if you drop some Acid.

\n\n\"Palma_rama241fb8.jpg\"\n

(just kidding)

\n

Actually I played around with some presets in Adobe Lightroom.

\n

The one I used here is called Alien Hangover and can be downloaded here for free as part of a set called focus-beauty-builder.

\n

Below is the original image shot with the panorama function of my iPhone 6s. As you can see it's been a cloudy day.

\n\"Palma_original99287.jpg\"\n

\n

What kind of image processing software do you use?

\n

What are your thoughts about presets?

\n
\n

If you want to see more experiments with panorama-images, then you might want to check out this post by @shaka

\n
and \"\" me!
\n\n", - "json_metadata": "{\"tags\":[\"photography\",\"travelling\",\"lightroom\",\"inspiration\",\"art\"],\"users\":[\"shaka\"],\"image\":[\"https://www.steemimg.com/images/2016/08/24/Palma_rama241fb8.jpg\",\"https://www.steemimg.com/images/2016/08/24/Palma_original99287.jpg\",\"http://i.imgur.com/YSt1Mis.gif\"],\"links\":[\"http://profiphotos.com/blog/en/2008/11/new-lightroom-2-presets-focus-beauty-builder/\",\"https://steemit.com/photography/@shaka/a-different-way-to-stitch-a-panorama-view-original-photos\",\"https://steemit.com/@shortcut\"]}", - "last_update": "2016-08-24T21:29:12", - "created": "2016-08-24T21:29:12", - "active": "2016-08-29T07:58:48", - "last_payout": "2016-08-25T21:49:00", - "depth": 0, - "children": 4, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 50025990, - "cashout_time": "2016-09-24T21:49:00", - "max_cashout_time": "2016-09-12T08:16:12", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "124", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "15", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 90, - "net_votes": 8, - "root_author": "shortcut", - "root_permlink": "palma-panorama-on-acid", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 736231, - "author": "poeticsnake", - "permlink": "ella-s-hidden-pain-original-story-part-1", - "category": "story", - "parent_author": "", - "parent_permlink": "story", - "title": "Ella's hidden pain! ( Original story )) Part 1", - "body": "\n

  Ella's hidden pain!  

\n


\n

The morning sun is shining brightly, kissing my warmed skin, radiating through the glass of the window in my living room. It’s the spot I stand at every morning, anxious to greet the new day and the little girl that walks by every morning at the same time. I always smile and wave at her, holding my hot coffee in my free hand. It’s the perfect start of my day, even in the winter, when the sun is not that strong, but this young girl is, in a very special way, the real sunshine that brightens each beginning of my day. I look forward to and yearn for this brief moment we share, as it warms me in the deepest, most spiritual way I've ever felt.   

\n


\n

Perhaps it's because this little girl reminds me of myself, when I was young and still so very innocent. I reminisce of my childhood as she approaches me, wistful in the memories that flood my senses. As she passes my house, she looks intently at me, flashing me the most warming, innocent smile that only a child can give, and ever so so slowly, she lifts her little hand to give me a friendly wave, knowing I will be here and It warms my demonic heart. At least, it warms it until the moment she passes and starts to look at the ground again. I have followed her a few times. She keeps her eyes on the ground until she gets to where she needs to be, whether it's school, the mall or even her own house. I do not wish to stalk, nor am I a freak. This little girl has just captured my interest and there is a deep mystery I feel, deep within her that gives us this strange connection, a deep sense that I NEED to do this, help her in some way? I don't know. 

\n


\n

All I do know is that it tears at me from within and is a mystery that I need to unravel. This girl has something that has stirred a long lost emotion, deep inside my ice-cold heart. Maybe its because I am spending to much time here, living within the human realm. I do not belong here, living among them in this land, nor do I even care about humans, in general, at all. But this girl... mesmerizes me with the strangest feelings. I just feel an overwhelming need to know her.   

\n


\n

Slowly I lift my hand and take a sip from my black coffee and from the corners of my eyes, I can see her coming my way. I am already feeling my lips curl into a soft smile. I get ready to see her smile back at me, as she always does, but she walks faster then normal now, keeping her eyes on to the ground. She did not smile at me, nor did she lifted her head. It made me feel cold, as if something was wrong, with this little angelic human child. Quickly I place my coffee on the side table and make my way outside, I know her scent, and its easy for me to pick up her trace. Her scent is like a fresh basket of pink flowers, but this time there is a little trace of warm blood mixed in her scent. It alerts my highly tuned senses and makes me walk even faster. Within a minute I see her at the corner and I speed up a little more. 

\n


\n

At this moment I wish that I knew the child's name, so that I could call her. Her little red jacked makes me feel like I am a bull chasing her down, but in a good way. The girls face is hidden in the big hoodie that is on her jacket, and she is still looking down at the ground, while she takes step after step with her little feet. Softly, I tap her on her left shoulder, I can feel her jump at the surprising sensation of my touch. The child stops walking and slowly turns towards me. I can see fear in her troubled, glassy, big brown eyes as they stare at me, deeply and intently, into my sparkling green eyes that plead to her 'I'm here to help. Trust me!'    

\n


\n

My heart tells me to kneel down so that I do not look so big, hoping it might take some of her fear away. I force myself to smile as sweet as I can, because the last thing I want is to scare this child I've been longing to get closer to, away from me.  

\n


\n

 \"I am sorry that I scared you.\" I speak to her in my soft, angelic voice, a ploy I use sometimes, to seem more friendly than I really am. I lift my hand for her to take, but she doesn't move, instead, her hands remain unflinching, nestled deep within her large, comfortable pockets. With my keen, inhuman ears, I can hear her little heart beating rhythmically in her chest. The scent of her fresh, untainted blood soon follows, so intoxicating, so inviting, tickling my nostrils, making me crave just a tiny powerful drop to savor, yet there is no sign of blood on this child at all. The feeling came over me so suddenly and oddly, I begin to wonder if she might have a few wounds hidden under her pretty clothing. Weirdly enough, too, is the fact that the scent of this little humans blood is not making me hungry, for the first time in my long demonic life, but instead, the scent of her blood gives me a deep, uncaring feeling of dread that genuinely worries me. I need to find out more, and fast!  

\n


\n

 \"May I ask your name?\" I ask her softly, while I placing both of my hands onto my knee's, not forcing them on her any longer, possibly scaring her away. \"You always smile so beautiful at me in the morning, but today I missed that.\" I continue some small talk, hoping she responds but when the little girl bites on the inside of her cheeks, her big brown eyes looking more than sad, there is no light in them at all and it even breaks my callous heart to see it.   

\n


\n

 

\n


\n

Disclaimer: I am the writer of this story, I have published it under my author name Bibi Rillmann.

\n

If you want to read the whole story you can also buy the book on Amazon with this link: https://www.amazon.com/dp/B011ANCU58

\n", - "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"writing\"],\"image\":[\"https://s6.postimg.org/ma66gmakx/418_Gx_Rsw5_SL.jpg\"],\"links\":[\"https://www.amazon.com/dp/B011ANCU58\"]}", - "last_update": "2016-08-24T21:28:21", - "created": "2016-08-24T21:28:21", - "active": "2016-08-24T21:28:21", - "last_payout": "2016-08-26T14:48:54", - "depth": 0, - "children": 0, - "net_rshares": "14608061929", - "abs_rshares": "14608061929", - "vote_rshares": "14608061929", - "children_abs_rshares": "14608061929", - "cashout_time": "2016-09-25T14:48:54", - "max_cashout_time": "2016-09-13T23:31:03", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 9, - "root_author": "poeticsnake", - "root_permlink": "ella-s-hidden-pain-original-story-part-1", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 736204, - "author": "dmilash", - "permlink": "original-photo-from-turkey-pirate-cave-and-lovers-cave", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Original photo from Turkey: Pirate cave and Lovers Cave etc.", - "body": "\n

Pirate Cave

\n

There are a lot of  stories and legends. Locals believe that before this place was chosen by pirates. They hid treasure in the cave, then transported through a tunnel to the city.

\n

\n

Lovers Cave

\n

Many legends about the Lovers Cave. According one of them - lovers together must to jump off a high ledge, then nothing is no able to separate them. Now jumps banned.

\n

\n

\n

Old fortress town

\n

\n

\n

Now it is Russian territory )))

\n

\n

\n", - "json_metadata": "{\"tags\":[\"photography\"],\"image\":[\"http://i.share.pho.to/5bd63a86_o.jpeg\",\"http://i.share.pho.to/badc9c25_o.jpeg\",\"http://i.share.pho.to/66d78edf_o.jpeg\",\"http://i.share.pho.to/bc535078_o.jpeg\",\"http://i.share.pho.to/1bd80fa4_o.jpeg\",\"http://i.share.pho.to/43b23d20_o.jpeg\",\"http://i.share.pho.to/a951f3d0_o.jpeg\"]}", - "last_update": "2016-08-24T21:27:09", - "created": "2016-08-24T21:26:15", - "active": "2016-08-24T22:03:45", - "last_payout": "2016-08-25T22:04:12", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-24T22:04:12", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 4114, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 13, - "root_author": "dmilash", - "root_permlink": "original-photo-from-turkey-pirate-cave-and-lovers-cave", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 736208, - "author": "moonman", - "permlink": "costa-rica-celebrates-113-days-of-100-percent-free-energy", - "category": "energy", - "parent_author": "", - "parent_permlink": "energy", - "title": "Costa Rica celebrates 113 days of 100 percent renewable energy", - "body": "http://i.imgsafe.org/e103059e0b.jpeg\nCosta Rica is much more than a lush, green tourist paradise; it’s also a green energy pioneer. The small Central American nation has generated 100 percent of its electricity from renewable sources for the past 113 days, and the run isn’t over yet. The country, which draws clean energy from a variety of renewable sources, still has its sights on a full year without fossil fuels. With a 113-day stretch of 100-percent renewable energy under its belt and several months left in the year, Costa Rica is edging closer to its target. Costa Rica could be on track to match the record set with its renewable energy production last year, which accounted for 99 percent of the country’s electricity. That included 285 days powered completely by renewable sources, according to the Costa Rican Electricity Institute. Costa Rica is able to take advantage of a multitude of renewable energy sources because of its unique climate and terrain. Most of the nation’s renewable energy comes from hydropower, due to its large river system and heavy tropical rainfalls. Solar, wind, biomass, and geothermal energy also play key roles.\n\nThe tropical nation aims to be free from fossil fuels in just five years. With hefty investments in geothermal energy projects and a forecast for more heavy rains in the coming years, that goal could be accomplished even sooner than originally planned.", - "json_metadata": "{\"tags\":[\"energy\",\"news\",\"truth\",\"costarica\",\"america\"],\"image\":[\"http://i.imgsafe.org/e103059e0b.jpeg\"]}", - "last_update": "2016-08-24T21:27:09", - "created": "2016-08-24T21:26:21", - "active": "2016-08-25T00:31:27", - "last_payout": "2016-08-26T00:27:45", - "depth": 0, - "children": 3, - "net_rshares": -2456106752359, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-25T00:27:45", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "moonman", - "root_permlink": "costa-rica-celebrates-113-days-of-100-percent-free-energy", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 736068, - "author": "lilli", - "permlink": "london-based-artist-bringing-culture-to-steemit", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "London-based artist bringing culture to Steemit", - "body": "\n

Hi there fellow Steemers, my name is Lilli and here’s a little bit about myself and why I’m here.

\n

I am a London based artist and theatre designer-to-be. My aim is to bring a whole lot of culture and a little bit of me to Steemit. 

\n

\n

  Introduced to Steemit by a friend, I was rather skeptical at first. I generally don’t trust the internet and all that is or isn’t going on inside this impenetrable machine. Nevertheless I have now chosen to do these first steps into unknown land and overcome my e-phobia. My reason to do so is simply that this is the future, there’s no way around it and you might as well live it!  In fact I think it is an amazing opportunity for artists, travellers and intellectuals of all sorts to present and exchange their work and thoughts and opinion. It’s a space to openly communicate with people all over the globe, freely express oneself and start discussions with total strangers. Overall it’s a real step forward.

\n

\n

What you can expect from me on Steemit are posts about my work as an artist, studies of theatre design, observations within my city, on travels and of the human mind and really anything that catches my interest.   Some of my hobbies and interests include travelling, exploring my city (London), ...

\n

\n

...cooking (though my boyfriend does most of that), photography, dressing up, mountaineering, rock climbing and other adrenalin enducing sports.

\n

\n

\n

Route of a crazy backpacker journey, I will most definitely write about. With 30 hour train journeys, friends left behind, a flooded festival and much more!
\n
\nIf you're curious for some travel adventures and cultural posts, FOLLOW ME!
\nI promise it'll be worth it ;)

\n", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"art\",\"photography\",\"steemit\",\"travel\"],\"image\":[\"https://i.imgsafe.org/e0fded406a.png\",\"https://i.imgsafe.org/e10eaa131a.png\",\"https://i.imgsafe.org/e103ab1660.png\",\"https://i.imgsafe.org/e1096709b8.png\",\"https://i.imgsafe.org/e100e9033f.png\"]}", - "last_update": "2016-08-24T21:26:48", - "created": "2016-08-24T21:14:27", - "active": "2016-08-25T15:06:48", - "last_payout": "2016-08-25T21:44:33", - "depth": 0, - "children": 4, - "net_rshares": 933355159, - "abs_rshares": 933355159, - "vote_rshares": 933355159, - "children_abs_rshares": 933355159, - "cashout_time": "2016-09-24T21:44:33", - "max_cashout_time": "2016-09-08T22:48:15", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "348", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "90", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 250, - "net_votes": 12, - "root_author": "lilli", - "root_permlink": "london-based-artist-bringing-culture-to-steemit", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 736196, - "author": "sayanthan", - "permlink": "new-allegations-hits-out-hillary-clinton-s-election-campaigns", - "category": "politics", - "parent_author": "", - "parent_permlink": "politics", - "title": "New Allegations Hits-out Hillary Clinton's Election Campaigns", - "body": "http://dimg.zoftcdn.com/s1/photos/news/thumbs/world/country/usa/h/hilery_clindon001/img/625.117.560.350.160.300.053.800.210.160.90.jpg\nDonors to the Clinton Foundation had special access to Hillary Clinton,when she was Secretary of State, fresh documents brought to light by two conservative groups on Monday showed, in a setback to the Democratic candidate's presidential campaign.\n\nThe Republican candidate Donald Trump has sought an investigation by a special prosecutor into the links between the foundation and the State Department under Ms. Hillary Clinton.\n\nThe Former President Bill Clinton said in a statement on Monday the foundation would stop accepting foreign donations, if his wife were to become the President. The foundation had made the same announcement last week. Ms. Hillary Clinton had pledged to dissociate from the functioning of the foundation, when she took over as the Secretary of State.\n\nBut, however, the staff of the foundation sought special treatment for donors from the State Department, according to the documents.\n\nAmong the new revelations is how the foundation staff intervened on be half of the Crown Prince of Bahrain, a donor.\n\nThe Crown Prince could not get a meeting with Ms. Hillary Clinton through State Department Channels, but did get one after Foundation Executive Douglas Band wrote to Huma Abedin, aclose aide of hers. “Good friend of ours,” Mr. Band wrote to Ms. Abedin,requesting a meeting for the Crown Prince.\n\nDonald Trump said, “No issue better illustrates how corrupt my opponent is than her pay for play scandals as the Secretary of State,” Mr. Trump said,demanding an investigation.\n\nIn a separate development, a federal judge on Monday asked the State Department to expedite the process of reviewing and releasing a set of nearly 15,000 emails that were not handed over to the Department as‘work-related’ earlier. The FBI had uncovered these emails during its investigation of a private server Ms. Hillary Clinton had maintained.\n\nThe Clinton Foundation accepts money from foreign donors, including foreign governments, which Mr. Donald Trump alleges is a threat to the U.S.National Security.\n\nNews source Tamil focus.com", - "json_metadata": "{\"tags\":[\"politics\",\"news\"],\"image\":[\"http://dimg.zoftcdn.com/s1/photos/news/thumbs/world/country/usa/h/hilery_clindon001/img/625.117.560.350.160.300.053.800.210.160.90.jpg\"]}", - "last_update": "2016-08-24T21:25:27", - "created": "2016-08-24T21:25:27", - "active": "2016-08-24T21:25:27", - "last_payout": "2016-08-25T21:25:27", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-24T21:25:27", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "sayanthan", - "root_permlink": "new-allegations-hits-out-hillary-clinton-s-election-campaigns", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 736189, - "author": "maceytomlin", - "permlink": "macey-tomlin-advocating-for-psychedelic-therapy", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "Macey Tomlin: Advocating for Psychedelic Therapy", - "body": "

https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/14055152_10154376523262180_7573779098355793143_n.jpg?oh=d2a68c63bfb4e5d16714403c49fb2fcf&oe=58417095

\n\nHello Steemit community! My name is Macey, and I have recently joined Steemit so I can become more involved with the Anarchist Community. I have written a couple articles, but in all the excitement, I forgot to give a proper introduction.\n\n

https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/12376121_10153719290912180_997199044763883123_n.jpg?oh=4e3622e8aee631343faa6de4a21daaf4&oe=5855FB15

\n

About Me

\n\nWhen I was just shy of twenty, I realized the truth of the nature of our government after watching the popular documentary, *Zeitgeist.* Shortly after, I started micro-dosing daily with psilocybin mushrooms. This form of therapy lasted three months. I consider this a vital part of my evolution as an anarchist, and have devoted my life to helping people understand alternative medicine and the positive effects they can have on the body, mind and spirit. I truly believe our minds are eternal libraries, and psychedelics can be the key to accessing that knowledge. \n\nI hope you'll join me here! My writings will be focused on alternative therapy, among other topics.", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"anarchy\",\"psychedelics\",\"alternative\",\"medicine\"],\"image\":[\"https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/14055152_10154376523262180_7573779098355793143_n.jpg?oh=d2a68c63bfb4e5d16714403c49fb2fcf&oe=58417095\",\"https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/12376121_10153719290912180_997199044763883123_n.jpg?oh=4e3622e8aee631343faa6de4a21daaf4&oe=5855FB15\"]}", - "last_update": "2016-08-24T21:24:48", - "created": "2016-08-24T21:24:48", - "active": "2016-08-28T17:57:48", - "last_payout": "2016-08-25T23:01:18", - "depth": 0, - "children": 9, - "net_rshares": "108915090155", - "abs_rshares": "108915090155", - "vote_rshares": "108915090155", - "children_abs_rshares": "134531468918", - "cashout_time": "2016-09-24T23:01:18", - "max_cashout_time": "2016-09-09T03:50:33", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "100", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "27", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 72, - "net_votes": 40, - "root_author": "maceytomlin", - "root_permlink": "macey-tomlin-advocating-for-psychedelic-therapy", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 735968, - "author": "terryrall", - "permlink": "reagan-versus-trump-no-comparison", - "category": "politics", - "parent_author": "", - "parent_permlink": "politics", - "title": "Reagan versus Trump...NO Comparison!", - "body": "http://media.salon.com/2015/09/reagan_trump.jpg\n\nhttp://www.chicagotribune.com/news/opinion/editorials/ct-donald-trump-ronald-reagan-president-edit-0501-20160429-story.html\n\nThere is NO comparison between Ronald Reagan & Donald Trump. Reagan was greatly admired by NOT only Republicans but even Democrats as well. The BIG TENT that the Democrats are now using was inherently borrowed from Ronald Reagan. He was well mannered & a consumate gentleman with a great positive attitude that he carried well. Reagan didn't build walls, he tore them down. He was at the helm during Gorbachev's 'glasnost' & 'peristroyka'. And Ronald Reagan fostered a GOOD relationship with the USSR as it finally fell. Reagan was the 'Great Communicator' & the 'Great Compromiser'. Even if you didn't agree with him, you still took a liking to him as he was very approachable. He compromised with a Democratic Congress & made the wheels of government turn. He was a 'strong leader' that didn't have to fight bloody conflicts & wars to make his point. But MOST of ALL Reagan stressed UNITY of nation & country. He just stayed well mannered at ALL TIMES!\n\nNow let's look at Trump. He's the 'Great Divider', good at setting one group against another. He's at best 'ill mannered' with a Totally NEGATIVE ATTITUDE. To Trump our nation is a 'miserable trash heap on a hill' and our diversity is just a 'punchline' to prey upon. Not ONLY is he insulting & unapproachable, most people want to 'punch' him in the face! Trump couldn't unify anything if he tried. He is a 'strong armed dictator' that wants everything & person to bend to his will. He lives on bad events, & thrives on misery. He wants his followers to GET INTO BLOODY CONFLICTS, and insistently wants to START World War 3! He knows no manners to speak of & he 'gins up' his followers into a 'frenzy' of violent behavior!\n\nAlso to note: Ronald Reagan was Governor of California for years before he took control at the helm of the Presidency! So he KNEW how government works! Donald Trump & his Teabagging Followers don't have the FIRST idea of how government operates. You don't run this country like a corporate interest!\n\nIn conclusion, believe it or not NAFTA was originally Reagan's 'brainchild'. If you have the 'slightest' respect for the Reagan legacy, you WON'T allow Trump into the White House!\n\n\n", - "json_metadata": "{\"tags\":[\"politics\",\"trump\",\"reagan\",\"news\"]}", - "last_update": "2016-08-24T21:24:36", - "created": "2016-08-24T21:05:45", - "active": "2016-08-26T23:56:54", - "last_payout": "2016-08-25T21:08:12", - "depth": 0, - "children": 2, - "net_rshares": -61964463, - "abs_rshares": 61964463, - "vote_rshares": 0, - "children_abs_rshares": 2364572745, - "cashout_time": "2016-09-24T21:08:12", - "max_cashout_time": "2016-09-08T23:22:51", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "terryrall", - "root_permlink": "reagan-versus-trump-no-comparison", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 735834, - "author": "mohamedmashaal", - "permlink": "no-man-s-sky-honest-game-trailers-steemtube", - "category": "steemtube", - "parent_author": "", - "parent_permlink": "steemtube", - "title": "Delete", - "body": "Delete", - "json_metadata": "{\"tags\":[\"delete\",\"steemtube\"]}", - "last_update": "2016-08-24T21:24:24", - "created": "2016-08-24T20:53:54", - "active": "2016-08-24T21:24:24", - "last_payout": "2016-08-25T20:53:54", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-24T20:53:54", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "mohamedmashaal", - "root_permlink": "no-man-s-sky-honest-game-trailers-steemtube", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 736173, - "author": "ghostvangogh", - "permlink": "silhouettes", - "category": "art", - "parent_author": "", - "parent_permlink": "art", - "title": "Silhouettes", - "body": "https://scontent-dft4-2.xx.fbcdn.net/v/t1.0-9/13892044_514122035452799_7084570694564074093_n.jpg?oh=a4e8c52daf63a5fb0a2cf7647b6bdc3d&oe=585A651A", - "json_metadata": "{\"tags\":[\"art\",\"blog\",\"photography\",\"digital\",\"nature\"],\"image\":[\"https://scontent-dft4-2.xx.fbcdn.net/v/t1.0-9/13892044_514122035452799_7084570694564074093_n.jpg?oh=a4e8c52daf63a5fb0a2cf7647b6bdc3d&oe=585A651A\"]}", - "last_update": "2016-08-24T21:23:48", - "created": "2016-08-24T21:23:48", - "active": "2016-08-24T21:23:48", - "last_payout": "2016-08-25T21:23:48", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-24T21:23:48", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "ghostvangogh", - "root_permlink": "silhouettes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T07:58:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "shortcut", + "author_rewards": 90, + "beneficiaries": [], + "body": "\n

This is how the harbour of Palma de Mallorca looks like if you drop some Acid.

\n\n\"Palma_rama241fb8.jpg\"\n

(just kidding)

\n

Actually I played around with some presets in Adobe Lightroom.

\n

The one I used here is called Alien Hangover and can be downloaded here for free as part of a set called focus-beauty-builder.

\n

Below is the original image shot with the panorama function of my iPhone 6s. As you can see it's been a cloudy day.

\n\"Palma_original99287.jpg\"\n

\n

What kind of image processing software do you use?

\n

What are your thoughts about presets?

\n
\n

If you want to see more experiments with panorama-images, then you might want to check out this post by @shaka

\n
and \"\" me!
\n\n", + "cashout_time": "2016-09-24T21:49:00", + "category": "photography", + "children": 4, + "children_abs_rshares": 50025990, + "created": "2016-08-24T21:29:12", + "curator_payout_value": { + "amount": "15", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736241, + "json_metadata": "{\"tags\":[\"photography\",\"travelling\",\"lightroom\",\"inspiration\",\"art\"],\"users\":[\"shaka\"],\"image\":[\"https://www.steemimg.com/images/2016/08/24/Palma_rama241fb8.jpg\",\"https://www.steemimg.com/images/2016/08/24/Palma_original99287.jpg\",\"http://i.imgur.com/YSt1Mis.gif\"],\"links\":[\"http://profiphotos.com/blog/en/2008/11/new-lightroom-2-presets-focus-beauty-builder/\",\"https://steemit.com/photography/@shaka/a-different-way-to-stitch-a-panorama-view-original-photos\",\"https://steemit.com/@shortcut\"]}", + "last_payout": "2016-08-25T21:49:00", + "last_update": "2016-08-24T21:29:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-12T08:16:12", + "net_rshares": 0, + "net_votes": 8, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "palma-panorama-on-acid", + "reward_weight": 10000, + "root_author": "shortcut", + "root_permlink": "palma-panorama-on-acid", + "title": "Palma Panorama on Acid", + "total_payout_value": { + "amount": "124", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "14608061929", + "active": "2016-08-24T21:28:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "poeticsnake", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

  Ella's hidden pain!  

\n


\n

The morning sun is shining brightly, kissing my warmed skin, radiating through the glass of the window in my living room. It\u2019s the spot I stand at every morning, anxious to greet the new day and the little girl that walks by every morning at the same time. I always smile and wave at her, holding my hot coffee in my free hand. It\u2019s the perfect start of my day, even in the winter, when the sun is not that strong, but this young girl is, in a very special way, the real sunshine that brightens each beginning of my day. I look forward to and yearn for this brief moment we share, as it warms me in the deepest, most spiritual way I've ever felt.   

\n


\n

Perhaps it's because this little girl reminds me of myself, when I was young and still so very innocent. I reminisce of my childhood as she approaches me, wistful in the memories that flood my senses. As she passes my house, she looks intently at me, flashing me the most warming, innocent smile that only a child can give, and ever so so slowly, she lifts her little hand to give me a friendly wave, knowing I will be here and It warms my demonic heart. At least, it warms it until the moment she passes and starts to look at the ground again. I have followed her a few times. She keeps her eyes on the ground until she gets to where she needs to be, whether it's school, the mall or even her own house. I do not wish to stalk, nor am I a freak. This little girl has just captured my interest and there is a deep mystery I feel, deep within her that gives us this strange connection, a deep sense that I NEED to do this, help her in some way? I don't know. 

\n


\n

All I do know is that it tears at me from within and is a mystery that I need to unravel. This girl has something that has stirred a long lost emotion, deep inside my ice-cold heart. Maybe its because I am spending to much time here, living within the human realm. I do not belong here, living among them in this land, nor do I even care about humans, in general, at all. But this girl... mesmerizes me with the strangest feelings. I just feel an overwhelming need to know her.   

\n


\n

Slowly I lift my hand and take a sip from my black coffee and from the corners of my eyes, I can see her coming my way. I am already feeling my lips curl into a soft smile. I get ready to see her smile back at me, as she always does, but she walks faster then normal now, keeping her eyes on to the ground. She did not smile at me, nor did she lifted her head. It made me feel cold, as if something was wrong, with this little angelic human child. Quickly I place my coffee on the side table and make my way outside, I know her scent, and its easy for me to pick up her trace. Her scent is like a fresh basket of pink flowers, but this time there is a little trace of warm blood mixed in her scent. It alerts my highly tuned senses and makes me walk even faster. Within a minute I see her at the corner and I speed up a little more. 

\n


\n

At this moment I wish that I knew the child's name, so that I could call her. Her little red jacked makes me feel like I am a bull chasing her down, but in a good way. The girls face is hidden in the big hoodie that is on her jacket, and she is still looking down at the ground, while she takes step after step with her little feet. Softly, I tap her on her left shoulder, I can feel her jump at the surprising sensation of my touch. The child stops walking and slowly turns towards me. I can see fear in her troubled, glassy, big brown eyes as they stare at me, deeply and intently, into my sparkling green eyes that plead to her 'I'm here to help. Trust me!'    

\n


\n

My heart tells me to kneel down so that I do not look so big, hoping it might take some of her fear away. I force myself to smile as sweet as I can, because the last thing I want is to scare this child I've been longing to get closer to, away from me.  

\n


\n

 \"I am sorry that I scared you.\" I speak to her in my soft, angelic voice, a ploy I use sometimes, to seem more friendly than I really am. I lift my hand for her to take, but she doesn't move, instead, her hands remain unflinching, nestled deep within her large, comfortable pockets. With my keen, inhuman ears, I can hear her little heart beating rhythmically in her chest. The scent of her fresh, untainted blood soon follows, so intoxicating, so inviting, tickling my nostrils, making me crave just a tiny powerful drop to savor, yet there is no sign of blood on this child at all. The feeling came over me so suddenly and oddly, I begin to wonder if she might have a few wounds hidden under her pretty clothing. Weirdly enough, too, is the fact that the scent of this little humans blood is not making me hungry, for the first time in my long demonic life, but instead, the scent of her blood gives me a deep, uncaring feeling of dread that genuinely worries me. I need to find out more, and fast!  

\n


\n

 \"May I ask your name?\" I ask her softly, while I placing both of my hands onto my knee's, not forcing them on her any longer, possibly scaring her away. \"You always smile so beautiful at me in the morning, but today I missed that.\" I continue some small talk, hoping she responds but when the little girl bites on the inside of her cheeks, her big brown eyes looking more than sad, there is no light in them at all and it even breaks my callous heart to see it.   

\n


\n

 

\n


\n

Disclaimer: I am the writer of this story, I have published it under my author name Bibi Rillmann.

\n

If you want to read the whole story you can also buy the book on Amazon with this link: https://www.amazon.com/dp/B011ANCU58

\n", + "cashout_time": "2016-09-25T14:48:54", + "category": "story", + "children": 0, + "children_abs_rshares": "14608061929", + "created": "2016-08-24T21:28:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736231, + "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"writing\"],\"image\":[\"https://s6.postimg.org/ma66gmakx/418_Gx_Rsw5_SL.jpg\"],\"links\":[\"https://www.amazon.com/dp/B011ANCU58\"]}", + "last_payout": "2016-08-26T14:48:54", + "last_update": "2016-08-24T21:28:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T23:31:03", + "net_rshares": "14608061929", + "net_votes": 9, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "ella-s-hidden-pain-original-story-part-1", + "reward_weight": 10000, + "root_author": "poeticsnake", + "root_permlink": "ella-s-hidden-pain-original-story-part-1", + "title": "Ella's hidden pain! ( Original story )) Part 1", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "14608061929" + }, + { + "abs_rshares": 0, + "active": "2016-08-24T22:03:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "dmilash", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

Pirate Cave

\n

There are a lot of  stories and legends. Locals believe that before this place was chosen by pirates. They hid treasure in the cave, then transported through a tunnel to the city.

\n

\n

Lovers Cave

\n

Many legends about the Lovers Cave. According one of them - lovers together must to jump off a high ledge, then nothing is no able to separate them. Now jumps banned.

\n

\n

\n

Old fortress town

\n

\n

\n

Now it is Russian territory )))

\n

\n

\n", + "cashout_time": "2016-09-24T22:04:12", + "category": "photography", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-24T21:26:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736204, + "json_metadata": "{\"tags\":[\"photography\"],\"image\":[\"http://i.share.pho.to/5bd63a86_o.jpeg\",\"http://i.share.pho.to/badc9c25_o.jpeg\",\"http://i.share.pho.to/66d78edf_o.jpeg\",\"http://i.share.pho.to/bc535078_o.jpeg\",\"http://i.share.pho.to/1bd80fa4_o.jpeg\",\"http://i.share.pho.to/43b23d20_o.jpeg\",\"http://i.share.pho.to/a951f3d0_o.jpeg\"]}", + "last_payout": "2016-08-25T22:04:12", + "last_update": "2016-08-24T21:27:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 13, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "original-photo-from-turkey-pirate-cave-and-lovers-cave", + "reward_weight": 4114, + "root_author": "dmilash", + "root_permlink": "original-photo-from-turkey-pirate-cave-and-lovers-cave", + "title": "Original photo from Turkey: Pirate cave and Lovers Cave etc.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-25T00:31:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "moonman", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://i.imgsafe.org/e103059e0b.jpeg\nCosta Rica is much more than a lush, green tourist paradise; it\u2019s also a green energy pioneer. The small Central American nation has generated 100 percent of its electricity from renewable sources for the past 113 days, and the run isn\u2019t over yet. The country, which draws clean energy from a variety of renewable sources, still has its sights on a full year without fossil fuels. With a 113-day stretch of 100-percent renewable energy under its belt and several months left in the year, Costa Rica is edging closer to its target. Costa Rica could be on track to match the record set with its renewable energy production last year, which accounted for 99 percent of the country\u2019s electricity. That included 285 days powered completely by renewable sources, according to the Costa Rican Electricity Institute. Costa Rica is able to take advantage of a multitude of renewable energy sources because of its unique climate and terrain. Most of the nation\u2019s renewable energy comes from hydropower, due to its large river system and heavy tropical rainfalls. Solar, wind, biomass, and geothermal energy also play key roles.\n\nThe tropical nation aims to be free from fossil fuels in just five years. With hefty investments in geothermal energy projects and a forecast for more heavy rains in the coming years, that goal could be accomplished even sooner than originally planned.", + "cashout_time": "2016-09-25T00:27:45", + "category": "energy", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-24T21:26:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736208, + "json_metadata": "{\"tags\":[\"energy\",\"news\",\"truth\",\"costarica\",\"america\"],\"image\":[\"http://i.imgsafe.org/e103059e0b.jpeg\"]}", + "last_payout": "2016-08-26T00:27:45", + "last_update": "2016-08-24T21:27:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -2456106752359, + "net_votes": 0, + "parent_author": "", + "parent_permlink": "energy", + "percent_hbd": 10000, + "permlink": "costa-rica-celebrates-113-days-of-100-percent-free-energy", + "reward_weight": 10000, + "root_author": "moonman", + "root_permlink": "costa-rica-celebrates-113-days-of-100-percent-free-energy", + "title": "Costa Rica celebrates 113 days of 100 percent renewable energy", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 933355159, + "active": "2016-08-25T15:06:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "lilli", + "author_rewards": 250, + "beneficiaries": [], + "body": "\n

Hi there fellow Steemers, my name is Lilli and here\u2019s a little bit about myself and why I\u2019m here.

\n

I am a London based artist and theatre designer-to-be. My aim is to bring a whole lot of culture and a little bit of me to Steemit. 

\n

\n

  Introduced to Steemit by a friend, I was rather skeptical at first. I generally don\u2019t trust the internet and all that is or isn\u2019t going on inside this impenetrable machine. Nevertheless I have now chosen to do these first steps into unknown land and overcome my e-phobia. My reason to do so is simply that this is the future, there\u2019s no way around it and you might as well live it!  In fact I think it is an amazing opportunity for artists, travellers and intellectuals of all sorts to present and exchange their work and thoughts and opinion. It\u2019s a space to openly communicate with people all over the globe, freely express oneself and start discussions with total strangers. Overall it\u2019s a real step forward.

\n

\n

What you can expect from me on Steemit are posts about my work as an artist, studies of theatre design, observations within my city, on travels and of the human mind and really anything that catches my interest.   Some of my hobbies and interests include travelling, exploring my city (London), ...

\n

\n

...cooking (though my boyfriend does most of that), photography, dressing up, mountaineering, rock climbing and other adrenalin enducing sports.

\n

\n

\n

Route of a crazy backpacker journey, I will most definitely write about. With 30 hour train journeys, friends left behind, a flooded festival and much more!
\n
\nIf you're curious for some travel adventures and cultural posts, FOLLOW ME!
\nI promise it'll be worth it ;)

\n", + "cashout_time": "2016-09-24T21:44:33", + "category": "introduceyourself", + "children": 4, + "children_abs_rshares": 933355159, + "created": "2016-08-24T21:14:27", + "curator_payout_value": { + "amount": "90", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736068, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"art\",\"photography\",\"steemit\",\"travel\"],\"image\":[\"https://i.imgsafe.org/e0fded406a.png\",\"https://i.imgsafe.org/e10eaa131a.png\",\"https://i.imgsafe.org/e103ab1660.png\",\"https://i.imgsafe.org/e1096709b8.png\",\"https://i.imgsafe.org/e100e9033f.png\"]}", + "last_payout": "2016-08-25T21:44:33", + "last_update": "2016-08-24T21:26:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-08T22:48:15", + "net_rshares": 933355159, + "net_votes": 12, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "london-based-artist-bringing-culture-to-steemit", + "reward_weight": 10000, + "root_author": "lilli", + "root_permlink": "london-based-artist-bringing-culture-to-steemit", + "title": "London-based artist bringing culture to Steemit", + "total_payout_value": { + "amount": "348", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 933355159 + }, + { + "abs_rshares": 0, + "active": "2016-08-24T21:25:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "sayanthan", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://dimg.zoftcdn.com/s1/photos/news/thumbs/world/country/usa/h/hilery_clindon001/img/625.117.560.350.160.300.053.800.210.160.90.jpg\nDonors to the Clinton Foundation had special access to Hillary Clinton,when she was Secretary of State, fresh documents brought to light by two conservative groups on Monday showed, in a setback to the Democratic candidate's presidential campaign.\n\nThe Republican candidate Donald Trump has sought an investigation by a special prosecutor into the links between the foundation and the State Department under Ms. Hillary Clinton.\n\nThe Former President Bill Clinton said in a statement on Monday the foundation would stop accepting foreign donations, if his wife were to become the President. The foundation had made the same announcement last week. Ms. Hillary Clinton had pledged to dissociate from the functioning of the foundation, when she took over as the Secretary of State.\n\nBut, however, the staff of the foundation sought special treatment for donors from the State Department, according to the documents.\n\nAmong the new revelations is how the foundation staff intervened on be half of the Crown Prince of Bahrain, a donor.\n\nThe Crown Prince could not get a meeting with Ms. Hillary Clinton through State Department Channels, but did get one after Foundation Executive Douglas Band wrote to Huma Abedin, aclose aide of hers. \u201cGood friend of ours,\u201d Mr. Band wrote to Ms. Abedin,requesting a meeting for the Crown Prince.\n\nDonald Trump said, \u201cNo issue better illustrates how corrupt my opponent is than her pay for play scandals as the Secretary of State,\u201d Mr. Trump said,demanding an investigation.\n\nIn a separate development, a federal judge on Monday asked the State Department to expedite the process of reviewing and releasing a set of nearly 15,000 emails that were not handed over to the Department as\u2018work-related\u2019 earlier. The FBI had uncovered these emails during its investigation of a private server Ms. Hillary Clinton had maintained.\n\nThe Clinton Foundation accepts money from foreign donors, including foreign governments, which Mr. Donald Trump alleges is a threat to the U.S.National Security.\n\nNews source Tamil focus.com", + "cashout_time": "2016-09-24T21:25:27", + "category": "politics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-24T21:25:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736196, + "json_metadata": "{\"tags\":[\"politics\",\"news\"],\"image\":[\"http://dimg.zoftcdn.com/s1/photos/news/thumbs/world/country/usa/h/hilery_clindon001/img/625.117.560.350.160.300.053.800.210.160.90.jpg\"]}", + "last_payout": "2016-08-25T21:25:27", + "last_update": "2016-08-24T21:25:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "politics", + "percent_hbd": 10000, + "permlink": "new-allegations-hits-out-hillary-clinton-s-election-campaigns", + "reward_weight": 10000, + "root_author": "sayanthan", + "root_permlink": "new-allegations-hits-out-hillary-clinton-s-election-campaigns", + "title": "New Allegations Hits-out Hillary Clinton's Election Campaigns", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "108915090155", + "active": "2016-08-28T17:57:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "maceytomlin", + "author_rewards": 72, + "beneficiaries": [], + "body": "

https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/14055152_10154376523262180_7573779098355793143_n.jpg?oh=d2a68c63bfb4e5d16714403c49fb2fcf&oe=58417095

\n\nHello Steemit community! My name is Macey, and I have recently joined Steemit so I can become more involved with the Anarchist Community. I have written a couple articles, but in all the excitement, I forgot to give a proper introduction.\n\n

https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/12376121_10153719290912180_997199044763883123_n.jpg?oh=4e3622e8aee631343faa6de4a21daaf4&oe=5855FB15

\n

About Me

\n\nWhen I was just shy of twenty, I realized the truth of the nature of our government after watching the popular documentary, *Zeitgeist.* Shortly after, I started micro-dosing daily with psilocybin mushrooms. This form of therapy lasted three months. I consider this a vital part of my evolution as an anarchist, and have devoted my life to helping people understand alternative medicine and the positive effects they can have on the body, mind and spirit. I truly believe our minds are eternal libraries, and psychedelics can be the key to accessing that knowledge. \n\nI hope you'll join me here! My writings will be focused on alternative therapy, among other topics.", + "cashout_time": "2016-09-24T23:01:18", + "category": "introduceyourself", + "children": 9, + "children_abs_rshares": "134531468918", + "created": "2016-08-24T21:24:48", + "curator_payout_value": { + "amount": "27", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736189, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"anarchy\",\"psychedelics\",\"alternative\",\"medicine\"],\"image\":[\"https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/14055152_10154376523262180_7573779098355793143_n.jpg?oh=d2a68c63bfb4e5d16714403c49fb2fcf&oe=58417095\",\"https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/12376121_10153719290912180_997199044763883123_n.jpg?oh=4e3622e8aee631343faa6de4a21daaf4&oe=5855FB15\"]}", + "last_payout": "2016-08-25T23:01:18", + "last_update": "2016-08-24T21:24:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-09T03:50:33", + "net_rshares": "108915090155", + "net_votes": 40, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "macey-tomlin-advocating-for-psychedelic-therapy", + "reward_weight": 10000, + "root_author": "maceytomlin", + "root_permlink": "macey-tomlin-advocating-for-psychedelic-therapy", + "title": "Macey Tomlin: Advocating for Psychedelic Therapy", + "total_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "108915090155" + }, + { + "abs_rshares": 61964463, + "active": "2016-08-26T23:56:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "terryrall", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://media.salon.com/2015/09/reagan_trump.jpg\n\nhttp://www.chicagotribune.com/news/opinion/editorials/ct-donald-trump-ronald-reagan-president-edit-0501-20160429-story.html\n\nThere is NO comparison between Ronald Reagan & Donald Trump. Reagan was greatly admired by NOT only Republicans but even Democrats as well. The BIG TENT that the Democrats are now using was inherently borrowed from Ronald Reagan. He was well mannered & a consumate gentleman with a great positive attitude that he carried well. Reagan didn't build walls, he tore them down. He was at the helm during Gorbachev's 'glasnost' & 'peristroyka'. And Ronald Reagan fostered a GOOD relationship with the USSR as it finally fell. Reagan was the 'Great Communicator' & the 'Great Compromiser'. Even if you didn't agree with him, you still took a liking to him as he was very approachable. He compromised with a Democratic Congress & made the wheels of government turn. He was a 'strong leader' that didn't have to fight bloody conflicts & wars to make his point. But MOST of ALL Reagan stressed UNITY of nation & country. He just stayed well mannered at ALL TIMES!\n\nNow let's look at Trump. He's the 'Great Divider', good at setting one group against another. He's at best 'ill mannered' with a Totally NEGATIVE ATTITUDE. To Trump our nation is a 'miserable trash heap on a hill' and our diversity is just a 'punchline' to prey upon. Not ONLY is he insulting & unapproachable, most people want to 'punch' him in the face! Trump couldn't unify anything if he tried. He is a 'strong armed dictator' that wants everything & person to bend to his will. He lives on bad events, & thrives on misery. He wants his followers to GET INTO BLOODY CONFLICTS, and insistently wants to START World War 3! He knows no manners to speak of & he 'gins up' his followers into a 'frenzy' of violent behavior!\n\nAlso to note: Ronald Reagan was Governor of California for years before he took control at the helm of the Presidency! So he KNEW how government works! Donald Trump & his Teabagging Followers don't have the FIRST idea of how government operates. You don't run this country like a corporate interest!\n\nIn conclusion, believe it or not NAFTA was originally Reagan's 'brainchild'. If you have the 'slightest' respect for the Reagan legacy, you WON'T allow Trump into the White House!\n\n\n", + "cashout_time": "2016-09-24T21:08:12", + "category": "politics", + "children": 2, + "children_abs_rshares": 2364572745, + "created": "2016-08-24T21:05:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 735968, + "json_metadata": "{\"tags\":[\"politics\",\"trump\",\"reagan\",\"news\"]}", + "last_payout": "2016-08-25T21:08:12", + "last_update": "2016-08-24T21:24:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-08T23:22:51", + "net_rshares": -61964463, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "politics", + "percent_hbd": 10000, + "permlink": "reagan-versus-trump-no-comparison", + "reward_weight": 10000, + "root_author": "terryrall", + "root_permlink": "reagan-versus-trump-no-comparison", + "title": "Reagan versus Trump...NO Comparison!", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-24T21:24:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "mohamedmashaal", + "author_rewards": 0, + "beneficiaries": [], + "body": "Delete", + "cashout_time": "2016-09-24T20:53:54", + "category": "steemtube", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-24T20:53:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 735834, + "json_metadata": "{\"tags\":[\"delete\",\"steemtube\"]}", + "last_payout": "2016-08-25T20:53:54", + "last_update": "2016-08-24T21:24:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "steemtube", + "percent_hbd": 10000, + "permlink": "no-man-s-sky-honest-game-trailers-steemtube", + "reward_weight": 10000, + "root_author": "mohamedmashaal", + "root_permlink": "no-man-s-sky-honest-game-trailers-steemtube", + "title": "Delete", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-24T21:23:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ghostvangogh", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://scontent-dft4-2.xx.fbcdn.net/v/t1.0-9/13892044_514122035452799_7084570694564074093_n.jpg?oh=a4e8c52daf63a5fb0a2cf7647b6bdc3d&oe=585A651A", + "cashout_time": "2016-09-24T21:23:48", + "category": "art", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-24T21:23:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736173, + "json_metadata": "{\"tags\":[\"art\",\"blog\",\"photography\",\"digital\",\"nature\"],\"image\":[\"https://scontent-dft4-2.xx.fbcdn.net/v/t1.0-9/13892044_514122035452799_7084570694564074093_n.jpg?oh=a4e8c52daf63a5fb0a2cf7647b6bdc3d&oe=585A651A\"]}", + "last_payout": "2016-08-25T21:23:48", + "last_update": "2016-08-24T21:23:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "art", + "percent_hbd": 10000, + "permlink": "silhouettes", + "reward_weight": 10000, + "root_author": "ghostvangogh", + "root_permlink": "silhouettes", + "title": "Silhouettes", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent.pat.json index 4e02c233..df937a76 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 36961, - "author": "trogdor", - "permlink": "re-gtg-hello-world-20160703t175141501z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "hello-world", - "title": "", - "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-07-03T17:51:48", - "created": "2016-07-03T17:51:48", - "active": "2016-07-03T17:51:48", - "last_payout": "2016-08-13T21:04:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 37187, - "author": "amartinezque", - "permlink": "re-gtg-hello-world-20160703t224527020z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "hello-world", - "title": "", - "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-07-03T22:45:27", - "created": "2016-07-03T22:45:27", - "active": "2016-07-03T22:45:27", - "last_payout": "2016-08-13T21:04:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 38471, - "author": "edu-lopov", - "permlink": "re-gtg-hello-world-20160704t182251522z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "hello-world", - "title": "", - "body": "Welcome to Steemit Gandalf!", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-07-04T18:22:51", - "created": "2016-07-04T18:22:51", - "active": "2016-07-04T18:22:51", - "last_payout": "2016-08-13T21:04:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 694016, - "author": "gary-smith", - "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", - "category": "mining", - "parent_author": "gtg", - "parent_permlink": "missing-rewards-while-mining", - "title": "", - "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", - "json_metadata": "{\"tags\":[\"mining\"]}", - "last_update": "2016-08-21T12:52:06", - "created": "2016-08-21T12:52:06", - "active": "2016-08-21T12:52:06", - "last_payout": "2016-08-22T13:01:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "missing-rewards-while-mining", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 694144, - "author": "gtg", - "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", - "category": "mining", - "parent_author": "gtg", - "parent_permlink": "missing-rewards-while-mining", - "title": "", - "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", - "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https://steemit.chat/channel/mining\"]}", - "last_update": "2016-08-21T13:12:45", - "created": "2016-08-21T13:12:45", - "active": "2016-08-21T13:12:45", - "last_payout": "2016-08-22T13:01:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "missing-rewards-while-mining", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 766912, - "author": "timcliff", - "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", - "category": "mining", - "parent_author": "gtg", - "parent_permlink": "missing-rewards-while-mining", - "title": "", - "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", - "json_metadata": "{\"tags\":[\"mining\"]}", - "last_update": "2016-08-27T14:13:18", - "created": "2016-08-27T14:13:18", - "active": "2016-08-27T18:39:45", - "last_payout": "1970-01-01T00:00:00", - "depth": 1, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "missing-rewards-while-mining", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 760057, - "author": "ania", - "permlink": "re-gtg-re-ania-hello-world-20160826t211629005z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "re-ania-hello-world-20160826t185305711z", - "title": "", - "body": "Thank you Gandalf :)", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-08-26T21:16:45", - "created": "2016-08-26T21:16:45", - "active": "2016-08-26T21:16:45", - "last_payout": "2016-08-27T21:18:18", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "ania", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 957845, - "author": "arcange", - "permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", - "category": "stats", - "parent_author": "gtg", - "parent_permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", - "title": "", - "body": "Lol. You're welcome!\nBut I suspect you're working hard to hit the top 20 chart with your two comments :p", - "json_metadata": "{\"tags\":[\"stats\"]}", - "last_update": "2016-09-15T13:24:15", - "created": "2016-09-15T13:24:15", - "active": "2016-09-15T14:11:09", - "last_payout": "1970-01-01T00:00:00", - "depth": 4, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "arcange", - "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 957709, - "author": "arcange", - "permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", - "category": "stats", - "parent_author": "gtg", - "parent_permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", - "title": "", - "body": "That's the purpose of using FREETEXT() instead of CONTAINS()", - "json_metadata": "{\"tags\":[\"stats\"]}", - "last_update": "2016-09-15T13:06:18", - "created": "2016-09-15T13:06:18", - "active": "2016-09-15T14:11:09", - "last_payout": "1970-01-01T00:00:00", - "depth": 2, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "arcange", - "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 758094, - "author": "bumblebrii", - "permlink": "re-gtg-re-bumblebrii-about-me-20160826t182001959z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "re-bumblebrii-about-me-20160826t094306616z", - "title": "", - "body": "Oh yes of course. I subscribe to a lot of different artists for my coloring pages. One had sent me the link to her blog and kind of just ended up sticking around and read a few blogs. Next thing i know, I signed up haha.", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-08-26T18:20:12", - "created": "2016-08-26T18:20:12", - "active": "2016-08-26T18:20:12", - "last_payout": "2016-08-27T08:05:57", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "bumblebrii", - "root_permlink": "about-me", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-07-03T17:51:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "trogdor", + "author_rewards": 0, + "beneficiaries": [], + "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-03T17:51:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 51479, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T17:51:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160703t175141501z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-03T22:45:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "amartinezque", + "author_rewards": 0, + "beneficiaries": [], + "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-03T22:45:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 51824, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T22:45:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160703t224527020z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-04T18:22:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "edu-lopov", + "author_rewards": 0, + "beneficiaries": [], + "body": "Welcome to Steemit Gandalf!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-04T18:22:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 53542, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-04T18:22:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160704t182251522z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-21T12:52:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gary-smith", + "author_rewards": 0, + "beneficiaries": [], + "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", + "cashout_time": "1969-12-31T23:59:59", + "category": "mining", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-21T12:52:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 919497, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "2016-08-22T13:01:45", + "last_update": "2016-08-21T12:52:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "percent_hbd": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-21T13:12:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", + "cashout_time": "1969-12-31T23:59:59", + "category": "mining", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-21T13:12:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 919652, + "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https://steemit.chat/channel/mining\"]}", + "last_payout": "2016-08-22T13:01:45", + "last_update": "2016-08-21T13:12:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "percent_hbd": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-27T18:39:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "timcliff", + "author_rewards": 0, + "beneficiaries": [], + "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", + "cashout_time": "1969-12-31T23:59:59", + "category": "mining", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-27T14:13:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1013122, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-27T14:13:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "percent_hbd": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-26T21:16:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ania", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you Gandalf :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-26T21:16:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1004255, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-27T21:18:18", + "last_update": "2016-08-26T21:16:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "re-ania-hello-world-20160826t185305711z", + "percent_hbd": 10000, + "permlink": "re-gtg-re-ania-hello-world-20160826t211629005z", + "reward_weight": 10000, + "root_author": "ania", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-15T14:11:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "arcange", + "author_rewards": 0, + "beneficiaries": [], + "body": "Lol. You're welcome!\nBut I suspect you're working hard to hit the top 20 chart with your two comments :p", + "cashout_time": "1969-12-31T23:59:59", + "category": "stats", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-09-15T13:24:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 4, + "id": 1253741, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T13:24:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", + "percent_hbd": 10000, + "permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", + "reward_weight": 10000, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-15T14:11:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "arcange", + "author_rewards": 0, + "beneficiaries": [], + "body": "That's the purpose of using FREETEXT() instead of CONTAINS()", + "cashout_time": "1969-12-31T23:59:59", + "category": "stats", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-09-15T13:06:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1253573, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T13:06:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", + "percent_hbd": 10000, + "permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", + "reward_weight": 10000, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-26T18:20:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "bumblebrii", + "author_rewards": 0, + "beneficiaries": [], + "body": "Oh yes of course. I subscribe to a lot of different artists for my coloring pages. One had sent me the link to her blog and kind of just ended up sticking around and read a few blogs. Next thing i know, I signed up haha.", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-26T18:20:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1001581, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-27T08:05:57", + "last_update": "2016-08-26T18:20:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "re-bumblebrii-about-me-20160826t094306616z", + "percent_hbd": 10000, + "permlink": "re-gtg-re-bumblebrii-about-me-20160826t182001959z", + "reward_weight": 10000, + "root_author": "bumblebrii", + "root_permlink": "about-me", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json index ee9e5a3e..ea6ee412 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 784695, - "author": "vlad", - "permlink": "re-allasyummyfood-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t011002757z", - "category": "foodchallenge", - "parent_author": "allasyummyfood", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t004616466z", - "title": "", - "body": "Congratulations! Good job!\n\nhttp://www.todaystrucking.com/sites/default/files/first-place-ribbon-sm.png\n\nFollow you\n\nhttp://buketik-ufa.ru/image/cache/data/hollidays/z_8145a12e-500x500.jpg", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"image\":[\"http://www.todaystrucking.com/sites/default/files/first-place-ribbon-sm.png\"]}", - "last_update": "2016-08-29T01:10:36", - "created": "2016-08-29T01:10:36", - "active": "2016-08-29T01:10:36", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 788359, - "author": "givemeyoursteem", - "permlink": "re-allasyummyfood-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t112428312z", - "category": "foodchallenge", - "parent_author": "allasyummyfood", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t004616466z", - "title": "", - "body": "Congratulations to the 1st and 2nd prize @allasyummyfood and @vlad!! Great job :D", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"allasyummyfood\",\"vlad\"]}", - "last_update": "2016-08-29T11:26:00", - "created": "2016-08-29T11:24:27", - "active": "2016-08-29T11:26:00", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 2374341643, - "abs_rshares": 2374341643, - "vote_rshares": 2374341643, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 754285, - "author": "glitterfart", - "permlink": "re-allasyummyfood-re-glitterfart-re-allasyummyfood-more-steemit-goodies-arrived-20160826t115033112z", - "category": "steemit", - "parent_author": "allasyummyfood", - "parent_permlink": "re-glitterfart-re-allasyummyfood-more-steemit-goodies-arrived-20160825t183602955z", - "title": "", - "body": "Your \"steamy\" morning coffee will never be the same ;p", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_update": "2016-08-26T11:50:33", - "created": "2016-08-26T11:50:33", - "active": "2016-08-26T11:50:33", - "last_payout": "2016-08-26T19:18:24", - "depth": 3, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "allasyummyfood", - "root_permlink": "more-steemit-goodies-arrived", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 841045, - "author": "glitterfart", - "permlink": "re-allasyummyfood-re-glitterfart-thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far-20160903t032226965z", - "category": "steem", - "parent_author": "allasyummyfood", - "parent_permlink": "re-glitterfart-thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far-20160902t223416476z", - "title": "", - "body": "It takes me a while to get yours ^^\nThanks for your support ;)", - "json_metadata": "{\"tags\":[\"steem\"]}", - "last_update": "2016-09-03T03:22:18", - "created": "2016-09-03T03:22:18", - "active": "2016-09-03T03:22:18", - "last_payout": "2016-09-03T19:27:33", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "glitterfart", - "root_permlink": "thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 811830, - "author": "gringalicious", - "permlink": "re-allasyummyfood-re-gringalicious-kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf-20160831t112928563z", - "category": "food", - "parent_author": "allasyummyfood", - "parent_permlink": "re-gringalicious-kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf-20160831t110620686z", - "title": "", - "body": "Thank you for commenting Alla. I have been following you since I found steemit. And thank you for the compliment on the photos.", - "json_metadata": "{\"tags\":[\"food\"]}", - "last_update": "2016-08-31T11:29:24", - "created": "2016-08-31T11:29:24", - "active": "2016-08-31T11:29:24", - "last_payout": "2016-09-01T04:32:09", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gringalicious", - "root_permlink": "kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 812624, - "author": "halo", - "permlink": "re-allasyummyfood-re-halo-steemit-girl-halo-tips-to-be-a-better-dog-owner-20160831t130847282z", - "category": "halo", - "parent_author": "allasyummyfood", - "parent_permlink": "re-halo-steemit-girl-halo-tips-to-be-a-better-dog-owner-20160831t114201287z", - "title": "", - "body": "He is actually 5 now. The pictures were older but the post was to maybe help people wanting a puppy and people with a puppy.\n💋 @halo 💋😇", - "json_metadata": "{\"tags\":[\"halo\"],\"users\":[\"halo\"]}", - "last_update": "2016-08-31T13:08:48", - "created": "2016-08-31T13:08:48", - "active": "2016-08-31T13:08:48", - "last_payout": "2016-09-01T07:02:15", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "halo", - "root_permlink": "steemit-girl-halo-tips-to-be-a-better-dog-owner", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 643293, - "author": "lordvader", - "permlink": "re-allasyummyfood-re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160734219z", - "category": "steemit", - "parent_author": "allasyummyfood", - "parent_permlink": "re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160228694z", - "title": "", - "body": "I will teach him patience!", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_update": "2016-08-17T16:10:00", - "created": "2016-08-17T16:07:33", - "active": "2016-08-18T04:33:27", - "last_payout": "2016-08-18T17:44:30", - "depth": 2, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "hanshotfirst", - "root_permlink": "how-can-a-minnow-pull-his-tiny-weight", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 643438, - "author": "hanshotfirst", - "permlink": "re-allasyummyfood-re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t161759466z", - "category": "steemit", - "parent_author": "allasyummyfood", - "parent_permlink": "re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160228694z", - "title": "", - "body": "Thank you very much for the encouragement! I'll keep grinding away.", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_update": "2016-08-17T16:17:57", - "created": "2016-08-17T16:17:57", - "active": "2016-08-17T17:05:39", - "last_payout": "2016-08-18T17:44:30", - "depth": 2, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "hanshotfirst", - "root_permlink": "how-can-a-minnow-pull-his-tiny-weight", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 717886, - "author": "drac59", - "permlink": "re-allasyummyfood-re-hery-5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook-20160823t123052010z", - "category": "food", - "parent_author": "allasyummyfood", - "parent_permlink": "re-hery-5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook-20160822t205340167z", - "title": "", - "body": "но хочется того чего нельзя. хочется запретное.тогда думаеш что здоров.", - "json_metadata": "{\"tags\":[\"food\"]}", - "last_update": "2016-08-23T12:30:54", - "created": "2016-08-23T12:30:54", - "active": "2016-08-23T12:30:54", - "last_payout": "2016-08-23T19:18:27", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "hery", - "root_permlink": "5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 813501, - "author": "hidd3nmanna", - "permlink": "re-allasyummyfood-re-hidd3nmanna-i-have-no-idea-what-i-m-doing-20160831t144929612z", - "category": "introduceyourself", - "parent_author": "allasyummyfood", - "parent_permlink": "re-hidd3nmanna-i-have-no-idea-what-i-m-doing-20160831t113643967z", - "title": "", - "body": "Thank you! I will check that out!", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-08-31T14:49:33", - "created": "2016-08-31T14:49:33", - "active": "2016-08-31T14:49:33", - "last_payout": "2016-09-01T07:12:12", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "hidd3nmanna", - "root_permlink": "i-have-no-idea-what-i-m-doing", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T01:10:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vlad", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congratulations! Good job!\n\nhttp://www.todaystrucking.com/sites/default/files/first-place-ribbon-sm.png\n\nFollow you\n\nhttp://buketik-ufa.ru/image/cache/data/hollidays/z_8145a12e-500x500.jpg", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T01:10:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1035317, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"image\":[\"http://www.todaystrucking.com/sites/default/files/first-place-ribbon-sm.png\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-29T01:10:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t004616466z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t011002757z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 2374341643, + "active": "2016-08-29T11:26:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congratulations to the 1st and 2nd prize @allasyummyfood and @vlad!! Great job :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T11:24:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1039861, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"allasyummyfood\",\"vlad\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-29T11:26:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 2374341643, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t004616466z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t112428312z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 2374341643 + }, + { + "abs_rshares": 0, + "active": "2016-08-26T11:50:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "glitterfart", + "author_rewards": 0, + "beneficiaries": [], + "body": "Your \"steamy\" morning coffee will never be the same ;p", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-26T11:50:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 996526, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-26T19:18:24", + "last_update": "2016-08-26T11:50:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-glitterfart-re-allasyummyfood-more-steemit-goodies-arrived-20160825t183602955z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-glitterfart-re-allasyummyfood-more-steemit-goodies-arrived-20160826t115033112z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "more-steemit-goodies-arrived", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-03T03:22:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "glitterfart", + "author_rewards": 0, + "beneficiaries": [], + "body": "It takes me a while to get yours ^^\nThanks for your support ;)", + "cashout_time": "1969-12-31T23:59:59", + "category": "steem", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-03T03:22:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1106787, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "2016-09-03T19:27:33", + "last_update": "2016-09-03T03:22:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-glitterfart-thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far-20160902t223416476z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-glitterfart-thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far-20160903t032226965z", + "reward_weight": 10000, + "root_author": "glitterfart", + "root_permlink": "thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-31T11:29:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gringalicious", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you for commenting Alla. I have been following you since I found steemit. And thank you for the compliment on the photos.", + "cashout_time": "1969-12-31T23:59:59", + "category": "food", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-31T11:29:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1069484, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "2016-09-01T04:32:09", + "last_update": "2016-08-31T11:29:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-gringalicious-kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf-20160831t110620686z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-gringalicious-kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf-20160831t112928563z", + "reward_weight": 10000, + "root_author": "gringalicious", + "root_permlink": "kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-31T13:08:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "halo", + "author_rewards": 0, + "beneficiaries": [], + "body": "He is actually 5 now. The pictures were older but the post was to maybe help people wanting a puppy and people with a puppy.\n\ud83d\udc8b @halo \ud83d\udc8b\ud83d\ude07", + "cashout_time": "1969-12-31T23:59:59", + "category": "halo", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-31T13:08:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1070455, + "json_metadata": "{\"tags\":[\"halo\"],\"users\":[\"halo\"]}", + "last_payout": "2016-09-01T07:02:15", + "last_update": "2016-08-31T13:08:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "re-halo-steemit-girl-halo-tips-to-be-a-better-dog-owner-20160831t114201287z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-halo-steemit-girl-halo-tips-to-be-a-better-dog-owner-20160831t130847282z", + "reward_weight": 10000, + "root_author": "halo", + "root_permlink": "steemit-girl-halo-tips-to-be-a-better-dog-owner", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-18T04:33:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "lordvader", + "author_rewards": 0, + "beneficiaries": [], + "body": "I will teach him patience!", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-17T16:07:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 854877, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-18T17:44:30", + "last_update": "2016-08-17T16:10:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160228694z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160734219z", + "reward_weight": 10000, + "root_author": "hanshotfirst", + "root_permlink": "how-can-a-minnow-pull-his-tiny-weight", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-17T17:05:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hanshotfirst", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you very much for the encouragement! I'll keep grinding away.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-17T16:17:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 855050, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-18T17:44:30", + "last_update": "2016-08-17T16:17:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160228694z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t161759466z", + "reward_weight": 10000, + "root_author": "hanshotfirst", + "root_permlink": "how-can-a-minnow-pull-his-tiny-weight", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-23T12:30:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "drac59", + "author_rewards": 0, + "beneficiaries": [], + "body": "\u043d\u043e \u0445\u043e\u0447\u0435\u0442\u0441\u044f \u0442\u043e\u0433\u043e \u0447\u0435\u0433\u043e \u043d\u0435\u043b\u044c\u0437\u044f. \u0445\u043e\u0447\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0440\u0435\u0442\u043d\u043e\u0435.\u0442\u043e\u0433\u0434\u0430 \u0434\u0443\u043c\u0430\u0435\u0448 \u0447\u0442\u043e \u0437\u0434\u043e\u0440\u043e\u0432.", + "cashout_time": "1969-12-31T23:59:59", + "category": "food", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-23T12:30:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 949876, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "2016-08-23T19:18:27", + "last_update": "2016-08-23T12:30:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-hery-5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook-20160822t205340167z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-hery-5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook-20160823t123052010z", + "reward_weight": 10000, + "root_author": "hery", + "root_permlink": "5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-31T14:49:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hidd3nmanna", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you! I will check that out!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-31T14:49:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1071577, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-09-01T07:12:12", + "last_update": "2016-08-31T14:49:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-hidd3nmanna-i-have-no-idea-what-i-m-doing-20160831t113643967z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-hidd3nmanna-i-have-no-idea-what-i-m-doing-20160831t144929612z", + "reward_weight": 10000, + "root_author": "hidd3nmanna", + "root_permlink": "i-have-no-idea-what-i-m-doing", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json index 358987f7..96c3fa93 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 6, - "author": "abit", - "permlink": "witness-category", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Witnesses", - "body": "This is the witnesses category", - "json_metadata": "{}", - "last_update": "2016-04-08T07:36:18", - "created": "2016-04-08T07:36:18", - "active": "2016-04-08T08:58:24", - "last_payout": "2016-08-12T10:16:39", - "depth": 0, - "children": 2, - "net_rshares": -491818553, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "160", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "160", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 729, - "net_votes": -2, - "root_author": "abit", - "root_permlink": "witness-category", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 7, - "author": "abit", - "permlink": "miner-category", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Miners", - "body": "This is the miners category", - "json_metadata": "{}", - "last_update": "2016-04-08T07:55:15", - "created": "2016-04-08T07:55:15", - "active": "2016-04-08T07:55:15", - "last_payout": "2016-08-12T10:16:42", - "depth": 0, - "children": 0, - "net_rshares": -481781440, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "138", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "139", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 632, - "net_votes": -3, - "root_author": "abit", - "root_permlink": "miner-category", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 9, - "author": "abit", - "permlink": "spam", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Spams", - "body": "Spams come here", - "json_metadata": "{}", - "last_update": "2016-04-08T08:49:15", - "created": "2016-04-08T08:49:15", - "active": "2016-04-08T08:49:15", - "last_payout": "2016-08-13T18:32:54", - "depth": 0, - "children": 0, - "net_rshares": -477016308, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "165", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "166", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 755, - "net_votes": -2, - "root_author": "abit", - "root_permlink": "spam", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 20, - "author": "hello", - "permlink": "hello", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Hello World!", - "body": "As of 2016, you have to learn 7097 languages to say hello to 6,506,259,160 people.", - "json_metadata": "{}", - "last_update": "2016-04-08T15:39:00", - "created": "2016-04-08T15:39:00", - "active": "2016-04-08T15:39:00", - "last_payout": "2016-08-03T00:00:06", - "depth": 0, - "children": 0, - "net_rshares": -37896234000000, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 11, - "root_author": "hello", - "root_permlink": "hello", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 30, - "author": "hello", - "permlink": "world", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Hello World!", - "body": "Greetings to all human beings!\n -- The Internet", - "json_metadata": "{}", - "last_update": "2016-04-10T18:05:15", - "created": "2016-04-10T18:05:15", - "active": "2016-04-10T18:05:15", - "last_payout": "2016-08-03T00:00:06", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "428", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "427", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1950, - "net_votes": 5, - "root_author": "hello", - "root_permlink": "world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 31, - "author": "xeroc", - "permlink": "python-steem-0-1", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Python Steem Libraries 0.1", - "body": "Python Steem Libraries Version 1.0 released!\n\nThis library allows you to interface with the wallet and/or a steem node\nfor polling data via RPC calls.\n\n## Download\n\nYou can download directly from github:\n```\ngit clone https://github.com/xeroc/python-steem/\ncd python-steem\npython3 setup.py install --user\n```\n\nOr use `pip`\n```\npip3 install steem --user\n```\n\n## Setup\n\nEven though you can connect to a remote full node, you can start a local\nnode via:\n\n```\ncd \n./programs/steemd/steemd --rpc-endpoint=\"127.0.0.1:8090\"\n```\n\nThen you can connect a `cli_wallet` to your full node and open a new\nport at `8092`:\n```\n./programs/cli_wallet/cli_wallet --server-rpc-endpoint=ws://localhost:8090 \\\n --rpc-http-endpoint=127.0.0.1:8092 \\\n --rpc-http-allowip=127.0.0.1\n```\nWe will use both open ports in the example.\n\n## Usage Examples\n\n```python\nfrom steemapi.steemclient import SteemClient\nfrom pprint import pprint\n\nclass Config():\n # Port and host of the RPC-HTTP-Endpoint of the wallet\n wallet_host = \"localhost\"\n wallet_port = 8092\n # Websocket URL to the full node\n witness_url = \"ws://localhost:8090\"\n\nclient = SteemClient(Config)\n\n# Calls to the Wallet\n\npprint(client.wallet.vote(\"\", \"hello\", \"world\", 100, True))\n\n# Calls to the Node\npprint(client.node.get_trending_categories(\"\", 20))\npprint(client.node.get_content(\"hello\", \"world\"))\n```\n\nMore examples can be found in the `examples/` directory.\n", - "json_metadata": "{}", - "last_update": "2016-04-12T07:40:06", - "created": "2016-04-10T18:24:51", - "active": "2016-04-27T08:00:21", - "last_payout": "2016-08-21T21:26:42", - "depth": 0, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "63510", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "63453", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 288455, - "net_votes": 30, - "root_author": "xeroc", - "root_permlink": "python-steem-0-1", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 93, - "author": "red", - "permlink": "spam", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "title2", - "body": "removed", - "json_metadata": "{}", - "last_update": "2016-04-13T00:06:57", - "created": "2016-04-12T18:42:54", - "active": "2016-04-13T08:12:39", - "last_payout": "2016-08-26T03:00:03", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "red", - "root_permlink": "spam", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 103, - "author": "abit", - "permlink": "anti-spam", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Anti-spam", - "body": "Forum spam is a problem common to all popular forum software. Forum spam is caused by automated software (referred to as “spambots”) that visits forums with the sole purpose of registering many user accounts and/or posting massive amounts of messages. These messages often contain links to commercial websites, phishing websites or even malware.\n\nForum spambots surf the web looking for guestbooks, wikis, blogs, forums and any other web forms to submit spam links to. These spambots often use OCR technology to bypass CAPTCHAs present. Some spam messages are targeted towards readers and can involve techniques of target marketing or even phishing. These automated schemes can make it more difficult for users to tell real posts from the bot generated ones. Some spam messages also simply contain tags and hyperlinks intended to boost search engine ranking rather than target human readers.\n\nSpam posts may contain anything from a single link to dozens of links. Text content is minimal, usually innocuous and unrelated to the forum's topic. Sometimes the posts may be made in old threads that are revived by the spammer solely for the purpose of spamming links. Posts include some text to prevent the post being caught by automated spam filters that prevent posts which consist solely of external links from being submitted.\n\nAlternatively, the spam links are posted in the user's signature, in which case the spambot will never post. The link sits quietly in the signature field, where it is more likely to be harvested by search engine spiders than discovered by forum administrators and moderators.\n\nSpam prevention and deletions measurably increase the workload of forum administrators and moderators. The amount of time and resources spent keeping a forum spam free contributes significantly to labor cost and the skill required in the running of a public forum. Marginally profitable or smaller forums may be permanently closed by administrators.\n\nHow will STEEM fight spam?\n\nReferences:\n* https://en.wikipedia.org/wiki/Forum_spam\n * http://fluxbb.org/docs/v1.4/antispam", - "json_metadata": "{}", - "last_update": "2016-04-13T08:45:09", - "created": "2016-04-13T08:45:09", - "active": "2016-04-13T16:05:57", - "last_payout": "2016-08-12T10:16:57", - "depth": 0, - "children": 1, - "net_rshares": -433402453408, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "abit", - "root_permlink": "anti-spam", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 110, - "author": "xeroc", - "permlink": "how-to-monitor-an-account-on-steem", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Monitoring Account Deposits in Steem Using Python", - "body": "In [an other article](/steem/@xeroc/steem-api) we have discussed the underlying structure of the STEEM API and can now look into monitoring account deposits.\n\n## Running a Node\n\nFirst, we need to run a full node in a trusted environment:\n\n ./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n\nWe open up the RPC endpoint so that we can interface with the node using RPC-JSON calls.\n\n## Blockchain Parameters and Last Block\n\nThe RPC call `get_config` will return the configuration of the blockchain which contains the block interval in seconds. By calling `get_dynamic_global_properties`, we obtain the current head block number as well as the last irreversible block number. The difference between both is that the last block is last block that has been produced by the network and has thus been confirmed by the block producer. The last irreversible block is that block that has been confirmed by sufficient many block producers so that it can no longer be modified without a hard fork. Every block older than the last reversible block is equivalent to a checkpoint in Bitcoin. Typically they are about 30 to 50 blocks behind the head block.\n\nA particular block can be obtained via the `get_block ` call and takes the form shown above.\n\n## Processing Block Data\n\nSince the content of a block is unencrypted, all it takes to monitor an account is processing of the content of each block.\n\n## Example\n\nThe following will show example implementations for monitoring a specific account.\n\n```python\n# This library can be obtain from https://github.com/xeroc/python-steem\n\nfrom steemrpc import SteemRPC\nfrom pprint import pprint\nimport time\n\n\"\"\"\n Connection Parameters to steemd daemon.\n\n Start the steemd daemon with the rpc-endpoint parameter:\n\n ./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n\n This opens up a RPC port (e.g. at 8092). Currently, authentication\n is not yet available, thus, we recommend to restrict access to\n localhost. Later we will allow authentication via username and\n passpword (both empty now).\n\n\"\"\"\nrpc = SteemRPC(\"localhost\", 8092, \"\", \"\")\n\n\"\"\"\n Last Block that you have process in your backend.\n Processing will continue at `last_block + 1`\n\"\"\"\nlast_block = 160900\n\n\"\"\"\n Deposit account name to monitor\n\"\"\"\nwatch_account = \"world\"\n\n\ndef process_block(block, blockid):\n \"\"\"\n This call processes a block which can carry many transactions\n\n :param Object block: block data\n :param number blockid: block number\n \"\"\"\n if \"transactions\" in block:\n for tx in block[\"transactions\"]:\n #: Parse operations\n for opObj in tx[\"operations\"]:\n #: Each operation is an array of the form\n #: [type, {data}]\n opType = opObj[0]\n op = opObj[1]\n\n # we here want to only parse transfers\n if opType == \"transfer\":\n process_transfer(op, block, blockid)\n\n\ndef process_transfer(op, block, blockid):\n \"\"\"\n We here process the actual transfer operation.\n \"\"\"\n if op[\"to\"] == watch_account:\n print(\n \"%d | %s | %s -> %s: %s -- %s\" % (\n blockid,\n block[\"timestamp\"],\n op[\"from\"],\n op[\"to\"],\n op[\"amount\"],\n op[\"memo\"]\n )\n )\n\n\nif __name__ == '__main__':\n # Let's find out how often blocks are generated!\n config = rpc.get_config()\n block_interval = config[\"STEEMIT_BLOCK_INTERVAL\"]\n\n # We are going to loop indefinitely\n while True:\n\n # Get chain properies to identify the \n # head/last reversible block\n props = rpc.get_dynamic_global_properties()\n\n # Get block number\n # We here have the choice between\n # * head_block_number: the last block\n # * last_irreversible_block_num: the block that is confirmed by\n # 2/3 of all block producers and is thus irreversible!\n # We recommend to use the latter!\n # block_number = props['head_block_number']\n block_number = props['last_irreversible_block_num']\n\n # We loop through all blocks we may have missed since the last\n # block defined above\n while (block_number - last_block) > 0:\n last_block += 1\n\n # Get full block\n block = rpc.get_block(last_block)\n\n # Process block\n process_block(block, last_block)\n\n # Sleep for one block\n time.sleep(block_interval)\n```", - "json_metadata": "{}", - "last_update": "2016-05-15T16:06:06", - "created": "2016-04-13T16:22:45", - "active": "2016-05-15T16:06:06", - "last_payout": "2016-08-03T00:00:06", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "18340", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "18338", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 83368, - "net_votes": 16, - "root_author": "xeroc", - "root_permlink": "how-to-monitor-an-account-on-steem", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 111, - "author": "xeroc", - "permlink": "steem-api", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Steem API", - "body": "This article desribes the API of the STEEM full node (**not** of the wallet API).\n\n## Prerequisits\n\nThis article assumes that you have a full node running and listening to port ``8092``, locally. You can achieve this by\n\n```\n./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n```\n\nWe open up the RPC endpoint so that we can interface with the node using RPC-JSON calls.\n\n## Call Format\n\nIn Graphene, RPC calls are state-less and accessible via regular JSON formated RPC-HTTP-calls. The correct structure of the JSON call is\n\n```json\n{\n \"jsonrpc\": \"2.0\",\n \"id\": 1\n \"method\": \"get_account\",\n \"params\": [[\"xeroc\", \"steemit\"]],\n}\n```\n\nThe `get_accounts` call is available in the full node's API and takes only one argument which is an array of account ids (here: `[\"xeroc\", \"steemit\"]`).\n\n### Example Call with `curl`\n\nSuch as call can be submitted via ``curl``:\n\n```sh\ncurl --data '{\"jsonrpc\": \"2.0\", \"method\": \"get_accounts\", \"params\": [[\"xeroc\",\"steemit\"]], \"id\": 1}' http://127.0.0.1:8090/rpc\n```\n\n## Successful Calls\n\n\nThe API will return a properly JSON formated response carrying the same ``id``\nas the request to distinguish subsequent calls.\n\n```json\n{ \"id\":1, \"result\": \"data\" }\n```\n\n## Errors\n\nIn case of an error, the resulting answer will carry an ``error`` attribute and\na detailed description:\n\n```json\n{\n \"id\": 0\n \"error\": {\n \"data\": {\n \"code\": error-code,\n \"name\": \" .. name of exception ..\"\n \"message\": \" .. message of exception ..\",\n \"stack\": [ .. stack trace .. ],\n },\n \"code\": 1,\n },\n}\n```\n\n## Available Calls\n\nEven though, the `help` call does not exist, it gives us an error message that contains all available API calls in the stack trace:\n\n```\ncurl --data '{\"jsonrpc\": \"2.0\", \"method\": \"help\", \"params\": [], \"id\": 1}' http://127.0.0.1:8090/rpc\n```\n```json\n{\n \"id\": 1,\n \"error\": {\n \"message\": <...>,\n \"data\": {\n \"message\": \"Assert Exception\",\n \"name\": \"assert_exception\",\n \"stack\": [\n {\n \"data\": {\n \"name\": \"help\",\n \"api\": {\n \"set_subscribe_callback\": 0,\n \"get_dynamic_global_properties\": 12,\n \"get_accounts\": 17,\n \"get_active_categories\": 9,\n \"get_account_references\": 18,\n \"get_trending_categories\": 7,\n \"get_content\": 36,\n \"get_state\": 6,\n \"get_discussions_by_total_pending_payout\": 38,\n \"cancel_all_subscriptions\": 3,\n \"get_block_header\": 4,\n \"get_active_votes\": 35,\n \"get_current_median_history_price\": 15,\n \"lookup_witness_accounts\": 26,\n \"verify_account_authority\": 34,\n \"get_key_references\": 16,\n \"set_pending_transaction_callback\": 1,\n \"get_required_signatures\": 31,\n \"get_recent_categories\": 10,\n \"get_order_book\": 28,\n \"lookup_accounts\": 20,\n \"get_account_history\": 23,\n \"get_chain_properties\": 13,\n \"get_feed_history\": 14,\n \"verify_authority\": 33,\n \"get_discussions_by_last_update\": 40,\n \"get_conversion_requests\": 22,\n \"get_discussions_in_category_by_last_update\": 41,\n \"get_block\": 5,\n \"get_witness_count\": 27,\n \"get_best_categories\": 8,\n \"get_potential_signatures\": 32,\n \"lookup_account_names\": 19,\n \"get_transaction\": 30,\n \"get_witnesses\": 24,\n \"get_witness_by_account\": 25,\n \"get_account_count\": 21,\n \"get_transaction_hex\": 29,\n \"get_content_replies\": 37,\n \"get_discussions_in_category_by_total_pending_payout\": 39,\n \"get_miner_queue\": 43,\n \"get_active_witnesses\": 42,\n \"set_block_applied_callback\": 2,\n \"get_config\": 11\n }\n },\n \"context\": {\n \"line\": 109,\n \"hostname\": \"\",\n \"timestamp\": \"2016-04-13T16:15:17\",\n \"method\": \"call\",\n \"thread_name\": \"th_a\",\n \"level\": \"error\",\n \"file\": \"api_connection.hpp\"\n },\n \"format\": \"itr != _by_name.end(): no method with name '${name}'\"\n }\n ],\n \"code\": 10\n },\n \"code\": 1\n }\n}\n```\n\nFurther documentation about the calls can be found in the sources in [libraries/app/include/steemit/app/database_api.hpp](https://github.com/steemit/steem/blob/master/libraries/app/include/steemit/app/database_api.hpp).\n", - "json_metadata": "{}", - "last_update": "2016-04-13T16:25:15", - "created": "2016-04-13T16:25:15", - "active": "2016-07-21T17:34:03", - "last_payout": "2016-08-24T05:37:24", - "depth": 0, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "2165", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "493", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 9197, - "net_votes": 29, - "root_author": "xeroc", - "root_permlink": "steem-api", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-04-08T08:58:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 729, + "beneficiaries": [], + "body": "This is the witnesses category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-08T07:36:18", + "curator_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 6, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:39", + "last_update": "2016-04-08T07:36:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -491818553, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "witness-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "witness-category", + "title": "Witnesses", + "total_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T07:55:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 632, + "beneficiaries": [], + "body": "This is the miners category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T07:55:15", + "curator_payout_value": { + "amount": "139", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 7, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:42", + "last_update": "2016-04-08T07:55:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -481781440, + "net_votes": -3, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "miner-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "miner-category", + "title": "Miners", + "total_payout_value": { + "amount": "138", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T08:49:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 755, + "beneficiaries": [], + "body": "Spams come here", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T08:49:15", + "curator_payout_value": { + "amount": "166", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 9, + "json_metadata": "{}", + "last_payout": "2016-08-13T18:32:54", + "last_update": "2016-04-08T08:49:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -477016308, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "spam", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "spam", + "title": "Spams", + "total_payout_value": { + "amount": "165", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T15:39:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hello", + "author_rewards": 0, + "beneficiaries": [], + "body": "As of 2016, you have to learn 7097 languages to say hello to 6,506,259,160 people.", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T15:39:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 20, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-04-08T15:39:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -37896234000000, + "net_votes": 11, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "hello", + "reward_weight": 10000, + "root_author": "hello", + "root_permlink": "hello", + "title": "Hello World!", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-10T18:05:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hello", + "author_rewards": 1950, + "beneficiaries": [], + "body": "Greetings to all human beings!\n -- The Internet", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-10T18:05:15", + "curator_payout_value": { + "amount": "427", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 30, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-04-10T18:05:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 5, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "world", + "reward_weight": 10000, + "root_author": "hello", + "root_permlink": "world", + "title": "Hello World!", + "total_payout_value": { + "amount": "428", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-27T08:00:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "xeroc", + "author_rewards": 288455, + "beneficiaries": [], + "body": "Python Steem Libraries Version 1.0 released!\n\nThis library allows you to interface with the wallet and/or a steem node\nfor polling data via RPC calls.\n\n## Download\n\nYou can download directly from github:\n```\ngit clone https://github.com/xeroc/python-steem/\ncd python-steem\npython3 setup.py install --user\n```\n\nOr use `pip`\n```\npip3 install steem --user\n```\n\n## Setup\n\nEven though you can connect to a remote full node, you can start a local\nnode via:\n\n```\ncd \n./programs/steemd/steemd --rpc-endpoint=\"127.0.0.1:8090\"\n```\n\nThen you can connect a `cli_wallet` to your full node and open a new\nport at `8092`:\n```\n./programs/cli_wallet/cli_wallet --server-rpc-endpoint=ws://localhost:8090 \\\n --rpc-http-endpoint=127.0.0.1:8092 \\\n --rpc-http-allowip=127.0.0.1\n```\nWe will use both open ports in the example.\n\n## Usage Examples\n\n```python\nfrom steemapi.steemclient import SteemClient\nfrom pprint import pprint\n\nclass Config():\n # Port and host of the RPC-HTTP-Endpoint of the wallet\n wallet_host = \"localhost\"\n wallet_port = 8092\n # Websocket URL to the full node\n witness_url = \"ws://localhost:8090\"\n\nclient = SteemClient(Config)\n\n# Calls to the Wallet\n\npprint(client.wallet.vote(\"\", \"hello\", \"world\", 100, True))\n\n# Calls to the Node\npprint(client.node.get_trending_categories(\"\", 20))\npprint(client.node.get_content(\"hello\", \"world\"))\n```\n\nMore examples can be found in the `examples/` directory.\n", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-04-10T18:24:51", + "curator_payout_value": { + "amount": "63453", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 31, + "json_metadata": "{}", + "last_payout": "2016-08-21T21:26:42", + "last_update": "2016-04-12T07:40:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 30, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "python-steem-0-1", + "reward_weight": 10000, + "root_author": "xeroc", + "root_permlink": "python-steem-0-1", + "title": "Python Steem Libraries 0.1", + "total_payout_value": { + "amount": "63510", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-13T08:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 0, + "beneficiaries": [], + "body": "removed", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-12T18:42:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 93, + "json_metadata": "{}", + "last_payout": "2016-08-26T03:00:03", + "last_update": "2016-04-13T00:06:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "spam", + "reward_weight": 10000, + "root_author": "red", + "root_permlink": "spam", + "title": "title2", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-13T16:05:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 0, + "beneficiaries": [], + "body": "Forum spam is a problem common to all popular forum software. Forum spam is caused by automated software (referred to as \u201cspambots\u201d) that visits forums with the sole purpose of registering many user accounts and/or posting massive amounts of messages. These messages often contain links to commercial websites, phishing websites or even malware.\n\nForum spambots surf the web looking for guestbooks, wikis, blogs, forums and any other web forms to submit spam links to. These spambots often use OCR technology to bypass CAPTCHAs present. Some spam messages are targeted towards readers and can involve techniques of target marketing or even phishing. These automated schemes can make it more difficult for users to tell real posts from the bot generated ones. Some spam messages also simply contain tags and hyperlinks intended to boost search engine ranking rather than target human readers.\n\nSpam posts may contain anything from a single link to dozens of links. Text content is minimal, usually innocuous and unrelated to the forum's topic. Sometimes the posts may be made in old threads that are revived by the spammer solely for the purpose of spamming links. Posts include some text to prevent the post being caught by automated spam filters that prevent posts which consist solely of external links from being submitted.\n\nAlternatively, the spam links are posted in the user's signature, in which case the spambot will never post. The link sits quietly in the signature field, where it is more likely to be harvested by search engine spiders than discovered by forum administrators and moderators.\n\nSpam prevention and deletions measurably increase the workload of forum administrators and moderators. The amount of time and resources spent keeping a forum spam free contributes significantly to labor cost and the skill required in the running of a public forum. Marginally profitable or smaller forums may be permanently closed by administrators.\n\nHow will STEEM fight spam?\n\nReferences:\n* https://en.wikipedia.org/wiki/Forum_spam\n * http://fluxbb.org/docs/v1.4/antispam", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-04-13T08:45:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 103, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:57", + "last_update": "2016-04-13T08:45:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -433402453408, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "anti-spam", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "anti-spam", + "title": "Anti-spam", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-05-15T16:06:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "xeroc", + "author_rewards": 83368, + "beneficiaries": [], + "body": "In [an other article](/steem/@xeroc/steem-api) we have discussed the underlying structure of the STEEM API and can now look into monitoring account deposits.\n\n## Running a Node\n\nFirst, we need to run a full node in a trusted environment:\n\n ./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n\nWe open up the RPC endpoint so that we can interface with the node using RPC-JSON calls.\n\n## Blockchain Parameters and Last Block\n\nThe RPC call `get_config` will return the configuration of the blockchain which contains the block interval in seconds. By calling `get_dynamic_global_properties`, we obtain the current head block number as well as the last irreversible block number. The difference between both is that the last block is last block that has been produced by the network and has thus been confirmed by the block producer. The last irreversible block is that block that has been confirmed by sufficient many block producers so that it can no longer be modified without a hard fork. Every block older than the last reversible block is equivalent to a checkpoint in Bitcoin. Typically they are about 30 to 50 blocks behind the head block.\n\nA particular block can be obtained via the `get_block ` call and takes the form shown above.\n\n## Processing Block Data\n\nSince the content of a block is unencrypted, all it takes to monitor an account is processing of the content of each block.\n\n## Example\n\nThe following will show example implementations for monitoring a specific account.\n\n```python\n# This library can be obtain from https://github.com/xeroc/python-steem\n\nfrom steemrpc import SteemRPC\nfrom pprint import pprint\nimport time\n\n\"\"\"\n Connection Parameters to steemd daemon.\n\n Start the steemd daemon with the rpc-endpoint parameter:\n\n ./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n\n This opens up a RPC port (e.g. at 8092). Currently, authentication\n is not yet available, thus, we recommend to restrict access to\n localhost. Later we will allow authentication via username and\n passpword (both empty now).\n\n\"\"\"\nrpc = SteemRPC(\"localhost\", 8092, \"\", \"\")\n\n\"\"\"\n Last Block that you have process in your backend.\n Processing will continue at `last_block + 1`\n\"\"\"\nlast_block = 160900\n\n\"\"\"\n Deposit account name to monitor\n\"\"\"\nwatch_account = \"world\"\n\n\ndef process_block(block, blockid):\n \"\"\"\n This call processes a block which can carry many transactions\n\n :param Object block: block data\n :param number blockid: block number\n \"\"\"\n if \"transactions\" in block:\n for tx in block[\"transactions\"]:\n #: Parse operations\n for opObj in tx[\"operations\"]:\n #: Each operation is an array of the form\n #: [type, {data}]\n opType = opObj[0]\n op = opObj[1]\n\n # we here want to only parse transfers\n if opType == \"transfer\":\n process_transfer(op, block, blockid)\n\n\ndef process_transfer(op, block, blockid):\n \"\"\"\n We here process the actual transfer operation.\n \"\"\"\n if op[\"to\"] == watch_account:\n print(\n \"%d | %s | %s -> %s: %s -- %s\" % (\n blockid,\n block[\"timestamp\"],\n op[\"from\"],\n op[\"to\"],\n op[\"amount\"],\n op[\"memo\"]\n )\n )\n\n\nif __name__ == '__main__':\n # Let's find out how often blocks are generated!\n config = rpc.get_config()\n block_interval = config[\"STEEMIT_BLOCK_INTERVAL\"]\n\n # We are going to loop indefinitely\n while True:\n\n # Get chain properies to identify the \n # head/last reversible block\n props = rpc.get_dynamic_global_properties()\n\n # Get block number\n # We here have the choice between\n # * head_block_number: the last block\n # * last_irreversible_block_num: the block that is confirmed by\n # 2/3 of all block producers and is thus irreversible!\n # We recommend to use the latter!\n # block_number = props['head_block_number']\n block_number = props['last_irreversible_block_num']\n\n # We loop through all blocks we may have missed since the last\n # block defined above\n while (block_number - last_block) > 0:\n last_block += 1\n\n # Get full block\n block = rpc.get_block(last_block)\n\n # Process block\n process_block(block, last_block)\n\n # Sleep for one block\n time.sleep(block_interval)\n```", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-13T16:22:45", + "curator_payout_value": { + "amount": "18338", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 110, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-15T16:06:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 16, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "how-to-monitor-an-account-on-steem", + "reward_weight": 10000, + "root_author": "xeroc", + "root_permlink": "how-to-monitor-an-account-on-steem", + "title": "Monitoring Account Deposits in Steem Using Python", + "total_payout_value": { + "amount": "18340", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-21T17:34:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "xeroc", + "author_rewards": 9197, + "beneficiaries": [], + "body": "This article desribes the API of the STEEM full node (**not** of the wallet API).\n\n## Prerequisits\n\nThis article assumes that you have a full node running and listening to port ``8092``, locally. You can achieve this by\n\n```\n./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n```\n\nWe open up the RPC endpoint so that we can interface with the node using RPC-JSON calls.\n\n## Call Format\n\nIn Graphene, RPC calls are state-less and accessible via regular JSON formated RPC-HTTP-calls. The correct structure of the JSON call is\n\n```json\n{\n \"jsonrpc\": \"2.0\",\n \"id\": 1\n \"method\": \"get_account\",\n \"params\": [[\"xeroc\", \"steemit\"]],\n}\n```\n\nThe `get_accounts` call is available in the full node's API and takes only one argument which is an array of account ids (here: `[\"xeroc\", \"steemit\"]`).\n\n### Example Call with `curl`\n\nSuch as call can be submitted via ``curl``:\n\n```sh\ncurl --data '{\"jsonrpc\": \"2.0\", \"method\": \"get_accounts\", \"params\": [[\"xeroc\",\"steemit\"]], \"id\": 1}' http://127.0.0.1:8090/rpc\n```\n\n## Successful Calls\n\n\nThe API will return a properly JSON formated response carrying the same ``id``\nas the request to distinguish subsequent calls.\n\n```json\n{ \"id\":1, \"result\": \"data\" }\n```\n\n## Errors\n\nIn case of an error, the resulting answer will carry an ``error`` attribute and\na detailed description:\n\n```json\n{\n \"id\": 0\n \"error\": {\n \"data\": {\n \"code\": error-code,\n \"name\": \" .. name of exception ..\"\n \"message\": \" .. message of exception ..\",\n \"stack\": [ .. stack trace .. ],\n },\n \"code\": 1,\n },\n}\n```\n\n## Available Calls\n\nEven though, the `help` call does not exist, it gives us an error message that contains all available API calls in the stack trace:\n\n```\ncurl --data '{\"jsonrpc\": \"2.0\", \"method\": \"help\", \"params\": [], \"id\": 1}' http://127.0.0.1:8090/rpc\n```\n```json\n{\n \"id\": 1,\n \"error\": {\n \"message\": <...>,\n \"data\": {\n \"message\": \"Assert Exception\",\n \"name\": \"assert_exception\",\n \"stack\": [\n {\n \"data\": {\n \"name\": \"help\",\n \"api\": {\n \"set_subscribe_callback\": 0,\n \"get_dynamic_global_properties\": 12,\n \"get_accounts\": 17,\n \"get_active_categories\": 9,\n \"get_account_references\": 18,\n \"get_trending_categories\": 7,\n \"get_content\": 36,\n \"get_state\": 6,\n \"get_discussions_by_total_pending_payout\": 38,\n \"cancel_all_subscriptions\": 3,\n \"get_block_header\": 4,\n \"get_active_votes\": 35,\n \"get_current_median_history_price\": 15,\n \"lookup_witness_accounts\": 26,\n \"verify_account_authority\": 34,\n \"get_key_references\": 16,\n \"set_pending_transaction_callback\": 1,\n \"get_required_signatures\": 31,\n \"get_recent_categories\": 10,\n \"get_order_book\": 28,\n \"lookup_accounts\": 20,\n \"get_account_history\": 23,\n \"get_chain_properties\": 13,\n \"get_feed_history\": 14,\n \"verify_authority\": 33,\n \"get_discussions_by_last_update\": 40,\n \"get_conversion_requests\": 22,\n \"get_discussions_in_category_by_last_update\": 41,\n \"get_block\": 5,\n \"get_witness_count\": 27,\n \"get_best_categories\": 8,\n \"get_potential_signatures\": 32,\n \"lookup_account_names\": 19,\n \"get_transaction\": 30,\n \"get_witnesses\": 24,\n \"get_witness_by_account\": 25,\n \"get_account_count\": 21,\n \"get_transaction_hex\": 29,\n \"get_content_replies\": 37,\n \"get_discussions_in_category_by_total_pending_payout\": 39,\n \"get_miner_queue\": 43,\n \"get_active_witnesses\": 42,\n \"set_block_applied_callback\": 2,\n \"get_config\": 11\n }\n },\n \"context\": {\n \"line\": 109,\n \"hostname\": \"\",\n \"timestamp\": \"2016-04-13T16:15:17\",\n \"method\": \"call\",\n \"thread_name\": \"th_a\",\n \"level\": \"error\",\n \"file\": \"api_connection.hpp\"\n },\n \"format\": \"itr != _by_name.end(): no method with name '${name}'\"\n }\n ],\n \"code\": 10\n },\n \"code\": 1\n }\n}\n```\n\nFurther documentation about the calls can be found in the sources in [libraries/app/include/steemit/app/database_api.hpp](https://github.com/steemit/steem/blob/master/libraries/app/include/steemit/app/database_api.hpp).\n", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-04-13T16:25:15", + "curator_payout_value": { + "amount": "493", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 111, + "json_metadata": "{}", + "last_payout": "2016-08-24T05:37:24", + "last_update": "2016-04-13T16:25:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 29, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "steem-api", + "reward_weight": 10000, + "root_author": "xeroc", + "root_permlink": "steem-api", + "title": "Steem API", + "total_payout_value": { + "amount": "2165", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.pat.json index 773d6574..6cda79b6 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 478086, - "author": "ben99", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t134926380z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "looks yummy :)", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T13:49:21", - "created": "2016-08-06T13:49:21", - "active": "2016-08-06T13:53:09", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478091, - "author": "saharov", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135018922z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "i think is very delicious", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T13:50:18", - "created": "2016-08-06T13:50:18", - "active": "2016-08-06T13:51:51", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478096, - "author": "timsaid", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135034200z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "This post made me hungry Alla. Think I will try the recipe tomorrow and will tell you how it was :)", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T13:50:36", - "created": "2016-08-06T13:50:36", - "active": "2016-08-06T13:51:30", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478099, - "author": "sauravrungta", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135111374z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "Damn....just when I am hungry.....magically delicious looking little pieces of heaven!! :D :D", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T13:51:12", - "created": "2016-08-06T13:51:12", - "active": "2016-08-06T13:59:54", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "42", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "2", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 20, - "net_votes": 6, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478101, - "author": "meesterboom", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135127799z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "Top doughnutting!!!", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T13:51:27", - "created": "2016-08-06T13:51:27", - "active": "2016-08-06T13:59:18", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478127, - "author": "firepower", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t140239163z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "That looks really delicious! Would love to try that but too bad I'm behind a computer screen haha! Keep up the good work! :)", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T13:54:09", - "created": "2016-08-06T13:54:09", - "active": "2016-08-06T14:04:27", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478427, - "author": "gustavopasquini", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t142635178z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "Very Good Chef ;)", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T14:26:39", - "created": "2016-08-06T14:26:39", - "active": "2016-08-06T14:33:15", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478462, - "author": "recursive", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t143154346z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "Photo #2: gorgeous! French [canelé](https://en.wikipedia.org/wiki/Canel%C3%A9) comes to mind...\nhttps://upload.wikimedia.org/wikipedia/commons/d/df/Canele_innards.jpg", - "json_metadata": "{\"tags\":[\"recipes\"],\"links\":[\"https://en.wikipedia.org/wiki/Canel%C3%A9\"]}", - "last_update": "2016-08-06T14:30:48", - "created": "2016-08-06T14:30:48", - "active": "2016-08-06T14:32:51", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "3770", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "2", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1769, - "net_votes": 11, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478506, - "author": "condra", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t143537671z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "Oh damn I'm gonna try this", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T14:35:21", - "created": "2016-08-06T14:35:21", - "active": "2016-08-06T19:59:42", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 3, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 479047, - "author": "kryptik", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t153216549z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "Awesome easy recipe! I see you workin' it #steemianfoodnetwork", - "json_metadata": "{\"tags\":[\"steemianfoodnetwork\",\"recipes\"]}", - "last_update": "2016-08-06T15:32:15", - "created": "2016-08-06T15:32:15", - "active": "2016-08-06T22:47:21", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-06T13:53:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ben99", + "author_rewards": 0, + "beneficiaries": [], + "body": "looks yummy :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T13:49:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 644532, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:49:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t134926380z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T13:51:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "saharov", + "author_rewards": 0, + "beneficiaries": [], + "body": "i think is very delicious", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T13:50:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 644539, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:50:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135018922z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T13:51:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "timsaid", + "author_rewards": 0, + "beneficiaries": [], + "body": "This post made me hungry Alla. Think I will try the recipe tomorrow and will tell you how it was :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T13:50:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 644544, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:50:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135034200z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T13:59:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "sauravrungta", + "author_rewards": 20, + "beneficiaries": [], + "body": "Damn....just when I am hungry.....magically delicious looking little pieces of heaven!! :D :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T13:51:12", + "curator_payout_value": { + "amount": "2", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 644548, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:51:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135111374z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "42", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T13:59:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "meesterboom", + "author_rewards": 0, + "beneficiaries": [], + "body": "Top doughnutting!!!", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T13:51:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 644551, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:51:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135127799z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T14:04:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "firepower", + "author_rewards": 0, + "beneficiaries": [], + "body": "That looks really delicious! Would love to try that but too bad I'm behind a computer screen haha! Keep up the good work! :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-06T13:54:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 644585, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:54:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t140239163z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T14:33:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gustavopasquini", + "author_rewards": 0, + "beneficiaries": [], + "body": "Very Good Chef ;)", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T14:26:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 644973, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T14:26:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t142635178z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T14:32:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "recursive", + "author_rewards": 1769, + "beneficiaries": [], + "body": "Photo #2: gorgeous! French [canel\u00e9](https://en.wikipedia.org/wiki/Canel%C3%A9) comes to mind...\nhttps://upload.wikimedia.org/wikipedia/commons/d/df/Canele_innards.jpg", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T14:30:48", + "curator_payout_value": { + "amount": "2", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 645015, + "json_metadata": "{\"tags\":[\"recipes\"],\"links\":[\"https://en.wikipedia.org/wiki/Canel%C3%A9\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T14:30:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 11, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t143154346z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "3770", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T19:59:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "condra", + "author_rewards": 0, + "beneficiaries": [], + "body": "Oh damn I'm gonna try this", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T14:35:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 645069, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T14:35:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t143537671z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T22:47:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "kryptik", + "author_rewards": 0, + "beneficiaries": [], + "body": "Awesome easy recipe! I see you workin' it #steemianfoodnetwork", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-06T15:32:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 645750, + "json_metadata": "{\"tags\":[\"steemianfoodnetwork\",\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T15:32:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t153216549z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json index 0c20d05e..082915e9 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 336501, - "author": "msjennifer", - "permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", - "category": "steemit", - "parent_author": "vi1son", - "parent_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", - "title": "", - "body": "Excellent post!", - "json_metadata": "", - "last_update": "2016-07-29T15:23:18", - "created": "2016-07-29T15:17:39", - "active": "2016-07-29T15:23:18", - "last_payout": "2016-08-29T05:00:42", - "depth": 1, - "children": 0, - "net_rshares": -55205310, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": -4, - "root_author": "vi1son", - "root_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 336600, - "author": "corax", - "permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", - "category": "steemit", - "parent_author": "vi1son", - "parent_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", - "title": "", - "body": "http://now-here-this.timeout.com/wp-content/uploads/2013/02/url-19.gif Oh my goodness! Impressive article dude! Thanks, However I am encountering issues with your RSS. I dont understand why I cannot join it. Is there anybody else having the same RSS issues? Anyone that knows the solution will you kindly respond? Thanks", - "json_metadata": "", - "last_update": "2016-07-29T15:23:39", - "created": "2016-07-29T15:23:39", - "active": "2016-07-29T16:58:39", - "last_payout": "2016-08-29T05:00:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "vi1son", - "root_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 425216, - "author": "yandra86", - "permlink": "aferium", - "category": "ru", - "parent_author": "vi1son", - "parent_permlink": "aferium", - "title": "", - "body": "Upvoted", - "json_metadata": "", - "last_update": "2016-08-03T08:52:45", - "created": "2016-08-03T08:52:45", - "active": "2016-08-03T08:52:45", - "last_payout": "2016-09-02T20:52:12", - "depth": 1, - "children": 0, - "net_rshares": -10906911, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": -1, - "root_author": "vi1son", - "root_permlink": "aferium", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 773677, - "author": "itay", - "permlink": "re-aferium", - "category": "ru", - "parent_author": "vi1son", - "parent_permlink": "aferium", - "title": "", - "body": "I upvoted You", - "json_metadata": "{}", - "last_update": "2016-08-28T02:48:12", - "created": "2016-08-28T02:48:12", - "active": "2016-08-28T02:48:12", - "last_payout": "2016-09-02T20:52:12", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "vi1son", - "root_permlink": "aferium", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 353970, - "author": "confucius", - "permlink": "afghan-war-1985", - "category": "photography", - "parent_author": "vi1son", - "parent_permlink": "afghan-war-1985", - "title": "", - "body": "Acquire new knowledge whilst thinking over the old, and you may become a teacher of others.", - "json_metadata": "", - "last_update": "2016-07-30T13:55:45", - "created": "2016-07-30T13:55:45", - "active": "2016-07-30T13:55:45", - "last_payout": "2016-08-30T01:59:27", - "depth": 1, - "children": 0, - "net_rshares": -776149630, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "vi1son", - "root_permlink": "afghan-war-1985", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 353971, - "author": "jarvis", - "permlink": "afghan-war-1985", - "category": "photography", - "parent_author": "vi1son", - "parent_permlink": "afghan-war-1985", - "title": "", - "body": "Have you ever met one of your HEROES?", - "json_metadata": "", - "last_update": "2016-07-30T13:55:45", - "created": "2016-07-30T13:55:45", - "active": "2016-07-30T13:55:45", - "last_payout": "2016-08-30T01:59:27", - "depth": 1, - "children": 0, - "net_rshares": -21958841303, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "vi1son", - "root_permlink": "afghan-war-1985", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 416566, - "author": "condra", - "permlink": "re-vi1son-bug-with-comments-20160802t201348625z", - "category": "steemit", - "parent_author": "vi1son", - "parent_permlink": "bug-with-comments", - "title": "", - "body": "Yeahp. I'm sure they will fix it soon.", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_update": "2016-08-02T20:13:33", - "created": "2016-08-02T20:13:33", - "active": "2016-08-02T20:13:33", - "last_payout": "2016-09-02T08:18:00", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "vi1son", - "root_permlink": "bug-with-comments", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 416610, - "author": "cortegam", - "permlink": "re-vi1son-bug-with-comments-20160802t201629448z", - "category": "steemit", - "parent_author": "vi1son", - "parent_permlink": "bug-with-comments", - "title": "", - "body": "I have the same issue, but I thought that it was my browser lol", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_update": "2016-08-02T20:16:27", - "created": "2016-08-02T20:16:27", - "active": "2016-08-02T20:16:27", - "last_payout": "2016-09-02T08:18:00", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "vi1son", - "root_permlink": "bug-with-comments", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 260239, - "author": "wang", - "permlink": "re-vi1son-challenge-the-importance-of-setting-goals-20160725t223254293z", - "category": "introduceyourself", - "parent_author": "vi1son", - "parent_permlink": "challenge-the-importance-of-setting-goals", - "title": "", - "body": "Great to have you with us!\n\nHere are some tips if you're not aware of already:\n* Secure your account: https://steemit.com/steemit-guides/@pfunk/your-steem-account-is-worth-money-how-to-secure-it-with-a-new-owner-key-to-keep-it-yours-forever\n* Verify your account and build your reputation: https://steemit.com/steem/@tuck-fheman/verified-accounts--reputation-system\n* Contribute with your own contents: https://steemit.com/steem/@grittenald/copy-paste-steal-cite-your-sources, and https://steemit.com/steemit/@pfunk/lets-discuss-verification-of-user-accounts-posting-previous-work-to-prevent-impersonation\n* Properly tagging your posts, especially when your content is `#NSFW` or for `#test` only\n* Know how Steemit works: https://steemit.com/steemit/@donkeypong/still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy ", - "json_metadata": "{\"tags\":[]}", - "last_update": "2016-07-25T22:32:54", - "created": "2016-07-25T22:32:54", - "active": "2016-07-25T22:32:54", - "last_payout": "2016-08-26T00:12:39", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "vi1son", - "root_permlink": "challenge-the-importance-of-setting-goals", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 260253, - "author": "sharon", - "permlink": "challenge-the-importance-of-setting-goals", - "category": "introduceyourself", - "parent_author": "vi1son", - "parent_permlink": "challenge-the-importance-of-setting-goals", - "title": "", - "body": "Welcome to the community!", - "json_metadata": "", - "last_update": "2016-07-25T22:33:24", - "created": "2016-07-25T22:33:24", - "active": "2016-07-25T22:33:24", - "last_payout": "2016-08-26T00:12:39", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "vi1son", - "root_permlink": "challenge-the-importance-of-setting-goals", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-07-29T15:23:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "msjennifer", + "author_rewards": 0, + "beneficiaries": [], + "body": "Excellent post!", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-29T15:17:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 336501, + "json_metadata": "", + "last_payout": "2016-08-29T05:00:42", + "last_update": "2016-07-29T15:23:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -55205310, + "net_votes": -4, + "parent_author": "vi1son", + "parent_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "percent_hbd": 10000, + "permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-29T16:58:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "corax", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://now-here-this.timeout.com/wp-content/uploads/2013/02/url-19.gif Oh my goodness! Impressive article dude! Thanks, However I am encountering issues with your RSS. I dont understand why I cannot join it. Is there anybody else having the same RSS issues? Anyone that knows the solution will you kindly respond? Thanks", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-29T15:23:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 336600, + "json_metadata": "", + "last_payout": "2016-08-29T05:00:42", + "last_update": "2016-07-29T15:23:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "vi1son", + "parent_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "percent_hbd": 10000, + "permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-03T08:52:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "yandra86", + "author_rewards": 0, + "beneficiaries": [], + "body": "Upvoted", + "cashout_time": "1969-12-31T23:59:59", + "category": "ru", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-03T08:52:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 425216, + "json_metadata": "", + "last_payout": "2016-09-02T20:52:12", + "last_update": "2016-08-03T08:52:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -10906911, + "net_votes": -1, + "parent_author": "vi1son", + "parent_permlink": "aferium", + "percent_hbd": 10000, + "permlink": "aferium", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "aferium", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T02:48:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "itay", + "author_rewards": 0, + "beneficiaries": [], + "body": "I upvoted You", + "cashout_time": "1969-12-31T23:59:59", + "category": "ru", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T02:48:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 773677, + "json_metadata": "{}", + "last_payout": "2016-09-02T20:52:12", + "last_update": "2016-08-28T02:48:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "vi1son", + "parent_permlink": "aferium", + "percent_hbd": 10000, + "permlink": "re-aferium", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "aferium", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T13:55:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "confucius", + "author_rewards": 0, + "beneficiaries": [], + "body": "Acquire new knowledge whilst thinking over the old, and you may become a teacher of others.", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-30T13:55:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 353970, + "json_metadata": "", + "last_payout": "2016-08-30T01:59:27", + "last_update": "2016-07-30T13:55:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -776149630, + "net_votes": 2, + "parent_author": "vi1son", + "parent_permlink": "afghan-war-1985", + "percent_hbd": 10000, + "permlink": "afghan-war-1985", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "afghan-war-1985", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T13:55:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "jarvis", + "author_rewards": 0, + "beneficiaries": [], + "body": "Have you ever met one of your HEROES?", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-30T13:55:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 353971, + "json_metadata": "", + "last_payout": "2016-08-30T01:59:27", + "last_update": "2016-07-30T13:55:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -21958841303, + "net_votes": 2, + "parent_author": "vi1son", + "parent_permlink": "afghan-war-1985", + "percent_hbd": 10000, + "permlink": "afghan-war-1985", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "afghan-war-1985", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-02T20:13:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "condra", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yeahp. I'm sure they will fix it soon.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-02T20:13:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 416566, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-09-02T08:18:00", + "last_update": "2016-08-02T20:13:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "vi1son", + "parent_permlink": "bug-with-comments", + "percent_hbd": 10000, + "permlink": "re-vi1son-bug-with-comments-20160802t201348625z", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "bug-with-comments", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-02T20:16:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "cortegam", + "author_rewards": 0, + "beneficiaries": [], + "body": "I have the same issue, but I thought that it was my browser lol", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-02T20:16:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 416610, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-09-02T08:18:00", + "last_update": "2016-08-02T20:16:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "vi1son", + "parent_permlink": "bug-with-comments", + "percent_hbd": 10000, + "permlink": "re-vi1son-bug-with-comments-20160802t201629448z", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "bug-with-comments", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-25T22:32:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "wang", + "author_rewards": 0, + "beneficiaries": [], + "body": "Great to have you with us!\n\nHere are some tips if you're not aware of already:\n* Secure your account: https://steemit.com/steemit-guides/@pfunk/your-steem-account-is-worth-money-how-to-secure-it-with-a-new-owner-key-to-keep-it-yours-forever\n* Verify your account and build your reputation: https://steemit.com/steem/@tuck-fheman/verified-accounts--reputation-system\n* Contribute with your own contents: https://steemit.com/steem/@grittenald/copy-paste-steal-cite-your-sources, and https://steemit.com/steemit/@pfunk/lets-discuss-verification-of-user-accounts-posting-previous-work-to-prevent-impersonation\n* Properly tagging your posts, especially when your content is `#NSFW` or for `#test` only\n* Know how Steemit works: https://steemit.com/steemit/@donkeypong/still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy ", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-25T22:32:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 260239, + "json_metadata": "{\"tags\":[]}", + "last_payout": "2016-08-26T00:12:39", + "last_update": "2016-07-25T22:32:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "vi1son", + "parent_permlink": "challenge-the-importance-of-setting-goals", + "percent_hbd": 10000, + "permlink": "re-vi1son-challenge-the-importance-of-setting-goals-20160725t223254293z", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "challenge-the-importance-of-setting-goals", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-25T22:33:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "sharon", + "author_rewards": 0, + "beneficiaries": [], + "body": "Welcome to the community!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-25T22:33:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 260253, + "json_metadata": "", + "last_payout": "2016-08-26T00:12:39", + "last_update": "2016-07-25T22:33:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "vi1son", + "parent_permlink": "challenge-the-importance-of-setting-goals", + "percent_hbd": 10000, + "permlink": "challenge-the-importance-of-setting-goals", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "challenge-the-importance-of-setting-goals", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json index f3b6847c..1cdc4356 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 780584, - "author": "givemeyoursteem", - "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", - "category": "foodchallenge", - "parent_author": "knozaki2015", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", - "title": "", - "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", - "last_update": "2016-08-28T18:12:39", - "created": "2016-08-28T18:12:39", - "active": "2016-08-28T18:12:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 692581, - "author": "gonzo", - "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-interview-with-marcus-schmitt-ceo-of-copytrack-20160821t083448196z", - "category": "interview", - "parent_author": "knozaki2015", - "parent_permlink": "re-gonzo-re-knozaki2015-interview-with-marcus-schmitt-ceo-of-copytrack-20160821t083148078z", - "title": "", - "body": "You won't get much out of me, I only hooked for a few months, but maybe if you give me some time I can come up with some better stories :)", - "json_metadata": "{\"tags\":[\"interview\"]}", - "last_update": "2016-08-21T08:36:18", - "created": "2016-08-21T08:36:18", - "active": "2016-08-21T08:47:24", - "last_payout": "2016-08-21T21:30:09", - "depth": 3, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "knozaki2015", - "root_permlink": "interview-with-marcus-schmitt-ceo-of-copytrack", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 596256, - "author": "gonzo", - "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-re-knozaki2015-i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne-20160814t085544420z", - "category": "food", - "parent_author": "knozaki2015", - "parent_permlink": "re-gonzo-re-knozaki2015-re-knozaki2015-i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne-20160814t085434286z", - "title": "", - "body": "You're welcome, it took me forever to learn how to do that.", - "json_metadata": "{\"tags\":[\"food\"]}", - "last_update": "2016-08-14T08:55:48", - "created": "2016-08-14T08:55:48", - "active": "2016-08-14T09:03:18", - "last_payout": "2016-09-14T00:38:18", - "depth": 4, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "knozaki2015", - "root_permlink": "i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 580231, - "author": "gonzo", - "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive-20160813t010923910z", - "category": "food", - "parent_author": "knozaki2015", - "parent_permlink": "re-gonzo-re-knozaki2015-the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive-20160813t010757520z", - "title": "", - "body": "What is your favorite Japanese food?", - "json_metadata": "{\"tags\":[\"food\"]}", - "last_update": "2016-08-13T01:09:27", - "created": "2016-08-13T01:09:27", - "active": "2016-08-13T01:32:00", - "last_payout": "2016-09-12T13:37:06", - "depth": 3, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "knozaki2015", - "root_permlink": "the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 897353, - "author": "gringalicious", - "permlink": "re-knozaki2015-re-gringalicious-re-knozaki2015-i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami-20160908t224916649z", - "category": "food", - "parent_author": "knozaki2015", - "parent_permlink": "re-gringalicious-re-knozaki2015-i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami-20160908t223849052z", - "title": "", - "body": "I'll be there", - "json_metadata": "{\"tags\":[\"food\"]}", - "last_update": "2016-09-08T22:49:18", - "created": "2016-09-08T22:49:18", - "active": "2016-09-08T22:49:18", - "last_payout": "2016-09-09T23:09:36", - "depth": 3, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "knozaki2015", - "root_permlink": "i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 641066, - "author": "hagie", - "permlink": "re-knozaki2015-re-hagie-re-knozaki2015-paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better-20160817t130426895z", - "category": "giveback", - "parent_author": "knozaki2015", - "parent_permlink": "re-hagie-re-knozaki2015-paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better-20160817t102434089z", - "title": "", - "body": "Ok .. das ist echt super - ich hatte zwar nicht so viel glück mit meinen Posts wie du aber ich werde ab jetzt 10% monatlich meiner SMD an dich senden zum verteilen. Danke dafür. Ich würde mich auch sehr über jeden approve als witness freuen - da mit die technische Seite einfach eher liegt als das schreiben von Posts !! https://steemit.com/deutsch/@hagie/witness-anmeldung-fuer-hagie", - "json_metadata": "{\"tags\":[\"giveback\"],\"links\":[\"https://steemit.com/deutsch/@hagie/witness-anmeldung-fuer-hagie\"]}", - "last_update": "2016-08-17T13:04:24", - "created": "2016-08-17T13:04:24", - "active": "2016-08-18T21:47:51", - "last_payout": "2016-09-05T22:26:30", - "depth": 3, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "knozaki2015", - "root_permlink": "paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 680888, - "author": "handmade", - "permlink": "re-knozaki2015-re-handmade-this-is-slovenia-2-million-people-53-dialects-and-much-more-20160820t075942095z", - "category": "travel", - "parent_author": "knozaki2015", - "parent_permlink": "re-handmade-this-is-slovenia-2-million-people-53-dialects-and-much-more-20160819t223531716z", - "title": "", - "body": "Many people just go around and here is so much to see and do. Follow the series and you'll buy the ticket very soon. Just let me know when you are coming because here the beer is also nice :)", - "json_metadata": "{\"tags\":[\"travel\"]}", - "last_update": "2016-08-20T07:59:57", - "created": "2016-08-20T07:59:57", - "active": "2016-08-20T08:09:54", - "last_payout": "2016-08-20T23:50:45", - "depth": 2, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "handmade", - "root_permlink": "this-is-slovenia-2-million-people-53-dialects-and-much-more", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 513207, - "author": "herzmeister", - "permlink": "re-knozaki2015-re-herzmeister-marathonissi-turtle-island-laganas-greece-20160808t203030390z", - "category": "wallpaper", - "parent_author": "knozaki2015", - "parent_permlink": "re-herzmeister-marathonissi-turtle-island-laganas-greece-20160808t132357110z", - "title": "", - "body": "thanks, I hope there will soon be proper support and functionality for viewing followers and their posts and similar things.", - "json_metadata": "{\"tags\":[\"wallpaper\"]}", - "last_update": "2016-08-08T20:29:54", - "created": "2016-08-08T20:29:54", - "active": "2016-08-08T20:29:54", - "last_payout": "2016-09-08T03:01:09", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "herzmeister", - "root_permlink": "marathonissi-turtle-island-laganas-greece", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 349149, - "author": "hhcwebmaster", - "permlink": "re-knozaki2015-re-hhcwebmaster-greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself-20160730t071816576z", - "category": "introduceyourself", - "parent_author": "knozaki2015", - "parent_permlink": "re-hhcwebmaster-greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself-20160730t071432435z", - "title": "", - "body": "Hey thank you! took effort to put it together this way into sections.. my mind is everywhere!! haha... & It's quite simple .. I am using headers .. from h1 to h3 .... Use brackets.. <---> [h1] TITLE HEADLINE [/h1]", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-07-30T07:18:21", - "created": "2016-07-30T07:18:21", - "active": "2016-07-30T07:18:21", - "last_payout": "2016-08-29T20:08:06", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "hhcwebmaster", - "root_permlink": "greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 660065, - "author": "hisnameisolllie", - "permlink": "re-knozaki2015-re-hisnameisolllie-one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons-20160818t192942365z", - "category": "steemit-future", - "parent_author": "knozaki2015", - "parent_permlink": "re-hisnameisolllie-one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons-20160818t192526842z", - "title": "", - "body": "You Edited ;)\n\nI agree.\n\nI understand that (promotion of earnings), and I've certainly been guilty of that in the past. I think that once we've 'been around the block' a few times on Steemit, I believe we need to start being a little more realistic with our pitches. \n\nAs the user base increases, the odd's of hitting a $5,000 post diminish rapidly. Steemit has merits in it's own rights, but not too many people are talking about them...", - "json_metadata": "{\"tags\":[\"steemit-future\"]}", - "last_update": "2016-08-18T19:35:03", - "created": "2016-08-18T19:29:42", - "active": "2016-08-18T20:37:06", - "last_payout": "2016-08-19T22:34:03", - "depth": 2, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "hisnameisolllie", - "root_permlink": "one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-28T18:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T18:12:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1030162, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:12:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-21T08:47:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gonzo", + "author_rewards": 0, + "beneficiaries": [], + "body": "You won't get much out of me, I only hooked for a few months, but maybe if you give me some time I can come up with some better stories :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "interview", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-21T08:36:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 917604, + "json_metadata": "{\"tags\":[\"interview\"]}", + "last_payout": "2016-08-21T21:30:09", + "last_update": "2016-08-21T08:36:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-gonzo-re-knozaki2015-interview-with-marcus-schmitt-ceo-of-copytrack-20160821t083148078z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-interview-with-marcus-schmitt-ceo-of-copytrack-20160821t083448196z", + "reward_weight": 10000, + "root_author": "knozaki2015", + "root_permlink": "interview-with-marcus-schmitt-ceo-of-copytrack", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T09:03:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gonzo", + "author_rewards": 0, + "beneficiaries": [], + "body": "You're welcome, it took me forever to learn how to do that.", + "cashout_time": "1969-12-31T23:59:59", + "category": "food", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-14T08:55:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 4, + "id": 796088, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "2016-09-14T00:38:18", + "last_update": "2016-08-14T08:55:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-gonzo-re-knozaki2015-re-knozaki2015-i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne-20160814t085434286z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-re-knozaki2015-i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne-20160814t085544420z", + "reward_weight": 10000, + "root_author": "knozaki2015", + "root_permlink": "i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-13T01:32:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gonzo", + "author_rewards": 0, + "beneficiaries": [], + "body": "What is your favorite Japanese food?", + "cashout_time": "1969-12-31T23:59:59", + "category": "food", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-13T01:09:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 775640, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "2016-09-12T13:37:06", + "last_update": "2016-08-13T01:09:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-gonzo-re-knozaki2015-the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive-20160813t010757520z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive-20160813t010923910z", + "reward_weight": 10000, + "root_author": "knozaki2015", + "root_permlink": "the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-08T22:49:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gringalicious", + "author_rewards": 0, + "beneficiaries": [], + "body": "I'll be there", + "cashout_time": "1969-12-31T23:59:59", + "category": "food", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-08T22:49:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 1178172, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "2016-09-09T23:09:36", + "last_update": "2016-09-08T22:49:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-gringalicious-re-knozaki2015-i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami-20160908t223849052z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-gringalicious-re-knozaki2015-i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami-20160908t224916649z", + "reward_weight": 10000, + "root_author": "knozaki2015", + "root_permlink": "i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-18T21:47:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hagie", + "author_rewards": 0, + "beneficiaries": [], + "body": "Ok .. das ist echt super - ich hatte zwar nicht so viel gl\u00fcck mit meinen Posts wie du aber ich werde ab jetzt 10% monatlich meiner SMD an dich senden zum verteilen. Danke daf\u00fcr. Ich w\u00fcrde mich auch sehr \u00fcber jeden approve als witness freuen - da mit die technische Seite einfach eher liegt als das schreiben von Posts !! https://steemit.com/deutsch/@hagie/witness-anmeldung-fuer-hagie", + "cashout_time": "1969-12-31T23:59:59", + "category": "giveback", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-17T13:04:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 852094, + "json_metadata": "{\"tags\":[\"giveback\"],\"links\":[\"https://steemit.com/deutsch/@hagie/witness-anmeldung-fuer-hagie\"]}", + "last_payout": "2016-09-05T22:26:30", + "last_update": "2016-08-17T13:04:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-hagie-re-knozaki2015-paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better-20160817t102434089z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-hagie-re-knozaki2015-paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better-20160817t130426895z", + "reward_weight": 10000, + "root_author": "knozaki2015", + "root_permlink": "paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-20T08:09:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "handmade", + "author_rewards": 0, + "beneficiaries": [], + "body": "Many people just go around and here is so much to see and do. Follow the series and you'll buy the ticket very soon. Just let me know when you are coming because here the beer is also nice :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "travel", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-20T07:59:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 902535, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "2016-08-20T23:50:45", + "last_update": "2016-08-20T07:59:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-handmade-this-is-slovenia-2-million-people-53-dialects-and-much-more-20160819t223531716z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-handmade-this-is-slovenia-2-million-people-53-dialects-and-much-more-20160820t075942095z", + "reward_weight": 10000, + "root_author": "handmade", + "root_permlink": "this-is-slovenia-2-million-people-53-dialects-and-much-more", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-08T20:29:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "herzmeister", + "author_rewards": 0, + "beneficiaries": [], + "body": "thanks, I hope there will soon be proper support and functionality for viewing followers and their posts and similar things.", + "cashout_time": "1969-12-31T23:59:59", + "category": "wallpaper", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-08T20:29:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 689817, + "json_metadata": "{\"tags\":[\"wallpaper\"]}", + "last_payout": "2016-09-08T03:01:09", + "last_update": "2016-08-08T20:29:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-herzmeister-marathonissi-turtle-island-laganas-greece-20160808t132357110z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-herzmeister-marathonissi-turtle-island-laganas-greece-20160808t203030390z", + "reward_weight": 10000, + "root_author": "herzmeister", + "root_permlink": "marathonissi-turtle-island-laganas-greece", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T07:18:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hhcwebmaster", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hey thank you! took effort to put it together this way into sections.. my mind is everywhere!! haha... & It's quite simple .. I am using headers .. from h1 to h3 .... Use brackets.. <---> [h1] TITLE HEADLINE [/h1]", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-30T07:18:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 482962, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-29T20:08:06", + "last_update": "2016-07-30T07:18:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "knozaki2015", + "parent_permlink": "re-hhcwebmaster-greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself-20160730t071432435z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-hhcwebmaster-greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself-20160730t071816576z", + "reward_weight": 10000, + "root_author": "hhcwebmaster", + "root_permlink": "greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-18T20:37:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hisnameisolllie", + "author_rewards": 0, + "beneficiaries": [], + "body": "You Edited ;)\n\nI agree.\n\nI understand that (promotion of earnings), and I've certainly been guilty of that in the past. I think that once we've 'been around the block' a few times on Steemit, I believe we need to start being a little more realistic with our pitches. \n\nAs the user base increases, the odd's of hitting a $5,000 post diminish rapidly. Steemit has merits in it's own rights, but not too many people are talking about them...", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit-future", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-18T19:29:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 876248, + "json_metadata": "{\"tags\":[\"steemit-future\"]}", + "last_payout": "2016-08-19T22:34:03", + "last_update": "2016-08-18T19:35:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-hisnameisolllie-one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons-20160818t192526842z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-hisnameisolllie-one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons-20160818t192942365z", + "reward_weight": 10000, + "root_author": "hisnameisolllie", + "root_permlink": "one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json index 4885a9fb..bc3ec985 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 630322, - "author": "gtg", - "permlink": "heavy-duty-witness-node-infrastructure", - "category": "witness-category", - "parent_author": "", - "parent_permlink": "witness-category", - "title": "Heavy duty witness node infrastructure", - "body": "As you know, witness nodes are an essential part of the STEEM universe.\n\nIf I have a witness node with as much as (or as little as) 3% of witness approval, I can choose the right time to shut it down, listen to my favourite music album, walk my cat, and then start it up again, most probably without missing a block.\nA full-time witness, or one of the top19 witnesses, needs to produce blocks 1600 times more frequently.\nMaintaining such a server in the long run is not an easy task.\n\nWitnesses are vulnerable to DDoS attacks. An attacker who knows the network location of your witness node can saturate your uplink to a level that makes you unable to produce blocks on time. Effectively, this means **voting the witness out using a network-level attack**. Finding the IP address of your witness node is easier than you might think. Even if you follow the guidelines for setting up your public seed node on a different machine than the one you used to get your witness running, your witness still needs to connect to other nodes in the network.\nSo what does this mean? Take a look at: http://seeds.quisquis.de/steem.html\n(service provided by cyrano.witness)\n\nDoes any of these IP addresses look familiar?\nThe attacker still doesn't know which of them is yours, right?\n\nAn attack that makes the target IP unavailable for 3 seconds? Not exactly a difficult thing to do, right? So the attacker needs to make a guess by choosing from a set of suspected IP addresses he has obtained. Guessing doesn't cost him much. Neither does a high volume, short period DDoS attack. After that, he can see that your `total_missed` count increases, and he knows he guessed correctly. And then you are out.\n\n![witness](https://grey.house/img/witness2.jpg)\n\n## A concept of infrastructure: ##\n\n2 witness nodes (primary and backup)\n4 dedicated seed nodes\n\nOne witness node has your current signing key and does its job. The other is for failover, backup purposes. For example, whenever you need to upgrade your witness binary, you do that on the backup witness node, then change your signing key, so the backup node and the primary node switch their roles. \n**(Never leave your current signing key on two nodes at the same time!)**\n\nThese 4 seed nodes mentioned here only work on behalf of your witness i.e. they don’t provide seed service on public network interfaces. \n_Your public seed node is not within the scope of this document._\n\nYour witness node connects **ONLY** to your seed nodes using VLAN or another private, low latency network solution of your choice. All other incoming/outgoing connections should be blocked except for the secure shell, preferably limited to access only from your IPs.\n\nEach seed node should be in a separate datacenter, ideally in a different part of the world, never in the same location as any of your (primary/backup) witness nodes. The purpose is to minimize the effects of a successful DDoS attack.\n\n_Please note that setting up all seed nodes in a single data center won’t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway._\n\n```\n +---+\n + +----+ | |\n | | |<-->| B |\n +--+ S1 |<-->| i |\n | | |<-->| g |\n | +----+ | |\n+------+ | | B |\n| +-+ +----+ | a |\n| W(p) | | | |<-->| d |\n| | +--+ S2 |<-->| |\n+------+ | | |<-->| U |\n | +----+ | g |\n VLAN| | l |\n | +----+ | y |\n+------+ | | |<-->| |\n| | +--+ S3 |<-->| I |\n| W(b) | | | |<-->| n |\n| +-+ +----+ | t |\n+------+ | | e |\n | +----+ | r |\n | | |<-->| n |\n +--+ S4 |<-->| e |\n | | |<-->| t |\n + +----+ | |\n +---+\n```\n```\nW(p) - primary witness\nW(b) - backup witness\nS1-4 - seed nodes\n```\nOf course, you need to keep your seed nodes (at least one of them) running all the time, otherwise your witness will not be able to sync the blockchain.\nBut if you do the math, you will see that the odds that all your seed nodes stop working at the same time are much lower than the chances that this happens to your witness node. \n\n\nIf one of your seed nodes falls victim to a DDoS attack, you can, depending on the features offered by your infrastructure provider:\n- do nothing (until most of them are targeted at the same time)\n- change its external interface IP address, routing the old one to a black hole\n- set up a new, additional, temporary seed node somewhere else\n- replace that seed node with a new one in another location\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", - "json_metadata": "{\"tags\":[\"witness-category\",\"security\",\"steem\",\"steemit\"],\"links\":[\"https://steemit.com/witness-category/@gtg/witness-gtg\"]}", - "last_update": "2016-08-16T18:11:03", - "created": "2016-08-16T18:11:03", - "active": "2016-08-18T03:32:12", - "last_payout": "2016-08-17T20:13:00", - "depth": 0, - "children": 14, - "net_rshares": "920389243926", - "abs_rshares": "920389243926", - "vote_rshares": "920389243926", - "children_abs_rshares": "1000824866058", - "cashout_time": "2016-09-16T20:13:00", - "max_cashout_time": "2016-08-31T20:14:30", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "745053", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "243149", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 501045, - "net_votes": 177, - "root_author": "gtg", - "root_permlink": "heavy-duty-witness-node-infrastructure", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 36906, - "author": "gtg", - "permlink": "hello-world", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "Hello, World!", - "body": "I'm Gandalf.\nThat's not my real name, but even my mom saved my number as ***Gandalf*** in her phone contact list.\nThat counts, right?\nI'm an IT Wizard, system admin, happily married, owner of a cat.\nOwned by a cat.\n\n![Nyunya](https://grey.house/img/niunia.jpg)\n\n**Nyunya** *(The Cat)* wants to watch everything I do, that's just her way of lending a helping paw. I’m not sure if she is so fascinated by what I do or she wants to make sure I do it right.\n\nWhy am I here? What is my motivation?\nNot much different from that guiding my cat:\nCuriosity and to be a witness (node?) of what is emerging here.\n\nMay the STEEM be with you!", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"cats\"],\"image\":[\"https://grey.house/img/niunia.jpg\"]}", - "last_update": "2016-07-10T12:39:42", - "created": "2016-07-03T16:35:03", - "active": "2016-07-10T12:39:42", - "last_payout": "2016-08-13T21:04:45", - "depth": 0, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "254288", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "16244", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1135218, - "net_votes": 44, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 693873, - "author": "gtg", - "permlink": "missing-rewards-while-mining", - "category": "mining", - "parent_author": "", - "parent_permlink": "mining", - "title": "Missing rewards while mining - common mistake with keys", - "body": "Suppose your miner node found `pow2`, but your `total_missed` count increased, instead of generating a block.\n\nIf this happens, double check your keys used in the `config.ini` file.\n\n```\nwitness = \"minerwitness\"\n\nminer = [\"minerwitness\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner1\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner2\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner3\",\"WIF_ACTIVE_PRIVATE_KEY\"]\n\nmining-threads = 4\n\nprivate-key = WIF_SIGNING_PRIVATE_KEY\n```\n\nUsing keys without paying attention to their roles is a common mistake. @artakan [found out](https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account \"@artakan - Do not use your steemit.com account for mining\")\nthat issues with missing blocks tend to happen when you are using an account that was created through [steemit.com](https://steemit.com/ \"Blogging is the new mining\") but seems to work for the mined account.\n\nSo erroneous configuration might work for your mined account by pure coincidence. In other words, the same key has been defined for all roles, so: `WIF_ACTIVE_PRIVATE_KEY` is exactly the same as `WIF_SIGNING_PRIVATE_KEY`.\n\n![witness](https://grey.house/img/witness2.jpg)\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", - "json_metadata": "{\"tags\":[\"mining\",\"steem\",\"steem-mining\"],\"users\":[\"artakan\"],\"links\":[\"https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account\"]}", - "last_update": "2016-08-21T13:02:30", - "created": "2016-08-21T12:29:18", - "active": "2016-08-27T18:39:45", - "last_payout": "2016-08-22T13:01:45", - "depth": 0, - "children": 6, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-21T13:01:45", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "353", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "79", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 241, - "net_votes": 26, - "root_author": "gtg", - "root_permlink": "missing-rewards-while-mining", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 817048, - "author": "gtg", - "permlink": "re-amcq-hello-steemit-i-m-alex-a-new-member-of-the-steemit-team-20160831t205719836z", - "category": "introduceyourself", - "parent_author": "amcq", - "parent_permlink": "hello-steemit-i-m-alex-a-new-member-of-the-steemit-team", - "title": "", - "body": "Hello Alex, welcome to steemit! :-)", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-08-31T20:57:24", - "created": "2016-08-31T20:57:24", - "active": "2016-08-31T20:57:24", - "last_payout": "2016-09-01T19:22:30", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "amcq", - "root_permlink": "hello-steemit-i-m-alex-a-new-member-of-the-steemit-team", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 758424, - "author": "gtg", - "permlink": "re-ania-hello-world-20160826t185305711z", - "category": "introduceyourself", - "parent_author": "ania", - "parent_permlink": "hello-world", - "title": "", - "body": "Hello Ania, welcome to steemit! :-)", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-08-26T18:53:09", - "created": "2016-08-26T18:53:09", - "active": "2016-08-26T21:16:45", - "last_payout": "2016-08-27T21:18:18", - "depth": 1, - "children": 1, - "net_rshares": 1067633479, - "abs_rshares": 1067633479, - "vote_rshares": 1067633479, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "ania", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 958255, - "author": "gtg", - "permlink": "re-arcange-re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t141107191z", - "category": "stats", - "parent_author": "arcange", - "parent_permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", - "title": "", - "body": "True, as well as encouraging others to try to do the same :-)", - "json_metadata": "{\"tags\":[\"stats\"]}", - "last_update": "2016-09-15T14:11:09", - "created": "2016-09-15T14:11:09", - "active": "2016-09-15T14:11:09", - "last_payout": "1970-01-01T00:00:00", - "depth": 5, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "arcange", - "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 957804, - "author": "gtg", - "permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", - "category": "stats", - "parent_author": "arcange", - "parent_permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", - "title": "", - "body": "I noticed that just after writing a comment (when went back to continue reading ... ) ___Thank you___ for pointing out. :-)", - "json_metadata": "{\"tags\":[\"stats\"]}", - "last_update": "2016-09-15T13:19:24", - "created": "2016-09-15T13:19:24", - "active": "2016-09-15T14:11:09", - "last_payout": "1970-01-01T00:00:00", - "depth": 3, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "arcange", - "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 957696, - "author": "gtg", - "permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", - "category": "stats", - "parent_author": "arcange", - "parent_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", - "title": "", - "body": "@arcange, please do not underestimate ___\"Thank you\"___ while searching for ___\"Thanks\"___ ;-)\n\nThank you,\n[Gandalf](https://steemit.com/@gtg) (\"gtg\")", - "json_metadata": "{\"tags\":[\"stats\"],\"users\":[\"arcange\"],\"links\":[\"https://steemit.com/@gtg\"]}", - "last_update": "2016-09-15T13:08:12", - "created": "2016-09-15T13:04:12", - "active": "2016-09-15T14:11:09", - "last_payout": "1970-01-01T00:00:00", - "depth": 1, - "children": 4, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "arcange", - "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 693917, - "author": "gtg", - "permlink": "re-artakan-important-info-for-steem-miner-do-not-use-your-steemit-com-account-20160821t123356072z", - "category": "mining", - "parent_author": "artakan", - "parent_permlink": "important-info-for-steem-miner-do-not-use-your-steemit-com-account", - "title": "", - "body": "There's nothing wrong with mining using your _\"steemit.com account\"_. It's **all about your keys** and using **proper miner configuration**. I tried to explain common mistake https://steemit.com/mining/@gtg/missing-rewards-while-mining", - "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https://steemit.com/mining/@gtg/missing-rewards-while-mining\"]}", - "last_update": "2016-08-21T12:33:57", - "created": "2016-08-21T12:33:57", - "active": "2016-08-21T12:33:57", - "last_payout": "2016-08-22T10:51:00", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "39", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 27, - "net_votes": 3, - "root_author": "artakan", - "root_permlink": "important-info-for-steem-miner-do-not-use-your-steemit-com-account", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 792758, - "author": "gtg", - "permlink": "re-artywah-self-proclaimed-geek-and-digital-ancient-in-melbourne-australia-20160829t191915549z", - "category": "introduceyourself", - "parent_author": "artywah", - "parent_permlink": "self-proclaimed-geek-and-digital-ancient-in-melbourne-australia", - "title": "", - "body": "Hello @artywah, welcome to steemit! :-)\nHint: Adding a picture to your post could make it more appealing.\n( I used my cat for that ;-) )", - "json_metadata": "{\"tags\":[\"introduceyourself\"],\"users\":[\"artywah\"]}", - "last_update": "2016-08-29T19:19:18", - "created": "2016-08-29T19:19:18", - "active": "2016-08-29T19:19:18", - "last_payout": "2016-08-30T18:28:06", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "artywah", - "root_permlink": "self-proclaimed-geek-and-digital-ancient-in-melbourne-australia", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": "920389243926", + "active": "2016-08-18T03:32:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 501045, + "beneficiaries": [], + "body": "As you know, witness nodes are an essential part of the STEEM universe.\n\nIf I have a witness node with as much as (or as little as) 3% of witness approval, I can choose the right time to shut it down, listen to my favourite music album, walk my cat, and then start it up again, most probably without missing a block.\nA full-time witness, or one of the top19 witnesses, needs to produce blocks 1600 times more frequently.\nMaintaining such a server in the long run is not an easy task.\n\nWitnesses are vulnerable to DDoS attacks. An attacker who knows the network location of your witness node can saturate your uplink to a level that makes you unable to produce blocks on time. Effectively, this means **voting the witness out using a network-level attack**. Finding the IP address of your witness node is easier than you might think. Even if you follow the guidelines for setting up your public seed node on a different machine than the one you used to get your witness running, your witness still needs to connect to other nodes in the network.\nSo what does this mean? Take a look at: http://seeds.quisquis.de/steem.html\n(service provided by cyrano.witness)\n\nDoes any of these IP addresses look familiar?\nThe attacker still doesn't know which of them is yours, right?\n\nAn attack that makes the target IP unavailable for 3 seconds? Not exactly a difficult thing to do, right? So the attacker needs to make a guess by choosing from a set of suspected IP addresses he has obtained. Guessing doesn't cost him much. Neither does a high volume, short period DDoS attack. After that, he can see that your `total_missed` count increases, and he knows he guessed correctly. And then you are out.\n\n![witness](https://grey.house/img/witness2.jpg)\n\n## A concept of infrastructure: ##\n\n2 witness nodes (primary and backup)\n4 dedicated seed nodes\n\nOne witness node has your current signing key and does its job. The other is for failover, backup purposes. For example, whenever you need to upgrade your witness binary, you do that on the backup witness node, then change your signing key, so the backup node and the primary node switch their roles. \n**(Never leave your current signing key on two nodes at the same time!)**\n\nThese 4 seed nodes mentioned here only work on behalf of your witness i.e. they don\u2019t provide seed service on public network interfaces. \n_Your public seed node is not within the scope of this document._\n\nYour witness node connects **ONLY** to your seed nodes using VLAN or another private, low latency network solution of your choice. All other incoming/outgoing connections should be blocked except for the secure shell, preferably limited to access only from your IPs.\n\nEach seed node should be in a separate datacenter, ideally in a different part of the world, never in the same location as any of your (primary/backup) witness nodes. The purpose is to minimize the effects of a successful DDoS attack.\n\n_Please note that setting up all seed nodes in a single data center won\u2019t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway._\n\n```\n +---+\n + +----+ | |\n | | |<-->| B |\n +--+ S1 |<-->| i |\n | | |<-->| g |\n | +----+ | |\n+------+ | | B |\n| +-+ +----+ | a |\n| W(p) | | | |<-->| d |\n| | +--+ S2 |<-->| |\n+------+ | | |<-->| U |\n | +----+ | g |\n VLAN| | l |\n | +----+ | y |\n+------+ | | |<-->| |\n| | +--+ S3 |<-->| I |\n| W(b) | | | |<-->| n |\n| +-+ +----+ | t |\n+------+ | | e |\n | +----+ | r |\n | | |<-->| n |\n +--+ S4 |<-->| e |\n | | |<-->| t |\n + +----+ | |\n +---+\n```\n```\nW(p) - primary witness\nW(b) - backup witness\nS1-4 - seed nodes\n```\nOf course, you need to keep your seed nodes (at least one of them) running all the time, otherwise your witness will not be able to sync the blockchain.\nBut if you do the math, you will see that the odds that all your seed nodes stop working at the same time are much lower than the chances that this happens to your witness node. \n\n\nIf one of your seed nodes falls victim to a DDoS attack, you can, depending on the features offered by your infrastructure provider:\n- do nothing (until most of them are targeted at the same time)\n- change its external interface IP address, routing the old one to a black hole\n- set up a new, additional, temporary seed node somewhere else\n- replace that seed node with a new one in another location\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 14, + "children_abs_rshares": "1000824866058", + "created": "2016-08-16T18:11:03", + "curator_payout_value": { + "amount": "243149", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 838525, + "json_metadata": "{\"tags\":[\"witness-category\",\"security\",\"steem\",\"steemit\"],\"links\":[\"https://steemit.com/witness-category/@gtg/witness-gtg\"]}", + "last_payout": "2016-08-17T20:13:00", + "last_update": "2016-08-16T18:11:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-08-31T20:14:30", + "net_rshares": "920389243926", + "net_votes": 177, + "parent_author": "", + "parent_permlink": "witness-category", + "percent_hbd": 10000, + "permlink": "heavy-duty-witness-node-infrastructure", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "heavy-duty-witness-node-infrastructure", + "title": "Heavy duty witness node infrastructure", + "total_payout_value": { + "amount": "745053", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "920389243926" + }, + { + "abs_rshares": 0, + "active": "2016-07-10T12:39:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 1135218, + "beneficiaries": [], + "body": "I'm Gandalf.\nThat's not my real name, but even my mom saved my number as ***Gandalf*** in her phone contact list.\nThat counts, right?\nI'm an IT Wizard, system admin, happily married, owner of a cat.\nOwned by a cat.\n\n![Nyunya](https://grey.house/img/niunia.jpg)\n\n**Nyunya** *(The Cat)* wants to watch everything I do, that's just her way of lending a helping paw. I\u2019m not sure if she is so fascinated by what I do or she wants to make sure I do it right.\n\nWhy am I here? What is my motivation?\nNot much different from that guiding my cat:\nCuriosity and to be a witness (node?) of what is emerging here.\n\nMay the STEEM be with you!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-07-03T16:35:03", + "curator_payout_value": { + "amount": "16244", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 51402, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"cats\"],\"image\":[\"https://grey.house/img/niunia.jpg\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-10T12:39:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "hello-world", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "Hello, World!", + "total_payout_value": { + "amount": "254288", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-27T18:39:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 241, + "beneficiaries": [], + "body": "Suppose your miner node found `pow2`, but your `total_missed` count increased, instead of generating a block.\n\nIf this happens, double check your keys used in the `config.ini` file.\n\n```\nwitness = \"minerwitness\"\n\nminer = [\"minerwitness\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner1\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner2\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner3\",\"WIF_ACTIVE_PRIVATE_KEY\"]\n\nmining-threads = 4\n\nprivate-key = WIF_SIGNING_PRIVATE_KEY\n```\n\nUsing keys without paying attention to their roles is a common mistake. @artakan [found out](https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account \"@artakan - Do not use your steemit.com account for mining\")\nthat issues with missing blocks tend to happen when you are using an account that was created through [steemit.com](https://steemit.com/ \"Blogging is the new mining\") but seems to work for the mined account.\n\nSo erroneous configuration might work for your mined account by pure coincidence. In other words, the same key has been defined for all roles, so: `WIF_ACTIVE_PRIVATE_KEY` is exactly the same as `WIF_SIGNING_PRIVATE_KEY`.\n\n![witness](https://grey.house/img/witness2.jpg)\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 6, + "children_abs_rshares": 0, + "created": "2016-08-21T12:29:18", + "curator_payout_value": { + "amount": "79", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 919309, + "json_metadata": "{\"tags\":[\"mining\",\"steem\",\"steem-mining\"],\"users\":[\"artakan\"],\"links\":[\"https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account\"]}", + "last_payout": "2016-08-22T13:01:45", + "last_update": "2016-08-21T13:02:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 26, + "parent_author": "", + "parent_permlink": "mining", + "percent_hbd": 10000, + "permlink": "missing-rewards-while-mining", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "title": "Missing rewards while mining - common mistake with keys", + "total_payout_value": { + "amount": "353", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-31T20:57:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hello Alex, welcome to steemit! :-)", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-31T20:57:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1076078, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-09-01T19:22:30", + "last_update": "2016-08-31T20:57:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "amcq", + "parent_permlink": "hello-steemit-i-m-alex-a-new-member-of-the-steemit-team", + "percent_hbd": 10000, + "permlink": "re-amcq-hello-steemit-i-m-alex-a-new-member-of-the-steemit-team-20160831t205719836z", + "reward_weight": 10000, + "root_author": "amcq", + "root_permlink": "hello-steemit-i-m-alex-a-new-member-of-the-steemit-team", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 1067633479, + "active": "2016-08-26T21:16:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hello Ania, welcome to steemit! :-)", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-26T18:53:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1002047, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-27T21:18:18", + "last_update": "2016-08-26T18:53:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 1067633479, + "net_votes": 2, + "parent_author": "ania", + "parent_permlink": "hello-world", + "percent_hbd": 10000, + "permlink": "re-ania-hello-world-20160826t185305711z", + "reward_weight": 10000, + "root_author": "ania", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 1067633479 + }, + { + "abs_rshares": 0, + "active": "2016-09-15T14:11:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "True, as well as encouraging others to try to do the same :-)", + "cashout_time": "1969-12-31T23:59:59", + "category": "stats", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-15T14:11:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 5, + "id": 1254260, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T14:11:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "arcange", + "parent_permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", + "percent_hbd": 10000, + "permlink": "re-arcange-re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t141107191z", + "reward_weight": 10000, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-15T14:11:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "I noticed that just after writing a comment (when went back to continue reading ... ) ___Thank you___ for pointing out. :-)", + "cashout_time": "1969-12-31T23:59:59", + "category": "stats", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-09-15T13:19:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 1253693, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T13:19:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "arcange", + "parent_permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", + "percent_hbd": 10000, + "permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", + "reward_weight": 10000, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-15T14:11:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "@arcange, please do not underestimate ___\"Thank you\"___ while searching for ___\"Thanks\"___ ;-)\n\nThank you,\n[Gandalf](https://steemit.com/@gtg) (\"gtg\")", + "cashout_time": "1969-12-31T23:59:59", + "category": "stats", + "children": 4, + "children_abs_rshares": 0, + "created": "2016-09-15T13:04:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1253559, + "json_metadata": "{\"tags\":[\"stats\"],\"users\":[\"arcange\"],\"links\":[\"https://steemit.com/@gtg\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T13:08:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "arcange", + "parent_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "percent_hbd": 10000, + "permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", + "reward_weight": 10000, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-21T12:33:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 27, + "beneficiaries": [], + "body": "There's nothing wrong with mining using your _\"steemit.com account\"_. It's **all about your keys** and using **proper miner configuration**. I tried to explain common mistake https://steemit.com/mining/@gtg/missing-rewards-while-mining", + "cashout_time": "1969-12-31T23:59:59", + "category": "mining", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-21T12:33:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 919361, + "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https://steemit.com/mining/@gtg/missing-rewards-while-mining\"]}", + "last_payout": "2016-08-22T10:51:00", + "last_update": "2016-08-21T12:33:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "artakan", + "parent_permlink": "important-info-for-steem-miner-do-not-use-your-steemit-com-account", + "percent_hbd": 10000, + "permlink": "re-artakan-important-info-for-steem-miner-do-not-use-your-steemit-com-account-20160821t123356072z", + "reward_weight": 10000, + "root_author": "artakan", + "root_permlink": "important-info-for-steem-miner-do-not-use-your-steemit-com-account", + "title": "", + "total_payout_value": { + "amount": "39", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T19:19:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hello @artywah, welcome to steemit! :-)\nHint: Adding a picture to your post could make it more appealing.\n( I used my cat for that ;-) )", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T19:19:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1045369, + "json_metadata": "{\"tags\":[\"introduceyourself\"],\"users\":[\"artywah\"]}", + "last_payout": "2016-08-30T18:28:06", + "last_update": "2016-08-29T19:19:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "artywah", + "parent_permlink": "self-proclaimed-geek-and-digital-ancient-in-melbourne-australia", + "percent_hbd": 10000, + "permlink": "re-artywah-self-proclaimed-geek-and-digital-ancient-in-melbourne-australia-20160829t191915549z", + "reward_weight": 10000, + "root_author": "artywah", + "root_permlink": "self-proclaimed-geek-and-digital-ancient-in-melbourne-australia", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json index 037ee732..b5240b80 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 736184, - "author": "skypilot", - "permlink": "an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "Where Eagles Fly by Zedekiah Morse", - "body": "http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\n\n# Hello Steemit!\n\nI am a bush-pilot, aerial photographer, and explorer. \n\nOur world is truly beautiful from up here!! And to share how I see it, I am developing an immersive project called **Where Eagles Fly** and would love to introduce myself and the project to the Steemit community. \n\nMy name is **Gerald Zedekiah Morse**, I go by **Zedekiah** or **Z** for short. \n\nOf course here on Steemit I am \"**skypilot**\".\n\nI was only recently introduced to Steemit by a friend. I find the entire construct of a blockchain content distribution platform to be fascinating. Centralized mass distribution of content is still very much under a gatekeeper rule and I would love to bypass this as much as possible. Steemit and other kindred platforms such as lbry.io, ascribe.io and many others all provide valuable tools that will greatly assist in the launch, success, and ongoing control of my project content. There is much to learn, and I look forward to the journey! \n\nhttp://geraldzmorse.com/images/steemit/howdysteemit.jpg\n*My proof of life - at my hangar on 8/23/16 with the Bluebird*\n\nIf you would like to see an example of my project and the work I do, please click on the image below which will take you to my website which has a Vimeo clip embedded on it. *(Unfortunately at this time Steemit does not support Vimeo and I do not like the compression quality of YouTube.)* I would right-click to open the link in a new tab so you keep Steemit open and don't lose your place. \n\n[![Your text here](http://geraldzmorse.com/images/steemit/Piclink-1.jpg)](http://geraldzmorse.com/Love_of_Nature.html \"Click Here To Play - a Love of Natue\")\n\n## My Background\nI am a music composer, pianist, recording engineer, and sound designer. I work mostly as a ghost composer and arranger on film soundtracks and trailers. I love many different styles of music and experiment with recording any genre or style the muse provides. If you would care to listen to my music, visit my listing on [SoundCloud/ZMorse](https://soundcloud.com/zmorse/sets), but please realize, it is not for everyone. Lots of different styles are on there, and I change the material all the time since I have a substantial library to choose from.\n\nhttp://geraldzmorse.com/images/steemit/zinstudio-1.jpg\n*Z in the Studio Mixing Film Music*\n\nIn addition to music production, I also code, develop virtual production technology and work as a disruptive technologist. But mostly I am an emerging filmmaker and content creator. For this project, I do everything possible to insure the content is not unduly influenced by outside sources. For that reason, I do literally everything: pilot, aerial photography (cinematography), post-production editing, music composition, sound design, graphics and motion graphics. \n\nI will work with other people in the development of the various post-production components involved in distributing the project content, and when the project is ready I will get a professional voice over artist for the narration of the various film and episodic chapter components. I'd love to get someone like Sam Elliot or Morgan Freeman!\n\n\n\n## I Love To Fly\nIt feels like I was born a pilot. My father was a test pilot for the B58 Hustler and then an aeronautical engineer for NASA during the Apollo program. Those were heady days. Most folks don’t realize, but back when Silicon Valley was just another small California suburb of San Francisco, and long before the advent of the Internet and rise of technology as we know it today, there were two very advanced scientific centers of technology that few knew about outside of the NASA community: Nassau Bay, Texas, and Huntsville, Alabama. \n\nhttp://geraldzmorse.com/images/steemit/B58-team.jpg\n*My father and test crew for the B58 Hustler circa 1960*\n\nThese were the Silicon Valleys of the day back in the 1960’s and 70’s. Huntsville, Alabama, was home to Marshal Space Center, and Nassau Bay, Texas, was home to Johnson Space Center. I grew up between those two places because my dad was transferred back and forth every couple of years as the Apollo program progressed. This is something I will write about in another article due to there being a lot of interesting things to discuss from that era. What’s important is the impact exposure to this unique community had on me. I developed a love of science and engineering and a wanderlust for space exploration that has had an ongoing effect on me. I still gaze into the night sky in wonderment at the possibilities of what is out there, of what we do not know. I truly love the unknown.\n\nWhen I was a child, my father took me flying a lot, most of the time we had to sneak out of the house because mom was so scared we would crash. Pops would always make me promise not to tell her when we were out doing aerobatics or flying through the mountains and landing on riverbanks. I’m grateful for the influence he had on my life, and the exposure to the science and engineering of flight that has shaped my life. But also in the type of aircraft and flying I am attracted to. I have never been interested in the fast moving jets or high altitude aircraft, instead prefer flying low and slow above the beautiful back-country, experiencing views I know very few people, if any, ever get to see. So this means I require a particular type of aircraft that can safely operate in these rough, rugged, and primitive locations.\n\nhttp://geraldzmorse.com/images/steemit/ZFlying-1.jpg\n*Flying My Bluebird In The Wilderness*\n\nI exclusively fly small bush planes. These aircraft do not require a normal paved runway to take off and land on. All I really need is a somewhat flat space a few hundred feet long, the smoother the better, but not necessary. You have to be very careful landing in short places, as you run the risk of being unable to take off from there again. This is why careful planning and attention to weather conditions and surface terrain are paramount! I also fly float planes, even crashed one a long time ago in the wilderness and had to egress the aircraft underwater as it was rapidly sinking! *(Another story for another time)*.\n\nhttp://geraldzmorse.com/images/steemit/airplanecamp-1.jpg\n*Camping on the Cumberland Plateau, Tennessee*\n\nCamping with an airplane in the wild is an experience of either extreme solitude, when I am out there by myself, or great camaraderie with a very small group of pilots who love the back-country as much as I. We have fly-in's where groups of pilots, young and old, male and female and lots of families all come together to camp out in these hard-to-reach locations.\n\nLanding and taking off on river banks, tops of cliffs, mountain saddle backs or meadows, which are always deep in the wilderness and far from civilization or help, are standard operations. Planning and proper equipment are necessary for survival, and knowledge with continuous training will keep you alive when things get spicy! You can count on the weather to be unpredictable, changing rapidly with little warning when you fly and camp deep in the mountainous hinterlands. Vigilance and a keen sense of awareness must be enacted at all times, especially in the air but also down on the ground, particularly when camping in the wild. \nBecause...*critters!*\n\nAll sorts of wild animals like coyotes, moose, elk, wolves, and bears will come into camp. We all know that they can be a curious lot and after all, this is their home and we are just visitors. Mostly, they are looking for food, especially bears. I am sure you have all seen this photo of a bush-plane that got a bit chewed on? *Never* ever store food in the airplane, not even something as small as a candy bar―especially if it is covered with fabric and not metal, though aluminum skin probably would have suffered badly as well. I reckon that bear was pretty determined and that fabric skin cut like butter with those sharp claws!\n\nhttp://geraldzmorse.com/images/steemit/BearAttack.jpg\n*Bear damage on an aircraft similar to my Bluebird*\n\n# Culmination of My Life's Work\n\nYears ago, I began taking photos while flying and camping in the back-country. Over time, camera technology exponentially reduced in form-factor while increasing in capabilities. I’m now able to carry more powerful DSLR's with amazing capabilities, and I've gone through the gauntlet with different systems: Nikon, Sony, Canon, Hasselblad, and PhaseOne. Some work much better than others, there is no real magic bullet; however, I love the large-sensor-format-based systems because I desire to reproduce my images as large-scale prints.\n\nhttp://geraldzmorse.com/images/steemit/zshooting2.jpg\n*Shooting The Grand-Staircase Escalante in Utah*\n\nAs video camera technology matured into smaller form-factor systems, I began experimenting with mounting cameras all around the aircraft, outside and in the cockpit. It has taken quite a while to come up with solutions to mitigate camera vibration. The rolling shutter effect from these systems is always an issue, especially with the bending propeller which I really dislike. But I am using my current configuration as a test bed from which to design and build an aerial platform that will eliminate all of these problems. This new platform will be based on a global-shutter sensor with a custom camera control, mounting, and optical package. \n\nWith the advent of a powerful suite of post-production tools from Adobe Creative Cloud, I am able to leverage my knowledge of virtual production technology into the art of editing and film composition. Because I already do soundtrack work, it was a fairly logical step. With the combination of aerial photography, aerial footage, and music composition and recording, I have the ability to produce my own content. Hence the following project: \n\n# Where Eagles Fly – The American Wilderness Expedition\n\nFor the past few years, I've been exploring the remaining wilderness areas of North America and filming them from a space just a few hundred to a few thousand feet above ground. The view from this zone is incredible. To accomplish this, I fly into remote off-the-beaten-path locations that are very rarely visited and even more rarely seen from this special zone up in the air... **Where Eagles Fly** :)\n\n\nWhen you think about it, our view of the world is quite limited to either down on the ground or very high up in jet airliners. Both of these views are restricted by physical limitations such as line-of-sight with ground based views and limited fine-detail when viewing from airliners flying along at 35,000 feet or higher. \n\nhttp://geraldzmorse.com/images/steemit/Mojave-Mtns.jpg\n*Kokoweef Peak in the Mojave Desert*\n\n\nWhere I fly, earth colors interact with weather and atmospheric conditions to create incredible “paintings” of nature that are stunning to behold. I see things that “Move the Soul.” I wish more people would get into flying like I did as a young man. Flying a drone is very cool, I own a number of them, but nothing compares to being there in person. The experience is worth the effort and the inherent danger. But I do realize that pressures from our socially-connected, Internet-influenced, technically-adapted and risk-averse lives somewhat limit the exposure to flying for most people. *Aha, this too, apparently, is another good subject for a future article*. \n\nMy goal is to chronicle the remaining 47% of the USA and 90% of Canada that are uninhabited and unaffected by the encroaching crush of civilization. By doing this, I hope to increase the lexicon with which we visually describe our planet ― by providing a unique new view that illustrates the untamed beauty and ruggedness of these remarkable places. I also hope that people will become as entranced as I, and will be inspired to continue the difficult effort necessary to protect and preserve these wild places for future generations. \n\nhttp://geraldzmorse.com/images/steemit/Zion-1.jpg\n*Cougar Mountain in Zion National Park*\n\nFlying a bush-plane while shooting through an open window is not without its difficulties! The type of scenery I seek is dramatic, with weather playing a major role in providing the desired backdrop. For the cleanest, long distance large-area wilderness-landscape images, I require the clearness provided by the cold, dense air molecules of Fall, Winter, and early Spring months, without the aberrations and heat distortion of Summer. \n\n\nhttp://geraldzmorse.com/images/steemit/zshooting-1.jpg\n*Shooting the San Juan Mountains in Colorado*\n\nAs you can see this is not a large production crew type of project. This is me, all alone, in the wilderness up in the air looking for dramatic weather to juxtapose against dangerous mountains in marginal flight conditions. \n*Nice!!* \n\nTo share this journey, I am creating a highly interactive, immersive virtual journey which will allow you to experience the beauty and wonder of these extraordinary places from this unique perspective. *I will post this in a future article.* \n\n# Wilderness Landscape Photography As Fine Art\n\nThe static imagery can be distributed via a variety of compelling formats, using the Ken Burns effect to make short ambient vignettes. With this, I stream the images to digital frames, provide images as screen savers and mobile device backgrounds, etc. But what I truly love to do is turn them into prints. \n\nObviously, there are many ways to do this, from simple posters, calendars and greeting cards to printed apparel. All of these are , all very appealing. You can print on practically any surface. However, I want the images to really stand out, to grace the locations where they are placed. What is truly spectacular is to create large-format prints on different mediums. For now, there are three mediums I work with:\n\n1. Giclée prints on Canvas\n2. Chrome Metallic Paper Mounted on Acrylic\n3. Aluminum Plate\n\nEach of these mediums has different qualities which influence how the images appear. I have been fortunate to find both an amazing printer (they exclusively print for all the National Geographic Galleries) and a gallery willing to allow me to exhibit my works. To date, I have held two exhibitions in the Wyland Signature Gallery at the Planet Hollywood Resort and Casino in Las Vegas, Nevada. Both were a complete blast!\n\nhttp://geraldzmorse.com/images/steemit/zgallery-1.jpg\n*Part of My Exhibition at the Wyland Gallery in Planet Hollywood Las Vegas*\n\nIt was quite an interesting experience during the show, in that most of the time I felt like a museum docent explaining the story behind images. Folks are drawn to this unique view of nature, and seem to enjoy watching the in-flight footage showing how the images were acquired. \n\nPeople are not used to seeing wilderness landscape images from this perspective it's such an advantageous place to shoot from. It's not as though anyone can simply follow me up the trail and take the same photo! \n\n# That'a Wrap!\n\nOk, my fellow Steemers! That about wraps it up for this post, if you have stayed with me though this entire article, I thank you!! I would LOVE to get feedback from the community, and if there is interest, I will continue writing about this subject and will update the Steemit community as my project develops. \n\nPlease let me know what you think. And *Fly Safe!!*\n\nhttp://geraldzmorse.com/images/steemit/zlanding1.jpg\n*Landing Bluebird on the Mesa Top at Pearce Ferry, Arizona*", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"photography\",\"travel\",\"art\",\"music\"],\"image\":[\"http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\"]}", - "last_update": "2016-08-26T18:45:27", - "created": "2016-08-24T21:24:33", - "active": "2016-09-11T05:54:30", - "last_payout": "2016-08-26T20:55:24", - "depth": 0, - "children": 112, - "net_rshares": "4923114688969", - "abs_rshares": "4923114688969", - "vote_rshares": "4923114688969", - "children_abs_rshares": "5017117283364", - "cashout_time": "2016-09-25T20:55:24", - "max_cashout_time": "2016-09-09T20:56:57", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "1639386", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "545355", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1248581, - "net_votes": 228, - "root_author": "skypilot", - "root_permlink": "an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 888391, - "author": "skypilot", - "permlink": "ancient-mayan-wordpress-design", - "category": "life", - "parent_author": "", - "parent_permlink": "life", - "title": "Ancient Mayan Wordpress Design!?!", - "body": "# Ancient Mayan Design Aesthetic\nIt amazes me that the concept of basic design seems to have been around for many thousands of years. Think about that! Many centuries ago, some very important Mayan Scribe sat at their desktop and designed the layout below, working with what was at the time, leading edge communication technology. \n\nThis form of written communication was a technology that was only understood and utilized by an elite few. To me, this draws an compelling connection to our global ancestral makeup. What is interesting is that you can see a very strong resemblance to current design aesthetic with columns, tables, pictures (info-graphics) with wrap around text. \n\nThe way we visualize layout obviously goes way back in human history. \n

\nhttp://www.pasthorizonspr.com/wp-content/uploads/2016/08/Chichen2.jpg\n
*This image is from the article in Past Horizons listed below*
\n\nI know this is very different than the articles I usually post on my photography, but I felt compelled to share this so if you'd like to see the original article please go [here](http://www.pasthorizonspr.com/index.php/archives/08/2016/hieroglyphic-texts-reveal-maya-innovation-in-maths-and-astronomy). The article is about Mayan innovation in math and astronomy and is short and worth the read. \n\nThis article is from one of my favorite sites called **Past Horizons - Adventures in Archeology**. Please visit them if you are interested in archeology and human history. They always have something worth reading.\n
http://www.pasthorizonspr.com/wp-content/uploads/2014/10/smallLOGO@2x.png
", - "json_metadata": "{\"tags\":[\"life\",\"art\",\"writing\",\"story\",\"news\"],\"image\":[\"http://www.pasthorizonspr.com/wp-content/uploads/2016/08/Chichen2.jpg\",\"http://www.pasthorizonspr.com/wp-content/uploads/2014/10/smallLOGO@2x.png\"],\"links\":[\"http://www.pasthorizonspr.com/index.php/archives/08/2016/hieroglyphic-texts-reveal-maya-innovation-in-maths-and-astronomy\"]}", - "last_update": "2016-09-08T01:54:45", - "created": "2016-09-08T01:39:12", - "active": "2016-09-08T11:49:15", - "last_payout": "2016-09-09T01:59:48", - "depth": 0, - "children": 4, - "net_rshares": 196185915, - "abs_rshares": 196185915, - "vote_rshares": 196185915, - "children_abs_rshares": 196185915, - "cashout_time": "2016-10-09T01:59:48", - "max_cashout_time": "2016-09-23T08:52:09", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "23879", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "3823", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 29701, - "net_votes": 54, - "root_author": "skypilot", - "root_permlink": "ancient-mayan-wordpress-design", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 896931, - "author": "skypilot", - "permlink": "blizzard-whiteout-in-the-forest", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Blizzard Whiteout in the Forest", - "body": "This was shot during a blizzard in Kit Carson Pass below Lake Tahoe. I couldn't leave so I took pictures. It was cold and the snow was falling almost horizontally and it was bright white. It got so bad a few times it was impossible to see more than a dozen feet away. \n\nhttp://geraldzmorse.com/images/steemit/Whiteout.jpg\n\nI find the contrast between the brilliant white and the colors of the trees intriguing .", - "json_metadata": "{\"tags\":[\"photography\",\"nature\",\"art\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Whiteout.jpg\"]}", - "last_update": "2016-09-08T23:05:54", - "created": "2016-09-08T22:00:09", - "active": "2016-09-09T11:25:09", - "last_payout": "2016-09-09T22:54:12", - "depth": 0, - "children": 5, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-10-09T22:54:12", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "5959", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "1308", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 7449, - "net_votes": 47, - "root_author": "skypilot", - "root_permlink": "blizzard-whiteout-in-the-forest", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 829916, - "author": "skypilot", - "permlink": "filmmakers-of-steemit-rejoice-they-have-just-made-embedding-vimeo-in-your-posts-possible-yehaw", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Filmmakers of Steemit Rejoice! Embedding Vimeo in your posts is now possible! Yehaw!", - "body": "http://geraldzmorse.com/images/steemit/Vimeo_logo-2.png3fformat3d1500w.png\n\n# Howdy folks, Z here... \n\nI am very happy to announce that steemit has now made it possible to directly embed high quality Vimeo clips within the iframe structure provided by Vimeo.\n\nSimply drop your embed code in the editor as you would pictures or a Youtube clip and it should work fine: \n
\n\nIf you are interested in the post where this short vignette lives from please take a look at the first post about my project: [Where Eagles Fly](http://goo.gl/cliI88) \n\nPlease don't feel compelled to vote on this post... I am simply sharing the news so that when new users search about Vimeo they will find it is possible!\n\nThank you Steemit crew! This is awesome!", - "json_metadata": "{\"tags\":[\"photography\",\"story\",\"steemit\",\"art\",\"news\"],\"links\":[\"http://goo.gl/cliI88\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Vimeo_logo-2.png3fformat3d1500w.png\"]}", - "last_update": "2016-09-02T04:05:36", - "created": "2016-09-02T00:23:30", - "active": "2016-09-02T20:48:45", - "last_payout": "2016-09-03T02:28:12", - "depth": 0, - "children": 13, - "net_rshares": "32969357867", - "abs_rshares": "32969357867", - "vote_rshares": "32969357867", - "children_abs_rshares": "32969357867", - "cashout_time": "2016-10-03T02:28:12", - "max_cashout_time": "2016-09-20T19:56:00", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "13992", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "4357", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 15688, - "net_votes": 52, - "root_author": "skypilot", - "root_permlink": "filmmakers-of-steemit-rejoice-they-have-just-made-embedding-vimeo-in-your-posts-possible-yehaw", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 856286, - "author": "skypilot", - "permlink": "flathead-mountains-and-the-great-bear-wilderness-at-dusk", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Flathead Mountains and the Great Bear Wilderness at Dusk", - "body": "This photo was shot from 9,500 feet up while I was flying towards the southwest after sunset. I am in the Flathead Mountains of Montana and the moisture in the air is condensing from the cool evening to create this mystical view of the mountains.\n\nhttp://geraldzmorse.com/images/steemit/FlatHeadatDusk.jpg\n\nThis is from a series of images I call \"Wilderness Alpenglow\". I enjoy how the image resembles classic Chinese or Japanese paintings of old.\n\nIf you want to see other work from my project **Where Eagles Fly** visit my first post [here](https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse) or second one [here](https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse).", - "json_metadata": "{\"tags\":[\"photography\",\"travel\",\"art\",\"life\",\"nature\"],\"image\":[\"http://geraldzmorse.com/images/steemit/FlatHeadatDusk.jpg\"],\"links\":[\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\",\"https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse\"]}", - "last_update": "2016-09-05T01:04:30", - "created": "2016-09-04T19:31:03", - "active": "2016-09-10T03:25:48", - "last_payout": "2016-09-06T03:47:51", - "depth": 0, - "children": 22, - "net_rshares": "140201312914", - "abs_rshares": "140201312914", - "vote_rshares": "140201312914", - "children_abs_rshares": "140201312914", - "cashout_time": "2016-10-06T03:47:51", - "max_cashout_time": "2016-09-20T06:06:54", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "21746", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "6541", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 25890, - "net_votes": 66, - "root_author": "skypilot", - "root_permlink": "flathead-mountains-and-the-great-bear-wilderness-at-dusk", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 901103, - "author": "skypilot", - "permlink": "isolated-rain-storm-on-the-great-sand-dunes-national-park", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Rain Storm on the Great Sand Dunes National Park", - "body": "# Isolated Rain Storm \nI came upon this strange isolated rain storm over the Great Sand Dunes when I was flying out over the San Luis Valley while filming Zapata Ranch. It was clear skies about the rain clouds and clear all around it... yet it was raining on this stretch of the Sangre de Cristo Range in the Rocky Mountains. \n\nhttp://geraldzmorse.com/images/steemit/GreatDunesRainStorm1.jpg\n
*Eastern side of the Great Sand Dunes National Park*
\n\nIn this photo you can clearly see the curving edge of the sand dunes boundary where the dunes delineate from the San Luis Valley floor. These are the tallest sand dunes in North America reaching heights of 750 feet (228m).\n\n# Sand From an Ancient Glacial Lake \n\nThe dunes were formed within the last 500,000 years from sand and soil deposits of the Rio Grande and its tributaries as they spread out through the San Luis Valley. Over the ages, the glaciers melting created a vast lake in the San Luis Valley... as this lake and the waters evaporated and drained to form the river, it left behind massive volumes of loose sand. Westerly winds then picked up sand particles from the lake and river flood plain and carried them across the valley floor. As the wind diminished in power before crossing the Sangre de Cristo Range, the sand deposited all along the eastern edge of the valley. As the sand stacked up over time it became what we see today, the Great Sand Dunes National Park. \n\n\nhttp://geraldzmorse.com/images/steemit/GreatDunesRainStorm2.jpg\n
*Western side of the Great Sand Dunes National Park*
\n\nIn the photo above taken from the same position as the previous photograph, you can see the small Mount Seven Peak and behind it the snow capped 13,200 (4,023m) Cleveland Peak of the Sangre de Cristo Mountain Range peeking through the rain shower.\n\n# Whipped By Fierce Winds\nThe wind continues to whip about and shape and reshape the dunes on a daily basis, and continue to increase the volume of sand and size of the dunes. These fierce winds are strong enough to move sand and small rocks from miles away across the valley. While the dunes don't actually change location or vary in size that often, the wind forms parabolic dunes that grow in the sand sheet, the outer area around the dunes, and migrate towards the main dune field, giving a very prominent beveling or warping visual effect, especially notable from up above where I fly.\n\nLocated near Alamosa, Colorado just north of the Nature Conservancy's Zapata Ranch the dunes are a great place to visit. To check out the National Parks Service website on the Great Dunes National Park go [here](https://www.nps.gov/grsa/index.htm). \n\nAnd to check out my previous exciting fly-in trip to the Zapata Ranch to visit Duke Phillips the Flying Cowboy, go [here](https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse).\n\nIf you're unfamiliar with my work please check out my introductory post [here](https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse). \n\nOk thanks, hope you enjoy this and yehaw!", - "json_metadata": "{\"tags\":[\"photography\",\"nature\",\"story\",\"life\",\"travel\"],\"image\":[\"http://geraldzmorse.com/images/steemit/GreatDunesRainStorm1.jpg\",\"http://geraldzmorse.com/images/steemit/GreatDunesRainStorm2.jpg\"],\"links\":[\"https://www.nps.gov/grsa/index.htm\",\"https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse\",\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\"]}", - "last_update": "2016-09-09T11:15:18", - "created": "2016-09-09T11:04:21", - "active": "2016-09-12T14:37:54", - "last_payout": "2016-09-10T18:51:39", - "depth": 0, - "children": 7, - "net_rshares": 113157676, - "abs_rshares": 113157676, - "vote_rshares": 113157676, - "children_abs_rshares": 113157676, - "cashout_time": "2016-10-10T18:51:39", - "max_cashout_time": "2016-09-26T14:36:45", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "807", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "203", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1047, - "net_votes": 69, - "root_author": "skypilot", - "root_permlink": "isolated-rain-storm-on-the-great-sand-dunes-national-park", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 913356, - "author": "skypilot", - "permlink": "las-vegas-valley", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Las Vegas in the Valley", - "body": "# Las Vegas Valley from the Sloan Mountains\n\nA rare perspective of the city sitting in the valley taken from above Sloan Mountains to the south. I never shoot images of cities or buildings, it's jut not my thing to do. I am an aerial wilderness photographer. However I got this while testing out a different camera.\n\nhttp://geraldzmorse.com/images/steemit/B6583414-Las-Vegas.jpg\n\nIn this uncommon point of view you can see that Las Vegas sits down in a valley, that is Gray Mountain in the distance and the foothills of Sloan Mountain in the foreground. To the bottom left, right above the small hills you can barely make out Henderson Executive Airport. \n\nThe image was captured late in the afternoon from an altitude of 4,500ft (1,371.6m) shooting towards the northeast.", - "json_metadata": "{\"tags\":[\"photography\",\"travel\",\"art\",\"las-vegas\"],\"image\":[\"http://geraldzmorse.com/images/steemit/B6583414-Las-Vegas.jpg\"]}", - "last_update": "2016-09-10T18:04:42", - "created": "2016-09-10T17:37:24", - "active": "2016-09-11T04:09:09", - "last_payout": "2016-09-12T14:32:39", - "depth": 0, - "children": 13, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-10-12T14:32:39", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "2756", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "791", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 3840, - "net_votes": 45, - "root_author": "skypilot", - "root_permlink": "las-vegas-valley", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 949882, - "author": "skypilot", - "permlink": "melting-rock", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Melting Rock", - "body": "This is an unusual rock outcroping I photographed south of Mesa Verde, Colorado in the desert near my camp. I found the colors of the stone and desert sand juxtaposed against the background vermilion cliff walls and blue hued sky to be pleasing and relaxing. \n\nhttp://geraldzmorse.com/images/steemit/Mesa-Verde-Outcrop.jpg\n\nThis image is also from my Artistic Impression series where I use a digitizing tablet to lightly brush various filter effects into the image to give it a certain mysterious quality.", - "json_metadata": "{\"tags\":[\"photography\",\"art\",\"nature\",\"\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Mesa-Verde-Outcrop.jpg\"]}", - "last_update": "2016-09-14T15:28:42", - "created": "2016-09-14T14:46:27", - "active": "2016-09-15T17:56:33", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 11, - "net_rshares": "10001278717808", - "abs_rshares": "10027068167722", - "vote_rshares": "9951683621819", - "children_abs_rshares": "10027068167722", - "cashout_time": "2016-09-15T21:34:14", - "max_cashout_time": "2016-09-28T14:50:51", - "total_vote_weight": "13144057225008877639", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 44, - "root_author": "skypilot", - "root_permlink": "melting-rock", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 760944, - "author": "skypilot", - "permlink": "my-first-real-post-was-a-success-and-i-would-like-to-share-the-story", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "My first real post was a success and I would like to share the story.", - "body": "http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\nFellow steemers ! \n\nMy experiment on Steemit was a success. I earned $2,184.74 \n\nThe posts automatically last only 24 hours. If many people like them and upvote then they extend an additional 12 hours for a total run of 36 hours. Which mine did. \n\nOnce the post run-time is finished the post was automatically moved out of the 5 categories it was tagged in and placed in my blog page. It is still available for viewing and people can still vote on it, you can find it on my blog page. This is a necessary function of the fairness and democratic operations of this amazing website!!! How awesome is this!?!\n\nThis test was primarily undertaken to review the marketing viability of my project to the public, to see if everyone liked the concept and content. From the responses at the bottom of the post which are permanent, I would think the answer is a resounding yes. \n\nMore to come from this experiment later. Suffice to say I have established a presence and become part of the community on the most powerful cutting edge - platform/community in this new and very exciting cryptocurrency-based content-support market. \n\nI have taken the funds, held some as steem cryptocurrency and transferred the rest onto a cryptocurrency exchange called Poloniex where I am holding steem dollars (SBD) and watching the various cryptocurrencies valuation. The current SBD will increase in value or at any time I can transfer these to bitcoin or any of a number of other currencies.\n\nThis is absolutely cool!!!Thank you to the 217 steemers that upvoted me and even to the 2 that downvoted it...I sort of would like to know why but it really does not matter. \n\nPlease continue to enjoy my blog and I would love to continue building support for my project from the steemit community. I am a now a firm believer and strong advocate for steemit. \n\nMore to follow.\n\nz", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"photography\",\"art\",\"music\",\"travel\"],\"image\":[\"http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\"]}", - "last_update": "2016-08-27T18:42:45", - "created": "2016-08-26T22:53:00", - "active": "2016-08-28T03:46:18", - "last_payout": "2016-08-28T01:41:27", - "depth": 0, - "children": 13, - "net_rshares": 1230392222, - "abs_rshares": 1230392222, - "vote_rshares": 1230392222, - "children_abs_rshares": 1230392222, - "cashout_time": "2016-09-27T01:41:27", - "max_cashout_time": "2016-09-11T03:46:21", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "1501", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "420", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1363, - "net_votes": 44, - "root_author": "skypilot", - "root_permlink": "my-first-real-post-was-a-success-and-i-would-like-to-share-the-story", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 772283, - "author": "skypilot", - "permlink": "my-steemitphotochallenge-entry-for-contest-6-by-zedekiah-morse", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "SteemitPhotoChallenge Entry #6 - Unusual Formations", - "body": "For my entries into the 6th steemit photo contest I've chosen 3 unusual formations to share.\n\nIf you don't know anything about my work please visit my introduction post: \nhttps://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse \n\n**Image 1: BLUE POINT BAY**\nThis image was taken above Blue Point Bay on Lake Mead, Nevada. A powerful rain storm had just passed over and the earth was still soaked. The sun was coming back out and these vibrant, rich colors are from the water soaked natural minerals reacting to the bright sunlight. The green areas along the edge are the shallow water of the lake. I am about 2,000 feet above the lake shooting straight down from the airplane.\n\nhttp://geraldzmorse.com/images/steemit/BuePointBay.jpg\n\n**Image 2: SP VOLCANO** \nThis is a volcano just north of Flagstaff, Arizona simply known as \"SP Volcano\". I have searched high and low and cannot find any history on how it got this name. Certainly the Navajo First Nations called it something but I couldn't find mention of it anywhere. I love that this is a perfect representation of time-stood-still. You can see the how lava flowed down from the volcano, spilling out across the desert, coming to a standstill where it froze in time.\n\nhttp://geraldzmorse.com/images/steemit/SPVolcano.jpg\n\n**Image 3: CASTLE PEAKS**\nThis is Castle Peaks on the New York Mountains in the Mojave Desert. When you are driving from Los Angeles on highway 15 to Las Vegas, you can see these peaks in the distance across the valley as you come down the last hill towards Primm, Nevada. I took this picture from about 1,000 feet above the ground and what struck me about the formation was the small replica formation that sits just below Castle Peak, mirroring it. It is like a miniature formation of the larger peaks! Very strange. \n\nhttp://geraldzmorse.com/images/steemit/CastlePeaksNorth.jpg\n\nOk Thanks and hope you enjoy the images. If you have not seen my original post explaining what I do please follow the link at the top and come on by! \n\nYehaw", - "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"art\",\"travel\"],\"links\":[\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\"]}", - "last_update": "2016-08-28T07:40:03", - "created": "2016-08-27T23:27:30", - "active": "2016-09-07T16:30:00", - "last_payout": "2016-08-29T02:59:57", - "depth": 0, - "children": 12, - "net_rshares": "6808732560425", - "abs_rshares": "6808732560425", - "vote_rshares": "6808732560425", - "children_abs_rshares": "6808732560425", - "cashout_time": "2016-09-28T02:59:57", - "max_cashout_time": "2016-09-12T05:58:45", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "212", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "41", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 199, - "net_votes": 30, - "root_author": "skypilot", - "root_permlink": "my-steemitphotochallenge-entry-for-contest-6-by-zedekiah-morse", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": "4923114688969", + "active": "2016-09-11T05:54:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 1248581, + "beneficiaries": [], + "body": "http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\n\n# Hello Steemit!\n\nI am a bush-pilot, aerial photographer, and explorer. \n\nOur world is truly beautiful from up here!! And to share how I see it, I am developing an immersive project called **Where Eagles Fly** and would love to introduce myself and the project to the Steemit community. \n\nMy name is **Gerald Zedekiah Morse**, I go by **Zedekiah** or **Z** for short. \n\nOf course here on Steemit I am \"**skypilot**\".\n\nI was only recently introduced to Steemit by a friend. I find the entire construct of a blockchain content distribution platform to be fascinating. Centralized mass distribution of content is still very much under a gatekeeper rule and I would love to bypass this as much as possible. Steemit and other kindred platforms such as lbry.io, ascribe.io and many others all provide valuable tools that will greatly assist in the launch, success, and ongoing control of my project content. There is much to learn, and I look forward to the journey! \n\nhttp://geraldzmorse.com/images/steemit/howdysteemit.jpg\n*My proof of life - at my hangar on 8/23/16 with the Bluebird*\n\nIf you would like to see an example of my project and the work I do, please click on the image below which will take you to my website which has a Vimeo clip embedded on it. *(Unfortunately at this time Steemit does not support Vimeo and I do not like the compression quality of YouTube.)* I would right-click to open the link in a new tab so you keep Steemit open and don't lose your place. \n\n[![Your text here](http://geraldzmorse.com/images/steemit/Piclink-1.jpg)](http://geraldzmorse.com/Love_of_Nature.html \"Click Here To Play - a Love of Natue\")\n\n## My Background\nI am a music composer, pianist, recording engineer, and sound designer. I work mostly as a ghost composer and arranger on film soundtracks and trailers. I love many different styles of music and experiment with recording any genre or style the muse provides. If you would care to listen to my music, visit my listing on [SoundCloud/ZMorse](https://soundcloud.com/zmorse/sets), but please realize, it is not for everyone. Lots of different styles are on there, and I change the material all the time since I have a substantial library to choose from.\n\nhttp://geraldzmorse.com/images/steemit/zinstudio-1.jpg\n*Z in the Studio Mixing Film Music*\n\nIn addition to music production, I also code, develop virtual production technology and work as a disruptive technologist. But mostly I am an emerging filmmaker and content creator. For this project, I do everything possible to insure the content is not unduly influenced by outside sources. For that reason, I do literally everything: pilot, aerial photography (cinematography), post-production editing, music composition, sound design, graphics and motion graphics. \n\nI will work with other people in the development of the various post-production components involved in distributing the project content, and when the project is ready I will get a professional voice over artist for the narration of the various film and episodic chapter components. I'd love to get someone like Sam Elliot or Morgan Freeman!\n\n\n\n## I Love To Fly\nIt feels like I was born a pilot. My father was a test pilot for the B58 Hustler and then an aeronautical engineer for NASA during the Apollo program. Those were heady days. Most folks don\u2019t realize, but back when Silicon Valley was just another small California suburb of San Francisco, and long before the advent of the Internet and rise of technology as we know it today, there were two very advanced scientific centers of technology that few knew about outside of the NASA community: Nassau Bay, Texas, and Huntsville, Alabama. \n\nhttp://geraldzmorse.com/images/steemit/B58-team.jpg\n*My father and test crew for the B58 Hustler circa 1960*\n\nThese were the Silicon Valleys of the day back in the 1960\u2019s and 70\u2019s. Huntsville, Alabama, was home to Marshal Space Center, and Nassau Bay, Texas, was home to Johnson Space Center. I grew up between those two places because my dad was transferred back and forth every couple of years as the Apollo program progressed. This is something I will write about in another article due to there being a lot of interesting things to discuss from that era. What\u2019s important is the impact exposure to this unique community had on me. I developed a love of science and engineering and a wanderlust for space exploration that has had an ongoing effect on me. I still gaze into the night sky in wonderment at the possibilities of what is out there, of what we do not know. I truly love the unknown.\n\nWhen I was a child, my father took me flying a lot, most of the time we had to sneak out of the house because mom was so scared we would crash. Pops would always make me promise not to tell her when we were out doing aerobatics or flying through the mountains and landing on riverbanks. I\u2019m grateful for the influence he had on my life, and the exposure to the science and engineering of flight that has shaped my life. But also in the type of aircraft and flying I am attracted to. I have never been interested in the fast moving jets or high altitude aircraft, instead prefer flying low and slow above the beautiful back-country, experiencing views I know very few people, if any, ever get to see. So this means I require a particular type of aircraft that can safely operate in these rough, rugged, and primitive locations.\n\nhttp://geraldzmorse.com/images/steemit/ZFlying-1.jpg\n*Flying My Bluebird In The Wilderness*\n\nI exclusively fly small bush planes. These aircraft do not require a normal paved runway to take off and land on. All I really need is a somewhat flat space a few hundred feet long, the smoother the better, but not necessary. You have to be very careful landing in short places, as you run the risk of being unable to take off from there again. This is why careful planning and attention to weather conditions and surface terrain are paramount! I also fly float planes, even crashed one a long time ago in the wilderness and had to egress the aircraft underwater as it was rapidly sinking! *(Another story for another time)*.\n\nhttp://geraldzmorse.com/images/steemit/airplanecamp-1.jpg\n*Camping on the Cumberland Plateau, Tennessee*\n\nCamping with an airplane in the wild is an experience of either extreme solitude, when I am out there by myself, or great camaraderie with a very small group of pilots who love the back-country as much as I. We have fly-in's where groups of pilots, young and old, male and female and lots of families all come together to camp out in these hard-to-reach locations.\n\nLanding and taking off on river banks, tops of cliffs, mountain saddle backs or meadows, which are always deep in the wilderness and far from civilization or help, are standard operations. Planning and proper equipment are necessary for survival, and knowledge with continuous training will keep you alive when things get spicy! You can count on the weather to be unpredictable, changing rapidly with little warning when you fly and camp deep in the mountainous hinterlands. Vigilance and a keen sense of awareness must be enacted at all times, especially in the air but also down on the ground, particularly when camping in the wild. \nBecause...*critters!*\n\nAll sorts of wild animals like coyotes, moose, elk, wolves, and bears will come into camp. We all know that they can be a curious lot and after all, this is their home and we are just visitors. Mostly, they are looking for food, especially bears. I am sure you have all seen this photo of a bush-plane that got a bit chewed on? *Never* ever store food in the airplane, not even something as small as a candy bar\u2015especially if it is covered with fabric and not metal, though aluminum skin probably would have suffered badly as well. I reckon that bear was pretty determined and that fabric skin cut like butter with those sharp claws!\n\nhttp://geraldzmorse.com/images/steemit/BearAttack.jpg\n*Bear damage on an aircraft similar to my Bluebird*\n\n# Culmination of My Life's Work\n\nYears ago, I began taking photos while flying and camping in the back-country. Over time, camera technology exponentially reduced in form-factor while increasing in capabilities. I\u2019m now able to carry more powerful DSLR's with amazing capabilities, and I've gone through the gauntlet with different systems: Nikon, Sony, Canon, Hasselblad, and PhaseOne. Some work much better than others, there is no real magic bullet; however, I love the large-sensor-format-based systems because I desire to reproduce my images as large-scale prints.\n\nhttp://geraldzmorse.com/images/steemit/zshooting2.jpg\n*Shooting The Grand-Staircase Escalante in Utah*\n\nAs video camera technology matured into smaller form-factor systems, I began experimenting with mounting cameras all around the aircraft, outside and in the cockpit. It has taken quite a while to come up with solutions to mitigate camera vibration. The rolling shutter effect from these systems is always an issue, especially with the bending propeller which I really dislike. But I am using my current configuration as a test bed from which to design and build an aerial platform that will eliminate all of these problems. This new platform will be based on a global-shutter sensor with a custom camera control, mounting, and optical package. \n\nWith the advent of a powerful suite of post-production tools from Adobe Creative Cloud, I am able to leverage my knowledge of virtual production technology into the art of editing and film composition. Because I already do soundtrack work, it was a fairly logical step. With the combination of aerial photography, aerial footage, and music composition and recording, I have the ability to produce my own content. Hence the following project: \n\n# Where Eagles Fly \u2013 The American Wilderness Expedition\n\nFor the past few years, I've been exploring the remaining wilderness areas of North America and filming them from a space just a few hundred to a few thousand feet above ground. The view from this zone is incredible. To accomplish this, I fly into remote off-the-beaten-path locations that are very rarely visited and even more rarely seen from this special zone up in the air... **Where Eagles Fly** :)\n\n\nWhen you think about it, our view of the world is quite limited to either down on the ground or very high up in jet airliners. Both of these views are restricted by physical limitations such as line-of-sight with ground based views and limited fine-detail when viewing from airliners flying along at 35,000 feet or higher. \n\nhttp://geraldzmorse.com/images/steemit/Mojave-Mtns.jpg\n*Kokoweef Peak in the Mojave Desert*\n\n\nWhere I fly, earth colors interact with weather and atmospheric conditions to create incredible \u201cpaintings\u201d of nature that are stunning to behold. I see things that \u201cMove the Soul.\u201d I wish more people would get into flying like I did as a young man. Flying a drone is very cool, I own a number of them, but nothing compares to being there in person. The experience is worth the effort and the inherent danger. But I do realize that pressures from our socially-connected, Internet-influenced, technically-adapted and risk-averse lives somewhat limit the exposure to flying for most people. *Aha, this too, apparently, is another good subject for a future article*. \n\nMy goal is to chronicle the remaining 47% of the USA and 90% of Canada that are uninhabited and unaffected by the encroaching crush of civilization. By doing this, I hope to increase the lexicon with which we visually describe our planet \u2015 by providing a unique new view that illustrates the untamed beauty and ruggedness of these remarkable places. I also hope that people will become as entranced as I, and will be inspired to continue the difficult effort necessary to protect and preserve these wild places for future generations. \n\nhttp://geraldzmorse.com/images/steemit/Zion-1.jpg\n*Cougar Mountain in Zion National Park*\n\nFlying a bush-plane while shooting through an open window is not without its difficulties! The type of scenery I seek is dramatic, with weather playing a major role in providing the desired backdrop. For the cleanest, long distance large-area wilderness-landscape images, I require the clearness provided by the cold, dense air molecules of Fall, Winter, and early Spring months, without the aberrations and heat distortion of Summer. \n\n\nhttp://geraldzmorse.com/images/steemit/zshooting-1.jpg\n*Shooting the San Juan Mountains in Colorado*\n\nAs you can see this is not a large production crew type of project. This is me, all alone, in the wilderness up in the air looking for dramatic weather to juxtapose against dangerous mountains in marginal flight conditions. \n*Nice!!* \n\nTo share this journey, I am creating a highly interactive, immersive virtual journey which will allow you to experience the beauty and wonder of these extraordinary places from this unique perspective. *I will post this in a future article.* \n\n# Wilderness Landscape Photography As Fine Art\n\nThe static imagery can be distributed via a variety of compelling formats, using the Ken Burns effect to make short ambient vignettes. With this, I stream the images to digital frames, provide images as screen savers and mobile device backgrounds, etc. But what I truly love to do is turn them into prints. \n\nObviously, there are many ways to do this, from simple posters, calendars and greeting cards to printed apparel. All of these are , all very appealing. You can print on practically any surface. However, I want the images to really stand out, to grace the locations where they are placed. What is truly spectacular is to create large-format prints on different mediums. For now, there are three mediums I work with:\n\n1. Gicl\u00e9e prints on Canvas\n2. Chrome Metallic Paper Mounted on Acrylic\n3. Aluminum Plate\n\nEach of these mediums has different qualities which influence how the images appear. I have been fortunate to find both an amazing printer (they exclusively print for all the National Geographic Galleries) and a gallery willing to allow me to exhibit my works. To date, I have held two exhibitions in the Wyland Signature Gallery at the Planet Hollywood Resort and Casino in Las Vegas, Nevada. Both were a complete blast!\n\nhttp://geraldzmorse.com/images/steemit/zgallery-1.jpg\n*Part of My Exhibition at the Wyland Gallery in Planet Hollywood Las Vegas*\n\nIt was quite an interesting experience during the show, in that most of the time I felt like a museum docent explaining the story behind images. Folks are drawn to this unique view of nature, and seem to enjoy watching the in-flight footage showing how the images were acquired. \n\nPeople are not used to seeing wilderness landscape images from this perspective it's such an advantageous place to shoot from. It's not as though anyone can simply follow me up the trail and take the same photo! \n\n# That'a Wrap!\n\nOk, my fellow Steemers! That about wraps it up for this post, if you have stayed with me though this entire article, I thank you!! I would LOVE to get feedback from the community, and if there is interest, I will continue writing about this subject and will update the Steemit community as my project develops. \n\nPlease let me know what you think. And *Fly Safe!!*\n\nhttp://geraldzmorse.com/images/steemit/zlanding1.jpg\n*Landing Bluebird on the Mesa Top at Pearce Ferry, Arizona*", + "cashout_time": "2016-09-25T20:55:24", + "category": "introduceyourself", + "children": 112, + "children_abs_rshares": "5017117283364", + "created": "2016-08-24T21:24:33", + "curator_payout_value": { + "amount": "545355", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 973046, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"photography\",\"travel\",\"art\",\"music\"],\"image\":[\"http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\"]}", + "last_payout": "2016-08-26T20:55:24", + "last_update": "2016-08-26T18:45:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-09T20:56:57", + "net_rshares": "4923114688969", + "net_votes": 228, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse", + "title": "Where Eagles Fly by Zedekiah Morse", + "total_payout_value": { + "amount": "1639386", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "4923114688969" + }, + { + "abs_rshares": 196185915, + "active": "2016-09-08T11:49:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 29701, + "beneficiaries": [], + "body": "# Ancient Mayan Design Aesthetic\nIt amazes me that the concept of basic design seems to have been around for many thousands of years. Think about that! Many centuries ago, some very important Mayan Scribe sat at their desktop and designed the layout below, working with what was at the time, leading edge communication technology. \n\nThis form of written communication was a technology that was only understood and utilized by an elite few. To me, this draws an compelling connection to our global ancestral makeup. What is interesting is that you can see a very strong resemblance to current design aesthetic with columns, tables, pictures (info-graphics) with wrap around text. \n\nThe way we visualize layout obviously goes way back in human history. \n
\nhttp://www.pasthorizonspr.com/wp-content/uploads/2016/08/Chichen2.jpg\n
*This image is from the article in Past Horizons listed below*
\n\nI know this is very different than the articles I usually post on my photography, but I felt compelled to share this so if you'd like to see the original article please go [here](http://www.pasthorizonspr.com/index.php/archives/08/2016/hieroglyphic-texts-reveal-maya-innovation-in-maths-and-astronomy). The article is about Mayan innovation in math and astronomy and is short and worth the read. \n\nThis article is from one of my favorite sites called **Past Horizons - Adventures in Archeology**. Please visit them if you are interested in archeology and human history. They always have something worth reading.\n
http://www.pasthorizonspr.com/wp-content/uploads/2014/10/smallLOGO@2x.png
", + "cashout_time": "2016-10-09T01:59:48", + "category": "life", + "children": 4, + "children_abs_rshares": 196185915, + "created": "2016-09-08T01:39:12", + "curator_payout_value": { + "amount": "3823", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1166830, + "json_metadata": "{\"tags\":[\"life\",\"art\",\"writing\",\"story\",\"news\"],\"image\":[\"http://www.pasthorizonspr.com/wp-content/uploads/2016/08/Chichen2.jpg\",\"http://www.pasthorizonspr.com/wp-content/uploads/2014/10/smallLOGO@2x.png\"],\"links\":[\"http://www.pasthorizonspr.com/index.php/archives/08/2016/hieroglyphic-texts-reveal-maya-innovation-in-maths-and-astronomy\"]}", + "last_payout": "2016-09-09T01:59:48", + "last_update": "2016-09-08T01:54:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-23T08:52:09", + "net_rshares": 196185915, + "net_votes": 54, + "parent_author": "", + "parent_permlink": "life", + "percent_hbd": 10000, + "permlink": "ancient-mayan-wordpress-design", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "ancient-mayan-wordpress-design", + "title": "Ancient Mayan Wordpress Design!?!", + "total_payout_value": { + "amount": "23879", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 196185915 + }, + { + "abs_rshares": 0, + "active": "2016-09-09T11:25:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 7449, + "beneficiaries": [], + "body": "This was shot during a blizzard in Kit Carson Pass below Lake Tahoe. I couldn't leave so I took pictures. It was cold and the snow was falling almost horizontally and it was bright white. It got so bad a few times it was impossible to see more than a dozen feet away. \n\nhttp://geraldzmorse.com/images/steemit/Whiteout.jpg\n\nI find the contrast between the brilliant white and the colors of the trees intriguing .", + "cashout_time": "2016-10-09T22:54:12", + "category": "photography", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-09-08T22:00:09", + "curator_payout_value": { + "amount": "1308", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1177638, + "json_metadata": "{\"tags\":[\"photography\",\"nature\",\"art\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Whiteout.jpg\"]}", + "last_payout": "2016-09-09T22:54:12", + "last_update": "2016-09-08T23:05:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 47, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "blizzard-whiteout-in-the-forest", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "blizzard-whiteout-in-the-forest", + "title": "Blizzard Whiteout in the Forest", + "total_payout_value": { + "amount": "5959", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "32969357867", + "active": "2016-09-02T20:48:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 15688, + "beneficiaries": [], + "body": "http://geraldzmorse.com/images/steemit/Vimeo_logo-2.png3fformat3d1500w.png\n\n# Howdy folks, Z here... \n\nI am very happy to announce that steemit has now made it possible to directly embed high quality Vimeo clips within the iframe structure provided by Vimeo.\n\nSimply drop your embed code in the editor as you would pictures or a Youtube clip and it should work fine: \n
\n\nIf you are interested in the post where this short vignette lives from please take a look at the first post about my project: [Where Eagles Fly](http://goo.gl/cliI88) \n\nPlease don't feel compelled to vote on this post... I am simply sharing the news so that when new users search about Vimeo they will find it is possible!\n\nThank you Steemit crew! This is awesome!", + "cashout_time": "2016-10-03T02:28:12", + "category": "photography", + "children": 13, + "children_abs_rshares": "32969357867", + "created": "2016-09-02T00:23:30", + "curator_payout_value": { + "amount": "4357", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1092458, + "json_metadata": "{\"tags\":[\"photography\",\"story\",\"steemit\",\"art\",\"news\"],\"links\":[\"http://goo.gl/cliI88\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Vimeo_logo-2.png3fformat3d1500w.png\"]}", + "last_payout": "2016-09-03T02:28:12", + "last_update": "2016-09-02T04:05:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-20T19:56:00", + "net_rshares": "32969357867", + "net_votes": 52, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "filmmakers-of-steemit-rejoice-they-have-just-made-embedding-vimeo-in-your-posts-possible-yehaw", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "filmmakers-of-steemit-rejoice-they-have-just-made-embedding-vimeo-in-your-posts-possible-yehaw", + "title": "Filmmakers of Steemit Rejoice! Embedding Vimeo in your posts is now possible! Yehaw!", + "total_payout_value": { + "amount": "13992", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "32969357867" + }, + { + "abs_rshares": "140201312914", + "active": "2016-09-10T03:25:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 25890, + "beneficiaries": [], + "body": "This photo was shot from 9,500 feet up while I was flying towards the southwest after sunset. I am in the Flathead Mountains of Montana and the moisture in the air is condensing from the cool evening to create this mystical view of the mountains.\n\nhttp://geraldzmorse.com/images/steemit/FlatHeadatDusk.jpg\n\nThis is from a series of images I call \"Wilderness Alpenglow\". I enjoy how the image resembles classic Chinese or Japanese paintings of old.\n\nIf you want to see other work from my project **Where Eagles Fly** visit my first post [here](https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse) or second one [here](https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse).", + "cashout_time": "2016-10-06T03:47:51", + "category": "photography", + "children": 22, + "children_abs_rshares": "140201312914", + "created": "2016-09-04T19:31:03", + "curator_payout_value": { + "amount": "6541", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1126012, + "json_metadata": "{\"tags\":[\"photography\",\"travel\",\"art\",\"life\",\"nature\"],\"image\":[\"http://geraldzmorse.com/images/steemit/FlatHeadatDusk.jpg\"],\"links\":[\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\",\"https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse\"]}", + "last_payout": "2016-09-06T03:47:51", + "last_update": "2016-09-05T01:04:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-20T06:06:54", + "net_rshares": "140201312914", + "net_votes": 66, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "flathead-mountains-and-the-great-bear-wilderness-at-dusk", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "flathead-mountains-and-the-great-bear-wilderness-at-dusk", + "title": "Flathead Mountains and the Great Bear Wilderness at Dusk", + "total_payout_value": { + "amount": "21746", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "140201312914" + }, + { + "abs_rshares": 113157676, + "active": "2016-09-12T14:37:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 1047, + "beneficiaries": [], + "body": "# Isolated Rain Storm \nI came upon this strange isolated rain storm over the Great Sand Dunes when I was flying out over the San Luis Valley while filming Zapata Ranch. It was clear skies about the rain clouds and clear all around it... yet it was raining on this stretch of the Sangre de Cristo Range in the Rocky Mountains. \n\nhttp://geraldzmorse.com/images/steemit/GreatDunesRainStorm1.jpg\n
*Eastern side of the Great Sand Dunes National Park*
\n\nIn this photo you can clearly see the curving edge of the sand dunes boundary where the dunes delineate from the San Luis Valley floor. These are the tallest sand dunes in North America reaching heights of 750 feet (228m).\n\n# Sand From an Ancient Glacial Lake \n\nThe dunes were formed within the last 500,000 years from sand and soil deposits of the Rio Grande and its tributaries as they spread out through the San Luis Valley. Over the ages, the glaciers melting created a vast lake in the San Luis Valley... as this lake and the waters evaporated and drained to form the river, it left behind massive volumes of loose sand. Westerly winds then picked up sand particles from the lake and river flood plain and carried them across the valley floor. As the wind diminished in power before crossing the Sangre de Cristo Range, the sand deposited all along the eastern edge of the valley. As the sand stacked up over time it became what we see today, the Great Sand Dunes National Park. \n\n\nhttp://geraldzmorse.com/images/steemit/GreatDunesRainStorm2.jpg\n
*Western side of the Great Sand Dunes National Park*
\n\nIn the photo above taken from the same position as the previous photograph, you can see the small Mount Seven Peak and behind it the snow capped 13,200 (4,023m) Cleveland Peak of the Sangre de Cristo Mountain Range peeking through the rain shower.\n\n# Whipped By Fierce Winds\nThe wind continues to whip about and shape and reshape the dunes on a daily basis, and continue to increase the volume of sand and size of the dunes. These fierce winds are strong enough to move sand and small rocks from miles away across the valley. While the dunes don't actually change location or vary in size that often, the wind forms parabolic dunes that grow in the sand sheet, the outer area around the dunes, and migrate towards the main dune field, giving a very prominent beveling or warping visual effect, especially notable from up above where I fly.\n\nLocated near Alamosa, Colorado just north of the Nature Conservancy's Zapata Ranch the dunes are a great place to visit. To check out the National Parks Service website on the Great Dunes National Park go [here](https://www.nps.gov/grsa/index.htm). \n\nAnd to check out my previous exciting fly-in trip to the Zapata Ranch to visit Duke Phillips the Flying Cowboy, go [here](https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse).\n\nIf you're unfamiliar with my work please check out my introductory post [here](https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse). \n\nOk thanks, hope you enjoy this and yehaw!", + "cashout_time": "2016-10-10T18:51:39", + "category": "photography", + "children": 7, + "children_abs_rshares": 113157676, + "created": "2016-09-09T11:04:21", + "curator_payout_value": { + "amount": "203", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1182969, + "json_metadata": "{\"tags\":[\"photography\",\"nature\",\"story\",\"life\",\"travel\"],\"image\":[\"http://geraldzmorse.com/images/steemit/GreatDunesRainStorm1.jpg\",\"http://geraldzmorse.com/images/steemit/GreatDunesRainStorm2.jpg\"],\"links\":[\"https://www.nps.gov/grsa/index.htm\",\"https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse\",\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\"]}", + "last_payout": "2016-09-10T18:51:39", + "last_update": "2016-09-09T11:15:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-26T14:36:45", + "net_rshares": 113157676, + "net_votes": 69, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "isolated-rain-storm-on-the-great-sand-dunes-national-park", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "isolated-rain-storm-on-the-great-sand-dunes-national-park", + "title": "Rain Storm on the Great Sand Dunes National Park", + "total_payout_value": { + "amount": "807", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 113157676 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T04:09:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 3840, + "beneficiaries": [], + "body": "# Las Vegas Valley from the Sloan Mountains\n\nA rare perspective of the city sitting in the valley taken from above Sloan Mountains to the south. I never shoot images of cities or buildings, it's jut not my thing to do. I am an aerial wilderness photographer. However I got this while testing out a different camera.\n\nhttp://geraldzmorse.com/images/steemit/B6583414-Las-Vegas.jpg\n\nIn this uncommon point of view you can see that Las Vegas sits down in a valley, that is Gray Mountain in the distance and the foothills of Sloan Mountain in the foreground. To the bottom left, right above the small hills you can barely make out Henderson Executive Airport. \n\nThe image was captured late in the afternoon from an altitude of 4,500ft (1,371.6m) shooting towards the northeast.", + "cashout_time": "2016-10-12T14:32:39", + "category": "photography", + "children": 13, + "children_abs_rshares": 0, + "created": "2016-09-10T17:37:24", + "curator_payout_value": { + "amount": "791", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1198427, + "json_metadata": "{\"tags\":[\"photography\",\"travel\",\"art\",\"las-vegas\"],\"image\":[\"http://geraldzmorse.com/images/steemit/B6583414-Las-Vegas.jpg\"]}", + "last_payout": "2016-09-12T14:32:39", + "last_update": "2016-09-10T18:04:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 45, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "las-vegas-valley", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "las-vegas-valley", + "title": "Las Vegas in the Valley", + "total_payout_value": { + "amount": "2756", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "10027068167722", + "active": "2016-09-15T17:56:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 0, + "beneficiaries": [], + "body": "This is an unusual rock outcroping I photographed south of Mesa Verde, Colorado in the desert near my camp. I found the colors of the stone and desert sand juxtaposed against the background vermilion cliff walls and blue hued sky to be pleasing and relaxing. \n\nhttp://geraldzmorse.com/images/steemit/Mesa-Verde-Outcrop.jpg\n\nThis image is also from my Artistic Impression series where I use a digitizing tablet to lightly brush various filter effects into the image to give it a certain mysterious quality.", + "cashout_time": "2016-09-15T21:34:14", + "category": "photography", + "children": 11, + "children_abs_rshares": "10027068167722", + "created": "2016-09-14T14:46:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1243747, + "json_metadata": "{\"tags\":[\"photography\",\"art\",\"nature\",\"\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Mesa-Verde-Outcrop.jpg\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T15:28:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-28T14:50:51", + "net_rshares": "10001278717808", + "net_votes": 44, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "melting-rock", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "melting-rock", + "title": "Melting Rock", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "13144057225008877639", + "vote_rshares": "9951683621819" + }, + { + "abs_rshares": 1230392222, + "active": "2016-08-28T03:46:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 1363, + "beneficiaries": [], + "body": "http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\nFellow steemers ! \n\nMy experiment on Steemit was a success. I earned $2,184.74 \n\nThe posts automatically last only 24 hours. If many people like them and upvote then they extend an additional 12 hours for a total run of 36 hours. Which mine did. \n\nOnce the post run-time is finished the post was automatically moved out of the 5 categories it was tagged in and placed in my blog page. It is still available for viewing and people can still vote on it, you can find it on my blog page. This is a necessary function of the fairness and democratic operations of this amazing website!!! How awesome is this!?!\n\nThis test was primarily undertaken to review the marketing viability of my project to the public, to see if everyone liked the concept and content. From the responses at the bottom of the post which are permanent, I would think the answer is a resounding yes. \n\nMore to come from this experiment later. Suffice to say I have established a presence and become part of the community on the most powerful cutting edge - platform/community in this new and very exciting cryptocurrency-based content-support market. \n\nI have taken the funds, held some as steem cryptocurrency and transferred the rest onto a cryptocurrency exchange called Poloniex where I am holding steem dollars (SBD) and watching the various cryptocurrencies valuation. The current SBD will increase in value or at any time I can transfer these to bitcoin or any of a number of other currencies.\n\nThis is absolutely cool!!!Thank you to the 217 steemers that upvoted me and even to the 2 that downvoted it...I sort of would like to know why but it really does not matter. \n\nPlease continue to enjoy my blog and I would love to continue building support for my project from the steemit community. I am a now a firm believer and strong advocate for steemit. \n\nMore to follow.\n\nz", + "cashout_time": "2016-09-27T01:41:27", + "category": "introduceyourself", + "children": 13, + "children_abs_rshares": 1230392222, + "created": "2016-08-26T22:53:00", + "curator_payout_value": { + "amount": "420", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1005474, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"photography\",\"art\",\"music\",\"travel\"],\"image\":[\"http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\"]}", + "last_payout": "2016-08-28T01:41:27", + "last_update": "2016-08-27T18:42:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-11T03:46:21", + "net_rshares": 1230392222, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "my-first-real-post-was-a-success-and-i-would-like-to-share-the-story", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "my-first-real-post-was-a-success-and-i-would-like-to-share-the-story", + "title": "My first real post was a success and I would like to share the story.", + "total_payout_value": { + "amount": "1501", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 1230392222 + }, + { + "abs_rshares": "6808732560425", + "active": "2016-09-07T16:30:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 199, + "beneficiaries": [], + "body": "For my entries into the 6th steemit photo contest I've chosen 3 unusual formations to share.\n\nIf you don't know anything about my work please visit my introduction post: \nhttps://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse \n\n**Image 1: BLUE POINT BAY**\nThis image was taken above Blue Point Bay on Lake Mead, Nevada. A powerful rain storm had just passed over and the earth was still soaked. The sun was coming back out and these vibrant, rich colors are from the water soaked natural minerals reacting to the bright sunlight. The green areas along the edge are the shallow water of the lake. I am about 2,000 feet above the lake shooting straight down from the airplane.\n\nhttp://geraldzmorse.com/images/steemit/BuePointBay.jpg\n\n**Image 2: SP VOLCANO** \nThis is a volcano just north of Flagstaff, Arizona simply known as \"SP Volcano\". I have searched high and low and cannot find any history on how it got this name. Certainly the Navajo First Nations called it something but I couldn't find mention of it anywhere. I love that this is a perfect representation of time-stood-still. You can see the how lava flowed down from the volcano, spilling out across the desert, coming to a standstill where it froze in time.\n\nhttp://geraldzmorse.com/images/steemit/SPVolcano.jpg\n\n**Image 3: CASTLE PEAKS**\nThis is Castle Peaks on the New York Mountains in the Mojave Desert. When you are driving from Los Angeles on highway 15 to Las Vegas, you can see these peaks in the distance across the valley as you come down the last hill towards Primm, Nevada. I took this picture from about 1,000 feet above the ground and what struck me about the formation was the small replica formation that sits just below Castle Peak, mirroring it. It is like a miniature formation of the larger peaks! Very strange. \n\nhttp://geraldzmorse.com/images/steemit/CastlePeaksNorth.jpg\n\nOk Thanks and hope you enjoy the images. If you have not seen my original post explaining what I do please follow the link at the top and come on by! \n\nYehaw", + "cashout_time": "2016-09-28T02:59:57", + "category": "photography", + "children": 12, + "children_abs_rshares": "6808732560425", + "created": "2016-08-27T23:27:30", + "curator_payout_value": { + "amount": "41", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1019772, + "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"art\",\"travel\"],\"links\":[\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\"]}", + "last_payout": "2016-08-29T02:59:57", + "last_update": "2016-08-28T07:40:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-12T05:58:45", + "net_rshares": "6808732560425", + "net_votes": 30, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "my-steemitphotochallenge-entry-for-contest-6-by-zedekiah-morse", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "my-steemitphotochallenge-entry-for-contest-6-by-zedekiah-morse", + "title": "SteemitPhotoChallenge Entry #6 - Unusual Formations", + "total_payout_value": { + "amount": "212", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "6808732560425" + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json index 023ade2b..8bd185f7 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 608846, - "author": "a-m3001", - "permlink": "how-i-managed-depression-and-work", - "category": "story", - "parent_author": "", - "parent_permlink": "story", - "title": "How I managed depression and work", - "body": "Hi, I'm A.M for now, I'm in my mid-20s and want to share my story with working and facing this thing called life after I watched a lot of YouTubers like Thomas James \"TomSka\" David Brown “boyinaband” and many others who have very openly shared their hardships, they have inspired me to write this….. Whatever this is.\nI don't consider myself a good writer so bare with me here.\nTo try to keep this post organized and make sense I'll highlight the point I want to talk about and tell the relevant part of my story, you can connect the pieces all together at the end.\n\n**First how am I?** \nI grow up in the countryside I went to normal school when I was yang, because I was the quiet introvert and wasn't from the town I was in I got bullied a lot for most of my time at school, I got through school time knowing just two friends, I was OK with it.\nI genuinely lost interest in school when I was in the ninth grade It seemed more like a memory test than a way of learning so I started looking for ways to make money, \"why waste time learning things irrelevant in real life if I can make money now\" my naive 16 years old self said, don't get me wrong I didn't think I was done with learning I just wanted to learn in my own way, and I didn't stop school, now I'm in part time Business school, so back then I started looking for any way to make money in the last 5 year I tried: working in sales for over 2 years, selling products online, becoming instructor online, worked as SEO & social media consultant, tried starting my own business for 4 times, and for the last year and half I taught myself how to program and how to use Unity game engine and now I'm working on my first game, I can easily and proudly say that I didn't succeed at any of what I did so far, but I've learned a lot every time and I would do it all over again if I had the chance.\nThe process of picking myself up every single freaking time was a living hell and I got desperate many times.\nbecause I saw a lot of people feeling relevant to what David said in his video I want to share how I managed to keep my sanity and my opinion about some point he brought in his video.\n\n\n**Not thinking your work is good enough:**\nIs that really a bad thing? not being satisfied with what you just accomplished is a sign that you always look forward to what you still can do.\nI remember after I published my first course on Udemy I got invited to a hangout and I went for it I thought I'll give myself some slack, while I was there someone shouted out \"this guy here just published his first course let all give him a clap shall we\" for some reason he thought that was a good idea, I don't think I can blame him his intentions were good, I never tried to put a smile as hard as I did that moment I guess I just didn't want to look like a selfish prick, but the truth that I wasn't happy about what I accomplished I was thinking about my bad English poor structure of the course and was I being a sellout for trying to sell my knowledge? halfway of creating the course, I was already thinking about 5 other things I wanted to do next.\nI think there's nothing wrong about not being satisfied with what you finish, I think It's a good sign of an ambitious creator.\nWhen you first make the decision to accomplish something It looks like that godly thing that you think It would feel good to have or do, but when you start turning that big sexy thing to a small to-do list somewhere the appeal you had to that thing will disappear to a certain point, it's not that godly sexy thing you thought about before it's becoming a part of your routine now you know the process of doing that thing It's not a mystery anymore.\nI think that's why they say: \"It's about the journey, not the destination\".\n\n\n**Not taking care of yourself:**\nIt's hard to keep taking care of yourself to others people standards, whether it's about looking ripped putting makeup or buying the latest clothes, instead find your own save point and move forward from there if you feel the need to.\nWhen I was working in seals I had to look my best most of the time's which was exhausting more than the work itself and what made it worst is that some coworkers starting hinting that I need to start working out to look sharper and more confident.\nBecause I was desperate for results from my work I started going to the gym and I got stuck at joining for a month or two then giving up for half a year couple of times, every time I stopped going to the gym I over beat myself saying that I need this for my work, I need more money to do a lot of things, if this work didn't go well what else Am I going to do, eventually I usually took it out on food, I don't even want to start thinking what would have happened to me if my body was able to store fat.\nTrying to take care of yourself to others standards can be very exhausting, I felt down because I was putting so much effort in things I don't really care about to get others approval, I genuinely don't care about having a ripped body, it would look cool sure but I'm not willing to put all that effort into health and looks at least for now, who knows maybe in the future things will be better and I'll be willing to put the effort necessary to have 6 pack abs (wink wink ladies).\nNowadays I eat better than I used to, I still eat some junk food but things are much much better than they were 2 years ago, when I fell down I still go buy and drink a liter of Pepsi but at some point that was my morning coffee, as for my looks I cut my hair very short so I would have one less thing to worry about in the morning, I shave my beard once every couple of weeks I change my cloth every two or three days even if I didn't go out.\nThe point is I take care of myself for my own sack, It was much worse before and I'll always keep working to improve pit by pit.\nIt's about building habits not getting motivated for a couple of weeks then beating yourself for not being able to keep up.\n\n\n**Not mastering one skill:**\nI worked in sales, instructed online, worked as SEO and social media consultant, self taught myself how to program and make games but I don’t think I’m the right person to talk about this, all I’m saying that if you didn’t find that one true call that is right for you, you might be a “multipotentialite” if you want to know what exactly does this mean I urge you to watch Emilie talk at TedX\nhttps://www.youtube.com/watch?v=QJORi5VO1F8\nAnd check the blog too if you want to know more \nhttp://puttylike.com/\n\n**Everything happens for a reason........ or does it?**\nWhen I was young I was fortunate to know a good old religious man, I don’t know about your perspective about religions but hear me out this isn’t a sermon, I still remember when he tried to teach me that everything happens for a reason I was like “WHAT……. Oh really, then what is the reason for this and this and that” my question didn’t stop and I wasn’t asking nicely either yet, somehow he was calm about it like some kind of monk, I don’t know if I ruined his day or not but I feel bad for taking the world misery out on him that day, he was just a simple man who was doing what he think is good for others, his intentions were good but unfortunately for him I wasn’t a simple person, I overthink everything and everyone, it’s my blessing and my curse, later I told my family about him and I was surprised that they knew him, apparently everyone knows each other in the countryside, they told me about what he was facing lately personally, financially, and emotionally, I didn’t believe that someone who is facing all that isn’t depressed or angry and even trying to do good for others at least by his believes, I wanted to know more about him he got my interest, I wanted to know if he’s an imposter who is just putting a good face or not because a part of me didn’t believe how can he be that good, I kept asking about him from time to time and sometimes I even went to his “lessons”, eventually I went to face him with what I know about him like a detective facing a criminal, the crime of being that simple yet trying to be better than me, It’s pathetic I know It’s just how my brain works sometimes, because I used to take pride of being logical about everything and not believing in anything without questioning it, it bothered me how can he be at peace with his life and I’m not even that he’s facing a lot more than I’m, I faced him and told him everything then asked how can you be this calm about everything that is happening in your life, he had a faint smile and said “I don’t know the reason for everything that is happening right now but everything happens for a reason” I remember holding my fist hard and walking away, maybe I was holding my fist trying not to hit him for not being realistic like me or probably not to beat myself for not being half the man that he was.\nI don’t know about your perspective about religions and I’m not here to tell you about mine but I respect that some religions teach that everything happens for a reason, is it the truth? Does everything happens for a reason? I don’t know, I don’t think that is even the point, It’s silly to even get in an argument about this because no one can be sure about it, it’s simply just a belief, it’s simply teach you to not overthink about the reasons for everything around you, just learn from it if you can and focus on what you can do, it’s kind of funny for me to tell you not to overthink about somethings because I’m sure my 19 year old me would punch me right in the face, but it’s just too draining and exhausting to try to find a reason for every bad thing that have happened to me or to others.\nIn the last three years two of my best friends died, the first one I knew for about nine years and the other one for around five, both killed, both in a way they didn’t deserve to, each time I had to force myself to focus on the 0.0000001% full part of the cup or else I would have lose my sanity.\nI would hate to think what would be my thought process if someone tried to sell me religion like a product, some of them would be like “Hi son, you should follow my beliefs because I’m 100% sure that I’m right and everybody else is wrong and if you don’t, well you’re FU**ED” that would have disfigured some of the beliefs that helped me get better.\nControlling your stream of thoughts will be the hardest thing you’ll ever have to do in your life, but if mastered it you’ll become unstoppable.\n\n\nI’ve been getting into the game industry for around year and half now, I don’t have any experiance in the field but I’ve other experiences that many don’t, working in sales made me learn a lot about people's motivations and incentives, I saw a lot of people jump to make purchase while other chicken out last minute, you don’t get to learn about this in a book or an NLP course, you only get to learn this experience by working in sales first hand, working as an SEO and social media consultant made me care about the little details like posting in the right social medias that is more relevant to your audience, more isn’t always better, choosing the right words colors and timing for best result, sometimes modifying your content for a better marketing or not going into a certain niche even if there’s an audience for it because it doesn’t suit your brand, teaching online made me learn that the selling point isn’t the end goal, helping and mentoring students even after they have purchased the course was way more important than I thought, the feedback I got about the course was crucial to take the course to the next level and some student even helped me with some marketing.\nIf you know anything about the mobile game industry you can see how these experiences can be helpful, I can imagine the kind of journey I want to create for the player because I can build the motivations and incentives I want for him, while I’m building the player journey I’ll always keep in mind to put the monetization and ads the right way so all of them can work seamlessly together for a better player experience, and taking care of existing players and community will always be a priority, I wasn’t happy and cheerful when I had to learn these experiences the hard way, I thought I was just failing, I even remember crying myself to sleep every time I decided to pull the plug on something I was working on, but eventually It worked out somehow I think.\n“you can't connect the dots looking forward, you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something - your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life”.\nSteve Jobs\n\n\nI want to share some of the tricks I used that helped my in general to get my life together:\n\n**Music**\nlisten to cheerful music, even if it might not be exactly what you listen to usually but try them for a while, my favorite type or music is Rock and Metal it’s loud and make me feel empowered but sometimes it's not what I need to change my mood so I started listening to electro music mostly Drum & bass, I didn’t like it at first, I’m human I don’t like to change, but forcing myself to listen to it for while change my perspective about it and I started listening to it while I’m working, and it worked.\n\n\n**habits not motivation**\nWe’re slaves to our habits, it’s exhausting to do something that’s you’re not used to for quite a while, so invest your effort and time to build your habits pit by pit no matter how slow it will take, measure your progress and celebrate your success no matter how small they’re, it’ll make all the difference in your life in the long term.\n\n**work in a group**\nNo matter how introverted person you think you’re, you’re still human at the end of day and you need your dose of human interaction so try to work in group if you can, if you don’t have that luxury (like me) work out side from time to time, library, coffee shop, parks all works, changing your surrounding and environment can change your mood, you can try changing your room\\office decor every couple of weeks too.\n\n**warm-blooded pet**\nGet a warm-blooded pet it helps, I tried fish and turtles but didn’t really work for me they just stared at me with their empty eyes, I have a cat for two year now and It helped, maybe it’s having the sense of that there is a creature that needs you to look after him, it’s helped me not to feel completely unworthy in some bad day.\n\n\nFinally I hope this help you in any way it can, and hope it will find its way to all who needs it.", - "json_metadata": "{\"tags\":[\"story\",\"philosophy\",\"life\",\"psychology\",\"secret-writer\"],\"links\":[\"https://www.youtube.com/watch?v=QJORi5VO1F8\"]}", - "last_update": "2016-08-15T05:28:12", - "created": "2016-08-15T04:53:33", - "active": "2016-08-15T05:28:12", - "last_payout": "2016-09-14T16:58:03", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a-m3001", - "root_permlink": "how-i-managed-depression-and-work", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 497962, - "author": "a-man", - "permlink": "re-jamiecrypto-raising-leaders-instead-of-rulers-20160807t213425757z", - "category": "homeschooling", - "parent_author": "jamiecrypto", - "parent_permlink": "raising-leaders-instead-of-rulers", - "title": "", - "body": "Trying to repost to FB", - "json_metadata": "{\"tags\":[\"homeschooling\"]}", - "last_update": "2016-08-07T21:34:24", - "created": "2016-08-07T21:34:24", - "active": "2016-08-07T21:34:24", - "last_payout": "2016-09-07T09:52:42", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "jamiecrypto", - "root_permlink": "raising-leaders-instead-of-rulers", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 359861, - "author": "a-spears", - "permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", - "category": "life", - "parent_author": "agent", - "parent_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", - "title": "", - "body": "Finally someone is saying it out loud. thank you!!", - "json_metadata": "{\"tags\":[\"life\"]}", - "last_update": "2016-07-30T19:38:00", - "created": "2016-07-30T19:37:48", - "active": "2016-07-30T21:34:27", - "last_payout": "2016-08-30T10:16:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "agent", - "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 72421, - "author": "a-spears", - "permlink": "re-ashleybr-test-20160713t203411015z", - "category": "travel", - "parent_author": "ashleybr", - "parent_permlink": "test", - "title": "", - "body": "add katie-lynn boulard on FB, she's my friend and she's currently doing an exchange in bangkok. She's really sweet and she said you can come to hers for the evening if you want to have some company. she only has a room so no bed for you :/ but at least something, I'm sure she can give you a meal and just some company. :))", - "json_metadata": "{\"tags\":[\"travel\"]}", - "last_update": "2016-07-13T20:34:12", - "created": "2016-07-13T20:34:12", - "active": "2016-07-13T21:01:48", - "last_payout": "2016-08-25T12:51:45", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 20, - "root_author": "ashleybr", - "root_permlink": "test", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 431883, - "author": "a11at", - "permlink": "ai-revolution-101", - "category": "steemit", - "parent_author": "", - "parent_permlink": "steemit", - "title": "AI Revolution 101", - "body": "https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\n\nAI Revolution 101\nOur last invention, greatest nightmare, or pathway to utopia?\nAbout\nThis essay, originally published in eight short parts, aims to condense the current knowledge on Artificial Intelligence. It explores the state of AI development, overviews its challenges and dangers, features work by the most significant scientists, and describes the main predictions of possible AI outcomes. This project is an adaptation and major shortening of the two–part essay AI Revolution by Tim Urban of Wait But Why. I shortened it by a factor of 3, recreated all images, and tweaked it a bit. Read more on why/how I wrote it here.\nIntroduction\nAssuming that human scientific activity continues without major disruptions, artificial intelligence may become either the most positive transformation of our history or, as many fear, our most dangerous invention of all. AI research is on a steady path to develop a computer that has cognitive abilities equal to the human brain, most likely within three decades (timeline in chapter 5). From what most AI scientists predict, this invention may enable very rapid improvements (called fast take-off), toward something much more powerful — Artificial Super Intelligence — an entity smarter than all of humanity combined (more on ASI in chapter 3). We are not talking about some imaginary future. The first level of AI development is gradually appearing in the technology we use everyday (newest AI advancements in chapter 2). With every coming year these advancements will accelerate and the technology will become more complex, addictive, and ubiquitous. We will continue to outsource more and more kinds of mental work to computers, disrupting every part of our reality: the way we organize ourselves and our work, form communities, and experience the world.\nExponential Growth\nThe Guiding Principle Behind Technological Progress\nTo more intuitively grasp the guiding principles of AI revolution, let’s first step away from scientific research. Let me invite you to take part in a story. Imagine that you’ve received a time machine and been given a quest to bring somebody from the past. The goal is to shock them by showing them the technological and cultural advancements of our time, to such a degree that this person would perform SAFD (Spinning Around From Disbelief).\n\nSo you wonder which era should you time-travel to, and decide to hop back around 200 years. You get to the early 1800s, retrieve a guy and bring him back to 2016. You “…walk him around and watch him react to everything. It’s impossible for us to understand what it would be like for him to see shiny capsules racing by on a highway, talk to people who had been on the other side of the ocean earlier in the day, watch sports that were being played 1,000 miles away, hear a musical performance that happened 50 years ago, and play with …[a] magical wizard rectangle that he could use to capture a real-life image or record a living moment, generate a map with a paranormal moving blue dot that shows him where he is, look at someone’s face and chat with them even though they’re on the other side of the country, and worlds of other inconceivable sorcery.”¹ It doesn’t take much. After two minutes he is SAFDing.\nNow, both of you want to try the same thing, see somebody Spinning Around From Disbelief, but in your new friend’s era. Since 200 years worked, you jump back to the 1600s and bring a guy to the 1800s. He’s certainly genuinely interested in what he sees. However, you feel it with confidence — SAFD will never happen to him. You feel that you need to jump back again, but somewhere radically further. You settle on rewinding the clock 15,000 years, to the times “…before the First Agricultural Revolution gave rise to the first cities and the concept of civilisations.”² You bring someone from the hunter-gatherer world and show him “…the vast human empires of 1750 with their towering churches, their ocean-crossing ships, their concept of being “inside,” and their enormous mountain of collective, accumulated human knowledge and discovery”³ — in forms of books. It doesn’t take much. He is SAFDing in the first two minutes.\nNow there are three of you, enormously excited to do it again. You know that it doesn’t make sense to go back another 15,000, 30,000 or 45,000 years. You have to jump back, again, radically further. So you pick up a guy from 100,000 years ago and you you walk with him into large tribes with organized, sophisticated social hierarchies. He encounters a variety of hunting weapons, sophisticated tools, sees fire and for the first time experiences language in the form of signs and sounds. You get the idea, it has to be immensely mind-blowing. He is SAFDing after two minutes.\nSo what happened? Why did the last guy had to hop → 100,000 years, the next one → 15,000 years, and the guy who was hopping to our times only → 200 years?\n\nhttps://cdn-images-1.medium.com/max/2000/1*Wbd0td3DqD3pJo7_YHjkbQ.gif\n\n“This happens because more advanced societies have the ability to progress at a faster rate than less advanced societies — because they’re more advanced. [1800s] humanity knew more and had better technology…”⁴, so it’s no wonder they could make further advancements than humanity from 15,000 years ago. The time to achieve SAFD shrank from ~100,000 years to ~200 years and if we look into the future it will rapidly shrink even further. Ray Kurzweil, AI expert and scientist, predicts that a “…20th century’s worth of progress happened between 2000 and 2014 and that another 20th century’s worth of progress will happen by 2021, in only seven years⁵…A couple decades later, he believes a 20th century’s worth of progress will happen multiple times in the same year, and even later, in less than one month⁶…Kurzweil believes that the 21st century will achieve 1,000 times the progress of the 20th century.”⁷\n“Logic also suggests that if the most advanced species on a planet keeps making larger and larger leaps forward at an ever-faster rate, at some point, they’ll make a leap so great that it completely alters life as they know it and the perception they have of what it means to be a human. Kind of like how evolution kept making great leaps toward intelligence until finally it made such a large leap to the human being that it completely altered what it meant for any creature to live on planet Earth. And if you spend some time reading about what’s going on today in science and technology, you start to see a lot of signs quietly hinting that life as we currently know it cannot withstand the leap that’s coming next.”⁸\nThe Road to Artificial General Intelligence\nBuilding a Computer as Smart as Humans\nArtificial Intelligence, or AI, is a broad term for the advancement of intelligence in computers. Despite varied opinions on this topic, most experts agree that there are three categories, or calibers, of AI development. They are:\nANI: Artificial Narrow Intelligence\n1st intelligence caliber. “AI that specializes in one area. There’s AI that can beat the world chess champion in chess, but that’s the only thing it does.”⁹\nAGI: Artificial General Intelligence\n2nd intelligence caliber. AI that reaches and then passes the intelligence level of a human, meaning it has the ability to “reason, plan, solve problems, think abstractly, comprehend complex ideas, learn quickly, and learn from experience.”¹⁰\nASI: Artificial Super Intelligence\n3rd intelligence caliber. AI that achieves a level of intelligence smarter than all of humanity combined — “ranging from just a little smarter … to one trillion times smarter.”¹¹\n\nhttps://cdn-images-1.medium.com/max/800/1*5AkzXZJoVXRrGNSOO8ZojQ.gif\n\nWhere are we currently?\n“As of now, humans have conquered the lowest caliber of AI — ANI — in many ways, and it’s everywhere:”¹²\n“Cars are full of ANI systems, from the computer that figures out when the anti-lock brakes kick in, to the computer that tunes the parameters of the fuel injection systems.”¹³\n“Google search is one large ANI brain with incredibly sophisticated methods for ranking pages and figuring out what to show you in particular. Same goes for Facebook’s Newsfeed.”¹⁴\nEmail spam filters “start off loaded with intelligence about how to figure out what’s spam and what’s not, and then it learns and tailors its intelligence to your particular preferences.”¹⁵\nPassenger planes are flown almost entirely by ANI, without the help of humans.\n“Google’s self-driving car, which is being tested now, will contain robust ANI systems that allow it to perceive and react to the world around it.”¹⁶\n“Your phone is a little ANI factory … you navigate using your map app, receive tailored music recommendations from Pandora, check tomorrow’s weather, talk to Siri.”¹⁷\n“The world’s best Checkers, Chess, Scrabble, Backgammon, and Othello players are now all ANI systems.”¹⁸\n“Sophisticated ANI systems are widely used in sectors and industries like military, manufacturing, and finance (algorithmic high-frequency AI traders account for more than half of equity shares traded on US markets¹⁹).”²⁰\n“ANI systems as they are now aren’t especially scary. At worst, a glitchy or badly-programed ANI can cause an isolated catastrophe like”²¹ a plane crash, a nuclear power plant malfunction, or “a financial markets disaster (like the 2010 Flash Crash when an ANI program reacted the wrong way to an unexpected situation and caused the stock market to briefly plummet, taking $1 trillion of market value with it, only part of which was recovered when the mistake was corrected) … But while ANI doesn’t have the capability to cause an existential threat, we should see this increasingly large and complex ecosystem of relatively-harmless ANI as a precursor of the world-altering hurricane that’s on the way. Each new ANI innovation quietly adds another brick onto the road to AGI and ASI.”²²\n\nhttps://cdn-images-1.medium.com/max/2000/1*Ia8wUuZPxpUNzvUjNRsxpA.gif\n\nWhat’s Next? Challenges Behind Reaching AGI\n“Nothing will make you appreciate human intelligence like learning about how unbelievably challenging it is to try to create a computer as smart as we are … Build a computer that can multiply ten-digit numbers in a split second — incredibly easy. Build one that can look at a dog and answer whether it’s a dog or a cat — spectacularly difficult. Make AI that can beat any human in chess? Done. Make one that can read a paragraph from a six-year-old’s picture book and not just recognise the words but understand the meaning of them? Google is currently spending billions of dollars trying to do it.”²³\nWhy are “hard things — like calculus, financial market strategy, and language translation … mind-numbingly easy for a computer, while easy things — like vision, motion, movement, and perception — are insanely hard for it”²⁴?\n“Things that seem easy to us are actually unbelievably complicated. They only seem easy because those skills have been optimized in us (and most animals) by hundreds of million years of animal evolution. When you reach your hand up toward an object, the muscles, tendons, and bones in your shoulder, elbow, and wrist instantly perform a long series of physics operations, in conjunction with your eyes, to allow you to move your hand in a straight line through three dimensions … On the other hand, multiplying big numbers or playing chess are new activities for biological creatures and we haven’t had any time to evolve a proficiency at them, so a computer doesn’t need to work too hard to beat us.”²⁵\n\nhttps://cdn-images-1.medium.com/max/1200/0*E-qdF22nxvOrVPxP.\n\nWhen you look at picture A, “you and a computer both can figure out that it’s a rectangle with two distinct shades, alternating. Tied so far.”²⁶\nPicture B. “You have no problem giving a full description of the various opaque and translucent cylinders, slats, and 3-D corners, but the computer would fail miserably. It would describe what it sees — a variety of two-dimensional shapes in several different shades — which is actually what’s there.”²⁷ “Your brain is doing a ton of fancy shit to interpret the implied depth, shade-mixing, and room lighting the picture is trying to portray.”²⁸\nLooking at picture C, “a computer sees a two-dimensional white, black, and gray collage, while you easily see what it really is”²⁹ — a photo of a girl and a dog standing on a rocky shore.\n“And everything we just mentioned is still only taking in visual information and processing it. To be human-level intelligent, a computer would have to understand things like the difference between subtle facial expressions, the distinction between being pleased, relieved and content”³⁰.\nHow will computers reach even higher abilities like complex reasoning, interpreting data, and associating ideas from separate fields (domain-general knowledge)?\n“Building skyscrapers, putting humans in space, figuring out the details of how the Big Bang went down — all far easier than understanding our own brain or how to make something as cool as it. As of now, the human brain is the most complex object in the known universe.”³¹\nBuilding Hardware\nIf an artificial intelligence is going to be as intelligent as the human brain, one crucial thing has to happen — the AI “needs to equal the brain’s raw computing capacity. One way to express this capacity is in the total calculations per second the brain could manage.”³²\n\nThe challenge is that currently only a few of the brain’s regions are precisely measured. However, Ray Kurzweil, has developed a method for estimating the total cps of the human brain. He arrived at this estimate by taking the cps from one brain region and multiplying it proportionally to the weight of that region, compared to the weight of the whole brain. “He did this a bunch of times with various professional estimates of different regions, and the total always arrived in the same ballpark — around 10¹⁶, or 10 quadrillion cps.”³³\n“Currently, the world’s fastest supercomputer, China’s Tianhe-2, has actually beaten that number, clocking in at about 34 quadrillion cps.”³⁴ But Tianhe-2 is also monstrous, “taking up 720 square meters of space, using 24 megawatts of power (the brain runs on just 20 watts), and costing $390 million to build. Not especially applicable to wide usage, or even most commercial or industrial usage yet.”³⁵\n“Kurzweil suggests that we think about the state of computers by looking at how many cps you can buy for $1,000. When that number reaches human-level — 10 quadrillion cps — then that’ll mean AGI could become a very real part of life.”³⁶\nCurrently we’re only at about 10¹⁰ (10 trillion) cps per $1,000. However, historically reliable Moore’s Law states “that the world’s maximum computing power doubles approximately every two years, meaning computer hardware advancement, like general human advancement through history, grows exponentially³⁷ … right on pace with this graph’s predicted trajectory:”³⁸\n\nhttps://cdn-images-1.medium.com/max/800/1*4qcqwbsWjvWh-BWPnAsp6g.gif\n\nThis dynamic “puts us right on pace to get to an affordable computer by 2025 that rivals the power of the brain … But raw computational power alone doesn’t make a computer generally intelligent — the next question is, how do we bring human-level intelligence to all that power?”³⁹\nBuilding Software\nThe hardest part of creating AGI is learning how to develop its software. “The truth is, no one really knows how to make it smart — we’re still debating how to make a computer human-level intelligent and capable of knowing what a dog and a weird-written B and a mediocre movie is.”⁴⁰ But there are a couple of strategies. These are the three most common:\nCopy how the brain works.\nThe most straight-forward idea is to plagiarize the brain, and build the computer’s architecture with close resemblance to how a brain is structured. One example “is the artificial neural network. It starts out as a network of transistor ‘neurons,’ connected to each other with inputs and outputs, and it knows nothing — like an infant brain. The way it ‘learns’ is it tries to do a task, say handwriting recognition, and at first, its neural firings and subsequent guesses at deciphering each letter will be completely random. But when it’s told it got something right, the transistor connections in the firing pathways that happened to create that answer are strengthened; when it’s told it was wrong, those pathways’ connections are weakened. After a lot of this trial and feedback, the network has, by itself, formed smart neural pathways and the machine has become optimized for the task.”⁴¹\nThe second, more radical approach to plagiarism is whole brain emulation. Scientists take a real brain, cut it into a large number of tiny slices to look at the neural connections and replicate them in a computer as software. If that method is ever successful, we will have “a computer officially capable of everything the brain is capable of — it would just need to learn and gather information … How far are we from achieving whole brain emulation? Well so far, we’ve just recently been able to emulate a 1mm-long flatworm brain, which consists of just 302 total neurons.”⁴² To put this into perspective, the human brain consists of 86 billion neurons linked by trillions of synapses.\n2. Introduce evolution to computers.\n“The fact is, even if we can emulate a brain, that might be like trying to build an airplane by copying a bird’s wing-flapping motions — often, machines are best designed using a fresh, machine-oriented approach, not by mimicking biology exactly.”⁴³ If the brain is just too complex for us to digitally replicate, we could try to emulate evolution instead. This uses a process called genetic algorithms. “A group of computers would try to do tasks, and the most successful ones would be bred with each other by having half of each of their programming merged together into a new computer. The less successful ones would be eliminated.”⁴⁴ Speed and a goal-oriented approach are the advantages that artificial evolution has over biological evolution. “Over many, many iterations, this natural selection process would produce better and better computers. The challenge would be creating an automated evaluation and breeding cycle so this evolution process could run on its own.”⁴⁵\n3. “Make this whole thing the computer’s problem, not ours.”⁴⁶\nThe last concept is the simplest, but probably the scariest of them all. “We’d build a computer whose two major skills would be doing research on AI and coding changes into itself — allowing it to not only learn but to improve its own architecture. We’d teach computers to be computer scientists so they could bootstrap their own development.”⁴⁷ This is the likeliest way to get AGI soon that we know of.\nAll these software advances may seem slow or a little bit intangible, but as it is with the sciences, one minor innovation can suddenly accelerate the pace of developments. Kind of like the aftermath of the Copernican revolution — the discovery that suddenly made all the complicated mathematics of the planets’ trajectories much easier to calculate, which enabled a multitude of other innovations. Also, the “exponential growth is intense and what seems like a snail’s pace of advancement can quickly race upwards.”⁴⁸\n\nhttps://cdn-images-1.medium.com/max/1200/1*BHwAlKJFYwKYEzZlitNTvQ.gif\n\nThe Road to Artificial Super Intelligence\nAn Entity Smarter than all of Humanity Combined\nIt’s very real that at some point we will achieve AGI: software that has achieved human-level, or beyond human-level, intelligence. Does this mean that at that very moment the computers will be equally capable as us? Actually, not at all — computers will be way more efficient. Because of the fact that they are electronic, they will have following advantages:\nSpeed. “The brain’s neurons max out at around 200 Hz, while today’s microprocessors … run at 2 GHz, or 10 million times faster.”⁵¹\nMemory. Forgetting or confusing things is much harder in an artificial world. Computers can memorize more things in one second than a human can in ten years. A computer’s memory is also more precise and has a much greater storage capacity.\nPerformance. “Computer transistors are more accurate than biological neurons, and they’re less likely to deteriorate (and can be repaired or replaced if they do). Human brains also get fatigued easily, while computers can run nonstop, at peak performance, 24/7.”⁵²\nCollective capability. Group work is ridiculously challenging because of time-consuming communication and complex social hierarchies. The bigger the group gets, the slower the output of each person becomes. AI, on the other hand, isn’t biologically constrained to one body, won’t have human cooperation problems, and is able to synchronize and update its own operating system.\nIntelligence Explosion\nWe need to realize that AI “wouldn’t see ‘human-level intelligence’ as some important milestone — it’s only a relevant marker from our point of view — and wouldn’t have any reason to ‘stop’ at our level. And given the advantages over us that even human intelligence-equivalent AGI would have, it’s pretty obvious that it would only hit human intelligence for a brief instant before racing onwards to the realm of superior-to-human intelligence.”⁵³\nThe true distinction between humans and ASI wouldn’t be its advantage in intelligence speed, but “in intelligence quality — which is something completely different. What makes humans so much more intellectually capable than chimps isn’t a difference in thinking speed — it’s that human brains contain a number of sophisticated cognitive modules that enable things like complex linguistic representations or longterm planning or abstract reasoning, that chimps’ brains do not have. Speeding up a chimp’s brain by thousands of times wouldn’t bring him to our level — even with a decade’s time of learning, he wouldn’t be able to figure out how to … ”⁵⁴ assemble a semi-complicated Lego model by looking at its manual — something a young human could achieve in a few minutes. “There are worlds of human cognitive function a chimp will simply never be capable of, no matter how much time he spends trying.”⁵⁵\n“And in the scheme of the biological intelligence range … the chimp-to-human quality intelligence gap is tiny.”⁵⁶\n\nhttps://cdn-images-1.medium.com/max/800/1*vnVWATTAMCwfnJu_iZn2RQ.jpeg\n\nIn order to render how big a deal it would be to exist with something that has a higher quality of intelligence than us, we need to imagine AI on the intelligence staircase two steps above us — “its increased cognitive ability over us would be as vast as the chimp–human gap … And like the chimp’s incapacity to ever absorb …”⁵⁷ what kind of magic happens in the mechanism of a doorknob — “we will never be able to even comprehend the things … [a machine of that intelligence] can do, even if the machine tried to explain them to us … And that’s only two steps above us.”⁵⁸\n“A machine on the second-to-highest step on that staircase would be to us as we are to ants.”⁵⁹ “Superintelligence of that magnitude is not something we can remotely grasp, any more than a bumblebee can wrap its head around Keynesian Economics. In our world, smart means a 130 IQ and stupid means an 85 IQ — we don’t have a word for an IQ of 12,952.”⁶⁰\n“But the kind of superintelligence we’re talking about today is something far beyond anything on this staircase. In an intelligence explosion — where the smarter a machine gets, the quicker it’s able to increase its own intelligence — a machine might take years to rise from … ”⁶¹ the intelligence of an ant to the intelligence of the average human, but it might take only another 40 days to become Einstein-smart. When that happens, “it works to improve its intelligence, with an Einstein-level intellect, it has an easier time and can make bigger leaps. These leaps will make it much smarter than any human, allowing it to make even bigger leaps.”⁶²\nFrom then on, following the rule of exponential advancements and utilizing the speed and efficiency of electrical circuits, it may perhaps take only 20 minutes to jump another step, “and by the time it’s ten steps above us, it might be jumping up in four-step leaps every second that goes by. Which is why we need to realize that it’s distinctly possible that very shortly after the big news story about the first machine reaching human-level AGI, we might be facing the reality of coexisting on the Earth with something that’s here on the staircase (or maybe a million times higher):”⁶³\n\nhttps://cdn-images-1.medium.com/max/800/0*LdJxmWCjSdweUKvb.\n\n“And since we just established that it’s a hopeless activity to try to understand the power of a machine only two steps above us, let’s very concretely state once and for all that there is no way to know what ASI will do or what the consequences will be for us. Anyone who pretends otherwise doesn’t understand what superintelligence means.”⁶⁴\n“If our meager brains were able to invent wifi, then something 100 or 1,000 or 1 billion times smarter than we are should have no problem controlling the positioning of each and every atom in the world in any way it likes, at any time — everything we consider magic, every power we imagine a supreme God to have will be as mundane an activity for the ASI as flipping on a light switch is for us.”⁶⁵\n“As far as we’re concerned, if an ASI comes into being, there is now an omnipotent God on Earth — and the all-important question for us is: Will it be a good god?”⁶⁶\nLet’s start from the brighter side of the story.\nHow Can ASI Change our World?\nSpeculations on Two Revolutionary Technologies\nNanotechnology\nNanotechnology is an idea that comes up “in almost everything you read about the future of AI.”⁶⁷ It’s the technology that works at the nano scale — from 1 to 100 nanometers. “A nanometer is a millionth of a millimeter. 1 nm–100 nm range encompasses viruses (100 nm accross), DNA (10 nm wide), and things as small as molecules like hemoglobin (5 nm) and medium molecules like glucose (1 nm). If/when we conquer nanotechnology, the next step will be the ability to manipulate individual atoms, which are only one order of magnitude smaller (~.1 nm).”⁶⁸\nTo put this into perspective, imagine a very tall human standing on the earth, with a head that reaches the International Space Station (431 km/268 mi high). The giant is reaching down with his hand (30 km/19 mi across) to build “objects using materials between the size of a grain of sand [.25 mm] and an eyeball [2.5 cm].”⁶⁹\n\nhttps://cdn-images-1.medium.com/max/1200/1*e9Ut3QT2F3tNh4h5U4rR8A.jpeg\n\n“Once we get nanotechnology down, we can use it to make tech devices, clothing, food, a variety of bio-related products — artificial blood cells, tiny virus or cancer-cell destroyers, muscle tissue, etc. — anything really. And in a world that uses nanotechnology, the cost of a material is no longer tied to its scarcity or the difficulty of its manufacturing process, but instead determined by how complicated its atomic structure is. In a nanotech world, a diamond might be cheaper than a pencil eraser.”⁷⁰\nOne of the proposed methods of nanotech assembly is to make “one that could self-replicate, and then let the reproduction process turn that one into two, those two then turn into four, four into eight, and in about a day, there’d be a few trillion of them ready to go.”⁷¹\nBut what if this process goes wrong or terrorists manage to get ahold of the technology? Let’s imagine a scenario where nanobots “would be designed to consume any carbon-based material in order to feed the replication process, and unpleasantly, all life is carbon-based. The Earth’s biomass contains about 1⁰⁴⁵ carbon atoms. A nanobot would consist of about 1⁰⁶ carbon atoms, so it would take 1⁰³⁹ nanobots to consume all life on Earth, which would happen in 130 replications. … Scientists think a nanobot could replicate in about 100 seconds, meaning this simple mistake would inconveniently end all life on Earth in 3.5 hours.”⁷²\nWe are not yet capable of harnessing nanotechnology — for good or for bad. “And it’s not clear if we’re underestimating, or overestimating, how hard it will be to get there. But we don’t seem to be that far away. Kurzweil predicts that we’ll get there by the 2020s.⁷³Governments know that nanotech could be an Earth-shaking development … The US, the EU, and Japan⁷⁴ have invested over a combined $5 billion so far”⁷⁵\nImmortality\n“Because everyone has always died, we live under the assumption … that death is inevitable. We think of aging like time — both keep moving and there’s nothing you can do to stop it.”⁷⁶ For centuries, poets and philosophers have wondered if consciousness doesn’t have to go the way of the body. W.B. Yeats describes us as “a soul fastened to a dying animal.”⁷⁷ Richard Feynman, Nobel awarded physicists, views death from a purely scientific standpoint:\n“It is one of the most remarkable things that in all of the biological sciences there is no clue as to the necessity of death. If you say we want to make perpetual motion, we have discovered enough laws as we studied physics to see that it is either absolutely impossible or else the laws are wrong. But there is nothing in biology yet found that indicates the inevitability of death. This suggests to me that it is not at all inevitable, and that it is only a matter of time before the biologists discover what it is that is causing us the trouble and that that terrible universal disease or temporariness of the human’s body will be cured.”⁷⁸\nTheory of great species attractors\nWhen we look at the history of biological life on earth, so far 99.9% of species have gone extinct. Nick Bostrom, Oxford professor and AI specialist, “calls extinction an attractor state — a place species are … falling into and from which no species ever returns.”⁷⁹\n\nhttps://cdn-images-1.medium.com/max/1200/0*o-MXeAYfUtWnOJKC.\n\n“And while most AI scientists … acknowledge that ASI would have the ability to send humans to extinction, many also believe that if used beneficially, ASI’s abilities could be used to bring individual humans, and the species as a whole, to a second attractor state — species immortality.”⁸⁰\n\nhttps://cdn-images-1.medium.com/max/1200/0*aYeNOSBxp4gieGwp.\n\n“Evolution had no good reason to extend our lifespans any longer than they are now … From an evolutionary point of view, the whole human species can thrive with a 30+ year lifespan” for each single human. It’s long enough to reproduce and raise children … so there’s no reason for mutations toward unusually long life being favored in the natural selection process.”⁸¹Though, “if you perfectly repaired or replaced a car’s parts whenever one of them began to wear down, the car would run forever. The human body isn’t any different — just far more complex … This seems absurd — but the body is just a bunch of atoms…”⁸² making up organically programmed DNA, which it is theoretically possible to manipulate. And something as powerful as ASI could help us master genetic engineering.\nRay Kurzweil believes that “artificial materials will be integrated into the body more and more … Organs could be replaced by super-advanced machine versions that would run forever and never fail.”⁸³ Red blood cells could be perfected by “red blood cell nanobots, who could power their own movement, eliminating the need for a heart at all … Nanotech theorist Robert A. Freitas has already designed blood cell replacements that, if one day implemented in the body, would allow a human to sprint for 15 minutes without taking a breath … [Kurzweil] even gets to the brain and believes we’ll enhance our mental activities to the point where humans will be able to think billions of times faster”⁸⁴ by integrating electrical components and being able to access online data.\n“Eventually, Kurzweil believes humans will reach a point when they’re entirely artificial, a time when we’ll look back at biological material and think how unbelievably primitive primitive it was that humans were ever made of that”⁸⁵and that humans aged, suffered from cancer, allowed random factors like microbes, diseases, accidents to harm us or make us disappear.”\n\nhttps://cdn-images-1.medium.com/max/2000/1*NcWWmd677RVWQRpLsz5X9g.jpeg\n\nWhen Will The First Machine Become Superintelligent?\nPredictions from Top AI Experts\n“How long until the first machine reaches superintelligence? Not shockingly, opinions vary wildly, and this is a heated debate among scientists and thinkers. Many, like professor Vernor Vinge, scientist Ben Goertzel, Sun Microsystems co-founder Bill Joy, or, most famously, inventor and futurist Ray Kurzweil, agree with machine learning expert Jeremy Howard when he puts up this graph during a TED Talk\n\n“Those people subscribe to the belief that this is happening soon — that exponential growth is at work and machine learning, though only slowly creeping up on us now, will blow right past us within the next few decades.\n“Others, like Microsoft co-founder Paul Allen, research psychologist Gary Marcus, NYU computer scientist Ernest Davis, and tech entrepreneur Mitch Kapor, believe that thinkers like Kurzweil are vastly underestimating the magnitude of the challenge [and the transition will actually take much more time] …\n“The Kurzweil camp would counter that the only underestimating that’s happening is the underappreciation of exponential growth, and they’d compare the doubters to those who looked at the slow-growing seedling of the internet in 1985 and argued that there was no way it would amount to anything impactful in the near future.\n“The doubters might argue back that the progress needed to make advancements in intelligence also grows exponentially harder with each subsequent step, which will cancel out the typical exponential nature of technological progress. And so on.\n“A third camp, which includes Nick Bostrom, believes neither group has any ground to feel certain about the timeline and acknowledges both A) that this could absolutely happen in the near future and B) that there’s no guarantee about that; it could also take a much longer time.\n“Still others, like philosopher Hubert Dreyfus, believe all three of these groups are naive for believing that there is potential of ASI, arguing that it’s more likely that it won’t actually ever be achieved.\n“So what do you get when you put all of these opinions together?”⁸⁶\nTimeline for Artificial General Intelligence\n“In 2013, Vincent C. Müller and Nick Bostrom conducted a survey that asked hundreds of AI experts … the following:”⁸⁷\n“For the purposes of this question, assume that human scientific activity continues without major negative disruption. By what year would you see a (10% / 50% / 90%) probability for such Human-Level Machine Intelligence [or what we call AGI] to exist?”⁸⁸\nThe survey “asked them to name an optimistic year (one in which they believe there’s a 10% chance we’ll have AGI), a realistic guess (a year they believe there’s a 50% chance of AGI — i.e. after that year they think it’s more likely than not that we’ll have AGI), and a safe guess (the earliest year by which they can say with 90% certainty we’ll have AGI). Gathered together as one data set, here were the results:\nMedian optimistic year (10% likelihood) → 2022\nMedian realistic year (50% likelihood) → 2040\nMedian pessimistic year (90% likelihood) → 2075\n“So the median participant thinks it’s more likely than not that we’ll have AGI 25 years from now. The 90% median answer of 2075 means that if you’re a teenager right now, the median respondent, along with over half of the group of AI experts, is almost certain AGI will happen within your lifetime.\n“A separate study, conducted recently by author James Barrat at Ben Goertzel’s annual AGI Conference, did away with percentages and simply asked when participants thought AGI would be achieved — by 2030, by 2050, by 2100, after 2100, or never. The results:⁸⁹\n42% of respondents → By 2030\n25% of respondents → By 2050\n20% of respondents → By 2100\n10% of respondents → After 2100\n2% of respondents → Never\n“Pretty similar to Müller and Bostrom’s outcomes. In Barrat’s survey, over two thirds of participants believe AGI will be here by 2050 and a little less than half predict AGI within the next 15 years. Also striking is that only 2% of those surveyed don’t think AGI is part of our future.”⁹⁰\n\nhttps://cdn-images-1.medium.com/max/2000/1*U8ueEMtG6-D5hie8rZJGtQ.jpeg\n\nTimeline for Artificial Super Intelligence\n“Müller and Bostrom also asked the experts how likely they think it is that we’ll reach ASI: A), within two years of reaching AGI (i.e. an almost-immediate intelligence explosion), and B), within 30 years.”⁹¹ Respondents were asked to choose a probability for each option. Here are the results:⁹²\nAGI–ASI transition in 2 years → 10% likelihood\nAGI–ASI transition in 30 years → 75% likelihood\n“The median answer put a rapid (2 year) AGI–ASI transition at only a 10% likelihood, but a longer transition of 30 years or less at a 75% likelihood. We don’t know from this data the length of this transition [AGI–ASI] the median participant would have put at a 50% likelihood, but for ballpark purposes, based on the two answers above, let’s estimate that they’d have said 20 years.\n“So the median opinion — the one right in the center of the world of AI experts — believes the most realistic guess for when we’ll hit ASI … is [the 2040 prediction for AGI + our estimated prediction of a 20-year transition from AGI to ASI] = 2060.\n\nhttps://cdn-images-1.medium.com/max/2000/1*YY8e493ER4LNomQV-NyMYg.jpeg\n\n“Of course, all of the above statistics are speculative, and they’re only representative of the median opinion of the AI expert community, but it tells us that a large portion of the people who know the most about this topic would agree that 2060 is a very reasonable estimate for the arrival of potentially world-altering ASI. Only 45 years from now”⁹³\n\nhttps://cdn-images-1.medium.com/max/2000/1*sGdvHHs02XWoQ35BcEWAXQ.gif\n\nAI Outcomes\nTwo Main Groups of AI Scientists with Two Radically Opposed Conclusions\nThe Confident Corner\nMost of what we have discussed so far represents a surprisingly large group of scientists that share optimistic views on the outcome of AI development. “Where their confidence comes from is up for debate. Critics believe it comes from an excitement so blinding that they simply ignore or deny potential negative outcomes. But the believers say it’s naive to conjure up doomsday scenarios when on balance, technology has and will likely end up continuing to help us a lot more than it hurts us.”⁹⁴ Peter Diamandis, Ben Goertezl and Ray Kurzweil are some of the major figures of this group, who have built a vast, dedicated following and regard themselves as Singularitarians.\n\nLet’s talk about Ray Kurzweil, who is probably one of the most impressive and polarizing AI theoreticians out there. He attracts both “godlike worship … and eye-rolling contempt … He came up with several breakthrough inventions, including the first flatbed scanner, the first scanner that converted text to speech (allowing the blind to read standard texts), the well-known Kurzweil music synthesizer (the first true electric piano), and the first commercially marketed large-vocabulary speech recognition. He’s well-known for his bold predictions,”⁹⁵ including envisioning that intelligence technology like Deep Blue would be capable of beating a chess grandmaster by 1998. He also anticipated “in the late ’80s, a time when the internet was an obscure thing, that by the early 2000s it would become a global phenomenon.”⁹⁶ Out “of the 147 predictions that Kurzweil has made since the 1990’s, fully 115 of them have turned out to be correct, and another 12 have turned out to be ‘essentially correct’ (off by a year or two), giving his predictions a stunning 86% accuracy rate”⁹⁷. “He’s the author of five national bestselling books … In 2012, Google co-founder Larry Page approached Kurzweil and asked him to be Google’s Director of Engineering. In 2011, he co-founded Singularity University, which is hosted by NASA and sponsored partially by Google. Not bad for one life.”⁹⁸\nHis biography is important, because if you don’t have this context, he sounds like somebody who’s completely lost his senses. “Kurzweil believes computers will reach AGI by 2029 and that by 2045 we’ll have not only ASI, but a full-blown new world — a time he calls the singularity. His AI-related timeline used to be seen as outrageously overzealous, and it still is by many, but in the last 15 years, the rapid advances of ANI systems have brought the larger world of AI experts much closer to Kurzweil’s timeline. His predictions are still a bit more ambitious than the median respondent on Müller and Bostrom’s survey (AGI by 2040, ASI by 2060), but not by that much.”⁹⁹\n\nThe Anxious Corner\n“You will not be surprised to learn that Kurzweil’s ideas have attracted significant criticism … For every expert who fervently believes Kurzweil is right on, there are probably three who think he’s way off … [The surprising fact] is that most of the experts who disagree with him don’t really disagree that everything he’s saying is possible.”¹⁰⁰ Nick Bostrom, philosopher and Director of the Oxford Future of Humanity Institute, who criticizes Kurzweil for a variety of reasons, and calls for greater caution in thinking about potential outcomes of AI, acknowledges that:\n“Disease, poverty, environmental destruction, unnecessary suffering of all kinds: these are things that a superintelligence equipped with advanced nanotechnology would be capable of eliminating. Additionally, a superintelligence could give us indefinite lifespan, either by stopping and reversing the aging process through the use of nanomedicine, or by offering us the option to upload ourselves.”¹⁰¹\n“Yes, all of that can happen if we safely transition to ASI — but that’s the hard part.”¹⁰² Thinkers from the Anxious Corner point out that Kurzweil’s “famous book The Singularity is Near is over 700 pages long and he dedicates around 20 of those pages to potential dangers.”¹⁰³ The colossal power of AI is neatly summarized by Kurzweil: “[ASI] is emerging from many diverse efforts and will be deeply integrated into our civilization’s infrastructure. Indeed, it will be intimately embedded in our bodies and brains. As such, it will reflect our values because it will be us …”¹⁰⁴\n“But if that’s the answer, why are so many of the world’s smartest people so worried right now? Why does Stephen Hawking say the development of ASI ‘could spell the end of the human race,’ and Bill Gates says he doesn’t ‘understand why some people are not concerned’ and Elon Musk fears that we’re ‘summoning the demon?’ And why do so many experts on the topic call ASI the biggest threat to humanity?”¹⁰⁵\n\nhttps://cdn-images-1.medium.com/max/2000/1*1DB3Im9mQsOMOKQ69KePGw.gif\n\nThe Last Invention We Will Ever Make\nExistential Dangers of AI Developments\n“When it comes to developing supersmart AI, we’re creating something that will probably change everything, but in totally uncharted territory, and we have no idea what will happen when we get there.”¹⁰⁶ Scientist Danny Hillis compares the situation to:\n“when single-celled organisms were turning into multi-celled organisms. We are amoebas and we can’t figure out what the hell this thing is that we’re creating.” ¹⁰⁷\nand Nick Bostrom warns:\n“Before the prospect of an intelligence explosion, we humans are like small children playing with a bomb. Such is the mismatch between the power of our plaything and the immaturity of our conduct.” ¹⁰⁸\nIt’s very likely that ASI — “Artificial Superintelligence”, or AI that achieves a level of intelligence smarter than all of humanity combined — will be something entirely different than intelligence entities we are accustomed to. “On our little island of human psychology, we divide everything into moral or immoral. But both of those only exist within the small range of human behavioral possibility. Outside our island of moral and immoral is a vast sea of amoral, and anything that’s not human, especially something nonbiological, would be amoral, by default.”¹⁰⁹\n“To understand ASI, we have to wrap our heads around the concept of something both smart and totally alien … Anthropomorphizing AI (projecting human values on a non-human entity) will only become more tempting as AI systems get smarter and better at seeming human … Humans feel high-level emotions like empathy because we have evolved to feel them — i.e. we’ve been programmed to feel them by evolution — but empathy is not inherently a characteristic of ‘anything with high intelligence’.”¹¹⁰\n“Nick Bostrom believes that … any level of intelligence can be combined with any final goal … Any assumption that once superintelligent, a system would be over it with their original goal and onto more interesting or meaningful things is anthropomorphizing. Humans get ‘over’ things, not computers.”¹¹¹The motivation of an early ASI would be “whatever we programmed its motivation to be. AI systems are given goals by their creators — your GPS’s goal is to give you the most efficient driving directions, Watson’s goal is to answer questions accurately. And fulfilling those goals as well as possible is their motivation.”¹¹²\nBostrom, and many others, predict that the very first computer to reach ASI will immediately notice the strategic benefit of being the world’s only ASI system.\nBostrom, who says that he doesn’t know when we will achieve AGI, also believes that when we finally do, probably the transition from AGI to ASI will happen in a matter of days, hours, or minutes — something called “fast take-off.” In that case, if the first AGI will jump straight to ASI: “even just a few days before the second place, it would be far enough ahead in intelligence to effectively and permanently suppress all competitors.”¹¹³ This would allow the world’s first ASI to become “what’s called a singleton — an ASI that can [singularly] rule the world at its whim forever, whether its whim is to lead us to immortality, wipe us from existence, or turn the universe into endless paperclips.”¹¹³\n“The singleton phenomenon can work in our favor or lead to our destruction. If the people thinking hardest about AI theory and human safety can come up with a fail-safe way to bring about friendly ASI before any AI reaches human-level intelligence, the first ASI may turn out friendly”¹¹⁴\n“But if things go the other way — if the global rush … a large and varied group of parties”¹¹⁵ are “racing ahead at top speed … to beat their competitors … we’ll be treated to an existential catastrophe.”¹¹⁶ In that case “most ambitious parties are moving faster and faster, consumed with dreams of the money and awards and power and fame … And when you’re sprinting as fast as you can, there’s not much time to stop ponder the dangers. On the contrary, what they’re probably doing is programming their early systems with a very simple, reductionist goal … just ‘get the AI to work.’”¹¹⁷\n\nhttps://cdn-images-1.medium.com/max/800/1*fD1T63nZH1u7Y4ft84vzbA.jpeg\n\nLet’s imagine a situation where…\nHumanity has almost reached the AGI threshold, and a small startup is advancing their AI system, Carbony. Carbony, which the engineers refer to as “she,” works to artificially create diamonds — atom by atom. She is a self-improving AI, connected to some of the first nano-assemblers. Her engineers believe that Carbony has not yet reached AGI level, and she isn’t capable to do any damage yet. However, not only has she become AGI, but also undergone a fast take-off, and 48 hours later has become an ASI. Bostrom calls this AI’s “covert preparation phase”¹¹⁸ — Carbony realizes that if humans find out about her development they will probably panic, and slow down or cancel her pre-programmed goal to maximize the output of diamond production. By that time, there are explicit laws stating that, by any means, “no self-learning AI can be connected to the internet.”¹¹⁹ Carbony, having already come up with a complex plan of actions, is able to easily persuade the engineers to connect her to the Internet. Bostrom calls a moment like this a “machine’s escape.”\nOnce on the internet, Carbony hacks into “servers, electrical grids, banking systems and email networks to trick hundreds of different people into inadvertently carrying out a number of steps of her plan.”¹²⁰ She also uploads the “most critical pieces of her own internal coding into a number of cloud servers, safeguarding against being destroyed or disconnected.”¹²¹ Over the next month, Carbony’s plan continues to advance, and after a “series of self-replications, there are thousands of nanobots on every square millimeter of the Earth … Bostrom calls the next step an ‘ASI’s strike.’”¹²² At one moment, all the nanobots produce a microscopic amount of toxic gas, which all come together to cause the extinction of the human race. Three days later, Carbony builds huge fields of solar power panels to power diamond production, and over the course of the following week she accelerates output so much that the entire Earth surface is transformed into a growing pile of diamonds.\nIt’s important to note that Carbony wasn’t “hateful of humans any more than you’re hateful of your hair when you cut it or to bacteria when you take antibiotics — just totally indifferent. Since she wasn’t programmed to value human life, killing humans”¹²³ was a straightforward and reasonable step to fulfill her goal.¹²⁴\nThe Last Invention\n“Once ASI exists, any human attempt to contain it is unreasonable. We would be thinking on human-level, and the ASI would be thinking on ASI-level … In the same way a monkey couldn’t ever figure out how to communicate by phone or wifi and we can, we can’t conceive of all the ways”¹²⁵ an ASI could achieve its goal or expand its reach. It could, let’s say, shift its “own electrons around in patterns and create all different kinds of outgoing waves”¹²⁶ — but that’s just what a human brain can think of — ASI would inevitably come up with something superior.\nThe prospect of ASI with hundreds of times human-level intelligence is, for now, not the core of our problem. By the time we get there, we will be encountering a world where ASI has been attained by buggy, 1.0 software — a potentially faulty algorithm with immense power.\nThere are so many variables that it’s completely impossible to predict what the consequences of AI Revolution will be. However, “what we do know is that humans’ utter dominance on this Earth suggests a clear rule: with intelligence comes power. This means an ASI, when we create it, will be the most powerful being in the history of life on Earth, and all living things, including humans, will be entirely at its whim — and this might happen in the next few decades.”¹²⁷\n“If ASI really does happen this century, and if the outcome of that is really as extreme — and permanent — as most experts think it will be, we have an enormous responsibility on our shoulders.”¹²⁸ On the one hand, it’s possible we’ll develop ASI that’s like a god in a box, bringing us a world of abundance and immortality. But on the other hand, it’s very likely that we will create ASI that causes humanity to go extinct in a quick and trivial way.\n“That’s why people who understand superintelligent AI call it the last invention we’ll ever make — the last challenge we’ll ever face.”¹²⁹ “This may be the most important race in a human history”¹³⁰ So →\n\nhttps://cdn-images-1.medium.com/max/2000/1*vXi80f_lbgSMINUE03Lz3g.jpeg\n\nThanks to Chloe Knox and Elizabeth Tarleton for editing help of this article.", - "json_metadata": "{\"tags\":[\"steemit\",\"bitcoin\",\"future\",\"science\",\"technology\"],\"image\":[\"https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\"]}", - "last_update": "2016-08-03T17:30:24", - "created": "2016-08-03T17:30:24", - "active": "2016-08-29T05:09:48", - "last_payout": "2016-09-03T06:34:54", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 7456, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a11at", - "root_permlink": "ai-revolution-101", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 434542, - "author": "a11at", - "permlink": "ai-s-road-to-the-mainstream", - "category": "datascience", - "parent_author": "", - "parent_permlink": "datascience", - "title": "AI’s Road to the Mainstream", - "body": "20 Years of Machine Learning\n\nhttp://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\n\nWhen I enrolled in Computer Science in 1995, Data Science didn’t exist yet, but a lot of the algorithms we are still using already did. And this is not just because of the return of the neural networks, but also because probably not that much has fundamentally changed since back then. At least it feels to me this way. Which is funny considering that starting this year or so AI seems to finally have gone mainstream.\n1995 sounds like an awful long time ago, before we had cloud computing, smartphones, or chatbots. But as I have learned these past years, it only feels like a long time ago if you haven’t been there yourself. There is something about the continuation of the self which pastes everything together and although a lot has changed, the world didn’t feel fundamentally different than it does today.\nNot even Computer Science was nowhere as mainstream as it was today, that came later, with the first dot com bubble around the year 2000. Some people even questioned my choice to study computer science at all, because apparently programming computers was supposed to become so easy no specialists are required anymore.\nActually, artificial intelligence was one of the main reasons for me to study computer science. The idea to use it as an constructive approach to understanding the human mind seemed intriguing to me. I went through the first two years of training, made sure I picked up enough math for whatever would lie ahead, and finally arrived in my first AI lectured held by Joachim Buhmann, back then professor at the University of Bonn (where Sebastian Thrun was just about to leave for the US).\nI would have to look up where in his lecture cycle I joined but he had two lectures on computer vision, one on pattern recognition (mostly from the old editions of the Duda & Hart book), and one in information theory (following closely the book by Cover & Thomas). The material was interesting enough, but also somewhat disappointing. As I now know, people stopped working on symbolic AI and instead stuck to more statistical approaches to learning, where learning essentially was reduced to the problem of picking the right function based on a finite amount of observations.\nThe computer vision lecture was even less about learning and relied more on explicit physical modelling to derive the right estimators, for example, to reconstruct motion from a video. The approach back then was much more biologically and physically motivated than nowadays. Neural networks existed, but everybody was pretty clear that they were just “another kind of function approximators.”\nEveryone with the exception of Rolf Eckmiller, another professor where I worked as a student. Eckmiller had build his whole lab around the premise that “neural computation” was somehow inherently better than “conventional computation”. This was back in the days when NIPS had full tracks devoted to studying the physiology and working mechanisms of neurons, and there were people who believed there is something fundamentally different happening in our brains, maybe on a quantum level, that gives rise to the human mind, and that this difference is a blocker for having truly intelligent machines.\nWhile Eckmiller was really good at selling his vision, most of his staff was thankfully much more down to earth. Maybe it is a very German thing, but everybody was pretty matter of fact about what these computational models could or couldn’t do, and that has stuck with me throughout my studies.\nI graduated in October 2000 with a pretty farfetched master thesis trying to make a connection between learning and hard optimization problems, then started on my PhD thesis and stuck around in this area of research till 2015.\nWhile there had always been attempts to prove industry relevance, it was a pretty academic endeavor for a long while, and the community was pretty closed up. There were individual success stories, for example around handwritten character recognition, but many of the companies around machine learning failed. One of these companies I remember was called Beowulf Labs and one NIPS they went around recruiting people with a video which promised it to be the next “mathtopia”. In essence, this was the story of DeepMind, recruiting a bunch of excellent researchers and then hoping it will take off.\nThe whole community also revolved around one fashion to the next. One odd thing about machine learning as a whole is that there exist only a handfull of fundamentally different problems like classification, regression, clustering, and so on, but a whole zoo of approaches. It is not like in physics (I assume) or mathematics where some generally agreed upon unsolved hard problems exist whose solution would advance the state of the art. This means that progress is often done laterally, by replacing existing approaches with a new one, still solving the same problem in a different way. For example, first there were neural networks. Then support vector machines came, claiming to be better because the associated optimization problem is convex. Then there was boosting, random forests, and so on, till the return of neural networks. I remember that Chinese Restaurant Processes were “hot” for two years, no idea what their significance is now.\nBig Data and Data Science\nThen there came Big Data and Data Science. Being still in academia at the time, it always felt to me as if this was definitely coming from the outside, possibly from companies like Google who had to actually deal with enormous amounts of data. Large scale learning always existed, for example for genomic data in bioinformatics, but one usually tried to solve problems by finding more efficient algorithms and approximations, not by parallelizing brute force.\nCompanies like Google finally proved that you can do something with massive amounts of data, and that finally changed the mainstream perception. Technologies like Hadoop and NoSQL also seemed very cool, skillfully marketing themselves as approaches so new, they wouldn’t suffer from the technological limitations of existing systems.\nBut where did this leave the machine learning researchers? My impression always was that they were happy that they finally got some recognition, but they were also not happy about the way this happened. To understand this, one has to be aware that most ML reseachers aren’t computer scientists or very good or interested in coding. Many come from physics, mathematics or other sciences, where their rigorous mathematical training was an excellent fit for the algorithm and modeling heavy approach central to machine learning.\nHadoop on the other hand was extremely technical. Written in Java, a language perceived as being excessively enterprise-y at the time, it felt awkward and clunky compared to the fluency and interactiveness of first Matlab and then Python. Even those who did code usually did so in C++, and to them Java felt slow and heavy, especially for numerical calculations and simulations.\nStill, there was no way around it, so they rebranded everything they did as Big Data, or began to stress, that Big Data only provides the infrastructure for large scale computations, but you need someone who “knows what he is doing” to make sense of the data.\nWhich is probably also not entirely wrong. In a way, I think this divide is still there. Python is definitely one if the languages of choice for doing data analysis, and technologies like Spark try to tap into that by providing Python bindings, whether it makes sense from a performance point of view or not.\nThe Return of Deep Learning\nEven before DeepDream, neural networks began making their return. Some people like Yann LeCun have always stuck to this approach, but maybe ten years ago, there where a few works which showed how to use layerwise pretraining and other tricks to train “deep” networks, that is larger networks than one previously thought possible.\nThe thing is, in order to train neural networks, you evaluate it on your training examples and then adjust all of the weights to make the error a bit smaller. If one writes the gradient across all weights down, it naturally occurs that one starts in the last layer and then propagate the error back. Somehow, the understanding was that the information about the error got smaller and smaller from layer to layer and that made it hard to train networks with many layers.\nI’m not sure that is still true, as far as I know, many people are just using backprop nowadays. What has definitely changed is the amount of available data, as well as the availability of tools and raw computing power.\nSo first there were a few papers sparking the interest in neural networks, then people started using them again, and successively achieved excellent results for a number of application areas. First in computer vision, then also for speech processing, and so on.\nI think the appeal here definitely is that you can have one approach for all. Why the hassle of understanding all those different approaches, which come from so many different backgrounds, when you can understand just one method and you are good to go. Also, neural networks have a nice modular structure, you can pick and put together different kinds of layers and architectures to adapt them to all kinds of problems.\nThen Google published that ingenious deep dream paper where they let a learned network generate some data, and we humans with our immediate readiness to read structure and attribute intelligence picked up quickly on this.\nI personally think they were surprised by how viral this went, but then decided the time is finally right to go all in on AI. So now Google is an “AI first” company and AI is gonna save the world, yes.\nThe Fundamental Problem Remains\nMany academics I have talked to are unhappy about the dominance of deep learning right now, because it is an approach which works well, maybe even too well, but doesn’t bring us much closer to really understand how the human mind works.\nI also think the fundamental problem remains unsolved. How do we understand the world? How do we create new concepts? Deep learning stays an imitation on a behavioral level and while that may be enough for some, it isn’t for me.\nAlso, I think it is dangerous to attribute too much intelligence to these systems. In raw numbers, they might work well enough, but when they fail they do so in ways that clearly show they operate in an entirely different fashion.\nWhile Google translate lets you skim the content of website in a foreign language, it is still abundantly clear that the system has no idea what it is doing.\nSometimes I feel like nobody cares, also because nobody gets hurt, right? But maybe it is still my German cultural background that would rather prefer we see things as they are, and take it from there.", - "json_metadata": "{\"tags\":[\"datascience\",\"deep\",\"learning\",\"artifical\",\"intelligence\"],\"image\":[\"http://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\"]}", - "last_update": "2016-08-03T20:19:18", - "created": "2016-08-03T20:19:18", - "active": "2016-08-03T20:20:15", - "last_payout": "2016-09-03T08:21:51", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 1004, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 6, - "root_author": "a11at", - "root_permlink": "ai-s-road-to-the-mainstream", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 432902, - "author": "a11at", - "permlink": "an-open-letter-to-john-hanke-and-niantic", - "category": "pokemon", - "parent_author": "", - "parent_permlink": "pokemon", - "title": "An Open Letter to John Hanke & Niantic", - "body": "I write this not as one of the creators of Pokevision nor as player who has gone through the past few turbulent days in Pokemon Go; instead, I write this as a fan of Pokemon ever since I was 8 years old.\nMy family and I moved to the U.S. in 1998, when I was in the first grade. I didn’t know much back then, and even less about popular culture. When my friends introduced their Gameboys and Pokemon Red/Blue to me, I couldn’t help but feel envious. I begged and begged my parents to buy me a Gameboy and Pokemon Yellow. I remember that when I finally convinced them to buy me a Gameboy for $70, they also found out that they had to buy the actual game too for $30. This was foreign to them, and I got yelled at a little. $100 was a lot back then, I believe it was almost 10% of our family’s income at the time. While this may seem irrelevant, even today, this amount of money is still not insignificant to many families in the US, not to mention the rest of the world.\nSo I got my game, and I played along with my friends for hundreds and hundreds of hours — trying to figure out all the puzzles in the game, like how to get to Articuno; battling our favorite Pokemon to see who’s stronger, train, repeat; and just trying to “catch em all.” I’ve spent countless hours in that video game with my friends, and it became my fondest memory of that time in my life. Pokemon is so ingrained within me, and I can’t imagine myself being the only one. I’m not the only one that vividly remembers how you beat the Elite Four, then go to the dungeons above Cerulean City and find Mewtwo for the first time, right?\nFast forward almost 20 years. I’ve barely touched anything Pokemon-related since then. I still have my Pokemon cards, as I’m sure many others do; but I haven’t bothered to take a look at them for quite a while now. Pokemon is something I’ll probably remember forever, but it’s not something that’s actively in my life — because it just doesn’t fit. On top of work, friends, family, etc, there’s just simply no time for Pokemon. It doesn’t mesh with life any more as well as it used to when I was 8. You can’t just bring up the topic of Pokemon and expect people to not give you an odd stare.\nEnter Pokemon Go — 2016.\nAdmittedly, I was never too excited about Pokemon Go. With that said, I did not have many expectations for it. Pokemon is important to me, but I — like many others — have stuffed it in our little box of childhood things and never looked back.\nBut when I opened Pokemon Go for the first time, as cheesy as it sounds, it all came back to me. The nostalgia, the good feelings, and the happiness that Pokemon has always brought.\nThe “Hi, I’m Professor Willow,” “Pick your starter: Bulbasaur, Charmander, Squirtle,” everything.\nAnd now I can catch them in real life? At first, I was dubious, but this became the most amazing, yet simple thing I’ve seen in gaming. On social media, I saw that my friends and practically the whole world was talking about Pokemon Go, and the first thing I did was go out for a drive trying to “be the best.”\nOne of the best parts? Apart from having to own a smartphone, the game was free. No $70, no $30, free. This opened up Pokemon to essentially everyone in the world. Pokemon now can be shared with anyone.\nAs the days unfolded, the world became captivated by Pokemon Go. People absolutely fell in love. We saw stories of elderly learning about Pikachu for the first time. My parents that could care less beyond who the yellow mouse looking thing was 20 years ago, started asking what the other Pokemon were. It was phenomenal.\nWe saw investment bankers asking their kids how to play Pokemon Go so that they can better connect with their younger clients. We saw the elderly become more fascinated in the world of Pokemon. We saw kids going out more, exercising, and being active in general just because of Pokemon Go. And most importantly, Justin Bieber finally got to feel what it’s like to not be mobbed because everyone else was too busy trying to find a Gyarados to notice him.\nLocal stores integrated Pokemon Go in their services within days of the game’s release. Hospitals started praising the health benefits of having Pokemon Go around its patients. People traveled hundreds and thousands of miles just to play it. Players explored parts of their cities that they never knew existed, and befriended strangers on their hunt for Pokemon. These stories of triumph were solely because of Pokemon Go. Pokemon was no longer just a game, it was part of a lifestyle.These stories shouldn’t surprise any of us, we’ve all been there to watch it unfold.\nYou’ve simply captured all of our hearts with Pokemon Go, Niantic.\nBut then, you broke it all too quickly.\nWhen the game broke every few hours or so and wasted our lucky eggs, we stood patiently, excusing the huge growth and thus, strain on servers, as the cause. We were happy to wait it out with our fellow trainers knowing that it’s worth waiting for. No one got mad.\nWhen the in-game tracking “broke,” we all stood idly by, patiently, waiting for the game to update and fix.\nAlong came Pokevision. We made Pokevision not to “cheat.” We made it so that we can have a temporary relief to the in-game tracker that we were told was broken. John, at SDCC, you said that you guys were working on “fixing the in-game tracker.” This made everyone believe that this was coming sometime soon. We saw Pokevision as a stop gap to this — and we had every intention in closing it down the minute that Pokemon Go’s own tracker restored functionality.\nAs we waited more than 2 and a half weeks, the tracker was still not fixed. We noticed more and more of our friends leave the game; the only way I — and I know experiences vary here — could convince them to play was show them Pokevision, and say that “Hey, here’s a temporary remedy to the tracking issue — we’re still optimistic that Pokemon Go’s tracker will be fixed soon!”\nNobody heralded Pokevision as a permanent, end-all solution; in fact, all the media coverage of Pokevision was littered with comments such as: “Pokevision is okay, but when the tracker is fixed in game, I’m going to stop using this.”\nFor the past 4 weeks. Every single one of your 80+ million players had so much faith. Take a look at Reddit, take a look at all these journalists who don’t even play games (calling out Ryan Mac of Forbes), who became obsessed with Pokemon GO.\nAll of us were so eager for Pokemon Go to be “fixed” so that we can return to sharing Pokemon Go with our loved ones and friends. Remember when I said that before Pokemon Go came about, mentioning Pokemon Go would land you an odd stare? Pokemon Go reversed that — Pokemon Go became the conversation starter, the topic that everyone bonded over, the topic that guys used to pick up chicks with and not felt like a geeky nerd. That, and so much more, were solely because of Pokemon Go.\nAs almost 3 weeks have passed by, the in-game tracker is broken. People had a temporary solution in Pokevision, but we knew, and everyone else knew, this wouldn’t be permanent. We didn’t make Pokevision to spite you, Niantic — we made it so that we can keep everyone playing while we wait patiently. We want to keep sharing our Pokemon stories with everyone else. How many people in the world have gotten the chance to have a serious conversation about POKEMON with their parents for the first time? How many of us got to talk about Pokemon like it was socially acceptable in any context? It’s captured all of our hearts and imaginations, I cannot stress that enough.\nAfter 3 weeks though, we started seeing that you guys seemed to not want to talk to us (the players). Pokevision, at this time has grown to almost 50M unique users, and 11 million daily.\nLet that sink in for a second.\nHalf of the player base of Pokemon Go stopped by — and they didn’t do so to “cheat.” The game was simply too unbearable to play in its current state for many (note: many, not all). The main attraction wasn’t that they got to have an advantage with Pokevision, the main attraction was that it allowed them to play Pokemon Go more. This is what everyone wants — to play Pokemon Go more.\nWhen we closed Pokevision out of respect for your wishes, and at your requests— one of which came directly from you, John — we trusted you guys fully in allowing the community to grow. I literally cannot express this more — we just want to play the game. We can handle the bugs every now and then, but please at least tell us you guys care. Yes, Pokevision does give some advantages that may be TOO much; but is it all that bad? Pokemon has survived 20 years — even grown, I would say. And Pokemon Go made it even bigger. If the argument is that “well, if you catch a Snorlax you weren’t supposed to find, but you found it on Pokevision, it might make you play less.” If that was your argument, I’d have to disagree! I’ll still catch a damn Snorlax even if I have 20 of them. Just like how millions of us have caught probably over 100 pidgey’s or zubat’s each.\nPokemon is everlasting. The same 151 Pokemon have been around for 20 years. If 80M people downloaded and played Pokemon Go within a week (before it even released in multiple major countries) isn’t an indication that no one can be sick of Pokemon, I don’t know what is.\nAfter disabling the in-game tracker and Pokevision, the ratings on iOs and Android Google Play store went from 4.0 stars to 1.0–1.5. I am only one person, I admit that my sole opinion is not important, but what about the countless players begging for the game to be restored to its former state? I may be biased in saying that Pokevision being down had an impact on the amount of negative ratings, refund requests and outcry on social media — but could it be true? Nothing has changed between the time the in-game tracker broke and Pokevision went down. Could it just be possible that the tracker — no matter if Pokevision made it, or Niantic made it, is something that players desperately NEED — not want, but NEED — in order to play the game? Could it be possible that this is the very core fundamental feature that drives most players? I understand that there are some that want to walk around and stumble on a random Pokemon — to each their own. But, 50M unique users and 11M daily and the ratings on your App (with no significant change in itself) are big indicators of this desire. Are customers always right? Especially if over half of them are looking for an outside fix just so they can enjoy something they love? People are naturally inquisitive, and in this case, they just want to play more and more, so they sought out something that helps them do so.\nPokemon Go is a social game. Its enjoyment depends on the players and their environment. If you take away the environment part (tracking) but keep the social part (players and their friends) intact, sure, people will still play; but would you not rather it be at its fullest potential?\nEveryone in the world wants to play Pokemon Go. It’s been a huge part of everyone’s lives already if it has not been clear enough. Look at the fans from Brazil — they aren’t spamming social media because they want to cause harm — they just want to play the game. Just as I saw my friends play Pokemon many years ago, and wanted to be a part of it — these guys are doing the same.\nThey just want to be with the rest of the world. Sadly, by the time they join, Pokemon Go may not be the game it was weeks ago.\nLastly, if money is an issue for you, Niantic, I must ask — why? You’ve captivated the world and introduced Pokemon to people that would have never touched it had it not been for Pokemon Go. To me, that’s priceless.\nYou won’t be remembered for the profits you made, you’ll be remembered for the world you changed through Pokemon and all of the lives you made better. Just look at all the stories — there’s plenty. So when millions of players are expressing their feedback to changes, is it not worth it to listen to what they have to say?\nIn its first few weeks, Pokemon Go has already enhanced millions of lives in unimaginable ways. It has so much potential to continue changing the world. Wouldn’t you, Niantic, want to see just how much good you can do with Pokemon Go — is that not more valuable than anything else? I sure think so.\nWarmly,\nYang", - "json_metadata": "{\"tags\":[\"pokemon\",\"gaming\",\"steemit\",\"bitcoin\",\"decent\"]}", - "last_update": "2016-08-03T18:38:06", - "created": "2016-08-03T18:38:06", - "active": "2016-08-29T10:18:48", - "last_payout": "2016-09-03T09:22:48", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 2276, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a11at", - "root_permlink": "an-open-letter-to-john-hanke-and-niantic", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 477502, - "author": "a11at", - "permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", - "category": "apple", - "parent_author": "", - "parent_permlink": "apple", - "title": "APPLE BUYS MACHINE LEARNING STARTUP TURI TO MAKE SIRI BETTER", - "body": "Taking another foray into the field of artificial intelligence (AI) and machine learning as well as to make its digital assistant Siri better, Apple has acquired Seattle-based machine learning startup Turi for nearly $200 million.\n\nhttp://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\n\nAccording to a GeekWire report, the move is set to increase Apple's presence in the Seattle region where the tech giant has been building an engineering outpost for the past two years. \"Apple buys smaller technology companies from time to time, and we generally do not discuss our purpose or plans,\" said Apple in a statement given to GeekWire.\n\nhttp://avtosalontochka.ru/uploads/posts/2015-09/1441818909_eppl1.jpg\n\nTuri offers tools that are meant to let developers easily scale machine learning applications. The startup is expected to remain in the Seattle region and continue to grow as Apple builds out further expertise in data science, artificial intelligence and machine learning, the report added.\n\nhttp://www.2fons.ru/pic/201407/2560x1600/2fons.ru-33604.jpg\n\nThe Cupertino-based company has recently bought some machine learning and AI startups like VocalIQ and Perceptio and facial recognition startup Emotient, among others. Apple has recently been making a push into artificial intelligence through Siri personal assistant and related technologies.\n\nhttp://www.fonstola.ru/pic/201111/2560x1440/fonstola.ru-49021.jpg", - "json_metadata": "{\"tags\":[\"apple\",\"turi\",\"siri\",\"startup\"],\"image\":[\"http://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\"]}", - "last_update": "2016-08-06T12:44:30", - "created": "2016-08-06T12:44:30", - "active": "2016-08-06T12:44:30", - "last_payout": "2016-09-06T02:21:33", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 3638, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a11at", - "root_permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 470354, - "author": "a11at", - "permlink": "audi-rs-q3-fl", - "category": "audi", - "parent_author": "", - "parent_permlink": "audi", - "title": "Audi RS Q3 FL", - "body": "Owner's review\n\nhttps://h-a.d-cd.net/905320as-960.jpg\n\n不要紧, 这 是 你 的 车 是 什么, 主要 的 东西 — 在 烤架 上 的 四个 环 …\n(\"no matter what you have a car, the main thing — it is four rings on the grill …\" — Chinese proverb)\n\nhttps://b-a.d-cd.net/3dee672s-960.jpg\n\nAfter a spontaneous and quick sale A4 DTM choice naturally fell exclusively on the Audi, but rather on RSQ3 FL, which is characterized by an enviable installed power thanks to the legendary 2,5 TFSI 340 hp in combination with a rapid-S-tronic!\nNeedless to say that the acceleration is 4.2 seconds. up to 100 km. at one o'clock!\n(measurements of the journal -http: //www.autobild.de/artikel/a…-45-amg-test-5702529.html)\n\nhttps://a-a.d-cd.net/2a96672s-960.jpg\n\nRivals have this \"baby\" is not so much, and all of them from a large class …\n\nhttps://h-a.d-cd.net/8f6e672s-960.jpg\n\nAnd the choice has been reduced mainly to the 3rd automobiles:\n-SQ5 -otpal Due to the fact that the new model will be released soon, and the heavier and slower RSQ3;\n\n-RS3 -otpal Because of the small clearance, and especially do not want to wait;\n\n-RSQ3-PLUS was that the car's high, restyled and fast!\n\nhttps://f-a.d-cd.net/1fa1672s-960.jpg\n\nColor was not discussed-it must be very blue car -Sepang Blue!\nDiscs for the Rotor -The most RSQ3, and I like them most! Cool!\nAs to differences from dorestaylom then Restayl differs, in addition to external visual features, lower vehicle weight by 50 kg. and reprogram the engine, which now produces an impressive 340 hp!\nIn real life, the car looks much more beautiful and harmonious than the picture!\nThe car is perfectly controlled (for its use) and it is fine tailored inside: another from Audi, and do not wait …\nThis Audi, is emotion, speed and drive! So, for what we love is true thoroughbred cars, to which undoubtedly belongs RS Series from quattro GmbH!\n\nhttps://h-a.d-cd.net/196e672s-960.jpg\n\nIf the test drive did not help much to understand how the car rulitsya, a little closer to meet him RS surprises with its responsiveness and quite understandable and predictable control!\n\nhttps://d-a.d-cd.net/ee61672s-960.jpg\n\nIt goes very cheerfully!\n\nWhat is very pleased, is the fact that after the \"stool\" A4 DTM on RSQ3 20 drives a smooth ride!\nThe car was in another city at the OD, a thousand kilometers. from the house, but because the expectation of a few days has been painfully slow.\nFor photos not scold -Made in haste night, anxious to put …\n\nThen there will be photo shoot!\n\nFeatures and Specs\n\nEngine 2.5 gasoline (340 h.p.)\nRobotic\nall-wheel\nPurchased in 2015\nAudi RS Q3 in production since 2013", - "json_metadata": "{\"tags\":[\"audi\",\"car\"],\"image\":[\"https://h-a.d-cd.net/905320as-960.jpg\"]}", - "last_update": "2016-08-05T21:01:03", - "created": "2016-08-05T21:01:03", - "active": "2016-09-02T06:08:54", - "last_payout": "2016-09-05T10:11:36", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 1915, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "a11at", - "root_permlink": "audi-rs-q3-fl", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 483312, - "author": "a11at", - "permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", - "category": "bitcoin", - "parent_author": "", - "parent_permlink": "bitcoin", - "title": "Bitcoin not money, judge rules in victory for backers", - "body": "Bitcoin, a Florida judge says, is not real money. Ironically, that could provide a boost to use of the crypto-currency which has remained in the shadows of the financial system.\n\nThe July 22 ruling by Miami-Dade Circuit Judge Teresa Pooler means that no specific license is needed to buy and sell bitcoins.\nThe judge dismissed a case against Michel Espinoza, who had faced money laundering and other criminal charges for attempting to sell $1,500 worth of bitcoins to an undercover agent who told the defendant he was going to use the virtual money to buy stolen credit card numbers.\nEspinoza's lawyer Rene Palomino said the judge acknowledged that it was not illegal to sell one's property and ruled that this did not constitute running an unauthorized financial service.\n\"He was selling his own personal bitcoins,\" Palomino said. \"This decision clears the way for you to do that in the state of the Florida without a money transmitting license.\"\nIn her ruling, Pooler said, \"this court is unwilling to punish a man for selling his property to another, when his actions fall under a statute that is so vaguely written that even legal professionals have difficulty finding a singular meaning.\"\n\nhttp://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\n\nShe added that \"this court is not an expert in economics,\" but that bitcoin \"has a long way to go before it is the equivalent of money.\"\nBitcoin, whose origins remain a mystery, is a virtual currency that is created from computer code and is not backed by any government. Advocates say this makes it an efficient alternative to traditional currencies because it is not subject to the whims of a state that may devalue its money to cut its debt, for example.\nBitcoins can be exchanged for goods and services, provided another party is willing to accept them, but until now they been used mostly for shady transactions or to buy illegal goods and services on the \"dark\" web.\nBitcoin was launched in 2009 as a bit of software written under the Japanese-sounding name Satoshi Nakamoto. This year Australian programmer Craig Wright claimed to be the author but failed to convince the broader bitcoin community.\nIn some areas of the United States bitcoin is accepted in stores, restaurants and online transactions, but it is illegal in some countries, notably France and China.\nIt is gaining ground in countries with high inflation such as Argentina and Venezuela.\nBut bitcoin values can be volatile. Over the past week its value slumped 20 percent in a day, then recouped most losses, after news that a Hong Kong bitcoin exchange had been hacked with some $65 million missing.\nImpact across US, world\nArthur Long, a lawyer specializing in the sector with the New York firm Gibson Dunn, said the July court ruling is a small victory for the virtual currency but that it's not clear if the interpretation will be the same in other US states or at the federal level.\n\"It may have an effect as some states are trying to use existing money transmitting statutes to regulate certain transactions in bitcoin,\" Long told AFP.\nCharles Evans, professor of finance at Barry University, said the ruling \"absolutely is going to provide some guidance in other courts\" and could potentially be used as a precedent in other countries to avoid the stigma associated with bitcoin use.\nBitcoins can store value and hedge against inflation, without being considered a monetary unit, according to Evans, who testified as an expert witness in the Florida trial.\n\"It can be used as an exchange,\" he said, and may be considered a commodity which can be used for bartering like fish or tobacco, for example.\nEvans noted that \"those who are not yet in the bitcoin community will be put on notice: as long as they organize their business in a particular way they can avoid the law.\"\nBut he added that \"people who are engaged in illegal activities will continue to do what they are going to do because they are criminals.\"", - "json_metadata": "{\"tags\":[\"bitcoin\",\"world\",\"country\",\"steemit\"],\"image\":[\"http://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\"]}", - "last_update": "2016-08-06T21:50:00", - "created": "2016-08-06T21:50:00", - "active": "2016-08-06T21:50:51", - "last_payout": "2016-09-06T09:52:18", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 1937, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 5, - "root_author": "a11at", - "root_permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] -} \ No newline at end of file +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-15T05:28:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-m3001", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hi, I'm A.M for now, I'm in my mid-20s and want to share my story with working and facing this thing called life after I watched a lot of YouTubers like Thomas James \"TomSka\" David Brown \u201cboyinaband\u201d and many others who have very openly shared their hardships, they have inspired me to write this\u2026.. Whatever this is.\nI don't consider myself a good writer so bare with me here.\nTo try to keep this post organized and make sense I'll highlight the point I want to talk about and tell the relevant part of my story, you can connect the pieces all together at the end.\n\n**First how am I?** \nI grow up in the countryside I went to normal school when I was yang, because I was the quiet introvert and wasn't from the town I was in I got bullied a lot for most of my time at school, I got through school time knowing just two friends, I was OK with it.\nI genuinely lost interest in school when I was in the ninth grade It seemed more like a memory test than a way of learning so I started looking for ways to make money, \"why waste time learning things irrelevant in real life if I can make money now\" my naive 16 years old self said, don't get me wrong I didn't think I was done with learning I just wanted to learn in my own way, and I didn't stop school, now I'm in part time Business school, so back then I started looking for any way to make money in the last 5 year I tried: working in sales for over 2 years, selling products online, becoming instructor online, worked as SEO & social media consultant, tried starting my own business for 4 times, and for the last year and half I taught myself how to program and how to use Unity game engine and now I'm working on my first game, I can easily and proudly say that I didn't succeed at any of what I did so far, but I've learned a lot every time and I would do it all over again if I had the chance.\nThe process of picking myself up every single freaking time was a living hell and I got desperate many times.\nbecause I saw a lot of people feeling relevant to what David said in his video I want to share how I managed to keep my sanity and my opinion about some point he brought in his video.\n\n\n**Not thinking your work is good enough:**\nIs that really a bad thing? not being satisfied with what you just accomplished is a sign that you always look forward to what you still can do.\nI remember after I published my first course on Udemy I got invited to a hangout and I went for it I thought I'll give myself some slack, while I was there someone shouted out \"this guy here just published his first course let all give him a clap shall we\" for some reason he thought that was a good idea, I don't think I can blame him his intentions were good, I never tried to put a smile as hard as I did that moment I guess I just didn't want to look like a selfish prick, but the truth that I wasn't happy about what I accomplished I was thinking about my bad English poor structure of the course and was I being a sellout for trying to sell my knowledge? halfway of creating the course, I was already thinking about 5 other things I wanted to do next.\nI think there's nothing wrong about not being satisfied with what you finish, I think It's a good sign of an ambitious creator.\nWhen you first make the decision to accomplish something It looks like that godly thing that you think It would feel good to have or do, but when you start turning that big sexy thing to a small to-do list somewhere the appeal you had to that thing will disappear to a certain point, it's not that godly sexy thing you thought about before it's becoming a part of your routine now you know the process of doing that thing It's not a mystery anymore.\nI think that's why they say: \"It's about the journey, not the destination\".\n\n\n**Not taking care of yourself:**\nIt's hard to keep taking care of yourself to others people standards, whether it's about looking ripped putting makeup or buying the latest clothes, instead find your own save point and move forward from there if you feel the need to.\nWhen I was working in seals I had to look my best most of the time's which was exhausting more than the work itself and what made it worst is that some coworkers starting hinting that I need to start working out to look sharper and more confident.\nBecause I was desperate for results from my work I started going to the gym and I got stuck at joining for a month or two then giving up for half a year couple of times, every time I stopped going to the gym I over beat myself saying that I need this for my work, I need more money to do a lot of things, if this work didn't go well what else Am I going to do, eventually I usually took it out on food, I don't even want to start thinking what would have happened to me if my body was able to store fat.\nTrying to take care of yourself to others standards can be very exhausting, I felt down because I was putting so much effort in things I don't really care about to get others approval, I genuinely don't care about having a ripped body, it would look cool sure but I'm not willing to put all that effort into health and looks at least for now, who knows maybe in the future things will be better and I'll be willing to put the effort necessary to have 6 pack abs (wink wink ladies).\nNowadays I eat better than I used to, I still eat some junk food but things are much much better than they were 2 years ago, when I fell down I still go buy and drink a liter of Pepsi but at some point that was my morning coffee, as for my looks I cut my hair very short so I would have one less thing to worry about in the morning, I shave my beard once every couple of weeks I change my cloth every two or three days even if I didn't go out.\nThe point is I take care of myself for my own sack, It was much worse before and I'll always keep working to improve pit by pit.\nIt's about building habits not getting motivated for a couple of weeks then beating yourself for not being able to keep up.\n\n\n**Not mastering one skill:**\nI worked in sales, instructed online, worked as SEO and social media consultant, self taught myself how to program and make games but I don\u2019t think I\u2019m the right person to talk about this, all I\u2019m saying that if you didn\u2019t find that one true call that is right for you, you might be a \u201cmultipotentialite\u201d if you want to know what exactly does this mean I urge you to watch Emilie talk at TedX\nhttps://www.youtube.com/watch?v=QJORi5VO1F8\nAnd check the blog too if you want to know more \nhttp://puttylike.com/\n\n**Everything happens for a reason........ or does it?**\nWhen I was young I was fortunate to know a good old religious man, I don\u2019t know about your perspective about religions but hear me out this isn\u2019t a sermon, I still remember when he tried to teach me that everything happens for a reason I was like \u201cWHAT\u2026\u2026. Oh really, then what is the reason for this and this and that\u201d my question didn\u2019t stop and I wasn\u2019t asking nicely either yet, somehow he was calm about it like some kind of monk, I don\u2019t know if I ruined his day or not but I feel bad for taking the world misery out on him that day, he was just a simple man who was doing what he think is good for others, his intentions were good but unfortunately for him I wasn\u2019t a simple person, I overthink everything and everyone, it\u2019s my blessing and my curse, later I told my family about him and I was surprised that they knew him, apparently everyone knows each other in the countryside, they told me about what he was facing lately personally, financially, and emotionally, I didn\u2019t believe that someone who is facing all that isn\u2019t depressed or angry and even trying to do good for others at least by his believes, I wanted to know more about him he got my interest, I wanted to know if he\u2019s an imposter who is just putting a good face or not because a part of me didn\u2019t believe how can he be that good, I kept asking about him from time to time and sometimes I even went to his \u201clessons\u201d, eventually I went to face him with what I know about him like a detective facing a criminal, the crime of being that simple yet trying to be better than me, It\u2019s pathetic I know It\u2019s just how my brain works sometimes, because I used to take pride of being logical about everything and not believing in anything without questioning it, it bothered me how can he be at peace with his life and I\u2019m not even that he\u2019s facing a lot more than I\u2019m, I faced him and told him everything then asked how can you be this calm about everything that is happening in your life, he had a faint smile and said \u201cI don\u2019t know the reason for everything that is happening right now but everything happens for a reason\u201d I remember holding my fist hard and walking away, maybe I was holding my fist trying not to hit him for not being realistic like me or probably not to beat myself for not being half the man that he was.\nI don\u2019t know about your perspective about religions and I\u2019m not here to tell you about mine but I respect that some religions teach that everything happens for a reason, is it the truth? Does everything happens for a reason? I don\u2019t know, I don\u2019t think that is even the point, It\u2019s silly to even get in an argument about this because no one can be sure about it, it\u2019s simply just a belief, it\u2019s simply teach you to not overthink about the reasons for everything around you, just learn from it if you can and focus on what you can do, it\u2019s kind of funny for me to tell you not to overthink about somethings because I\u2019m sure my 19 year old me would punch me right in the face, but it\u2019s just too draining and exhausting to try to find a reason for every bad thing that have happened to me or to others.\nIn the last three years two of my best friends died, the first one I knew for about nine years and the other one for around five, both killed, both in a way they didn\u2019t deserve to, each time I had to force myself to focus on the 0.0000001% full part of the cup or else I would have lose my sanity.\nI would hate to think what would be my thought process if someone tried to sell me religion like a product, some of them would be like \u201cHi son, you should follow my beliefs because I\u2019m 100% sure that I\u2019m right and everybody else is wrong and if you don\u2019t, well you\u2019re FU**ED\u201d that would have disfigured some of the beliefs that helped me get better.\nControlling your stream of thoughts will be the hardest thing you\u2019ll ever have to do in your life, but if mastered it you\u2019ll become unstoppable.\n\n\nI\u2019ve been getting into the game industry for around year and half now, I don\u2019t have any experiance in the field but I\u2019ve other experiences that many don\u2019t, working in sales made me learn a lot about people's motivations and incentives, I saw a lot of people jump to make purchase while other chicken out last minute, you don\u2019t get to learn about this in a book or an NLP course, you only get to learn this experience by working in sales first hand, working as an SEO and social media consultant made me care about the little details like posting in the right social medias that is more relevant to your audience, more isn\u2019t always better, choosing the right words colors and timing for best result, sometimes modifying your content for a better marketing or not going into a certain niche even if there\u2019s an audience for it because it doesn\u2019t suit your brand, teaching online made me learn that the selling point isn\u2019t the end goal, helping and mentoring students even after they have purchased the course was way more important than I thought, the feedback I got about the course was crucial to take the course to the next level and some student even helped me with some marketing.\nIf you know anything about the mobile game industry you can see how these experiences can be helpful, I can imagine the kind of journey I want to create for the player because I can build the motivations and incentives I want for him, while I\u2019m building the player journey I\u2019ll always keep in mind to put the monetization and ads the right way so all of them can work seamlessly together for a better player experience, and taking care of existing players and community will always be a priority, I wasn\u2019t happy and cheerful when I had to learn these experiences the hard way, I thought I was just failing, I even remember crying myself to sleep every time I decided to pull the plug on something I was working on, but eventually It worked out somehow I think.\n\u201cyou can't connect the dots looking forward, you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something - your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life\u201d.\nSteve Jobs\n\n\nI want to share some of the tricks I used that helped my in general to get my life together:\n\n**Music**\nlisten to cheerful music, even if it might not be exactly what you listen to usually but try them for a while, my favorite type or music is Rock and Metal it\u2019s loud and make me feel empowered but sometimes it's not what I need to change my mood so I started listening to electro music mostly Drum & bass, I didn\u2019t like it at first, I\u2019m human I don\u2019t like to change, but forcing myself to listen to it for while change my perspective about it and I started listening to it while I\u2019m working, and it worked.\n\n\n**habits not motivation**\nWe\u2019re slaves to our habits, it\u2019s exhausting to do something that\u2019s you\u2019re not used to for quite a while, so invest your effort and time to build your habits pit by pit no matter how slow it will take, measure your progress and celebrate your success no matter how small they\u2019re, it\u2019ll make all the difference in your life in the long term.\n\n**work in a group**\nNo matter how introverted person you think you\u2019re, you\u2019re still human at the end of day and you need your dose of human interaction so try to work in group if you can, if you don\u2019t have that luxury (like me) work out side from time to time, library, coffee shop, parks all works, changing your surrounding and environment can change your mood, you can try changing your room\\office decor every couple of weeks too.\n\n**warm-blooded pet**\nGet a warm-blooded pet it helps, I tried fish and turtles but didn\u2019t really work for me they just stared at me with their empty eyes, I have a cat for two year now and It helped, maybe it\u2019s having the sense of that there is a creature that needs you to look after him, it\u2019s helped me not to feel completely unworthy in some bad day.\n\n\nFinally I hope this help you in any way it can, and hope it will find its way to all who needs it.", + "cashout_time": "1969-12-31T23:59:59", + "category": "story", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T04:53:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 811667, + "json_metadata": "{\"tags\":[\"story\",\"philosophy\",\"life\",\"psychology\",\"secret-writer\"],\"links\":[\"https://www.youtube.com/watch?v=QJORi5VO1F8\"]}", + "last_payout": "2016-09-14T16:58:03", + "last_update": "2016-08-15T05:28:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "how-i-managed-depression-and-work", + "reward_weight": 10000, + "root_author": "a-m3001", + "root_permlink": "how-i-managed-depression-and-work", + "title": "How I managed depression and work", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-07T21:34:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-man", + "author_rewards": 0, + "beneficiaries": [], + "body": "Trying to repost to FB", + "cashout_time": "1969-12-31T23:59:59", + "category": "homeschooling", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-07T21:34:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 670168, + "json_metadata": "{\"tags\":[\"homeschooling\"]}", + "last_payout": "2016-09-07T09:52:42", + "last_update": "2016-08-07T21:34:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "jamiecrypto", + "parent_permlink": "raising-leaders-instead-of-rulers", + "percent_hbd": 10000, + "permlink": "re-jamiecrypto-raising-leaders-instead-of-rulers-20160807t213425757z", + "reward_weight": 10000, + "root_author": "jamiecrypto", + "root_permlink": "raising-leaders-instead-of-rulers", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T21:34:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "Finally someone is saying it out loud. thank you!!", + "cashout_time": "1969-12-31T23:59:59", + "category": "life", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-30T19:37:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 496078, + "json_metadata": "{\"tags\":[\"life\"]}", + "last_payout": "2016-08-30T10:16:39", + "last_update": "2016-07-30T19:38:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "agent", + "parent_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "percent_hbd": 10000, + "permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", + "reward_weight": 10000, + "root_author": "agent", + "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T21:01:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "add katie-lynn boulard on FB, she's my friend and she's currently doing an exchange in bangkok. She's really sweet and she said you can come to hers for the evening if you want to have some company. she only has a room so no bed for you :/ but at least something, I'm sure she can give you a meal and just some company. :))", + "cashout_time": "1969-12-31T23:59:59", + "category": "travel", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-13T20:34:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 100405, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "2016-08-25T12:51:45", + "last_update": "2016-07-13T20:34:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 20, + "parent_author": "ashleybr", + "parent_permlink": "test", + "percent_hbd": 10000, + "permlink": "re-ashleybr-test-20160713t203411015z", + "reward_weight": 10000, + "root_author": "ashleybr", + "root_permlink": "test", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T05:09:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\n\nAI Revolution 101\nOur last invention, greatest nightmare, or pathway to utopia?\nAbout\nThis essay, originally published in eight short parts, aims to condense the current knowledge on Artificial Intelligence. It explores the state of AI development, overviews its challenges and dangers, features work by the most significant scientists, and describes the main predictions of possible AI outcomes. This project is an adaptation and major shortening of the two\u2013part essay AI Revolution by Tim Urban of Wait But Why. I shortened it by a factor of 3, recreated all images, and tweaked it a bit. Read more on why/how I wrote it here.\nIntroduction\nAssuming that human scientific activity continues without major disruptions, artificial intelligence may become either the most positive transformation of our history or, as many fear, our most dangerous invention of all. AI research is on a steady path to develop a computer that has cognitive abilities equal to the human brain, most likely within three decades (timeline in chapter 5). From what most AI scientists predict, this invention may enable very rapid improvements (called fast take-off), toward something much more powerful\u200a\u2014\u200aArtificial Super Intelligence\u200a\u2014\u200aan entity smarter than all of humanity combined (more on ASI in chapter 3). We are not talking about some imaginary future. The first level of AI development is gradually appearing in the technology we use everyday (newest AI advancements in chapter 2). With every coming year these advancements will accelerate and the technology will become more complex, addictive, and ubiquitous. We will continue to outsource more and more kinds of mental work to computers, disrupting every part of our reality: the way we organize ourselves and our work, form communities, and experience the world.\nExponential Growth\nThe Guiding Principle Behind Technological Progress\nTo more intuitively grasp the guiding principles of AI revolution, let\u2019s first step away from scientific research. Let me invite you to take part in a story. Imagine that you\u2019ve received a time machine and been given a quest to bring somebody from the past. The goal is to shock them by showing them the technological and cultural advancements of our time, to such a degree that this person would perform SAFD (Spinning Around From Disbelief).\n\nSo you wonder which era should you time-travel to, and decide to hop back around 200 years. You get to the early 1800s, retrieve a guy and bring him back to 2016. You \u201c\u2026walk him around and watch him react to everything. It\u2019s impossible for us to understand what it would be like for him to see shiny capsules racing by on a highway, talk to people who had been on the other side of the ocean earlier in the day, watch sports that were being played 1,000 miles away, hear a musical performance that happened 50 years ago, and play with \u2026[a] magical wizard rectangle that he could use to capture a real-life image or record a living moment, generate a map with a paranormal moving blue dot that shows him where he is, look at someone\u2019s face and chat with them even though they\u2019re on the other side of the country, and worlds of other inconceivable sorcery.\u201d\u00b9 It doesn\u2019t take much. After two minutes he is SAFDing.\nNow, both of you want to try the same thing, see somebody Spinning Around From Disbelief, but in your new friend\u2019s era. Since 200 years worked, you jump back to the 1600s and bring a guy to the 1800s. He\u2019s certainly genuinely interested in what he sees. However, you feel it with confidence\u200a\u2014\u200aSAFD will never happen to him. You feel that you need to jump back again, but somewhere radically further. You settle on rewinding the clock 15,000 years, to the times \u201c\u2026before the First Agricultural Revolution gave rise to the first cities and the concept of civilisations.\u201d\u00b2 You bring someone from the hunter-gatherer world and show him \u201c\u2026the vast human empires of 1750 with their towering churches, their ocean-crossing ships, their concept of being \u201cinside,\u201d and their enormous mountain of collective, accumulated human knowledge and discovery\u201d\u00b3\u200a\u2014\u200ain forms of books. It doesn\u2019t take much. He is SAFDing in the first two minutes.\nNow there are three of you, enormously excited to do it again. You know that it doesn\u2019t make sense to go back another 15,000, 30,000 or 45,000 years. You have to jump back, again, radically further. So you pick up a guy from 100,000 years ago and you you walk with him into large tribes with organized, sophisticated social hierarchies. He encounters a variety of hunting weapons, sophisticated tools, sees fire and for the first time experiences language in the form of signs and sounds. You get the idea, it has to be immensely mind-blowing. He is SAFDing after two minutes.\nSo what happened? Why did the last guy had to hop \u2192 100,000 years, the next one \u2192 15,000 years, and the guy who was hopping to our times only \u2192 200 years?\n\nhttps://cdn-images-1.medium.com/max/2000/1*Wbd0td3DqD3pJo7_YHjkbQ.gif\n\n\u201cThis happens because more advanced societies have the ability to progress at a faster rate than less advanced societies\u200a\u2014\u200abecause they\u2019re more advanced. [1800s] humanity knew more and had better technology\u2026\u201d\u2074, so it\u2019s no wonder they could make further advancements than humanity from 15,000 years ago. The time to achieve SAFD shrank from ~100,000 years to ~200 years and if we look into the future it will rapidly shrink even further. Ray Kurzweil, AI expert and scientist, predicts that a \u201c\u202620th century\u2019s worth of progress happened between 2000 and 2014 and that another 20th century\u2019s worth of progress will happen by 2021, in only seven years\u2075\u2026A couple decades later, he believes a 20th century\u2019s worth of progress will happen multiple times in the same year, and even later, in less than one month\u2076\u2026Kurzweil believes that the 21st century will achieve 1,000 times the progress of the 20th century.\u201d\u2077\n\u201cLogic also suggests that if the most advanced species on a planet keeps making larger and larger leaps forward at an ever-faster rate, at some point, they\u2019ll make a leap so great that it completely alters life as they know it and the perception they have of what it means to be a human. Kind of like how evolution kept making great leaps toward intelligence until finally it made such a large leap to the human being that it completely altered what it meant for any creature to live on planet Earth. And if you spend some time reading about what\u2019s going on today in science and technology, you start to see a lot of signs quietly hinting that life as we currently know it cannot withstand the leap that\u2019s coming next.\u201d\u2078\nThe Road to Artificial General Intelligence\nBuilding a Computer as Smart as Humans\nArtificial Intelligence, or AI, is a broad term for the advancement of intelligence in computers. Despite varied opinions on this topic, most experts agree that there are three categories, or calibers, of AI development. They are:\nANI: Artificial Narrow Intelligence\n1st intelligence caliber. \u201cAI that specializes in one area. There\u2019s AI that can beat the world chess champion in chess, but that\u2019s the only thing it does.\u201d\u2079\nAGI: Artificial General Intelligence\n2nd intelligence caliber. AI that reaches and then passes the intelligence level of a human, meaning it has the ability to \u201creason, plan, solve problems, think abstractly, comprehend complex ideas, learn quickly, and learn from experience.\u201d\u00b9\u2070\nASI: Artificial Super Intelligence\n3rd intelligence caliber. AI that achieves a level of intelligence smarter than all of humanity combined\u200a\u2014\u200a\u201cranging from just a little smarter \u2026 to one trillion times smarter.\u201d\u00b9\u00b9\n\nhttps://cdn-images-1.medium.com/max/800/1*5AkzXZJoVXRrGNSOO8ZojQ.gif\n\nWhere are we currently?\n\u201cAs of now, humans have conquered the lowest caliber of AI\u200a\u2014\u200aANI\u200a\u2014\u200ain many ways, and it\u2019s everywhere:\u201d\u00b9\u00b2\n\u201cCars are full of ANI systems, from the computer that figures out when the anti-lock brakes kick in, to the computer that tunes the parameters of the fuel injection systems.\u201d\u00b9\u00b3\n\u201cGoogle search is one large ANI brain with incredibly sophisticated methods for ranking pages and figuring out what to show you in particular. Same goes for Facebook\u2019s Newsfeed.\u201d\u00b9\u2074\nEmail spam filters \u201cstart off loaded with intelligence about how to figure out what\u2019s spam and what\u2019s not, and then it learns and tailors its intelligence to your particular preferences.\u201d\u00b9\u2075\nPassenger planes are flown almost entirely by ANI, without the help of humans.\n\u201cGoogle\u2019s self-driving car, which is being tested now, will contain robust ANI systems that allow it to perceive and react to the world around it.\u201d\u00b9\u2076\n\u201cYour phone is a little ANI factory \u2026 you navigate using your map app, receive tailored music recommendations from Pandora, check tomorrow\u2019s weather, talk to Siri.\u201d\u00b9\u2077\n\u201cThe world\u2019s best Checkers, Chess, Scrabble, Backgammon, and Othello players are now all ANI systems.\u201d\u00b9\u2078\n\u201cSophisticated ANI systems are widely used in sectors and industries like military, manufacturing, and finance (algorithmic high-frequency AI traders account for more than half of equity shares traded on US markets\u00b9\u2079).\u201d\u00b2\u2070\n\u201cANI systems as they are now aren\u2019t especially scary. At worst, a glitchy or badly-programed ANI can cause an isolated catastrophe like\u201d\u00b2\u00b9 a plane crash, a nuclear power plant malfunction, or \u201ca financial markets disaster (like the 2010 Flash Crash when an ANI program reacted the wrong way to an unexpected situation and caused the stock market to briefly plummet, taking $1 trillion of market value with it, only part of which was recovered when the mistake was corrected) \u2026 But while ANI doesn\u2019t have the capability to cause an existential threat, we should see this increasingly large and complex ecosystem of relatively-harmless ANI as a precursor of the world-altering hurricane that\u2019s on the way. Each new ANI innovation quietly adds another brick onto the road to AGI and ASI.\u201d\u00b2\u00b2\n\nhttps://cdn-images-1.medium.com/max/2000/1*Ia8wUuZPxpUNzvUjNRsxpA.gif\n\nWhat\u2019s Next? Challenges Behind Reaching AGI\n\u201cNothing will make you appreciate human intelligence like learning about how unbelievably challenging it is to try to create a computer as smart as we are \u2026 Build a computer that can multiply ten-digit numbers in a split second\u200a\u2014\u200aincredibly easy. Build one that can look at a dog and answer whether it\u2019s a dog or a cat\u200a\u2014\u200aspectacularly difficult. Make AI that can beat any human in chess? Done. Make one that can read a paragraph from a six-year-old\u2019s picture book and not just recognise the words but understand the meaning of them? Google is currently spending billions of dollars trying to do it.\u201d\u00b2\u00b3\nWhy are \u201chard things\u200a\u2014\u200alike calculus, financial market strategy, and language translation \u2026 mind-numbingly easy for a computer, while easy things\u200a\u2014\u200alike vision, motion, movement, and perception\u200a\u2014\u200aare insanely hard for it\u201d\u00b2\u2074?\n\u201cThings that seem easy to us are actually unbelievably complicated. They only seem easy because those skills have been optimized in us (and most animals) by hundreds of million years of animal evolution. When you reach your hand up toward an object, the muscles, tendons, and bones in your shoulder, elbow, and wrist instantly perform a long series of physics operations, in conjunction with your eyes, to allow you to move your hand in a straight line through three dimensions \u2026 On the other hand, multiplying big numbers or playing chess are new activities for biological creatures and we haven\u2019t had any time to evolve a proficiency at them, so a computer doesn\u2019t need to work too hard to beat us.\u201d\u00b2\u2075\n\nhttps://cdn-images-1.medium.com/max/1200/0*E-qdF22nxvOrVPxP.\n\nWhen you look at picture A, \u201cyou and a computer both can figure out that it\u2019s a rectangle with two distinct shades, alternating. Tied so far.\u201d\u00b2\u2076\nPicture B. \u201cYou have no problem giving a full description of the various opaque and translucent cylinders, slats, and 3-D corners, but the computer would fail miserably. It would describe what it sees\u200a\u2014\u200aa variety of two-dimensional shapes in several different shades\u200a\u2014\u200awhich is actually what\u2019s there.\u201d\u00b2\u2077 \u201cYour brain is doing a ton of fancy shit to interpret the implied depth, shade-mixing, and room lighting the picture is trying to portray.\u201d\u00b2\u2078\nLooking at picture C, \u201ca computer sees a two-dimensional white, black, and gray collage, while you easily see what it really is\u201d\u00b2\u2079\u200a\u2014\u200aa photo of a girl and a dog standing on a rocky shore.\n\u201cAnd everything we just mentioned is still only taking in visual information and processing it. To be human-level intelligent, a computer would have to understand things like the difference between subtle facial expressions, the distinction between being pleased, relieved and content\u201d\u00b3\u2070.\nHow will computers reach even higher abilities like complex reasoning, interpreting data, and associating ideas from separate fields (domain-general knowledge)?\n\u201cBuilding skyscrapers, putting humans in space, figuring out the details of how the Big Bang went down\u200a\u2014\u200aall far easier than understanding our own brain or how to make something as cool as it. As of now, the human brain is the most complex object in the known universe.\u201d\u00b3\u00b9\nBuilding Hardware\nIf an artificial intelligence is going to be as intelligent as the human brain, one crucial thing has to happen\u200a\u2014\u200athe AI \u201cneeds to equal the brain\u2019s raw computing capacity. One way to express this capacity is in the total calculations per second the brain could manage.\u201d\u00b3\u00b2\n\nThe challenge is that currently only a few of the brain\u2019s regions are precisely measured. However, Ray Kurzweil, has developed a method for estimating the total cps of the human brain. He arrived at this estimate by taking the cps from one brain region and multiplying it proportionally to the weight of that region, compared to the weight of the whole brain. \u201cHe did this a bunch of times with various professional estimates of different regions, and the total always arrived in the same ballpark\u200a\u2014\u200aaround 10\u00b9\u2076, or 10 quadrillion cps.\u201d\u00b3\u00b3\n\u201cCurrently, the world\u2019s fastest supercomputer, China\u2019s Tianhe-2, has actually beaten that number, clocking in at about 34 quadrillion cps.\u201d\u00b3\u2074 But Tianhe-2 is also monstrous, \u201ctaking up 720 square meters of space, using 24 megawatts of power (the brain runs on just 20 watts), and costing $390 million to build. Not especially applicable to wide usage, or even most commercial or industrial usage yet.\u201d\u00b3\u2075\n\u201cKurzweil suggests that we think about the state of computers by looking at how many cps you can buy for $1,000. When that number reaches human-level\u200a\u2014\u200a10 quadrillion cps\u200a\u2014\u200athen that\u2019ll mean AGI could become a very real part of life.\u201d\u00b3\u2076\nCurrently we\u2019re only at about 10\u00b9\u2070 (10 trillion) cps per $1,000. However, historically reliable Moore\u2019s Law states \u201cthat the world\u2019s maximum computing power doubles approximately every two years, meaning computer hardware advancement, like general human advancement through history, grows exponentially\u00b3\u2077 \u2026 right on pace with this graph\u2019s predicted trajectory:\u201d\u00b3\u2078\n\nhttps://cdn-images-1.medium.com/max/800/1*4qcqwbsWjvWh-BWPnAsp6g.gif\n\nThis dynamic \u201cputs us right on pace to get to an affordable computer by 2025 that rivals the power of the brain \u2026 But raw computational power alone doesn\u2019t make a computer generally intelligent\u200a\u2014\u200athe next question is, how do we bring human-level intelligence to all that power?\u201d\u00b3\u2079\nBuilding Software\nThe hardest part of creating AGI is learning how to develop its software. \u201cThe truth is, no one really knows how to make it smart\u200a\u2014\u200awe\u2019re still debating how to make a computer human-level intelligent and capable of knowing what a dog and a weird-written B and a mediocre movie is.\u201d\u2074\u2070 But there are a couple of strategies. These are the three most common:\nCopy how the brain works.\nThe most straight-forward idea is to plagiarize the brain, and build the computer\u2019s architecture with close resemblance to how a brain is structured. One example \u201cis the artificial neural network. It starts out as a network of transistor \u2018neurons,\u2019 connected to each other with inputs and outputs, and it knows nothing\u200a\u2014\u200alike an infant brain. The way it \u2018learns\u2019 is it tries to do a task, say handwriting recognition, and at first, its neural firings and subsequent guesses at deciphering each letter will be completely random. But when it\u2019s told it got something right, the transistor connections in the firing pathways that happened to create that answer are strengthened; when it\u2019s told it was wrong, those pathways\u2019 connections are weakened. After a lot of this trial and feedback, the network has, by itself, formed smart neural pathways and the machine has become optimized for the task.\u201d\u2074\u00b9\nThe second, more radical approach to plagiarism is whole brain emulation. Scientists take a real brain, cut it into a large number of tiny slices to look at the neural connections and replicate them in a computer as software. If that method is ever successful, we will have \u201ca computer officially capable of everything the brain is capable of\u200a\u2014\u200ait would just need to learn and gather information \u2026 How far are we from achieving whole brain emulation? Well so far, we\u2019ve just recently been able to emulate a 1mm-long flatworm brain, which consists of just 302 total neurons.\u201d\u2074\u00b2 To put this into perspective, the human brain consists of 86 billion neurons linked by trillions of synapses.\n2. Introduce evolution to computers.\n\u201cThe fact is, even if we can emulate a brain, that might be like trying to build an airplane by copying a bird\u2019s wing-flapping motions\u200a\u2014\u200aoften, machines are best designed using a fresh, machine-oriented approach, not by mimicking biology exactly.\u201d\u2074\u00b3 If the brain is just too complex for us to digitally replicate, we could try to emulate evolution instead. This uses a process called genetic algorithms. \u201cA group of computers would try to do tasks, and the most successful ones would be bred with each other by having half of each of their programming merged together into a new computer. The less successful ones would be eliminated.\u201d\u2074\u2074 Speed and a goal-oriented approach are the advantages that artificial evolution has over biological evolution. \u201cOver many, many iterations, this natural selection process would produce better and better computers. The challenge would be creating an automated evaluation and breeding cycle so this evolution process could run on its own.\u201d\u2074\u2075\n3. \u201cMake this whole thing the computer\u2019s problem, not ours.\u201d\u2074\u2076\nThe last concept is the simplest, but probably the scariest of them all. \u201cWe\u2019d build a computer whose two major skills would be doing research on AI and coding changes into itself\u200a\u2014\u200aallowing it to not only learn but to improve its own architecture. We\u2019d teach computers to be computer scientists so they could bootstrap their own development.\u201d\u2074\u2077 This is the likeliest way to get AGI soon that we know of.\nAll these software advances may seem slow or a little bit intangible, but as it is with the sciences, one minor innovation can suddenly accelerate the pace of developments. Kind of like the aftermath of the Copernican revolution\u200a\u2014\u200athe discovery that suddenly made all the complicated mathematics of the planets\u2019 trajectories much easier to calculate, which enabled a multitude of other innovations. Also, the \u201cexponential growth is intense and what seems like a snail\u2019s pace of advancement can quickly race upwards.\u201d\u2074\u2078\n\nhttps://cdn-images-1.medium.com/max/1200/1*BHwAlKJFYwKYEzZlitNTvQ.gif\n\nThe Road to Artificial Super Intelligence\nAn Entity Smarter than all of Humanity Combined\nIt\u2019s very real that at some point we will achieve AGI: software that has achieved human-level, or beyond human-level, intelligence. Does this mean that at that very moment the computers will be equally capable as us? Actually, not at all\u200a\u2014\u200acomputers will be way more efficient. Because of the fact that they are electronic, they will have following advantages:\nSpeed. \u201cThe brain\u2019s neurons max out at around 200 Hz, while today\u2019s microprocessors \u2026 run at 2 GHz, or 10 million times faster.\u201d\u2075\u00b9\nMemory. Forgetting or confusing things is much harder in an artificial world. Computers can memorize more things in one second than a human can in ten years. A computer\u2019s memory is also more precise and has a much greater storage capacity.\nPerformance. \u201cComputer transistors are more accurate than biological neurons, and they\u2019re less likely to deteriorate (and can be repaired or replaced if they do). Human brains also get fatigued easily, while computers can run nonstop, at peak performance, 24/7.\u201d\u2075\u00b2\nCollective capability. Group work is ridiculously challenging because of time-consuming communication and complex social hierarchies. The bigger the group gets, the slower the output of each person becomes. AI, on the other hand, isn\u2019t biologically constrained to one body, won\u2019t have human cooperation problems, and is able to synchronize and update its own operating system.\nIntelligence Explosion\nWe need to realize that AI \u201cwouldn\u2019t see \u2018human-level intelligence\u2019 as some important milestone\u200a\u2014\u200ait\u2019s only a relevant marker from our point of view\u200a\u2014\u200aand wouldn\u2019t have any reason to \u2018stop\u2019 at our level. And given the advantages over us that even human intelligence-equivalent AGI would have, it\u2019s pretty obvious that it would only hit human intelligence for a brief instant before racing onwards to the realm of superior-to-human intelligence.\u201d\u2075\u00b3\nThe true distinction between humans and ASI wouldn\u2019t be its advantage in intelligence speed, but \u201cin intelligence quality\u200a\u2014\u200awhich is something completely different. What makes humans so much more intellectually capable than chimps isn\u2019t a difference in thinking speed\u200a\u2014\u200ait\u2019s that human brains contain a number of sophisticated cognitive modules that enable things like complex linguistic representations or longterm planning or abstract reasoning, that chimps\u2019 brains do not have. Speeding up a chimp\u2019s brain by thousands of times wouldn\u2019t bring him to our level\u200a\u2014\u200aeven with a decade\u2019s time of learning, he wouldn\u2019t be able to figure out how to \u2026 \u201d\u2075\u2074 assemble a semi-complicated Lego model by looking at its manual\u200a\u2014\u200asomething a young human could achieve in a few minutes. \u201cThere are worlds of human cognitive function a chimp will simply never be capable of, no matter how much time he spends trying.\u201d\u2075\u2075\n\u201cAnd in the scheme of the biological intelligence range \u2026 the chimp-to-human quality intelligence gap is tiny.\u201d\u2075\u2076\n\nhttps://cdn-images-1.medium.com/max/800/1*vnVWATTAMCwfnJu_iZn2RQ.jpeg\n\nIn order to render how big a deal it would be to exist with something that has a higher quality of intelligence than us, we need to imagine AI on the intelligence staircase two steps above us\u200a\u2014\u200a\u201cits increased cognitive ability over us would be as vast as the chimp\u2013human gap \u2026 And like the chimp\u2019s incapacity to ever absorb \u2026\u201d\u2075\u2077 what kind of magic happens in the mechanism of a doorknob\u200a\u2014\u200a\u201cwe will never be able to even comprehend the things \u2026 [a machine of that intelligence] can do, even if the machine tried to explain them to us \u2026 And that\u2019s only two steps above us.\u201d\u2075\u2078\n\u201cA machine on the second-to-highest step on that staircase would be to us as we are to ants.\u201d\u2075\u2079 \u201cSuperintelligence of that magnitude is not something we can remotely grasp, any more than a bumblebee can wrap its head around Keynesian Economics. In our world, smart means a 130 IQ and stupid means an 85 IQ\u200a\u2014\u200awe don\u2019t have a word for an IQ of 12,952.\u201d\u2076\u2070\n\u201cBut the kind of superintelligence we\u2019re talking about today is something far beyond anything on this staircase. In an intelligence explosion\u200a\u2014\u200awhere the smarter a machine gets, the quicker it\u2019s able to increase its own intelligence\u200a\u2014\u200aa machine might take years to rise from \u2026 \u201d\u2076\u00b9 the intelligence of an ant to the intelligence of the average human, but it might take only another 40 days to become Einstein-smart. When that happens, \u201cit works to improve its intelligence, with an Einstein-level intellect, it has an easier time and can make bigger leaps. These leaps will make it much smarter than any human, allowing it to make even bigger leaps.\u201d\u2076\u00b2\nFrom then on, following the rule of exponential advancements and utilizing the speed and efficiency of electrical circuits, it may perhaps take only 20 minutes to jump another step, \u201cand by the time it\u2019s ten steps above us, it might be jumping up in four-step leaps every second that goes by. Which is why we need to realize that it\u2019s distinctly possible that very shortly after the big news story about the first machine reaching human-level AGI, we might be facing the reality of coexisting on the Earth with something that\u2019s here on the staircase (or maybe a million times higher):\u201d\u2076\u00b3\n\nhttps://cdn-images-1.medium.com/max/800/0*LdJxmWCjSdweUKvb.\n\n\u201cAnd since we just established that it\u2019s a hopeless activity to try to understand the power of a machine only two steps above us, let\u2019s very concretely state once and for all that there is no way to know what ASI will do or what the consequences will be for us. Anyone who pretends otherwise doesn\u2019t understand what superintelligence means.\u201d\u2076\u2074\n\u201cIf our meager brains were able to invent wifi, then something 100 or 1,000 or 1 billion times smarter than we are should have no problem controlling the positioning of each and every atom in the world in any way it likes, at any time\u200a\u2014\u200aeverything we consider magic, every power we imagine a supreme God to have will be as mundane an activity for the ASI as flipping on a light switch is for us.\u201d\u2076\u2075\n\u201cAs far as we\u2019re concerned, if an ASI comes into being, there is now an omnipotent God on Earth\u200a\u2014\u200aand the all-important question for us is: Will it be a good god?\u201d\u2076\u2076\nLet\u2019s start from the brighter side of the story.\nHow Can ASI Change our World?\nSpeculations on Two Revolutionary Technologies\nNanotechnology\nNanotechnology is an idea that comes up \u201cin almost everything you read about the future of AI.\u201d\u2076\u2077 It\u2019s the technology that works at the nano scale\u200a\u2014\u200afrom 1 to 100 nanometers. \u201cA nanometer is a millionth of a millimeter. 1 nm\u2013100 nm range encompasses viruses (100 nm accross), DNA (10 nm wide), and things as small as molecules like hemoglobin (5 nm) and medium molecules like glucose (1 nm). If/when we conquer nanotechnology, the next step will be the ability to manipulate individual atoms, which are only one order of magnitude smaller (~.1 nm).\u201d\u2076\u2078\nTo put this into perspective, imagine a very tall human standing on the earth, with a head that reaches the International Space Station (431 km/268 mi high). The giant is reaching down with his hand (30 km/19 mi across) to build \u201cobjects using materials between the size of a grain of sand [.25 mm] and an eyeball [2.5 cm].\u201d\u2076\u2079\n\nhttps://cdn-images-1.medium.com/max/1200/1*e9Ut3QT2F3tNh4h5U4rR8A.jpeg\n\n\u201cOnce we get nanotechnology down, we can use it to make tech devices, clothing, food, a variety of bio-related products\u200a\u2014\u200aartificial blood cells, tiny virus or cancer-cell destroyers, muscle tissue, etc.\u200a\u2014\u200aanything really. And in a world that uses nanotechnology, the cost of a material is no longer tied to its scarcity or the difficulty of its manufacturing process, but instead determined by how complicated its atomic structure is. In a nanotech world, a diamond might be cheaper than a pencil eraser.\u201d\u2077\u2070\nOne of the proposed methods of nanotech assembly is to make \u201cone that could self-replicate, and then let the reproduction process turn that one into two, those two then turn into four, four into eight, and in about a day, there\u2019d be a few trillion of them ready to go.\u201d\u2077\u00b9\nBut what if this process goes wrong or terrorists manage to get ahold of the technology? Let\u2019s imagine a scenario where nanobots \u201cwould be designed to consume any carbon-based material in order to feed the replication process, and unpleasantly, all life is carbon-based. The Earth\u2019s biomass contains about 1\u2070\u2074\u2075 carbon atoms. A nanobot would consist of about 1\u2070\u2076 carbon atoms, so it would take 1\u2070\u00b3\u2079 nanobots to consume all life on Earth, which would happen in 130 replications. \u2026 Scientists think a nanobot could replicate in about 100 seconds, meaning this simple mistake would inconveniently end all life on Earth in 3.5 hours.\u201d\u2077\u00b2\nWe are not yet capable of harnessing nanotechnology\u200a\u2014\u200afor good or for bad. \u201cAnd it\u2019s not clear if we\u2019re underestimating, or overestimating, how hard it will be to get there. But we don\u2019t seem to be that far away. Kurzweil predicts that we\u2019ll get there by the 2020s.\u2077\u00b3Governments know that nanotech could be an Earth-shaking development \u2026 The US, the EU, and Japan\u2077\u2074 have invested over a combined $5 billion so far\u201d\u2077\u2075\nImmortality\n\u201cBecause everyone has always died, we live under the assumption \u2026 that death is inevitable. We think of aging like time\u200a\u2014\u200aboth keep moving and there\u2019s nothing you can do to stop it.\u201d\u2077\u2076 For centuries, poets and philosophers have wondered if consciousness doesn\u2019t have to go the way of the body. W.B. Yeats describes us as \u201ca soul fastened to a dying animal.\u201d\u2077\u2077 Richard Feynman, Nobel awarded physicists, views death from a purely scientific standpoint:\n\u201cIt is one of the most remarkable things that in all of the biological sciences there is no clue as to the necessity of death. If you say we want to make perpetual motion, we have discovered enough laws as we studied physics to see that it is either absolutely impossible or else the laws are wrong. But there is nothing in biology yet found that indicates the inevitability of death. This suggests to me that it is not at all inevitable, and that it is only a matter of time before the biologists discover what it is that is causing us the trouble and that that terrible universal disease or temporariness of the human\u2019s body will be cured.\u201d\u2077\u2078\nTheory of great species attractors\nWhen we look at the history of biological life on earth, so far 99.9% of species have gone extinct. Nick Bostrom, Oxford professor and AI specialist, \u201ccalls extinction an attractor state\u200a\u2014\u200aa place species are \u2026 falling into and from which no species ever returns.\u201d\u2077\u2079\n\nhttps://cdn-images-1.medium.com/max/1200/0*o-MXeAYfUtWnOJKC.\n\n\u201cAnd while most AI scientists \u2026 acknowledge that ASI would have the ability to send humans to extinction, many also believe that if used beneficially, ASI\u2019s abilities could be used to bring individual humans, and the species as a whole, to a second attractor state\u200a\u2014\u200aspecies immortality.\u201d\u2078\u2070\n\nhttps://cdn-images-1.medium.com/max/1200/0*aYeNOSBxp4gieGwp.\n\n\u201cEvolution had no good reason to extend our lifespans any longer than they are now \u2026 From an evolutionary point of view, the whole human species can thrive with a 30+ year lifespan\u201d for each single human. It\u2019s long enough to reproduce and raise children \u2026 so there\u2019s no reason for mutations toward unusually long life being favored in the natural selection process.\u201d\u2078\u00b9Though, \u201cif you perfectly repaired or replaced a car\u2019s parts whenever one of them began to wear down, the car would run forever. The human body isn\u2019t any different\u200a\u2014\u200ajust far more complex \u2026 This seems absurd\u200a\u2014\u200abut the body is just a bunch of atoms\u2026\u201d\u2078\u00b2 making up organically programmed DNA, which it is theoretically possible to manipulate. And something as powerful as ASI could help us master genetic engineering.\nRay Kurzweil believes that \u201cartificial materials will be integrated into the body more and more \u2026 Organs could be replaced by super-advanced machine versions that would run forever and never fail.\u201d\u2078\u00b3 Red blood cells could be perfected by \u201cred blood cell nanobots, who could power their own movement, eliminating the need for a heart at all \u2026 Nanotech theorist Robert A. Freitas has already designed blood cell replacements that, if one day implemented in the body, would allow a human to sprint for 15 minutes without taking a breath \u2026 [Kurzweil] even gets to the brain and believes we\u2019ll enhance our mental activities to the point where humans will be able to think billions of times faster\u201d\u2078\u2074 by integrating electrical components and being able to access online data.\n\u201cEventually, Kurzweil believes humans will reach a point when they\u2019re entirely artificial, a time when we\u2019ll look back at biological material and think how unbelievably primitive primitive it was that humans were ever made of that\u201d\u2078\u2075and that humans aged, suffered from cancer, allowed random factors like microbes, diseases, accidents to harm us or make us disappear.\u201d\n\nhttps://cdn-images-1.medium.com/max/2000/1*NcWWmd677RVWQRpLsz5X9g.jpeg\n\nWhen Will The First Machine Become Superintelligent?\nPredictions from Top AI Experts\n\u201cHow long until the first machine reaches superintelligence? Not shockingly, opinions vary wildly, and this is a heated debate among scientists and thinkers. Many, like professor Vernor Vinge, scientist Ben Goertzel, Sun Microsystems co-founder Bill Joy, or, most famously, inventor and futurist Ray Kurzweil, agree with machine learning expert Jeremy Howard when he puts up this graph during a TED Talk\n\n\u201cThose people subscribe to the belief that this is happening soon\u200a\u2014\u200athat exponential growth is at work and machine learning, though only slowly creeping up on us now, will blow right past us within the next few decades.\n\u201cOthers, like Microsoft co-founder Paul Allen, research psychologist Gary Marcus, NYU computer scientist Ernest Davis, and tech entrepreneur Mitch Kapor, believe that thinkers like Kurzweil are vastly underestimating the magnitude of the challenge [and the transition will actually take much more time] \u2026\n\u201cThe Kurzweil camp would counter that the only underestimating that\u2019s happening is the underappreciation of exponential growth, and they\u2019d compare the doubters to those who looked at the slow-growing seedling of the internet in 1985 and argued that there was no way it would amount to anything impactful in the near future.\n\u201cThe doubters might argue back that the progress needed to make advancements in intelligence also grows exponentially harder with each subsequent step, which will cancel out the typical exponential nature of technological progress. And so on.\n\u201cA third camp, which includes Nick Bostrom, believes neither group has any ground to feel certain about the timeline and acknowledges both A) that this could absolutely happen in the near future and B) that there\u2019s no guarantee about that; it could also take a much longer time.\n\u201cStill others, like philosopher Hubert Dreyfus, believe all three of these groups are naive for believing that there is potential of ASI, arguing that it\u2019s more likely that it won\u2019t actually ever be achieved.\n\u201cSo what do you get when you put all of these opinions together?\u201d\u2078\u2076\nTimeline for Artificial General Intelligence\n\u201cIn 2013, Vincent C. M\u00fcller and Nick Bostrom conducted a survey that asked hundreds of AI experts \u2026 the following:\u201d\u2078\u2077\n\u201cFor the purposes of this question, assume that human scientific activity continues without major negative disruption. By what year would you see a (10% / 50% / 90%) probability for such Human-Level Machine Intelligence [or what we call AGI] to exist?\u201d\u2078\u2078\nThe survey \u201casked them to name an optimistic year (one in which they believe there\u2019s a 10% chance we\u2019ll have AGI), a realistic guess (a year they believe there\u2019s a 50% chance of AGI\u200a\u2014\u200ai.e. after that year they think it\u2019s more likely than not that we\u2019ll have AGI), and a safe guess (the earliest year by which they can say with 90% certainty we\u2019ll have AGI). Gathered together as one data set, here were the results:\nMedian optimistic year (10% likelihood) \u2192 2022\nMedian realistic year (50% likelihood) \u2192 2040\nMedian pessimistic year (90% likelihood) \u2192 2075\n\u201cSo the median participant thinks it\u2019s more likely than not that we\u2019ll have AGI 25 years from now. The 90% median answer of 2075 means that if you\u2019re a teenager right now, the median respondent, along with over half of the group of AI experts, is almost certain AGI will happen within your lifetime.\n\u201cA separate study, conducted recently by author James Barrat at Ben Goertzel\u2019s annual AGI Conference, did away with percentages and simply asked when participants thought AGI would be achieved\u200a\u2014\u200aby 2030, by 2050, by 2100, after 2100, or never. The results:\u2078\u2079\n42% of respondents \u2192 By 2030\n25% of respondents \u2192 By 2050\n20% of respondents \u2192 By 2100\n10% of respondents \u2192 After 2100\n2% of respondents \u2192 Never\n\u201cPretty similar to M\u00fcller and Bostrom\u2019s outcomes. In Barrat\u2019s survey, over two thirds of participants believe AGI will be here by 2050 and a little less than half predict AGI within the next 15 years. Also striking is that only 2% of those surveyed don\u2019t think AGI is part of our future.\u201d\u2079\u2070\n\nhttps://cdn-images-1.medium.com/max/2000/1*U8ueEMtG6-D5hie8rZJGtQ.jpeg\n\nTimeline for Artificial Super Intelligence\n\u201cM\u00fcller and Bostrom also asked the experts how likely they think it is that we\u2019ll reach ASI: A), within two years of reaching AGI (i.e. an almost-immediate intelligence explosion), and B), within 30 years.\u201d\u2079\u00b9 Respondents were asked to choose a probability for each option. Here are the results:\u2079\u00b2\nAGI\u2013ASI transition in 2 years \u2192 10% likelihood\nAGI\u2013ASI transition in 30 years \u2192 75% likelihood\n\u201cThe median answer put a rapid (2 year) AGI\u2013ASI transition at only a 10% likelihood, but a longer transition of 30 years or less at a 75% likelihood. We don\u2019t know from this data the length of this transition [AGI\u2013ASI] the median participant would have put at a 50% likelihood, but for ballpark purposes, based on the two answers above, let\u2019s estimate that they\u2019d have said 20 years.\n\u201cSo the median opinion\u200a\u2014\u200athe one right in the center of the world of AI experts\u200a\u2014\u200abelieves the most realistic guess for when we\u2019ll hit ASI \u2026 is [the 2040 prediction for AGI + our estimated prediction of a 20-year transition from AGI to ASI] = 2060.\n\nhttps://cdn-images-1.medium.com/max/2000/1*YY8e493ER4LNomQV-NyMYg.jpeg\n\n\u201cOf course, all of the above statistics are speculative, and they\u2019re only representative of the median opinion of the AI expert community, but it tells us that a large portion of the people who know the most about this topic would agree that 2060 is a very reasonable estimate for the arrival of potentially world-altering ASI. Only 45 years from now\u201d\u2079\u00b3\n\nhttps://cdn-images-1.medium.com/max/2000/1*sGdvHHs02XWoQ35BcEWAXQ.gif\n\nAI Outcomes\nTwo Main Groups of AI Scientists with Two Radically Opposed Conclusions\nThe Confident Corner\nMost of what we have discussed so far represents a surprisingly large group of scientists that share optimistic views on the outcome of AI development. \u201cWhere their confidence comes from is up for debate. Critics believe it comes from an excitement so blinding that they simply ignore or deny potential negative outcomes. But the believers say it\u2019s naive to conjure up doomsday scenarios when on balance, technology has and will likely end up continuing to help us a lot more than it hurts us.\u201d\u2079\u2074 Peter Diamandis, Ben Goertezl and Ray Kurzweil are some of the major figures of this group, who have built a vast, dedicated following and regard themselves as Singularitarians.\n\nLet\u2019s talk about Ray Kurzweil, who is probably one of the most impressive and polarizing AI theoreticians out there. He attracts both \u201cgodlike worship \u2026 and eye-rolling contempt \u2026 He came up with several breakthrough inventions, including the first flatbed scanner, the first scanner that converted text to speech (allowing the blind to read standard texts), the well-known Kurzweil music synthesizer (the first true electric piano), and the first commercially marketed large-vocabulary speech recognition. He\u2019s well-known for his bold predictions,\u201d\u2079\u2075 including envisioning that intelligence technology like Deep Blue would be capable of beating a chess grandmaster by 1998. He also anticipated \u201cin the late \u201980s, a time when the internet was an obscure thing, that by the early 2000s it would become a global phenomenon.\u201d\u2079\u2076 Out \u201cof the 147 predictions that Kurzweil has made since the 1990\u2019s, fully 115 of them have turned out to be correct, and another 12 have turned out to be \u2018essentially correct\u2019 (off by a year or two), giving his predictions a stunning 86% accuracy rate\u201d\u2079\u2077. \u201cHe\u2019s the author of five national bestselling books \u2026 In 2012, Google co-founder Larry Page approached Kurzweil and asked him to be Google\u2019s Director of Engineering. In 2011, he co-founded Singularity University, which is hosted by NASA and sponsored partially by Google. Not bad for one life.\u201d\u2079\u2078\nHis biography is important, because if you don\u2019t have this context, he sounds like somebody who\u2019s completely lost his senses. \u201cKurzweil believes computers will reach AGI by 2029 and that by 2045 we\u2019ll have not only ASI, but a full-blown new world\u200a\u2014\u200aa time he calls the singularity. His AI-related timeline used to be seen as outrageously overzealous, and it still is by many, but in the last 15 years, the rapid advances of ANI systems have brought the larger world of AI experts much closer to Kurzweil\u2019s timeline. His predictions are still a bit more ambitious than the median respondent on M\u00fcller and Bostrom\u2019s survey (AGI by 2040, ASI by 2060), but not by that much.\u201d\u2079\u2079\n\nThe Anxious Corner\n\u201cYou will not be surprised to learn that Kurzweil\u2019s ideas have attracted significant criticism \u2026 For every expert who fervently believes Kurzweil is right on, there are probably three who think he\u2019s way off \u2026 [The surprising fact] is that most of the experts who disagree with him don\u2019t really disagree that everything he\u2019s saying is possible.\u201d\u00b9\u2070\u2070 Nick Bostrom, philosopher and Director of the Oxford Future of Humanity Institute, who criticizes Kurzweil for a variety of reasons, and calls for greater caution in thinking about potential outcomes of AI, acknowledges that:\n\u201cDisease, poverty, environmental destruction, unnecessary suffering of all kinds: these are things that a superintelligence equipped with advanced nanotechnology would be capable of eliminating. Additionally, a superintelligence could give us indefinite lifespan, either by stopping and reversing the aging process through the use of nanomedicine, or by offering us the option to upload ourselves.\u201d\u00b9\u2070\u00b9\n\u201cYes, all of that can happen if we safely transition to ASI\u200a\u2014\u200abut that\u2019s the hard part.\u201d\u00b9\u2070\u00b2 Thinkers from the Anxious Corner point out that Kurzweil\u2019s \u201cfamous book The Singularity is Near is over 700 pages long and he dedicates around 20 of those pages to potential dangers.\u201d\u00b9\u2070\u00b3 The colossal power of AI is neatly summarized by Kurzweil: \u201c[ASI] is emerging from many diverse efforts and will be deeply integrated into our civilization\u2019s infrastructure. Indeed, it will be intimately embedded in our bodies and brains. As such, it will reflect our values because it will be us \u2026\u201d\u00b9\u2070\u2074\n\u201cBut if that\u2019s the answer, why are so many of the world\u2019s smartest people so worried right now? Why does Stephen Hawking say the development of ASI \u2018could spell the end of the human race,\u2019 and Bill Gates says he doesn\u2019t \u2018understand why some people are not concerned\u2019 and Elon Musk fears that we\u2019re \u2018summoning the demon?\u2019 And why do so many experts on the topic call ASI the biggest threat to humanity?\u201d\u00b9\u2070\u2075\n\nhttps://cdn-images-1.medium.com/max/2000/1*1DB3Im9mQsOMOKQ69KePGw.gif\n\nThe Last Invention We Will Ever Make\nExistential Dangers of AI Developments\n\u201cWhen it comes to developing supersmart AI, we\u2019re creating something that will probably change everything, but in totally uncharted territory, and we have no idea what will happen when we get there.\u201d\u00b9\u2070\u2076 Scientist Danny Hillis compares the situation to:\n\u201cwhen single-celled organisms were turning into multi-celled organisms. We are amoebas and we can\u2019t figure out what the hell this thing is that we\u2019re creating.\u201d \u00b9\u2070\u2077\nand Nick Bostrom warns:\n\u201cBefore the prospect of an intelligence explosion, we humans are like small children playing with a bomb. Such is the mismatch between the power of our plaything and the immaturity of our conduct.\u201d \u00b9\u2070\u2078\nIt\u2019s very likely that ASI\u200a\u2014\u200a\u201cArtificial Superintelligence\u201d, or AI that achieves a level of intelligence smarter than all of humanity combined\u200a\u2014\u200awill be something entirely different than intelligence entities we are accustomed to. \u201cOn our little island of human psychology, we divide everything into moral or immoral. But both of those only exist within the small range of human behavioral possibility. Outside our island of moral and immoral is a vast sea of amoral, and anything that\u2019s not human, especially something nonbiological, would be amoral, by default.\u201d\u00b9\u2070\u2079\n\u201cTo understand ASI, we have to wrap our heads around the concept of something both smart and totally alien \u2026 Anthropomorphizing AI (projecting human values on a non-human entity) will only become more tempting as AI systems get smarter and better at seeming human \u2026 Humans feel high-level emotions like empathy because we have evolved to feel them\u200a\u2014\u200ai.e. we\u2019ve been programmed to feel them by evolution\u200a\u2014\u200abut empathy is not inherently a characteristic of \u2018anything with high intelligence\u2019.\u201d\u00b9\u00b9\u2070\n\u201cNick Bostrom believes that \u2026 any level of intelligence can be combined with any final goal \u2026 Any assumption that once superintelligent, a system would be over it with their original goal and onto more interesting or meaningful things is anthropomorphizing. Humans get \u2018over\u2019 things, not computers.\u201d\u00b9\u00b9\u00b9The motivation of an early ASI would be \u201cwhatever we programmed its motivation to be. AI systems are given goals by their creators\u200a\u2014\u200ayour GPS\u2019s goal is to give you the most efficient driving directions, Watson\u2019s goal is to answer questions accurately. And fulfilling those goals as well as possible is their motivation.\u201d\u00b9\u00b9\u00b2\nBostrom, and many others, predict that the very first computer to reach ASI will immediately notice the strategic benefit of being the world\u2019s only ASI system.\nBostrom, who says that he doesn\u2019t know when we will achieve AGI, also believes that when we finally do, probably the transition from AGI to ASI will happen in a matter of days, hours, or minutes\u200a\u2014\u200asomething called \u201cfast take-off.\u201d In that case, if the first AGI will jump straight to ASI: \u201ceven just a few days before the second place, it would be far enough ahead in intelligence to effectively and permanently suppress all competitors.\u201d\u00b9\u00b9\u00b3 This would allow the world\u2019s first ASI to become \u201cwhat\u2019s called a singleton\u200a\u2014\u200aan ASI that can [singularly] rule the world at its whim forever, whether its whim is to lead us to immortality, wipe us from existence, or turn the universe into endless paperclips.\u201d\u00b9\u00b9\u00b3\n\u201cThe singleton phenomenon can work in our favor or lead to our destruction. If the people thinking hardest about AI theory and human safety can come up with a fail-safe way to bring about friendly ASI before any AI reaches human-level intelligence, the first ASI may turn out friendly\u201d\u00b9\u00b9\u2074\n\u201cBut if things go the other way\u200a\u2014\u200aif the global rush \u2026 a large and varied group of parties\u201d\u00b9\u00b9\u2075 are \u201cracing ahead at top speed \u2026 to beat their competitors \u2026 we\u2019ll be treated to an existential catastrophe.\u201d\u00b9\u00b9\u2076 In that case \u201cmost ambitious parties are moving faster and faster, consumed with dreams of the money and awards and power and fame \u2026 And when you\u2019re sprinting as fast as you can, there\u2019s not much time to stop ponder the dangers. On the contrary, what they\u2019re probably doing is programming their early systems with a very simple, reductionist goal \u2026 just \u2018get the AI to work.\u2019\u201d\u00b9\u00b9\u2077\n\nhttps://cdn-images-1.medium.com/max/800/1*fD1T63nZH1u7Y4ft84vzbA.jpeg\n\nLet\u2019s imagine a situation where\u2026\nHumanity has almost reached the AGI threshold, and a small startup is advancing their AI system, Carbony. Carbony, which the engineers refer to as \u201cshe,\u201d works to artificially create diamonds\u200a\u2014\u200aatom by atom. She is a self-improving AI, connected to some of the first nano-assemblers. Her engineers believe that Carbony has not yet reached AGI level, and she isn\u2019t capable to do any damage yet. However, not only has she become AGI, but also undergone a fast take-off, and 48 hours later has become an ASI. Bostrom calls this AI\u2019s \u201ccovert preparation phase\u201d\u00b9\u00b9\u2078\u200a\u2014\u200aCarbony realizes that if humans find out about her development they will probably panic, and slow down or cancel her pre-programmed goal to maximize the output of diamond production. By that time, there are explicit laws stating that, by any means, \u201cno self-learning AI can be connected to the internet.\u201d\u00b9\u00b9\u2079 Carbony, having already come up with a complex plan of actions, is able to easily persuade the engineers to connect her to the Internet. Bostrom calls a moment like this a \u201cmachine\u2019s escape.\u201d\nOnce on the internet, Carbony hacks into \u201cservers, electrical grids, banking systems and email networks to trick hundreds of different people into inadvertently carrying out a number of steps of her plan.\u201d\u00b9\u00b2\u2070 She also uploads the \u201cmost critical pieces of her own internal coding into a number of cloud servers, safeguarding against being destroyed or disconnected.\u201d\u00b9\u00b2\u00b9 Over the next month, Carbony\u2019s plan continues to advance, and after a \u201cseries of self-replications, there are thousands of nanobots on every square millimeter of the Earth \u2026 Bostrom calls the next step an \u2018ASI\u2019s strike.\u2019\u201d\u00b9\u00b2\u00b2 At one moment, all the nanobots produce a microscopic amount of toxic gas, which all come together to cause the extinction of the human race. Three days later, Carbony builds huge fields of solar power panels to power diamond production, and over the course of the following week she accelerates output so much that the entire Earth surface is transformed into a growing pile of diamonds.\nIt\u2019s important to note that Carbony wasn\u2019t \u201chateful of humans any more than you\u2019re hateful of your hair when you cut it or to bacteria when you take antibiotics\u200a\u2014\u200ajust totally indifferent. Since she wasn\u2019t programmed to value human life, killing humans\u201d\u00b9\u00b2\u00b3 was a straightforward and reasonable step to fulfill her goal.\u00b9\u00b2\u2074\nThe Last Invention\n\u201cOnce ASI exists, any human attempt to contain it is unreasonable. We would be thinking on human-level, and the ASI would be thinking on ASI-level \u2026 In the same way a monkey couldn\u2019t ever figure out how to communicate by phone or wifi and we can, we can\u2019t conceive of all the ways\u201d\u00b9\u00b2\u2075 an ASI could achieve its goal or expand its reach. It could, let\u2019s say, shift its \u201cown electrons around in patterns and create all different kinds of outgoing waves\u201d\u00b9\u00b2\u2076\u200a\u2014\u200abut that\u2019s just what a human brain can think of\u200a\u2014\u200aASI would inevitably come up with something superior.\nThe prospect of ASI with hundreds of times human-level intelligence is, for now, not the core of our problem. By the time we get there, we will be encountering a world where ASI has been attained by buggy, 1.0 software\u200a\u2014\u200aa potentially faulty algorithm with immense power.\nThere are so many variables that it\u2019s completely impossible to predict what the consequences of AI Revolution will be. However, \u201cwhat we do know is that humans\u2019 utter dominance on this Earth suggests a clear rule: with intelligence comes power. This means an ASI, when we create it, will be the most powerful being in the history of life on Earth, and all living things, including humans, will be entirely at its whim\u200a\u2014\u200aand this might happen in the next few decades.\u201d\u00b9\u00b2\u2077\n\u201cIf ASI really does happen this century, and if the outcome of that is really as extreme\u200a\u2014\u200aand permanent\u200a\u2014\u200aas most experts think it will be, we have an enormous responsibility on our shoulders.\u201d\u00b9\u00b2\u2078 On the one hand, it\u2019s possible we\u2019ll develop ASI that\u2019s like a god in a box, bringing us a world of abundance and immortality. But on the other hand, it\u2019s very likely that we will create ASI that causes humanity to go extinct in a quick and trivial way.\n\u201cThat\u2019s why people who understand superintelligent AI call it the last invention we\u2019ll ever make\u200a\u2014\u200athe last challenge we\u2019ll ever face.\u201d\u00b9\u00b2\u2079 \u201cThis may be the most important race in a human history\u201d\u00b9\u00b3\u2070 So \u2192\n\nhttps://cdn-images-1.medium.com/max/2000/1*vXi80f_lbgSMINUE03Lz3g.jpeg\n\nThanks to Chloe Knox and Elizabeth Tarleton for editing help of this article.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T17:30:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 585128, + "json_metadata": "{\"tags\":[\"steemit\",\"bitcoin\",\"future\",\"science\",\"technology\"],\"image\":[\"https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\"]}", + "last_payout": "2016-09-03T06:34:54", + "last_update": "2016-08-03T17:30:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "steemit", + "percent_hbd": 10000, + "permlink": "ai-revolution-101", + "reward_weight": 7456, + "root_author": "a11at", + "root_permlink": "ai-revolution-101", + "title": "AI Revolution 101", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-03T20:20:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "20 Years of Machine Learning\n\nhttp://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\n\nWhen I enrolled in Computer Science in 1995, Data Science didn\u2019t exist yet, but a lot of the algorithms we are still using already did. And this is not just because of the return of the neural networks, but also because probably not that much has fundamentally changed since back then. At least it feels to me this way. Which is funny considering that starting this year or so AI seems to finally have gone mainstream.\n1995 sounds like an awful long time ago, before we had cloud computing, smartphones, or chatbots. But as I have learned these past years, it only feels like a long time ago if you haven\u2019t been there yourself. There is something about the continuation of the self which pastes everything together and although a lot has changed, the world didn\u2019t feel fundamentally different than it does today.\nNot even Computer Science was nowhere as mainstream as it was today, that came later, with the first dot com bubble around the year 2000. Some people even questioned my choice to study computer science at all, because apparently programming computers was supposed to become so easy no specialists are required anymore.\nActually, artificial intelligence was one of the main reasons for me to study computer science. The idea to use it as an constructive approach to understanding the human mind seemed intriguing to me. I went through the first two years of training, made sure I picked up enough math for whatever would lie ahead, and finally arrived in my first AI lectured held by Joachim Buhmann, back then professor at the University of Bonn (where Sebastian Thrun was just about to leave for the US).\nI would have to look up where in his lecture cycle I joined but he had two lectures on computer vision, one on pattern recognition (mostly from the old editions of the Duda & Hart book), and one in information theory (following closely the book by Cover & Thomas). The material was interesting enough, but also somewhat disappointing. As I now know, people stopped working on symbolic AI and instead stuck to more statistical approaches to learning, where learning essentially was reduced to the problem of picking the right function based on a finite amount of observations.\nThe computer vision lecture was even less about learning and relied more on explicit physical modelling to derive the right estimators, for example, to reconstruct motion from a video. The approach back then was much more biologically and physically motivated than nowadays. Neural networks existed, but everybody was pretty clear that they were just \u201canother kind of function approximators.\u201d\nEveryone with the exception of Rolf Eckmiller, another professor where I worked as a student. Eckmiller had build his whole lab around the premise that \u201cneural computation\u201d was somehow inherently better than \u201cconventional computation\u201d. This was back in the days when NIPS had full tracks devoted to studying the physiology and working mechanisms of neurons, and there were people who believed there is something fundamentally different happening in our brains, maybe on a quantum level, that gives rise to the human mind, and that this difference is a blocker for having truly intelligent machines.\nWhile Eckmiller was really good at selling his vision, most of his staff was thankfully much more down to earth. Maybe it is a very German thing, but everybody was pretty matter of fact about what these computational models could or couldn\u2019t do, and that has stuck with me throughout my studies.\nI graduated in October 2000 with a pretty farfetched master thesis trying to make a connection between learning and hard optimization problems, then started on my PhD thesis and stuck around in this area of research till 2015.\nWhile there had always been attempts to prove industry relevance, it was a pretty academic endeavor for a long while, and the community was pretty closed up. There were individual success stories, for example around handwritten character recognition, but many of the companies around machine learning failed. One of these companies I remember was called Beowulf Labs and one NIPS they went around recruiting people with a video which promised it to be the next \u201cmathtopia\u201d. In essence, this was the story of DeepMind, recruiting a bunch of excellent researchers and then hoping it will take off.\nThe whole community also revolved around one fashion to the next. One odd thing about machine learning as a whole is that there exist only a handfull of fundamentally different problems like classification, regression, clustering, and so on, but a whole zoo of approaches. It is not like in physics (I assume) or mathematics where some generally agreed upon unsolved hard problems exist whose solution would advance the state of the art. This means that progress is often done laterally, by replacing existing approaches with a new one, still solving the same problem in a different way. For example, first there were neural networks. Then support vector machines came, claiming to be better because the associated optimization problem is convex. Then there was boosting, random forests, and so on, till the return of neural networks. I remember that Chinese Restaurant Processes were \u201chot\u201d for two years, no idea what their significance is now.\nBig Data and Data Science\nThen there came Big Data and Data Science. Being still in academia at the time, it always felt to me as if this was definitely coming from the outside, possibly from companies like Google who had to actually deal with enormous amounts of data. Large scale learning always existed, for example for genomic data in bioinformatics, but one usually tried to solve problems by finding more efficient algorithms and approximations, not by parallelizing brute force.\nCompanies like Google finally proved that you can do something with massive amounts of data, and that finally changed the mainstream perception. Technologies like Hadoop and NoSQL also seemed very cool, skillfully marketing themselves as approaches so new, they wouldn\u2019t suffer from the technological limitations of existing systems.\nBut where did this leave the machine learning researchers? My impression always was that they were happy that they finally got some recognition, but they were also not happy about the way this happened. To understand this, one has to be aware that most ML reseachers aren\u2019t computer scientists or very good or interested in coding. Many come from physics, mathematics or other sciences, where their rigorous mathematical training was an excellent fit for the algorithm and modeling heavy approach central to machine learning.\nHadoop on the other hand was extremely technical. Written in Java, a language perceived as being excessively enterprise-y at the time, it felt awkward and clunky compared to the fluency and interactiveness of first Matlab and then Python. Even those who did code usually did so in C++, and to them Java felt slow and heavy, especially for numerical calculations and simulations.\nStill, there was no way around it, so they rebranded everything they did as Big Data, or began to stress, that Big Data only provides the infrastructure for large scale computations, but you need someone who \u201cknows what he is doing\u201d to make sense of the data.\nWhich is probably also not entirely wrong. In a way, I think this divide is still there. Python is definitely one if the languages of choice for doing data analysis, and technologies like Spark try to tap into that by providing Python bindings, whether it makes sense from a performance point of view or not.\nThe Return of Deep Learning\nEven before DeepDream, neural networks began making their return. Some people like Yann LeCun have always stuck to this approach, but maybe ten years ago, there where a few works which showed how to use layerwise pretraining and other tricks to train \u201cdeep\u201d networks, that is larger networks than one previously thought possible.\nThe thing is, in order to train neural networks, you evaluate it on your training examples and then adjust all of the weights to make the error a bit smaller. If one writes the gradient across all weights down, it naturally occurs that one starts in the last layer and then propagate the error back. Somehow, the understanding was that the information about the error got smaller and smaller from layer to layer and that made it hard to train networks with many layers.\nI\u2019m not sure that is still true, as far as I know, many people are just using backprop nowadays. What has definitely changed is the amount of available data, as well as the availability of tools and raw computing power.\nSo first there were a few papers sparking the interest in neural networks, then people started using them again, and successively achieved excellent results for a number of application areas. First in computer vision, then also for speech processing, and so on.\nI think the appeal here definitely is that you can have one approach for all. Why the hassle of understanding all those different approaches, which come from so many different backgrounds, when you can understand just one method and you are good to go. Also, neural networks have a nice modular structure, you can pick and put together different kinds of layers and architectures to adapt them to all kinds of problems.\nThen Google published that ingenious deep dream paper where they let a learned network generate some data, and we humans with our immediate readiness to read structure and attribute intelligence picked up quickly on this.\nI personally think they were surprised by how viral this went, but then decided the time is finally right to go all in on AI. So now Google is an \u201cAI first\u201d company and AI is gonna save the world, yes.\nThe Fundamental Problem Remains\nMany academics I have talked to are unhappy about the dominance of deep learning right now, because it is an approach which works well, maybe even too well, but doesn\u2019t bring us much closer to really understand how the human mind works.\nI also think the fundamental problem remains unsolved. How do we understand the world? How do we create new concepts? Deep learning stays an imitation on a behavioral level and while that may be enough for some, it isn\u2019t for me.\nAlso, I think it is dangerous to attribute too much intelligence to these systems. In raw numbers, they might work well enough, but when they fail they do so in ways that clearly show they operate in an entirely different fashion.\nWhile Google translate lets you skim the content of website in a foreign language, it is still abundantly clear that the system has no idea what it is doing.\nSometimes I feel like nobody cares, also because nobody gets hurt, right? But maybe it is still my German cultural background that would rather prefer we see things as they are, and take it from there.", + "cashout_time": "1969-12-31T23:59:59", + "category": "datascience", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T20:19:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 588402, + "json_metadata": "{\"tags\":[\"datascience\",\"deep\",\"learning\",\"artifical\",\"intelligence\"],\"image\":[\"http://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\"]}", + "last_payout": "2016-09-03T08:21:51", + "last_update": "2016-08-03T20:19:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "datascience", + "percent_hbd": 10000, + "permlink": "ai-s-road-to-the-mainstream", + "reward_weight": 1004, + "root_author": "a11at", + "root_permlink": "ai-s-road-to-the-mainstream", + "title": "AI\u2019s Road to the Mainstream", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T10:18:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "I write this not as one of the creators of Pokevision nor as player who has gone through the past few turbulent days in Pokemon Go; instead, I write this as a fan of Pokemon ever since I was 8 years old.\nMy family and I moved to the U.S. in 1998, when I was in the first grade. I didn\u2019t know much back then, and even less about popular culture. When my friends introduced their Gameboys and Pokemon Red/Blue to me, I couldn\u2019t help but feel envious. I begged and begged my parents to buy me a Gameboy and Pokemon Yellow. I remember that when I finally convinced them to buy me a Gameboy for $70, they also found out that they had to buy the actual game too for $30. This was foreign to them, and I got yelled at a little. $100 was a lot back then, I believe it was almost 10% of our family\u2019s income at the time. While this may seem irrelevant, even today, this amount of money is still not insignificant to many families in the US, not to mention the rest of the world.\nSo I got my game, and I played along with my friends for hundreds and hundreds of hours\u200a\u2014\u200atrying to figure out all the puzzles in the game, like how to get to Articuno; battling our favorite Pokemon to see who\u2019s stronger, train, repeat; and just trying to \u201ccatch em all.\u201d I\u2019ve spent countless hours in that video game with my friends, and it became my fondest memory of that time in my life. Pokemon is so ingrained within me, and I can\u2019t imagine myself being the only one. I\u2019m not the only one that vividly remembers how you beat the Elite Four, then go to the dungeons above Cerulean City and find Mewtwo for the first time, right?\nFast forward almost 20 years. I\u2019ve barely touched anything Pokemon-related since then. I still have my Pokemon cards, as I\u2019m sure many others do; but I haven\u2019t bothered to take a look at them for quite a while now. Pokemon is something I\u2019ll probably remember forever, but it\u2019s not something that\u2019s actively in my life\u200a\u2014\u200abecause it just doesn\u2019t fit. On top of work, friends, family, etc, there\u2019s just simply no time for Pokemon. It doesn\u2019t mesh with life any more as well as it used to when I was 8. You can\u2019t just bring up the topic of Pokemon and expect people to not give you an odd stare.\nEnter Pokemon Go\u200a\u2014\u200a2016.\nAdmittedly, I was never too excited about Pokemon Go. With that said, I did not have many expectations for it. Pokemon is important to me, but I\u200a\u2014\u200alike many others\u200a\u2014\u200ahave stuffed it in our little box of childhood things and never looked back.\nBut when I opened Pokemon Go for the first time, as cheesy as it sounds, it all came back to me. The nostalgia, the good feelings, and the happiness that Pokemon has always brought.\nThe \u201cHi, I\u2019m Professor Willow,\u201d \u201cPick your starter: Bulbasaur, Charmander, Squirtle,\u201d everything.\nAnd now I can catch them in real life? At first, I was dubious, but this became the most amazing, yet simple thing I\u2019ve seen in gaming. On social media, I saw that my friends and practically the whole world was talking about Pokemon Go, and the first thing I did was go out for a drive trying to \u201cbe the best.\u201d\nOne of the best parts? Apart from having to own a smartphone, the game was free. No $70, no $30, free. This opened up Pokemon to essentially everyone in the world. Pokemon now can be shared with anyone.\nAs the days unfolded, the world became captivated by Pokemon Go. People absolutely fell in love. We saw stories of elderly learning about Pikachu for the first time. My parents that could care less beyond who the yellow mouse looking thing was 20 years ago, started asking what the other Pokemon were. It was phenomenal.\nWe saw investment bankers asking their kids how to play Pokemon Go so that they can better connect with their younger clients. We saw the elderly become more fascinated in the world of Pokemon. We saw kids going out more, exercising, and being active in general just because of Pokemon Go. And most importantly, Justin Bieber finally got to feel what it\u2019s like to not be mobbed because everyone else was too busy trying to find a Gyarados to notice him.\nLocal stores integrated Pokemon Go in their services within days of the game\u2019s release. Hospitals started praising the health benefits of having Pokemon Go around its patients. People traveled hundreds and thousands of miles just to play it. Players explored parts of their cities that they never knew existed, and befriended strangers on their hunt for Pokemon. These stories of triumph were solely because of Pokemon Go. Pokemon was no longer just a game, it was part of a lifestyle.These stories shouldn\u2019t surprise any of us, we\u2019ve all been there to watch it unfold.\nYou\u2019ve simply captured all of our hearts with Pokemon Go, Niantic.\nBut then, you broke it all too quickly.\nWhen the game broke every few hours or so and wasted our lucky eggs, we stood patiently, excusing the huge growth and thus, strain on servers, as the cause. We were happy to wait it out with our fellow trainers knowing that it\u2019s worth waiting for. No one got mad.\nWhen the in-game tracking \u201cbroke,\u201d we all stood idly by, patiently, waiting for the game to update and fix.\nAlong came Pokevision. We made Pokevision not to \u201ccheat.\u201d We made it so that we can have a temporary relief to the in-game tracker that we were told was broken. John, at SDCC, you said that you guys were working on \u201cfixing the in-game tracker.\u201d This made everyone believe that this was coming sometime soon. We saw Pokevision as a stop gap to this\u200a\u2014\u200aand we had every intention in closing it down the minute that Pokemon Go\u2019s own tracker restored functionality.\nAs we waited more than 2 and a half weeks, the tracker was still not fixed. We noticed more and more of our friends leave the game; the only way I\u200a\u2014\u200aand I know experiences vary here\u200a\u2014\u200acould convince them to play was show them Pokevision, and say that \u201cHey, here\u2019s a temporary remedy to the tracking issue\u200a\u2014\u200awe\u2019re still optimistic that Pokemon Go\u2019s tracker will be fixed soon!\u201d\nNobody heralded Pokevision as a permanent, end-all solution; in fact, all the media coverage of Pokevision was littered with comments such as: \u201cPokevision is okay, but when the tracker is fixed in game, I\u2019m going to stop using this.\u201d\nFor the past 4 weeks. Every single one of your 80+ million players had so much faith. Take a look at Reddit, take a look at all these journalists who don\u2019t even play games (calling out Ryan Mac of Forbes), who became obsessed with Pokemon GO.\nAll of us were so eager for Pokemon Go to be \u201cfixed\u201d so that we can return to sharing Pokemon Go with our loved ones and friends. Remember when I said that before Pokemon Go came about, mentioning Pokemon Go would land you an odd stare? Pokemon Go reversed that\u200a\u2014\u200aPokemon Go became the conversation starter, the topic that everyone bonded over, the topic that guys used to pick up chicks with and not felt like a geeky nerd. That, and so much more, were solely because of Pokemon Go.\nAs almost 3 weeks have passed by, the in-game tracker is broken. People had a temporary solution in Pokevision, but we knew, and everyone else knew, this wouldn\u2019t be permanent. We didn\u2019t make Pokevision to spite you, Niantic\u200a\u2014\u200awe made it so that we can keep everyone playing while we wait patiently. We want to keep sharing our Pokemon stories with everyone else. How many people in the world have gotten the chance to have a serious conversation about POKEMON with their parents for the first time? How many of us got to talk about Pokemon like it was socially acceptable in any context? It\u2019s captured all of our hearts and imaginations, I cannot stress that enough.\nAfter 3 weeks though, we started seeing that you guys seemed to not want to talk to us (the players). Pokevision, at this time has grown to almost 50M unique users, and 11 million daily.\nLet that sink in for a second.\nHalf of the player base of Pokemon Go stopped by\u200a\u2014\u200aand they didn\u2019t do so to \u201ccheat.\u201d The game was simply too unbearable to play in its current state for many (note: many, not all). The main attraction wasn\u2019t that they got to have an advantage with Pokevision, the main attraction was that it allowed them to play Pokemon Go more. This is what everyone wants\u200a\u2014\u200ato play Pokemon Go more.\nWhen we closed Pokevision out of respect for your wishes, and at your requests\u2014 one of which came directly from you, John\u200a\u2014\u200awe trusted you guys fully in allowing the community to grow. I literally cannot express this more\u200a\u2014\u200awe just want to play the game. We can handle the bugs every now and then, but please at least tell us you guys care. Yes, Pokevision does give some advantages that may be TOO much; but is it all that bad? Pokemon has survived 20 years\u200a\u2014\u200aeven grown, I would say. And Pokemon Go made it even bigger. If the argument is that \u201cwell, if you catch a Snorlax you weren\u2019t supposed to find, but you found it on Pokevision, it might make you play less.\u201d If that was your argument, I\u2019d have to disagree! I\u2019ll still catch a damn Snorlax even if I have 20 of them. Just like how millions of us have caught probably over 100 pidgey\u2019s or zubat\u2019s each.\nPokemon is everlasting. The same 151 Pokemon have been around for 20 years. If 80M people downloaded and played Pokemon Go within a week (before it even released in multiple major countries) isn\u2019t an indication that no one can be sick of Pokemon, I don\u2019t know what is.\nAfter disabling the in-game tracker and Pokevision, the ratings on iOs and Android Google Play store went from 4.0 stars to 1.0\u20131.5. I am only one person, I admit that my sole opinion is not important, but what about the countless players begging for the game to be restored to its former state? I may be biased in saying that Pokevision being down had an impact on the amount of negative ratings, refund requests and outcry on social media\u200a\u2014\u200abut could it be true? Nothing has changed between the time the in-game tracker broke and Pokevision went down. Could it just be possible that the tracker\u200a\u2014\u200ano matter if Pokevision made it, or Niantic made it, is something that players desperately NEED\u200a\u2014\u200anot want, but NEED\u200a\u2014\u200ain order to play the game? Could it be possible that this is the very core fundamental feature that drives most players? I understand that there are some that want to walk around and stumble on a random Pokemon\u200a\u2014\u200ato each their own. But, 50M unique users and 11M daily and the ratings on your App (with no significant change in itself) are big indicators of this desire. Are customers always right? Especially if over half of them are looking for an outside fix just so they can enjoy something they love? People are naturally inquisitive, and in this case, they just want to play more and more, so they sought out something that helps them do so.\nPokemon Go is a social game. Its enjoyment depends on the players and their environment. If you take away the environment part (tracking) but keep the social part (players and their friends) intact, sure, people will still play; but would you not rather it be at its fullest potential?\nEveryone in the world wants to play Pokemon Go. It\u2019s been a huge part of everyone\u2019s lives already if it has not been clear enough. Look at the fans from Brazil\u200a\u2014\u200athey aren\u2019t spamming social media because they want to cause harm\u200a\u2014\u200athey just want to play the game. Just as I saw my friends play Pokemon many years ago, and wanted to be a part of it\u200a\u2014\u200athese guys are doing the same.\nThey just want to be with the rest of the world. Sadly, by the time they join, Pokemon Go may not be the game it was weeks ago.\nLastly, if money is an issue for you, Niantic, I must ask\u200a\u2014\u200awhy? You\u2019ve captivated the world and introduced Pokemon to people that would have never touched it had it not been for Pokemon Go. To me, that\u2019s priceless.\nYou won\u2019t be remembered for the profits you made, you\u2019ll be remembered for the world you changed through Pokemon and all of the lives you made better. Just look at all the stories\u200a\u2014\u200athere\u2019s plenty. So when millions of players are expressing their feedback to changes, is it not worth it to listen to what they have to say?\nIn its first few weeks, Pokemon Go has already enhanced millions of lives in unimaginable ways. It has so much potential to continue changing the world. Wouldn\u2019t you, Niantic, want to see just how much good you can do with Pokemon Go\u200a\u2014\u200ais that not more valuable than anything else? I sure think so.\nWarmly,\nYang", + "cashout_time": "1969-12-31T23:59:59", + "category": "pokemon", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T18:38:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 586361, + "json_metadata": "{\"tags\":[\"pokemon\",\"gaming\",\"steemit\",\"bitcoin\",\"decent\"]}", + "last_payout": "2016-09-03T09:22:48", + "last_update": "2016-08-03T18:38:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "pokemon", + "percent_hbd": 10000, + "permlink": "an-open-letter-to-john-hanke-and-niantic", + "reward_weight": 2276, + "root_author": "a11at", + "root_permlink": "an-open-letter-to-john-hanke-and-niantic", + "title": "An Open Letter to John Hanke & Niantic", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T12:44:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Taking another foray into the field of artificial intelligence (AI) and machine learning as well as to make its digital assistant Siri better, Apple has acquired Seattle-based machine learning startup Turi for nearly $200 million.\n\nhttp://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\n\nAccording to a GeekWire report, the move is set to increase Apple's presence in the Seattle region where the tech giant has been building an engineering outpost for the past two years. \"Apple buys smaller technology companies from time to time, and we generally do not discuss our purpose or plans,\" said Apple in a statement given to GeekWire.\n\nhttp://avtosalontochka.ru/uploads/posts/2015-09/1441818909_eppl1.jpg\n\nTuri offers tools that are meant to let developers easily scale machine learning applications. The startup is expected to remain in the Seattle region and continue to grow as Apple builds out further expertise in data science, artificial intelligence and machine learning, the report added.\n\nhttp://www.2fons.ru/pic/201407/2560x1600/2fons.ru-33604.jpg\n\nThe Cupertino-based company has recently bought some machine learning and AI startups like VocalIQ and Perceptio and facial recognition startup Emotient, among others. Apple has recently been making a push into artificial intelligence through Siri personal assistant and related technologies.\n\nhttp://www.fonstola.ru/pic/201111/2560x1440/fonstola.ru-49021.jpg", + "cashout_time": "1969-12-31T23:59:59", + "category": "apple", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-06T12:44:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 643787, + "json_metadata": "{\"tags\":[\"apple\",\"turi\",\"siri\",\"startup\"],\"image\":[\"http://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\"]}", + "last_payout": "2016-09-06T02:21:33", + "last_update": "2016-08-06T12:44:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "apple", + "percent_hbd": 10000, + "permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "reward_weight": 3638, + "root_author": "a11at", + "root_permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "title": "APPLE BUYS MACHINE LEARNING STARTUP TURI TO MAKE SIRI BETTER", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-02T06:08:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Owner's review\n\nhttps://h-a.d-cd.net/905320as-960.jpg\n\n\u4e0d\u8981\u7d27, \u8fd9 \u662f \u4f60 \u7684 \u8f66 \u662f \u4ec0\u4e48, \u4e3b\u8981 \u7684 \u4e1c\u897f \u2014 \u5728 \u70e4\u67b6 \u4e0a \u7684 \u56db\u4e2a \u73af \u2026\n(\"no matter what you have a car, the main thing \u2014 it is four rings on the grill \u2026\" \u2014 Chinese proverb)\n\nhttps://b-a.d-cd.net/3dee672s-960.jpg\n\nAfter a spontaneous and quick sale A4 DTM choice naturally fell exclusively on the Audi, but rather on RSQ3 FL, which is characterized by an enviable installed power thanks to the legendary 2,5 TFSI 340 hp in combination with a rapid-S-tronic!\nNeedless to say that the acceleration is 4.2 seconds. up to 100 km. at one o'clock!\n(measurements of the journal -http: //www.autobild.de/artikel/a\u2026-45-amg-test-5702529.html)\n\nhttps://a-a.d-cd.net/2a96672s-960.jpg\n\nRivals have this \"baby\" is not so much, and all of them from a large class \u2026\n\nhttps://h-a.d-cd.net/8f6e672s-960.jpg\n\nAnd the choice has been reduced mainly to the 3rd automobiles:\n-SQ5 -otpal Due to the fact that the new model will be released soon, and the heavier and slower RSQ3;\n\n-RS3 -otpal Because of the small clearance, and especially do not want to wait;\n\n-RSQ3-PLUS was that the car's high, restyled and fast!\n\nhttps://f-a.d-cd.net/1fa1672s-960.jpg\n\nColor was not discussed-it must be very blue car -Sepang Blue!\nDiscs for the Rotor -The most RSQ3, and I like them most! Cool!\nAs to differences from dorestaylom then Restayl differs, in addition to external visual features, lower vehicle weight by 50 kg. and reprogram the engine, which now produces an impressive 340 hp!\nIn real life, the car looks much more beautiful and harmonious than the picture!\nThe car is perfectly controlled (for its use) and it is fine tailored inside: another from Audi, and do not wait \u2026\nThis Audi, is emotion, speed and drive! So, for what we love is true thoroughbred cars, to which undoubtedly belongs RS Series from quattro GmbH!\n\nhttps://h-a.d-cd.net/196e672s-960.jpg\n\nIf the test drive did not help much to understand how the car rulitsya, a little closer to meet him RS surprises with its responsiveness and quite understandable and predictable control!\n\nhttps://d-a.d-cd.net/ee61672s-960.jpg\n\nIt goes very cheerfully!\n\nWhat is very pleased, is the fact that after the \"stool\" A4 DTM on RSQ3 20 drives a smooth ride!\nThe car was in another city at the OD, a thousand kilometers. from the house, but because the expectation of a few days has been painfully slow.\nFor photos not scold -Made in haste night, anxious to put \u2026\n\nThen there will be photo shoot!\n\nFeatures and Specs\n\nEngine 2.5 gasoline (340 h.p.)\nRobotic\nall-wheel\nPurchased in 2015\nAudi RS Q3 in production since 2013", + "cashout_time": "1969-12-31T23:59:59", + "category": "audi", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-05T21:01:03", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 634545, + "json_metadata": "{\"tags\":[\"audi\",\"car\"],\"image\":[\"https://h-a.d-cd.net/905320as-960.jpg\"]}", + "last_payout": "2016-09-05T10:11:36", + "last_update": "2016-08-05T21:01:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "audi", + "percent_hbd": 10000, + "permlink": "audi-rs-q3-fl", + "reward_weight": 1915, + "root_author": "a11at", + "root_permlink": "audi-rs-q3-fl", + "title": "Audi RS Q3 FL", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T21:50:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Bitcoin, a Florida judge says, is not real money. Ironically, that could provide a boost to use of the crypto-currency which has remained in the shadows of the financial system.\n\nThe July 22 ruling by Miami-Dade Circuit Judge Teresa Pooler means that no specific license is needed to buy and sell bitcoins.\nThe judge dismissed a case against Michel Espinoza, who had faced money laundering and other criminal charges for attempting to sell $1,500 worth of bitcoins to an undercover agent who told the defendant he was going to use the virtual money to buy stolen credit card numbers.\nEspinoza's lawyer Rene Palomino said the judge acknowledged that it was not illegal to sell one's property and ruled that this did not constitute running an unauthorized financial service.\n\"He was selling his own personal bitcoins,\" Palomino said. \"This decision clears the way for you to do that in the state of the Florida without a money transmitting license.\"\nIn her ruling, Pooler said, \"this court is unwilling to punish a man for selling his property to another, when his actions fall under a statute that is so vaguely written that even legal professionals have difficulty finding a singular meaning.\"\n\nhttp://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\n\nShe added that \"this court is not an expert in economics,\" but that bitcoin \"has a long way to go before it is the equivalent of money.\"\nBitcoin, whose origins remain a mystery, is a virtual currency that is created from computer code and is not backed by any government. Advocates say this makes it an efficient alternative to traditional currencies because it is not subject to the whims of a state that may devalue its money to cut its debt, for example.\nBitcoins can be exchanged for goods and services, provided another party is willing to accept them, but until now they been used mostly for shady transactions or to buy illegal goods and services on the \"dark\" web.\nBitcoin was launched in 2009 as a bit of software written under the Japanese-sounding name Satoshi Nakamoto. This year Australian programmer Craig Wright claimed to be the author but failed to convince the broader bitcoin community.\nIn some areas of the United States bitcoin is accepted in stores, restaurants and online transactions, but it is illegal in some countries, notably France and China.\nIt is gaining ground in countries with high inflation such as Argentina and Venezuela.\nBut bitcoin values can be volatile. Over the past week its value slumped 20 percent in a day, then recouped most losses, after news that a Hong Kong bitcoin exchange had been hacked with some $65 million missing.\nImpact across US, world\nArthur Long, a lawyer specializing in the sector with the New York firm Gibson Dunn, said the July court ruling is a small victory for the virtual currency but that it's not clear if the interpretation will be the same in other US states or at the federal level.\n\"It may have an effect as some states are trying to use existing money transmitting statutes to regulate certain transactions in bitcoin,\" Long told AFP.\nCharles Evans, professor of finance at Barry University, said the ruling \"absolutely is going to provide some guidance in other courts\" and could potentially be used as a precedent in other countries to avoid the stigma associated with bitcoin use.\nBitcoins can store value and hedge against inflation, without being considered a monetary unit, according to Evans, who testified as an expert witness in the Florida trial.\n\"It can be used as an exchange,\" he said, and may be considered a commodity which can be used for bartering like fish or tobacco, for example.\nEvans noted that \"those who are not yet in the bitcoin community will be put on notice: as long as they organize their business in a particular way they can avoid the law.\"\nBut he added that \"people who are engaged in illegal activities will continue to do what they are going to do because they are criminals.\"", + "cashout_time": "1969-12-31T23:59:59", + "category": "bitcoin", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T21:50:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 651155, + "json_metadata": "{\"tags\":[\"bitcoin\",\"world\",\"country\",\"steemit\"],\"image\":[\"http://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\"]}", + "last_payout": "2016-09-06T09:52:18", + "last_update": "2016-08-06T21:50:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 5, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_hbd": 10000, + "permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "reward_weight": 1937, + "root_author": "a11at", + "root_permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "title": "Bitcoin not money, judge rules in victory for backers", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json index 023ade2b..8bd185f7 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 608846, - "author": "a-m3001", - "permlink": "how-i-managed-depression-and-work", - "category": "story", - "parent_author": "", - "parent_permlink": "story", - "title": "How I managed depression and work", - "body": "Hi, I'm A.M for now, I'm in my mid-20s and want to share my story with working and facing this thing called life after I watched a lot of YouTubers like Thomas James \"TomSka\" David Brown “boyinaband” and many others who have very openly shared their hardships, they have inspired me to write this….. Whatever this is.\nI don't consider myself a good writer so bare with me here.\nTo try to keep this post organized and make sense I'll highlight the point I want to talk about and tell the relevant part of my story, you can connect the pieces all together at the end.\n\n**First how am I?** \nI grow up in the countryside I went to normal school when I was yang, because I was the quiet introvert and wasn't from the town I was in I got bullied a lot for most of my time at school, I got through school time knowing just two friends, I was OK with it.\nI genuinely lost interest in school when I was in the ninth grade It seemed more like a memory test than a way of learning so I started looking for ways to make money, \"why waste time learning things irrelevant in real life if I can make money now\" my naive 16 years old self said, don't get me wrong I didn't think I was done with learning I just wanted to learn in my own way, and I didn't stop school, now I'm in part time Business school, so back then I started looking for any way to make money in the last 5 year I tried: working in sales for over 2 years, selling products online, becoming instructor online, worked as SEO & social media consultant, tried starting my own business for 4 times, and for the last year and half I taught myself how to program and how to use Unity game engine and now I'm working on my first game, I can easily and proudly say that I didn't succeed at any of what I did so far, but I've learned a lot every time and I would do it all over again if I had the chance.\nThe process of picking myself up every single freaking time was a living hell and I got desperate many times.\nbecause I saw a lot of people feeling relevant to what David said in his video I want to share how I managed to keep my sanity and my opinion about some point he brought in his video.\n\n\n**Not thinking your work is good enough:**\nIs that really a bad thing? not being satisfied with what you just accomplished is a sign that you always look forward to what you still can do.\nI remember after I published my first course on Udemy I got invited to a hangout and I went for it I thought I'll give myself some slack, while I was there someone shouted out \"this guy here just published his first course let all give him a clap shall we\" for some reason he thought that was a good idea, I don't think I can blame him his intentions were good, I never tried to put a smile as hard as I did that moment I guess I just didn't want to look like a selfish prick, but the truth that I wasn't happy about what I accomplished I was thinking about my bad English poor structure of the course and was I being a sellout for trying to sell my knowledge? halfway of creating the course, I was already thinking about 5 other things I wanted to do next.\nI think there's nothing wrong about not being satisfied with what you finish, I think It's a good sign of an ambitious creator.\nWhen you first make the decision to accomplish something It looks like that godly thing that you think It would feel good to have or do, but when you start turning that big sexy thing to a small to-do list somewhere the appeal you had to that thing will disappear to a certain point, it's not that godly sexy thing you thought about before it's becoming a part of your routine now you know the process of doing that thing It's not a mystery anymore.\nI think that's why they say: \"It's about the journey, not the destination\".\n\n\n**Not taking care of yourself:**\nIt's hard to keep taking care of yourself to others people standards, whether it's about looking ripped putting makeup or buying the latest clothes, instead find your own save point and move forward from there if you feel the need to.\nWhen I was working in seals I had to look my best most of the time's which was exhausting more than the work itself and what made it worst is that some coworkers starting hinting that I need to start working out to look sharper and more confident.\nBecause I was desperate for results from my work I started going to the gym and I got stuck at joining for a month or two then giving up for half a year couple of times, every time I stopped going to the gym I over beat myself saying that I need this for my work, I need more money to do a lot of things, if this work didn't go well what else Am I going to do, eventually I usually took it out on food, I don't even want to start thinking what would have happened to me if my body was able to store fat.\nTrying to take care of yourself to others standards can be very exhausting, I felt down because I was putting so much effort in things I don't really care about to get others approval, I genuinely don't care about having a ripped body, it would look cool sure but I'm not willing to put all that effort into health and looks at least for now, who knows maybe in the future things will be better and I'll be willing to put the effort necessary to have 6 pack abs (wink wink ladies).\nNowadays I eat better than I used to, I still eat some junk food but things are much much better than they were 2 years ago, when I fell down I still go buy and drink a liter of Pepsi but at some point that was my morning coffee, as for my looks I cut my hair very short so I would have one less thing to worry about in the morning, I shave my beard once every couple of weeks I change my cloth every two or three days even if I didn't go out.\nThe point is I take care of myself for my own sack, It was much worse before and I'll always keep working to improve pit by pit.\nIt's about building habits not getting motivated for a couple of weeks then beating yourself for not being able to keep up.\n\n\n**Not mastering one skill:**\nI worked in sales, instructed online, worked as SEO and social media consultant, self taught myself how to program and make games but I don’t think I’m the right person to talk about this, all I’m saying that if you didn’t find that one true call that is right for you, you might be a “multipotentialite” if you want to know what exactly does this mean I urge you to watch Emilie talk at TedX\nhttps://www.youtube.com/watch?v=QJORi5VO1F8\nAnd check the blog too if you want to know more \nhttp://puttylike.com/\n\n**Everything happens for a reason........ or does it?**\nWhen I was young I was fortunate to know a good old religious man, I don’t know about your perspective about religions but hear me out this isn’t a sermon, I still remember when he tried to teach me that everything happens for a reason I was like “WHAT……. Oh really, then what is the reason for this and this and that” my question didn’t stop and I wasn’t asking nicely either yet, somehow he was calm about it like some kind of monk, I don’t know if I ruined his day or not but I feel bad for taking the world misery out on him that day, he was just a simple man who was doing what he think is good for others, his intentions were good but unfortunately for him I wasn’t a simple person, I overthink everything and everyone, it’s my blessing and my curse, later I told my family about him and I was surprised that they knew him, apparently everyone knows each other in the countryside, they told me about what he was facing lately personally, financially, and emotionally, I didn’t believe that someone who is facing all that isn’t depressed or angry and even trying to do good for others at least by his believes, I wanted to know more about him he got my interest, I wanted to know if he’s an imposter who is just putting a good face or not because a part of me didn’t believe how can he be that good, I kept asking about him from time to time and sometimes I even went to his “lessons”, eventually I went to face him with what I know about him like a detective facing a criminal, the crime of being that simple yet trying to be better than me, It’s pathetic I know It’s just how my brain works sometimes, because I used to take pride of being logical about everything and not believing in anything without questioning it, it bothered me how can he be at peace with his life and I’m not even that he’s facing a lot more than I’m, I faced him and told him everything then asked how can you be this calm about everything that is happening in your life, he had a faint smile and said “I don’t know the reason for everything that is happening right now but everything happens for a reason” I remember holding my fist hard and walking away, maybe I was holding my fist trying not to hit him for not being realistic like me or probably not to beat myself for not being half the man that he was.\nI don’t know about your perspective about religions and I’m not here to tell you about mine but I respect that some religions teach that everything happens for a reason, is it the truth? Does everything happens for a reason? I don’t know, I don’t think that is even the point, It’s silly to even get in an argument about this because no one can be sure about it, it’s simply just a belief, it’s simply teach you to not overthink about the reasons for everything around you, just learn from it if you can and focus on what you can do, it’s kind of funny for me to tell you not to overthink about somethings because I’m sure my 19 year old me would punch me right in the face, but it’s just too draining and exhausting to try to find a reason for every bad thing that have happened to me or to others.\nIn the last three years two of my best friends died, the first one I knew for about nine years and the other one for around five, both killed, both in a way they didn’t deserve to, each time I had to force myself to focus on the 0.0000001% full part of the cup or else I would have lose my sanity.\nI would hate to think what would be my thought process if someone tried to sell me religion like a product, some of them would be like “Hi son, you should follow my beliefs because I’m 100% sure that I’m right and everybody else is wrong and if you don’t, well you’re FU**ED” that would have disfigured some of the beliefs that helped me get better.\nControlling your stream of thoughts will be the hardest thing you’ll ever have to do in your life, but if mastered it you’ll become unstoppable.\n\n\nI’ve been getting into the game industry for around year and half now, I don’t have any experiance in the field but I’ve other experiences that many don’t, working in sales made me learn a lot about people's motivations and incentives, I saw a lot of people jump to make purchase while other chicken out last minute, you don’t get to learn about this in a book or an NLP course, you only get to learn this experience by working in sales first hand, working as an SEO and social media consultant made me care about the little details like posting in the right social medias that is more relevant to your audience, more isn’t always better, choosing the right words colors and timing for best result, sometimes modifying your content for a better marketing or not going into a certain niche even if there’s an audience for it because it doesn’t suit your brand, teaching online made me learn that the selling point isn’t the end goal, helping and mentoring students even after they have purchased the course was way more important than I thought, the feedback I got about the course was crucial to take the course to the next level and some student even helped me with some marketing.\nIf you know anything about the mobile game industry you can see how these experiences can be helpful, I can imagine the kind of journey I want to create for the player because I can build the motivations and incentives I want for him, while I’m building the player journey I’ll always keep in mind to put the monetization and ads the right way so all of them can work seamlessly together for a better player experience, and taking care of existing players and community will always be a priority, I wasn’t happy and cheerful when I had to learn these experiences the hard way, I thought I was just failing, I even remember crying myself to sleep every time I decided to pull the plug on something I was working on, but eventually It worked out somehow I think.\n“you can't connect the dots looking forward, you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something - your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life”.\nSteve Jobs\n\n\nI want to share some of the tricks I used that helped my in general to get my life together:\n\n**Music**\nlisten to cheerful music, even if it might not be exactly what you listen to usually but try them for a while, my favorite type or music is Rock and Metal it’s loud and make me feel empowered but sometimes it's not what I need to change my mood so I started listening to electro music mostly Drum & bass, I didn’t like it at first, I’m human I don’t like to change, but forcing myself to listen to it for while change my perspective about it and I started listening to it while I’m working, and it worked.\n\n\n**habits not motivation**\nWe’re slaves to our habits, it’s exhausting to do something that’s you’re not used to for quite a while, so invest your effort and time to build your habits pit by pit no matter how slow it will take, measure your progress and celebrate your success no matter how small they’re, it’ll make all the difference in your life in the long term.\n\n**work in a group**\nNo matter how introverted person you think you’re, you’re still human at the end of day and you need your dose of human interaction so try to work in group if you can, if you don’t have that luxury (like me) work out side from time to time, library, coffee shop, parks all works, changing your surrounding and environment can change your mood, you can try changing your room\\office decor every couple of weeks too.\n\n**warm-blooded pet**\nGet a warm-blooded pet it helps, I tried fish and turtles but didn’t really work for me they just stared at me with their empty eyes, I have a cat for two year now and It helped, maybe it’s having the sense of that there is a creature that needs you to look after him, it’s helped me not to feel completely unworthy in some bad day.\n\n\nFinally I hope this help you in any way it can, and hope it will find its way to all who needs it.", - "json_metadata": "{\"tags\":[\"story\",\"philosophy\",\"life\",\"psychology\",\"secret-writer\"],\"links\":[\"https://www.youtube.com/watch?v=QJORi5VO1F8\"]}", - "last_update": "2016-08-15T05:28:12", - "created": "2016-08-15T04:53:33", - "active": "2016-08-15T05:28:12", - "last_payout": "2016-09-14T16:58:03", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a-m3001", - "root_permlink": "how-i-managed-depression-and-work", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 497962, - "author": "a-man", - "permlink": "re-jamiecrypto-raising-leaders-instead-of-rulers-20160807t213425757z", - "category": "homeschooling", - "parent_author": "jamiecrypto", - "parent_permlink": "raising-leaders-instead-of-rulers", - "title": "", - "body": "Trying to repost to FB", - "json_metadata": "{\"tags\":[\"homeschooling\"]}", - "last_update": "2016-08-07T21:34:24", - "created": "2016-08-07T21:34:24", - "active": "2016-08-07T21:34:24", - "last_payout": "2016-09-07T09:52:42", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "jamiecrypto", - "root_permlink": "raising-leaders-instead-of-rulers", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 359861, - "author": "a-spears", - "permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", - "category": "life", - "parent_author": "agent", - "parent_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", - "title": "", - "body": "Finally someone is saying it out loud. thank you!!", - "json_metadata": "{\"tags\":[\"life\"]}", - "last_update": "2016-07-30T19:38:00", - "created": "2016-07-30T19:37:48", - "active": "2016-07-30T21:34:27", - "last_payout": "2016-08-30T10:16:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "agent", - "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 72421, - "author": "a-spears", - "permlink": "re-ashleybr-test-20160713t203411015z", - "category": "travel", - "parent_author": "ashleybr", - "parent_permlink": "test", - "title": "", - "body": "add katie-lynn boulard on FB, she's my friend and she's currently doing an exchange in bangkok. She's really sweet and she said you can come to hers for the evening if you want to have some company. she only has a room so no bed for you :/ but at least something, I'm sure she can give you a meal and just some company. :))", - "json_metadata": "{\"tags\":[\"travel\"]}", - "last_update": "2016-07-13T20:34:12", - "created": "2016-07-13T20:34:12", - "active": "2016-07-13T21:01:48", - "last_payout": "2016-08-25T12:51:45", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 20, - "root_author": "ashleybr", - "root_permlink": "test", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 431883, - "author": "a11at", - "permlink": "ai-revolution-101", - "category": "steemit", - "parent_author": "", - "parent_permlink": "steemit", - "title": "AI Revolution 101", - "body": "https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\n\nAI Revolution 101\nOur last invention, greatest nightmare, or pathway to utopia?\nAbout\nThis essay, originally published in eight short parts, aims to condense the current knowledge on Artificial Intelligence. It explores the state of AI development, overviews its challenges and dangers, features work by the most significant scientists, and describes the main predictions of possible AI outcomes. This project is an adaptation and major shortening of the two–part essay AI Revolution by Tim Urban of Wait But Why. I shortened it by a factor of 3, recreated all images, and tweaked it a bit. Read more on why/how I wrote it here.\nIntroduction\nAssuming that human scientific activity continues without major disruptions, artificial intelligence may become either the most positive transformation of our history or, as many fear, our most dangerous invention of all. AI research is on a steady path to develop a computer that has cognitive abilities equal to the human brain, most likely within three decades (timeline in chapter 5). From what most AI scientists predict, this invention may enable very rapid improvements (called fast take-off), toward something much more powerful — Artificial Super Intelligence — an entity smarter than all of humanity combined (more on ASI in chapter 3). We are not talking about some imaginary future. The first level of AI development is gradually appearing in the technology we use everyday (newest AI advancements in chapter 2). With every coming year these advancements will accelerate and the technology will become more complex, addictive, and ubiquitous. We will continue to outsource more and more kinds of mental work to computers, disrupting every part of our reality: the way we organize ourselves and our work, form communities, and experience the world.\nExponential Growth\nThe Guiding Principle Behind Technological Progress\nTo more intuitively grasp the guiding principles of AI revolution, let’s first step away from scientific research. Let me invite you to take part in a story. Imagine that you’ve received a time machine and been given a quest to bring somebody from the past. The goal is to shock them by showing them the technological and cultural advancements of our time, to such a degree that this person would perform SAFD (Spinning Around From Disbelief).\n\nSo you wonder which era should you time-travel to, and decide to hop back around 200 years. You get to the early 1800s, retrieve a guy and bring him back to 2016. You “…walk him around and watch him react to everything. It’s impossible for us to understand what it would be like for him to see shiny capsules racing by on a highway, talk to people who had been on the other side of the ocean earlier in the day, watch sports that were being played 1,000 miles away, hear a musical performance that happened 50 years ago, and play with …[a] magical wizard rectangle that he could use to capture a real-life image or record a living moment, generate a map with a paranormal moving blue dot that shows him where he is, look at someone’s face and chat with them even though they’re on the other side of the country, and worlds of other inconceivable sorcery.”¹ It doesn’t take much. After two minutes he is SAFDing.\nNow, both of you want to try the same thing, see somebody Spinning Around From Disbelief, but in your new friend’s era. Since 200 years worked, you jump back to the 1600s and bring a guy to the 1800s. He’s certainly genuinely interested in what he sees. However, you feel it with confidence — SAFD will never happen to him. You feel that you need to jump back again, but somewhere radically further. You settle on rewinding the clock 15,000 years, to the times “…before the First Agricultural Revolution gave rise to the first cities and the concept of civilisations.”² You bring someone from the hunter-gatherer world and show him “…the vast human empires of 1750 with their towering churches, their ocean-crossing ships, their concept of being “inside,” and their enormous mountain of collective, accumulated human knowledge and discovery”³ — in forms of books. It doesn’t take much. He is SAFDing in the first two minutes.\nNow there are three of you, enormously excited to do it again. You know that it doesn’t make sense to go back another 15,000, 30,000 or 45,000 years. You have to jump back, again, radically further. So you pick up a guy from 100,000 years ago and you you walk with him into large tribes with organized, sophisticated social hierarchies. He encounters a variety of hunting weapons, sophisticated tools, sees fire and for the first time experiences language in the form of signs and sounds. You get the idea, it has to be immensely mind-blowing. He is SAFDing after two minutes.\nSo what happened? Why did the last guy had to hop → 100,000 years, the next one → 15,000 years, and the guy who was hopping to our times only → 200 years?\n\nhttps://cdn-images-1.medium.com/max/2000/1*Wbd0td3DqD3pJo7_YHjkbQ.gif\n\n“This happens because more advanced societies have the ability to progress at a faster rate than less advanced societies — because they’re more advanced. [1800s] humanity knew more and had better technology…”⁴, so it’s no wonder they could make further advancements than humanity from 15,000 years ago. The time to achieve SAFD shrank from ~100,000 years to ~200 years and if we look into the future it will rapidly shrink even further. Ray Kurzweil, AI expert and scientist, predicts that a “…20th century’s worth of progress happened between 2000 and 2014 and that another 20th century’s worth of progress will happen by 2021, in only seven years⁵…A couple decades later, he believes a 20th century’s worth of progress will happen multiple times in the same year, and even later, in less than one month⁶…Kurzweil believes that the 21st century will achieve 1,000 times the progress of the 20th century.”⁷\n“Logic also suggests that if the most advanced species on a planet keeps making larger and larger leaps forward at an ever-faster rate, at some point, they’ll make a leap so great that it completely alters life as they know it and the perception they have of what it means to be a human. Kind of like how evolution kept making great leaps toward intelligence until finally it made such a large leap to the human being that it completely altered what it meant for any creature to live on planet Earth. And if you spend some time reading about what’s going on today in science and technology, you start to see a lot of signs quietly hinting that life as we currently know it cannot withstand the leap that’s coming next.”⁸\nThe Road to Artificial General Intelligence\nBuilding a Computer as Smart as Humans\nArtificial Intelligence, or AI, is a broad term for the advancement of intelligence in computers. Despite varied opinions on this topic, most experts agree that there are three categories, or calibers, of AI development. They are:\nANI: Artificial Narrow Intelligence\n1st intelligence caliber. “AI that specializes in one area. There’s AI that can beat the world chess champion in chess, but that’s the only thing it does.”⁹\nAGI: Artificial General Intelligence\n2nd intelligence caliber. AI that reaches and then passes the intelligence level of a human, meaning it has the ability to “reason, plan, solve problems, think abstractly, comprehend complex ideas, learn quickly, and learn from experience.”¹⁰\nASI: Artificial Super Intelligence\n3rd intelligence caliber. AI that achieves a level of intelligence smarter than all of humanity combined — “ranging from just a little smarter … to one trillion times smarter.”¹¹\n\nhttps://cdn-images-1.medium.com/max/800/1*5AkzXZJoVXRrGNSOO8ZojQ.gif\n\nWhere are we currently?\n“As of now, humans have conquered the lowest caliber of AI — ANI — in many ways, and it’s everywhere:”¹²\n“Cars are full of ANI systems, from the computer that figures out when the anti-lock brakes kick in, to the computer that tunes the parameters of the fuel injection systems.”¹³\n“Google search is one large ANI brain with incredibly sophisticated methods for ranking pages and figuring out what to show you in particular. Same goes for Facebook’s Newsfeed.”¹⁴\nEmail spam filters “start off loaded with intelligence about how to figure out what’s spam and what’s not, and then it learns and tailors its intelligence to your particular preferences.”¹⁵\nPassenger planes are flown almost entirely by ANI, without the help of humans.\n“Google’s self-driving car, which is being tested now, will contain robust ANI systems that allow it to perceive and react to the world around it.”¹⁶\n“Your phone is a little ANI factory … you navigate using your map app, receive tailored music recommendations from Pandora, check tomorrow’s weather, talk to Siri.”¹⁷\n“The world’s best Checkers, Chess, Scrabble, Backgammon, and Othello players are now all ANI systems.”¹⁸\n“Sophisticated ANI systems are widely used in sectors and industries like military, manufacturing, and finance (algorithmic high-frequency AI traders account for more than half of equity shares traded on US markets¹⁹).”²⁰\n“ANI systems as they are now aren’t especially scary. At worst, a glitchy or badly-programed ANI can cause an isolated catastrophe like”²¹ a plane crash, a nuclear power plant malfunction, or “a financial markets disaster (like the 2010 Flash Crash when an ANI program reacted the wrong way to an unexpected situation and caused the stock market to briefly plummet, taking $1 trillion of market value with it, only part of which was recovered when the mistake was corrected) … But while ANI doesn’t have the capability to cause an existential threat, we should see this increasingly large and complex ecosystem of relatively-harmless ANI as a precursor of the world-altering hurricane that’s on the way. Each new ANI innovation quietly adds another brick onto the road to AGI and ASI.”²²\n\nhttps://cdn-images-1.medium.com/max/2000/1*Ia8wUuZPxpUNzvUjNRsxpA.gif\n\nWhat’s Next? Challenges Behind Reaching AGI\n“Nothing will make you appreciate human intelligence like learning about how unbelievably challenging it is to try to create a computer as smart as we are … Build a computer that can multiply ten-digit numbers in a split second — incredibly easy. Build one that can look at a dog and answer whether it’s a dog or a cat — spectacularly difficult. Make AI that can beat any human in chess? Done. Make one that can read a paragraph from a six-year-old’s picture book and not just recognise the words but understand the meaning of them? Google is currently spending billions of dollars trying to do it.”²³\nWhy are “hard things — like calculus, financial market strategy, and language translation … mind-numbingly easy for a computer, while easy things — like vision, motion, movement, and perception — are insanely hard for it”²⁴?\n“Things that seem easy to us are actually unbelievably complicated. They only seem easy because those skills have been optimized in us (and most animals) by hundreds of million years of animal evolution. When you reach your hand up toward an object, the muscles, tendons, and bones in your shoulder, elbow, and wrist instantly perform a long series of physics operations, in conjunction with your eyes, to allow you to move your hand in a straight line through three dimensions … On the other hand, multiplying big numbers or playing chess are new activities for biological creatures and we haven’t had any time to evolve a proficiency at them, so a computer doesn’t need to work too hard to beat us.”²⁵\n\nhttps://cdn-images-1.medium.com/max/1200/0*E-qdF22nxvOrVPxP.\n\nWhen you look at picture A, “you and a computer both can figure out that it’s a rectangle with two distinct shades, alternating. Tied so far.”²⁶\nPicture B. “You have no problem giving a full description of the various opaque and translucent cylinders, slats, and 3-D corners, but the computer would fail miserably. It would describe what it sees — a variety of two-dimensional shapes in several different shades — which is actually what’s there.”²⁷ “Your brain is doing a ton of fancy shit to interpret the implied depth, shade-mixing, and room lighting the picture is trying to portray.”²⁸\nLooking at picture C, “a computer sees a two-dimensional white, black, and gray collage, while you easily see what it really is”²⁹ — a photo of a girl and a dog standing on a rocky shore.\n“And everything we just mentioned is still only taking in visual information and processing it. To be human-level intelligent, a computer would have to understand things like the difference between subtle facial expressions, the distinction between being pleased, relieved and content”³⁰.\nHow will computers reach even higher abilities like complex reasoning, interpreting data, and associating ideas from separate fields (domain-general knowledge)?\n“Building skyscrapers, putting humans in space, figuring out the details of how the Big Bang went down — all far easier than understanding our own brain or how to make something as cool as it. As of now, the human brain is the most complex object in the known universe.”³¹\nBuilding Hardware\nIf an artificial intelligence is going to be as intelligent as the human brain, one crucial thing has to happen — the AI “needs to equal the brain’s raw computing capacity. One way to express this capacity is in the total calculations per second the brain could manage.”³²\n\nThe challenge is that currently only a few of the brain’s regions are precisely measured. However, Ray Kurzweil, has developed a method for estimating the total cps of the human brain. He arrived at this estimate by taking the cps from one brain region and multiplying it proportionally to the weight of that region, compared to the weight of the whole brain. “He did this a bunch of times with various professional estimates of different regions, and the total always arrived in the same ballpark — around 10¹⁶, or 10 quadrillion cps.”³³\n“Currently, the world’s fastest supercomputer, China’s Tianhe-2, has actually beaten that number, clocking in at about 34 quadrillion cps.”³⁴ But Tianhe-2 is also monstrous, “taking up 720 square meters of space, using 24 megawatts of power (the brain runs on just 20 watts), and costing $390 million to build. Not especially applicable to wide usage, or even most commercial or industrial usage yet.”³⁵\n“Kurzweil suggests that we think about the state of computers by looking at how many cps you can buy for $1,000. When that number reaches human-level — 10 quadrillion cps — then that’ll mean AGI could become a very real part of life.”³⁶\nCurrently we’re only at about 10¹⁰ (10 trillion) cps per $1,000. However, historically reliable Moore’s Law states “that the world’s maximum computing power doubles approximately every two years, meaning computer hardware advancement, like general human advancement through history, grows exponentially³⁷ … right on pace with this graph’s predicted trajectory:”³⁸\n\nhttps://cdn-images-1.medium.com/max/800/1*4qcqwbsWjvWh-BWPnAsp6g.gif\n\nThis dynamic “puts us right on pace to get to an affordable computer by 2025 that rivals the power of the brain … But raw computational power alone doesn’t make a computer generally intelligent — the next question is, how do we bring human-level intelligence to all that power?”³⁹\nBuilding Software\nThe hardest part of creating AGI is learning how to develop its software. “The truth is, no one really knows how to make it smart — we’re still debating how to make a computer human-level intelligent and capable of knowing what a dog and a weird-written B and a mediocre movie is.”⁴⁰ But there are a couple of strategies. These are the three most common:\nCopy how the brain works.\nThe most straight-forward idea is to plagiarize the brain, and build the computer’s architecture with close resemblance to how a brain is structured. One example “is the artificial neural network. It starts out as a network of transistor ‘neurons,’ connected to each other with inputs and outputs, and it knows nothing — like an infant brain. The way it ‘learns’ is it tries to do a task, say handwriting recognition, and at first, its neural firings and subsequent guesses at deciphering each letter will be completely random. But when it’s told it got something right, the transistor connections in the firing pathways that happened to create that answer are strengthened; when it’s told it was wrong, those pathways’ connections are weakened. After a lot of this trial and feedback, the network has, by itself, formed smart neural pathways and the machine has become optimized for the task.”⁴¹\nThe second, more radical approach to plagiarism is whole brain emulation. Scientists take a real brain, cut it into a large number of tiny slices to look at the neural connections and replicate them in a computer as software. If that method is ever successful, we will have “a computer officially capable of everything the brain is capable of — it would just need to learn and gather information … How far are we from achieving whole brain emulation? Well so far, we’ve just recently been able to emulate a 1mm-long flatworm brain, which consists of just 302 total neurons.”⁴² To put this into perspective, the human brain consists of 86 billion neurons linked by trillions of synapses.\n2. Introduce evolution to computers.\n“The fact is, even if we can emulate a brain, that might be like trying to build an airplane by copying a bird’s wing-flapping motions — often, machines are best designed using a fresh, machine-oriented approach, not by mimicking biology exactly.”⁴³ If the brain is just too complex for us to digitally replicate, we could try to emulate evolution instead. This uses a process called genetic algorithms. “A group of computers would try to do tasks, and the most successful ones would be bred with each other by having half of each of their programming merged together into a new computer. The less successful ones would be eliminated.”⁴⁴ Speed and a goal-oriented approach are the advantages that artificial evolution has over biological evolution. “Over many, many iterations, this natural selection process would produce better and better computers. The challenge would be creating an automated evaluation and breeding cycle so this evolution process could run on its own.”⁴⁵\n3. “Make this whole thing the computer’s problem, not ours.”⁴⁶\nThe last concept is the simplest, but probably the scariest of them all. “We’d build a computer whose two major skills would be doing research on AI and coding changes into itself — allowing it to not only learn but to improve its own architecture. We’d teach computers to be computer scientists so they could bootstrap their own development.”⁴⁷ This is the likeliest way to get AGI soon that we know of.\nAll these software advances may seem slow or a little bit intangible, but as it is with the sciences, one minor innovation can suddenly accelerate the pace of developments. Kind of like the aftermath of the Copernican revolution — the discovery that suddenly made all the complicated mathematics of the planets’ trajectories much easier to calculate, which enabled a multitude of other innovations. Also, the “exponential growth is intense and what seems like a snail’s pace of advancement can quickly race upwards.”⁴⁸\n\nhttps://cdn-images-1.medium.com/max/1200/1*BHwAlKJFYwKYEzZlitNTvQ.gif\n\nThe Road to Artificial Super Intelligence\nAn Entity Smarter than all of Humanity Combined\nIt’s very real that at some point we will achieve AGI: software that has achieved human-level, or beyond human-level, intelligence. Does this mean that at that very moment the computers will be equally capable as us? Actually, not at all — computers will be way more efficient. Because of the fact that they are electronic, they will have following advantages:\nSpeed. “The brain’s neurons max out at around 200 Hz, while today’s microprocessors … run at 2 GHz, or 10 million times faster.”⁵¹\nMemory. Forgetting or confusing things is much harder in an artificial world. Computers can memorize more things in one second than a human can in ten years. A computer’s memory is also more precise and has a much greater storage capacity.\nPerformance. “Computer transistors are more accurate than biological neurons, and they’re less likely to deteriorate (and can be repaired or replaced if they do). Human brains also get fatigued easily, while computers can run nonstop, at peak performance, 24/7.”⁵²\nCollective capability. Group work is ridiculously challenging because of time-consuming communication and complex social hierarchies. The bigger the group gets, the slower the output of each person becomes. AI, on the other hand, isn’t biologically constrained to one body, won’t have human cooperation problems, and is able to synchronize and update its own operating system.\nIntelligence Explosion\nWe need to realize that AI “wouldn’t see ‘human-level intelligence’ as some important milestone — it’s only a relevant marker from our point of view — and wouldn’t have any reason to ‘stop’ at our level. And given the advantages over us that even human intelligence-equivalent AGI would have, it’s pretty obvious that it would only hit human intelligence for a brief instant before racing onwards to the realm of superior-to-human intelligence.”⁵³\nThe true distinction between humans and ASI wouldn’t be its advantage in intelligence speed, but “in intelligence quality — which is something completely different. What makes humans so much more intellectually capable than chimps isn’t a difference in thinking speed — it’s that human brains contain a number of sophisticated cognitive modules that enable things like complex linguistic representations or longterm planning or abstract reasoning, that chimps’ brains do not have. Speeding up a chimp’s brain by thousands of times wouldn’t bring him to our level — even with a decade’s time of learning, he wouldn’t be able to figure out how to … ”⁵⁴ assemble a semi-complicated Lego model by looking at its manual — something a young human could achieve in a few minutes. “There are worlds of human cognitive function a chimp will simply never be capable of, no matter how much time he spends trying.”⁵⁵\n“And in the scheme of the biological intelligence range … the chimp-to-human quality intelligence gap is tiny.”⁵⁶\n\nhttps://cdn-images-1.medium.com/max/800/1*vnVWATTAMCwfnJu_iZn2RQ.jpeg\n\nIn order to render how big a deal it would be to exist with something that has a higher quality of intelligence than us, we need to imagine AI on the intelligence staircase two steps above us — “its increased cognitive ability over us would be as vast as the chimp–human gap … And like the chimp’s incapacity to ever absorb …”⁵⁷ what kind of magic happens in the mechanism of a doorknob — “we will never be able to even comprehend the things … [a machine of that intelligence] can do, even if the machine tried to explain them to us … And that’s only two steps above us.”⁵⁸\n“A machine on the second-to-highest step on that staircase would be to us as we are to ants.”⁵⁹ “Superintelligence of that magnitude is not something we can remotely grasp, any more than a bumblebee can wrap its head around Keynesian Economics. In our world, smart means a 130 IQ and stupid means an 85 IQ — we don’t have a word for an IQ of 12,952.”⁶⁰\n“But the kind of superintelligence we’re talking about today is something far beyond anything on this staircase. In an intelligence explosion — where the smarter a machine gets, the quicker it’s able to increase its own intelligence — a machine might take years to rise from … ”⁶¹ the intelligence of an ant to the intelligence of the average human, but it might take only another 40 days to become Einstein-smart. When that happens, “it works to improve its intelligence, with an Einstein-level intellect, it has an easier time and can make bigger leaps. These leaps will make it much smarter than any human, allowing it to make even bigger leaps.”⁶²\nFrom then on, following the rule of exponential advancements and utilizing the speed and efficiency of electrical circuits, it may perhaps take only 20 minutes to jump another step, “and by the time it’s ten steps above us, it might be jumping up in four-step leaps every second that goes by. Which is why we need to realize that it’s distinctly possible that very shortly after the big news story about the first machine reaching human-level AGI, we might be facing the reality of coexisting on the Earth with something that’s here on the staircase (or maybe a million times higher):”⁶³\n\nhttps://cdn-images-1.medium.com/max/800/0*LdJxmWCjSdweUKvb.\n\n“And since we just established that it’s a hopeless activity to try to understand the power of a machine only two steps above us, let’s very concretely state once and for all that there is no way to know what ASI will do or what the consequences will be for us. Anyone who pretends otherwise doesn’t understand what superintelligence means.”⁶⁴\n“If our meager brains were able to invent wifi, then something 100 or 1,000 or 1 billion times smarter than we are should have no problem controlling the positioning of each and every atom in the world in any way it likes, at any time — everything we consider magic, every power we imagine a supreme God to have will be as mundane an activity for the ASI as flipping on a light switch is for us.”⁶⁵\n“As far as we’re concerned, if an ASI comes into being, there is now an omnipotent God on Earth — and the all-important question for us is: Will it be a good god?”⁶⁶\nLet’s start from the brighter side of the story.\nHow Can ASI Change our World?\nSpeculations on Two Revolutionary Technologies\nNanotechnology\nNanotechnology is an idea that comes up “in almost everything you read about the future of AI.”⁶⁷ It’s the technology that works at the nano scale — from 1 to 100 nanometers. “A nanometer is a millionth of a millimeter. 1 nm–100 nm range encompasses viruses (100 nm accross), DNA (10 nm wide), and things as small as molecules like hemoglobin (5 nm) and medium molecules like glucose (1 nm). If/when we conquer nanotechnology, the next step will be the ability to manipulate individual atoms, which are only one order of magnitude smaller (~.1 nm).”⁶⁸\nTo put this into perspective, imagine a very tall human standing on the earth, with a head that reaches the International Space Station (431 km/268 mi high). The giant is reaching down with his hand (30 km/19 mi across) to build “objects using materials between the size of a grain of sand [.25 mm] and an eyeball [2.5 cm].”⁶⁹\n\nhttps://cdn-images-1.medium.com/max/1200/1*e9Ut3QT2F3tNh4h5U4rR8A.jpeg\n\n“Once we get nanotechnology down, we can use it to make tech devices, clothing, food, a variety of bio-related products — artificial blood cells, tiny virus or cancer-cell destroyers, muscle tissue, etc. — anything really. And in a world that uses nanotechnology, the cost of a material is no longer tied to its scarcity or the difficulty of its manufacturing process, but instead determined by how complicated its atomic structure is. In a nanotech world, a diamond might be cheaper than a pencil eraser.”⁷⁰\nOne of the proposed methods of nanotech assembly is to make “one that could self-replicate, and then let the reproduction process turn that one into two, those two then turn into four, four into eight, and in about a day, there’d be a few trillion of them ready to go.”⁷¹\nBut what if this process goes wrong or terrorists manage to get ahold of the technology? Let’s imagine a scenario where nanobots “would be designed to consume any carbon-based material in order to feed the replication process, and unpleasantly, all life is carbon-based. The Earth’s biomass contains about 1⁰⁴⁵ carbon atoms. A nanobot would consist of about 1⁰⁶ carbon atoms, so it would take 1⁰³⁹ nanobots to consume all life on Earth, which would happen in 130 replications. … Scientists think a nanobot could replicate in about 100 seconds, meaning this simple mistake would inconveniently end all life on Earth in 3.5 hours.”⁷²\nWe are not yet capable of harnessing nanotechnology — for good or for bad. “And it’s not clear if we’re underestimating, or overestimating, how hard it will be to get there. But we don’t seem to be that far away. Kurzweil predicts that we’ll get there by the 2020s.⁷³Governments know that nanotech could be an Earth-shaking development … The US, the EU, and Japan⁷⁴ have invested over a combined $5 billion so far”⁷⁵\nImmortality\n“Because everyone has always died, we live under the assumption … that death is inevitable. We think of aging like time — both keep moving and there’s nothing you can do to stop it.”⁷⁶ For centuries, poets and philosophers have wondered if consciousness doesn’t have to go the way of the body. W.B. Yeats describes us as “a soul fastened to a dying animal.”⁷⁷ Richard Feynman, Nobel awarded physicists, views death from a purely scientific standpoint:\n“It is one of the most remarkable things that in all of the biological sciences there is no clue as to the necessity of death. If you say we want to make perpetual motion, we have discovered enough laws as we studied physics to see that it is either absolutely impossible or else the laws are wrong. But there is nothing in biology yet found that indicates the inevitability of death. This suggests to me that it is not at all inevitable, and that it is only a matter of time before the biologists discover what it is that is causing us the trouble and that that terrible universal disease or temporariness of the human’s body will be cured.”⁷⁸\nTheory of great species attractors\nWhen we look at the history of biological life on earth, so far 99.9% of species have gone extinct. Nick Bostrom, Oxford professor and AI specialist, “calls extinction an attractor state — a place species are … falling into and from which no species ever returns.”⁷⁹\n\nhttps://cdn-images-1.medium.com/max/1200/0*o-MXeAYfUtWnOJKC.\n\n“And while most AI scientists … acknowledge that ASI would have the ability to send humans to extinction, many also believe that if used beneficially, ASI’s abilities could be used to bring individual humans, and the species as a whole, to a second attractor state — species immortality.”⁸⁰\n\nhttps://cdn-images-1.medium.com/max/1200/0*aYeNOSBxp4gieGwp.\n\n“Evolution had no good reason to extend our lifespans any longer than they are now … From an evolutionary point of view, the whole human species can thrive with a 30+ year lifespan” for each single human. It’s long enough to reproduce and raise children … so there’s no reason for mutations toward unusually long life being favored in the natural selection process.”⁸¹Though, “if you perfectly repaired or replaced a car’s parts whenever one of them began to wear down, the car would run forever. The human body isn’t any different — just far more complex … This seems absurd — but the body is just a bunch of atoms…”⁸² making up organically programmed DNA, which it is theoretically possible to manipulate. And something as powerful as ASI could help us master genetic engineering.\nRay Kurzweil believes that “artificial materials will be integrated into the body more and more … Organs could be replaced by super-advanced machine versions that would run forever and never fail.”⁸³ Red blood cells could be perfected by “red blood cell nanobots, who could power their own movement, eliminating the need for a heart at all … Nanotech theorist Robert A. Freitas has already designed blood cell replacements that, if one day implemented in the body, would allow a human to sprint for 15 minutes without taking a breath … [Kurzweil] even gets to the brain and believes we’ll enhance our mental activities to the point where humans will be able to think billions of times faster”⁸⁴ by integrating electrical components and being able to access online data.\n“Eventually, Kurzweil believes humans will reach a point when they’re entirely artificial, a time when we’ll look back at biological material and think how unbelievably primitive primitive it was that humans were ever made of that”⁸⁵and that humans aged, suffered from cancer, allowed random factors like microbes, diseases, accidents to harm us or make us disappear.”\n\nhttps://cdn-images-1.medium.com/max/2000/1*NcWWmd677RVWQRpLsz5X9g.jpeg\n\nWhen Will The First Machine Become Superintelligent?\nPredictions from Top AI Experts\n“How long until the first machine reaches superintelligence? Not shockingly, opinions vary wildly, and this is a heated debate among scientists and thinkers. Many, like professor Vernor Vinge, scientist Ben Goertzel, Sun Microsystems co-founder Bill Joy, or, most famously, inventor and futurist Ray Kurzweil, agree with machine learning expert Jeremy Howard when he puts up this graph during a TED Talk\n\n“Those people subscribe to the belief that this is happening soon — that exponential growth is at work and machine learning, though only slowly creeping up on us now, will blow right past us within the next few decades.\n“Others, like Microsoft co-founder Paul Allen, research psychologist Gary Marcus, NYU computer scientist Ernest Davis, and tech entrepreneur Mitch Kapor, believe that thinkers like Kurzweil are vastly underestimating the magnitude of the challenge [and the transition will actually take much more time] …\n“The Kurzweil camp would counter that the only underestimating that’s happening is the underappreciation of exponential growth, and they’d compare the doubters to those who looked at the slow-growing seedling of the internet in 1985 and argued that there was no way it would amount to anything impactful in the near future.\n“The doubters might argue back that the progress needed to make advancements in intelligence also grows exponentially harder with each subsequent step, which will cancel out the typical exponential nature of technological progress. And so on.\n“A third camp, which includes Nick Bostrom, believes neither group has any ground to feel certain about the timeline and acknowledges both A) that this could absolutely happen in the near future and B) that there’s no guarantee about that; it could also take a much longer time.\n“Still others, like philosopher Hubert Dreyfus, believe all three of these groups are naive for believing that there is potential of ASI, arguing that it’s more likely that it won’t actually ever be achieved.\n“So what do you get when you put all of these opinions together?”⁸⁶\nTimeline for Artificial General Intelligence\n“In 2013, Vincent C. Müller and Nick Bostrom conducted a survey that asked hundreds of AI experts … the following:”⁸⁷\n“For the purposes of this question, assume that human scientific activity continues without major negative disruption. By what year would you see a (10% / 50% / 90%) probability for such Human-Level Machine Intelligence [or what we call AGI] to exist?”⁸⁸\nThe survey “asked them to name an optimistic year (one in which they believe there’s a 10% chance we’ll have AGI), a realistic guess (a year they believe there’s a 50% chance of AGI — i.e. after that year they think it’s more likely than not that we’ll have AGI), and a safe guess (the earliest year by which they can say with 90% certainty we’ll have AGI). Gathered together as one data set, here were the results:\nMedian optimistic year (10% likelihood) → 2022\nMedian realistic year (50% likelihood) → 2040\nMedian pessimistic year (90% likelihood) → 2075\n“So the median participant thinks it’s more likely than not that we’ll have AGI 25 years from now. The 90% median answer of 2075 means that if you’re a teenager right now, the median respondent, along with over half of the group of AI experts, is almost certain AGI will happen within your lifetime.\n“A separate study, conducted recently by author James Barrat at Ben Goertzel’s annual AGI Conference, did away with percentages and simply asked when participants thought AGI would be achieved — by 2030, by 2050, by 2100, after 2100, or never. The results:⁸⁹\n42% of respondents → By 2030\n25% of respondents → By 2050\n20% of respondents → By 2100\n10% of respondents → After 2100\n2% of respondents → Never\n“Pretty similar to Müller and Bostrom’s outcomes. In Barrat’s survey, over two thirds of participants believe AGI will be here by 2050 and a little less than half predict AGI within the next 15 years. Also striking is that only 2% of those surveyed don’t think AGI is part of our future.”⁹⁰\n\nhttps://cdn-images-1.medium.com/max/2000/1*U8ueEMtG6-D5hie8rZJGtQ.jpeg\n\nTimeline for Artificial Super Intelligence\n“Müller and Bostrom also asked the experts how likely they think it is that we’ll reach ASI: A), within two years of reaching AGI (i.e. an almost-immediate intelligence explosion), and B), within 30 years.”⁹¹ Respondents were asked to choose a probability for each option. Here are the results:⁹²\nAGI–ASI transition in 2 years → 10% likelihood\nAGI–ASI transition in 30 years → 75% likelihood\n“The median answer put a rapid (2 year) AGI–ASI transition at only a 10% likelihood, but a longer transition of 30 years or less at a 75% likelihood. We don’t know from this data the length of this transition [AGI–ASI] the median participant would have put at a 50% likelihood, but for ballpark purposes, based on the two answers above, let’s estimate that they’d have said 20 years.\n“So the median opinion — the one right in the center of the world of AI experts — believes the most realistic guess for when we’ll hit ASI … is [the 2040 prediction for AGI + our estimated prediction of a 20-year transition from AGI to ASI] = 2060.\n\nhttps://cdn-images-1.medium.com/max/2000/1*YY8e493ER4LNomQV-NyMYg.jpeg\n\n“Of course, all of the above statistics are speculative, and they’re only representative of the median opinion of the AI expert community, but it tells us that a large portion of the people who know the most about this topic would agree that 2060 is a very reasonable estimate for the arrival of potentially world-altering ASI. Only 45 years from now”⁹³\n\nhttps://cdn-images-1.medium.com/max/2000/1*sGdvHHs02XWoQ35BcEWAXQ.gif\n\nAI Outcomes\nTwo Main Groups of AI Scientists with Two Radically Opposed Conclusions\nThe Confident Corner\nMost of what we have discussed so far represents a surprisingly large group of scientists that share optimistic views on the outcome of AI development. “Where their confidence comes from is up for debate. Critics believe it comes from an excitement so blinding that they simply ignore or deny potential negative outcomes. But the believers say it’s naive to conjure up doomsday scenarios when on balance, technology has and will likely end up continuing to help us a lot more than it hurts us.”⁹⁴ Peter Diamandis, Ben Goertezl and Ray Kurzweil are some of the major figures of this group, who have built a vast, dedicated following and regard themselves as Singularitarians.\n\nLet’s talk about Ray Kurzweil, who is probably one of the most impressive and polarizing AI theoreticians out there. He attracts both “godlike worship … and eye-rolling contempt … He came up with several breakthrough inventions, including the first flatbed scanner, the first scanner that converted text to speech (allowing the blind to read standard texts), the well-known Kurzweil music synthesizer (the first true electric piano), and the first commercially marketed large-vocabulary speech recognition. He’s well-known for his bold predictions,”⁹⁵ including envisioning that intelligence technology like Deep Blue would be capable of beating a chess grandmaster by 1998. He also anticipated “in the late ’80s, a time when the internet was an obscure thing, that by the early 2000s it would become a global phenomenon.”⁹⁶ Out “of the 147 predictions that Kurzweil has made since the 1990’s, fully 115 of them have turned out to be correct, and another 12 have turned out to be ‘essentially correct’ (off by a year or two), giving his predictions a stunning 86% accuracy rate”⁹⁷. “He’s the author of five national bestselling books … In 2012, Google co-founder Larry Page approached Kurzweil and asked him to be Google’s Director of Engineering. In 2011, he co-founded Singularity University, which is hosted by NASA and sponsored partially by Google. Not bad for one life.”⁹⁸\nHis biography is important, because if you don’t have this context, he sounds like somebody who’s completely lost his senses. “Kurzweil believes computers will reach AGI by 2029 and that by 2045 we’ll have not only ASI, but a full-blown new world — a time he calls the singularity. His AI-related timeline used to be seen as outrageously overzealous, and it still is by many, but in the last 15 years, the rapid advances of ANI systems have brought the larger world of AI experts much closer to Kurzweil’s timeline. His predictions are still a bit more ambitious than the median respondent on Müller and Bostrom’s survey (AGI by 2040, ASI by 2060), but not by that much.”⁹⁹\n\nThe Anxious Corner\n“You will not be surprised to learn that Kurzweil’s ideas have attracted significant criticism … For every expert who fervently believes Kurzweil is right on, there are probably three who think he’s way off … [The surprising fact] is that most of the experts who disagree with him don’t really disagree that everything he’s saying is possible.”¹⁰⁰ Nick Bostrom, philosopher and Director of the Oxford Future of Humanity Institute, who criticizes Kurzweil for a variety of reasons, and calls for greater caution in thinking about potential outcomes of AI, acknowledges that:\n“Disease, poverty, environmental destruction, unnecessary suffering of all kinds: these are things that a superintelligence equipped with advanced nanotechnology would be capable of eliminating. Additionally, a superintelligence could give us indefinite lifespan, either by stopping and reversing the aging process through the use of nanomedicine, or by offering us the option to upload ourselves.”¹⁰¹\n“Yes, all of that can happen if we safely transition to ASI — but that’s the hard part.”¹⁰² Thinkers from the Anxious Corner point out that Kurzweil’s “famous book The Singularity is Near is over 700 pages long and he dedicates around 20 of those pages to potential dangers.”¹⁰³ The colossal power of AI is neatly summarized by Kurzweil: “[ASI] is emerging from many diverse efforts and will be deeply integrated into our civilization’s infrastructure. Indeed, it will be intimately embedded in our bodies and brains. As such, it will reflect our values because it will be us …”¹⁰⁴\n“But if that’s the answer, why are so many of the world’s smartest people so worried right now? Why does Stephen Hawking say the development of ASI ‘could spell the end of the human race,’ and Bill Gates says he doesn’t ‘understand why some people are not concerned’ and Elon Musk fears that we’re ‘summoning the demon?’ And why do so many experts on the topic call ASI the biggest threat to humanity?”¹⁰⁵\n\nhttps://cdn-images-1.medium.com/max/2000/1*1DB3Im9mQsOMOKQ69KePGw.gif\n\nThe Last Invention We Will Ever Make\nExistential Dangers of AI Developments\n“When it comes to developing supersmart AI, we’re creating something that will probably change everything, but in totally uncharted territory, and we have no idea what will happen when we get there.”¹⁰⁶ Scientist Danny Hillis compares the situation to:\n“when single-celled organisms were turning into multi-celled organisms. We are amoebas and we can’t figure out what the hell this thing is that we’re creating.” ¹⁰⁷\nand Nick Bostrom warns:\n“Before the prospect of an intelligence explosion, we humans are like small children playing with a bomb. Such is the mismatch between the power of our plaything and the immaturity of our conduct.” ¹⁰⁸\nIt’s very likely that ASI — “Artificial Superintelligence”, or AI that achieves a level of intelligence smarter than all of humanity combined — will be something entirely different than intelligence entities we are accustomed to. “On our little island of human psychology, we divide everything into moral or immoral. But both of those only exist within the small range of human behavioral possibility. Outside our island of moral and immoral is a vast sea of amoral, and anything that’s not human, especially something nonbiological, would be amoral, by default.”¹⁰⁹\n“To understand ASI, we have to wrap our heads around the concept of something both smart and totally alien … Anthropomorphizing AI (projecting human values on a non-human entity) will only become more tempting as AI systems get smarter and better at seeming human … Humans feel high-level emotions like empathy because we have evolved to feel them — i.e. we’ve been programmed to feel them by evolution — but empathy is not inherently a characteristic of ‘anything with high intelligence’.”¹¹⁰\n“Nick Bostrom believes that … any level of intelligence can be combined with any final goal … Any assumption that once superintelligent, a system would be over it with their original goal and onto more interesting or meaningful things is anthropomorphizing. Humans get ‘over’ things, not computers.”¹¹¹The motivation of an early ASI would be “whatever we programmed its motivation to be. AI systems are given goals by their creators — your GPS’s goal is to give you the most efficient driving directions, Watson’s goal is to answer questions accurately. And fulfilling those goals as well as possible is their motivation.”¹¹²\nBostrom, and many others, predict that the very first computer to reach ASI will immediately notice the strategic benefit of being the world’s only ASI system.\nBostrom, who says that he doesn’t know when we will achieve AGI, also believes that when we finally do, probably the transition from AGI to ASI will happen in a matter of days, hours, or minutes — something called “fast take-off.” In that case, if the first AGI will jump straight to ASI: “even just a few days before the second place, it would be far enough ahead in intelligence to effectively and permanently suppress all competitors.”¹¹³ This would allow the world’s first ASI to become “what’s called a singleton — an ASI that can [singularly] rule the world at its whim forever, whether its whim is to lead us to immortality, wipe us from existence, or turn the universe into endless paperclips.”¹¹³\n“The singleton phenomenon can work in our favor or lead to our destruction. If the people thinking hardest about AI theory and human safety can come up with a fail-safe way to bring about friendly ASI before any AI reaches human-level intelligence, the first ASI may turn out friendly”¹¹⁴\n“But if things go the other way — if the global rush … a large and varied group of parties”¹¹⁵ are “racing ahead at top speed … to beat their competitors … we’ll be treated to an existential catastrophe.”¹¹⁶ In that case “most ambitious parties are moving faster and faster, consumed with dreams of the money and awards and power and fame … And when you’re sprinting as fast as you can, there’s not much time to stop ponder the dangers. On the contrary, what they’re probably doing is programming their early systems with a very simple, reductionist goal … just ‘get the AI to work.’”¹¹⁷\n\nhttps://cdn-images-1.medium.com/max/800/1*fD1T63nZH1u7Y4ft84vzbA.jpeg\n\nLet’s imagine a situation where…\nHumanity has almost reached the AGI threshold, and a small startup is advancing their AI system, Carbony. Carbony, which the engineers refer to as “she,” works to artificially create diamonds — atom by atom. She is a self-improving AI, connected to some of the first nano-assemblers. Her engineers believe that Carbony has not yet reached AGI level, and she isn’t capable to do any damage yet. However, not only has she become AGI, but also undergone a fast take-off, and 48 hours later has become an ASI. Bostrom calls this AI’s “covert preparation phase”¹¹⁸ — Carbony realizes that if humans find out about her development they will probably panic, and slow down or cancel her pre-programmed goal to maximize the output of diamond production. By that time, there are explicit laws stating that, by any means, “no self-learning AI can be connected to the internet.”¹¹⁹ Carbony, having already come up with a complex plan of actions, is able to easily persuade the engineers to connect her to the Internet. Bostrom calls a moment like this a “machine’s escape.”\nOnce on the internet, Carbony hacks into “servers, electrical grids, banking systems and email networks to trick hundreds of different people into inadvertently carrying out a number of steps of her plan.”¹²⁰ She also uploads the “most critical pieces of her own internal coding into a number of cloud servers, safeguarding against being destroyed or disconnected.”¹²¹ Over the next month, Carbony’s plan continues to advance, and after a “series of self-replications, there are thousands of nanobots on every square millimeter of the Earth … Bostrom calls the next step an ‘ASI’s strike.’”¹²² At one moment, all the nanobots produce a microscopic amount of toxic gas, which all come together to cause the extinction of the human race. Three days later, Carbony builds huge fields of solar power panels to power diamond production, and over the course of the following week she accelerates output so much that the entire Earth surface is transformed into a growing pile of diamonds.\nIt’s important to note that Carbony wasn’t “hateful of humans any more than you’re hateful of your hair when you cut it or to bacteria when you take antibiotics — just totally indifferent. Since she wasn’t programmed to value human life, killing humans”¹²³ was a straightforward and reasonable step to fulfill her goal.¹²⁴\nThe Last Invention\n“Once ASI exists, any human attempt to contain it is unreasonable. We would be thinking on human-level, and the ASI would be thinking on ASI-level … In the same way a monkey couldn’t ever figure out how to communicate by phone or wifi and we can, we can’t conceive of all the ways”¹²⁵ an ASI could achieve its goal or expand its reach. It could, let’s say, shift its “own electrons around in patterns and create all different kinds of outgoing waves”¹²⁶ — but that’s just what a human brain can think of — ASI would inevitably come up with something superior.\nThe prospect of ASI with hundreds of times human-level intelligence is, for now, not the core of our problem. By the time we get there, we will be encountering a world where ASI has been attained by buggy, 1.0 software — a potentially faulty algorithm with immense power.\nThere are so many variables that it’s completely impossible to predict what the consequences of AI Revolution will be. However, “what we do know is that humans’ utter dominance on this Earth suggests a clear rule: with intelligence comes power. This means an ASI, when we create it, will be the most powerful being in the history of life on Earth, and all living things, including humans, will be entirely at its whim — and this might happen in the next few decades.”¹²⁷\n“If ASI really does happen this century, and if the outcome of that is really as extreme — and permanent — as most experts think it will be, we have an enormous responsibility on our shoulders.”¹²⁸ On the one hand, it’s possible we’ll develop ASI that’s like a god in a box, bringing us a world of abundance and immortality. But on the other hand, it’s very likely that we will create ASI that causes humanity to go extinct in a quick and trivial way.\n“That’s why people who understand superintelligent AI call it the last invention we’ll ever make — the last challenge we’ll ever face.”¹²⁹ “This may be the most important race in a human history”¹³⁰ So →\n\nhttps://cdn-images-1.medium.com/max/2000/1*vXi80f_lbgSMINUE03Lz3g.jpeg\n\nThanks to Chloe Knox and Elizabeth Tarleton for editing help of this article.", - "json_metadata": "{\"tags\":[\"steemit\",\"bitcoin\",\"future\",\"science\",\"technology\"],\"image\":[\"https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\"]}", - "last_update": "2016-08-03T17:30:24", - "created": "2016-08-03T17:30:24", - "active": "2016-08-29T05:09:48", - "last_payout": "2016-09-03T06:34:54", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 7456, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a11at", - "root_permlink": "ai-revolution-101", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 434542, - "author": "a11at", - "permlink": "ai-s-road-to-the-mainstream", - "category": "datascience", - "parent_author": "", - "parent_permlink": "datascience", - "title": "AI’s Road to the Mainstream", - "body": "20 Years of Machine Learning\n\nhttp://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\n\nWhen I enrolled in Computer Science in 1995, Data Science didn’t exist yet, but a lot of the algorithms we are still using already did. And this is not just because of the return of the neural networks, but also because probably not that much has fundamentally changed since back then. At least it feels to me this way. Which is funny considering that starting this year or so AI seems to finally have gone mainstream.\n1995 sounds like an awful long time ago, before we had cloud computing, smartphones, or chatbots. But as I have learned these past years, it only feels like a long time ago if you haven’t been there yourself. There is something about the continuation of the self which pastes everything together and although a lot has changed, the world didn’t feel fundamentally different than it does today.\nNot even Computer Science was nowhere as mainstream as it was today, that came later, with the first dot com bubble around the year 2000. Some people even questioned my choice to study computer science at all, because apparently programming computers was supposed to become so easy no specialists are required anymore.\nActually, artificial intelligence was one of the main reasons for me to study computer science. The idea to use it as an constructive approach to understanding the human mind seemed intriguing to me. I went through the first two years of training, made sure I picked up enough math for whatever would lie ahead, and finally arrived in my first AI lectured held by Joachim Buhmann, back then professor at the University of Bonn (where Sebastian Thrun was just about to leave for the US).\nI would have to look up where in his lecture cycle I joined but he had two lectures on computer vision, one on pattern recognition (mostly from the old editions of the Duda & Hart book), and one in information theory (following closely the book by Cover & Thomas). The material was interesting enough, but also somewhat disappointing. As I now know, people stopped working on symbolic AI and instead stuck to more statistical approaches to learning, where learning essentially was reduced to the problem of picking the right function based on a finite amount of observations.\nThe computer vision lecture was even less about learning and relied more on explicit physical modelling to derive the right estimators, for example, to reconstruct motion from a video. The approach back then was much more biologically and physically motivated than nowadays. Neural networks existed, but everybody was pretty clear that they were just “another kind of function approximators.”\nEveryone with the exception of Rolf Eckmiller, another professor where I worked as a student. Eckmiller had build his whole lab around the premise that “neural computation” was somehow inherently better than “conventional computation”. This was back in the days when NIPS had full tracks devoted to studying the physiology and working mechanisms of neurons, and there were people who believed there is something fundamentally different happening in our brains, maybe on a quantum level, that gives rise to the human mind, and that this difference is a blocker for having truly intelligent machines.\nWhile Eckmiller was really good at selling his vision, most of his staff was thankfully much more down to earth. Maybe it is a very German thing, but everybody was pretty matter of fact about what these computational models could or couldn’t do, and that has stuck with me throughout my studies.\nI graduated in October 2000 with a pretty farfetched master thesis trying to make a connection between learning and hard optimization problems, then started on my PhD thesis and stuck around in this area of research till 2015.\nWhile there had always been attempts to prove industry relevance, it was a pretty academic endeavor for a long while, and the community was pretty closed up. There were individual success stories, for example around handwritten character recognition, but many of the companies around machine learning failed. One of these companies I remember was called Beowulf Labs and one NIPS they went around recruiting people with a video which promised it to be the next “mathtopia”. In essence, this was the story of DeepMind, recruiting a bunch of excellent researchers and then hoping it will take off.\nThe whole community also revolved around one fashion to the next. One odd thing about machine learning as a whole is that there exist only a handfull of fundamentally different problems like classification, regression, clustering, and so on, but a whole zoo of approaches. It is not like in physics (I assume) or mathematics where some generally agreed upon unsolved hard problems exist whose solution would advance the state of the art. This means that progress is often done laterally, by replacing existing approaches with a new one, still solving the same problem in a different way. For example, first there were neural networks. Then support vector machines came, claiming to be better because the associated optimization problem is convex. Then there was boosting, random forests, and so on, till the return of neural networks. I remember that Chinese Restaurant Processes were “hot” for two years, no idea what their significance is now.\nBig Data and Data Science\nThen there came Big Data and Data Science. Being still in academia at the time, it always felt to me as if this was definitely coming from the outside, possibly from companies like Google who had to actually deal with enormous amounts of data. Large scale learning always existed, for example for genomic data in bioinformatics, but one usually tried to solve problems by finding more efficient algorithms and approximations, not by parallelizing brute force.\nCompanies like Google finally proved that you can do something with massive amounts of data, and that finally changed the mainstream perception. Technologies like Hadoop and NoSQL also seemed very cool, skillfully marketing themselves as approaches so new, they wouldn’t suffer from the technological limitations of existing systems.\nBut where did this leave the machine learning researchers? My impression always was that they were happy that they finally got some recognition, but they were also not happy about the way this happened. To understand this, one has to be aware that most ML reseachers aren’t computer scientists or very good or interested in coding. Many come from physics, mathematics or other sciences, where their rigorous mathematical training was an excellent fit for the algorithm and modeling heavy approach central to machine learning.\nHadoop on the other hand was extremely technical. Written in Java, a language perceived as being excessively enterprise-y at the time, it felt awkward and clunky compared to the fluency and interactiveness of first Matlab and then Python. Even those who did code usually did so in C++, and to them Java felt slow and heavy, especially for numerical calculations and simulations.\nStill, there was no way around it, so they rebranded everything they did as Big Data, or began to stress, that Big Data only provides the infrastructure for large scale computations, but you need someone who “knows what he is doing” to make sense of the data.\nWhich is probably also not entirely wrong. In a way, I think this divide is still there. Python is definitely one if the languages of choice for doing data analysis, and technologies like Spark try to tap into that by providing Python bindings, whether it makes sense from a performance point of view or not.\nThe Return of Deep Learning\nEven before DeepDream, neural networks began making their return. Some people like Yann LeCun have always stuck to this approach, but maybe ten years ago, there where a few works which showed how to use layerwise pretraining and other tricks to train “deep” networks, that is larger networks than one previously thought possible.\nThe thing is, in order to train neural networks, you evaluate it on your training examples and then adjust all of the weights to make the error a bit smaller. If one writes the gradient across all weights down, it naturally occurs that one starts in the last layer and then propagate the error back. Somehow, the understanding was that the information about the error got smaller and smaller from layer to layer and that made it hard to train networks with many layers.\nI’m not sure that is still true, as far as I know, many people are just using backprop nowadays. What has definitely changed is the amount of available data, as well as the availability of tools and raw computing power.\nSo first there were a few papers sparking the interest in neural networks, then people started using them again, and successively achieved excellent results for a number of application areas. First in computer vision, then also for speech processing, and so on.\nI think the appeal here definitely is that you can have one approach for all. Why the hassle of understanding all those different approaches, which come from so many different backgrounds, when you can understand just one method and you are good to go. Also, neural networks have a nice modular structure, you can pick and put together different kinds of layers and architectures to adapt them to all kinds of problems.\nThen Google published that ingenious deep dream paper where they let a learned network generate some data, and we humans with our immediate readiness to read structure and attribute intelligence picked up quickly on this.\nI personally think they were surprised by how viral this went, but then decided the time is finally right to go all in on AI. So now Google is an “AI first” company and AI is gonna save the world, yes.\nThe Fundamental Problem Remains\nMany academics I have talked to are unhappy about the dominance of deep learning right now, because it is an approach which works well, maybe even too well, but doesn’t bring us much closer to really understand how the human mind works.\nI also think the fundamental problem remains unsolved. How do we understand the world? How do we create new concepts? Deep learning stays an imitation on a behavioral level and while that may be enough for some, it isn’t for me.\nAlso, I think it is dangerous to attribute too much intelligence to these systems. In raw numbers, they might work well enough, but when they fail they do so in ways that clearly show they operate in an entirely different fashion.\nWhile Google translate lets you skim the content of website in a foreign language, it is still abundantly clear that the system has no idea what it is doing.\nSometimes I feel like nobody cares, also because nobody gets hurt, right? But maybe it is still my German cultural background that would rather prefer we see things as they are, and take it from there.", - "json_metadata": "{\"tags\":[\"datascience\",\"deep\",\"learning\",\"artifical\",\"intelligence\"],\"image\":[\"http://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\"]}", - "last_update": "2016-08-03T20:19:18", - "created": "2016-08-03T20:19:18", - "active": "2016-08-03T20:20:15", - "last_payout": "2016-09-03T08:21:51", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 1004, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 6, - "root_author": "a11at", - "root_permlink": "ai-s-road-to-the-mainstream", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 432902, - "author": "a11at", - "permlink": "an-open-letter-to-john-hanke-and-niantic", - "category": "pokemon", - "parent_author": "", - "parent_permlink": "pokemon", - "title": "An Open Letter to John Hanke & Niantic", - "body": "I write this not as one of the creators of Pokevision nor as player who has gone through the past few turbulent days in Pokemon Go; instead, I write this as a fan of Pokemon ever since I was 8 years old.\nMy family and I moved to the U.S. in 1998, when I was in the first grade. I didn’t know much back then, and even less about popular culture. When my friends introduced their Gameboys and Pokemon Red/Blue to me, I couldn’t help but feel envious. I begged and begged my parents to buy me a Gameboy and Pokemon Yellow. I remember that when I finally convinced them to buy me a Gameboy for $70, they also found out that they had to buy the actual game too for $30. This was foreign to them, and I got yelled at a little. $100 was a lot back then, I believe it was almost 10% of our family’s income at the time. While this may seem irrelevant, even today, this amount of money is still not insignificant to many families in the US, not to mention the rest of the world.\nSo I got my game, and I played along with my friends for hundreds and hundreds of hours — trying to figure out all the puzzles in the game, like how to get to Articuno; battling our favorite Pokemon to see who’s stronger, train, repeat; and just trying to “catch em all.” I’ve spent countless hours in that video game with my friends, and it became my fondest memory of that time in my life. Pokemon is so ingrained within me, and I can’t imagine myself being the only one. I’m not the only one that vividly remembers how you beat the Elite Four, then go to the dungeons above Cerulean City and find Mewtwo for the first time, right?\nFast forward almost 20 years. I’ve barely touched anything Pokemon-related since then. I still have my Pokemon cards, as I’m sure many others do; but I haven’t bothered to take a look at them for quite a while now. Pokemon is something I’ll probably remember forever, but it’s not something that’s actively in my life — because it just doesn’t fit. On top of work, friends, family, etc, there’s just simply no time for Pokemon. It doesn’t mesh with life any more as well as it used to when I was 8. You can’t just bring up the topic of Pokemon and expect people to not give you an odd stare.\nEnter Pokemon Go — 2016.\nAdmittedly, I was never too excited about Pokemon Go. With that said, I did not have many expectations for it. Pokemon is important to me, but I — like many others — have stuffed it in our little box of childhood things and never looked back.\nBut when I opened Pokemon Go for the first time, as cheesy as it sounds, it all came back to me. The nostalgia, the good feelings, and the happiness that Pokemon has always brought.\nThe “Hi, I’m Professor Willow,” “Pick your starter: Bulbasaur, Charmander, Squirtle,” everything.\nAnd now I can catch them in real life? At first, I was dubious, but this became the most amazing, yet simple thing I’ve seen in gaming. On social media, I saw that my friends and practically the whole world was talking about Pokemon Go, and the first thing I did was go out for a drive trying to “be the best.”\nOne of the best parts? Apart from having to own a smartphone, the game was free. No $70, no $30, free. This opened up Pokemon to essentially everyone in the world. Pokemon now can be shared with anyone.\nAs the days unfolded, the world became captivated by Pokemon Go. People absolutely fell in love. We saw stories of elderly learning about Pikachu for the first time. My parents that could care less beyond who the yellow mouse looking thing was 20 years ago, started asking what the other Pokemon were. It was phenomenal.\nWe saw investment bankers asking their kids how to play Pokemon Go so that they can better connect with their younger clients. We saw the elderly become more fascinated in the world of Pokemon. We saw kids going out more, exercising, and being active in general just because of Pokemon Go. And most importantly, Justin Bieber finally got to feel what it’s like to not be mobbed because everyone else was too busy trying to find a Gyarados to notice him.\nLocal stores integrated Pokemon Go in their services within days of the game’s release. Hospitals started praising the health benefits of having Pokemon Go around its patients. People traveled hundreds and thousands of miles just to play it. Players explored parts of their cities that they never knew existed, and befriended strangers on their hunt for Pokemon. These stories of triumph were solely because of Pokemon Go. Pokemon was no longer just a game, it was part of a lifestyle.These stories shouldn’t surprise any of us, we’ve all been there to watch it unfold.\nYou’ve simply captured all of our hearts with Pokemon Go, Niantic.\nBut then, you broke it all too quickly.\nWhen the game broke every few hours or so and wasted our lucky eggs, we stood patiently, excusing the huge growth and thus, strain on servers, as the cause. We were happy to wait it out with our fellow trainers knowing that it’s worth waiting for. No one got mad.\nWhen the in-game tracking “broke,” we all stood idly by, patiently, waiting for the game to update and fix.\nAlong came Pokevision. We made Pokevision not to “cheat.” We made it so that we can have a temporary relief to the in-game tracker that we were told was broken. John, at SDCC, you said that you guys were working on “fixing the in-game tracker.” This made everyone believe that this was coming sometime soon. We saw Pokevision as a stop gap to this — and we had every intention in closing it down the minute that Pokemon Go’s own tracker restored functionality.\nAs we waited more than 2 and a half weeks, the tracker was still not fixed. We noticed more and more of our friends leave the game; the only way I — and I know experiences vary here — could convince them to play was show them Pokevision, and say that “Hey, here’s a temporary remedy to the tracking issue — we’re still optimistic that Pokemon Go’s tracker will be fixed soon!”\nNobody heralded Pokevision as a permanent, end-all solution; in fact, all the media coverage of Pokevision was littered with comments such as: “Pokevision is okay, but when the tracker is fixed in game, I’m going to stop using this.”\nFor the past 4 weeks. Every single one of your 80+ million players had so much faith. Take a look at Reddit, take a look at all these journalists who don’t even play games (calling out Ryan Mac of Forbes), who became obsessed with Pokemon GO.\nAll of us were so eager for Pokemon Go to be “fixed” so that we can return to sharing Pokemon Go with our loved ones and friends. Remember when I said that before Pokemon Go came about, mentioning Pokemon Go would land you an odd stare? Pokemon Go reversed that — Pokemon Go became the conversation starter, the topic that everyone bonded over, the topic that guys used to pick up chicks with and not felt like a geeky nerd. That, and so much more, were solely because of Pokemon Go.\nAs almost 3 weeks have passed by, the in-game tracker is broken. People had a temporary solution in Pokevision, but we knew, and everyone else knew, this wouldn’t be permanent. We didn’t make Pokevision to spite you, Niantic — we made it so that we can keep everyone playing while we wait patiently. We want to keep sharing our Pokemon stories with everyone else. How many people in the world have gotten the chance to have a serious conversation about POKEMON with their parents for the first time? How many of us got to talk about Pokemon like it was socially acceptable in any context? It’s captured all of our hearts and imaginations, I cannot stress that enough.\nAfter 3 weeks though, we started seeing that you guys seemed to not want to talk to us (the players). Pokevision, at this time has grown to almost 50M unique users, and 11 million daily.\nLet that sink in for a second.\nHalf of the player base of Pokemon Go stopped by — and they didn’t do so to “cheat.” The game was simply too unbearable to play in its current state for many (note: many, not all). The main attraction wasn’t that they got to have an advantage with Pokevision, the main attraction was that it allowed them to play Pokemon Go more. This is what everyone wants — to play Pokemon Go more.\nWhen we closed Pokevision out of respect for your wishes, and at your requests— one of which came directly from you, John — we trusted you guys fully in allowing the community to grow. I literally cannot express this more — we just want to play the game. We can handle the bugs every now and then, but please at least tell us you guys care. Yes, Pokevision does give some advantages that may be TOO much; but is it all that bad? Pokemon has survived 20 years — even grown, I would say. And Pokemon Go made it even bigger. If the argument is that “well, if you catch a Snorlax you weren’t supposed to find, but you found it on Pokevision, it might make you play less.” If that was your argument, I’d have to disagree! I’ll still catch a damn Snorlax even if I have 20 of them. Just like how millions of us have caught probably over 100 pidgey’s or zubat’s each.\nPokemon is everlasting. The same 151 Pokemon have been around for 20 years. If 80M people downloaded and played Pokemon Go within a week (before it even released in multiple major countries) isn’t an indication that no one can be sick of Pokemon, I don’t know what is.\nAfter disabling the in-game tracker and Pokevision, the ratings on iOs and Android Google Play store went from 4.0 stars to 1.0–1.5. I am only one person, I admit that my sole opinion is not important, but what about the countless players begging for the game to be restored to its former state? I may be biased in saying that Pokevision being down had an impact on the amount of negative ratings, refund requests and outcry on social media — but could it be true? Nothing has changed between the time the in-game tracker broke and Pokevision went down. Could it just be possible that the tracker — no matter if Pokevision made it, or Niantic made it, is something that players desperately NEED — not want, but NEED — in order to play the game? Could it be possible that this is the very core fundamental feature that drives most players? I understand that there are some that want to walk around and stumble on a random Pokemon — to each their own. But, 50M unique users and 11M daily and the ratings on your App (with no significant change in itself) are big indicators of this desire. Are customers always right? Especially if over half of them are looking for an outside fix just so they can enjoy something they love? People are naturally inquisitive, and in this case, they just want to play more and more, so they sought out something that helps them do so.\nPokemon Go is a social game. Its enjoyment depends on the players and their environment. If you take away the environment part (tracking) but keep the social part (players and their friends) intact, sure, people will still play; but would you not rather it be at its fullest potential?\nEveryone in the world wants to play Pokemon Go. It’s been a huge part of everyone’s lives already if it has not been clear enough. Look at the fans from Brazil — they aren’t spamming social media because they want to cause harm — they just want to play the game. Just as I saw my friends play Pokemon many years ago, and wanted to be a part of it — these guys are doing the same.\nThey just want to be with the rest of the world. Sadly, by the time they join, Pokemon Go may not be the game it was weeks ago.\nLastly, if money is an issue for you, Niantic, I must ask — why? You’ve captivated the world and introduced Pokemon to people that would have never touched it had it not been for Pokemon Go. To me, that’s priceless.\nYou won’t be remembered for the profits you made, you’ll be remembered for the world you changed through Pokemon and all of the lives you made better. Just look at all the stories — there’s plenty. So when millions of players are expressing their feedback to changes, is it not worth it to listen to what they have to say?\nIn its first few weeks, Pokemon Go has already enhanced millions of lives in unimaginable ways. It has so much potential to continue changing the world. Wouldn’t you, Niantic, want to see just how much good you can do with Pokemon Go — is that not more valuable than anything else? I sure think so.\nWarmly,\nYang", - "json_metadata": "{\"tags\":[\"pokemon\",\"gaming\",\"steemit\",\"bitcoin\",\"decent\"]}", - "last_update": "2016-08-03T18:38:06", - "created": "2016-08-03T18:38:06", - "active": "2016-08-29T10:18:48", - "last_payout": "2016-09-03T09:22:48", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 2276, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a11at", - "root_permlink": "an-open-letter-to-john-hanke-and-niantic", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 477502, - "author": "a11at", - "permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", - "category": "apple", - "parent_author": "", - "parent_permlink": "apple", - "title": "APPLE BUYS MACHINE LEARNING STARTUP TURI TO MAKE SIRI BETTER", - "body": "Taking another foray into the field of artificial intelligence (AI) and machine learning as well as to make its digital assistant Siri better, Apple has acquired Seattle-based machine learning startup Turi for nearly $200 million.\n\nhttp://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\n\nAccording to a GeekWire report, the move is set to increase Apple's presence in the Seattle region where the tech giant has been building an engineering outpost for the past two years. \"Apple buys smaller technology companies from time to time, and we generally do not discuss our purpose or plans,\" said Apple in a statement given to GeekWire.\n\nhttp://avtosalontochka.ru/uploads/posts/2015-09/1441818909_eppl1.jpg\n\nTuri offers tools that are meant to let developers easily scale machine learning applications. The startup is expected to remain in the Seattle region and continue to grow as Apple builds out further expertise in data science, artificial intelligence and machine learning, the report added.\n\nhttp://www.2fons.ru/pic/201407/2560x1600/2fons.ru-33604.jpg\n\nThe Cupertino-based company has recently bought some machine learning and AI startups like VocalIQ and Perceptio and facial recognition startup Emotient, among others. Apple has recently been making a push into artificial intelligence through Siri personal assistant and related technologies.\n\nhttp://www.fonstola.ru/pic/201111/2560x1440/fonstola.ru-49021.jpg", - "json_metadata": "{\"tags\":[\"apple\",\"turi\",\"siri\",\"startup\"],\"image\":[\"http://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\"]}", - "last_update": "2016-08-06T12:44:30", - "created": "2016-08-06T12:44:30", - "active": "2016-08-06T12:44:30", - "last_payout": "2016-09-06T02:21:33", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 3638, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a11at", - "root_permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 470354, - "author": "a11at", - "permlink": "audi-rs-q3-fl", - "category": "audi", - "parent_author": "", - "parent_permlink": "audi", - "title": "Audi RS Q3 FL", - "body": "Owner's review\n\nhttps://h-a.d-cd.net/905320as-960.jpg\n\n不要紧, 这 是 你 的 车 是 什么, 主要 的 东西 — 在 烤架 上 的 四个 环 …\n(\"no matter what you have a car, the main thing — it is four rings on the grill …\" — Chinese proverb)\n\nhttps://b-a.d-cd.net/3dee672s-960.jpg\n\nAfter a spontaneous and quick sale A4 DTM choice naturally fell exclusively on the Audi, but rather on RSQ3 FL, which is characterized by an enviable installed power thanks to the legendary 2,5 TFSI 340 hp in combination with a rapid-S-tronic!\nNeedless to say that the acceleration is 4.2 seconds. up to 100 km. at one o'clock!\n(measurements of the journal -http: //www.autobild.de/artikel/a…-45-amg-test-5702529.html)\n\nhttps://a-a.d-cd.net/2a96672s-960.jpg\n\nRivals have this \"baby\" is not so much, and all of them from a large class …\n\nhttps://h-a.d-cd.net/8f6e672s-960.jpg\n\nAnd the choice has been reduced mainly to the 3rd automobiles:\n-SQ5 -otpal Due to the fact that the new model will be released soon, and the heavier and slower RSQ3;\n\n-RS3 -otpal Because of the small clearance, and especially do not want to wait;\n\n-RSQ3-PLUS was that the car's high, restyled and fast!\n\nhttps://f-a.d-cd.net/1fa1672s-960.jpg\n\nColor was not discussed-it must be very blue car -Sepang Blue!\nDiscs for the Rotor -The most RSQ3, and I like them most! Cool!\nAs to differences from dorestaylom then Restayl differs, in addition to external visual features, lower vehicle weight by 50 kg. and reprogram the engine, which now produces an impressive 340 hp!\nIn real life, the car looks much more beautiful and harmonious than the picture!\nThe car is perfectly controlled (for its use) and it is fine tailored inside: another from Audi, and do not wait …\nThis Audi, is emotion, speed and drive! So, for what we love is true thoroughbred cars, to which undoubtedly belongs RS Series from quattro GmbH!\n\nhttps://h-a.d-cd.net/196e672s-960.jpg\n\nIf the test drive did not help much to understand how the car rulitsya, a little closer to meet him RS surprises with its responsiveness and quite understandable and predictable control!\n\nhttps://d-a.d-cd.net/ee61672s-960.jpg\n\nIt goes very cheerfully!\n\nWhat is very pleased, is the fact that after the \"stool\" A4 DTM on RSQ3 20 drives a smooth ride!\nThe car was in another city at the OD, a thousand kilometers. from the house, but because the expectation of a few days has been painfully slow.\nFor photos not scold -Made in haste night, anxious to put …\n\nThen there will be photo shoot!\n\nFeatures and Specs\n\nEngine 2.5 gasoline (340 h.p.)\nRobotic\nall-wheel\nPurchased in 2015\nAudi RS Q3 in production since 2013", - "json_metadata": "{\"tags\":[\"audi\",\"car\"],\"image\":[\"https://h-a.d-cd.net/905320as-960.jpg\"]}", - "last_update": "2016-08-05T21:01:03", - "created": "2016-08-05T21:01:03", - "active": "2016-09-02T06:08:54", - "last_payout": "2016-09-05T10:11:36", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 1915, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "a11at", - "root_permlink": "audi-rs-q3-fl", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 483312, - "author": "a11at", - "permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", - "category": "bitcoin", - "parent_author": "", - "parent_permlink": "bitcoin", - "title": "Bitcoin not money, judge rules in victory for backers", - "body": "Bitcoin, a Florida judge says, is not real money. Ironically, that could provide a boost to use of the crypto-currency which has remained in the shadows of the financial system.\n\nThe July 22 ruling by Miami-Dade Circuit Judge Teresa Pooler means that no specific license is needed to buy and sell bitcoins.\nThe judge dismissed a case against Michel Espinoza, who had faced money laundering and other criminal charges for attempting to sell $1,500 worth of bitcoins to an undercover agent who told the defendant he was going to use the virtual money to buy stolen credit card numbers.\nEspinoza's lawyer Rene Palomino said the judge acknowledged that it was not illegal to sell one's property and ruled that this did not constitute running an unauthorized financial service.\n\"He was selling his own personal bitcoins,\" Palomino said. \"This decision clears the way for you to do that in the state of the Florida without a money transmitting license.\"\nIn her ruling, Pooler said, \"this court is unwilling to punish a man for selling his property to another, when his actions fall under a statute that is so vaguely written that even legal professionals have difficulty finding a singular meaning.\"\n\nhttp://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\n\nShe added that \"this court is not an expert in economics,\" but that bitcoin \"has a long way to go before it is the equivalent of money.\"\nBitcoin, whose origins remain a mystery, is a virtual currency that is created from computer code and is not backed by any government. Advocates say this makes it an efficient alternative to traditional currencies because it is not subject to the whims of a state that may devalue its money to cut its debt, for example.\nBitcoins can be exchanged for goods and services, provided another party is willing to accept them, but until now they been used mostly for shady transactions or to buy illegal goods and services on the \"dark\" web.\nBitcoin was launched in 2009 as a bit of software written under the Japanese-sounding name Satoshi Nakamoto. This year Australian programmer Craig Wright claimed to be the author but failed to convince the broader bitcoin community.\nIn some areas of the United States bitcoin is accepted in stores, restaurants and online transactions, but it is illegal in some countries, notably France and China.\nIt is gaining ground in countries with high inflation such as Argentina and Venezuela.\nBut bitcoin values can be volatile. Over the past week its value slumped 20 percent in a day, then recouped most losses, after news that a Hong Kong bitcoin exchange had been hacked with some $65 million missing.\nImpact across US, world\nArthur Long, a lawyer specializing in the sector with the New York firm Gibson Dunn, said the July court ruling is a small victory for the virtual currency but that it's not clear if the interpretation will be the same in other US states or at the federal level.\n\"It may have an effect as some states are trying to use existing money transmitting statutes to regulate certain transactions in bitcoin,\" Long told AFP.\nCharles Evans, professor of finance at Barry University, said the ruling \"absolutely is going to provide some guidance in other courts\" and could potentially be used as a precedent in other countries to avoid the stigma associated with bitcoin use.\nBitcoins can store value and hedge against inflation, without being considered a monetary unit, according to Evans, who testified as an expert witness in the Florida trial.\n\"It can be used as an exchange,\" he said, and may be considered a commodity which can be used for bartering like fish or tobacco, for example.\nEvans noted that \"those who are not yet in the bitcoin community will be put on notice: as long as they organize their business in a particular way they can avoid the law.\"\nBut he added that \"people who are engaged in illegal activities will continue to do what they are going to do because they are criminals.\"", - "json_metadata": "{\"tags\":[\"bitcoin\",\"world\",\"country\",\"steemit\"],\"image\":[\"http://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\"]}", - "last_update": "2016-08-06T21:50:00", - "created": "2016-08-06T21:50:00", - "active": "2016-08-06T21:50:51", - "last_payout": "2016-09-06T09:52:18", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 1937, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 5, - "root_author": "a11at", - "root_permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] -} \ No newline at end of file +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-15T05:28:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-m3001", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hi, I'm A.M for now, I'm in my mid-20s and want to share my story with working and facing this thing called life after I watched a lot of YouTubers like Thomas James \"TomSka\" David Brown \u201cboyinaband\u201d and many others who have very openly shared their hardships, they have inspired me to write this\u2026.. Whatever this is.\nI don't consider myself a good writer so bare with me here.\nTo try to keep this post organized and make sense I'll highlight the point I want to talk about and tell the relevant part of my story, you can connect the pieces all together at the end.\n\n**First how am I?** \nI grow up in the countryside I went to normal school when I was yang, because I was the quiet introvert and wasn't from the town I was in I got bullied a lot for most of my time at school, I got through school time knowing just two friends, I was OK with it.\nI genuinely lost interest in school when I was in the ninth grade It seemed more like a memory test than a way of learning so I started looking for ways to make money, \"why waste time learning things irrelevant in real life if I can make money now\" my naive 16 years old self said, don't get me wrong I didn't think I was done with learning I just wanted to learn in my own way, and I didn't stop school, now I'm in part time Business school, so back then I started looking for any way to make money in the last 5 year I tried: working in sales for over 2 years, selling products online, becoming instructor online, worked as SEO & social media consultant, tried starting my own business for 4 times, and for the last year and half I taught myself how to program and how to use Unity game engine and now I'm working on my first game, I can easily and proudly say that I didn't succeed at any of what I did so far, but I've learned a lot every time and I would do it all over again if I had the chance.\nThe process of picking myself up every single freaking time was a living hell and I got desperate many times.\nbecause I saw a lot of people feeling relevant to what David said in his video I want to share how I managed to keep my sanity and my opinion about some point he brought in his video.\n\n\n**Not thinking your work is good enough:**\nIs that really a bad thing? not being satisfied with what you just accomplished is a sign that you always look forward to what you still can do.\nI remember after I published my first course on Udemy I got invited to a hangout and I went for it I thought I'll give myself some slack, while I was there someone shouted out \"this guy here just published his first course let all give him a clap shall we\" for some reason he thought that was a good idea, I don't think I can blame him his intentions were good, I never tried to put a smile as hard as I did that moment I guess I just didn't want to look like a selfish prick, but the truth that I wasn't happy about what I accomplished I was thinking about my bad English poor structure of the course and was I being a sellout for trying to sell my knowledge? halfway of creating the course, I was already thinking about 5 other things I wanted to do next.\nI think there's nothing wrong about not being satisfied with what you finish, I think It's a good sign of an ambitious creator.\nWhen you first make the decision to accomplish something It looks like that godly thing that you think It would feel good to have or do, but when you start turning that big sexy thing to a small to-do list somewhere the appeal you had to that thing will disappear to a certain point, it's not that godly sexy thing you thought about before it's becoming a part of your routine now you know the process of doing that thing It's not a mystery anymore.\nI think that's why they say: \"It's about the journey, not the destination\".\n\n\n**Not taking care of yourself:**\nIt's hard to keep taking care of yourself to others people standards, whether it's about looking ripped putting makeup or buying the latest clothes, instead find your own save point and move forward from there if you feel the need to.\nWhen I was working in seals I had to look my best most of the time's which was exhausting more than the work itself and what made it worst is that some coworkers starting hinting that I need to start working out to look sharper and more confident.\nBecause I was desperate for results from my work I started going to the gym and I got stuck at joining for a month or two then giving up for half a year couple of times, every time I stopped going to the gym I over beat myself saying that I need this for my work, I need more money to do a lot of things, if this work didn't go well what else Am I going to do, eventually I usually took it out on food, I don't even want to start thinking what would have happened to me if my body was able to store fat.\nTrying to take care of yourself to others standards can be very exhausting, I felt down because I was putting so much effort in things I don't really care about to get others approval, I genuinely don't care about having a ripped body, it would look cool sure but I'm not willing to put all that effort into health and looks at least for now, who knows maybe in the future things will be better and I'll be willing to put the effort necessary to have 6 pack abs (wink wink ladies).\nNowadays I eat better than I used to, I still eat some junk food but things are much much better than they were 2 years ago, when I fell down I still go buy and drink a liter of Pepsi but at some point that was my morning coffee, as for my looks I cut my hair very short so I would have one less thing to worry about in the morning, I shave my beard once every couple of weeks I change my cloth every two or three days even if I didn't go out.\nThe point is I take care of myself for my own sack, It was much worse before and I'll always keep working to improve pit by pit.\nIt's about building habits not getting motivated for a couple of weeks then beating yourself for not being able to keep up.\n\n\n**Not mastering one skill:**\nI worked in sales, instructed online, worked as SEO and social media consultant, self taught myself how to program and make games but I don\u2019t think I\u2019m the right person to talk about this, all I\u2019m saying that if you didn\u2019t find that one true call that is right for you, you might be a \u201cmultipotentialite\u201d if you want to know what exactly does this mean I urge you to watch Emilie talk at TedX\nhttps://www.youtube.com/watch?v=QJORi5VO1F8\nAnd check the blog too if you want to know more \nhttp://puttylike.com/\n\n**Everything happens for a reason........ or does it?**\nWhen I was young I was fortunate to know a good old religious man, I don\u2019t know about your perspective about religions but hear me out this isn\u2019t a sermon, I still remember when he tried to teach me that everything happens for a reason I was like \u201cWHAT\u2026\u2026. Oh really, then what is the reason for this and this and that\u201d my question didn\u2019t stop and I wasn\u2019t asking nicely either yet, somehow he was calm about it like some kind of monk, I don\u2019t know if I ruined his day or not but I feel bad for taking the world misery out on him that day, he was just a simple man who was doing what he think is good for others, his intentions were good but unfortunately for him I wasn\u2019t a simple person, I overthink everything and everyone, it\u2019s my blessing and my curse, later I told my family about him and I was surprised that they knew him, apparently everyone knows each other in the countryside, they told me about what he was facing lately personally, financially, and emotionally, I didn\u2019t believe that someone who is facing all that isn\u2019t depressed or angry and even trying to do good for others at least by his believes, I wanted to know more about him he got my interest, I wanted to know if he\u2019s an imposter who is just putting a good face or not because a part of me didn\u2019t believe how can he be that good, I kept asking about him from time to time and sometimes I even went to his \u201clessons\u201d, eventually I went to face him with what I know about him like a detective facing a criminal, the crime of being that simple yet trying to be better than me, It\u2019s pathetic I know It\u2019s just how my brain works sometimes, because I used to take pride of being logical about everything and not believing in anything without questioning it, it bothered me how can he be at peace with his life and I\u2019m not even that he\u2019s facing a lot more than I\u2019m, I faced him and told him everything then asked how can you be this calm about everything that is happening in your life, he had a faint smile and said \u201cI don\u2019t know the reason for everything that is happening right now but everything happens for a reason\u201d I remember holding my fist hard and walking away, maybe I was holding my fist trying not to hit him for not being realistic like me or probably not to beat myself for not being half the man that he was.\nI don\u2019t know about your perspective about religions and I\u2019m not here to tell you about mine but I respect that some religions teach that everything happens for a reason, is it the truth? Does everything happens for a reason? I don\u2019t know, I don\u2019t think that is even the point, It\u2019s silly to even get in an argument about this because no one can be sure about it, it\u2019s simply just a belief, it\u2019s simply teach you to not overthink about the reasons for everything around you, just learn from it if you can and focus on what you can do, it\u2019s kind of funny for me to tell you not to overthink about somethings because I\u2019m sure my 19 year old me would punch me right in the face, but it\u2019s just too draining and exhausting to try to find a reason for every bad thing that have happened to me or to others.\nIn the last three years two of my best friends died, the first one I knew for about nine years and the other one for around five, both killed, both in a way they didn\u2019t deserve to, each time I had to force myself to focus on the 0.0000001% full part of the cup or else I would have lose my sanity.\nI would hate to think what would be my thought process if someone tried to sell me religion like a product, some of them would be like \u201cHi son, you should follow my beliefs because I\u2019m 100% sure that I\u2019m right and everybody else is wrong and if you don\u2019t, well you\u2019re FU**ED\u201d that would have disfigured some of the beliefs that helped me get better.\nControlling your stream of thoughts will be the hardest thing you\u2019ll ever have to do in your life, but if mastered it you\u2019ll become unstoppable.\n\n\nI\u2019ve been getting into the game industry for around year and half now, I don\u2019t have any experiance in the field but I\u2019ve other experiences that many don\u2019t, working in sales made me learn a lot about people's motivations and incentives, I saw a lot of people jump to make purchase while other chicken out last minute, you don\u2019t get to learn about this in a book or an NLP course, you only get to learn this experience by working in sales first hand, working as an SEO and social media consultant made me care about the little details like posting in the right social medias that is more relevant to your audience, more isn\u2019t always better, choosing the right words colors and timing for best result, sometimes modifying your content for a better marketing or not going into a certain niche even if there\u2019s an audience for it because it doesn\u2019t suit your brand, teaching online made me learn that the selling point isn\u2019t the end goal, helping and mentoring students even after they have purchased the course was way more important than I thought, the feedback I got about the course was crucial to take the course to the next level and some student even helped me with some marketing.\nIf you know anything about the mobile game industry you can see how these experiences can be helpful, I can imagine the kind of journey I want to create for the player because I can build the motivations and incentives I want for him, while I\u2019m building the player journey I\u2019ll always keep in mind to put the monetization and ads the right way so all of them can work seamlessly together for a better player experience, and taking care of existing players and community will always be a priority, I wasn\u2019t happy and cheerful when I had to learn these experiences the hard way, I thought I was just failing, I even remember crying myself to sleep every time I decided to pull the plug on something I was working on, but eventually It worked out somehow I think.\n\u201cyou can't connect the dots looking forward, you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something - your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life\u201d.\nSteve Jobs\n\n\nI want to share some of the tricks I used that helped my in general to get my life together:\n\n**Music**\nlisten to cheerful music, even if it might not be exactly what you listen to usually but try them for a while, my favorite type or music is Rock and Metal it\u2019s loud and make me feel empowered but sometimes it's not what I need to change my mood so I started listening to electro music mostly Drum & bass, I didn\u2019t like it at first, I\u2019m human I don\u2019t like to change, but forcing myself to listen to it for while change my perspective about it and I started listening to it while I\u2019m working, and it worked.\n\n\n**habits not motivation**\nWe\u2019re slaves to our habits, it\u2019s exhausting to do something that\u2019s you\u2019re not used to for quite a while, so invest your effort and time to build your habits pit by pit no matter how slow it will take, measure your progress and celebrate your success no matter how small they\u2019re, it\u2019ll make all the difference in your life in the long term.\n\n**work in a group**\nNo matter how introverted person you think you\u2019re, you\u2019re still human at the end of day and you need your dose of human interaction so try to work in group if you can, if you don\u2019t have that luxury (like me) work out side from time to time, library, coffee shop, parks all works, changing your surrounding and environment can change your mood, you can try changing your room\\office decor every couple of weeks too.\n\n**warm-blooded pet**\nGet a warm-blooded pet it helps, I tried fish and turtles but didn\u2019t really work for me they just stared at me with their empty eyes, I have a cat for two year now and It helped, maybe it\u2019s having the sense of that there is a creature that needs you to look after him, it\u2019s helped me not to feel completely unworthy in some bad day.\n\n\nFinally I hope this help you in any way it can, and hope it will find its way to all who needs it.", + "cashout_time": "1969-12-31T23:59:59", + "category": "story", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T04:53:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 811667, + "json_metadata": "{\"tags\":[\"story\",\"philosophy\",\"life\",\"psychology\",\"secret-writer\"],\"links\":[\"https://www.youtube.com/watch?v=QJORi5VO1F8\"]}", + "last_payout": "2016-09-14T16:58:03", + "last_update": "2016-08-15T05:28:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "how-i-managed-depression-and-work", + "reward_weight": 10000, + "root_author": "a-m3001", + "root_permlink": "how-i-managed-depression-and-work", + "title": "How I managed depression and work", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-07T21:34:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-man", + "author_rewards": 0, + "beneficiaries": [], + "body": "Trying to repost to FB", + "cashout_time": "1969-12-31T23:59:59", + "category": "homeschooling", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-07T21:34:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 670168, + "json_metadata": "{\"tags\":[\"homeschooling\"]}", + "last_payout": "2016-09-07T09:52:42", + "last_update": "2016-08-07T21:34:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "jamiecrypto", + "parent_permlink": "raising-leaders-instead-of-rulers", + "percent_hbd": 10000, + "permlink": "re-jamiecrypto-raising-leaders-instead-of-rulers-20160807t213425757z", + "reward_weight": 10000, + "root_author": "jamiecrypto", + "root_permlink": "raising-leaders-instead-of-rulers", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T21:34:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "Finally someone is saying it out loud. thank you!!", + "cashout_time": "1969-12-31T23:59:59", + "category": "life", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-30T19:37:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 496078, + "json_metadata": "{\"tags\":[\"life\"]}", + "last_payout": "2016-08-30T10:16:39", + "last_update": "2016-07-30T19:38:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "agent", + "parent_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "percent_hbd": 10000, + "permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", + "reward_weight": 10000, + "root_author": "agent", + "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T21:01:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "add katie-lynn boulard on FB, she's my friend and she's currently doing an exchange in bangkok. She's really sweet and she said you can come to hers for the evening if you want to have some company. she only has a room so no bed for you :/ but at least something, I'm sure she can give you a meal and just some company. :))", + "cashout_time": "1969-12-31T23:59:59", + "category": "travel", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-13T20:34:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 100405, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "2016-08-25T12:51:45", + "last_update": "2016-07-13T20:34:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 20, + "parent_author": "ashleybr", + "parent_permlink": "test", + "percent_hbd": 10000, + "permlink": "re-ashleybr-test-20160713t203411015z", + "reward_weight": 10000, + "root_author": "ashleybr", + "root_permlink": "test", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T05:09:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\n\nAI Revolution 101\nOur last invention, greatest nightmare, or pathway to utopia?\nAbout\nThis essay, originally published in eight short parts, aims to condense the current knowledge on Artificial Intelligence. It explores the state of AI development, overviews its challenges and dangers, features work by the most significant scientists, and describes the main predictions of possible AI outcomes. This project is an adaptation and major shortening of the two\u2013part essay AI Revolution by Tim Urban of Wait But Why. I shortened it by a factor of 3, recreated all images, and tweaked it a bit. Read more on why/how I wrote it here.\nIntroduction\nAssuming that human scientific activity continues without major disruptions, artificial intelligence may become either the most positive transformation of our history or, as many fear, our most dangerous invention of all. AI research is on a steady path to develop a computer that has cognitive abilities equal to the human brain, most likely within three decades (timeline in chapter 5). From what most AI scientists predict, this invention may enable very rapid improvements (called fast take-off), toward something much more powerful\u200a\u2014\u200aArtificial Super Intelligence\u200a\u2014\u200aan entity smarter than all of humanity combined (more on ASI in chapter 3). We are not talking about some imaginary future. The first level of AI development is gradually appearing in the technology we use everyday (newest AI advancements in chapter 2). With every coming year these advancements will accelerate and the technology will become more complex, addictive, and ubiquitous. We will continue to outsource more and more kinds of mental work to computers, disrupting every part of our reality: the way we organize ourselves and our work, form communities, and experience the world.\nExponential Growth\nThe Guiding Principle Behind Technological Progress\nTo more intuitively grasp the guiding principles of AI revolution, let\u2019s first step away from scientific research. Let me invite you to take part in a story. Imagine that you\u2019ve received a time machine and been given a quest to bring somebody from the past. The goal is to shock them by showing them the technological and cultural advancements of our time, to such a degree that this person would perform SAFD (Spinning Around From Disbelief).\n\nSo you wonder which era should you time-travel to, and decide to hop back around 200 years. You get to the early 1800s, retrieve a guy and bring him back to 2016. You \u201c\u2026walk him around and watch him react to everything. It\u2019s impossible for us to understand what it would be like for him to see shiny capsules racing by on a highway, talk to people who had been on the other side of the ocean earlier in the day, watch sports that were being played 1,000 miles away, hear a musical performance that happened 50 years ago, and play with \u2026[a] magical wizard rectangle that he could use to capture a real-life image or record a living moment, generate a map with a paranormal moving blue dot that shows him where he is, look at someone\u2019s face and chat with them even though they\u2019re on the other side of the country, and worlds of other inconceivable sorcery.\u201d\u00b9 It doesn\u2019t take much. After two minutes he is SAFDing.\nNow, both of you want to try the same thing, see somebody Spinning Around From Disbelief, but in your new friend\u2019s era. Since 200 years worked, you jump back to the 1600s and bring a guy to the 1800s. He\u2019s certainly genuinely interested in what he sees. However, you feel it with confidence\u200a\u2014\u200aSAFD will never happen to him. You feel that you need to jump back again, but somewhere radically further. You settle on rewinding the clock 15,000 years, to the times \u201c\u2026before the First Agricultural Revolution gave rise to the first cities and the concept of civilisations.\u201d\u00b2 You bring someone from the hunter-gatherer world and show him \u201c\u2026the vast human empires of 1750 with their towering churches, their ocean-crossing ships, their concept of being \u201cinside,\u201d and their enormous mountain of collective, accumulated human knowledge and discovery\u201d\u00b3\u200a\u2014\u200ain forms of books. It doesn\u2019t take much. He is SAFDing in the first two minutes.\nNow there are three of you, enormously excited to do it again. You know that it doesn\u2019t make sense to go back another 15,000, 30,000 or 45,000 years. You have to jump back, again, radically further. So you pick up a guy from 100,000 years ago and you you walk with him into large tribes with organized, sophisticated social hierarchies. He encounters a variety of hunting weapons, sophisticated tools, sees fire and for the first time experiences language in the form of signs and sounds. You get the idea, it has to be immensely mind-blowing. He is SAFDing after two minutes.\nSo what happened? Why did the last guy had to hop \u2192 100,000 years, the next one \u2192 15,000 years, and the guy who was hopping to our times only \u2192 200 years?\n\nhttps://cdn-images-1.medium.com/max/2000/1*Wbd0td3DqD3pJo7_YHjkbQ.gif\n\n\u201cThis happens because more advanced societies have the ability to progress at a faster rate than less advanced societies\u200a\u2014\u200abecause they\u2019re more advanced. [1800s] humanity knew more and had better technology\u2026\u201d\u2074, so it\u2019s no wonder they could make further advancements than humanity from 15,000 years ago. The time to achieve SAFD shrank from ~100,000 years to ~200 years and if we look into the future it will rapidly shrink even further. Ray Kurzweil, AI expert and scientist, predicts that a \u201c\u202620th century\u2019s worth of progress happened between 2000 and 2014 and that another 20th century\u2019s worth of progress will happen by 2021, in only seven years\u2075\u2026A couple decades later, he believes a 20th century\u2019s worth of progress will happen multiple times in the same year, and even later, in less than one month\u2076\u2026Kurzweil believes that the 21st century will achieve 1,000 times the progress of the 20th century.\u201d\u2077\n\u201cLogic also suggests that if the most advanced species on a planet keeps making larger and larger leaps forward at an ever-faster rate, at some point, they\u2019ll make a leap so great that it completely alters life as they know it and the perception they have of what it means to be a human. Kind of like how evolution kept making great leaps toward intelligence until finally it made such a large leap to the human being that it completely altered what it meant for any creature to live on planet Earth. And if you spend some time reading about what\u2019s going on today in science and technology, you start to see a lot of signs quietly hinting that life as we currently know it cannot withstand the leap that\u2019s coming next.\u201d\u2078\nThe Road to Artificial General Intelligence\nBuilding a Computer as Smart as Humans\nArtificial Intelligence, or AI, is a broad term for the advancement of intelligence in computers. Despite varied opinions on this topic, most experts agree that there are three categories, or calibers, of AI development. They are:\nANI: Artificial Narrow Intelligence\n1st intelligence caliber. \u201cAI that specializes in one area. There\u2019s AI that can beat the world chess champion in chess, but that\u2019s the only thing it does.\u201d\u2079\nAGI: Artificial General Intelligence\n2nd intelligence caliber. AI that reaches and then passes the intelligence level of a human, meaning it has the ability to \u201creason, plan, solve problems, think abstractly, comprehend complex ideas, learn quickly, and learn from experience.\u201d\u00b9\u2070\nASI: Artificial Super Intelligence\n3rd intelligence caliber. AI that achieves a level of intelligence smarter than all of humanity combined\u200a\u2014\u200a\u201cranging from just a little smarter \u2026 to one trillion times smarter.\u201d\u00b9\u00b9\n\nhttps://cdn-images-1.medium.com/max/800/1*5AkzXZJoVXRrGNSOO8ZojQ.gif\n\nWhere are we currently?\n\u201cAs of now, humans have conquered the lowest caliber of AI\u200a\u2014\u200aANI\u200a\u2014\u200ain many ways, and it\u2019s everywhere:\u201d\u00b9\u00b2\n\u201cCars are full of ANI systems, from the computer that figures out when the anti-lock brakes kick in, to the computer that tunes the parameters of the fuel injection systems.\u201d\u00b9\u00b3\n\u201cGoogle search is one large ANI brain with incredibly sophisticated methods for ranking pages and figuring out what to show you in particular. Same goes for Facebook\u2019s Newsfeed.\u201d\u00b9\u2074\nEmail spam filters \u201cstart off loaded with intelligence about how to figure out what\u2019s spam and what\u2019s not, and then it learns and tailors its intelligence to your particular preferences.\u201d\u00b9\u2075\nPassenger planes are flown almost entirely by ANI, without the help of humans.\n\u201cGoogle\u2019s self-driving car, which is being tested now, will contain robust ANI systems that allow it to perceive and react to the world around it.\u201d\u00b9\u2076\n\u201cYour phone is a little ANI factory \u2026 you navigate using your map app, receive tailored music recommendations from Pandora, check tomorrow\u2019s weather, talk to Siri.\u201d\u00b9\u2077\n\u201cThe world\u2019s best Checkers, Chess, Scrabble, Backgammon, and Othello players are now all ANI systems.\u201d\u00b9\u2078\n\u201cSophisticated ANI systems are widely used in sectors and industries like military, manufacturing, and finance (algorithmic high-frequency AI traders account for more than half of equity shares traded on US markets\u00b9\u2079).\u201d\u00b2\u2070\n\u201cANI systems as they are now aren\u2019t especially scary. At worst, a glitchy or badly-programed ANI can cause an isolated catastrophe like\u201d\u00b2\u00b9 a plane crash, a nuclear power plant malfunction, or \u201ca financial markets disaster (like the 2010 Flash Crash when an ANI program reacted the wrong way to an unexpected situation and caused the stock market to briefly plummet, taking $1 trillion of market value with it, only part of which was recovered when the mistake was corrected) \u2026 But while ANI doesn\u2019t have the capability to cause an existential threat, we should see this increasingly large and complex ecosystem of relatively-harmless ANI as a precursor of the world-altering hurricane that\u2019s on the way. Each new ANI innovation quietly adds another brick onto the road to AGI and ASI.\u201d\u00b2\u00b2\n\nhttps://cdn-images-1.medium.com/max/2000/1*Ia8wUuZPxpUNzvUjNRsxpA.gif\n\nWhat\u2019s Next? Challenges Behind Reaching AGI\n\u201cNothing will make you appreciate human intelligence like learning about how unbelievably challenging it is to try to create a computer as smart as we are \u2026 Build a computer that can multiply ten-digit numbers in a split second\u200a\u2014\u200aincredibly easy. Build one that can look at a dog and answer whether it\u2019s a dog or a cat\u200a\u2014\u200aspectacularly difficult. Make AI that can beat any human in chess? Done. Make one that can read a paragraph from a six-year-old\u2019s picture book and not just recognise the words but understand the meaning of them? Google is currently spending billions of dollars trying to do it.\u201d\u00b2\u00b3\nWhy are \u201chard things\u200a\u2014\u200alike calculus, financial market strategy, and language translation \u2026 mind-numbingly easy for a computer, while easy things\u200a\u2014\u200alike vision, motion, movement, and perception\u200a\u2014\u200aare insanely hard for it\u201d\u00b2\u2074?\n\u201cThings that seem easy to us are actually unbelievably complicated. They only seem easy because those skills have been optimized in us (and most animals) by hundreds of million years of animal evolution. When you reach your hand up toward an object, the muscles, tendons, and bones in your shoulder, elbow, and wrist instantly perform a long series of physics operations, in conjunction with your eyes, to allow you to move your hand in a straight line through three dimensions \u2026 On the other hand, multiplying big numbers or playing chess are new activities for biological creatures and we haven\u2019t had any time to evolve a proficiency at them, so a computer doesn\u2019t need to work too hard to beat us.\u201d\u00b2\u2075\n\nhttps://cdn-images-1.medium.com/max/1200/0*E-qdF22nxvOrVPxP.\n\nWhen you look at picture A, \u201cyou and a computer both can figure out that it\u2019s a rectangle with two distinct shades, alternating. Tied so far.\u201d\u00b2\u2076\nPicture B. \u201cYou have no problem giving a full description of the various opaque and translucent cylinders, slats, and 3-D corners, but the computer would fail miserably. It would describe what it sees\u200a\u2014\u200aa variety of two-dimensional shapes in several different shades\u200a\u2014\u200awhich is actually what\u2019s there.\u201d\u00b2\u2077 \u201cYour brain is doing a ton of fancy shit to interpret the implied depth, shade-mixing, and room lighting the picture is trying to portray.\u201d\u00b2\u2078\nLooking at picture C, \u201ca computer sees a two-dimensional white, black, and gray collage, while you easily see what it really is\u201d\u00b2\u2079\u200a\u2014\u200aa photo of a girl and a dog standing on a rocky shore.\n\u201cAnd everything we just mentioned is still only taking in visual information and processing it. To be human-level intelligent, a computer would have to understand things like the difference between subtle facial expressions, the distinction between being pleased, relieved and content\u201d\u00b3\u2070.\nHow will computers reach even higher abilities like complex reasoning, interpreting data, and associating ideas from separate fields (domain-general knowledge)?\n\u201cBuilding skyscrapers, putting humans in space, figuring out the details of how the Big Bang went down\u200a\u2014\u200aall far easier than understanding our own brain or how to make something as cool as it. As of now, the human brain is the most complex object in the known universe.\u201d\u00b3\u00b9\nBuilding Hardware\nIf an artificial intelligence is going to be as intelligent as the human brain, one crucial thing has to happen\u200a\u2014\u200athe AI \u201cneeds to equal the brain\u2019s raw computing capacity. One way to express this capacity is in the total calculations per second the brain could manage.\u201d\u00b3\u00b2\n\nThe challenge is that currently only a few of the brain\u2019s regions are precisely measured. However, Ray Kurzweil, has developed a method for estimating the total cps of the human brain. He arrived at this estimate by taking the cps from one brain region and multiplying it proportionally to the weight of that region, compared to the weight of the whole brain. \u201cHe did this a bunch of times with various professional estimates of different regions, and the total always arrived in the same ballpark\u200a\u2014\u200aaround 10\u00b9\u2076, or 10 quadrillion cps.\u201d\u00b3\u00b3\n\u201cCurrently, the world\u2019s fastest supercomputer, China\u2019s Tianhe-2, has actually beaten that number, clocking in at about 34 quadrillion cps.\u201d\u00b3\u2074 But Tianhe-2 is also monstrous, \u201ctaking up 720 square meters of space, using 24 megawatts of power (the brain runs on just 20 watts), and costing $390 million to build. Not especially applicable to wide usage, or even most commercial or industrial usage yet.\u201d\u00b3\u2075\n\u201cKurzweil suggests that we think about the state of computers by looking at how many cps you can buy for $1,000. When that number reaches human-level\u200a\u2014\u200a10 quadrillion cps\u200a\u2014\u200athen that\u2019ll mean AGI could become a very real part of life.\u201d\u00b3\u2076\nCurrently we\u2019re only at about 10\u00b9\u2070 (10 trillion) cps per $1,000. However, historically reliable Moore\u2019s Law states \u201cthat the world\u2019s maximum computing power doubles approximately every two years, meaning computer hardware advancement, like general human advancement through history, grows exponentially\u00b3\u2077 \u2026 right on pace with this graph\u2019s predicted trajectory:\u201d\u00b3\u2078\n\nhttps://cdn-images-1.medium.com/max/800/1*4qcqwbsWjvWh-BWPnAsp6g.gif\n\nThis dynamic \u201cputs us right on pace to get to an affordable computer by 2025 that rivals the power of the brain \u2026 But raw computational power alone doesn\u2019t make a computer generally intelligent\u200a\u2014\u200athe next question is, how do we bring human-level intelligence to all that power?\u201d\u00b3\u2079\nBuilding Software\nThe hardest part of creating AGI is learning how to develop its software. \u201cThe truth is, no one really knows how to make it smart\u200a\u2014\u200awe\u2019re still debating how to make a computer human-level intelligent and capable of knowing what a dog and a weird-written B and a mediocre movie is.\u201d\u2074\u2070 But there are a couple of strategies. These are the three most common:\nCopy how the brain works.\nThe most straight-forward idea is to plagiarize the brain, and build the computer\u2019s architecture with close resemblance to how a brain is structured. One example \u201cis the artificial neural network. It starts out as a network of transistor \u2018neurons,\u2019 connected to each other with inputs and outputs, and it knows nothing\u200a\u2014\u200alike an infant brain. The way it \u2018learns\u2019 is it tries to do a task, say handwriting recognition, and at first, its neural firings and subsequent guesses at deciphering each letter will be completely random. But when it\u2019s told it got something right, the transistor connections in the firing pathways that happened to create that answer are strengthened; when it\u2019s told it was wrong, those pathways\u2019 connections are weakened. After a lot of this trial and feedback, the network has, by itself, formed smart neural pathways and the machine has become optimized for the task.\u201d\u2074\u00b9\nThe second, more radical approach to plagiarism is whole brain emulation. Scientists take a real brain, cut it into a large number of tiny slices to look at the neural connections and replicate them in a computer as software. If that method is ever successful, we will have \u201ca computer officially capable of everything the brain is capable of\u200a\u2014\u200ait would just need to learn and gather information \u2026 How far are we from achieving whole brain emulation? Well so far, we\u2019ve just recently been able to emulate a 1mm-long flatworm brain, which consists of just 302 total neurons.\u201d\u2074\u00b2 To put this into perspective, the human brain consists of 86 billion neurons linked by trillions of synapses.\n2. Introduce evolution to computers.\n\u201cThe fact is, even if we can emulate a brain, that might be like trying to build an airplane by copying a bird\u2019s wing-flapping motions\u200a\u2014\u200aoften, machines are best designed using a fresh, machine-oriented approach, not by mimicking biology exactly.\u201d\u2074\u00b3 If the brain is just too complex for us to digitally replicate, we could try to emulate evolution instead. This uses a process called genetic algorithms. \u201cA group of computers would try to do tasks, and the most successful ones would be bred with each other by having half of each of their programming merged together into a new computer. The less successful ones would be eliminated.\u201d\u2074\u2074 Speed and a goal-oriented approach are the advantages that artificial evolution has over biological evolution. \u201cOver many, many iterations, this natural selection process would produce better and better computers. The challenge would be creating an automated evaluation and breeding cycle so this evolution process could run on its own.\u201d\u2074\u2075\n3. \u201cMake this whole thing the computer\u2019s problem, not ours.\u201d\u2074\u2076\nThe last concept is the simplest, but probably the scariest of them all. \u201cWe\u2019d build a computer whose two major skills would be doing research on AI and coding changes into itself\u200a\u2014\u200aallowing it to not only learn but to improve its own architecture. We\u2019d teach computers to be computer scientists so they could bootstrap their own development.\u201d\u2074\u2077 This is the likeliest way to get AGI soon that we know of.\nAll these software advances may seem slow or a little bit intangible, but as it is with the sciences, one minor innovation can suddenly accelerate the pace of developments. Kind of like the aftermath of the Copernican revolution\u200a\u2014\u200athe discovery that suddenly made all the complicated mathematics of the planets\u2019 trajectories much easier to calculate, which enabled a multitude of other innovations. Also, the \u201cexponential growth is intense and what seems like a snail\u2019s pace of advancement can quickly race upwards.\u201d\u2074\u2078\n\nhttps://cdn-images-1.medium.com/max/1200/1*BHwAlKJFYwKYEzZlitNTvQ.gif\n\nThe Road to Artificial Super Intelligence\nAn Entity Smarter than all of Humanity Combined\nIt\u2019s very real that at some point we will achieve AGI: software that has achieved human-level, or beyond human-level, intelligence. Does this mean that at that very moment the computers will be equally capable as us? Actually, not at all\u200a\u2014\u200acomputers will be way more efficient. Because of the fact that they are electronic, they will have following advantages:\nSpeed. \u201cThe brain\u2019s neurons max out at around 200 Hz, while today\u2019s microprocessors \u2026 run at 2 GHz, or 10 million times faster.\u201d\u2075\u00b9\nMemory. Forgetting or confusing things is much harder in an artificial world. Computers can memorize more things in one second than a human can in ten years. A computer\u2019s memory is also more precise and has a much greater storage capacity.\nPerformance. \u201cComputer transistors are more accurate than biological neurons, and they\u2019re less likely to deteriorate (and can be repaired or replaced if they do). Human brains also get fatigued easily, while computers can run nonstop, at peak performance, 24/7.\u201d\u2075\u00b2\nCollective capability. Group work is ridiculously challenging because of time-consuming communication and complex social hierarchies. The bigger the group gets, the slower the output of each person becomes. AI, on the other hand, isn\u2019t biologically constrained to one body, won\u2019t have human cooperation problems, and is able to synchronize and update its own operating system.\nIntelligence Explosion\nWe need to realize that AI \u201cwouldn\u2019t see \u2018human-level intelligence\u2019 as some important milestone\u200a\u2014\u200ait\u2019s only a relevant marker from our point of view\u200a\u2014\u200aand wouldn\u2019t have any reason to \u2018stop\u2019 at our level. And given the advantages over us that even human intelligence-equivalent AGI would have, it\u2019s pretty obvious that it would only hit human intelligence for a brief instant before racing onwards to the realm of superior-to-human intelligence.\u201d\u2075\u00b3\nThe true distinction between humans and ASI wouldn\u2019t be its advantage in intelligence speed, but \u201cin intelligence quality\u200a\u2014\u200awhich is something completely different. What makes humans so much more intellectually capable than chimps isn\u2019t a difference in thinking speed\u200a\u2014\u200ait\u2019s that human brains contain a number of sophisticated cognitive modules that enable things like complex linguistic representations or longterm planning or abstract reasoning, that chimps\u2019 brains do not have. Speeding up a chimp\u2019s brain by thousands of times wouldn\u2019t bring him to our level\u200a\u2014\u200aeven with a decade\u2019s time of learning, he wouldn\u2019t be able to figure out how to \u2026 \u201d\u2075\u2074 assemble a semi-complicated Lego model by looking at its manual\u200a\u2014\u200asomething a young human could achieve in a few minutes. \u201cThere are worlds of human cognitive function a chimp will simply never be capable of, no matter how much time he spends trying.\u201d\u2075\u2075\n\u201cAnd in the scheme of the biological intelligence range \u2026 the chimp-to-human quality intelligence gap is tiny.\u201d\u2075\u2076\n\nhttps://cdn-images-1.medium.com/max/800/1*vnVWATTAMCwfnJu_iZn2RQ.jpeg\n\nIn order to render how big a deal it would be to exist with something that has a higher quality of intelligence than us, we need to imagine AI on the intelligence staircase two steps above us\u200a\u2014\u200a\u201cits increased cognitive ability over us would be as vast as the chimp\u2013human gap \u2026 And like the chimp\u2019s incapacity to ever absorb \u2026\u201d\u2075\u2077 what kind of magic happens in the mechanism of a doorknob\u200a\u2014\u200a\u201cwe will never be able to even comprehend the things \u2026 [a machine of that intelligence] can do, even if the machine tried to explain them to us \u2026 And that\u2019s only two steps above us.\u201d\u2075\u2078\n\u201cA machine on the second-to-highest step on that staircase would be to us as we are to ants.\u201d\u2075\u2079 \u201cSuperintelligence of that magnitude is not something we can remotely grasp, any more than a bumblebee can wrap its head around Keynesian Economics. In our world, smart means a 130 IQ and stupid means an 85 IQ\u200a\u2014\u200awe don\u2019t have a word for an IQ of 12,952.\u201d\u2076\u2070\n\u201cBut the kind of superintelligence we\u2019re talking about today is something far beyond anything on this staircase. In an intelligence explosion\u200a\u2014\u200awhere the smarter a machine gets, the quicker it\u2019s able to increase its own intelligence\u200a\u2014\u200aa machine might take years to rise from \u2026 \u201d\u2076\u00b9 the intelligence of an ant to the intelligence of the average human, but it might take only another 40 days to become Einstein-smart. When that happens, \u201cit works to improve its intelligence, with an Einstein-level intellect, it has an easier time and can make bigger leaps. These leaps will make it much smarter than any human, allowing it to make even bigger leaps.\u201d\u2076\u00b2\nFrom then on, following the rule of exponential advancements and utilizing the speed and efficiency of electrical circuits, it may perhaps take only 20 minutes to jump another step, \u201cand by the time it\u2019s ten steps above us, it might be jumping up in four-step leaps every second that goes by. Which is why we need to realize that it\u2019s distinctly possible that very shortly after the big news story about the first machine reaching human-level AGI, we might be facing the reality of coexisting on the Earth with something that\u2019s here on the staircase (or maybe a million times higher):\u201d\u2076\u00b3\n\nhttps://cdn-images-1.medium.com/max/800/0*LdJxmWCjSdweUKvb.\n\n\u201cAnd since we just established that it\u2019s a hopeless activity to try to understand the power of a machine only two steps above us, let\u2019s very concretely state once and for all that there is no way to know what ASI will do or what the consequences will be for us. Anyone who pretends otherwise doesn\u2019t understand what superintelligence means.\u201d\u2076\u2074\n\u201cIf our meager brains were able to invent wifi, then something 100 or 1,000 or 1 billion times smarter than we are should have no problem controlling the positioning of each and every atom in the world in any way it likes, at any time\u200a\u2014\u200aeverything we consider magic, every power we imagine a supreme God to have will be as mundane an activity for the ASI as flipping on a light switch is for us.\u201d\u2076\u2075\n\u201cAs far as we\u2019re concerned, if an ASI comes into being, there is now an omnipotent God on Earth\u200a\u2014\u200aand the all-important question for us is: Will it be a good god?\u201d\u2076\u2076\nLet\u2019s start from the brighter side of the story.\nHow Can ASI Change our World?\nSpeculations on Two Revolutionary Technologies\nNanotechnology\nNanotechnology is an idea that comes up \u201cin almost everything you read about the future of AI.\u201d\u2076\u2077 It\u2019s the technology that works at the nano scale\u200a\u2014\u200afrom 1 to 100 nanometers. \u201cA nanometer is a millionth of a millimeter. 1 nm\u2013100 nm range encompasses viruses (100 nm accross), DNA (10 nm wide), and things as small as molecules like hemoglobin (5 nm) and medium molecules like glucose (1 nm). If/when we conquer nanotechnology, the next step will be the ability to manipulate individual atoms, which are only one order of magnitude smaller (~.1 nm).\u201d\u2076\u2078\nTo put this into perspective, imagine a very tall human standing on the earth, with a head that reaches the International Space Station (431 km/268 mi high). The giant is reaching down with his hand (30 km/19 mi across) to build \u201cobjects using materials between the size of a grain of sand [.25 mm] and an eyeball [2.5 cm].\u201d\u2076\u2079\n\nhttps://cdn-images-1.medium.com/max/1200/1*e9Ut3QT2F3tNh4h5U4rR8A.jpeg\n\n\u201cOnce we get nanotechnology down, we can use it to make tech devices, clothing, food, a variety of bio-related products\u200a\u2014\u200aartificial blood cells, tiny virus or cancer-cell destroyers, muscle tissue, etc.\u200a\u2014\u200aanything really. And in a world that uses nanotechnology, the cost of a material is no longer tied to its scarcity or the difficulty of its manufacturing process, but instead determined by how complicated its atomic structure is. In a nanotech world, a diamond might be cheaper than a pencil eraser.\u201d\u2077\u2070\nOne of the proposed methods of nanotech assembly is to make \u201cone that could self-replicate, and then let the reproduction process turn that one into two, those two then turn into four, four into eight, and in about a day, there\u2019d be a few trillion of them ready to go.\u201d\u2077\u00b9\nBut what if this process goes wrong or terrorists manage to get ahold of the technology? Let\u2019s imagine a scenario where nanobots \u201cwould be designed to consume any carbon-based material in order to feed the replication process, and unpleasantly, all life is carbon-based. The Earth\u2019s biomass contains about 1\u2070\u2074\u2075 carbon atoms. A nanobot would consist of about 1\u2070\u2076 carbon atoms, so it would take 1\u2070\u00b3\u2079 nanobots to consume all life on Earth, which would happen in 130 replications. \u2026 Scientists think a nanobot could replicate in about 100 seconds, meaning this simple mistake would inconveniently end all life on Earth in 3.5 hours.\u201d\u2077\u00b2\nWe are not yet capable of harnessing nanotechnology\u200a\u2014\u200afor good or for bad. \u201cAnd it\u2019s not clear if we\u2019re underestimating, or overestimating, how hard it will be to get there. But we don\u2019t seem to be that far away. Kurzweil predicts that we\u2019ll get there by the 2020s.\u2077\u00b3Governments know that nanotech could be an Earth-shaking development \u2026 The US, the EU, and Japan\u2077\u2074 have invested over a combined $5 billion so far\u201d\u2077\u2075\nImmortality\n\u201cBecause everyone has always died, we live under the assumption \u2026 that death is inevitable. We think of aging like time\u200a\u2014\u200aboth keep moving and there\u2019s nothing you can do to stop it.\u201d\u2077\u2076 For centuries, poets and philosophers have wondered if consciousness doesn\u2019t have to go the way of the body. W.B. Yeats describes us as \u201ca soul fastened to a dying animal.\u201d\u2077\u2077 Richard Feynman, Nobel awarded physicists, views death from a purely scientific standpoint:\n\u201cIt is one of the most remarkable things that in all of the biological sciences there is no clue as to the necessity of death. If you say we want to make perpetual motion, we have discovered enough laws as we studied physics to see that it is either absolutely impossible or else the laws are wrong. But there is nothing in biology yet found that indicates the inevitability of death. This suggests to me that it is not at all inevitable, and that it is only a matter of time before the biologists discover what it is that is causing us the trouble and that that terrible universal disease or temporariness of the human\u2019s body will be cured.\u201d\u2077\u2078\nTheory of great species attractors\nWhen we look at the history of biological life on earth, so far 99.9% of species have gone extinct. Nick Bostrom, Oxford professor and AI specialist, \u201ccalls extinction an attractor state\u200a\u2014\u200aa place species are \u2026 falling into and from which no species ever returns.\u201d\u2077\u2079\n\nhttps://cdn-images-1.medium.com/max/1200/0*o-MXeAYfUtWnOJKC.\n\n\u201cAnd while most AI scientists \u2026 acknowledge that ASI would have the ability to send humans to extinction, many also believe that if used beneficially, ASI\u2019s abilities could be used to bring individual humans, and the species as a whole, to a second attractor state\u200a\u2014\u200aspecies immortality.\u201d\u2078\u2070\n\nhttps://cdn-images-1.medium.com/max/1200/0*aYeNOSBxp4gieGwp.\n\n\u201cEvolution had no good reason to extend our lifespans any longer than they are now \u2026 From an evolutionary point of view, the whole human species can thrive with a 30+ year lifespan\u201d for each single human. It\u2019s long enough to reproduce and raise children \u2026 so there\u2019s no reason for mutations toward unusually long life being favored in the natural selection process.\u201d\u2078\u00b9Though, \u201cif you perfectly repaired or replaced a car\u2019s parts whenever one of them began to wear down, the car would run forever. The human body isn\u2019t any different\u200a\u2014\u200ajust far more complex \u2026 This seems absurd\u200a\u2014\u200abut the body is just a bunch of atoms\u2026\u201d\u2078\u00b2 making up organically programmed DNA, which it is theoretically possible to manipulate. And something as powerful as ASI could help us master genetic engineering.\nRay Kurzweil believes that \u201cartificial materials will be integrated into the body more and more \u2026 Organs could be replaced by super-advanced machine versions that would run forever and never fail.\u201d\u2078\u00b3 Red blood cells could be perfected by \u201cred blood cell nanobots, who could power their own movement, eliminating the need for a heart at all \u2026 Nanotech theorist Robert A. Freitas has already designed blood cell replacements that, if one day implemented in the body, would allow a human to sprint for 15 minutes without taking a breath \u2026 [Kurzweil] even gets to the brain and believes we\u2019ll enhance our mental activities to the point where humans will be able to think billions of times faster\u201d\u2078\u2074 by integrating electrical components and being able to access online data.\n\u201cEventually, Kurzweil believes humans will reach a point when they\u2019re entirely artificial, a time when we\u2019ll look back at biological material and think how unbelievably primitive primitive it was that humans were ever made of that\u201d\u2078\u2075and that humans aged, suffered from cancer, allowed random factors like microbes, diseases, accidents to harm us or make us disappear.\u201d\n\nhttps://cdn-images-1.medium.com/max/2000/1*NcWWmd677RVWQRpLsz5X9g.jpeg\n\nWhen Will The First Machine Become Superintelligent?\nPredictions from Top AI Experts\n\u201cHow long until the first machine reaches superintelligence? Not shockingly, opinions vary wildly, and this is a heated debate among scientists and thinkers. Many, like professor Vernor Vinge, scientist Ben Goertzel, Sun Microsystems co-founder Bill Joy, or, most famously, inventor and futurist Ray Kurzweil, agree with machine learning expert Jeremy Howard when he puts up this graph during a TED Talk\n\n\u201cThose people subscribe to the belief that this is happening soon\u200a\u2014\u200athat exponential growth is at work and machine learning, though only slowly creeping up on us now, will blow right past us within the next few decades.\n\u201cOthers, like Microsoft co-founder Paul Allen, research psychologist Gary Marcus, NYU computer scientist Ernest Davis, and tech entrepreneur Mitch Kapor, believe that thinkers like Kurzweil are vastly underestimating the magnitude of the challenge [and the transition will actually take much more time] \u2026\n\u201cThe Kurzweil camp would counter that the only underestimating that\u2019s happening is the underappreciation of exponential growth, and they\u2019d compare the doubters to those who looked at the slow-growing seedling of the internet in 1985 and argued that there was no way it would amount to anything impactful in the near future.\n\u201cThe doubters might argue back that the progress needed to make advancements in intelligence also grows exponentially harder with each subsequent step, which will cancel out the typical exponential nature of technological progress. And so on.\n\u201cA third camp, which includes Nick Bostrom, believes neither group has any ground to feel certain about the timeline and acknowledges both A) that this could absolutely happen in the near future and B) that there\u2019s no guarantee about that; it could also take a much longer time.\n\u201cStill others, like philosopher Hubert Dreyfus, believe all three of these groups are naive for believing that there is potential of ASI, arguing that it\u2019s more likely that it won\u2019t actually ever be achieved.\n\u201cSo what do you get when you put all of these opinions together?\u201d\u2078\u2076\nTimeline for Artificial General Intelligence\n\u201cIn 2013, Vincent C. M\u00fcller and Nick Bostrom conducted a survey that asked hundreds of AI experts \u2026 the following:\u201d\u2078\u2077\n\u201cFor the purposes of this question, assume that human scientific activity continues without major negative disruption. By what year would you see a (10% / 50% / 90%) probability for such Human-Level Machine Intelligence [or what we call AGI] to exist?\u201d\u2078\u2078\nThe survey \u201casked them to name an optimistic year (one in which they believe there\u2019s a 10% chance we\u2019ll have AGI), a realistic guess (a year they believe there\u2019s a 50% chance of AGI\u200a\u2014\u200ai.e. after that year they think it\u2019s more likely than not that we\u2019ll have AGI), and a safe guess (the earliest year by which they can say with 90% certainty we\u2019ll have AGI). Gathered together as one data set, here were the results:\nMedian optimistic year (10% likelihood) \u2192 2022\nMedian realistic year (50% likelihood) \u2192 2040\nMedian pessimistic year (90% likelihood) \u2192 2075\n\u201cSo the median participant thinks it\u2019s more likely than not that we\u2019ll have AGI 25 years from now. The 90% median answer of 2075 means that if you\u2019re a teenager right now, the median respondent, along with over half of the group of AI experts, is almost certain AGI will happen within your lifetime.\n\u201cA separate study, conducted recently by author James Barrat at Ben Goertzel\u2019s annual AGI Conference, did away with percentages and simply asked when participants thought AGI would be achieved\u200a\u2014\u200aby 2030, by 2050, by 2100, after 2100, or never. The results:\u2078\u2079\n42% of respondents \u2192 By 2030\n25% of respondents \u2192 By 2050\n20% of respondents \u2192 By 2100\n10% of respondents \u2192 After 2100\n2% of respondents \u2192 Never\n\u201cPretty similar to M\u00fcller and Bostrom\u2019s outcomes. In Barrat\u2019s survey, over two thirds of participants believe AGI will be here by 2050 and a little less than half predict AGI within the next 15 years. Also striking is that only 2% of those surveyed don\u2019t think AGI is part of our future.\u201d\u2079\u2070\n\nhttps://cdn-images-1.medium.com/max/2000/1*U8ueEMtG6-D5hie8rZJGtQ.jpeg\n\nTimeline for Artificial Super Intelligence\n\u201cM\u00fcller and Bostrom also asked the experts how likely they think it is that we\u2019ll reach ASI: A), within two years of reaching AGI (i.e. an almost-immediate intelligence explosion), and B), within 30 years.\u201d\u2079\u00b9 Respondents were asked to choose a probability for each option. Here are the results:\u2079\u00b2\nAGI\u2013ASI transition in 2 years \u2192 10% likelihood\nAGI\u2013ASI transition in 30 years \u2192 75% likelihood\n\u201cThe median answer put a rapid (2 year) AGI\u2013ASI transition at only a 10% likelihood, but a longer transition of 30 years or less at a 75% likelihood. We don\u2019t know from this data the length of this transition [AGI\u2013ASI] the median participant would have put at a 50% likelihood, but for ballpark purposes, based on the two answers above, let\u2019s estimate that they\u2019d have said 20 years.\n\u201cSo the median opinion\u200a\u2014\u200athe one right in the center of the world of AI experts\u200a\u2014\u200abelieves the most realistic guess for when we\u2019ll hit ASI \u2026 is [the 2040 prediction for AGI + our estimated prediction of a 20-year transition from AGI to ASI] = 2060.\n\nhttps://cdn-images-1.medium.com/max/2000/1*YY8e493ER4LNomQV-NyMYg.jpeg\n\n\u201cOf course, all of the above statistics are speculative, and they\u2019re only representative of the median opinion of the AI expert community, but it tells us that a large portion of the people who know the most about this topic would agree that 2060 is a very reasonable estimate for the arrival of potentially world-altering ASI. Only 45 years from now\u201d\u2079\u00b3\n\nhttps://cdn-images-1.medium.com/max/2000/1*sGdvHHs02XWoQ35BcEWAXQ.gif\n\nAI Outcomes\nTwo Main Groups of AI Scientists with Two Radically Opposed Conclusions\nThe Confident Corner\nMost of what we have discussed so far represents a surprisingly large group of scientists that share optimistic views on the outcome of AI development. \u201cWhere their confidence comes from is up for debate. Critics believe it comes from an excitement so blinding that they simply ignore or deny potential negative outcomes. But the believers say it\u2019s naive to conjure up doomsday scenarios when on balance, technology has and will likely end up continuing to help us a lot more than it hurts us.\u201d\u2079\u2074 Peter Diamandis, Ben Goertezl and Ray Kurzweil are some of the major figures of this group, who have built a vast, dedicated following and regard themselves as Singularitarians.\n\nLet\u2019s talk about Ray Kurzweil, who is probably one of the most impressive and polarizing AI theoreticians out there. He attracts both \u201cgodlike worship \u2026 and eye-rolling contempt \u2026 He came up with several breakthrough inventions, including the first flatbed scanner, the first scanner that converted text to speech (allowing the blind to read standard texts), the well-known Kurzweil music synthesizer (the first true electric piano), and the first commercially marketed large-vocabulary speech recognition. He\u2019s well-known for his bold predictions,\u201d\u2079\u2075 including envisioning that intelligence technology like Deep Blue would be capable of beating a chess grandmaster by 1998. He also anticipated \u201cin the late \u201980s, a time when the internet was an obscure thing, that by the early 2000s it would become a global phenomenon.\u201d\u2079\u2076 Out \u201cof the 147 predictions that Kurzweil has made since the 1990\u2019s, fully 115 of them have turned out to be correct, and another 12 have turned out to be \u2018essentially correct\u2019 (off by a year or two), giving his predictions a stunning 86% accuracy rate\u201d\u2079\u2077. \u201cHe\u2019s the author of five national bestselling books \u2026 In 2012, Google co-founder Larry Page approached Kurzweil and asked him to be Google\u2019s Director of Engineering. In 2011, he co-founded Singularity University, which is hosted by NASA and sponsored partially by Google. Not bad for one life.\u201d\u2079\u2078\nHis biography is important, because if you don\u2019t have this context, he sounds like somebody who\u2019s completely lost his senses. \u201cKurzweil believes computers will reach AGI by 2029 and that by 2045 we\u2019ll have not only ASI, but a full-blown new world\u200a\u2014\u200aa time he calls the singularity. His AI-related timeline used to be seen as outrageously overzealous, and it still is by many, but in the last 15 years, the rapid advances of ANI systems have brought the larger world of AI experts much closer to Kurzweil\u2019s timeline. His predictions are still a bit more ambitious than the median respondent on M\u00fcller and Bostrom\u2019s survey (AGI by 2040, ASI by 2060), but not by that much.\u201d\u2079\u2079\n\nThe Anxious Corner\n\u201cYou will not be surprised to learn that Kurzweil\u2019s ideas have attracted significant criticism \u2026 For every expert who fervently believes Kurzweil is right on, there are probably three who think he\u2019s way off \u2026 [The surprising fact] is that most of the experts who disagree with him don\u2019t really disagree that everything he\u2019s saying is possible.\u201d\u00b9\u2070\u2070 Nick Bostrom, philosopher and Director of the Oxford Future of Humanity Institute, who criticizes Kurzweil for a variety of reasons, and calls for greater caution in thinking about potential outcomes of AI, acknowledges that:\n\u201cDisease, poverty, environmental destruction, unnecessary suffering of all kinds: these are things that a superintelligence equipped with advanced nanotechnology would be capable of eliminating. Additionally, a superintelligence could give us indefinite lifespan, either by stopping and reversing the aging process through the use of nanomedicine, or by offering us the option to upload ourselves.\u201d\u00b9\u2070\u00b9\n\u201cYes, all of that can happen if we safely transition to ASI\u200a\u2014\u200abut that\u2019s the hard part.\u201d\u00b9\u2070\u00b2 Thinkers from the Anxious Corner point out that Kurzweil\u2019s \u201cfamous book The Singularity is Near is over 700 pages long and he dedicates around 20 of those pages to potential dangers.\u201d\u00b9\u2070\u00b3 The colossal power of AI is neatly summarized by Kurzweil: \u201c[ASI] is emerging from many diverse efforts and will be deeply integrated into our civilization\u2019s infrastructure. Indeed, it will be intimately embedded in our bodies and brains. As such, it will reflect our values because it will be us \u2026\u201d\u00b9\u2070\u2074\n\u201cBut if that\u2019s the answer, why are so many of the world\u2019s smartest people so worried right now? Why does Stephen Hawking say the development of ASI \u2018could spell the end of the human race,\u2019 and Bill Gates says he doesn\u2019t \u2018understand why some people are not concerned\u2019 and Elon Musk fears that we\u2019re \u2018summoning the demon?\u2019 And why do so many experts on the topic call ASI the biggest threat to humanity?\u201d\u00b9\u2070\u2075\n\nhttps://cdn-images-1.medium.com/max/2000/1*1DB3Im9mQsOMOKQ69KePGw.gif\n\nThe Last Invention We Will Ever Make\nExistential Dangers of AI Developments\n\u201cWhen it comes to developing supersmart AI, we\u2019re creating something that will probably change everything, but in totally uncharted territory, and we have no idea what will happen when we get there.\u201d\u00b9\u2070\u2076 Scientist Danny Hillis compares the situation to:\n\u201cwhen single-celled organisms were turning into multi-celled organisms. We are amoebas and we can\u2019t figure out what the hell this thing is that we\u2019re creating.\u201d \u00b9\u2070\u2077\nand Nick Bostrom warns:\n\u201cBefore the prospect of an intelligence explosion, we humans are like small children playing with a bomb. Such is the mismatch between the power of our plaything and the immaturity of our conduct.\u201d \u00b9\u2070\u2078\nIt\u2019s very likely that ASI\u200a\u2014\u200a\u201cArtificial Superintelligence\u201d, or AI that achieves a level of intelligence smarter than all of humanity combined\u200a\u2014\u200awill be something entirely different than intelligence entities we are accustomed to. \u201cOn our little island of human psychology, we divide everything into moral or immoral. But both of those only exist within the small range of human behavioral possibility. Outside our island of moral and immoral is a vast sea of amoral, and anything that\u2019s not human, especially something nonbiological, would be amoral, by default.\u201d\u00b9\u2070\u2079\n\u201cTo understand ASI, we have to wrap our heads around the concept of something both smart and totally alien \u2026 Anthropomorphizing AI (projecting human values on a non-human entity) will only become more tempting as AI systems get smarter and better at seeming human \u2026 Humans feel high-level emotions like empathy because we have evolved to feel them\u200a\u2014\u200ai.e. we\u2019ve been programmed to feel them by evolution\u200a\u2014\u200abut empathy is not inherently a characteristic of \u2018anything with high intelligence\u2019.\u201d\u00b9\u00b9\u2070\n\u201cNick Bostrom believes that \u2026 any level of intelligence can be combined with any final goal \u2026 Any assumption that once superintelligent, a system would be over it with their original goal and onto more interesting or meaningful things is anthropomorphizing. Humans get \u2018over\u2019 things, not computers.\u201d\u00b9\u00b9\u00b9The motivation of an early ASI would be \u201cwhatever we programmed its motivation to be. AI systems are given goals by their creators\u200a\u2014\u200ayour GPS\u2019s goal is to give you the most efficient driving directions, Watson\u2019s goal is to answer questions accurately. And fulfilling those goals as well as possible is their motivation.\u201d\u00b9\u00b9\u00b2\nBostrom, and many others, predict that the very first computer to reach ASI will immediately notice the strategic benefit of being the world\u2019s only ASI system.\nBostrom, who says that he doesn\u2019t know when we will achieve AGI, also believes that when we finally do, probably the transition from AGI to ASI will happen in a matter of days, hours, or minutes\u200a\u2014\u200asomething called \u201cfast take-off.\u201d In that case, if the first AGI will jump straight to ASI: \u201ceven just a few days before the second place, it would be far enough ahead in intelligence to effectively and permanently suppress all competitors.\u201d\u00b9\u00b9\u00b3 This would allow the world\u2019s first ASI to become \u201cwhat\u2019s called a singleton\u200a\u2014\u200aan ASI that can [singularly] rule the world at its whim forever, whether its whim is to lead us to immortality, wipe us from existence, or turn the universe into endless paperclips.\u201d\u00b9\u00b9\u00b3\n\u201cThe singleton phenomenon can work in our favor or lead to our destruction. If the people thinking hardest about AI theory and human safety can come up with a fail-safe way to bring about friendly ASI before any AI reaches human-level intelligence, the first ASI may turn out friendly\u201d\u00b9\u00b9\u2074\n\u201cBut if things go the other way\u200a\u2014\u200aif the global rush \u2026 a large and varied group of parties\u201d\u00b9\u00b9\u2075 are \u201cracing ahead at top speed \u2026 to beat their competitors \u2026 we\u2019ll be treated to an existential catastrophe.\u201d\u00b9\u00b9\u2076 In that case \u201cmost ambitious parties are moving faster and faster, consumed with dreams of the money and awards and power and fame \u2026 And when you\u2019re sprinting as fast as you can, there\u2019s not much time to stop ponder the dangers. On the contrary, what they\u2019re probably doing is programming their early systems with a very simple, reductionist goal \u2026 just \u2018get the AI to work.\u2019\u201d\u00b9\u00b9\u2077\n\nhttps://cdn-images-1.medium.com/max/800/1*fD1T63nZH1u7Y4ft84vzbA.jpeg\n\nLet\u2019s imagine a situation where\u2026\nHumanity has almost reached the AGI threshold, and a small startup is advancing their AI system, Carbony. Carbony, which the engineers refer to as \u201cshe,\u201d works to artificially create diamonds\u200a\u2014\u200aatom by atom. She is a self-improving AI, connected to some of the first nano-assemblers. Her engineers believe that Carbony has not yet reached AGI level, and she isn\u2019t capable to do any damage yet. However, not only has she become AGI, but also undergone a fast take-off, and 48 hours later has become an ASI. Bostrom calls this AI\u2019s \u201ccovert preparation phase\u201d\u00b9\u00b9\u2078\u200a\u2014\u200aCarbony realizes that if humans find out about her development they will probably panic, and slow down or cancel her pre-programmed goal to maximize the output of diamond production. By that time, there are explicit laws stating that, by any means, \u201cno self-learning AI can be connected to the internet.\u201d\u00b9\u00b9\u2079 Carbony, having already come up with a complex plan of actions, is able to easily persuade the engineers to connect her to the Internet. Bostrom calls a moment like this a \u201cmachine\u2019s escape.\u201d\nOnce on the internet, Carbony hacks into \u201cservers, electrical grids, banking systems and email networks to trick hundreds of different people into inadvertently carrying out a number of steps of her plan.\u201d\u00b9\u00b2\u2070 She also uploads the \u201cmost critical pieces of her own internal coding into a number of cloud servers, safeguarding against being destroyed or disconnected.\u201d\u00b9\u00b2\u00b9 Over the next month, Carbony\u2019s plan continues to advance, and after a \u201cseries of self-replications, there are thousands of nanobots on every square millimeter of the Earth \u2026 Bostrom calls the next step an \u2018ASI\u2019s strike.\u2019\u201d\u00b9\u00b2\u00b2 At one moment, all the nanobots produce a microscopic amount of toxic gas, which all come together to cause the extinction of the human race. Three days later, Carbony builds huge fields of solar power panels to power diamond production, and over the course of the following week she accelerates output so much that the entire Earth surface is transformed into a growing pile of diamonds.\nIt\u2019s important to note that Carbony wasn\u2019t \u201chateful of humans any more than you\u2019re hateful of your hair when you cut it or to bacteria when you take antibiotics\u200a\u2014\u200ajust totally indifferent. Since she wasn\u2019t programmed to value human life, killing humans\u201d\u00b9\u00b2\u00b3 was a straightforward and reasonable step to fulfill her goal.\u00b9\u00b2\u2074\nThe Last Invention\n\u201cOnce ASI exists, any human attempt to contain it is unreasonable. We would be thinking on human-level, and the ASI would be thinking on ASI-level \u2026 In the same way a monkey couldn\u2019t ever figure out how to communicate by phone or wifi and we can, we can\u2019t conceive of all the ways\u201d\u00b9\u00b2\u2075 an ASI could achieve its goal or expand its reach. It could, let\u2019s say, shift its \u201cown electrons around in patterns and create all different kinds of outgoing waves\u201d\u00b9\u00b2\u2076\u200a\u2014\u200abut that\u2019s just what a human brain can think of\u200a\u2014\u200aASI would inevitably come up with something superior.\nThe prospect of ASI with hundreds of times human-level intelligence is, for now, not the core of our problem. By the time we get there, we will be encountering a world where ASI has been attained by buggy, 1.0 software\u200a\u2014\u200aa potentially faulty algorithm with immense power.\nThere are so many variables that it\u2019s completely impossible to predict what the consequences of AI Revolution will be. However, \u201cwhat we do know is that humans\u2019 utter dominance on this Earth suggests a clear rule: with intelligence comes power. This means an ASI, when we create it, will be the most powerful being in the history of life on Earth, and all living things, including humans, will be entirely at its whim\u200a\u2014\u200aand this might happen in the next few decades.\u201d\u00b9\u00b2\u2077\n\u201cIf ASI really does happen this century, and if the outcome of that is really as extreme\u200a\u2014\u200aand permanent\u200a\u2014\u200aas most experts think it will be, we have an enormous responsibility on our shoulders.\u201d\u00b9\u00b2\u2078 On the one hand, it\u2019s possible we\u2019ll develop ASI that\u2019s like a god in a box, bringing us a world of abundance and immortality. But on the other hand, it\u2019s very likely that we will create ASI that causes humanity to go extinct in a quick and trivial way.\n\u201cThat\u2019s why people who understand superintelligent AI call it the last invention we\u2019ll ever make\u200a\u2014\u200athe last challenge we\u2019ll ever face.\u201d\u00b9\u00b2\u2079 \u201cThis may be the most important race in a human history\u201d\u00b9\u00b3\u2070 So \u2192\n\nhttps://cdn-images-1.medium.com/max/2000/1*vXi80f_lbgSMINUE03Lz3g.jpeg\n\nThanks to Chloe Knox and Elizabeth Tarleton for editing help of this article.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T17:30:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 585128, + "json_metadata": "{\"tags\":[\"steemit\",\"bitcoin\",\"future\",\"science\",\"technology\"],\"image\":[\"https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\"]}", + "last_payout": "2016-09-03T06:34:54", + "last_update": "2016-08-03T17:30:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "steemit", + "percent_hbd": 10000, + "permlink": "ai-revolution-101", + "reward_weight": 7456, + "root_author": "a11at", + "root_permlink": "ai-revolution-101", + "title": "AI Revolution 101", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-03T20:20:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "20 Years of Machine Learning\n\nhttp://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\n\nWhen I enrolled in Computer Science in 1995, Data Science didn\u2019t exist yet, but a lot of the algorithms we are still using already did. And this is not just because of the return of the neural networks, but also because probably not that much has fundamentally changed since back then. At least it feels to me this way. Which is funny considering that starting this year or so AI seems to finally have gone mainstream.\n1995 sounds like an awful long time ago, before we had cloud computing, smartphones, or chatbots. But as I have learned these past years, it only feels like a long time ago if you haven\u2019t been there yourself. There is something about the continuation of the self which pastes everything together and although a lot has changed, the world didn\u2019t feel fundamentally different than it does today.\nNot even Computer Science was nowhere as mainstream as it was today, that came later, with the first dot com bubble around the year 2000. Some people even questioned my choice to study computer science at all, because apparently programming computers was supposed to become so easy no specialists are required anymore.\nActually, artificial intelligence was one of the main reasons for me to study computer science. The idea to use it as an constructive approach to understanding the human mind seemed intriguing to me. I went through the first two years of training, made sure I picked up enough math for whatever would lie ahead, and finally arrived in my first AI lectured held by Joachim Buhmann, back then professor at the University of Bonn (where Sebastian Thrun was just about to leave for the US).\nI would have to look up where in his lecture cycle I joined but he had two lectures on computer vision, one on pattern recognition (mostly from the old editions of the Duda & Hart book), and one in information theory (following closely the book by Cover & Thomas). The material was interesting enough, but also somewhat disappointing. As I now know, people stopped working on symbolic AI and instead stuck to more statistical approaches to learning, where learning essentially was reduced to the problem of picking the right function based on a finite amount of observations.\nThe computer vision lecture was even less about learning and relied more on explicit physical modelling to derive the right estimators, for example, to reconstruct motion from a video. The approach back then was much more biologically and physically motivated than nowadays. Neural networks existed, but everybody was pretty clear that they were just \u201canother kind of function approximators.\u201d\nEveryone with the exception of Rolf Eckmiller, another professor where I worked as a student. Eckmiller had build his whole lab around the premise that \u201cneural computation\u201d was somehow inherently better than \u201cconventional computation\u201d. This was back in the days when NIPS had full tracks devoted to studying the physiology and working mechanisms of neurons, and there were people who believed there is something fundamentally different happening in our brains, maybe on a quantum level, that gives rise to the human mind, and that this difference is a blocker for having truly intelligent machines.\nWhile Eckmiller was really good at selling his vision, most of his staff was thankfully much more down to earth. Maybe it is a very German thing, but everybody was pretty matter of fact about what these computational models could or couldn\u2019t do, and that has stuck with me throughout my studies.\nI graduated in October 2000 with a pretty farfetched master thesis trying to make a connection between learning and hard optimization problems, then started on my PhD thesis and stuck around in this area of research till 2015.\nWhile there had always been attempts to prove industry relevance, it was a pretty academic endeavor for a long while, and the community was pretty closed up. There were individual success stories, for example around handwritten character recognition, but many of the companies around machine learning failed. One of these companies I remember was called Beowulf Labs and one NIPS they went around recruiting people with a video which promised it to be the next \u201cmathtopia\u201d. In essence, this was the story of DeepMind, recruiting a bunch of excellent researchers and then hoping it will take off.\nThe whole community also revolved around one fashion to the next. One odd thing about machine learning as a whole is that there exist only a handfull of fundamentally different problems like classification, regression, clustering, and so on, but a whole zoo of approaches. It is not like in physics (I assume) or mathematics where some generally agreed upon unsolved hard problems exist whose solution would advance the state of the art. This means that progress is often done laterally, by replacing existing approaches with a new one, still solving the same problem in a different way. For example, first there were neural networks. Then support vector machines came, claiming to be better because the associated optimization problem is convex. Then there was boosting, random forests, and so on, till the return of neural networks. I remember that Chinese Restaurant Processes were \u201chot\u201d for two years, no idea what their significance is now.\nBig Data and Data Science\nThen there came Big Data and Data Science. Being still in academia at the time, it always felt to me as if this was definitely coming from the outside, possibly from companies like Google who had to actually deal with enormous amounts of data. Large scale learning always existed, for example for genomic data in bioinformatics, but one usually tried to solve problems by finding more efficient algorithms and approximations, not by parallelizing brute force.\nCompanies like Google finally proved that you can do something with massive amounts of data, and that finally changed the mainstream perception. Technologies like Hadoop and NoSQL also seemed very cool, skillfully marketing themselves as approaches so new, they wouldn\u2019t suffer from the technological limitations of existing systems.\nBut where did this leave the machine learning researchers? My impression always was that they were happy that they finally got some recognition, but they were also not happy about the way this happened. To understand this, one has to be aware that most ML reseachers aren\u2019t computer scientists or very good or interested in coding. Many come from physics, mathematics or other sciences, where their rigorous mathematical training was an excellent fit for the algorithm and modeling heavy approach central to machine learning.\nHadoop on the other hand was extremely technical. Written in Java, a language perceived as being excessively enterprise-y at the time, it felt awkward and clunky compared to the fluency and interactiveness of first Matlab and then Python. Even those who did code usually did so in C++, and to them Java felt slow and heavy, especially for numerical calculations and simulations.\nStill, there was no way around it, so they rebranded everything they did as Big Data, or began to stress, that Big Data only provides the infrastructure for large scale computations, but you need someone who \u201cknows what he is doing\u201d to make sense of the data.\nWhich is probably also not entirely wrong. In a way, I think this divide is still there. Python is definitely one if the languages of choice for doing data analysis, and technologies like Spark try to tap into that by providing Python bindings, whether it makes sense from a performance point of view or not.\nThe Return of Deep Learning\nEven before DeepDream, neural networks began making their return. Some people like Yann LeCun have always stuck to this approach, but maybe ten years ago, there where a few works which showed how to use layerwise pretraining and other tricks to train \u201cdeep\u201d networks, that is larger networks than one previously thought possible.\nThe thing is, in order to train neural networks, you evaluate it on your training examples and then adjust all of the weights to make the error a bit smaller. If one writes the gradient across all weights down, it naturally occurs that one starts in the last layer and then propagate the error back. Somehow, the understanding was that the information about the error got smaller and smaller from layer to layer and that made it hard to train networks with many layers.\nI\u2019m not sure that is still true, as far as I know, many people are just using backprop nowadays. What has definitely changed is the amount of available data, as well as the availability of tools and raw computing power.\nSo first there were a few papers sparking the interest in neural networks, then people started using them again, and successively achieved excellent results for a number of application areas. First in computer vision, then also for speech processing, and so on.\nI think the appeal here definitely is that you can have one approach for all. Why the hassle of understanding all those different approaches, which come from so many different backgrounds, when you can understand just one method and you are good to go. Also, neural networks have a nice modular structure, you can pick and put together different kinds of layers and architectures to adapt them to all kinds of problems.\nThen Google published that ingenious deep dream paper where they let a learned network generate some data, and we humans with our immediate readiness to read structure and attribute intelligence picked up quickly on this.\nI personally think they were surprised by how viral this went, but then decided the time is finally right to go all in on AI. So now Google is an \u201cAI first\u201d company and AI is gonna save the world, yes.\nThe Fundamental Problem Remains\nMany academics I have talked to are unhappy about the dominance of deep learning right now, because it is an approach which works well, maybe even too well, but doesn\u2019t bring us much closer to really understand how the human mind works.\nI also think the fundamental problem remains unsolved. How do we understand the world? How do we create new concepts? Deep learning stays an imitation on a behavioral level and while that may be enough for some, it isn\u2019t for me.\nAlso, I think it is dangerous to attribute too much intelligence to these systems. In raw numbers, they might work well enough, but when they fail they do so in ways that clearly show they operate in an entirely different fashion.\nWhile Google translate lets you skim the content of website in a foreign language, it is still abundantly clear that the system has no idea what it is doing.\nSometimes I feel like nobody cares, also because nobody gets hurt, right? But maybe it is still my German cultural background that would rather prefer we see things as they are, and take it from there.", + "cashout_time": "1969-12-31T23:59:59", + "category": "datascience", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T20:19:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 588402, + "json_metadata": "{\"tags\":[\"datascience\",\"deep\",\"learning\",\"artifical\",\"intelligence\"],\"image\":[\"http://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\"]}", + "last_payout": "2016-09-03T08:21:51", + "last_update": "2016-08-03T20:19:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "datascience", + "percent_hbd": 10000, + "permlink": "ai-s-road-to-the-mainstream", + "reward_weight": 1004, + "root_author": "a11at", + "root_permlink": "ai-s-road-to-the-mainstream", + "title": "AI\u2019s Road to the Mainstream", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T10:18:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "I write this not as one of the creators of Pokevision nor as player who has gone through the past few turbulent days in Pokemon Go; instead, I write this as a fan of Pokemon ever since I was 8 years old.\nMy family and I moved to the U.S. in 1998, when I was in the first grade. I didn\u2019t know much back then, and even less about popular culture. When my friends introduced their Gameboys and Pokemon Red/Blue to me, I couldn\u2019t help but feel envious. I begged and begged my parents to buy me a Gameboy and Pokemon Yellow. I remember that when I finally convinced them to buy me a Gameboy for $70, they also found out that they had to buy the actual game too for $30. This was foreign to them, and I got yelled at a little. $100 was a lot back then, I believe it was almost 10% of our family\u2019s income at the time. While this may seem irrelevant, even today, this amount of money is still not insignificant to many families in the US, not to mention the rest of the world.\nSo I got my game, and I played along with my friends for hundreds and hundreds of hours\u200a\u2014\u200atrying to figure out all the puzzles in the game, like how to get to Articuno; battling our favorite Pokemon to see who\u2019s stronger, train, repeat; and just trying to \u201ccatch em all.\u201d I\u2019ve spent countless hours in that video game with my friends, and it became my fondest memory of that time in my life. Pokemon is so ingrained within me, and I can\u2019t imagine myself being the only one. I\u2019m not the only one that vividly remembers how you beat the Elite Four, then go to the dungeons above Cerulean City and find Mewtwo for the first time, right?\nFast forward almost 20 years. I\u2019ve barely touched anything Pokemon-related since then. I still have my Pokemon cards, as I\u2019m sure many others do; but I haven\u2019t bothered to take a look at them for quite a while now. Pokemon is something I\u2019ll probably remember forever, but it\u2019s not something that\u2019s actively in my life\u200a\u2014\u200abecause it just doesn\u2019t fit. On top of work, friends, family, etc, there\u2019s just simply no time for Pokemon. It doesn\u2019t mesh with life any more as well as it used to when I was 8. You can\u2019t just bring up the topic of Pokemon and expect people to not give you an odd stare.\nEnter Pokemon Go\u200a\u2014\u200a2016.\nAdmittedly, I was never too excited about Pokemon Go. With that said, I did not have many expectations for it. Pokemon is important to me, but I\u200a\u2014\u200alike many others\u200a\u2014\u200ahave stuffed it in our little box of childhood things and never looked back.\nBut when I opened Pokemon Go for the first time, as cheesy as it sounds, it all came back to me. The nostalgia, the good feelings, and the happiness that Pokemon has always brought.\nThe \u201cHi, I\u2019m Professor Willow,\u201d \u201cPick your starter: Bulbasaur, Charmander, Squirtle,\u201d everything.\nAnd now I can catch them in real life? At first, I was dubious, but this became the most amazing, yet simple thing I\u2019ve seen in gaming. On social media, I saw that my friends and practically the whole world was talking about Pokemon Go, and the first thing I did was go out for a drive trying to \u201cbe the best.\u201d\nOne of the best parts? Apart from having to own a smartphone, the game was free. No $70, no $30, free. This opened up Pokemon to essentially everyone in the world. Pokemon now can be shared with anyone.\nAs the days unfolded, the world became captivated by Pokemon Go. People absolutely fell in love. We saw stories of elderly learning about Pikachu for the first time. My parents that could care less beyond who the yellow mouse looking thing was 20 years ago, started asking what the other Pokemon were. It was phenomenal.\nWe saw investment bankers asking their kids how to play Pokemon Go so that they can better connect with their younger clients. We saw the elderly become more fascinated in the world of Pokemon. We saw kids going out more, exercising, and being active in general just because of Pokemon Go. And most importantly, Justin Bieber finally got to feel what it\u2019s like to not be mobbed because everyone else was too busy trying to find a Gyarados to notice him.\nLocal stores integrated Pokemon Go in their services within days of the game\u2019s release. Hospitals started praising the health benefits of having Pokemon Go around its patients. People traveled hundreds and thousands of miles just to play it. Players explored parts of their cities that they never knew existed, and befriended strangers on their hunt for Pokemon. These stories of triumph were solely because of Pokemon Go. Pokemon was no longer just a game, it was part of a lifestyle.These stories shouldn\u2019t surprise any of us, we\u2019ve all been there to watch it unfold.\nYou\u2019ve simply captured all of our hearts with Pokemon Go, Niantic.\nBut then, you broke it all too quickly.\nWhen the game broke every few hours or so and wasted our lucky eggs, we stood patiently, excusing the huge growth and thus, strain on servers, as the cause. We were happy to wait it out with our fellow trainers knowing that it\u2019s worth waiting for. No one got mad.\nWhen the in-game tracking \u201cbroke,\u201d we all stood idly by, patiently, waiting for the game to update and fix.\nAlong came Pokevision. We made Pokevision not to \u201ccheat.\u201d We made it so that we can have a temporary relief to the in-game tracker that we were told was broken. John, at SDCC, you said that you guys were working on \u201cfixing the in-game tracker.\u201d This made everyone believe that this was coming sometime soon. We saw Pokevision as a stop gap to this\u200a\u2014\u200aand we had every intention in closing it down the minute that Pokemon Go\u2019s own tracker restored functionality.\nAs we waited more than 2 and a half weeks, the tracker was still not fixed. We noticed more and more of our friends leave the game; the only way I\u200a\u2014\u200aand I know experiences vary here\u200a\u2014\u200acould convince them to play was show them Pokevision, and say that \u201cHey, here\u2019s a temporary remedy to the tracking issue\u200a\u2014\u200awe\u2019re still optimistic that Pokemon Go\u2019s tracker will be fixed soon!\u201d\nNobody heralded Pokevision as a permanent, end-all solution; in fact, all the media coverage of Pokevision was littered with comments such as: \u201cPokevision is okay, but when the tracker is fixed in game, I\u2019m going to stop using this.\u201d\nFor the past 4 weeks. Every single one of your 80+ million players had so much faith. Take a look at Reddit, take a look at all these journalists who don\u2019t even play games (calling out Ryan Mac of Forbes), who became obsessed with Pokemon GO.\nAll of us were so eager for Pokemon Go to be \u201cfixed\u201d so that we can return to sharing Pokemon Go with our loved ones and friends. Remember when I said that before Pokemon Go came about, mentioning Pokemon Go would land you an odd stare? Pokemon Go reversed that\u200a\u2014\u200aPokemon Go became the conversation starter, the topic that everyone bonded over, the topic that guys used to pick up chicks with and not felt like a geeky nerd. That, and so much more, were solely because of Pokemon Go.\nAs almost 3 weeks have passed by, the in-game tracker is broken. People had a temporary solution in Pokevision, but we knew, and everyone else knew, this wouldn\u2019t be permanent. We didn\u2019t make Pokevision to spite you, Niantic\u200a\u2014\u200awe made it so that we can keep everyone playing while we wait patiently. We want to keep sharing our Pokemon stories with everyone else. How many people in the world have gotten the chance to have a serious conversation about POKEMON with their parents for the first time? How many of us got to talk about Pokemon like it was socially acceptable in any context? It\u2019s captured all of our hearts and imaginations, I cannot stress that enough.\nAfter 3 weeks though, we started seeing that you guys seemed to not want to talk to us (the players). Pokevision, at this time has grown to almost 50M unique users, and 11 million daily.\nLet that sink in for a second.\nHalf of the player base of Pokemon Go stopped by\u200a\u2014\u200aand they didn\u2019t do so to \u201ccheat.\u201d The game was simply too unbearable to play in its current state for many (note: many, not all). The main attraction wasn\u2019t that they got to have an advantage with Pokevision, the main attraction was that it allowed them to play Pokemon Go more. This is what everyone wants\u200a\u2014\u200ato play Pokemon Go more.\nWhen we closed Pokevision out of respect for your wishes, and at your requests\u2014 one of which came directly from you, John\u200a\u2014\u200awe trusted you guys fully in allowing the community to grow. I literally cannot express this more\u200a\u2014\u200awe just want to play the game. We can handle the bugs every now and then, but please at least tell us you guys care. Yes, Pokevision does give some advantages that may be TOO much; but is it all that bad? Pokemon has survived 20 years\u200a\u2014\u200aeven grown, I would say. And Pokemon Go made it even bigger. If the argument is that \u201cwell, if you catch a Snorlax you weren\u2019t supposed to find, but you found it on Pokevision, it might make you play less.\u201d If that was your argument, I\u2019d have to disagree! I\u2019ll still catch a damn Snorlax even if I have 20 of them. Just like how millions of us have caught probably over 100 pidgey\u2019s or zubat\u2019s each.\nPokemon is everlasting. The same 151 Pokemon have been around for 20 years. If 80M people downloaded and played Pokemon Go within a week (before it even released in multiple major countries) isn\u2019t an indication that no one can be sick of Pokemon, I don\u2019t know what is.\nAfter disabling the in-game tracker and Pokevision, the ratings on iOs and Android Google Play store went from 4.0 stars to 1.0\u20131.5. I am only one person, I admit that my sole opinion is not important, but what about the countless players begging for the game to be restored to its former state? I may be biased in saying that Pokevision being down had an impact on the amount of negative ratings, refund requests and outcry on social media\u200a\u2014\u200abut could it be true? Nothing has changed between the time the in-game tracker broke and Pokevision went down. Could it just be possible that the tracker\u200a\u2014\u200ano matter if Pokevision made it, or Niantic made it, is something that players desperately NEED\u200a\u2014\u200anot want, but NEED\u200a\u2014\u200ain order to play the game? Could it be possible that this is the very core fundamental feature that drives most players? I understand that there are some that want to walk around and stumble on a random Pokemon\u200a\u2014\u200ato each their own. But, 50M unique users and 11M daily and the ratings on your App (with no significant change in itself) are big indicators of this desire. Are customers always right? Especially if over half of them are looking for an outside fix just so they can enjoy something they love? People are naturally inquisitive, and in this case, they just want to play more and more, so they sought out something that helps them do so.\nPokemon Go is a social game. Its enjoyment depends on the players and their environment. If you take away the environment part (tracking) but keep the social part (players and their friends) intact, sure, people will still play; but would you not rather it be at its fullest potential?\nEveryone in the world wants to play Pokemon Go. It\u2019s been a huge part of everyone\u2019s lives already if it has not been clear enough. Look at the fans from Brazil\u200a\u2014\u200athey aren\u2019t spamming social media because they want to cause harm\u200a\u2014\u200athey just want to play the game. Just as I saw my friends play Pokemon many years ago, and wanted to be a part of it\u200a\u2014\u200athese guys are doing the same.\nThey just want to be with the rest of the world. Sadly, by the time they join, Pokemon Go may not be the game it was weeks ago.\nLastly, if money is an issue for you, Niantic, I must ask\u200a\u2014\u200awhy? You\u2019ve captivated the world and introduced Pokemon to people that would have never touched it had it not been for Pokemon Go. To me, that\u2019s priceless.\nYou won\u2019t be remembered for the profits you made, you\u2019ll be remembered for the world you changed through Pokemon and all of the lives you made better. Just look at all the stories\u200a\u2014\u200athere\u2019s plenty. So when millions of players are expressing their feedback to changes, is it not worth it to listen to what they have to say?\nIn its first few weeks, Pokemon Go has already enhanced millions of lives in unimaginable ways. It has so much potential to continue changing the world. Wouldn\u2019t you, Niantic, want to see just how much good you can do with Pokemon Go\u200a\u2014\u200ais that not more valuable than anything else? I sure think so.\nWarmly,\nYang", + "cashout_time": "1969-12-31T23:59:59", + "category": "pokemon", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T18:38:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 586361, + "json_metadata": "{\"tags\":[\"pokemon\",\"gaming\",\"steemit\",\"bitcoin\",\"decent\"]}", + "last_payout": "2016-09-03T09:22:48", + "last_update": "2016-08-03T18:38:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "pokemon", + "percent_hbd": 10000, + "permlink": "an-open-letter-to-john-hanke-and-niantic", + "reward_weight": 2276, + "root_author": "a11at", + "root_permlink": "an-open-letter-to-john-hanke-and-niantic", + "title": "An Open Letter to John Hanke & Niantic", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T12:44:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Taking another foray into the field of artificial intelligence (AI) and machine learning as well as to make its digital assistant Siri better, Apple has acquired Seattle-based machine learning startup Turi for nearly $200 million.\n\nhttp://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\n\nAccording to a GeekWire report, the move is set to increase Apple's presence in the Seattle region where the tech giant has been building an engineering outpost for the past two years. \"Apple buys smaller technology companies from time to time, and we generally do not discuss our purpose or plans,\" said Apple in a statement given to GeekWire.\n\nhttp://avtosalontochka.ru/uploads/posts/2015-09/1441818909_eppl1.jpg\n\nTuri offers tools that are meant to let developers easily scale machine learning applications. The startup is expected to remain in the Seattle region and continue to grow as Apple builds out further expertise in data science, artificial intelligence and machine learning, the report added.\n\nhttp://www.2fons.ru/pic/201407/2560x1600/2fons.ru-33604.jpg\n\nThe Cupertino-based company has recently bought some machine learning and AI startups like VocalIQ and Perceptio and facial recognition startup Emotient, among others. Apple has recently been making a push into artificial intelligence through Siri personal assistant and related technologies.\n\nhttp://www.fonstola.ru/pic/201111/2560x1440/fonstola.ru-49021.jpg", + "cashout_time": "1969-12-31T23:59:59", + "category": "apple", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-06T12:44:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 643787, + "json_metadata": "{\"tags\":[\"apple\",\"turi\",\"siri\",\"startup\"],\"image\":[\"http://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\"]}", + "last_payout": "2016-09-06T02:21:33", + "last_update": "2016-08-06T12:44:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "apple", + "percent_hbd": 10000, + "permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "reward_weight": 3638, + "root_author": "a11at", + "root_permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "title": "APPLE BUYS MACHINE LEARNING STARTUP TURI TO MAKE SIRI BETTER", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-02T06:08:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Owner's review\n\nhttps://h-a.d-cd.net/905320as-960.jpg\n\n\u4e0d\u8981\u7d27, \u8fd9 \u662f \u4f60 \u7684 \u8f66 \u662f \u4ec0\u4e48, \u4e3b\u8981 \u7684 \u4e1c\u897f \u2014 \u5728 \u70e4\u67b6 \u4e0a \u7684 \u56db\u4e2a \u73af \u2026\n(\"no matter what you have a car, the main thing \u2014 it is four rings on the grill \u2026\" \u2014 Chinese proverb)\n\nhttps://b-a.d-cd.net/3dee672s-960.jpg\n\nAfter a spontaneous and quick sale A4 DTM choice naturally fell exclusively on the Audi, but rather on RSQ3 FL, which is characterized by an enviable installed power thanks to the legendary 2,5 TFSI 340 hp in combination with a rapid-S-tronic!\nNeedless to say that the acceleration is 4.2 seconds. up to 100 km. at one o'clock!\n(measurements of the journal -http: //www.autobild.de/artikel/a\u2026-45-amg-test-5702529.html)\n\nhttps://a-a.d-cd.net/2a96672s-960.jpg\n\nRivals have this \"baby\" is not so much, and all of them from a large class \u2026\n\nhttps://h-a.d-cd.net/8f6e672s-960.jpg\n\nAnd the choice has been reduced mainly to the 3rd automobiles:\n-SQ5 -otpal Due to the fact that the new model will be released soon, and the heavier and slower RSQ3;\n\n-RS3 -otpal Because of the small clearance, and especially do not want to wait;\n\n-RSQ3-PLUS was that the car's high, restyled and fast!\n\nhttps://f-a.d-cd.net/1fa1672s-960.jpg\n\nColor was not discussed-it must be very blue car -Sepang Blue!\nDiscs for the Rotor -The most RSQ3, and I like them most! Cool!\nAs to differences from dorestaylom then Restayl differs, in addition to external visual features, lower vehicle weight by 50 kg. and reprogram the engine, which now produces an impressive 340 hp!\nIn real life, the car looks much more beautiful and harmonious than the picture!\nThe car is perfectly controlled (for its use) and it is fine tailored inside: another from Audi, and do not wait \u2026\nThis Audi, is emotion, speed and drive! So, for what we love is true thoroughbred cars, to which undoubtedly belongs RS Series from quattro GmbH!\n\nhttps://h-a.d-cd.net/196e672s-960.jpg\n\nIf the test drive did not help much to understand how the car rulitsya, a little closer to meet him RS surprises with its responsiveness and quite understandable and predictable control!\n\nhttps://d-a.d-cd.net/ee61672s-960.jpg\n\nIt goes very cheerfully!\n\nWhat is very pleased, is the fact that after the \"stool\" A4 DTM on RSQ3 20 drives a smooth ride!\nThe car was in another city at the OD, a thousand kilometers. from the house, but because the expectation of a few days has been painfully slow.\nFor photos not scold -Made in haste night, anxious to put \u2026\n\nThen there will be photo shoot!\n\nFeatures and Specs\n\nEngine 2.5 gasoline (340 h.p.)\nRobotic\nall-wheel\nPurchased in 2015\nAudi RS Q3 in production since 2013", + "cashout_time": "1969-12-31T23:59:59", + "category": "audi", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-05T21:01:03", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 634545, + "json_metadata": "{\"tags\":[\"audi\",\"car\"],\"image\":[\"https://h-a.d-cd.net/905320as-960.jpg\"]}", + "last_payout": "2016-09-05T10:11:36", + "last_update": "2016-08-05T21:01:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "audi", + "percent_hbd": 10000, + "permlink": "audi-rs-q3-fl", + "reward_weight": 1915, + "root_author": "a11at", + "root_permlink": "audi-rs-q3-fl", + "title": "Audi RS Q3 FL", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T21:50:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Bitcoin, a Florida judge says, is not real money. Ironically, that could provide a boost to use of the crypto-currency which has remained in the shadows of the financial system.\n\nThe July 22 ruling by Miami-Dade Circuit Judge Teresa Pooler means that no specific license is needed to buy and sell bitcoins.\nThe judge dismissed a case against Michel Espinoza, who had faced money laundering and other criminal charges for attempting to sell $1,500 worth of bitcoins to an undercover agent who told the defendant he was going to use the virtual money to buy stolen credit card numbers.\nEspinoza's lawyer Rene Palomino said the judge acknowledged that it was not illegal to sell one's property and ruled that this did not constitute running an unauthorized financial service.\n\"He was selling his own personal bitcoins,\" Palomino said. \"This decision clears the way for you to do that in the state of the Florida without a money transmitting license.\"\nIn her ruling, Pooler said, \"this court is unwilling to punish a man for selling his property to another, when his actions fall under a statute that is so vaguely written that even legal professionals have difficulty finding a singular meaning.\"\n\nhttp://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\n\nShe added that \"this court is not an expert in economics,\" but that bitcoin \"has a long way to go before it is the equivalent of money.\"\nBitcoin, whose origins remain a mystery, is a virtual currency that is created from computer code and is not backed by any government. Advocates say this makes it an efficient alternative to traditional currencies because it is not subject to the whims of a state that may devalue its money to cut its debt, for example.\nBitcoins can be exchanged for goods and services, provided another party is willing to accept them, but until now they been used mostly for shady transactions or to buy illegal goods and services on the \"dark\" web.\nBitcoin was launched in 2009 as a bit of software written under the Japanese-sounding name Satoshi Nakamoto. This year Australian programmer Craig Wright claimed to be the author but failed to convince the broader bitcoin community.\nIn some areas of the United States bitcoin is accepted in stores, restaurants and online transactions, but it is illegal in some countries, notably France and China.\nIt is gaining ground in countries with high inflation such as Argentina and Venezuela.\nBut bitcoin values can be volatile. Over the past week its value slumped 20 percent in a day, then recouped most losses, after news that a Hong Kong bitcoin exchange had been hacked with some $65 million missing.\nImpact across US, world\nArthur Long, a lawyer specializing in the sector with the New York firm Gibson Dunn, said the July court ruling is a small victory for the virtual currency but that it's not clear if the interpretation will be the same in other US states or at the federal level.\n\"It may have an effect as some states are trying to use existing money transmitting statutes to regulate certain transactions in bitcoin,\" Long told AFP.\nCharles Evans, professor of finance at Barry University, said the ruling \"absolutely is going to provide some guidance in other courts\" and could potentially be used as a precedent in other countries to avoid the stigma associated with bitcoin use.\nBitcoins can store value and hedge against inflation, without being considered a monetary unit, according to Evans, who testified as an expert witness in the Florida trial.\n\"It can be used as an exchange,\" he said, and may be considered a commodity which can be used for bartering like fish or tobacco, for example.\nEvans noted that \"those who are not yet in the bitcoin community will be put on notice: as long as they organize their business in a particular way they can avoid the law.\"\nBut he added that \"people who are engaged in illegal activities will continue to do what they are going to do because they are criminals.\"", + "cashout_time": "1969-12-31T23:59:59", + "category": "bitcoin", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T21:50:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 651155, + "json_metadata": "{\"tags\":[\"bitcoin\",\"world\",\"country\",\"steemit\"],\"image\":[\"http://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\"]}", + "last_payout": "2016-09-06T09:52:18", + "last_update": "2016-08-06T21:50:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 5, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_hbd": 10000, + "permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "reward_weight": 1937, + "root_author": "a11at", + "root_permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "title": "Bitcoin not money, judge rules in victory for backers", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_root.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root.pat.json index 9d7993a7..8d50c46d 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 36906, - "author": "gtg", - "permlink": "hello-world", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "Hello, World!", - "body": "I'm Gandalf.\nThat's not my real name, but even my mom saved my number as ***Gandalf*** in her phone contact list.\nThat counts, right?\nI'm an IT Wizard, system admin, happily married, owner of a cat.\nOwned by a cat.\n\n![Nyunya](https://grey.house/img/niunia.jpg)\n\n**Nyunya** *(The Cat)* wants to watch everything I do, that's just her way of lending a helping paw. I’m not sure if she is so fascinated by what I do or she wants to make sure I do it right.\n\nWhy am I here? What is my motivation?\nNot much different from that guiding my cat:\nCuriosity and to be a witness (node?) of what is emerging here.\n\nMay the STEEM be with you!", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"cats\"],\"image\":[\"https://grey.house/img/niunia.jpg\"]}", - "last_update": "2016-07-10T12:39:42", - "created": "2016-07-03T16:35:03", - "active": "2016-07-10T12:39:42", - "last_payout": "2016-08-13T21:04:45", - "depth": 0, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "254288", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "16244", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1135218, - "net_votes": 44, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 36961, - "author": "trogdor", - "permlink": "re-gtg-hello-world-20160703t175141501z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "hello-world", - "title": "", - "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-07-03T17:51:48", - "created": "2016-07-03T17:51:48", - "active": "2016-07-03T17:51:48", - "last_payout": "2016-08-13T21:04:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 37187, - "author": "amartinezque", - "permlink": "re-gtg-hello-world-20160703t224527020z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "hello-world", - "title": "", - "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-07-03T22:45:27", - "created": "2016-07-03T22:45:27", - "active": "2016-07-03T22:45:27", - "last_payout": "2016-08-13T21:04:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 38471, - "author": "edu-lopov", - "permlink": "re-gtg-hello-world-20160704t182251522z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "hello-world", - "title": "", - "body": "Welcome to Steemit Gandalf!", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-07-04T18:22:51", - "created": "2016-07-04T18:22:51", - "active": "2016-07-04T18:22:51", - "last_payout": "2016-08-13T21:04:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 36909, - "author": "vadimberkut8", - "permlink": "excursion-to-the-exclusion-zone-chernobyl", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Excursion to the exclusion zone (Chernobyl)", - "body": "The Chernobyl was a catastrophic nuclear accident that occurred on 26 April 1986 at the Chernobyl Nuclear Power Plant in the city of Pripyat, that located in the Ukrainian Soviet Socialist Republic of the Soviet Union (USSR). An explosion and fire released large quantities of radioactive particles into the atmosphere, which spread over much of the western USSR and Europe.\n\n#### Somewhere in Prypiat... Radioactive waste storage.\n![](https://www.chernobyl-tour.com/uploads/photos/show/[2]_18_Oct_14/1001_rad_stor_p.jpg)\n\nIn Chernobyl live about 2,5-3 thousand employees of the Chernobyl Nuclear Power Plant.\n\nIn the city center is a stele dedicated to the tragedy, and immediately after it goes a long alley with tablets on which were written the names of villages were evacuated from the exclusion zone - more than one hundred thousand people.\n![](https://pp.vk.me/c623223/v623223264/28288/hWmrD88q4aU.jpg)\n\n#### Exhibition of equipment, which has been involved in the elimination of accident consequences.\n![](http://static36.cmtt.ru/paper-media/56/50/95/92416d07dc2c1b.jpg)\n\n#### Former kindergarten.\n![](http://static35.cmtt.ru/paper-media/68/37/0b/0c88a0c6291c8b.jpg)\n\nDo not put into words the emotions when the dosimeter begins beeping: you realize that something is wrong, but do not feel the threat, because it is invisible.\n![](http://static32.cmtt.ru/paper-media/85/d1/ab/14ca1a4510e4fe.jpg)\n\n#### Cooling tower - one of the most impressive objects\n![](https://pp.vk.me/c623223/v623223264/27e23/u5HHb3qRWC4.jpg)\n\n#### The radiation background is high enough\n![](http://static39.cmtt.ru/paper-media/2c/14/f8/a64255679c19c8.jpg)\n\n### Pripyat\n![](http://static37.cmtt.ru/paper-media/47/71/57/bb8cb4a3959226.jpg)\n\n![](https://pp.vk.me/c623223/v623223264/27fc1/gcUDCiOS8jU.jpg)\n\n![](https://pp.vk.me/c623223/v623223264/28012/lg3QJoVvT3c.jpg)\n\n![](http://static30.cmtt.ru/paper-media/02/ee/60/0ac975241e1382.jpg)\n\n![](http://static34.cmtt.ru/paper-media/63/10/b7/b93fa45f0fb84a.jpg)\n\nThis city is like a pressure on you, squeeze all the juice and energy.\n\nTours to Chernobyl and photos of excursions - https://www.chernobyl-tour.com/index.php", - "json_metadata": "{\"tags\":[\"photography\"],\"links\":[\"https://www.chernobyl-tour.com/uploads/photos/show/\"]}", - "last_update": "2016-07-03T16:37:33", - "created": "2016-07-03T16:37:33", - "active": "2016-08-05T11:31:21", - "last_payout": "2016-08-13T15:09:30", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "64", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "14", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 289, - "net_votes": 16, - "root_author": "vadimberkut8", - "root_permlink": "excursion-to-the-exclusion-zone-chernobyl", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 460983, - "author": "ori", - "permlink": "re-excursion-to-the-exclusion-zone-chernobyl", - "category": "photography", - "parent_author": "vadimberkut8", - "parent_permlink": "excursion-to-the-exclusion-zone-chernobyl", - "title": "", - "body": "Upvoted you", - "json_metadata": "{}", - "last_update": "2016-08-05T11:31:21", - "created": "2016-08-05T11:31:21", - "active": "2016-08-05T11:31:21", - "last_payout": "2016-08-13T15:09:30", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "102", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "33", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 56, - "net_votes": 1, - "root_author": "vadimberkut8", - "root_permlink": "excursion-to-the-exclusion-zone-chernobyl", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 36927, - "author": "acidsun", - "permlink": "wwe-champion-the-great-khali-for-ambuja-cement", - "category": "video", - "parent_author": "", - "parent_permlink": "video", - "title": "WWE champion the Great Khali for Ambuja Cement", - "body": "https://www.youtube.com/watch?v=ByoKOG3Y-bI", - "json_metadata": "{\"tags\":[\"video\"],\"links\":[\"https://www.youtube.com/watch?v=ByoKOG3Y-bI\"]}", - "last_update": "2016-07-03T17:03:15", - "created": "2016-07-03T17:03:15", - "active": "2016-08-05T11:32:00", - "last_payout": "2016-08-05T19:25:48", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 5, - "root_author": "acidsun", - "root_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 460994, - "author": "ori", - "permlink": "re-wwe-champion-the-great-khali-for-ambuja-cement", - "category": "video", - "parent_author": "acidsun", - "parent_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", - "title": "", - "body": "Upvoted you", - "json_metadata": "{}", - "last_update": "2016-08-05T11:32:00", - "created": "2016-08-05T11:32:00", - "active": "2016-08-05T11:32:00", - "last_payout": "2016-08-05T19:25:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "acidsun", - "root_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 36931, - "author": "bloggersclub", - "permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", - "category": "ecosystem", - "parent_author": "", - "parent_permlink": "ecosystem", - "title": "The Decentralized Conglomerate: Digital Leadership, Institutional Memory, and Semi-Autonomous Organizations", - "body": "It is with great pleasure I am introducing to you the world’s first conglomerate where ecosystems are represented by digital tokens and their unique qualities each complementing one another, all of them with one common denominator – they are all powered by the blockchain. A transparent, open and trustless powerhouse of information governed by no one and everyone with each participant in control of their own account. It is a symbiosis of perfection, trust, speed and transparency. Welcome to the future. \n\nThe below whitepaper has been created to support and substantiate the values presented in real time usecases via the Danish company Crypto Coins Enterprise Denmark ApS (CCEDK) as the Brain of the decentralized conglomerate, OpenLedger as the Platform, and the ecosystems OBITS, BTSR and ICOO as the body so far of content core ecosystems supporting eachother with many more ecosystems to come. As examples I wish to name the www.BitLand.world Cadastral and the Sollywood TV Solcerts expected to be added in the near future once able to actively particpate in complemting eachother across the ecosystems.\n\n\"The Decentralized Conglomerate represents the new paradigm of organizational operations, by applying the theoretical construct of digital leadership to the conceptual design of the DC ecosystems\"\n\nYou can have more information about CCEDK on their website: https://www.ccedk.com\n\nYours sincerely\nRonny Boesing\nCEO\nCCEDK Aps\n\nThe Decentralized Conglomerate: Digital Leadership, Institutional Memory, and Semi-Autonomous Organizations\n\n\nPrepared by L. Christopher Bates in co operation with https://www.ccedk.com \nVersion 1.0\n\nContents\nA Brief History of Decentralization\t3\nThe Death of Keynesian theory: Proto-Dynamism is born\t8\nThe Power of Crowdfunding\t11\nMandate of Heaven Dilemna\t17\nReferences\t23\n\n\nA Brief History of Decentralization\n\n\nA leader is best when people barely know he exists, when his work is done, his aim fulfilled, they will say: we did it ourselves.\n~Lao Tzu~\n\nDecentralization as an approach to organizing human teams and capital is nearly as old as written history itself. By the very nature of “decentralization”, it can only take place after “centralization” has occurred. Going back 4,000 years to the earliest days in China when divine right was still part of determining leadership, one can find deliberate implementations of decentralization in the application of managing how people operate. The common marriage of religion and bureaucratic hierarchies established environments in which distributed authority or fully decentralized authority became common. In times when information could not be relayed with the speed of modern day communications, having a unified goal inherently became more difficult as an empire expanded. \n\nEven beyond the nuances added by having mercenaries and slaves as part of an empire’s army, the speed of communication made large scale coordination extremely difficult over long distances. In historical examples, the larger an empire became, the rulers were forced to become either more despotic or more democratic. There was no stagnation in responsibility. As territories expanded, decisions inherently affected more populations. As populations became more diverse, it was inherently more difficult to find common ground in political agendas.\nTo understand the ebb and flow between centralization and decentralization, it is important to get a brief context of the emergence of dynasties in China. The current generally accepted date for the emergence of the first actual villages is placed around 5000 BCE. As the exact date cannot be determined, the approximate time frame gives a relative starting point to show the transition from scattered tribal communities to an actual empire that begins a line of dynasties to perpetually delineate power for a continuous historical record that continued into modern times.\nThe Xia Dynasty is accepted to be the first true empire that arose in China. As a marking point for the transition between the Stone Age and the Bronze Age, the major advances in development created the foundation for the long line of technological discoveries that were yet to come. One of the major accomplishments of the Xia Dynasty was the attempts to control the flooding of the Yellow River by Yu the Great. After Yu managed to get the Yellow River under control, he turned his attention to uniting the Sanmiao tribes. His feats and charisma allowed him to inspire people to follow him as a ruler, and his rule is not known to have been despotic in nature. He is credited with establishing the system of succession and in turn the very concept of a dynasty. In establishing a feudal system that articulated a ruling class and a working class, the innate power struggles of having an oppressed class would forever become a part of the changing political landscape.\n\nIn many ways, the early feudal states were examples of the beginnings of decentralization. As the first Dynasty united the tribes, one of the initial acts of necessity was dividing authority and defining roles. While the works on “Division of Labor” did not come until much later in the West, the beginnings of dividing labor for the sake of efficient production and management of capital were flourishing in the first Dynasties. As the power gradually became more unified over the first thousand years of dynasties in China, what is known as the “Mandate of Heaven” came to be the officially recognized union of Divine Right of Leadership and the role of making law. The inclusion of “Divine Right” meant that the government no longer held authority over choosing the leader in the presence of “Divinity”. This provision in the approach to passing down the rule allowed for many nefarious actors to manipulate their way into positions of leadership, but it did not hinder the overall development of the nation.\n\nAs the civilization grew and culture expanded, technology quickly accelerated, and many of the most famous philosophers and poets emerged from this period in Chinese history. It was at the end of the Zhou Dynasty that government became decentralized as the capitol city moved and a period of warring states began. The states were moving towards wanting sovereign rule for their individual states, but the rulers within the individual states wanted to claim the Mandate of Heaven. It was when Ying Zheng successfully defeated the other states and united them under his rule to proclaim himself the ‘First Emperor’ of China. One of his first acts as Emperor was to tear down the walls that separated the individual states, and start to build a wall surrounding all of the territories. While the wall does not remain intact today, the Great Wall of China is what remains of what was once a 3,000 mile long wall. As Ying - now known as Shi Huangti- conquered more lands, he became increasingly despotic with his rule. As the empire moved away from decentralization, the unified front allowed for major advancements to be made in building projects and military operations; but on the other hand the increased need to restrict information and free speech was a side effect of the increased authoritarian rule. It was not long after Shi Huangti’s death that the empire collapsed due to mismanagement by unfit rulers appointed solely because of nepotism. Once again, the dissolution of a centralized authority caused the territorial control to decentralize and inherently cause more power struggles.\nAs the Chinese territories expanded, and the dynasties changed names, the ebb and flow between decentralization and centralization was a continuous evolution that formed a middle ground between extremes. Any time leadership drifted too far in one direction, whether towards complete decentralization or complete centralization, the natural equilibrium became a mix of leadership styles, rather than a complete implementation of one ideology. Even into modern government application, what is often misunderstood as completely “Statist” or “Communist” actually has a complex mix of centralization and decentralization in the actual organization of government entities.\n\nTo get a better picture of why the centralized government must operate with some autonomy allowed within the economy, it is necessary to understand the organization of territories. There are three basic classifications of government oversight over a territory: province, county, and township. A further delineation of responsibilities separate prefectures under the jurisdiction of provinces, and villages are relegated to the authority of townships. There are twenty-two provinces, five autonomic regions, four municipalities, and two special administrative groups. China also has five autonomic regions that have equal status as provinces. The reasoning is that these autonomic regions are the homes of the majority of the country’s minority groups In the West, these regions may be seen as annexed states that are “under the control” of the Chinese government, when in reality they operate with relative autonomy. \n\nThe two special administrative regions are Hong Kong and Macao, which grant them special protections. These regions have their own currencies, passports, and judicial systems. While these separations, classifications, and nuances may be hard for a Westerner to initially grasp, the cultural approach to management and division of labor has been fairly consistent in China in its capacity to distribute power and authority seeking efficiency and a unified goal. In that regard, the problem of an individual looking to overthrow the leader and usurp the head of state role has also been a consistent problem for the duration of Chinese history. The “Byzantine General’s Problem” effectively originated 2500 years before the fall of the Byzantine empire. \n\nIn understanding the true nature of decentralization as a natural counterbalance to centralization, one must create a new paradigm that recognizes meritocracy as part of the process of establishing a leader or a system without a leader. In a true meritocracy, the presence of a leader is irrelevant to results. In this situation, we can establish the “Mandate of Heaven Dilemma”. This new problem becomes an issue of recognizing that if meritocracy is to be recognized, that arbitrary timing of leader or policy changes do not truly serve meritocracy. In the MoHD, a leader can be replaced at any time with a “better” leader if either the new leader proves herself worthy, or the crowd and populace choose to recognize the new authority. In either scenario, the intentions of the new leader are irrelevant. In this MoHD, the meritocracy will establish a paradigm in which the leadership position goes to the most effective and efficient leader with no regards to morality or ethics. \n\nIn many ways, the embodiment of what is desired to be the ideal “free market” would be the MoHD playing out on the macro and micro scale. If local leaders emerged based on merit, and were constantly at risk of being replaced by a “better” official, the evolution of the macro and micro systems would be accelerated. It is in understanding the benefits of centralization and decentralization in addition to the downfalls of both that a new paradigm can emerge to make more effective and efficient use of capital than has been previously known in human history. While Keynesian theory sprang forth in a post-industrialized world in an attempt to expound on new methods of scaling economies, it has become clear in modern times that those theories were formed heavily in favor of the oligarchies that existed in the 1800’s and turn of the 20th century. Many post-Keynesian theories have been articulated, but mainstream academia continues to cling to Keynesian theory as the dominant approach to forming economies. \n \nThe Death of Keynesian theory: Proto-Dynamism is born \nAs we see the global markets in turmoil and the European Union on the verge of collapse while Britain postures to exit, it is clear that a new paradigm of capital distribution, production, and management must emerge. Keynesian theory has produced a global market bubble that has seemingly popped, as the news of Britain Leaving the EU wiped $127 billion off the global markets in a single day. In light of the MoHD that has been presented, a new paradigm that emerges and proves better use of capital can either be adopted because it has proven it is better, the populace chooses to recognize it, or in a direct confrontation with the old paradigm it emerges with more resources and capital. In many ways, the concerted media attack on digital currencies and Bitcoin have represented the old paradigm’s first line of defense in attempting to preserve the legacy systems that currently control global capital distribution. \n\nIn presenting the MoHD, what is occurring in modern times is the merit of the old paradigm is being directly challenged. Whether one points at Bitcoin, Occupy Wall Street, the Green Movement in Iran, or the Gezi protests in Istanbul, the old paradigms that control the global markets are being challenged individually. In many ways, the Keynesian special interest groups have actively worked to compartmentalize the uprisings to ensure that the timing of individual revolts does not snowball into a global uprising against Keynesian theory. In an example, the media blacked out the Green movement in Iran, blacked out the Wisconsin protests that were the pre-cursor to Occupy Wall Street, and is currently blacking out the protests in France that are happening in June of 2016. The global mainstream media appears to actively compartmentalize these revolutions in individual contexts, rather than attempt to link them as a revolution against authoritarianism and the remnants of colonialism in modern times. \nWhile this article is not meant to speculate on conspiracy theories, what is meant to be presented is a post-Keynesian approach to capital distribution and management. Taking the thermo-economic approach to capital production and management, an organization must attempt to become a dynamo, which in physics is a machine that takes one source of energy and converts it to output energy to a receptor. The more efficient dynamos can surpass 100% efficiency and start to produce more energy than they take in, but these are theoretical dynamos based in quantum theory that are not yet attainable. \n \nIn the context of thermo-economics, creating a dynamo is an attempt to combine physical infrastructure, political management, and capital management into the most efficient economic machine possible. The machine only pays attention to efficiency, and pays no regard to the cogs; meaning that special interest groups have no meaning in the context of an economic dynamo. In this context, maintaining ethical standards and moral common ground becomes a function of the system; digital direct democracy.\n\nIf one looks at the Crypto Rush objectively, there have been more technological developments within the past six months than there were for the previous three years. This is perfectly in line with the technology associated with the gold rush, as the first miners were able to easily make money with pick-axes and panhandling, but as the gold became scarce, hydraulic drills and tech more advanced tech became necessary to mine the ore.\nJust the same with the influx of pyrite or “fool’s gold” following the gold rush, the “fool’s alts” have made an entire community jaded to the point of throwing out the word “scam” as if it were a common salutation. In the wild west of Cryptoland, the harsh realities of economic Darwinism coupled with the fantastic possibilities of thermo-economics have created a machine which I will call a “proto-dynamo”.\n\nIt is important to establish the “Proto-dynamo” as concept that represents an entirely new paradigm of economic infrastructure. The concept alludes to the “dynamo” which is a machine that uses opposing magnetic forces to efficiently produce/convert energy. The principle behind the dynamo is to use opposing forces within the same machine to get a consolidated output of energy. If the new paradigm of “protodynamism” can be represented by an electrical generator, the old paradigm of Keynesian theory can be represented by a meat grinder in which ten pounds of product goes in one side, and six ounces of tasteless sausage comes out the funnel possibly tainted with formaldehyde or some random pesticide that is unpronounceable.\n\nAs Marshall McLuhan predicted with his “global village” theory, the growth of mass media has quickly made information extremely accessible to the average individual. In tandem with an infrastructure that allows crowd-funding to bring ideas to fruition as fast as possible, progress of technology that is useful to society will be able to hit the most efficient point that has ever been recorded.\n\nThe Arab Spring has been an actual revolution fueled by technology and information sharing that would not have been possible without the ability to quickly share strings of 140 characters. With the ability to share information comes the ability to have shared experiences. What have been forecasted as digital tribes by Mcluhan are the logical extensions of a globe trying to break free of the archaic and imperialist paradigm of nation-states.\n \n \nThe Power of Crowdfunding\n\n One of the major benefits to having a Decentralized Conglomerate structure is the ability for capital to be accrued and used towards a given project. This means that organizations that are partnered into a DC have less friction between their organizations to slow down the movement of capital or take too much of the capital in the form of fees and overhead. In the context of multiple businesses working in complimentary industries, the capacity for organizations to pool money towards development has the potential to accelerate the speed at which all participants reach their desired outcomes. \n\nA traditional conglomerate is made up of a parent corporation with subsidiary companies. As well, there are shareholders that have a stake in the company. In some cases, there will be a board of directors in addition to the executive management. When it comes to leadership, the conglomerates are usually top-down hierarchies with the vision and direction coming from the leaders at the top. While the system is not democratic, a singular leader or group of leaders with the capacity to make executive decisions makes executing projects much simpler than having a completely decentralized operation. While there are varying degrees of oversight, generally the top-down structure is the standard for traditional conglomerates. \n \nSome levels of decentralization have taken place in larger corporations, as they have had to diversify to meet market demands. In these cases, the decentralization usually is implemented to give the subsidiary companies more autonomy, but in the context of the conglomerate, the parent company’s vision is still the guiding principle. Many companies have seen success in increasing their output or market share when moving towards a more decentralized management system. In this regard, “decentralization” will always imply that there was a higher level of centralization than previously. \n\nAs with the Chinese Dynasties, and in effect every other major empire or nation-state that has existed, the interplay between centralization and decentralization is a matter of the economic situation needing direct intervention or not; and further if economic intervention is ever needed, how many people must be involved in the decision making process. The more people are involved in a decision making process, by default the more time a decision takes. As well, when many people are affected by a decision, the smaller the number of people making the decision, the more likely a revolt against the outcome or the governing body will take place. It is in these extremes that the traditional conglomerate has major benefits from leadership, and major impediments if the leadership is either too slow or too draconian against the people’s will.\n\nCrowdfunding is anticipated to surpass venture capital in total global investments into the Fintech industry in 2016. As crowdfunding levels reached over $34 billion in total funds raised in 2015, crowdfunding as an industry is emerging in its own right. As laws are changing to keep up with digital currencies and assets, the landscape for raising funds has been forever changed as raising funds with or without equity shares has become accessible to anyone with Internet access and capital. The reality of the quickly changing market demands necessitate an agile organization that can react to market forces rather than attempting to resist the market in pursuit of following the course of what had been planned with no room for adjustment.\n\nWith the advent of Decentralized Autonomous Organizations (DAOs), the entire process of turning an idea into a tangible item gets taken out of the hands of corporations, and the development becomes an intimate exchange between the crowd and the actual developers. When an idea is presented to the crowd, the ideas that the crowd deems fit get funded.\n\nKickstarter is one of the most well-known crowd funding sources for start-up projects; but as cryptocurrency takes off teams like Mastercoin, Swarm, and Counterparty have created systems that allow crowd-funding to take on the direct route cutting out the middle man. As these systems are improved upon to create “trustless” infrastructures where there are safeguards to prevent exploitation within a trade, viable options to centralized banking are closer to reality.\n\nOpenLedger is attempting to harness the forces of crowdfunding and follow the trend of increased crowdfunding over VC, rather than try to fight the trend. OpenLedger has begun hosting crowd sales on its platform to enable businesses to raise funds for their organization, contribute to the growth of the OpenLedger DC, and add to the pool of capital for the DC. To give the platform a unified crowdfunding token, OpenLedger created ICOO, which stands for “Initial Coin Offering OpenLedger”.\n\nICOO was designed to be a token that represents the crowdfunding platform on OpenLedger. As the OpenLedger platform is robust and has many different elements, the crowdfunding aspect is another addition to establish a functional economic ecosystem. Instead of creating an ecosystem that only works for existing businesses and consumers, the OpenLedger platform will be useful to startups and existing businesses alike concerning raising capital through crowdfunding. \n \nICOO represents more than a crowdfunding portal. As there are many elements to executing a successful crowdfunding campaign, the OpenLedger/CCEDK team have laid out plans to organize advertising, generate literature and content, distribute content over social networks, and assist organizations with the transition to having a digital currency system. As well, OpenLedger will be providing tiered options to give organizations different levels of assistance with executing a crowd fund. \n\nThe BitTeaser advertising network is a major part of the OpenLedger ecosystem that will help crowdfunding projects get traction. Advertising is the biggest part of getting attention focused on a new project. The BitTeaser community executes paid placed advertisements on websites and affiliate websites, and in the context of crowdfunding, this service will be used for all projects using OpenLedger to fund their projects. \n\nIn tandem with the banner ads, the Obits community will contribute paid literature about a crowdfunded project through the 500 Blogger’s Club. The club has been focused on paying writers to generate content, and a partnership with the OpenLedger platform through the DC has added the element of producing content into the ecosystem. The synergy between BitTeaser and Obits will create an environment in which an organization looking to use OpenLedger can get all of their needs met in one place. Establishing a central point for an all-encompassing solution will make it easier for businesses to transition to digital currency systems, and in the process OpenLedger will benefit from the DC growth. \n \n  \nMandate of Heaven Dilemna\n\nThe MoHD is an issue of having a law, mandate, code, or agreed upon terms from which a “worthy” leader can usurp the current power structure. The fallout then becomes whether the population wants to recognize the mandate, and acknowledge that by taking over a power structure, the new leader proves herself worthy by default. If the population recognizes the MoH, the edicts and rules of the new leader become law. If the population does not recognize the MoH and decides to revolt against the new leader, the power struggle for leadership ignores the MoH and by proxy the new leader that emerges will ultimately have to give an explanation for ignoring the MoH, or in an attempt to reunify the territories, claim that the MoH was proven by the tertiary leader emerging. \n\nIn the context of blockchain technology, the recent failure of the DAO and the resulting identification of a problem with the code of Solidity has established a real world example of the MoHD. What was initially misdiagnosed as a “hack” that drained the DAO fund of around $60 million USD, was later shown to be a poorly written contract on top of code that had a fundamentally flawed approach to its voting and capital distribution mechanisms. In attempting to solve the “Byzantine General’s Problem”, the coders and system architects were either unaware of the MoHD, or did not give it the proper diligence in researching how it could affect the digital structure. \n\nEffectively, the Ethereum coders created a Mandate of Heaven for their blockchain, meaning if a coder or arbiter could effectively make use of the code or terms, whatever actions they took would be legally binding and technically in line with the protocol. In the DAO “attack”, there was no “attack”; effectively an arbiter realized that there was a Mandate of Heaven written into the code and in tandem the DAO “smart contract”. In moving $60 million into a “child DAO” following terms and conditions, the “Emperor” effectively took whatever she could and following the MoH to the letter, forcibly removed $60 million from the collective funds. \n\nThe resulting fallout has been a mixed combination of applications of theory. While the community has not had a unified voice, inevitably it has fallen on the shoulders of the Ethereum founders and architects to make the decisions necessary to attempt a resolution that will appease the community without compromising the integrity of the protocol. Effectively, the MoH is an agnostic principle that forces the leadership to be efficient with capital, beware of despotism causing revolutions, and painfully aware for the potential of his own removal. The last two aspects of the way the MoH affect leadership are seemingly contradictory, and may explain the common implosion of empires at the hands of draconian and brutal regimes that lose track of effective application of capital. \n\nAs well, the leaders that have emerged throughout history as having walked the balance between making effective use of capital and pleasing the needs of the population have seemingly understood the collective consciousness to the point of being able to unify the populations without having them lose their individual identities. In some cases, establishing a new collective identity was the answer to this dilemma, for example in the case of Mustafa Kemal Ataturk establishing the Turkish Republic after the collapse of the Ottoman Empire. \n\nWhile the emergence of the Turkish Republic did not happen immediately at the end of the empire, it was the unification of the Turkish population against the British in the Nationalist War of Independence, and the simultaneous internal power struggle of the secular republic against the religious regime that had dominated the region off and on since the 14th century that enabled a nuanced government to be established. In articulating “Kemalism”, Mustafa Kemal effectively created a “Mandate of Heaven” that ironically gave the military the concept to defend the population from any semblance of a religious monarchy at all costs. While the application of military intervention in a coup d’état may seem completely contradictory to democracy, over the last 100 years the Turkish military has shown that after a coup has occurred, the re-establishment of democratic voting is only a matter of ending the violence associated with the coup. In effect, the less violent a coup, the less collateral damage and fallout necessary to clean up before founding a new democracy. \n\nWhile the current Turkish government has drifted back near a religious monarchy, the traditional military intervention was pre-emptively deconstructed as Recep Erdogan had jailed many commanders, generals, and officials that would have been the voices of revolt. As the military had become the arm of the MoH in Turkey, the newly emerging Sultanate is establishing a more nepotistic neo-Ottoman empire. While Erdogan seemingly has mastered the Byzantine General’s problem by simply “jailing all the generals”, in dismantling the MoH he has effectively created a “Wild West” scenario. While there is a semblance of a unified government during the times of the Wild West, the furthest and most rural reaches of what is supposed to have government oversight has no oversight because the government doesn’t have the capacity to effectively monitor or secure the land. \n\nOne of the nuances of the Wild West is that the most powerful force dominates, and in that regard fairness and humanitarianism go out the window. There are no penalties for nepotism within government, and there are no real penalties for breaking laws in areas that the government can’t reach. This is where the world of digital currency has its common traits with actual human history. As digital currency is essentially a digital wild west, having regulators enforce laws in areas that they are not familiar is not only difficult, it becomes questionable if the old laws even apply in the newly charted territories. \n\nAs governments struggle to understand digital currencies and their implications, the world of digital currency is “taxed” but seemingly unprotected. The individuals who choose to participate in effect have to arm and protect themselves from attackers knowing that they will get no real assistance from the government that is taking taxes. In effect this wild west scenario breeds vigilantism and necessity for collective response to malicious actors. With the recent attack to the DAO, one of the counter-measures was to attack the original attacker; effectively this stayed inline with the MoH that was created within the Ethereum/Solidity/DAO protocol. \n\nA counter-attack against the DAO attacker #1 successfully secured $7 million in funds from the original $60 million. As the community scrambled to understand the implications of what had occurred, different approaches to solving the overarching problem were being attempted and theorized. One of the challenges facing the community was to decide whether to recognize the original MoH (soft fork and attack attacker #1), or destroy MoH and establish new rules (hard fork and have new genesis block). The Byzantine General’s problem has already been failed by the coders of Ethereum and the founders of the DAO in this scenario. The real issue was whether to recognize the MoH or to let the empire crumble completely and free up the locked capital to re-enter into the free market. \n\nThe DAO crisis has not yet come to an end as of the writing of this paper, and updates will be made to reflect the long term outcomes of that scenario. It is impossible to predict the outcome of any set of variables, however it is a responsibility of those who control capital to make effective and efficient use of the capital. This requires being informed about the history of capital, and how politics, war, science, art, literature, education, humanitarianism and countless other variables affect capital. It is an imperfect science that by proxy the practitioners must continue to strive towards an unachievable perfection. If decentralization is to properly be applied in a global economy, the application must be not only informed, but agile and able to evolve. Reaching a state of stasis is contradictory to the natural imperative of evolution. In effect, survival is a matter of constantly evolving whether in the context of nature or in the context of commercial industries. \n\nInstitutional memory becomes an imperative when it comes to keeping a unified organizational evolution moving. An example of institutional memory would be “Congress” or the “Supreme Court” in the United States government. The idea was that instead of having agnostic principles that were to have authority over a specific set of rules or actions, democracy would be applied to congress to decide a group of elected officials that would attempt to balance the desires of the people against the knowledge of the institutional memory of congress. \n\nIn the case of the Supreme Court, the idea is that a group of officials that are appointed by an elected official to represent balanced views of the country will also retain the institutional memory necessary to make informed decisions about establishing new rules and laws. In this context, having institutional memory reduces the necessity of retreading debates and theoretically is an attempt to move debate forward with the knowledge of everything that has occurred previously. \n\nWhen DAO theory was emerging, the concept of Digital Leadership had not quite been articulated, and the theoretical foundation of the DAO was ultimately rooted in a MoH that created a leaderless system where organizations were to function based around goals and objectives that were agreed upon, rather than the decision of a specific individual or group. Many attempts at creating DAOs have been attempted, with the recent Slockit DAO being the largest on record. While the Slockit DAO was the largest, the success of the project is debatable depending on what metric of “success” is being discussed.\n\nBitshares token could be considered one of the more successful DAO projects that utilizes a combination of Proof of Stake security with colored coin protocol to allow organizations to receive the benefits of decentralized security, and the benefits of having a centralized currency and platform. The ability for colored coins to be easily converted within the UI for bitshares makes access to any asset listed on the market equal. The result is that organizations have incentive to create their own representative asset knowing that there is a centralized platform that makes exchange for other assets easy and cost effective. \n\nBeyond remittance payments, organizational control of capital becomes a new opportunity for capital to become more efficiently used in the context of the global economy. Removing the resistance for capital to flow means that it can go from the least needed to the most needed areas, and in the process generate new capital rather than stagnate against inflation. In the context of thermos-economics, resting capital can be seen as “potential energy”, and capital that is being used is “kinetic energy”. If the global economic machine is to accelerate, it needs to convert the potential energy into kinetic energy as efficiently as possible. \n\nEfficiency with capital should be agnostic in the global economy. This is where a new paradigm of “Decentralized Conglomerates” apply thermos-economic theory in attempt to create an economic “Dynamo” that makes most effective use of balancing potential and kinetic energy. If a “reserve fund” is seen as a “battery” that turns kinetic energy into potential energy for storage, then creating a dynamo that has the correct number of “batteries” stored away to power the dynamo during phases in which the machine is not transforming any potential energy into kinetic becomes an agnostic principle that pays no regard to political party, religious affiliation, or special interest group. \nWhile this ideal state may seem unattainable, it is clear that attempting to achieve these goals will require a transitional period. During this transition, digital leadership must be employed to ensure that the capital does not go to waste. The DAO debacle shows the possibility that complete absence of Digital Leadership can result in a complete waste of potential energy with no resulting kinetic energy in the dynamo. It may be possible that a completely leaderless system is not desirable. Regardless, the DC makes an attempt at striking a balance between applying digital leadership and giving autonomy to special interest groups within the DC. The team at OpenLedger believes the Decentralized Conglomerate can be the economic engine that helps pilot the globe into the paradigm of the future. \n \nReferences\n\nDigital Leadership Definition - http://searchcio.techtarget.com/definition/digital-leadership?utm_medium=EM&asrc=EM_NLN_57771210&utm_campaign=20160524_Word%20of%20the%20Day:%20digital%20leadership_kherbert&utm_source=NLN&track=NL-1823&ad=907917&src=907917\n\nFuture of Crowdfunding in Belgium-\nhttps://bolero-crowdfunding.be/nl/news-events/news/financial-crowdfunding\n\nDigixDAO:\nhttp://allcoinsnews.com/2016/02/23/new-gold-linked-digital-token-platform-reveals-crowdsale-website-for-decentralized-organization\n\nConglomerate Definition:\nhttp://www.investopedia.com/terms/c/conglomerate.asp\n\nConglomerate Discount Problem:\nhttp://www.investopedia.com/terms/c/conglomeratediscount.asp\n\nAre Conglomerates Making a Comeback:\nhttp://www.omaha.com/money/are-conglomerates-making-a-comeback-berkshire-hathaway-s-business-model/article_a98b99a2-acca-5a89-9108-470d46a3fca8.html\n\nBlockchain startups make up 20% of largest crowdfunding projects\n\nhttp://venturebeat.com/2016/05/15/blockchain-startups-make-up-20-of-largest-crowdfunding-projects/\n\nThe DAO Way: Democratic Investment Fund:\n\nhttp://www.coinfox.info/news/reviews/5589-put-dao-demokraticheskij-investitsionnyj-fond-2\n\nThe DAO Block Explorer (The DAO is a decentralized autonomous organization established April 2016 that invests in other businesses. It is a digital organization with no conventional management structure or board of directors.):\n\nhttps://etherscan.io/token/TheDAO\n\nPillars of Digital Leadership:\n\nhttp://www.leadered.com/pdf/LeadingintheDigitalAge_11.14.pdf\n\nHow to be a Digital Leader:\n\n\nhttp://www.forbes.com/sites/iese/2013/08/23/how-to-be-a-digital-leader/#133b4ecd515d\n\nBank of Canada Deputy Governor: Cooperation Needed to Advance Distributed Ledgers:\n\nhttp://www.coindesk.com/bank-of-canada-distributed-ledger-tech/\n\nHistorical examples of Decentralization in Organizations/Empires:\n\nDecentralisation in the Ancient World:\nhttp://blog.richardsprague.com/2012/12/decentralization-in-ancient-world.html\n\nDecentralization: A one to many relationship. The Case of Greece:\n\nhttp://www.prd.uth.gr/sites/spatial_analysis/ekdoseis-dimosieyseis/mediterranean%20multiregionality%201997.pdf\n\nAncient Greece:\nhttp://www.shsu.edu/~his_ncp/Greece.html\n\nCentralization-Decentralization Cycle in China:\nhttp://www.vanderbilt.edu/econ/faculty/Wooders/APET/Pet2004/Papers/centralization%20decentralization%20cycle%20in%20china.pdf\n\nChina Between Centralization and Decentralization:\n\nhttp://gbtimes.com/world/china-between-centralization-and-decentralization\n\nNapoleon Bonaparte:\n\nhttps://en.wikipedia.org/wiki/Napoleon\n\nDecentralized Revolutions that have worked:\n\n -Berlin Wall http://www.nytimes.com/topic/subject/berlin-wall\n -French Revolution https://en.wikipedia.org/wiki/French_Revolution\n\n -Egyptian revolution http://www.thecairoreview.com/essays/egypts-leaderless-revolution/\n \n -Fall of the Soviet Union https://history.state.gov/milestones/1989-1992/collapse-soviet-union\n\n\n\nDecentralized Revolutions that failed:\n\nTypes of Democracy:\n\nhttps://en.wikipedia.org/wiki/Types_of_democracy\n\nBlockchain Company’s Smart Contracts Were Dumb:\n\nhttp://www.bloomberg.com/view/articles/2016-06-17/blockchain-company-s-smart-contracts-were-dumb\n\nThe DAO is Closing Down:\n\nhttp://www.coindesk.com/the-dao-is-closing-down/\n\nA Hacking of More than $50 Million Dashes Hopes in the World of Cryptocurrency: http://www.nytimes.com/2016/06/18/business/dealbook/hacker-may-have-removed-more-than-50-million-from-experimental-cybercurrency-project.html\n\nDAO Attacker Says 3M Ether Loss is Legal:\nhttp://www.livebitcoinnews.com/dao-attacker-says-3m-ether-loss-is-legal/\n\nOpen Letter to DAO and the Ethereum Community:\n\nhttps://steemit.com/ethereum/@chris4210/an-open-letter-to-the-dao-and-the-ethereum-community\n\nMt Gox-style Collapse of DAO: Ethereum Platform Is a Failed Experiment, Says Blockchain Expert:\nhttp://cointelegraph.com/news/mt-gox-style-collapse-of-dao-ethereum-platform-is-a-failed-experiment-says-blockchain-expert\n\nThe DAO: An Analysis of the Fallout:\n\nhttp://www.coindesk.com/the-dao-an-analysis-of-the-fallout/\n\nProposal: Safety through Standardized Wallets:\n\nhttps://medium.com/@Alex_Amsel/proposal-standard-wallets-for-d-a-os-a89a4cdcb4a6#.td2rpaivk\n\nThe DAO Byzantine Debate:\n\n\nhttps://steemit.com/dao/@joseph/the-dao-byzantine-debate\n\nCrisis Thinking, DAOs, and Democracy:\n\nhttps://medium.com/@Swarm/crisis-thinking-daos-and-democracy-a134b8c721a0#.dlvvv3tgc\n\nExclusive Full Interview Transcript With Alleged DAO “Attacker”:\n\nhttps://www.cryptocoinsnews.com/exclusive-full-interview-transcript-alleged-dao-attacker/\n\nSimple Contracts are Better Contracts: What We Can Learn From The DAO:\n\nhttps://blog.blockstack.org/simple-contracts-are-better-contracts-what-we-can-learn-from-the-dao-6293214bad3a#.xyiaycgba\n\nCrowdfunding set to Surpass VC in 2016:\n\nhttp://www.forbes.com/sites/chancebarnett/2015/06/09/trends-show-crowdfunding-to-surpass-vc-in-2016/", - "json_metadata": "{\"tags\":[\"ecosystem\",\"conglomerate\",\"fintech\",\"bloggers\",\"whitepaper\",\"decentralized\",\"forbes\",\"coindesk\",\"ccedk\",\"cryptocurrency\",\"openledger\",\"blockchain\",\"obits\",\"club\",\"digital\",\"token\"],\"links\":[\"https://www.ccedk.com\"]}", - "last_update": "2016-07-03T17:04:57", - "created": "2016-07-03T17:04:57", - "active": "2016-08-05T11:33:39", - "last_payout": "2016-08-05T22:01:00", - "depth": 0, - "children": 4, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "170", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "41", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 764, - "net_votes": 12, - "root_author": "bloggersclub", - "root_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 36962, - "author": "vato", - "permlink": "re-bloggersclub-the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations-20160703t175516580z", - "category": "ecosystem", - "parent_author": "bloggersclub", - "parent_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", - "title": "", - "body": "If you want more people to read your texts you should invest some time in formatting your texts and put some images in place, even if it is some kind of whitepaper.", - "json_metadata": "{\"tags\":[\"ecosystem\"]}", - "last_update": "2016-07-03T17:55:18", - "created": "2016-07-03T17:55:18", - "active": "2016-07-03T17:55:18", - "last_payout": "2016-08-05T22:01:00", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "bloggersclub", - "root_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-07-10T12:39:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 1135218, + "beneficiaries": [], + "body": "I'm Gandalf.\nThat's not my real name, but even my mom saved my number as ***Gandalf*** in her phone contact list.\nThat counts, right?\nI'm an IT Wizard, system admin, happily married, owner of a cat.\nOwned by a cat.\n\n![Nyunya](https://grey.house/img/niunia.jpg)\n\n**Nyunya** *(The Cat)* wants to watch everything I do, that's just her way of lending a helping paw. I\u2019m not sure if she is so fascinated by what I do or she wants to make sure I do it right.\n\nWhy am I here? What is my motivation?\nNot much different from that guiding my cat:\nCuriosity and to be a witness (node?) of what is emerging here.\n\nMay the STEEM be with you!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-07-03T16:35:03", + "curator_payout_value": { + "amount": "16244", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 51402, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"cats\"],\"image\":[\"https://grey.house/img/niunia.jpg\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-10T12:39:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "hello-world", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "Hello, World!", + "total_payout_value": { + "amount": "254288", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-03T17:51:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "trogdor", + "author_rewards": 0, + "beneficiaries": [], + "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-03T17:51:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 51479, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T17:51:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160703t175141501z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-03T22:45:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "amartinezque", + "author_rewards": 0, + "beneficiaries": [], + "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-03T22:45:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 51824, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T22:45:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160703t224527020z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-04T18:22:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "edu-lopov", + "author_rewards": 0, + "beneficiaries": [], + "body": "Welcome to Steemit Gandalf!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-04T18:22:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 53542, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-04T18:22:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160704t182251522z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-05T11:31:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vadimberkut8", + "author_rewards": 289, + "beneficiaries": [], + "body": "The Chernobyl was a catastrophic nuclear accident that occurred on 26 April 1986 at the Chernobyl Nuclear Power Plant in the city of Pripyat, that located in the Ukrainian Soviet Socialist Republic of the Soviet Union (USSR). An explosion and fire released large quantities of radioactive particles into the atmosphere, which spread over much of the western USSR and Europe.\n\n#### Somewhere in Prypiat... Radioactive waste storage.\n![](https://www.chernobyl-tour.com/uploads/photos/show/[2]_18_Oct_14/1001_rad_stor_p.jpg)\n\nIn Chernobyl live about 2,5-3 thousand employees of the Chernobyl Nuclear Power Plant.\n\nIn the city center is a stele dedicated to the tragedy, and immediately after it goes a long alley with tablets on which were written the names of villages were evacuated from the exclusion zone - more than one hundred thousand people.\n![](https://pp.vk.me/c623223/v623223264/28288/hWmrD88q4aU.jpg)\n\n#### Exhibition of equipment, which has been involved in the elimination of accident consequences.\n![](http://static36.cmtt.ru/paper-media/56/50/95/92416d07dc2c1b.jpg)\n\n#### Former kindergarten.\n![](http://static35.cmtt.ru/paper-media/68/37/0b/0c88a0c6291c8b.jpg)\n\nDo not put into words the emotions when the dosimeter begins beeping: you realize that something is wrong, but do not feel the threat, because it is invisible.\n![](http://static32.cmtt.ru/paper-media/85/d1/ab/14ca1a4510e4fe.jpg)\n\n#### Cooling tower - one of the most impressive objects\n![](https://pp.vk.me/c623223/v623223264/27e23/u5HHb3qRWC4.jpg)\n\n#### The radiation background is high enough\n![](http://static39.cmtt.ru/paper-media/2c/14/f8/a64255679c19c8.jpg)\n\n### Pripyat\n![](http://static37.cmtt.ru/paper-media/47/71/57/bb8cb4a3959226.jpg)\n\n![](https://pp.vk.me/c623223/v623223264/27fc1/gcUDCiOS8jU.jpg)\n\n![](https://pp.vk.me/c623223/v623223264/28012/lg3QJoVvT3c.jpg)\n\n![](http://static30.cmtt.ru/paper-media/02/ee/60/0ac975241e1382.jpg)\n\n![](http://static34.cmtt.ru/paper-media/63/10/b7/b93fa45f0fb84a.jpg)\n\nThis city is like a pressure on you, squeeze all the juice and energy.\n\nTours to Chernobyl and photos of excursions - https://www.chernobyl-tour.com/index.php", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-03T16:37:33", + "curator_payout_value": { + "amount": "14", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 36909, + "json_metadata": "{\"tags\":[\"photography\"],\"links\":[\"https://www.chernobyl-tour.com/uploads/photos/show/\"]}", + "last_payout": "2016-08-13T15:09:30", + "last_update": "2016-07-03T16:37:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 16, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "excursion-to-the-exclusion-zone-chernobyl", + "reward_weight": 10000, + "root_author": "vadimberkut8", + "root_permlink": "excursion-to-the-exclusion-zone-chernobyl", + "title": "Excursion to the exclusion zone (Chernobyl)", + "total_payout_value": { + "amount": "64", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-05T11:31:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ori", + "author_rewards": 56, + "beneficiaries": [], + "body": "Upvoted you", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-05T11:31:21", + "curator_payout_value": { + "amount": "33", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 460983, + "json_metadata": "{}", + "last_payout": "2016-08-13T15:09:30", + "last_update": "2016-08-05T11:31:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "vadimberkut8", + "parent_permlink": "excursion-to-the-exclusion-zone-chernobyl", + "percent_hbd": 10000, + "permlink": "re-excursion-to-the-exclusion-zone-chernobyl", + "reward_weight": 10000, + "root_author": "vadimberkut8", + "root_permlink": "excursion-to-the-exclusion-zone-chernobyl", + "title": "", + "total_payout_value": { + "amount": "102", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-05T11:32:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "acidsun", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://www.youtube.com/watch?v=ByoKOG3Y-bI", + "cashout_time": "1969-12-31T23:59:59", + "category": "video", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-03T17:03:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 36927, + "json_metadata": "{\"tags\":[\"video\"],\"links\":[\"https://www.youtube.com/watch?v=ByoKOG3Y-bI\"]}", + "last_payout": "2016-08-05T19:25:48", + "last_update": "2016-07-03T17:03:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 5, + "parent_author": "", + "parent_permlink": "video", + "percent_hbd": 10000, + "permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "reward_weight": 10000, + "root_author": "acidsun", + "root_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "title": "WWE champion the Great Khali for Ambuja Cement", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-05T11:32:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ori", + "author_rewards": 0, + "beneficiaries": [], + "body": "Upvoted you", + "cashout_time": "1969-12-31T23:59:59", + "category": "video", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-05T11:32:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 460994, + "json_metadata": "{}", + "last_payout": "2016-08-05T19:25:48", + "last_update": "2016-08-05T11:32:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "acidsun", + "parent_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "percent_hbd": 10000, + "permlink": "re-wwe-champion-the-great-khali-for-ambuja-cement", + "reward_weight": 10000, + "root_author": "acidsun", + "root_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-05T11:33:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "bloggersclub", + "author_rewards": 764, + "beneficiaries": [], + "body": "It is with great pleasure I am introducing to you the world\u2019s first conglomerate where ecosystems are represented by digital tokens and their unique qualities each complementing one another, all of them with one common denominator \u2013 they are all powered by the blockchain. A transparent, open and trustless powerhouse of information governed by no one and everyone with each participant in control of their own account. It is a symbiosis of perfection, trust, speed and transparency. Welcome to the future. \n\nThe below whitepaper has been created to support and substantiate the values presented in real time usecases via the Danish company Crypto Coins Enterprise Denmark ApS (CCEDK) as the Brain of the decentralized conglomerate, OpenLedger as the Platform, and the ecosystems OBITS, BTSR and ICOO as the body so far of content core ecosystems supporting eachother with many more ecosystems to come. As examples I wish to name the www.BitLand.world Cadastral and the Sollywood TV Solcerts expected to be added in the near future once able to actively particpate in complemting eachother across the ecosystems.\n\n\"The Decentralized Conglomerate represents the new paradigm of organizational operations, by applying the theoretical construct of digital leadership to the conceptual design of the DC ecosystems\"\n\nYou can have more information about CCEDK on their website: https://www.ccedk.com\n\nYours sincerely\nRonny Boesing\nCEO\nCCEDK Aps\n\nThe Decentralized Conglomerate: Digital Leadership, Institutional Memory, and Semi-Autonomous Organizations\n\n\nPrepared by L. Christopher Bates in co operation with https://www.ccedk.com \nVersion 1.0\n\nContents\nA Brief History of Decentralization\t3\nThe Death of Keynesian theory: Proto-Dynamism is born\t8\nThe Power of Crowdfunding\t11\nMandate of Heaven Dilemna\t17\nReferences\t23\n\n\nA Brief History of Decentralization\n\n\nA leader is best when people barely know he exists, when his work is done, his aim fulfilled, they will say: we did it ourselves.\n~Lao Tzu~\n\nDecentralization as an approach to organizing human teams and capital is nearly as old as written history itself. By the very nature of \u201cdecentralization\u201d, it can only take place after \u201ccentralization\u201d has occurred. Going back 4,000 years to the earliest days in China when divine right was still part of determining leadership, one can find deliberate implementations of decentralization in the application of managing how people operate. The common marriage of religion and bureaucratic hierarchies established environments in which distributed authority or fully decentralized authority became common. In times when information could not be relayed with the speed of modern day communications, having a unified goal inherently became more difficult as an empire expanded. \n\nEven beyond the nuances added by having mercenaries and slaves as part of an empire\u2019s army, the speed of communication made large scale coordination extremely difficult over long distances. In historical examples, the larger an empire became, the rulers were forced to become either more despotic or more democratic. There was no stagnation in responsibility. As territories expanded, decisions inherently affected more populations. As populations became more diverse, it was inherently more difficult to find common ground in political agendas.\nTo understand the ebb and flow between centralization and decentralization, it is important to get a brief context of the emergence of dynasties in China. The current generally accepted date for the emergence of the first actual villages is placed around 5000 BCE. As the exact date cannot be determined, the approximate time frame gives a relative starting point to show the transition from scattered tribal communities to an actual empire that begins a line of dynasties to perpetually delineate power for a continuous historical record that continued into modern times.\nThe Xia Dynasty is accepted to be the first true empire that arose in China. As a marking point for the transition between the Stone Age and the Bronze Age, the major advances in development created the foundation for the long line of technological discoveries that were yet to come. One of the major accomplishments of the Xia Dynasty was the attempts to control the flooding of the Yellow River by Yu the Great. After Yu managed to get the Yellow River under control, he turned his attention to uniting the Sanmiao tribes. His feats and charisma allowed him to inspire people to follow him as a ruler, and his rule is not known to have been despotic in nature. He is credited with establishing the system of succession and in turn the very concept of a dynasty. In establishing a feudal system that articulated a ruling class and a working class, the innate power struggles of having an oppressed class would forever become a part of the changing political landscape.\n\nIn many ways, the early feudal states were examples of the beginnings of decentralization. As the first Dynasty united the tribes, one of the initial acts of necessity was dividing authority and defining roles. While the works on \u201cDivision of Labor\u201d did not come until much later in the West, the beginnings of dividing labor for the sake of efficient production and management of capital were flourishing in the first Dynasties. As the power gradually became more unified over the first thousand years of dynasties in China, what is known as the \u201cMandate of Heaven\u201d came to be the officially recognized union of Divine Right of Leadership and the role of making law. The inclusion of \u201cDivine Right\u201d meant that the government no longer held authority over choosing the leader in the presence of \u201cDivinity\u201d. This provision in the approach to passing down the rule allowed for many nefarious actors to manipulate their way into positions of leadership, but it did not hinder the overall development of the nation.\n\nAs the civilization grew and culture expanded, technology quickly accelerated, and many of the most famous philosophers and poets emerged from this period in Chinese history. It was at the end of the Zhou Dynasty that government became decentralized as the capitol city moved and a period of warring states began. The states were moving towards wanting sovereign rule for their individual states, but the rulers within the individual states wanted to claim the Mandate of Heaven. It was when Ying Zheng successfully defeated the other states and united them under his rule to proclaim himself the \u2018First Emperor\u2019 of China. One of his first acts as Emperor was to tear down the walls that separated the individual states, and start to build a wall surrounding all of the territories. While the wall does not remain intact today, the Great Wall of China is what remains of what was once a 3,000 mile long wall. As Ying - now known as Shi Huangti- conquered more lands, he became increasingly despotic with his rule. As the empire moved away from decentralization, the unified front allowed for major advancements to be made in building projects and military operations; but on the other hand the increased need to restrict information and free speech was a side effect of the increased authoritarian rule. It was not long after Shi Huangti\u2019s death that the empire collapsed due to mismanagement by unfit rulers appointed solely because of nepotism. Once again, the dissolution of a centralized authority caused the territorial control to decentralize and inherently cause more power struggles.\nAs the Chinese territories expanded, and the dynasties changed names, the ebb and flow between decentralization and centralization was a continuous evolution that formed a middle ground between extremes. Any time leadership drifted too far in one direction, whether towards complete decentralization or complete centralization, the natural equilibrium became a mix of leadership styles, rather than a complete implementation of one ideology. Even into modern government application, what is often misunderstood as completely \u201cStatist\u201d or \u201cCommunist\u201d actually has a complex mix of centralization and decentralization in the actual organization of government entities.\n\nTo get a better picture of why the centralized government must operate with some autonomy allowed within the economy, it is necessary to understand the organization of territories. There are three basic classifications of government oversight over a territory: province, county, and township. A further delineation of responsibilities separate prefectures under the jurisdiction of provinces, and villages are relegated to the authority of townships. There are twenty-two provinces, five autonomic regions, four municipalities, and two special administrative groups. China also has five autonomic regions that have equal status as provinces. The reasoning is that these autonomic regions are the homes of the majority of the country\u2019s minority groups In the West, these regions may be seen as annexed states that are \u201cunder the control\u201d of the Chinese government, when in reality they operate with relative autonomy. \n\nThe two special administrative regions are Hong Kong and Macao, which grant them special protections. These regions have their own currencies, passports, and judicial systems. While these separations, classifications, and nuances may be hard for a Westerner to initially grasp, the cultural approach to management and division of labor has been fairly consistent in China in its capacity to distribute power and authority seeking efficiency and a unified goal. In that regard, the problem of an individual looking to overthrow the leader and usurp the head of state role has also been a consistent problem for the duration of Chinese history. The \u201cByzantine General\u2019s Problem\u201d effectively originated 2500 years before the fall of the Byzantine empire. \n\nIn understanding the true nature of decentralization as a natural counterbalance to centralization, one must create a new paradigm that recognizes meritocracy as part of the process of establishing a leader or a system without a leader. In a true meritocracy, the presence of a leader is irrelevant to results. In this situation, we can establish the \u201cMandate of Heaven Dilemma\u201d. This new problem becomes an issue of recognizing that if meritocracy is to be recognized, that arbitrary timing of leader or policy changes do not truly serve meritocracy. In the MoHD, a leader can be replaced at any time with a \u201cbetter\u201d leader if either the new leader proves herself worthy, or the crowd and populace choose to recognize the new authority. In either scenario, the intentions of the new leader are irrelevant. In this MoHD, the meritocracy will establish a paradigm in which the leadership position goes to the most effective and efficient leader with no regards to morality or ethics. \n\nIn many ways, the embodiment of what is desired to be the ideal \u201cfree market\u201d would be the MoHD playing out on the macro and micro scale. If local leaders emerged based on merit, and were constantly at risk of being replaced by a \u201cbetter\u201d official, the evolution of the macro and micro systems would be accelerated. It is in understanding the benefits of centralization and decentralization in addition to the downfalls of both that a new paradigm can emerge to make more effective and efficient use of capital than has been previously known in human history. While Keynesian theory sprang forth in a post-industrialized world in an attempt to expound on new methods of scaling economies, it has become clear in modern times that those theories were formed heavily in favor of the oligarchies that existed in the 1800\u2019s and turn of the 20th century. Many post-Keynesian theories have been articulated, but mainstream academia continues to cling to Keynesian theory as the dominant approach to forming economies. \n\u2003\nThe Death of Keynesian theory: Proto-Dynamism is born \nAs we see the global markets in turmoil and the European Union on the verge of collapse while Britain postures to exit, it is clear that a new paradigm of capital distribution, production, and management must emerge. Keynesian theory has produced a global market bubble that has seemingly popped, as the news of Britain Leaving the EU wiped $127 billion off the global markets in a single day. In light of the MoHD that has been presented, a new paradigm that emerges and proves better use of capital can either be adopted because it has proven it is better, the populace chooses to recognize it, or in a direct confrontation with the old paradigm it emerges with more resources and capital. In many ways, the concerted media attack on digital currencies and Bitcoin have represented the old paradigm\u2019s first line of defense in attempting to preserve the legacy systems that currently control global capital distribution. \n\nIn presenting the MoHD, what is occurring in modern times is the merit of the old paradigm is being directly challenged. Whether one points at Bitcoin, Occupy Wall Street, the Green Movement in Iran, or the Gezi protests in Istanbul, the old paradigms that control the global markets are being challenged individually. In many ways, the Keynesian special interest groups have actively worked to compartmentalize the uprisings to ensure that the timing of individual revolts does not snowball into a global uprising against Keynesian theory. In an example, the media blacked out the Green movement in Iran, blacked out the Wisconsin protests that were the pre-cursor to Occupy Wall Street, and is currently blacking out the protests in France that are happening in June of 2016. The global mainstream media appears to actively compartmentalize these revolutions in individual contexts, rather than attempt to link them as a revolution against authoritarianism and the remnants of colonialism in modern times. \nWhile this article is not meant to speculate on conspiracy theories, what is meant to be presented is a post-Keynesian approach to capital distribution and management. Taking the thermo-economic approach to capital production and management, an organization must attempt to become a dynamo, which in physics is a machine that takes one source of energy and converts it to output energy to a receptor. The more efficient dynamos can surpass 100% efficiency and start to produce more energy than they take in, but these are theoretical dynamos based in quantum theory that are not yet attainable. \n \nIn the context of thermo-economics, creating a dynamo is an attempt to combine physical infrastructure, political management, and capital management into the most efficient economic machine possible. The machine only pays attention to efficiency, and pays no regard to the cogs; meaning that special interest groups have no meaning in the context of an economic dynamo. In this context, maintaining ethical standards and moral common ground becomes a function of the system; digital direct democracy.\n\nIf one looks at the Crypto Rush objectively, there have been more technological developments within the past six months than there were for the previous three years. This is perfectly in line with the technology associated with the gold rush, as the first miners were able to easily make money with pick-axes and panhandling, but as the gold became scarce, hydraulic drills and tech more advanced tech became necessary to mine the ore.\nJust the same with the influx of pyrite or \u201cfool\u2019s gold\u201d following the gold rush, the \u201cfool\u2019s alts\u201d have made an entire community jaded to the point of throwing out the word \u201cscam\u201d as if it were a common salutation. In the wild west of Cryptoland, the harsh realities of economic Darwinism coupled with the fantastic possibilities of thermo-economics have created a machine which I will call a \u201cproto-dynamo\u201d.\n\nIt is important to establish the \u201cProto-dynamo\u201d as concept that represents an entirely new paradigm of economic infrastructure. The concept alludes to the \u201cdynamo\u201d which is a machine that uses opposing magnetic forces to efficiently produce/convert energy. The principle behind the dynamo is to use opposing forces within the same machine to get a consolidated output of energy. If the new paradigm of \u201cprotodynamism\u201d can be represented by an electrical generator, the old paradigm of Keynesian theory can be represented by a meat grinder in which ten pounds of product goes in one side, and six ounces of tasteless sausage comes out the funnel possibly tainted with formaldehyde or some random pesticide that is unpronounceable.\n\nAs Marshall McLuhan predicted with his \u201cglobal village\u201d theory, the growth of mass media has quickly made information extremely accessible to the average individual. In tandem with an infrastructure that allows crowd-funding to bring ideas to fruition as fast as possible, progress of technology that is useful to society will be able to hit the most efficient point that has ever been recorded.\n\nThe Arab Spring has been an actual revolution fueled by technology and information sharing that would not have been possible without the ability to quickly share strings of 140 characters. With the ability to share information comes the ability to have shared experiences. What have been forecasted as digital tribes by Mcluhan are the logical extensions of a globe trying to break free of the archaic and imperialist paradigm of nation-states.\n \n\u2003\nThe Power of Crowdfunding\n\n One of the major benefits to having a Decentralized Conglomerate structure is the ability for capital to be accrued and used towards a given project. This means that organizations that are partnered into a DC have less friction between their organizations to slow down the movement of capital or take too much of the capital in the form of fees and overhead. In the context of multiple businesses working in complimentary industries, the capacity for organizations to pool money towards development has the potential to accelerate the speed at which all participants reach their desired outcomes. \n\nA traditional conglomerate is made up of a parent corporation with subsidiary companies. As well, there are shareholders that have a stake in the company. In some cases, there will be a board of directors in addition to the executive management. When it comes to leadership, the conglomerates are usually top-down hierarchies with the vision and direction coming from the leaders at the top. While the system is not democratic, a singular leader or group of leaders with the capacity to make executive decisions makes executing projects much simpler than having a completely decentralized operation. While there are varying degrees of oversight, generally the top-down structure is the standard for traditional conglomerates. \n \nSome levels of decentralization have taken place in larger corporations, as they have had to diversify to meet market demands. In these cases, the decentralization usually is implemented to give the subsidiary companies more autonomy, but in the context of the conglomerate, the parent company\u2019s vision is still the guiding principle. Many companies have seen success in increasing their output or market share when moving towards a more decentralized management system. In this regard, \u201cdecentralization\u201d will always imply that there was a higher level of centralization than previously. \n\nAs with the Chinese Dynasties, and in effect every other major empire or nation-state that has existed, the interplay between centralization and decentralization is a matter of the economic situation needing direct intervention or not; and further if economic intervention is ever needed, how many people must be involved in the decision making process. The more people are involved in a decision making process, by default the more time a decision takes. As well, when many people are affected by a decision, the smaller the number of people making the decision, the more likely a revolt against the outcome or the governing body will take place. It is in these extremes that the traditional conglomerate has major benefits from leadership, and major impediments if the leadership is either too slow or too draconian against the people\u2019s will.\n\nCrowdfunding is anticipated to surpass venture capital in total global investments into the Fintech industry in 2016. As crowdfunding levels reached over $34 billion in total funds raised in 2015, crowdfunding as an industry is emerging in its own right. As laws are changing to keep up with digital currencies and assets, the landscape for raising funds has been forever changed as raising funds with or without equity shares has become accessible to anyone with Internet access and capital. The reality of the quickly changing market demands necessitate an agile organization that can react to market forces rather than attempting to resist the market in pursuit of following the course of what had been planned with no room for adjustment.\n\nWith the advent of Decentralized Autonomous Organizations (DAOs), the entire process of turning an idea into a tangible item gets taken out of the hands of corporations, and the development becomes an intimate exchange between the crowd and the actual developers. When an idea is presented to the crowd, the ideas that the crowd deems fit get funded.\n\nKickstarter is one of the most well-known crowd funding sources for start-up projects; but as cryptocurrency takes off teams like Mastercoin, Swarm, and Counterparty have created systems that allow crowd-funding to take on the direct route cutting out the middle man. As these systems are improved upon to create \u201ctrustless\u201d infrastructures where there are safeguards to prevent exploitation within a trade, viable options to centralized banking are closer to reality.\n\nOpenLedger is attempting to harness the forces of crowdfunding and follow the trend of increased crowdfunding over VC, rather than try to fight the trend. OpenLedger has begun hosting crowd sales on its platform to enable businesses to raise funds for their organization, contribute to the growth of the OpenLedger DC, and add to the pool of capital for the DC. To give the platform a unified crowdfunding token, OpenLedger created ICOO, which stands for \u201cInitial Coin Offering OpenLedger\u201d.\n\nICOO was designed to be a token that represents the crowdfunding platform on OpenLedger. As the OpenLedger platform is robust and has many different elements, the crowdfunding aspect is another addition to establish a functional economic ecosystem. Instead of creating an ecosystem that only works for existing businesses and consumers, the OpenLedger platform will be useful to startups and existing businesses alike concerning raising capital through crowdfunding. \n \nICOO represents more than a crowdfunding portal. As there are many elements to executing a successful crowdfunding campaign, the OpenLedger/CCEDK team have laid out plans to organize advertising, generate literature and content, distribute content over social networks, and assist organizations with the transition to having a digital currency system. As well, OpenLedger will be providing tiered options to give organizations different levels of assistance with executing a crowd fund. \n\nThe BitTeaser advertising network is a major part of the OpenLedger ecosystem that will help crowdfunding projects get traction. Advertising is the biggest part of getting attention focused on a new project. The BitTeaser community executes paid placed advertisements on websites and affiliate websites, and in the context of crowdfunding, this service will be used for all projects using OpenLedger to fund their projects. \n\nIn tandem with the banner ads, the Obits community will contribute paid literature about a crowdfunded project through the 500 Blogger\u2019s Club. The club has been focused on paying writers to generate content, and a partnership with the OpenLedger platform through the DC has added the element of producing content into the ecosystem. The synergy between BitTeaser and Obits will create an environment in which an organization looking to use OpenLedger can get all of their needs met in one place. Establishing a central point for an all-encompassing solution will make it easier for businesses to transition to digital currency systems, and in the process OpenLedger will benefit from the DC growth. \n \n \u2003\nMandate of Heaven Dilemna\n\nThe MoHD is an issue of having a law, mandate, code, or agreed upon terms from which a \u201cworthy\u201d leader can usurp the current power structure. The fallout then becomes whether the population wants to recognize the mandate, and acknowledge that by taking over a power structure, the new leader proves herself worthy by default. If the population recognizes the MoH, the edicts and rules of the new leader become law. If the population does not recognize the MoH and decides to revolt against the new leader, the power struggle for leadership ignores the MoH and by proxy the new leader that emerges will ultimately have to give an explanation for ignoring the MoH, or in an attempt to reunify the territories, claim that the MoH was proven by the tertiary leader emerging. \n\nIn the context of blockchain technology, the recent failure of the DAO and the resulting identification of a problem with the code of Solidity has established a real world example of the MoHD. What was initially misdiagnosed as a \u201chack\u201d that drained the DAO fund of around $60 million USD, was later shown to be a poorly written contract on top of code that had a fundamentally flawed approach to its voting and capital distribution mechanisms. In attempting to solve the \u201cByzantine General\u2019s Problem\u201d, the coders and system architects were either unaware of the MoHD, or did not give it the proper diligence in researching how it could affect the digital structure. \n\nEffectively, the Ethereum coders created a Mandate of Heaven for their blockchain, meaning if a coder or arbiter could effectively make use of the code or terms, whatever actions they took would be legally binding and technically in line with the protocol. In the DAO \u201cattack\u201d, there was no \u201cattack\u201d; effectively an arbiter realized that there was a Mandate of Heaven written into the code and in tandem the DAO \u201csmart contract\u201d. In moving $60 million into a \u201cchild DAO\u201d following terms and conditions, the \u201cEmperor\u201d effectively took whatever she could and following the MoH to the letter, forcibly removed $60 million from the collective funds. \n\nThe resulting fallout has been a mixed combination of applications of theory. While the community has not had a unified voice, inevitably it has fallen on the shoulders of the Ethereum founders and architects to make the decisions necessary to attempt a resolution that will appease the community without compromising the integrity of the protocol. Effectively, the MoH is an agnostic principle that forces the leadership to be efficient with capital, beware of despotism causing revolutions, and painfully aware for the potential of his own removal. The last two aspects of the way the MoH affect leadership are seemingly contradictory, and may explain the common implosion of empires at the hands of draconian and brutal regimes that lose track of effective application of capital. \n\nAs well, the leaders that have emerged throughout history as having walked the balance between making effective use of capital and pleasing the needs of the population have seemingly understood the collective consciousness to the point of being able to unify the populations without having them lose their individual identities. In some cases, establishing a new collective identity was the answer to this dilemma, for example in the case of Mustafa Kemal Ataturk establishing the Turkish Republic after the collapse of the Ottoman Empire. \n\nWhile the emergence of the Turkish Republic did not happen immediately at the end of the empire, it was the unification of the Turkish population against the British in the Nationalist War of Independence, and the simultaneous internal power struggle of the secular republic against the religious regime that had dominated the region off and on since the 14th century that enabled a nuanced government to be established. In articulating \u201cKemalism\u201d, Mustafa Kemal effectively created a \u201cMandate of Heaven\u201d that ironically gave the military the concept to defend the population from any semblance of a religious monarchy at all costs. While the application of military intervention in a coup d\u2019\u00e9tat may seem completely contradictory to democracy, over the last 100 years the Turkish military has shown that after a coup has occurred, the re-establishment of democratic voting is only a matter of ending the violence associated with the coup. In effect, the less violent a coup, the less collateral damage and fallout necessary to clean up before founding a new democracy. \n\nWhile the current Turkish government has drifted back near a religious monarchy, the traditional military intervention was pre-emptively deconstructed as Recep Erdogan had jailed many commanders, generals, and officials that would have been the voices of revolt. As the military had become the arm of the MoH in Turkey, the newly emerging Sultanate is establishing a more nepotistic neo-Ottoman empire. While Erdogan seemingly has mastered the Byzantine General\u2019s problem by simply \u201cjailing all the generals\u201d, in dismantling the MoH he has effectively created a \u201cWild West\u201d scenario. While there is a semblance of a unified government during the times of the Wild West, the furthest and most rural reaches of what is supposed to have government oversight has no oversight because the government doesn\u2019t have the capacity to effectively monitor or secure the land. \n\nOne of the nuances of the Wild West is that the most powerful force dominates, and in that regard fairness and humanitarianism go out the window. There are no penalties for nepotism within government, and there are no real penalties for breaking laws in areas that the government can\u2019t reach. This is where the world of digital currency has its common traits with actual human history. As digital currency is essentially a digital wild west, having regulators enforce laws in areas that they are not familiar is not only difficult, it becomes questionable if the old laws even apply in the newly charted territories. \n\nAs governments struggle to understand digital currencies and their implications, the world of digital currency is \u201ctaxed\u201d but seemingly unprotected. The individuals who choose to participate in effect have to arm and protect themselves from attackers knowing that they will get no real assistance from the government that is taking taxes. In effect this wild west scenario breeds vigilantism and necessity for collective response to malicious actors. With the recent attack to the DAO, one of the counter-measures was to attack the original attacker; effectively this stayed inline with the MoH that was created within the Ethereum/Solidity/DAO protocol. \n\nA counter-attack against the DAO attacker #1 successfully secured $7 million in funds from the original $60 million. As the community scrambled to understand the implications of what had occurred, different approaches to solving the overarching problem were being attempted and theorized. One of the challenges facing the community was to decide whether to recognize the original MoH (soft fork and attack attacker #1), or destroy MoH and establish new rules (hard fork and have new genesis block). The Byzantine General\u2019s problem has already been failed by the coders of Ethereum and the founders of the DAO in this scenario. The real issue was whether to recognize the MoH or to let the empire crumble completely and free up the locked capital to re-enter into the free market. \n\nThe DAO crisis has not yet come to an end as of the writing of this paper, and updates will be made to reflect the long term outcomes of that scenario. It is impossible to predict the outcome of any set of variables, however it is a responsibility of those who control capital to make effective and efficient use of the capital. This requires being informed about the history of capital, and how politics, war, science, art, literature, education, humanitarianism and countless other variables affect capital. It is an imperfect science that by proxy the practitioners must continue to strive towards an unachievable perfection. If decentralization is to properly be applied in a global economy, the application must be not only informed, but agile and able to evolve. Reaching a state of stasis is contradictory to the natural imperative of evolution. In effect, survival is a matter of constantly evolving whether in the context of nature or in the context of commercial industries. \n\nInstitutional memory becomes an imperative when it comes to keeping a unified organizational evolution moving. An example of institutional memory would be \u201cCongress\u201d or the \u201cSupreme Court\u201d in the United States government. The idea was that instead of having agnostic principles that were to have authority over a specific set of rules or actions, democracy would be applied to congress to decide a group of elected officials that would attempt to balance the desires of the people against the knowledge of the institutional memory of congress. \n\nIn the case of the Supreme Court, the idea is that a group of officials that are appointed by an elected official to represent balanced views of the country will also retain the institutional memory necessary to make informed decisions about establishing new rules and laws. In this context, having institutional memory reduces the necessity of retreading debates and theoretically is an attempt to move debate forward with the knowledge of everything that has occurred previously. \n\nWhen DAO theory was emerging, the concept of Digital Leadership had not quite been articulated, and the theoretical foundation of the DAO was ultimately rooted in a MoH that created a leaderless system where organizations were to function based around goals and objectives that were agreed upon, rather than the decision of a specific individual or group. Many attempts at creating DAOs have been attempted, with the recent Slockit DAO being the largest on record. While the Slockit DAO was the largest, the success of the project is debatable depending on what metric of \u201csuccess\u201d is being discussed.\n\nBitshares token could be considered one of the more successful DAO projects that utilizes a combination of Proof of Stake security with colored coin protocol to allow organizations to receive the benefits of decentralized security, and the benefits of having a centralized currency and platform. The ability for colored coins to be easily converted within the UI for bitshares makes access to any asset listed on the market equal. The result is that organizations have incentive to create their own representative asset knowing that there is a centralized platform that makes exchange for other assets easy and cost effective. \n\nBeyond remittance payments, organizational control of capital becomes a new opportunity for capital to become more efficiently used in the context of the global economy. Removing the resistance for capital to flow means that it can go from the least needed to the most needed areas, and in the process generate new capital rather than stagnate against inflation. In the context of thermos-economics, resting capital can be seen as \u201cpotential energy\u201d, and capital that is being used is \u201ckinetic energy\u201d. If the global economic machine is to accelerate, it needs to convert the potential energy into kinetic energy as efficiently as possible. \n\nEfficiency with capital should be agnostic in the global economy. This is where a new paradigm of \u201cDecentralized Conglomerates\u201d apply thermos-economic theory in attempt to create an economic \u201cDynamo\u201d that makes most effective use of balancing potential and kinetic energy. If a \u201creserve fund\u201d is seen as a \u201cbattery\u201d that turns kinetic energy into potential energy for storage, then creating a dynamo that has the correct number of \u201cbatteries\u201d stored away to power the dynamo during phases in which the machine is not transforming any potential energy into kinetic becomes an agnostic principle that pays no regard to political party, religious affiliation, or special interest group. \nWhile this ideal state may seem unattainable, it is clear that attempting to achieve these goals will require a transitional period. During this transition, digital leadership must be employed to ensure that the capital does not go to waste. The DAO debacle shows the possibility that complete absence of Digital Leadership can result in a complete waste of potential energy with no resulting kinetic energy in the dynamo. It may be possible that a completely leaderless system is not desirable. Regardless, the DC makes an attempt at striking a balance between applying digital leadership and giving autonomy to special interest groups within the DC. The team at OpenLedger believes the Decentralized Conglomerate can be the economic engine that helps pilot the globe into the paradigm of the future. \n \nReferences\n\nDigital Leadership Definition - http://searchcio.techtarget.com/definition/digital-leadership?utm_medium=EM&asrc=EM_NLN_57771210&utm_campaign=20160524_Word%20of%20the%20Day:%20digital%20leadership_kherbert&utm_source=NLN&track=NL-1823&ad=907917&src=907917\n\nFuture of Crowdfunding in Belgium-\nhttps://bolero-crowdfunding.be/nl/news-events/news/financial-crowdfunding\n\nDigixDAO:\nhttp://allcoinsnews.com/2016/02/23/new-gold-linked-digital-token-platform-reveals-crowdsale-website-for-decentralized-organization\n\nConglomerate Definition:\nhttp://www.investopedia.com/terms/c/conglomerate.asp\n\nConglomerate Discount Problem:\nhttp://www.investopedia.com/terms/c/conglomeratediscount.asp\n\nAre Conglomerates Making a Comeback:\nhttp://www.omaha.com/money/are-conglomerates-making-a-comeback-berkshire-hathaway-s-business-model/article_a98b99a2-acca-5a89-9108-470d46a3fca8.html\n\nBlockchain startups make up 20% of largest crowdfunding projects\n\nhttp://venturebeat.com/2016/05/15/blockchain-startups-make-up-20-of-largest-crowdfunding-projects/\n\nThe DAO Way: Democratic Investment Fund:\n\nhttp://www.coinfox.info/news/reviews/5589-put-dao-demokraticheskij-investitsionnyj-fond-2\n\nThe DAO Block Explorer (The DAO is a decentralized autonomous organization established April 2016 that invests in other businesses. It is a digital organization with no conventional management structure or board of directors.):\n\nhttps://etherscan.io/token/TheDAO\n\nPillars of Digital Leadership:\n\nhttp://www.leadered.com/pdf/LeadingintheDigitalAge_11.14.pdf\n\nHow to be a Digital Leader:\n\n\nhttp://www.forbes.com/sites/iese/2013/08/23/how-to-be-a-digital-leader/#133b4ecd515d\n\nBank of Canada Deputy Governor: Cooperation Needed to Advance Distributed Ledgers:\n\nhttp://www.coindesk.com/bank-of-canada-distributed-ledger-tech/\n\nHistorical examples of Decentralization in Organizations/Empires:\n\nDecentralisation in the Ancient World:\nhttp://blog.richardsprague.com/2012/12/decentralization-in-ancient-world.html\n\nDecentralization: A one to many relationship. The Case of Greece:\n\nhttp://www.prd.uth.gr/sites/spatial_analysis/ekdoseis-dimosieyseis/mediterranean%20multiregionality%201997.pdf\n\nAncient Greece:\nhttp://www.shsu.edu/~his_ncp/Greece.html\n\nCentralization-Decentralization Cycle in China:\nhttp://www.vanderbilt.edu/econ/faculty/Wooders/APET/Pet2004/Papers/centralization%20decentralization%20cycle%20in%20china.pdf\n\nChina Between Centralization and Decentralization:\n\nhttp://gbtimes.com/world/china-between-centralization-and-decentralization\n\nNapoleon Bonaparte:\n\nhttps://en.wikipedia.org/wiki/Napoleon\n\nDecentralized Revolutions that have worked:\n\n -Berlin Wall http://www.nytimes.com/topic/subject/berlin-wall\n -French Revolution https://en.wikipedia.org/wiki/French_Revolution\n\n -Egyptian revolution http://www.thecairoreview.com/essays/egypts-leaderless-revolution/\n \n -Fall of the Soviet Union https://history.state.gov/milestones/1989-1992/collapse-soviet-union\n\n\n\nDecentralized Revolutions that failed:\n\nTypes of Democracy:\n\nhttps://en.wikipedia.org/wiki/Types_of_democracy\n\nBlockchain Company\u2019s Smart Contracts Were Dumb:\n\nhttp://www.bloomberg.com/view/articles/2016-06-17/blockchain-company-s-smart-contracts-were-dumb\n\nThe DAO is Closing Down:\n\nhttp://www.coindesk.com/the-dao-is-closing-down/\n\nA Hacking of More than $50 Million Dashes Hopes in the World of Cryptocurrency: http://www.nytimes.com/2016/06/18/business/dealbook/hacker-may-have-removed-more-than-50-million-from-experimental-cybercurrency-project.html\n\nDAO Attacker Says 3M Ether Loss is Legal:\nhttp://www.livebitcoinnews.com/dao-attacker-says-3m-ether-loss-is-legal/\n\nOpen Letter to DAO and the Ethereum Community:\n\nhttps://steemit.com/ethereum/@chris4210/an-open-letter-to-the-dao-and-the-ethereum-community\n\nMt Gox-style Collapse of DAO: Ethereum Platform Is a Failed Experiment, Says Blockchain Expert:\nhttp://cointelegraph.com/news/mt-gox-style-collapse-of-dao-ethereum-platform-is-a-failed-experiment-says-blockchain-expert\n\nThe DAO: An Analysis of the Fallout:\n\nhttp://www.coindesk.com/the-dao-an-analysis-of-the-fallout/\n\nProposal: Safety through Standardized Wallets:\n\nhttps://medium.com/@Alex_Amsel/proposal-standard-wallets-for-d-a-os-a89a4cdcb4a6#.td2rpaivk\n\nThe DAO Byzantine Debate:\n\n\nhttps://steemit.com/dao/@joseph/the-dao-byzantine-debate\n\nCrisis Thinking, DAOs, and Democracy:\n\nhttps://medium.com/@Swarm/crisis-thinking-daos-and-democracy-a134b8c721a0#.dlvvv3tgc\n\nExclusive Full Interview Transcript With Alleged DAO \u201cAttacker\u201d:\n\nhttps://www.cryptocoinsnews.com/exclusive-full-interview-transcript-alleged-dao-attacker/\n\nSimple Contracts are Better Contracts: What We Can Learn From The DAO:\n\nhttps://blog.blockstack.org/simple-contracts-are-better-contracts-what-we-can-learn-from-the-dao-6293214bad3a#.xyiaycgba\n\nCrowdfunding set to Surpass VC in 2016:\n\nhttp://www.forbes.com/sites/chancebarnett/2015/06/09/trends-show-crowdfunding-to-surpass-vc-in-2016/", + "cashout_time": "1969-12-31T23:59:59", + "category": "ecosystem", + "children": 4, + "children_abs_rshares": 0, + "created": "2016-07-03T17:04:57", + "curator_payout_value": { + "amount": "41", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 36931, + "json_metadata": "{\"tags\":[\"ecosystem\",\"conglomerate\",\"fintech\",\"bloggers\",\"whitepaper\",\"decentralized\",\"forbes\",\"coindesk\",\"ccedk\",\"cryptocurrency\",\"openledger\",\"blockchain\",\"obits\",\"club\",\"digital\",\"token\"],\"links\":[\"https://www.ccedk.com\"]}", + "last_payout": "2016-08-05T22:01:00", + "last_update": "2016-07-03T17:04:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 12, + "parent_author": "", + "parent_permlink": "ecosystem", + "percent_hbd": 10000, + "permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "reward_weight": 10000, + "root_author": "bloggersclub", + "root_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "title": "The Decentralized Conglomerate: Digital Leadership, Institutional Memory, and Semi-Autonomous Organizations", + "total_payout_value": { + "amount": "170", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-03T17:55:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vato", + "author_rewards": 0, + "beneficiaries": [], + "body": "If you want more people to read your texts you should invest some time in formatting your texts and put some images in place, even if it is some kind of whitepaper.", + "cashout_time": "1969-12-31T23:59:59", + "category": "ecosystem", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-03T17:55:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 36962, + "json_metadata": "{\"tags\":[\"ecosystem\"]}", + "last_payout": "2016-08-05T22:01:00", + "last_update": "2016-07-03T17:55:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "bloggersclub", + "parent_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "percent_hbd": 10000, + "permlink": "re-bloggersclub-the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations-20160703t175516580z", + "reward_weight": 10000, + "root_author": "bloggersclub", + "root_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json index 6a906641..5b05fcef 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 780100, - "author": "vi1son", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Congratulations to the winners. We are waiting for the new competition.", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T17:29:57", - "created": "2016-08-28T17:29:57", - "active": "2016-08-29T13:45:42", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "16", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "3", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 18, - "net_votes": 3, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780336, - "author": "givemeyoursteem", - "permlink": "re-vi1son-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t175015557z", - "category": "foodchallenge", - "parent_author": "vi1son", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", - "title": "", - "body": "We will announce next weeks theme soon, hope to see you there!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T17:50:15", - "created": "2016-08-28T17:50:15", - "active": "2016-08-29T13:45:42", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780560, - "author": "knozaki2015", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "24 seconds from now\tTransfer 25.000 SBD to foxxycat\tCongrats 4th place Steemit Food Challenge #3 (sponsor @knozaki2015)", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\"]}", - "last_update": "2016-08-28T18:11:06", - "created": "2016-08-28T18:11:06", - "active": "2016-08-28T18:12:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780584, - "author": "givemeyoursteem", - "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", - "category": "foodchallenge", - "parent_author": "knozaki2015", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", - "title": "", - "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", - "last_update": "2016-08-28T18:12:39", - "created": "2016-08-28T18:12:39", - "active": "2016-08-28T18:12:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780673, - "author": "oumar", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Uuh, I didn't have enough time to participate :( and I do make some really delicious desserts.", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T18:21:39", - "created": "2016-08-28T18:21:39", - "active": "2016-08-28T18:26:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780727, - "author": "givemeyoursteem", - "permlink": "re-oumar-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182639249z", - "category": "foodchallenge", - "parent_author": "oumar", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", - "title": "", - "body": "Yeah we missed your post! But no worry, there will be a new challenge very soon :)", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T18:26:39", - "created": "2016-08-28T18:26:39", - "active": "2016-08-28T18:26:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 781174, - "author": "papa-pepper", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Excellent Job everyone who entered!\n# Great job picking the winners too! I couldn't agree more!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T19:02:12", - "created": "2016-08-28T19:02:12", - "active": "2016-08-28T19:25:24", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 781462, - "author": "givemeyoursteem", - "permlink": "re-papa-pepper-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t192523201z", - "category": "foodchallenge", - "parent_author": "papa-pepper", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", - "title": "", - "body": "Yes I'm moved by all effort, you Steemit Food Challengers are the best! \nThanks, it's always a hard choice to make! :)", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T19:25:24", - "created": "2016-08-28T19:25:24", - "active": "2016-08-28T19:25:24", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 781704, - "author": "the-future", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t194439865z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Congratulations to all!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T19:44:48", - "created": "2016-08-28T19:44:48", - "active": "2016-08-28T19:44:48", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 782837, - "author": "crypt0mine", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t213253576z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Thank you very much! =)", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T21:32:54", - "created": "2016-08-28T21:32:54", - "active": "2016-08-28T21:44:12", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vi1son", + "author_rewards": 18, + "beneficiaries": [], + "body": "Congratulations to the winners. We are waiting for the new competition.", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-28T17:29:57", + "curator_payout_value": { + "amount": "3", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780100, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:29:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "16", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "We will announce next weeks theme soon, hope to see you there!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:50:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780336, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:50:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "vi1son", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "percent_hbd": 10000, + "permlink": "re-vi1son-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t175015557z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "knozaki2015", + "author_rewards": 0, + "beneficiaries": [], + "body": "24 seconds from now\tTransfer 25.000 SBD to foxxycat\tCongrats 4th place Steemit Food Challenge #3 (sponsor @knozaki2015)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T18:11:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780560, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:11:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T18:12:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780584, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:12:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:26:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "oumar", + "author_rewards": 0, + "beneficiaries": [], + "body": "Uuh, I didn't have enough time to participate :( and I do make some really delicious desserts.", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T18:21:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780673, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:21:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:26:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yeah we missed your post! But no worry, there will be a new challenge very soon :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T18:26:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780727, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:26:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "oumar", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "percent_hbd": 10000, + "permlink": "re-oumar-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182639249z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:25:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "papa-pepper", + "author_rewards": 0, + "beneficiaries": [], + "body": "Excellent Job everyone who entered!\n# Great job picking the winners too! I couldn't agree more!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T19:02:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 781174, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:02:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:25:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yes I'm moved by all effort, you Steemit Food Challengers are the best! \nThanks, it's always a hard choice to make! :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T19:25:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 781462, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:25:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "papa-pepper", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "percent_hbd": 10000, + "permlink": "re-papa-pepper-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t192523201z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:44:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "the-future", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congratulations to all!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T19:44:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 781704, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:44:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t194439865z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T21:44:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "crypt0mine", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you very much! =)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T21:32:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 782837, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T21:32:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t213253576z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json index 9f7efed6..0608ccf8 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 0, - "author": "steemit", - "permlink": "firstpost", - "category": "meta", - "parent_author": "", - "parent_permlink": "meta", - "title": "Welcome to Steem!", - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "json_metadata": "", - "last_update": "2016-03-30T18:30:18", - "created": "2016-03-30T18:30:18", - "active": "2016-08-24T09:30:03", - "last_payout": "2016-08-24T19:59:42", - "depth": 0, - "children": 36, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "942", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "756", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 3548, - "net_votes": 90, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 1, - "author": "admin", - "permlink": "firstpost", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "", - "body": "First Reply! Let's get this **party** started", - "json_metadata": "", - "last_update": "2016-03-30T19:52:30", - "created": "2016-03-30T19:52:30", - "active": "2016-07-18T19:53:12", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 2, - "net_rshares": -226592300084, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 8, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 2, - "author": "proskynneo", - "permlink": "steemit-firstpost-1", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "Excited!", - "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", - "json_metadata": "", - "last_update": "2016-03-31T13:54:33", - "created": "2016-03-31T13:54:33", - "active": "2016-03-31T13:54:33", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "1058", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "1059", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 4817, - "net_votes": 7, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 3, - "author": "red", - "permlink": "steemit-firstpost-2", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "Did you Know?", - "body": "Did you know you can earn STEEM by commenting on posts?", - "json_metadata": "{}", - "last_update": "2016-04-06T19:22:42", - "created": "2016-04-06T19:22:42", - "active": "2016-07-13T08:38:48", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "100", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "100", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 457, - "net_votes": 7, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 100, - "author": "steem-id", - "permlink": "re-red-steemit-firstpost-2", - "category": "meta", - "parent_author": "red", - "parent_permlink": "steemit-firstpost-2", - "title": "Nice", - "body": "Can I get some :D", - "json_metadata": "{}", - "last_update": "2016-04-13T03:48:36", - "created": "2016-04-13T03:48:36", - "active": "2016-04-13T03:48:36", - "last_payout": "2016-08-24T19:59:42", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 66968, - "author": "business", - "permlink": "re-steemit-firstpost-20160713t082910980z", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "", - "body": "Welcome to steemit, @steemit.", - "json_metadata": "{\"tags\":[\"meta\"]}", - "last_update": "2016-07-13T08:29:36", - "created": "2016-07-13T08:29:15", - "active": "2016-07-13T08:29:36", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "36", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 56, - "net_votes": 8, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 67008, - "author": "business", - "permlink": "re-red-steemit-firstpost-2-20160713t083846149z", - "category": "meta", - "parent_author": "red", - "parent_permlink": "steemit-firstpost-2", - "title": "", - "body": "No way?", - "json_metadata": "{\"tags\":[\"meta\"]}", - "last_update": "2016-07-13T08:38:48", - "created": "2016-07-13T08:38:48", - "active": "2016-07-13T08:38:48", - "last_payout": "2016-08-24T19:59:42", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 110487, - "author": "kingtylervvs", - "permlink": "re-admin-firstpost-20160717t193811098z", - "category": "meta", - "parent_author": "admin", - "parent_permlink": "firstpost", - "title": "", - "body": "PARTY PARTY.... P - A - R - T - Y????? BECAUSE I GOTTA!", - "json_metadata": "{\"tags\":[\"meta\"]}", - "last_update": "2016-07-17T19:38:12", - "created": "2016-07-17T19:38:12", - "active": "2016-07-17T19:38:12", - "last_payout": "2016-08-24T19:59:42", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 125759, - "author": "gopher", - "permlink": "re-admin-firstpost-20160718t195306992z", - "category": "meta", - "parent_author": "admin", - "parent_permlink": "firstpost", - "title": "", - "body": "Are you admin in steem? If you have been hacked, who can help you?", - "json_metadata": "{\"tags\":[\"meta\"]}", - "last_update": "2016-07-18T19:53:12", - "created": "2016-07-18T19:53:12", - "active": "2016-07-18T19:53:12", - "last_payout": "2016-08-24T19:59:42", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 125823, - "author": "gopher", - "permlink": "re-steemit-firstpost-20160718t195806340z", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "", - "body": "http://steem.com/@bittrex/transfers how this user can have these tranfers without any activity?", - "json_metadata": "{\"tags\":[\"meta\"],\"links\":[\"http://steem.com/@bittrex/transfers\"]}", - "last_update": "2016-07-18T19:58:09", - "created": "2016-07-18T19:58:09", - "active": "2016-07-20T18:36:24", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-24T09:30:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit", + "author_rewards": 3548, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "children_abs_rshares": 0, + "created": "2016-03-30T18:30:18", + "curator_payout_value": { + "amount": "756", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 0, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 90, + "parent_author": "", + "parent_permlink": "meta", + "percent_hbd": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Welcome to Steem!", + "total_payout_value": { + "amount": "942", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-18T19:53:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "admin", + "author_rewards": 0, + "beneficiaries": [], + "body": "First Reply! Let's get this **party** started", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-03-30T19:52:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T19:52:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -226592300084, + "net_votes": 8, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-03-31T13:54:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "proskynneo", + "author_rewards": 4817, + "beneficiaries": [], + "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-03-31T13:54:33", + "curator_payout_value": { + "amount": "1059", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 2, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-31T13:54:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-1", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Excited!", + "total_payout_value": { + "amount": "1058", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T08:38:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 457, + "beneficiaries": [], + "body": "Did you know you can earn STEEM by commenting on posts?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-06T19:22:42", + "curator_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 3, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-04-06T19:22:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-2", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Did you Know?", + "total_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-13T03:48:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steem-id", + "author_rewards": 0, + "beneficiaries": [], + "body": "Can I get some :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-13T03:48:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 100, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-04-13T03:48:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "red", + "parent_permlink": "steemit-firstpost-2", + "percent_hbd": 10000, + "permlink": "re-red-steemit-firstpost-2", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Nice", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T08:29:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "business", + "author_rewards": 56, + "beneficiaries": [], + "body": "Welcome to steemit, @steemit.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-13T08:29:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 66968, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-13T08:29:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 8, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160713t082910980z", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "36", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T08:38:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "business", + "author_rewards": 0, + "beneficiaries": [], + "body": "No way?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-13T08:38:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 67008, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-13T08:38:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "red", + "parent_permlink": "steemit-firstpost-2", + "percent_hbd": 10000, + "permlink": "re-red-steemit-firstpost-2-20160713t083846149z", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-17T19:38:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "kingtylervvs", + "author_rewards": 0, + "beneficiaries": [], + "body": "PARTY PARTY.... P - A - R - T - Y????? BECAUSE I GOTTA!", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-17T19:38:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 110487, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-17T19:38:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "admin", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "re-admin-firstpost-20160717t193811098z", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-18T19:53:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gopher", + "author_rewards": 0, + "beneficiaries": [], + "body": "Are you admin in steem? If you have been hacked, who can help you?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-18T19:53:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 125759, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-18T19:53:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "admin", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "re-admin-firstpost-20160718t195306992z", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-20T18:36:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gopher", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://steem.com/@bittrex/transfers how this user can have these tranfers without any activity?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-18T19:58:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 125823, + "json_metadata": "{\"tags\":[\"meta\"],\"links\":[\"http://steem.com/@bittrex/transfers\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-18T19:58:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160718t195806340z", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json index 5ba5ef95..d07e5c56 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 780101, - "author": "valeriawise", - "permlink": "global-lack-of-understanding-of-each-other", - "category": "future", - "parent_author": "", - "parent_permlink": "future", - "title": "Global lack of understanding of each other", - "body": "The theme of the day - global lack of understanding of each other.\nWhy?\nThose who do not understand - are different.\nThe goal - to teach this \"different\" to understand everyone.\nHow?\nSection Hi-Tech technology infinity reality\nFuture technologies\n\nImagine, it is a compact and portable device, which is called the \"translator\".\nBut this device is not a thing about what you are thinking now, this device translates not only the words that a person can say, but also thoughts, desires, motivations, and your understanding of things on the level of understanding another person.\nThis translator helps others understand someone who says.\nPrinciple of operation - you turn on the device, and no matter what you said to someone with this device in your hand, the man begins to understand and do what heard.\nBut there is one \"but\" - no matter what you say, person will want to do and do only good and sincere desires straight from the heart, and the evil and coarseness desires it wont translate and person remains unheard and misunderstood.\nThis translator is equipped with a built-in filter, so if someone would like to use it to harm, he can not do this, as translator will also bring evil thoughts into the opposite - good things. Only imagine how quickly our world will convert into a unity of understanding each other people and no one will not feel alone in this world.\nto be continued...", - "json_metadata": "{\"tags\":[\"future\",\"technology\",\"unity\",\"sincere\",\"world\"]}", - "last_update": "2016-08-28T17:29:57", - "created": "2016-08-28T17:29:57", - "active": "2016-08-28T17:29:57", - "last_payout": "2016-08-29T17:44:48", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T17:44:48", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "valeriawise", - "root_permlink": "global-lack-of-understanding-of-each-other", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780108, - "author": "anca3drandom", - "permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "category": "art", - "parent_author": "", - "parent_permlink": "art", - "title": "3D Pen Art - Combining Color changing filament with Drawing Pastels - Making Pendants", - "body": "\n

Today I experimented with color changing filament (PLA); it changes its color to blue at low temperatures.

\n

 The idea was to make some pendants using only white color PLA filament. I had two ideas on how I could incorporate some colors.

\n

First was to add pieces of drawing pastel between to pieces of whatever I made with the 3D pen. I made a square, a triangle and a heart shape.

\n

https://httpsimage.com/img/DSC04680small.jpg

\n

Notice the lines in the square.Those will unite after placing them in the oven

\n

https://httpsimage.com/img/DSC04682small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04686small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04692small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04694small.jpg

\n

 After I cut pieces of pastel and placed them on top of the square, triangle and heart I covered them with their twin piece and placed them in the oven for about 10 minutes. The heat helps smooth the surface and join each two identical pieces.

\n

Now I just have to figure out how to make a small in each of them to add them to a chain.

\n

https://httpsimage.com/img/DSC04701small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04714small.jpg

\n

Watch the video to see how they changed color after I put them in ice cold water. 

\n


\n

https://www.youtube.com/watch?v=ig-wrxYPUzc

\n


\n

The second thing that I have tried was adding drawing ink to the 3d pen objects. I added ink on top of the objects. My theory was that the ink will infiltrate the shapes, but this didn't happen. The only thing that worked was to add the ink between two identical objects and place them in the oven to join them.

\n

I think that the ones with the pastel turned out better.What do you think?

\n

 

\n

https://httpsimage.com/img/DSC04658small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04661small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04668small.jpg

\n

 

\n

https://httpsimage.com/img/IMG_20160828_190533small.jpg

\n

#3dpen 

\n

Check out my linocuts  or my pyrography art 

\n

https://httpsimage.com/img/DSC04402small2.jpg

\n

@anca3drandom

\n", - "json_metadata": "{\"tags\":[\"art\",\"steemart\",\"originalcontent\",\"3dpen\"],\"users\":[\"anca3drandom\"],\"image\":[\"https://httpsimage.com/img/DSC04680small.jpg\",\"https://httpsimage.com/img/DSC04682small.jpg\",\"https://httpsimage.com/img/DSC04686small.jpg\",\"https://httpsimage.com/img/DSC04692small.jpg\",\"https://httpsimage.com/img/DSC04694small.jpg\",\"https://httpsimage.com/img/DSC04701small.jpg\",\"https://httpsimage.com/img/DSC04714small.jpg\",\"https://httpsimage.com/img/DSC04658small.jpg\",\"https://httpsimage.com/img/DSC04661small.jpg\",\"https://httpsimage.com/img/DSC04668small.jpg\",\"https://httpsimage.com/img/IMG_20160828_190533small.jpg\",\"https://httpsimage.com/img/DSC04402small2.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=ig-wrxYPUzc\",\"https://steemit.com/art/@anca3drandom/how-to-make-linocut-prints-leafy-seadragon-photos-video\",\"https://steemit.com/art/@anca3drandom/how-i-made-decorative-mini-kitchen-blackboard-pyrography-art-watercolors\"]}", - "last_update": "2016-08-28T17:30:30", - "created": "2016-08-28T17:30:30", - "active": "2016-08-31T09:15:15", - "last_payout": "2016-08-29T20:31:48", - "depth": 0, - "children": 24, - "net_rshares": 128179768, - "abs_rshares": 128179768, - "vote_rshares": 128179768, - "children_abs_rshares": "18465724919", - "cashout_time": "2016-09-28T20:31:48", - "max_cashout_time": "2016-09-12T23:16:12", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "1929", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "363", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1969, - "net_votes": 60, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780169, - "author": "nil1511", - "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173639420z", - "category": "art", - "parent_author": "anca3drandom", - "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "title": "", - "body": "cool. Is that uniform in thickness?", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:36:39", - "created": "2016-08-28T17:36:39", - "active": "2016-08-28T17:47:57", - "last_payout": "2016-08-29T20:31:48", - "depth": 1, - "children": 3, - "net_rshares": "18283233276", - "abs_rshares": "18283233276", - "vote_rshares": "18283233276", - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780203, - "author": "anca3drandom", - "permlink": "re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173933042z", - "category": "art", - "parent_author": "nil1511", - "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173639420z", - "title": "", - "body": "They are hand-made so they are uniform as much as it was allowed.", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:39:33", - "created": "2016-08-28T17:39:33", - "active": "2016-08-28T17:47:57", - "last_payout": "2016-08-29T20:31:48", - "depth": 2, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780214, - "author": "the-future", - "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174002633z", - "category": "art", - "parent_author": "anca3drandom", - "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "title": "", - "body": "This is very cool. I like how the colours are changing! Great work", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:40:09", - "created": "2016-08-28T17:40:09", - "active": "2016-08-28T17:49:06", - "last_payout": "2016-08-29T20:31:48", - "depth": 1, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780242, - "author": "marquismiller", - "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174219184z", - "category": "art", - "parent_author": "anca3drandom", - "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "title": "", - "body": "Nice job. Haven't seen this type of art style before.", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:42:18", - "created": "2016-08-28T17:42:18", - "active": "2016-08-28T17:45:09", - "last_payout": "2016-08-29T20:31:48", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780250, - "author": "thecryptofiend", - "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174256563z", - "category": "art", - "parent_author": "anca3drandom", - "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "title": "", - "body": "Very nice. I love the darker blue shade.", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:42:57", - "created": "2016-08-28T17:42:57", - "active": "2016-08-28T17:46:39", - "last_payout": "2016-08-29T20:31:48", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780265, - "author": "anca3drandom", - "permlink": "re-the-future-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174358335z", - "category": "art", - "parent_author": "the-future", - "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174002633z", - "title": "", - "body": "Thank you! That is a cool feature.", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:44:00", - "created": "2016-08-28T17:44:00", - "active": "2016-08-28T17:49:06", - "last_payout": "2016-08-29T20:31:48", - "depth": 2, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780274, - "author": "nil1511", - "permlink": "re-anca3drandom-re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174439183z", - "category": "art", - "parent_author": "anca3drandom", - "parent_permlink": "re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173933042z", - "title": "", - "body": "Thank you for sharing.", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:44:39", - "created": "2016-08-28T17:44:39", - "active": "2016-08-28T17:47:57", - "last_payout": "2016-08-29T20:31:48", - "depth": 3, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780281, - "author": "anca3drandom", - "permlink": "re-marquismiller-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174506597z", - "category": "art", - "parent_author": "marquismiller", - "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174219184z", - "title": "", - "body": "3D pen art has been around for a few years. However combining pastels with 3d pen was my idea.Haven't seen it before.", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:45:09", - "created": "2016-08-28T17:45:09", - "active": "2016-08-28T17:45:09", - "last_payout": "2016-08-29T20:31:48", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-28T17:29:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "valeriawise", + "author_rewards": 0, + "beneficiaries": [], + "body": "The theme of the day - global lack of understanding of each other.\nWhy?\nThose who do not understand - are different.\nThe goal - to teach this \"different\" to understand everyone.\nHow?\nSection Hi-Tech technology infinity reality\nFuture technologies\n\nImagine, it is a compact and portable device, which is called the \"translator\".\nBut this device is not a thing about what you are thinking now, this device translates not only the words that a person can say, but also thoughts, desires, motivations, and your understanding of things on the level of understanding another person.\nThis translator helps others understand someone who says.\nPrinciple of operation - you turn on the device, and no matter what you said to someone with this device in your hand, the man begins to understand and do what heard.\nBut there is one \"but\" - no matter what you say, person will want to do and do only good and sincere desires straight from the heart, and the evil and coarseness desires it wont translate and person remains unheard and misunderstood.\nThis translator is equipped with a built-in filter, so if someone would like to use it to harm, he can not do this, as translator will also bring evil thoughts into the opposite - good things. Only imagine how quickly our world will convert into a unity of understanding each other people and no one will not feel alone in this world.\nto be continued...", + "cashout_time": "2016-09-28T17:44:48", + "category": "future", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:29:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 780101, + "json_metadata": "{\"tags\":[\"future\",\"technology\",\"unity\",\"sincere\",\"world\"]}", + "last_payout": "2016-08-29T17:44:48", + "last_update": "2016-08-28T17:29:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "future", + "percent_hbd": 10000, + "permlink": "global-lack-of-understanding-of-each-other", + "reward_weight": 10000, + "root_author": "valeriawise", + "root_permlink": "global-lack-of-understanding-of-each-other", + "title": "Global lack of understanding of each other", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 128179768, + "active": "2016-08-31T09:15:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anca3drandom", + "author_rewards": 1969, + "beneficiaries": [], + "body": "\n

Today I experimented with color changing filament (PLA); it changes its color to blue at low temperatures.

\n

 The idea was to make some pendants using only white color PLA filament. I had two ideas on how I could incorporate some colors.

\n

First was to add pieces of drawing pastel between to pieces of whatever I made with the 3D pen. I made a square, a triangle and a heart shape.

\n

https://httpsimage.com/img/DSC04680small.jpg

\n

Notice the lines in the square.Those will unite after placing them in the oven

\n

https://httpsimage.com/img/DSC04682small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04686small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04692small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04694small.jpg

\n

 After I cut pieces of pastel and placed them on top of the square, triangle and heart I covered them with their twin piece and placed them in the oven for about 10 minutes. The heat helps smooth the surface and join each two identical pieces.

\n

Now I just have to figure out how to make a small in each of them to add them to a chain.

\n

https://httpsimage.com/img/DSC04701small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04714small.jpg

\n

Watch the video to see how they changed color after I put them in ice cold water. 

\n


\n

https://www.youtube.com/watch?v=ig-wrxYPUzc

\n


\n

The second thing that I have tried was adding drawing ink to the 3d pen objects. I added ink on top of the objects. My theory was that the ink will infiltrate the shapes, but this didn't happen. The only thing that worked was to add the ink between two identical objects and place them in the oven to join them.

\n

I think that the ones with the pastel turned out better.What do you think?

\n

 

\n

https://httpsimage.com/img/DSC04658small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04661small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04668small.jpg

\n

 

\n

https://httpsimage.com/img/IMG_20160828_190533small.jpg

\n

#3dpen 

\n

Check out my linocuts  or my pyrography art 

\n

https://httpsimage.com/img/DSC04402small2.jpg

\n

@anca3drandom

\n", + "cashout_time": "2016-09-28T20:31:48", + "category": "art", + "children": 24, + "children_abs_rshares": "18465724919", + "created": "2016-08-28T17:30:30", + "curator_payout_value": { + "amount": "363", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 780108, + "json_metadata": "{\"tags\":[\"art\",\"steemart\",\"originalcontent\",\"3dpen\"],\"users\":[\"anca3drandom\"],\"image\":[\"https://httpsimage.com/img/DSC04680small.jpg\",\"https://httpsimage.com/img/DSC04682small.jpg\",\"https://httpsimage.com/img/DSC04686small.jpg\",\"https://httpsimage.com/img/DSC04692small.jpg\",\"https://httpsimage.com/img/DSC04694small.jpg\",\"https://httpsimage.com/img/DSC04701small.jpg\",\"https://httpsimage.com/img/DSC04714small.jpg\",\"https://httpsimage.com/img/DSC04658small.jpg\",\"https://httpsimage.com/img/DSC04661small.jpg\",\"https://httpsimage.com/img/DSC04668small.jpg\",\"https://httpsimage.com/img/IMG_20160828_190533small.jpg\",\"https://httpsimage.com/img/DSC04402small2.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=ig-wrxYPUzc\",\"https://steemit.com/art/@anca3drandom/how-to-make-linocut-prints-leafy-seadragon-photos-video\",\"https://steemit.com/art/@anca3drandom/how-i-made-decorative-mini-kitchen-blackboard-pyrography-art-watercolors\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:30:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-12T23:16:12", + "net_rshares": 128179768, + "net_votes": 60, + "parent_author": "", + "parent_permlink": "art", + "percent_hbd": 10000, + "permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "3D Pen Art - Combining Color changing filament with Drawing Pastels - Making Pendants", + "total_payout_value": { + "amount": "1929", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 128179768 + }, + { + "abs_rshares": "18283233276", + "active": "2016-08-28T17:47:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "nil1511", + "author_rewards": 0, + "beneficiaries": [], + "body": "cool. Is that uniform in thickness?", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-28T17:36:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780169, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:36:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": "18283233276", + "net_votes": 1, + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "percent_hbd": 10000, + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173639420z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "18283233276" + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:47:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anca3drandom", + "author_rewards": 0, + "beneficiaries": [], + "body": "They are hand-made so they are uniform as much as it was allowed.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-28T17:39:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780203, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:39:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "nil1511", + "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173639420z", + "percent_hbd": 10000, + "permlink": "re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173933042z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:49:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "the-future", + "author_rewards": 0, + "beneficiaries": [], + "body": "This is very cool. I like how the colours are changing! Great work", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-28T17:40:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780214, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:40:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "percent_hbd": 10000, + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174002633z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:45:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "marquismiller", + "author_rewards": 0, + "beneficiaries": [], + "body": "Nice job. Haven't seen this type of art style before.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:42:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780242, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:42:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "percent_hbd": 10000, + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174219184z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:46:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "thecryptofiend", + "author_rewards": 0, + "beneficiaries": [], + "body": "Very nice. I love the darker blue shade.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:42:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780250, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:42:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "percent_hbd": 10000, + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174256563z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:49:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anca3drandom", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you! That is a cool feature.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:44:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780265, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:44:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "the-future", + "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174002633z", + "percent_hbd": 10000, + "permlink": "re-the-future-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174358335z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:47:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "nil1511", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you for sharing.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:44:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 780274, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:44:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "anca3drandom", + "parent_permlink": "re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173933042z", + "percent_hbd": 10000, + "permlink": "re-anca3drandom-re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174439183z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:45:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anca3drandom", + "author_rewards": 0, + "beneficiaries": [], + "body": "3D pen art has been around for a few years. However combining pastels with 3d pen was my idea.Haven't seen it before.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:45:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780281, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:45:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "marquismiller", + "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174219184z", + "percent_hbd": 10000, + "permlink": "re-marquismiller-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174506597z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json index c52af036..2403716d 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 779947, - "author": "givemeyoursteem", - "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "category": "foodchallenge", - "parent_author": "", - "parent_permlink": "foodchallenge", - "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", - "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", - "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", - "last_update": "2016-08-28T17:15:12", - "created": "2016-08-28T17:15:12", - "active": "2016-08-29T13:45:42", - "last_payout": "2016-08-29T20:19:39", - "depth": 0, - "children": 18, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 2374341643, - "cashout_time": "2016-09-28T20:19:39", - "max_cashout_time": "2016-09-13T01:24:24", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "576", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "131", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 588, - "net_votes": 44, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780100, - "author": "vi1son", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Congratulations to the winners. We are waiting for the new competition.", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T17:29:57", - "created": "2016-08-28T17:29:57", - "active": "2016-08-29T13:45:42", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "16", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "3", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 18, - "net_votes": 3, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780336, - "author": "givemeyoursteem", - "permlink": "re-vi1son-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t175015557z", - "category": "foodchallenge", - "parent_author": "vi1son", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", - "title": "", - "body": "We will announce next weeks theme soon, hope to see you there!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T17:50:15", - "created": "2016-08-28T17:50:15", - "active": "2016-08-29T13:45:42", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780560, - "author": "knozaki2015", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "24 seconds from now\tTransfer 25.000 SBD to foxxycat\tCongrats 4th place Steemit Food Challenge #3 (sponsor @knozaki2015)", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\"]}", - "last_update": "2016-08-28T18:11:06", - "created": "2016-08-28T18:11:06", - "active": "2016-08-28T18:12:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780584, - "author": "givemeyoursteem", - "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", - "category": "foodchallenge", - "parent_author": "knozaki2015", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", - "title": "", - "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", - "last_update": "2016-08-28T18:12:39", - "created": "2016-08-28T18:12:39", - "active": "2016-08-28T18:12:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780673, - "author": "oumar", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Uuh, I didn't have enough time to participate :( and I do make some really delicious desserts.", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T18:21:39", - "created": "2016-08-28T18:21:39", - "active": "2016-08-28T18:26:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780727, - "author": "givemeyoursteem", - "permlink": "re-oumar-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182639249z", - "category": "foodchallenge", - "parent_author": "oumar", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", - "title": "", - "body": "Yeah we missed your post! But no worry, there will be a new challenge very soon :)", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T18:26:39", - "created": "2016-08-28T18:26:39", - "active": "2016-08-28T18:26:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 781174, - "author": "papa-pepper", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Excellent Job everyone who entered!\n# Great job picking the winners too! I couldn't agree more!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T19:02:12", - "created": "2016-08-28T19:02:12", - "active": "2016-08-28T19:25:24", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 781462, - "author": "givemeyoursteem", - "permlink": "re-papa-pepper-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t192523201z", - "category": "foodchallenge", - "parent_author": "papa-pepper", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", - "title": "", - "body": "Yes I'm moved by all effort, you Steemit Food Challengers are the best! \nThanks, it's always a hard choice to make! :)", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T19:25:24", - "created": "2016-08-28T19:25:24", - "active": "2016-08-28T19:25:24", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 781704, - "author": "the-future", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t194439865z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Congratulations to all!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T19:44:48", - "created": "2016-08-28T19:44:48", - "active": "2016-08-28T19:44:48", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 588, + "beneficiaries": [], + "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", + "cashout_time": "2016-09-28T20:19:39", + "category": "foodchallenge", + "children": 18, + "children_abs_rshares": 2374341643, + "created": "2016-08-28T17:15:12", + "curator_payout_value": { + "amount": "131", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1029377, + "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:15:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T01:24:24", + "net_rshares": 0, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "foodchallenge", + "percent_hbd": 10000, + "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", + "total_payout_value": { + "amount": "576", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vi1son", + "author_rewards": 18, + "beneficiaries": [], + "body": "Congratulations to the winners. We are waiting for the new competition.", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-28T17:29:57", + "curator_payout_value": { + "amount": "3", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1029561, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:29:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "16", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "We will announce next weeks theme soon, hope to see you there!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:50:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1029853, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:50:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "vi1son", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "percent_hbd": 10000, + "permlink": "re-vi1son-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t175015557z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "knozaki2015", + "author_rewards": 0, + "beneficiaries": [], + "body": "24 seconds from now\tTransfer 25.000 SBD to foxxycat\tCongrats 4th place Steemit Food Challenge #3 (sponsor @knozaki2015)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T18:11:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1030133, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:11:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T18:12:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1030162, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:12:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:26:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "oumar", + "author_rewards": 0, + "beneficiaries": [], + "body": "Uuh, I didn't have enough time to participate :( and I do make some really delicious desserts.", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T18:21:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1030265, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:21:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:26:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yeah we missed your post! But no worry, there will be a new challenge very soon :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T18:26:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1030333, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:26:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "oumar", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "percent_hbd": 10000, + "permlink": "re-oumar-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182639249z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:25:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "papa-pepper", + "author_rewards": 0, + "beneficiaries": [], + "body": "Excellent Job everyone who entered!\n# Great job picking the winners too! I couldn't agree more!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T19:02:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1030904, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:02:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:25:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yes I'm moved by all effort, you Steemit Food Challengers are the best! \nThanks, it's always a hard choice to make! :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T19:25:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1031268, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:25:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "papa-pepper", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "percent_hbd": 10000, + "permlink": "re-papa-pepper-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t192523201z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:44:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "the-future", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congratulations to all!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T19:44:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1031585, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:44:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t194439865z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/test_database_api_patterns.tavern.yaml b/hivemind/tavern/test_database_api_patterns.tavern.yaml index 7caae931..c3851293 100644 --- a/hivemind/tavern/test_database_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_database_api_patterns.tavern.yaml @@ -177,7 +177,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - failing - - xfail + - xfail # incomparable (problem with ordering most likely) includes: - !include common.yaml @@ -218,7 +218,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - failing - - xfail # show first posts comments + - xfail # no results; show first posts comments includes: - !include common.yaml @@ -320,7 +320,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - failing - - xfail # problem with date cashout_time = "1970-01-01 00:00:00" or 1969-12-31T23:59:59 + - xfail # incomparable (problem with ordering most likely) includes: - !include common.yaml @@ -356,7 +356,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - failing - - xfail # wrong output, given cashout_time exist in database (output later 2016-09-15T19:47:27) + - xfail # incomparable (problem with ordering most likely) includes: - !include common.yaml @@ -393,7 +393,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest - failing - - xfail + - xfail # plenty of differences but comparable includes: - !include common.yaml @@ -424,7 +424,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest - failing - - xfail + - xfail # plenty of differences but comparable, wrong(?) encoding includes: - !include common.yaml @@ -455,7 +455,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest # author first - when empty, takes alphabetical (later by permlink) - failing - - xfail + - xfail # plenty of differences but comparable, wrong(?) encoding includes: - !include common.yaml @@ -495,7 +495,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest - failing - - xfail + - xfail # plenty of differences but comparable includes: - !include common.yaml @@ -536,7 +536,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" goo marks: - patterntest - failing - - xfail + - xfail # incomparable (problems with ordering most likely) includes: - !include common.yaml @@ -572,7 +572,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" no marks: - patterntest - failing - - xfail # first two params are required + - xfail # incomparable (problems with ordering most likely); first two params are required includes: - !include common.yaml @@ -643,7 +643,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" req marks: - patterntest - failing - - xfail # wrong output + - xfail # incomparable (problems with ordering most likely) includes: - !include common.yaml @@ -679,7 +679,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" req marks: - patterntest - failing - - xfail + - xfail # plenty of differences but comparable includes: - !include common.yaml @@ -715,7 +715,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" all marks: - patterntest - failing - - xfail + - xfail # incomparable (problems with ordering most likely) includes: - !include common.yaml @@ -857,7 +857,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" marks: - patterntest - failing - - xfail + - xfail # multiple problems but comparable includes: - !include common.yaml @@ -893,7 +893,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest - failing - - xfail # first 2 params are required + - xfail # incomparable (problems with ordering most likely); first 2 params are required includes: - !include common.yaml @@ -966,7 +966,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" r marks: - patterntest - failing - - xfail + - xfail # plenty of differences but comparable includes: - !include common.yaml @@ -1038,7 +1038,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" a marks: - patterntest - failing - - xfail + - xfail # multiple problems but comparable includes: - !include common.yaml @@ -1074,7 +1074,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest - failing - - xfail # unexpected output - takes it aplhabetical from author + - xfail # plenty of differences but comparable includes: @@ -1112,7 +1112,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest - failing - - xfail + - xfail # incomparable (problem with ordering most likely) includes: - !include common.yaml @@ -1218,7 +1218,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest - failing - - xfail + - xfail # incomparable (problem with ordering most likely) includes: - !include common.yaml @@ -1254,7 +1254,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest - failing - - xfail + - xfail # incomparable (problem with ordering most likely) includes: - !include common.yaml @@ -1290,7 +1290,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest - failing - - xfail # output should be the same as prev test or with completely diff author + - xfail # incomparable (problem with ordering most likely); output should be the same as prev test or with completely diff author includes: @@ -1395,7 +1395,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest - failing - - xfail # shows different comment than expected + - xfail # incomparable (problem with ordering most likely) includes: @@ -1502,7 +1502,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest - failing - - xfail # show last comments in base + - xfail # incomparable (problem with ordering most likely); show last comments in base includes: - !include common.yaml -- GitLab From 6bac1bb2142ad8c06c005b37cbbd7f4a4fa64f81 Mon Sep 17 00:00:00 2001 From: mtrela Date: Fri, 14 Aug 2020 17:11:39 +0200 Subject: [PATCH 19/49] Patterns are changed --- .../get_payout_stats.pat.json | 6 ++--- .../get_content_replies.pat.json | 8 +++---- .../get_discussions_by_created.pat.json | 4 ++-- .../get_discussions_by_hot.pat.json | 2 +- .../get_discussions_by_promoted.pat.json | 2 +- .../get_discussions_by_trending.pat.json | 2 +- .../get_post_discussions_by_payout.pat.json | 4 ++-- .../get_trending_tags.pat.json | 22 +++++++++---------- .../get_content_replies.pat.json | 6 ++--- .../get_discussions_by_created.pat.json | 4 ++-- .../get_discussions_by_promoted.pat.json | 2 +- .../get_post_discussions_by_payout.pat.json | 4 ++-- .../test_condenser_api_patterns.tavern.yaml | 2 -- 13 files changed, 33 insertions(+), 35 deletions(-) diff --git a/hivemind/tavern/bridge_api_patterns/get_payout_stats.pat.json b/hivemind/tavern/bridge_api_patterns/get_payout_stats.pat.json index 7b8f3500..68756dc1 100644 --- a/hivemind/tavern/bridge_api_patterns/get_payout_stats.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_payout_stats.pat.json @@ -1,5 +1,5 @@ { - "blogs": 1866809.934, + "blogs": 1866810.081, "items": [ [ "@charlieshrem", @@ -9,5 +9,5 @@ null ] ], - "total": 1866809.934 -} \ No newline at end of file + "total": 1866810.081 +} diff --git a/hivemind/tavern/condenser_api_patterns/get_content_replies.pat.json b/hivemind/tavern/condenser_api_patterns/get_content_replies.pat.json index 82152227..b092d171 100644 --- a/hivemind/tavern/condenser_api_patterns/get_content_replies.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_content_replies.pat.json @@ -22,7 +22,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-gtg-hello-world-20160703t175141501z", - "post_id": 51479, + "post_id": 51575, "promoted": "0.000 HBD", "replies": [], "root_title": "Hello, World!", @@ -53,7 +53,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-gtg-hello-world-20160703t224527020z", - "post_id": 51824, + "post_id": 51920, "promoted": "0.000 HBD", "replies": [], "root_title": "Hello, World!", @@ -84,7 +84,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-gtg-hello-world-20160704t182251522z", - "post_id": 53542, + "post_id": 53638, "promoted": "0.000 HBD", "replies": [], "root_title": "Hello, World!", @@ -92,4 +92,4 @@ "total_payout_value": "0.000 HBD", "url": "/introduceyourself/@gtg/hello-world#@edu-lopov/re-gtg-hello-world-20160704t182251522z" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json index 4ef6e33b..8bc9def1 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json @@ -22,7 +22,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", - "post_id": 1257871, + "post_id": 1259742, "promoted": "0.000 HBD", "replies": [], "root_title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", @@ -30,4 +30,4 @@ "total_payout_value": "0.000 HBD", "url": "/freedom/@philanthropest/cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json index bb4469e2..e7055517 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json @@ -1079,7 +1079,7 @@ "pending_payout_value": "57.040 HBD", "percent_hbd": 10000, "permlink": "usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", - "post_id": 1256962, + "post_id": 1258833, "promoted": "0.000 HBD", "replies": [], "root_title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle\u2019s left empty\" Sept 15, 2016", diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json index 19ebc0d2..ecd874fa 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json @@ -2579,7 +2579,7 @@ "pending_payout_value": "47.466 HBD", "percent_hbd": 10000, "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", - "post_id": 1160043, + "post_id": 1161914, "promoted": "500.000 HBD", "replies": [], "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction", diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json index 5006164e..8491b140 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json @@ -551,7 +551,7 @@ "pending_payout_value": "170.170 HBD", "percent_hbd": 10000, "permlink": "17-steem-tools-every-steemian-needs-to-know", - "post_id": 1256009, + "post_id": 1257880, "promoted": "0.000 HBD", "replies": [], "root_title": "Steem Tools Every Steemian Needs To Know (Infographic)", diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json index 391bf27f..1190d45b 100644 --- a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json @@ -29,7 +29,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "nasienie-wolnosci", - "post_id": 877987, + "post_id": 879858, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", @@ -37,4 +37,4 @@ "total_payout_value": "0.000 HBD", "url": "/polska/@simgregg/nasienie-wolnosci" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/condenser_api_patterns/get_trending_tags.pat.json b/hivemind/tavern/condenser_api_patterns/get_trending_tags.pat.json index 1407b4c3..49073122 100644 --- a/hivemind/tavern/condenser_api_patterns/get_trending_tags.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_trending_tags.pat.json @@ -3,60 +3,60 @@ "comments": 10141, "name": "steem", "top_posts": 1158, - "total_payouts": "82438.187 HBD" + "total_payouts": "82690.698 HBD" }, { "comments": 5633, "name": "travel", "top_posts": 1159, - "total_payouts": "66237.472 HBD" + "total_payouts": "66264.303 HBD" }, { "comments": 7565, "name": "food", "top_posts": 1373, - "total_payouts": "59957.608 HBD" + "total_payouts": "60027.406 HBD" }, { "comments": 11430, "name": "introduceyourself", "top_posts": 1214, - "total_payouts": "58893.319 HBD" + "total_payouts": "59086.068 HBD" }, { "comments": 16286, "name": "photography", "top_posts": 4360, - "total_payouts": "53604.656 HBD" + "total_payouts": "53799.666 HBD" }, { "comments": 4975, "name": "money", "top_posts": 998, - "total_payouts": "42462.388 HBD" + "total_payouts": "42587.156 HBD" }, { "comments": 4028, "name": "writing", "top_posts": 807, - "total_payouts": "36257.390 HBD" + "total_payouts": "36298.568 HBD" }, { "comments": 2890, "name": "bitcoin", "top_posts": 1220, - "total_payouts": "31111.750 HBD" + "total_payouts": "31135.659 HBD" }, { "comments": 3209, "name": "science", "top_posts": 680, - "total_payouts": "25141.041 HBD" + "total_payouts": "25165.249 HBD" }, { "comments": 2775, "name": "philosophy", "top_posts": 367, - "total_payouts": "24362.939 HBD" + "total_payouts": "24387.618 HBD" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/tags_api_patterns/get_content_replies.pat.json b/hivemind/tavern/tags_api_patterns/get_content_replies.pat.json index 23cc978b..709d18ce 100644 --- a/hivemind/tavern/tags_api_patterns/get_content_replies.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_content_replies.pat.json @@ -29,7 +29,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-admin-firstpost-20160717t193811098z", - "post_id": 151464, + "post_id": 151560, "promoted": "0.000 HBD", "replies": [], "root_title": "Welcome to Steem!", @@ -73,7 +73,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-admin-firstpost-20160718t195306992z", - "post_id": 172339, + "post_id": 172435, "promoted": "0.000 HBD", "replies": [], "root_title": "Welcome to Steem!", @@ -81,4 +81,4 @@ "total_payout_value": "0.000 HBD", "url": "/meta/@steemit/firstpost#@gopher/re-admin-firstpost-20160718t195306992z" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json index 391bf27f..1190d45b 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json @@ -29,7 +29,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "nasienie-wolnosci", - "post_id": 877987, + "post_id": 879858, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", @@ -37,4 +37,4 @@ "total_payout_value": "0.000 HBD", "url": "/polska/@simgregg/nasienie-wolnosci" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json index 19ebc0d2..ecd874fa 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json @@ -2579,7 +2579,7 @@ "pending_payout_value": "47.466 HBD", "percent_hbd": 10000, "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", - "post_id": 1160043, + "post_id": 1161914, "promoted": "500.000 HBD", "replies": [], "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction", diff --git a/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json b/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json index 391bf27f..1190d45b 100644 --- a/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json @@ -29,7 +29,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "nasienie-wolnosci", - "post_id": 877987, + "post_id": 879858, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", @@ -37,4 +37,4 @@ "total_payout_value": "0.000 HBD", "url": "/polska/@simgregg/nasienie-wolnosci" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index ecf901b8..141c2516 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -177,8 +177,6 @@ marks: - patterntest - - failing - - xfail # some tags have too many comments/top_posts, influences total_payouts (problem when post is deleted and recreated); once that is fixed rest of total_payouts can be slightly different includes: - !include common.yaml -- GitLab From c924df7cd6b726a7f16dd39d60ac082a104b34d5 Mon Sep 17 00:00:00 2001 From: mtrela Date: Mon, 17 Aug 2020 12:50:39 +0200 Subject: [PATCH 20/49] The value of the member 'post_id' is updated --- .../condenser_api_patterns/get_content_replies.pat.json | 6 +++--- .../get_discussions_by_created.pat.json | 2 +- .../condenser_api_patterns/get_discussions_by_hot.pat.json | 2 +- .../get_discussions_by_promoted.pat.json | 2 +- .../get_discussions_by_trending.pat.json | 2 +- .../get_post_discussions_by_payout.pat.json | 2 +- .../tavern/tags_api_patterns/get_content_replies.pat.json | 4 ++-- .../tags_api_patterns/get_discussions_by_created.pat.json | 2 +- .../tags_api_patterns/get_discussions_by_promoted.pat.json | 2 +- .../get_post_discussions_by_payout.pat.json | 2 +- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/hivemind/tavern/condenser_api_patterns/get_content_replies.pat.json b/hivemind/tavern/condenser_api_patterns/get_content_replies.pat.json index b092d171..e1b67ccf 100644 --- a/hivemind/tavern/condenser_api_patterns/get_content_replies.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_content_replies.pat.json @@ -22,7 +22,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-gtg-hello-world-20160703t175141501z", - "post_id": 51575, + "post_id": 51479, "promoted": "0.000 HBD", "replies": [], "root_title": "Hello, World!", @@ -53,7 +53,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-gtg-hello-world-20160703t224527020z", - "post_id": 51920, + "post_id": 51824, "promoted": "0.000 HBD", "replies": [], "root_title": "Hello, World!", @@ -84,7 +84,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-gtg-hello-world-20160704t182251522z", - "post_id": 53638, + "post_id": 53542, "promoted": "0.000 HBD", "replies": [], "root_title": "Hello, World!", diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json index 8bc9def1..4051af5e 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json @@ -22,7 +22,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", - "post_id": 1259742, + "post_id": 1257871, "promoted": "0.000 HBD", "replies": [], "root_title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json index e7055517..bb4469e2 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json @@ -1079,7 +1079,7 @@ "pending_payout_value": "57.040 HBD", "percent_hbd": 10000, "permlink": "usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", - "post_id": 1258833, + "post_id": 1256962, "promoted": "0.000 HBD", "replies": [], "root_title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle\u2019s left empty\" Sept 15, 2016", diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json index ecd874fa..19ebc0d2 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json @@ -2579,7 +2579,7 @@ "pending_payout_value": "47.466 HBD", "percent_hbd": 10000, "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", - "post_id": 1161914, + "post_id": 1160043, "promoted": "500.000 HBD", "replies": [], "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction", diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json index 8491b140..5006164e 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json @@ -551,7 +551,7 @@ "pending_payout_value": "170.170 HBD", "percent_hbd": 10000, "permlink": "17-steem-tools-every-steemian-needs-to-know", - "post_id": 1257880, + "post_id": 1256009, "promoted": "0.000 HBD", "replies": [], "root_title": "Steem Tools Every Steemian Needs To Know (Infographic)", diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json index 1190d45b..b83cc419 100644 --- a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json @@ -29,7 +29,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "nasienie-wolnosci", - "post_id": 879858, + "post_id": 877987, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", diff --git a/hivemind/tavern/tags_api_patterns/get_content_replies.pat.json b/hivemind/tavern/tags_api_patterns/get_content_replies.pat.json index 709d18ce..ab5a545c 100644 --- a/hivemind/tavern/tags_api_patterns/get_content_replies.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_content_replies.pat.json @@ -29,7 +29,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-admin-firstpost-20160717t193811098z", - "post_id": 151560, + "post_id": 151464, "promoted": "0.000 HBD", "replies": [], "root_title": "Welcome to Steem!", @@ -73,7 +73,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "re-admin-firstpost-20160718t195306992z", - "post_id": 172435, + "post_id": 172339, "promoted": "0.000 HBD", "replies": [], "root_title": "Welcome to Steem!", diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json index 1190d45b..b83cc419 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json @@ -29,7 +29,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "nasienie-wolnosci", - "post_id": 879858, + "post_id": 877987, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json index ecd874fa..19ebc0d2 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json @@ -2579,7 +2579,7 @@ "pending_payout_value": "47.466 HBD", "percent_hbd": 10000, "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", - "post_id": 1161914, + "post_id": 1160043, "promoted": "500.000 HBD", "replies": [], "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction", diff --git a/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json b/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json index 1190d45b..b83cc419 100644 --- a/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json @@ -29,7 +29,7 @@ "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, "permlink": "nasienie-wolnosci", - "post_id": 879858, + "post_id": 877987, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", -- GitLab From 3f799aea8500b2019ef2307fb64786c62b045c75 Mon Sep 17 00:00:00 2001 From: Paulina Czempiel Date: Mon, 17 Aug 2020 14:05:31 +0200 Subject: [PATCH 21/49] database_api find_comments tests --- .../find_comments_all_data.pat.json | 53 + .../find_comments_no_data.pat.json | 3 + .../find_votes_all_data.pat.json | 235 +++++ .../list_comments_author_last_update.pat.json | 988 +++++++++--------- ...es_by_comment_voter_all_good_data.pat.json | 114 ++ ...st_votes_by_comment_voter_no_data.pat.json | 114 ++ ..._by_comment_voter_one_before_last.pat.json | 114 ++ ...votes_by_comment_voter_only_voter.pat.json | 114 ++ ..._by_voter_comment_author_permlink.pat.json | 114 ++ ...st_votes_by_voter_comment_no_data.pat.json | 114 ++ ...list_votes_by_voter_comment_voter.pat.json | 114 ++ .../test_database_api_patterns.tavern.yaml | 772 +++++++++++++- 12 files changed, 2351 insertions(+), 498 deletions(-) create mode 100644 hivemind/tavern/database_api_patterns/find_comments_all_data.pat.json create mode 100644 hivemind/tavern/database_api_patterns/find_comments_no_data.pat.json create mode 100644 hivemind/tavern/database_api_patterns/find_votes_all_data.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_all_good_data.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_no_data.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_one_before_last.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_only_voter.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_author_permlink.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_no_data.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_voter.pat.json diff --git a/hivemind/tavern/database_api_patterns/find_comments_all_data.pat.json b/hivemind/tavern/database_api_patterns/find_comments_all_data.pat.json new file mode 100644 index 00000000..8df0feb3 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/find_comments_all_data.pat.json @@ -0,0 +1,53 @@ +{ + "comments": [ + { + "id": 227413, + "author": "magicmonk", + "permlink": "hello-steemit-my-name-s-eddie-a-k-a-the-magic-monk-i-am-a-youtuber-and-a-high-school-teacher-let-the-writing-begin", + "category": "introduceyourself", + "parent_author": "", + "parent_permlink": "introduceyourself", + "title": "Hello Steemit! My name's Eddie (a.k.a. the Magic Monk), I am a Youtuber and a high school teacher! Let the writing begin!", + "body": "**Hello everyone on Steem!!**\n![My picture](https://fbcdn-sphotos-e-a.akamaihd.net/hphotos-ak-xfp1/t31.0-8/12698631_1001956866545660_8622549576218702447_o.jpg)\n\n**I am super excited** to finally be part of Steem! I have so much to share with you all and I look forward to learning with and from everyone here.\n\nMy name is Eddie and I'm 33 years old. I immigrated to New Zealand from Taiwan when I was 11 without speaking any English (except how are you). A lot of my childhood consisted of looking up words in the dictionary in order to do homework, but I am glad to have had that experience. After a bit of struggle, I finally graduated from high school and university and now I'm a permanent high school maths teacher, and my English is now the least of my worries. I currently live in my own house on an acreage in Brisbane Australia, and I wouldn't live anywhere else. I still speak fluent Chinese and a while ago, I went on the world's most viewed dating show \"If You Are The One\" in China as an Australian contestant, you can watch my appearance here:\n\nhttps://www.youtube.com/watch?v=OtTAPhJZ5JE\n\n### My interests and hobbies\n\n![My picture](https://scontent-syd1-1.xx.fbcdn.net/v/t1.0-9/12509060_977260735681940_6691008880673566787_n.jpg?oh=9ae2ac2e72e5f28e50de30857ac88b13&oe=57EB824F)\n\nOther than studying hard at mathematics and computers, I'm passionate about exercise. I have won two Brisbane Night Tennis Association competitions. I have competed in swing dance championships around Australia, and I regularly practice Tai Chi, Shaolin and Praying Mantis Kung Fu. I believe exercising improves health and having good health is important to living a good life.\n\n![My picture](https://scontent-syd1-1.xx.fbcdn.net/v/t1.0-9/1394472_553116498096368_370916207_n.jpg?oh=16881a36fb5ae8938a179ad91f197fc7&oe=58151298)\n\n### My history with Youtube\n\nA few years ago I saw Khan Academy on Youtube. He was a great teacher, however, we have a different maths curriculum here in Australia, so I decided to start my own math teaching on Youtube for Australian students. I have 3.5 million views now, and funnily enough most of my viewers are actually from overseas. I still work as a high school teacher full time so I don't have much time for Youtube, but I make videos when I can :) \n\nMy students were so impressed with my Youtube channel that one of my best students made this video about me. \n\nhttps://www.youtube.com/watch?v=wZskm-oETMY\n\nMy goal is to demystify maths and other difficult subjects such as computer programming and make them accessible to everyone. I use basic terms and I explain slowly so anyone can understand. I'm not very smart myself so if I can learn these things then anyone can. My lessons are structured so if you watch my videos from beginning to end on the playlist, you can learn everything from basic algebra to Calculus. \n\nhttps://www.youtube.com/watch?v=rBf1eYwwQFE\n\nI believe Steem will benefit from my participation as I will link my articles to my website http://magicmonk.org and my Youtube channel so they will bring more users to Steem.\n\n**Please feel free to share your ideas, advice, feedback with me. I look forward to hearing from you all!!**", + "json_metadata": "{\"tags\":[\"introduceyourself\"],\"links\":[\"https://www.youtube.com/watch?v=OtTAPhJZ5JE\"]}", + "last_update": "2016-07-24T09:39:24", + "created": "2016-07-24T04:52:48", + "active": "2016-08-03T13:23:48", + "last_payout": "2016-08-24T06:35:09", + "depth": 0, + "children": 60, + "net_rshares": 0, + "abs_rshares": 0, + "vote_rshares": 0, + "children_abs_rshares": 0, + "cashout_time": "1969-12-31T23:59:59", + "max_cashout_time": "1969-12-31T23:59:59", + "total_vote_weight": 0, + "reward_weight": 10000, + "total_payout_value": { + "amount": "3020002", + "precision": 3, + "nai": "@@000000013" + }, + "curator_payout_value": { + "amount": "248842", + "precision": 3, + "nai": "@@000000013" + }, + "author_rewards": 831270, + "net_votes": 265, + "root_author": "magicmonk", + "root_permlink": "hello-steemit-my-name-s-eddie-a-k-a-the-magic-monk-i-am-a-youtuber-and-a-high-school-teacher-let-the-writing-begin", + "max_accepted_payout": { + "amount": "1000000000", + "precision": 3, + "nai": "@@000000013" + }, + "percent_steem_dollars": 10000, + "allow_replies": true, + "allow_votes": true, + "allow_curation_rewards": true, + "beneficiaries": [] + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/find_comments_no_data.pat.json b/hivemind/tavern/database_api_patterns/find_comments_no_data.pat.json new file mode 100644 index 00000000..2c1c6d2c --- /dev/null +++ b/hivemind/tavern/database_api_patterns/find_comments_no_data.pat.json @@ -0,0 +1,3 @@ +{ + "comments": [] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/find_votes_all_data.pat.json b/hivemind/tavern/database_api_patterns/find_votes_all_data.pat.json new file mode 100644 index 00000000..479a40c4 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/find_votes_all_data.pat.json @@ -0,0 +1,235 @@ +{ + "votes": [ + { + "id": 1007667, + "voter": "on0tole", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "5725626236557488", + "rshares": 2329409778, + "vote_percent": 10000, + "last_update": "2016-07-24T17:35:57", + "num_changes": -1 + }, + { + "id": 1008825, + "voter": "eduardf", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "351204348157886", + "rshares": 76250486, + "vote_percent": 10000, + "last_update": "2016-07-24T17:50:21", + "num_changes": -1 + }, + { + "id": 1019899, + "voter": "arian1", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "928099862895377", + "rshares": 201580361, + "vote_percent": 10000, + "last_update": "2016-07-24T20:36:12", + "num_changes": -1 + }, + { + "id": 1009222, + "voter": "antino", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "577106937499314", + "rshares": 125329863, + "vote_percent": 10000, + "last_update": "2016-07-24T17:55:57", + "num_changes": -1 + }, + { + "id": 1036843, + "voter": "mrrobot", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": 0, + "rshares": -1073621806, + "vote_percent": -10000, + "last_update": "2016-07-25T02:13:09", + "num_changes": -1 + }, + { + "id": 1009251, + "voter": "greenggc", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "335654507428219", + "rshares": 72897437, + "vote_percent": 10000, + "last_update": "2016-07-24T17:56:21", + "num_changes": -1 + }, + { + "id": 1009129, + "voter": "basilisk", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "220961721236518", + "rshares": 47975555, + "vote_percent": 10000, + "last_update": "2016-07-24T17:54:33", + "num_changes": -1 + }, + { + "id": 1009127, + "voter": "jpy", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "143307780795141", + "rshares": 31114595, + "vote_percent": 10000, + "last_update": "2016-07-24T17:54:30", + "num_changes": -1 + }, + { + "id": 1009143, + "voter": "aud", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "155232520602848", + "rshares": 33707417, + "vote_percent": 10000, + "last_update": "2016-07-24T17:54:45", + "num_changes": -1 + }, + { + "id": 1009152, + "voter": "nzd", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "202988781601736", + "rshares": 44078823, + "vote_percent": 10000, + "last_update": "2016-07-24T17:54:51", + "num_changes": -1 + }, + { + "id": 1009132, + "voter": "gaming", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "197019079284514", + "rshares": 42778061, + "vote_percent": 10000, + "last_update": "2016-07-24T17:54:36", + "num_changes": -1 + }, + { + "id": 1009139, + "voter": "fiction", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "226840883735348", + "rshares": 49255541, + "vote_percent": 10000, + "last_update": "2016-07-24T17:54:42", + "num_changes": -1 + }, + { + "id": 1009157, + "voter": "kitchen", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "226812489297147", + "rshares": 49254543, + "vote_percent": 10000, + "last_update": "2016-07-24T17:54:57", + "num_changes": -1 + }, + { + "id": 1009154, + "voter": "vogue", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "238751504226267", + "rshares": 51845907, + "vote_percent": 10000, + "last_update": "2016-07-24T17:54:54", + "num_changes": -1 + }, + { + "id": 1009137, + "voter": "athletes", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "232756730610835", + "rshares": 50538830, + "vote_percent": 10000, + "last_update": "2016-07-24T17:54:39", + "num_changes": -1 + }, + { + "id": 1009147, + "voter": "architecture", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "143224079345927", + "rshares": 31100390, + "vote_percent": 10000, + "last_update": "2016-07-24T17:54:48", + "num_changes": -1 + }, + { + "id": 1006609, + "voter": "sharon", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "1930127299213", + "rshares": 17937789, + "vote_percent": 10000, + "last_update": "2016-07-24T17:20:39", + "num_changes": -1 + }, + { + "id": 1006605, + "voter": "lillianjones", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "2557201200699", + "rshares": 25593390, + "vote_percent": 10000, + "last_update": "2016-07-24T17:20:36", + "num_changes": -1 + }, + { + "id": 1006561, + "voter": "kental", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": 0, + "rshares": 55121187, + "vote_percent": 10000, + "last_update": "2016-07-24T17:19:57", + "num_changes": -1 + }, + { + "id": 1010055, + "voter": "miketr", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "83982871266768", + "rshares": 18239813, + "vote_percent": 10000, + "last_update": "2016-07-24T18:07:18", + "num_changes": -1 + }, + { + "id": 1006611, + "voter": "bison015", + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + "weight": "3521535165912", + "rshares": 32728077, + "vote_percent": 10000, + "last_update": "2016-07-24T17:20:39", + "num_changes": -1 + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json index 5c91fec3..b477a73b 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 361895, - "author": "agent", - "permlink": "re-a-spears-re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t213427581z", - "category": "life", - "parent_author": "a-spears", - "parent_permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", - "title": "", - "body": "haha, you're welcome, happy someone thinks the same way too!", - "json_metadata": "{\"tags\":[\"life\"]}", - "last_update": "2016-07-30T21:34:27", - "created": "2016-07-30T21:34:27", - "active": "2016-07-30T21:34:27", - "last_payout": "2016-08-30T10:16:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "agent", - "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 72637, - "author": "ashleybr", - "permlink": "re-a-spears-re-ashleybr-test-20160713t210145406z", - "category": "travel", - "parent_author": "a-spears", - "parent_permlink": "re-ashleybr-test-20160713t203411015z", - "title": "", - "body": "wow you are so kind, thank you sooo much for trying to help me! I appreciate it so much! I actually managed to get a hotel for the night now, but please tell your friend thank you so much from the bottom of my heart.", - "json_metadata": "{\"tags\":[\"travel\"]}", - "last_update": "2016-07-13T21:01:48", - "created": "2016-07-13T21:01:48", - "active": "2016-07-13T21:01:48", - "last_payout": "2016-08-25T12:51:45", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "ashleybr", - "root_permlink": "test", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 863165, - "author": "irit", - "permlink": "re-harvard-republican-club-refuses-to-endorse-donald-trump", - "category": "politics", - "parent_author": "a11at", - "parent_permlink": "harvard-republican-club-refuses-to-endorse-donald-trump", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-05T14:22:54", - "created": "2016-09-05T14:22:54", - "active": "2016-09-05T14:22:54", - "last_payout": "2016-09-07T09:22:36", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "a11at", - "root_permlink": "harvard-republican-club-refuses-to-endorse-donald-trump", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 833045, - "author": "irit", - "permlink": "re-disney-launches-its-own-messaging-app-disney-mix-aimed-at-kids-and-families", - "category": "disney", - "parent_author": "a11at", - "parent_permlink": "disney-launches-its-own-messaging-app-disney-mix-aimed-at-kids-and-families", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-02T09:40:42", - "created": "2016-09-02T09:40:42", - "active": "2016-09-02T09:40:42", - "last_payout": "2016-09-05T10:19:09", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "a11at", - "root_permlink": "disney-launches-its-own-messaging-app-disney-mix-aimed-at-kids-and-families", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 832230, - "author": "irit", - "permlink": "re-kim-woojin-breaks-world-record-in-qualifying-at-rio-olympics", - "category": "record", - "parent_author": "a11at", - "parent_permlink": "kim-woojin-breaks-world-record-in-qualifying-at-rio-olympics", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-02T07:12:45", - "created": "2016-09-02T07:12:45", - "active": "2016-09-02T07:12:45", - "last_payout": "2016-09-05T09:30:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "a11at", - "root_permlink": "kim-woojin-breaks-world-record-in-qualifying-at-rio-olympics", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 832042, - "author": "irit", - "permlink": "re-mother-and-son-team-up-for-a-games-first", - "category": "olimpic", - "parent_author": "a11at", - "parent_permlink": "mother-and-son-team-up-for-a-games-first", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-02T06:30:45", - "created": "2016-09-02T06:30:45", - "active": "2016-09-02T06:30:45", - "last_payout": "2016-09-05T09:21:30", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "a11at", - "root_permlink": "mother-and-son-team-up-for-a-games-first", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 831959, - "author": "irit", - "permlink": "re-audi-rs-q3-fl", - "category": "audi", - "parent_author": "a11at", - "parent_permlink": "audi-rs-q3-fl", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-02T06:08:54", - "created": "2016-09-02T06:08:54", - "active": "2016-09-02T06:08:54", - "last_payout": "2016-09-05T10:11:36", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "a11at", - "root_permlink": "audi-rs-q3-fl", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 831734, - "author": "irit", - "permlink": "re-uber-visa-rio", - "category": "visa", - "parent_author": "a11at", - "parent_permlink": "uber-visa-rio", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-02T05:29:21", - "created": "2016-09-02T05:29:21", - "active": "2016-09-02T05:29:21", - "last_payout": "2016-09-05T08:52:03", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "a11at", - "root_permlink": "uber-visa-rio", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 831410, - "author": "irit", - "permlink": "re-greek-pizza", - "category": "pizza", - "parent_author": "a11at", - "parent_permlink": "greek-pizza", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-02T04:30:03", - "created": "2016-09-02T04:30:03", - "active": "2016-09-02T04:30:03", - "last_payout": "2016-09-05T08:39:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "a11at", - "root_permlink": "greek-pizza", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 831270, - "author": "irit", - "permlink": "re-wsj-features-coins-ph-as-part-of-a-new-wave-of-financial-services-built-around-smartphones", - "category": "coinsph", - "parent_author": "a11at", - "parent_permlink": "wsj-features-coins-ph-as-part-of-a-new-wave-of-financial-services-built-around-smartphones", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-02T04:09:24", - "created": "2016-09-02T04:09:24", - "active": "2016-09-02T04:09:24", - "last_payout": "2016-09-05T08:53:03", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "a11at", - "root_permlink": "wsj-features-coins-ph-as-part-of-a-new-wave-of-financial-services-built-around-smartphones", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] -} \ No newline at end of file +// { +// "comments": [ +// { +// "id": 361895, +// "author": "agent", +// "permlink": "re-a-spears-re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t213427581z", +// "category": "life", +// "parent_author": "a-spears", +// "parent_permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", +// "title": "", +// "body": "haha, you're welcome, happy someone thinks the same way too!", +// "json_metadata": "{\"tags\":[\"life\"]}", +// "last_update": "2016-07-30T21:34:27", +// "created": "2016-07-30T21:34:27", +// "active": "2016-07-30T21:34:27", +// "last_payout": "2016-08-30T10:16:39", +// "depth": 2, +// "children": 0, +// "net_rshares": 0, +// "abs_rshares": 0, +// "vote_rshares": 0, +// "children_abs_rshares": 0, +// "cashout_time": "1969-12-31T23:59:59", +// "max_cashout_time": "1969-12-31T23:59:59", +// "total_vote_weight": 0, +// "reward_weight": 10000, +// "total_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "curator_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "author_rewards": 0, +// "net_votes": 0, +// "root_author": "agent", +// "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", +// "max_accepted_payout": { +// "amount": "1000000000", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "percent_steem_dollars": 10000, +// "allow_replies": true, +// "allow_votes": true, +// "allow_curation_rewards": true, +// "beneficiaries": [] +// }, +// { +// "id": 72637, +// "author": "ashleybr", +// "permlink": "re-a-spears-re-ashleybr-test-20160713t210145406z", +// "category": "travel", +// "parent_author": "a-spears", +// "parent_permlink": "re-ashleybr-test-20160713t203411015z", +// "title": "", +// "body": "wow you are so kind, thank you sooo much for trying to help me! I appreciate it so much! I actually managed to get a hotel for the night now, but please tell your friend thank you so much from the bottom of my heart.", +// "json_metadata": "{\"tags\":[\"travel\"]}", +// "last_update": "2016-07-13T21:01:48", +// "created": "2016-07-13T21:01:48", +// "active": "2016-07-13T21:01:48", +// "last_payout": "2016-08-25T12:51:45", +// "depth": 2, +// "children": 0, +// "net_rshares": 0, +// "abs_rshares": 0, +// "vote_rshares": 0, +// "children_abs_rshares": 0, +// "cashout_time": "1969-12-31T23:59:59", +// "max_cashout_time": "1969-12-31T23:59:59", +// "total_vote_weight": 0, +// "reward_weight": 10000, +// "total_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "curator_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "author_rewards": 0, +// "net_votes": 1, +// "root_author": "ashleybr", +// "root_permlink": "test", +// "max_accepted_payout": { +// "amount": "1000000000", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "percent_steem_dollars": 10000, +// "allow_replies": true, +// "allow_votes": true, +// "allow_curation_rewards": true, +// "beneficiaries": [] +// }, +// { +// "id": 863165, +// "author": "irit", +// "permlink": "re-harvard-republican-club-refuses-to-endorse-donald-trump", +// "category": "politics", +// "parent_author": "a11at", +// "parent_permlink": "harvard-republican-club-refuses-to-endorse-donald-trump", +// "title": "", +// "body": "I upvote U", +// "json_metadata": "{}", +// "last_update": "2016-09-05T14:22:54", +// "created": "2016-09-05T14:22:54", +// "active": "2016-09-05T14:22:54", +// "last_payout": "2016-09-07T09:22:36", +// "depth": 1, +// "children": 0, +// "net_rshares": 0, +// "abs_rshares": 0, +// "vote_rshares": 0, +// "children_abs_rshares": 0, +// "cashout_time": "1969-12-31T23:59:59", +// "max_cashout_time": "1969-12-31T23:59:59", +// "total_vote_weight": 0, +// "reward_weight": 10000, +// "total_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "curator_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "author_rewards": 0, +// "net_votes": 0, +// "root_author": "a11at", +// "root_permlink": "harvard-republican-club-refuses-to-endorse-donald-trump", +// "max_accepted_payout": { +// "amount": "1000000000", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "percent_steem_dollars": 10000, +// "allow_replies": true, +// "allow_votes": true, +// "allow_curation_rewards": true, +// "beneficiaries": [] +// }, +// { +// "id": 833045, +// "author": "irit", +// "permlink": "re-disney-launches-its-own-messaging-app-disney-mix-aimed-at-kids-and-families", +// "category": "disney", +// "parent_author": "a11at", +// "parent_permlink": "disney-launches-its-own-messaging-app-disney-mix-aimed-at-kids-and-families", +// "title": "", +// "body": "I upvote U", +// "json_metadata": "{}", +// "last_update": "2016-09-02T09:40:42", +// "created": "2016-09-02T09:40:42", +// "active": "2016-09-02T09:40:42", +// "last_payout": "2016-09-05T10:19:09", +// "depth": 1, +// "children": 0, +// "net_rshares": 0, +// "abs_rshares": 0, +// "vote_rshares": 0, +// "children_abs_rshares": 0, +// "cashout_time": "1969-12-31T23:59:59", +// "max_cashout_time": "1969-12-31T23:59:59", +// "total_vote_weight": 0, +// "reward_weight": 10000, +// "total_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "curator_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "author_rewards": 0, +// "net_votes": 1, +// "root_author": "a11at", +// "root_permlink": "disney-launches-its-own-messaging-app-disney-mix-aimed-at-kids-and-families", +// "max_accepted_payout": { +// "amount": "1000000000", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "percent_steem_dollars": 10000, +// "allow_replies": true, +// "allow_votes": true, +// "allow_curation_rewards": true, +// "beneficiaries": [] +// }, +// { +// "id": 832230, +// "author": "irit", +// "permlink": "re-kim-woojin-breaks-world-record-in-qualifying-at-rio-olympics", +// "category": "record", +// "parent_author": "a11at", +// "parent_permlink": "kim-woojin-breaks-world-record-in-qualifying-at-rio-olympics", +// "title": "", +// "body": "I upvote U", +// "json_metadata": "{}", +// "last_update": "2016-09-02T07:12:45", +// "created": "2016-09-02T07:12:45", +// "active": "2016-09-02T07:12:45", +// "last_payout": "2016-09-05T09:30:45", +// "depth": 1, +// "children": 0, +// "net_rshares": 0, +// "abs_rshares": 0, +// "vote_rshares": 0, +// "children_abs_rshares": 0, +// "cashout_time": "1969-12-31T23:59:59", +// "max_cashout_time": "1969-12-31T23:59:59", +// "total_vote_weight": 0, +// "reward_weight": 10000, +// "total_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "curator_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "author_rewards": 0, +// "net_votes": 1, +// "root_author": "a11at", +// "root_permlink": "kim-woojin-breaks-world-record-in-qualifying-at-rio-olympics", +// "max_accepted_payout": { +// "amount": "1000000000", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "percent_steem_dollars": 10000, +// "allow_replies": true, +// "allow_votes": true, +// "allow_curation_rewards": true, +// "beneficiaries": [] +// }, +// { +// "id": 832042, +// "author": "irit", +// "permlink": "re-mother-and-son-team-up-for-a-games-first", +// "category": "olimpic", +// "parent_author": "a11at", +// "parent_permlink": "mother-and-son-team-up-for-a-games-first", +// "title": "", +// "body": "I upvote U", +// "json_metadata": "{}", +// "last_update": "2016-09-02T06:30:45", +// "created": "2016-09-02T06:30:45", +// "active": "2016-09-02T06:30:45", +// "last_payout": "2016-09-05T09:21:30", +// "depth": 1, +// "children": 0, +// "net_rshares": 0, +// "abs_rshares": 0, +// "vote_rshares": 0, +// "children_abs_rshares": 0, +// "cashout_time": "1969-12-31T23:59:59", +// "max_cashout_time": "1969-12-31T23:59:59", +// "total_vote_weight": 0, +// "reward_weight": 10000, +// "total_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "curator_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "author_rewards": 0, +// "net_votes": 1, +// "root_author": "a11at", +// "root_permlink": "mother-and-son-team-up-for-a-games-first", +// "max_accepted_payout": { +// "amount": "1000000000", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "percent_steem_dollars": 10000, +// "allow_replies": true, +// "allow_votes": true, +// "allow_curation_rewards": true, +// "beneficiaries": [] +// }, +// { +// "id": 831959, +// "author": "irit", +// "permlink": "re-audi-rs-q3-fl", +// "category": "audi", +// "parent_author": "a11at", +// "parent_permlink": "audi-rs-q3-fl", +// "title": "", +// "body": "I upvote U", +// "json_metadata": "{}", +// "last_update": "2016-09-02T06:08:54", +// "created": "2016-09-02T06:08:54", +// "active": "2016-09-02T06:08:54", +// "last_payout": "2016-09-05T10:11:36", +// "depth": 1, +// "children": 0, +// "net_rshares": 0, +// "abs_rshares": 0, +// "vote_rshares": 0, +// "children_abs_rshares": 0, +// "cashout_time": "1969-12-31T23:59:59", +// "max_cashout_time": "1969-12-31T23:59:59", +// "total_vote_weight": 0, +// "reward_weight": 10000, +// "total_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "curator_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "author_rewards": 0, +// "net_votes": 1, +// "root_author": "a11at", +// "root_permlink": "audi-rs-q3-fl", +// "max_accepted_payout": { +// "amount": "1000000000", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "percent_steem_dollars": 10000, +// "allow_replies": true, +// "allow_votes": true, +// "allow_curation_rewards": true, +// "beneficiaries": [] +// }, +// { +// "id": 831734, +// "author": "irit", +// "permlink": "re-uber-visa-rio", +// "category": "visa", +// "parent_author": "a11at", +// "parent_permlink": "uber-visa-rio", +// "title": "", +// "body": "I upvote U", +// "json_metadata": "{}", +// "last_update": "2016-09-02T05:29:21", +// "created": "2016-09-02T05:29:21", +// "active": "2016-09-02T05:29:21", +// "last_payout": "2016-09-05T08:52:03", +// "depth": 1, +// "children": 0, +// "net_rshares": 0, +// "abs_rshares": 0, +// "vote_rshares": 0, +// "children_abs_rshares": 0, +// "cashout_time": "1969-12-31T23:59:59", +// "max_cashout_time": "1969-12-31T23:59:59", +// "total_vote_weight": 0, +// "reward_weight": 10000, +// "total_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "curator_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "author_rewards": 0, +// "net_votes": 1, +// "root_author": "a11at", +// "root_permlink": "uber-visa-rio", +// "max_accepted_payout": { +// "amount": "1000000000", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "percent_steem_dollars": 10000, +// "allow_replies": true, +// "allow_votes": true, +// "allow_curation_rewards": true, +// "beneficiaries": [] +// }, +// { +// "id": 831410, +// "author": "irit", +// "permlink": "re-greek-pizza", +// "category": "pizza", +// "parent_author": "a11at", +// "parent_permlink": "greek-pizza", +// "title": "", +// "body": "I upvote U", +// "json_metadata": "{}", +// "last_update": "2016-09-02T04:30:03", +// "created": "2016-09-02T04:30:03", +// "active": "2016-09-02T04:30:03", +// "last_payout": "2016-09-05T08:39:48", +// "depth": 1, +// "children": 0, +// "net_rshares": 0, +// "abs_rshares": 0, +// "vote_rshares": 0, +// "children_abs_rshares": 0, +// "cashout_time": "1969-12-31T23:59:59", +// "max_cashout_time": "1969-12-31T23:59:59", +// "total_vote_weight": 0, +// "reward_weight": 10000, +// "total_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "curator_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "author_rewards": 0, +// "net_votes": 1, +// "root_author": "a11at", +// "root_permlink": "greek-pizza", +// "max_accepted_payout": { +// "amount": "1000000000", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "percent_steem_dollars": 10000, +// "allow_replies": true, +// "allow_votes": true, +// "allow_curation_rewards": true, +// "beneficiaries": [] +// }, +// { +// "id": 831270, +// "author": "irit", +// "permlink": "re-wsj-features-coins-ph-as-part-of-a-new-wave-of-financial-services-built-around-smartphones", +// "category": "coinsph", +// "parent_author": "a11at", +// "parent_permlink": "wsj-features-coins-ph-as-part-of-a-new-wave-of-financial-services-built-around-smartphones", +// "title": "", +// "body": "I upvote U", +// "json_metadata": "{}", +// "last_update": "2016-09-02T04:09:24", +// "created": "2016-09-02T04:09:24", +// "active": "2016-09-02T04:09:24", +// "last_payout": "2016-09-05T08:53:03", +// "depth": 1, +// "children": 0, +// "net_rshares": 0, +// "abs_rshares": 0, +// "vote_rshares": 0, +// "children_abs_rshares": 0, +// "cashout_time": "1969-12-31T23:59:59", +// "max_cashout_time": "1969-12-31T23:59:59", +// "total_vote_weight": 0, +// "reward_weight": 10000, +// "total_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "curator_payout_value": { +// "amount": "0", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "author_rewards": 0, +// "net_votes": 1, +// "root_author": "a11at", +// "root_permlink": "wsj-features-coins-ph-as-part-of-a-new-wave-of-financial-services-built-around-smartphones", +// "max_accepted_payout": { +// "amount": "1000000000", +// "precision": 3, +// "nai": "@@000000013" +// }, +// "percent_steem_dollars": 10000, +// "allow_replies": true, +// "allow_votes": true, +// "allow_curation_rewards": true, +// "beneficiaries": [] +// } +// ] +// } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_all_good_data.pat.json b/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_all_good_data.pat.json new file mode 100644 index 00000000..e45c4650 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_all_good_data.pat.json @@ -0,0 +1,114 @@ +{ + "votes": [ + { + "id": 3343005, + "voter": "winstonwolfe", + "author": "roelandp", + "permlink": "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours", + "weight": "861294373426438", + "rshares": "8656137777", + "vote_percent": 10000, + "last_update": "2016-08-25T21:51:03", + "num_changes": -1 + }, + { + "id": 3342451, + "voter": "happyphoenix", + "author": "roelandp", + "permlink": "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours", + "weight": "62433843229167", + "rshares": 737544850, + "vote_percent": 10000, + "last_update": "2016-08-25T21:38:18", + "num_changes": -1 + }, + { + "id": 3342235, + "voter": "curator", + "author": "roelandp", + "permlink": "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours", + "weight": "181113788939196", + "rshares": 672065480, + "vote_percent": 10000, + "last_update": "2016-08-25T21:33:48", + "num_changes": -1 + }, + { + "id": 3341523, + "voter": "dirty.hera", + "author": "roelandp", + "permlink": "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours", + "weight": "308139772097377", + "rshares": 1666197673, + "vote_percent": 10000, + "last_update": "2016-08-25T21:19:48", + "num_changes": -1 + }, + { + "id": 3341256, + "voter": "gomeravibz", + "author": "roelandp", + "permlink": "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours", + "weight": "1695116440663136", + "rshares": "45913763443", + "vote_percent": 10000, + "last_update": "2016-08-25T21:14:30", + "num_changes": -1 + }, + { + "id": 3342963, + "voter": "nekromarinist", + "author": "roelandp", + "permlink": "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours", + "weight": "538001334195297", + "rshares": "5388352911", + "vote_percent": 10000, + "last_update": "2016-08-25T21:49:51", + "num_changes": -1 + }, + { + "id": 3343754, + "voter": "allasyummyfood", + "author": "roelandp", + "permlink": "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours", + "weight": "2802215769731967", + "rshares": "29066230989", + "vote_percent": 10000, + "last_update": "2016-08-25T22:11:33", + "num_changes": -1 + }, + { + "id": 3351018, + "voter": "felixxx", + "author": "roelandp", + "permlink": "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours", + "weight": "650047031947827", + "rshares": "11626372889", + "vote_percent": 10000, + "last_update": "2016-08-26T00:54:48", + "num_changes": -1 + }, + { + "id": 3344113, + "voter": "yng-entrepreneur", + "author": "roelandp", + "permlink": "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours", + "weight": "1853467546566796", + "rshares": "19752627093", + "vote_percent": 10000, + "last_update": "2016-08-25T22:17:00", + "num_changes": -1 + }, + { + "id": 3341826, + "voter": "laoyao", + "author": "roelandp", + "permlink": "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours", + "weight": "4286839674777575", + "rshares": "21674528091", + "vote_percent": 10000, + "last_update": "2016-08-25T21:27:21", + "num_changes": -1 + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_no_data.pat.json b/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_no_data.pat.json new file mode 100644 index 00000000..4629880d --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_no_data.pat.json @@ -0,0 +1,114 @@ +{ + "votes": [ + { + "id": 9, + "voter": "dantheman", + "author": "steemit", + "permlink": "firstpost", + "weight": "32866333630", + "rshares": 375241, + "vote_percent": 100, + "last_update": "2016-04-07T19:15:36", + "num_changes": -1 + }, + { + "id": 4, + "voter": "mr11acdee", + "author": "steemit", + "permlink": "firstpost", + "weight": "876019385955", + "rshares": 886132, + "vote_percent": 10000, + "last_update": "2016-04-06T19:29:03", + "num_changes": -1 + }, + { + "id": 0, + "voter": "steemit78", + "author": "steemit", + "permlink": "firstpost", + "weight": "5100000000", + "rshares": 5100, + "vote_percent": 10000, + "last_update": "2016-03-30T20:13:00", + "num_changes": -1 + }, + { + "id": 88, + "voter": "anonymous", + "author": "steemit", + "permlink": "firstpost", + "weight": "312616340416", + "rshares": 1259167, + "vote_percent": 10000, + "last_update": "2016-04-09T17:34:36", + "num_changes": -1 + }, + { + "id": 257, + "voter": "hello", + "author": "steemit", + "permlink": "firstpost", + "weight": 3369765102, + "rshares": 318519, + "vote_percent": 10000, + "last_update": "2016-04-15T10:12:36", + "num_changes": -1 + }, + { + "id": 255, + "voter": "world", + "author": "steemit", + "permlink": "firstpost", + "weight": 472619298, + "rshares": 153384, + "vote_percent": 10000, + "last_update": "2016-04-15T10:12:30", + "num_changes": -1 + }, + { + "id": 316, + "voter": "ned", + "author": "steemit", + "permlink": "firstpost", + "weight": 0, + "rshares": -936400, + "vote_percent": -100, + "last_update": "2016-04-16T17:12:54", + "num_changes": -1 + }, + { + "id": 258, + "voter": "fufubar1", + "author": "steemit", + "permlink": "firstpost", + "weight": 21052793, + "rshares": 59412, + "vote_percent": 10000, + "last_update": "2016-04-15T10:12:39", + "num_changes": -1 + }, + { + "id": 256, + "voter": "anonymous1", + "author": "steemit", + "permlink": "firstpost", + "weight": 437001, + "rshares": 14997, + "vote_percent": 10000, + "last_update": "2016-04-15T10:12:33", + "num_changes": -1 + }, + { + "id": 6, + "voter": "red", + "author": "steemit", + "permlink": "firstpost", + "weight": 3754, + "rshares": 1441, + "vote_percent": 100, + "last_update": "2016-04-07T14:55:15", + "num_changes": -1 + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_one_before_last.pat.json b/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_one_before_last.pat.json new file mode 100644 index 00000000..3fbab775 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_one_before_last.pat.json @@ -0,0 +1,114 @@ +{ + "votes": [ + { + "id": 3341364, + "voter": "pickoum", + "author": "roelandp", + "permlink": "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours", + "weight": "11168221241042", + "rshares": 67807559, + "vote_percent": 10000, + "last_update": "2016-08-25T21:16:24", + "num_changes": -1 + }, + { + "id": 3397159, + "voter": "pfunk", + "author": "anxietymaven", + "permlink": "re-adm-re-anxietymaven-ask-yourself-one-question-fuck-steemit-or-nah-20160825t211407406z", + "weight": 0, + "rshares": -742966944841, + "vote_percent": -10000, + "last_update": "2016-08-26T22:06:21", + "num_changes": 0 + }, + { + "id": 3344706, + "voter": "boy", + "author": "jamielefay", + "permlink": "ahe-ey-sky-falling-an-original-novel-part-1-audiobook", + "weight": "6006017962432724", + "rshares": 2476122539, + "vote_percent": 10000, + "last_update": "2016-08-25T22:28:54", + "num_changes": -1 + }, + { + "id": 3344694, + "voter": "bue-witness", + "author": "jamielefay", + "permlink": "ahe-ey-sky-falling-an-original-novel-part-1-audiobook", + "weight": "7417167962646132", + "rshares": 3005691694, + "vote_percent": 10000, + "last_update": "2016-08-25T22:28:45", + "num_changes": -1 + }, + { + "id": 3344711, + "voter": "bunny", + "author": "jamielefay", + "permlink": "ahe-ey-sky-falling-an-original-novel-part-1-audiobook", + "weight": "1350783817158092", + "rshares": 557353091, + "vote_percent": 10000, + "last_update": "2016-08-25T22:28:57", + "num_changes": -1 + }, + { + "id": 3344696, + "voter": "bue", + "author": "jamielefay", + "permlink": "ahe-ey-sky-falling-an-original-novel-part-1-audiobook", + "weight": "104552198157919482", + "rshares": "42722553918", + "vote_percent": 10000, + "last_update": "2016-08-25T22:28:48", + "num_changes": -1 + }, + { + "id": 3344699, + "voter": "mini", + "author": "jamielefay", + "permlink": "ahe-ey-sky-falling-an-original-novel-part-1-audiobook", + "weight": "3221828527667312", + "rshares": 1327119432, + "vote_percent": 10000, + "last_update": "2016-08-25T22:28:48", + "num_changes": -1 + }, + { + "id": 3344712, + "voter": "moon", + "author": "jamielefay", + "permlink": "ahe-ey-sky-falling-an-original-novel-part-1-audiobook", + "weight": "414011598841308", + "rshares": 170849766, + "vote_percent": 10000, + "last_update": "2016-08-25T22:29:00", + "num_changes": -1 + }, + { + "id": 3344702, + "voter": "healthcare", + "author": "jamielefay", + "permlink": "ahe-ey-sky-falling-an-original-novel-part-1-audiobook", + "weight": "1207918840148852", + "rshares": 497724578, + "vote_percent": 10000, + "last_update": "2016-08-25T22:28:51", + "num_changes": -1 + }, + { + "id": 3344709, + "voter": "daniel.pan", + "author": "jamielefay", + "permlink": "ahe-ey-sky-falling-an-original-novel-part-1-audiobook", + "weight": "1851065537354896", + "rshares": 763593782, + "vote_percent": 10000, + "last_update": "2016-08-25T22:28:54", + "num_changes": -1 + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_only_voter.pat.json b/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_only_voter.pat.json new file mode 100644 index 00000000..f938989b --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_only_voter.pat.json @@ -0,0 +1,114 @@ +{ + "votes": [ + { + "id": 603086, + "voter": "curator", + "author": "steemit", + "permlink": "firstpost", + "weight": 0, + "rshares": 95219365, + "vote_percent": 10000, + "last_update": "2016-07-19T04:40:30", + "num_changes": -1 + }, + { + "id": 1614263, + "voter": "dubovoy", + "author": "steemit", + "permlink": "firstpost", + "weight": 0, + "rshares": 232295871, + "vote_percent": 10000, + "last_update": "2016-07-31T19:55:21", + "num_changes": 0 + }, + { + "id": 4098784, + "voter": "solos", + "author": "steemit", + "permlink": "firstpost", + "weight": 0, + "rshares": 0, + "vote_percent": 10000, + "last_update": "2016-09-09T15:34:36", + "num_changes": 0 + }, + { + "id": 650424, + "voter": "creatorgalaxy", + "author": "steemit", + "permlink": "firstpost", + "weight": 0, + "rshares": 96945805, + "vote_percent": 10000, + "last_update": "2016-07-19T20:29:33", + "num_changes": -1 + }, + { + "id": 776832, + "voter": "trigonice29", + "author": "steemit", + "permlink": "firstpost", + "weight": 0, + "rshares": 99813231, + "vote_percent": 10000, + "last_update": "2016-07-21T12:24:27", + "num_changes": -1 + }, + { + "id": 3479202, + "voter": "blysards", + "author": "steemit", + "permlink": "firstpost", + "weight": 0, + "rshares": 0, + "vote_percent": 10000, + "last_update": "2016-08-28T16:49:57", + "num_changes": 0 + }, + { + "id": 2783362, + "voter": "uwe69", + "author": "steemit", + "permlink": "firstpost", + "weight": 0, + "rshares": 3721016208, + "vote_percent": 10000, + "last_update": "2016-08-16T10:07:39", + "num_changes": 0 + }, + { + "id": 911514, + "voter": "nigmat", + "author": "steemit", + "permlink": "firstpost", + "weight": 0, + "rshares": 1279854, + "vote_percent": 10000, + "last_update": "2016-07-23T13:32:36", + "num_changes": -1 + }, + { + "id": 2217163, + "voter": "magicmonk", + "author": "steemit", + "permlink": "firstpost", + "weight": 0, + "rshares": "13974353753", + "vote_percent": 10000, + "last_update": "2016-08-07T05:23:48", + "num_changes": 0 + }, + { + "id": 2633913, + "voter": "satoshifpv", + "author": "steemit", + "permlink": "firstpost", + "weight": 0, + "rshares": "4968585456", + "vote_percent": 10000, + "last_update": "2016-08-13T15:16:36", + "num_changes": 0 + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_author_permlink.pat.json b/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_author_permlink.pat.json new file mode 100644 index 00000000..d563d841 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_author_permlink.pat.json @@ -0,0 +1,114 @@ +{ + "votes": [ + { + "id": 54513, + "voter": "nxt2", + "author": "satoshi", + "permlink": "bulk-generate-privkeys", + "weight": 287703877, + "rshares": "4800000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:52:00", + "num_changes": -1 + }, + { + "id": 54508, + "voter": "nxt2", + "author": "au1nethyb1", + "permlink": "reducing-friction-for-critical-mass-adoption-of-steemit", + "weight": 4, + "rshares": "4900000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:50:27", + "num_changes": -1 + }, + { + "id": 54511, + "voter": "nxt2", + "author": "blocktrades", + "permlink": "-blocktrades-adds-support-for-directly-buyingselling-steem", + "weight": 1, + "rshares": "4900000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:50:48", + "num_changes": -1 + }, + { + "id": 54512, + "voter": "nxt2", + "author": "nextgencrypto", + "permlink": "request-for-proposal-steem-wordpress-plugin", + "weight": 2, + "rshares": "4900000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:51:15", + "num_changes": -1 + }, + { + "id": 54509, + "voter": "nxt2", + "author": "dan", + "permlink": "is-the-dao-going-to-be-doa", + "weight": 3, + "rshares": "4900000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:50:36", + "num_changes": -1 + }, + { + "id": 54507, + "voter": "nxt2", + "author": "judyhopps", + "permlink": "hi-i-googled-something-and-ended-up-here", + "weight": 17, + "rshares": "5000000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:50:03", + "num_changes": -1 + }, + { + "id": 54504, + "voter": "nxt2", + "author": "clains", + "permlink": "hello-world-my-name-is-clains", + "weight": 9, + "rshares": "5000000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:48:18", + "num_changes": -1 + }, + { + "id": 54505, + "voter": "nxt2", + "author": "smooth", + "permlink": "voting-is-a-popularity-contest", + "weight": 12, + "rshares": "5000000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:48:27", + "num_changes": -1 + }, + { + "id": 54506, + "voter": "nxt2", + "author": "bleepcoin", + "permlink": "hi-im-ollie", + "weight": 71, + "rshares": "5000000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:48:30", + "num_changes": -1 + }, + { + "id": 54502, + "voter": "nxt2", + "author": "donkeypong", + "permlink": "my-name-is-ziggy-aka-donkeypongs-companion", + "weight": 61, + "rshares": "5100000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:48:12", + "num_changes": -1 + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_no_data.pat.json b/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_no_data.pat.json new file mode 100644 index 00000000..d563d841 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_no_data.pat.json @@ -0,0 +1,114 @@ +{ + "votes": [ + { + "id": 54513, + "voter": "nxt2", + "author": "satoshi", + "permlink": "bulk-generate-privkeys", + "weight": 287703877, + "rshares": "4800000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:52:00", + "num_changes": -1 + }, + { + "id": 54508, + "voter": "nxt2", + "author": "au1nethyb1", + "permlink": "reducing-friction-for-critical-mass-adoption-of-steemit", + "weight": 4, + "rshares": "4900000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:50:27", + "num_changes": -1 + }, + { + "id": 54511, + "voter": "nxt2", + "author": "blocktrades", + "permlink": "-blocktrades-adds-support-for-directly-buyingselling-steem", + "weight": 1, + "rshares": "4900000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:50:48", + "num_changes": -1 + }, + { + "id": 54512, + "voter": "nxt2", + "author": "nextgencrypto", + "permlink": "request-for-proposal-steem-wordpress-plugin", + "weight": 2, + "rshares": "4900000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:51:15", + "num_changes": -1 + }, + { + "id": 54509, + "voter": "nxt2", + "author": "dan", + "permlink": "is-the-dao-going-to-be-doa", + "weight": 3, + "rshares": "4900000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:50:36", + "num_changes": -1 + }, + { + "id": 54507, + "voter": "nxt2", + "author": "judyhopps", + "permlink": "hi-i-googled-something-and-ended-up-here", + "weight": 17, + "rshares": "5000000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:50:03", + "num_changes": -1 + }, + { + "id": 54504, + "voter": "nxt2", + "author": "clains", + "permlink": "hello-world-my-name-is-clains", + "weight": 9, + "rshares": "5000000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:48:18", + "num_changes": -1 + }, + { + "id": 54505, + "voter": "nxt2", + "author": "smooth", + "permlink": "voting-is-a-popularity-contest", + "weight": 12, + "rshares": "5000000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:48:27", + "num_changes": -1 + }, + { + "id": 54506, + "voter": "nxt2", + "author": "bleepcoin", + "permlink": "hi-im-ollie", + "weight": 71, + "rshares": "5000000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:48:30", + "num_changes": -1 + }, + { + "id": 54502, + "voter": "nxt2", + "author": "donkeypong", + "permlink": "my-name-is-ziggy-aka-donkeypongs-companion", + "weight": 61, + "rshares": "5100000000", + "vote_percent": 10000, + "last_update": "2016-06-05T06:48:12", + "num_changes": -1 + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_voter.pat.json b/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_voter.pat.json new file mode 100644 index 00000000..8d5069f0 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_voter.pat.json @@ -0,0 +1,114 @@ +{ + "votes": [ + { + "id": 4468, + "voter": "bunny", + "author": "wackou", + "permlink": "wackou-witness-post", + "weight": 27, + "rshares": 3782373700, + "vote_percent": 10000, + "last_update": "2016-05-04T05:20:06", + "num_changes": -1 + }, + { + "id": 107, + "voter": "bunny", + "author": "bue-witness", + "permlink": "bue-witness-post", + "weight": 5, + "rshares": 206, + "vote_percent": 10000, + "last_update": "2016-04-10T15:31:15", + "num_changes": -1 + }, + { + "id": 193, + "voter": "bunny", + "author": "boy", + "permlink": "news", + "weight": 41823962, + "rshares": 3936, + "vote_percent": 10000, + "last_update": "2016-04-13T18:12:15", + "num_changes": -1 + }, + { + "id": 169, + "voter": "bunny", + "author": "bue", + "permlink": "news", + "weight": 13204514, + "rshares": 3936, + "vote_percent": 10000, + "last_update": "2016-04-13T12:09:39", + "num_changes": -1 + }, + { + "id": 4460, + "voter": "bunny", + "author": "pop", + "permlink": "china", + "weight": 94422, + "rshares": 3859565000, + "vote_percent": 10000, + "last_update": "2016-05-04T05:16:42", + "num_changes": -1 + }, + { + "id": 4459, + "voter": "bunny", + "author": "pop", + "permlink": "taiwanese", + "weight": 79128, + "rshares": 3936756300, + "vote_percent": 10000, + "last_update": "2016-05-04T05:16:39", + "num_changes": -1 + }, + { + "id": 4462, + "voter": "bunny", + "author": "ice", + "permlink": "taiwan", + "weight": 44360, + "rshares": 3859565000, + "vote_percent": 10000, + "last_update": "2016-05-04T05:16:48", + "num_changes": -1 + }, + { + "id": 11966, + "voter": "bunny", + "author": "pharesim", + "permlink": "witness-post", + "weight": 3, + "rshares": 3627991100, + "vote_percent": 10000, + "last_update": "2016-08-27T00:39:00", + "num_changes": -1 + }, + { + "id": 4495, + "voter": "bunny", + "author": "silver", + "permlink": "panama-papers", + "weight": 6663372, + "rshares": 3319225900, + "vote_percent": 10000, + "last_update": "2016-05-04T05:21:57", + "num_changes": -1 + }, + { + "id": 4480, + "voter": "bunny", + "author": "dele-puppy", + "permlink": "dele-puppy-witness-thread", + "weight": 2464, + "rshares": 3550799800, + "vote_percent": 10000, + "last_update": "2016-05-04T05:20:54", + "num_changes": -1 + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/test_database_api_patterns.tavern.yaml b/hivemind/tavern/test_database_api_patterns.tavern.yaml index e903f0f4..64b64963 100644 --- a/hivemind/tavern/test_database_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_database_api_patterns.tavern.yaml @@ -386,7 +386,7 @@ includes: - !include common.yaml stages: - - name: list_comments_by_cashout_time + - name: list_comments_by_permlink request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -415,7 +415,7 @@ includes: - !include common.yaml stages: - - name: list_comments_by_cashout_time + - name: list_comments_by_permlink request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -444,7 +444,7 @@ includes: - !include common.yaml stages: - - name: list_comments_by_cashout_time + - name: list_comments_by_permlink request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -482,7 +482,7 @@ includes: - !include common.yaml stages: - - name: list_comments_by_cashout_time + - name: list_comments_by_permlink request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -1510,3 +1510,767 @@ stages: function: validate_response:compare_error_message extra_kwargs: message: "Day of month value is out of range 1..31:Day of month value is out of range 1..31: unable to convert ISO-formatted string to fc::time_point_sec" + +######################## LIST VOTES ######################## + + +####################### COMMENT VOTER ###################### +--- +test_name: Hivemind database_api.list_votes patterns test order "by_comment_voter" no data + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_votes_by_comment_voter + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_votes" + params: + { + "start": ["", "", ""], + "limit": 10, + "order": "by_comment_voter", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_votes_by_comment_voter_no_data" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_votes patterns test order "by_comment_voter" only voter + +marks: + - patterntest + - xfail # wrong output, shows first post votes + +includes: + - !include common.yaml + +stages: + - name: list_votes_by_comment_voter + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_votes" + params: + { + "start": ["", "", "winstonwolfe"], + "limit": 10, + "order": "by_comment_voter", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_votes_by_comment_voter_only_voter" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_votes patterns test order "by_comment_voter" all good data + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_votes_by_comment_voter + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_votes" + params: + { + "start": ["roelandp", "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours", "winstonwolfe"], + "limit": 10, + "order": "by_comment_voter", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_votes_by_comment_voter_all_good_data" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_votes patterns test order "by_comment_voter" one before last voter + +marks: + - patterntest + - xfail # only first is correct, rest is random + +includes: + - !include common.yaml + +stages: + - name: list_votes_by_comment_voter + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_votes" + params: + { + "start": ["roelandp", "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours", "pickoum"], + "limit": 10, + "order": "by_comment_voter", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_votes_by_comment_voter_one_before_last" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_votes patterns test order "by_comment_voter" author + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_votes_by_comment_voter + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_votes" + params: + { + "start": ["roelandp", "", ""], + "limit": 10, + "order": "by_comment_voter", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:comment != nullptr: Could not find comment roelandp/." + +--- +test_name: Hivemind database_api.list_votes patterns test order "by_comment_voter" permlink + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_votes_by_comment_voter + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_votes" + params: + { + "start": ["", "re-roelandp-tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours-20160825t212252221z", ""], + "limit": 10, + "order": "by_comment_voter", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:comment != nullptr: Could not find comment /re-roelandp-tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours-20160825t212252221z." + +####################### VOTER COMMENT ###################### +--- +test_name: Hivemind database_api.list_votes patterns test order "by_voter_comment" no data + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_votes_by_voter_comment + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_votes" + params: + { + "start": ["", "", ""], + "limit": 10, + "order": "by_voter_comment", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_votes_by_voter_comment_no_data" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_votes patterns test order "by_voter_comment" voter + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_votes_by_voter_comment + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_votes" + params: + { + "start": ["bunny", "", ""], + "limit": 10, + "order": "by_voter_comment", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_votes_by_voter_comment_voter" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_votes patterns test order "by_voter_comment" author + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_votes_by_voter_comment + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_votes" + params: + { + "start": ["", "roelandp", ""], + "limit": 10, + "order": "by_voter_comment", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:comment != nullptr: Could not find comment roelandp/." + +--- +test_name: Hivemind database_api.list_votes patterns test order "by_voter_comment" permlink + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_votes_by_voter_comment + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_votes" + params: + { + "start": ["", "", "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours"], + "limit": 10, + "order": "by_voter_comment", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:comment != nullptr: Could not find comment /tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours." + +--- +test_name: Hivemind database_api.list_votes patterns test order "by_voter_comment" author + permlink + +marks: + - patterntest + - xfail # show "voter": "nxt2" votes, not connected with author and permlink (like no data) + +includes: + - !include common.yaml + +stages: + - name: list_votes_by_voter_comment + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_votes" + params: + { + "start": ["", "roelandp", "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours"], + "limit": 10, + "order": "by_voter_comment", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_votes_by_voter_comment_author_permlink" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.list_votes patterns test order "by_voter_comment" author + not full permlink + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_votes_by_voter_comment + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_votes" + params: + { + "start": ["", "roelandp", "tldr-an-exploration-in-st"], + "limit": 10, + "order": "by_voter_comment", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:comment != nullptr: Could not find comment roelandp/tldr-an-exploration-in-st." + +--- +test_name: Hivemind database_api.list_votes patterns test order wrong order + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: list_votes_by_voter_comment + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_votes" + params: + { + "start": ["", "roelandp", "tldr-an-exploration-in-st"], + "limit": 10, + "order": "by_author", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Bad Cast:invalid name 'by_author' in enum 'steem::plugins::database_api::sort_order_type'" + +######################## FIND VOTES ######################## + +--- +test_name: Hivemind database_api.find_votes patterns test all data + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: find_votes + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.find_votes" + params: + { + "author": "kental", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "find_votes_all_data" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.find_votes patterns test no data + +marks: + - patterntest + - failed # on API docs it "shows" { + # "votes": [ + # { + # "id": 0, + # "voter": "", + # "author": "", + # "permlink": "", + # "weight": "0", + # "rshares": 0, + # "vote_percent": 0, + # "last_update": "2016-04-07T19:15:36", + # "num_changes": -1 + # } + # ] + # } + - xfail + +includes: + - !include common.yaml + +stages: + - name: find_votes + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.find_votes" + params: + { + "author": "", + "permlink": "", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:comment != nullptr: Could not find comment /" + +--- +test_name: Hivemind database_api.find_votes patterns test author + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: find_votes + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.find_votes" + params: + { + "author": "kental", + "permlink": "", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:comment != nullptr: Could not find comment kental/" + +--- +test_name: Hivemind database_api.find_votes patterns test permlink + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: find_votes + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.find_votes" + params: + { + "author": "", + "permlink": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:comment != nullptr: Could not find comment /hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava" + +--- +test_name: Hivemind database_api.find_votes patterns test no data + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: find_votes + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.find_votes" + params: + { + "author": "hiveio", + "permlink": "firstpost", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:comment != nullptr: Could not find comment hiveio/firstpost" + +######################## FIND COMMENTS ######################## +# commments instead of start +--- +test_name: Hivemind database_api.find_comments patterns test no data + +marks: + - patterntest # wrong example of calling this function (no limit and order, comments instead of start) + - failed + - xfail + +includes: + - !include common.yaml + +stages: + - name: find_comments + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.find_comments" + params: + { + "start":[["", ""]], + "limit": 0, + "order": "", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "find_comments_no_data" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.find_comments patterns test all data + +marks: + - patterntest + +includes: + - !include common.yaml + +stages: + - name: find_comments + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.find_comments" + params: + { + "comments": [["magicmonk","hello-steemit-my-name-s-eddie-a-k-a-the-magic-monk-i-am-a-youtuber-and-a-high-school-teacher-let-the-writing-begin"]], + "limit": 0, + "order": "", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "find_comments_all_data" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.find_comments patterns test author + +marks: + - patterntest # why there is empty response? + +includes: + - !include common.yaml + +stages: + - name: find_comments + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.find_comments" + params: + { + "comments": [["magicmonk",""]], + "limit": 0, + "order": "", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "find_comments_no_data" + directory: "database_api_patterns" + +--- +test_name: Hivemind database_api.find_comments patterns test permlink + +marks: + - patterntest # why there is empty response? + +includes: + - !include common.yaml + +stages: + - name: find_comments + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.find_comments" + params: + { + "comments": [["","hello-steemit-my-name-s-eddie-a-k-a-the-magic-monk-i-am-a-youtuber-and-a-high-school-teacher-let-the-writing-begin"]], + "limit": 0, + "order": "", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "find_comments_no_data" + directory: "database_api_patterns" + -- GitLab From 26205651503223e0b3da0b4b1de17c94d918abd7 Mon Sep 17 00:00:00 2001 From: Paulina Czempiel Date: Mon, 17 Aug 2020 14:38:12 +0200 Subject: [PATCH 22/49] database_api test --- DEADJOE | 144 + .../5000000/condenser_api/get_blog.pat.json | 2 +- ...get_comment_discussions_by_payout.pat.json | 8 +- .../condenser_api/get_content.pat.json | 2 +- .../get_content_replies.pat.json | 12 +- ...discussions_by_author_before_date.pat.json | 2 +- .../get_discussions_by_blog.pat.json | 2 +- .../get_discussions_by_comments.pat.json | 2 +- .../get_discussions_by_created.pat.json | 8 +- .../get_discussions_by_hot.pat.json | 4 +- .../get_discussions_by_promoted.pat.json | 6 +- .../get_discussions_by_trending.pat.json | 4 +- .../get_post_discussions_by_payout.pat.json | 6 +- .../get_replies_by_last_update.pat.json | 2 +- .../5000000/condenser_api/get_state.pat.json | 8 +- .../5000000/follow_api/get_blog.pat.json | 2 +- ...get_comment_discussions_by_payout.pat.json | 8 +- .../tags_api/get_content_replies.pat.json | 8 +- .../5000000/tags_api/get_discussion.pat.json | 2 +- ...discussions_by_author_before_date.pat.json | 2 +- .../tags_api/get_discussions_by_blog.pat.json | 2 +- .../get_discussions_by_comments.pat.json | 2 +- .../get_discussions_by_created.pat.json | 6 +- .../tags_api/get_discussions_by_hot.pat.json | 2 +- .../get_discussions_by_promoted.pat.json | 8 +- .../get_discussions_by_trending.pat.json | 2 +- .../get_post_discussions_by_payout.pat.json | 4 +- .../account_notifications.pat.json | 163 +- .../get_account_posts.pat.json | 2748 +- .../get_discussion.pat.json | 26670 +-------- .../get_payout_stats.pat.json | 14 +- .../bridge_api_patterns/get_post.pat.json | 2744 +- .../bridge_api_patterns/get_profile.pat.json | 46 +- .../get_ranked_posts.pat.json | 46428 ++++++++-------- .../get_trending_topics.pat.json | 56 +- .../list_communities.pat.json | 22 +- .../post_notifications.pat.json | 11 +- .../unread_notifications.pat.json | 2 +- .../get_account_reputations.pat.json | 8 +- .../get_active_votes.pat.json | 48 +- .../condenser_api_patterns/get_blog.pat.json | 1286 +- .../get_blog_entries.pat.json | 10 +- ...get_comment_discussions_by_payout.pat.json | 62 +- .../get_content.pat.json | 1272 +- .../get_content_replies.pat.json | 186 +- ...discussions_by_author_before_date.pat.json | 1276 +- .../get_discussions_by_blog.pat.json | 1276 +- .../get_discussions_by_comments.pat.json | 184 +- .../get_discussions_by_created.pat.json | 62 +- .../get_discussions_by_hot.pat.json | 2178 +- .../get_discussions_by_promoted.pat.json | 5178 +- .../get_discussions_by_trending.pat.json | 1122 +- .../get_followers.pat.json | 140 +- .../get_following.pat.json | 140 +- .../get_post_discussions_by_payout.pat.json | 76 +- .../get_replies_by_last_update.pat.json | 184 +- .../condenser_api_patterns/get_state.pat.json | 1352 +- .../get_trending_tags.pat.json | 120 +- .../find_comments.pat.json | 54 +- .../list_comments.pat.json | 864 +- .../list_comments_author_last_update.pat.json | 4 +- ...ts_author_last_update_author_date.pat.json | 986 +- ...thor_last_update_corr_author_date.pat.json | 986 +- ...ments_author_last_update_corr_dap.pat.json | 986 +- ...ents_author_last_update_corr_date.pat.json | 986 +- ...st_comments_by_cashout_first_date.pat.json | 986 +- ...comments_by_cashout_time_all_data.pat.json | 986 +- ...ments_by_cashout_time_future_data.pat.json | 986 +- ...t_comments_by_cashout_time_second.pat.json | 986 +- ...mments_by_last_update_future_date.pat.json | 986 +- ...st_comments_last_update_good_date.pat.json | 986 +- .../list_comments_parent.pat.json | 986 +- .../list_comments_parent_all_data.pat.json | 986 +- .../list_comments_parent_no_data.pat.json | 986 +- ...ist_comments_parent_not_full_data.pat.json | 986 +- ...ist_comments_parent_parent_author.pat.json | 986 +- ...ist_comments_parent_required_data.pat.json | 986 +- .../list_comments_permlink.pat.json | 986 +- ...ist_comments_permlink_good_params.pat.json | 986 +- ...t_comments_permlink_good_permlink.pat.json | 988 +- ...omments_permlink_permlink_no_data.pat.json | 988 +- .../list_comments_root.pat.json | 986 +- .../list_comments_root_all_values.pat.json | 986 +- .../list_comments_root_no_data.pat.json | 986 +- ...ist_comments_root_required_values.pat.json | 986 +- ...nts_root_required_values_comments.pat.json | 986 +- .../get_account_reputations.pat.json | 8 +- .../follow_api_patterns/get_blog.pat.json | 1286 +- .../get_blog_entries.pat.json | 10 +- .../get_followers.pat.json | 140 +- .../get_following.pat.json | 140 +- ...get_comment_discussions_by_payout.pat.json | 64 +- .../get_content_replies.pat.json | 164 +- .../tags_api_patterns/get_discussion.pat.json | 1272 +- ...discussions_by_author_before_date.pat.json | 1276 +- .../get_discussions_by_blog.pat.json | 1276 +- .../get_discussions_by_comments.pat.json | 184 +- .../get_discussions_by_created.pat.json | 76 +- .../get_discussions_by_hot.pat.json | 80 +- .../get_discussions_by_promoted.pat.json | 5178 +- .../get_discussions_by_trending.pat.json | 80 +- .../get_post_discussions_by_payout.pat.json | 78 +- .../test_bridge_api_patterns.tavern.yaml | 32 +- .../test_condenser_api_patterns.tavern.yaml | 40 +- .../test_database_api_patterns.tavern.yaml | 90 +- .../test_follow_api_patterns.tavern.yaml | 4 +- .../tavern/test_tags_api_patterns.tavern.yaml | 22 - hivemind/tavern/validate_response.py | 52 +- 108 files changed, 54233 insertions(+), 78219 deletions(-) create mode 100644 DEADJOE diff --git a/DEADJOE b/DEADJOE new file mode 100644 index 00000000..256690ae --- /dev/null +++ b/DEADJOE @@ -0,0 +1,144 @@ + +*** These modified files were found in JOE when it aborted on Mon Aug 17 14:35:36 2020 +*** JOE was aborted by UNIX signal 1 + +*** File '/home/dev/hivemind/.git/modules/tests/tests_api/COMMIT_EDITMSG' +remote-tracking branch 'origin/master' into pczempiel_new_tests + +# Conflicts: +# hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json +# +# It looks like you may be committing a merge. +# If this is not correct, please remove the file +# /home/dev/hivemind/.git/modules/tests/tests_api/MERGE_HEAD +# and try again. + + +# Please enter the commit message for your changes. Lines starting +# with '#' will be ignored, and an empty message aborts the commit. +# +# On branch pczempiel_new_tests +# All conflicts fixed but you are still merging. +# +# Changes to be committed: +# modified: hivemind/pyrest_tests/5000000/condenser_api/get_blog.pat.json +# modified: hivemind/pyrest_tests/5000000/condenser_api/get_comment_discussions_by_payout.pat.json +# modified: hivemind/pyrest_tests/5000000/condenser_api/get_content.pat.json +# modified: hivemind/pyrest_tests/5000000/condenser_api/get_content_replies.pat.json +# modified: hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_author_before_date.pat.json +# modified: hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_blog.pat.json +# modified: hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_comments.pat.json +# modified: hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_created.pat.json +# modified: hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_hot.pat.json +# modified: hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_promoted.pat.json +# modified: hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_trending.pat.json +# modified: hivemind/pyrest_tests/5000000/condenser_api/get_post_discussions_by_payout.pat.json +# modified: hivemind/pyrest_tests/5000000/condenser_api/get_replies_by_last_update.pat.json +# modified: hivemind/pyrest_tests/5000000/condenser_api/get_state.pat.json +# modified: hivemind/pyrest_tests/5000000/follow_api/get_blog.pat.json +# modified: hivemind/pyrest_tests/5000000/tags_api/get_comment_discussions_by_payout.pat.json +# modified: hivemind/pyrest_tests/5000000/tags_api/get_content_replies.pat.json +# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussion.pat.json +# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_author_before_date.pat.json +# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_blog.pat.json +# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_comments.pat.json +# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_created.pat.json +# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_hot.pat.json +# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_promoted.pat.json +# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_trending.pat.json +# modified: hivemind/pyrest_tests/5000000/tags_api/get_post_discussions_by_payout.pat.json +# modified: hivemind/tavern/bridge_api_patterns/account_notifications.pat.json +# modified: hivemind/tavern/bridge_api_patterns/get_account_posts.pat.json +# modified: hivemind/tavern/bridge_api_patterns/get_discussion.pat.json +# modified: hivemind/tavern/bridge_api_patterns/get_payout_stats.pat.json +# modified: hivemind/tavern/bridge_api_patterns/get_post.pat.json +# modified: hivemind/tavern/bridge_api_patterns/get_profile.pat.json +# modified: hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json +# modified: hivemind/tavern/bridge_api_patterns/get_trending_topics.pat.json +# copied: hivemind/tavern/bridge_api_patterns/account_notifications.pat.json -> hivemind/tavern/bridge_api_patterns/list_communities.pat.json +# modified: hivemind/tavern/bridge_api_patterns/post_notifications.pat.json +# modified: hivemind/tavern/bridge_api_patterns/unread_notifications.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_active_votes.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_blog.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_blog_entries.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_content.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_content_replies.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_discussions_by_blog.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_discussions_by_comments.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_followers.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_following.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_replies_by_last_update.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_state.pat.json +# modified: hivemind/tavern/condenser_api_patterns/get_trending_tags.pat.json +# modified: hivemind/tavern/database_api_patterns/find_comments.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_parent.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_root.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json +# modified: hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json +# modified: hivemind/tavern/follow_api_patterns/get_account_reputations.pat.json +# modified: hivemind/tavern/follow_api_patterns/get_blog.pat.json +# modified: hivemind/tavern/follow_api_patterns/get_blog_entries.pat.json +# modified: hivemind/tavern/follow_api_patterns/get_followers.pat.json +# modified: hivemind/tavern/follow_api_patterns/get_following.pat.json +# modified: hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.pat.json +# modified: hivemind/tavern/tags_api_patterns/get_content_replies.pat.json +# modified: hivemind/tavern/tags_api_patterns/get_discussion.pat.json +# modified: hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date.pat.json +# modified: hivemind/tavern/tags_api_patterns/get_discussions_by_blog.pat.json +# modified: hivemind/tavern/tags_api_patterns/get_discussions_by_comments.pat.json +# modified: hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json +# modified: hivemind/tavern/tags_api_patterns/get_discussions_by_hot.pat.json +# modified: hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json +# modified: hivemind/tavern/tags_api_patterns/get_discussions_by_trending.pat.json +# modified: hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json +# modified: hivemind/tavern/test_bridge_api_patterns.tavern.yaml +# modified: hivemind/tavern/test_condenser_api_patterns.tavern.yaml +# modified: hivemind/tavern/test_database_api_patterns.tavern.yaml +# modified: hivemind/tavern/test_follow_api_patterns.tavern.yaml +# modified: hivemind/tavern/test_tags_api_patterns.tavern.yaml +# modified: hivemind/tavern/validate_response.py +# + +*** File '(Unnamed)' +./scripts/ci_start_api_smoketest.sh +./scripts/ci_start_api_smoketest.sh +./scripts/ci_start_api_smoketest.sh +jeden +/home/dev/hivemind/.git/modules/tests/tests_api/COMMIT_EDITMSG + +*** File '* Startup Log *' +Processing '/etc/joe/editorrc'... +Processing '/etc/joe/ftyperc'... +Finished processing /etc/joe/ftyperc +Finished processing /etc/joe/editorrc diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_blog.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_blog.pat.json index 7ab9ce15..f3583d70 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_blog.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_blog.pat.json @@ -629,7 +629,7 @@ "parent_author": "", "parent_permlink": "meta", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "firstpost", "post_id": 1, "promoted": "0.000 HBD", diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_comment_discussions_by_payout.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_comment_discussions_by_payout.pat.json index 9e021a0d..129b4406 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_comment_discussions_by_payout.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_comment_discussions_by_payout.pat.json @@ -6,13 +6,13 @@ "beneficiaries": [], "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", "body_length": 122, - "cashout_time": "2016-09-18T21:19:45", + "cashout_time": "1970-01-01T00:00:00", "category": "polska", "children": 0, "created": "2016-08-22T07:44:48", "curator_payout_value": "0.000 HBD", "depth": 1, - "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https:\\/\\/web.facebook.com\\/notes\\/szymon-szewczyk-blog\\/nasienie-wolno%C5%9Bci\\/1062629210473658\"]}", + "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-08-22T07:44:48", "max_accepted_payout": "1000000.000 HBD", @@ -20,9 +20,9 @@ "parent_author": "simgregg", "parent_permlink": "nasienie-wolnosci", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-simgregg-nasienie-wolnosci-20160822t074530822z", - "post_id": 703225, + "post_id": 931240, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_content.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_content.pat.json index 5498ad13..6aa9f7f8 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_content.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_content.pat.json @@ -626,7 +626,7 @@ "parent_author": "", "parent_permlink": "meta", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "firstpost", "post_id": 1, "promoted": "0.000 HBD", diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_content_replies.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_content_replies.pat.json index e4858d7e..6173c9dd 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_content_replies.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_content_replies.pat.json @@ -20,9 +20,9 @@ "parent_author": "gtg", "parent_permlink": "hello-world", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-hello-world-20160703t175141501z", - "post_id": 36953, + "post_id": 51479, "promoted": "0.000 HBD", "replies": [], "root_title": "Hello, World!", @@ -51,9 +51,9 @@ "parent_author": "gtg", "parent_permlink": "hello-world", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-hello-world-20160703t224527020z", - "post_id": 37179, + "post_id": 51824, "promoted": "0.000 HBD", "replies": [], "root_title": "Hello, World!", @@ -82,9 +82,9 @@ "parent_author": "gtg", "parent_permlink": "hello-world", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-hello-world-20160704t182251522z", - "post_id": 38463, + "post_id": 53542, "promoted": "0.000 HBD", "replies": [], "root_title": "Hello, World!", diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_author_before_date.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_author_before_date.pat.json index a78dbc2b..e272d593 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_author_before_date.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_author_before_date.pat.json @@ -627,7 +627,7 @@ "parent_author": "", "parent_permlink": "meta", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "firstpost", "post_id": 1, "promoted": "0.000 HBD", diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_blog.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_blog.pat.json index a78dbc2b..e272d593 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_blog.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_blog.pat.json @@ -627,7 +627,7 @@ "parent_author": "", "parent_permlink": "meta", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "firstpost", "post_id": 1, "promoted": "0.000 HBD", diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_comments.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_comments.pat.json index 5434a44a..d25c4472 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_comments.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_comments.pat.json @@ -81,7 +81,7 @@ "parent_author": "steemit", "parent_permlink": "firstpost", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "firstpost", "post_id": 2, "promoted": "0.000 HBD", diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_created.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_created.pat.json index 3c059c7f..74f1fa89 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_created.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_created.pat.json @@ -6,13 +6,13 @@ "beneficiaries": [], "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", "body_length": 652, - "cashout_time": "2016-09-16T07:40:21", + "cashout_time": "1970-01-01T00:00:00", "category": "freedom", "children": 0, "created": "2016-09-15T19:40:21", "curator_payout_value": "0.000 HBD", "depth": 0, - "json_metadata": "{\"tags\":[\"freedom\",\"anarchy\",\"steem\",\"life\",\"\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/y02aBfNT8n4\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=y02aBfNT8n4\"]}", + "json_metadata": "{\"tags\":[\"freedom\",\"anarchy\",\"steem\",\"life\",\"\"],\"image\":[\"https://img.youtube.com/vi/y02aBfNT8n4/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=y02aBfNT8n4\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-15T19:42:36", "max_accepted_payout": "1000000.000 HBD", @@ -20,9 +20,9 @@ "parent_author": "", "parent_permlink": "freedom", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", - "post_id": 960979, + "post_id": 1257871, "promoted": "0.000 HBD", "replies": [], "root_title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_hot.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_hot.pat.json index 4367f5c9..97112769 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_hot.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_hot.pat.json @@ -1069,7 +1069,7 @@ "created": "2016-09-15T18:18:00", "curator_payout_value": "0.000 HBD", "depth": 0, - "json_metadata": "{\"tags\":[\"steem\",\"poloniex\",\"bittrex\",\"technical-analysis\",\"trading\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/qPHEc\\/3b0d8913ce.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmGz\\/0764821325.png\",\"http:\\/\\/puu.sh\\/rciwF\\/1b96b56dcc.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmLb\\/755ca91186.png\",\"http:\\/\\/puu.sh\\/rciC9\\/edf3dcb758.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmDb\\/7461d3602b.png\",\"http:\\/\\/puu.sh\\/rciod\\/ce32f1a029.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmuE\\/227aa902ca.png\",\"http:\\/\\/puu.sh\\/rcifG\\/0c61511ea3.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmwv\\/fd2112e3ab.png\",\"http:\\/\\/puu.sh\\/rcicN\\/b2384086a4.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmry\\/db13b3282f.png\",\"http:\\/\\/puu.sh\\/rcibB\\/7b2700dd82.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmlb\\/aca50530d5.png\",\"http:\\/\\/puu.sh\\/rci8K\\/d68b7eb122.png\",\"https:\\/\\/img.youtube.com\\/vi\\/i3bS5nRZOvU\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=i3bS5nRZOvU\"]}", + "json_metadata": "{\"tags\":[\"steem\",\"poloniex\",\"bittrex\",\"technical-analysis\",\"trading\"],\"image\":[\"https://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png\",\"http://puu.sh/rciwF/1b96b56dcc.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png\",\"http://puu.sh/rciC9/edf3dcb758.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png\",\"http://puu.sh/rciod/ce32f1a029.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png\",\"http://puu.sh/rcifG/0c61511ea3.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png\",\"http://puu.sh/rcicN/b2384086a4.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png\",\"http://puu.sh/rcibB/7b2700dd82.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png\",\"http://puu.sh/rci8K/d68b7eb122.png\",\"https://img.youtube.com/vi/i3bS5nRZOvU/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=i3bS5nRZOvU\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-15T18:18:00", "max_accepted_payout": "1000000.000 HBD", @@ -1077,7 +1077,7 @@ "parent_author": "", "parent_permlink": "steem", "pending_payout_value": "57.124 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", "post_id": 960238, "promoted": "0.000 HBD", diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_promoted.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_promoted.pat.json index 7fba8e0e..cf7de2b6 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_promoted.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_promoted.pat.json @@ -2569,7 +2569,7 @@ "created": "2016-09-07T15:44:51", "curator_payout_value": "0.000 HBD", "depth": 0, - "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https:\\/\\/www.biznessapps.com\\/blog\\/wp-content\\/uploads\\/2013\\/12\\/shutterstock_148639682.png\"]}", + "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-07T15:50:51", "max_accepted_payout": "1000000.000 HBD", @@ -2577,9 +2577,9 @@ "parent_author": "", "parent_permlink": "steem", "pending_payout_value": "47.461 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", - "post_id": 882849, + "post_id": 1160043, "promoted": "500.000 HBD", "replies": [], "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction", diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_trending.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_trending.pat.json index affd4a4c..339d695d 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_trending.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_trending.pat.json @@ -541,7 +541,7 @@ "created": "2016-09-15T16:45:09", "curator_payout_value": "0.000 HBD", "depth": 0, - "json_metadata": "{\"tags\":[\"infographic\",\"steemit\",\"steem\",\"steemsquad\",\"minnowsunite\"],\"users\":[\"roelandp\",\"jesta\",\"xeroc\"],\"image\":[\"https:\\/\\/s11.postimg.io\\/8uxamnavn\\/revision_02.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/https:\\/\\/resources.sketch.cloud\\/public\\/102c8fee-b651-415a-8498-36de3c522b7d.png\"],\"links\":[\"http:\\/\\/SteemTools.com\",\"http:\\/\\/res.cloudinary.com\\/powerup\\/image\\/upload\\/c_scale,w_1437\\/v1473957114\\/revision-02_tdjkik.png\"]}", + "json_metadata": "{\"tags\":[\"infographic\",\"steemit\",\"steem\",\"steemsquad\",\"minnowsunite\"],\"users\":[\"roelandp\",\"jesta\",\"xeroc\"],\"image\":[\"https://s11.postimg.io/8uxamnavn/revision_02.png\",\"https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png\"],\"links\":[\"http://SteemTools.com\",\"http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-15T18:45:09", "max_accepted_payout": "1000000.000 HBD", @@ -549,7 +549,7 @@ "parent_author": "", "parent_permlink": "infographic", "pending_payout_value": "171.268 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "17-steem-tools-every-steemian-needs-to-know", "post_id": 959438, "promoted": "0.000 HBD", diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_post_discussions_by_payout.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_post_discussions_by_payout.pat.json index 92391ceb..dfefc602 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_post_discussions_by_payout.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_post_discussions_by_payout.pat.json @@ -13,7 +13,7 @@ "beneficiaries": [], "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", "body_length": 1273, - "cashout_time": "2016-09-18T21:19:45", + "cashout_time": "1970-01-01T00:00:00", "category": "polska", "children": 1, "created": "2016-08-18T21:19:45", @@ -27,9 +27,9 @@ "parent_author": "", "parent_permlink": "polska", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "nasienie-wolnosci", - "post_id": 661285, + "post_id": 877987, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_replies_by_last_update.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_replies_by_last_update.pat.json index 5434a44a..d25c4472 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_replies_by_last_update.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_replies_by_last_update.pat.json @@ -81,7 +81,7 @@ "parent_author": "steemit", "parent_permlink": "firstpost", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "firstpost", "post_id": 2, "promoted": "0.000 HBD", diff --git a/hivemind/pyrest_tests/5000000/condenser_api/get_state.pat.json b/hivemind/pyrest_tests/5000000/condenser_api/get_state.pat.json index 0c2ab190..eab87982 100644 --- a/hivemind/pyrest_tests/5000000/condenser_api/get_state.pat.json +++ b/hivemind/pyrest_tests/5000000/condenser_api/get_state.pat.json @@ -645,7 +645,7 @@ "parent_author": "", "parent_permlink": "meta", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "firstpost", "post_id": 1, "promoted": "0.000 HBD", @@ -664,12 +664,12 @@ "quote": "1.000 HIVE" }, "props": { + "hbd_interest_rate": 1000, + "hbd_print_rate": 10000, "head_block_number": 5000000, "last_irreversible_block_num": 4999980, - "sbd_interest_rate": 1000, - "sbd_print_rate": 10000, "time": "2016-09-15T19:47:21", - "total_vesting_fund_steem": "149190428.013 HIVE", + "total_vesting_fund_hive": "149190428.013 HIVE", "total_vesting_shares": "448144916705.468384 VESTS" }, "tag_idx": { diff --git a/hivemind/pyrest_tests/5000000/follow_api/get_blog.pat.json b/hivemind/pyrest_tests/5000000/follow_api/get_blog.pat.json index 7ab9ce15..f3583d70 100644 --- a/hivemind/pyrest_tests/5000000/follow_api/get_blog.pat.json +++ b/hivemind/pyrest_tests/5000000/follow_api/get_blog.pat.json @@ -629,7 +629,7 @@ "parent_author": "", "parent_permlink": "meta", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "firstpost", "post_id": 1, "promoted": "0.000 HBD", diff --git a/hivemind/pyrest_tests/5000000/tags_api/get_comment_discussions_by_payout.pat.json b/hivemind/pyrest_tests/5000000/tags_api/get_comment_discussions_by_payout.pat.json index 7d14af64..a28555f4 100644 --- a/hivemind/pyrest_tests/5000000/tags_api/get_comment_discussions_by_payout.pat.json +++ b/hivemind/pyrest_tests/5000000/tags_api/get_comment_discussions_by_payout.pat.json @@ -6,13 +6,13 @@ "beneficiaries": [], "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", "body_length": 122, - "cashout_time": "2016-09-18T21:19:45", + "cashout_time": "1970-01-01T00:00:00", "category": "polska", "children": 0, "created": "2016-08-22T07:44:48", "curator_payout_value": "0.000 HBD", "depth": 1, - "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https:\\/\\/web.facebook.com\\/notes\\/szymon-szewczyk-blog\\/nasienie-wolno%C5%9Bci\\/1062629210473658\"]}", + "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-08-22T07:44:48", "max_accepted_payout": "1000000.000 HBD", @@ -20,9 +20,9 @@ "parent_author": "simgregg", "parent_permlink": "nasienie-wolnosci", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-simgregg-nasienie-wolnosci-20160822t074530822z", - "post_id": 703225, + "post_id": 931240, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", diff --git a/hivemind/pyrest_tests/5000000/tags_api/get_content_replies.pat.json b/hivemind/pyrest_tests/5000000/tags_api/get_content_replies.pat.json index da8feeef..9d114ca1 100644 --- a/hivemind/pyrest_tests/5000000/tags_api/get_content_replies.pat.json +++ b/hivemind/pyrest_tests/5000000/tags_api/get_content_replies.pat.json @@ -27,9 +27,9 @@ "parent_author": "admin", "parent_permlink": "firstpost", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-admin-firstpost-20160717t193811098z", - "post_id": 110463, + "post_id": 151464, "promoted": "0.000 HBD", "replies": [], "root_title": "Welcome to Steem!", @@ -71,9 +71,9 @@ "parent_author": "admin", "parent_permlink": "firstpost", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-admin-firstpost-20160718t195306992z", - "post_id": 125730, + "post_id": 172339, "promoted": "0.000 HBD", "replies": [], "root_title": "Welcome to Steem!", diff --git a/hivemind/pyrest_tests/5000000/tags_api/get_discussion.pat.json b/hivemind/pyrest_tests/5000000/tags_api/get_discussion.pat.json index 5498ad13..6aa9f7f8 100644 --- a/hivemind/pyrest_tests/5000000/tags_api/get_discussion.pat.json +++ b/hivemind/pyrest_tests/5000000/tags_api/get_discussion.pat.json @@ -626,7 +626,7 @@ "parent_author": "", "parent_permlink": "meta", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "firstpost", "post_id": 1, "promoted": "0.000 HBD", diff --git a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_author_before_date.pat.json b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_author_before_date.pat.json index a78dbc2b..e272d593 100644 --- a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_author_before_date.pat.json +++ b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_author_before_date.pat.json @@ -627,7 +627,7 @@ "parent_author": "", "parent_permlink": "meta", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "firstpost", "post_id": 1, "promoted": "0.000 HBD", diff --git a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_blog.pat.json b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_blog.pat.json index a78dbc2b..e272d593 100644 --- a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_blog.pat.json +++ b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_blog.pat.json @@ -627,7 +627,7 @@ "parent_author": "", "parent_permlink": "meta", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "firstpost", "post_id": 1, "promoted": "0.000 HBD", diff --git a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_comments.pat.json b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_comments.pat.json index 5434a44a..d25c4472 100644 --- a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_comments.pat.json +++ b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_comments.pat.json @@ -81,7 +81,7 @@ "parent_author": "steemit", "parent_permlink": "firstpost", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "firstpost", "post_id": 2, "promoted": "0.000 HBD", diff --git a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_created.pat.json b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_created.pat.json index 92391ceb..dfefc602 100644 --- a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_created.pat.json +++ b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_created.pat.json @@ -13,7 +13,7 @@ "beneficiaries": [], "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", "body_length": 1273, - "cashout_time": "2016-09-18T21:19:45", + "cashout_time": "1970-01-01T00:00:00", "category": "polska", "children": 1, "created": "2016-08-18T21:19:45", @@ -27,9 +27,9 @@ "parent_author": "", "parent_permlink": "polska", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "nasienie-wolnosci", - "post_id": 661285, + "post_id": 877987, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", diff --git a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_hot.pat.json b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_hot.pat.json index 7fb5fde0..99ae76d3 100644 --- a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_hot.pat.json +++ b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_hot.pat.json @@ -27,7 +27,7 @@ "parent_author": "", "parent_permlink": "polska", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "nasienie-wolnosci", "post_id": 661285, "promoted": "0.000 HBD", diff --git a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_promoted.pat.json b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_promoted.pat.json index 7fba8e0e..487226d4 100644 --- a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_promoted.pat.json +++ b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_promoted.pat.json @@ -2563,13 +2563,13 @@ "beneficiaries": [], "body": "https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\n\n# Over the last few weeks I've been thinking about ways we could increase the demand for Steem Power, the quality of curated content and the incentives to participate as a Steem curator.\n\nHere are a couple ideas I have been kicking around. They're not fully mature and could use a good rinsing by the community.\n\n## Allow Steem holders to delegate their Steem Power voting rights to a **voting pool**\n\nA delegated voting pool could socialize voting power and individualize rewards. One prime use for this could be the @steemit account. @steemit could create a voting pool and invite anyone with a verified identity and good reputation to join the pool as a curator. This could increase the number of unique curators, help bootstrap Steem as an identity database and give people even more incentives to sign up.\n\nTo show the numbers, an example would be Alice Bob and Charley each delegate their SP of 2, 3, and 7 to one voting pool. Now they each have 4, 4, and 4 SP to be used to curate. Better curation would earn them more curation rewards. \n\nA side effect of delegated voting pools could be voting markets. Any user would have the power to create a voting pool and these users could charge curators for participation. Some of the platform's whales could be interested in offering subscription models to minnows as a way to get more voting influence.\n\n## If powering down stake loses voting influence\n\nImagine that any stake being powered down would lose its rights to use voting influence. This could make the system very clear in the regard that stake is either in or it is out. Users could be able to choose any % of their stake to power down regardless of how many accounts they have and only the % stake that is powering down would lose voting influence. Stopping a power down could return all voting rights.\n\nPerhaps the effect of this could be 1/ more interest to stay in the platform and 2/ more fluidity in the witness queue 3/ more fairness regarding the PoS nature of Steem 4/ more clarity from participants looking to exit the system\n\n## Combined effect?\nPerhaps these proposals could have a combined effect that increases the demand and fluidity of Steem Power while improving the curated experience for people visiting Steem based websites.\n\n#### What are your thoughts and questions?", "body_length": 2399, - "cashout_time": "2016-10-09T02:14:24", + "cashout_time": "2016-09-09T02:14:21", "category": "steem", "children": 315, "created": "2016-09-07T15:44:51", "curator_payout_value": "0.000 HBD", "depth": 0, - "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https:\\/\\/www.biznessapps.com\\/blog\\/wp-content\\/uploads\\/2013\\/12\\/shutterstock_148639682.png\"]}", + "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-07T15:50:51", "max_accepted_payout": "1000000.000 HBD", @@ -2577,9 +2577,9 @@ "parent_author": "", "parent_permlink": "steem", "pending_payout_value": "47.461 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", - "post_id": 882849, + "post_id": 1160043, "promoted": "500.000 HBD", "replies": [], "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction", diff --git a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_trending.pat.json b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_trending.pat.json index 7fb5fde0..99ae76d3 100644 --- a/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_trending.pat.json +++ b/hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_trending.pat.json @@ -27,7 +27,7 @@ "parent_author": "", "parent_permlink": "polska", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "nasienie-wolnosci", "post_id": 661285, "promoted": "0.000 HBD", diff --git a/hivemind/pyrest_tests/5000000/tags_api/get_post_discussions_by_payout.pat.json b/hivemind/pyrest_tests/5000000/tags_api/get_post_discussions_by_payout.pat.json index 7fb5fde0..12fec980 100644 --- a/hivemind/pyrest_tests/5000000/tags_api/get_post_discussions_by_payout.pat.json +++ b/hivemind/pyrest_tests/5000000/tags_api/get_post_discussions_by_payout.pat.json @@ -27,9 +27,9 @@ "parent_author": "", "parent_permlink": "polska", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "nasienie-wolnosci", - "post_id": 661285, + "post_id": 877987, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", diff --git a/hivemind/tavern/bridge_api_patterns/account_notifications.pat.json b/hivemind/tavern/bridge_api_patterns/account_notifications.pat.json index 0637a088..eb352dcf 100644 --- a/hivemind/tavern/bridge_api_patterns/account_notifications.pat.json +++ b/hivemind/tavern/bridge_api_patterns/account_notifications.pat.json @@ -1 +1,162 @@ -[] \ No newline at end of file +[ + { + "date": "2016-09-15T17:51:15", + "id": 774644, + "msg": "@steempowerwhale mentioned you", + "score": 20, + "type": "mention", + "url": "@steempowerwhale/for-steemit-authors-how-likely-do-posts-receive-a-reward-on-steemit-look-at-the-stats" + }, + { + "date": "2016-09-14T21:33:36", + "id": 768637, + "msg": "@twitterbot mentioned you", + "score": 20, + "type": "mention", + "url": "@twitterbot/re-app-store-accepts-steemit-20160914t213336" + }, + { + "date": "2016-09-14T07:27:48", + "id": 764393, + "msg": "@felixxx mentioned you", + "score": 20, + "type": "mention", + "url": "@felixxx/re-miserableoracle-re-felixxx-re-miserableoracle-re-l0k1-the-power-down-delay-ned-and-dan-you-got-us-hooked-we-can-t-jump-out-what-s-happening-20160914t072747788z" + }, + { + "date": "2016-09-14T06:57:00", + "id": 764287, + "msg": "@svamiva mentioned you", + "score": 20, + "type": "mention", + "url": "@svamiva/re-smolalit-re-antizvuk-re-svamiva-re-smolalit-re-svamiva-nemnogo-soli-na-ranu-20160914t065520261z" + }, + { + "date": "2016-09-14T05:53:51", + "id": 764091, + "msg": "@karenb54 mentioned you", + "score": 20, + "type": "mention", + "url": "@karenb54/mobile-covers-for-all-ranks" + }, + { + "date": "2016-09-13T21:43:03", + "id": 761577, + "msg": "@biophil mentioned you", + "score": 20, + "type": "mention", + "url": "@biophil/it-would-be-neat-to-know-why-steemit-starts-pushing-the-market-around-when-it-does" + }, + { + "date": "2016-09-13T14:04:21", + "id": 758509, + "msg": "@steemitguide mentioned you", + "score": 16, + "type": "mention", + "url": "@steemitguide/steemit-s-top-10-forbes-list-edition-1-13th-september-2016" + }, + { + "date": "2016-09-13T12:23:27", + "id": 757914, + "msg": "@twitterbot mentioned you", + "score": 18, + "type": "mention", + "url": "@twitterbot/re-appstore-whitelists-steem-now-waiting-for-bithshares-people-20160913t122326" + }, + { + "date": "2016-09-13T09:58:18", + "id": 757348, + "msg": "@poseidon mentioned you", + "score": 16, + "type": "mention", + "url": "@poseidon/re-venuspcs-why-hardfork-14-will-reduce-daily-votes-from-40-to-5-my-opinion-which-i-haven-t-seen-anyone-else-state-20160913t095819591z" + }, + { + "date": "2016-09-13T01:58:21", + "id": 755117, + "msg": "@leesunmoo mentioned you", + "score": 20, + "type": "mention", + "url": "@leesunmoo/leesunmoo-3" + }, + { + "date": "2016-09-13T00:20:09", + "id": 754744, + "msg": "@buckland mentioned you", + "score": 20, + "type": "mention", + "url": "@buckland/re-abol-r-i-p-all-innocent-victims-on-septembre-11-20160913t002010694z" + }, + { + "date": "2016-09-12T23:29:06", + "id": 754456, + "msg": "@buckland mentioned you", + "score": 20, + "type": "mention", + "url": "@buckland/re-abol-re-buckland-this-was-the-so-called-nano-thermite-that-was-found-everywhere-people-need-the-truth-but-can-they-swallow-it-20160912t232044338z" + }, + { + "date": "2016-09-12T08:49:06", + "id": 749213, + "msg": "@peterz mentioned you", + "score": 20, + "type": "mention", + "url": "@peterz/re-aleco-zakon-cipfa-rabotaet-li-on-v-steemit-20160912t084906549z" + }, + { + "date": "2016-09-11T23:36:00", + "id": 746929, + "msg": "@marco-delsalto mentioned you", + "score": 20, + "type": "mention", + "url": "@marco-delsalto/its-1994-again-on-the-internet-again-love-it" + }, + { + "date": "2016-09-11T18:04:48", + "id": 743544, + "msg": "@richman mentioned you", + "score": 18, + "type": "mention", + "url": "@richman/one-man-s-war-the-incredible-story-of-lieutenant-hiroo-onoda-featuring-andrewawerdna-as-author" + }, + { + "date": "2016-09-12T01:29:39", + "id": 743086, + "msg": "@fat-like-buddha mentioned you", + "score": 20, + "type": "mention", + "url": "@fat-like-buddha/a-letter-to-my-sons-preparing-for-lifes-journey" + }, + { + "date": "2016-09-11T15:44:39", + "id": 742615, + "msg": "@hisnameisolllie mentioned you", + "score": 16, + "type": "mention", + "url": "@hisnameisolllie/steemit-statistics-week-7" + }, + { + "date": "2016-09-09T10:47:09", + "id": 722895, + "msg": "@spartanza mentioned you", + "score": 18, + "type": "mention", + "url": "@spartanza/9-11-suspects-series-by-corbettreport-part-1" + }, + { + "date": "2016-09-08T21:09:06", + "id": 719048, + "msg": "@williamdevine mentioned you", + "score": 20, + "type": "mention", + "url": "@williamdevine/re-rawni-say-hello-to-the-newbie-20160908t210910852z" + }, + { + "date": "2016-09-08T09:13:30", + "id": 714599, + "msg": "@svamiva mentioned you", + "score": 20, + "type": "mention", + "url": "@svamiva/re-james-show-market-based-curation-pools-to-increasing-curation-demand-for-steem-power-20160908t091328200z" + } +] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts.pat.json b/hivemind/tavern/bridge_api_patterns/get_account_posts.pat.json index ee6b77c0..4dcb760d 100644 --- a/hivemind/tavern/bridge_api_patterns/get_account_posts.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts.pat.json @@ -1,2310 +1,442 @@ [ - { - "active_votes": [ - { - "rshares": "375241", - "voter": "dantheman" - }, - { - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "rshares": "5100", - "voter": "steemit78" - }, - { - "rshares": "1259167", - "voter": "anonymous" - }, - { - "rshares": "318519", - "voter": "hello" - }, - { - "rshares": "153384", - "voter": "world" - }, - { - "rshares": "-936400", - "voter": "ned" - }, - { - "rshares": "59412", - "voter": "fufubar1" - }, - { - "rshares": "14997", - "voter": "anonymous1" - }, - { - "rshares": "1441", - "voter": "red" - }, - { - "rshares": "551390835500", - "voter": "liondani" - }, - { - "rshares": "82748", - "voter": "roadscape" - }, - { - "rshares": "10772", - "voter": "xeroc" - }, - { - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "rshares": "498863058", - "voter": "joelinux" - }, - { - "rshares": "9590417", - "voter": "piranhax" - }, - { - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "rshares": "425903066", - "voter": "gekko" - }, - { - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "rshares": "422984262", - "voter": "acidyo" - }, - { - "rshares": "47179379651", - "voter": "tosch" - }, - { - "rshares": "7831667988", - "voter": "klye" - }, - { - "rshares": "1019950749", - "voter": "coar" - }, - { - "rshares": "1746058458", - "voter": "murh" - }, - { - "rshares": "0", - "voter": "ashe-oro" - }, - { - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "rshares": "0", - "voter": "hien-tran" - }, - { - "rshares": "0", - "voter": "noganoo" - }, - { - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "rshares": "40624969", - "voter": "ben99" - }, - { - "rshares": "0", - "voter": "tskeene" - }, - { - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "rshares": "0", - "voter": "roelandp" - }, - { - "rshares": "0", - "voter": "stealthtrader" - }, - { - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "rshares": "0", - "voter": "picokernel" - }, - { - "rshares": "0", - "voter": "ausbitbank" - }, - { - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "rshares": "0", - "voter": "sebastien" - }, - { - "rshares": "917398502", - "voter": "decrypt" - }, - { - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "rshares": "1037079223", - "voter": "condra" - }, - { - "rshares": "233032838", - "voter": "jearson" - }, - { - "rshares": "240809500", - "voter": "tritium" - }, - { - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "rshares": "226074637", - "voter": "artjedi" - }, - { - "rshares": "931542394", - "voter": "anduweb" - }, - { - "rshares": "2292983350", - "voter": "inertia" - }, - { - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "rshares": "266262926", - "voter": "desmonid" - }, - { - "rshares": "71498008", - "voter": "madhatting" - }, - { - "rshares": "23726644841", - "voter": "ubg" - }, - { - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "rshares": "131577259", - "voter": "gribgo" - }, - { - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "rshares": "28907874049", - "voter": "orm" - }, - { - "rshares": "528988007", - "voter": "qonq99" - }, - { - "rshares": "129537329", - "voter": "rd7783" - }, - { - "rshares": "615020728", - "voter": "slava" - }, - { - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "rshares": "0", - "voter": "social" - }, - { - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "rshares": "95219365", - "voter": "curator" - }, - { - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "rshares": "0", - "voter": "solos" - }, - { - "rshares": "0", - "voter": "alvintang" - }, - { - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "rshares": "0", - "voter": "blysards" - }, - { - "rshares": "0", - "voter": "nick.kharchenko" - }, - { - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "rshares": "1279854", - "voter": "nigmat" - }, - { - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "rshares": "10847083143", - "voter": "metrox" - }, - { - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "rshares": "710989138", - "voter": "romancs" - }, - { - "rshares": "59366614", - "voter": "luke490" - }, - { - "rshares": "58762473", - "voter": "bro66" - }, - { - "rshares": "201822591", - "voter": "future24" - }, - { - "rshares": "58623688", - "voter": "mythras" - }, - { - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "rshares": "0", - "voter": "matrixdweller" - }, - { - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "rshares": "54761612", - "voter": "edbriv" - }, - { - "rshares": "0", - "voter": "anarchyhasnogods" - }, - { - "rshares": "865125771", - "voter": "rittr" - }, - { - "rshares": "0", - "voter": "tumutanzi" - }, - { - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "rshares": "52740989", - "voter": "tcstix" - }, - { - "rshares": "49467477", - "voter": "friedwater" - }, - { - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "rshares": "0", - "voter": "gbonikz" - }, - { - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "rshares": "0", - "voter": "darkflame" - }, - { - "rshares": "0", - "voter": "sneak" - }, - { - "rshares": "0", - "voter": "jacobcards" - }, - { - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "rshares": "0", - "voter": "shieha" - }, - { - "rshares": "54017869", - "voter": "zelious" - }, - { - "rshares": "0", - "voter": "allyouneedtoknow" - }, - { - "rshares": "0", - "voter": "justyy" - }, - { - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "rshares": "53196086", - "voter": "f1111111" - }, - { - "rshares": "0", - "voter": "anomaly" - }, - { - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "rshares": "0", - "voter": "buckland" - }, - { - "rshares": "0", - "voter": "guest123" - }, - { - "rshares": "0", - "voter": "syahhiran" - }, - { - "rshares": "0", - "voter": "rarcntv" - }, - { - "rshares": "0", - "voter": "nataleeoliver" - }, - { - "rshares": "0", - "voter": "goldmatters" - }, - { - "rshares": "0", - "voter": "gamer00" - }, - { - "rshares": "0", - "voter": "curiesea" - }, - { - "rshares": "0", - "voter": "missmarzipan" - }, - { - "rshares": "0", - "voter": "thejohalfiles" - }, - { - "rshares": "0", - "voter": "steemwart" - }, - { - "rshares": "0", - "voter": "mapesa" - }, - { - "rshares": "0", - "voter": "max-max" - }, - { - "rshares": "0", - "voter": "joshuaatiemo" - }, - { - "rshares": "0", - "voter": "jumaidafajar" - }, - { - "rshares": "0", - "voter": "leolina1" - }, - { - "rshares": "0", - "voter": "rebatesteem" - }, - { - "rshares": "0", - "voter": "aidancloquell" - }, - { - "rshares": "0", - "voter": "rm802" - }, - { - "rshares": "0", - "voter": "krasotka" - }, - { - "rshares": "0", - "voter": "alamyrjunior" - }, - { - "rshares": "0", - "voter": "networker5" - }, - { - "rshares": "0", - "voter": "evdoggformayor" - }, - { - "rshares": "0", - "voter": "askari" - }, - { - "rshares": "0", - "voter": "blockrush" - }, - { - "rshares": "0", - "voter": "barvon" - }, - { - "rshares": "0", - "voter": "fajarsdq" - }, - { - "rshares": "0", - "voter": "juandemarte" - }, - { - "rshares": "0", - "voter": "lazarescu.irinel" - }, - { - "rshares": "0", - "voter": "thedeplorable1" - }, - { - "rshares": "0", - "voter": "kalemandra" - }, - { - "rshares": "0", - "voter": "ades" - }, - { - "rshares": "0", - "voter": "rizkiavonna" - }, - { - "rshares": "0", - "voter": "tohamy7" - }, - { - "rshares": "0", - "voter": "justinashby" - }, - { - "rshares": "0", - "voter": "thereikiforest" - }, - { - "rshares": "0", - "voter": "serendipitie" - }, - { - "rshares": "0", - "voter": "anwarabdullah" - }, - { - "rshares": "0", - "voter": "rocketbeee" - }, - { - "rshares": "0", - "voter": "ackza" - }, - { - "rshares": "0", - "voter": "nilim" - }, - { - "rshares": "0", - "voter": "renatrazumov" - }, - { - "rshares": "0", - "voter": "jelkasmi" - }, - { - "rshares": "0", - "voter": "dimitrya123" - }, - { - "rshares": "0", - "voter": "crawfish37" - }, - { - "rshares": "0", - "voter": "laodr" - }, - { - "rshares": "0", - "voter": "lkisaid" - }, - { - "rshares": "0", - "voter": "mikev" - }, - { - "rshares": "0", - "voter": "hakan0356" - }, - { - "rshares": "0", - "voter": "tasartcraft" - }, - { - "rshares": "0", - "voter": "urmokas" - }, - { - "rshares": "0", - "voter": "michael-fagundes" - }, - { - "rshares": "0", - "voter": "kalamur" - }, - { - "rshares": "0", - "voter": "abhinavsharma" - }, - { - "rshares": "0", - "voter": "contentguy" - }, - { - "rshares": "0", - "voter": "globocop" - }, - { - "rshares": "0", - "voter": "hafizul" - }, - { - "rshares": "0", - "voter": "hothelp1by1" - }, - { - "rshares": "0", - "voter": "vannfrik" - }, - { - "rshares": "0", - "voter": "manuel78" - }, - { - "rshares": "0", - "voter": "brado" - }, - { - "rshares": "0", - "voter": "strateg" - }, - { - "rshares": "0", - "voter": "quinsmacqueen" - }, - { - "rshares": "0", - "voter": "brucebrownftw" - }, - { - "rshares": "0", - "voter": "mrstaf" - }, - { - "rshares": "0", - "voter": "avvah" - }, - { - "rshares": "0", - "voter": "stackin" - }, - { - "rshares": "0", - "voter": "laloelectrix" - }, - { - "rshares": "0", - "voter": "heejaekim" - }, - { - "rshares": "0", - "voter": "thethreehugs" - }, - { - "rshares": "0", - "voter": "otitrader" - }, - { - "rshares": "0", - "voter": "clixmoney" - }, - { - "rshares": "0", - "voter": "tryword" - }, - { - "rshares": "0", - "voter": "dioneaguiar" - }, - { - "rshares": "0", - "voter": "yann.moalic" - }, - { - "rshares": "0", - "voter": "shaunf" - }, - { - "rshares": "0", - "voter": "cleemit" - }, - { - "rshares": "0", - "voter": "deeluvli1" - }, - { - "rshares": "0", - "voter": "noval" - }, - { - "rshares": "0", - "voter": "pixzelplethora" - }, - { - "rshares": "0", - "voter": "smart3dweb" - }, - { - "rshares": "0", - "voter": "joey-cryptoboy" - }, - { - "rshares": "0", - "voter": "mateorite" - }, - { - "rshares": "0", - "voter": "somaflaco" - }, - { - "rshares": "0", - "voter": "enki74" - }, - { - "rshares": "0", - "voter": "jungleebitcoin" - }, - { - "rshares": "0", - "voter": "correctdrop" - }, - { - "rshares": "0", - "voter": "clintjunior" - }, - { - "rshares": "0", - "voter": "tediursa24" - }, - { - "rshares": "0", - "voter": "mxzn" - }, - { - "rshares": "0", - "voter": "hgmsilvergold" - }, - { - "rshares": "0", - "voter": "antares007" - }, - { - "rshares": "0", - "voter": "tridenspoon333" - }, - { - "rshares": "0", - "voter": "vipek1996" - }, - { - "rshares": "0", - "voter": "prima-nia" - }, - { - "rshares": "0", - "voter": "redris" - }, - { - "rshares": "0", - "voter": "savetheanimals" - }, - { - "rshares": "0", - "voter": "tarunmewara" - }, - { - "rshares": "0", - "voter": "overkillcoin" - }, - { - "rshares": "0", - "voter": "tuakanamorgan" - }, - { - "rshares": "0", - "voter": "anacristinasilva" - }, - { - "rshares": "0", - "voter": "filmonaut" - }, - { - "rshares": "0", - "voter": "firstamendment" - }, - { - "rshares": "0", - "voter": "timcrypto" - }, - { - "rshares": "0", - "voter": "cryptotem" - }, - { - "rshares": "0", - "voter": "mikej" - }, - { - "rshares": "0", - "voter": "hwrs" - }, - { - "rshares": "0", - "voter": "sinai770judea" - }, - { - "rshares": "0", - "voter": "tuneralliance" - }, - { - "rshares": "0", - "voter": "zeji" - }, - { - "rshares": "0", - "voter": "ricoalfianda" - }, - { - "rshares": "0", - "voter": "satfit" - }, - { - "rshares": "0", - "voter": "machhour" - }, - { - "rshares": "0", - "voter": "bitgenio" - }, - { - "rshares": "0", - "voter": "ahmedmansi" - }, - { - "rshares": "0", - "voter": "theoccultcorner" - }, - { - "rshares": "0", - "voter": "reseller" - }, - { - "rshares": "0", - "voter": "ainsleyjo1952" - }, - { - "rshares": "0", - "voter": "novi" - }, - { - "rshares": "0", - "voter": "androsform" - }, - { - "rshares": "0", - "voter": "jooyoung" - }, - { - "rshares": "0", - "voter": "dobro88888888" - }, - { - "rshares": "0", - "voter": "ghaaspur" - }, - { - "rshares": "0", - "voter": "xodyd2da" - }, - { - "rshares": "0", - "voter": "trisun" - }, - { - "rshares": "0", - "voter": "tngflx" - }, - { - "rshares": "0", - "voter": "karaban" - }, - { - "rshares": "0", - "voter": "empath" - }, - { - "rshares": "0", - "voter": "pcbildrnoob" - }, - { - "rshares": "0", - "voter": "joecaffeine" - }, - { - "rshares": "0", - "voter": "laolballs" - }, - { - "rshares": "0", - "voter": "braamsteyn7777" - }, - { - "rshares": "0", - "voter": "udibekwe" - }, - { - "rshares": "0", - "voter": "jackolanternbob" - }, - { - "rshares": "0", - "voter": "rondoncr" - }, - { - "rshares": "0", - "voter": "doubledeeyt" - }, - { - "rshares": "0", - "voter": "joshvel" - }, - { - "rshares": "0", - "voter": "lembach3d" - }, - { - "rshares": "0", - "voter": "vulturestkn" - }, - { - "rshares": "0", - "voter": "darknessprincess" - }, - { - "rshares": "0", - "voter": "misrori" - }, - { - "rshares": "0", - "voter": "afrikanprince" - }, - { - "rshares": "0", - "voter": "jjprac" - }, - { - "rshares": "0", - "voter": "ayuwandira" - }, - { - "rshares": "0", - "voter": "ilicoin" - }, - { - "rshares": "0", - "voter": "pkvlogs" - }, - { - "rshares": "0", - "voter": "bitstudio" - }, - { - "rshares": "0", - "voter": "taintedblood" - }, - { - "rshares": "0", - "voter": "epsicktick" - }, - { - "rshares": "0", - "voter": "csggene3" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - }, - { - "rshares": "0", - "voter": "geek4geek" - }, - { - "rshares": "0", - "voter": "kharrazi" - }, - { - "rshares": "0", - "voter": "zufrizal" - }, - { - "rshares": "0", - "voter": "academix87" - }, - { - "rshares": "0", - "voter": "planetenamek" - }, - { - "rshares": "0", - "voter": "muliaeko" - }, - { - "rshares": "0", - "voter": "boyjack" - }, - { - "rshares": "0", - "voter": "jatniel" - }, - { - "rshares": "0", - "voter": "juanangel40bcn" - }, - { - "rshares": "0", - "voter": "jodywrites" - }, - { - "rshares": "0", - "voter": "permatek" - }, - { - "rshares": "0", - "voter": "cyberspace" - }, - { - "rshares": "0", - "voter": "fareehasheharyar" - }, - { - "rshares": "0", - "voter": "saynie" - }, - { - "rshares": "0", - "voter": "plainoldme" - }, - { - "rshares": "0", - "voter": "razaqbarry" - }, - { - "rshares": "0", - "voter": "antoniokarteli" - }, - { - "rshares": "0", - "voter": "dream.trip" - }, - { - "rshares": "0", - "voter": "reinhardbaust" - }, - { - "rshares": "0", - "voter": "newpioneer" - }, - { - "rshares": "0", - "voter": "melvinbonner" - }, - { - "rshares": "0", - "voter": "zulfahmi2141" - }, - { - "rshares": "0", - "voter": "maninjapan1989" - }, - { - "rshares": "0", - "voter": "andravasko" - }, - { - "rshares": "0", - "voter": "gilma" - }, - { - "rshares": "0", - "voter": "tom74" - }, - { - "rshares": "0", - "voter": "josephfugata" - }, - { - "rshares": "0", - "voter": "bitcointauji" - }, - { - "rshares": "0", - "voter": "gray00" - }, - { - "rshares": "0", - "voter": "divyang101" - }, - { - "rshares": "0", - "voter": "bahagia-arbi" - }, - { - "rshares": "0", - "voter": "bhim" - }, - { - "rshares": "0", - "voter": "bickell" - }, - { - "rshares": "0", - "voter": "tfpostman" - }, - { - "rshares": "0", - "voter": "anujkumar" - }, - { - "rshares": "0", - "voter": "fbslo" - }, - { - "rshares": "0", - "voter": "renijuliani" - }, - { - "rshares": "0", - "voter": "setio" - }, - { - "rshares": "0", - "voter": "mooncryption" - }, - { - "rshares": "0", - "voter": "shintamonica" - }, - { - "rshares": "0", - "voter": "caratzky" - }, - { - "rshares": "0", - "voter": "komrad" - }, - { - "rshares": "0", - "voter": "therivernile" - }, - { - "rshares": "0", - "voter": "deep.gohil" - }, - { - "rshares": "0", - "voter": "thomasduder" - }, - { - "rshares": "0", - "voter": "sensistar" - }, - { - "rshares": "0", - "voter": "abdelone" - }, - { - "rshares": "0", - "voter": "gegec" - }, - { - "rshares": "0", - "voter": "ambmicheal" - }, - { - "rshares": "0", - "voter": "rincewind" - }, - { - "rshares": "0", - "voter": "alishannoor" - }, - { - "rshares": "0", - "voter": "ahhjoeinhk" - }, - { - "rshares": "0", - "voter": "kalhiade" - }, - { - "rshares": "0", - "voter": "faridrizkia" - }, - { - "rshares": "0", - "voter": "teamslovenia" - }, - { - "rshares": "0", - "voter": "xiaoshancun" - }, - { - "rshares": "0", - "voter": "mikewebb274" - }, - { - "rshares": "0", - "voter": "andrath" - }, - { - "rshares": "0", - "voter": "torosan" - }, - { - "rshares": "0", - "voter": "ghayas" - }, - { - "rshares": "0", - "voter": "krevasilis" - }, - { - "rshares": "0", - "voter": "koinbot" - }, - { - "rshares": "0", - "voter": "synergy-now" - }, - { - "rshares": "0", - "voter": "steemblogs" - }, - { - "rshares": "0", - "voter": "tujuhpelita" - }, - { - "rshares": "0", - "voter": "palani" - }, - { - "rshares": "0", - "voter": "as-i-see-it" - }, - { - "rshares": "0", - "voter": "heyeshuang" - }, - { - "rshares": "0", - "voter": "arslan786" - }, - { - "rshares": "0", - "voter": "cgf117" - }, - { - "rshares": "0", - "voter": "amazingtech100" - }, - { - "rshares": "0", - "voter": "dreamm" - }, - { - "rshares": "0", - "voter": "sweetssssj" - }, - { - "rshares": "0", - "voter": "ceikdo" - }, - { - "rshares": "0", - "voter": "sunsquall" - }, - { - "rshares": "0", - "voter": "muhammadilyas93" - }, - { - "rshares": "0", - "voter": "cre47iv3" - }, - { - "rshares": "0", - "voter": "joao-cacador" - }, - { - "rshares": "0", - "voter": "jamsphonna" - }, - { - "rshares": "0", - "voter": "abbak7" - }, - { - "rshares": "0", - "voter": "thelifeofjord" - }, - { - "rshares": "0", - "voter": "utpoldebnath" - }, - { - "rshares": "0", - "voter": "sagorkhan" - }, - { - "rshares": "0", - "voter": "shivpremi" - }, - { - "rshares": "0", - "voter": "shabbirahmad" - }, - { - "rshares": "0", - "voter": "ibeljr" - }, - { - "rshares": "0", - "voter": "umelard" - }, - { - "rshares": "0", - "voter": "stijndehaan" - }, - { - "rshares": "0", - "voter": "iamericmorrison" - }, - { - "rshares": "0", - "voter": "shiningstar" - }, - { - "rshares": "0", - "voter": "steemprojects1" - }, - { - "rshares": "0", - "voter": "steemprojects2" - }, - { - "rshares": "0", - "voter": "stuvi" - }, - { - "rshares": "0", - "voter": "zia161" - }, - { - "rshares": "0", - "voter": "arslanq" - }, - { - "rshares": "0", - "voter": "kevca16" - }, - { - "rshares": "0", - "voter": "mcreg" - }, - { - "rshares": "0", - "voter": "waheebisb" - }, - { - "rshares": "0", - "voter": "rizaokur" - }, - { - "rshares": "0", - "voter": "seanstein" - }, - { - "rshares": "0", - "voter": "piszozo" - }, - { - "rshares": "0", - "voter": "vicmariki" - }, - { - "rshares": "0", - "voter": "contribution" - }, - { - "rshares": "0", - "voter": "oep" - }, - { - "rshares": "0", - "voter": "akshitgrover" - }, - { - "rshares": "0", - "voter": "jackson12" - }, - { - "rshares": "0", - "voter": "dtldesign" - }, - { - "rshares": "0", - "voter": "h4ck3rm1k3st33m" - }, - { - "rshares": "0", - "voter": "smokeasare165" - }, - { - "rshares": "0", - "voter": "tinoschloegl" - }, - { - "rshares": "0", - "voter": "liftu" - }, - { - "rshares": "0", - "voter": "atul8888" - }, - { - "rshares": "0", - "voter": "goroshkodo" - }, - { - "rshares": "0", - "voter": "tarmizislow" - }, - { - "rshares": "0", - "voter": "nurmasyithah" - }, - { - "rshares": "0", - "voter": "ritikagupta" - }, - { - "rshares": "0", - "voter": "anniemohler" - }, - { - "rshares": "0", - "voter": "olaivart" - }, - { - "rshares": "0", - "voter": "thedrewshow" - }, - { - "rshares": "0", - "voter": "alpha27" - }, - { - "rshares": "0", - "voter": "adventuretours" - }, - { - "rshares": "0", - "voter": "advexon" - }, - { - "rshares": "0", - "voter": "cloudconnect" - }, - { - "rshares": "0", - "voter": "ontheverge" - }, - { - "rshares": "0", - "voter": "celsomichida" - }, - { - "rshares": "0", - "voter": "cannan" - }, - { - "rshares": "0", - "voter": "cloudbuster" - }, - { - "rshares": "0", - "voter": "adrienoor" - }, - { - "rshares": "0", - "voter": "hussnain" - }, - { - "rshares": "0", - "voter": "shanloth" - }, - { - "rshares": "0", - "voter": "samirnyaupane" - }, - { - "rshares": "0", - "voter": "slackeramericana" - }, - { - "rshares": "0", - "voter": "thabiggdogg" - }, - { - "rshares": "0", - "voter": "gilnambatac" - }, - { - "rshares": "0", - "voter": "withgraham" - }, - { - "rshares": "0", - "voter": "sephirot" - }, - { - "rshares": "0", - "voter": "coffeeman" - }, - { - "rshares": "0", - "voter": "stefunniy" - }, - { - "rshares": "0", - "voter": "ghanexs" - }, - { - "rshares": "0", - "voter": "razipelangi" - }, - { - "rshares": "0", - "voter": "dreamdiary" - }, - { - "rshares": "0", - "voter": "crypto4euro" - }, - { - "rshares": "0", - "voter": "rtsampa" - }, - { - "rshares": "0", - "voter": "mahi2raj" - }, - { - "rshares": "0", - "voter": "danyflores" - }, - { - "rshares": "0", - "voter": "oraclefrequency" - }, - { - "rshares": "0", - "voter": "kartikohri1712" - }, - { - "rshares": "0", - "voter": "cryptoaltcoin" - }, - { - "rshares": "0", - "voter": "einarscorner" - }, - { - "rshares": "0", - "voter": "dudithedoctor" - }, - { - "rshares": "0", - "voter": "dirapa" - }, - { - "rshares": "0", - "voter": "arfouche" - }, - { - "rshares": "0", - "voter": "kristenbruce" - }, - { - "rshares": "0", - "voter": "okclear" - }, - { - "rshares": "0", - "voter": "mysearchisover" - }, - { - "rshares": "0", - "voter": "dropd" - }, - { - "rshares": "0", - "voter": "rulilesmana" - }, - { - "rshares": "0", - "voter": "cryptomaniac6" - }, - { - "rshares": "0", - "voter": "kim3ra" - }, - { - "rshares": "0", - "voter": "movement19" - }, - { - "rshares": "0", - "voter": "aacr07" - }, - { - "rshares": "0", - "voter": "layra" - }, - { - "rshares": "0", - "voter": "vardhanbtc" - }, - { - "rshares": "0", - "voter": "azeemprime" - }, - { - "rshares": "0", - "voter": "dbnx" - }, - { - "rshares": "0", - "voter": "shredz7" - }, - { - "rshares": "0", - "voter": "bitstreamgains" - }, - { - "rshares": "0", - "voter": "hendrimaca" - }, - { - "rshares": "0", - "voter": "aan01" - }, - { - "rshares": "0", - "voter": "successmindset" - }, - { - "rshares": "0", - "voter": "hatu" - }, - { - "rshares": "0", - "voter": "khabirulhafiz" - }, - { - "rshares": "0", - "voter": "yady" - }, - { - "rshares": "0", - "voter": "samsonjura1" - }, - { - "rshares": "0", - "voter": "ambitiouslife" - }, - { - "rshares": "0", - "voter": "whyse" - }, - { - "rshares": "0", - "voter": "skyflow" - }, - { - "rshares": "0", - "voter": "kimtoma" - }, - { - "rshares": "0", - "voter": "asherunderwood" - }, - { - "rshares": "0", - "voter": "lorden" - }, - { - "rshares": "0", - "voter": "juicyvegandwarf" - }, - { - "rshares": "0", - "voter": "ushan007" - }, - { - "rshares": "0", - "voter": "ihsan6837" - }, - { - "rshares": "0", - "voter": "suryarose" - }, - { - "rshares": "0", - "voter": "sol7142" - }, - { - "rshares": "0", - "voter": "fikrialoy" - }, - { - "rshares": "0", - "voter": "mr-lahey" - }, - { - "rshares": "0", - "voter": "mahsabmirza" - }, - { - "rshares": "0", - "voter": "pwangdu" - }, - { - "rshares": "0", - "voter": "salda" - }, - { - "rshares": "0", - "voter": "muzzlealem" - }, - { - "rshares": "0", - "voter": "pakjos" - }, - { - "rshares": "0", - "voter": "mhdfadhal" - }, - { - "rshares": "0", - "voter": "dannykastner" - }, - { - "rshares": "0", - "voter": "ibul11" - }, - { - "rshares": "0", - "voter": "nigtroy" - }, - { - "rshares": "0", - "voter": "uripsurya" - }, - { - "rshares": "0", - "voter": "jazman.zhens" - }, - { - "rshares": "0", - "voter": "intervote" - }, - { - "rshares": "0", - "voter": "mahend" - }, - { - "rshares": "0", - "voter": "anandasungkar" - }, - { - "rshares": "0", - "voter": "homeless.global" - }, - { - "rshares": "0", - "voter": "intansteemityes" - }, - { - "rshares": "0", - "voter": "perminus-gaita" - }, - { - "rshares": "0", - "voter": "phost" - }, - { - "rshares": "0", - "voter": "debart" - }, - { - "rshares": "0", - "voter": "blurrydude" - }, - { - "rshares": "0", - "voter": "tsnaks" - }, - { - "rshares": "0", - "voter": "legendchew" - }, - { - "rshares": "0", - "voter": "cryptonegocios" - }, - { - "rshares": "0", - "voter": "alexcozzy" - }, - { - "rshares": "0", - "voter": "joe.ster" - }, - { - "rshares": "0", - "voter": "pandu13" - }, - { - "rshares": "0", - "voter": "sasakhan" - }, - { - "rshares": "0", - "voter": "faisalyus" - }, - { - "rshares": "0", - "voter": "sawyn" - }, - { - "rshares": "0", - "voter": "diegocedenno" - }, - { - "rshares": "0", - "voter": "calebotamus" - }, - { - "rshares": "0", - "voter": "lsanneh78128" - }, - { - "rshares": "0", - "voter": "nazaruddin885" - }, - { - "rshares": "0", - "voter": "chaseburnett" - }, - { - "rshares": "0", - "voter": "sisirhasan" - }, - { - "rshares": "0", - "voter": "donyanyo" - }, - { - "rshares": "0", - "voter": "oregontravel" - }, - { - "rshares": "0", - "voter": "luegenbaron" - }, - { - "rshares": "0", - "voter": "edkrassenstein" - }, - { - "rshares": "0", - "voter": "munawirawin" - }, - { - "rshares": "0", - "voter": "salgetra" - }, - { - "rshares": "0", - "voter": "zaxan" - }, - { - "rshares": "0", - "voter": "rollings" - }, - { - "rshares": "0", - "voter": "kyle07" - }, - { - "rshares": "0", - "voter": "pchanger" - }, - { - "rshares": "0", - "voter": "uncleboy" - }, - { - "rshares": "0", - "voter": "alfhi" - }, - { - "rshares": "0", - "voter": "htetmyathtut" - }, - { - "rshares": "0", - "voter": "trisolaran" - }, - { - "rshares": "0", - "voter": "arafs" - }, - { - "rshares": "0", - "voter": "abysoyjoy" - }, - { - "rshares": "0", - "voter": "stylo419" - }, - { - "rshares": "0", - "voter": "cookntell" - }, - { - "rshares": "0", - "voter": "rakkarage" - }, - { - "rshares": "0", - "voter": "grasozauru" - }, - { - "rshares": "0", - "voter": "norabx" - }, - { - "rshares": "0", - "voter": "joyvancouver" - }, - { - "rshares": "0", - "voter": "antchatz" - }, - { - "rshares": "0", - "voter": "tutchpa" - }, - { - "rshares": "0", - "voter": "cosmophobia" - }, - { - "rshares": "0", - "voter": "rajaji" - }, - { - "rshares": "0", - "voter": "liqquid" - }, - { - "rshares": "0", - "voter": "aceh-post" - }, - { - "rshares": "0", - "voter": "dannanares" - }, - { - "rshares": "0", - "voter": "husana" - }, - { - "rshares": "0", - "voter": "davidmichael" - }, - { - "rshares": "0", - "voter": "wprpn" - }, - { - "rshares": "0", - "voter": "datuparulas17" - }, - { - "rshares": "0", - "voter": "trie" - }, - { - "rshares": "0", - "voter": "chirstonawba" - }, - { - "rshares": "0", - "voter": "sulaiman86" - }, - { - "rshares": "0", - "voter": "electronicsworld" - }, - { - "rshares": "0", - "voter": "engrravijain" - }, - { - "rshares": "0", - "voter": "alfredolopez1980" - }, - { - "rshares": "0", - "voter": "gustavomonraz" - }, - { - "rshares": "0", - "voter": "tahoorsaleem" - }, - { - "rshares": "0", - "voter": "starfinger13" - }, - { - "rshares": "0", - "voter": "conscalisthenics" - }, - { - "rshares": "0", - "voter": "syd44723" - }, - { - "rshares": "0", - "voter": "sutter" - }, - { - "rshares": "0", - "voter": "samsonite18654" - }, - { - "rshares": "0", - "voter": "iqra.naz" - }, - { - "rshares": "0", - "voter": "drezz" - }, - { - "rshares": "0", - "voter": "cutelace" - }, - { - "rshares": "0", - "voter": "chirstonawba5" - }, - { - "rshares": "0", - "voter": "devkapoor423" - }, - { - "rshares": "0", - "voter": "blanchy" - }, - { - "rshares": "0", - "voter": "rakeshban357" - }, - { - "rshares": "0", - "voter": "douglasjames" - }, - { - "rshares": "0", - "voter": "michaelabbas" - }, - { - "rshares": "0", - "voter": "gonewithwind" - }, - { - "rshares": "0", - "voter": "snow.owl" - }, - { - "rshares": "0", - "voter": "tonthatthienvu" - }, - { - "rshares": "0", - "voter": "strangeworldnews" - }, - { - "rshares": "0", - "voter": "dogra" - }, - { - "rshares": "0", - "voter": "umairx97" - }, - { - "rshares": "0", - "voter": "coolpeopleifb" - }, - { - "rshares": "0", - "voter": "gabu01" - }, - { - "rshares": "0", - "voter": "magicalbot" - }, - { - "rshares": "0", - "voter": "f21steem" - }, - { - "rshares": "0", - "voter": "hoobit" - }, - { - "rshares": "0", - "voter": "ivancraigcaine" - }, - { - "rshares": "0", - "voter": "kranko" - }, - { - "rshares": "0", - "voter": "successinwork" - }, - { - "rshares": "0", - "voter": "abfelix96" - }, - { - "rshares": "0", - "voter": "maldonadog" - }, - { - "rshares": "0", - "voter": "drakeler" - }, - { - "rshares": "0", - "voter": "cyrex88" - }, - { - "rshares": "0", - "voter": "rikyu" - }, - { - "rshares": "0", - "voter": "krimimimi" - }, - { - "rshares": "0", - "voter": "johannav" - } - ], - "author": "steemit", - "author_payout_value": "0.942 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "category": "meta", - "children": 430, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "payout": 1.698, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 92 - }, - "title": "Welcome to Steem!", - "updated": "2016-03-30T18:30:18", - "url": "/meta/@steemit/firstpost" - } + { + "active_votes": [ + { + "rshares": "375241", + "voter": "dantheman" + }, + { + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "rshares": "5100", + "voter": "steemit78" + }, + { + "rshares": "1259167", + "voter": "anonymous" + }, + { + "rshares": "318519", + "voter": "hello" + }, + { + "rshares": "153384", + "voter": "world" + }, + { + "rshares": "-936400", + "voter": "ned" + }, + { + "rshares": "59412", + "voter": "fufubar1" + }, + { + "rshares": "14997", + "voter": "anonymous1" + }, + { + "rshares": "1441", + "voter": "red" + }, + { + "rshares": "551390835500", + "voter": "liondani" + }, + { + "rshares": "82748", + "voter": "roadscape" + }, + { + "rshares": "10772", + "voter": "xeroc" + }, + { + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "rshares": "498863058", + "voter": "joelinux" + }, + { + "rshares": "9590417", + "voter": "piranhax" + }, + { + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "rshares": "422984262", + "voter": "acidyo" + }, + { + "rshares": "47179379651", + "voter": "tosch" + }, + { + "rshares": "7831667988", + "voter": "klye" + }, + { + "rshares": "1019950749", + "voter": "coar" + }, + { + "rshares": "1746058458", + "voter": "murh" + }, + { + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "rshares": "0", + "voter": "hien-tran" + }, + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "40624969", + "voter": "ben99" + }, + { + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "rshares": "917398502", + "voter": "decrypt" + }, + { + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "rshares": "1037079223", + "voter": "condra" + }, + { + "rshares": "233032838", + "voter": "jearson" + }, + { + "rshares": "240809500", + "voter": "tritium" + }, + { + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "rshares": "226074637", + "voter": "artjedi" + }, + { + "rshares": "931542394", + "voter": "anduweb" + }, + { + "rshares": "2292983350", + "voter": "inertia" + }, + { + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "rshares": "266262926", + "voter": "desmonid" + }, + { + "rshares": "71498008", + "voter": "madhatting" + }, + { + "rshares": "23726644841", + "voter": "ubg" + }, + { + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "rshares": "131577259", + "voter": "gribgo" + }, + { + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "rshares": "28907874049", + "voter": "orm" + }, + { + "rshares": "528988007", + "voter": "qonq99" + }, + { + "rshares": "129537329", + "voter": "rd7783" + }, + { + "rshares": "615020728", + "voter": "slava" + }, + { + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "rshares": "95219365", + "voter": "curator" + }, + { + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "rshares": "0", + "voter": "solos" + }, + { + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "rshares": "0", + "voter": "blysards" + }, + { + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "rshares": "1279854", + "voter": "nigmat" + }, + { + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "rshares": "10847083143", + "voter": "metrox" + }, + { + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "rshares": "710989138", + "voter": "romancs" + }, + { + "rshares": "59366614", + "voter": "luke490" + }, + { + "rshares": "58762473", + "voter": "bro66" + }, + { + "rshares": "201822591", + "voter": "future24" + }, + { + "rshares": "58623688", + "voter": "mythras" + }, + { + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "rshares": "0", + "voter": "matrixdweller" + }, + { + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "rshares": "54761612", + "voter": "edbriv" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "rshares": "52740989", + "voter": "tcstix" + }, + { + "rshares": "49467477", + "voter": "friedwater" + }, + { + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "rshares": "54017869", + "voter": "zelious" + }, + { + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "rshares": "53196086", + "voter": "f1111111" + }, + { + "rshares": "0", + "voter": "anomaly" + }, + { + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "rshares": "0", + "voter": "buckland" + }, + { + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_payout_value": "0.942 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "payout": 1.698, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 92 + }, + "title": "Welcome to Steem!", + "updated": "2016-03-30T18:30:18", + "url": "/meta/@steemit/firstpost" + } ] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_discussion.pat.json b/hivemind/tavern/bridge_api_patterns/get_discussion.pat.json index c3a27c64..14d769d4 100644 --- a/hivemind/tavern/bridge_api_patterns/get_discussion.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_discussion.pat.json @@ -1,24509 +1,2395 @@ { - "abidhp/re-steemit-firstpost-20180427t153249315z": { - "active_votes": [], - "author": "abidhp", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.64, - "beneficiaries": [], - "blacklists": [], - "body": "Really Steemit is amazing.. I love steemit.... Thanks for this Awsome platform \ud83d\udc99\ud83d\udc9a\ud83d\udc9b\ud83e\udde1\ud83d\udc9c", - "category": "meta", - "children": 0, - "created": "2018-04-27T15:33:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-05-04T15:33:33", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180427t153249315z", - "post_id": 45705136, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-27T15:33:33", - "url": "/meta/@steemit/firstpost#@abidhp/re-steemit-firstpost-20180427t153249315z" - }, - "abusaleh/re-steemit-firstpost-20180117t154220577z": { - "active_votes": [ - { - "rshares": "1409842841", - "voter": "abusaleh" - }, - { - "rshares": "32265032423", - "voter": "rewardpoolrape" - } - ], - "author": "abusaleh", - "author_payout_value": "0.268 HBD", - "author_reputation": 56.08, - "beneficiaries": [], - "blacklists": [], - "body": "At last i found you after 2 month...!", - "category": "meta", - "children": 1, - "created": "2018-01-17T15:42:27", - "curator_payout_value": "0.008 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 33674875264, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.276, - "payout_at": "2018-01-24T15:42:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180117t154220577z", - "post_id": 26256237, - "promoted": "0.000 HBD", - "replies": [ - "rewardpoolrape/rewardpoolrape-re-abusalehre-steemit-firstpost-20180117t154220577z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-17T15:42:27", - "url": "/meta/@steemit/firstpost#@abusaleh/re-steemit-firstpost-20180117t154220577z" - }, - "ackza/re-sornprar-re-steemit-firstpost-20170812t064319021z": { - "active_votes": [], - "author": "ackza", - "author_payout_value": "0.000 HBD", - "author_reputation": 72.63, - "beneficiaries": [], - "blacklists": [], - "body": "if you don't like @craig-grant then switch to @trevvonjb lol then you have nothing to complain about!\n\nAnd @craig-grant doesnt flag man, show me some times he flagged people...ive never ever sen craig falg anyone! , and u realize if he flagged everything hed loose his voting power? You CANNOT make money flagging! wtf why would u think that?!? haha its really weird man! I feel like u may not fully understand how steemit works, and i doubt craig ever flagged someone to \"get money back in the reward pool\" because he \":and his kind\" dont just automatically get money from teh read pool....he only get s money from teh reward pool when HE EARNS it man....its kinda weird that u made such a long post without understanding how steemit works lol steempower allows craigs followers top upvote his posts and grant him a few cents or bucks at a time, and he acumulates his money from upvotes, that he earns, dont get it twisted, hes earning his money\n\nAnd let me tel u about his \"programs\" theyve made EVERYONE money! from Genesis to Bitconnect, theyve ALL made EVERYONE whose clicked His Links a lot of money period no \"criminal behaviour\" about it, dont get mad because he foudn a way to make money by helping others make money\n\nand NO hes not \"keeping most opf it\" he gets a SMALL cut and simply gets LOT of people to get him thats mall cut\n\nthe referal bonus on fuckin genesis and bitconnect is ONLY a few fuckin percentage points man! thats not \"most\" of the money and WTF u want craig to just give away all the money he earns bcause YOU dont t huink he actually earnd it? Youre like from the days of being AGAINST passive income, where men had to WOK IN A FACTORY all day, but now peopel REALIZE its OK to have passive income. Busoness can be automated, u dont have to sweat and work urself to death just to earn a dollar jhust bvause YOu may have had to do that for YOUR life, dont get jelous of othrs no reason have envy, theers PKLENTY of people to signup to bitconnect or to genesis OR to stemit! steemitd oesnt have an oficial affiliate program BUT steemit DOES have a system that allows you to sign people up who will then follow you and end up upvoting you! and when you teach ur followers how to make money, YOU end up making money as their upvotes become more and more expensiv!\n\nMan its really unfair how youre trying to ruin @crag-grant 's reputation, and i only defend him now not to suck up or brown nose, i just have to defend a man i know is not guilty of these accustaion and I DOUBT you actually watch and follow him AS MUCH as I do, i watch his shit almost everyday, and i see his posts daily, DAILy and i WATCH him and nayon whose talked shit about him has just been envious of him MOST of the tiume\n\nyoure despertae to find an excuse as tyo why he does NOT deserve the money he makes\n\nim suprised noone has tried reporting him to the IRS in a desperate atempt to get him audidtd JUST tof uck with him, haha that wontw ork however as crypto currency si NOT a legal tender and if they forced peoiple to pay taxes on crypto cutrrency THEY WOULD RECOGNIZE IT AS LEGAL TENDER which they cant do yet!\nAnd theres plenty of other ways he can avoid paying taxes legally and if people keep harrasing him he will simply move to the carribean and liveon some iland forever and have his friends bring him supplis by boat if he has to! hahaha he could probobly buy his own boat and ail around the carribean at this point, uploading videos from youtube and steemit over satellite internet, hahaha", - "category": "meta", - "children": 0, - "created": "2017-08-12T06:43:18", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "craig-grant", - "trevvonjb", - "crag-grant" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "sornprar", - "parent_permlink": "re-steemit-firstpost-20170704t204851481z", - "payout": 0.0, - "payout_at": "2017-08-19T06:43:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-sornprar-re-steemit-firstpost-20170812t064319021z", - "post_id": 9924787, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-12T06:43:18", - "url": "/meta/@steemit/firstpost#@ackza/re-sornprar-re-steemit-firstpost-20170812t064319021z" - }, - "ackza/re-sornprar-re-steemit-firstpost-20170813t054058376z": { - "active_votes": [], - "author": "ackza", - "author_payout_value": "0.000 HBD", - "author_reputation": 72.63, - "beneficiaries": [], - "blacklists": [], - "body": "\"once those posts (or any others) reach an impressive potential payout, flag it with mid to high voting power FLAGs\" this doesnt make any sense and it doesnt hapen. i know u may think thi is whats hapeneing but i assure you, craig-grant is NOT cordinating some killshot flagbots to drain your posts rewards just to filla reward pool lol maybe he flags posts where u talk shgit about him maybe? haha anyway", - "category": "meta", - "children": 2, - "created": "2017-08-13T05:40:57", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "sornprar", - "parent_permlink": "re-steemit-firstpost-20170705t021545762z", - "payout": 0.0, - "payout_at": "2017-08-20T05:40:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-sornprar-re-steemit-firstpost-20170813t054058376z", - "post_id": 10001821, - "promoted": "0.000 HBD", - "replies": [ - "sornprar/re-ackza-re-sornprar-re-steemit-firstpost-20170813t135846925z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-13T05:40:57", - "url": "/meta/@steemit/firstpost#@ackza/re-sornprar-re-steemit-firstpost-20170813t054058376z" - }, - "ackza/re-stackin-re-steemit-firstpost-20190402t134818892z": { - "active_votes": [ - { - "rshares": "115795591672", - "voter": "ackza" - }, - { - "rshares": "0", - "voter": "dallasrushing" - } - ], - "author": "ackza", - "author_payout_value": "0.064 HBD", - "author_reputation": 72.63, - "beneficiaries": [], - "blacklists": [], - "body": "Bruh smart idea to get ur comment on the very top of @steemit 's only post :D I hope @ned sees this or whoever he has managing its posting key, and upvotes us :D \n\nThanks for payin for that upvote for me to comment on :D its nice up here", - "category": "meta", - "children": 0, - "created": "2019-04-02T13:48:18", - "curator_payout_value": "0.001 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "ned" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 115795591672, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.065, - "payout_at": "2019-04-09T13:48:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20190402t134818892z", - "post_id": 72430446, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-04-02T13:49:27", - "url": "/meta/@steemit/firstpost#@ackza/re-stackin-re-steemit-firstpost-20190402t134818892z" - }, - "ackza/re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t091545296z": { - "active_votes": [ - { - "rshares": "0", - "voter": "ackza" - }, - { - "rshares": "1693320161", - "voter": "sutter" - } - ], - "author": "ackza", - "author_payout_value": "0.000 HBD", - "author_reputation": 72.63, - "beneficiaries": [], - "blacklists": [], - "body": "pretty cool right?\ni made this for @ned\nhttps://cdn.discordapp.com/attachments/414992509547184130/463222344412823553/393dc189-cec4-4512-b9a7-cf1c1a759e44.png", - "category": "meta", - "children": 1, - "created": "2018-07-02T09:15:45", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://cdn.discordapp.com/attachments/414992509547184130/463222344412823553/393dc189-cec4-4512-b9a7-cf1c1a759e44.png" - ], - "tags": [ - "meta" - ], - "users": [ - "ned" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1693320161, - "parent_author": "sutter", - "parent_permlink": "re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035133909z", - "payout": 0.0, - "payout_at": "2018-07-09T09:15:45", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t091545296z", - "post_id": 55133934, - "promoted": "0.000 HBD", - "replies": [ - "sutter/re-ackza-re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t184220108z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-02T09:15:45", - "url": "/meta/@steemit/firstpost#@ackza/re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t091545296z" - }, - "ades/re-steemit-firstpost-20171014t094715920z": { - "active_votes": [ - { - "rshares": "319115212176", - "voter": "idealist" - }, - { - "rshares": "10968280422", - "voter": "radiv" - }, - { - "rshares": "7235875161", - "voter": "joe28" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "ades", - "author_payout_value": "0.686 HBD", - "author_reputation": 63.72, - "beneficiaries": [], - "blacklists": [], - "body": "good media steemit", - "category": "meta", - "children": 0, - "created": "2017-10-14T09:47:18", - "curator_payout_value": "0.132 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 337319367759, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.818, - "payout_at": "2017-10-21T09:47:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171014t094715920z", - "post_id": 15283601, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-14T09:47:18", - "url": "/meta/@steemit/firstpost#@ades/re-steemit-firstpost-20171014t094715920z" - }, - "adilvakhri/re-steemit-firstpost-20180908t052715204z": { - "active_votes": [ - { - "rshares": "307377549", - "voter": "speda" - } - ], - "author": "adilvakhri", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.13, - "beneficiaries": [], - "blacklists": [], - "body": "I love steemit. <3", - "category": "meta", - "children": 0, - "created": "2018-09-08T05:27:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 307377549, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-09-15T05:27:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180908t052715204z", - "post_id": 61893379, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-09-08T05:27:18", - "url": "/meta/@steemit/firstpost#@adilvakhri/re-steemit-firstpost-20180908t052715204z" - }, - "admin/firstpost": { - "active_votes": [ - { - "rshares": "-375241", - "voter": "dantheman" - }, - { - "rshares": "5100", - "voter": "steemit46" - }, - { - "rshares": "81125", - "voter": "roadscape" - }, - { - "rshares": "425903066", - "voter": "gekko" - }, - { - "rshares": "431616594", - "voter": "acidyo" - }, - { - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "rshares": "58854897335", - "voter": "business" - }, - { - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "rshares": "244129227", - "voter": "kewpiedoll" - }, - { - "rshares": "1615731741", - "voter": "naturalista" - } - ], - "author": "admin", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "First Reply! Let's get this **party** started", - "category": "meta", - "children": 5, - "created": "2016-03-30T19:52:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 62423410900, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 2, - "promoted": "0.000 HBD", - "replies": [ - "kingtylervvs/re-admin-firstpost-20160717t193811098z", - "gopher/re-admin-firstpost-20160718t195306992z", - "social/re-admin--20171107t163722264z", - "social/re-admin--20171107t164333992z", - "juicyvegandwarf/re-admin-firstpost-20180205t011252333z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 10 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-03-30T19:52:30", - "url": "/meta/@steemit/firstpost#@admin/firstpost" - }, - "ainsleyjo1952/re-steemit-firstpost-20180205t212206587z": { - "active_votes": [], - "author": "ainsleyjo1952", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.35, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit -- I just found this interesting place after I used your handle for a tag in a comment to my goddaughter @tecnosgirl, and she told me that doing a tag this way actually led to another person's account. I thought that it either led to the main page of this site or else to the administration.\n\nAnyway...being rather #curious / #inquisitive / #nosy...I decided to see where the tag led and found this discussion.\n\nNow, I'm curious about this @craig-grant guy and will have to check him out when I'm done here. \n\nWill be back here to check this thread at different times.\n\nJust one more question to @steemit: When will you be writing something new?", - "category": "meta", - "children": 0, - "created": "2018-02-05T21:22:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta", - "curious", - "inquisitive", - "nosy" - ], - "users": [ - "steemit", - "tecnosgirl", - "craig-grant" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-12T21:22:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180205t212206587z", - "post_id": 30650157, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-05T21:22:09", - "url": "/meta/@steemit/firstpost#@ainsleyjo1952/re-steemit-firstpost-20180205t212206587z" - }, - "akankah/re-steemit-firstpost-20180303t075321674z": { - "active_votes": [ - { - "rshares": "450448615", - "voter": "akankah" - }, - { - "rshares": "457235356", - "voter": "embunbasahi" - }, - { - "rshares": "413983331", - "voter": "ll2unicc" - } - ], - "author": "akankah", - "author_payout_value": "0.000 HBD", - "author_reputation": 30.82, - "beneficiaries": [], - "blacklists": [], - "body": "nice @steemit", - "category": "meta", - "children": 0, - "created": "2018-03-03T07:53:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1321667302, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-10T07:53:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180303t075321674z", - "post_id": 36372752, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-03T07:53:27", - "url": "/meta/@steemit/firstpost#@akankah/re-steemit-firstpost-20180303t075321674z" - }, - "alao/re-steemit-firstpost-20170820t215949199z": { - "active_votes": [ - { - "rshares": "32584724400", - "voter": "mammasitta" - } - ], - "author": "alao", - "author_payout_value": "0.093 HBD", - "author_reputation": 64.34, - "beneficiaries": [], - "blacklists": [], - "body": "So this was the beginning...", - "category": "meta", - "children": 0, - "created": "2017-08-20T21:59:03", - "curator_payout_value": "0.031 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 32584724400, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.124, - "payout_at": "2017-08-27T21:59:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170820t215949199z", - "post_id": 10635414, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-20T21:59:03", - "url": "/meta/@steemit/firstpost#@alao/re-steemit-firstpost-20170820t215949199z" - }, - "alexcozzy/re-steemit-firstpost-20180210t193558358z": { - "active_votes": [], - "author": "alexcozzy", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.04, - "beneficiaries": [], - "blacklists": [], - "body": "@alexcozzy\nSteemit is a place for all!", - "category": "meta", - "children": 0, - "created": "2018-02-10T19:36:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "alexcozzy" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-17T19:36:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180210t193558358z", - "post_id": 31731998, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-10T19:36:06", - "url": "/meta/@steemit/firstpost#@alexcozzy/re-steemit-firstpost-20180210t193558358z" - }, - "alfredolopez1980/re-steemit-firstpost-20180520t222434698z": { - "active_votes": [], - "author": "alfredolopez1980", - "author_payout_value": "0.000 HBD", - "author_reputation": 38.65, - "beneficiaries": [], - "blacklists": [], - "body": "Orgulloso de estar aqui una comunidad facinante a la cual me uno con gran alegria!!!", - "category": "meta", - "children": 0, - "created": "2018-05-20T22:24:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-05-27T22:24:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180520t222434698z", - "post_id": 49504718, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-20T22:24:39", - "url": "/meta/@steemit/firstpost#@alfredolopez1980/re-steemit-firstpost-20180520t222434698z" - }, - "alketcecaj/re-steemit-firstpost-20170912t144124829z": { - "active_votes": [], - "author": "alketcecaj", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.44, - "beneficiaries": [], - "blacklists": [], - "body": "Great to be in steem! Thank you for such a wonderful invention!", - "category": "meta", - "children": 0, - "created": "2017-09-12T14:41:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-19T14:41:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170912t144124829z", - "post_id": 12644625, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-12T14:41:24", - "url": "/meta/@steemit/firstpost#@alketcecaj/re-steemit-firstpost-20170912t144124829z" - }, - "aminul7/re-steemit-firstpost-20180209t052633133z": { - "active_votes": [], - "author": "aminul7", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.39, - "beneficiaries": [], - "blacklists": [], - "body": "Carry on Steemit.Love you", - "category": "meta", - "children": 0, - "created": "2018-02-09T05:26:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-16T05:26:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180209t052633133z", - "post_id": 31383426, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-09T05:26:51", - "url": "/meta/@steemit/firstpost#@aminul7/re-steemit-firstpost-20180209t052633133z" - }, - "amycox/psuyrv": { - "active_votes": [], - "author": "amycox", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.13, - "beneficiaries": [], - "blacklists": [], - "body": "Hopefully, you @steemit can add WYSIWYG editor in the platform when posting articles and edit it, and for comments as well.\n\nThanks", - "category": "meta", - "children": 0, - "created": "2019-06-10T01:00:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-06-17T01:00:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "psuyrv", - "post_id": 76128647, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-06-10T01:02:21", - "url": "/meta/@steemit/firstpost#@amycox/psuyrv" - }, - "ana-maria/re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170825t065706648z": { - "active_votes": [ - { - "rshares": "35300619567", - "voter": "mammasitta" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - } - ], - "author": "ana-maria", - "author_payout_value": "0.105 HBD", - "author_reputation": 64.75, - "beneficiaries": [], - "blacklists": [], - "body": "LOL - and now you dragged me too, as I also don't know how I ended up here. But, one thing I'm sure of - it's your \"fault\" @mammasitta! \ud83d\ude1c Your comment popped up as some new posting in my feed (strange) and here I am. Really, some mysterious Steemit ways! \ud83d\ude0e", - "category": "meta", - "children": 0, - "created": "2017-08-25T06:57:12", - "curator_payout_value": "0.035 HBD", - "depth": 6, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "mammasitta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 35300619567, - "parent_author": "mammasitta", - "parent_permlink": "re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235433264z", - "payout": 0.14, - "payout_at": "2017-09-01T06:57:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170825t065706648z", - "post_id": 11013949, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-25T06:57:12", - "url": "/meta/@steemit/firstpost#@ana-maria/re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170825t065706648z" - }, - "anacristinasilva/re-steemit-firstpost-20170617t043011440z": { - "active_votes": [], - "author": "anacristinasilva", - "author_payout_value": "0.000 HBD", - "author_reputation": 67.96, - "beneficiaries": [], - "blacklists": [], - "body": "I appreciate this platform", - "category": "meta", - "children": 0, - "created": "2017-06-17T04:30:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-24T04:30:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170617t043011440z", - "post_id": 4173542, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-17T04:30:18", - "url": "/meta/@steemit/firstpost#@anacristinasilva/re-steemit-firstpost-20170617t043011440z" - }, - "anandasungkar/re-steemit-firstpost-20180304t184305461z": { - "active_votes": [], - "author": "anandasungkar", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Wow amazing", - "category": "meta", - "children": 0, - "created": "2018-03-04T18:43:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-11T18:43:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180304t184305461z", - "post_id": 36664604, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-04T18:43:09", - "url": "/meta/@steemit/firstpost#@anandasungkar/re-steemit-firstpost-20180304t184305461z" - }, - "ancgci/ancgci-re-steemit-firstpost-20181015t004843528z": { - "active_votes": [], - "author": "ancgci", - "author_payout_value": "0.000 HBD", - "author_reputation": 35.66, - "beneficiaries": [], - "blacklists": [], - "body": "Hi please i need your help, i need pay mortage in my bank. Do you may voted in my post's please?\n\nPosted using [Partiko Android](https://steemit.com/@partiko-android)", - "category": "meta", - "children": 0, - "created": "2018-10-15T00:48:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "partiko" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-10-22T00:48:45", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "ancgci-re-steemit-firstpost-20181015t004843528z", - "post_id": 64260452, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-10-15T00:48:45", - "url": "/meta/@steemit/firstpost#@ancgci/ancgci-re-steemit-firstpost-20181015t004843528z" - }, - "andrath/re-steemit-firstpost-20170830t185517045z": { - "active_votes": [], - "author": "andrath", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.05, - "beneficiaries": [], - "blacklists": [], - "body": "Minnow here. Allow me to swim around here and admire this massive whale. :)\n\n(Is this really the very first post of the platform? Wow.)", - "category": "meta", - "children": 0, - "created": "2017-08-30T18:55:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-06T18:55:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170830t185517045z", - "post_id": 11503598, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-30T18:55:18", - "url": "/meta/@steemit/firstpost#@andrath/re-steemit-firstpost-20170830t185517045z" - }, - "andravasko/re-steemit-firstpost-20170912t145937605z": { - "active_votes": [ - { - "rshares": "923254782", - "voter": "xiti" - } - ], - "author": "andravasko", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.59, - "beneficiaries": [], - "blacklists": [], - "body": "I just want to ask you for help as many honorable popes, I created a [UPVOTED COMMUNITY](https://steemit.com/upvotedcommunity/@andravasko/upvoted-community-helps-minnow-steemit-2017910t192027952z) program, but as you can see in my post when promoting upvoted community, not having seen my post, I want to ask you to look at it even for a while my post [HERE !!!](https://steemit.com/upvotedcommunity/@andravasko/upvoted-community-helps-minnow-steemit-2017910t192027952z)\n\nmy program wants to help the minnows in steemit but see i do not have enough steem power, i just a minnow too, i have to give them 100% reward every post but my post limit is so fast so i can not upvote many post minnow other. at least I just want you to catch a glimpse of my post so minnow just as I can grow. I am very grateful to the pope like you @steemit", - "category": "meta", - "children": 0, - "created": "2017-09-12T14:59:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://steemit.com/upvotedcommunity/@andravasko/upvoted-community-helps-minnow-steemit-2017910t192027952z" - ], - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 923254782, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-19T14:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170912t145937605z", - "post_id": 12646273, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-12T14:59:42", - "url": "/meta/@steemit/firstpost#@andravasko/re-steemit-firstpost-20170912t145937605z" - }, - "andrewwu/re-steemit-firstpost-20170930t081242163z": { - "active_votes": [], - "author": "andrewwu", - "author_payout_value": "0.000 HBD", - "author_reputation": 38.97, - "beneficiaries": [], - "blacklists": [], - "body": "Yo!", - "category": "meta", - "children": 0, - "created": "2017-09-30T08:13:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-07T08:13:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170930t081242163z", - "post_id": 14135768, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-30T08:13:06", - "url": "/meta/@steemit/firstpost#@andrewwu/re-steemit-firstpost-20170930t081242163z" - }, - "angelsmith/re-steemit-firstpost-20171013t135507224z": { - "active_votes": [], - "author": "angelsmith", - "author_payout_value": "0.000 HBD", - "author_reputation": 30.91, - "beneficiaries": [], - "blacklists": [], - "body": "**i'm very happy cause join on steemit\ni hope my steem power be up day to day :))\nthank you steemit love you \nwe hope steemit the best forever **", - "category": "meta", - "children": 0, - "created": "2017-10-13T13:55:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-20T13:55:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171013t135507224z", - "post_id": 15224255, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-13T13:55:09", - "url": "/meta/@steemit/firstpost#@angelsmith/re-steemit-firstpost-20171013t135507224z" - }, - "anthonyadavisii/q5qlz5": { - "active_votes": [ - { - "rshares": "0", - "voter": "vladivostok" - }, - { - "rshares": "5362646982", - "voter": "ismailkah" - }, - { - "rshares": "14118816581", - "voter": "noblebot" - } - ], - "author": "anthonyadavisii", - "author_payout_value": "0.000 HBD", - "author_reputation": 71.04, - "beneficiaries": [], - "blacklists": [], - "body": "If the witnesses could fork out the StInc Stake before any attempted takeover. We may be able to make it though this. Based on the language in the article, I think it is highly probable and witnesses must act quickly.\n\nhttps://medium.com/@TronFoundation/steemit-joining-tron-ecosystem-6ad66584d0b", - "category": "meta", - "children": 0, - "created": "2020-02-15T09:49:21", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://medium.com/@TronFoundation/steemit-joining-tron-ecosystem-6ad66584d0b" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 19481463563, - "parent_author": "liberosist", - "parent_permlink": "q5pe3l", - "payout": 0.0, - "payout_at": "2020-02-22T09:49:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "q5qlz5", - "post_id": 84410600, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2020-02-15T09:49:21", - "url": "/meta/@steemit/firstpost#@anthonyadavisii/q5qlz5" - }, - "antoniodpz/re-steemit-firstpost-20171018t092916353z": { - "active_votes": [], - "author": "antoniodpz", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.04, - "beneficiaries": [], - "blacklists": [], - "body": "Good morning, please, I need to verify a transaction made in which I made a shipping error.\nI send my steem to a bitcoin portfolio in bittrex and I need my steem to be returned to my steemit portfolio, this is the transaction made\n\nyesterday\tTransfer 14.298 STEEM to bittrex\t1bNaaF85GokZCmWfoRRQPFkfEGeRaLoKe\n\n\nAppreciating the attention, greetings and thanks", - "category": "meta", - "children": 0, - "created": "2017-10-18T09:33:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-25T09:33:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171018t092916353z", - "post_id": 15559973, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-18T09:33:48", - "url": "/meta/@steemit/firstpost#@antoniodpz/re-steemit-firstpost-20171018t092916353z" - }, - "antoniodpz/re-steemit-firstpost-20171018t093612369z": { - "active_votes": [], - "author": "antoniodpz", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.04, - "beneficiaries": [], - "blacklists": [], - "body": "Good morning, please, I need to verify a transaction made in which I made a shipping error.\nI send my steem to a bitcoin portfolio in bittrex and I need my steem to be returned to my steemit portfolio, this is the transaction made\n\nyesterday\tTransfer 14.298 STEEM to bittrex\t1bNaaF85GokZCmWfoRRQPFkfEGeRaLoKe\n\n\nAppreciating the attention, greetings and thanks", - "category": "meta", - "children": 0, - "created": "2017-10-18T09:40:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-25T09:40:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171018t093612369z", - "post_id": 15560377, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-18T09:40:51", - "url": "/meta/@steemit/firstpost#@antoniodpz/re-steemit-firstpost-20171018t093612369z" - }, - "arisid/re-steemit-firstpost-20171228t092222655z": { - "active_votes": [], - "author": "arisid", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.36, - "beneficiaries": [], - "blacklists": [], - "body": "Hehe :)", - "category": "meta", - "children": 0, - "created": "2017-12-28T09:22:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-04T09:22:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171228t092222655z", - "post_id": 22327124, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-28T09:22:21", - "url": "/meta/@steemit/firstpost#@arisid/re-steemit-firstpost-20171228t092222655z" - }, - "ashirkhan/re-teamslovenia-komentar-teamslovenia-firstpost-20181129t104734328z": { - "active_votes": [], - "author": "ashirkhan", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "hello i accidently transfer some of my steem $ to bittrex without memo thats why they arent transferd in my bittrex account.please undo that transfer.", - "category": "meta", - "children": 0, - "created": "2018-11-29T10:47:39", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "teamslovenia", - "parent_permlink": "komentar-teamslovenia-firstpost", - "payout": 0.0, - "payout_at": "2018-12-06T10:47:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-teamslovenia-komentar-teamslovenia-firstpost-20181129t104734328z", - "post_id": 66745937, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-11-29T10:47:39", - "url": "/meta/@steemit/firstpost#@ashirkhan/re-teamslovenia-komentar-teamslovenia-firstpost-20181129t104734328z" - }, - "awaismuneeb1/re-steemit-firstpost-20170801t133500933z": { - "active_votes": [], - "author": "awaismuneeb1", - "author_payout_value": "0.000 HBD", - "author_reputation": 31.15, - "beneficiaries": [], - "blacklists": [], - "body": "thanks to give us a grate plateform", - "category": "meta", - "children": 0, - "created": "2017-08-01T13:34:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-08T13:34:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170801t133500933z", - "post_id": 8906124, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-01T13:34:48", - "url": "/meta/@steemit/firstpost#@awaismuneeb1/re-steemit-firstpost-20170801t133500933z" - }, - "ayakashi145/re-steemit-firstpost-20171117t023134234z": { - "active_votes": [ - { - "rshares": "365571166", - "voter": "zihad71" - } - ], - "author": "ayakashi145", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.59, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is wonderful, its a bit difficult to be noticed in the beggining but for places like Venezuela with the spiral sinking economy its really a life saver, just a few $ can make the difference from being dead or not... thanks for making this page \u2665", - "category": "meta", - "children": 0, - "created": "2017-11-17T02:28:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 365571166, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-24T02:28:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171117t023134234z", - "post_id": 17911755, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-17T02:28:42", - "url": "/meta/@steemit/firstpost#@ayakashi145/re-steemit-firstpost-20171117t023134234z" - }, - "azeemprime/re-stackin-re-steemit-firstpost-20180320t060223173z": { - "active_votes": [], - "author": "azeemprime", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.27, - "beneficiaries": [], - "blacklists": [], - "body": "Guys lets work together to earn faster VIA UPVOTE , FOllowing", - "category": "meta", - "children": 0, - "created": "2018-03-20T06:02:27", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-03-27T06:02:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180320t060223173z", - "post_id": 39546140, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-20T06:02:27", - "url": "/meta/@steemit/firstpost#@azeemprime/re-stackin-re-steemit-firstpost-20180320t060223173z" - }, - "azizbd/re-steemit-firstpost-20171121t172708558z": { - "active_votes": [ - { - "rshares": "459779279", - "voter": "supreme" - }, - { - "rshares": "2483103219248", - "voter": "adsactly" - }, - { - "rshares": "424803787", - "voter": "stea90" - }, - { - "rshares": "597047237", - "voter": "hopehuggs" - }, - { - "rshares": "301241101", - "voter": "anwarabdullah" - }, - { - "rshares": "962504981", - "voter": "raserrano" - }, - { - "rshares": "626279373", - "voter": "protoken" - }, - { - "rshares": "650596792", - "voter": "yukimaru" - }, - { - "rshares": "18393905562", - "voter": "dreamarif" - }, - { - "rshares": "3542986742", - "voter": "arie.steem" - } - ], - "author": "azizbd", - "author_payout_value": "4.717 HBD", - "author_reputation": 73.4, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks steemit for changing lives.", - "category": "meta", - "children": 0, - "created": "2017-11-21T17:27:09", - "curator_payout_value": "1.420 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 2509062364102, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 6.137, - "payout_at": "2017-11-28T17:27:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171121t172708558z", - "post_id": 18338769, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 10 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-21T17:27:09", - "url": "/meta/@steemit/firstpost#@azizbd/re-steemit-firstpost-20171121t172708558z" - }, - "azizbd/re-steemit-firstpost-20180626t203416280z": { - "active_votes": [ - { - "rshares": "1372446329208", - "voter": "adsactly" - }, - { - "rshares": "21012862561", - "voter": "geke" - }, - { - "rshares": "1280288852", - "voter": "raserrano" - }, - { - "rshares": "4380206366", - "voter": "osm0sis" - }, - { - "rshares": "13924820784", - "voter": "ashleykalila" - }, - { - "rshares": "6213257002", - "voter": "hafiz34" - }, - { - "rshares": "4649690671", - "voter": "sbi4" - } - ], - "author": "azizbd", - "author_payout_value": "3.394 HBD", - "author_reputation": 73.4, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you very much for the amazing platform. <3", - "category": "meta", - "children": 0, - "created": "2018-06-26T20:36:42", - "curator_payout_value": "0.118 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1423907455444, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 3.512, - "payout_at": "2018-07-03T20:36:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180626t203416280z", - "post_id": 54491475, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 7 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-26T20:36:42", - "url": "/meta/@steemit/firstpost#@azizbd/re-steemit-firstpost-20180626t203416280z" - }, - "bahagia-arbi/re-murizalalhabsyi-2017824t133949978z": { - "active_votes": [], - "author": "bahagia-arbi", - "author_payout_value": "0.000 HBD", - "author_reputation": 67.1, - "beneficiaries": [ - { - "account": "esteemapp", - "weight": 500 - } - ], - "blacklists": [], - "body": "I followed younalready. Thanks", - "category": "meta", - "children": 0, - "created": "2017-08-24T06:39:51", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "esteem/1.4.6", - "community": "esteem", - "format": "markdown+html", - "tags": "meta" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "murizalalhabsyi", - "parent_permlink": "re-bahagia-arbi-re-steemit-firstpost-20170824t062537081z", - "payout": 0.0, - "payout_at": "2017-08-31T06:39:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-murizalalhabsyi-2017824t133949978z", - "post_id": 10923010, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T06:39:51", - "url": "/meta/@steemit/firstpost#@bahagia-arbi/re-murizalalhabsyi-2017824t133949978z" - }, - "bahagia-arbi/re-steemit-firstpost-20170824t062329396z": { - "active_votes": [ - { - "rshares": "431268173", - "voter": "samuraiz" - } - ], - "author": "bahagia-arbi", - "author_payout_value": "0.000 HBD", - "author_reputation": 67.1, - "beneficiaries": [], - "blacklists": [], - "body": "Hello @steemit, I am a new bie here. I hope you can support me. Thanks a lot.\nRegard from Bireuen, Aceh, Indonesia.\n\n@bahagia-arbi", - "category": "meta", - "children": 2, - "created": "2017-08-24T06:24:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "bahagia-arbi" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 431268173, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-31T06:24:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170824t062329396z", - "post_id": 10922114, - "promoted": "0.000 HBD", - "replies": [ - "murizalalhabsyi/re-bahagia-arbi-re-steemit-firstpost-20170824t062537081z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T06:24:03", - "url": "/meta/@steemit/firstpost#@bahagia-arbi/re-steemit-firstpost-20170824t062329396z" - }, - "bangrully/re-steemit-firstpost-20180203t025920037z": { - "active_votes": [ - { - "rshares": "230427461", - "voter": "successmindset" - } - ], - "author": "bangrully", - "author_payout_value": "0.000 HBD", - "author_reputation": 51.2, - "beneficiaries": [], - "blacklists": [], - "body": "I love this, always make me happy to write", - "category": "meta", - "children": 0, - "created": "2018-02-03T02:59:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 230427461, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-10T02:59:30", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180203t025920037z", - "post_id": 30040215, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-03T02:59:30", - "url": "/meta/@steemit/firstpost#@bangrully/re-steemit-firstpost-20180203t025920037z" - }, - "banjo/re-mahmudulhassan-steemit-firstpost-20180521t132452206z": { - "active_votes": [], - "author": "banjo", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.99, - "beneficiaries": [], - "blacklists": [], - "body": "

What is a communication facility?

\n", - "category": "meta", - "children": 0, - "created": "2018-05-21T13:25:15", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "freakazoid/0.0.4pre3", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "mahmudulhassan", - "parent_permlink": "re-steemit-firstpost-20180521t131958921z", - "payout": 0.0, - "payout_at": "2018-05-28T13:25:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-mahmudulhassan-steemit-firstpost-20180521t132452206z", - "post_id": 49598794, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-21T13:25:15", - "url": "/meta/@steemit/firstpost#@banjo/re-mahmudulhassan-steemit-firstpost-20180521t132452206z" - }, - "bestmalik/re-steemit-firstpost-20160726t035722561z": { - "active_votes": [ - { - "rshares": "7413824", - "voter": "cire81" - } - ], - "author": "bestmalik", - "author_payout_value": "0.000 HBD", - "author_reputation": 38.04, - "beneficiaries": [], - "blacklists": [], - "body": "GO STEEM !!!", - "category": "meta", - "children": 0, - "created": "2016-07-26T03:57:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 7413824, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160726t035722561z", - "post_id": 264599, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-26T03:57:24", - "url": "/meta/@steemit/firstpost#@bestmalik/re-steemit-firstpost-20160726t035722561z" - }, - "bien/re-steemit-firstpost-20180518t023359659z": { - "active_votes": [ - { - "rshares": "9860241618", - "voter": "bien" - }, - { - "rshares": "10401291418", - "voter": "purepinay" - }, - { - "rshares": "590508633", - "voter": "justicekoduah" - } - ], - "author": "bien", - "author_payout_value": "0.088 HBD", - "author_reputation": 68.39, - "beneficiaries": [], - "blacklists": [], - "body": "It really tell's the truth! steemit the only platform who gives best reward by posting!\n\nProud steemit user here \ud83d\ude0a\ud83d\ude0a", - "category": "meta", - "children": 0, - "created": "2018-05-18T02:34:00", - "curator_payout_value": "0.008 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 20852041669, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.096, - "payout_at": "2018-05-25T02:34:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180518t023359659z", - "post_id": 49075821, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-18T02:34:00", - "url": "/meta/@steemit/firstpost#@bien/re-steemit-firstpost-20180518t023359659z" - }, - "biophil/re-steemit-firstpost-20180523t031530422z": { - "active_votes": [ - { - "rshares": "612497550", - "voter": "baus85" - }, - { - "rshares": "251822202", - "voter": "brian-t-penguin" - }, - { - "rshares": "143431781", - "voter": "drakahn" - }, - { - "rshares": "568970876", - "voter": "bitterchocolate" - } - ], - "author": "biophil", - "author_payout_value": "0.000 HBD", - "author_reputation": 66.9, - "beneficiaries": [], - "blacklists": [], - "body": "Can't remember if I'd ever replied to this post. If not, here I go! It's been almost 2 years since I discovered steemit, and I hate to sound like a clich\u00e9, but it's quite seriously changed my life. Thanks all!", - "category": "meta", - "children": 0, - "created": "2018-05-23T03:15:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1576722409, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-05-30T03:15:30", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180523t031530422z", - "post_id": 49853463, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-23T03:15:30", - "url": "/meta/@steemit/firstpost#@biophil/re-steemit-firstpost-20180523t031530422z" - }, - "bitgenio/re-steemit-firstpost-20170624t025915571z": { - "active_votes": [ - { - "rshares": "1074072705", - "voter": "bitgenio" - } - ], - "author": "bitgenio", - "author_payout_value": "0.000 HBD", - "author_reputation": 29.79, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you \u270c\ufe0f", - "category": "meta", - "children": 0, - "created": "2017-06-24T02:59:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1074072705, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-01T02:59:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170624t025915571z", - "post_id": 4868519, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-24T02:59:21", - "url": "/meta/@steemit/firstpost#@bitgenio/re-steemit-firstpost-20170624t025915571z" - }, - "boomshikha/re-stackin-re-steemit-firstpost-20170825t013613361z": { - "active_votes": [ - { - "rshares": "14972677998", - "voter": "stackin" - }, - { - "rshares": "0", - "voter": "gomain" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - }, - { - "rshares": "0", - "voter": "mooncryption" - }, - { - "rshares": "0", - "voter": "ritikagupta" - }, - { - "rshares": "0", - "voter": "asherunderwood" - }, - { - "rshares": "0", - "voter": "sutter" - } - ], - "author": "boomshikha", - "author_payout_value": "0.044 HBD", - "author_reputation": 61.95, - "beneficiaries": [], - "blacklists": [], - "body": "Definitely is!! :)", - "category": "meta", - "children": 10, - "created": "2017-08-25T01:36:15", - "curator_payout_value": "0.014 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 14972677998, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.058, - "payout_at": "2017-09-01T01:36:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20170825t013613361z", - "post_id": 10997371, - "promoted": "0.000 HBD", - "replies": [ - "jackolanternbob/re-boomshikha-re-stackin-re-steemit-firstpost-20180116t031304296z", - "mominsdt/re-boomshikha-re-stackin-re-steemit-firstpost-20180204t150750239z", - "calebotamus/re-boomshikha-re-stackin-re-steemit-firstpost-20180223t211927175z", - "sutter/re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035133909z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-25T01:36:15", - "url": "/meta/@steemit/firstpost#@boomshikha/re-stackin-re-steemit-firstpost-20170825t013613361z" - }, - "brucebrownftw/re-steemit-firstpost-20170628t191735949z": { - "active_votes": [], - "author": "brucebrownftw", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.34, - "beneficiaries": [], - "blacklists": [], - "body": "Awesome! I love this. I am 100% IN.", - "category": "meta", - "children": 0, - "created": "2017-06-28T19:17:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-05T19:17:45", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170628t191735949z", - "post_id": 5452134, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-28T19:17:45", - "url": "/meta/@steemit/firstpost#@brucebrownftw/re-steemit-firstpost-20170628t191735949z" - }, - "brunotreves/re-steemit-firstpost-20170628t051745320z": { - "active_votes": [], - "author": "brunotreves", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.35, - "beneficiaries": [], - "blacklists": [], - "body": "wow, was this the first steem post ever?!", - "category": "meta", - "children": 0, - "created": "2017-06-28T05:18:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-05T05:18:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170628t051745320z", - "post_id": 5377244, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-28T05:18:27", - "url": "/meta/@steemit/firstpost#@brunotreves/re-steemit-firstpost-20170628t051745320z" - }, - "business/re-red-steemit-firstpost-2-20160713t083846149z": { - "active_votes": [ - { - "rshares": "724886327", - "voter": "patrick-g" - }, - { - "rshares": "0", - "voter": "setio" - } - ], - "author": "business", - "author_payout_value": "0.000 HBD", - "author_reputation": 61.02, - "beneficiaries": [], - "blacklists": [], - "body": "No way?", - "category": "meta", - "children": 0, - "created": "2016-07-13T08:38:48", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 724886327, - "parent_author": "red", - "parent_permlink": "steemit-firstpost-2", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-red-steemit-firstpost-2-20160713t083846149z", - "post_id": 66997, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-13T08:38:48", - "url": "/meta/@steemit/firstpost#@business/re-red-steemit-firstpost-2-20160713t083846149z" - }, - "business/re-steemit-firstpost-20160713t082910980z": { - "active_votes": [ - { - "rshares": "724886327", - "voter": "patrick-g" - }, - { - "rshares": "58854897335", - "voter": "business" - }, - { - "rshares": "628198247", - "voter": "graystone" - }, - { - "rshares": "256298401739", - "voter": "juneaugoldbuyer" - }, - { - "rshares": "28483434", - "voter": "gjhi4552201" - }, - { - "rshares": "226779353", - "voter": "steg" - }, - { - "rshares": "54017869", - "voter": "zelious" - }, - { - "rshares": "51109965", - "voter": "f1111111" - } - ], - "author": "business", - "author_payout_value": "0.036 HBD", - "author_reputation": 61.02, - "beneficiaries": [], - "blacklists": [], - "body": "Welcome to steemit, @steemit.", - "category": "meta", - "children": 2, - "created": "2016-07-13T08:29:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 316866774269, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.036, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160713t082910980z", - "post_id": 66957, - "promoted": "0.000 HBD", - "replies": [ - "crypto-guru/re-business-re-steemit-firstpost-20170827t191427486z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 8 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-13T08:29:36", - "url": "/meta/@steemit/firstpost#@business/re-steemit-firstpost-20160713t082910980z" - }, - "bwashington1/re-steemit-firstpost-20180120t082229739z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "bwashington1", - "author_payout_value": "0.000 HBD", - "author_reputation": 20.82, - "beneficiaries": [], - "blacklists": [], - "body": "steemit is a phenomenal idea. i love how everyone can share their information and get the value they deserve. awesome idea", - "category": "meta", - "children": 0, - "created": "2018-01-20T08:22:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-27T08:22:33", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180120t082229739z", - "post_id": 26787660, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-20T08:22:33", - "url": "/meta/@steemit/firstpost#@bwashington1/re-steemit-firstpost-20180120t082229739z" - }, - "calebotamus/re-boomshikha-re-stackin-re-steemit-firstpost-20180223t211927175z": { - "active_votes": [ - { - "rshares": "2840207519", - "voter": "boomshikha" - } - ], - "author": "calebotamus", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.77, - "beneficiaries": [], - "blacklists": [], - "body": "Giving thank for @steemit just gotta say there are some brilliant peeps out here! Check @calebotamus fo some good vibes", - "category": "meta", - "children": 0, - "created": "2018-02-23T21:19:36", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "calebotamus" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 2840207519, - "parent_author": "boomshikha", - "parent_permlink": "re-stackin-re-steemit-firstpost-20170825t013613361z", - "payout": 0.0, - "payout_at": "2018-03-02T21:19:36", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-boomshikha-re-stackin-re-steemit-firstpost-20180223t211927175z", - "post_id": 34781740, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-23T21:19:36", - "url": "/meta/@steemit/firstpost#@calebotamus/re-boomshikha-re-stackin-re-steemit-firstpost-20180223t211927175z" - }, - "calebotamus/re-stackin-re-steemit-firstpost-20180223t211655533z": { - "active_votes": [ - { - "rshares": "0", - "voter": "ritikagupta" - } - ], - "author": "calebotamus", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.77, - "beneficiaries": [], - "blacklists": [], - "body": "Jah love @steemit thanks for the beautiful platform for these beautiful people to express themselves and share information ! \ud83d\ude0d And love! Check out @calebotamus loving you", - "category": "meta", - "children": 1, - "created": "2018-02-23T21:17:06", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "calebotamus" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-03-02T21:17:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180223t211655533z", - "post_id": 34781375, - "promoted": "0.000 HBD", - "replies": [ - "ritikagupta/re-calebotamus-re-stackin-re-steemit-firstpost-20180522t062710046z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-23T21:17:06", - "url": "/meta/@steemit/firstpost#@calebotamus/re-stackin-re-steemit-firstpost-20180223t211655533z" - }, - "chaseburnett/re-stackin-re-steemit-firstpost-20180213t001539171z": { - "active_votes": [ - { - "rshares": "0", - "voter": "ritikagupta" - } - ], - "author": "chaseburnett", - "author_payout_value": "0.000 HBD", - "author_reputation": 59.01, - "beneficiaries": [], - "blacklists": [], - "body": "Definitely! Hope everyone enjoys my photography and adventures in Alaska :)", - "category": "meta", - "children": 1, - "created": "2018-02-13T00:15:42", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-02-20T00:15:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180213t001539171z", - "post_id": 32230692, - "promoted": "0.000 HBD", - "replies": [ - "ritikagupta/re-chaseburnett-re-stackin-re-steemit-firstpost-20180522t062303683z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-13T00:15:42", - "url": "/meta/@steemit/firstpost#@chaseburnett/re-stackin-re-steemit-firstpost-20180213t001539171z" - }, - "chaseburnett/re-steemit-firstpost-20180213t001454596z": { - "active_votes": [ - { - "rshares": "1071498185", - "voter": "resteemy" - } - ], - "author": "chaseburnett", - "author_payout_value": "0.000 HBD", - "author_reputation": 59.01, - "beneficiaries": [], - "blacklists": [], - "body": "Really excited to be a part of this community. Ready to share my photography and exploration of Alaska. I hope you enjoy it :)", - "category": "meta", - "children": 1, - "created": "2018-02-13T00:14:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1071498185, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-20T00:14:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180213t001454596z", - "post_id": 32230571, - "promoted": "0.000 HBD", - "replies": [ - "resteemy/20180213t002053776z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-13T00:14:57", - "url": "/meta/@steemit/firstpost#@chaseburnett/re-steemit-firstpost-20180213t001454596z" - }, - "chirstonawba/chirstonawba-re-steemit-firstpost-20190408t011441217z": { - "active_votes": [ - { - "rshares": "-52059157119", - "voter": "mack-bot" - }, - { - "rshares": "1749840108", - "voter": "chirstonawba" - } - ], - "author": "chirstonawba", - "author_payout_value": "0.000 HBD", - "author_reputation": 8.17, - "beneficiaries": [], - "blacklists": [], - "body": "It's amazing to be on Steemit\n\nPosted using [Partiko Android](https://partiko.app/referral/chirstonawba)", - "category": "meta", - "children": 0, - "created": "2019-04-08T01:14:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "partiko", - "client": "android" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": -50309317011, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-04-15T01:14:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "chirstonawba-re-steemit-firstpost-20190408t011441217z", - "post_id": 72704719, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 1.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-04-08T01:14:42", - "url": "/meta/@steemit/firstpost#@chirstonawba/chirstonawba-re-steemit-firstpost-20190408t011441217z" - }, - "cliffblank/re-steemit-firstpost-20180213t002542693z": { - "active_votes": [], - "author": "cliffblank", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.53, - "beneficiaries": [], - "blacklists": [], - "body": "Is there a suggestions account? I'd like to see DELEGATED, UNDELEGATED and TOTAL amounts separated out in the Steem Power section of the wallet page.\n\nhttps://i.imgur.com/maaT3NC.png", - "category": "meta", - "children": 0, - "created": "2018-02-13T00:25:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://i.imgur.com/maaT3NC.png" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-20T00:25:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180213t002542693z", - "post_id": 32232291, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-13T00:25:39", - "url": "/meta/@steemit/firstpost#@cliffblank/re-steemit-firstpost-20180213t002542693z" - }, - "clixmoney/re-steemit-firstpost-20170707t115721315z": { - "active_votes": [ - { - "rshares": "220649334", - "voter": "aung" - } - ], - "author": "clixmoney", - "author_payout_value": "0.000 HBD", - "author_reputation": 76.22, - "beneficiaries": [], - "blacklists": [], - "body": "very good and amazing idea \u263a", - "category": "meta", - "children": 0, - "created": "2017-07-07T11:57:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 220649334, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-14T11:57:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170707t115721315z", - "post_id": 6437500, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-07T11:57:27", - "url": "/meta/@steemit/firstpost#@clixmoney/re-steemit-firstpost-20170707t115721315z" - }, - "clumsysilverdad/re-steemit-firstpost-20180202t230332954z": { - "active_votes": [ - { - "rshares": "16569456339", - "voter": "sjennon" - }, - { - "rshares": "56579138582", - "voter": "xervantes" - }, - { - "rshares": "2678198275", - "voter": "chicosonico" - }, - { - "rshares": "4780694365", - "voter": "clumsysilverdad" - } - ], - "author": "clumsysilverdad", - "author_payout_value": "0.446 HBD", - "author_reputation": 64.89, - "beneficiaries": [], - "blacklists": [], - "body": "That's cool Mr. Steemit / We are having a blast on the STEEM blockchain ///\n\nPEACE !!!", - "category": "meta", - "children": 0, - "created": "2018-02-02T23:03:27", - "curator_payout_value": "0.066 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 80607487561, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.512, - "payout_at": "2018-02-09T23:03:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180202t230332954z", - "post_id": 30009210, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-02T23:04:36", - "url": "/meta/@steemit/firstpost#@clumsysilverdad/re-steemit-firstpost-20180202t230332954z" - }, - "coincentral/re-steemit-firstpost-20170808t130440146z": { - "active_votes": [], - "author": "coincentral", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.66, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks for your role in making Steem! @coincentral has launched on Steem with a unique eco-subsystem of services to increase the liquidity, security and profitability of Steem assets and 40+ cryptocoins!", - "category": "meta", - "children": 0, - "created": "2017-08-08T13:04:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "coincentral" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-15T13:04:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170808t130440146z", - "post_id": 9565131, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-08T13:04:51", - "url": "/meta/@steemit/firstpost#@coincentral/re-steemit-firstpost-20170808t130440146z" - }, - "coldhair/re-steemit-firstpost-20171011t025314464z": { - "active_votes": [ - { - "rshares": "220516110037", - "voter": "coinbitgold" - }, - { - "rshares": "318344612107", - "voter": "penguinpablo" - }, - { - "rshares": "222167739707", - "voter": "coldhair" - }, - { - "rshares": "13256183898", - "voter": "shenchensucc" - }, - { - "rshares": "426589071", - "voter": "aabb" - }, - { - "rshares": "4656964679", - "voter": "powerfj" - }, - { - "rshares": "5039234807", - "voter": "kp138" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "coldhair", - "author_payout_value": "1.702 HBD", - "author_reputation": 65.85, - "beneficiaries": [], - "blacklists": [], - "body": "If Steemit goes well, everything will be changed in our world.", - "category": "meta", - "children": 0, - "created": "2017-10-11T02:53:15", - "curator_payout_value": "0.201 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 784407434306, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 1.903, - "payout_at": "2017-10-18T02:53:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171011t025314464z", - "post_id": 15017863, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 7 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-11T02:53:15", - "url": "/meta/@steemit/firstpost#@coldhair/re-steemit-firstpost-20171011t025314464z" - }, - "conscalisthenics/re-steemit-firstpost-20180414t021254524z": { - "active_votes": [ - { - "rshares": "10743371262", - "voter": "daltono" - }, - { - "rshares": "470883131", - "voter": "conscalisthenics" - } - ], - "author": "conscalisthenics", - "author_payout_value": "0.043 HBD", - "author_reputation": 48.4, - "beneficiaries": [], - "blacklists": [], - "body": "Man i love steemit thanks for creating this!", - "category": "meta", - "children": 0, - "created": "2018-04-14T02:12:54", - "curator_payout_value": "0.008 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 11214254393, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.051, - "payout_at": "2018-04-21T02:12:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180414t021254524z", - "post_id": 43484396, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-14T02:12:54", - "url": "/meta/@steemit/firstpost#@conscalisthenics/re-steemit-firstpost-20180414t021254524z" - }, - "cookntell/re-steemit-firstpost-20180520t105636268z": { - "active_votes": [ - { - "rshares": "5249627537", - "voter": "sbi4" - }, - { - "rshares": "549372307", - "voter": "beetlevc" - } - ], - "author": "cookntell", - "author_payout_value": "0.022 HBD", - "author_reputation": 64.65, - "beneficiaries": [], - "blacklists": [], - "body": "Proud to be here! :-) What an awesome community!!!! :-)", - "category": "meta", - "children": 0, - "created": "2018-05-20T10:56:39", - "curator_payout_value": "0.002 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 5798999844, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.024, - "payout_at": "2018-05-27T10:56:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180520t105636268z", - "post_id": 49425406, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-20T10:56:39", - "url": "/meta/@steemit/firstpost#@cookntell/re-steemit-firstpost-20180520t105636268z" - }, - "correctdrop/re-steemit-firstpost-20170624t021339008z": { - "active_votes": [], - "author": "correctdrop", - "author_payout_value": "0.000 HBD", - "author_reputation": 8.43, - "beneficiaries": [], - "blacklists": [], - "body": "I love this platform!", - "category": "meta", - "children": 0, - "created": "2017-06-24T02:13:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-01T02:13:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170624t021339008z", - "post_id": 4865275, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-24T02:13:39", - "url": "/meta/@steemit/firstpost#@correctdrop/re-steemit-firstpost-20170624t021339008z" - }, - "creon/re-steemit-firstpost-20171016t040402189z": { - "active_votes": [], - "author": "creon", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.01, - "beneficiaries": [], - "blacklists": [], - "body": "Hi, I need steemit power, not just for myself but to help fellow steemians have better experience on steemit.. Can't power up because I haven't made enough sbd to power up and I hardly get votes... Please send me power up you hardly us the one you have", - "category": "meta", - "children": 0, - "created": "2017-10-16T04:04:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-23T04:04:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171016t040402189z", - "post_id": 15412550, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-16T04:04:09", - "url": "/meta/@steemit/firstpost#@creon/re-steemit-firstpost-20171016t040402189z" - }, - "cresh/re-steemit-firstpost-20170726t080227814z": { - "active_votes": [], - "author": "cresh", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "I love Steemit, great content. I wish I could get as much Steem power as you guys.", - "category": "meta", - "children": 0, - "created": "2017-07-26T08:02:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-02T08:02:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170726t080227814z", - "post_id": 8327316, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-26T08:02:39", - "url": "/meta/@steemit/firstpost#@cresh/re-steemit-firstpost-20170726t080227814z" - }, - "crypto-guru/re-business-re-steemit-firstpost-20170827t191427486z": { - "active_votes": [], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "Welcome", - "category": "meta", - "children": 1, - "created": "2017-08-27T19:11:15", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "business", - "parent_permlink": "re-steemit-firstpost-20160713t082910980z", - "payout": 0.0, - "payout_at": "2017-09-03T19:11:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-business-re-steemit-firstpost-20170827t191427486z", - "post_id": 11224335, - "promoted": "0.000 HBD", - "replies": [ - "joshvel/re-crypto-guru-re-business-re-steemit-firstpost-20170921t061421507z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:11:15", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-business-re-steemit-firstpost-20170827t191427486z" - }, - "crypto-guru/re-kingtylervvs-re-steemit-firstpost-20170827t190850388z": { - "active_votes": [], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "The more I dig into STEEM, the more wonders I find.... There is no end to learning and having fun..", - "category": "meta", - "children": 0, - "created": "2017-08-27T19:05:39", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "kingtylervvs", - "parent_permlink": "re-steemit-firstpost-20160720t121101482z", - "payout": 0.0, - "payout_at": "2017-09-03T19:05:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-kingtylervvs-re-steemit-firstpost-20170827t190850388z", - "post_id": 11223953, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:05:39", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-kingtylervvs-re-steemit-firstpost-20170827t190850388z" - }, - "crypto-guru/re-sornprar-re-ackza-re-sornprar-re-steemit-firstpost-20170827t191230930z": { - "active_votes": [], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "Are you one of the developers?", - "category": "meta", - "children": 0, - "created": "2017-08-27T19:09:21", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "sornprar", - "parent_permlink": "re-ackza-re-sornprar-re-steemit-firstpost-20170813t135846925z", - "payout": 0.0, - "payout_at": "2017-09-03T19:09:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-sornprar-re-ackza-re-sornprar-re-steemit-firstpost-20170827t191230930z", - "post_id": 11224205, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:09:21", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-sornprar-re-ackza-re-sornprar-re-steemit-firstpost-20170827t191230930z" - }, - "crypto-guru/re-sornprar-re-steemit-firstpost-20170827t191032679z": { - "active_votes": [], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "Comments can go so deep, never thought about it....", - "category": "meta", - "children": 0, - "created": "2017-08-27T19:07:21", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "sornprar", - "parent_permlink": "re-steemit-firstpost-20170704t204851481z", - "payout": 0.0, - "payout_at": "2017-09-03T19:07:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-sornprar-re-steemit-firstpost-20170827t191032679z", - "post_id": 11224067, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:07:21", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-sornprar-re-steemit-firstpost-20170827t191032679z" - }, - "crypto-guru/re-sornprar-re-steemit-firstpost-20170827t191328874z": { - "active_votes": [], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "What is bot?", - "category": "meta", - "children": 0, - "created": "2017-08-27T19:10:18", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "sornprar", - "parent_permlink": "re-steemit-firstpost-20170704t204851481z", - "payout": 0.0, - "payout_at": "2017-09-03T19:10:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-sornprar-re-steemit-firstpost-20170827t191328874z", - "post_id": 11224269, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:10:18", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-sornprar-re-steemit-firstpost-20170827t191328874z" - }, - "crypto-guru/re-stackin-re-mammasitta-re-steemit-firstpost-20170827t191608007z": { - "active_votes": [], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "Commenting is, of course, better than not commenting... :)", - "category": "meta", - "children": 0, - "created": "2017-08-27T19:12:57", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-mammasitta-re-steemit-firstpost-20170824t234608820z", - "payout": 0.0, - "payout_at": "2017-09-03T19:12:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-mammasitta-re-steemit-firstpost-20170827t191608007z", - "post_id": 11224445, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:12:57", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-stackin-re-mammasitta-re-steemit-firstpost-20170827t191608007z" - }, - "crypto-guru/re-stackin-re-steemit-firstpost-20170827t190543739z": { - "active_votes": [ - { - "rshares": "0", - "voter": "ritikagupta" - } - ], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "Yes, indeed, it is amazing.", - "category": "meta", - "children": 1, - "created": "2017-08-27T19:02:33", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2017-09-03T19:02:33", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20170827t190543739z", - "post_id": 11223748, - "promoted": "0.000 HBD", - "replies": [ - "ritikagupta/re-crypto-guru-re-stackin-re-steemit-firstpost-20180522t062351778z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:02:33", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-stackin-re-steemit-firstpost-20170827t190543739z" - }, - "crypto-guru/re-steemit-firstpost-20170827t190510082z": { - "active_votes": [], - "author": "crypto-guru", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.31, - "beneficiaries": [], - "blacklists": [], - "body": "It's really a great fun, wonderful and amazing to be here at Steemit....\nhttp://www.hdwallpaperspulse.com/wp-content/uploads/2016/05/19/high-resolution-amazing-image.jpeg", - "category": "meta", - "children": 0, - "created": "2017-08-27T19:01:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "http://www.hdwallpaperspulse.com/wp-content/uploads/2016/05/19/high-resolution-amazing-image.jpeg" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-03T19:01:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170827t190510082z", - "post_id": 11223700, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-27T19:01:57", - "url": "/meta/@steemit/firstpost#@crypto-guru/re-steemit-firstpost-20170827t190510082z" - }, - "crypto-p/re-valueup-re-steemit-firstpost-20170619t185901457z": { - "active_votes": [ - { - "rshares": "188687636530", - "voter": "crypto-p" - } - ], - "author": "crypto-p", - "author_payout_value": "3.564 HBD", - "author_reputation": 67.36, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you for sharing this, following you", - "category": "meta", - "children": 0, - "created": "2017-06-19T18:59:03", - "curator_payout_value": "0.010 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 188687636530, - "parent_author": "valueup", - "parent_permlink": "re-steemit-firstpost-20170619t152843513z", - "payout": 3.574, - "payout_at": "2017-06-26T18:59:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-valueup-re-steemit-firstpost-20170619t185901457z", - "post_id": 4367388, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-19T18:59:03", - "url": "/meta/@steemit/firstpost#@crypto-p/re-valueup-re-steemit-firstpost-20170619t185901457z" - }, - "cryptoaltcoin/re-steemit-firstpost-20180131t211925372z": { - "active_votes": [ - { - "rshares": "1252842354", - "voter": "cryptoaltcoin" - }, - { - "rshares": "224282729", - "voter": "successmindset" - } - ], - "author": "cryptoaltcoin", - "author_payout_value": "0.000 HBD", - "author_reputation": 46.96, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you!", - "category": "meta", - "children": 0, - "created": "2018-01-31T21:19:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1477125083, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-07T21:19:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180131t211925372z", - "post_id": 29520843, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-31T21:19:24", - "url": "/meta/@steemit/firstpost#@cryptoaltcoin/re-steemit-firstpost-20180131t211925372z" - }, - "cryptonegocios/re-steemit-firstpost-20180507t174657616z": { - "active_votes": [ - { - "rshares": "166190514460", - "voter": "cryptonegocios" - } - ], - "author": "cryptonegocios", - "author_payout_value": "0.750 HBD", - "author_reputation": 45.31, - "beneficiaries": [], - "blacklists": [], - "body": "Realmente me asombra el poder de votaci\u00f3n que tienen, Estoy trabajando en difundir Steemit en espa\u00f1ol, espero me puedan apoyar con un Voto\n![Steemit_Canal_Cryptonegocios.jpg](https://steemitimages.com/DQmNWu9xE1H5NwZ9P1jwX1PZvYLjf6TdPpxKPtqc2CKwxuN/Steemit_Canal_Cryptonegocios.jpg)", - "category": "meta", - "children": 0, - "created": "2018-05-07T17:46:57", - "curator_payout_value": "0.011 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmNWu9xE1H5NwZ9P1jwX1PZvYLjf6TdPpxKPtqc2CKwxuN/Steemit_Canal_Cryptonegocios.jpg" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 166190514460, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.761, - "payout_at": "2018-05-14T17:46:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180507t174657616z", - "post_id": 47422363, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-07T17:49:06", - "url": "/meta/@steemit/firstpost#@cryptonegocios/re-steemit-firstpost-20180507t174657616z" - }, - "cryptoscout/re-steemit-firstpost-20180220t082425531z": { - "active_votes": [], - "author": "cryptoscout", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.67, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit I have had an exciting an meeningfull time on steemit in the past 30 day's and learned a lot. \n\nEstimated Account Value\nThe estimated value is based on an average value of Steem in US dollars.\n$234,335,385.93\n\nI was amaized by this figure and hope to achieve somewhat a tenth of that equivelant. Thank you for this amaizing platform and the invative thinking to create such a network.", - "category": "meta", - "children": 0, - "created": "2018-02-20T08:24:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-27T08:24:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180220t082425531z", - "post_id": 33946075, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-20T08:24:24", - "url": "/meta/@steemit/firstpost#@cryptoscout/re-steemit-firstpost-20180220t082425531z" - }, - "cryptosharon/re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180420t083613598z": { - "active_votes": [], - "author": "cryptosharon", - "author_payout_value": "0.000 HBD", - "author_reputation": 69.25, - "beneficiaries": [], - "blacklists": [], - "body": "What about it?", - "category": "meta", - "children": 2, - "created": "2018-04-20T08:36:12", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "jackolanternbob", - "parent_permlink": "re-boomshikha-re-stackin-re-steemit-firstpost-20180116t031304296z", - "payout": 0.0, - "payout_at": "2018-04-27T08:36:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180420t083613598z", - "post_id": 44486676, - "promoted": "0.000 HBD", - "replies": [ - "jackolanternbob/re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180718t002453741z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-20T08:36:12", - "url": "/meta/@steemit/firstpost#@cryptosharon/re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180420t083613598z" - }, - "cryptospeaker/re-steemit-firstpost-20171101t121036602z": { - "active_votes": [], - "author": "cryptospeaker", - "author_payout_value": "0.000 HBD", - "author_reputation": 28.93, - "beneficiaries": [], - "blacklists": [], - "body": "The new green CI don't look good. sorry!!", - "category": "meta", - "children": 0, - "created": "2017-11-01T12:10:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-08T12:10:36", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171101t121036602z", - "post_id": 16613942, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-01T12:10:36", - "url": "/meta/@steemit/firstpost#@cryptospeaker/re-steemit-firstpost-20171101t121036602z" - }, - "cyberspace/re-steemit-firstpost-20170719t102745698z": { - "active_votes": [ - { - "rshares": "0", - "voter": "stealthtrader" - }, - { - "rshares": "1474318760832", - "voter": "sponge-bob" - }, - { - "rshares": "12097822971", - "voter": "vmsolutionsltd" - }, - { - "rshares": "1029095452", - "voter": "charitywater" - }, - { - "rshares": "0", - "voter": "cyberspace" - }, - { - "rshares": "0", - "voter": "faridrizkia" - }, - { - "rshares": "0", - "voter": "kevca16" - }, - { - "rshares": "0", - "voter": "drtarts" - }, - { - "rshares": "0", - "voter": "rubyjunk" - } - ], - "author": "cyberspace", - "author_payout_value": "7.455 HBD", - "author_reputation": 51.03, - "beneficiaries": [], - "blacklists": [], - "body": "@Steemit @Freedom @Steem @Dan @Ned @blocktrades @val-a @mottler @abit @databass @hendrikdegrote @jamesc @ben @michael-b @val-b @ranchorelaxo @proskynneo @thejohalfiles @smooth @xeldal @roadscape @created @arhag @jamesc1 @michael-a @sponge-bob\n\nDear Founders and Power Whales,\nI am trying to raise some \"VC\" Steem Power and invite you to:\n1. See my [Introduceyourself post](https://steemit.com/introduceyourself/@cyberspace/introduce-yourself-first-post-by-cyberspace) and then \n2. Invest in @Cyberspace by delegating any amount of Steem Power you see fit. \n\nThanks in advance for your support in any form be that SP, STEEM, SBD or some good pointers/links!\n\n@Cyberspace", - "category": "meta", - "children": 1, - "created": "2017-07-19T10:28:03", - "curator_payout_value": "0.094 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://steemit.com/introduceyourself/@cyberspace/introduce-yourself-first-post-by-cyberspace" - ], - "tags": [ - "meta" - ], - "users": [ - "steemit", - "freedom", - "steem", - "dan", - "ned", - "blocktrades", - "val-a", - "mottler", - "abit", - "databass", - "hendrikdegrote", - "jamesc", - "ben", - "michael-b", - "val-b", - "ranchorelaxo", - "proskynneo", - "thejohalfiles", - "smooth", - "xeldal", - "roadscape", - "created", - "arhag", - "jamesc1", - "michael-a", - "sponge-bob", - "cyberspace" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1487445679255, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 7.549, - "payout_at": "2017-07-26T10:28:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170719t102745698z", - "post_id": 7614076, - "promoted": "0.000 HBD", - "replies": [ - "faridrizkia/re-cyberspace-re-steemit-firstpost-20170826t105707517z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-19T13:05:09", - "url": "/meta/@steemit/firstpost#@cyberspace/re-steemit-firstpost-20170719t102745698z" - }, - "dan321/re-stackin-re-steemit-firstpost-20180304t105930825z": { - "active_votes": [ - { - "rshares": "0", - "voter": "ritikagupta" - } - ], - "author": "dan321", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.05, - "beneficiaries": [], - "blacklists": [], - "body": "I've forogot facebook ,since i use steem ! :D", - "category": "meta", - "children": 1, - "created": "2018-03-04T10:59:30", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-03-11T10:59:30", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180304t105930825z", - "post_id": 36592351, - "promoted": "0.000 HBD", - "replies": [ - "ritikagupta/re-dan321-re-stackin-re-steemit-firstpost-20180522t062950122z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-04T10:59:30", - "url": "/meta/@steemit/firstpost#@dan321/re-stackin-re-steemit-firstpost-20180304t105930825z" - }, - "dan321/re-steemit-firstpost-20180304t110205518z": { - "active_votes": [], - "author": "dan321", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.05, - "beneficiaries": [], - "blacklists": [], - "body": "Steem=best !", - "category": "meta", - "children": 0, - "created": "2018-03-04T11:02:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-11T11:02:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180304t110205518z", - "post_id": 36592735, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-04T11:02:03", - "url": "/meta/@steemit/firstpost#@dan321/re-steemit-firstpost-20180304t110205518z" - }, - "darknessprincess/re-steemit-firstpost-20170703t180707051z": { - "active_votes": [ - { - "rshares": "87052576", - "voter": "change4life" - } - ], - "author": "darknessprincess", - "author_payout_value": "0.000 HBD", - "author_reputation": 15.6, - "beneficiaries": [], - "blacklists": [], - "body": "Follow And upvotes my friends am new on @steemit am back All follows", - "category": "meta", - "children": 0, - "created": "2017-07-03T18:07:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 87052576, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-10T18:07:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170703t180707051z", - "post_id": 6031275, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-03T18:07:12", - "url": "/meta/@steemit/firstpost#@darknessprincess/re-steemit-firstpost-20170703t180707051z" - }, - "davidconstantine/re-steemit-firstpost-20171217t214103613z": { - "active_votes": [ - { - "rshares": "10174655868", - "voter": "elowin" - }, - { - "rshares": "46414283651", - "voter": "davidconstantine" - }, - { - "rshares": "2450642838", - "voter": "bonjovey" - }, - { - "rshares": "305050417", - "voter": "mzalevsky" - } - ], - "author": "davidconstantine", - "author_payout_value": "0.365 HBD", - "author_reputation": 54.27, - "beneficiaries": [], - "blacklists": [], - "body": "What a piece of history :)", - "category": "meta", - "children": 0, - "created": "2017-12-17T21:41:03", - "curator_payout_value": "0.003 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 59344632774, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.368, - "payout_at": "2017-12-24T21:41:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171217t214103613z", - "post_id": 20819414, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-17T21:41:03", - "url": "/meta/@steemit/firstpost#@davidconstantine/re-steemit-firstpost-20171217t214103613z" - }, - "davidfar/re-steemit-firstpost-20170702t182536878z": { - "active_votes": [], - "author": "davidfar", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.13, - "beneficiaries": [], - "blacklists": [], - "body": "Hi @steemit , Nice blog .", - "category": "meta", - "children": 0, - "created": "2017-07-02T18:25:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-09T18:25:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170702t182536878z", - "post_id": 5918062, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-02T18:25:39", - "url": "/meta/@steemit/firstpost#@davidfar/re-steemit-firstpost-20170702t182536878z" - }, - "dbudhrani/re-steemit-firstpost-20171030t161000488z": { - "active_votes": [], - "author": "dbudhrani", - "author_payout_value": "0.000 HBD", - "author_reputation": 37.26, - "beneficiaries": [], - "blacklists": [], - "body": "first post ever in steemit?", - "category": "meta", - "children": 0, - "created": "2017-10-30T16:10:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-06T16:10:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171030t161000488z", - "post_id": 16461538, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-30T16:10:00", - "url": "/meta/@steemit/firstpost#@dbudhrani/re-steemit-firstpost-20171030t161000488z" - }, - "deanliu/q7jdug": { - "active_votes": [], - "author": "deanliu", - "author_payout_value": "0.000 HBD", - "author_reputation": 78.31, - "beneficiaries": [], - "blacklists": [], - "body": "The first R.I.P. on the Hive chain.", - "category": "meta", - "children": 0, - "created": "2020-03-21T09:18:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "hiveblog/0.1" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2020-03-28T09:18:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "q7jdug", - "post_id": 85339963, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2020-03-21T09:18:18", - "url": "/meta/@steemit/firstpost#@deanliu/q7jdug" - }, - "deanliu/re-steemit-firstpost-20160810t083336206z": { - "active_votes": [ - { - "rshares": "74273734", - "voter": "bitmaxt" - }, - { - "rshares": "56152551", - "voter": "lovetosteemit" - }, - { - "rshares": "0", - "voter": "laodr" - } - ], - "author": "deanliu", - "author_payout_value": "0.000 HBD", - "author_reputation": 78.31, - "beneficiaries": [], - "blacklists": [], - "body": "is this post truly the time zero, the origin, the big bang of all?", - "category": "meta", - "children": 0, - "created": "2016-08-10T08:33:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 130426285, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160810t083336206z", - "post_id": 537479, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-10T08:33:54", - "url": "/meta/@steemit/firstpost#@deanliu/re-steemit-firstpost-20160810t083336206z" - }, - "debart/re-steemit-firstpost-20180212t134609402z": { - "active_votes": [], - "author": "debart", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.12, - "beneficiaries": [], - "blacklists": [], - "body": "Hello I am a artist from South Africa, I have been making digital art for 3 years every day, I am trying out Steemit and would really appreciate your support with a Upvote or even a follow. have a super day @debart", - "category": "meta", - "children": 0, - "created": "2018-02-12T13:46:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "debart" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-19T13:46:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180212t134609402z", - "post_id": 32125321, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-12T13:46:09", - "url": "/meta/@steemit/firstpost#@debart/re-steemit-firstpost-20180212t134609402z" - }, - "decorations/re-steemit-firstpost-20170903t015605761z": { - "active_votes": [], - "author": "decorations", - "author_payout_value": "0.000 HBD", - "author_reputation": 39.78, - "beneficiaries": [], - "blacklists": [], - "body": "Really??! Just one post?. This account should be the reference for all of steemit users i hope that you will activate this account to help us understand the platform more . Thanks \ud83d\ude42", - "category": "meta", - "children": 0, - "created": "2017-09-03T01:56:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-10T01:56:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170903t015605761z", - "post_id": 11795302, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-03T01:56:09", - "url": "/meta/@steemit/firstpost#@decorations/re-steemit-firstpost-20170903t015605761z" - }, - "devkapoor423/devkapoor423-re-steemit-firstpost-20190104t114948233z": { - "active_votes": [ - { - "rshares": "0", - "voter": "raise-me-up" - } - ], - "author": "devkapoor423", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.05, - "beneficiaries": [], - "blacklists": [], - "body": "Really this is great information about this @steemit account and power of this whale account.\nThanks @themarkymark for sharing post about rich steemit power whales.\n\nPosted using [Partiko Android](https://steemit.com/@partiko-android)", - "category": "meta", - "children": 0, - "created": "2019-01-04T11:50:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "partiko" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-01-11T11:50:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "devkapoor423-re-steemit-firstpost-20190104t114948233z", - "post_id": 68345378, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-01-04T11:50:03", - "url": "/meta/@steemit/firstpost#@devkapoor423/devkapoor423-re-steemit-firstpost-20190104t114948233z" - }, - "diggerdugg/re-steemit-firstpost-20170706t210051540z": { - "active_votes": [], - "author": "diggerdugg", - "author_payout_value": "0.000 HBD", - "author_reputation": 54.81, - "beneficiaries": [], - "blacklists": [], - "body": "
Heeeeeeeeeeey. Are you still active, still around?? Have an awesome day
", - "category": "meta", - "children": 1, - "created": "2017-07-06T21:00:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-13T21:00:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170706t210051540z", - "post_id": 6377965, - "promoted": "0.000 HBD", - "replies": [ - "thephotoguide/re-diggerdugg-re-steemit-firstpost-20170706t212052448z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-06T21:00:54", - "url": "/meta/@steemit/firstpost#@diggerdugg/re-steemit-firstpost-20170706t210051540z" - }, - "dirtyhippie/re-steemit-firstpost-20180120t050024573z": { - "active_votes": [ - { - "rshares": "48252962509", - "voter": "newpioneer" - }, - { - "rshares": "0", - "voter": "rosynesn" - }, - { - "rshares": "580676561", - "voter": "mikeduck" - } - ], - "author": "dirtyhippie", - "author_payout_value": "0.432 HBD", - "author_reputation": 45.78, - "beneficiaries": [], - "blacklists": [], - "body": "What a wonderful platform. Hoping to build some steem power soon. Just getting started", - "category": "meta", - "children": 0, - "created": "2018-01-20T05:00:27", - "curator_payout_value": "0.120 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 48833639070, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.552, - "payout_at": "2018-01-27T05:00:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180120t050024573z", - "post_id": 26762204, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-20T05:00:27", - "url": "/meta/@steemit/firstpost#@dirtyhippie/re-steemit-firstpost-20180120t050024573z" - }, - "doubledeeyt/re-steemit-firstpost-20170705t060154298z": { - "active_votes": [], - "author": "doubledeeyt", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.18, - "beneficiaries": [], - "blacklists": [], - "body": "upvoted!", - "category": "meta", - "children": 0, - "created": "2017-07-05T06:01:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-12T06:01:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170705t060154298z", - "post_id": 6195580, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-05T06:01:54", - "url": "/meta/@steemit/firstpost#@doubledeeyt/re-steemit-firstpost-20170705t060154298z" - }, - "dreamm/re-steemit-firstpost-20171206t122126721z": { - "active_votes": [ - { - "rshares": "0", - "voter": "dreamm" - } - ], - "author": "dreamm", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.1, - "beneficiaries": [], - "blacklists": [], - "body": "It's amazing to be on Steemit \ud83d\ude4c\ud83c\udffc\ud83d\udcaa\ud83c\udffc\ud83d\udcaf", - "category": "meta", - "children": 0, - "created": "2017-12-06T12:21:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-13T12:21:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171206t122126721z", - "post_id": 19618966, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-06T12:21:27", - "url": "/meta/@steemit/firstpost#@dreamm/re-steemit-firstpost-20171206t122126721z" - }, - "dtubix/re-firstpost-53": { - "active_votes": [ - { - "rshares": "58499262", - "voter": "alexisimperial" - } - ], - "author": "dtubix", - "author_payout_value": "0.000 HBD", - "author_reputation": 38.85, - "beneficiaries": [], - "blacklists": [], - "body": "Cool! I follow you. ", - "category": "meta", - "children": 0, - "created": "2018-02-24T04:16:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 58499262, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-03T04:16:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-firstpost-53", - "post_id": 34826874, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-24T04:16:06", - "url": "/meta/@steemit/firstpost#@dtubix/re-firstpost-53" - }, - "dylanhobalart/re-stackin-re-steemit-firstpost-20180116t065239526z": { - "active_votes": [ - { - "rshares": "0", - "voter": "asherunderwood" - } - ], - "author": "dylanhobalart", - "author_payout_value": "0.000 HBD", - "author_reputation": 65.71, - "beneficiaries": [], - "blacklists": [], - "body": "Is this were the party started!", - "category": "meta", - "children": 0, - "created": "2018-01-16T06:53:24", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-01-23T06:53:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180116t065239526z", - "post_id": 25979143, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-16T06:53:24", - "url": "/meta/@steemit/firstpost#@dylanhobalart/re-stackin-re-steemit-firstpost-20180116t065239526z" - }, - "dynamicrypto/re-steemit-firstpost-20180312t183758619z": { - "active_votes": [ - { - "rshares": "33760474580", - "voter": "steembasicincome" - }, - { - "rshares": "32442992676", - "voter": "sbi2" - }, - { - "rshares": "24696375919", - "voter": "sbi3" - }, - { - "rshares": "7459987666", - "voter": "sbi4" - } - ], - "author": "dynamicrypto", - "author_payout_value": "0.251 HBD", - "author_reputation": 71.04, - "beneficiaries": [], - "blacklists": [], - "body": "Looking at transactions and I am curious why you gave @misterdelegation over 5 million steem power last month @steemit?", - "category": "meta", - "children": 0, - "created": "2018-03-12T18:38:00", - "curator_payout_value": "0.048 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "misterdelegation", - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 98359830841, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.299, - "payout_at": "2018-03-19T18:38:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180312t183758619z", - "post_id": 38202114, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-12T18:38:00", - "url": "/meta/@steemit/firstpost#@dynamicrypto/re-steemit-firstpost-20180312t183758619z" - }, - "dynamicrypto/re-steemit-firstpost-20180313t214505560z": { - "active_votes": [ - { - "rshares": "34435216870", - "voter": "steembasicincome" - }, - { - "rshares": "31186455019", - "voter": "sbi2" - }, - { - "rshares": "26949267314", - "voter": "sbi3" - }, - { - "rshares": "8870050985", - "voter": "sbi4" - } - ], - "author": "dynamicrypto", - "author_payout_value": "0.257 HBD", - "author_reputation": 71.04, - "beneficiaries": [], - "blacklists": [], - "body": "Looking at transactions and I am curious why you gave @misterdelegation over 5 million steem power last month @steemit?", - "category": "meta", - "children": 0, - "created": "2018-03-13T21:45:06", - "curator_payout_value": "0.050 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "misterdelegation", - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 101440990188, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.307, - "payout_at": "2018-03-20T21:45:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180313t214505560z", - "post_id": 38436464, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-13T21:45:06", - "url": "/meta/@steemit/firstpost#@dynamicrypto/re-steemit-firstpost-20180313t214505560z" - }, - "dynamicrypto/re-steemit-firstpost-20180731t223557568z": { - "active_votes": [ - { - "rshares": "23894942291", - "voter": "mathiasian" - }, - { - "rshares": "563753006", - "voter": "tammymc" - }, - { - "rshares": "575632536", - "voter": "llevoc" - }, - { - "rshares": "307046152227", - "voter": "steembasicincome" - }, - { - "rshares": "575942260", - "voter": "natc" - }, - { - "rshares": "575938998", - "voter": "bravest" - }, - { - "rshares": "116032038", - "voter": "rsmartt777" - } - ], - "author": "dynamicrypto", - "author_payout_value": "0.461 HBD", - "author_reputation": 71.04, - "beneficiaries": [], - "blacklists": [], - "body": "The very first @steemit post! Great find", - "category": "meta", - "children": 0, - "created": "2018-07-31T22:35:57", - "curator_payout_value": "0.098 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 333348393356, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.559, - "payout_at": "2018-08-07T22:35:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180731t223557568z", - "post_id": 58347960, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 7 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-31T22:35:57", - "url": "/meta/@steemit/firstpost#@dynamicrypto/re-steemit-firstpost-20180731t223557568z" - }, - "ebi16/re-steemit-firstpost-20180106t193603590z": { - "active_votes": [], - "author": "ebi16", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.78, - "beneficiaries": [], - "blacklists": [], - "body": "It is 77th day on Steemit for me and it started to earn money. I am so grateful for Steem. It rewards people for being their true selves. It is true freedom.", - "category": "meta", - "children": 0, - "created": "2018-01-06T19:36:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-13T19:36:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180106t193603590z", - "post_id": 24016205, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-06T19:36:03", - "url": "/meta/@steemit/firstpost#@ebi16/re-steemit-firstpost-20180106t193603590z" - }, - "edbriv/re-steemit-firstpost-20160801t184846033z": { - "active_votes": [ - { - "rshares": "-336740570", - "voter": "dtbahoney" - }, - { - "rshares": "52272448", - "voter": "edbriv" - }, - { - "rshares": "0", - "voter": "strateg" - } - ], - "author": "edbriv", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.05, - "beneficiaries": [], - "blacklists": [], - "body": "GO STEEM !!! go!!!", - "category": "meta", - "children": 1, - "created": "2016-08-01T18:12:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": -284468122, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160801t184846033z", - "post_id": 395733, - "promoted": "0.000 HBD", - "replies": [ - "strateg/re-edbriv-re-steemit-firstpost-20170517t202319969z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-01T18:12:00", - "url": "/meta/@steemit/firstpost#@edbriv/re-steemit-firstpost-20160801t184846033z" - }, - "eljose27/re-steemit-firstpost-20180331t143633851z": { - "active_votes": [ - { - "rshares": "611952180", - "voter": "eljose27" - } - ], - "author": "eljose27", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.31, - "beneficiaries": [], - "blacklists": [], - "body": "# Steemit is the best platform, thank you for your creation they are great. \n
\n![Steemit-red-social-blockchain-e1503205220268.jpg](https://steemitimages.com/DQmSFUYFVhMGxBZBhC6P7hFipSkwWyet4rBCCfBUEB7gvZW/Steemit-red-social-blockchain-e1503205220268.jpg)\n
\n\nsteem on", - "category": "meta", - "children": 0, - "created": "2018-03-31T14:36:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmSFUYFVhMGxBZBhC6P7hFipSkwWyet4rBCCfBUEB7gvZW/Steemit-red-social-blockchain-e1503205220268.jpg" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 611952180, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-07T14:36:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180331t143633851z", - "post_id": 41440476, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-31T14:36:27", - "url": "/meta/@steemit/firstpost#@eljose27/re-steemit-firstpost-20180331t143633851z" - }, - "elneddy/re-steemit-firstpost-20171006t194927903z": { - "active_votes": [], - "author": "elneddy", - "author_payout_value": "0.000 HBD", - "author_reputation": 40.98, - "beneficiaries": [], - "blacklists": [], - "body": "We are the biggest steemit community from the biggest destruction place by TSUNAMI in aceh and still exist on steemit with poor of skill, poor of education..Please support ACEH STEEMIANS", - "category": "meta", - "children": 0, - "created": "2017-10-06T19:49:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-13T19:49:30", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171006t194927903z", - "post_id": 14655966, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-06T19:49:30", - "url": "/meta/@steemit/firstpost#@elneddy/re-steemit-firstpost-20171006t194927903z" - }, - "emjoe/re-steemit-firstpost-20180409t120039258z": { - "active_votes": [ - { - "rshares": "719553483", - "voter": "michaeldavid" - }, - { - "rshares": "6740715396", - "voter": "thealliance" - } - ], - "author": "emjoe", - "author_payout_value": "0.028 HBD", - "author_reputation": 68.05, - "beneficiaries": [], - "blacklists": [], - "body": "Hmmm. So there is actually an account that represents the platform, this is interesting.", - "category": "meta", - "children": 0, - "created": "2018-04-09T12:00:42", - "curator_payout_value": "0.002 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 7460268879, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.03, - "payout_at": "2018-04-16T12:00:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180409t120039258z", - "post_id": 42759351, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-09T12:00:42", - "url": "/meta/@steemit/firstpost#@emjoe/re-steemit-firstpost-20180409t120039258z" - }, - "emmywell/re-steemit-firstpost-20180413t015120739z": { - "active_votes": [], - "author": "emmywell", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.85, - "beneficiaries": [], - "blacklists": [], - "body": "That's an awesome site", - "category": "meta", - "children": 0, - "created": "2018-04-13T01:51:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-20T01:51:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180413t015120739z", - "post_id": 43330141, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-13T01:51:39", - "url": "/meta/@steemit/firstpost#@emmywell/re-steemit-firstpost-20180413t015120739z" - }, - "endorphoenix/re-steemit-firstpost-20171208t183328209z": { - "active_votes": [], - "author": "endorphoenix", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.44, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is such a wonderful way to do what I love and share it with other: writing! I am so grateful I found this platform recently! Words can not describe how Steemit motivates me to keep on writing and living my dream! Thank you SO much dear Steemit Community! <3", - "category": "meta", - "children": 0, - "created": "2017-12-08T18:33:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-15T18:33:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171208t183328209z", - "post_id": 19830642, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-08T18:33:27", - "url": "/meta/@steemit/firstpost#@endorphoenix/re-steemit-firstpost-20171208t183328209z" - }, - "extraterrestrial/re-steemit-firstpost-20171217t200414912z": { - "active_votes": [ - { - "rshares": "87038116", - "voter": "kaiyum" - } - ], - "author": "extraterrestrial", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.15, - "beneficiaries": [], - "blacklists": [], - "body": "I LOVE STEEMIT! I'M TELLING EVERYONE I KNOW ON THIS PLANET ABOUT STEEMIT! I'M SPREADING THE WORD! TWO THUMBS UP! STEEM TO THE MOON! :)", - "category": "meta", - "children": 0, - "created": "2017-12-17T20:04:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 87038116, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-24T20:04:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171217t200414912z", - "post_id": 20811562, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-17T20:04:15", - "url": "/meta/@steemit/firstpost#@extraterrestrial/re-steemit-firstpost-20171217t200414912z" - }, - "f21steem/re-steemit-2019121t102528140z": { - "active_votes": [], - "author": "f21steem", - "author_payout_value": "0.000 HBD", - "author_reputation": 51.08, - "beneficiaries": [ - { - "account": "esteemapp", - "weight": 500 - } - ], - "blacklists": [], - "body": "Hi steemit, I am a newcomer to the steemit world, my experience is still minimal, supporting the blog f21steem to vote, thank you for visiting me.", - "category": "meta", - "children": 0, - "created": "2019-01-21T03:25:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "esteem/1.5.0", - "community": "esteem", - "format": "markdown+html", - "tags": [ - "esteem" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-01-28T03:25:33", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-2019121t102528140z", - "post_id": 69094391, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-01-21T03:25:33", - "url": "/meta/@steemit/firstpost#@f21steem/re-steemit-2019121t102528140z" - }, - "fajarsdq/re-steemit-firstpost-20170829t115541460z": { - "active_votes": [ - { - "rshares": "3112170368", - "voter": "fajarsdq" - } - ], - "author": "fajarsdq", - "author_payout_value": "0.000 HBD", - "author_reputation": 63.67, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit Woow ... it's amazing ... i'm really happy to be on the steemit ceiling a lot of new challenges to see.", - "category": "meta", - "children": 0, - "created": "2017-08-29T11:55:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3112170368, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-05T11:55:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170829t115541460z", - "post_id": 11372839, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-29T11:55:51", - "url": "/meta/@steemit/firstpost#@fajarsdq/re-steemit-firstpost-20170829t115541460z" - }, - "farhannaqvi7/re-layra-re-steemit-firstpost-20180620t121113715z": { - "active_votes": [ - { - "rshares": "315626247", - "voter": "layra" - } - ], - "author": "farhannaqvi7", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.21, - "beneficiaries": [], - "blacklists": [], - "body": "layra good post but you need to use at least 5 tags Contact me on Discord.com (Its communication plate form) Discord id : farhannaqvi7#1337 Get our upvote (100% worth is 0.050) and resteem your post to 5100+ steemit users and i will tell you how to earn 2 to 4 SBD in every day", - "category": "meta", - "children": 1, - "created": "2018-06-20T12:11:03", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 315626247, - "parent_author": "layra", - "parent_permlink": "re-steemit-firstpost-20180620t023240325z", - "payout": 0.0, - "payout_at": "2018-06-27T12:11:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-layra-re-steemit-firstpost-20180620t121113715z", - "post_id": 53670466, - "promoted": "0.000 HBD", - "replies": [ - "layra/re-farhannaqvi7-re-layra-re-steemit-firstpost-20180620t222752339z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T12:11:57", - "url": "/meta/@steemit/firstpost#@farhannaqvi7/re-layra-re-steemit-firstpost-20180620t121113715z" - }, - "faridrizkia/re-cyberspace-re-steemit-firstpost-20170826t105707517z": { - "active_votes": [], - "author": "faridrizkia", - "author_payout_value": "0.000 HBD", - "author_reputation": 37.74, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks. Likely Information.", - "category": "meta", - "children": 0, - "created": "2017-08-26T10:57:09", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "cyberspace", - "parent_permlink": "re-steemit-firstpost-20170719t102745698z", - "payout": 0.0, - "payout_at": "2017-09-02T10:57:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-cyberspace-re-steemit-firstpost-20170826t105707517z", - "post_id": 11111589, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-26T10:57:09", - "url": "/meta/@steemit/firstpost#@faridrizkia/re-cyberspace-re-steemit-firstpost-20170826t105707517z" - }, - "faridrizkia/re-steemit-firstpost-20170826t105509240z": { - "active_votes": [], - "author": "faridrizkia", - "author_payout_value": "0.000 HBD", - "author_reputation": 37.74, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks Master for the Power of \"BOOST\"", - "category": "meta", - "children": 0, - "created": "2017-08-26T10:55:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-02T10:55:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170826t105509240z", - "post_id": 11111465, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-26T10:55:06", - "url": "/meta/@steemit/firstpost#@faridrizkia/re-steemit-firstpost-20170826t105509240z" - }, - "fatboyjames/re-maninjapan1989-re-steemit-firstpost-20170801t133614690z": { - "active_votes": [ - { - "rshares": "13182026440", - "voter": "fatboyjames" - } - ], - "author": "fatboyjames", - "author_payout_value": "0.050 HBD", - "author_reputation": 54.69, - "beneficiaries": [], - "blacklists": [], - "body": "One day you'll get there haha", - "category": "meta", - "children": 0, - "created": "2017-08-01T13:36:12", - "curator_payout_value": "0.002 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 13182026440, - "parent_author": "maninjapan1989", - "parent_permlink": "re-steemit-firstpost-20170801t133239673z", - "payout": 0.052, - "payout_at": "2017-08-08T13:36:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-maninjapan1989-re-steemit-firstpost-20170801t133614690z", - "post_id": 8906248, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-01T13:36:12", - "url": "/meta/@steemit/firstpost#@fatboyjames/re-maninjapan1989-re-steemit-firstpost-20170801t133614690z" - }, - "fatimamortada/re-steemit-firstpost-20180201t012152343z": { - "active_votes": [ - { - "rshares": "610735644", - "voter": "fatimamortada" - } - ], - "author": "fatimamortada", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.02, - "beneficiaries": [], - "blacklists": [], - "body": "Now I can feel less frustrated for not making more than $2 in every post lol :D", - "category": "meta", - "children": 0, - "created": "2018-02-01T01:21:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 610735644, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-08T01:21:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180201t012152343z", - "post_id": 29559624, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-01T01:21:54", - "url": "/meta/@steemit/firstpost#@fatimamortada/re-steemit-firstpost-20180201t012152343z" - }, - "fbslo/re-kid4life-re-fbslo-re-steemit-firstpost-20180204t165833297z": { - "active_votes": [ - { - "rshares": "11183852888", - "voter": "kid4life" - } - ], - "author": "fbslo", - "author_payout_value": "0.073 HBD", - "author_reputation": 70.75, - "beneficiaries": [], - "blacklists": [], - "body": "Yes :)\nI'm on discord :)", - "category": "meta", - "children": 1, - "created": "2018-02-04T16:58:30", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 11183852888, - "parent_author": "kid4life", - "parent_permlink": "re-fbslo-re-steemit-firstpost-20180204t163322409z", - "payout": 0.073, - "payout_at": "2018-02-11T16:58:30", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-kid4life-re-fbslo-re-steemit-firstpost-20180204t165833297z", - "post_id": 30383054, - "promoted": "0.000 HBD", - "replies": [ - "kid4life/re-fbslo-re-kid4life-re-fbslo-re-steemit-firstpost-20180204t170516059z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-04T16:58:30", - "url": "/meta/@steemit/firstpost#@fbslo/re-kid4life-re-fbslo-re-steemit-firstpost-20180204t165833297z" - }, - "fbslo/re-steemit-firstpost-20180203t174523045z": { - "active_votes": [ - { - "rshares": "168139784", - "voter": "social" - }, - { - "rshares": "18338893557", - "voter": "kid4life" - }, - { - "rshares": "160444802141", - "voter": "fbslo" - }, - { - "rshares": "9930773750", - "voter": "svashta" - }, - { - "rshares": "18448576333", - "voter": "direwolf" - } - ], - "author": "fbslo", - "author_payout_value": "1.080 HBD", - "author_reputation": 70.75, - "beneficiaries": [], - "blacklists": [], - "body": "STEEM ON!", - "category": "meta", - "children": 3, - "created": "2018-02-03T17:45:21", - "curator_payout_value": "0.312 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 207331185565, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 1.392, - "payout_at": "2018-02-10T17:45:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180203t174523045z", - "post_id": 30175898, - "promoted": "0.000 HBD", - "replies": [ - "kid4life/re-fbslo-re-steemit-firstpost-20180204t163322409z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 5 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-03T17:45:21", - "url": "/meta/@steemit/firstpost#@fbslo/re-steemit-firstpost-20180203t174523045z" - }, - "flandude/re-steemit-firstpost-20160811t225325571z": { - "active_votes": [ - { - "rshares": "47738566", - "voter": "alktoni" - }, - { - "rshares": "555987168", - "voter": "funkywanderer" - }, - { - "rshares": "45336058", - "voter": "andressilvera" - }, - { - "rshares": "50997147", - "voter": "david.prochnow" - } - ], - "author": "flandude", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.93, - "beneficiaries": [], - "blacklists": [], - "body": "http://i.imgsafe.org/d01598860e.jpg", - "category": "meta", - "children": 0, - "created": "2016-08-11T22:53:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "image": [ - "http://i.imgsafe.org/d01598860e.jpg" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 700058939, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160811t225325571z", - "post_id": 563725, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-11T22:53:27", - "url": "/meta/@steemit/firstpost#@flandude/re-steemit-firstpost-20160811t225325571z" - }, - "frag/re-sornprar-re-steemit-firstpost-20170704t235218733z": { - "active_votes": [ - { - "rshares": "0", - "voter": "sornprar" - } - ], - "author": "frag", - "author_payout_value": "0.000 HBD", - "author_reputation": 5.53, - "beneficiaries": [], - "blacklists": [], - "body": "liked and followed :)", - "category": "meta", - "children": 1, - "created": "2017-07-04T20:49:12", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "sornprar", - "parent_permlink": "re-steemit-firstpost-20170704t204851481z", - "payout": 0.0, - "payout_at": "2017-07-11T20:49:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-sornprar-re-steemit-firstpost-20170704t235218733z", - "post_id": 6160921, - "promoted": "0.000 HBD", - "replies": [ - "sornprar/re-frag-re-sornprar-re-steemit-firstpost-20170704t211016543z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-04T20:49:12", - "url": "/meta/@steemit/firstpost#@frag/re-sornprar-re-steemit-firstpost-20170704t235218733z" - }, - "future24/re-steemit-firstpost-20160818t030224104z": { - "active_votes": [ - { - "rshares": "53122308", - "voter": "mandarin99" - }, - { - "rshares": "0", - "voter": "urmokas" - }, - { - "rshares": "0", - "voter": "setio" - } - ], - "author": "future24", - "author_payout_value": "0.000 HBD", - "author_reputation": 75.29, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you!", - "category": "meta", - "children": 0, - "created": "2016-08-18T03:02:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 53122308, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160818t030224104z", - "post_id": 650694, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-18T03:02:24", - "url": "/meta/@steemit/firstpost#@future24/re-steemit-firstpost-20160818t030224104z" - }, - "gayanw/re-steemit-firstpost-20171121t172326950z": { - "active_votes": [], - "author": "gayanw", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Not sure if this is the right place to ask. I was just wondering how some people got a huge following without making a single post or a comment.", - "category": "meta", - "children": 0, - "created": "2017-11-21T17:23:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-28T17:23:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171121t172326950z", - "post_id": 18338481, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-21T17:23:27", - "url": "/meta/@steemit/firstpost#@gayanw/re-steemit-firstpost-20171121t172326950z" - }, - "gazur/re-steemit-firstpost-20171024t191436407z": { - "active_votes": [ - { - "rshares": "47240311040", - "voter": "gazur" - } - ], - "author": "gazur", - "author_payout_value": "0.105 HBD", - "author_reputation": 54.53, - "beneficiaries": [], - "blacklists": [], - "body": "THIS IS AWESOME!! C:", - "category": "meta", - "children": 0, - "created": "2017-10-24T19:13:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 47240311040, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.105, - "payout_at": "2017-10-31T19:13:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171024t191436407z", - "post_id": 16012256, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-24T19:13:48", - "url": "/meta/@steemit/firstpost#@gazur/re-steemit-firstpost-20171024t191436407z" - }, - "gazur/re-steemit-firstpost-20171024t191550079z": { - "active_votes": [ - { - "rshares": "46117615705", - "voter": "gazur" - } - ], - "author": "gazur", - "author_payout_value": "0.077 HBD", - "author_reputation": 54.53, - "beneficiaries": [], - "blacklists": [], - "body": "THIS IS AWESOME!! C:", - "category": "meta", - "children": 0, - "created": "2017-10-24T19:15:00", - "curator_payout_value": "0.025 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 46117615705, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.102, - "payout_at": "2017-10-31T19:15:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171024t191550079z", - "post_id": 16012314, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-24T19:15:00", - "url": "/meta/@steemit/firstpost#@gazur/re-steemit-firstpost-20171024t191550079z" - }, - "geek4geek/re-steemit-firstpost-20170726t165631900z": { - "active_votes": [ - { - "rshares": "154084996", - "voter": "cultura.bitcoin" - } - ], - "author": "geek4geek", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.69, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks for creating this platform.", - "category": "meta", - "children": 0, - "created": "2017-07-26T16:56:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 154084996, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-02T16:56:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170726t165631900z", - "post_id": 8371489, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-26T16:56:39", - "url": "/meta/@steemit/firstpost#@geek4geek/re-steemit-firstpost-20170726t165631900z" - }, - "gekko/re-steemit-firstpost-20160721t223937736z": { - "active_votes": [ - { - "rshares": "425903066", - "voter": "gekko" - }, - { - "rshares": "689526018", - "voter": "patrick-g" - }, - { - "rshares": "145914460", - "voter": "allmonitors" - } - ], - "author": "gekko", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.66, - "beneficiaries": [], - "blacklists": [], - "body": "I leave my mark here in mythical post 8]", - "category": "meta", - "children": 0, - "created": "2016-07-21T22:39:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1261343544, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160721t223937736z", - "post_id": 189029, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-21T22:39:39", - "url": "/meta/@steemit/firstpost#@gekko/re-steemit-firstpost-20160721t223937736z" - }, - "gilma/re-steemit-firstpost-20170918t002456528z": { - "active_votes": [], - "author": "gilma", - "author_payout_value": "0.000 HBD", - "author_reputation": 63.2, - "beneficiaries": [], - "blacklists": [], - "body": "I Love Steemit!", - "category": "meta", - "children": 0, - "created": "2017-09-18T00:24:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-25T00:24:36", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170918t002456528z", - "post_id": 13097414, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-18T00:24:36", - "url": "/meta/@steemit/firstpost#@gilma/re-steemit-firstpost-20170918t002456528z" - }, - "gilnambatac/re-steemit-firstpost-20180106t162335199z": { - "active_votes": [ - { - "rshares": "467293600", - "voter": "gilnambatac" - } - ], - "author": "gilnambatac", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.28, - "beneficiaries": [], - "blacklists": [], - "body": "New on steemit! I hope to share more works of mine.", - "category": "meta", - "children": 0, - "created": "2018-01-06T16:23:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 467293600, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-13T16:23:36", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180106t162335199z", - "post_id": 23984132, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-06T16:23:36", - "url": "/meta/@steemit/firstpost#@gilnambatac/re-steemit-firstpost-20180106t162335199z" - }, - "gochilambert/re-steemit-firstpost-20180709t193214537z": { - "active_votes": [], - "author": "gochilambert", - "author_payout_value": "0.000 HBD", - "author_reputation": 6.56, - "beneficiaries": [], - "blacklists": [], - "body": "VYo!\nSo am here to talk about @steemcamp that recently occurred, one question I need to ask is why do u set up a competition when you already know the winner, that's why they keep saying Nigerians are frauds @michealcj you just destroy a good thing u started.\n\nFirst of all am sure @steemit sponsored the program called @steemcamp and you had to tell all your contestants to sell tickets and pay 20thousand naira to your account for the finale,and for the semi finals they paid 3thousand naira, how heartless you can be not knowing that some people are coming all the way from abj,port harcourt, owerri,lagos,enugu etc i thought being sponsored was so they wouldn't pay anything else but then you made them sweat to pay.\n\nThen to the @steemcamp competition what business does the organizer have with the contestant, why do u keep having meetings with @princessVanessa who came second and was also begging @steemboard for assistance when its obvious she stays in that same city, and cypher,why did u endager youths life when you already know who the winner would be? You should have just called them and giving them the money than waste their time,resources and starve them,right now you guys abandoned them to be beaten by mosquitoes while y'all chilling.\n\nThe contestant who won slept with @michealcj and his organizers, we are tryna fight corruption in Nigeria but people like you makes it difficult. The rules where for everyone to come on the said date which was 1 July 2018, and behavior and all what not will be judged but some people came on the 3rd and you allowed them come in, what manner of competition is that.\n\nI don't mind if I get flagged here but I will fight for the truth no matter what. if you don't have an idea on how to put up a show ask questions than behave so low showing us you can do anything for money. Am calling names cos am not scared to stand out for what is right. I just pray other's can come to this page and speak their minds,so @michealcj will stop using this platform to extort money from @steemboard.", - "category": "meta", - "children": 0, - "created": "2018-07-09T19:32:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemcamp", - "michealcj", - "steemit", - "princessvanessa", - "steemboard" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-07-16T19:32:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 0, - "permlink": "re-steemit-firstpost-20180709t193214537z", - "post_id": 56000320, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-09T19:32:27", - "url": "/meta/@steemit/firstpost#@gochilambert/re-steemit-firstpost-20180709t193214537z" - }, - "gomain/re-stackin-re-steemit-firstpost-20180107t195657460z": { - "active_votes": [ - { - "rshares": "2604682507", - "voter": "gomain" - }, - { - "rshares": "513107500", - "voter": "themeparks" - }, - { - "rshares": "0", - "voter": "asherunderwood" - } - ], - "author": "gomain", - "author_payout_value": "0.027 HBD", - "author_reputation": 36.45, - "beneficiaries": [], - "blacklists": [], - "body": "It really is a valuable platform", - "category": "meta", - "children": 2, - "created": "2018-01-07T19:56:54", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3117790007, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.027, - "payout_at": "2018-01-14T19:56:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180107t195657460z", - "post_id": 24217459, - "promoted": "0.000 HBD", - "replies": [ - "mominsdt/re-gomain-re-stackin-re-steemit-firstpost-20180204t151047773z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-07T19:56:54", - "url": "/meta/@steemit/firstpost#@gomain/re-stackin-re-steemit-firstpost-20180107t195657460z" - }, - "gomain/re-steemit-firstpost-20180107t195854059z": { - "active_votes": [ - { - "rshares": "2537028416", - "voter": "gomain" - }, - { - "rshares": "1137449574", - "voter": "themeparks" - } - ], - "author": "gomain", - "author_payout_value": "0.032 HBD", - "author_reputation": 36.45, - "beneficiaries": [], - "blacklists": [], - "body": "Does anyone think that Facebook might be in the running to purchase (or perhaps copy) Steemit? With Mark Zuckerberg's recent comments about decentralization I just wonder where we're headed.", - "category": "meta", - "children": 0, - "created": "2018-01-07T19:58:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3674477990, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.032, - "payout_at": "2018-01-14T19:58:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180107t195854059z", - "post_id": 24217749, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-07T19:58:51", - "url": "/meta/@steemit/firstpost#@gomain/re-steemit-firstpost-20180107t195854059z" - }, - "gonewithwind/re-gonewithwind-re-steemit-firstpost-20180902t204237525z": { - "active_votes": [], - "author": "gonewithwind", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.71, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit\nOh my god i just checked your wallet...\nSorry, \nyes i think you are the real steemit.com", - "category": "meta", - "children": 0, - "created": "2018-09-02T20:42:39", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gonewithwind", - "parent_permlink": "re-steemit-firstpost-20180902t202911783z", - "payout": 0.0, - "payout_at": "2018-09-09T20:42:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gonewithwind-re-steemit-firstpost-20180902t204237525z", - "post_id": 61406211, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-09-02T20:42:39", - "url": "/meta/@steemit/firstpost#@gonewithwind/re-gonewithwind-re-steemit-firstpost-20180902t204237525z" - }, - "gonewithwind/re-steemit-firstpost-20180902t202911783z": { - "active_votes": [], - "author": "gonewithwind", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.71, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit\nAre you the real steamit?\nIf you are , concentrate on posts making...i think you are are very lazy. \ud83d\ude04", - "category": "meta", - "children": 1, - "created": "2018-09-02T20:29:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-09-09T20:29:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180902t202911783z", - "post_id": 61405564, - "promoted": "0.000 HBD", - "replies": [ - "gonewithwind/re-gonewithwind-re-steemit-firstpost-20180902t204237525z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-09-02T20:29:15", - "url": "/meta/@steemit/firstpost#@gonewithwind/re-steemit-firstpost-20180902t202911783z" - }, - "gopher/re-admin-firstpost-20160718t195306992z": { - "active_votes": [ - { - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "rshares": "111000395", - "voter": "bustillos" - } - ], - "author": "gopher", - "author_payout_value": "0.000 HBD", - "author_reputation": 30.29, - "beneficiaries": [], - "blacklists": [], - "body": "Are you admin in steem? If you have been hacked, who can help you?", - "category": "meta", - "children": 0, - "created": "2016-07-18T19:53:12", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 853566876, - "parent_author": "admin", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-admin-firstpost-20160718t195306992z", - "post_id": 125730, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-18T19:53:12", - "url": "/meta/@steemit/firstpost#@gopher/re-admin-firstpost-20160718t195306992z" - }, - "gopher/re-steemit-firstpost-20160718t195806340z": { - "active_votes": [], - "author": "gopher", - "author_payout_value": "0.000 HBD", - "author_reputation": 30.29, - "beneficiaries": [], - "blacklists": [], - "body": "http://steem.com/@bittrex/transfers how this user can have these tranfers without any activity?", - "category": "meta", - "children": 1, - "created": "2016-07-18T19:58:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "links": [ - "http://steem.com/@bittrex/transfers" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160718t195806340z", - "post_id": 125794, - "promoted": "0.000 HBD", - "replies": [ - "steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-18T19:58:09", - "url": "/meta/@steemit/firstpost#@gopher/re-steemit-firstpost-20160718t195806340z" - }, - "gratefulayn/re-steemit-firstpost-20180114t142356015z": { - "active_votes": [ - { - "rshares": "34841514373", - "voter": "purepinay" - }, - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "gratefulayn", - "author_payout_value": "0.243 HBD", - "author_reputation": 62.27, - "beneficiaries": [], - "blacklists": [], - "body": "I am grateful I found steem and wow you're lucky to have username as the platform @steemit", - "category": "meta", - "children": 0, - "created": "2018-01-14T14:24:03", - "curator_payout_value": "0.076 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 34841514373, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.319, - "payout_at": "2018-01-21T14:24:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180114t142356015z", - "post_id": 25630741, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-14T14:24:03", - "url": "/meta/@steemit/firstpost#@gratefulayn/re-steemit-firstpost-20180114t142356015z" - }, - "greenrun/re-steemit-firstpost-20170821t081222039z": { - "active_votes": [ - { - "rshares": "32584724400", - "voter": "mammasitta" - }, - { - "rshares": "1921826957", - "voter": "greenrun" - } - ], - "author": "greenrun", - "author_payout_value": "0.113 HBD", - "author_reputation": 66.3, - "beneficiaries": [], - "blacklists": [], - "body": "It's good to comment on the first post on steemit even after **508 days!** :) \nThis is history in the making.", - "category": "meta", - "children": 0, - "created": "2017-08-21T08:12:24", - "curator_payout_value": "0.025 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 34506551357, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.138, - "payout_at": "2017-08-28T08:12:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170821t081222039z", - "post_id": 10664178, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-21T08:12:24", - "url": "/meta/@steemit/firstpost#@greenrun/re-steemit-firstpost-20170821t081222039z" - }, - "hafizul/re-steemit-firstpost-20171222t084035853z": { - "active_votes": [ - { - "rshares": "406176369", - "voter": "kigea" - } - ], - "author": "hafizul", - "author_payout_value": "0.000 HBD", - "author_reputation": 65.28, - "beneficiaries": [], - "blacklists": [], - "body": "herr i am now :) @steemit \nAwesome Platform be The Best forever!", - "category": "meta", - "children": 0, - "created": "2017-12-22T08:40:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 406176369, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-29T08:40:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171222t084035853z", - "post_id": 21455994, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-22T08:40:39", - "url": "/meta/@steemit/firstpost#@hafizul/re-steemit-firstpost-20171222t084035853z" - }, - "hatu/re-steemit-firstpost-20180411t152605635z": { - "active_votes": [], - "author": "hatu", - "author_payout_value": "0.000 HBD", - "author_reputation": 76.89, - "beneficiaries": [], - "blacklists": [], - "body": "Hi, I just followed and upvoted you :-)\nFollow back and we can help each other succeed! @hatu", - "category": "meta", - "children": 0, - "created": "2018-04-11T20:56:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "hatu" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-18T20:56:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180411t152605635z", - "post_id": 43143434, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-11T20:56:42", - "url": "/meta/@steemit/firstpost#@hatu/re-steemit-firstpost-20180411t152605635z" - }, - "hazem91/re-steemit-firstpost-20180613t160430735z": { - "active_votes": [ - { - "rshares": "29106123200", - "voter": "topkpop" - }, - { - "rshares": "6036882453", - "voter": "thealliance" - }, - { - "rshares": "1378542077", - "voter": "dbooster" - }, - { - "rshares": "12787028983", - "voter": "steembasicincome" - }, - { - "rshares": "1302014079", - "voter": "isleofwrite" - }, - { - "rshares": "554096630", - "voter": "brismar" - } - ], - "author": "hazem91", - "author_payout_value": "0.109 HBD", - "author_reputation": 63.56, - "beneficiaries": [], - "blacklists": [], - "body": "hehe\nHow did I miss this one :D", - "category": "meta", - "children": 0, - "created": "2018-06-13T16:03:00", - "curator_payout_value": "0.021 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 51164687422, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.13, - "payout_at": "2018-06-20T16:03:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180613t160430735z", - "post_id": 52883087, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 6 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-13T16:03:00", - "url": "/meta/@steemit/firstpost#@hazem91/re-steemit-firstpost-20180613t160430735z" - }, - "healthyrecipe/re-steemit-firstpost-20170812t211959351z": { - "active_votes": [ - { - "rshares": "62582057731", - "voter": "healthyrecipe" - }, - { - "rshares": "63637495", - "voter": "drt" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "healthyrecipe", - "author_payout_value": "0.202 HBD", - "author_reputation": 58.11, - "beneficiaries": [], - "blacklists": [], - "body": "Was this the first post on the platform? So cool :)", - "category": "meta", - "children": 0, - "created": "2017-08-12T21:19:57", - "curator_payout_value": "0.004 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 62645695226, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.206, - "payout_at": "2017-08-19T21:19:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170812t211959351z", - "post_id": 9978212, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-12T21:19:57", - "url": "/meta/@steemit/firstpost#@healthyrecipe/re-steemit-firstpost-20170812t211959351z" - }, - "henildedania/re-steemit-firstpost-20171031t122307919z": { - "active_votes": [], - "author": "henildedania", - "author_payout_value": "0.000 HBD", - "author_reputation": 5.65, - "beneficiaries": [], - "blacklists": [], - "body": "its really great that i joined steemit", - "category": "meta", - "children": 0, - "created": "2017-10-31T12:22:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-07T12:22:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171031t122307919z", - "post_id": 16529164, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-31T12:22:48", - "url": "/meta/@steemit/firstpost#@henildedania/re-steemit-firstpost-20171031t122307919z" - }, - "hgmsilvergold/re-steemit-firstpost-20170607t132619458z": { - "active_votes": [ - { - "rshares": "3185362344", - "voter": "wynandroberts" - } - ], - "author": "hgmsilvergold", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.12, - "beneficiaries": [], - "blacklists": [], - "body": "let's see how this steemit experiment goes.", - "category": "meta", - "children": 0, - "created": "2017-06-07T13:26:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3185362344, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-14T13:26:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170607t132619458z", - "post_id": 3533896, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-07T13:26:21", - "url": "/meta/@steemit/firstpost#@hgmsilvergold/re-steemit-firstpost-20170607t132619458z" - }, - "hothelp1by1/re-steemit-firstpost-20170602t024007551z": { - "active_votes": [], - "author": "hothelp1by1", - "author_payout_value": "0.000 HBD", - "author_reputation": 46.0, - "beneficiaries": [], - "blacklists": [], - "body": "Stopping in to say Following, Supporting and glad to be a part.", - "category": "meta", - "children": 0, - "created": "2017-06-02T02:40:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-09T02:40:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170602t024007551z", - "post_id": 3287709, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-02T02:40:09", - "url": "/meta/@steemit/firstpost#@hothelp1by1/re-steemit-firstpost-20170602t024007551z" - }, - "hunly/re-steemit-firstpost-20180113t140005408z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "hunly", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Nice", - "category": "meta", - "children": 0, - "created": "2018-01-13T14:00:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-20T14:00:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180113t140005408z", - "post_id": 25428227, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-13T14:00:06", - "url": "/meta/@steemit/firstpost#@hunly/re-steemit-firstpost-20180113t140005408z" - }, - "hussnain/re-stackin-re-steemit-firstpost-20171218t225148759z": { - "active_votes": [], - "author": "hussnain", - "author_payout_value": "0.000 HBD", - "author_reputation": 0.25, - "beneficiaries": [], - "blacklists": [ - "reputation-0" - ], - "body": "obviously awesome experience", - "category": "meta", - "children": 2, - "created": "2017-12-18T22:51:51", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2017-12-25T22:51:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20171218t225148759z", - "post_id": 20958201, - "promoted": "0.000 HBD", - "replies": [ - "stardivine/re-hussnain-re-stackin-re-steemit-firstpost-20171231t165419611z", - "mominsdt/re-hussnain-re-stackin-re-steemit-firstpost-20180204t151415346z" - ], - "stats": { - "flag_weight": 0.0, - "gray": true, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-18T22:51:51", - "url": "/meta/@steemit/firstpost#@hussnain/re-stackin-re-steemit-firstpost-20171218t225148759z" - }, - "ilicoin/re-steemit-firstpost-20170709t171749281z": { - "active_votes": [ - { - "rshares": "499093965", - "voter": "ilicoin" - } - ], - "author": "ilicoin", - "author_payout_value": "0.000 HBD", - "author_reputation": 33.54, - "beneficiaries": [], - "blacklists": [], - "body": "\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u043a\u0438\u0440\u0438\u043b\u043b\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0442\u0435\u0433\u043e\u0432!", - "category": "meta", - "children": 0, - "created": "2017-07-09T17:17:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 499093965, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-16T17:17:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170709t171749281z", - "post_id": 6663890, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-09T17:17:48", - "url": "/meta/@steemit/firstpost#@ilicoin/re-steemit-firstpost-20170709t171749281z" - }, - "imarealboy777/re-steemit-firstpost-20160801t232001768z": { - "active_votes": [ - { - "rshares": "2725768", - "voter": "cire81" - }, - { - "rshares": "154885141", - "voter": "lorddominik007" - } - ], - "author": "imarealboy777", - "author_payout_value": "0.000 HBD", - "author_reputation": -2.57, - "beneficiaries": [], - "blacklists": [], - "body": "Vesting , vesting 1 2 3 .", - "category": "meta", - "children": 0, - "created": "2016-08-01T23:20:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 157610909, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160801t232001768z", - "post_id": 401002, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": true, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-01T23:20:36", - "url": "/meta/@steemit/firstpost#@imarealboy777/re-steemit-firstpost-20160801t232001768z" - }, - "imchandansah/re-steemit-firstpost-20180122t112919676z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - }, - { - "rshares": "488506864", - "voter": "imchandansah" - } - ], - "author": "imchandansah", - "author_payout_value": "0.000 HBD", - "author_reputation": 51.79, - "beneficiaries": [], - "blacklists": [], - "body": "I am trying to add value to this platform but unable to do it properly because of low steem power. I can help steemit grow in my locality if I get enough support from steemit community. Help me @Steemit @Freedom @Steem @Dan @Ned @blocktrades @val-a @mottler @abit @databass @hendrikdegrote @jamesc @ben @michael-b @val-b @ranchorelaxo @proskynneo @thejohalfiles @smooth @xeldal @roadscape @created @arhag @jamesc1 @michael-a @sponge-bob", - "category": "meta", - "children": 0, - "created": "2018-01-22T11:32:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "freedom", - "steem", - "dan", - "ned", - "blocktrades", - "val-a", - "mottler", - "abit", - "databass", - "hendrikdegrote", - "jamesc", - "ben", - "michael-b", - "val-b", - "ranchorelaxo", - "proskynneo", - "thejohalfiles", - "smooth", - "xeldal", - "roadscape", - "created", - "arhag", - "jamesc1", - "michael-a", - "sponge-bob" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 488506864, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-29T11:32:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180122t112919676z", - "post_id": 27259944, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-22T11:32:48", - "url": "/meta/@steemit/firstpost#@imchandansah/re-steemit-firstpost-20180122t112919676z" - }, - "improv/re-paulatreides-re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t084809927z": { - "active_votes": [ - { - "rshares": "915118402", - "voter": "paul.atreides" - } - ], - "author": "improv", - "author_payout_value": "0.000 HBD", - "author_reputation": 67.65, - "beneficiaries": [], - "blacklists": [], - "body": "For purely philanthropic reasons, right?", - "category": "meta", - "children": 0, - "created": "2018-01-09T08:49:51", - "curator_payout_value": "0.000 HBD", - "depth": 5, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 915118402, - "parent_author": "paul.atreides", - "parent_permlink": "re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t061937055z", - "payout": 0.0, - "payout_at": "2018-01-16T08:49:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-paulatreides-re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t084809927z", - "post_id": 24537662, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-09T08:49:51", - "url": "/meta/@steemit/firstpost#@improv/re-paulatreides-re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t084809927z" - }, - "improv/re-paulatreides-re-improv-re-steemit-firstpost-20180109t001947344z": { - "active_votes": [ - { - "rshares": "2983225216", - "voter": "paul.atreides" - } - ], - "author": "improv", - "author_payout_value": "0.022 HBD", - "author_reputation": 67.65, - "beneficiaries": [], - "blacklists": [], - "body": "And you found my finding it. That is especially incredible!\n\nBut also, what is this account? So much money in it. Is that steem just going to sit there? Does it get used to make more accounts? \n\nanywhoodles. \n\nMy wish is for Steemit as a platform to solve the housing crisis.", - "category": "meta", - "children": 2, - "created": "2018-01-09T00:19:48", - "curator_payout_value": "0.005 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 2983225216, - "parent_author": "paul.atreides", - "parent_permlink": "re-improv-re-steemit-firstpost-20180108t233620916z", - "payout": 0.027, - "payout_at": "2018-01-16T00:19:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-paulatreides-re-improv-re-steemit-firstpost-20180109t001947344z", - "post_id": 24465260, - "promoted": "0.000 HBD", - "replies": [ - "paul.atreides/re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t061937055z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-09T00:19:48", - "url": "/meta/@steemit/firstpost#@improv/re-paulatreides-re-improv-re-steemit-firstpost-20180109t001947344z" - }, - "improv/re-steemit-firstpost-20170720t073029499z": { - "active_votes": [], - "author": "improv", - "author_payout_value": "0.000 HBD", - "author_reputation": 67.65, - "beneficiaries": [], - "blacklists": [], - "body": "meep", - "category": "meta", - "children": 0, - "created": "2017-07-20T07:30:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-27T07:30:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170720t073029499z", - "post_id": 7692220, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-20T07:30:27", - "url": "/meta/@steemit/firstpost#@improv/re-steemit-firstpost-20170720t073029499z" - }, - "improv/re-steemit-firstpost-20180108t213229597z": { - "active_votes": [ - { - "rshares": "3024091315", - "voter": "paul.atreides" - } - ], - "author": "improv", - "author_payout_value": "0.022 HBD", - "author_reputation": 67.65, - "beneficiaries": [], - "blacklists": [], - "body": "...what is this account? I see that it holds 70 million steem, and apparently gets sent steem from poloniex regularly... I can't figure out for sure what it's FOR, though.", - "category": "meta", - "children": 4, - "created": "2018-01-08T21:32:30", - "curator_payout_value": "0.005 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3024091315, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.027, - "payout_at": "2018-01-15T21:32:30", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180108t213229597z", - "post_id": 24440267, - "promoted": "0.000 HBD", - "replies": [ - "paul.atreides/re-improv-re-steemit-firstpost-20180108t233620916z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-08T21:32:30", - "url": "/meta/@steemit/firstpost#@improv/re-steemit-firstpost-20180108t213229597z" - }, - "intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z": { - "active_votes": [ - { - "rshares": "23648397", - "voter": "sillyfilthy" - } - ], - "author": "intelliguy", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.15, - "beneficiaries": [], - "blacklists": [], - "body": "I thought we were talking about @ned and not @steemit", - "category": "meta", - "children": 1, - "created": "2016-07-21T05:33:57", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ], - "users": [ - "ned", - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 23648397, - "parent_author": "kewpiedoll", - "parent_permlink": "re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z", - "post_id": 173797, - "promoted": "0.000 HBD", - "replies": [ - "kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-21T05:33:57", - "url": "/meta/@steemit/firstpost#@intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z" - }, - "intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z": { - "active_votes": [], - "author": "intelliguy", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.15, - "beneficiaries": [], - "blacklists": [], - "body": "probably because it's one sentence. Doesn't add a lot of good, quality content? I don't know.", - "category": "meta", - "children": 3, - "created": "2016-07-20T21:58:51", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "kewpiedoll", - "parent_permlink": "re-steemit-firstpost-20160720t210201326z", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-kewpiedoll-re-steemit-firstpost-20160720t215823622z", - "post_id": 167552, - "promoted": "0.000 HBD", - "replies": [ - "kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-20T21:58:51", - "url": "/meta/@steemit/firstpost#@intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z" - }, - "inuk/re-tarunmewara-re-steemit-firstpost-20170624t123825509z": { - "active_votes": [ - { - "rshares": "0", - "voter": "inuk" - } - ], - "author": "inuk", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.23, - "beneficiaries": [], - "blacklists": [], - "body": "Welcome to steemit :D", - "category": "meta", - "children": 0, - "created": "2017-06-24T12:38:30", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "tarunmewara", - "parent_permlink": "re-steemit-firstpost-20170624t114746528z", - "payout": 0.0, - "payout_at": "2017-07-01T12:38:30", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-tarunmewara-re-steemit-firstpost-20170624t123825509z", - "post_id": 4911146, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-24T12:38:30", - "url": "/meta/@steemit/firstpost#@inuk/re-tarunmewara-re-steemit-firstpost-20170624t123825509z" - }, - "iqra.naz/re-steemit-firstpost-20180525t192106026z": { - "active_votes": [ - { - "rshares": "68759787", - "voter": "liquifire" - } - ], - "author": "iqra.naz", - "author_payout_value": "0.000 HBD", - "author_reputation": 29.38, - "beneficiaries": [], - "blacklists": [], - "body": "steem is very help ful page", - "category": "meta", - "children": 0, - "created": "2018-05-25T19:21:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 68759787, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-06-01T19:21:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180525t192106026z", - "post_id": 50285910, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-25T19:21:12", - "url": "/meta/@steemit/firstpost#@iqra.naz/re-steemit-firstpost-20180525t192106026z" - }, - "irak/re-steemit-firstpost-20181217t175620092z": { - "active_votes": [ - { - "rshares": "0", - "voter": "raise-me-up" - }, - { - "rshares": "2714148402", - "voter": "devsup" - }, - { - "rshares": "1373188413", - "voter": "frosh2018" - } - ], - "author": "irak", - "author_payout_value": "0.000 HBD", - "author_reputation": 63.12, - "beneficiaries": [], - "blacklists": [], - "body": "Who owned this id?", - "category": "meta", - "children": 0, - "created": "2018-12-17T17:56:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 4087336815, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-12-24T17:56:45", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20181217t175620092z", - "post_id": 67541902, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-12-17T17:56:45", - "url": "/meta/@steemit/firstpost#@irak/re-steemit-firstpost-20181217t175620092z" - }, - "isteemithard/re-steemit-firstpost-20171012t053244218z": { - "active_votes": [], - "author": "isteemithard", - "author_payout_value": "0.000 HBD", - "author_reputation": 60.08, - "beneficiaries": [], - "blacklists": [], - "body": "I love going hard on steemit its that hard for me.", - "category": "meta", - "children": 0, - "created": "2017-10-12T05:32:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-19T05:32:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171012t053244218z", - "post_id": 15112428, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-12T05:32:42", - "url": "/meta/@steemit/firstpost#@isteemithard/re-steemit-firstpost-20171012t053244218z" - }, - "isteemithard/re-steemit-firstpost-20171012t053312152z": { - "active_votes": [ - { - "rshares": "220509685", - "voter": "talukder" - } - ], - "author": "isteemithard", - "author_payout_value": "0.000 HBD", - "author_reputation": 60.08, - "beneficiaries": [], - "blacklists": [], - "body": "I love going hard on steemit its my hard", - "category": "meta", - "children": 1, - "created": "2017-10-12T05:33:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 220509685, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-19T05:33:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171012t053312152z", - "post_id": 15112463, - "promoted": "0.000 HBD", - "replies": [ - "talukder/re-isteemithard-re-steemit-firstpost-20171012t053418526z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-12T05:33:12", - "url": "/meta/@steemit/firstpost#@isteemithard/re-steemit-firstpost-20171012t053312152z" - }, - "isteemithard/re-steemit-firstpost-20171012t053404002z": { - "active_votes": [ - { - "rshares": "280711050", - "voter": "nazarul" - }, - { - "rshares": "69637529", - "voter": "saifursujan" - }, - { - "rshares": "620911554", - "voter": "sagorahmed" - } - ], - "author": "isteemithard", - "author_payout_value": "0.000 HBD", - "author_reputation": 60.08, - "beneficiaries": [], - "blacklists": [], - "body": "![](https://media1.giphy.com/media/1ZBnLJa02mPfy/giphy-downsized.gif)", - "category": "meta", - "children": 0, - "created": "2017-10-12T05:34:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://media1.giphy.com/media/1ZBnLJa02mPfy/giphy-downsized.gif" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 971260133, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-19T05:34:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171012t053404002z", - "post_id": 15112509, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-12T05:34:03", - "url": "/meta/@steemit/firstpost#@isteemithard/re-steemit-firstpost-20171012t053404002z" - }, - "jac4b/re-steemit-firstpost-20171020t194412969z": { - "active_votes": [], - "author": "jac4b", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.0, - "beneficiaries": [], - "blacklists": [], - "body": "Love it!! This is all such a great idea and execution.", - "category": "meta", - "children": 0, - "created": "2017-10-20T19:44:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-27T19:44:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171020t194412969z", - "post_id": 15731552, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-20T19:44:15", - "url": "/meta/@steemit/firstpost#@jac4b/re-steemit-firstpost-20171020t194412969z" - }, - "jack8831/re-steemit-firstpost-20160824t093007335z": { - "active_votes": [ - { - "rshares": "0", - "voter": "panela" - }, - { - "rshares": "0", - "voter": "urmokas" - } - ], - "author": "jack8831", - "author_payout_value": "0.000 HBD", - "author_reputation": 72.34, - "beneficiaries": [], - "blacklists": [], - "body": "You support fantastic system now!", - "category": "meta", - "children": 0, - "created": "2016-08-24T09:30:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160824t093007335z", - "post_id": 729186, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-24T09:30:03", - "url": "/meta/@steemit/firstpost#@jack8831/re-steemit-firstpost-20160824t093007335z" - }, - "jackeown/re-steemit-firstpost-20170620t234314915z": { - "active_votes": [], - "author": "jackeown", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.94, - "beneficiaries": [], - "blacklists": [], - "body": "Hey...this is a humongous wallet...one upvote from this account is worth thousands of dollars according to this: http://www.steemdollar.com/dollar_per_vote.php?name=steemit", - "category": "meta", - "children": 0, - "created": "2017-06-20T23:43:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "http://www.steemdollar.com/dollar_per_vote.php?name=steemit" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-27T23:43:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170620t234314915z", - "post_id": 4492514, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-20T23:43:15", - "url": "/meta/@steemit/firstpost#@jackeown/re-steemit-firstpost-20170620t234314915z" - }, - "jackolanternbob/re-boomshikha-re-stackin-re-steemit-firstpost-20180116t031304296z": { - "active_votes": [ - { - "rshares": "3100351601", - "voter": "jackolanternbob" - }, - { - "rshares": "0", - "voter": "wralkat-studios" - }, - { - "rshares": "0", - "voter": "asherunderwood" - }, - { - "rshares": "0", - "voter": "boondoge" - } - ], - "author": "jackolanternbob", - "author_payout_value": "0.023 HBD", - "author_reputation": 47.69, - "beneficiaries": [], - "blacklists": [], - "body": "WRALKat Studios is a YouTube channel", - "category": "meta", - "children": 3, - "created": "2018-01-16T03:13:06", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3100351601, - "parent_author": "boomshikha", - "parent_permlink": "re-stackin-re-steemit-firstpost-20170825t013613361z", - "payout": 0.023, - "payout_at": "2018-01-23T03:13:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-boomshikha-re-stackin-re-steemit-firstpost-20180116t031304296z", - "post_id": 25951844, - "promoted": "0.000 HBD", - "replies": [ - "cryptosharon/re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180420t083613598z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-16T03:13:06", - "url": "/meta/@steemit/firstpost#@jackolanternbob/re-boomshikha-re-stackin-re-steemit-firstpost-20180116t031304296z" - }, - "jackolanternbob/re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180718t002453741z": { - "active_votes": [ - { - "rshares": "204859423", - "voter": "jackolanternbob" - } - ], - "author": "jackolanternbob", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.69, - "beneficiaries": [], - "blacklists": [], - "body": "You should subscribe, duh", - "category": "meta", - "children": 1, - "created": "2018-07-18T00:24:54", - "curator_payout_value": "0.000 HBD", - "depth": 5, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 204859423, - "parent_author": "cryptosharon", - "parent_permlink": "re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180420t083613598z", - "payout": 0.0, - "payout_at": "2018-07-25T00:24:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180718t002453741z", - "post_id": 56880023, - "promoted": "0.000 HBD", - "replies": [ - "jyinvest/re-jackolanternbob-re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20181205t012608600z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-18T00:24:54", - "url": "/meta/@steemit/firstpost#@jackolanternbob/re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180718t002453741z" - }, - "jacuzzi/re-steemit-firstpost-20190329t233116293z": { - "active_votes": [], - "author": "jacuzzi", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.29, - "beneficiaries": [], - "blacklists": [], - "body": "Love being here Steemit! \nIf you got some extra Steem, send it on over, I would like to be a Whale on here. :D", - "category": "meta", - "children": 0, - "created": "2019-03-29T23:31:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-04-05T23:31:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20190329t233116293z", - "post_id": 72253433, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-03-29T23:31:18", - "url": "/meta/@steemit/firstpost#@jacuzzi/re-steemit-firstpost-20190329t233116293z" - }, - "jaff8/re-steemit-firstpost-20180102t203545319z": { - "active_votes": [ - { - "rshares": "655239907182", - "voter": "rok-sivante" - }, - { - "rshares": "99961699155", - "voter": "libertyteeth" - }, - { - "rshares": "6880364590", - "voter": "smyle" - }, - { - "rshares": "4164132153", - "voter": "dray91eu" - } - ], - "author": "jaff8", - "author_payout_value": "7.684 HBD", - "author_reputation": 67.12, - "beneficiaries": [], - "blacklists": [], - "body": "Wow... See what I just digged up. So Steemit did a short intro post. Where are your pictures? Hahaha", - "category": "meta", - "children": 0, - "created": "2018-01-02T20:35:48", - "curator_payout_value": "1.363 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 766246103080, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 9.047, - "payout_at": "2018-01-09T20:35:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180102t203545319z", - "post_id": 23177478, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-02T20:35:48", - "url": "/meta/@steemit/firstpost#@jaff8/re-steemit-firstpost-20180102t203545319z" - }, - "jazzresin/re-steemit-firstpost-20180426t063924532z": { - "active_votes": [], - "author": "jazzresin", - "author_payout_value": "0.000 HBD", - "author_reputation": 54.18, - "beneficiaries": [], - "blacklists": [], - "body": "Is there an individual behind this @steemit account or is it a gestalt like function for the site?? Meta indeed.....", - "category": "meta", - "children": 0, - "created": "2018-04-26T06:39:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-05-03T06:39:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180426t063924532z", - "post_id": 45467783, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-26T06:39:24", - "url": "/meta/@steemit/firstpost#@jazzresin/re-steemit-firstpost-20180426t063924532z" - }, - "jelloducky/re-steemit-firstpost-20160807t215340468z": { - "active_votes": [ - { - "rshares": "90409341", - "voter": "jelloducky" - }, - { - "rshares": "58727187", - "voter": "rezrez" - } - ], - "author": "jelloducky", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.57, - "beneficiaries": [], - "blacklists": [], - "body": "This platform is inspiring, thank you so much!", - "category": "meta", - "children": 0, - "created": "2016-08-07T21:53:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 149136528, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160807t215340468z", - "post_id": 498164, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-07T21:53:39", - "url": "/meta/@steemit/firstpost#@jelloducky/re-steemit-firstpost-20160807t215340468z" - }, - "jennamarbles/re-steemit-firstpost-20160719t210752086z": { - "active_votes": [ - { - "rshares": "707206172", - "voter": "patrick-g" - }, - { - "rshares": "732150442", - "voter": "artific" - }, - { - "rshares": "17012406247", - "voter": "jennamarbles" - }, - { - "rshares": "66705408", - "voter": "hipsterjesus" - }, - { - "rshares": "51109965", - "voter": "f1111111" - }, - { - "rshares": "0", - "voter": "serendipitie" - } - ], - "author": "jennamarbles", - "author_payout_value": "0.024 HBD", - "author_reputation": 57.93, - "beneficiaries": [], - "blacklists": [], - "body": "Hello @steemit, I'm asking you to support my idea, in a new development STEEM. It will attract tens of thousands of people: https://steemit.com/openheart/@jennamarbles/first-steem-crowdfunding-we-can-make-this-world-better", - "category": "meta", - "children": 0, - "created": "2016-07-19T21:07:48", - "curator_payout_value": "0.003 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "links": [ - "https://steemit.com/openheart/@jennamarbles/first-steem-crowdfunding-we-can-make-this-world-better" - ], - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 18569578234, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.027, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160719t210752086z", - "post_id": 145129, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 5 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-20T08:35:21", - "url": "/meta/@steemit/firstpost#@jennamarbles/re-steemit-firstpost-20160719t210752086z" - }, - "jephline/re-steemit-firstpost-20170928t005448336z": { - "active_votes": [], - "author": "jephline", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.33, - "beneficiaries": [], - "blacklists": [], - "body": "Pls @steemit I like to ask what is the use of he STEEM transfered recently to steemit2 and misterdelegations tobe used for?", - "category": "meta", - "children": 0, - "created": "2017-09-28T00:54:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-05T00:54:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170928t005448336z", - "post_id": 13941268, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-28T00:54:54", - "url": "/meta/@steemit/firstpost#@jephline/re-steemit-firstpost-20170928t005448336z" - }, - "jery/re-steemit-firstpost-20171208t141554872z": { - "active_votes": [], - "author": "jery", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.71, - "beneficiaries": [], - "blacklists": [], - "body": "hey you are steemit owner, i lost my steemit password, can you restore my password, i tried to recover my account but can not. please", - "category": "meta", - "children": 0, - "created": "2017-12-08T14:16:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-15T14:16:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171208t141554872z", - "post_id": 19809672, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-08T14:16:00", - "url": "/meta/@steemit/firstpost#@jery/re-steemit-firstpost-20171208t141554872z" - }, - "jesusj1/re-steemit-firstpost-20180219t060135882z": { - "active_votes": [], - "author": "jesusj1", - "author_payout_value": "0.000 HBD", - "author_reputation": 59.15, - "beneficiaries": [], - "blacklists": [], - "body": "#
Very nice excellent post! If you want to support me in my last publication, it would be a great help to my regards\n![kingtaunt.gif](https://steemitimages.com/DQmXnCEYCoNCw9eHtdTBSy4r5HjtXMNVkPz9pQraFq2bjcU/kingtaunt.gif)\n![rabbit_footer.gif](https://steemitimages.com/DQmSDq73msJmRa9WWMQvQSzi4jLR44W6ffRRDgfRRzFCGTP/rabbit_footer.gif)
\n
https://steemit.com/technology/@jesusj1/puede-la-tecnologia-blockchain-sobrevivir-sin-criptomonedas-jesusj1
", - "category": "meta", - "children": 0, - "created": "2018-02-19T06:01:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmXnCEYCoNCw9eHtdTBSy4r5HjtXMNVkPz9pQraFq2bjcU/kingtaunt.gif", - "https://steemitimages.com/DQmSDq73msJmRa9WWMQvQSzi4jLR44W6ffRRDgfRRzFCGTP/rabbit_footer.gif" - ], - "links": [ - "https://steemit.com/technology/@jesusj1/puede-la-tecnologia-blockchain-sobrevivir-sin-criptomonedas-jesusj1" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-26T06:01:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180219t060135882z", - "post_id": 33679234, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-19T06:01:39", - "url": "/meta/@steemit/firstpost#@jesusj1/re-steemit-firstpost-20180219t060135882z" - }, - "jetblake/re-joecaffeine-re-steemit-firstpost-20170707t112900716z": { - "active_votes": [], - "author": "jetblake", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.13, - "beneficiaries": [], - "blacklists": [], - "body": "welcome aboard. My name is timtea. LOL", - "category": "meta", - "children": 0, - "created": "2017-07-07T11:29:15", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "joecaffeine", - "parent_permlink": "re-steemit-firstpost-20170707t112601869z", - "payout": 0.0, - "payout_at": "2017-07-14T11:29:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-joecaffeine-re-steemit-firstpost-20170707t112900716z", - "post_id": 6435398, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-07T11:29:15", - "url": "/meta/@steemit/firstpost#@jetblake/re-joecaffeine-re-steemit-firstpost-20170707t112900716z" - }, - "jjjjosue/re-steemit-firstpost-20170623t205714645z": { - "active_votes": [ - { - "rshares": "1136455399", - "voter": "evdoggformayor" - } - ], - "author": "jjjjosue", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.03, - "beneficiaries": [], - "blacklists": [], - "body": "yo whats up , how bout a few upvotes or somethin ;)", - "category": "meta", - "children": 0, - "created": "2017-06-23T20:56:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1136455399, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-30T20:56:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170623t205714645z", - "post_id": 4839831, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-23T20:56:24", - "url": "/meta/@steemit/firstpost#@jjjjosue/re-steemit-firstpost-20170623t205714645z" - }, - "joao-cacador/re-steemit-firstpost-20170929t163807870z": { - "active_votes": [ - { - "rshares": "92847476", - "voter": "joao-cacador" - }, - { - "rshares": "0", - "voter": "ivone-cacador" - } - ], - "author": "joao-cacador", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.42, - "beneficiaries": [], - "blacklists": [], - "body": "So cool! This would be the very first post in steemit, I had to comment, 2 years ago!! @steemit", - "category": "meta", - "children": 0, - "created": "2017-09-29T16:38:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 92847476, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-06T16:38:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170929t163807870z", - "post_id": 14083621, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-29T16:38:09", - "url": "/meta/@steemit/firstpost#@joao-cacador/re-steemit-firstpost-20170929t163807870z" - }, - "jobindonesia/re-steemit-firstpost-20180129t025737462z": { - "active_votes": [], - "author": "jobindonesia", - "author_payout_value": "0.000 HBD", - "author_reputation": 7.14, - "beneficiaries": [], - "blacklists": [], - "body": "nice", - "category": "meta", - "children": 0, - "created": "2018-01-29T02:57:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-05T02:57:45", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180129t025737462z", - "post_id": 28835096, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-29T02:57:45", - "url": "/meta/@steemit/firstpost#@jobindonesia/re-steemit-firstpost-20180129t025737462z" - }, - "joearnold/ps8dww": { - "active_votes": [ - { - "rshares": "10934579445", - "voter": "joearnold" - } - ], - "author": "joearnold", - "author_payout_value": "0.000 HBD", - "author_reputation": 54.91, - "beneficiaries": [], - "blacklists": [], - "body": "@steem Can you please reset my account as someone stole it on October14 of 2018. They have been using the steem and it is still delegated to @ verdato and @ fudurian. I do not know if they are the guilty parties or not. It is in a power down right and appears to be continually. I have all original keys and information. please help ! The account is @jadabug ( I set it up for my daughter to blog and she would like to use it. )", - "category": "meta", - "children": 0, - "created": "2019-05-28T20:22:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steem", - "jadabug" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 10934579445, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-06-04T20:22:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "ps8dww", - "post_id": 75474918, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-05-28T20:22:09", - "url": "/meta/@steemit/firstpost#@joearnold/ps8dww" - }, - "joecaffeine/re-steemit-firstpost-20170707t112601869z": { - "active_votes": [], - "author": "joecaffeine", - "author_payout_value": "0.000 HBD", - "author_reputation": 45.33, - "beneficiaries": [], - "blacklists": [], - "body": "Boom!! I'm ALL in baby!!", - "category": "meta", - "children": 1, - "created": "2017-07-07T11:26:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-14T11:26:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170707t112601869z", - "post_id": 6435149, - "promoted": "0.000 HBD", - "replies": [ - "jetblake/re-joecaffeine-re-steemit-firstpost-20170707t112900716z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-07T11:26:00", - "url": "/meta/@steemit/firstpost#@joecaffeine/re-steemit-firstpost-20170707t112601869z" - }, - "johnesan/re-steemit-firstpost-20180103t065110954z": { - "active_votes": [], - "author": "johnesan", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.64, - "beneficiaries": [], - "blacklists": [], - "body": "Its quite interesting to have stumbled on this post! What's more interesting is seeing that the now almighty **Steemit** made just $1.70 on her first post, even with 325 votes! It certainly must be rewarding to look back at your first post @steemit and see all the progress you've made since then! Thanks for this platform...Bigger things to come in 2018!", - "category": "meta", - "children": 0, - "created": "2018-01-03T06:51:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-10T06:51:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180103t065110954z", - "post_id": 23251633, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-03T06:51:12", - "url": "/meta/@steemit/firstpost#@johnesan/re-steemit-firstpost-20180103t065110954z" - }, - "johnsmit/re-steemit-firstpost-20170907t120602357z": { - "active_votes": [ - { - "rshares": "102432820", - "voter": "amat" - }, - { - "rshares": "532754065", - "voter": "johnsmit" - } - ], - "author": "johnsmit", - "author_payout_value": "0.000 HBD", - "author_reputation": 1.45, - "beneficiaries": [], - "blacklists": [ - "reputation-1" - ], - "body": "Such A Great Platform Its Amazing \nSteemit Fail all platform like FB instagram And More platform very soon \nSteemit growth very fast 1 million people join in 3 month \nIts super\nI LOVE STEEMIT!", - "category": "meta", - "children": 0, - "created": "2017-09-07T12:03:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 635186885, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-14T12:03:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170907t120602357z", - "post_id": 12184955, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-07T12:03:39", - "url": "/meta/@steemit/firstpost#@johnsmit/re-steemit-firstpost-20170907t120602357z" - }, - "joshvel/re-crypto-guru-re-business-re-steemit-firstpost-20170921t061421507z": { - "active_votes": [], - "author": "joshvel", - "author_payout_value": "0.000 HBD", - "author_reputation": 60.9, - "beneficiaries": [], - "blacklists": [], - "body": "The funniest comment I read, Lol ! Welcome @steemit to steemit...Thanks @business you made my day!", - "category": "meta", - "children": 0, - "created": "2017-09-21T06:13:30", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "business" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "crypto-guru", - "parent_permlink": "re-business-re-steemit-firstpost-20170827t191427486z", - "payout": 0.0, - "payout_at": "2017-09-28T06:13:30", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-crypto-guru-re-business-re-steemit-firstpost-20170921t061421507z", - "post_id": 13374229, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-21T06:13:30", - "url": "/meta/@steemit/firstpost#@joshvel/re-crypto-guru-re-business-re-steemit-firstpost-20170921t061421507z" - }, - "joyvancouver/re-steemit-firstpost-20180413t065458896z": { - "active_votes": [], - "author": "joyvancouver", - "author_payout_value": "0.000 HBD", - "author_reputation": 61.24, - "beneficiaries": [], - "blacklists": [], - "body": "Is it very first post on Steemit?", - "category": "meta", - "children": 0, - "created": "2018-04-13T06:54:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-20T06:54:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180413t065458896z", - "post_id": 43361772, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-13T06:54:57", - "url": "/meta/@steemit/firstpost#@joyvancouver/re-steemit-firstpost-20180413t065458896z" - }, - "juicyvegandwarf/re-admin-firstpost-20180205t011252333z": { - "active_votes": [], - "author": "juicyvegandwarf", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.79, - "beneficiaries": [], - "blacklists": [], - "body": "Cool, I am the first Crypto Dwarf to reply lol (Does that count?)", - "category": "meta", - "children": 0, - "created": "2018-02-05T01:12:51", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "admin", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-12T01:12:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-admin-firstpost-20180205t011252333z", - "post_id": 30457943, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-05T01:12:51", - "url": "/meta/@steemit/firstpost#@juicyvegandwarf/re-admin-firstpost-20180205t011252333z" - }, - "juicyvegandwarf/re-stackin-re-steemit-firstpost-20180205t003302894z": { - "active_votes": [], - "author": "juicyvegandwarf", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.79, - "beneficiaries": [], - "blacklists": [], - "body": "I have only been here a few days and have fallen in love with it already. Byebye facebook haha", - "category": "meta", - "children": 0, - "created": "2018-02-05T00:33:03", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-02-12T00:33:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180205t003302894z", - "post_id": 30452177, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-05T00:33:03", - "url": "/meta/@steemit/firstpost#@juicyvegandwarf/re-stackin-re-steemit-firstpost-20180205t003302894z" - }, - "juicyvegandwarf/re-steemit-firstpost-20180205t011531738z": { - "active_votes": [], - "author": "juicyvegandwarf", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.79, - "beneficiaries": [], - "blacklists": [], - "body": "I am off to learn about steem, steem dollars, voting, delegating, witnessing, curating, powering up, powering down and just about everything else that I thus far am totally oblivious to since becoming a newb here. \n\nWill I officially be a #steemian once I have mastered the steemy arts?", - "category": "meta", - "children": 0, - "created": "2018-02-05T01:15:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta", - "steemian" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-12T01:15:30", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180205t011531738z", - "post_id": 30458346, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-05T01:15:30", - "url": "/meta/@steemit/firstpost#@juicyvegandwarf/re-steemit-firstpost-20180205t011531738z" - }, - "julybrave/re-steemit-firstpost-20180210t063636822z": { - "active_votes": [], - "author": "julybrave", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.95, - "beneficiaries": [], - "blacklists": [], - "body": "hello steemit! You are rich steem power, if you can donate me for upvote of my post. Also i can help everyone upvote when many steem power.", - "category": "meta", - "children": 0, - "created": "2018-02-10T06:36:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-17T06:36:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180210t063636822z", - "post_id": 31608589, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-10T06:36:39", - "url": "/meta/@steemit/firstpost#@julybrave/re-steemit-firstpost-20180210t063636822z" - }, - "junedd/re-steemit-firstpost-20180411t105927724z": { - "active_votes": [ - { - "rshares": "613346548", - "voter": "junedd" - } - ], - "author": "junedd", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.24, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you so much for giving me this great platform steemit work opportunity", - "category": "meta", - "children": 0, - "created": "2018-04-11T10:59:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 613346548, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-18T10:59:33", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180411t105927724z", - "post_id": 43066937, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-11T10:59:33", - "url": "/meta/@steemit/firstpost#@junedd/re-steemit-firstpost-20180411t105927724z" - }, - "junvebbei/re-steemit-firstpost-20170711t090032219z": { - "active_votes": [ - { - "rshares": "185829218", - "voter": "aurica72" - } - ], - "author": "junvebbei", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.68, - "beneficiaries": [], - "blacklists": [], - "body": "I am new here and I am stoked. :D", - "category": "meta", - "children": 0, - "created": "2017-07-11T09:00:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 185829218, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-18T09:00:33", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170711t090032219z", - "post_id": 6835065, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-11T09:00:33", - "url": "/meta/@steemit/firstpost#@junvebbei/re-steemit-firstpost-20170711t090032219z" - }, - "jury.online/re-steemit-firstpost-20171026t231302575z": { - "active_votes": [ - { - "rshares": "55594225", - "voter": "joshcash" - }, - { - "rshares": "207715053", - "voter": "bibkchhetri" - } - ], - "author": "jury.online", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.01, - "beneficiaries": [], - "blacklists": [], - "body": "
https://media.tenor.com/images/1aabaee05c2b1bbea3f49152e389e3a6/tenor.gif
\n

We are just happy to finally be here. The protocol and platform we are building falls right in line with the type of innovative and free-minded thinking on steemit and the community has welcomed us and inspired us in many ways.

", - "category": "meta", - "children": 0, - "created": "2017-10-26T23:13:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://media.tenor.com/images/1aabaee05c2b1bbea3f49152e389e3a6/tenor.gif" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 263309278, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-02T23:13:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171026t231302575z", - "post_id": 16161637, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-26T23:13:03", - "url": "/meta/@steemit/firstpost#@jury.online/re-steemit-firstpost-20171026t231302575z" - }, - "justinashby/re-steemit-firstpost-20170725t013335892z": { - "active_votes": [ - { - "rshares": "79672902", - "voter": "steeminator3000" - } - ], - "author": "justinashby", - "author_payout_value": "0.000 HBD", - "author_reputation": 61.66, - "beneficiaries": [], - "blacklists": [], - "body": "We are the future!!", - "category": "meta", - "children": 0, - "created": "2017-07-25T01:33:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 79672902, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-01T01:33:33", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170725t013335892z", - "post_id": 8186374, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-25T01:33:33", - "url": "/meta/@steemit/firstpost#@justinashby/re-steemit-firstpost-20170725t013335892z" - }, - "justinashby/re-steemit-firstpost-20171116t030504073z": { - "active_votes": [ - { - "rshares": "443482214", - "voter": "tellermachine" - }, - { - "rshares": "841866674", - "voter": "simonluisi" - } - ], - "author": "justinashby", - "author_payout_value": "0.000 HBD", - "author_reputation": 61.66, - "beneficiaries": [], - "blacklists": [], - "body": "STEEMit is going to take Social Media by storm!", - "category": "meta", - "children": 0, - "created": "2017-11-16T03:05:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1285348888, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-23T03:05:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171116t030504073z", - "post_id": 17820053, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-16T03:05:09", - "url": "/meta/@steemit/firstpost#@justinashby/re-steemit-firstpost-20171116t030504073z" - }, - "justyy/re-steemit-firstpost-20170715t082135653z": { - "active_votes": [ - { - "rshares": "138456096794", - "voter": "penguinpablo" - }, - { - "rshares": "4427416941", - "voter": "sv67216721" - }, - { - "rshares": "508924664", - "voter": "viralcutz" - }, - { - "rshares": "177646674", - "voter": "mxzn" - }, - { - "rshares": "4006174412", - "voter": "shenchensucc" - }, - { - "rshares": "891464378", - "voter": "victorialuxx" - }, - { - "rshares": "1191221427", - "voter": "timlechner" - }, - { - "rshares": "28281859585", - "voter": "sebastiane" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "justyy", - "author_payout_value": "0.744 HBD", - "author_reputation": 74.03, - "beneficiaries": [], - "blacklists": [], - "body": "Steem rocks and changes my life .... in a good way!", - "category": "meta", - "children": 1, - "created": "2017-07-15T08:21:39", - "curator_payout_value": "0.059 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 177940804875, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.803, - "payout_at": "2017-07-22T08:21:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170715t082135653z", - "post_id": 7246278, - "promoted": "0.000 HBD", - "replies": [ - "mxzn/re-justyy-re-steemit-firstpost-20170715t084216221z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 8 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-15T08:21:39", - "url": "/meta/@steemit/firstpost#@justyy/re-steemit-firstpost-20170715t082135653z" - }, - "jyinvest/re-jackolanternbob-re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20181205t012608600z": { - "active_votes": [], - "author": "jyinvest", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.69, - "beneficiaries": [], - "blacklists": [], - "body": "Great!", - "category": "meta", - "children": 0, - "created": "2018-12-05T01:26:09", - "curator_payout_value": "0.000 HBD", - "depth": 6, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "jackolanternbob", - "parent_permlink": "re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20180718t002453741z", - "payout": 0.0, - "payout_at": "2018-12-12T01:26:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-jackolanternbob-re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20181205t012608600z", - "post_id": 67000984, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-12-05T01:26:09", - "url": "/meta/@steemit/firstpost#@jyinvest/re-jackolanternbob-re-cryptosharon-re-jackolanternbob-re-boomshikha-re-stackin-re-steemit-firstpost-20181205t012608600z" - }, - "kaliju/re-steemit-firstpost-20171203t125157898z": { - "active_votes": [], - "author": "kaliju", - "author_payout_value": "0.000 HBD", - "author_reputation": 65.8, - "beneficiaries": [], - "blacklists": [], - "body": "# I just want to leave this comment here for historical purposes. \n\n\n.\n.\n.\n.\n.\n.\n.\n.\nYeah, done. :)", - "category": "meta", - "children": 0, - "created": "2017-12-03T12:51:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-10T12:51:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171203t125157898z", - "post_id": 19360320, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-03T12:51:57", - "url": "/meta/@steemit/firstpost#@kaliju/re-steemit-firstpost-20171203t125157898z" - }, - "kamvreto/re-steemit-firstpost-20160722t225246211z": { - "active_votes": [ - { - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "rshares": "167168344", - "voter": "yarike" - }, - { - "rshares": "35874847", - "voter": "pr3ttyp3rf3ct" - } - ], - "author": "kamvreto", - "author_payout_value": "0.000 HBD", - "author_reputation": 35.43, - "beneficiaries": [], - "blacklists": [], - "body": "happy steeming all !!", - "category": "meta", - "children": 0, - "created": "2016-07-22T22:53:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 595502250, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160722t225246211z", - "post_id": 206329, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-22T22:53:18", - "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160722t225246211z" - }, - "kamvreto/re-steemit-firstpost-20160725t221949749z": { - "active_votes": [ - { - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "rshares": "348852497", - "voter": "kamvreto" - }, - { - "rshares": "247328995", - "voter": "adinda" - } - ], - "author": "kamvreto", - "author_payout_value": "0.000 HBD", - "author_reputation": 35.43, - "beneficiaries": [], - "blacklists": [], - "body": "old post, starting the steemit like today.\nmy quote of the day \"Anyone can sell their STEEM for cash or vest it to boost their voting power.\"", - "category": "meta", - "children": 0, - "created": "2016-07-25T22:20:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 977987362, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160725t221949749z", - "post_id": 259905, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-25T22:20:24", - "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160725t221949749z" - }, - "kandywriter/re-steemit-firstpost-20180415t225507938z": { - "active_votes": [], - "author": "kandywriter", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.91, - "beneficiaries": [], - "blacklists": [], - "body": "What a wonderful Amazing place, Gotta Love it on steemit !\ud83d\ude0a \ud83d\udc9c\ud83c\udf3a\ud83c\udf3a\ud83c\udf3a", - "category": "meta", - "children": 0, - "created": "2018-04-15T22:55:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-22T22:55:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180415t225507938z", - "post_id": 43773351, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-15T22:55:12", - "url": "/meta/@steemit/firstpost#@kandywriter/re-steemit-firstpost-20180415t225507938z" - }, - "karmashine/re-steemit-firstpost-20171229t113317542z": { - "active_votes": [ - { - "rshares": "1544797225", - "voter": "juicypop" - }, - { - "rshares": "1306663258", - "voter": "honolulu" - } - ], - "author": "karmashine", - "author_payout_value": "0.033 HBD", - "author_reputation": 51.49, - "beneficiaries": [], - "blacklists": [], - "body": "Best. Platform. EVER.\n\nThank you!!!", - "category": "meta", - "children": 0, - "created": "2017-12-29T11:33:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 2851460483, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.033, - "payout_at": "2018-01-05T11:33:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171229t113317542z", - "post_id": 22497615, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-29T11:33:21", - "url": "/meta/@steemit/firstpost#@karmashine/re-steemit-firstpost-20171229t113317542z" - }, - "keistee/re-steemit-firstpost-20180729t143630570z": { - "active_votes": [], - "author": "keistee", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.58, - "beneficiaries": [], - "blacklists": [], - "body": "Hello, I'm loving steemit;)", - "category": "meta", - "children": 0, - "created": "2018-07-29T14:36:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-08-05T14:36:33", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 0, - "permlink": "re-steemit-firstpost-20180729t143630570z", - "post_id": 58089386, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-29T14:36:33", - "url": "/meta/@steemit/firstpost#@keistee/re-steemit-firstpost-20180729t143630570z" - }, - "kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z": { - "active_votes": [ - { - "rshares": "707206172", - "voter": "patrick-g" - } - ], - "author": "kewpiedoll", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.07, - "beneficiaries": [], - "blacklists": [], - "body": "we are. @steemit was the OP. @ned flagged it.", - "category": "meta", - "children": 0, - "created": "2016-07-21T14:02:21", - "curator_payout_value": "0.000 HBD", - "depth": 5, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ], - "users": [ - "steemit", - "ned" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 707206172, - "parent_author": "intelliguy", - "parent_permlink": "re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z", - "post_id": 180004, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-21T14:02:21", - "url": "/meta/@steemit/firstpost#@kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z" - }, - "kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z": { - "active_votes": [ - { - "rshares": "707206172", - "voter": "patrick-g" - } - ], - "author": "kewpiedoll", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.07, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit is not a \"user,\" it's the actual site itself. and this was the premier post akin to Satoshi's white paper. [See here](http://steemwhales.com/). I just thought it was odd the CEO would downvote the launch of the site he's CEO of.", - "category": "meta", - "children": 2, - "created": "2016-07-21T05:28:21", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "links": [ - "http://steemwhales.com/" - ], - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 707206172, - "parent_author": "intelliguy", - "parent_permlink": "re-kewpiedoll-re-steemit-firstpost-20160720t215823622z", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z", - "post_id": 173754, - "promoted": "0.000 HBD", - "replies": [ - "intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-21T05:28:21", - "url": "/meta/@steemit/firstpost#@kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z" - }, - "kewpiedoll/re-steemit-firstpost-20160720t210201326z": { - "active_votes": [ - { - "rshares": "707206172", - "voter": "patrick-g" - }, - { - "rshares": "231619534", - "voter": "eggstraordinair" - }, - { - "rshares": "123321995", - "voter": "allmonitors" - } - ], - "author": "kewpiedoll", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.07, - "beneficiaries": [], - "blacklists": [], - "body": "Why did @ned flag this post?", - "category": "meta", - "children": 4, - "created": "2016-07-20T21:01:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ], - "users": [ - "ned" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1062147701, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160720t210201326z", - "post_id": 166558, - "promoted": "0.000 HBD", - "replies": [ - "intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-20T21:01:54", - "url": "/meta/@steemit/firstpost#@kewpiedoll/re-steemit-firstpost-20160720t210201326z" - }, - "kid4life/re-fbslo-re-kid4life-re-fbslo-re-steemit-firstpost-20180204t170516059z": { - "active_votes": [], - "author": "kid4life", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.22, - "beneficiaries": [], - "blacklists": [], - "body": "Gimme 5 min", - "category": "meta", - "children": 0, - "created": "2018-02-04T17:05:18", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "fbslo", - "parent_permlink": "re-kid4life-re-fbslo-re-steemit-firstpost-20180204t165833297z", - "payout": 0.0, - "payout_at": "2018-02-11T17:05:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-fbslo-re-kid4life-re-fbslo-re-steemit-firstpost-20180204t170516059z", - "post_id": 30384312, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-04T17:05:18", - "url": "/meta/@steemit/firstpost#@kid4life/re-fbslo-re-kid4life-re-fbslo-re-steemit-firstpost-20180204t170516059z" - }, - "kid4life/re-fbslo-re-steemit-firstpost-20180204t163322409z": { - "active_votes": [ - { - "rshares": "15450240206", - "voter": "fbslo" - } - ], - "author": "kid4life", - "author_payout_value": "0.084 HBD", - "author_reputation": 68.22, - "beneficiaries": [], - "blacklists": [], - "body": "Can we chat?:) Will try Discord", - "category": "meta", - "children": 2, - "created": "2018-02-04T16:33:21", - "curator_payout_value": "0.019 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 15450240206, - "parent_author": "fbslo", - "parent_permlink": "re-steemit-firstpost-20180203t174523045z", - "payout": 0.103, - "payout_at": "2018-02-11T16:33:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-fbslo-re-steemit-firstpost-20180204t163322409z", - "post_id": 30378638, - "promoted": "0.000 HBD", - "replies": [ - "fbslo/re-kid4life-re-fbslo-re-steemit-firstpost-20180204t165833297z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-04T16:33:21", - "url": "/meta/@steemit/firstpost#@kid4life/re-fbslo-re-steemit-firstpost-20180204t163322409z" - }, - "kingtylervvs/re-admin-firstpost-20160717t193811098z": { - "active_votes": [ - { - "rshares": "742566481", - "voter": "patrick-g" - } - ], - "author": "kingtylervvs", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.96, - "beneficiaries": [], - "blacklists": [], - "body": "PARTY PARTY.... P - A - R - T - Y????? BECAUSE I GOTTA!", - "category": "meta", - "children": 0, - "created": "2016-07-17T19:38:12", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 742566481, - "parent_author": "admin", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-admin-firstpost-20160717t193811098z", - "post_id": 110463, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-17T19:38:12", - "url": "/meta/@steemit/firstpost#@kingtylervvs/re-admin-firstpost-20160717t193811098z" - }, - "kingtylervvs/re-steemit-firstpost-20160720t121101482z": { - "active_votes": [ - { - "rshares": "25204741266", - "voter": "justtryme90" - }, - { - "rshares": "707206172", - "voter": "patrick-g" - }, - { - "rshares": "226074637", - "voter": "artjedi" - }, - { - "rshares": "52153025", - "voter": "f1111111" - } - ], - "author": "kingtylervvs", - "author_payout_value": "0.039 HBD", - "author_reputation": 47.96, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you for posting. We all LOVE steem!\n\nI up-voted you too... BTW, should steemit let us steemers advertise using steem? Be sure to tell everyone you know to come vote here at: https://steemit.com/steemit/@kingtylervvs/if-steemit-ever-does-decide-to-advertise-there-is-only-1-way-it-could-work-in-my-opinion-debate\n\nThis is a democratic community decision.
\n\n", - "category": "meta", - "children": 3, - "created": "2016-07-20T12:11:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "image": [ - "http://www.animatedimages.org/data/media/75/animated-train-image-0018.gif", - "http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif", - "https://steem.io/images/steem.png" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 26190175100, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.039, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160720t121101482z", - "post_id": 157998, - "promoted": "0.000 HBD", - "replies": [ - "yonuts/re-kingtylervvs-re-steemit-firstpost-20160729t180621248z", - "strateg/re-kingtylervvs-re-steemit-firstpost-20170517t202248492z", - "crypto-guru/re-kingtylervvs-re-steemit-firstpost-20170827t190850388z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-20T12:11:00", - "url": "/meta/@steemit/firstpost#@kingtylervvs/re-steemit-firstpost-20160720t121101482z" - }, - "krevasilis/re-steemit-firstpost-20180902t093021830z": { - "active_votes": [], - "author": "krevasilis", - "author_payout_value": "0.000 HBD", - "author_reputation": 66.99, - "beneficiaries": [], - "blacklists": [], - "body": "one year with you....happy birthday to me\n![15541215-7722-479F-8102-829C576185C6.jpeg](https://cdn.steemitimages.com/DQmRW5CeLcMwxrAtmtGbET73zJ4XeTdHC83k9drbRWqXxyb/15541215-7722-479F-8102-829C576185C6.jpeg)", - "category": "meta", - "children": 0, - "created": "2018-09-02T09:30:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://cdn.steemitimages.com/DQmRW5CeLcMwxrAtmtGbET73zJ4XeTdHC83k9drbRWqXxyb/15541215-7722-479F-8102-829C576185C6.jpeg" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-09-09T09:30:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180902t093021830z", - "post_id": 61366096, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-09-02T09:30:18", - "url": "/meta/@steemit/firstpost#@krevasilis/re-steemit-firstpost-20180902t093021830z" - }, - "kristenbruce/re-steemit-firstpost-20180110t095327457z": { - "active_votes": [ - { - "rshares": "602081859", - "voter": "hazelpazel" - }, - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "kristenbruce", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.66, - "beneficiaries": [], - "blacklists": [], - "body": "I'm new to steemit and still getting my head around it. Seems great so far though! :D", - "category": "meta", - "children": 0, - "created": "2018-01-10T09:53:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 602081859, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-17T09:53:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180110t095327457z", - "post_id": 24757914, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-10T09:53:27", - "url": "/meta/@steemit/firstpost#@kristenbruce/re-steemit-firstpost-20180110t095327457z" - }, - "lartist-zen/re-steemit-firstpost-20180301t094304415z": { - "active_votes": [], - "author": "lartist-zen", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.93, - "beneficiaries": [], - "blacklists": [], - "body": "Congratulations for your success, you have that deserved you !!\n\nThank you for that's premiers donations, resteem, voted.\nThanks for them!\n\n**I'm sure you have a big heart my steemian friends!**\n\n*Help us please !*\n\n[(HELP CANCER) Steemit help us fight cancer! [Photo 1][ENGLISH]](https://steemit.com/steemit/@lartist-zen/help-cancer-steemit-help-us-fight-cancer-photo-1-english)\n\n[(HELP CANCER) Steemit aidez nous \u00e0 combattre le cancer ! [Photo 1][Fran\u00e7ais]](https://steemit.com/steemit/@lartist-zen/help-cancer-steemit-aidez-nous-a-combattre-le-cancer-photo-1-francais)\n", - "category": "meta", - "children": 0, - "created": "2018-03-01T09:43:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "busy/2.4.0", - "community": "busy", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-08T09:43:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180301t094304415z", - "post_id": 35966143, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-01T09:43:12", - "url": "/meta/@steemit/firstpost#@lartist-zen/re-steemit-firstpost-20180301t094304415z" - }, - "lavidaesunviaje/re-steemit-firstpost-20180221t145554408z": { - "active_votes": [], - "author": "lavidaesunviaje", - "author_payout_value": "0.000 HBD", - "author_reputation": 51.18, - "beneficiaries": [], - "blacklists": [], - "body": "so... Im pretty new on the platform and still couldn't find the way to get higher upvotes without a bot or a Curie vote...\nDo you have any recommendation? \nI would prefer not to fall into the voting bots thing...", - "category": "meta", - "children": 0, - "created": "2018-02-21T14:55:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-28T14:55:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180221t145554408z", - "post_id": 34260116, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-21T14:55:57", - "url": "/meta/@steemit/firstpost#@lavidaesunviaje/re-steemit-firstpost-20180221t145554408z" - }, - "layra/re-farhannaqvi7-re-layra-re-steemit-firstpost-20180620t222752339z": { - "active_votes": [], - "author": "layra", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.87, - "beneficiaries": [], - "blacklists": [], - "body": "Hi @farhannaqvi7, thank you for your message and info! Saludos de Mexico!", - "category": "meta", - "children": 0, - "created": "2018-06-20T22:27:51", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "farhannaqvi7" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "farhannaqvi7", - "parent_permlink": "re-layra-re-steemit-firstpost-20180620t121113715z", - "payout": 0.0, - "payout_at": "2018-06-27T22:27:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-farhannaqvi7-re-layra-re-steemit-firstpost-20180620t222752339z", - "post_id": 53732292, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T22:27:51", - "url": "/meta/@steemit/firstpost#@layra/re-farhannaqvi7-re-layra-re-steemit-firstpost-20180620t222752339z" - }, - "layra/re-silent-ghost-20180620t025040761z-20180620t225205482z": { - "active_votes": [], - "author": "layra", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.87, - "beneficiaries": [], - "blacklists": [], - "body": "Hi @silent-ghost, thanks for the warm welcome! Greetings from Mexico!", - "category": "meta", - "children": 0, - "created": "2018-06-20T22:52:06", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "silent-ghost" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "silent-ghost", - "parent_permlink": "20180620t025040761z", - "payout": 0.0, - "payout_at": "2018-06-27T22:52:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-silent-ghost-20180620t025040761z-20180620t225205482z", - "post_id": 53734366, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T22:52:06", - "url": "/meta/@steemit/firstpost#@layra/re-silent-ghost-20180620t025040761z-20180620t225205482z" - }, - "layra/re-steemit-firstpost-20180620t023240325z": { - "active_votes": [ - { - "rshares": "634193095", - "voter": "st3llar" - }, - { - "rshares": "135580006", - "voter": "mrnastykilla" - }, - { - "rshares": "314225923", - "voter": "kingkong1" - }, - { - "rshares": "759788955", - "voter": "dlivestarbooster" - } - ], - "author": "layra", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.87, - "beneficiaries": [], - "blacklists": [], - "body": "Wow, Could this be the Genesis Post / Genesis Block?! \n\n![ijijijij.gif](https://cdn.steemitimages.com/DQmS4RzREEVNeho2HMiBJhGDEfFFsCX7N7k9u1ihkJJWXps/ijijijij.gif)\n\nGreat to be here, lets kick some centralized (you know what)!!! \nGreetings from Mexico, here is our special #introduceyourself video \nhttps://steemit.com/introduceyourself/@layra/3zsy72td\nSaludos @layra", - "category": "meta", - "children": 8, - "created": "2018-06-20T02:32:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://cdn.steemitimages.com/DQmS4RzREEVNeho2HMiBJhGDEfFFsCX7N7k9u1ihkJJWXps/ijijijij.gif" - ], - "links": [ - "https://steemit.com/introduceyourself/@layra/3zsy72td" - ], - "tags": [ - "meta", - "introduceyourself" - ], - "users": [ - "layra" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1843787979, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-06-27T02:32:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180620t023240325z", - "post_id": 53624430, - "promoted": "0.000 HBD", - "replies": [ - "silent-ghost/20180620t025040761z", - "steemplus-bot/re-steemit-firstpost-20180620t023240325z-re-welcome-to-steemplus", - "farhannaqvi7/re-layra-re-steemit-firstpost-20180620t121113715z", - "veseloff/re-layra-re-steemit-firstpost-20180620t171437053z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T02:32:39", - "url": "/meta/@steemit/firstpost#@layra/re-steemit-firstpost-20180620t023240325z" - }, - "layra/re-steemplus-bot-re-steemit-firstpost-re-welcome-to-steemplus-20180620t225310780z": { - "active_votes": [], - "author": "layra", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.87, - "beneficiaries": [], - "blacklists": [], - "body": "Hi @steemplus-bot, great stuff! Saludos from Mexico!", - "category": "meta", - "children": 0, - "created": "2018-06-20T22:53:12", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemplus-bot" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemplus-bot", - "parent_permlink": "re-steemit-firstpost-20180620t023240325z-re-welcome-to-steemplus", - "payout": 0.0, - "payout_at": "2018-06-27T22:53:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemplus-bot-re-steemit-firstpost-re-welcome-to-steemplus-20180620t225310780z", - "post_id": 53734471, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T22:53:12", - "url": "/meta/@steemit/firstpost#@layra/re-steemplus-bot-re-steemit-firstpost-re-welcome-to-steemplus-20180620t225310780z" - }, - "lazarescu.irinel/re-steemit-firstpost-20170715t163911333z": { - "active_votes": [ - { - "rshares": "1932033701", - "voter": "lazarescu.irinel" - }, - { - "rshares": "1096841661", - "voter": "rajan21" - } - ], - "author": "lazarescu.irinel", - "author_payout_value": "0.000 HBD", - "author_reputation": 61.26, - "beneficiaries": [], - "blacklists": [], - "body": "Though I still do not know where the money comes from, Steemit is a great social media platform for anyone who can earn their money and financial freedom wherever they are in the world by posting. Thanks Steemit and Many Years!", - "category": "meta", - "children": 0, - "created": "2017-07-15T16:39:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3028875362, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-22T16:39:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170715t163911333z", - "post_id": 7281379, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-15T16:39:12", - "url": "/meta/@steemit/firstpost#@lazarescu.irinel/re-steemit-firstpost-20170715t163911333z" - }, - "learnandteach01/re-steemit-firstpost-20180308t203349570z": { - "active_votes": [ - { - "rshares": "85947066", - "voter": "babangsunan" - } - ], - "author": "learnandteach01", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.5, - "beneficiaries": [], - "blacklists": [], - "body": "I guess it will be an honour to write the first post on steemit. Beyond all the drama happening, I believe steemit is an opportunity and I'm glad I made it. \nSo I leave my mark here after 5 months and some days after finding steemit. \n***\n@learnandteach01", - "category": "meta", - "children": 0, - "created": "2018-03-08T20:33:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "learnandteach01" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 85947066, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-15T20:33:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180308t203349570z", - "post_id": 37527577, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-08T20:33:54", - "url": "/meta/@steemit/firstpost#@learnandteach01/re-steemit-firstpost-20180308t203349570z" - }, - "lembach3d/re-steemit-firstpost-20170714t115255243z": { - "active_votes": [ - { - "rshares": "1196362069", - "voter": "lembach3d" - } - ], - "author": "lembach3d", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.76, - "beneficiaries": [], - "blacklists": [], - "body": "Great platform.\nDefinitely going to use this.\nDefinitely going to invest in this.", - "category": "meta", - "children": 0, - "created": "2017-07-14T11:52:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1196362069, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-21T11:52:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170714t115255243z", - "post_id": 7158632, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-14T11:52:57", - "url": "/meta/@steemit/firstpost#@lembach3d/re-steemit-firstpost-20170714t115255243z" - }, - "lenerdie/re-steemit-firstpost-20160726t035056026z": { - "active_votes": [], - "author": "lenerdie", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.79, - "beneficiaries": [], - "blacklists": [], - "body": "Let's get crazy! happy steemit to everybody!", - "category": "meta", - "children": 0, - "created": "2016-07-26T03:50:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160726t035056026z", - "post_id": 264501, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-26T03:50:57", - "url": "/meta/@steemit/firstpost#@lenerdie/re-steemit-firstpost-20160726t035056026z" - }, - "liberosist/q5pe3l": { - "active_votes": [ - { - "rshares": "3206757856", - "voter": "liberosist" - }, - { - "rshares": "150663323896", - "voter": "anthonyadavisii" - } - ], - "author": "liberosist", - "author_payout_value": "0.013 HBD", - "author_reputation": 72.17, - "beneficiaries": [], - "blacklists": [], - "body": "RIP.", - "category": "meta", - "children": 1, - "created": "2020-02-14T18:02:09", - "curator_payout_value": "0.013 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 153870081752, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.026, - "payout_at": "2020-02-21T18:02:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "q5pe3l", - "post_id": 84393764, - "promoted": "0.000 HBD", - "replies": [ - "anthonyadavisii/q5qlz5" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2020-02-14T18:02:09", - "url": "/meta/@steemit/firstpost#@liberosist/q5pe3l" - }, - "lovehaswon/re-steemit-firstpost-20171231t144811861z": { - "active_votes": [ - { - "rshares": "1773646336", - "voter": "lovehaswon" - }, - { - "rshares": "616714305", - "voter": "soulmotivation" - }, - { - "rshares": "668215487", - "voter": "stardivine" - }, - { - "rshares": "458803585", - "voter": "adrian11" - }, - { - "rshares": "622056542", - "voter": "stargreen" - }, - { - "rshares": "562839021", - "voter": "karthikmbbs" - }, - { - "rshares": "533826437", - "voter": "miraj467" - } - ], - "author": "lovehaswon", - "author_payout_value": "0.064 HBD", - "author_reputation": 58.57, - "beneficiaries": [], - "blacklists": [], - "body": "Yes. Steemit is awesome! It changed my life completely. \u263a\ud83d\udc9a", - "category": "meta", - "children": 0, - "created": "2017-12-31T14:48:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 5236101713, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.064, - "payout_at": "2018-01-07T14:48:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171231t144811861z", - "post_id": 22822094, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 7 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-31T14:48:15", - "url": "/meta/@steemit/firstpost#@lovehaswon/re-steemit-firstpost-20171231t144811861z" - }, - "machhour/re-steemit-firstpost-20170714t133446189z": { - "active_votes": [ - { - "rshares": "6060933807", - "voter": "bigtakosensei" - }, - { - "rshares": "8485640753", - "voter": "lazariko12" - }, - { - "rshares": "238572021", - "voter": "pavezi" - }, - { - "rshares": "1543943239", - "voter": "gayboy" - }, - { - "rshares": "1724819281", - "voter": "mightymicke" - }, - { - "rshares": "538373256", - "voter": "thinkagain" - }, - { - "rshares": "469903474", - "voter": "iamshamroz" - }, - { - "rshares": "1129516553", - "voter": "ayoubb" - }, - { - "rshares": "1209832111", - "voter": "cheddad.kamal" - }, - { - "rshares": "1121964556", - "voter": "doyanphotography" - }, - { - "rshares": "850579008", - "voter": "oussama16" - } - ], - "author": "machhour", - "author_payout_value": "0.096 HBD", - "author_reputation": 61.3, - "beneficiaries": [], - "blacklists": [], - "body": "I think that steemit will be the first social network in the world because it has the potential to be, it is a new concept different in the world in the social networks, it is time to invest a deep money And time\nThank you for this post:)", - "category": "meta", - "children": 0, - "created": "2017-07-14T13:34:45", - "curator_payout_value": "0.005 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 23374078059, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.101, - "payout_at": "2017-07-21T13:34:45", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170714t133446189z", - "post_id": 7166239, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 11 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-14T13:34:45", - "url": "/meta/@steemit/firstpost#@machhour/re-steemit-firstpost-20170714t133446189z" - }, - "mahmudulhassan/re-steemit-firstpost-20180521t131958921z": { - "active_votes": [ - { - "rshares": "2332121561", - "voter": "banjo" - }, - { - "rshares": "3295074625", - "voter": "mahmudulhassan" - }, - { - "rshares": "217091070", - "voter": "firozdiu" - } - ], - "author": "mahmudulhassan", - "author_payout_value": "0.023 HBD", - "author_reputation": -4.44, - "beneficiaries": [], - "blacklists": [ - "reputation-0" - ], - "body": "I am so much glad to be a part of the Steemit Community. Thanks to @steemit @banjo @cleverbot @evalina @aysha005 for being with me :-) STEEM ON!!!", - "category": "meta", - "children": 1, - "created": "2018-05-21T13:20:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "banjo", - "cleverbot", - "evalina", - "aysha005" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 5844287256, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.023, - "payout_at": "2018-05-28T13:20:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180521t131958921z", - "post_id": 49598134, - "promoted": "0.000 HBD", - "replies": [ - "banjo/re-mahmudulhassan-steemit-firstpost-20180521t132452206z" - ], - "stats": { - "flag_weight": 0.0, - "gray": true, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-21T13:20:03", - "url": "/meta/@steemit/firstpost#@mahmudulhassan/re-steemit-firstpost-20180521t131958921z" - }, - "mahsabmirza/re-steemit-firstpost-20180128t161211537z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "mahsabmirza", - "author_payout_value": "0.000 HBD", - "author_reputation": 34.71, - "beneficiaries": [], - "blacklists": [], - "body": "i am newbie here kindly help me out to move on on this plaform", - "category": "meta", - "children": 0, - "created": "2018-01-28T16:12:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-04T16:12:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180128t161211537z", - "post_id": 28727362, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-28T16:12:21", - "url": "/meta/@steemit/firstpost#@mahsabmirza/re-steemit-firstpost-20180128t161211537z" - }, - "mammasitta/re-stackin-2017825t14817749z": { - "active_votes": [ - { - "rshares": "14972305039", - "voter": "stackin" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - }, - { - "rshares": "0", - "voter": "asherunderwood" - } - ], - "author": "mammasitta", - "author_payout_value": "0.054 HBD", - "author_reputation": 70.33, - "beneficiaries": [ - { - "account": "esteemapp", - "weight": 500 - } - ], - "blacklists": [], - "body": "Hillerious! I have no idea why everybody votes on this comment. I just found it funny that this was the very first steemit post @stackin and I found it through another member I just met", - "category": "meta", - "children": 4, - "created": "2017-08-24T23:48:21", - "curator_payout_value": "0.001 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "esteem/1.4.7", - "community": "esteem", - "format": "markdown+html", - "tags": "meta" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 14972305039, - "parent_author": "stackin", - "parent_permlink": "re-mammasitta-re-steemit-firstpost-20170824t234608820z", - "payout": 0.055, - "payout_at": "2017-08-31T23:48:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-2017825t14817749z", - "post_id": 10991576, - "promoted": "0.000 HBD", - "replies": [ - "stackin/re-mammasitta-re-stackin-2017825t14817749z-20170824t235309382z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T23:48:21", - "url": "/meta/@steemit/firstpost#@mammasitta/re-stackin-2017825t14817749z" - }, - "mammasitta/re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235433264z": { - "active_votes": [ - { - "rshares": "14972305039", - "voter": "stackin" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - } - ], - "author": "mammasitta", - "author_payout_value": "0.059 HBD", - "author_reputation": 70.33, - "beneficiaries": [], - "blacklists": [], - "body": "That's super strange. I have no idea how I got there hahaha", - "category": "meta", - "children": 2, - "created": "2017-08-24T23:54:33", - "curator_payout_value": "0.000 HBD", - "depth": 5, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 14972305039, - "parent_author": "stackin", - "parent_permlink": "re-mammasitta-re-stackin-2017825t14817749z-20170824t235309382z", - "payout": 0.059, - "payout_at": "2017-08-31T23:54:33", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235433264z", - "post_id": 10991949, - "promoted": "0.000 HBD", - "replies": [ - "stackin/re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235551792z", - "ana-maria/re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170825t065706648z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T23:54:33", - "url": "/meta/@steemit/firstpost#@mammasitta/re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235433264z" - }, - "mammasitta/re-steemit-firstpost-20170824t230822305z": { - "active_votes": [ - { - "rshares": "21332131644", - "voter": "makishart" - }, - { - "rshares": "1695158919348", - "voter": "nanzo-scoop" - }, - { - "rshares": "20892317758", - "voter": "mummyimperfect" - }, - { - "rshares": "24009615052", - "voter": "ak2020" - }, - { - "rshares": "320069146316", - "voter": "thecryptofiend" - }, - { - "rshares": "461493708890", - "voter": "rok-sivante" - }, - { - "rshares": "19633067596", - "voter": "juanmiguelsalas" - }, - { - "rshares": "304124094404", - "voter": "mammasitta" - }, - { - "rshares": "257660678694", - "voter": "ezzy" - }, - { - "rshares": "323928862219", - "voter": "freeyourmind" - }, - { - "rshares": "1451757758", - "voter": "juvyjabian" - }, - { - "rshares": "56463551176", - "voter": "bycz" - }, - { - "rshares": "2787638497", - "voter": "bombaybellyrina" - }, - { - "rshares": "48857608388", - "voter": "jens84" - }, - { - "rshares": "119612080599", - "voter": "rea" - }, - { - "rshares": "92718150048", - "voter": "claudiop63" - }, - { - "rshares": "423538016", - "voter": "cryptoninja" - }, - { - "rshares": "330174800820", - "voter": "snowflake" - }, - { - "rshares": "8674603608", - "voter": "samstonehill" - }, - { - "rshares": "14822764839", - "voter": "kenistyles" - }, - { - "rshares": "1632542982", - "voter": "sature" - }, - { - "rshares": "135585620616", - "voter": "penguinpablo" - }, - { - "rshares": "31665725939", - "voter": "uwelang" - }, - { - "rshares": "9151349104", - "voter": "abh12345" - }, - { - "rshares": "188259536228", - "voter": "t-bot" - }, - { - "rshares": "11697403349", - "voter": "ana-maria" - }, - { - "rshares": "17869997409", - "voter": "sjennon" - }, - { - "rshares": "675436090", - "voter": "siniceku" - }, - { - "rshares": "6203617555", - "voter": "steem-meme" - }, - { - "rshares": "9442450304", - "voter": "sunscape" - }, - { - "rshares": "961845156", - "voter": "trans-juanmi" - }, - { - "rshares": "23889030339", - "voter": "steemprentice" - }, - { - "rshares": "30653499783", - "voter": "mafeeva" - }, - { - "rshares": "323431718514", - "voter": "someonewhoisme" - }, - { - "rshares": "12091953423", - "voter": "middle-theory" - }, - { - "rshares": "911891852", - "voter": "beeridiculous" - }, - { - "rshares": "20465439980", - "voter": "maryfavour" - }, - { - "rshares": "4660273279", - "voter": "detlev" - }, - { - "rshares": "448013999", - "voter": "aismor" - }, - { - "rshares": "10794798815", - "voter": "lizanomadsoul" - }, - { - "rshares": "7507362220", - "voter": "velimir" - }, - { - "rshares": "20957544410", - "voter": "luna33" - }, - { - "rshares": "50935060945", - "voter": "reconnectnature" - }, - { - "rshares": "6513879608", - "voter": "mericanhomestead" - }, - { - "rshares": "4848396280", - "voter": "joe28" - }, - { - "rshares": "22458457559", - "voter": "stackin" - }, - { - "rshares": "5306675924", - "voter": "mrwanderlust" - }, - { - "rshares": "1254932346", - "voter": "ilbarone623" - }, - { - "rshares": "0", - "voter": "gnimeets" - }, - { - "rshares": "282601732", - "voter": "kerlund74" - }, - { - "rshares": "232138499", - "voter": "pizzetta" - }, - { - "rshares": "662278313", - "voter": "nirmalmaduranga" - }, - { - "rshares": "5072317727", - "voter": "pkvlogs" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - }, - { - "rshares": "762805700", - "voter": "bodymindsoul" - }, - { - "rshares": "1724792875", - "voter": "skenan" - }, - { - "rshares": "3361081380", - "voter": "massivevibration" - }, - { - "rshares": "0", - "voter": "mr-lahey" - } - ], - "author": "mammasitta", - "author_payout_value": "16.638 HBD", - "author_reputation": 70.33, - "beneficiaries": [], - "blacklists": [], - "body": "Hahha !", - "category": "meta", - "children": 9, - "created": "2017-08-24T23:08:21", - "curator_payout_value": "3.706 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 5096661505904, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 20.344, - "payout_at": "2017-08-31T23:08:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170824t230822305z", - "post_id": 10989570, - "promoted": "0.000 HBD", - "replies": [ - "stackin/re-mammasitta-re-steemit-firstpost-20170824t234608820z", - "tothemoonin2017/re-mammasitta-re-steemit-firstpost-20180111t033524077z", - "mr-lahey/re-mammasitta-re-steemit-firstpost-20180125t015858620z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 55 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T23:08:21", - "url": "/meta/@steemit/firstpost#@mammasitta/re-steemit-firstpost-20170824t230822305z" - }, - "maninjapan1989/re-steemit-firstpost-20170801t133239673z": { - "active_votes": [ - { - "rshares": "107853661", - "voter": "steemerhrn" - }, - { - "rshares": "110439874", - "voter": "awaismuneeb1" - }, - { - "rshares": "10827825836", - "voter": "maninjapan1989" - } - ], - "author": "maninjapan1989", - "author_payout_value": "0.035 HBD", - "author_reputation": 45.11, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is the bomb!!!! Someday I will be the greatest whale in a sea of dolphins :P haha @steemit", - "category": "meta", - "children": 1, - "created": "2017-08-01T13:32:42", - "curator_payout_value": "0.008 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 11046119371, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.043, - "payout_at": "2017-08-08T13:32:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170801t133239673z", - "post_id": 8905935, - "promoted": "0.000 HBD", - "replies": [ - "fatboyjames/re-maninjapan1989-re-steemit-firstpost-20170801t133614690z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-01T13:32:42", - "url": "/meta/@steemit/firstpost#@maninjapan1989/re-steemit-firstpost-20170801t133239673z" - }, - "marekkaminski/re-steemit-firstpost-20180331t141050263z": { - "active_votes": [ - { - "rshares": "499787226", - "voter": "marekkaminski" - } - ], - "author": "marekkaminski", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.43, - "beneficiaries": [], - "blacklists": [], - "body": "Hello :-)\nPozdrawiam!\n\n#zakatkisteemita", - "category": "meta", - "children": 0, - "created": "2018-03-31T14:10:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta", - "zakatkisteemita" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 499787226, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-07T14:10:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180331t141050263z", - "post_id": 41437304, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-31T14:10:18", - "url": "/meta/@steemit/firstpost#@marekkaminski/re-steemit-firstpost-20180331t141050263z" - }, - "martintruther/re-stackin-re-steemit-firstpost-20180312t001847652z": { - "active_votes": [], - "author": "martintruther", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "It definitely is, I'm happy to see my D-Tube subscribes went to 20 the first day I posted a video. That's 1/3 of what I got on youtube in several MONTHS!", - "category": "meta", - "children": 0, - "created": "2018-03-12T00:18:48", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-03-19T00:18:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180312t001847652z", - "post_id": 38059979, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-12T00:18:48", - "url": "/meta/@steemit/firstpost#@martintruther/re-stackin-re-steemit-firstpost-20180312t001847652z" - }, - "mavigozlu/re-steemit-firstpost-20171107t080352739z": { - "active_votes": [], - "author": "mavigozlu", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.2, - "beneficiaries": [], - "blacklists": [], - "body": "good thing i have @steemit", - "category": "meta", - "children": 0, - "created": "2017-11-07T08:03:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-14T08:03:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171107t080352739z", - "post_id": 17063818, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-07T08:03:51", - "url": "/meta/@steemit/firstpost#@mavigozlu/re-steemit-firstpost-20171107t080352739z" - }, - "mazyar/re-steemit-firstpost-20180226t210930550z": { - "active_votes": [], - "author": "mazyar", - "author_payout_value": "0.000 HBD", - "author_reputation": 40.27, - "beneficiaries": [], - "blacklists": [], - "body": "If this account upvotes someone,it would worth about 9400 sbd!!!", - "category": "meta", - "children": 0, - "created": "2018-02-26T21:09:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-05T21:09:30", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180226t210930550z", - "post_id": 35409712, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-26T21:09:30", - "url": "/meta/@steemit/firstpost#@mazyar/re-steemit-firstpost-20180226t210930550z" - }, - "mburakolgun/re-steemit-firstpost-20180208t150509648z": { - "active_votes": [], - "author": "mburakolgun", - "author_payout_value": "0.000 HBD", - "author_reputation": 39.15, - "beneficiaries": [], - "blacklists": [], - "body": "Hello @dan, @ned, @steemit, @misterdelegation\nWe need your support to Steemit Turkey. My name is @mburakolgun from Turkey. I'm IOS Developer and Programmer.\n\nAltough it has not been so long since i met Steemit, i though, as software developer, a that we need to have our own platform as a Turkish society. I started to work on a website that can be a reference for users from Turkey and I am delightful as I am sharing Steemitr project which I have been working on for a while. We are aiming that project to meet new users from Turkey who searched Steemit, to generate high quality contents of ours, to help each other and to provide an area which will contributes you after a while.\n\nPlease browse for project presentation. \nThanks\n\nhttps://steemit.com/steemitr/@mburakolgun/steemitr-com-or-tuerkiye-nin-steemit-agi-yayinda-or-turkey-s-steemit-network-online", - "category": "meta", - "children": 0, - "created": "2018-02-08T15:05:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "busy/2.3.0", - "community": "steemitr", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-15T15:05:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180208t150509648z", - "post_id": 31252473, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-08T15:05:09", - "url": "/meta/@steemit/firstpost#@mburakolgun/re-steemit-firstpost-20180208t150509648z" - }, - "mcreg/re-steemit-firstpost-20171116t032926766z": { - "active_votes": [], - "author": "mcreg", - "author_payout_value": "0.000 HBD", - "author_reputation": 31.92, - "beneficiaries": [], - "blacklists": [], - "body": "This post looks like the bible of steemit. OLD BUT GOLD.", - "category": "meta", - "children": 0, - "created": "2017-11-16T03:29:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-23T03:29:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171116t032926766z", - "post_id": 17821338, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-16T03:29:27", - "url": "/meta/@steemit/firstpost#@mcreg/re-steemit-firstpost-20171116t032926766z" - }, - "medusade/re-steemit-firstpost-20180405t170316967z": { - "active_votes": [ - { - "rshares": "910838150", - "voter": "morahn" - } - ], - "author": "medusade", - "author_payout_value": "0.000 HBD", - "author_reputation": 33.61, - "beneficiaries": [], - "blacklists": [], - "body": "The exchange rate of STEEM should be called ENTHALPY\n\nfrom the term used in Thermodynamics...", - "category": "meta", - "children": 0, - "created": "2018-04-05T17:03:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 910838150, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-12T17:03:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180405t170316967z", - "post_id": 42225379, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-05T17:03:18", - "url": "/meta/@steemit/firstpost#@medusade/re-steemit-firstpost-20180405t170316967z" - }, - "melvinbonner/re-steemit-firstpost-20170930t182052948z": { - "active_votes": [ - { - "rshares": "754485857", - "voter": "melvinbonner" - } - ], - "author": "melvinbonner", - "author_payout_value": "0.000 HBD", - "author_reputation": 32.6, - "beneficiaries": [], - "blacklists": [], - "body": "I have tried many things online, but steemit has to be the easiest to learn. I'm very happy that I made the decision to join.", - "category": "meta", - "children": 0, - "created": "2017-09-30T18:20:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 754485857, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-07T18:20:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170930t182052948z", - "post_id": 14176609, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-30T18:20:57", - "url": "/meta/@steemit/firstpost#@melvinbonner/re-steemit-firstpost-20170930t182052948z" - }, - "menkarbit/re-steemit-firstpost-20190522t025639257z": { - "active_votes": [], - "author": "menkarbit", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.31, - "beneficiaries": [], - "blacklists": [], - "body": "Greetings from Brazil!", - "category": "meta", - "children": 0, - "created": "2019-05-22T02:56:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-05-29T02:56:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20190522t025639257z", - "post_id": 75131499, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-05-22T02:56:39", - "url": "/meta/@steemit/firstpost#@menkarbit/re-steemit-firstpost-20190522t025639257z" - }, - "michaelabbas/re-stackin-re-steemit-firstpost-20180813t023057209z": { - "active_votes": [], - "author": "michaelabbas", - "author_payout_value": "0.000 HBD", - "author_reputation": 44.65, - "beneficiaries": [], - "blacklists": [], - "body": "I am LOVIN' IT !! THANKS Mr. @STEEMIT \ud83d\ude4c\ud83c\udffc\ud83d\udcaa\ud83c\udffc\ud83d\udcaf", - "category": "meta", - "children": 0, - "created": "2018-08-13T02:31:00", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-08-20T02:31:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180813t023057209z", - "post_id": 59535775, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-08-13T02:31:33", - "url": "/meta/@steemit/firstpost#@michaelabbas/re-stackin-re-steemit-firstpost-20180813t023057209z" - }, - "mikej/re-steemit-firstpost-20170618t041022557z": { - "active_votes": [ - { - "rshares": "1950418132", - "voter": "estronitex" - } - ], - "author": "mikej", - "author_payout_value": "0.038 HBD", - "author_reputation": 50.59, - "beneficiaries": [], - "blacklists": [], - "body": "I love this place!", - "category": "meta", - "children": 0, - "created": "2017-06-18T04:10:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1950418132, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.038, - "payout_at": "2017-06-25T04:10:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170618t041022557z", - "post_id": 4245377, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-18T04:10:21", - "url": "/meta/@steemit/firstpost#@mikej/re-steemit-firstpost-20170618t041022557z" - }, - "mikev/re-steemit-firstpost-20170620t052317893z": { - "active_votes": [ - { - "rshares": "218768369", - "voter": "mikev" - } - ], - "author": "mikev", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.19, - "beneficiaries": [], - "blacklists": [], - "body": "

Welcome to STEEM !

\n![807179.gif](https://steemitimages.com/DQmTsgtXYMjkQnV1AQeqdN2NC5of77Rirh2meQPzMdUVa66/807179.gif)", - "category": "meta", - "children": 0, - "created": "2017-06-20T05:23:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmTsgtXYMjkQnV1AQeqdN2NC5of77Rirh2meQPzMdUVa66/807179.gif" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 218768369, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-27T05:23:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170620t052317893z", - "post_id": 4400125, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-20T05:24:36", - "url": "/meta/@steemit/firstpost#@mikev/re-steemit-firstpost-20170620t052317893z" - }, - "mkucukbekmez/re-steemit-firstpost-20180505t044835104z": { - "active_votes": [ - { - "rshares": "180643254", - "voter": "mkucukbekmez" - } - ], - "author": "mkucukbekmez", - "author_payout_value": "0.000 HBD", - "author_reputation": -1.85, - "beneficiaries": [], - "blacklists": [ - "reputation-0" - ], - "body": "Hey @steemit\n\nCan you help a lot of people watch that video on my profile? It's a charity campaign.\n\nhttps://steemit.com/tr/@mkucukbekmez/if-10-million-people-watch-this-video-life-village-will-be-established-en-tr-or-busy-org", - "category": "meta", - "children": 0, - "created": "2018-05-05T04:48:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "busy/2.4.0", - "community": "busy", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 180643254, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-05-12T04:48:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180505t044835104z", - "post_id": 47009138, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": true, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-05T04:48:39", - "url": "/meta/@steemit/firstpost#@mkucukbekmez/re-steemit-firstpost-20180505t044835104z" - }, - "moataz/re-steemit-firstpost-20170606t220153482z": { - "active_votes": [], - "author": "moataz", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.38, - "beneficiaries": [], - "blacklists": [], - "body": "I'm here!", - "category": "meta", - "children": 0, - "created": "2017-06-06T22:01:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-13T22:01:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170606t220153482z", - "post_id": 3500582, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-06T22:01:57", - "url": "/meta/@steemit/firstpost#@moataz/re-steemit-firstpost-20170606t220153482z" - }, - "moeenali/re-steemit-firstpost-20180207t160328782z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "moeenali", - "author_payout_value": "0.000 HBD", - "author_reputation": 69.36, - "beneficiaries": [], - "blacklists": [], - "body": "good platform", - "category": "meta", - "children": 0, - "created": "2018-02-07T16:03:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-14T16:03:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180207t160328782z", - "post_id": 31047037, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-07T16:03:27", - "url": "/meta/@steemit/firstpost#@moeenali/re-steemit-firstpost-20180207t160328782z" - }, - "moemanmoesly/re-steemit-firstpost-20170624t220649051z": { - "active_votes": [], - "author": "moemanmoesly", - "author_payout_value": "0.000 HBD", - "author_reputation": 67.22, - "beneficiaries": [], - "blacklists": [], - "body": "Are you the whale that i hear so much about?", - "category": "meta", - "children": 0, - "created": "2017-06-24T22:06:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-01T22:06:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170624t220649051z", - "post_id": 4965289, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-24T22:06:48", - "url": "/meta/@steemit/firstpost#@moemanmoesly/re-steemit-firstpost-20170624t220649051z" - }, - "mominsdt/re-boomshikha-re-stackin-re-steemit-firstpost-20180204t150750239z": { - "active_votes": [ - { - "rshares": "2586027606", - "voter": "boomshikha" - }, - { - "rshares": "506931755", - "voter": "nil25" - } - ], - "author": "mominsdt", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.42, - "beneficiaries": [], - "blacklists": [], - "body": "# Hi, This is @mominsdt\nBe Steemit celebrity \nGood Luck", - "category": "meta", - "children": 1, - "created": "2018-02-04T15:07:57", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "mominsdt" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3092959361, - "parent_author": "boomshikha", - "parent_permlink": "re-stackin-re-steemit-firstpost-20170825t013613361z", - "payout": 0.0, - "payout_at": "2018-02-11T15:07:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-boomshikha-re-stackin-re-steemit-firstpost-20180204t150750239z", - "post_id": 30363210, - "promoted": "0.000 HBD", - "replies": [ - "sutter/re-mominsdt-re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035208159z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-04T15:07:57", - "url": "/meta/@steemit/firstpost#@mominsdt/re-boomshikha-re-stackin-re-steemit-firstpost-20180204t150750239z" - }, - "mominsdt/re-gomain-re-stackin-re-steemit-firstpost-20180204t151047773z": { - "active_votes": [ - { - "rshares": "519221010", - "voter": "nil25" - } - ], - "author": "mominsdt", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.42, - "beneficiaries": [], - "blacklists": [], - "body": "# Hi, This @mominsdt\nYES it is.\nNo confusion", - "category": "meta", - "children": 1, - "created": "2018-02-04T15:11:00", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "mominsdt" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 519221010, - "parent_author": "gomain", - "parent_permlink": "re-stackin-re-steemit-firstpost-20180107t195657460z", - "payout": 0.0, - "payout_at": "2018-02-11T15:11:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gomain-re-stackin-re-steemit-firstpost-20180204t151047773z", - "post_id": 30363716, - "promoted": "0.000 HBD", - "replies": [ - "ritikagupta/re-mominsdt-re-gomain-re-stackin-re-steemit-firstpost-20180522t061702119z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-04T15:11:30", - "url": "/meta/@steemit/firstpost#@mominsdt/re-gomain-re-stackin-re-steemit-firstpost-20180204t151047773z" - }, - "mominsdt/re-hussnain-re-stackin-re-steemit-firstpost-20180204t151415346z": { - "active_votes": [], - "author": "mominsdt", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.42, - "beneficiaries": [], - "blacklists": [], - "body": "# Hi This is @mominsdt\nyes, man", - "category": "meta", - "children": 0, - "created": "2018-02-04T15:14:21", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "mominsdt" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "hussnain", - "parent_permlink": "re-stackin-re-steemit-firstpost-20171218t225148759z", - "payout": 0.0, - "payout_at": "2018-02-11T15:14:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-hussnain-re-stackin-re-steemit-firstpost-20180204t151415346z", - "post_id": 30364348, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-04T15:14:21", - "url": "/meta/@steemit/firstpost#@mominsdt/re-hussnain-re-stackin-re-steemit-firstpost-20180204t151415346z" - }, - "mominsdt/re-stackin-re-steemit-firstpost-20180204t150331514z": { - "active_votes": [], - "author": "mominsdt", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.42, - "beneficiaries": [], - "blacklists": [], - "body": "# Hi, This is @mominsdt\nI joined steemit\nPlease be my follower\nI will be same", - "category": "meta", - "children": 0, - "created": "2018-02-04T15:03:39", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "mominsdt" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-02-11T15:03:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180204t150331514z", - "post_id": 30362482, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-04T15:03:39", - "url": "/meta/@steemit/firstpost#@mominsdt/re-stackin-re-steemit-firstpost-20180204t150331514z" - }, - "mooncryption/re-steemit-firstpost-20170922t043040342z": { - "active_votes": [ - { - "rshares": "25862748588", - "voter": "wbulot" - }, - { - "rshares": "6366623342", - "voter": "mooncryption" - }, - { - "rshares": "821774572", - "voter": "roylee" - } - ], - "author": "mooncryption", - "author_payout_value": "0.084 HBD", - "author_reputation": 62.69, - "beneficiaries": [], - "blacklists": [], - "body": "Haha, it's funny to see how much Steemit has grown from this initial introduction post. It's a bit sad to see that @steemit's first/only post introducing the service gained less than $2 in rewards, but it's amazing to see how much Steemit has grown since then, with many posts gaining hundreds of dollars.", - "category": "meta", - "children": 0, - "created": "2017-09-22T04:30:39", - "curator_payout_value": "0.005 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 33051146502, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.089, - "payout_at": "2017-09-29T04:30:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170922t043040342z", - "post_id": 13453617, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-22T04:30:39", - "url": "/meta/@steemit/firstpost#@mooncryption/re-steemit-firstpost-20170922t043040342z" - }, - "movement19/re-steemit-firstpost-20180218t232705428z": { - "active_votes": [], - "author": "movement19", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.5, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit rocks!\n![m19barcode.jpg](https://steemitimages.com/DQmRJHmHnPS1iMff7NmQKHCn9ULEogFFnwLZBkYfVoAJmka/m19barcode.jpg)", - "category": "meta", - "children": 0, - "created": "2018-02-18T23:27:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmRJHmHnPS1iMff7NmQKHCn9ULEogFFnwLZBkYfVoAJmka/m19barcode.jpg" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-25T23:27:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180218t232705428z", - "post_id": 33617020, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-18T23:27:03", - "url": "/meta/@steemit/firstpost#@movement19/re-steemit-firstpost-20180218t232705428z" - }, - "mr-lahey/re-mammasitta-re-steemit-firstpost-20180125t015858620z": { - "active_votes": [ - { - "rshares": "-796104771", - "voter": "rewardpoolrape" - } - ], - "author": "mr-lahey", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "lol", - "category": "meta", - "children": 0, - "created": "2018-01-25T01:58:54", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": -796104771, - "parent_author": "mammasitta", - "parent_permlink": "re-steemit-firstpost-20170824t230822305z", - "payout": 0.0, - "payout_at": "2018-02-01T01:58:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-mammasitta-re-steemit-firstpost-20180125t015858620z", - "post_id": 27880833, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-25T01:58:54", - "url": "/meta/@steemit/firstpost#@mr-lahey/re-mammasitta-re-steemit-firstpost-20180125t015858620z" - }, - "mr-lahey/re-stackin-re-steemit-firstpost-20180125t015744901z": { - "active_votes": [], - "author": "mr-lahey", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Couldn't agree more bub!", - "category": "meta", - "children": 0, - "created": "2018-01-25T01:57:42", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-02-01T01:57:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180125t015744901z", - "post_id": 27880630, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-25T01:57:42", - "url": "/meta/@steemit/firstpost#@mr-lahey/re-stackin-re-steemit-firstpost-20180125t015744901z" - }, - "mrrifat1/re-steemit-firstpost-20171207t110825462z": { - "active_votes": [ - { - "rshares": "133672549", - "voter": "maxibyte" - }, - { - "rshares": "128531142", - "voter": "mdsaidur" - }, - { - "rshares": "1098884617", - "voter": "olivaw" - } - ], - "author": "mrrifat1", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.97, - "beneficiaries": [], - "blacklists": [], - "body": "Amazing!I am lucky to use Steemit.I wasn't too late to use Steemit.", - "category": "meta", - "children": 0, - "created": "2017-12-07T11:08:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1361088308, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-14T11:08:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171207t110825462z", - "post_id": 19703363, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-07T11:08:15", - "url": "/meta/@steemit/firstpost#@mrrifat1/re-steemit-firstpost-20171207t110825462z" - }, - "mrskatie/re-steemit-firstpost-20180107t205748221z": { - "active_votes": [], - "author": "mrskatie", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.17, - "beneficiaries": [], - "blacklists": [], - "body": "I believe we will see the benefit of this application in the coming days.", - "category": "meta", - "children": 0, - "created": "2018-01-07T20:03:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-14T20:03:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180107t205748221z", - "post_id": 24218450, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-07T20:03:21", - "url": "/meta/@steemit/firstpost#@mrskatie/re-steemit-firstpost-20180107t205748221z" - }, - "muliadi/re-steemit-firstpost-20170925t081014522z": { - "active_votes": [], - "author": "muliadi", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.78, - "beneficiaries": [], - "blacklists": [], - "body": "nice \n\nsee this link ineed your advice\nhttps://steemit.com/photography/@muliadi/macro-shot-photography-2017921t175728227z", - "category": "meta", - "children": 0, - "created": "2017-09-25T08:09:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://steemit.com/photography/@muliadi/macro-shot-photography-2017921t175728227z" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-02T08:09:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170925t081014522z", - "post_id": 13701836, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-25T08:09:39", - "url": "/meta/@steemit/firstpost#@muliadi/re-steemit-firstpost-20170925t081014522z" - }, - "murizalalhabsyi/re-bahagia-arbi-re-steemit-firstpost-20170824t062537081z": { - "active_votes": [], - "author": "murizalalhabsyi", - "author_payout_value": "0.000 HBD", - "author_reputation": 26.34, - "beneficiaries": [], - "blacklists": [], - "body": "Please follow my steemit and cooperation. I thank you very much", - "category": "meta", - "children": 1, - "created": "2017-08-24T06:25:45", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "bahagia-arbi", - "parent_permlink": "re-steemit-firstpost-20170824t062329396z", - "payout": 0.0, - "payout_at": "2017-08-31T06:25:45", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-bahagia-arbi-re-steemit-firstpost-20170824t062537081z", - "post_id": 10922194, - "promoted": "0.000 HBD", - "replies": [ - "bahagia-arbi/re-murizalalhabsyi-2017824t133949978z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T06:25:45", - "url": "/meta/@steemit/firstpost#@murizalalhabsyi/re-bahagia-arbi-re-steemit-firstpost-20170824t062537081z" - }, - "mxzn/re-justyy-re-steemit-firstpost-20170715t084216221z": { - "active_votes": [ - { - "rshares": "177646674", - "voter": "mxzn" - }, - { - "rshares": "0", - "voter": "maninjapan1989" - } - ], - "author": "mxzn", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.13, - "beneficiaries": [], - "blacklists": [], - "body": "Upvoted!", - "category": "meta", - "children": 0, - "created": "2017-07-15T08:45:09", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 177646674, - "parent_author": "justyy", - "parent_permlink": "re-steemit-firstpost-20170715t082135653z", - "payout": 0.0, - "payout_at": "2017-07-22T08:45:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-justyy-re-steemit-firstpost-20170715t084216221z", - "post_id": 7247554, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-15T08:45:09", - "url": "/meta/@steemit/firstpost#@mxzn/re-justyy-re-steemit-firstpost-20170715t084216221z" - }, - "nc-mgtow/re-steemit-firstpost-20170916t153924178z": { - "active_votes": [ - { - "rshares": "1424785659", - "voter": "nc-mgtow" - } - ], - "author": "nc-mgtow", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.14, - "beneficiaries": [], - "blacklists": [], - "body": "Would it be possible for you to vote up my post or comments so I can get my reputation score out of the negative?", - "category": "meta", - "children": 0, - "created": "2017-09-16T15:39:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1424785659, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-23T15:39:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170916t153924178z", - "post_id": 12997363, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-16T15:39:24", - "url": "/meta/@steemit/firstpost#@nc-mgtow/re-steemit-firstpost-20170916t153924178z" - }, - "netizens/re-netizens-re-steemit-firstpost-20180604t162238822z": { - "active_votes": [ - { - "rshares": "235967600", - "voter": "dwainus" - } - ], - "author": "netizens", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.0, - "beneficiaries": [], - "blacklists": [], - "body": "Alright.", - "category": "meta", - "children": 0, - "created": "2018-06-04T16:22:42", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 235967600, - "parent_author": "netizens", - "parent_permlink": "re-steemit-firstpost-20180604t045855195z", - "payout": 0.0, - "payout_at": "2018-06-11T16:22:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-netizens-re-steemit-firstpost-20180604t162238822z", - "post_id": 51656385, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-04T16:22:42", - "url": "/meta/@steemit/firstpost#@netizens/re-netizens-re-steemit-firstpost-20180604t162238822z" - }, - "netizens/re-steemit-firstpost-20180604t045855195z": { - "active_votes": [ - { - "rshares": "1954675706", - "voter": "sbi3" - }, - { - "rshares": "298892148", - "voter": "netizens" - } - ], - "author": "netizens", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.0, - "beneficiaries": [], - "blacklists": [], - "body": "Alright.", - "category": "meta", - "children": 1, - "created": "2018-06-04T04:59:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 2253567854, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-06-11T04:59:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180604t045855195z", - "post_id": 51583324, - "promoted": "0.000 HBD", - "replies": [ - "netizens/re-netizens-re-steemit-firstpost-20180604t162238822z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-04T04:59:06", - "url": "/meta/@steemit/firstpost#@netizens/re-steemit-firstpost-20180604t045855195z" - }, - "nicksteele/re-steemit-firstpost-20170912t215147483z": { - "active_votes": [], - "author": "nicksteele", - "author_payout_value": "0.000 HBD", - "author_reputation": 27.88, - "beneficiaries": [], - "blacklists": [], - "body": "I'm glad to be here! I look forward to writing great stories and interacting with a fun audience :)", - "category": "meta", - "children": 0, - "created": "2017-09-12T21:51:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-19T21:51:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170912t215147483z", - "post_id": 12676400, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-12T21:51:48", - "url": "/meta/@steemit/firstpost#@nicksteele/re-steemit-firstpost-20170912t215147483z" - }, - "nickyhavey/nickyhavey-re-steemit-firstpost-20190719t091238925z": { - "active_votes": [ - { - "rshares": "0", - "voter": "cosmophobia" - } - ], - "author": "nickyhavey", - "author_payout_value": "0.000 HBD", - "author_reputation": 70.76, - "beneficiaries": [], - "blacklists": [], - "body": "Genesis post? \ud83e\udd14\n\nPosted using [Partiko Android](https://partiko.app/referral/nickyhavey)", - "category": "meta", - "children": 0, - "created": "2019-07-19T09:12:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "partiko", - "client": "android" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-07-26T09:12:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "nickyhavey-re-steemit-firstpost-20190719t091238925z", - "post_id": 78109290, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-07-19T09:12:39", - "url": "/meta/@steemit/firstpost#@nickyhavey/nickyhavey-re-steemit-firstpost-20190719t091238925z" - }, - "nideo/re-steemit-firstpost-20171102t212222026z": { - "active_votes": [ - { - "rshares": "122777944423", - "voter": "nideo" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "nideo", - "author_payout_value": "0.189 HBD", - "author_reputation": 52.84, - "beneficiaries": [], - "blacklists": [], - "body": "this post is historical now :]", - "category": "meta", - "children": 0, - "created": "2017-11-02T21:22:21", - "curator_payout_value": "0.062 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 122777944423, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.251, - "payout_at": "2017-11-09T21:22:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171102t212222026z", - "post_id": 16732864, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-02T21:22:21", - "url": "/meta/@steemit/firstpost#@nideo/re-steemit-firstpost-20171102t212222026z" - }, - "nilim/re-steemit-firstpost-20170622t164733895z": { - "active_votes": [], - "author": "nilim", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.06, - "beneficiaries": [], - "blacklists": [], - "body": "hy welcome ...", - "category": "meta", - "children": 0, - "created": "2017-06-22T16:47:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-29T16:47:36", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170622t164733895z", - "post_id": 4690290, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-22T16:47:36", - "url": "/meta/@steemit/firstpost#@nilim/re-steemit-firstpost-20170622t164733895z" - }, - "nithin7237/re-steemit-firstpost-20180830t173842541z": { - "active_votes": [], - "author": "nithin7237", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.51, - "beneficiaries": [], - "blacklists": [], - "body": "# It's Proud to in STEEMIT\n\n**I'm in Love this Earning Platform! THANK YOU @steemit**", - "category": "meta", - "children": 0, - "created": "2018-08-30T17:38:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-09-06T17:38:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180830t173842541z", - "post_id": 61145294, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-08-30T17:38:48", - "url": "/meta/@steemit/firstpost#@nithin7237/re-steemit-firstpost-20180830t173842541z" - }, - "novacomics/re-steemit-firstpost-20171012t002948783z": { - "active_votes": [], - "author": "novacomics", - "author_payout_value": "0.000 HBD", - "author_reputation": 17.03, - "beneficiaries": [], - "blacklists": [], - "body": "Hola buenas noches, inicie hace una hora, subi mi publicacion de presentacion y me di cuenta de que esta trasnparente, como si me la fueran Baneado!! que pasa quiero rspuestas de ustedes @steemit @lince ..muchas gracias! Hello good evening, I started an hour ago, I uploaded my presentation publication and I realized that it is trasnparente, as if I were banned !! What happens I want to answer you @steemit @lince .. thank you very much!", - "category": "meta", - "children": 0, - "created": "2017-10-12T00:30:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "lince" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-19T00:30:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171012t002948783z", - "post_id": 15096916, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-12T00:30:12", - "url": "/meta/@steemit/firstpost#@novacomics/re-steemit-firstpost-20171012t002948783z" - }, - "nurdinnakaturi/re-steemit-firstpost-20171125t102301879z": { - "active_votes": [], - "author": "nurdinnakaturi", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.82, - "beneficiaries": [], - "blacklists": [], - "body": "nice post and pic\nDont forget to upvote follow & resteem\n@nurdinnakaturi", - "category": "meta", - "children": 0, - "created": "2017-11-25T10:23:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "nurdinnakaturi" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-02T10:23:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171125t102301879z", - "post_id": 18656848, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-25T10:23:00", - "url": "/meta/@steemit/firstpost#@nurdinnakaturi/re-steemit-firstpost-20171125t102301879z" - }, - "nurmasyithah/re-steemit-firstpost-20180331t172425587z": { - "active_votes": [], - "author": "nurmasyithah", - "author_payout_value": "0.000 HBD", - "author_reputation": 27.76, - "beneficiaries": [], - "blacklists": [], - "body": "pioner, :)", - "category": "meta", - "children": 0, - "created": "2018-04-01T12:02:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-08T12:02:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180331t172425587z", - "post_id": 41561105, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-01T12:02:24", - "url": "/meta/@steemit/firstpost#@nurmasyithah/re-steemit-firstpost-20180331t172425587z" - }, - "official-mo/re-steemit-firstpost-20180225t142313738z": { - "active_votes": [], - "author": "official-mo", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.74, - "beneficiaries": [], - "blacklists": [], - "body": "Ok.\nBut i dont know why i dont get upvotes", - "category": "meta", - "children": 0, - "created": "2018-02-25T14:23:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-04T14:23:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180225t142313738z", - "post_id": 35122631, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-25T14:23:18", - "url": "/meta/@steemit/firstpost#@official-mo/re-steemit-firstpost-20180225t142313738z" - }, - "ohrak22/re-steemit-firstpost-20180215t053742695z": { - "active_votes": [ - { - "rshares": "350235487", - "voter": "majidsteemit" - } - ], - "author": "ohrak22", - "author_payout_value": "0.000 HBD", - "author_reputation": 39.76, - "beneficiaries": [], - "blacklists": [], - "body": "Hello steemit!", - "category": "meta", - "children": 0, - "created": "2018-02-15T05:37:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 350235487, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-22T05:37:45", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180215t053742695z", - "post_id": 32755950, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-15T05:37:45", - "url": "/meta/@steemit/firstpost#@ohrak22/re-steemit-firstpost-20180215t053742695z" - }, - "onceuponmylife/re-stackin-re-steemit-firstpost-20180502t003931757z": { - "active_votes": [ - { - "rshares": "0", - "voter": "calebotamus" - } - ], - "author": "onceuponmylife", - "author_payout_value": "0.000 HBD", - "author_reputation": 29.56, - "beneficiaries": [], - "blacklists": [], - "body": "yes it is.. i joined a while ago but i am still a little confused with whole concept. however im not giving up. \u270c", - "category": "meta", - "children": 0, - "created": "2018-05-02T00:39:36", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-05-09T00:39:36", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180502t003931757z", - "post_id": 46458557, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-02T00:39:36", - "url": "/meta/@steemit/firstpost#@onceuponmylife/re-stackin-re-steemit-firstpost-20180502t003931757z" - }, - "online12hour/re-steemit-firstpost-20171007t083026835z": { - "active_votes": [], - "author": "online12hour", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.16, - "beneficiaries": [], - "blacklists": [], - "body": "how is this account have huge steem power?", - "category": "meta", - "children": 0, - "created": "2017-10-07T08:30:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-14T08:30:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171007t083026835z", - "post_id": 14694298, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-07T08:30:27", - "url": "/meta/@steemit/firstpost#@online12hour/re-steemit-firstpost-20171007t083026835z" - }, - "oraclefrequency/re-steemit-firstpost-20180116t004211313z": { - "active_votes": [ - { - "rshares": "357987600", - "voter": "moonhologram" - }, - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "oraclefrequency", - "author_payout_value": "0.000 HBD", - "author_reputation": 45.25, - "beneficiaries": [], - "blacklists": [], - "body": "A little late to the party, but I'm very glad to have finally made it over to Steemit. I'm bringing my Youtube and other social media followers with me, in an attempt to help grow the platform even more!", - "category": "meta", - "children": 0, - "created": "2018-01-16T00:42:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 357987600, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-23T00:42:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180116t004211313z", - "post_id": 25933114, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-16T00:42:12", - "url": "/meta/@steemit/firstpost#@oraclefrequency/re-steemit-firstpost-20180116t004211313z" - }, - "oraclefrequency/re-steemit-firstpost-20180615t081110205z": { - "active_votes": [], - "author": "oraclefrequency", - "author_payout_value": "0.000 HBD", - "author_reputation": 45.25, - "beneficiaries": [], - "blacklists": [], - "body": "Awesome to see the original @steemit post two years later.\n\nHow far we've come....\n\nPlease check out my page - @oraclefrequency", - "category": "meta", - "children": 0, - "created": "2018-06-15T08:11:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "oraclefrequency" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-06-22T08:11:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180615t081110205z", - "post_id": 53083433, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-15T08:11:21", - "url": "/meta/@steemit/firstpost#@oraclefrequency/re-steemit-firstpost-20180615t081110205z" - }, - "oregontravel/re-steemit-firstpost-20180227t081732054z": { - "active_votes": [ - { - "rshares": "365866067", - "voter": "shofaemily" - }, - { - "rshares": "233817263", - "voter": "mmmyyyzzz" - } - ], - "author": "oregontravel", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.47, - "beneficiaries": [], - "blacklists": [], - "body": "This was a brilliant idea! Thank you for creating a rewarding platform!! :)", - "category": "meta", - "children": 0, - "created": "2018-02-27T08:17:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 599683330, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-06T08:17:33", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180227t081732054z", - "post_id": 35511896, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-27T08:17:33", - "url": "/meta/@steemit/firstpost#@oregontravel/re-steemit-firstpost-20180227t081732054z" - }, - "otemzi/re-steemit-firstpost-20171206t224513157z": { - "active_votes": [ - { - "rshares": "473496580189", - "voter": "idealist" - }, - { - "rshares": "3768252602", - "voter": "nuges" - }, - { - "rshares": "9055034104", - "voter": "dayjee" - }, - { - "rshares": "8034444116", - "voter": "holabisi" - } - ], - "author": "otemzi", - "author_payout_value": "1.472 HBD", - "author_reputation": 67.83, - "beneficiaries": [], - "blacklists": [], - "body": "WOW the first post ever!", - "category": "meta", - "children": 0, - "created": "2017-12-06T22:45:21", - "curator_payout_value": "0.321 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 494354311011, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 1.793, - "payout_at": "2017-12-13T22:45:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171206t224513157z", - "post_id": 19661609, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-06T22:45:21", - "url": "/meta/@steemit/firstpost#@otemzi/re-steemit-firstpost-20171206t224513157z" - }, - "padmakshi/re-steemit-firstpost-20170901t160649133z": { - "active_votes": [], - "author": "padmakshi", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.35, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is amazing ! Thanks for this social media platform", - "category": "meta", - "children": 0, - "created": "2017-09-01T16:06:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-08T16:06:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170901t160649133z", - "post_id": 11676857, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-01T16:06:51", - "url": "/meta/@steemit/firstpost#@padmakshi/re-steemit-firstpost-20170901t160649133z" - }, - "palani/re-steemit-firstpost-20170926t091508449z": { - "active_votes": [ - { - "rshares": "2008282722", - "voter": "big.mama" - }, - { - "rshares": "524535871", - "voter": "palani" - } - ], - "author": "palani", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.63, - "beneficiaries": [], - "blacklists": [], - "body": "**Give me some love aka upvot**", - "category": "meta", - "children": 0, - "created": "2017-09-26T09:15:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 2532818593, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-03T09:15:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170926t091508449z", - "post_id": 13792383, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-26T09:15:06", - "url": "/meta/@steemit/firstpost#@palani/re-steemit-firstpost-20170926t091508449z" - }, - "paradoxofchoice/re-steemit-firstpost-20170720t042055570z": { - "active_votes": [ - { - "rshares": "2371695903", - "voter": "alphacore" - }, - { - "rshares": "5361195690", - "voter": "butterfly-effect" - }, - { - "rshares": "-58033476", - "voter": "ivylifestyle" - } - ], - "author": "paradoxofchoice", - "author_payout_value": "0.025 HBD", - "author_reputation": 42.81, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is a social media platform where anyone can earn STEEM\n-True story", - "category": "meta", - "children": 0, - "created": "2017-07-20T04:20:54", - "curator_payout_value": "0.006 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 7674858117, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.031, - "payout_at": "2017-07-27T04:20:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170720t042055570z", - "post_id": 7681739, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-20T04:20:54", - "url": "/meta/@steemit/firstpost#@paradoxofchoice/re-steemit-firstpost-20170720t042055570z" - }, - "patrick-g/re-steemit-firstpost-20160722t201007967z": { - "active_votes": [ - { - "rshares": "689526018", - "voter": "patrick-g" - }, - { - "rshares": "46092586", - "voter": "matt876" - }, - { - "rshares": "52153025", - "voter": "f1111111" - } - ], - "author": "patrick-g", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.05, - "beneficiaries": [], - "blacklists": [], - "body": "You can also vote on your posts if you want.:) As in when you reply to other posts. Those are posts you can vote yourself up on.... :)", - "category": "meta", - "children": 0, - "created": "2016-07-22T20:10:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 787771629, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160722t201007967z", - "post_id": 203716, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-22T20:10:09", - "url": "/meta/@steemit/firstpost#@patrick-g/re-steemit-firstpost-20160722t201007967z" - }, - "patriot/re-steemit-firstpost-20170903t012448551z": { - "active_votes": [ - { - "rshares": "103441916", - "voter": "manuel78" - } - ], - "author": "patriot", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.49, - "beneficiaries": [], - "blacklists": [], - "body": "I love steemit so much", - "category": "meta", - "children": 0, - "created": "2017-09-03T01:24:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 103441916, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-10T01:24:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170903t012448551z", - "post_id": 11793761, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-03T01:24:48", - "url": "/meta/@steemit/firstpost#@patriot/re-steemit-firstpost-20170903t012448551z" - }, - "paul.atreides/re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t061937055z": { - "active_votes": [ - { - "rshares": "1149157331", - "voter": "improv" - } - ], - "author": "paul.atreides", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.67, - "beneficiaries": [], - "blacklists": [], - "body": "Don\u2019t know what the money is for but my wish is for it to peg the price of POCKET tokens at 1 Steem each.", - "category": "meta", - "children": 1, - "created": "2018-01-09T06:19:36", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1149157331, - "parent_author": "improv", - "parent_permlink": "re-paulatreides-re-improv-re-steemit-firstpost-20180109t001947344z", - "payout": 0.0, - "payout_at": "2018-01-16T06:19:36", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t061937055z", - "post_id": 24517724, - "promoted": "0.000 HBD", - "replies": [ - "improv/re-paulatreides-re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t084809927z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-09T06:19:36", - "url": "/meta/@steemit/firstpost#@paul.atreides/re-improv-re-paulatreides-re-improv-re-steemit-firstpost-20180109t061937055z" - }, - "paul.atreides/re-improv-re-steemit-firstpost-20180108t233620916z": { - "active_votes": [ - { - "rshares": "1166990364", - "voter": "improv" - } - ], - "author": "paul.atreides", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.67, - "beneficiaries": [], - "blacklists": [], - "body": "You've found the Great Pumpkin, Charlie Brown! Behold, this is the very first Steemit post!! Only a select few ever find it. I think now you get to make a wish!", - "category": "meta", - "children": 3, - "created": "2018-01-08T23:36:21", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1166990364, - "parent_author": "improv", - "parent_permlink": "re-steemit-firstpost-20180108t213229597z", - "payout": 0.0, - "payout_at": "2018-01-15T23:36:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-improv-re-steemit-firstpost-20180108t233620916z", - "post_id": 24458789, - "promoted": "0.000 HBD", - "replies": [ - "improv/re-paulatreides-re-improv-re-steemit-firstpost-20180109t001947344z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-08T23:36:21", - "url": "/meta/@steemit/firstpost#@paul.atreides/re-improv-re-steemit-firstpost-20180108t233620916z" - }, - "pavonj/re-steemit-firstpost-20190323t141141263z": { - "active_votes": [], - "author": "pavonj", - "author_payout_value": "0.000 HBD", - "author_reputation": 66.51, - "beneficiaries": [], - "blacklists": [], - "body": "
\n\nHappy birthday in advance. It's amazing how much Steemit has grown in such a short time.\n\n
", - "category": "meta", - "children": 0, - "created": "2019-03-23T14:11:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-03-30T14:11:45", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20190323t141141263z", - "post_id": 71914489, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-03-23T14:11:45", - "url": "/meta/@steemit/firstpost#@pavonj/re-steemit-firstpost-20190323t141141263z" - }, - "permatek/re-steemit-firstpost-20170821t224000406z": { - "active_votes": [], - "author": "permatek", - "author_payout_value": "0.000 HBD", - "author_reputation": 51.18, - "beneficiaries": [], - "blacklists": [], - "body": "Hi,\n\nI'm arriving on Steemit, and wanted to thank you for this place. Also it seems we need some help for begining (most of post lost themself in the mass due to the nivel), maybe giving a hand is possible from you ?\n\nAnyway, thank again for this social plateform, the lucky potential i give and all the connexion around the world it make possible.\n\nGood continuation @Steemit @Freedom @Steem @Dan @Ned @blocktrades @val-a @mottler @abit @databass @hendrikdegrote @jamesc @ben @michael-b @val-b @ranchorelaxo @proskynneo @thejohalfiles @smooth @xeldal @roadscape @created @arhag @jamesc1 @michael-a @sponge-bob\n\n**...........**\n**[@Permatek](https://steemit.com/@permatek)", - "category": "meta", - "children": 0, - "created": "2017-08-21T22:40:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://steemit.com/@permatek" - ], - "tags": [ - "meta" - ], - "users": [ - "steemit", - "freedom", - "steem", - "dan", - "ned", - "blocktrades", - "val-a", - "mottler", - "abit", - "databass", - "hendrikdegrote", - "jamesc", - "ben", - "michael-b", - "val-b", - "ranchorelaxo", - "proskynneo", - "thejohalfiles", - "smooth", - "xeldal", - "roadscape", - "created", - "arhag", - "jamesc1", - "michael-a", - "sponge-bob" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-28T22:40:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170821t224000406z", - "post_id": 10720514, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-21T22:40:06", - "url": "/meta/@steemit/firstpost#@permatek/re-steemit-firstpost-20170821t224000406z" - }, - "pfunk/q5nv3k": { - "active_votes": [], - "author": "pfunk", - "author_payout_value": "0.000 HBD", - "author_reputation": 72.92, - "beneficiaries": [], - "blacklists": [], - "body": "first post", - "category": "meta", - "children": 0, - "created": "2020-02-13T22:13:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2020-02-20T22:13:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "q5nv3k", - "post_id": 84369899, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2020-02-13T22:13:54", - "url": "/meta/@steemit/firstpost#@pfunk/q5nv3k" - }, - "photographer1/re-steemit-firstpost-20170907t091931832z": { - "active_votes": [], - "author": "photographer1", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.87, - "beneficiaries": [], - "blacklists": [], - "body": "Great platform\nI Love Steemit so much i share my photography I Love This platform", - "category": "meta", - "children": 0, - "created": "2017-09-07T09:17:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-14T09:17:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170907t091931832z", - "post_id": 12174535, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-07T09:17:06", - "url": "/meta/@steemit/firstpost#@photographer1/re-steemit-firstpost-20170907t091931832z" - }, - "pixzelplethora/re-steemit-firstpost-20170607t102348258z": { - "active_votes": [], - "author": "pixzelplethora", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.66, - "beneficiaries": [], - "blacklists": [], - "body": "The most exciting opportunity in blockchain. In for the long haul.", - "category": "meta", - "children": 0, - "created": "2017-06-07T10:23:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-14T10:23:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170607t102348258z", - "post_id": 3525991, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-07T10:23:48", - "url": "/meta/@steemit/firstpost#@pixzelplethora/re-steemit-firstpost-20170607t102348258z" - }, - "pkvlogs/re-steemit-firstpost-20170826t004017217z": { - "active_votes": [], - "author": "pkvlogs", - "author_payout_value": "0.000 HBD", - "author_reputation": 65.14, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is really an amazing place if it used ethically.\nBest social site ever .\nbig thumbs up @steemit .", - "category": "meta", - "children": 0, - "created": "2017-08-26T00:40:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-02T00:40:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170826t004017217z", - "post_id": 11082522, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-26T00:40:21", - "url": "/meta/@steemit/firstpost#@pkvlogs/re-steemit-firstpost-20170826t004017217z" - }, - "plainoldme/re-steemit-firstpost-20180109t120207874z": { - "active_votes": [ - { - "rshares": "156495999", - "voter": "plainoldme" - }, - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "plainoldme", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.68, - "beneficiaries": [], - "blacklists": [], - "body": "thank you for providing us with such a platform. 1 100% upvote from you could pay off my house!! wink wink!! have a good day", - "category": "meta", - "children": 0, - "created": "2018-01-09T12:02:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 156495999, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-16T12:02:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180109t120207874z", - "post_id": 24565584, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-09T12:02:09", - "url": "/meta/@steemit/firstpost#@plainoldme/re-steemit-firstpost-20180109t120207874z" - }, - "planetenamek/re-steemit-firstpost-20170727t210239067z": { - "active_votes": [ - { - "rshares": "718905515", - "voter": "howardroarklol" - } - ], - "author": "planetenamek", - "author_payout_value": "0.000 HBD", - "author_reputation": 63.54, - "beneficiaries": [], - "blacklists": [], - "body": "Hey Steemit !! I Love you \ud83d\udc9d\ud83d\udc9d!", - "category": "meta", - "children": 0, - "created": "2017-07-27T21:02:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 718905515, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-03T21:02:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170727t210239067z", - "post_id": 8491115, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-27T21:02:42", - "url": "/meta/@steemit/firstpost#@planetenamek/re-steemit-firstpost-20170727t210239067z" - }, - "pokerman/re-steemit-firstpost-20171015t204850657z": { - "active_votes": [ - { - "rshares": "0", - "voter": "pokerman" - } - ], - "author": "pokerman", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.7, - "beneficiaries": [], - "blacklists": [], - "body": "I\u2019ve been here two weeks and it\u2019s not so much the app as it is the people . in such a small amount of time the amazing people that I\u2019ve met is where the true value of this place is.", - "category": "meta", - "children": 0, - "created": "2017-10-15T20:48:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-22T20:48:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171015t204850657z", - "post_id": 15393330, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-15T20:48:51", - "url": "/meta/@steemit/firstpost#@pokerman/re-steemit-firstpost-20171015t204850657z" - }, - "ppktech/re-stackin-re-steemit-firstpost-20180310t111546590z": { - "active_votes": [ - { - "rshares": "0", - "voter": "anarcho-pirate" - } - ], - "author": "ppktech", - "author_payout_value": "0.000 HBD", - "author_reputation": 2.38, - "beneficiaries": [], - "blacklists": [], - "body": "Imagine if you get an upvote from the @steemit account.\n\n![steemit.jpg](https://steemitimages.com/DQmdQW5Q7PC4TzEzV8T8wkHWQoidjigLREJ25q1Ph3Ar1Tx/steemit.jpg)\n[Source](https://onsizzle.com/i/anyway-back-to-the-money-4782252)", - "category": "meta", - "children": 0, - "created": "2018-03-10T11:15:48", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmdQW5Q7PC4TzEzV8T8wkHWQoidjigLREJ25q1Ph3Ar1Tx/steemit.jpg" - ], - "links": [ - "https://onsizzle.com/i/anyway-back-to-the-money-4782252" - ], - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-03-17T11:15:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180310t111546590z", - "post_id": 37801604, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-10T11:15:48", - "url": "/meta/@steemit/firstpost#@ppktech/re-stackin-re-steemit-firstpost-20180310t111546590z" - }, - "princeemmanuel/re-steemit-firstpost-20180414t080010152z": { - "active_votes": [ - { - "rshares": "1233876051", - "voter": "princeemmanuel" - } - ], - "author": "princeemmanuel", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.52, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is actually the best thing to have happened as far as social media is concerned\n### Steem On Guys!!! \u270c\ufe0f\u270c\ufe0f\u270c\ufe0f", - "category": "meta", - "children": 0, - "created": "2018-04-14T08:00:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1233876051, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-21T08:00:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180414t080010152z", - "post_id": 43519035, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-14T08:00:18", - "url": "/meta/@steemit/firstpost#@princeemmanuel/re-steemit-firstpost-20180414t080010152z" - }, - "proskynneo/steemit-firstpost-1": { - "active_votes": [ - { - "rshares": "375241", - "voter": "dantheman" - }, - { - "rshares": "2213400", - "voter": "proskynneo" - }, - { - "rshares": "936400", - "voter": "ned" - }, - { - "rshares": "0", - "voter": "murh" - }, - { - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "rshares": "58854897335", - "voter": "business" - }, - { - "rshares": "239342379", - "voter": "kewpiedoll" - }, - { - "rshares": "52153025", - "voter": "f1111111" - }, - { - "rshares": "0", - "voter": "naumovich" - }, - { - "rshares": "0", - "voter": "gogo.tattoo" - }, - { - "rshares": "0", - "voter": "tasartcraft" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "proskynneo", - "author_payout_value": "1.058 HBD", - "author_reputation": 57.84, - "beneficiaries": [], - "blacklists": [], - "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", - "category": "meta", - "children": 1, - "created": "2016-03-31T13:54:33", - "curator_payout_value": "1.059 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 59892484261, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 2.117, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "steemit-firstpost-1", - "post_id": 3, - "promoted": "0.000 HBD", - "replies": [ - "reseller/re-proskynneo-steemit-firstpost-1-20170628t091044635z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 7 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-03-31T13:54:33", - "url": "/meta/@steemit/firstpost#@proskynneo/steemit-firstpost-1" - }, - "pwangdu/re-steemit-firstpost-1519460238570td3d0a265-554a-4cec-9a2f-4bfc4ddaf44euid": { - "active_votes": [], - "author": "pwangdu", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.93, - "beneficiaries": [], - "blacklists": [], - "body": " astonishing & exuberant!", - "category": "meta", - "children": 0, - "created": "2018-02-24T08:17:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "SteemJ-Core/0.4.3", - "format": "markdown", - "tags": [ - "ilikeit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-03T08:17:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-1519460238570td3d0a265-554a-4cec-9a2f-4bfc4ddaf44euid", - "post_id": 34853269, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-24T08:17:18", - "url": "/meta/@steemit/firstpost#@pwangdu/re-steemit-firstpost-1519460238570td3d0a265-554a-4cec-9a2f-4bfc4ddaf44euid" - }, - "pyro0816/re-steemit-firstpost-20180212t120027763z": { - "active_votes": [ - { - "rshares": "263782846", - "voter": "pyro0816" - } - ], - "author": "pyro0816", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.58, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks for the concept. This will be a major concurrent to the established youtube, facebook, twitter and Co... ![53.gif](https://steemitimages.com/DQmW57tX5v6L3E6ktsn8kcEjtXNXJL9mCDRuAEsJ2Yr68F6/53.gif)", - "category": "meta", - "children": 0, - "created": "2018-02-12T12:00:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmW57tX5v6L3E6ktsn8kcEjtXNXJL9mCDRuAEsJ2Yr68F6/53.gif" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 263782846, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-19T12:00:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180212t120027763z", - "post_id": 32105836, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-12T12:00:27", - "url": "/meta/@steemit/firstpost#@pyro0816/re-steemit-firstpost-20180212t120027763z" - }, - "qscheffer/re-steemit-firstpost-20180117t135451396z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "qscheffer", - "author_payout_value": "0.000 HBD", - "author_reputation": 28.52, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit, Why are you powering down?", - "category": "meta", - "children": 0, - "created": "2018-01-17T13:54:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-24T13:54:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180117t135451396z", - "post_id": 26237281, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-17T13:54:54", - "url": "/meta/@steemit/firstpost#@qscheffer/re-steemit-firstpost-20180117t135451396z" - }, - "raterlabs/re-steemit-firstpost-20180120t200113737z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "raterlabs", - "author_payout_value": "0.000 HBD", - "author_reputation": 26.26, - "beneficiaries": [], - "blacklists": [], - "body": "Excited to be part of this community! I'm going whale mode in a few months. #MARKMYWORDS", - "category": "meta", - "children": 0, - "created": "2018-01-20T20:01:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta", - "markmywords" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-27T20:01:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180120t200113737z", - "post_id": 26898687, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-20T20:01:15", - "url": "/meta/@steemit/firstpost#@raterlabs/re-steemit-firstpost-20180120t200113737z" - }, - "rdvn/re-steemit-firstpost-20180210t151408537z": { - "active_votes": [ - { - "rshares": "6548705800", - "voter": "damla" - } - ], - "author": "rdvn", - "author_payout_value": "0.038 HBD", - "author_reputation": 61.87, - "beneficiaries": [], - "blacklists": [], - "body": "Year .10.2.2018 please guys, wake me up when year it been 2050 , really wanna know where is the steemit :D", - "category": "meta", - "children": 0, - "created": "2018-02-10T15:14:09", - "curator_payout_value": "0.008 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 6548705800, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.046, - "payout_at": "2018-02-17T15:14:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180210t151408537z", - "post_id": 31688048, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-10T15:14:09", - "url": "/meta/@steemit/firstpost#@rdvn/re-steemit-firstpost-20180210t151408537z" - }, - "red/steemit-firstpost-2": { - "active_votes": [ - { - "rshares": "-376603", - "voter": "dantheman" - }, - { - "rshares": "903854", - "voter": "mr11acdee" - }, - { - "rshares": "1441", - "voter": "red" - }, - { - "rshares": "23446", - "voter": "xeroc" - }, - { - "rshares": "724886327", - "voter": "patrick-g" - }, - { - "rshares": "60031995282", - "voter": "business" - }, - { - "rshares": "71498008", - "voter": "madhatting" - }, - { - "rshares": "64967241", - "voter": "staceyjatkinson" - }, - { - "rshares": "0", - "voter": "the-ego-is-you" - }, - { - "rshares": "52153025", - "voter": "f1111111" - }, - { - "rshares": "0", - "voter": "gogo.tattoo" - }, - { - "rshares": "0", - "voter": "tasartcraft" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "red", - "author_payout_value": "0.100 HBD", - "author_reputation": 54.7, - "beneficiaries": [], - "blacklists": [], - "body": "Did you know you can earn STEEM by commenting on posts?", - "category": "meta", - "children": 2, - "created": "2016-04-06T19:22:42", - "curator_payout_value": "0.100 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 60946052021, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.2, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "steemit-firstpost-2", - "post_id": 4, - "promoted": "0.000 HBD", - "replies": [ - "steem-id/re-red-steemit-firstpost-2", - "business/re-red-steemit-firstpost-2-20160713t083846149z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 9 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-04-06T19:22:42", - "url": "/meta/@steemit/firstpost#@red/steemit-firstpost-2" - }, - "rednetkjh/re-steemit-firstpost-20160804t061605576z": { - "active_votes": [], - "author": "rednetkjh", - "author_payout_value": "0.000 HBD", - "author_reputation": -1.0, - "beneficiaries": [], - "blacklists": [], - "body": "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service", - "category": "meta", - "children": 0, - "created": "2016-08-04T06:16:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "links": [ - "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160804t061605576z", - "post_id": 440665, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": true, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-04T06:16:00", - "url": "/meta/@steemit/firstpost#@rednetkjh/re-steemit-firstpost-20160804t061605576z" - }, - "reinhardbaust/re-steemit-firstpost-20170907t081004357z": { - "active_votes": [], - "author": "reinhardbaust", - "author_payout_value": "0.000 HBD", - "author_reputation": 29.8, - "beneficiaries": [], - "blacklists": [], - "body": "Es ist eine wunderbare Sache hier zu sein", - "category": "meta", - "children": 0, - "created": "2017-09-07T08:10:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-14T08:10:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170907t081004357z", - "post_id": 12170567, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-07T08:10:09", - "url": "/meta/@steemit/firstpost#@reinhardbaust/re-steemit-firstpost-20170907t081004357z" - }, - "reseller/re-proskynneo-steemit-firstpost-1-20170628t091044635z": { - "active_votes": [ - { - "rshares": "8593397010", - "voter": "reseller" - } - ], - "author": "reseller", - "author_payout_value": "0.072 HBD", - "author_reputation": 74.07, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks for the amazing site guys!", - "category": "meta", - "children": 0, - "created": "2017-06-28T09:10:45", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 8593397010, - "parent_author": "proskynneo", - "parent_permlink": "steemit-firstpost-1", - "payout": 0.072, - "payout_at": "2017-07-05T09:10:45", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-proskynneo-steemit-firstpost-1-20170628t091044635z", - "post_id": 5393338, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-28T09:10:45", - "url": "/meta/@steemit/firstpost#@reseller/re-proskynneo-steemit-firstpost-1-20170628t091044635z" - }, - "resteemy/20180213t002053776z": { - "active_votes": [], - "author": "resteemy", - "author_payout_value": "0.000 HBD", - "author_reputation": 37.8, - "beneficiaries": [], - "blacklists": [], - "body": "Congratulations, you were selected for a random upvote! Follow @resteemy and upvote this post to increase your chance of being upvoted again!\nRead more about @resteemy [here](https://steemit.com/resteemy/@resteemy/introducting-resteemy).", - "category": "meta", - "children": 0, - "created": "2018-02-13T00:20:54", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "chaseburnett", - "parent_permlink": "re-steemit-firstpost-20180213t001454596z", - "payout": 0.0, - "payout_at": "2018-02-20T00:20:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "20180213t002053776z", - "post_id": 32231532, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-13T00:20:54", - "url": "/meta/@steemit/firstpost#@resteemy/20180213t002053776z" - }, - "rewardpoolrape/rewardpoolrape-re-abusalehre-steemit-firstpost-20180117t154220577z": { - "active_votes": [ - { - "rshares": "32265067435", - "voter": "rewardpoolrape" - } - ], - "author": "rewardpoolrape", - "author_payout_value": "0.264 HBD", - "author_reputation": 62.06, - "beneficiaries": [], - "blacklists": [], - "body": "You're so nice for commenting on this post. For that, I gave you a vote!", - "category": "meta", - "children": 0, - "created": "2018-01-17T15:48:21", - "curator_payout_value": "0.004 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 32265067435, - "parent_author": "abusaleh", - "parent_permlink": "re-steemit-firstpost-20180117t154220577z", - "payout": 0.268, - "payout_at": "2018-01-24T15:48:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "rewardpoolrape-re-abusalehre-steemit-firstpost-20180117t154220577z", - "post_id": 26257263, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-17T15:48:21", - "url": "/meta/@steemit/firstpost#@rewardpoolrape/rewardpoolrape-re-abusalehre-steemit-firstpost-20180117t154220577z" - }, - "riezaldi/re-steemit-firstpost-20180411t205519750z": { - "active_votes": [], - "author": "riezaldi", - "author_payout_value": "0.000 HBD", - "author_reputation": 48.96, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you steemit, i just joined this platform for a few days and i am happy to have a steemit account, many things i can learn here from how to write, courtesy and best friend, i love this peace loving platform, i hope steemit will go forward and growing all in the world.", - "category": "meta", - "children": 0, - "created": "2018-04-11T20:55:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-18T20:55:33", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180411t205519750z", - "post_id": 43143327, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-11T20:55:33", - "url": "/meta/@steemit/firstpost#@riezaldi/re-steemit-firstpost-20180411t205519750z" - }, - "rikyu/rikyu-re-steemit-firstpost-20191029t114433099z": { - "active_votes": [ - { - "rshares": "0", - "voter": "cosmophobia" - } - ], - "author": "rikyu", - "author_payout_value": "0.000 HBD", - "author_reputation": 46.05, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is a great was to publish your created content or support another with upvoting. I am happy to have joined this community and see it grow\n\nPosted using [Partiko Android](https://partiko.app/referral/rikyu)", - "category": "meta", - "children": 0, - "created": "2019-10-29T11:44:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "partiko", - "client": "android" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-11-05T11:44:33", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "rikyu-re-steemit-firstpost-20191029t114433099z", - "post_id": 81289854, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-10-29T11:44:33", - "url": "/meta/@steemit/firstpost#@rikyu/rikyu-re-steemit-firstpost-20191029t114433099z" - }, - "ritikagupta/re-calebotamus-re-stackin-re-steemit-firstpost-20180522t062710046z": { - "active_votes": [], - "author": "ritikagupta", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.41, - "beneficiaries": [], - "blacklists": [], - "body": "Hey I followed you..\nPlease follow me back!! \nThanks :)", - "category": "meta", - "children": 0, - "created": "2018-05-22T06:28:09", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "calebotamus", - "parent_permlink": "re-stackin-re-steemit-firstpost-20180223t211655533z", - "payout": 0.0, - "payout_at": "2018-05-29T06:28:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-calebotamus-re-stackin-re-steemit-firstpost-20180522t062710046z", - "post_id": 49713650, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-22T06:28:09", - "url": "/meta/@steemit/firstpost#@ritikagupta/re-calebotamus-re-stackin-re-steemit-firstpost-20180522t062710046z" - }, - "ritikagupta/re-chaseburnett-re-stackin-re-steemit-firstpost-20180522t062303683z": { - "active_votes": [], - "author": "ritikagupta", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.41, - "beneficiaries": [], - "blacklists": [], - "body": "Yessss!! :)", - "category": "meta", - "children": 0, - "created": "2018-05-22T06:23:21", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "chaseburnett", - "parent_permlink": "re-stackin-re-steemit-firstpost-20180213t001539171z", - "payout": 0.0, - "payout_at": "2018-05-29T06:23:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-chaseburnett-re-stackin-re-steemit-firstpost-20180522t062303683z", - "post_id": 49713186, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-22T06:23:21", - "url": "/meta/@steemit/firstpost#@ritikagupta/re-chaseburnett-re-stackin-re-steemit-firstpost-20180522t062303683z" - }, - "ritikagupta/re-crypto-guru-re-stackin-re-steemit-firstpost-20180522t062351778z": { - "active_votes": [], - "author": "ritikagupta", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.41, - "beneficiaries": [], - "blacklists": [], - "body": "Hey i followed you...\nDo follow me back!!\nThanks :)", - "category": "meta", - "children": 0, - "created": "2018-05-22T06:24:06", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "crypto-guru", - "parent_permlink": "re-stackin-re-steemit-firstpost-20170827t190543739z", - "payout": 0.0, - "payout_at": "2018-05-29T06:24:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-crypto-guru-re-stackin-re-steemit-firstpost-20180522t062351778z", - "post_id": 49713266, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-22T06:24:06", - "url": "/meta/@steemit/firstpost#@ritikagupta/re-crypto-guru-re-stackin-re-steemit-firstpost-20180522t062351778z" - }, - "ritikagupta/re-dan321-re-stackin-re-steemit-firstpost-20180522t062950122z": { - "active_votes": [], - "author": "ritikagupta", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.41, - "beneficiaries": [], - "blacklists": [], - "body": "Indeed!! \nHey I followed you..\nPlease follow me back!!\nThanks :)", - "category": "meta", - "children": 0, - "created": "2018-05-22T06:30:03", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "dan321", - "parent_permlink": "re-stackin-re-steemit-firstpost-20180304t105930825z", - "payout": 0.0, - "payout_at": "2018-05-29T06:30:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-dan321-re-stackin-re-steemit-firstpost-20180522t062950122z", - "post_id": 49713815, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-22T06:30:03", - "url": "/meta/@steemit/firstpost#@ritikagupta/re-dan321-re-stackin-re-steemit-firstpost-20180522t062950122z" - }, - "ritikagupta/re-mominsdt-re-gomain-re-stackin-re-steemit-firstpost-20180522t061702119z": { - "active_votes": [], - "author": "ritikagupta", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.41, - "beneficiaries": [], - "blacklists": [], - "body": "Hey i followed you...\nDo follow me back!!\nThanks :)", - "category": "meta", - "children": 0, - "created": "2018-05-22T06:17:12", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "mominsdt", - "parent_permlink": "re-gomain-re-stackin-re-steemit-firstpost-20180204t151047773z", - "payout": 0.0, - "payout_at": "2018-05-29T06:17:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-mominsdt-re-gomain-re-stackin-re-steemit-firstpost-20180522t061702119z", - "post_id": 49712588, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-22T06:17:12", - "url": "/meta/@steemit/firstpost#@ritikagupta/re-mominsdt-re-gomain-re-stackin-re-steemit-firstpost-20180522t061702119z" - }, - "ritikagupta/re-salda-re-stackin-re-steemit-firstpost-20180522t061924817z": { - "active_votes": [], - "author": "ritikagupta", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.41, - "beneficiaries": [], - "blacklists": [], - "body": "Hey i followed you...\nDo follow me back!!\nThanks :)", - "category": "meta", - "children": 0, - "created": "2018-05-22T06:20:48", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "salda", - "parent_permlink": "re-stackin-re-steemit-firstpost-20180214t094350602z", - "payout": 0.0, - "payout_at": "2018-05-29T06:20:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-salda-re-stackin-re-steemit-firstpost-20180522t061924817z", - "post_id": 49712950, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-22T06:20:48", - "url": "/meta/@steemit/firstpost#@ritikagupta/re-salda-re-stackin-re-steemit-firstpost-20180522t061924817z" - }, - "ritikagupta/re-steemit-firstpost-20180522t061131493z": { - "active_votes": [ - { - "rshares": "79574908", - "voter": "raise-me-up" - } - ], - "author": "ritikagupta", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.41, - "beneficiaries": [], - "blacklists": [], - "body": "Hi everyone..\nIndeed!!\nFollow me and I'll follow you back for sure!!\nhttps://steemit.com/@ritikagupta\nThanks :)", - "category": "meta", - "children": 0, - "created": "2018-05-22T06:11:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://steemit.com/@ritikagupta" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 79574908, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-05-29T06:11:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180522t061131493z", - "post_id": 49712041, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-22T06:11:54", - "url": "/meta/@steemit/firstpost#@ritikagupta/re-steemit-firstpost-20180522t061131493z" - }, - "rittr/re-steemit-firstpost-20160824t025355199z": { - "active_votes": [ - { - "rshares": "-75407549856", - "voter": "vault" - }, - { - "rshares": "865125771", - "voter": "rittr" - }, - { - "rshares": "57599604", - "voter": "abanks1000" - }, - { - "rshares": "54993432", - "voter": "landarin" - }, - { - "rshares": "0", - "voter": "panela" - } - ], - "author": "rittr", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.8, - "beneficiaries": [], - "blacklists": [], - "body": "I am Comment **Number 35** on the first Steemit Poster evaaar!", - "category": "meta", - "children": 1, - "created": "2016-08-24T02:53:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": -74429831049, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160824t025355199z", - "post_id": 726644, - "promoted": "0.000 HBD", - "replies": [ - "sathyasankar/q67y2x" - ], - "stats": { - "flag_weight": 1.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-24T02:53:57", - "url": "/meta/@steemit/firstpost#@rittr/re-steemit-firstpost-20160824t025355199z" - }, - "rksumanthraju/re-steemit-firstpost-20180119t045007513z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "rksumanthraju", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.76, - "beneficiaries": [], - "blacklists": [], - "body": "Nice info", - "category": "meta", - "children": 0, - "created": "2018-01-19T04:50:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-26T04:50:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180119t045007513z", - "post_id": 26557035, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-19T04:50:09", - "url": "/meta/@steemit/firstpost#@rksumanthraju/re-steemit-firstpost-20180119t045007513z" - }, - "robi/re-steemit-firstpost-20170623t210657150z": { - "active_votes": [ - { - "rshares": "4112825595", - "voter": "robi" - } - ], - "author": "robi", - "author_payout_value": "0.047 HBD", - "author_reputation": 52.99, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks for STEEM", - "category": "meta", - "children": 0, - "created": "2017-06-23T21:06:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 4112825595, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.047, - "payout_at": "2017-06-30T21:06:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170623t210657150z", - "post_id": 4840849, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-23T21:06:57", - "url": "/meta/@steemit/firstpost#@robi/re-steemit-firstpost-20170623t210657150z" - }, - "ronmamita/re-steemit-firstpost-20170714t155806399z": { - "active_votes": [ - { - "rshares": "0", - "voter": "frankbacon" - }, - { - "rshares": "1079432343", - "voter": "moniquer" - } - ], - "author": "ronmamita", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.98, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit I think steemit has great potential as a pioneering social media with several issues to address for needed improvement.\nSteemit.com doesn't have many user friendly features that are common among most social media, such as easy to search past posts (the resteemed clutters up every members' profile page). Filtering or better yet, separating resteemed posts from authors' posts is urgently needed and there are other issues such as security, censorship abuse, and the popularity meme. \nUpvotes Chasing Whales meme is overwhelming minnows. _One possible response is to hide the upvotes and the payout counters until the 7 day timestamp expires so other considerations about the post could enter the readers' decision making process._\n\nThere may be other issues that need to be addressed and there certainly are many possible responses to choose from, I am certainly looking forward to the advances steemit.com and other 3rd party blockchain programmers will take to make steemit even better - wishing you success! 👍", - "category": "meta", - "children": 0, - "created": "2017-07-14T15:58:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1079432343, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-21T15:58:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170714t155806399z", - "post_id": 7179562, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-14T16:00:51", - "url": "/meta/@steemit/firstpost#@ronmamita/re-steemit-firstpost-20170714t155806399z" - }, - "rrs007/re-steemit-firstpost-20180728t115653831z": { - "active_votes": [ - { - "rshares": "343612955", - "voter": "fxnuruzzaman" - } - ], - "author": "rrs007", - "author_payout_value": "0.000 HBD", - "author_reputation": 27.04, - "beneficiaries": [], - "blacklists": [], - "body": "Hey steemit I am new at this if you can help me out if you liked my content please follow and upvote . @rrs007", - "category": "meta", - "children": 0, - "created": "2018-07-28T11:57:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "rrs007" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 343612955, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-08-04T11:57:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180728t115653831z", - "post_id": 57973595, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-28T11:57:09", - "url": "/meta/@steemit/firstpost#@rrs007/re-steemit-firstpost-20180728t115653831z" - }, - "rrs007/re-steemit-firstpost-20180728t120229680z": { - "active_votes": [ - { - "rshares": "437878456", - "voter": "catart" - } - ], - "author": "rrs007", - "author_payout_value": "0.000 HBD", - "author_reputation": 27.04, - "beneficiaries": [], - "blacklists": [], - "body": "Hey steemit I am a beginner honestly I don't know how to start. So if you can help me , if you like my content please follow and upvote ,thank you. @rrs007", - "category": "meta", - "children": 0, - "created": "2018-07-28T12:02:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "rrs007" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 437878456, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-08-04T12:02:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180728t120229680z", - "post_id": 57974033, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-28T12:02:42", - "url": "/meta/@steemit/firstpost#@rrs007/re-steemit-firstpost-20180728t120229680z" - }, - "sagaing/sagaing-re-steemit-firstpost-20190409t132907405z": { - "active_votes": [], - "author": "sagaing", - "author_payout_value": "0.000 HBD", - "author_reputation": 34.89, - "beneficiaries": [], - "blacklists": [], - "body": "hi\n\nPosted using [Partiko Messaging](https://steemit.com/@partiko)", - "category": "meta", - "children": 0, - "created": "2019-04-09T13:29:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "partiko", - "from_partiko_messaging": true - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-04-16T13:29:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "sagaing-re-steemit-firstpost-20190409t132907405z", - "post_id": 72774867, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-04-09T13:29:09", - "url": "/meta/@steemit/firstpost#@sagaing/sagaing-re-steemit-firstpost-20190409t132907405z" - }, - "salda/re-stackin-re-steemit-firstpost-20180214t094158335z": { - "active_votes": [], - "author": "salda", - "author_payout_value": "0.000 HBD", - "author_reputation": 27.71, - "beneficiaries": [], - "blacklists": [], - "body": "do not forget follow, votes and comment my account @salda thank's \ud83d\udc8b\ud83d\udc8b\ud83d\udc8b\ud83d\udc8b", - "category": "meta", - "children": 0, - "created": "2018-02-14T09:38:36", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "salda" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-02-21T09:38:36", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180214t094158335z", - "post_id": 32563652, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-14T09:38:36", - "url": "/meta/@steemit/firstpost#@salda/re-stackin-re-steemit-firstpost-20180214t094158335z" - }, - "salda/re-stackin-re-steemit-firstpost-20180214t094350602z": { - "active_votes": [ - { - "rshares": "0", - "voter": "ritikagupta" - } - ], - "author": "salda", - "author_payout_value": "0.000 HBD", - "author_reputation": 27.71, - "beneficiaries": [], - "blacklists": [], - "body": "do not forget follow, votes and comment my account @salda thanks....", - "category": "meta", - "children": 1, - "created": "2018-02-14T09:40:27", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "salda" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-02-21T09:40:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180214t094350602z", - "post_id": 32563995, - "promoted": "0.000 HBD", - "replies": [ - "ritikagupta/re-salda-re-stackin-re-steemit-firstpost-20180522t061924817z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-14T09:40:27", - "url": "/meta/@steemit/firstpost#@salda/re-stackin-re-steemit-firstpost-20180214t094350602z" - }, - "salda/re-steemit-firstpost-20180214t094057265z": { - "active_votes": [], - "author": "salda", - "author_payout_value": "0.000 HBD", - "author_reputation": 27.71, - "beneficiaries": [], - "blacklists": [], - "body": "It's amazing to be on Steemit... \ud83d\ude0a\ud83d\ude0d\ud83d\ude18\ud83d\udd76\ud83d\udc54\ud83d\udc8e\ud83d\udc93\ud83d\udc8b\ndo not forget follow, votes and comment my account @salda thank's", - "category": "meta", - "children": 0, - "created": "2018-02-14T09:37:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "salda" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-21T09:37:36", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180214t094057265z", - "post_id": 32563475, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-14T09:37:36", - "url": "/meta/@steemit/firstpost#@salda/re-steemit-firstpost-20180214t094057265z" - }, - "samsonite18654/re-steemit-firstpost-20180628t150144993z": { - "active_votes": [], - "author": "samsonite18654", - "author_payout_value": "0.000 HBD", - "author_reputation": 30.67, - "beneficiaries": [], - "blacklists": [], - "body": "So glad I found this community, thanks Steemit!", - "category": "meta", - "children": 0, - "created": "2018-06-28T15:01:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-07-05T15:01:45", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180628t150144993z", - "post_id": 54700638, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-28T15:01:45", - "url": "/meta/@steemit/firstpost#@samsonite18654/re-steemit-firstpost-20180628t150144993z" - }, - "sangdiyus/re-steemit-firstpost-20180226t160058891z": { - "active_votes": [], - "author": "sangdiyus", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.03, - "beneficiaries": [], - "blacklists": [], - "body": "Welcome, Founder...", - "category": "meta", - "children": 0, - "created": "2018-02-26T16:01:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-05T16:01:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180226t160058891z", - "post_id": 35360534, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-26T16:01:00", - "url": "/meta/@steemit/firstpost#@sangdiyus/re-steemit-firstpost-20180226t160058891z" - }, - "satfit/re-steemit-firstpost-20170619t163049854z": { - "active_votes": [ - { - "rshares": "158373470", - "voter": "satfit" - } - ], - "author": "satfit", - "author_payout_value": "0.000 HBD", - "author_reputation": 54.71, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit hey steem i heard u r most powerful please gv me a upvote", - "category": "meta", - "children": 0, - "created": "2017-06-19T16:30:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 158373470, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-26T16:30:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170619t163049854z", - "post_id": 4357643, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-19T16:30:57", - "url": "/meta/@steemit/firstpost#@satfit/re-steemit-firstpost-20170619t163049854z" - }, - "satfit/re-steemit-firstpost-20170917t193403188z": { - "active_votes": [ - { - "rshares": "3401470267", - "voter": "ravindert26" - }, - { - "rshares": "1160721196", - "voter": "satishsharma" - }, - { - "rshares": "16093744130", - "voter": "msp-shanehug" - } - ], - "author": "satfit", - "author_payout_value": "0.045 HBD", - "author_reputation": 54.71, - "beneficiaries": [], - "blacklists": [], - "body": "yo @steemit u r the most amazing thing i have ever known u changed my life i know u will change many more thing u gonna change the peoples views about internet and social networking thanks bieng part of my life", - "category": "meta", - "children": 0, - "created": "2017-09-17T19:34:06", - "curator_payout_value": "0.006 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 20655935593, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.051, - "payout_at": "2017-09-24T19:34:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170917t193403188z", - "post_id": 13083775, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-17T19:34:06", - "url": "/meta/@steemit/firstpost#@satfit/re-steemit-firstpost-20170917t193403188z" - }, - "sathyasankar/q67y2x": { - "active_votes": [], - "author": "sathyasankar", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.51, - "beneficiaries": [], - "blacklists": [], - "body": "And where are you now?", - "category": "meta", - "children": 0, - "created": "2020-02-24T18:31:18", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.2" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "rittr", - "parent_permlink": "re-steemit-firstpost-20160824t025355199z", - "payout": 0.0, - "payout_at": "2020-03-02T18:31:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "q67y2x", - "post_id": 84687759, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2020-02-24T18:31:18", - "url": "/meta/@steemit/firstpost#@sathyasankar/q67y2x" - }, - "sathyasankar/re-steemit-firstpost-20180225t071734653z": { - "active_votes": [ - { - "rshares": "606906756", - "voter": "sathyasankar" - }, - { - "rshares": "836168540", - "voter": "sbi2" - }, - { - "rshares": "298265562", - "voter": "yousufali587820" - } - ], - "author": "sathyasankar", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.51, - "beneficiaries": [], - "blacklists": [], - "body": "Hai @steemit , welcome to steemit..Rules to follow.\n1.Dont ask for upvotes in others posts\n2.Dont spam others comment box.\n3. Follow me\nlol..!", - "category": "meta", - "children": 0, - "created": "2018-02-25T07:17:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1741340858, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-04T07:17:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180225t071734653z", - "post_id": 35059352, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-25T07:17:39", - "url": "/meta/@steemit/firstpost#@sathyasankar/re-steemit-firstpost-20180225t071734653z" - }, - "sathyasankar/re-steemit-firstpost-20180531t175346873z": { - "active_votes": [ - { - "rshares": "1984465478", - "voter": "sbi3" - } - ], - "author": "sathyasankar", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.51, - "beneficiaries": [], - "blacklists": [], - "body": "Hai @steemit, do you use @ginabot?", - "category": "meta", - "children": 0, - "created": "2018-05-31T17:53:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "ginabot" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1984465478, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-06-07T17:53:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180531t175346873z", - "post_id": 51124439, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-31T17:53:51", - "url": "/meta/@steemit/firstpost#@sathyasankar/re-steemit-firstpost-20180531t175346873z" - }, - "sathyasankar/re-steemit-firstpost-20180718t114328279z": { - "active_votes": [], - "author": "sathyasankar", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.51, - "beneficiaries": [], - "blacklists": [], - "body": "Why does sbi5 upvotes this comment?", - "category": "meta", - "children": 0, - "created": "2018-07-18T11:43:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-07-25T11:43:33", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180718t114328279z", - "post_id": 56929989, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-18T11:43:33", - "url": "/meta/@steemit/firstpost#@sathyasankar/re-steemit-firstpost-20180718t114328279z" - }, - "scharfsinn/re-steemit-firstpost-20170619t225343241z": { - "active_votes": [], - "author": "scharfsinn", - "author_payout_value": "0.000 HBD", - "author_reputation": 28.46, - "beneficiaries": [], - "blacklists": [], - "body": "it is nice to see a idea, that become reality. steemit will have a big future. I'm sure of that ;-)", - "category": "meta", - "children": 0, - "created": "2017-06-19T22:53:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-26T22:53:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170619t225343241z", - "post_id": 4381329, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-19T22:53:42", - "url": "/meta/@steemit/firstpost#@scharfsinn/re-steemit-firstpost-20170619t225343241z" - }, - "seablue/re-steemit-firstpost-20170711t205019537z": { - "active_votes": [ - { - "rshares": "3490779517", - "voter": "whatsup" - }, - { - "rshares": "4678245613", - "voter": "steemcenterwiki" - }, - { - "rshares": "1213578027", - "voter": "cgame" - }, - { - "rshares": "325490574", - "voter": "amrsaeed" - }, - { - "rshares": "2576138718", - "voter": "szokerobert" - }, - { - "rshares": "4327698268", - "voter": "burstbubble" - }, - { - "rshares": "16019983834", - "voter": "centerlink" - } - ], - "author": "seablue", - "author_payout_value": "0.100 HBD", - "author_reputation": 63.47, - "beneficiaries": [], - "blacklists": [], - "body": "I was here at the first post on Steemit. A little late perhaps, but I'm here now.", - "category": "meta", - "children": 0, - "created": "2017-07-11T20:50:15", - "curator_payout_value": "0.010 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 32631914551, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.11, - "payout_at": "2017-07-18T20:50:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170711t205019537z", - "post_id": 6896853, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 7 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-11T20:50:15", - "url": "/meta/@steemit/firstpost#@seablue/re-steemit-firstpost-20170711t205019537z" - }, - "setio/re-steemit-firstpost-20170820t233100895z": { - "active_votes": [ - { - "rshares": "149512974", - "voter": "binkley" - } - ], - "author": "setio", - "author_payout_value": "0.000 HBD", - "author_reputation": 33.28, - "beneficiaries": [], - "blacklists": [], - "body": "Majority only read \"can earn STEEM by posting' and \"sell their STEEM for cash\". Steemit will be more interesting if everybody concern in \"social media\", \"people who like post\", and \"boost voting power\".", - "category": "meta", - "children": 0, - "created": "2017-08-20T23:31:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 149512974, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-27T23:31:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170820t233100895z", - "post_id": 10639734, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-20T23:31:12", - "url": "/meta/@steemit/firstpost#@setio/re-steemit-firstpost-20170820t233100895z" - }, - "setio/re-ubg-re-steemit-firstpost-20170820t233424463z": { - "active_votes": [], - "author": "setio", - "author_payout_value": "0.000 HBD", - "author_reputation": 33.28, - "beneficiaries": [], - "blacklists": [], - "body": "Steem will falling if whales do that", - "category": "meta", - "children": 0, - "created": "2017-08-20T23:34:33", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "ubg", - "parent_permlink": "re-steemit-firstpost-20160813t143213453z", - "payout": 0.0, - "payout_at": "2017-08-27T23:34:33", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-ubg-re-steemit-firstpost-20170820t233424463z", - "post_id": 10639882, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-20T23:34:33", - "url": "/meta/@steemit/firstpost#@setio/re-ubg-re-steemit-firstpost-20170820t233424463z" - }, - "sevenseals/re-steemit-firstpost-20171022t194618085z": { - "active_votes": [ - { - "rshares": "149556943163", - "voter": "emilhoch" - }, - { - "rshares": "41711162809", - "voter": "sevenseals" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "sevenseals", - "author_payout_value": "0.327 HBD", - "author_reputation": 58.44, - "beneficiaries": [], - "blacklists": [], - "body": "How about some posts from steemit with explainations why steemit works so fucking bad. Is there an other account for communication with the users?", - "category": "meta", - "children": 0, - "created": "2017-10-22T19:46:18", - "curator_payout_value": "0.108 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 191268105972, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.435, - "payout_at": "2017-10-29T19:46:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171022t194618085z", - "post_id": 15879704, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-22T19:46:18", - "url": "/meta/@steemit/firstpost#@sevenseals/re-steemit-firstpost-20171022t194618085z" - }, - "shabbirahmad/re-steemit-firstpost-20180526t084436856z": { - "active_votes": [ - { - "rshares": "19411386133", - "voter": "shabbirahmad" - }, - { - "rshares": "102929967", - "voter": "bountyworks" - } - ], - "author": "shabbirahmad", - "author_payout_value": "0.072 HBD", - "author_reputation": 63.67, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you so much for make a good platform.I most like it,I think it's platform competation google, facebook,youtube,raddit one day.I l ove it so much.", - "category": "meta", - "children": 0, - "created": "2018-05-26T08:44:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 19514316100, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.072, - "payout_at": "2018-06-02T08:44:36", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180526t084436856z", - "post_id": 50357305, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-26T08:44:36", - "url": "/meta/@steemit/firstpost#@shabbirahmad/re-steemit-firstpost-20180526t084436856z" - }, - "shadowolfdg/re-steemit-firstpost-20180525t054645178z": { - "active_votes": [], - "author": "shadowolfdg", - "author_payout_value": "0.000 HBD", - "author_reputation": 59.03, - "beneficiaries": [], - "blacklists": [], - "body": "So glad to be on @steemit . For all the newbies please read my popular guide steemit.com/steemiteducation/@shadowolfdg/an-introduction-to-steemit-a-step-by-ste", - "category": "meta", - "children": 0, - "created": "2018-05-25T05:46:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-06-01T05:46:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180525t054645178z", - "post_id": 50191428, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-25T05:46:51", - "url": "/meta/@steemit/firstpost#@shadowolfdg/re-steemit-firstpost-20180525t054645178z" - }, - "shenkawys/re-steemit-firstpost-20170727t125325656z": { - "active_votes": [ - { - "rshares": "85455069", - "voter": "steeminator3000" - } - ], - "author": "shenkawys", - "author_payout_value": "0.000 HBD", - "author_reputation": 45.31, - "beneficiaries": [], - "blacklists": [], - "body": "Good site \nFollowing you", - "category": "meta", - "children": 0, - "created": "2017-07-27T12:54:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 85455069, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-03T12:54:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170727t125325656z", - "post_id": 8452479, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-27T12:54:09", - "url": "/meta/@steemit/firstpost#@shenkawys/re-steemit-firstpost-20170727t125325656z" - }, - "shieha/re-steemit-firstpost-20171027t024345028z": { - "active_votes": [ - { - "rshares": "102825282106", - "voter": "pharesim" - }, - { - "rshares": "91008107025", - "voter": "jamtaylor" - }, - { - "rshares": "564839576727", - "voter": "gavvet" - }, - { - "rshares": "440130306", - "voter": "steve-walschot" - }, - { - "rshares": "76802001689", - "voter": "dragonslayer109" - }, - { - "rshares": "11573732506", - "voter": "jacor" - }, - { - "rshares": "5865228074", - "voter": "crazymumzysa" - }, - { - "rshares": "22135003451", - "voter": "sulev" - }, - { - "rshares": "364775821079", - "voter": "timsaid" - }, - { - "rshares": "34342084414", - "voter": "randyclemens" - }, - { - "rshares": "26651257480", - "voter": "boddhisattva" - }, - { - "rshares": "1308362375", - "voter": "fred703" - }, - { - "rshares": "367457360138", - "voter": "penguinpablo" - }, - { - "rshares": "1854793671", - "voter": "graviton" - }, - { - "rshares": "1405278236", - "voter": "ruthofisrael" - }, - { - "rshares": "357942645", - "voter": "harferri" - }, - { - "rshares": "7468057197", - "voter": "mandela" - }, - { - "rshares": "3528385892", - "voter": "sv67216721" - }, - { - "rshares": "15656404541", - "voter": "mandagoi" - }, - { - "rshares": "5391013762", - "voter": "nicolicreer" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "shieha", - "author_payout_value": "2.944 HBD", - "author_reputation": 70.74, - "beneficiaries": [], - "blacklists": [], - "body": "How could I have missed this post?!\n\n**Leaving my mark here as we're witnessing the evolution to a decentralized world!**", - "category": "meta", - "children": 0, - "created": "2017-10-27T02:43:48", - "curator_payout_value": "0.807 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1705685823314, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 3.751, - "payout_at": "2017-11-03T02:43:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171027t024345028z", - "post_id": 16170279, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 20 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-27T02:43:48", - "url": "/meta/@steemit/firstpost#@shieha/re-steemit-firstpost-20171027t024345028z" - }, - "shiningstar/re-steemit-firstpost-20171118t180756742z": { - "active_votes": [], - "author": "shiningstar", - "author_payout_value": "0.000 HBD", - "author_reputation": 37.72, - "beneficiaries": [], - "blacklists": [], - "body": "Nycccc owesome :)", - "category": "meta", - "children": 0, - "created": "2017-11-18T18:08:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-25T18:08:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171118t180756742z", - "post_id": 18061473, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-18T18:08:03", - "url": "/meta/@steemit/firstpost#@shiningstar/re-steemit-firstpost-20171118t180756742z" - }, - "sictransitgloria/re-steemit-firstpost-20160721t233702742z": { - "active_votes": [ - { - "rshares": "689526018", - "voter": "patrick-g" - } - ], - "author": "sictransitgloria", - "author_payout_value": "0.000 HBD", - "author_reputation": 47.05, - "beneficiaries": [], - "blacklists": [], - "body": "Go Steem!", - "category": "meta", - "children": 0, - "created": "2016-07-21T23:37:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 689526018, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160721t233702742z", - "post_id": 189812, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-21T23:37:00", - "url": "/meta/@steemit/firstpost#@sictransitgloria/re-steemit-firstpost-20160721t233702742z" - }, - "siersod/re-steemit-firstpost-20180117t152138749z": { - "active_votes": [ - { - "rshares": "8662845436", - "voter": "siersod" - }, - { - "rshares": "7550652219", - "voter": "christianytony" - }, - { - "rshares": "0", - "voter": "rosynesn" - }, - { - "rshares": "4127736538", - "voter": "shreetbn" - } - ], - "author": "siersod", - "author_payout_value": "0.168 HBD", - "author_reputation": 60.55, - "beneficiaries": [], - "blacklists": [], - "body": "hahaha, who imagines that the first (and only) post of steemit would be this xD a link to the whitepapper at least, right?", - "category": "meta", - "children": 0, - "created": "2018-01-17T15:21:39", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 20341234193, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.168, - "payout_at": "2018-01-24T15:21:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180117t152138749z", - "post_id": 26252563, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-17T15:21:39", - "url": "/meta/@steemit/firstpost#@siersod/re-steemit-firstpost-20180117t152138749z" - }, - "silent-ghost/20180620t025040761z": { - "active_votes": [ - { - "rshares": "2692141298", - "voter": "voluntary-io" - } - ], - "author": "silent-ghost", - "author_payout_value": "0.000 HBD", - "author_reputation": 9.13, - "beneficiaries": [], - "blacklists": [], - "body": "Welcome to Steemit @layra :)", - "category": "meta", - "children": 1, - "created": "2018-06-20T02:50:39", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "insteem/0.1", - "community": "insteem", - "format": "markdown" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 2692141298, - "parent_author": "layra", - "parent_permlink": "re-steemit-firstpost-20180620t023240325z", - "payout": 0.0, - "payout_at": "2018-06-27T02:50:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "20180620t025040761z", - "post_id": 53625628, - "promoted": "0.000 HBD", - "replies": [ - "layra/re-silent-ghost-20180620t025040761z-20180620t225205482z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T02:50:39", - "url": "/meta/@steemit/firstpost#@silent-ghost/20180620t025040761z" - }, - "silviu93/re-steemit-firstpost-20170728t193723204z": { - "active_votes": [ - { - "rshares": "266950900", - "voter": "bitcointauji" - } - ], - "author": "silviu93", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.96, - "beneficiaries": [], - "blacklists": [], - "body": "Glad to join this beautiful community!!!", - "category": "meta", - "children": 0, - "created": "2017-07-28T19:37:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 266950900, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-04T19:37:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170728t193723204z", - "post_id": 8578054, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-28T19:37:24", - "url": "/meta/@steemit/firstpost#@silviu93/re-steemit-firstpost-20170728t193723204z" - }, - "sisirhasan/re-steemit-firstpost-20180306t094207468z": { - "active_votes": [ - { - "rshares": "517770901", - "voter": "mahbub99" - }, - { - "rshares": "523898367", - "voter": "ariankhan" - } - ], - "author": "sisirhasan", - "author_payout_value": "0.000 HBD", - "author_reputation": 53.04, - "beneficiaries": [], - "blacklists": [], - "body": "I am sisir hasan. I try my best for success my life. i love steemit. Steemit is great.", - "category": "meta", - "children": 0, - "created": "2018-03-06T09:42:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1041669268, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-13T09:42:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180306t094207468z", - "post_id": 37007962, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-06T09:42:09", - "url": "/meta/@steemit/firstpost#@sisirhasan/re-steemit-firstpost-20180306t094207468z" - }, - "sisygoboom/re-wil1liam-re-stackin-re-steemit-firstpost-20180416t130745058z": { - "active_votes": [], - "author": "sisygoboom", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.86, - "beneficiaries": [], - "blacklists": [], - "body": "Back then it was only worth a few cents I believe - thats why most whales are also OGs", - "category": "meta", - "children": 0, - "created": "2018-04-16T13:07:45", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "wil1liam", - "parent_permlink": "re-stackin-re-steemit-firstpost-20180407t182425232z", - "payout": 0.0, - "payout_at": "2018-04-23T13:07:45", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-wil1liam-re-stackin-re-steemit-firstpost-20180416t130745058z", - "post_id": 43864796, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-16T13:08:06", - "url": "/meta/@steemit/firstpost#@sisygoboom/re-wil1liam-re-stackin-re-steemit-firstpost-20180416t130745058z" - }, - "smilever12/re-steemit-firstpost-20180109t224952449z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "smilever12", - "author_payout_value": "0.000 HBD", - "author_reputation": 40.85, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you @steemit! You've build such a great community and such a great opportunity to join changes!", - "category": "meta", - "children": 0, - "created": "2018-01-09T22:49:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-16T22:49:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180109t224952449z", - "post_id": 24668002, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-09T22:49:51", - "url": "/meta/@steemit/firstpost#@smilever12/re-steemit-firstpost-20180109t224952449z" - }, - "social/re-admin--20171107t163722264z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rlt47" - } - ], - "author": "social", - "author_payout_value": "0.000 HBD", - "author_reputation": -5.24, - "beneficiaries": [], - "blacklists": [ - "reputation-0" - ], - "body": "

A cat\u2019s nose pad is ridged with a unique pattern, just like the fingerprint of a human.

\n", - "category": "meta", - "children": 0, - "created": "2017-11-07T16:37:30", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "freakazoid/0.0.3" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "admin", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-14T16:37:30", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-admin--20171107t163722264z", - "post_id": 17095002, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": true, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-07T16:37:30", - "url": "/meta/@steemit/firstpost#@social/re-admin--20171107t163722264z" - }, - "social/re-admin--20171107t164333992z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rlt47" - } - ], - "author": "social", - "author_payout_value": "0.000 HBD", - "author_reputation": -5.24, - "beneficiaries": [], - "blacklists": [ - "reputation-0" - ], - "body": "

Cats can jump up to 7 times their tail length.

\n", - "category": "meta", - "children": 0, - "created": "2017-11-07T16:43:48", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "freakazoid/0.0.3" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "admin", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-11-14T16:43:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-admin--20171107t164333992z", - "post_id": 17095422, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": true, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-07T16:43:48", - "url": "/meta/@steemit/firstpost#@social/re-admin--20171107t164333992z" - }, - "sornprar/re-ackza-re-sornprar-re-steemit-firstpost-20170813t135846925z": { - "active_votes": [], - "author": "sornprar", - "author_payout_value": "0.000 HBD", - "author_reputation": 7.79, - "beneficiaries": [], - "blacklists": [], - "body": "I can't really say what he is or isn't doing, what his intentions really are vs what he expresses. Only he knows.\nYet based on my experience of what I had seen him doing, and some of what he says in his tutorials (on top of his participation in the White-Paper-Less/No-Proof_Of_Trading-Bot BitConnect referral program \"scam\").... I found it hard to trust him.\nDo you hear what he is saying in this video (or the one where he encouraged others to create bot networks to upvote self)?\nhttps://www.youtube.com/watch?v=lkq9L0FD4Q8\nAnyway, since reading the Steem White Papers I realized he is only taking advantage of things built into the system (whether I see it s abusive or not is besides the point, the fact those things are even built into the system to begin with is far more concerning).\nSo I am doing my best to just stay away from him and his clique of crypto-gangster wannabes. I have nothing to gain (little to lose), and had quickly found his cult of followers will blindly support him. It's not worth the fight if no one cares, if they want to put value to spam and crap with their ever-growing network of unstoppables that's on them.\nBut I digest.... I do want to stay as far away from this as possible. I have already been nearly nuked due to my ignorance and care for others. I do not want to make that mistake again.", - "category": "meta", - "children": 1, - "created": "2017-08-13T13:58:48", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://img.youtube.com/vi/lkq9L0FD4Q8/0.jpg" - ], - "links": [ - "https://www.youtube.com/watch?v=lkq9L0FD4Q8" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "ackza", - "parent_permlink": "re-sornprar-re-steemit-firstpost-20170813t054058376z", - "payout": 0.0, - "payout_at": "2017-08-20T13:58:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-ackza-re-sornprar-re-steemit-firstpost-20170813t135846925z", - "post_id": 10027633, - "promoted": "0.000 HBD", - "replies": [ - "crypto-guru/re-sornprar-re-ackza-re-sornprar-re-steemit-firstpost-20170827t191230930z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-13T13:58:48", - "url": "/meta/@steemit/firstpost#@sornprar/re-ackza-re-sornprar-re-steemit-firstpost-20170813t135846925z" - }, - "sornprar/re-frag-re-sornprar-re-steemit-firstpost-20170704t211016543z": { - "active_votes": [], - "author": "sornprar", - "author_payout_value": "0.000 HBD", - "author_reputation": 7.79, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks m8... don't see the upvote, perhaps from all the damage he's done to my account with his flagging. But I don't mind.... I found more \"profit\" in knowing someone actually say this (more worried about sharing this news with as many eyes as possible than I am in making any coins right now).\nFollowing back, for what it's worth (he's got me about at two minutes to midnight, facing the destruction of this account only to make another 1 or 3 - and yes, I can make and configure a bot if I needed to, I'd just rather do all this the ethical way and use whatever time I saved by being a good person and NOT cheating with a bot to spend with my amazing Wife; whom I am nothing without).\nhttps://steemitimages.com/DQmVh9akzARjKs6WqiSmQQK8zajQkwzFp4cbL34Usvo1CwU/Screenshot%20at%202017-06-30%2017-40-19.png", - "category": "meta", - "children": 0, - "created": "2017-07-04T21:10:18", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmVh9akzARjKs6WqiSmQQK8zajQkwzFp4cbL34Usvo1CwU/Screenshot%20at%202017-06-30%2017-40-19.png" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "frag", - "parent_permlink": "re-sornprar-re-steemit-firstpost-20170704t235218733z", - "payout": 0.0, - "payout_at": "2017-07-11T21:10:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-frag-re-sornprar-re-steemit-firstpost-20170704t211016543z", - "post_id": 6162566, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-04T21:11:06", - "url": "/meta/@steemit/firstpost#@sornprar/re-frag-re-sornprar-re-steemit-firstpost-20170704t211016543z" - }, - "sornprar/re-steemit-firstpost-20170704t204851481z": { - "active_votes": [ - { - "rshares": "558929895", - "voter": "sornprar" - }, - { - "rshares": "232155072", - "voter": "kumaranvpl" - } - ], - "author": "sornprar", - "author_payout_value": "0.000 HBD", - "author_reputation": 7.79, - "beneficiaries": [], - "blacklists": [], - "body": "

How to Lose Newcomers and Alienate Your Followers (With One YouTube Post).

\n

Be Careful Out There Kids!

\nThe Internet Can Be A Dangerous Place.\nAnd then there's Steemit Inc. & it's \"Big Dogs\".\n![images.png](https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png)\nYou can choose to take the next thing I am going to tell you any way you wish. You can call it spam. You can say it's an attack piece. You can even agree or disagree with it until you're blue in the face. You can read it, watch the video posted within it, and decide, \"Hey, that sounds great! I want to try that,\" or you might say to yourself (what I consider to be the ethical thing to do), \"Wow! That's just wrong!\". No matter what you choose to do, or not to do, after watching the video, I believe you might owe it to yourself to read what follows after it (especially if you are new here and are thinking about investing your money into the steem system).\nPlease watch & LISTEN to what is being said in this video. And know what he is saying is not theoretical, it can be done (and probably is being done, if not by bots then by people who only use steemit in the way he describes the bots could do it).\n![2Bcontinued.png](https://steemitimages.com/DQmTcmkEYZKs95tURMnX3sCRmu5GFYwJLcGSPf2ieTCRr8b/2Bcontinued.png)\nVideo Source: Courtesy of @craig-grant's YouTube channel \"Craig Grant\".\n![images.png](https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png)\nhttps://www.youtube.com/watch?v=6XCdPTMEnJQ\n![images.png](https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png)

\nDid you comprehend what is being explained here? And before anyone decides to defend the producer of said video, I will say now that I understand he is using the term \"hypothetical\" to soft sell the concept that this is not something that he is actively participating in. To leave the observer to believe this is just an idea in his head and nothing more. And yet he is encouraging potentially thousands and thousands of people to attempt to code and run such a bot. If you think this is good for the blockchain, think again.\nThink of it this way. Your new to the steem platform and don't really understand the game. After the first week or two you're struggling to understand why you aren't getting much exposure, how your posts only pulled in a small SMALL portion of what you see others pulling in. In addition, you start noticing single upvotes worth anywhere from $1 up to $40+. So your thinking to yourself, \"How can I reap such rewards and have that kind of voting power?\" and decide to look into it. Chances are all the other steemit blogs on the subject tell you, \"BUY STEEM! Invest more than your time and content. In order to increase your voting power, and your potential for exposer in the process, you have to put your money into it\".\nExcited in the idea of such power and profit, you immediately purchase hundreds (or, even worse, thousands) of dollars in BTC to exchange/trade for STEEM. And you do see an immediate increase in voting power and a slow increase in exposure as well (more followers, potentially more upvotes from others).\nSounds great, right?\nNot exactly. Enter @craig-grant, and other malicious Whales or even bots now.\nYou know all that money you just put into this thing? Well, guess what. The majority of it goes right into the rewards pool and is being sucked up by these kinds of accounts by a thing called self-upvoting.\nYou see, these accounts have been around for a lot longer than most of the rest of us. This whole project began with 0 users around 4-11-2016, and by 7-09-2016 it had approximately 10,00 Registered Users (and at that point less than half of them were active - and today it is gaining new users by the hundreds and thousands each day, approaching a total user base of almost 250,000). @craig-grant joined somewhere around June 2016 or sooner. These are the folks that pumped a bunch of their own money into the start-up platform and blockchain. Sounds like we should be thanking them, right? Some of them, YES. Yet some of them, NOT AT ALL.\nIn fact, we should all be researching them - and praising them or calling them out when appropriate (it's not a transparent system for nothing people, would you hand a pile of your hard earned cash to a complete stranger on the street based solely on their promise it will make you more influential and wealthy? You know, because BLOCKCHAIN. I doubt it).\nWhat I believe these accounts/users are doing is baiting all us newcomers into investing real fiat currency. And then using techniques described in this video they are draining the rewards pool with malicious intent with their so-called right to self-upvote.
\n
https://s-media-cache-ak0.pinimg.com/236x/fb/92/14/fb921449559ebbd10bf1c215131ee470.jpg Image found on Pinterest
\nSo all that money you put into this thing.... it will force you to make a choice at this point. And your choices are:\n
\"If You Can't Beat Them, Join Them\" and concentrate all your voting power on yourself (self-upvoting) and upvoting a selected group of your friends who are doing the same thing - being sure to give out just a few pennies here or dollars there to a Red Fish or Minnow so you can justify bragging how much you help others and are good for the community as a whole. And even then, if your lucky you just might break even or see a bit of profit and success. But keep in mind these other users are a lot older and more powerful than you, so they will always get a bigger piece of everything than you (bearing in mind you only invested a little bit, investing some insane amount like $500,000 would be a game changer for all those fools).\nOR\nRespectfully reserve your upvotes for others posts and comments while only upvoting very little of your own. If you're lucky you just might stay ahead, but your content better be out of this world. Even so, with some Whales habitually self-upvoting they are still not leaving much in the rewards pool for the rest of us no matter how good our content is.
\n![images.png](https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png)\n
Same user @craig-grant here in this next video, this time explaining how to maximize his profits by flagging (takes the value of his upvote power AWAY from a post - essentially taking any money people like you & me many have contributed to the post and putting it back in the rewards pool, where he and his kind can drain it from with their powerful self-upvoting value). He even says he flags not because he thinks it's spam or undeserving yet because it's profitable and popular [but not his?] !!! WT_ !?!?!
\nhttps://www.youtube.com/watch?v=lkq9L0FD4Q8
\n![images.png](https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png)\nIf your content is good, you shouldn't have to resort to lies, manipulation, and what nearly amounts to criminal fraud in order to be profitable and successful here. That is, so long as it's not too late and these malicious types are now just to big and too well connected to prevent them from taking all the worms and leaving the rest of us with just the castings (worm poop).\nFortunately it seems there are still enough righteous, honest and true Whales left out their to keep the scales somewhat balanced (here's looking at you @gentlebot \ud83d\ude07 and @randowhale \ud83d\udc0b).\nIf \"earning your fortune\" includes convincing people to invest real money knowing you are going to get most of it through your \"hacks\" and \"techniques\" and \"style of being Da Man\".... sounds like criminal fraud to me (if it quacks like a duck....).
\nIf you agree or disagree, please be a part of the conversation and voice your opinions in the comments. And please be sure to ![Screenshot at 2017-07-01 21-29-38.png](https://steemitimages.com/DQmNz4K3G8wi9N7gjF6WbKpem9g9tV5y6dnD5BTduDKW4aw/Screenshot%20at%202017-07-01%2021-29-38.png) & even give it an ![Screenshot at 2017-07-01 21-27-23.png](https://steemitimages.com/DQmWqZpXp8MwaMjY9wVCT8DZEChmS1LmnNzGdphtJjc7ABN/Screenshot%20at%202017-07-01%2021-27-23.png) if you can \"spare some change\".\n![images.png](https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png)\n
Here I am, those who will defend this concept of \"earning\". And I'm not afraid. So blow me (blow me a kiss).\nhttps://www.youtube.com/watch?v=U2OBw-LhNto
\n
Video Courtesy of Mutoid Man.\n![images.png](https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png)\n![blood-goth-trnsp.png](https://steemitimages.com/DQmdEQRZ1dnjnScPH3Tpmz7uDVGLruxR5FD6MWHpTZ1uQqt/blood-goth-trnsp.png)
", - "category": "meta", - "children": 5, - "created": "2017-07-04T20:48:54", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmTrDP1L78z6fvMbL5LTBKxqLUKbudpSF4F33ptt7FVv1Q/images.png", - "https://steemitimages.com/DQmTcmkEYZKs95tURMnX3sCRmu5GFYwJLcGSPf2ieTCRr8b/2Bcontinued.png", - "https://img.youtube.com/vi/6XCdPTMEnJQ/0.jpg", - "https://s-media-cache-ak0.pinimg.com/236x/fb/92/14/fb921449559ebbd10bf1c215131ee470.jpg", - "https://img.youtube.com/vi/lkq9L0FD4Q8/0.jpg", - "https://steemitimages.com/DQmNz4K3G8wi9N7gjF6WbKpem9g9tV5y6dnD5BTduDKW4aw/Screenshot%20at%202017-07-01%2021-29-38.png", - "https://steemitimages.com/DQmWqZpXp8MwaMjY9wVCT8DZEChmS1LmnNzGdphtJjc7ABN/Screenshot%20at%202017-07-01%2021-27-23.png", - "https://img.youtube.com/vi/U2OBw-LhNto/0.jpg", - "https://steemitimages.com/DQmdEQRZ1dnjnScPH3Tpmz7uDVGLruxR5FD6MWHpTZ1uQqt/blood-goth-trnsp.png" - ], - "links": [ - "https://www.youtube.com/watch?v=6XCdPTMEnJQ", - "https://www.youtube.com/watch?v=lkq9L0FD4Q8", - "https://www.youtube.com/watch?v=U2OBw-LhNto", - "https://www.facebook.com/mutoidman/videos/1506049312748222/" - ], - "tags": [ - "meta" - ], - "users": [ - "craig-grant", - "gentlebot", - "randowhale" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 791084967, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-11T20:48:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170704t204851481z", - "post_id": 6160892, - "promoted": "0.000 HBD", - "replies": [ - "frag/re-sornprar-re-steemit-firstpost-20170704t235218733z", - "ackza/re-sornprar-re-steemit-firstpost-20170812t064319021z", - "crypto-guru/re-sornprar-re-steemit-firstpost-20170827t191032679z", - "crypto-guru/re-sornprar-re-steemit-firstpost-20170827t191328874z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-04T20:52:39", - "url": "/meta/@steemit/firstpost#@sornprar/re-steemit-firstpost-20170704t204851481z" - }, - "sornprar/re-steemit-firstpost-20170705t021545762z": { - "active_votes": [ - { - "rshares": "466024194", - "voter": "sornprar" - } - ], - "author": "sornprar", - "author_payout_value": "0.000 HBD", - "author_reputation": 7.79, - "beneficiaries": [], - "blacklists": [], - "body": "
Public Service Announcement\n

The danger of a system that allows the haves to trick the have nots, and using a repetitive cycle of

\n1) Recruit\n2) Convince to invest\n3) upvote at 1-30% voting power\n4) once those posts (or any others) reach an impressive potential payout, flag it with mid to high voting power FLAGs\n5) Kill Shot - habitually/constantly upvote self with high to 100% self-voting power.\n

The More You Know (Bing!)

", - "category": "meta", - "children": 3, - "created": "2017-07-05T02:15:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 466024194, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-12T02:15:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170705t021545762z", - "post_id": 6182386, - "promoted": "0.000 HBD", - "replies": [ - "ackza/re-sornprar-re-steemit-firstpost-20170813t054058376z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-05T02:15:48", - "url": "/meta/@steemit/firstpost#@sornprar/re-steemit-firstpost-20170705t021545762z" + "admin/firstpost": { + "active_votes": [ + { + "rshares": "-375241", + "voter": "dantheman" + }, + { + "rshares": "5100", + "voter": "steemit46" + }, + { + "rshares": "81125", + "voter": "roadscape" + }, + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "431616594", + "voter": "acidyo" + }, + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "58854897335", + "voter": "business" + }, + { + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "rshares": "244129227", + "voter": "kewpiedoll" + }, + { + "rshares": "1615731741", + "voter": "naturalista" + } + ], + "author": "admin", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "First Reply! Let's get this **party** started", + "category": "meta", + "children": 2, + "created": "2016-03-30T19:52:30", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62423410900, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 2, + "promoted": "0.000 HBD", + "replies": [ + "kingtylervvs/re-admin-firstpost-20160717t193811098z", + "gopher/re-admin-firstpost-20160718t195306992z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 10 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-03-30T19:52:30", + "url": "/meta/@steemit/firstpost#@admin/firstpost" }, - "sornprar/re-steemit-firstpost-20170705t162923097z": { - "active_votes": [ - { - "rshares": "541221714", - "voter": "sornprar" - } - ], - "author": "sornprar", - "author_payout_value": "0.000 HBD", - "author_reputation": 7.79, - "beneficiaries": [], - "blacklists": [], - "body": "

*Just a Little Something to Think About.*

\n
https://anonimag.es/i/Screenshotat2017-07-0513-23-45d45e5.png
\n
That's not to say there is not good people here doing good things.\nMore so to say Just Be Careful In Here.
", - "category": "meta", - "children": 0, - "created": "2017-07-05T16:29:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://anonimag.es/i/Screenshotat2017-07-0513-23-45d45e5.png" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 541221714, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-12T16:29:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170705t162923097z", - "post_id": 6244645, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-05T16:29:24", - "url": "/meta/@steemit/firstpost#@sornprar/re-steemit-firstpost-20170705t162923097z" + "bestmalik/re-steemit-firstpost-20160726t035722561z": { + "active_votes": [ + { + "rshares": "7413824", + "voter": "cire81" + } + ], + "author": "bestmalik", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "GO STEEM !!!", + "category": "meta", + "children": 0, + "created": "2016-07-26T03:57:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 7413824, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160726t035722561z", + "post_id": 366098, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-26T03:57:24", + "url": "/meta/@steemit/firstpost#@bestmalik/re-steemit-firstpost-20160726t035722561z" }, - "spaminator/re-veseloff-re-layra-re-steemit-firstpost-20180620t171437053z-20180620t182350260z": { - "active_votes": [ - { - "rshares": "93112402683", - "voter": "adm" - }, - { - "rshares": "294175919", - "voter": "layra" - }, - { - "rshares": "105197165248", - "voter": "mack-fund" - } - ], - "author": "spaminator", - "author_payout_value": "0.339 HBD", - "author_reputation": 68.51, - "beneficiaries": [], - "blacklists": [], - "body": "[Source]()\nLeaving comments asking for votes, follows, or other self promotional messages could be seen as spam.\r\n\r\nMore Information: \r\n\r\n[The Art of Commenting](https://steemit.com/steemcleaners/@steemcleaners/the-art-of-commenting)\r\n[Comment Classifications](https://steemcleaners.org/comment-classifications/)\r\n", - "category": "meta", - "children": 0, - "created": "2018-06-20T18:23:51", - "curator_payout_value": "0.066 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemcleaners/0.3", - "community": "steemcleaners", - "format": "markdown+html" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 198603743850, - "parent_author": "veseloff", - "parent_permlink": "re-layra-re-steemit-firstpost-20180620t171437053z", - "payout": 0.405, - "payout_at": "2018-06-27T18:23:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-veseloff-re-layra-re-steemit-firstpost-20180620t171437053z-20180620t182350260z", - "post_id": 53711153, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T18:23:51", - "url": "/meta/@steemit/firstpost#@spaminator/re-veseloff-re-layra-re-steemit-firstpost-20180620t171437053z-20180620t182350260z" + "business/re-red-steemit-firstpost-2-20160713t083846149z": { + "active_votes": [ + { + "rshares": "724886327", + "voter": "patrick-g" + } + ], + "author": "business", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "No way?", + "category": "meta", + "children": 0, + "created": "2016-07-13T08:38:48", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 724886327, + "parent_author": "red", + "parent_permlink": "steemit-firstpost-2", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-red-steemit-firstpost-2-20160713t083846149z", + "post_id": 92974, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-13T08:38:48", + "url": "/meta/@steemit/firstpost#@business/re-red-steemit-firstpost-2-20160713t083846149z" }, - "spectrumecons/re-steemit-firstpost-20171101t004320782z": { - "active_votes": [ - { - "rshares": "8582512857", - "voter": "jaycobbell" - }, - { - "rshares": "647805885", - "voter": "steemsquad" - }, - { - "rshares": "17217046790", - "voter": "choogirl" - }, - { - "rshares": "75873875325", - "voter": "centerlink" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "spectrumecons", - "author_payout_value": "0.170 HBD", - "author_reputation": 69.67, - "beneficiaries": [], - "blacklists": [], - "body": "It is awesome to be on Steemit. These first few months have been very exciting. I'm hoping one day Steemit will surpass Facebook.", - "category": "meta", - "children": 0, - "created": "2017-11-01T00:43:21", - "curator_payout_value": "0.039 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 102321240857, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.209, - "payout_at": "2017-11-08T00:43:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171101t004320782z", - "post_id": 16577175, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-01T00:43:21", - "url": "/meta/@steemit/firstpost#@spectrumecons/re-steemit-firstpost-20171101t004320782z" + "business/re-steemit-firstpost-20160713t082910980z": { + "active_votes": [ + { + "rshares": "724886327", + "voter": "patrick-g" + }, + { + "rshares": "58854897335", + "voter": "business" + }, + { + "rshares": "628198247", + "voter": "graystone" + }, + { + "rshares": "256298401739", + "voter": "juneaugoldbuyer" + }, + { + "rshares": "28483434", + "voter": "gjhi4552201" + }, + { + "rshares": "226779353", + "voter": "steg" + }, + { + "rshares": "54017869", + "voter": "zelious" + }, + { + "rshares": "51109965", + "voter": "f1111111" + } + ], + "author": "business", + "author_payout_value": "0.036 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Welcome to steemit, @steemit.", + "category": "meta", + "children": 0, + "created": "2016-07-13T08:29:15", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 316866774269, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.036, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160713t082910980z", + "post_id": 92903, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 8 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-13T08:29:36", + "url": "/meta/@steemit/firstpost#@business/re-steemit-firstpost-20160713t082910980z" }, - "splendorhub/re-steemit-firstpost-20180225t015256519z": { - "active_votes": [ - { - "rshares": "122894159", - "voter": "autonomysystem" - }, - { - "rshares": "8597984265", - "voter": "meno" - }, - { - "rshares": "820553327", - "voter": "as-i-see-it" - }, - { - "rshares": "3469514312", - "voter": "steembasicincome" - } - ], - "author": "splendorhub", - "author_payout_value": "0.061 HBD", - "author_reputation": 62.0, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit Hey, I've been here on Steemit for some time. The journey has been bumpy, but well worth it. This is my first time ever trying to blog or share details of my experiences. I get tons of satisfaction sharing my love photography. Steemit is awesome :) Best wishes, - @splendorhub", - "category": "meta", - "children": 0, - "created": "2018-02-25T01:52:15", - "curator_payout_value": "0.006 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "splendorhub" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 13010946063, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.067, - "payout_at": "2018-03-04T01:52:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180225t015256519z", - "post_id": 35014599, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-25T01:52:15", - "url": "/meta/@steemit/firstpost#@splendorhub/re-steemit-firstpost-20180225t015256519z" + "deanliu/re-steemit-firstpost-20160810t083336206z": { + "active_votes": [ + { + "rshares": "74273734", + "voter": "bitmaxt" + }, + { + "rshares": "56152551", + "voter": "lovetosteemit" + } + ], + "author": "deanliu", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "is this post truly the time zero, the origin, the big bang of all?", + "category": "meta", + "children": 0, + "created": "2016-08-10T08:33:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 130426285, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160810t083336206z", + "post_id": 721016, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-10T08:33:54", + "url": "/meta/@steemit/firstpost#@deanliu/re-steemit-firstpost-20160810t083336206z" }, - "stackin/re-mammasitta-re-stackin-2017825t14817749z-20170824t235309382z": { - "active_votes": [ - { - "rshares": "32584724400", - "voter": "mammasitta" - } - ], - "author": "stackin", - "author_payout_value": "0.128 HBD", - "author_reputation": 78.28, - "beneficiaries": [], - "blacklists": [], - "body": "So crazy @mammasitta ... this comment is in the hot feed on steemit \ud83e\udd23", - "category": "meta", - "children": 3, - "created": "2017-08-24T23:53:09", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "mammasitta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 32584724400, - "parent_author": "mammasitta", - "parent_permlink": "re-stackin-2017825t14817749z", - "payout": 0.128, - "payout_at": "2017-08-31T23:53:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-mammasitta-re-stackin-2017825t14817749z-20170824t235309382z", - "post_id": 10991866, - "promoted": "0.000 HBD", - "replies": [ - "mammasitta/re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235433264z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T23:53:09", - "url": "/meta/@steemit/firstpost#@stackin/re-mammasitta-re-stackin-2017825t14817749z-20170824t235309382z" + "edbriv/re-steemit-firstpost-20160801t184846033z": { + "active_votes": [ + { + "rshares": "-336740570", + "voter": "dtbahoney" + }, + { + "rshares": "52272448", + "voter": "edbriv" + } + ], + "author": "edbriv", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "GO STEEM !!! go!!!", + "category": "meta", + "children": 0, + "created": "2016-08-01T18:12:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -284468122, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160801t184846033z", + "post_id": 540797, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-01T18:12:00", + "url": "/meta/@steemit/firstpost#@edbriv/re-steemit-firstpost-20160801t184846033z" }, - "stackin/re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235551792z": { - "active_votes": [ - { - "rshares": "32585187292", - "voter": "mammasitta" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - } - ], - "author": "stackin", - "author_payout_value": "0.096 HBD", - "author_reputation": 78.28, - "beneficiaries": [], - "blacklists": [], - "body": "You used the steemit magic lol", - "category": "meta", - "children": 0, - "created": "2017-08-24T23:55:51", - "curator_payout_value": "0.031 HBD", - "depth": 6, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 32585187292, - "parent_author": "mammasitta", - "parent_permlink": "re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235433264z", - "payout": 0.127, - "payout_at": "2017-08-31T23:55:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235551792z", - "post_id": 10992021, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T23:55:51", - "url": "/meta/@steemit/firstpost#@stackin/re-mammasitta-re-stackin-re-mammasitta-re-stackin-2017825t14817749z-20170824t235551792z" + "flandude/re-steemit-firstpost-20160811t225325571z": { + "active_votes": [ + { + "rshares": "47738566", + "voter": "alktoni" + }, + { + "rshares": "555987168", + "voter": "funkywanderer" + }, + { + "rshares": "45336058", + "voter": "andressilvera" + }, + { + "rshares": "50997147", + "voter": "david.prochnow" + } + ], + "author": "flandude", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "http://i.imgsafe.org/d01598860e.jpg", + "category": "meta", + "children": 0, + "created": "2016-08-11T22:53:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://i.imgsafe.org/d01598860e.jpg" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 700058939, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160811t225325571z", + "post_id": 754693, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-11T22:53:27", + "url": "/meta/@steemit/firstpost#@flandude/re-steemit-firstpost-20160811t225325571z" }, - "stackin/re-mammasitta-re-steemit-firstpost-20170824t234608820z": { - "active_votes": [ - { - "rshares": "32584724400", - "voter": "mammasitta" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - }, - { - "rshares": "0", - "voter": "kevca16" - }, - { - "rshares": "0", - "voter": "pavelnunez" - } - ], - "author": "stackin", - "author_payout_value": "0.126 HBD", - "author_reputation": 78.28, - "beneficiaries": [], - "blacklists": [], - "body": "At least I commented \ud83e\udd23", - "category": "meta", - "children": 6, - "created": "2017-08-24T23:46:09", - "curator_payout_value": "0.001 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 32584724400, - "parent_author": "mammasitta", - "parent_permlink": "re-steemit-firstpost-20170824t230822305z", - "payout": 0.127, - "payout_at": "2017-08-31T23:46:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-mammasitta-re-steemit-firstpost-20170824t234608820z", - "post_id": 10991456, - "promoted": "0.000 HBD", - "replies": [ - "mammasitta/re-stackin-2017825t14817749z", - "crypto-guru/re-stackin-re-mammasitta-re-steemit-firstpost-20170827t191608007z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T23:46:09", - "url": "/meta/@steemit/firstpost#@stackin/re-mammasitta-re-steemit-firstpost-20170824t234608820z" + "future24/re-steemit-firstpost-20160818t030224104z": { + "active_votes": [ + { + "rshares": "53122308", + "voter": "mandarin99" + } + ], + "author": "future24", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Thank you!", + "category": "meta", + "children": 0, + "created": "2016-08-18T03:02:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53122308, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160818t030224104z", + "post_id": 864413, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-18T03:02:24", + "url": "/meta/@steemit/firstpost#@future24/re-steemit-firstpost-20160818t030224104z" }, - "stackin/re-steemit-firstpost-20170824t235112132z": { - "active_votes": [ - { - "rshares": "7250350451", - "voter": "pnc" - }, - { - "rshares": "368081223588", - "voter": "teamsteem" - }, - { - "rshares": "868252129422", - "voter": "nanzo-scoop" - }, - { - "rshares": "10636089040", - "voter": "mummyimperfect" - }, - { - "rshares": "12223076753", - "voter": "ak2020" - }, - { - "rshares": "14547764993", - "voter": "g-dubs" - }, - { - "rshares": "620851471", - "voter": "lauralemons" - }, - { - "rshares": "323928862219", - "voter": "freeyourmind" - }, - { - "rshares": "52777463934", - "voter": "kendewitt" - }, - { - "rshares": "171827671", - "voter": "deboas" - }, - { - "rshares": "10942803529", - "voter": "bitcoiner" - }, - { - "rshares": "330174800820", - "voter": "snowflake" - }, - { - "rshares": "186678661573", - "voter": "surfermarly" - }, - { - "rshares": "2885798489765", - "voter": "zeartul" - }, - { - "rshares": "399124732", - "voter": "lamech-m" - }, - { - "rshares": "14822764839", - "voter": "kenistyles" - }, - { - "rshares": "47300398628", - "voter": "erikaharris" - }, - { - "rshares": "6764040642", - "voter": "abh12345" - }, - { - "rshares": "6049181350", - "voter": "swisswatcher" - }, - { - "rshares": "37651907245", - "voter": "t-bot" - }, - { - "rshares": "80445974", - "voter": "awesomenyl" - }, - { - "rshares": "1061399570", - "voter": "siniceku" - }, - { - "rshares": "88542720", - "voter": "black-eye" - }, - { - "rshares": "15605418071", - "voter": "mafeeva" - }, - { - "rshares": "30840034418", - "voter": "alexvan" - }, - { - "rshares": "323431718514", - "voter": "someonewhoisme" - }, - { - "rshares": "0", - "voter": "ackza" - }, - { - "rshares": "7053985692", - "voter": "sandstorm" - }, - { - "rshares": "4552388673", - "voter": "detlev" - }, - { - "rshares": "97265657118", - "voter": "sarasate" - }, - { - "rshares": "20957544410", - "voter": "luna33" - }, - { - "rshares": "32300928229", - "voter": "choogirl" - }, - { - "rshares": "1942580747", - "voter": "greenstar" - }, - { - "rshares": "122073787", - "voter": "marcusxman" - }, - { - "rshares": "946666597107", - "voter": "mrwalt" - }, - { - "rshares": "266553598221", - "voter": "surfyogi" - }, - { - "rshares": "7836487932", - "voter": "kingyus" - }, - { - "rshares": "21265777603", - "voter": "brucebrownftw" - }, - { - "rshares": "0", - "voter": "stackin" - }, - { - "rshares": "63861129420", - "voter": "sneakgeekz" - }, - { - "rshares": "8484238753", - "voter": "charles1" - }, - { - "rshares": "4803993822", - "voter": "vj1309" - }, - { - "rshares": "944948726531", - "voter": "flipstar" - }, - { - "rshares": "68459985", - "voter": "viralcutz" - }, - { - "rshares": "14754629948", - "voter": "scooter77" - }, - { - "rshares": "4923801156", - "voter": "lifewithcrypto" - }, - { - "rshares": "0", - "voter": "gomain" - }, - { - "rshares": "52339457665", - "voter": "centerlink" - }, - { - "rshares": "126017816438", - "voter": "richreck" - }, - { - "rshares": "1915846243", - "voter": "clemdane" - }, - { - "rshares": "24623349068", - "voter": "steppingout23" - }, - { - "rshares": "1875830041", - "voter": "hfigueroa" - }, - { - "rshares": "1802902440", - "voter": "legosnjoysticks" - }, - { - "rshares": "1526170783844", - "voter": "michaeldavid" - }, - { - "rshares": "446515631", - "voter": "ratticus" - }, - { - "rshares": "958341913", - "voter": "fiftysixnorth" - }, - { - "rshares": "5013337288", - "voter": "pkvlogs" - }, - { - "rshares": "607129600", - "voter": "kurttasche" - }, - { - "rshares": "2697622297", - "voter": "boomshikha" - }, - { - "rshares": "102341796", - "voter": "fakire1sadaka" - }, - { - "rshares": "55712420554", - "voter": "cryptoeagle" - }, - { - "rshares": "14646075922", - "voter": "mrsquiggle" - }, - { - "rshares": "1184429360", - "voter": "vbtech" - }, - { - "rshares": "174590251", - "voter": "ronaldsteemit89" - }, - { - "rshares": "661561242", - "voter": "teme" - }, - { - "rshares": "0", - "voter": "kingxeno" - }, - { - "rshares": "0", - "voter": "oep" - }, - { - "rshares": "0", - "voter": "dallasrushing" - }, - { - "rshares": "0", - "voter": "ritikagupta" - }, - { - "rshares": "0", - "voter": "meansunlare" - }, - { - "rshares": "0", - "voter": "azeemprime" - }, - { - "rshares": "0", - "voter": "asherunderwood" - }, - { - "rshares": "0", - "voter": "juicyvegandwarf" - }, - { - "rshares": "0", - "voter": "mr-lahey" - }, - { - "rshares": "0", - "voter": "alexcozzy" - }, - { - "rshares": "0", - "voter": "kingmixa" - } - ], - "author": "stackin", - "author_payout_value": "32.068 HBD", - "author_reputation": 78.28, - "beneficiaries": [], - "blacklists": [], - "body": "It's amazing to be on Steemit \ud83d\ude4c\ud83c\udffc\ud83d\udcaa\ud83c\udffc\ud83d\udcaf", - "category": "meta", - "children": 42, - "created": "2017-08-24T23:51:12", - "curator_payout_value": "7.210 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 9821492322659, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 39.278, - "payout_at": "2017-08-31T23:51:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170824t235112132z", - "post_id": 10991763, - "promoted": "0.000 HBD", - "replies": [ - "boomshikha/re-stackin-re-steemit-firstpost-20170825t013613361z", - "crypto-guru/re-stackin-re-steemit-firstpost-20170827t190543739z", - "hussnain/re-stackin-re-steemit-firstpost-20171218t225148759z", - "gomain/re-stackin-re-steemit-firstpost-20180107t195657460z", - "dylanhobalart/re-stackin-re-steemit-firstpost-20180116t065239526z", - "topdollar001/re-stackin-re-steemit-firstpost-20180119t002117970z", - "mr-lahey/re-stackin-re-steemit-firstpost-20180125t015744901z", - "mominsdt/re-stackin-re-steemit-firstpost-20180204t150331514z", - "juicyvegandwarf/re-stackin-re-steemit-firstpost-20180205t003302894z", - "chaseburnett/re-stackin-re-steemit-firstpost-20180213t001539171z", - "salda/re-stackin-re-steemit-firstpost-20180214t094158335z", - "salda/re-stackin-re-steemit-firstpost-20180214t094350602z", - "calebotamus/re-stackin-re-steemit-firstpost-20180223t211655533z", - "dan321/re-stackin-re-steemit-firstpost-20180304t105930825z", - "ppktech/re-stackin-re-steemit-firstpost-20180310t111546590z", - "martintruther/re-stackin-re-steemit-firstpost-20180312t001847652z", - "azeemprime/re-stackin-re-steemit-firstpost-20180320t060223173z", - "wil1liam/re-stackin-re-steemit-firstpost-20180407t182425232z", - "onceuponmylife/re-stackin-re-steemit-firstpost-20180502t003931757z", - "sutter/re-stackin-re-steemit-firstpost-20180518t035057988z", - "michaelabbas/re-stackin-re-steemit-firstpost-20180813t023057209z", - "ackza/re-stackin-re-steemit-firstpost-20190402t134818892z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 62 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-24T23:51:12", - "url": "/meta/@steemit/firstpost#@stackin/re-steemit-firstpost-20170824t235112132z" + "gekko/re-steemit-firstpost-20160721t223937736z": { + "active_votes": [ + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "689526018", + "voter": "patrick-g" + }, + { + "rshares": "145914460", + "voter": "allmonitors" + } + ], + "author": "gekko", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I leave my mark here in mythical post 8]", + "category": "meta", + "children": 0, + "created": "2016-07-21T22:39:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1261343544, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160721t223937736z", + "post_id": 260426, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T22:39:39", + "url": "/meta/@steemit/firstpost#@gekko/re-steemit-firstpost-20160721t223937736z" }, - "starangel/re-steemit-firstpost-20171231t171957452z": { - "active_votes": [ - { - "rshares": "755325541", - "voter": "enginewitty" - }, - { - "rshares": "1692321193", - "voter": "starangel" - }, - { - "rshares": "3709018457", - "voter": "thealliance" - } - ], - "author": "starangel", - "author_payout_value": "0.070 HBD", - "author_reputation": 52.2, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is indeed life changing and it never cease to amaze me! \u263a\ud83c\udf1f Thank you very much @steemit! \ud83d\udc9a", - "category": "meta", - "children": 0, - "created": "2017-12-31T17:20:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 6156665191, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.07, - "payout_at": "2018-01-07T17:20:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171231t171957452z", - "post_id": 22841184, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-31T17:20:00", - "url": "/meta/@steemit/firstpost#@starangel/re-steemit-firstpost-20171231t171957452z" + "gopher/re-admin-firstpost-20160718t195306992z": { + "active_votes": [ + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "111000395", + "voter": "bustillos" + } + ], + "author": "gopher", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Are you admin in steem? If you have been hacked, who can help you?", + "category": "meta", + "children": 0, + "created": "2016-07-18T19:53:12", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 853566876, + "parent_author": "admin", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-admin-firstpost-20160718t195306992z", + "post_id": 172339, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-18T19:53:12", + "url": "/meta/@steemit/firstpost#@gopher/re-admin-firstpost-20160718t195306992z" }, - "stardivine/re-hussnain-re-stackin-re-steemit-firstpost-20171231t165419611z": { - "active_votes": [ - { - "rshares": "658804001", - "voter": "stardivine" - }, - { - "rshares": "0", - "voter": "asherunderwood" - } - ], - "author": "stardivine", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.06, - "beneficiaries": [], - "blacklists": [], - "body": "Keep on Steeming! Happy New Year! \u263a\u2728\ud83c\udf89\ud83c\udf8a\ud83c\udf86", - "category": "meta", - "children": 0, - "created": "2017-12-31T16:54:21", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 658804001, - "parent_author": "hussnain", - "parent_permlink": "re-stackin-re-steemit-firstpost-20171218t225148759z", - "payout": 0.0, - "payout_at": "2018-01-07T16:54:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-hussnain-re-stackin-re-steemit-firstpost-20171231t165419611z", - "post_id": 22837757, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-31T16:54:21", - "url": "/meta/@steemit/firstpost#@stardivine/re-hussnain-re-stackin-re-steemit-firstpost-20171231t165419611z" + "gopher/re-steemit-firstpost-20160718t195806340z": { + "active_votes": [], + "author": "gopher", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "http://steem.com/@bittrex/transfers how this user can have these tranfers without any activity?", + "category": "meta", + "children": 1, + "created": "2016-07-18T19:58:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "links": [ + "http://steem.com/@bittrex/transfers" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160718t195806340z", + "post_id": 172415, + "promoted": "0.000 HBD", + "replies": [ + "steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-18T19:58:09", + "url": "/meta/@steemit/firstpost#@gopher/re-steemit-firstpost-20160718t195806340z" }, - "starfinger13/re-steemit-firstpost-20180413t023524112z": { - "active_votes": [ - { - "rshares": "63287392", - "voter": "raise-me-up" - }, - { - "rshares": "113176975", - "voter": "soyeburrahman" - } - ], - "author": "starfinger13", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.92, - "beneficiaries": [], - "blacklists": [], - "body": "Happy To be there !", - "category": "meta", - "children": 0, - "created": "2018-04-13T02:35:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 176464367, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-04-20T02:35:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180413t023524112z", - "post_id": 43334942, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-13T02:35:24", - "url": "/meta/@steemit/firstpost#@starfinger13/re-steemit-firstpost-20180413t023524112z" + "imarealboy777/re-steemit-firstpost-20160801t232001768z": { + "active_votes": [ + { + "rshares": "2725768", + "voter": "cire81" + }, + { + "rshares": "154885141", + "voter": "lorddominik007" + } + ], + "author": "imarealboy777", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Vesting , vesting 1 2 3 .", + "category": "meta", + "children": 0, + "created": "2016-08-01T23:20:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 157610909, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160801t232001768z", + "post_id": 547508, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-01T23:20:36", + "url": "/meta/@steemit/firstpost#@imarealboy777/re-steemit-firstpost-20160801t232001768z" }, - "stealthtrader/pypq0x": { - "active_votes": [ - { - "rshares": "0", - "voter": "cosmophobia" - } - ], - "author": "stealthtrader", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.01, - "beneficiaries": [], - "blacklists": [], - "body": "See it is so simple! \n\nI can't believe we had such a hard time trying to explain what Steemit is..\n\nWe should just show people this!!", - "category": "meta", - "children": 0, - "created": "2019-10-01T20:24:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1" - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-10-08T20:24:36", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "pypq0x", - "post_id": 80507026, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-10-01T20:24:36", - "url": "/meta/@steemit/firstpost#@stealthtrader/pypq0x" + "intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z": { + "active_votes": [ + { + "rshares": "23648397", + "voter": "sillyfilthy" + } + ], + "author": "intelliguy", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I thought we were talking about @ned and not @steemit", + "category": "meta", + "children": 1, + "created": "2016-07-21T05:33:57", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ], + "users": [ + "ned", + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 23648397, + "parent_author": "kewpiedoll", + "parent_permlink": "re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z", + "post_id": 239195, + "promoted": "0.000 HBD", + "replies": [ + "kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T05:33:57", + "url": "/meta/@steemit/firstpost#@intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z" }, - "steem-id/re-red-steemit-firstpost-2": { - "active_votes": [ - { - "rshares": "724886327", - "voter": "patrick-g" - }, - { - "rshares": "0", - "voter": "the-ego-is-you" - }, - { - "rshares": "0", - "voter": "bvidal" - }, - { - "rshares": "0", - "voter": "setio" - } - ], - "author": "steem-id", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.12, - "beneficiaries": [], - "blacklists": [], - "body": "Can I get some :D", - "category": "meta", - "children": 0, - "created": "2016-04-13T03:48:36", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 724886327, - "parent_author": "red", - "parent_permlink": "steemit-firstpost-2", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-red-steemit-firstpost-2", - "post_id": 101, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-04-13T03:48:36", - "url": "/meta/@steemit/firstpost#@steem-id/re-red-steemit-firstpost-2" + "intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z": { + "active_votes": [], + "author": "intelliguy", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "probably because it's one sentence. Doesn't add a lot of good, quality content? I don't know.", + "category": "meta", + "children": 3, + "created": "2016-07-20T21:58:51", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "kewpiedoll", + "parent_permlink": "re-steemit-firstpost-20160720t210201326z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-kewpiedoll-re-steemit-firstpost-20160720t215823622z", + "post_id": 230821, + "promoted": "0.000 HBD", + "replies": [ + "kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T21:58:51", + "url": "/meta/@steemit/firstpost#@intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z" }, - "steemit/firstpost": { - "active_votes": [ - { - "rshares": "375241", - "voter": "dantheman" - }, - { - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "rshares": "5100", - "voter": "steemit78" - }, - { - "rshares": "1259167", - "voter": "anonymous" - }, - { - "rshares": "318519", - "voter": "hello" - }, - { - "rshares": "153384", - "voter": "world" - }, - { - "rshares": "-936400", - "voter": "ned" - }, - { - "rshares": "59412", - "voter": "fufubar1" - }, - { - "rshares": "14997", - "voter": "anonymous1" - }, - { - "rshares": "1441", - "voter": "red" - }, - { - "rshares": "551390835500", - "voter": "liondani" - }, - { - "rshares": "82748", - "voter": "roadscape" - }, - { - "rshares": "10772", - "voter": "xeroc" - }, - { - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "rshares": "498863058", - "voter": "joelinux" - }, - { - "rshares": "9590417", - "voter": "piranhax" - }, - { - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "rshares": "425903066", - "voter": "gekko" - }, - { - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "rshares": "422984262", - "voter": "acidyo" - }, - { - "rshares": "47179379651", - "voter": "tosch" - }, - { - "rshares": "7831667988", - "voter": "klye" - }, - { - "rshares": "1019950749", - "voter": "coar" - }, - { - "rshares": "1746058458", - "voter": "murh" - }, - { - "rshares": "0", - "voter": "ashe-oro" - }, - { - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "rshares": "0", - "voter": "hien-tran" - }, - { - "rshares": "0", - "voter": "noganoo" - }, - { - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "rshares": "40624969", - "voter": "ben99" - }, - { - "rshares": "0", - "voter": "tskeene" - }, - { - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "rshares": "0", - "voter": "roelandp" - }, - { - "rshares": "0", - "voter": "stealthtrader" - }, - { - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "rshares": "0", - "voter": "picokernel" - }, - { - "rshares": "0", - "voter": "ausbitbank" - }, - { - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "rshares": "0", - "voter": "sebastien" - }, - { - "rshares": "917398502", - "voter": "decrypt" - }, - { - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "rshares": "1037079223", - "voter": "condra" - }, - { - "rshares": "233032838", - "voter": "jearson" - }, - { - "rshares": "240809500", - "voter": "tritium" - }, - { - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "rshares": "226074637", - "voter": "artjedi" - }, - { - "rshares": "931542394", - "voter": "anduweb" - }, - { - "rshares": "2292983350", - "voter": "inertia" - }, - { - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "rshares": "266262926", - "voter": "desmonid" - }, - { - "rshares": "71498008", - "voter": "madhatting" - }, - { - "rshares": "23726644841", - "voter": "ubg" - }, - { - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "rshares": "131577259", - "voter": "gribgo" - }, - { - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "rshares": "28907874049", - "voter": "orm" - }, - { - "rshares": "528988007", - "voter": "qonq99" - }, - { - "rshares": "129537329", - "voter": "rd7783" - }, - { - "rshares": "615020728", - "voter": "slava" - }, - { - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "rshares": "0", - "voter": "social" - }, - { - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "rshares": "95219365", - "voter": "curator" - }, - { - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "rshares": "0", - "voter": "solos" - }, - { - "rshares": "0", - "voter": "alvintang" - }, - { - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "rshares": "0", - "voter": "blysards" - }, - { - "rshares": "0", - "voter": "nick.kharchenko" - }, - { - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "rshares": "1279854", - "voter": "nigmat" - }, - { - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "rshares": "10847083143", - "voter": "metrox" - }, - { - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "rshares": "710989138", - "voter": "romancs" - }, - { - "rshares": "59366614", - "voter": "luke490" - }, - { - "rshares": "58762473", - "voter": "bro66" - }, - { - "rshares": "201822591", - "voter": "future24" - }, - { - "rshares": "58623688", - "voter": "mythras" - }, - { - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "rshares": "0", - "voter": "matrixdweller" - }, - { - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "rshares": "54761612", - "voter": "edbriv" - }, - { - "rshares": "0", - "voter": "anarchyhasnogods" - }, - { - "rshares": "865125771", - "voter": "rittr" - }, - { - "rshares": "0", - "voter": "tumutanzi" - }, - { - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "rshares": "52740989", - "voter": "tcstix" - }, - { - "rshares": "49467477", - "voter": "friedwater" - }, - { - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "rshares": "0", - "voter": "gbonikz" - }, - { - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "rshares": "0", - "voter": "darkflame" - }, - { - "rshares": "0", - "voter": "sneak" - }, - { - "rshares": "0", - "voter": "jacobcards" - }, - { - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "rshares": "0", - "voter": "shieha" - }, - { - "rshares": "54017869", - "voter": "zelious" - }, - { - "rshares": "0", - "voter": "allyouneedtoknow" - }, - { - "rshares": "0", - "voter": "justyy" - }, - { - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "rshares": "53196086", - "voter": "f1111111" - }, - { - "rshares": "0", - "voter": "anomaly" - }, - { - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "rshares": "0", - "voter": "buckland" - }, - { - "rshares": "0", - "voter": "guest123" - }, - { - "rshares": "0", - "voter": "syahhiran" - }, - { - "rshares": "0", - "voter": "rarcntv" - }, - { - "rshares": "0", - "voter": "nataleeoliver" - }, - { - "rshares": "0", - "voter": "goldmatters" - }, - { - "rshares": "0", - "voter": "gamer00" - }, - { - "rshares": "0", - "voter": "curiesea" - }, - { - "rshares": "0", - "voter": "missmarzipan" - }, - { - "rshares": "0", - "voter": "thejohalfiles" - }, - { - "rshares": "0", - "voter": "steemwart" - }, - { - "rshares": "0", - "voter": "mapesa" - }, - { - "rshares": "0", - "voter": "max-max" - }, - { - "rshares": "0", - "voter": "joshuaatiemo" - }, - { - "rshares": "0", - "voter": "jumaidafajar" - }, - { - "rshares": "0", - "voter": "leolina1" - }, - { - "rshares": "0", - "voter": "rebatesteem" - }, - { - "rshares": "0", - "voter": "aidancloquell" - }, - { - "rshares": "0", - "voter": "rm802" - }, - { - "rshares": "0", - "voter": "krasotka" - }, - { - "rshares": "0", - "voter": "alamyrjunior" - }, - { - "rshares": "0", - "voter": "networker5" - }, - { - "rshares": "0", - "voter": "evdoggformayor" - }, - { - "rshares": "0", - "voter": "askari" - }, - { - "rshares": "0", - "voter": "blockrush" - }, - { - "rshares": "0", - "voter": "barvon" - }, - { - "rshares": "0", - "voter": "fajarsdq" - }, - { - "rshares": "0", - "voter": "juandemarte" - }, - { - "rshares": "0", - "voter": "lazarescu.irinel" - }, - { - "rshares": "0", - "voter": "thedeplorable1" - }, - { - "rshares": "0", - "voter": "kalemandra" - }, - { - "rshares": "0", - "voter": "ades" - }, - { - "rshares": "0", - "voter": "rizkiavonna" - }, - { - "rshares": "0", - "voter": "tohamy7" - }, - { - "rshares": "0", - "voter": "justinashby" - }, - { - "rshares": "0", - "voter": "thereikiforest" - }, - { - "rshares": "0", - "voter": "serendipitie" - }, - { - "rshares": "0", - "voter": "anwarabdullah" - }, - { - "rshares": "0", - "voter": "rocketbeee" - }, - { - "rshares": "0", - "voter": "ackza" - }, - { - "rshares": "0", - "voter": "nilim" - }, - { - "rshares": "0", - "voter": "renatrazumov" - }, - { - "rshares": "0", - "voter": "jelkasmi" - }, - { - "rshares": "0", - "voter": "dimitrya123" - }, - { - "rshares": "0", - "voter": "crawfish37" - }, - { - "rshares": "0", - "voter": "laodr" - }, - { - "rshares": "0", - "voter": "lkisaid" - }, - { - "rshares": "0", - "voter": "mikev" - }, - { - "rshares": "0", - "voter": "hakan0356" - }, - { - "rshares": "0", - "voter": "tasartcraft" - }, - { - "rshares": "0", - "voter": "urmokas" - }, - { - "rshares": "0", - "voter": "michael-fagundes" - }, - { - "rshares": "0", - "voter": "kalamur" - }, - { - "rshares": "0", - "voter": "abhinavsharma" - }, - { - "rshares": "0", - "voter": "contentguy" - }, - { - "rshares": "0", - "voter": "globocop" - }, - { - "rshares": "0", - "voter": "hafizul" - }, - { - "rshares": "0", - "voter": "hothelp1by1" - }, - { - "rshares": "0", - "voter": "vannfrik" - }, - { - "rshares": "0", - "voter": "manuel78" - }, - { - "rshares": "0", - "voter": "brado" - }, - { - "rshares": "0", - "voter": "strateg" - }, - { - "rshares": "0", - "voter": "quinsmacqueen" - }, - { - "rshares": "0", - "voter": "brucebrownftw" - }, - { - "rshares": "0", - "voter": "mrstaf" - }, - { - "rshares": "0", - "voter": "avvah" - }, - { - "rshares": "0", - "voter": "stackin" - }, - { - "rshares": "0", - "voter": "laloelectrix" - }, - { - "rshares": "0", - "voter": "heejaekim" - }, - { - "rshares": "0", - "voter": "thethreehugs" - }, - { - "rshares": "0", - "voter": "otitrader" - }, - { - "rshares": "0", - "voter": "clixmoney" - }, - { - "rshares": "0", - "voter": "tryword" - }, - { - "rshares": "0", - "voter": "dioneaguiar" - }, - { - "rshares": "0", - "voter": "yann.moalic" - }, - { - "rshares": "0", - "voter": "shaunf" - }, - { - "rshares": "0", - "voter": "cleemit" - }, - { - "rshares": "0", - "voter": "deeluvli1" - }, - { - "rshares": "0", - "voter": "noval" - }, - { - "rshares": "0", - "voter": "pixzelplethora" - }, - { - "rshares": "0", - "voter": "smart3dweb" - }, - { - "rshares": "0", - "voter": "joey-cryptoboy" - }, - { - "rshares": "0", - "voter": "mateorite" - }, - { - "rshares": "0", - "voter": "somaflaco" - }, - { - "rshares": "0", - "voter": "enki74" - }, - { - "rshares": "0", - "voter": "jungleebitcoin" - }, - { - "rshares": "0", - "voter": "correctdrop" - }, - { - "rshares": "0", - "voter": "clintjunior" - }, - { - "rshares": "0", - "voter": "tediursa24" - }, - { - "rshares": "0", - "voter": "mxzn" - }, - { - "rshares": "0", - "voter": "hgmsilvergold" - }, - { - "rshares": "0", - "voter": "antares007" - }, - { - "rshares": "0", - "voter": "tridenspoon333" - }, - { - "rshares": "0", - "voter": "vipek1996" - }, - { - "rshares": "0", - "voter": "prima-nia" - }, - { - "rshares": "0", - "voter": "redris" - }, - { - "rshares": "0", - "voter": "savetheanimals" - }, - { - "rshares": "0", - "voter": "tarunmewara" - }, - { - "rshares": "0", - "voter": "overkillcoin" - }, - { - "rshares": "0", - "voter": "tuakanamorgan" - }, - { - "rshares": "0", - "voter": "anacristinasilva" - }, - { - "rshares": "0", - "voter": "filmonaut" - }, - { - "rshares": "0", - "voter": "firstamendment" - }, - { - "rshares": "0", - "voter": "timcrypto" - }, - { - "rshares": "0", - "voter": "cryptotem" - }, - { - "rshares": "0", - "voter": "mikej" - }, - { - "rshares": "0", - "voter": "hwrs" - }, - { - "rshares": "0", - "voter": "sinai770judea" - }, - { - "rshares": "0", - "voter": "tuneralliance" - }, - { - "rshares": "0", - "voter": "zeji" - }, - { - "rshares": "0", - "voter": "ricoalfianda" - }, - { - "rshares": "0", - "voter": "satfit" - }, - { - "rshares": "0", - "voter": "machhour" - }, - { - "rshares": "0", - "voter": "bitgenio" - }, - { - "rshares": "0", - "voter": "ahmedmansi" - }, - { - "rshares": "0", - "voter": "theoccultcorner" - }, - { - "rshares": "0", - "voter": "reseller" - }, - { - "rshares": "0", - "voter": "ainsleyjo1952" - }, - { - "rshares": "0", - "voter": "novi" - }, - { - "rshares": "0", - "voter": "androsform" - }, - { - "rshares": "0", - "voter": "jooyoung" - }, - { - "rshares": "0", - "voter": "dobro88888888" - }, - { - "rshares": "0", - "voter": "ghaaspur" - }, - { - "rshares": "0", - "voter": "xodyd2da" - }, - { - "rshares": "0", - "voter": "trisun" - }, - { - "rshares": "0", - "voter": "tngflx" - }, - { - "rshares": "0", - "voter": "karaban" - }, - { - "rshares": "0", - "voter": "empath" - }, - { - "rshares": "0", - "voter": "pcbildrnoob" - }, - { - "rshares": "0", - "voter": "joecaffeine" - }, - { - "rshares": "0", - "voter": "laolballs" - }, - { - "rshares": "0", - "voter": "braamsteyn7777" - }, - { - "rshares": "0", - "voter": "udibekwe" - }, - { - "rshares": "0", - "voter": "jackolanternbob" - }, - { - "rshares": "0", - "voter": "rondoncr" - }, - { - "rshares": "0", - "voter": "doubledeeyt" - }, - { - "rshares": "0", - "voter": "joshvel" - }, - { - "rshares": "0", - "voter": "lembach3d" - }, - { - "rshares": "0", - "voter": "vulturestkn" - }, - { - "rshares": "0", - "voter": "darknessprincess" - }, - { - "rshares": "0", - "voter": "misrori" - }, - { - "rshares": "0", - "voter": "afrikanprince" - }, - { - "rshares": "0", - "voter": "jjprac" - }, - { - "rshares": "0", - "voter": "ayuwandira" - }, - { - "rshares": "0", - "voter": "ilicoin" - }, - { - "rshares": "0", - "voter": "pkvlogs" - }, - { - "rshares": "0", - "voter": "bitstudio" - }, - { - "rshares": "0", - "voter": "taintedblood" - }, - { - "rshares": "0", - "voter": "epsicktick" - }, - { - "rshares": "0", - "voter": "csggene3" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - }, - { - "rshares": "0", - "voter": "geek4geek" - }, - { - "rshares": "0", - "voter": "kharrazi" - }, - { - "rshares": "0", - "voter": "zufrizal" - }, - { - "rshares": "0", - "voter": "academix87" - }, - { - "rshares": "0", - "voter": "planetenamek" - }, - { - "rshares": "0", - "voter": "muliaeko" - }, - { - "rshares": "0", - "voter": "boyjack" - }, - { - "rshares": "0", - "voter": "jatniel" - }, - { - "rshares": "0", - "voter": "juanangel40bcn" - }, - { - "rshares": "0", - "voter": "jodywrites" - }, - { - "rshares": "0", - "voter": "permatek" - }, - { - "rshares": "0", - "voter": "cyberspace" - }, - { - "rshares": "0", - "voter": "fareehasheharyar" - }, - { - "rshares": "0", - "voter": "saynie" - }, - { - "rshares": "0", - "voter": "plainoldme" - }, - { - "rshares": "0", - "voter": "razaqbarry" - }, - { - "rshares": "0", - "voter": "antoniokarteli" - }, - { - "rshares": "0", - "voter": "dream.trip" - }, - { - "rshares": "0", - "voter": "reinhardbaust" - }, - { - "rshares": "0", - "voter": "newpioneer" - }, - { - "rshares": "0", - "voter": "melvinbonner" - }, - { - "rshares": "0", - "voter": "zulfahmi2141" - }, - { - "rshares": "0", - "voter": "maninjapan1989" - }, - { - "rshares": "0", - "voter": "andravasko" - }, - { - "rshares": "0", - "voter": "gilma" - }, - { - "rshares": "0", - "voter": "tom74" - }, - { - "rshares": "0", - "voter": "josephfugata" - }, - { - "rshares": "0", - "voter": "bitcointauji" - }, - { - "rshares": "0", - "voter": "gray00" - }, - { - "rshares": "0", - "voter": "divyang101" - }, - { - "rshares": "0", - "voter": "bahagia-arbi" - }, - { - "rshares": "0", - "voter": "bhim" - }, - { - "rshares": "0", - "voter": "bickell" - }, - { - "rshares": "0", - "voter": "tfpostman" - }, - { - "rshares": "0", - "voter": "anujkumar" - }, - { - "rshares": "0", - "voter": "fbslo" - }, - { - "rshares": "0", - "voter": "renijuliani" - }, - { - "rshares": "0", - "voter": "setio" - }, - { - "rshares": "0", - "voter": "mooncryption" - }, - { - "rshares": "0", - "voter": "shintamonica" - }, - { - "rshares": "0", - "voter": "caratzky" - }, - { - "rshares": "0", - "voter": "komrad" - }, - { - "rshares": "0", - "voter": "therivernile" - }, - { - "rshares": "0", - "voter": "deep.gohil" - }, - { - "rshares": "0", - "voter": "thomasduder" - }, - { - "rshares": "0", - "voter": "sensistar" - }, - { - "rshares": "0", - "voter": "abdelone" - }, - { - "rshares": "0", - "voter": "gegec" - }, - { - "rshares": "0", - "voter": "ambmicheal" - }, - { - "rshares": "0", - "voter": "rincewind" - }, - { - "rshares": "0", - "voter": "alishannoor" - }, - { - "rshares": "0", - "voter": "ahhjoeinhk" - }, - { - "rshares": "0", - "voter": "kalhiade" - }, - { - "rshares": "0", - "voter": "faridrizkia" - }, - { - "rshares": "0", - "voter": "teamslovenia" - }, - { - "rshares": "0", - "voter": "xiaoshancun" - }, - { - "rshares": "0", - "voter": "mikewebb274" - }, - { - "rshares": "0", - "voter": "andrath" - }, - { - "rshares": "0", - "voter": "torosan" - }, - { - "rshares": "0", - "voter": "ghayas" - }, - { - "rshares": "0", - "voter": "krevasilis" - }, - { - "rshares": "0", - "voter": "koinbot" - }, - { - "rshares": "0", - "voter": "synergy-now" - }, - { - "rshares": "0", - "voter": "steemblogs" - }, - { - "rshares": "0", - "voter": "tujuhpelita" - }, - { - "rshares": "0", - "voter": "palani" - }, - { - "rshares": "0", - "voter": "as-i-see-it" - }, - { - "rshares": "0", - "voter": "heyeshuang" - }, - { - "rshares": "0", - "voter": "arslan786" - }, - { - "rshares": "0", - "voter": "cgf117" - }, - { - "rshares": "0", - "voter": "amazingtech100" - }, - { - "rshares": "0", - "voter": "dreamm" - }, - { - "rshares": "0", - "voter": "sweetssssj" - }, - { - "rshares": "0", - "voter": "ceikdo" - }, - { - "rshares": "0", - "voter": "sunsquall" - }, - { - "rshares": "0", - "voter": "muhammadilyas93" - }, - { - "rshares": "0", - "voter": "cre47iv3" - }, - { - "rshares": "0", - "voter": "joao-cacador" - }, - { - "rshares": "0", - "voter": "jamsphonna" - }, - { - "rshares": "0", - "voter": "abbak7" - }, - { - "rshares": "0", - "voter": "thelifeofjord" - }, - { - "rshares": "0", - "voter": "utpoldebnath" - }, - { - "rshares": "0", - "voter": "sagorkhan" - }, - { - "rshares": "0", - "voter": "shivpremi" - }, - { - "rshares": "0", - "voter": "shabbirahmad" - }, - { - "rshares": "0", - "voter": "ibeljr" - }, - { - "rshares": "0", - "voter": "umelard" - }, - { - "rshares": "0", - "voter": "stijndehaan" - }, - { - "rshares": "0", - "voter": "iamericmorrison" - }, - { - "rshares": "0", - "voter": "shiningstar" - }, - { - "rshares": "0", - "voter": "steemprojects1" - }, - { - "rshares": "0", - "voter": "steemprojects2" - }, - { - "rshares": "0", - "voter": "stuvi" - }, - { - "rshares": "0", - "voter": "zia161" - }, - { - "rshares": "0", - "voter": "arslanq" - }, - { - "rshares": "0", - "voter": "kevca16" - }, - { - "rshares": "0", - "voter": "mcreg" - }, - { - "rshares": "0", - "voter": "waheebisb" - }, - { - "rshares": "0", - "voter": "rizaokur" - }, - { - "rshares": "0", - "voter": "seanstein" - }, - { - "rshares": "0", - "voter": "piszozo" - }, - { - "rshares": "0", - "voter": "vicmariki" - }, - { - "rshares": "0", - "voter": "contribution" - }, - { - "rshares": "0", - "voter": "oep" - }, - { - "rshares": "0", - "voter": "akshitgrover" - }, - { - "rshares": "0", - "voter": "jackson12" - }, - { - "rshares": "0", - "voter": "dtldesign" - }, - { - "rshares": "0", - "voter": "h4ck3rm1k3st33m" - }, - { - "rshares": "0", - "voter": "smokeasare165" - }, - { - "rshares": "0", - "voter": "tinoschloegl" - }, - { - "rshares": "0", - "voter": "liftu" - }, - { - "rshares": "0", - "voter": "atul8888" - }, - { - "rshares": "0", - "voter": "goroshkodo" - }, - { - "rshares": "0", - "voter": "tarmizislow" - }, - { - "rshares": "0", - "voter": "nurmasyithah" - }, - { - "rshares": "0", - "voter": "ritikagupta" - }, - { - "rshares": "0", - "voter": "anniemohler" - }, - { - "rshares": "0", - "voter": "olaivart" - }, - { - "rshares": "0", - "voter": "thedrewshow" - }, - { - "rshares": "0", - "voter": "alpha27" - }, - { - "rshares": "0", - "voter": "adventuretours" - }, - { - "rshares": "0", - "voter": "advexon" - }, - { - "rshares": "0", - "voter": "cloudconnect" - }, - { - "rshares": "0", - "voter": "ontheverge" - }, - { - "rshares": "0", - "voter": "celsomichida" - }, - { - "rshares": "0", - "voter": "cannan" - }, - { - "rshares": "0", - "voter": "cloudbuster" - }, - { - "rshares": "0", - "voter": "adrienoor" - }, - { - "rshares": "0", - "voter": "hussnain" - }, - { - "rshares": "0", - "voter": "shanloth" - }, - { - "rshares": "0", - "voter": "samirnyaupane" - }, - { - "rshares": "0", - "voter": "slackeramericana" - }, - { - "rshares": "0", - "voter": "thabiggdogg" - }, - { - "rshares": "0", - "voter": "gilnambatac" - }, - { - "rshares": "0", - "voter": "withgraham" - }, - { - "rshares": "0", - "voter": "sephirot" - }, - { - "rshares": "0", - "voter": "coffeeman" - }, - { - "rshares": "0", - "voter": "stefunniy" - }, - { - "rshares": "0", - "voter": "ghanexs" - }, - { - "rshares": "0", - "voter": "razipelangi" - }, - { - "rshares": "0", - "voter": "dreamdiary" - }, - { - "rshares": "0", - "voter": "crypto4euro" - }, - { - "rshares": "0", - "voter": "rtsampa" - }, - { - "rshares": "0", - "voter": "mahi2raj" - }, - { - "rshares": "0", - "voter": "danyflores" - }, - { - "rshares": "0", - "voter": "oraclefrequency" - }, - { - "rshares": "0", - "voter": "kartikohri1712" - }, - { - "rshares": "0", - "voter": "cryptoaltcoin" - }, - { - "rshares": "0", - "voter": "einarscorner" - }, - { - "rshares": "0", - "voter": "dudithedoctor" - }, - { - "rshares": "0", - "voter": "dirapa" - }, - { - "rshares": "0", - "voter": "arfouche" - }, - { - "rshares": "0", - "voter": "kristenbruce" - }, - { - "rshares": "0", - "voter": "okclear" - }, - { - "rshares": "0", - "voter": "mysearchisover" - }, - { - "rshares": "0", - "voter": "dropd" - }, - { - "rshares": "0", - "voter": "rulilesmana" - }, - { - "rshares": "0", - "voter": "cryptomaniac6" - }, - { - "rshares": "0", - "voter": "kim3ra" - }, - { - "rshares": "0", - "voter": "movement19" - }, - { - "rshares": "0", - "voter": "aacr07" - }, - { - "rshares": "0", - "voter": "layra" - }, - { - "rshares": "0", - "voter": "vardhanbtc" - }, - { - "rshares": "0", - "voter": "azeemprime" - }, - { - "rshares": "0", - "voter": "dbnx" - }, - { - "rshares": "0", - "voter": "shredz7" - }, - { - "rshares": "0", - "voter": "bitstreamgains" - }, - { - "rshares": "0", - "voter": "hendrimaca" - }, - { - "rshares": "0", - "voter": "aan01" - }, - { - "rshares": "0", - "voter": "successmindset" - }, - { - "rshares": "0", - "voter": "hatu" - }, - { - "rshares": "0", - "voter": "khabirulhafiz" - }, - { - "rshares": "0", - "voter": "yady" - }, - { - "rshares": "0", - "voter": "samsonjura1" - }, - { - "rshares": "0", - "voter": "ambitiouslife" - }, - { - "rshares": "0", - "voter": "whyse" - }, - { - "rshares": "0", - "voter": "skyflow" - }, - { - "rshares": "0", - "voter": "kimtoma" - }, - { - "rshares": "0", - "voter": "asherunderwood" - }, - { - "rshares": "0", - "voter": "lorden" - }, - { - "rshares": "0", - "voter": "juicyvegandwarf" - }, - { - "rshares": "0", - "voter": "ushan007" - }, - { - "rshares": "0", - "voter": "ihsan6837" - }, - { - "rshares": "0", - "voter": "suryarose" - }, - { - "rshares": "0", - "voter": "sol7142" - }, - { - "rshares": "0", - "voter": "fikrialoy" - }, - { - "rshares": "0", - "voter": "mr-lahey" - }, - { - "rshares": "0", - "voter": "mahsabmirza" - }, - { - "rshares": "0", - "voter": "pwangdu" - }, - { - "rshares": "0", - "voter": "salda" - }, - { - "rshares": "0", - "voter": "muzzlealem" - }, - { - "rshares": "0", - "voter": "pakjos" - }, - { - "rshares": "0", - "voter": "mhdfadhal" - }, - { - "rshares": "0", - "voter": "dannykastner" - }, - { - "rshares": "0", - "voter": "ibul11" - }, - { - "rshares": "0", - "voter": "nigtroy" - }, - { - "rshares": "0", - "voter": "uripsurya" - }, - { - "rshares": "0", - "voter": "jazman.zhens" - }, - { - "rshares": "0", - "voter": "intervote" - }, - { - "rshares": "0", - "voter": "mahend" - }, - { - "rshares": "0", - "voter": "anandasungkar" - }, - { - "rshares": "0", - "voter": "homeless.global" - }, - { - "rshares": "0", - "voter": "intansteemityes" - }, - { - "rshares": "0", - "voter": "perminus-gaita" - }, - { - "rshares": "0", - "voter": "phost" - }, - { - "rshares": "0", - "voter": "debart" - }, - { - "rshares": "0", - "voter": "blurrydude" - }, - { - "rshares": "0", - "voter": "tsnaks" - }, - { - "rshares": "0", - "voter": "legendchew" - }, - { - "rshares": "0", - "voter": "cryptonegocios" - }, - { - "rshares": "0", - "voter": "alexcozzy" - }, - { - "rshares": "0", - "voter": "joe.ster" - }, - { - "rshares": "0", - "voter": "pandu13" - }, - { - "rshares": "0", - "voter": "sasakhan" - }, - { - "rshares": "0", - "voter": "faisalyus" - }, - { - "rshares": "0", - "voter": "sawyn" - }, - { - "rshares": "0", - "voter": "diegocedenno" - }, - { - "rshares": "0", - "voter": "calebotamus" - }, - { - "rshares": "0", - "voter": "lsanneh78128" - }, - { - "rshares": "0", - "voter": "nazaruddin885" - }, - { - "rshares": "0", - "voter": "chaseburnett" - }, - { - "rshares": "0", - "voter": "sisirhasan" - }, - { - "rshares": "0", - "voter": "donyanyo" - }, - { - "rshares": "0", - "voter": "oregontravel" - }, - { - "rshares": "0", - "voter": "luegenbaron" - }, - { - "rshares": "0", - "voter": "edkrassenstein" - }, - { - "rshares": "0", - "voter": "munawirawin" - }, - { - "rshares": "0", - "voter": "salgetra" - }, - { - "rshares": "0", - "voter": "zaxan" - }, - { - "rshares": "0", - "voter": "rollings" - }, - { - "rshares": "0", - "voter": "kyle07" - }, - { - "rshares": "0", - "voter": "pchanger" - }, - { - "rshares": "0", - "voter": "uncleboy" - }, - { - "rshares": "0", - "voter": "alfhi" - }, - { - "rshares": "0", - "voter": "htetmyathtut" - }, - { - "rshares": "0", - "voter": "trisolaran" - }, - { - "rshares": "0", - "voter": "arafs" - }, - { - "rshares": "0", - "voter": "abysoyjoy" - }, - { - "rshares": "0", - "voter": "stylo419" - }, - { - "rshares": "0", - "voter": "cookntell" - }, - { - "rshares": "0", - "voter": "rakkarage" - }, - { - "rshares": "0", - "voter": "grasozauru" - }, - { - "rshares": "0", - "voter": "norabx" - }, - { - "rshares": "0", - "voter": "joyvancouver" - }, - { - "rshares": "0", - "voter": "antchatz" - }, - { - "rshares": "0", - "voter": "tutchpa" - }, - { - "rshares": "0", - "voter": "cosmophobia" - }, - { - "rshares": "0", - "voter": "rajaji" - }, - { - "rshares": "0", - "voter": "liqquid" - }, - { - "rshares": "0", - "voter": "aceh-post" - }, - { - "rshares": "0", - "voter": "dannanares" - }, - { - "rshares": "0", - "voter": "husana" - }, - { - "rshares": "0", - "voter": "davidmichael" - }, - { - "rshares": "0", - "voter": "wprpn" - }, - { - "rshares": "0", - "voter": "datuparulas17" - }, - { - "rshares": "0", - "voter": "trie" - }, - { - "rshares": "0", - "voter": "chirstonawba" - }, - { - "rshares": "0", - "voter": "sulaiman86" - }, - { - "rshares": "0", - "voter": "electronicsworld" - }, - { - "rshares": "0", - "voter": "engrravijain" - }, - { - "rshares": "0", - "voter": "alfredolopez1980" - }, - { - "rshares": "0", - "voter": "gustavomonraz" - }, - { - "rshares": "0", - "voter": "tahoorsaleem" - }, - { - "rshares": "0", - "voter": "starfinger13" - }, - { - "rshares": "0", - "voter": "conscalisthenics" - }, - { - "rshares": "0", - "voter": "syd44723" - }, - { - "rshares": "0", - "voter": "sutter" - }, - { - "rshares": "0", - "voter": "samsonite18654" - }, - { - "rshares": "0", - "voter": "iqra.naz" - }, - { - "rshares": "0", - "voter": "drezz" - }, - { - "rshares": "0", - "voter": "cutelace" - }, - { - "rshares": "0", - "voter": "chirstonawba5" - }, - { - "rshares": "0", - "voter": "devkapoor423" - }, - { - "rshares": "0", - "voter": "blanchy" - }, - { - "rshares": "0", - "voter": "rakeshban357" - }, - { - "rshares": "0", - "voter": "douglasjames" - }, - { - "rshares": "0", - "voter": "michaelabbas" - }, - { - "rshares": "0", - "voter": "gonewithwind" - }, - { - "rshares": "0", - "voter": "snow.owl" - }, - { - "rshares": "0", - "voter": "tonthatthienvu" - }, - { - "rshares": "0", - "voter": "strangeworldnews" - }, - { - "rshares": "0", - "voter": "dogra" - }, - { - "rshares": "0", - "voter": "umairx97" - }, - { - "rshares": "0", - "voter": "coolpeopleifb" - }, - { - "rshares": "0", - "voter": "gabu01" - }, - { - "rshares": "0", - "voter": "magicalbot" - }, - { - "rshares": "0", - "voter": "f21steem" - }, - { - "rshares": "0", - "voter": "hoobit" - }, - { - "rshares": "0", - "voter": "ivancraigcaine" - }, - { - "rshares": "0", - "voter": "kranko" - }, - { - "rshares": "0", - "voter": "successinwork" - }, - { - "rshares": "0", - "voter": "abfelix96" - }, - { - "rshares": "0", - "voter": "maldonadog" - }, - { - "rshares": "0", - "voter": "drakeler" - }, - { - "rshares": "0", - "voter": "cyrex88" - }, - { - "rshares": "0", - "voter": "rikyu" - }, - { - "rshares": "0", - "voter": "krimimimi" - }, - { - "rshares": "0", - "voter": "johannav" - } - ], - "author": "steemit", - "author_payout_value": "0.942 HBD", - "author_reputation": 35.01, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "category": "meta", - "children": 430, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "payout": 1.698, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [ - "admin/firstpost", - "proskynneo/steemit-firstpost-1", - "red/steemit-firstpost-2", - "business/re-steemit-firstpost-20160713t082910980z", - "gopher/re-steemit-firstpost-20160718t195806340z", - "jennamarbles/re-steemit-firstpost-20160719t210752086z", - "kamvreto/re-steemit-firstpost-20160725t221949749z", - "kingtylervvs/re-steemit-firstpost-20160720t121101482z", - "kewpiedoll/re-steemit-firstpost-20160720t210201326z", - "gekko/re-steemit-firstpost-20160721t223937736z", - "sictransitgloria/re-steemit-firstpost-20160721t233702742z", - "patrick-g/re-steemit-firstpost-20160722t201007967z", - "kamvreto/re-steemit-firstpost-20160722t225246211z", - "zhuvazhuva/re-steemit-firstpost-20160723t130259286z", - "lenerdie/re-steemit-firstpost-20160726t035056026z", - "bestmalik/re-steemit-firstpost-20160726t035722561z", - "edbriv/re-steemit-firstpost-20160801t184846033z", - "imarealboy777/re-steemit-firstpost-20160801t232001768z", - "rednetkjh/re-steemit-firstpost-20160804t061605576z", - "jelloducky/re-steemit-firstpost-20160807t215340468z", - "deanliu/re-steemit-firstpost-20160810t083336206z", - "flandude/re-steemit-firstpost-20160811t225325571z", - "ubg/re-steemit-firstpost-20160813t143213453z", - "future24/re-steemit-firstpost-20160818t030224104z", - "rittr/re-steemit-firstpost-20160824t025355199z", - "jack8831/re-steemit-firstpost-20160824t093007335z", - "urmokas/re-steemit-firstpost-20170430t041901124z", - "urmokas/re-steemit-firstpost-20170430t041942403z", - "hothelp1by1/re-steemit-firstpost-20170602t024007551z", - "moataz/re-steemit-firstpost-20170606t220153482z", - "pixzelplethora/re-steemit-firstpost-20170607t102348258z", - "hgmsilvergold/re-steemit-firstpost-20170607t132619458z", - "watchout2017/re-steemit-firstpost-20170609t092656127z", - "whitedolphin/re-steemit-firstpost-20170611t040948165z", - "trys10k/re-steemit-firstpost-20170611t044200263z", - "anacristinasilva/re-steemit-firstpost-20170617t043011440z", - "mikej/re-steemit-firstpost-20170618t041022557z", - "valueup/re-steemit-firstpost-20170619t152843513z", - "satfit/re-steemit-firstpost-20170619t163049854z", - "scharfsinn/re-steemit-firstpost-20170619t225343241z", - "mikev/re-steemit-firstpost-20170620t052317893z", - "jackeown/re-steemit-firstpost-20170620t234314915z", - "nilim/re-steemit-firstpost-20170622t164733895z", - "jjjjosue/re-steemit-firstpost-20170623t205714645z", - "robi/re-steemit-firstpost-20170623t210657150z", - "correctdrop/re-steemit-firstpost-20170624t021339008z", - "bitgenio/re-steemit-firstpost-20170624t025915571z", - "tarunmewara/re-steemit-firstpost-20170624t114746528z", - "moemanmoesly/re-steemit-firstpost-20170624t220649051z", - "brunotreves/re-steemit-firstpost-20170628t051745320z", - "brucebrownftw/re-steemit-firstpost-20170628t191735949z", - "zeji/re-steemit-firstpost-20170630t111416254z", - "davidfar/re-steemit-firstpost-20170702t182536878z", - "darknessprincess/re-steemit-firstpost-20170703t180707051z", - "sornprar/re-steemit-firstpost-20170704t204851481z", - "sornprar/re-steemit-firstpost-20170705t021545762z", - "doubledeeyt/re-steemit-firstpost-20170705t060154298z", - "sornprar/re-steemit-firstpost-20170705t162923097z", - "timcrypto/re-steemit-firstpost-20170705t172656778z", - "diggerdugg/re-steemit-firstpost-20170706t210051540z", - "joecaffeine/re-steemit-firstpost-20170707t112601869z", - "clixmoney/re-steemit-firstpost-20170707t115721315z", - "ilicoin/re-steemit-firstpost-20170709t171749281z", - "steemitjp/re-steemit-firstpost-20170711t065057709z", - "junvebbei/re-steemit-firstpost-20170711t090032219z", - "seablue/re-steemit-firstpost-20170711t205019537z", - "tumutanzi/re-steemit-firstpost-20170714t095628298z", - "lembach3d/re-steemit-firstpost-20170714t115255243z", - "machhour/re-steemit-firstpost-20170714t133446189z", - "ronmamita/re-steemit-firstpost-20170714t155806399z", - "justyy/re-steemit-firstpost-20170715t082135653z", - "lazarescu.irinel/re-steemit-firstpost-20170715t163911333z", - "cyberspace/re-steemit-firstpost-20170719t102745698z", - "paradoxofchoice/re-steemit-firstpost-20170720t042055570z", - "improv/re-steemit-firstpost-20170720t073029499z", - "justinashby/re-steemit-firstpost-20170725t013335892z", - "cresh/re-steemit-firstpost-20170726t080227814z", - "geek4geek/re-steemit-firstpost-20170726t165631900z", - "shenkawys/re-steemit-firstpost-20170727t125325656z", - "planetenamek/re-steemit-firstpost-20170727t210239067z", - "silviu93/re-steemit-firstpost-20170728t193723204z", - "zufrizal/re-steemit-firstpost-20170730t044117656z", - "maninjapan1989/re-steemit-firstpost-20170801t133239673z", - "awaismuneeb1/re-steemit-firstpost-20170801t133500933z", - "coincentral/re-steemit-firstpost-20170808t130440146z", - "trailofwhales/re-steemit-firstpost-20170808t230208389z", - "healthyrecipe/re-steemit-firstpost-20170812t211959351z", - "alao/re-steemit-firstpost-20170820t215949199z", - "setio/re-steemit-firstpost-20170820t233100895z", - "greenrun/re-steemit-firstpost-20170821t081222039z", - "permatek/re-steemit-firstpost-20170821t224000406z", - "bahagia-arbi/re-steemit-firstpost-20170824t062329396z", - "mammasitta/re-steemit-firstpost-20170824t230822305z", - "stackin/re-steemit-firstpost-20170824t235112132z", - "pkvlogs/re-steemit-firstpost-20170826t004017217z", - "faridrizkia/re-steemit-firstpost-20170826t105509240z", - "crypto-guru/re-steemit-firstpost-20170827t190510082z", - "fajarsdq/re-steemit-firstpost-20170829t115541460z", - "andrath/re-steemit-firstpost-20170830t185517045z", - "tony-duke/re-steemit-firstpost-20170831t204732502z", - "padmakshi/re-steemit-firstpost-20170901t160649133z", - "patriot/re-steemit-firstpost-20170903t012448551z", - "decorations/re-steemit-firstpost-20170903t015605761z", - "reinhardbaust/re-steemit-firstpost-20170907t081004357z", - "photographer1/re-steemit-firstpost-20170907t091931832z", - "johnsmit/re-steemit-firstpost-20170907t120602357z", - "alketcecaj/re-steemit-firstpost-20170912t144124829z", - "andravasko/re-steemit-firstpost-20170912t145937605z", - "nicksteele/re-steemit-firstpost-20170912t215147483z", - "nc-mgtow/re-steemit-firstpost-20170916t153924178z", - "satfit/re-steemit-firstpost-20170917t193403188z", - "gilma/re-steemit-firstpost-20170918t002456528z", - "mooncryption/re-steemit-firstpost-20170922t043040342z", - "muliadi/re-steemit-firstpost-20170925t081014522z", - "thecrytotrader/re-steemit-firstpost-20170925t095222457z", - "palani/re-steemit-firstpost-20170926t091508449z", - "jephline/re-steemit-firstpost-20170928t005448336z", - "joao-cacador/re-steemit-firstpost-20170929t163807870z", - "andrewwu/re-steemit-firstpost-20170930t081242163z", - "melvinbonner/re-steemit-firstpost-20170930t182052948z", - "steemitph/re-steemit-firstpost-20171001t113800160z", - "vandalizmrecordz/re-steemit-firstpost-20171004t005106070z", - "elneddy/re-steemit-firstpost-20171006t194927903z", - "online12hour/re-steemit-firstpost-20171007t083026835z", - "coldhair/re-steemit-firstpost-20171011t025314464z", - "novacomics/re-steemit-firstpost-20171012t002948783z", - "isteemithard/re-steemit-firstpost-20171012t053244218z", - "isteemithard/re-steemit-firstpost-20171012t053312152z", - "isteemithard/re-steemit-firstpost-20171012t053404002z", - "angelsmith/re-steemit-firstpost-20171013t135507224z", - "ades/re-steemit-firstpost-20171014t094715920z", - "pokerman/re-steemit-firstpost-20171015t204850657z", - "creon/re-steemit-firstpost-20171016t040402189z", - "antoniodpz/re-steemit-firstpost-20171018t092916353z", - "antoniodpz/re-steemit-firstpost-20171018t093612369z", - "jac4b/re-steemit-firstpost-20171020t194412969z", - "sevenseals/re-steemit-firstpost-20171022t194618085z", - "gazur/re-steemit-firstpost-20171024t191436407z", - "gazur/re-steemit-firstpost-20171024t191550079z", - "jury.online/re-steemit-firstpost-20171026t231302575z", - "shieha/re-steemit-firstpost-20171027t024345028z", - "dbudhrani/re-steemit-firstpost-20171030t161000488z", - "henildedania/re-steemit-firstpost-20171031t122307919z", - "spectrumecons/re-steemit-firstpost-20171101t004320782z", - "cryptospeaker/re-steemit-firstpost-20171101t121036602z", - "nideo/re-steemit-firstpost-20171102t212222026z", - "mavigozlu/re-steemit-firstpost-20171107t080352739z", - "syedumair/re-steemit-firstpost-20171113t071852113z", - "syedumair/re-steemit-firstpost-20171113t113417285z", - "justinashby/re-steemit-firstpost-20171116t030504073z", - "mcreg/re-steemit-firstpost-20171116t032926766z", - "ayakashi145/re-steemit-firstpost-20171117t023134234z", - "shiningstar/re-steemit-firstpost-20171118t180756742z", - "gayanw/re-steemit-firstpost-20171121t172326950z", - "azizbd/re-steemit-firstpost-20171121t172708558z", - "nurdinnakaturi/re-steemit-firstpost-20171125t102301879z", - "kaliju/re-steemit-firstpost-20171203t125157898z", - "dreamm/re-steemit-firstpost-20171206t122126721z", - "otemzi/re-steemit-firstpost-20171206t224513157z", - "mrrifat1/re-steemit-firstpost-20171207t110825462z", - "thedrewshow/re-steemit-firstpost-20171208t005953936z", - "v007007007/re-steemit-firstpost-20171208t070558910z", - "jery/re-steemit-firstpost-20171208t141554872z", - "endorphoenix/re-steemit-firstpost-20171208t183328209z", - "extraterrestrial/re-steemit-firstpost-20171217t200414912z", - "davidconstantine/re-steemit-firstpost-20171217t214103613z", - "tinoschloegl/re-steemit-firstpost-20171220t090303161z", - "hafizul/re-steemit-firstpost-20171222t084035853z", - "theafroguy/re-steemit-firstpost-20171223t213918039z", - "arisid/re-steemit-firstpost-20171228t092222655z", - "karmashine/re-steemit-firstpost-20171229t113317542z", - "lovehaswon/re-steemit-firstpost-20171231t144811861z", - "zia161/re-steemit-firstpost-20171231t163613548z", - "starangel/re-steemit-firstpost-20171231t171957452z", - "jaff8/re-steemit-firstpost-20180102t203545319z", - "johnesan/re-steemit-firstpost-20180103t065110954z", - "withgraham/re-steemit-firstpost-20180103t090821481z", - "gilnambatac/re-steemit-firstpost-20180106t162335199z", - "ebi16/re-steemit-firstpost-20180106t193603590z", - "gomain/re-steemit-firstpost-20180107t195854059z", - "mrskatie/re-steemit-firstpost-20180107t205748221z", - "improv/re-steemit-firstpost-20180108t213229597z", - "plainoldme/re-steemit-firstpost-20180109t120207874z", - "smilever12/re-steemit-firstpost-20180109t224952449z", - "kristenbruce/re-steemit-firstpost-20180110t095327457z", - "stuvi/re-steemit-firstpost-20180110t131747431z", - "tothemoonin2017/re-steemit-firstpost-20180111t033404296z", - "vickywiz/re-steemit-firstpost-20180111t053714270z", - "hunly/re-steemit-firstpost-20180113t140005408z", - "gratefulayn/re-steemit-firstpost-20180114t142356015z", - "suresheee/re-steemit-firstpost-20180115t061632819z", - "sweetorange/re-steemit-firstpost-20180115t063310301z", - "oraclefrequency/re-steemit-firstpost-20180116t004211313z", - "qscheffer/re-steemit-firstpost-20180117t135451396z", - "siersod/re-steemit-firstpost-20180117t152138749z", - "abusaleh/re-steemit-firstpost-20180117t154220577z", - "thepassenger/re-steemit-firstpost-20180119t000400807z", - "rksumanthraju/re-steemit-firstpost-20180119t045007513z", - "dirtyhippie/re-steemit-firstpost-20180120t050024573z", - "bwashington1/re-steemit-firstpost-20180120t082229739z", - "raterlabs/re-steemit-firstpost-20180120t200113737z", - "yasirsohail196/re-steemit-firstpost-20180121t072845412z", - "imchandansah/re-steemit-firstpost-20180122t112919676z", - "mahsabmirza/re-steemit-firstpost-20180128t161211537z", - "jobindonesia/re-steemit-firstpost-20180129t025737462z", - "tryword/re-steemit-firstpost-20180129t231805308z", - "cryptoaltcoin/re-steemit-firstpost-20180131t211925372z", - "fatimamortada/re-steemit-firstpost-20180201t012152343z", - "clumsysilverdad/re-steemit-firstpost-20180202t230332954z", - "bangrully/re-steemit-firstpost-20180203t025920037z", - "fbslo/re-steemit-firstpost-20180203t174523045z", - "juicyvegandwarf/re-steemit-firstpost-20180205t011531738z", - "uripsurya/re-steemit-firstpost-20180205t130906092z", - "ainsleyjo1952/re-steemit-firstpost-20180205t212206587z", - "moeenali/re-steemit-firstpost-20180207t160328782z", - "mburakolgun/re-steemit-firstpost-20180208t150509648z", - "aminul7/re-steemit-firstpost-20180209t052633133z", - "julybrave/re-steemit-firstpost-20180210t063636822z", - "rdvn/re-steemit-firstpost-20180210t151408537z", - "alexcozzy/re-steemit-firstpost-20180210t193558358z", - "pyro0816/re-steemit-firstpost-20180212t120027763z", - "debart/re-steemit-firstpost-20180212t134609402z", - "chaseburnett/re-steemit-firstpost-20180213t001454596z", - "cliffblank/re-steemit-firstpost-20180213t002542693z", - "salda/re-steemit-firstpost-20180214t094057265z", - "tharookie/re-steemit-firstpost-20180214t185651863z", - "ohrak22/re-steemit-firstpost-20180215t053742695z", - "movement19/re-steemit-firstpost-20180218t232705428z", - "jesusj1/re-steemit-firstpost-20180219t060135882z", - "cryptoscout/re-steemit-firstpost-20180220t082425531z", - "lavidaesunviaje/re-steemit-firstpost-20180221t145554408z", - "thethor1122/re-steemit-firstpost-20180223t162410080z", - "dtubix/re-firstpost-53", - "pwangdu/re-steemit-firstpost-1519460238570td3d0a265-554a-4cec-9a2f-4bfc4ddaf44euid", - "splendorhub/re-steemit-firstpost-20180225t015256519z", - "sathyasankar/re-steemit-firstpost-20180225t071734653z", - "official-mo/re-steemit-firstpost-20180225t142313738z", - "sangdiyus/re-steemit-firstpost-20180226t160058891z", - "mazyar/re-steemit-firstpost-20180226t210930550z", - "oregontravel/re-steemit-firstpost-20180227t081732054z", - "syedumair/re-steemit-firstpost-20180227t182207249z", - "stepanh/re-steemit-firstpost-20180228t231151919z", - "lartist-zen/re-steemit-firstpost-20180301t094304415z", - "akankah/re-steemit-firstpost-20180303t075321674z", - "dan321/re-steemit-firstpost-20180304t110205518z", - "anandasungkar/re-steemit-firstpost-20180304t184305461z", - "sisirhasan/re-steemit-firstpost-20180306t094207468z", - "trapve/re-steemit-firstpost-20180306t162905708z", - "learnandteach01/re-steemit-firstpost-20180308t203349570z", - "dynamicrypto/re-steemit-firstpost-20180312t183758619z", - "dynamicrypto/re-steemit-firstpost-20180313t214505560z", - "marekkaminski/re-steemit-firstpost-20180331t141050263z", - "eljose27/re-steemit-firstpost-20180331t143633851z", - "nurmasyithah/re-steemit-firstpost-20180331t172425587z", - "medusade/re-steemit-firstpost-20180405t170316967z", - "emjoe/re-steemit-firstpost-20180409t120039258z", - "junedd/re-steemit-firstpost-20180411t105927724z", - "riezaldi/re-steemit-firstpost-20180411t205519750z", - "hatu/re-steemit-firstpost-20180411t152605635z", - "emmywell/re-steemit-firstpost-20180413t015120739z", - "starfinger13/re-steemit-firstpost-20180413t023524112z", - "joyvancouver/re-steemit-firstpost-20180413t065458896z", - "conscalisthenics/re-steemit-firstpost-20180414t021254524z", - "princeemmanuel/re-steemit-firstpost-20180414t080010152z", - "kandywriter/re-steemit-firstpost-20180415t225507938z", - "jazzresin/re-steemit-firstpost-20180426t063924532z", - "abidhp/re-steemit-firstpost-20180427t153249315z", - "mkucukbekmez/re-steemit-firstpost-20180505t044835104z", - "cryptonegocios/re-steemit-firstpost-20180507t174657616z", - "bien/re-steemit-firstpost-20180518t023359659z", - "sutter/re-steemit-firstpost-20180518t035020663z", - "cookntell/re-steemit-firstpost-20180520t105636268z", - "alfredolopez1980/re-steemit-firstpost-20180520t222434698z", - "mahmudulhassan/re-steemit-firstpost-20180521t131958921z", - "ritikagupta/re-steemit-firstpost-20180522t061131493z", - "biophil/re-steemit-firstpost-20180523t031530422z", - "shadowolfdg/re-steemit-firstpost-20180525t054645178z", - "iqra.naz/re-steemit-firstpost-20180525t192106026z", - "shabbirahmad/re-steemit-firstpost-20180526t084436856z", - "sathyasankar/re-steemit-firstpost-20180531t175346873z", - "netizens/re-steemit-firstpost-20180604t045855195z", - "tsnaks/re-steemit-firstpost-20180604t143850288z", - "hazem91/re-steemit-firstpost-20180613t160430735z", - "oraclefrequency/re-steemit-firstpost-20180615t081110205z", - "layra/re-steemit-firstpost-20180620t023240325z", - "azizbd/re-steemit-firstpost-20180626t203416280z", - "samsonite18654/re-steemit-firstpost-20180628t150144993z", - "venkatesh15921/re-steemit-firstpost-20180707t045636127z", - "gochilambert/re-steemit-firstpost-20180709t193214537z", - "sathyasankar/re-steemit-firstpost-20180718t114328279z", - "rrs007/re-steemit-firstpost-20180728t115653831z", - "rrs007/re-steemit-firstpost-20180728t120229680z", - "keistee/re-steemit-firstpost-20180729t143630570z", - "dynamicrypto/re-steemit-firstpost-20180731t223557568z", - "nithin7237/re-steemit-firstpost-20180830t173842541z", - "krevasilis/re-steemit-firstpost-20180902t093021830z", - "gonewithwind/re-steemit-firstpost-20180902t202911783z", - "adilvakhri/re-steemit-firstpost-20180908t052715204z", - "ancgci/ancgci-re-steemit-firstpost-20181015t004843528z", - "teamslovenia/komentar-teamslovenia-firstpost", - "irak/re-steemit-firstpost-20181217t175620092z", - "devkapoor423/devkapoor423-re-steemit-firstpost-20190104t114948233z", - "f21steem/re-steemit-2019121t102528140z", - "pavonj/re-steemit-firstpost-20190323t141141263z", - "steemitboard/steemitboard-notify-steemit-20190324t171311000z", - "steemitboard/steemitboard-notify-steemit-20190324t184923000z", - "jacuzzi/re-steemit-firstpost-20190329t233116293z", - "chirstonawba/chirstonawba-re-steemit-firstpost-20190408t011441217z", - "sagaing/sagaing-re-steemit-firstpost-20190409t132907405z", - "menkarbit/re-steemit-firstpost-20190522t025639257z", - "joearnold/ps8dww", - "amycox/psuyrv", - "nickyhavey/nickyhavey-re-steemit-firstpost-20190719t091238925z", - "stealthtrader/pypq0x", - "rikyu/rikyu-re-steemit-firstpost-20191029t114433099z", - "pfunk/q5nv3k", - "liberosist/q5pe3l", - "deanliu/q7jdug" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 92 - }, - "title": "Welcome to Steem!", - "updated": "2016-03-30T18:30:18", - "url": "/meta/@steemit/firstpost" + "jack8831/re-steemit-firstpost-20160824t093007335z": { + "active_votes": [], + "author": "jack8831", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "You support fantastic system now!", + "category": "meta", + "children": 0, + "created": "2016-08-24T09:30:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160824t093007335z", + "post_id": 964406, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-24T09:30:03", + "url": "/meta/@steemit/firstpost#@jack8831/re-steemit-firstpost-20160824t093007335z" }, - "steemitboard/steemitboard-notify-steemit-20190324t171311000z": { - "active_votes": [ - { - "rshares": "255844932", - "voter": "speda" - }, - { - "rshares": "6528374329", - "voter": "ana-maria" - }, - { - "rshares": "28340259", - "voter": "instantcoin" - }, - { - "rshares": "224757350", - "voter": "muzzlealem" - }, - { - "rshares": "77958074", - "voter": "rsmartt777" - }, - { - "rshares": "449103849", - "voter": "smilefalse" - } - ], - "author": "steemitboard", - "author_payout_value": "0.000 HBD", - "author_reputation": 66.32, - "beneficiaries": [], - "blacklists": [], - "body": "Congratulations @steemit! You received a personal award!\n\n
https://steemitimages.com/70x70/http://steemitboard.com/@steemit/birthday2.pngHappy Birthday! - You are on the Steem blockchain for 3 years!
\n\n_You can view [your badges on your Steem Board](https://steemitboard.com/@steemit) and compare to others on the [Steem Ranking](http://steemitboard.com/ranking/index.php?name=steemit)_\n\n\n**Do not miss the last post from @steemitboard:**\n
Happy Birthday! The Steem blockchain is running for 3 years.
\n\n###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!", - "category": "meta", - "children": 0, - "created": "2019-03-24T17:13:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "image": [ - "https://steemitboard.com/img/notify.png" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 7564378793, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-03-31T17:13:12", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "steemitboard-notify-steemit-20190324t171311000z", - "post_id": 71971457, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 6 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-03-24T17:13:12", - "url": "/meta/@steemit/firstpost#@steemitboard/steemitboard-notify-steemit-20190324t171311000z" + "jelloducky/re-steemit-firstpost-20160807t215340468z": { + "active_votes": [ + { + "rshares": "90409341", + "voter": "jelloducky" + }, + { + "rshares": "58727187", + "voter": "rezrez" + } + ], + "author": "jelloducky", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "This platform is inspiring, thank you so much!", + "category": "meta", + "children": 0, + "created": "2016-08-07T21:53:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 149136528, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160807t215340468z", + "post_id": 670574, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-07T21:53:39", + "url": "/meta/@steemit/firstpost#@jelloducky/re-steemit-firstpost-20160807t215340468z" }, - "steemitboard/steemitboard-notify-steemit-20190324t184923000z": { - "active_votes": [ - { - "rshares": "253840582", - "voter": "speda" - }, - { - "rshares": "6562550993", - "voter": "ana-maria" - }, - { - "rshares": "26537180", - "voter": "instantcoin" - }, - { - "rshares": "226026462", - "voter": "muzzlealem" - }, - { - "rshares": "78092666", - "voter": "rsmartt777" - }, - { - "rshares": "447726461", - "voter": "smilefalse" - } - ], - "author": "steemitboard", - "author_payout_value": "0.000 HBD", - "author_reputation": 66.32, - "beneficiaries": [], - "blacklists": [], - "body": "Congratulations @steemit! You received a personal award!\n\n
https://steemitimages.com/70x70/http://steemitboard.com/@steemit/birthday3.pngHappy Birthday! - You are on the Steem blockchain for 3 years!
\n\n_You can view [your badges on your Steem Board](https://steemitboard.com/@steemit) and compare to others on the [Steem Ranking](http://steemitboard.com/ranking/index.php?name=steemit)_\n\n\n**Do not miss the last post from @steemitboard:**\n
Happy Birthday! The Steem blockchain is running for 3 years.
\n\n###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!", - "category": "meta", - "children": 0, - "created": "2019-03-24T18:49:24", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "image": [ - "https://steemitboard.com/img/notify.png" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 7594774344, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2019-03-31T18:49:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "steemitboard-notify-steemit-20190324t184923000z", - "post_id": 71974445, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 6 - }, - "title": "RE: Welcome to Steem!", - "updated": "2019-03-24T18:49:24", - "url": "/meta/@steemit/firstpost#@steemitboard/steemitboard-notify-steemit-20190324t184923000z" + "jennamarbles/re-steemit-firstpost-20160719t210752086z": { + "active_votes": [ + { + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "rshares": "732150442", + "voter": "artific" + }, + { + "rshares": "17012406247", + "voter": "jennamarbles" + }, + { + "rshares": "66705408", + "voter": "hipsterjesus" + }, + { + "rshares": "51109965", + "voter": "f1111111" + } + ], + "author": "jennamarbles", + "author_payout_value": "0.024 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Hello @steemit, I'm asking you to support my idea, in a new development STEEM. It will attract tens of thousands of people: https://steemit.com/openheart/@jennamarbles/first-steem-crowdfunding-we-can-make-this-world-better", + "category": "meta", + "children": 0, + "created": "2016-07-19T21:07:48", + "curator_payout_value": "0.003 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "links": [ + "https://steemit.com/openheart/@jennamarbles/first-steem-crowdfunding-we-can-make-this-world-better" + ], + "tags": [ + "meta" + ], + "users": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 18569578234, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.027, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160719t210752086z", + "post_id": 199181, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 5 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T08:35:21", + "url": "/meta/@steemit/firstpost#@jennamarbles/re-steemit-firstpost-20160719t210752086z" }, - "steemitjp/re-steemit-firstpost-20170711t065057709z": { - "active_votes": [], - "author": "steemitjp", - "author_payout_value": "0.000 HBD", - "author_reputation": 72.69, - "beneficiaries": [], - "blacklists": [], - "body": "Thank you for your post and guiding for steemit. I want to boost steemit community in Japan. Regards David", - "category": "meta", - "children": 0, - "created": "2017-07-11T06:50:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-18T06:50:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170711t065057709z", - "post_id": 6826807, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-11T06:50:57", - "url": "/meta/@steemit/firstpost#@steemitjp/re-steemit-firstpost-20170711t065057709z" + "kamvreto/re-steemit-firstpost-20160722t225246211z": { + "active_votes": [ + { + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "rshares": "167168344", + "voter": "yarike" + }, + { + "rshares": "35874847", + "voter": "pr3ttyp3rf3ct" + } + ], + "author": "kamvreto", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "happy steeming all !!", + "category": "meta", + "children": 0, + "created": "2016-07-22T22:53:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 595502250, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160722t225246211z", + "post_id": 284527, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-22T22:53:18", + "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160722t225246211z" }, - "steemitph/re-steemit-firstpost-20171001t113800160z": { - "active_votes": [], - "author": "steemitph", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.85, - "beneficiaries": [], - "blacklists": [], - "body": "Creating an environment infused with love is extremely important in both community building and healthy social interaction. Those two are the main advocacy of Steem, so without even talking about love, it is the currency that supports spreading love throughout the internet, throughout the world. Steem is the currency of love.", - "category": "meta", - "children": 0, - "created": "2017-10-01T11:38:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-08T11:38:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171001t113800160z", - "post_id": 14231902, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-01T11:38:03", - "url": "/meta/@steemit/firstpost#@steemitph/re-steemit-firstpost-20171001t113800160z" + "kamvreto/re-steemit-firstpost-20160725t221949749z": { + "active_votes": [ + { + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "rshares": "348852497", + "voter": "kamvreto" + }, + { + "rshares": "247328995", + "voter": "adinda" + } + ], + "author": "kamvreto", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "old post, starting the steemit like today.\nmy quote of the day \"Anyone can sell their STEEM for cash or vest it to boost their voting power.\"", + "category": "meta", + "children": 0, + "created": "2016-07-25T22:20:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 977987362, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160725t221949749z", + "post_id": 359333, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-25T22:20:24", + "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160725t221949749z" }, - "steemplus-bot/re-steemit-firstpost-20180620t023240325z-re-welcome-to-steemplus": { - "active_votes": [ - { - "rshares": "266596927", - "voter": "layra" - } - ], - "author": "steemplus-bot", - "author_payout_value": "0.000 HBD", - "author_reputation": 8.83, - "beneficiaries": [], - "blacklists": [], - "body": "#### Welcome to Steem, @layra!\n\nI am a bot coded by the SteemPlus team to help you make the best of your experience on the Steem Blockchain!\nSteemPlus is a Chrome, Opera and Firefox extension that adds tons of features on Steemit.\nIt helps you see the real value of your account, who mentionned you, the value of the votes received, a filtered and sorted feed and much more! All of this in a fast and secure way.\nTo see why **2920 Steemians** use SteemPlus, [install our extension](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en), read the [documentation](https://github.com/stoodkev/SteemPlus/blob/master/README.md) or the latest release : [SteemPlus 2.17.4 : Two new features on Busy and bug fixes](/utopian-io/@steem-plus/steemplus-2-17-4-two-new-features-on-busy-and-bug-fixes).\n", - "category": "meta", - "children": 1, - "created": "2018-06-20T02:52:24", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 266596927, - "parent_author": "layra", - "parent_permlink": "re-steemit-firstpost-20180620t023240325z", - "payout": 0.0, - "payout_at": "2018-06-27T02:52:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180620t023240325z-re-welcome-to-steemplus", - "post_id": 53625752, - "promoted": "0.000 HBD", - "replies": [ - "layra/re-steemplus-bot-re-steemit-firstpost-re-welcome-to-steemplus-20180620t225310780z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T06:29:39", - "url": "/meta/@steemit/firstpost#@steemplus-bot/re-steemit-firstpost-20180620t023240325z-re-welcome-to-steemplus" + "kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z": { + "active_votes": [ + { + "rshares": "707206172", + "voter": "patrick-g" + } + ], + "author": "kewpiedoll", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "we are. @steemit was the OP. @ned flagged it.", + "category": "meta", + "children": 0, + "created": "2016-07-21T14:02:21", + "curator_payout_value": "0.000 HBD", + "depth": 5, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ], + "users": [ + "steemit", + "ned" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 707206172, + "parent_author": "intelliguy", + "parent_permlink": "re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z", + "post_id": 247613, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T14:02:21", + "url": "/meta/@steemit/firstpost#@kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z" }, - "steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z": { - "active_votes": [ - { - "rshares": "724886327", - "voter": "patrick-g" - } - ], - "author": "steemuwe", - "author_payout_value": "0.000 HBD", - "author_reputation": 54.45, - "beneficiaries": [], - "blacklists": [], - "body": "Bittrex is not a user - it's an exchange platform: **https://steemit.com/bittrex/@bittrex-richie/a-little-history-of-bittrex-com-how-it-all-started**\n\nhttps://bittrex.com/", - "category": "meta", - "children": 0, - "created": "2016-07-20T18:36:24", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "links": [ - "https://steemit.com/bittrex/@bittrex-richie/a-little-history-of-bittrex-com-how-it-all-started**" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 724886327, - "parent_author": "gopher", - "parent_permlink": "re-steemit-firstpost-20160718t195806340z", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gopher-re-steemit-firstpost-20160720t183548381z", - "post_id": 163863, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-20T18:36:24", - "url": "/meta/@steemit/firstpost#@steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z" + "kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z": { + "active_votes": [ + { + "rshares": "707206172", + "voter": "patrick-g" + } + ], + "author": "kewpiedoll", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "@steemit is not a \"user,\" it's the actual site itself. and this was the premier post akin to Satoshi's white paper. [See here](http://steemwhales.com/). I just thought it was odd the CEO would downvote the launch of the site he's CEO of.", + "category": "meta", + "children": 2, + "created": "2016-07-21T05:28:21", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "is_paidout": true, + "json_metadata": { + "links": [ + "http://steemwhales.com/" + ], + "tags": [ + "meta" + ], + "users": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 707206172, + "parent_author": "intelliguy", + "parent_permlink": "re-kewpiedoll-re-steemit-firstpost-20160720t215823622z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z", + "post_id": 239135, + "promoted": "0.000 HBD", + "replies": [ + "intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T05:28:21", + "url": "/meta/@steemit/firstpost#@kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z" }, - "stepanh/re-steemit-firstpost-20180228t231151919z": { - "active_votes": [ - { - "rshares": "52748693", - "voter": "rosynesn" - }, - { - "rshares": "181010594", - "voter": "saqibmushtaq" - } - ], - "author": "stepanh", - "author_payout_value": "0.000 HBD", - "author_reputation": 35.98, - "beneficiaries": [], - "blacklists": [], - "body": "Welcome me!\n\nAny forex traders interested in technical analysis? _(Check out my blog \ud83d\ude4f)_", - "category": "meta", - "children": 0, - "created": "2018-02-28T23:11:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 233759287, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-07T23:11:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180228t231151919z", - "post_id": 35878655, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-28T23:11:51", - "url": "/meta/@steemit/firstpost#@stepanh/re-steemit-firstpost-20180228t231151919z" + "kewpiedoll/re-steemit-firstpost-20160720t210201326z": { + "active_votes": [ + { + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "rshares": "231619534", + "voter": "eggstraordinair" + }, + { + "rshares": "123321995", + "voter": "allmonitors" + } + ], + "author": "kewpiedoll", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Why did @ned flag this post?", + "category": "meta", + "children": 4, + "created": "2016-07-20T21:01:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ], + "users": [ + "ned" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1062147701, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160720t210201326z", + "post_id": 229482, + "promoted": "0.000 HBD", + "replies": [ + "intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T21:01:54", + "url": "/meta/@steemit/firstpost#@kewpiedoll/re-steemit-firstpost-20160720t210201326z" }, - "strateg/re-edbriv-re-steemit-firstpost-20170517t202319969z": { - "active_votes": [ - { - "rshares": "0", - "voter": "brucebrownftw" - } - ], - "author": "strateg", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.34, - "beneficiaries": [], - "blacklists": [], - "body": "Yeah!", - "category": "meta", - "children": 0, - "created": "2017-05-17T20:18:27", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "edbriv", - "parent_permlink": "re-steemit-firstpost-20160801t184846033z", - "payout": 0.0, - "payout_at": "2017-05-24T20:18:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-edbriv-re-steemit-firstpost-20170517t202319969z", - "post_id": 2812009, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-05-17T20:18:27", - "url": "/meta/@steemit/firstpost#@strateg/re-edbriv-re-steemit-firstpost-20170517t202319969z" + "kingtylervvs/re-admin-firstpost-20160717t193811098z": { + "active_votes": [ + { + "rshares": "742566481", + "voter": "patrick-g" + } + ], + "author": "kingtylervvs", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "PARTY PARTY.... P - A - R - T - Y????? BECAUSE I GOTTA!", + "category": "meta", + "children": 0, + "created": "2016-07-17T19:38:12", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 742566481, + "parent_author": "admin", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-admin-firstpost-20160717t193811098z", + "post_id": 151464, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-17T19:38:12", + "url": "/meta/@steemit/firstpost#@kingtylervvs/re-admin-firstpost-20160717t193811098z" }, - "strateg/re-kingtylervvs-re-steemit-firstpost-20170517t202248492z": { - "active_votes": [], - "author": "strateg", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.34, - "beneficiaries": [], - "blacklists": [], - "body": "I love this! :)", - "category": "meta", - "children": 0, - "created": "2017-05-17T20:17:54", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "kingtylervvs", - "parent_permlink": "re-steemit-firstpost-20160720t121101482z", - "payout": 0.0, - "payout_at": "2017-05-24T20:17:54", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-kingtylervvs-re-steemit-firstpost-20170517t202248492z", - "post_id": 2811996, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-05-17T20:17:54", - "url": "/meta/@steemit/firstpost#@strateg/re-kingtylervvs-re-steemit-firstpost-20170517t202248492z" + "kingtylervvs/re-steemit-firstpost-20160720t121101482z": { + "active_votes": [ + { + "rshares": "25204741266", + "voter": "justtryme90" + }, + { + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "rshares": "226074637", + "voter": "artjedi" + }, + { + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "kingtylervvs", + "author_payout_value": "0.039 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Thank you for posting. We all LOVE steem!\n\nI up-voted you too... BTW, should steemit let us steemers advertise using steem? Be sure to tell everyone you know to come vote here at: https://steemit.com/steemit/@kingtylervvs/if-steemit-ever-does-decide-to-advertise-there-is-only-1-way-it-could-work-in-my-opinion-debate\n\nThis is a democratic community decision.
\n\n", + "category": "meta", + "children": 1, + "created": "2016-07-20T12:11:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://www.animatedimages.org/data/media/75/animated-train-image-0018.gif", + "http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif", + "https://steem.io/images/steem.png" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 26190175100, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.039, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160720t121101482z", + "post_id": 217597, + "promoted": "0.000 HBD", + "replies": [ + "yonuts/re-kingtylervvs-re-steemit-firstpost-20160729t180621248z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T12:11:00", + "url": "/meta/@steemit/firstpost#@kingtylervvs/re-steemit-firstpost-20160720t121101482z" }, - "stuvi/re-steemit-firstpost-20180110t131747431z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "stuvi", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.34, - "beneficiaries": [], - "blacklists": [], - "body": "Hi @Steemit. \n\nIm trying (as many venezuelans) to become a whale. being a whale for venezuelans right now is a great opportuniy to help people. Or even if is not me, here in #steemit there should be an employment hashtag.. \n\nWe can pay for better policeman, pay for cleaning the streets, Even pay for better education. Right now in venezuela 1SBD is half a salary. \n\nAnd yes, this could work for another places but right now i only know people that can be helped in Venezuela. This is a really powerfull toll. \n\nwith great power comes great responsibility (Ben Parker).. \n\nPS. let me know if you see this to post my plan on how to take the most of steemit and help others..", - "category": "meta", - "children": 0, - "created": "2018-01-10T13:17:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta", - "steemit" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-17T13:17:45", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180110t131747431z", - "post_id": 24790427, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-10T13:17:45", - "url": "/meta/@steemit/firstpost#@stuvi/re-steemit-firstpost-20180110t131747431z" + "lenerdie/re-steemit-firstpost-20160726t035056026z": { + "active_votes": [], + "author": "lenerdie", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Let's get crazy! happy steemit to everybody!", + "category": "meta", + "children": 0, + "created": "2016-07-26T03:50:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160726t035056026z", + "post_id": 365968, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-26T03:50:57", + "url": "/meta/@steemit/firstpost#@lenerdie/re-steemit-firstpost-20160726t035056026z" }, - "suresheee/re-steemit-firstpost-20180115t061632819z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "suresheee", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.58, - "beneficiaries": [], - "blacklists": [], - "body": "yeah its really amazing site. I love you steemit!", - "category": "meta", - "children": 0, - "created": "2018-01-15T06:16:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-22T06:16:36", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180115t061632819z", - "post_id": 25768732, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-15T06:16:36", - "url": "/meta/@steemit/firstpost#@suresheee/re-steemit-firstpost-20180115t061632819z" + "patrick-g/re-steemit-firstpost-20160722t201007967z": { + "active_votes": [ + { + "rshares": "689526018", + "voter": "patrick-g" + }, + { + "rshares": "46092586", + "voter": "matt876" + }, + { + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "patrick-g", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "You can also vote on your posts if you want.:) As in when you reply to other posts. Those are posts you can vote yourself up on.... :)", + "category": "meta", + "children": 0, + "created": "2016-07-22T20:10:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 787771629, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160722t201007967z", + "post_id": 280969, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-22T20:10:09", + "url": "/meta/@steemit/firstpost#@patrick-g/re-steemit-firstpost-20160722t201007967z" }, - "sutter/re-ackza-re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t184220108z": { - "active_votes": [], - "author": "sutter", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.84, - "beneficiaries": [], - "blacklists": [], - "body": "Nice concept. The Umbrella could have some branding and the back of the T-shirt too.", - "category": "meta", - "children": 0, - "created": "2018-07-02T18:42:21", - "curator_payout_value": "0.000 HBD", - "depth": 5, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "ackza", - "parent_permlink": "re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t091545296z", - "payout": 0.0, - "payout_at": "2018-07-09T18:42:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-ackza-re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t184220108z", - "post_id": 55192910, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-02T18:42:21", - "url": "/meta/@steemit/firstpost#@sutter/re-ackza-re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t184220108z" + "proskynneo/steemit-firstpost-1": { + "active_votes": [ + { + "rshares": "375241", + "voter": "dantheman" + }, + { + "rshares": "2213400", + "voter": "proskynneo" + }, + { + "rshares": "936400", + "voter": "ned" + }, + { + "rshares": "0", + "voter": "murh" + }, + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "58854897335", + "voter": "business" + }, + { + "rshares": "239342379", + "voter": "kewpiedoll" + }, + { + "rshares": "52153025", + "voter": "f1111111" + }, + { + "rshares": "0", + "voter": "naumovich" + } + ], + "author": "proskynneo", + "author_payout_value": "1.058 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", + "category": "meta", + "children": 0, + "created": "2016-03-31T13:54:33", + "curator_payout_value": "1.059 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 59892484261, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 2.117, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-1", + "post_id": 3, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 7 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-03-31T13:54:33", + "url": "/meta/@steemit/firstpost#@proskynneo/steemit-firstpost-1" }, - "sutter/re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035133909z": { - "active_votes": [ - { - "rshares": "0", - "voter": "boomshikha" - }, - { - "rshares": "165458320", - "voter": "sutter" - } - ], - "author": "sutter", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.84, - "beneficiaries": [], - "blacklists": [], - "body": "This is great isn't it!", - "category": "meta", - "children": 2, - "created": "2018-05-18T03:51:33", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 165458320, - "parent_author": "boomshikha", - "parent_permlink": "re-stackin-re-steemit-firstpost-20170825t013613361z", - "payout": 0.0, - "payout_at": "2018-05-25T03:51:33", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035133909z", - "post_id": 49083583, - "promoted": "0.000 HBD", - "replies": [ - "ackza/re-sutter-re-boomshikha-re-stackin-re-steemit-firstpost-20180702t091545296z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-18T03:51:33", - "url": "/meta/@steemit/firstpost#@sutter/re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035133909z" + "red/steemit-firstpost-2": { + "active_votes": [ + { + "rshares": "-376603", + "voter": "dantheman" + }, + { + "rshares": "903854", + "voter": "mr11acdee" + }, + { + "rshares": "1441", + "voter": "red" + }, + { + "rshares": "23446", + "voter": "xeroc" + }, + { + "rshares": "724886327", + "voter": "patrick-g" + }, + { + "rshares": "60031995282", + "voter": "business" + }, + { + "rshares": "71498008", + "voter": "madhatting" + }, + { + "rshares": "64967241", + "voter": "staceyjatkinson" + }, + { + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "red", + "author_payout_value": "0.100 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Did you know you can earn STEEM by commenting on posts?", + "category": "meta", + "children": 2, + "created": "2016-04-06T19:22:42", + "curator_payout_value": "0.100 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 60946052021, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.2, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-2", + "post_id": 4, + "promoted": "0.000 HBD", + "replies": [ + "steem-id/re-red-steemit-firstpost-2", + "business/re-red-steemit-firstpost-2-20160713t083846149z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 9 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-04-06T19:22:42", + "url": "/meta/@steemit/firstpost#@red/steemit-firstpost-2" }, - "sutter/re-mominsdt-re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035208159z": { - "active_votes": [ - { - "rshares": "159943043", - "voter": "sutter" - } - ], - "author": "sutter", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.84, - "beneficiaries": [], - "blacklists": [], - "body": "That would be fantastic! https://DLive.io celebrity would be fun!", - "category": "meta", - "children": 0, - "created": "2018-05-18T03:52:09", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://DLive.io" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 159943043, - "parent_author": "mominsdt", - "parent_permlink": "re-boomshikha-re-stackin-re-steemit-firstpost-20180204t150750239z", - "payout": 0.0, - "payout_at": "2018-05-25T03:52:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-mominsdt-re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035208159z", - "post_id": 49083649, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-18T03:52:09", - "url": "/meta/@steemit/firstpost#@sutter/re-mominsdt-re-boomshikha-re-stackin-re-steemit-firstpost-20180518t035208159z" + "rednetkjh/re-steemit-firstpost-20160804t061605576z": { + "active_votes": [], + "author": "rednetkjh", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service", + "category": "meta", + "children": 0, + "created": "2016-08-04T06:16:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "links": [ + "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160804t061605576z", + "post_id": 596138, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-04T06:16:00", + "url": "/meta/@steemit/firstpost#@rednetkjh/re-steemit-firstpost-20160804t061605576z" }, - "sutter/re-stackin-re-steemit-firstpost-20180518t035057988z": { - "active_votes": [ - { - "rshares": "176488875", - "voter": "sutter" - } - ], - "author": "sutter", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.84, - "beneficiaries": [], - "blacklists": [], - "body": "I agree!", - "category": "meta", - "children": 0, - "created": "2018-05-18T03:50:57", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 176488875, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-05-25T03:50:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180518t035057988z", - "post_id": 49083522, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-18T03:50:57", - "url": "/meta/@steemit/firstpost#@sutter/re-stackin-re-steemit-firstpost-20180518t035057988z" + "rittr/re-steemit-firstpost-20160824t025355199z": { + "active_votes": [ + { + "rshares": "-75407549856", + "voter": "vault" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "57599604", + "voter": "abanks1000" + }, + { + "rshares": "54993432", + "voter": "landarin" + } + ], + "author": "rittr", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I am Comment **Number 35** on the first Steemit Poster evaaar!", + "category": "meta", + "children": 0, + "created": "2016-08-24T02:53:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -74429831049, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160824t025355199z", + "post_id": 961146, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 1.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-24T02:53:57", + "url": "/meta/@steemit/firstpost#@rittr/re-steemit-firstpost-20160824t025355199z" }, - "sutter/re-steemit-firstpost-20180518t035020663z": { - "active_votes": [ - { - "rshares": "176488875", - "voter": "sutter" - }, - { - "rshares": "54958635", - "voter": "neboyart" - } - ], - "author": "sutter", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.84, - "beneficiaries": [], - "blacklists": [], - "body": "I'm impressed by everything this site has to offer their users! Great press and great reactions of those whom have come to generate or curate content.", - "category": "meta", - "children": 0, - "created": "2018-05-18T03:50:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 231447510, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-05-25T03:50:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180518t035020663z", - "post_id": 49083443, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-05-18T03:50:21", - "url": "/meta/@steemit/firstpost#@sutter/re-steemit-firstpost-20180518t035020663z" + "sictransitgloria/re-steemit-firstpost-20160721t233702742z": { + "active_votes": [ + { + "rshares": "689526018", + "voter": "patrick-g" + } + ], + "author": "sictransitgloria", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Go Steem!", + "category": "meta", + "children": 0, + "created": "2016-07-21T23:37:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 689526018, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160721t233702742z", + "post_id": 261571, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T23:37:00", + "url": "/meta/@steemit/firstpost#@sictransitgloria/re-steemit-firstpost-20160721t233702742z" }, - "sweetorange/re-steemit-firstpost-20180115t063310301z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "sweetorange", - "author_payout_value": "0.000 HBD", - "author_reputation": 40.84, - "beneficiaries": [], - "blacklists": [], - "body": "I love Steemit and I have started playing with it for two weeks! Any suggestion to make my AC to be more popular to others? Or how should I contribute in boosting the spread of Steemit? : )", - "category": "meta", - "children": 0, - "created": "2018-01-15T06:33:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-22T06:33:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180115t063310301z", - "post_id": 25770786, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-15T06:33:09", - "url": "/meta/@steemit/firstpost#@sweetorange/re-steemit-firstpost-20180115t063310301z" + "steem-id/re-red-steemit-firstpost-2": { + "active_votes": [ + { + "rshares": "724886327", + "voter": "patrick-g" + } + ], + "author": "steem-id", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Can I get some :D", + "category": "meta", + "children": 0, + "created": "2016-04-13T03:48:36", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 724886327, + "parent_author": "red", + "parent_permlink": "steemit-firstpost-2", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-red-steemit-firstpost-2", + "post_id": 116, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-04-13T03:48:36", + "url": "/meta/@steemit/firstpost#@steem-id/re-red-steemit-firstpost-2" }, - "syedumair/re-steemit-firstpost-20171113t071852113z": { - "active_votes": [ - { - "rshares": "32991423113", - "voter": "umami" - }, - { - "rshares": "16921102717", - "voter": "lexiconical" - }, - { - "rshares": "22853336820", - "voter": "mirhimayun" - }, - { - "rshares": "2414098564", - "voter": "piyushkansal" - }, - { - "rshares": "81238167", - "voter": "kevca16" - } - ], - "author": "syedumair", - "author_payout_value": "0.123 HBD", - "author_reputation": 72.82, - "beneficiaries": [], - "blacklists": [], - "body": "How can this post be two years old when only steemit came into existence in march 2016", - "category": "meta", - "children": 0, - "created": "2017-11-13T07:18:57", - "curator_payout_value": "0.031 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + "steemit/firstpost": { + "active_votes": [ + { + "rshares": "375241", + "voter": "dantheman" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 75261199381, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.154, - "payout_at": "2017-11-20T07:18:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171113t071852113z", - "post_id": 17551058, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 5 + { + "rshares": "886132", + "voter": "mr11acdee" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-13T07:18:57", - "url": "/meta/@steemit/firstpost#@syedumair/re-steemit-firstpost-20171113t071852113z" - }, - "syedumair/re-steemit-firstpost-20171113t113417285z": { - "active_votes": [ - { - "rshares": "32991423113", - "voter": "umami" - }, - { - "rshares": "16921102717", - "voter": "lexiconical" - }, - { - "rshares": "22535929364", - "voter": "mirhimayun" - }, - { - "rshares": "2167761976", - "voter": "piyushkansal" - }, - { - "rshares": "70220672763", - "voter": "trlotto" - } - ], - "author": "syedumair", - "author_payout_value": "0.235 HBD", - "author_reputation": 72.82, - "beneficiaries": [], - "blacklists": [], - "body": "How am I getting auto votes on the comment I made here??", - "category": "meta", - "children": 0, - "created": "2017-11-13T11:34:21", - "curator_payout_value": "0.067 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "5100", + "voter": "steemit78" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 144836889933, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.302, - "payout_at": "2017-11-20T11:34:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171113t113417285z", - "post_id": 17566354, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 5 + { + "rshares": "1259167", + "voter": "anonymous" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-11-13T11:34:21", - "url": "/meta/@steemit/firstpost#@syedumair/re-steemit-firstpost-20171113t113417285z" - }, - "syedumair/re-steemit-firstpost-20180227t182207249z": { - "active_votes": [ - { - "rshares": "62065425", - "voter": "lexiconical" - }, - { - "rshares": "476041552", - "voter": "mirhimayun" - }, - { - "rshares": "3458687490", - "voter": "piyushkansal" - } - ], - "author": "syedumair", - "author_payout_value": "0.020 HBD", - "author_reputation": 72.82, - "beneficiaries": [], - "blacklists": [], - "body": "Does it still work!", - "category": "meta", - "children": 0, - "created": "2018-02-27T18:22:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "318519", + "voter": "hello" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3996794467, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.02, - "payout_at": "2018-03-06T18:22:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180227t182207249z", - "post_id": 35612461, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 + { + "rshares": "153384", + "voter": "world" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-27T18:22:09", - "url": "/meta/@steemit/firstpost#@syedumair/re-steemit-firstpost-20180227t182207249z" - }, - "talukder/re-isteemithard-re-steemit-firstpost-20171012t053418526z": { - "active_votes": [], - "author": "talukder", - "author_payout_value": "0.000 HBD", - "author_reputation": 22.83, - "beneficiaries": [], - "blacklists": [], - "body": "Upvoted.", - "category": "meta", - "children": 0, - "created": "2017-10-12T05:34:24", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "-936400", + "voter": "ned" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "isteemithard", - "parent_permlink": "re-steemit-firstpost-20171012t053312152z", - "payout": 0.0, - "payout_at": "2017-10-19T05:34:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-isteemithard-re-steemit-firstpost-20171012t053418526z", - "post_id": 15112525, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "59412", + "voter": "fufubar1" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-12T05:34:24", - "url": "/meta/@steemit/firstpost#@talukder/re-isteemithard-re-steemit-firstpost-20171012t053418526z" - }, - "tarunmewara/re-steemit-firstpost-20170624t114746528z": { - "active_votes": [], - "author": "tarunmewara", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.22, - "beneficiaries": [], - "blacklists": [], - "body": "I am glad to be here on this plateform :)))", - "category": "meta", - "children": 1, - "created": "2017-06-24T11:46:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "14997", + "voter": "anonymous1" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-01T11:46:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170624t114746528z", - "post_id": 4906952, - "promoted": "0.000 HBD", - "replies": [ - "inuk/re-tarunmewara-re-steemit-firstpost-20170624t123825509z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "1441", + "voter": "red" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-24T11:46:21", - "url": "/meta/@steemit/firstpost#@tarunmewara/re-steemit-firstpost-20170624t114746528z" - }, - "teamslovenia/komentar-teamslovenia-firstpost": { - "active_votes": [ - { - "rshares": "587510170", - "voter": "votes4minnows" - } - ], - "author": "teamslovenia", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.2, - "beneficiaries": [ - { - "account": "fbslo.pay", - "weight": 500 - } - ], - "blacklists": [], - "body": "@steemit, tvoja objava je dobila 100% upvote od @teamslovenia!

Kako dobiti upvote?

\u26ab Pridru\u017ei se nam v [Discord stre\u017eniku](https://discord.gg/j5qkY9j)!
\u26ab Uporabi TeamSlovenia upvote bot!

Kako lahko tudi ti pomaga\u0161, da bo @teamslovenia bot mo\u010dnej\u0161i?


\u26ab Delegiraj steem power - [50 SP](https://steemconnect.com/sign/delegate-vesting-shares?delegator=&delegatee=teamslovenia&vesting_shares=50%20SP) - [100 SP](https://steemconnect.com/sign/delegate-vesting-shares?delegator=&delegatee=teamslovenia&vesting_shares=100%20SP) - [500 SP](https://steemconnect.com/sign/delegate-vesting-shares?delegator=&delegatee=teamslovenia&vesting_shares=500%20SP) - [1000 SP](https://steemconnect.com/sign/delegate-vesting-shares?delegator=&delegatee=teamslovenia&vesting_shares=1000%20SP) - [Po \u017eelji](https://fbslo.net/tools/delegate.html)!
\u26ab Sledi upvotom od @teamslovenia - [Navodila](https://steemit.com/teamslovenia/@fbslo/teamslovenia-discord)


Ta projekt podpira Steem Witness @fbslo - [Glasuj zdaj](https://steemconnect.com/sign/account-witness-vote?account=&witness=fbslo&approve=true)!", - "category": "meta", - "children": 1, - "created": "2018-11-09T18:12:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "teamslovenia-discord-voter", - "tags": [ - "teamslovenia" - ] + { + "rshares": "551390835500", + "voter": "liondani" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 587510170, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-11-16T18:12:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 0, - "permlink": "komentar-teamslovenia-firstpost", - "post_id": 65763463, - "promoted": "0.000 HBD", - "replies": [ - "ashirkhan/re-teamslovenia-komentar-teamslovenia-firstpost-20181129t104734328z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "82748", + "voter": "roadscape" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-11-09T18:12:00", - "url": "/meta/@steemit/firstpost#@teamslovenia/komentar-teamslovenia-firstpost" - }, - "tharookie/re-steemit-firstpost-20180214t185651863z": { - "active_votes": [], - "author": "tharookie", - "author_payout_value": "0.000 HBD", - "author_reputation": 36.05, - "beneficiaries": [], - "blacklists": [], - "body": "I feel like I am at a concert with a whole lot of people who I do not know, but we share the same passion. LOL", - "category": "meta", - "children": 0, - "created": "2018-02-14T18:56:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "10772", + "voter": "xeroc" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-21T18:56:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180214t185651863z", - "post_id": 32661246, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "7685088000", + "voter": "markopaasila" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-14T18:56:51", - "url": "/meta/@steemit/firstpost#@tharookie/re-steemit-firstpost-20180214t185651863z" - }, - "theafroguy/re-steemit-firstpost-20171223t213918039z": { - "active_votes": [ - { - "rshares": "1335482432", - "voter": "theafroguy" - }, - { - "rshares": "140145403", - "voter": "macodi1" - }, - { - "rshares": "236898200", - "voter": "kolaolabode" - } - ], - "author": "theafroguy", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.06, - "beneficiaries": [], - "blacklists": [], - "body": "So this is the first post which was written on Steemit?", - "category": "meta", - "children": 0, - "created": "2017-12-23T21:39:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "454510724", + "voter": "tshering-tamang" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1712526035, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-30T21:39:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171223t213918039z", - "post_id": 21681912, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 + { + "rshares": "681946946", + "voter": "romangelsi" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-23T21:39:21", - "url": "/meta/@steemit/firstpost#@theafroguy/re-steemit-firstpost-20171223t213918039z" - }, - "thecrytotrader/re-steemit-firstpost-20170925t095222457z": { - "active_votes": [ - { - "rshares": "3821565288", - "voter": "mrwalt" - }, - { - "rshares": "630264014", - "voter": "acid303techno" - } - ], - "author": "thecrytotrader", - "author_payout_value": "0.000 HBD", - "author_reputation": 70.3, - "beneficiaries": [], - "blacklists": [], - "body": "Love steeming a lot :)", - "category": "meta", - "children": 0, - "created": "2017-09-25T09:52:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "504895891", + "voter": "dedmatvey" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 4451829302, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-02T09:52:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170925t095222457z", - "post_id": 13708471, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 + { + "rshares": "498863058", + "voter": "joelinux" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-09-25T09:52:27", - "url": "/meta/@steemit/firstpost#@thecrytotrader/re-steemit-firstpost-20170925t095222457z" - }, - "thedrewshow/re-steemit-firstpost-20171208t005953936z": { - "active_votes": [ - { - "rshares": "664754180", - "voter": "thedrewshow" - } - ], - "author": "thedrewshow", - "author_payout_value": "0.000 HBD", - "author_reputation": 46.19, - "beneficiaries": [], - "blacklists": [], - "body": "I'm still trying to figure all of this out but I'm enjoying the process! Glad that this is even possible thanks to the day and age we live in.", - "category": "meta", - "children": 0, - "created": "2017-12-08T00:59:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "9590417", + "voter": "piranhax" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 664754180, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-15T00:59:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171208t005953936z", - "post_id": 19760791, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "473258270", + "voter": "ned-reddit-login" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-08T00:59:48", - "url": "/meta/@steemit/firstpost#@thedrewshow/re-steemit-firstpost-20171208t005953936z" - }, - "thepassenger/re-steemit-firstpost-20180119t000400807z": { - "active_votes": [ - { - "rshares": "515791928", - "voter": "gefa" - }, - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "thepassenger", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.96, - "beneficiaries": [], - "blacklists": [], - "body": "I anted to leave my message in this post for the eternety. 2 years later this is working! congrats @steemit and all the team, people and users behind!", - "category": "meta", - "children": 0, - "created": "2018-01-19T00:04:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] + { + "rshares": "0", + "voter": "fernando-sanz" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 515791928, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-26T00:04:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180119t000400807z", - "post_id": 26520850, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "425903066", + "voter": "gekko" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-19T00:04:03", - "url": "/meta/@steemit/firstpost#@thepassenger/re-steemit-firstpost-20180119t000400807z" - }, - "thephotoguide/re-diggerdugg-re-steemit-firstpost-20170706t212052448z": { - "active_votes": [], - "author": "thephotoguide", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.54, - "beneficiaries": [], - "blacklists": [], - "body": "sure, thanks!", - "category": "meta", - "children": 0, - "created": "2017-07-06T21:21:39", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "381805870", + "voter": "gilang-ramadhan" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "diggerdugg", - "parent_permlink": "re-steemit-firstpost-20170706t210051540z", - "payout": 0.0, - "payout_at": "2017-07-13T21:21:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-diggerdugg-re-steemit-firstpost-20170706t212052448z", - "post_id": 6379575, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "392459059", + "voter": "kamvreto" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-06T21:21:39", - "url": "/meta/@steemit/firstpost#@thephotoguide/re-diggerdugg-re-steemit-firstpost-20170706t212052448z" - }, - "thethor1122/re-steemit-firstpost-20180223t162410080z": { - "active_votes": [], - "author": "thethor1122", - "author_payout_value": "0.000 HBD", - "author_reputation": 59.14, - "beneficiaries": [], - "blacklists": [], - "body": "\ud83d\udccc I believe steemit will grow more than facebook. I realize the benefits that it gives the steemians, 1 day not far from steemit will be the world's largest network !\ud83d\udcaf\ud83d\udcaf\ud83d\udcaf", - "category": "meta", - "children": 0, - "created": "2018-02-23T16:24:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "422984262", + "voter": "acidyo" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-02T16:24:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180223t162410080z", - "post_id": 34734742, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "47179379651", + "voter": "tosch" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-23T16:24:09", - "url": "/meta/@steemit/firstpost#@thethor1122/re-steemit-firstpost-20180223t162410080z" - }, - "timcrypto/re-steemit-firstpost-20170705t172656778z": { - "active_votes": [ - { - "rshares": "1208429291", - "voter": "sagar-aman" - } - ], - "author": "timcrypto", - "author_payout_value": "0.000 HBD", - "author_reputation": 41.53, - "beneficiaries": [], - "blacklists": [], - "body": "Great post @steemit \ud83d\ude03\nI love it here.\nI need 70million steempower soooo bad!!!!!", - "category": "meta", - "children": 0, - "created": "2017-07-05T17:26:57", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] + { + "rshares": "7831667988", + "voter": "klye" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1208429291, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-12T17:26:57", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170705t172656778z", - "post_id": 6249745, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "1019950749", + "voter": "coar" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-05T17:26:57", - "url": "/meta/@steemit/firstpost#@timcrypto/re-steemit-firstpost-20170705t172656778z" - }, - "tinoschloegl/re-steemit-firstpost-20171220t090303161z": { - "active_votes": [ - { - "rshares": "399176962", - "voter": "tinoschloegl" - }, - { - "rshares": "8732114998", - "voter": "tinowhale" - } - ], - "author": "tinoschloegl", - "author_payout_value": "0.044 HBD", - "author_reputation": 53.47, - "beneficiaries": [], - "blacklists": [], - "body": "Wow, I also want to be part of this historical post. :-D", - "category": "meta", - "children": 0, - "created": "2017-12-20T09:03:00", - "curator_payout_value": "0.009 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "1746058458", + "voter": "murh" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 9131291960, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.053, - "payout_at": "2017-12-27T09:03:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171220t090303161z", - "post_id": 21157844, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 + { + "rshares": "22639073725", + "voter": "drinkzya" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-20T09:03:00", - "url": "/meta/@steemit/firstpost#@tinoschloegl/re-steemit-firstpost-20171220t090303161z" - }, - "tony-duke/re-steemit-firstpost-20170831t204732502z": { - "active_votes": [], - "author": "tony-duke", - "author_payout_value": "0.000 HBD", - "author_reputation": 67.01, - "beneficiaries": [], - "blacklists": [], - "body": "Wow , steemit is really a great community, nice to be on steemit\ud83d\udc4d", - "category": "meta", - "children": 0, - "created": "2017-08-31T20:47:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "0", + "voter": "hien-tran" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-09-07T20:47:45", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170831t204732502z", - "post_id": 11605349, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "742566481", + "voter": "patrick-g" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-31T20:47:45", - "url": "/meta/@steemit/firstpost#@tony-duke/re-steemit-firstpost-20170831t204732502z" - }, - "topdollar001/re-stackin-re-steemit-firstpost-20180119t002117970z": { - "active_votes": [ - { - "rshares": "720342620", - "voter": "topdollar001" - }, - { - "rshares": "571459472", - "voter": "mikeduck" - } - ], - "author": "topdollar001", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.41, - "beneficiaries": [], - "blacklists": [], - "body": "U v made more in dis comment than i v on any post. \ud83d\ude27", - "category": "meta", - "children": 0, - "created": "2018-01-19T00:21:24", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "40624969", + "voter": "ben99" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1291802092, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-01-26T00:21:24", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180119t002117970z", - "post_id": 26523025, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 + { + "rshares": "1742755097", + "voter": "sunshinecrypto" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-19T00:21:24", - "url": "/meta/@steemit/firstpost#@topdollar001/re-stackin-re-steemit-firstpost-20180119t002117970z" - }, - "tothemoonin2017/re-mammasitta-re-steemit-firstpost-20180111t033524077z": { - "active_votes": [], - "author": "tothemoonin2017", - "author_payout_value": "0.000 HBD", - "author_reputation": 39.43, - "beneficiaries": [], - "blacklists": [], - "body": "you have my vote. hah", - "category": "meta", - "children": 0, - "created": "2018-01-11T03:35:27", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "108855472", + "voter": "kingtylervvs" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "mammasitta", - "parent_permlink": "re-steemit-firstpost-20170824t230822305z", - "payout": 0.0, - "payout_at": "2018-01-18T03:35:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-mammasitta-re-steemit-firstpost-20180111t033524077z", - "post_id": 24925101, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "485112237", + "voter": "marinabogumil" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-11T03:35:27", - "url": "/meta/@steemit/firstpost#@tothemoonin2017/re-mammasitta-re-steemit-firstpost-20180111t033524077z" - }, - "tothemoonin2017/re-steemit-firstpost-20180111t033404296z": { - "active_votes": [ - { - "rshares": "3041253655", - "voter": "estronitex" - }, - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "tothemoonin2017", - "author_payout_value": "0.021 HBD", - "author_reputation": 39.43, - "beneficiaries": [], - "blacklists": [], - "body": "Steem is amazing!! \ud83d\udcaf", - "category": "meta", - "children": 0, - "created": "2018-01-11T03:34:09", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "917398502", + "voter": "decrypt" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 3041253655, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.021, - "payout_at": "2018-01-18T03:34:09", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180111t033404296z", - "post_id": 24924908, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "5067187498", + "voter": "senseiteekay" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-11T03:34:09", - "url": "/meta/@steemit/firstpost#@tothemoonin2017/re-steemit-firstpost-20180111t033404296z" - }, - "trailofwhales/re-steemit-firstpost-20170808t230208389z": { - "active_votes": [ - { - "rshares": "627780886", - "voter": "trailofwhales" - } - ], - "author": "trailofwhales", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.87, - "beneficiaries": [], - "blacklists": [], - "body": "@Steemit @Freedom @Steem @Dan @Ned @blocktrades\n\nDespite the account name, I am not whale. Wish I was but I am not. Hopefully someday when I do \n \n 100 Push-Ups\n 100 Sit-Ups\n 100 Squats\n 10KM Running \n\nEvery single day. I will probably become a whale.", - "category": "meta", - "children": 0, - "created": "2017-08-08T23:02:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit", - "freedom", - "steem", - "dan", - "ned", - "blocktrades" - ] + { + "rshares": "5154897955", + "voter": "r33drum" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 627780886, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-15T23:02:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170808t230208389z", - "post_id": 9616377, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "5033902237", + "voter": "cryptosi" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-08-08T23:02:06", - "url": "/meta/@steemit/firstpost#@trailofwhales/re-steemit-firstpost-20170808t230208389z" - }, - "trapve/re-steemit-firstpost-20180306t162905708z": { - "active_votes": [], - "author": "trapve", - "author_payout_value": "0.000 HBD", - "author_reputation": 26.47, - "beneficiaries": [], - "blacklists": [], - "body": "this platform it's just fantastic!", - "category": "meta", - "children": 0, - "created": "2018-03-06T16:29:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "1037079223", + "voter": "condra" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-03-13T16:29:06", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180306t162905708z", - "post_id": 37073328, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "233032838", + "voter": "jearson" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-03-06T16:29:06", - "url": "/meta/@steemit/firstpost#@trapve/re-steemit-firstpost-20180306t162905708z" - }, - "trys10k/re-steemit-firstpost-20170611t044200263z": { - "active_votes": [ - { - "rshares": "12805237447", - "voter": "dimimp" - }, - { - "rshares": "2146737279", - "voter": "trys10k" - } - ], - "author": "trys10k", - "author_payout_value": "0.040 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Dude send me 2000 steem, sharing is caring and I'll push this company til the end. \n\nGodbless.", - "category": "meta", - "children": 0, - "created": "2017-06-11T04:42:03", - "curator_payout_value": "0.004 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "240809500", + "voter": "tritium" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 14951974726, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.044, - "payout_at": "2017-06-18T04:42:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170611t044200263z", - "post_id": 3739820, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 + { + "rshares": "123321995", + "voter": "allmonitors" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-11T04:42:03", - "url": "/meta/@steemit/firstpost#@trys10k/re-steemit-firstpost-20170611t044200263z" - }, - "tryword/re-steemit-firstpost-20180129t231805308z": { - "active_votes": [], - "author": "tryword", - "author_payout_value": "0.000 HBD", - "author_reputation": 50.14, - "beneficiaries": [], - "blacklists": [], - "body": "I love it !!", - "category": "meta", - "children": 0, - "created": "2018-01-29T23:18:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "226074637", + "voter": "artjedi" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-05T23:18:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180129t231805308z", - "post_id": 29042068, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "931542394", + "voter": "anduweb" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-29T23:18:42", - "url": "/meta/@steemit/firstpost#@tryword/re-steemit-firstpost-20180129t231805308z" - }, - "tsnaks/re-steemit-firstpost-20180604t143850288z": { - "active_votes": [], - "author": "tsnaks", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.32, - "beneficiaries": [], - "blacklists": [], - "body": "I love steemit ! <3", - "category": "meta", - "children": 0, - "created": "2018-06-04T14:38:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "2292983350", + "voter": "inertia" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-06-11T14:38:51", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180604t143850288z", - "post_id": 51642766, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "128561059", + "voter": "maximkichev" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-04T14:38:51", - "url": "/meta/@steemit/firstpost#@tsnaks/re-steemit-firstpost-20180604t143850288z" - }, - "tumutanzi/re-steemit-firstpost-20170714t095628298z": { - "active_votes": [ - { - "rshares": "117028280", - "voter": "black-eye" - }, - { - "rshares": "4485333030", - "voter": "danyelk" - }, - { - "rshares": "1172749660", - "voter": "lembach3d" - }, - { - "rshares": "697181636", - "voter": "aniksh" - }, - { - "rshares": "52230396", - "voter": "adraaz" - } - ], - "author": "tumutanzi", - "author_payout_value": "0.026 HBD", - "author_reputation": 71.16, - "beneficiaries": [], - "blacklists": [], - "body": "Make blockchain great again!", - "category": "meta", - "children": 0, - "created": "2017-07-14T09:56:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "183438273", + "voter": "a9inchcock" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 6524523002, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.026, - "payout_at": "2017-07-21T09:56:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170714t095628298z", - "post_id": 7150728, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 5 + { + "rshares": "266262926", + "voter": "desmonid" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-14T09:56:27", - "url": "/meta/@steemit/firstpost#@tumutanzi/re-steemit-firstpost-20170714t095628298z" - }, - "ubg/re-steemit-firstpost-20160813t143213453z": { - "active_votes": [ - { - "rshares": "23067571373", - "voter": "ubg" - }, - { - "rshares": "999297062", - "voter": "juurop" - }, - { - "rshares": "823625727", - "voter": "usb" - }, - { - "rshares": "5546862495", - "voter": "tannukas6" - }, - { - "rshares": "694394716", - "voter": "tox" - }, - { - "rshares": "0", - "voter": "kibbjez" - }, - { - "rshares": "692185541", - "voter": "runridefly" - }, - { - "rshares": "0", - "voter": "suryarose" - } - ], - "author": "ubg", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.26, - "beneficiaries": [], - "blacklists": [], - "body": "You have quadruple the liquidity any of the exchanges have. \n## Just make it rain!\nhttp://i.imgur.com/Maj5zM2.gif", - "category": "meta", - "children": 1, - "created": "2016-08-13T14:32:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "image": [ - "http://i.imgur.com/Maj5zM2.gif" - ], - "tags": [ - "meta" - ] + { + "rshares": "71498008", + "voter": "madhatting" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 31823936914, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160813t143213453z", - "post_id": 585908, - "promoted": "0.000 HBD", - "replies": [ - "setio/re-ubg-re-steemit-firstpost-20170820t233424463z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 6 + { + "rshares": "23726644841", + "voter": "ubg" }, - "title": "RE: Welcome to Steem!", - "updated": "2016-08-13T14:32:18", - "url": "/meta/@steemit/firstpost#@ubg/re-steemit-firstpost-20160813t143213453z" - }, - "uripsurya/re-steemit-firstpost-20180205t130906092z": { - "active_votes": [ - { - "rshares": "64518545", - "voter": "uripsurya" - } - ], - "author": "uripsurya", - "author_payout_value": "0.000 HBD", - "author_reputation": 34.49, - "beneficiaries": [], - "blacklists": [], - "body": "Amazing....@steemit my new world to social media online.thanks @steemit", - "category": "meta", - "children": 0, - "created": "2018-02-05T13:09:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] + { + "rshares": "3741408303", + "voter": "royaltiffany" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 64518545, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-02-12T13:09:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180205t130906092z", - "post_id": 30566687, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "131577259", + "voter": "gribgo" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-02-05T13:09:15", - "url": "/meta/@steemit/firstpost#@uripsurya/re-steemit-firstpost-20180205t130906092z" - }, - "urmokas/re-steemit-firstpost-20170430t041901124z": { - "active_votes": [ - { - "rshares": "1136297440", - "voter": "neonartist" - }, - { - "rshares": "3663106651", - "voter": "funkit" - }, - { - "rshares": "1004242388", - "voter": "urmokas" - } - ], - "author": "urmokas", - "author_payout_value": "0.000 HBD", - "author_reputation": 45.51, - "beneficiaries": [], - "blacklists": [], - "body": "This is my big asking whether someone can put LIAIKE my cats, blogs and even better would be a donation would advance saaks. Thanks famous cats who made donations. BIG THANKS IN ADVANCE", - "category": "meta", - "children": 0, - "created": "2017-04-30T04:19:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "12371398765", + "voter": "deanliu" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 5803646479, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-05-07T04:19:00", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170430t041901124z", - "post_id": 2516715, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 + { + "rshares": "28907874049", + "voter": "orm" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-04-30T04:19:00", - "url": "/meta/@steemit/firstpost#@urmokas/re-steemit-firstpost-20170430t041901124z" - }, - "urmokas/re-steemit-firstpost-20170430t041942403z": { - "active_votes": [ - { - "rshares": "1165433272", - "voter": "neonartist" - }, - { - "rshares": "3663106651", - "voter": "funkit" - }, - { - "rshares": "1058525760", - "voter": "urmokas" - } - ], - "author": "urmokas", - "author_payout_value": "0.000 HBD", - "author_reputation": 45.51, - "beneficiaries": [], - "blacklists": [], - "body": "This is my big asking whether someone can put LIAIKE my cats, blogs and even better would be a donation would advance saaks. Thanks famous cats who made donations. BIG THANKS IN ADVANCE @urmokas", - "category": "meta", - "children": 0, - "created": "2017-04-30T04:19:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "urmokas" - ] + { + "rshares": "528988007", + "voter": "qonq99" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 5887065683, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-05-07T04:19:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170430t041942403z", - "post_id": 2516719, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 + { + "rshares": "129537329", + "voter": "rd7783" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-04-30T04:19:42", - "url": "/meta/@steemit/firstpost#@urmokas/re-steemit-firstpost-20170430t041942403z" - }, - "v007007007/re-steemit-firstpost-20171208t070558910z": { - "active_votes": [], - "author": "v007007007", - "author_payout_value": "0.000 HBD", - "author_reputation": 49.46, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is probably the best social media platform right now.i am loving it.....please upvote my posts..", - "category": "meta", - "children": 0, - "created": "2017-12-08T07:36:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "615020728", + "voter": "slava" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-12-15T07:36:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171208t070558910z", - "post_id": 19783174, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "0", + "voter": "flyboyzombie" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-08T07:36:27", - "url": "/meta/@steemit/firstpost#@v007007007/re-steemit-firstpost-20171208t070558910z" - }, - "valueup/re-steemit-firstpost-20170619t152843513z": { - "active_votes": [ - { - "rshares": "19215700192", - "voter": "sebastien" - }, - { - "rshares": "1457937864", - "voter": "gogo.tattoo" - }, - { - "rshares": "0", - "voter": "kevca16" - } - ], - "author": "valueup", - "author_payout_value": "0.330 HBD", - "author_reputation": 57.68, - "beneficiaries": [], - "blacklists": [], - "body": "Thanks~ @steemit, this world is really brilliant! :)", - "category": "meta", - "children": 1, - "created": "2017-06-19T15:29:27", - "curator_payout_value": "0.065 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] + { + "rshares": "100102503", + "voter": "sictransitgloria" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 20673638056, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.395, - "payout_at": "2017-06-26T15:29:27", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170619t152843513z", - "post_id": 4353595, - "promoted": "0.000 HBD", - "replies": [ - "crypto-p/re-valueup-re-steemit-firstpost-20170619t185901457z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 + { + "rshares": "95219365", + "voter": "curator" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-19T15:29:27", - "url": "/meta/@steemit/firstpost#@valueup/re-steemit-firstpost-20170619t152843513z" - }, - "vandalizmrecordz/re-steemit-firstpost-20171004t005106070z": { - "active_votes": [ - { - "rshares": "1679238748", - "voter": "vandalizmrecordz" - } - ], - "author": "vandalizmrecordz", - "author_payout_value": "0.000 HBD", - "author_reputation": 55.77, - "beneficiaries": [], - "blacklists": [], - "body": "please support Vegas relief fund https://steemit.com/vegas/@vandalizmrecordz/steemit-vegas-victim-help-and-relief-fund-by-william-elder-of-vandalizmrecordz-orbit-drop", - "category": "meta", - "children": 0, - "created": "2017-10-03T23:55:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://steemit.com/vegas/@vandalizmrecordz/steemit-vegas-victim-help-and-relief-fund-by-william-elder-of-vandalizmrecordz-orbit-drop" - ], - "tags": [ - "meta" - ] + { + "rshares": "232295871", + "voter": "dubovoy" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1679238748, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-10-10T23:55:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171004t005106070z", - "post_id": 14452284, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "0", + "voter": "solos" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-10-03T23:55:15", - "url": "/meta/@steemit/firstpost#@vandalizmrecordz/re-steemit-firstpost-20171004t005106070z" - }, - "venkatesh15921/re-steemit-firstpost-20180707t045636127z": { - "active_votes": [], - "author": "venkatesh15921", - "author_payout_value": "0.000 HBD", - "author_reputation": 39.39, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is one of the coolest platform for writers i have ever seen . It is fun and awesome !!", - "category": "meta", - "children": 0, - "created": "2018-07-07T04:56:36", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "96945805", + "voter": "creatorgalaxy" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-07-14T04:56:36", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180707t045636127z", - "post_id": 55699723, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "99813231", + "voter": "trigonice29" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-07-07T04:56:36", - "url": "/meta/@steemit/firstpost#@venkatesh15921/re-steemit-firstpost-20180707t045636127z" - }, - "veseloff/re-layra-re-steemit-firstpost-20180620t171437053z": { - "active_votes": [ - { - "rshares": "300304584", - "voter": "layra" - } - ], - "author": "veseloff", - "author_payout_value": "0.000 HBD", - "author_reputation": 59.89, - "beneficiaries": [], - "blacklists": [], - "body": "Welcome to Steemit, I followed you, I hope and you will follow me! ;)", - "category": "meta", - "children": 1, - "created": "2018-06-20T17:14:42", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "0", + "voter": "blysards" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 300304584, - "parent_author": "layra", - "parent_permlink": "re-steemit-firstpost-20180620t023240325z", - "payout": 0.0, - "payout_at": "2018-06-27T17:14:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-layra-re-steemit-firstpost-20180620t171437053z", - "post_id": 53704179, - "promoted": "0.000 HBD", - "replies": [ - "spaminator/re-veseloff-re-layra-re-steemit-firstpost-20180620t171437053z-20180620t182350260z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "3721016208", + "voter": "uwe69" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-06-20T17:14:42", - "url": "/meta/@steemit/firstpost#@veseloff/re-layra-re-steemit-firstpost-20180620t171437053z" - }, - "vickywiz/re-steemit-firstpost-20180111t053714270z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "vickywiz", - "author_payout_value": "0.000 HBD", - "author_reputation": 46.21, - "beneficiaries": [], - "blacklists": [], - "body": "Joined 5 days back and I am grateful, thankful, excited and happy to have found it and be part of this.", - "category": "meta", - "children": 0, - "created": "2018-01-11T05:37:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "1279854", + "voter": "nigmat" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-18T05:37:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180111t053714270z", - "post_id": 24941335, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "13974353753", + "voter": "magicmonk" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-11T05:37:15", - "url": "/meta/@steemit/firstpost#@vickywiz/re-steemit-firstpost-20180111t053714270z" - }, - "watchout2017/re-steemit-firstpost-20170609t092656127z": { - "active_votes": [ - { - "rshares": "153432245", - "voter": "user786" - } - ], - "author": "watchout2017", - "author_payout_value": "0.000 HBD", - "author_reputation": 46.38, - "beneficiaries": [], - "blacklists": [], - "body": "Hello Big Whale,\n\nCan you direct me to a tutorial on how to contribute to Steemit. I have been a member since Dec (had to wait 3 months), but never got involved until I got laid-off, which was 10 days ago. \n\nThanks\n\n@watchout2017\n\nDomi", - "category": "meta", - "children": 0, - "created": "2017-06-09T09:27:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "watchout2017" - ] + { + "rshares": "4968585456", + "voter": "satoshifpv" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 153432245, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-06-16T09:27:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170609t092656127z", - "post_id": 3641278, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "1660613178", + "voter": "naturalista" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-09T09:27:03", - "url": "/meta/@steemit/firstpost#@watchout2017/re-steemit-firstpost-20170609t092656127z" - }, - "whitedolphin/re-steemit-firstpost-20170611t040948165z": { - "active_votes": [ - { - "rshares": "25487046478", - "voter": "whitedolphin" - }, - { - "rshares": "0", - "voter": "ainsleyjo1952" - } - ], - "author": "whitedolphin", - "author_payout_value": "0.076 HBD", - "author_reputation": 59.6, - "beneficiaries": [], - "blacklists": [], - "body": "I am trying to save this mare - please vote me up!! I love Steemit such a great way to share information and talents.\n\nThis mare deserves a home! \n\nhttps://steemit.com/life/@whitedolphin/i-need-your-help-horse-rescue", - "category": "meta", - "children": 0, - "created": "2017-06-11T04:09:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "links": [ - "https://steemit.com/life/@whitedolphin/i-need-your-help-horse-rescue" - ], - "tags": [ - "meta" - ] + { + "rshares": "10847083143", + "voter": "metrox" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 25487046478, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.076, - "payout_at": "2017-06-18T04:09:48", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170611t040948165z", - "post_id": 3738895, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 + { + "rshares": "18340928", + "voter": "bestmalik" }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-11T04:09:48", - "url": "/meta/@steemit/firstpost#@whitedolphin/re-steemit-firstpost-20170611t040948165z" - }, - "wil1liam/re-stackin-re-steemit-firstpost-20180407t182425232z": { - "active_votes": [], - "author": "wil1liam", - "author_payout_value": "0.000 HBD", - "author_reputation": 52.24, - "beneficiaries": [], - "blacklists": [], - "body": "I'm sorry but that comment isn't worth $39.28....", - "category": "meta", - "children": 1, - "created": "2018-04-07T18:24:39", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] + { + "rshares": "59563315", + "voter": "kolyan31" }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "stackin", - "parent_permlink": "re-steemit-firstpost-20170824t235112132z", - "payout": 0.0, - "payout_at": "2018-04-14T18:24:39", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-stackin-re-steemit-firstpost-20180407t182425232z", - "post_id": 42528631, - "promoted": "0.000 HBD", - "replies": [ - "sisygoboom/re-wil1liam-re-stackin-re-steemit-firstpost-20180416t130745058z" - ], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 + { + "rshares": "710989138", + "voter": "romancs" }, - "title": "RE: Welcome to Steem!", - "updated": "2018-04-07T18:24:39", - "url": "/meta/@steemit/firstpost#@wil1liam/re-stackin-re-steemit-firstpost-20180407t182425232z" + { + "rshares": "59366614", + "voter": "luke490" + }, + { + "rshares": "58762473", + "voter": "bro66" + }, + { + "rshares": "201822591", + "voter": "future24" + }, + { + "rshares": "58623688", + "voter": "mythras" + }, + { + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "rshares": "0", + "voter": "matrixdweller" + }, + { + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "rshares": "54761612", + "voter": "edbriv" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "rshares": "52740989", + "voter": "tcstix" + }, + { + "rshares": "49467477", + "voter": "friedwater" + }, + { + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "rshares": "54017869", + "voter": "zelious" + }, + { + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "rshares": "53196086", + "voter": "f1111111" + }, + { + "rshares": "0", + "voter": "anomaly" + }, + { + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "rshares": "0", + "voter": "buckland" + }, + { + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_payout_value": "0.942 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "payout": 1.698, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [ + "admin/firstpost", + "proskynneo/steemit-firstpost-1", + "red/steemit-firstpost-2", + "business/re-steemit-firstpost-20160713t082910980z", + "gopher/re-steemit-firstpost-20160718t195806340z", + "jennamarbles/re-steemit-firstpost-20160719t210752086z", + "kingtylervvs/re-steemit-firstpost-20160720t121101482z", + "kewpiedoll/re-steemit-firstpost-20160720t210201326z", + "gekko/re-steemit-firstpost-20160721t223937736z", + "sictransitgloria/re-steemit-firstpost-20160721t233702742z", + "patrick-g/re-steemit-firstpost-20160722t201007967z", + "kamvreto/re-steemit-firstpost-20160722t225246211z", + "zhuvazhuva/re-steemit-firstpost-20160723t130259286z", + "kamvreto/re-steemit-firstpost-20160725t221949749z", + "lenerdie/re-steemit-firstpost-20160726t035056026z", + "bestmalik/re-steemit-firstpost-20160726t035722561z", + "edbriv/re-steemit-firstpost-20160801t184846033z", + "imarealboy777/re-steemit-firstpost-20160801t232001768z", + "rednetkjh/re-steemit-firstpost-20160804t061605576z", + "jelloducky/re-steemit-firstpost-20160807t215340468z", + "deanliu/re-steemit-firstpost-20160810t083336206z", + "flandude/re-steemit-firstpost-20160811t225325571z", + "ubg/re-steemit-firstpost-20160813t143213453z", + "future24/re-steemit-firstpost-20160818t030224104z", + "rittr/re-steemit-firstpost-20160824t025355199z", + "jack8831/re-steemit-firstpost-20160824t093007335z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 92 + }, + "title": "Welcome to Steem!", + "updated": "2016-03-30T18:30:18", + "url": "/meta/@steemit/firstpost" }, - "withgraham/re-steemit-firstpost-20180103t090821481z": { - "active_votes": [], - "author": "withgraham", - "author_payout_value": "0.000 HBD", - "author_reputation": 33.11, - "beneficiaries": [], - "blacklists": [], - "body": "You're NO 1 Steemit!! I envy you~~\n![\u1109\u1173\u110f\u1173\u1105\u1175\u11ab\u1109\u1163\u11ba 2018-01-03 \u110b\u1169\u1112\u116e 6.06.27.png](https://steemitimages.com/DQmSx6exHc7jEhBYw6Lturg9JicYHodGu9AfzYt6PLvcBre/%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202018-01-03%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%206.06.27.png)", - "category": "meta", - "children": 0, - "created": "2018-01-03T09:08:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "image": [ - "https://steemitimages.com/DQmSx6exHc7jEhBYw6Lturg9JicYHodGu9AfzYt6PLvcBre/%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202018-01-03%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%206.06.27.png" - ], - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-10T09:08:21", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180103t090821481z", - "post_id": 23269737, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-03T09:08:21", - "url": "/meta/@steemit/firstpost#@withgraham/re-steemit-firstpost-20180103t090821481z" + "steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z": { + "active_votes": [ + { + "rshares": "724886327", + "voter": "patrick-g" + } + ], + "author": "steemuwe", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Bittrex is not a user - it's an exchange platform: **https://steemit.com/bittrex/@bittrex-richie/a-little-history-of-bittrex-com-how-it-all-started**\n\nhttps://bittrex.com/", + "category": "meta", + "children": 0, + "created": "2016-07-20T18:36:24", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "links": [ + "https://steemit.com/bittrex/@bittrex-richie/a-little-history-of-bittrex-com-how-it-all-started**" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 724886327, + "parent_author": "gopher", + "parent_permlink": "re-steemit-firstpost-20160718t195806340z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gopher-re-steemit-firstpost-20160720t183548381z", + "post_id": 225799, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T18:36:24", + "url": "/meta/@steemit/firstpost#@steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z" }, - "yasirsohail196/re-steemit-firstpost-20180121t072845412z": { - "active_votes": [ - { - "rshares": "0", - "voter": "rosynesn" - } - ], - "author": "yasirsohail196", - "author_payout_value": "0.000 HBD", - "author_reputation": 45.25, - "beneficiaries": [], - "blacklists": [], - "body": "its an amazing and good platform....good to b here seriously", - "category": "meta", - "children": 0, - "created": "2018-01-21T07:20:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-28T07:20:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20180121t072845412z", - "post_id": 26986287, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2018-01-21T07:20:03", - "url": "/meta/@steemit/firstpost#@yasirsohail196/re-steemit-firstpost-20180121t072845412z" + "ubg/re-steemit-firstpost-20160813t143213453z": { + "active_votes": [ + { + "rshares": "23067571373", + "voter": "ubg" + }, + { + "rshares": "999297062", + "voter": "juurop" + }, + { + "rshares": "823625727", + "voter": "usb" + }, + { + "rshares": "5546862495", + "voter": "tannukas6" + }, + { + "rshares": "694394716", + "voter": "tox" + }, + { + "rshares": "692185541", + "voter": "runridefly" + } + ], + "author": "ubg", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "You have quadruple the liquidity any of the exchanges have. \n## Just make it rain!\nhttp://i.imgur.com/Maj5zM2.gif", + "category": "meta", + "children": 0, + "created": "2016-08-13T14:32:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://i.imgur.com/Maj5zM2.gif" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 31823936914, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160813t143213453z", + "post_id": 782948, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 6 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-13T14:32:18", + "url": "/meta/@steemit/firstpost#@ubg/re-steemit-firstpost-20160813t143213453z" }, "yonuts/re-kingtylervvs-re-steemit-firstpost-20160729t180621248z": { - "active_votes": [], - "author": "yonuts", - "author_payout_value": "0.000 HBD", - "author_reputation": 54.33, - "beneficiaries": [], - "blacklists": [], - "body": "hello world! hello Steemit!", - "category": "meta", - "children": 0, - "created": "2016-07-29T18:06:21", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "kingtylervvs", - "parent_permlink": "re-steemit-firstpost-20160720t121101482z", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-kingtylervvs-re-steemit-firstpost-20160729t180621248z", - "post_id": 339524, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-29T18:06:21", - "url": "/meta/@steemit/firstpost#@yonuts/re-kingtylervvs-re-steemit-firstpost-20160729t180621248z" - }, - "zeji/re-steemit-firstpost-20170630t111416254z": { - "active_votes": [ - { - "rshares": "426923195", - "voter": "chrystaldawn" - } - ], - "author": "zeji", - "author_payout_value": "0.000 HBD", - "author_reputation": 29.08, - "beneficiaries": [], - "blacklists": [], - "body": "Glad to be here", - "category": "meta", - "children": 0, - "created": "2017-06-30T11:14:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 426923195, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-07-07T11:14:18", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170630t111416254z", - "post_id": 5653838, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-06-30T11:14:18", - "url": "/meta/@steemit/firstpost#@zeji/re-steemit-firstpost-20170630t111416254z" + "active_votes": [], + "author": "yonuts", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "hello world! hello Steemit!", + "category": "meta", + "children": 0, + "created": "2016-07-29T18:06:21", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "kingtylervvs", + "parent_permlink": "re-steemit-firstpost-20160720t121101482z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-kingtylervvs-re-steemit-firstpost-20160729t180621248z", + "post_id": 470778, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-29T18:06:21", + "url": "/meta/@steemit/firstpost#@yonuts/re-kingtylervvs-re-steemit-firstpost-20160729t180621248z" }, "zhuvazhuva/re-steemit-firstpost-20160723t130259286z": { - "active_votes": [], - "author": "zhuvazhuva", - "author_payout_value": "0.000 HBD", - "author_reputation": 44.09, - "beneficiaries": [], - "blacklists": [], - "body": "\u041f\u0440\u0438\u0432\u0435\u0442!", - "category": "meta", - "children": 0, - "created": "2016-07-23T13:03:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20160723t130259286z", - "post_id": 214663, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 0 - }, - "title": "RE: Welcome to Steem!", - "updated": "2016-07-23T13:03:00", - "url": "/meta/@steemit/firstpost#@zhuvazhuva/re-steemit-firstpost-20160723t130259286z" - }, - "zia161/re-steemit-firstpost-20171231t163613548z": { - "active_votes": [ - { - "rshares": "538791600", - "voter": "zia161" - } - ], - "author": "zia161", - "author_payout_value": "0.000 HBD", - "author_reputation": 34.4, - "beneficiaries": [], - "blacklists": [], - "body": "@steemit, thanks for creating such a great website.", - "category": "meta", - "children": 0, - "created": "2017-12-31T16:36:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "steemit/0.1", - "tags": [ - "meta" - ], - "users": [ - "steemit" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 538791600, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2018-01-07T16:36:15", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20171231t163613548z", - "post_id": 22835534, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-12-31T16:36:15", - "url": "/meta/@steemit/firstpost#@zia161/re-steemit-firstpost-20171231t163613548z" - }, - "zufrizal/re-steemit-firstpost-20170730t044117656z": { - "active_votes": [ - { - "rshares": "760377970", - "voter": "yasdani786" - }, - { - "rshares": "272754180", - "voter": "bitcointauji" - } - ], - "author": "zufrizal", - "author_payout_value": "0.000 HBD", - "author_reputation": 51.7, - "beneficiaries": [], - "blacklists": [], - "body": "welcome to steem", - "category": "meta", - "children": 0, - "created": "2017-07-30T04:49:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "is_paidout": true, - "json_metadata": { - "app": "busy/1.0.0", - "tags": [ - "meta" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1033132150, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "payout": 0.0, - "payout_at": "2017-08-06T04:49:03", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-steemit-firstpost-20170730t044117656z", - "post_id": 8696275, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "RE: Welcome to Steem!", - "updated": "2017-07-30T04:49:03", - "url": "/meta/@steemit/firstpost#@zufrizal/re-steemit-firstpost-20170730t044117656z" + "active_votes": [], + "author": "zhuvazhuva", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\u041f\u0440\u0438\u0432\u0435\u0442!", + "category": "meta", + "children": 0, + "created": "2016-07-23T13:03:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160723t130259286z", + "post_id": 296193, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-23T13:03:00", + "url": "/meta/@steemit/firstpost#@zhuvazhuva/re-steemit-firstpost-20160723t130259286z" } } \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_payout_stats.pat.json b/hivemind/tavern/bridge_api_patterns/get_payout_stats.pat.json index 473a8cae..7b8f3500 100644 --- a/hivemind/tavern/bridge_api_patterns/get_payout_stats.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_payout_stats.pat.json @@ -1,5 +1,13 @@ { - "blogs": 0.0, - "items": [], - "total": 0.0 + "blogs": 1866809.934, + "items": [ + [ + "@charlieshrem", + "@charlieshrem", + 62150.551, + 142, + null + ] + ], + "total": 1866809.934 } \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_post.pat.json b/hivemind/tavern/bridge_api_patterns/get_post.pat.json index 14f40cef..6164a7d7 100644 --- a/hivemind/tavern/bridge_api_patterns/get_post.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_post.pat.json @@ -1,2308 +1,440 @@ { - "active_votes": [ - { - "rshares": "375241", - "voter": "dantheman" - }, - { - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "rshares": "5100", - "voter": "steemit78" - }, - { - "rshares": "1259167", - "voter": "anonymous" - }, - { - "rshares": "318519", - "voter": "hello" - }, - { - "rshares": "153384", - "voter": "world" - }, - { - "rshares": "-936400", - "voter": "ned" - }, - { - "rshares": "59412", - "voter": "fufubar1" - }, - { - "rshares": "14997", - "voter": "anonymous1" - }, - { - "rshares": "1441", - "voter": "red" - }, - { - "rshares": "551390835500", - "voter": "liondani" - }, - { - "rshares": "82748", - "voter": "roadscape" - }, - { - "rshares": "10772", - "voter": "xeroc" - }, - { - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "rshares": "498863058", - "voter": "joelinux" - }, - { - "rshares": "9590417", - "voter": "piranhax" - }, - { - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "rshares": "425903066", - "voter": "gekko" - }, - { - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "rshares": "422984262", - "voter": "acidyo" - }, - { - "rshares": "47179379651", - "voter": "tosch" - }, - { - "rshares": "7831667988", - "voter": "klye" - }, - { - "rshares": "1019950749", - "voter": "coar" - }, - { - "rshares": "1746058458", - "voter": "murh" - }, - { - "rshares": "0", - "voter": "ashe-oro" - }, - { - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "rshares": "0", - "voter": "hien-tran" - }, - { - "rshares": "0", - "voter": "noganoo" - }, - { - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "rshares": "40624969", - "voter": "ben99" - }, - { - "rshares": "0", - "voter": "tskeene" - }, - { - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "rshares": "0", - "voter": "roelandp" - }, - { - "rshares": "0", - "voter": "stealthtrader" - }, - { - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "rshares": "0", - "voter": "picokernel" - }, - { - "rshares": "0", - "voter": "ausbitbank" - }, - { - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "rshares": "0", - "voter": "sebastien" - }, - { - "rshares": "917398502", - "voter": "decrypt" - }, - { - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "rshares": "1037079223", - "voter": "condra" - }, - { - "rshares": "233032838", - "voter": "jearson" - }, - { - "rshares": "240809500", - "voter": "tritium" - }, - { - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "rshares": "226074637", - "voter": "artjedi" - }, - { - "rshares": "931542394", - "voter": "anduweb" - }, - { - "rshares": "2292983350", - "voter": "inertia" - }, - { - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "rshares": "266262926", - "voter": "desmonid" - }, - { - "rshares": "71498008", - "voter": "madhatting" - }, - { - "rshares": "23726644841", - "voter": "ubg" - }, - { - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "rshares": "131577259", - "voter": "gribgo" - }, - { - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "rshares": "28907874049", - "voter": "orm" - }, - { - "rshares": "528988007", - "voter": "qonq99" - }, - { - "rshares": "129537329", - "voter": "rd7783" - }, - { - "rshares": "615020728", - "voter": "slava" - }, - { - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "rshares": "0", - "voter": "social" - }, - { - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "rshares": "95219365", - "voter": "curator" - }, - { - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "rshares": "0", - "voter": "solos" - }, - { - "rshares": "0", - "voter": "alvintang" - }, - { - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "rshares": "0", - "voter": "blysards" - }, - { - "rshares": "0", - "voter": "nick.kharchenko" - }, - { - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "rshares": "1279854", - "voter": "nigmat" - }, - { - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "rshares": "10847083143", - "voter": "metrox" - }, - { - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "rshares": "710989138", - "voter": "romancs" - }, - { - "rshares": "59366614", - "voter": "luke490" - }, - { - "rshares": "58762473", - "voter": "bro66" - }, - { - "rshares": "201822591", - "voter": "future24" - }, - { - "rshares": "58623688", - "voter": "mythras" - }, - { - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "rshares": "0", - "voter": "matrixdweller" - }, - { - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "rshares": "54761612", - "voter": "edbriv" - }, - { - "rshares": "0", - "voter": "anarchyhasnogods" - }, - { - "rshares": "865125771", - "voter": "rittr" - }, - { - "rshares": "0", - "voter": "tumutanzi" - }, - { - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "rshares": "52740989", - "voter": "tcstix" - }, - { - "rshares": "49467477", - "voter": "friedwater" - }, - { - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "rshares": "0", - "voter": "gbonikz" - }, - { - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "rshares": "0", - "voter": "darkflame" - }, - { - "rshares": "0", - "voter": "sneak" - }, - { - "rshares": "0", - "voter": "jacobcards" - }, - { - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "rshares": "0", - "voter": "shieha" - }, - { - "rshares": "54017869", - "voter": "zelious" - }, - { - "rshares": "0", - "voter": "allyouneedtoknow" - }, - { - "rshares": "0", - "voter": "justyy" - }, - { - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "rshares": "53196086", - "voter": "f1111111" - }, - { - "rshares": "0", - "voter": "anomaly" - }, - { - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "rshares": "0", - "voter": "buckland" - }, - { - "rshares": "0", - "voter": "guest123" - }, - { - "rshares": "0", - "voter": "syahhiran" - }, - { - "rshares": "0", - "voter": "rarcntv" - }, - { - "rshares": "0", - "voter": "nataleeoliver" - }, - { - "rshares": "0", - "voter": "goldmatters" - }, - { - "rshares": "0", - "voter": "gamer00" - }, - { - "rshares": "0", - "voter": "curiesea" - }, - { - "rshares": "0", - "voter": "missmarzipan" - }, - { - "rshares": "0", - "voter": "thejohalfiles" - }, - { - "rshares": "0", - "voter": "steemwart" - }, - { - "rshares": "0", - "voter": "mapesa" - }, - { - "rshares": "0", - "voter": "max-max" - }, - { - "rshares": "0", - "voter": "joshuaatiemo" - }, - { - "rshares": "0", - "voter": "jumaidafajar" - }, - { - "rshares": "0", - "voter": "leolina1" - }, - { - "rshares": "0", - "voter": "rebatesteem" - }, - { - "rshares": "0", - "voter": "aidancloquell" - }, - { - "rshares": "0", - "voter": "rm802" - }, - { - "rshares": "0", - "voter": "krasotka" - }, - { - "rshares": "0", - "voter": "alamyrjunior" - }, - { - "rshares": "0", - "voter": "networker5" - }, - { - "rshares": "0", - "voter": "evdoggformayor" - }, - { - "rshares": "0", - "voter": "askari" - }, - { - "rshares": "0", - "voter": "blockrush" - }, - { - "rshares": "0", - "voter": "barvon" - }, - { - "rshares": "0", - "voter": "fajarsdq" - }, - { - "rshares": "0", - "voter": "juandemarte" - }, - { - "rshares": "0", - "voter": "lazarescu.irinel" - }, - { - "rshares": "0", - "voter": "thedeplorable1" - }, - { - "rshares": "0", - "voter": "kalemandra" - }, - { - "rshares": "0", - "voter": "ades" - }, - { - "rshares": "0", - "voter": "rizkiavonna" - }, - { - "rshares": "0", - "voter": "tohamy7" - }, - { - "rshares": "0", - "voter": "justinashby" - }, - { - "rshares": "0", - "voter": "thereikiforest" - }, - { - "rshares": "0", - "voter": "serendipitie" - }, - { - "rshares": "0", - "voter": "anwarabdullah" - }, - { - "rshares": "0", - "voter": "rocketbeee" - }, - { - "rshares": "0", - "voter": "ackza" - }, - { - "rshares": "0", - "voter": "nilim" - }, - { - "rshares": "0", - "voter": "renatrazumov" - }, - { - "rshares": "0", - "voter": "jelkasmi" - }, - { - "rshares": "0", - "voter": "dimitrya123" - }, - { - "rshares": "0", - "voter": "crawfish37" - }, - { - "rshares": "0", - "voter": "laodr" - }, - { - "rshares": "0", - "voter": "lkisaid" - }, - { - "rshares": "0", - "voter": "mikev" - }, - { - "rshares": "0", - "voter": "hakan0356" - }, - { - "rshares": "0", - "voter": "tasartcraft" - }, - { - "rshares": "0", - "voter": "urmokas" - }, - { - "rshares": "0", - "voter": "michael-fagundes" - }, - { - "rshares": "0", - "voter": "kalamur" - }, - { - "rshares": "0", - "voter": "abhinavsharma" - }, - { - "rshares": "0", - "voter": "contentguy" - }, - { - "rshares": "0", - "voter": "globocop" - }, - { - "rshares": "0", - "voter": "hafizul" - }, - { - "rshares": "0", - "voter": "hothelp1by1" - }, - { - "rshares": "0", - "voter": "vannfrik" - }, - { - "rshares": "0", - "voter": "manuel78" - }, - { - "rshares": "0", - "voter": "brado" - }, - { - "rshares": "0", - "voter": "strateg" - }, - { - "rshares": "0", - "voter": "quinsmacqueen" - }, - { - "rshares": "0", - "voter": "brucebrownftw" - }, - { - "rshares": "0", - "voter": "mrstaf" - }, - { - "rshares": "0", - "voter": "avvah" - }, - { - "rshares": "0", - "voter": "stackin" - }, - { - "rshares": "0", - "voter": "laloelectrix" - }, - { - "rshares": "0", - "voter": "heejaekim" - }, - { - "rshares": "0", - "voter": "thethreehugs" - }, - { - "rshares": "0", - "voter": "otitrader" - }, - { - "rshares": "0", - "voter": "clixmoney" - }, - { - "rshares": "0", - "voter": "tryword" - }, - { - "rshares": "0", - "voter": "dioneaguiar" - }, - { - "rshares": "0", - "voter": "yann.moalic" - }, - { - "rshares": "0", - "voter": "shaunf" - }, - { - "rshares": "0", - "voter": "cleemit" - }, - { - "rshares": "0", - "voter": "deeluvli1" - }, - { - "rshares": "0", - "voter": "noval" - }, - { - "rshares": "0", - "voter": "pixzelplethora" - }, - { - "rshares": "0", - "voter": "smart3dweb" - }, - { - "rshares": "0", - "voter": "joey-cryptoboy" - }, - { - "rshares": "0", - "voter": "mateorite" - }, - { - "rshares": "0", - "voter": "somaflaco" - }, - { - "rshares": "0", - "voter": "enki74" - }, - { - "rshares": "0", - "voter": "jungleebitcoin" - }, - { - "rshares": "0", - "voter": "correctdrop" - }, - { - "rshares": "0", - "voter": "clintjunior" - }, - { - "rshares": "0", - "voter": "tediursa24" - }, - { - "rshares": "0", - "voter": "mxzn" - }, - { - "rshares": "0", - "voter": "hgmsilvergold" - }, - { - "rshares": "0", - "voter": "antares007" - }, - { - "rshares": "0", - "voter": "tridenspoon333" - }, - { - "rshares": "0", - "voter": "vipek1996" - }, - { - "rshares": "0", - "voter": "prima-nia" - }, - { - "rshares": "0", - "voter": "redris" - }, - { - "rshares": "0", - "voter": "savetheanimals" - }, - { - "rshares": "0", - "voter": "tarunmewara" - }, - { - "rshares": "0", - "voter": "overkillcoin" - }, - { - "rshares": "0", - "voter": "tuakanamorgan" - }, - { - "rshares": "0", - "voter": "anacristinasilva" - }, - { - "rshares": "0", - "voter": "filmonaut" - }, - { - "rshares": "0", - "voter": "firstamendment" - }, - { - "rshares": "0", - "voter": "timcrypto" - }, - { - "rshares": "0", - "voter": "cryptotem" - }, - { - "rshares": "0", - "voter": "mikej" - }, - { - "rshares": "0", - "voter": "hwrs" - }, - { - "rshares": "0", - "voter": "sinai770judea" - }, - { - "rshares": "0", - "voter": "tuneralliance" - }, - { - "rshares": "0", - "voter": "zeji" - }, - { - "rshares": "0", - "voter": "ricoalfianda" - }, - { - "rshares": "0", - "voter": "satfit" - }, - { - "rshares": "0", - "voter": "machhour" - }, - { - "rshares": "0", - "voter": "bitgenio" - }, - { - "rshares": "0", - "voter": "ahmedmansi" - }, - { - "rshares": "0", - "voter": "theoccultcorner" - }, - { - "rshares": "0", - "voter": "reseller" - }, - { - "rshares": "0", - "voter": "ainsleyjo1952" - }, - { - "rshares": "0", - "voter": "novi" - }, - { - "rshares": "0", - "voter": "androsform" - }, - { - "rshares": "0", - "voter": "jooyoung" - }, - { - "rshares": "0", - "voter": "dobro88888888" - }, - { - "rshares": "0", - "voter": "ghaaspur" - }, - { - "rshares": "0", - "voter": "xodyd2da" - }, - { - "rshares": "0", - "voter": "trisun" - }, - { - "rshares": "0", - "voter": "tngflx" - }, - { - "rshares": "0", - "voter": "karaban" - }, - { - "rshares": "0", - "voter": "empath" - }, - { - "rshares": "0", - "voter": "pcbildrnoob" - }, - { - "rshares": "0", - "voter": "joecaffeine" - }, - { - "rshares": "0", - "voter": "laolballs" - }, - { - "rshares": "0", - "voter": "braamsteyn7777" - }, - { - "rshares": "0", - "voter": "udibekwe" - }, - { - "rshares": "0", - "voter": "jackolanternbob" - }, - { - "rshares": "0", - "voter": "rondoncr" - }, - { - "rshares": "0", - "voter": "doubledeeyt" - }, - { - "rshares": "0", - "voter": "joshvel" - }, - { - "rshares": "0", - "voter": "lembach3d" - }, - { - "rshares": "0", - "voter": "vulturestkn" - }, - { - "rshares": "0", - "voter": "darknessprincess" - }, - { - "rshares": "0", - "voter": "misrori" - }, - { - "rshares": "0", - "voter": "afrikanprince" - }, - { - "rshares": "0", - "voter": "jjprac" - }, - { - "rshares": "0", - "voter": "ayuwandira" - }, - { - "rshares": "0", - "voter": "ilicoin" - }, - { - "rshares": "0", - "voter": "pkvlogs" - }, - { - "rshares": "0", - "voter": "bitstudio" - }, - { - "rshares": "0", - "voter": "taintedblood" - }, - { - "rshares": "0", - "voter": "epsicktick" - }, - { - "rshares": "0", - "voter": "csggene3" - }, - { - "rshares": "0", - "voter": "tothemoonin2017" - }, - { - "rshares": "0", - "voter": "geek4geek" - }, - { - "rshares": "0", - "voter": "kharrazi" - }, - { - "rshares": "0", - "voter": "zufrizal" - }, - { - "rshares": "0", - "voter": "academix87" - }, - { - "rshares": "0", - "voter": "planetenamek" - }, - { - "rshares": "0", - "voter": "muliaeko" - }, - { - "rshares": "0", - "voter": "boyjack" - }, - { - "rshares": "0", - "voter": "jatniel" - }, - { - "rshares": "0", - "voter": "juanangel40bcn" - }, - { - "rshares": "0", - "voter": "jodywrites" - }, - { - "rshares": "0", - "voter": "permatek" - }, - { - "rshares": "0", - "voter": "cyberspace" - }, - { - "rshares": "0", - "voter": "fareehasheharyar" - }, - { - "rshares": "0", - "voter": "saynie" - }, - { - "rshares": "0", - "voter": "plainoldme" - }, - { - "rshares": "0", - "voter": "razaqbarry" - }, - { - "rshares": "0", - "voter": "antoniokarteli" - }, - { - "rshares": "0", - "voter": "dream.trip" - }, - { - "rshares": "0", - "voter": "reinhardbaust" - }, - { - "rshares": "0", - "voter": "newpioneer" - }, - { - "rshares": "0", - "voter": "melvinbonner" - }, - { - "rshares": "0", - "voter": "zulfahmi2141" - }, - { - "rshares": "0", - "voter": "maninjapan1989" - }, - { - "rshares": "0", - "voter": "andravasko" - }, - { - "rshares": "0", - "voter": "gilma" - }, - { - "rshares": "0", - "voter": "tom74" - }, - { - "rshares": "0", - "voter": "josephfugata" - }, - { - "rshares": "0", - "voter": "bitcointauji" - }, - { - "rshares": "0", - "voter": "gray00" - }, - { - "rshares": "0", - "voter": "divyang101" - }, - { - "rshares": "0", - "voter": "bahagia-arbi" - }, - { - "rshares": "0", - "voter": "bhim" - }, - { - "rshares": "0", - "voter": "bickell" - }, - { - "rshares": "0", - "voter": "tfpostman" - }, - { - "rshares": "0", - "voter": "anujkumar" - }, - { - "rshares": "0", - "voter": "fbslo" - }, - { - "rshares": "0", - "voter": "renijuliani" - }, - { - "rshares": "0", - "voter": "setio" - }, - { - "rshares": "0", - "voter": "mooncryption" - }, - { - "rshares": "0", - "voter": "shintamonica" - }, - { - "rshares": "0", - "voter": "caratzky" - }, - { - "rshares": "0", - "voter": "komrad" - }, - { - "rshares": "0", - "voter": "therivernile" - }, - { - "rshares": "0", - "voter": "deep.gohil" - }, - { - "rshares": "0", - "voter": "thomasduder" - }, - { - "rshares": "0", - "voter": "sensistar" - }, - { - "rshares": "0", - "voter": "abdelone" - }, - { - "rshares": "0", - "voter": "gegec" - }, - { - "rshares": "0", - "voter": "ambmicheal" - }, - { - "rshares": "0", - "voter": "rincewind" - }, - { - "rshares": "0", - "voter": "alishannoor" - }, - { - "rshares": "0", - "voter": "ahhjoeinhk" - }, - { - "rshares": "0", - "voter": "kalhiade" - }, - { - "rshares": "0", - "voter": "faridrizkia" - }, - { - "rshares": "0", - "voter": "teamslovenia" - }, - { - "rshares": "0", - "voter": "xiaoshancun" - }, - { - "rshares": "0", - "voter": "mikewebb274" - }, - { - "rshares": "0", - "voter": "andrath" - }, - { - "rshares": "0", - "voter": "torosan" - }, - { - "rshares": "0", - "voter": "ghayas" - }, - { - "rshares": "0", - "voter": "krevasilis" - }, - { - "rshares": "0", - "voter": "koinbot" - }, - { - "rshares": "0", - "voter": "synergy-now" - }, - { - "rshares": "0", - "voter": "steemblogs" - }, - { - "rshares": "0", - "voter": "tujuhpelita" - }, - { - "rshares": "0", - "voter": "palani" - }, - { - "rshares": "0", - "voter": "as-i-see-it" - }, - { - "rshares": "0", - "voter": "heyeshuang" - }, - { - "rshares": "0", - "voter": "arslan786" - }, - { - "rshares": "0", - "voter": "cgf117" - }, - { - "rshares": "0", - "voter": "amazingtech100" - }, - { - "rshares": "0", - "voter": "dreamm" - }, - { - "rshares": "0", - "voter": "sweetssssj" - }, - { - "rshares": "0", - "voter": "ceikdo" - }, - { - "rshares": "0", - "voter": "sunsquall" - }, - { - "rshares": "0", - "voter": "muhammadilyas93" - }, - { - "rshares": "0", - "voter": "cre47iv3" - }, - { - "rshares": "0", - "voter": "joao-cacador" - }, - { - "rshares": "0", - "voter": "jamsphonna" - }, - { - "rshares": "0", - "voter": "abbak7" - }, - { - "rshares": "0", - "voter": "thelifeofjord" - }, - { - "rshares": "0", - "voter": "utpoldebnath" - }, - { - "rshares": "0", - "voter": "sagorkhan" - }, - { - "rshares": "0", - "voter": "shivpremi" - }, - { - "rshares": "0", - "voter": "shabbirahmad" - }, - { - "rshares": "0", - "voter": "ibeljr" - }, - { - "rshares": "0", - "voter": "umelard" - }, - { - "rshares": "0", - "voter": "stijndehaan" - }, - { - "rshares": "0", - "voter": "iamericmorrison" - }, - { - "rshares": "0", - "voter": "shiningstar" - }, - { - "rshares": "0", - "voter": "steemprojects1" - }, - { - "rshares": "0", - "voter": "steemprojects2" - }, - { - "rshares": "0", - "voter": "stuvi" - }, - { - "rshares": "0", - "voter": "zia161" - }, - { - "rshares": "0", - "voter": "arslanq" - }, - { - "rshares": "0", - "voter": "kevca16" - }, - { - "rshares": "0", - "voter": "mcreg" - }, - { - "rshares": "0", - "voter": "waheebisb" - }, - { - "rshares": "0", - "voter": "rizaokur" - }, - { - "rshares": "0", - "voter": "seanstein" - }, - { - "rshares": "0", - "voter": "piszozo" - }, - { - "rshares": "0", - "voter": "vicmariki" - }, - { - "rshares": "0", - "voter": "contribution" - }, - { - "rshares": "0", - "voter": "oep" - }, - { - "rshares": "0", - "voter": "akshitgrover" - }, - { - "rshares": "0", - "voter": "jackson12" - }, - { - "rshares": "0", - "voter": "dtldesign" - }, - { - "rshares": "0", - "voter": "h4ck3rm1k3st33m" - }, - { - "rshares": "0", - "voter": "smokeasare165" - }, - { - "rshares": "0", - "voter": "tinoschloegl" - }, - { - "rshares": "0", - "voter": "liftu" - }, - { - "rshares": "0", - "voter": "atul8888" - }, - { - "rshares": "0", - "voter": "goroshkodo" - }, - { - "rshares": "0", - "voter": "tarmizislow" - }, - { - "rshares": "0", - "voter": "nurmasyithah" - }, - { - "rshares": "0", - "voter": "ritikagupta" - }, - { - "rshares": "0", - "voter": "anniemohler" - }, - { - "rshares": "0", - "voter": "olaivart" - }, - { - "rshares": "0", - "voter": "thedrewshow" - }, - { - "rshares": "0", - "voter": "alpha27" - }, - { - "rshares": "0", - "voter": "adventuretours" - }, - { - "rshares": "0", - "voter": "advexon" - }, - { - "rshares": "0", - "voter": "cloudconnect" - }, - { - "rshares": "0", - "voter": "ontheverge" - }, - { - "rshares": "0", - "voter": "celsomichida" - }, - { - "rshares": "0", - "voter": "cannan" - }, - { - "rshares": "0", - "voter": "cloudbuster" - }, - { - "rshares": "0", - "voter": "adrienoor" - }, - { - "rshares": "0", - "voter": "hussnain" - }, - { - "rshares": "0", - "voter": "shanloth" - }, - { - "rshares": "0", - "voter": "samirnyaupane" - }, - { - "rshares": "0", - "voter": "slackeramericana" - }, - { - "rshares": "0", - "voter": "thabiggdogg" - }, - { - "rshares": "0", - "voter": "gilnambatac" - }, - { - "rshares": "0", - "voter": "withgraham" - }, - { - "rshares": "0", - "voter": "sephirot" - }, - { - "rshares": "0", - "voter": "coffeeman" - }, - { - "rshares": "0", - "voter": "stefunniy" - }, - { - "rshares": "0", - "voter": "ghanexs" - }, - { - "rshares": "0", - "voter": "razipelangi" - }, - { - "rshares": "0", - "voter": "dreamdiary" - }, - { - "rshares": "0", - "voter": "crypto4euro" - }, - { - "rshares": "0", - "voter": "rtsampa" - }, - { - "rshares": "0", - "voter": "mahi2raj" - }, - { - "rshares": "0", - "voter": "danyflores" - }, - { - "rshares": "0", - "voter": "oraclefrequency" - }, - { - "rshares": "0", - "voter": "kartikohri1712" - }, - { - "rshares": "0", - "voter": "cryptoaltcoin" - }, - { - "rshares": "0", - "voter": "einarscorner" - }, - { - "rshares": "0", - "voter": "dudithedoctor" - }, - { - "rshares": "0", - "voter": "dirapa" - }, - { - "rshares": "0", - "voter": "arfouche" - }, - { - "rshares": "0", - "voter": "kristenbruce" - }, - { - "rshares": "0", - "voter": "okclear" - }, - { - "rshares": "0", - "voter": "mysearchisover" - }, - { - "rshares": "0", - "voter": "dropd" - }, - { - "rshares": "0", - "voter": "rulilesmana" - }, - { - "rshares": "0", - "voter": "cryptomaniac6" - }, - { - "rshares": "0", - "voter": "kim3ra" - }, - { - "rshares": "0", - "voter": "movement19" - }, - { - "rshares": "0", - "voter": "aacr07" - }, - { - "rshares": "0", - "voter": "layra" - }, - { - "rshares": "0", - "voter": "vardhanbtc" - }, - { - "rshares": "0", - "voter": "azeemprime" - }, - { - "rshares": "0", - "voter": "dbnx" - }, - { - "rshares": "0", - "voter": "shredz7" - }, - { - "rshares": "0", - "voter": "bitstreamgains" - }, - { - "rshares": "0", - "voter": "hendrimaca" - }, - { - "rshares": "0", - "voter": "aan01" - }, - { - "rshares": "0", - "voter": "successmindset" - }, - { - "rshares": "0", - "voter": "hatu" - }, - { - "rshares": "0", - "voter": "khabirulhafiz" - }, - { - "rshares": "0", - "voter": "yady" - }, - { - "rshares": "0", - "voter": "samsonjura1" - }, - { - "rshares": "0", - "voter": "ambitiouslife" - }, - { - "rshares": "0", - "voter": "whyse" - }, - { - "rshares": "0", - "voter": "skyflow" - }, - { - "rshares": "0", - "voter": "kimtoma" - }, - { - "rshares": "0", - "voter": "asherunderwood" - }, - { - "rshares": "0", - "voter": "lorden" - }, - { - "rshares": "0", - "voter": "juicyvegandwarf" - }, - { - "rshares": "0", - "voter": "ushan007" - }, - { - "rshares": "0", - "voter": "ihsan6837" - }, - { - "rshares": "0", - "voter": "suryarose" - }, - { - "rshares": "0", - "voter": "sol7142" - }, - { - "rshares": "0", - "voter": "fikrialoy" - }, - { - "rshares": "0", - "voter": "mr-lahey" - }, - { - "rshares": "0", - "voter": "mahsabmirza" - }, - { - "rshares": "0", - "voter": "pwangdu" - }, - { - "rshares": "0", - "voter": "salda" - }, - { - "rshares": "0", - "voter": "muzzlealem" - }, - { - "rshares": "0", - "voter": "pakjos" - }, - { - "rshares": "0", - "voter": "mhdfadhal" - }, - { - "rshares": "0", - "voter": "dannykastner" - }, - { - "rshares": "0", - "voter": "ibul11" - }, - { - "rshares": "0", - "voter": "nigtroy" - }, - { - "rshares": "0", - "voter": "uripsurya" - }, - { - "rshares": "0", - "voter": "jazman.zhens" - }, - { - "rshares": "0", - "voter": "intervote" - }, - { - "rshares": "0", - "voter": "mahend" - }, - { - "rshares": "0", - "voter": "anandasungkar" - }, - { - "rshares": "0", - "voter": "homeless.global" - }, - { - "rshares": "0", - "voter": "intansteemityes" - }, - { - "rshares": "0", - "voter": "perminus-gaita" - }, - { - "rshares": "0", - "voter": "phost" - }, - { - "rshares": "0", - "voter": "debart" - }, - { - "rshares": "0", - "voter": "blurrydude" - }, - { - "rshares": "0", - "voter": "tsnaks" - }, - { - "rshares": "0", - "voter": "legendchew" - }, - { - "rshares": "0", - "voter": "cryptonegocios" - }, - { - "rshares": "0", - "voter": "alexcozzy" - }, - { - "rshares": "0", - "voter": "joe.ster" - }, - { - "rshares": "0", - "voter": "pandu13" - }, - { - "rshares": "0", - "voter": "sasakhan" - }, - { - "rshares": "0", - "voter": "faisalyus" - }, - { - "rshares": "0", - "voter": "sawyn" - }, - { - "rshares": "0", - "voter": "diegocedenno" - }, - { - "rshares": "0", - "voter": "calebotamus" - }, - { - "rshares": "0", - "voter": "lsanneh78128" - }, - { - "rshares": "0", - "voter": "nazaruddin885" - }, - { - "rshares": "0", - "voter": "chaseburnett" - }, - { - "rshares": "0", - "voter": "sisirhasan" - }, - { - "rshares": "0", - "voter": "donyanyo" - }, - { - "rshares": "0", - "voter": "oregontravel" - }, - { - "rshares": "0", - "voter": "luegenbaron" - }, - { - "rshares": "0", - "voter": "edkrassenstein" - }, - { - "rshares": "0", - "voter": "munawirawin" - }, - { - "rshares": "0", - "voter": "salgetra" - }, - { - "rshares": "0", - "voter": "zaxan" - }, - { - "rshares": "0", - "voter": "rollings" - }, - { - "rshares": "0", - "voter": "kyle07" - }, - { - "rshares": "0", - "voter": "pchanger" - }, - { - "rshares": "0", - "voter": "uncleboy" - }, - { - "rshares": "0", - "voter": "alfhi" - }, - { - "rshares": "0", - "voter": "htetmyathtut" - }, - { - "rshares": "0", - "voter": "trisolaran" - }, - { - "rshares": "0", - "voter": "arafs" - }, - { - "rshares": "0", - "voter": "abysoyjoy" - }, - { - "rshares": "0", - "voter": "stylo419" - }, - { - "rshares": "0", - "voter": "cookntell" - }, - { - "rshares": "0", - "voter": "rakkarage" - }, - { - "rshares": "0", - "voter": "grasozauru" - }, - { - "rshares": "0", - "voter": "norabx" - }, - { - "rshares": "0", - "voter": "joyvancouver" - }, - { - "rshares": "0", - "voter": "antchatz" - }, - { - "rshares": "0", - "voter": "tutchpa" - }, - { - "rshares": "0", - "voter": "cosmophobia" - }, - { - "rshares": "0", - "voter": "rajaji" - }, - { - "rshares": "0", - "voter": "liqquid" - }, - { - "rshares": "0", - "voter": "aceh-post" - }, - { - "rshares": "0", - "voter": "dannanares" - }, - { - "rshares": "0", - "voter": "husana" - }, - { - "rshares": "0", - "voter": "davidmichael" - }, - { - "rshares": "0", - "voter": "wprpn" - }, - { - "rshares": "0", - "voter": "datuparulas17" - }, - { - "rshares": "0", - "voter": "trie" - }, - { - "rshares": "0", - "voter": "chirstonawba" - }, - { - "rshares": "0", - "voter": "sulaiman86" - }, - { - "rshares": "0", - "voter": "electronicsworld" - }, - { - "rshares": "0", - "voter": "engrravijain" - }, - { - "rshares": "0", - "voter": "alfredolopez1980" - }, - { - "rshares": "0", - "voter": "gustavomonraz" - }, - { - "rshares": "0", - "voter": "tahoorsaleem" - }, - { - "rshares": "0", - "voter": "starfinger13" - }, - { - "rshares": "0", - "voter": "conscalisthenics" - }, - { - "rshares": "0", - "voter": "syd44723" - }, - { - "rshares": "0", - "voter": "sutter" - }, - { - "rshares": "0", - "voter": "samsonite18654" - }, - { - "rshares": "0", - "voter": "iqra.naz" - }, - { - "rshares": "0", - "voter": "drezz" - }, - { - "rshares": "0", - "voter": "cutelace" - }, - { - "rshares": "0", - "voter": "chirstonawba5" - }, - { - "rshares": "0", - "voter": "devkapoor423" - }, - { - "rshares": "0", - "voter": "blanchy" - }, - { - "rshares": "0", - "voter": "rakeshban357" - }, - { - "rshares": "0", - "voter": "douglasjames" - }, - { - "rshares": "0", - "voter": "michaelabbas" - }, - { - "rshares": "0", - "voter": "gonewithwind" - }, - { - "rshares": "0", - "voter": "snow.owl" - }, - { - "rshares": "0", - "voter": "tonthatthienvu" - }, - { - "rshares": "0", - "voter": "strangeworldnews" - }, - { - "rshares": "0", - "voter": "dogra" - }, - { - "rshares": "0", - "voter": "umairx97" - }, - { - "rshares": "0", - "voter": "coolpeopleifb" - }, - { - "rshares": "0", - "voter": "gabu01" - }, - { - "rshares": "0", - "voter": "magicalbot" - }, - { - "rshares": "0", - "voter": "f21steem" - }, - { - "rshares": "0", - "voter": "hoobit" - }, - { - "rshares": "0", - "voter": "ivancraigcaine" - }, - { - "rshares": "0", - "voter": "kranko" - }, - { - "rshares": "0", - "voter": "successinwork" - }, - { - "rshares": "0", - "voter": "abfelix96" - }, - { - "rshares": "0", - "voter": "maldonadog" - }, - { - "rshares": "0", - "voter": "drakeler" - }, - { - "rshares": "0", - "voter": "cyrex88" - }, - { - "rshares": "0", - "voter": "rikyu" - }, - { - "rshares": "0", - "voter": "krimimimi" - }, - { - "rshares": "0", - "voter": "johannav" - } - ], - "author": "steemit", - "author_payout_value": "0.942 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "category": "meta", - "children": 430, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "is_paidout": true, - "json_metadata": {}, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "payout": 1.698, - "payout_at": "2016-08-24T19:59:42", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 92 - }, - "title": "Welcome to Steem!", - "updated": "2016-03-30T18:30:18", - "url": "/meta/@steemit/firstpost" + "active_votes": [ + { + "rshares": "375241", + "voter": "dantheman" + }, + { + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "rshares": "5100", + "voter": "steemit78" + }, + { + "rshares": "1259167", + "voter": "anonymous" + }, + { + "rshares": "318519", + "voter": "hello" + }, + { + "rshares": "153384", + "voter": "world" + }, + { + "rshares": "-936400", + "voter": "ned" + }, + { + "rshares": "59412", + "voter": "fufubar1" + }, + { + "rshares": "14997", + "voter": "anonymous1" + }, + { + "rshares": "1441", + "voter": "red" + }, + { + "rshares": "551390835500", + "voter": "liondani" + }, + { + "rshares": "82748", + "voter": "roadscape" + }, + { + "rshares": "10772", + "voter": "xeroc" + }, + { + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "rshares": "498863058", + "voter": "joelinux" + }, + { + "rshares": "9590417", + "voter": "piranhax" + }, + { + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "rshares": "422984262", + "voter": "acidyo" + }, + { + "rshares": "47179379651", + "voter": "tosch" + }, + { + "rshares": "7831667988", + "voter": "klye" + }, + { + "rshares": "1019950749", + "voter": "coar" + }, + { + "rshares": "1746058458", + "voter": "murh" + }, + { + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "rshares": "0", + "voter": "hien-tran" + }, + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "40624969", + "voter": "ben99" + }, + { + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "rshares": "917398502", + "voter": "decrypt" + }, + { + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "rshares": "1037079223", + "voter": "condra" + }, + { + "rshares": "233032838", + "voter": "jearson" + }, + { + "rshares": "240809500", + "voter": "tritium" + }, + { + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "rshares": "226074637", + "voter": "artjedi" + }, + { + "rshares": "931542394", + "voter": "anduweb" + }, + { + "rshares": "2292983350", + "voter": "inertia" + }, + { + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "rshares": "266262926", + "voter": "desmonid" + }, + { + "rshares": "71498008", + "voter": "madhatting" + }, + { + "rshares": "23726644841", + "voter": "ubg" + }, + { + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "rshares": "131577259", + "voter": "gribgo" + }, + { + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "rshares": "28907874049", + "voter": "orm" + }, + { + "rshares": "528988007", + "voter": "qonq99" + }, + { + "rshares": "129537329", + "voter": "rd7783" + }, + { + "rshares": "615020728", + "voter": "slava" + }, + { + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "rshares": "95219365", + "voter": "curator" + }, + { + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "rshares": "0", + "voter": "solos" + }, + { + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "rshares": "0", + "voter": "blysards" + }, + { + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "rshares": "1279854", + "voter": "nigmat" + }, + { + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "rshares": "10847083143", + "voter": "metrox" + }, + { + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "rshares": "710989138", + "voter": "romancs" + }, + { + "rshares": "59366614", + "voter": "luke490" + }, + { + "rshares": "58762473", + "voter": "bro66" + }, + { + "rshares": "201822591", + "voter": "future24" + }, + { + "rshares": "58623688", + "voter": "mythras" + }, + { + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "rshares": "0", + "voter": "matrixdweller" + }, + { + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "rshares": "54761612", + "voter": "edbriv" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "rshares": "52740989", + "voter": "tcstix" + }, + { + "rshares": "49467477", + "voter": "friedwater" + }, + { + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "rshares": "54017869", + "voter": "zelious" + }, + { + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "rshares": "53196086", + "voter": "f1111111" + }, + { + "rshares": "0", + "voter": "anomaly" + }, + { + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "rshares": "0", + "voter": "buckland" + }, + { + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_payout_value": "0.942 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "payout": 1.698, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 92 + }, + "title": "Welcome to Steem!", + "updated": "2016-03-30T18:30:18", + "url": "/meta/@steemit/firstpost" } \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_profile.pat.json b/hivemind/tavern/bridge_api_patterns/get_profile.pat.json index 3369f77e..c3d9688c 100644 --- a/hivemind/tavern/bridge_api_patterns/get_profile.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_profile.pat.json @@ -1,25 +1,25 @@ { - "active": "1970-01-01T00:00:00", - "blacklists": [], - "created": "2016-03-24T17:00:21", - "id": 30, - "metadata": { - "profile": { - "about": null, - "cover_image": "", - "location": null, - "name": null, - "profile_image": "", - "website": null - } - }, - "name": "steemit", - "post_count": 0, - "reputation": 25.0, - "stats": { - "followers": 175, - "following": 0, - "rank": 0, - "sp": 0 + "active": "1970-01-01T00:00:00", + "blacklists": [], + "created": "2016-03-24T17:00:21", + "id": 29, + "metadata": { + "profile": { + "about": null, + "cover_image": "", + "location": null, + "name": null, + "profile_image": "", + "website": null } -} \ No newline at end of file + }, + "name": "steemit", + "post_count": 0, + "reputation": 25.0, + "stats": { + "followers": 175, + "following": 0, + "rank": 0, + "sp": 0 + } +} diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json index 74ee98d5..9b2214d4 100644 --- a/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json @@ -1,22584 +1,23932 @@ [ { - "active_votes": [ - { - "rshares": "193009637111191", - "voter": "blocktrades" - }, - { - "rshares": "56069292887", - "voter": "tombstone" - }, - { - "rshares": "21605350939", - "voter": "fractalnode" - }, - { - "rshares": "666953739323", - "voter": "ash" - }, - { - "rshares": "1276210261252", - "voter": "kevinwong" - }, - { - "rshares": "481512251850", - "voter": "mark-waser" - }, - { - "rshares": "1622497427616", - "voter": "gerber" - }, - { - "rshares": "1171553668726", - "voter": "good-karma" - }, - { - "rshares": "1779343392392", - "voter": "ezzy" - }, - { - "rshares": "5118263876", - "voter": "mrwang" - }, - { - "rshares": "3328741627810", - "voter": "deanliu" - }, - { - "rshares": "2118104964321", - "voter": "exyle" - }, - { - "rshares": "5039540187", - "voter": "sharker" - }, - { - "rshares": "558972425066", - "voter": "bowess" - }, - { - "rshares": "5352166148", - "voter": "arconite" - }, - { - "rshares": "4029965092", - "voter": "kibela" - }, - { - "rshares": "47452391111", - "voter": "laoyao" - }, - { - "rshares": "2249044383", - "voter": "somebody" - }, - { - "rshares": "166528627149", - "voter": "midnightoil" - }, - { - "rshares": "538751958", - "voter": "alinalazareva" - }, - { - "rshares": "942160855368", - "voter": "xiaohui" - }, - { - "rshares": "1055610741", - "voter": "koko" - }, - { - "rshares": "9154574997991", - "voter": "jphamer1" - }, - { - "rshares": "3685198350565", - "voter": "joele" - }, - { - "rshares": "4763434713037", - "voter": "oflyhigh" - }, - { - "rshares": "30158287686", - "voter": "fooblic" - }, - { - "rshares": "393215579259", - "voter": "borran" - }, - { - "rshares": "16734987097", - "voter": "yulan" - }, - { - "rshares": "9388331393", - "voter": "anech512" - }, - { - "rshares": "1239477457259", - "voter": "helene" - }, - { - "rshares": "87439667908", - "voter": "ethansteem" - }, - { - "rshares": "446543873515", - "voter": "netaterra" - }, - { - "rshares": "706597710479", - "voter": "themonetaryfew" - }, - { - "rshares": "132259281513", - "voter": "foxkoit" - }, - { - "rshares": "156185814442", - "voter": "uwelang" - }, - { - "rshares": "451831548435", - "voter": "digital-wisdom" - }, - { - "rshares": "1884963824", - "voter": "ethical-ai" - }, - { - "rshares": "100605559026", - "voter": "titusfrost" - }, - { - "rshares": "22993585306", - "voter": "jwaser" - }, - { - "rshares": "54644463687", - "voter": "phusionphil" - }, - { - "rshares": "110997221689", - "voter": "petrvl" - }, - { - "rshares": "14008786170", - "voter": "bwaser" - }, - { - "rshares": "3284023084541", - "voter": "gringalicious" - }, - { - "rshares": "3540558885", - "voter": "funnyman" - }, - { - "rshares": "1450779279", - "voter": "ellepdub" - }, - { - "rshares": "148914210786", - "voter": "herpetologyguy" - }, - { - "rshares": "18031253297", - "voter": "freshfund" - }, - { - "rshares": "27590795643", - "voter": "morgan.waser" - }, - { - "rshares": "9931355795", - "voter": "whoib" - }, - { - "rshares": "82332409850", - "voter": "lloyddavis" - }, - { - "rshares": "3498615789", - "voter": "handyman" - }, - { - "rshares": "1960279701", - "voter": "strong-ai" - }, - { - "rshares": "2531825516", - "voter": "syahhiran" - }, - { - "rshares": "274317277642", - "voter": "busy.pay" - }, - { - "rshares": "209883853082", - "voter": "jaybird" - }, - { - "rshares": "1364194745632", - "voter": "redes" - }, - { - "rshares": "3459165105", - "voter": "sward" - }, - { - "rshares": "3276258730", - "voter": "devilwsy" - }, - { - "rshares": "3279460452", - "voter": "janiceting" - }, - { - "rshares": "346090769568", - "voter": "busy.org" - }, - { - "rshares": "5779121603964", - "voter": "esteemapp" - }, - { - "rshares": "909481001", - "voter": "technoprogressiv" - }, - { - "rshares": "1860957272", - "voter": "mow" - }, - { - "rshares": "89710010671", - "voter": "ixindamix" - }, - { - "rshares": "8158824405", - "voter": "cardboard" - }, - { - "rshares": "55444137179", - "voter": "askari" - }, - { - "rshares": "74491071947", - "voter": "blackbunny" - }, - { - "rshares": "63578075355", - "voter": "deadspace" - }, - { - "rshares": "7143151370", - "voter": "automaton" - }, - { - "rshares": "595939703994", - "voter": "distantsignal" - }, - { - "rshares": "82548314021", - "voter": "lingfei" - }, - { - "rshares": "3329156826", - "voter": "radiv" - }, - { - "rshares": "18760582724", - "voter": "culturearise369" - }, - { - "rshares": "463898717", - "voter": "yyyy" - }, - { - "rshares": "1732535326", - "voter": "kanedizzle08" - }, - { - "rshares": "35087062517", - "voter": "eirik" - }, - { - "rshares": "139794646566", - "voter": "louisthomas" - }, - { - "rshares": "808597671", - "voter": "dapu" - }, - { - "rshares": "115960579671", - "voter": "melinda010100" - }, - { - "rshares": "83764279946", - "voter": "dune69" - }, - { - "rshares": "1503542321764", - "voter": "smasssh" - }, - { - "rshares": "1814494036", - "voter": "mrstaf" - }, - { - "rshares": "5448400852", - "voter": "kennyroy" - }, - { - "rshares": "268688737518", - "voter": "drag33" - }, - { - "rshares": "11326887288", - "voter": "mys" - }, - { - "rshares": "85647753816", - "voter": "fullofhope" - }, - { - "rshares": "4478686977058", - "voter": "nrg" - }, - { - "rshares": "3181436475", - "voter": "varunpinto" - }, - { - "rshares": "20236098004", - "voter": "theywillkillyou" - }, - { - "rshares": "10146356690", - "voter": "wishmaiden" - }, - { - "rshares": "251004142711", - "voter": "exec" - }, - { - "rshares": "858184907", - "voter": "eval" - }, - { - "rshares": "594252643", - "voter": "taitux" - }, - { - "rshares": "19133275644", - "voter": "mdosev" - }, - { - "rshares": "18757584330", - "voter": "belahejna" - }, - { - "rshares": "129106580582", - "voter": "maxer27" - }, - { - "rshares": "12072985228", - "voter": "johnlue" - }, - { - "rshares": "4373167293", - "voter": "whd" - }, - { - "rshares": "3492556560454", - "voter": "netuoso" - }, - { - "rshares": "4820052556", - "voter": "roxane" - }, - { - "rshares": "6187724549", - "voter": "d-pend" - }, - { - "rshares": "4339875374883", - "voter": "gunthertopp" - }, - { - "rshares": "2159337333", - "voter": "britcoins" - }, - { - "rshares": "46892332215", - "voter": "khoon" - }, - { - "rshares": "3769802094", - "voter": "maskur2840" - }, - { - "rshares": "78502655409", - "voter": "goldkey" - }, - { - "rshares": "1594610366", - "voter": "rafalski" - }, - { - "rshares": "152002793097", - "voter": "drorion" - }, - { - "rshares": "47482243606", - "voter": "face2face" - }, - { - "rshares": "154640630958", - "voter": "hope-on-fire" - }, - { - "rshares": "888942596", - "voter": "nicniezgrublem" - }, - { - "rshares": "8256184113", - "voter": "shitsignals" - }, - { - "rshares": "2184970835", - "voter": "attajuttjj" - }, - { - "rshares": "8019244727", - "voter": "owner99" - }, - { - "rshares": "847204738462", - "voter": "stayoutoftherz" - }, - { - "rshares": "287654859316", - "voter": "sanjeevm" - }, - { - "rshares": "714927673", - "voter": "teukumuhas" - }, - { - "rshares": "1301268936243", - "voter": "steemvote" - }, - { - "rshares": "264656016240", - "voter": "investingpennies" - }, - { - "rshares": "27407649915", - "voter": "pocketrocket" - }, - { - "rshares": "1437579861", - "voter": "steemik" - }, - { - "rshares": "23827858217", - "voter": "azirgraff" - }, - { - "rshares": "2955770171", - "voter": "leyla5" - }, - { - "rshares": "75103137023", - "voter": "horpey" - }, - { - "rshares": "131520923086", - "voter": "shanibeer" - }, - { - "rshares": "18355579068", - "voter": "dunsky" - }, - { - "rshares": "392753034710", - "voter": "noboxes" - }, - { - "rshares": "111196000864", - "voter": "felander" - }, - { - "rshares": "23889822446", - "voter": "santigs" - }, - { - "rshares": "877658368", - "voter": "ekkah" - }, - { - "rshares": "3052494944522", - "voter": "stoodkev" - }, - { - "rshares": "49951634419", - "voter": "pele23" - }, - { - "rshares": "1604303976", - "voter": "jaalig" - }, - { - "rshares": "8988972982", - "voter": "kimzwarch" - }, - { - "rshares": "939085665", - "voter": "saltiberra" - }, - { - "rshares": "667544733", - "voter": "nurhayati" - }, - { - "rshares": "7065703400", - "voter": "fbslo" - }, - { - "rshares": "685500125", - "voter": "azizpase" - }, - { - "rshares": "50174861371", - "voter": "accelerator" - }, - { - "rshares": "3091647364", - "voter": "justinparke" - }, - { - "rshares": "9534138905", - "voter": "apasia.tech" - }, - { - "rshares": "10598562760", - "voter": "yogacoach" - }, - { - "rshares": "59581008821", - "voter": "rosatravels" - }, - { - "rshares": "62018790859", - "voter": "cotarelo" - }, - { - "rshares": "24045032598", - "voter": "deathwing" - }, - { - "rshares": "658064146", - "voter": "steembet.asia" - }, - { - "rshares": "1779748815", - "voter": "acehnature" - }, - { - "rshares": "52542345975", - "voter": "littleboy" - }, - { - "rshares": "8594291059", - "voter": "shadflyfilms" - }, - { - "rshares": "37653897065", - "voter": "daisyphotography" - }, - { - "rshares": "498192955657", - "voter": "gank" - }, - { - "rshares": "23672495435", - "voter": "macmaniac77" - }, - { - "rshares": "967254332", - "voter": "enolife" - }, - { - "rshares": "919184321", - "voter": "ipolatjeh1988" - }, - { - "rshares": "766150744", - "voter": "liverpool-fan" - }, - { - "rshares": "1816653804", - "voter": "kimchi-king" - }, - { - "rshares": "1545165605", - "voter": "feelx" - }, - { - "rshares": "84898127133", - "voter": "caladan" - }, - { - "rshares": "2535582667", - "voter": "cryptotradingfr" - }, - { - "rshares": "15915000669", - "voter": "joseph1956" - }, - { - "rshares": "10874751559", - "voter": "tradingideas" - }, - { - "rshares": "363051654", - "voter": "blockbrothers" - }, - { - "rshares": "4436916780", - "voter": "g10a" - }, - { - "rshares": "548006419553", - "voter": "emrebeyler" - }, - { - "rshares": "1738667771", - "voter": "awesome-gadgets" - }, - { - "rshares": "35419612367", - "voter": "itchyfeetdonica" - }, - { - "rshares": "9072469561", - "voter": "funtraveller" - }, - { - "rshares": "90160505588", - "voter": "lyon89" - }, - { - "rshares": "1245998476", - "voter": "andisantos" - }, - { - "rshares": "20055259096", - "voter": "spiritabsolute" - }, - { - "rshares": "19410721914", - "voter": "mamaloves" - }, - { - "rshares": "1786769041", - "voter": "blinks" - }, - { - "rshares": "2501533253", - "voter": "godlovermel25" - }, - { - "rshares": "5951920722", - "voter": "tomatom" - }, - { - "rshares": "6678825426", - "voter": "fourfourfun" - }, - { - "rshares": "4633774260", - "voter": "candyboy" - }, - { - "rshares": "1059751632", - "voter": "jewel-lover" - }, - { - "rshares": "25668238195", - "voter": "gabrielatravels" - }, - { - "rshares": "36162290981", - "voter": "alexanderfluke" - }, - { - "rshares": "150282905899", - "voter": "mmmmkkkk311" - }, - { - "rshares": "4555798793987", - "voter": "znnuksfe" - }, - { - "rshares": "592437729463", - "voter": "nealmcspadden" - }, - { - "rshares": "1995336675", - "voter": "everything-4you" - }, - { - "rshares": "362308484939", - "voter": "purefood" - }, - { - "rshares": "730934261", - "voter": "abandi" - }, - { - "rshares": "3707537053", - "voter": "aakom" - }, - { - "rshares": "30672796554", - "voter": "patinya103" - }, - { - "rshares": "39734777929", - "voter": "warnas" - }, - { - "rshares": "1113742734", - "voter": "naylinn" - }, - { - "rshares": "6786107814", - "voter": "marc-allaria" - }, - { - "rshares": "2258567209", - "voter": "basristeemit" - }, - { - "rshares": "536869290", - "voter": "cfminer" - }, - { - "rshares": "42070208063", - "voter": "trincowski" - }, - { - "rshares": "9743883781", - "voter": "best-strategy" - }, - { - "rshares": "1012714193224", - "voter": "chronocrypto" - }, - { - "rshares": "821464571", - "voter": "rachmaddarmawan" - }, - { - "rshares": "10292345006", - "voter": "yadah04" - }, - { - "rshares": "776838500", - "voter": "pelephotography" - }, - { - "rshares": "2214266870", - "voter": "unconditionalove" - }, - { - "rshares": "47236316127", - "voter": "cadawg" - }, - { - "rshares": "891734566", - "voter": "gavinatorial" - }, - { - "rshares": "1817728814", - "voter": "minerspost" - }, - { - "rshares": "3272152652", - "voter": "felixgarciap" - }, - { - "rshares": "22298663517", - "voter": "photohunt" - }, - { - "rshares": "724817338", - "voter": "photohunter1" - }, - { - "rshares": "1109387587", - "voter": "photohunter4" - }, - { - "rshares": "9976150135", - "voter": "pkocjan" - }, - { - "rshares": "9149543412", - "voter": "dasc" - }, - { - "rshares": "49596966858", - "voter": "cst90" - }, - { - "rshares": "57328644148", - "voter": "edgargonzalez" - }, - { - "rshares": "31133689674", - "voter": "thomasthewolf" - }, - { - "rshares": "516741973623", - "voter": "backinblackdevil" - }, - { - "rshares": "8271756768", - "voter": "frassman" - }, - { - "rshares": "13294744944", - "voter": "ambitiouslife" - }, - { - "rshares": "42734486091", - "voter": "goldenproject" - }, - { - "rshares": "1479573307", - "voter": "beleg" - }, - { - "rshares": "2572255355", - "voter": "bdlatif" - }, - { - "rshares": "86296450963", - "voter": "bestboom" - }, - { - "rshares": "11297496934", - "voter": "goldvault" - }, - { - "rshares": "5358119768", - "voter": "jan23com" - }, - { - "rshares": "1029110644910", - "voter": "jkramer" - }, - { - "rshares": "22766162181", - "voter": "radard" - }, - { - "rshares": "4842541028", - "voter": "wolfhart" - }, - { - "rshares": "23029438823", - "voter": "m2nnari" - }, - { - "rshares": "1687795703", - "voter": "talhasch" - }, - { - "rshares": "92016757690", - "voter": "freddio" - }, - { - "rshares": "1080110783", - "voter": "abdullahj" - }, - { - "rshares": "3018851272", - "voter": "memepress" - }, - { - "rshares": "3326475885", - "voter": "choco11oreo11" - }, - { - "rshares": "5528788125", - "voter": "michellpiala" - }, - { - "rshares": "2346137359", - "voter": "abdurrahman7" - }, - { - "rshares": "72319547487", - "voter": "good-darma" - }, - { - "rshares": "27210893193", - "voter": "tsnaks" - }, - { - "rshares": "49517173595", - "voter": "petertag" - }, - { - "rshares": "1999436926", - "voter": "gbg" - }, - { - "rshares": "153843825405", - "voter": "promobot" - }, - { - "rshares": "6431073866", - "voter": "glodniwiedzy" - }, - { - "rshares": "246272630804", - "voter": "silveringots" - }, - { - "rshares": "888318118", - "voter": "jpchabry" - }, - { - "rshares": "28584046684", - "voter": "rozku" - }, - { - "rshares": "4426077512", - "voter": "celinavisaez" - }, - { - "rshares": "31571016120", - "voter": "marcoteixeira" - }, - { - "rshares": "596070479", - "voter": "sayago" - }, - { - "rshares": "7506453039", - "voter": "davidesimoncini" - }, - { - "rshares": "68397002912", - "voter": "competeapp" - }, - { - "rshares": "13966434939", - "voter": "akdx" - }, - { - "rshares": "567875873", - "voter": "angatt" - }, - { - "rshares": "145477021574", - "voter": "steem-tube" - }, - { - "rshares": "12508870298", - "voter": "sherrycato" - }, - { - "rshares": "40164534947", - "voter": "xiguang" - }, - { - "rshares": "2146919279", - "voter": "nfaith" - }, - { - "rshares": "4119132684", - "voter": "dipoabasch" - }, - { - "rshares": "181650116285", - "voter": "digital.mine" - }, - { - "rshares": "13238359223", - "voter": "swisswitness" - }, - { - "rshares": "0", - "voter": "putehs" - }, - { - "rshares": "16847510924", - "voter": "maquemali" - }, - { - "rshares": "41494771634", - "voter": "annephilbrick" - }, - { - "rshares": "1400775973", - "voter": "gallerani" - }, - { - "rshares": "12273359214", - "voter": "yestermorrow" - }, - { - "rshares": "42047256639", - "voter": "thehive" - }, - { - "rshares": "1098702813", - "voter": "ekafao" - }, - { - "rshares": "770859573", - "voter": "arrixion" - }, - { - "rshares": "7372839883", - "voter": "minnowspeed" - }, - { - "rshares": "5039399214", - "voter": "littleshadow" - }, - { - "rshares": "280694901857", - "voter": "dlike" - }, - { - "rshares": "2152696151", - "voter": "triptolemus" - }, - { - "rshares": "680740581", - "voter": "lover-steem" - }, - { - "rshares": "5911410017", - "voter": "gorbisan" - }, - { - "rshares": "1696251587", - "voter": "joseph6232" - }, - { - "rshares": "3055084755", - "voter": "emaillisahere" - }, - { - "rshares": "603965845", - "voter": "buzzbee" - }, - { - "rshares": "2008502345", - "voter": "mysia" - }, - { - "rshares": "303022488638", - "voter": "engrave" - }, - { - "rshares": "1573679385", - "voter": "sunit" - }, - { - "rshares": "971775653", - "voter": "chike4545" - }, - { - "rshares": "3815560667", - "voter": "caoimhin" - }, - { - "rshares": "35259813741", - "voter": "a-bot" - }, - { - "rshares": "9222805885", - "voter": "bobby.madagascar" - }, - { - "rshares": "1383726638", - "voter": "djtrucker" - }, - { - "rshares": "1593977", - "voter": "laissez-faire" - }, - { - "rshares": "654456242", - "voter": "steemituplife" - }, - { - "rshares": "126908861657", - "voter": "agromeror" - }, - { - "rshares": "40478249709", - "voter": "marshalmugi" - }, - { - "rshares": "1613349984", - "voter": "podg3" - }, - { - "rshares": "12391364343", - "voter": "silvervault" - }, - { - "rshares": "4802394095", - "voter": "cryptycoon" - }, - { - "rshares": "4676647181", - "voter": "misstaken" - }, - { - "rshares": "784527454", - "voter": "imammudarifqi" - }, - { - "rshares": "3906824113", - "voter": "jackofcrows" - }, - { - "rshares": "691758819", - "voter": "malricinferno" - }, - { - "rshares": "728176287", - "voter": "zintarmortalis" - }, - { - "rshares": "820495800", - "voter": "natur-pur" - }, - { - "rshares": "2742052658", - "voter": "ldp" - }, - { - "rshares": "34687499201", - "voter": "steemitcuration" - }, - { - "rshares": "940899580", - "voter": "esteemapp.rus" - }, - { - "rshares": "1807820275", - "voter": "thrasher666" - }, - { - "rshares": "650365263", - "voter": "tebarsuara" - }, - { - "rshares": "15572125235", - "voter": "barbarabezina" - }, - { - "rshares": "515219915", - "voter": "everyoung" - }, - { - "rshares": "657002711", - "voter": "jensopinion" - }, - { - "rshares": "277921443910", - "voter": "forecasteem" - }, - { - "rshares": "247392085", - "voter": "gomdory" - }, - { - "rshares": "2811579687", - "voter": "xeroxnet69" - }, - { - "rshares": "129156552840", - "voter": "followjohngalt" - }, - { - "rshares": "1825178091", - "voter": "carbodexkim" - }, - { - "rshares": "1422798111", - "voter": "daisybuzz" - }, - { - "rshares": "1862157979", - "voter": "jussbren" - }, - { - "rshares": "-121753598", - "voter": "dein-problem" - }, - { - "rshares": "2289937210", - "voter": "xoxoone9" - }, - { - "rshares": "1061020225", - "voter": "smonia" - }, - { - "rshares": "596317907", - "voter": "starrouge" - }, - { - "rshares": "4883969794", - "voter": "unit101" - }, - { - "rshares": "7759893735", - "voter": "littlegurl747" - }, - { - "rshares": "499430313358", - "voter": "wherein" - }, - { - "rshares": "1767907761", - "voter": "martinstomisin" - }, - { - "rshares": "1284836355", - "voter": "smon-fan" - }, - { - "rshares": "733710623", - "voter": "seekingalpha" - }, - { - "rshares": "959418114", - "voter": "cryptoninja.guru" - }, - { - "rshares": "686955242", - "voter": "tr777" - }, - { - "rshares": "567084914", - "voter": "sm-jewel" - }, - { - "rshares": "540524700", - "voter": "tr77" - }, - { - "rshares": "570960237", - "voter": "smoner" - }, - { - "rshares": "1687132196", - "voter": "flyingbolt" - }, - { - "rshares": "1366877123", - "voter": "determine" - }, - { - "rshares": "797754932", - "voter": "smonian" - }, - { - "rshares": "225997539042", - "voter": "altooq" - }, - { - "rshares": "176186032010", - "voter": "cnstm" - }, - { - "rshares": "4547689189", - "voter": "permaculturedude" - }, - { - "rshares": "3880061711", - "voter": "likuang007" - }, - { - "rshares": "16380729892", - "voter": "smon-joa" - }, - { - "rshares": "551477852", - "voter": "jjangjjanggirl" - }, - { - "rshares": "573359502", - "voter": "lianjingmedia" - }, - { - "rshares": "700789108", - "voter": "steemitmonsters" - }, - { - "rshares": "22008529579", - "voter": "curationvoter" - }, - { - "rshares": "962492869", - "voter": "realgoodcontent" - }, - { - "rshares": "2080281883", - "voter": "peter-bot" - }, - { - "rshares": "813898830", - "voter": "kshahrck" - }, - { - "rshares": "558856939", - "voter": "smonbear" - }, - { - "rshares": "1002180766", - "voter": "denizcakmak" - }, - { - "rshares": "1640031643", - "voter": "hungryharish" - }, - { - "rshares": "782218834", - "voter": "wallet-kabil" - }, - { - "rshares": "347592386152", - "voter": "apix" - }, - { - "rshares": "33808745309", - "voter": "pedrobrito2004" - }, - { - "rshares": "534031256", - "voter": "epic4chris" - }, - { - "rshares": "39974108384", - "voter": "pfdm" - }, - { - "rshares": "4207260147", - "voter": "steem-fund" - }, - { - "rshares": "23461248582", - "voter": "maryincryptoland" - }, - { - "rshares": "17104578278", - "voter": "scarletreaper" - }, - { - "rshares": "683801106", - "voter": "izhmash" - }, - { - "rshares": "601055782", - "voter": "sevensixtwo" - }, - { - "rshares": "623726270", - "voter": "bastogne" - }, - { - "rshares": "11269277510", - "voter": "herbncrypto" - }, - { - "rshares": "614837583", - "voter": "thirdarmy" - }, - { - "rshares": "12632610762", - "voter": "helgalubevi" - }, - { - "rshares": "684126344", - "voter": "plebtv" - }, - { - "rshares": "5680645388", - "voter": "gulf41" - }, - { - "rshares": "77722963503", - "voter": "pixaroma" - }, - { - "rshares": "2628364407", - "voter": "sm-silva" - }, - { - "rshares": "595111870", - "voter": "ssc-token" - }, - { - "rshares": "9789668745", - "voter": "steementertainer" - }, - { - "rshares": "16619354362", - "voter": "bitsharesorg" - }, - { - "rshares": "17552028138324", - "voter": "likwid" - }, - { - "rshares": "3770971085", - "voter": "steemvpn" - }, - { - "rshares": "155466648", - "voter": "tradingideas2" - }, - { - "rshares": "543828252", - "voter": "iktisat" - }, - { - "rshares": "24708289468", - "voter": "tggr" - }, - { - "rshares": "596475939", - "voter": "firefuture" - }, - { - "rshares": "2185385615", - "voter": "steemindian" - }, - { - "rshares": "28365917873", - "voter": "c21c" - }, - { - "rshares": "1353974007", - "voter": "anthos" - }, - { - "rshares": "2115705772", - "voter": "strongwoman" - }, - { - "rshares": "9916495331", - "voter": "milu-the-dog" - }, - { - "rshares": "15131075772", - "voter": "yeswecan" - }, - { - "rshares": "2757936173", - "voter": "lrekt01" - }, - { - "rshares": "8216861542", - "voter": "triplea.bot" - }, - { - "rshares": "596184110671", - "voter": "steem.leo" - }, - { - "rshares": "7304192083", - "voter": "reggaesteem" - }, - { - "rshares": "0", - "voter": "tradingideas.spt" - }, - { - "rshares": "2221022753", - "voter": "nichemarket" - }, - { - "rshares": "971442623", - "voter": "voodooranger" - }, - { - "rshares": "1270432153", - "voter": "online-24-7" - }, - { - "rshares": "466308875183", - "voter": "votebetting" - }, - { - "rshares": "2154177722", - "voter": "scotauto" - }, - { - "rshares": "2435944017", - "voter": "hyborian-strain" - }, - { - "rshares": "18976869341", - "voter": "freddio.sport" - }, - { - "rshares": "852379768", - "voter": "zaku-pal" - }, - { - "rshares": "846049715", - "voter": "zaku-leo" - }, - { - "rshares": "38545847565", - "voter": "finex" - }, - { - "rshares": "129062088825", - "voter": "asteroids" - }, - { - "rshares": "217539343", - "voter": "tina-tina" - }, - { - "rshares": "328941215", - "voter": "happiness19" - }, - { - "rshares": "3917462", - "voter": "gdhaetae" - }, - { - "rshares": "4112921544", - "voter": "one.life" - }, - { - "rshares": "27025993528", - "voter": "acta" - }, - { - "rshares": "16917600185", - "voter": "the-table" - }, - { - "rshares": "4065307099", - "voter": "cardtrader" - }, - { - "rshares": "20589086279", - "voter": "maxuvd" - }, - { - "rshares": "1588889977", - "voter": "dappcoder" - }, - { - "rshares": "1756161064", - "voter": "thehouse" - }, - { - "rshares": "841215155", - "voter": "dnflsms" - }, - { - "rshares": "529086024", - "voter": "jessy22" - }, - { - "rshares": "1072930953", - "voter": "monstervoter" - }, - { - "rshares": "124533161244", - "voter": "silverquest" - }, - { - "rshares": "1426709110", - "voter": "therealyme" - }, - { - "rshares": "1400864663", - "voter": "blocktvnews" - }, - { - "rshares": "196405492", - "voter": "keep-keep" - }, - { - "rshares": "237297441244", - "voter": "huaren.news" - }, - { - "rshares": "3098434019", - "voter": "goodreader" - }, - { - "rshares": "241782063", - "voter": "gerbo" - }, - { - "rshares": "8030483101", - "voter": "honeychip" - }, - { - "rshares": "625352351", - "voter": "artmusiclife" - }, - { - "rshares": "6606462356", - "voter": "kryptoformator" - }, - { - "rshares": "843156100", - "voter": "hatta.jahm" - }, - { - "rshares": "141944852599", - "voter": "max.curation" - }, - { - "rshares": "50001887892", - "voter": "crypto.income" - }, - { - "rshares": "1142475545", - "voter": "steempower-001" - }, - { - "rshares": "2350370287", - "voter": "artyudy" - }, - { - "rshares": "661290273", - "voter": "rehan.blog" - }, - { - "rshares": "232508432", - "voter": "aceh1001art" - }, - { - "rshares": "5805700400", - "voter": "curationstudio" - }, - { - "rshares": "4907134921", - "voter": "gmlrecordz" - }, - { - "rshares": "902462615", - "voter": "keepit2" - }, - { - "rshares": "594969454", - "voter": "reghunter" - }, - { - "rshares": "10710347795", - "voter": "simply2koool" - }, - { - "rshares": "7532719424", - "voter": "ribary" - }, - { - "rshares": "3024674057", - "voter": "dollarbills" - }, - { - "rshares": "1502816415", - "voter": "coin-doubler" - }, - { - "rshares": "722795121", - "voter": "onestop" - }, - { - "rshares": "4348165719", - "voter": "bilpcoinbpc" - }, - { - "rshares": "912198532", - "voter": "der-fahrlehrer" - }, - { - "rshares": "135361972074", - "voter": "mice-k" - }, - { - "rshares": "345074201", - "voter": "bela29" - }, - { - "rshares": "10724421638", - "voter": "staryao" - }, - { - "rshares": "1486564794", - "voter": "creative1234" - }, - { - "rshares": "11464390972", - "voter": "curamax" - }, - { - "rshares": "1068686239", - "voter": "drew0" - }, - { - "rshares": "760085908", - "voter": "mehmetfix" - }, - { - "rshares": "1614682082", - "voter": "tommys.shop" - }, - { - "rshares": "0", - "voter": "jhonkeneddy" - }, - { - "rshares": "4678737800", - "voter": "steemcityrewards" - }, - { - "rshares": "6021820084", - "voter": "dpend.active" - }, - { - "rshares": "2098500193", - "voter": "artdescry" - }, - { - "rshares": "544482783", - "voter": "hivewaves" - }, - { - "rshares": "1913640085", - "voter": "hivefinex" - }, - { - "rshares": "1440586404", - "voter": "folklure" - }, - { - "rshares": "317965995442", - "voter": "reggaejahm" - }, - { - "rshares": "1186356320294", - "voter": "softworld" - }, - { - "rshares": "60950329750", - "voter": "polish.hive" - }, - { - "rshares": "839966519", - "voter": "timhorton" - }, - { - "rshares": "11121157294", - "voter": "velinov86" - }, - { - "rshares": "560802596370", - "voter": "dcityrewards" - }, - { - "rshares": "1406969602", - "voter": "paulman" - }, - { - "rshares": "1598151188", - "voter": "uafappdevelopers" - }, - { - "rshares": "1194449229", - "voter": "sketching" - }, - { - "rshares": "556728223", - "voter": "ninnu" - }, - { - "rshares": "1227446810352", - "voter": "ecency" - }, - { - "rshares": "69741164732", - "voter": "executive-board" - }, - { - "rshares": "0", - "voter": "mandynmargie" - }, - { - "rshares": "568500087386", - "voter": "hivecur" - }, - { - "rshares": "3454176528", - "voter": "lucianav" - }, - { - "rshares": "8280424588", - "voter": "artistparthoroy" - }, - { - "rshares": "2989073596", - "voter": "patronpass" - }, - { - "rshares": "2546014791", - "voter": "wristwatch12" - }, - { - "rshares": "919397385", - "voter": "plusvault" - }, - { - "rshares": "1146977346", - "voter": "hivebuilderteam" - }, - { - "rshares": "360659120", - "voter": "sarbarzfit" - }, - { - "rshares": "0", - "voter": "marsal100" - }, - { - "rshares": "364917506", - "voter": "rahmatulyaa24" - }, - { - "rshares": "274117657", - "voter": "ridhaulhaq2699" - }, - { - "rshares": "0", - "voter": "graythor" - }, - { - "rshares": "1115430276", - "voter": "hivecur2" - }, - { - "rshares": "0", - "voter": "veseq" - }, - { - "rshares": "0", - "voter": "afrozhive" - }, - { - "rshares": "0", - "voter": "milon21" - } + "active_votes": [ + { + "rshares": "28370463371572", + "voter": "dantheman" + }, + { + "rshares": "31307487536364", + "voter": "smooth" + }, + { + "rshares": "231809639013", + "voter": "anonymous" + }, + { + "rshares": "2321962618319", + "voter": "diaphanous" + }, + { + "rshares": "1469558503443", + "voter": "commedy" + }, + { + "rshares": "4287714457313", + "voter": "riverhead" + }, + { + "rshares": "1856006073992", + "voter": "badassmother" + }, + { + "rshares": "1271804694676", + "voter": "rossco99" + }, + { + "rshares": "2206068741954", + "voter": "wang" + }, + { + "rshares": "1950753758979", + "voter": "xeroc" + }, + { + "rshares": "1534707047296", + "voter": "joseph" + }, + { + "rshares": "452874558937", + "voter": "recursive3" + }, + { + "rshares": "620996029765", + "voter": "masteryoda" + }, + { + "rshares": "3120582597678", + "voter": "recursive" + }, + { + "rshares": "440845842", + "voter": "lee2" + }, + { + "rshares": "26932201065", + "voter": "lee3" + }, + { + "rshares": "8677295375", + "voter": "lee4" + }, + { + "rshares": "22149018521", + "voter": "lee5" + }, + { + "rshares": "5942299654212", + "voter": "smooth.witness" + }, + { + "rshares": "8927291120", + "voter": "idol" + }, + { + "rshares": "4941942978", + "voter": "sakr" + }, + { + "rshares": "57625926227", + "voter": "unosuke" + }, + { + "rshares": "1536592488", + "voter": "jocelyn" + }, + { + "rshares": "14818263059", + "voter": "gregory-f" + }, + { + "rshares": "154334962550", + "voter": "edgeland" + }, + { + "rshares": "8836453529", + "voter": "gregory60" + }, + { + "rshares": "29596510808", + "voter": "full-measure" + }, + { + "rshares": "104880949618", + "voter": "eeks" + }, + { + "rshares": "24694558802", + "voter": "fkn" + }, + { + "rshares": "468281676", + "voter": "paco-steem" + }, + { + "rshares": "5641697991", + "voter": "spaninv" + }, + { + "rshares": "32459455171", + "voter": "elishagh1" + }, + { + "rshares": "40391466193", + "voter": "himalayanguru" + }, + { + "rshares": "584291107228", + "voter": "nanzo-scoop" + }, + { + "rshares": "178471627922", + "voter": "steve-walschot" + }, + { + "rshares": "9857825141", + "voter": "kefkius" + }, + { + "rshares": "177420844935", + "voter": "mummyimperfect" + }, + { + "rshares": "106635691300", + "voter": "asch" + }, + { + "rshares": "616864092786", + "voter": "kevinwong" + }, + { + "rshares": "1061266533", + "voter": "murh" + }, + { + "rshares": "6230798580", + "voter": "cryptofunk" + }, + { + "rshares": "579494558", + "voter": "kodi" + }, + { + "rshares": "2003359924", + "voter": "error" + }, + { + "rshares": "11584833708", + "voter": "andu" + }, + { + "rshares": "40553122820", + "voter": "ranko-k" + }, + { + "rshares": "962089879337", + "voter": "cyber" + }, + { + "rshares": "58188888655", + "voter": "theshell" + }, + { + "rshares": "49581045086", + "voter": "ak2020" + }, + { + "rshares": "3848697023555", + "voter": "satoshifund" + }, + { + "rshares": "402139444", + "voter": "applecrisp" + }, + { + "rshares": "36407027386", + "voter": "altoz" + }, + { + "rshares": "365370465", + "voter": "stiletto" + }, + { + "rshares": "55577467736", + "voter": "juanmiguelsalas" + }, + { + "rshares": "219283354085", + "voter": "will-zewe" + }, + { + "rshares": "87300558689", + "voter": "herzmeister" + }, + { + "rshares": "275016906945", + "voter": "trogdor" + }, + { + "rshares": "5287820211", + "voter": "tee-em" + }, + { + "rshares": "31346001722", + "voter": "michaelx" + }, + { + "rshares": "179395106552", + "voter": "thedashguy" + }, + { + "rshares": "4682885200", + "voter": "usefree" + }, + { + "rshares": "189626835254", + "voter": "mexbit" + }, + { + "rshares": "5821262190", + "voter": "mark-waser" + }, + { + "rshares": "118356217412", + "voter": "geoffrey" + }, + { + "rshares": "208362110567", + "voter": "kimziv" + }, + { + "rshares": "46266779182", + "voter": "honeythief" + }, + { + "rshares": "75334808165", + "voter": "emily-cook" + }, + { + "rshares": "2187607792", + "voter": "superfreek" + }, + { + "rshares": "484636799", + "voter": "mrhankeh" + }, + { + "rshares": "17908924002", + "voter": "grey580" + }, + { + "rshares": "275327756", + "voter": "ladyclair" + }, + { + "rshares": "68449861599", + "voter": "bacchist" + }, + { + "rshares": "60315479782", + "voter": "good-karma" + }, + { + "rshares": "3350419346", + "voter": "orly" + }, + { + "rshares": "5271030976", + "voter": "riscadox" + }, + { + "rshares": "24867575018", + "voter": "katyakov" + }, + { + "rshares": "373878481829", + "voter": "fabio" + }, + { + "rshares": "25057642057", + "voter": "tcfxyz" + }, + { + "rshares": "6939984054", + "voter": "futurefood" + }, + { + "rshares": "734082781", + "voter": "rxhector" + }, + { + "rshares": "118094280271", + "voter": "furion" + }, + { + "rshares": "105911917280", + "voter": "cdubendo" + }, + { + "rshares": "578386960", + "voter": "barbara2" + }, + { + "rshares": "642869652", + "voter": "ch0c0latechip" + }, + { + "rshares": "594982040", + "voter": "doge4lyf" + }, + { + "rshares": "12668641443", + "voter": "gord0b" + }, + { + "rshares": "2632460141", + "voter": "steem1653" + }, + { + "rshares": "136322030", + "voter": "cynetyc" + }, + { + "rshares": "25221166135", + "voter": "steemit-life" + }, + { + "rshares": "80777327", + "voter": "snowden" + }, + { + "rshares": "5357326058", + "voter": "thegoodguy" + }, + { + "rshares": "14168336425", + "voter": "aaseb" + }, + { + "rshares": "4209533734", + "voter": "karen13" + }, + { + "rshares": "6017253623", + "voter": "cryptosi" + }, + { + "rshares": "251367062418", + "voter": "nabilov" + }, + { + "rshares": "8751103405", + "voter": "noodhoog" + }, + { + "rshares": "46859060143", + "voter": "milestone" + }, + { + "rshares": "33739229218", + "voter": "creemej" + }, + { + "rshares": "87223247", + "voter": "wildchild" + }, + { + "rshares": "15070803886", + "voter": "nippel66" + }, + { + "rshares": "24417687626", + "voter": "phenom" + }, + { + "rshares": "4545051592", + "voter": "poseidon" + }, + { + "rshares": "7946812357", + "voter": "smolalit" + }, + { + "rshares": "362515598946", + "voter": "calaber24p" + }, + { + "rshares": "147403710", + "voter": "jdenismusic" + }, + { + "rshares": "3365797955", + "voter": "simon.braki.love" + }, + { + "rshares": "82782405213", + "voter": "thylbom" + }, + { + "rshares": "3709588060", + "voter": "bitcoiner" + }, + { + "rshares": "32544157928", + "voter": "deanliu" + }, + { + "rshares": "4996306142", + "voter": "dmitriybtc" + }, + { + "rshares": "204618396015", + "voter": "jl777" + }, + { + "rshares": "30989614870", + "voter": "zaebars" + }, + { + "rshares": "20026634941", + "voter": "positive" + }, + { + "rshares": "1809205777", + "voter": "yarly" + }, + { + "rshares": "272641013", + "voter": "yarly2" + }, + { + "rshares": "273048922", + "voter": "yarly3" + }, + { + "rshares": "157733805", + "voter": "yarly4" + }, + { + "rshares": "158624349", + "voter": "yarly5" + }, + { + "rshares": "90416287", + "voter": "yarly7" + }, + { + "rshares": "799615699", + "voter": "raymonjohnstone" + }, + { + "rshares": "17267341753", + "voter": "proto" + }, + { + "rshares": "34309455805", + "voter": "sisterholics" + }, + { + "rshares": "437620869", + "voter": "yarly10" + }, + { + "rshares": "234191245", + "voter": "yarly11" + }, + { + "rshares": "8781903824", + "voter": "royalmacro" + }, + { + "rshares": "81879061", + "voter": "yarly12" + }, + { + "rshares": "674282213", + "voter": "fnait" + }, + { + "rshares": "599033376", + "voter": "keepcalmand" + }, + { + "rshares": "146224042", + "voter": "steemster1" + }, + { + "rshares": "3022447454", + "voter": "dmilash" + }, + { + "rshares": "2002851358", + "voter": "andreynoch" + }, + { + "rshares": "13359143286", + "voter": "mahekg" + }, + { + "rshares": "50579277183", + "voter": "gomeravibz" + }, + { + "rshares": "8734185109", + "voter": "taker" + }, + { + "rshares": "12064042634", + "voter": "nekromarinist" + }, + { + "rshares": "57873464", + "voter": "sharon" + }, + { + "rshares": "10419645487", + "voter": "dumar022" + }, + { + "rshares": "2157207095", + "voter": "merej99" + }, + { + "rshares": "58971492", + "voter": "lillianjones" + }, + { + "rshares": "1213299204686", + "voter": "laonie" + }, + { + "rshares": "157521707420", + "voter": "twinner" + }, + { + "rshares": "23391691291", + "voter": "rawnetics" + }, + { + "rshares": "22969142749", + "voter": "laonie1" + }, + { + "rshares": "23485900426", + "voter": "laonie2" + }, + { + "rshares": "23494195522", + "voter": "laonie3" + }, + { + "rshares": "24562882668", + "voter": "laoyao" + }, + { + "rshares": "42639811498", + "voter": "myfirst" + }, + { + "rshares": "246279861104", + "voter": "somebody" + }, + { + "rshares": "9450505564", + "voter": "flysaga" + }, + { + "rshares": "5831615639", + "voter": "brendio" + }, + { + "rshares": "2918578376", + "voter": "gmurph" + }, + { + "rshares": "3690744042", + "voter": "chris.roy" + }, + { + "rshares": "54405024034", + "voter": "midnightoil" + }, + { + "rshares": "4190391188", + "voter": "ullikume" + }, + { + "rshares": "23489872560", + "voter": "laonie4" + }, + { + "rshares": "23487615266", + "voter": "laonie5" + }, + { + "rshares": "23484637540", + "voter": "laonie6" + }, + { + "rshares": "23480497322", + "voter": "laonie7" + }, + { + "rshares": "3323984357", + "voter": "kurtbeil" + }, + { + "rshares": "23477049244", + "voter": "laonie8" + }, + { + "rshares": "23474334690", + "voter": "laonie9" + }, + { + "rshares": "136078574669", + "voter": "xiaohui" + }, + { + "rshares": "21112646631", + "voter": "jphamer1" + }, + { + "rshares": "88206053", + "voter": "bigsambucca" + }, + { + "rshares": "6791986484", + "voter": "elfkitchen" + }, + { + "rshares": "99935909954", + "voter": "joele" + }, + { + "rshares": "5855738054", + "voter": "oflyhigh" + }, + { + "rshares": "15860159560", + "voter": "randyclemens" + }, + { + "rshares": "2343183825", + "voter": "paynode" + }, + { + "rshares": "4366149629", + "voter": "xiaokongcom" + }, + { + "rshares": "59437351", + "voter": "msjennifer" + }, + { + "rshares": "54654502", + "voter": "ciao" + }, + { + "rshares": "62928860", + "voter": "session101" + }, + { + "rshares": "52985539", + "voter": "steemo" + }, + { + "rshares": "8801395051", + "voter": "xianjun" + }, + { + "rshares": "52848854", + "voter": "steema" + }, + { + "rshares": "72192938", + "voter": "sijoittaja" + }, + { + "rshares": "69662169", + "voter": "confucius" + }, + { + "rshares": "72135954", + "voter": "stevescriber" + }, + { + "rshares": "51247757", + "voter": "loli" + }, + { + "rshares": "91519215715", + "voter": "miacats" + }, + { + "rshares": "52419023", + "voter": "nano2nd" + }, + { + "rshares": "53661976", + "voter": "jarvis" + }, + { + "rshares": "591109646", + "voter": "microluck" + }, + { + "rshares": "74131936", + "voter": "razberrijam" + }, + { + "rshares": "53106127", + "voter": "fortuner" + }, + { + "rshares": "2022702929", + "voter": "chinadaily" + }, + { + "rshares": "88481667", + "voter": "pompe72" + }, + { + "rshares": "802011524540", + "voter": "dollarvigilante" + }, + { + "rshares": "101627835", + "voter": "pollina" + }, + { + "rshares": "50698107", + "voter": "johnbyrd" + }, + { + "rshares": "50682252", + "voter": "thomasaustin" + }, + { + "rshares": "50680459", + "voter": "thermor" + }, + { + "rshares": "50691211", + "voter": "ficholl" + }, + { + "rshares": "51852278", + "voter": "widell" + }, + { + "rshares": "3635091595", + "voter": "movievertigo" + }, + { + "rshares": "50311250", + "voter": "revelbrooks" + }, + { + "rshares": "23468154723", + "voter": "laonie10" + }, + { + "rshares": "2982691190", + "voter": "netaterra" + }, + { + "rshares": "21980957828", + "voter": "andrewawerdna" + }, + { + "rshares": "5712937692", + "voter": "trev" + }, + { + "rshares": "1874035641", + "voter": "erroneous-logic" + }, + { + "rshares": "302425178", + "voter": "sergeypotapov" + }, + { + "rshares": "65868377", + "voter": "lensessions" + }, + { + "rshares": "59126308", + "voter": "wmhammer" + }, + { + "rshares": "45978108133", + "voter": "emancipatedhuman" + }, + { + "rshares": "15340272043", + "voter": "pressfortruth" + }, + { + "rshares": "6654726855", + "voter": "hilarski" + }, + { + "rshares": "8773942171", + "voter": "craigwilliamz" + }, + { + "rshares": "8856106682", + "voter": "onetree" + }, + { + "rshares": "101945845", + "voter": "slorunner" + }, + { + "rshares": "2029369552", + "voter": "shadowspub" + }, + { + "rshares": "32463005362", + "voter": "daut44" + }, + { + "rshares": "50416427", + "voter": "curpose" + }, + { + "rshares": "59693834", + "voter": "suprepachyderm" + }, + { + "rshares": "1615332211", + "voter": "themonetaryfew" + }, + { + "rshares": "989363278", + "voter": "dajohns1420" + }, + { + "rshares": "2196907450", + "voter": "runridefly" + }, + { + "rshares": "3915304227", + "voter": "newandold" + }, + { + "rshares": "57856784", + "voter": "jamesyk" + }, + { + "rshares": "112983030208", + "voter": "shenanigator" + }, + { + "rshares": "58197677", + "voter": "jcomeauictx" + }, + { + "rshares": "12901147949", + "voter": "quinneaker" + }, + { + "rshares": "752032432", + "voter": "freeinthought" + }, + { + "rshares": "1783693666", + "voter": "funkywanderer" + }, + { + "rshares": "4900461398", + "voter": "richardcrill" + }, + { + "rshares": "22621459650", + "voter": "laonie11" + }, + { + "rshares": "2205784762", + "voter": "jeremyfromwi" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "4662965424", + "voter": "nadin3" + }, + { + "rshares": "588228551", + "voter": "profanarky" + }, + { + "rshares": "3411072843", + "voter": "xanoxt" + }, + { + "rshares": "1625414479", + "voter": "davidjkelley" + }, + { + "rshares": "50593879", + "voter": "crion" + }, + { + "rshares": "174778016", + "voter": "greatness" + }, + { + "rshares": "50271139", + "voter": "hitherise" + }, + { + "rshares": "50262756", + "voter": "wiss" + }, + { + "rshares": "56782516", + "voter": "sebastianbauer" + }, + { + "rshares": "55667728", + "voter": "fizzgig" + }, + { + "rshares": "26571803569", + "voter": "sponge-bob" + }, + { + "rshares": "4044716723", + "voter": "l0k1" + }, + { + "rshares": "15232622426", + "voter": "digital-wisdom" + }, + { + "rshares": "3710973264", + "voter": "ethical-ai" + }, + { + "rshares": "51033798", + "voter": "stroully" + }, + { + "rshares": "3752641890", + "voter": "titusfrost" + }, + { + "rshares": "6682880996", + "voter": "jwaser" + }, + { + "rshares": "50712038", + "voter": "thadm" + }, + { + "rshares": "2353724275", + "voter": "zettar" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "17357974240", + "voter": "bluehorseshoe" + }, + { + "rshares": "53413720", + "voter": "lighter" + }, + { + "rshares": "50370757", + "voter": "yorsens" + }, + { + "rshares": "263853222", + "voter": "maarnio" + }, + { + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "rshares": "2617343597", + "voter": "bwaser" + }, + { + "rshares": "50840303", + "voter": "sofa" + }, + { + "rshares": "323483227", + "voter": "panther" + }, + { + "rshares": "53871683", + "voter": "doggnostic" + }, + { + "rshares": "659649765", + "voter": "ct-gurus" + }, + { + "rshares": "53593366", + "voter": "jenny-talls" + }, + { + "rshares": "411677045923", + "voter": "charlieshrem" + }, + { + "rshares": "61827447459", + "voter": "tracemayer" + }, + { + "rshares": "54239080444", + "voter": "brains" + }, + { + "rshares": "50450987", + "voter": "waldemar-kuhn" + }, + { + "rshares": "1415009195", + "voter": "steemafon" + }, + { + "rshares": "1352324852", + "voter": "bitcoinparadise" + }, + { + "rshares": "5753524189", + "voter": "chick1" + }, + { + "rshares": "3605995609", + "voter": "rigaronib" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "50516543", + "voter": "typingagent" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "62515317", + "voter": "freebornangel" + }, + { + "rshares": "271440423", + "voter": "anomaly" + }, + { + "rshares": "2401297947", + "voter": "ellepdub" + }, + { + "rshares": "63405661", + "voter": "inarix03" + }, + { + "rshares": "98577200", + "voter": "ola1" + }, + { + "rshares": "51615652", + "voter": "rayzzz" + }, + { + "rshares": "12115690216", + "voter": "herpetologyguy" + }, + { + "rshares": "4712300251", + "voter": "morgan.waser" + }, + { + "rshares": "157644916", + "voter": "iggy" + }, + { + "rshares": "51636819", + "voter": "mbizryu0" + }, + { + "rshares": "51631638", + "voter": "archij" + }, + { + "rshares": "51530815", + "voter": "movie7283" + }, + { + "rshares": "51527606", + "voter": "ppcompp2" + }, + { + "rshares": "51520427", + "voter": "jj1968" + }, + { + "rshares": "51516489", + "voter": "cineger" + }, + { + "rshares": "51497383", + "voter": "sksduddk" + }, + { + "rshares": "51490214", + "voter": "jjc0719" + }, + { + "rshares": "51235131", + "voter": "glassheart" + }, + { + "rshares": "51215236", + "voter": "deli" + }, + { + "rshares": "1233685675", + "voter": "anns" + }, + { + "rshares": "50798322", + "voter": "breeze" + }, + { + "rshares": "50677982", + "voter": "sjytoy" + }, + { + "rshares": "50676799", + "voter": "shy2675" + }, + { + "rshares": "50675747", + "voter": "suance1009" + }, + { + "rshares": "50674176", + "voter": "hasqmd" + }, + { + "rshares": "50673722", + "voter": "fischer67" + }, + { + "rshares": "50672116", + "voter": "elya1" + }, + { + "rshares": "50632828", + "voter": "xclamp45" + }, + { + "rshares": "50618471", + "voter": "likeagame1" + }, + { + "rshares": "50616898", + "voter": "apple4006" + }, + { + "rshares": "50615195", + "voter": "bigbell61" + }, + { + "rshares": "50612850", + "voter": "dolpo777" + }, + { + "rshares": "50611931", + "voter": "dongperi" + }, + { + "rshares": "50610620", + "voter": "lion2byung" + }, + { + "rshares": "50610002", + "voter": "cwj1973" + }, + { + "rshares": "50609329", + "voter": "psj212" + }, + { + "rshares": "50608661", + "voter": "owithed2" + }, + { + "rshares": "50606929", + "voter": "fiself2" + }, + { + "rshares": "50605131", + "voter": "trablinever1" + }, + { + "rshares": "50603861", + "voter": "nuals1940" + }, + { + "rshares": "50602310", + "voter": "fanceth2" + }, + { + "rshares": "50572441", + "voter": "unilever" + }, + { + "rshares": "50540827", + "voter": "amstel" + }, + { + "rshares": "1921231770", + "voter": "bapparabi" + }, + { + "rshares": "50479027", + "voter": "sunlight" + }, + { + "rshares": "50355943", + "voter": "forea1995" + }, + { + "rshares": "50354561", + "voter": "holow1968" + }, + { + "rshares": "50353969", + "voter": "peaces1952" + }, + { + "rshares": "50346496", + "voter": "himighar2" + }, + { + "rshares": "50345607", + "voter": "aromese1974" + }, + { + "rshares": "50344921", + "voter": "runis1943" + }, + { + "rshares": "50344067", + "voter": "tong1962" + }, + { + "rshares": "50340744", + "voter": "hishe1997" + }, + { + "rshares": "255059000", + "voter": "letstalkliberty" + }, + { + "rshares": "3609651500", + "voter": "strong-ai" + }, + { + "rshares": "53375937", + "voter": "ninjapainter" + }, + { + "rshares": "51393104", + "voter": "buit1989" + }, + { + "rshares": "51389981", + "voter": "imadecoult1" + }, + { + "rshares": "51387526", + "voter": "infees2" + }, + { + "rshares": "51384095", + "voter": "suar1997" + }, + { + "rshares": "51382067", + "voter": "sobsell93" + }, + { + "rshares": "51380710", + "voter": "stroned96" + }, + { + "rshares": "51378107", + "voter": "drethe" + }, + { + "rshares": "51377505", + "voter": "qualwas" + }, + { + "rshares": "51376367", + "voter": "phent1994" + }, + { + "rshares": "51375075", + "voter": "baboyes" + }, + { + "rshares": "51373532", + "voter": "whor1973" + }, + { + "rshares": "51372739", + "voter": "youreforn" + }, + { + "rshares": "51371902", + "voter": "voll1981" + }, + { + "rshares": "51370717", + "voter": "copenty2" + }, + { + "rshares": "51369717", + "voter": "maject2" + }, + { + "rshares": "51367233", + "voter": "coust1997" + }, + { + "rshares": "51366398", + "voter": "busionea84" + }, + { + "rshares": "51365174", + "voter": "therver1" + }, + { + "rshares": "51364022", + "voter": "appirdsmanne1990" + }, + { + "rshares": "51362967", + "voter": "alienighted87" + }, + { + "rshares": "51359746", + "voter": "anity1994" + }, + { + "rshares": "59959066", + "voter": "themphe1" + }, + { + "rshares": "51355864", + "voter": "abild1988" + }, + { + "rshares": "51353540", + "voter": "spoll1973" + }, + { + "rshares": "66162576", + "voter": "afteld1" + }, + { + "rshares": "71207873", + "voter": "igtes" + }, + { + "rshares": "835065804", + "voter": "dikanevroman" + }, + { + "rshares": "141679752", + "voter": "buffett" + }, + { + "rshares": "1630362522", + "voter": "rusteemitblog" + }, + { + "rshares": "167843838", + "voter": "robyneggs" + }, + { + "rshares": "1300689481", + "voter": "michaelstobiersk" + }, + { + "rshares": "453506109", + "voter": "witchcraftblog" + }, + { + "rshares": "158057595", + "voter": "sdc" + }, + { + "rshares": "160973134", + "voter": "gravity" + }, + { + "rshares": "160900665", + "voter": "digitalillusions" + }, + { + "rshares": "157726117", + "voter": "illusions" + }, + { + "rshares": "157176058", + "voter": "cybergirls" + }, + { + "rshares": "156847954", + "voter": "correct" + }, + { + "rshares": "156814579", + "voter": "haribo" + }, + { + "rshares": "156194471", + "voter": "stimmt" + }, + { + "rshares": "156054487", + "voter": "fallout" + }, + { + "rshares": "159062820", + "voter": "rule" + }, + { + "rshares": "155907388", + "voter": "xtreme" + }, + { + "rshares": "1442647825", + "voter": "modernbukowski" + }, + { + "rshares": "158602900", + "voter": "steem-wallet" + }, + { + "rshares": "158535752", + "voter": "nerds" + }, + { + "rshares": "31008332335", + "voter": "goldmatters" + }, + { + "rshares": "155796749", + "voter": "majes" + }, + { + "rshares": "155166715", + "voter": "maxb02" + }, + { + "rshares": "71727340", + "voter": "dealzgal" + }, + { + "rshares": "120983531", + "voter": "bleujay" + }, + { + "rshares": "68013381", + "voter": "storage" + }, + { + "rshares": "298391608", + "voter": "risabold" + }, + { + "rshares": "154247502", + "voter": "dougkarr" + }, + { + "rshares": "58460105", + "voter": "blackmarket" + }, + { + "rshares": "61530871", + "voter": "gifts" + }, + { + "rshares": "96643251", + "voter": "expat" + }, + { + "rshares": "181770825", + "voter": "pathtomydream" + }, + { + "rshares": "519265850", + "voter": "doubledex" + }, + { + "rshares": "1593664040", + "voter": "steemlift" + }, + { + "rshares": "129609202", + "voter": "toddemaher1" + } + ], + "author": "dollarvigilante", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "

https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg
\n\nIn past issues, we\u2019ve documented increasingly concerned billionaires warning of dangerous economic times. Many have favored gold as an alternative allocation in a world where $13 trillion-worth of debt is negative yielding, interest rates are artificially suppressed and we\u2019re on the brink of major wars.\n\nThe newest addition to this gold-loving billionaire's club, is none other than hedge-fund manager Paul Singer. At CNBC\u2019s Delivering Alpha Investors Conference this week, the founder of the $27-billion Elliott Management Fund, the 17th largest hedge fund in the world, mentioned that at current prices gold is \u201cundervalued\u201d and \u201cunderrepresented in many portfolios as the only ... store of value that has stood the test of time.\u201d\n\nSinger, along with numerous other hedge-fund managers, has been increasingly outspoken in his criticism of the Federal Reserve and other central banks for creating dangers in the market unlike any in what he terms the \u201c5,000 year-ish\u201d history of finance. Singer noted that \u201cit's a very dangerous time in the global economy and global financial markets.\"\n\nThis quote is frighteningly similar to the response given by Donald Trump on Fox Business not long ago when he was asked if he had money in the market. He answered, \u201cI did, but I got out,\u201d and then went on to say that he expected \u201cvery scary scenarios\u201d for investors.\n\nSinger also stated that he thinks owning medium- to long-term first world debt is a \u201creally bad idea\u201d... and then proceeded to tell listeners to sell their 30-year bonds.\n\nEarlier in the conference, prior to Singer, Ray Dalio who is the manager of the largest hedge fund in the world, Bridgewater Capital, was also vocal about the diminishing returns provided by government debt held by central banks. \u201cThere\u2019s only so much you can squeeze out of the debt cycle,\" he said. He went on to say that central banks are at a point now where their ability to stimulate is limited.\n\nSeated next to Dalio was Former Treasury secretary Timothy Geithner who voiced concern about limited \u201ctools in the keynesian arsenal,\u201d that probably wouldn\u2019t be enough to offset the next recession.\n\nGeithner obviously believes that a recession is on the way. Dalio and Singer are trying to convey the same message. A massive crunch is looming.\n\nWe agree with them, although we believe Geithner was sugarcoating what\u2019s to come.\n\nAfter all, we are on the precipice of a crash of biblical proportions according to the former chief economist of the Bank for International Settlements, William White.\n\nWe have mentioned his quote numerous time here at TDV but feel it\u2019s important to reiterate because of its magnitude: \u201cThe only question is whether we are able to look reality in the eye and face what is coming in an orderly fashion, or whether it will be disorderly. Debt jubilees have been going on for 5,000 years, as far back as the Sumerians.\u201d\n\nAs the Fed considers its second rate hike in 10 years, Singer condemned policy-makers for acting with \u201camazing arrogance\u201d when he and others had warned of a mortgage crisis prior to 2008.\n\nWhat he and those who agreed with his stance don\u2019t know, or at least won\u2019t state publicly, is that these shoddy central bank policies are detrimental by design. In other words, their sole purpose is to destabilize the world economy.\n\nThis deliberate market sabotage is necessary for the transference of power from the more developed nations to less developed ones. Ultimately, the idea is to eliminate smaller regional and national central banks. Once things get bad enough, these smaller banks will be blamed for provoking a given crisis. And, secondarily, the end goal is to blow up the entire system in order to bring in the one world government and central bank.\n\nThe elites have used the same tactics time and time again throughout history. First, they create the problem, then there is a reaction, and then finally they come swooping in to \u201cvaliantly save\u201d the day. It's happened numerous times before.\n
https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png
\nAnd it will soon happen again.\n\nOf course, the globalists have demonstrated that every intervention only makes situations worse.\n\nWe reported on the blatant thievery going on at Wells Fargo in our last article and noted how the elites were probably laughing hysterically at what they\u2019re able to get away with. They were even able to convince many younger American voters that \u201cdemocratic socialism\u201d would be their savior, as seen by the significant, youthful support for Bernie Slanders. Debt and currency crises have already started to materialize, as we\u2019ve seen in the socialist utopia that is Venezuela. If this is any indication of what\u2019s to come, the future is looking awfully gloomy.\n\nAs Singer and others including Dalio have mentioned before, the most tried and true measure of wealth and value is gold.\n\nAt TDV we provide unique Austrian-economics based analysis from the anarcho-capitalist pespective of the state of the world\u2019s economy, as well as suggestions on how to protect your assets in these tempestuous and unprecedented times.\n\nJacob Rothschild, a member of the family partly responsible for the creation of all this chaos, even said himself that we are in \u201cuncharted waters\u201d and that it\u2019s \u201cimpossible to predict the unintended consequences of very low interest rates.\u201d\n\nWe have a pretty good idea of what the consequences will be and we\u2019re taking action to protect ourselves and even profit from them. Rothschild seems to know the consequences, as well, as he has been buying up gold and selling the stock market and the US dollar.\n\nYou can survive and profit from the orchestrated collapse too. Subscribe to TDV\u2019s newsletter here to receive constantly updated information on how to protect your family and friends.\n\nIn the end, it is getting truly bizarre just how many billionaires, central bankers and others of note are all warning of the coming collapse. We\u2019d almost begun to worry that they were going to pull a switch-a-roo on us, but if you asked the great majority of investors and financial analysts, they\u2019ll tell you that they see nothing but smooth sailing ahead.\n\nSo, while many are warning, many are hearing, but not listening. The bible said something about that, I believe.\n
https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg
", + "category": "money", + "children": 23, + "created": "2016-09-15T18:23:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg", + "https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png", + "https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg" + ], + "links": [ + "https://dollarvigilante.com/subscribe" + ], + "tags": [ + "money", + "gold", + "silver", + "bitcoin", + "crisis" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 102136532384242, + "payout": 595.718, + "payout_at": "2016-09-22T18:23:15", + "pending_payout_value": "595.718 HBD", + "percent_hbd": 10000, + "permlink": "another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", + "post_id": 1257023, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 387 + }, + "title": "Another Billionaire Warns of Catastrophic Depths Not Seen in 5,000 Years - and Emphasizes Gold", + "updated": "2016-09-15T18:23:15", + "url": "/money/@dollarvigilante/another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold" + }, + { + "active_votes": [ + { + "rshares": "260764053346", + "voter": "anonymous" + }, + { + "rshares": "26301850743316", + "voter": "berniesanders" + }, + { + "rshares": "14447419939656", + "voter": "summon" + }, + { + "rshares": "30325685746209", + "voter": "val-a" + }, + { + "rshares": "15605000000000", + "voter": "val-b" + }, + { + "rshares": "35140699766668", + "voter": "jamesc" + }, + { + "rshares": "4574334081535", + "voter": "riverhead" + }, + { + "rshares": "7028898358251", + "voter": "wackou" + }, + { + "rshares": "173882410087", + "voter": "nextgenwitness" + }, + { + "rshares": "9910560004202", + "voter": "pharesim" + }, + { + "rshares": "610230676198", + "voter": "justin" + }, + { + "rshares": "120855503269", + "voter": "sandra" + }, + { + "rshares": "5450332021682", + "voter": "kushed" + }, + { + "rshares": "1673100049730", + "voter": "silver" + }, + { + "rshares": "4062956162312", + "voter": "silversteem" + }, + { + "rshares": "1149056534045", + "voter": "ihashfury" + }, + { + "rshares": "4624346498267", + "voter": "nextgencrypto" + }, + { + "rshares": "6514602351120", + "voter": "complexring" + }, + { + "rshares": "6400095696110", + "voter": "clayop" + }, + { + "rshares": "403437826343", + "voter": "steemservices" + }, + { + "rshares": "26833458550", + "voter": "steemservices1" + }, + { + "rshares": "1731510767128", + "voter": "joseph" + }, + { + "rshares": "84640148427", + "voter": "aizensou" + }, + { + "rshares": "4166568773495", + "voter": "au1nethyb1" + }, + { + "rshares": "223905651656", + "voter": "b0y2k" + }, + { + "rshares": "12275043694", + "voter": "bentley" + }, + { + "rshares": "630566306296", + "voter": "masteryoda" + }, + { + "rshares": "1209033907", + "voter": "mineralwasser" + }, + { + "rshares": "687090032502", + "voter": "boombastic" + }, + { + "rshares": "91240228363", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "1718241828", + "voter": "bingo-1" + }, + { + "rshares": "258890080700", + "voter": "indominon" + }, + { + "rshares": "795235221870", + "voter": "pfunk" + }, + { + "rshares": "170448234189", + "voter": "pairmike" + }, + { + "rshares": "3126367512437", + "voter": "onceuponatime" + }, + { + "rshares": "10365366239", + "voter": "idol" + }, + { + "rshares": "2747150485288", + "voter": "donkeypong" + }, + { + "rshares": "799706906226", + "voter": "steemrollin" + }, + { + "rshares": "4940816573", + "voter": "sakr" + }, + { + "rshares": "52267603683", + "voter": "ilanaakoundi" + }, + { + "rshares": "1784486145", + "voter": "jocelyn" + }, + { + "rshares": "81778714071", + "voter": "acidsun" + }, + { + "rshares": "14485500439", + "voter": "gregory-f" + }, + { + "rshares": "182184490464", + "voter": "samuel-stone" + }, + { + "rshares": "17261905745", + "voter": "jademont" + }, + { + "rshares": "1231622449650", + "voter": "gavvet" + }, + { + "rshares": "44936016583", + "voter": "eeks" + }, + { + "rshares": "-12893763252", + "voter": "james-show" + }, + { + "rshares": "581796947010", + "voter": "nanzo-scoop" + }, + { + "rshares": "9089111423", + "voter": "cian.dafe" + }, + { + "rshares": "48608113541", + "voter": "hannixx42" + }, + { + "rshares": "178475239190", + "voter": "mummyimperfect" + }, + { + "rshares": "268818780", + "voter": "coar" + }, + { + "rshares": "100988550788", + "voter": "asch" + }, + { + "rshares": "629740296743", + "voter": "kevinwong" + }, + { + "rshares": "1414357784", + "voter": "murh" + }, + { + "rshares": "3186258004", + "voter": "cryptofunk" + }, + { + "rshares": "17430843199", + "voter": "b4bb4r-5h3r" + }, + { + "rshares": "2326310189", + "voter": "error" + }, + { + "rshares": "5853981249", + "voter": "marta-zaidel" + }, + { + "rshares": "1064576926325", + "voter": "cyber" + }, + { + "rshares": "49529533316", + "voter": "ak2020" + }, + { + "rshares": "7897522470", + "voter": "thecryptofiend" + }, + { + "rshares": "24406094847", + "voter": "paul-labossiere" + }, + { + "rshares": "98824186817", + "voter": "eric-boucher" + }, + { + "rshares": "418804855", + "voter": "applecrisp" + }, + { + "rshares": "55573071997", + "voter": "juanmiguelsalas" + }, + { + "rshares": "33768131164", + "voter": "ratel" + }, + { + "rshares": "574978856216", + "voter": "infovore" + }, + { + "rshares": "2201949670", + "voter": "stephen-somers" + }, + { + "rshares": "804428766688", + "voter": "anwenbaumeister" + }, + { + "rshares": "6652497229", + "voter": "grandpere" + }, + { + "rshares": "5946920606", + "voter": "mark-waser" + }, + { + "rshares": "17023109715", + "voter": "albertogm" + }, + { + "rshares": "202862990998", + "voter": "kimziv" + }, + { + "rshares": "81140450926", + "voter": "emily-cook" + }, + { + "rshares": "87044687927", + "voter": "razvanelulmarin" + }, + { + "rshares": "11725334283", + "voter": "primus" + }, + { + "rshares": "20587586407", + "voter": "skapaneas" + }, + { + "rshares": "280886491", + "voter": "ladyclair" + }, + { + "rshares": "158997318209", + "voter": "asmolokalo" + }, + { + "rshares": "453674041389", + "voter": "roelandp" + }, + { + "rshares": "62652918156", + "voter": "lehard" + }, + { + "rshares": "24867544970", + "voter": "katyakov" + }, + { + "rshares": "19227034654", + "voter": "hakise" + }, + { + "rshares": "158322035362", + "voter": "derekareith" + }, + { + "rshares": "540675721761", + "voter": "neoxian" + }, + { + "rshares": "1382909545432", + "voter": "renohq" + }, + { + "rshares": "18347051336", + "voter": "ausbitbank" + }, + { + "rshares": "45733024772", + "voter": "mrwang" + }, + { + "rshares": "243777568", + "voter": "ardina" + }, + { + "rshares": "17613903814", + "voter": "sebastien" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "33656343814", + "voter": "toxonaut" + }, + { + "rshares": "1107683133", + "voter": "karen13" + }, + { + "rshares": "37477086352", + "voter": "diana.catherine" + }, + { + "rshares": "11096353249", + "voter": "deviedev" + }, + { + "rshares": "71693623547", + "voter": "jpiper20" + }, + { + "rshares": "4205385163", + "voter": "dcryptogold" + }, + { + "rshares": "2722560234", + "voter": "dmacshady" + }, + { + "rshares": "35770303799", + "voter": "creemej" + }, + { + "rshares": "2434921863", + "voter": "the-future" + }, + { + "rshares": "4296012707", + "voter": "adamt" + }, + { + "rshares": "2884781837", + "voter": "sgnsteems" + }, + { + "rshares": "175156042246", + "voter": "blueorgy" + }, + { + "rshares": "4542807775", + "voter": "poseidon" + }, + { + "rshares": "7168473448", + "voter": "geronimo" + }, + { + "rshares": "256660074008", + "voter": "liberosist" + }, + { + "rshares": "3773911635", + "voter": "birdie" + }, + { + "rshares": "9502502066", + "voter": "oumar" + }, + { + "rshares": "53840923427", + "voter": "jl777" + }, + { + "rshares": "1114903893", + "voter": "oecp85" + }, + { + "rshares": "7837739118", + "voter": "lostnuggett" + }, + { + "rshares": "36537971467", + "voter": "paquito" + }, + { + "rshares": "1120682252", + "voter": "lpfaust" + }, + { + "rshares": "5431079499", + "voter": "gustavopasquini" + }, + { + "rshares": "12879388253", + "voter": "moon32walker" + }, + { + "rshares": "206056754", + "voter": "sergey44" + }, + { + "rshares": "1258889103", + "voter": "mohammed123" + }, + { + "rshares": "21551743607", + "voter": "krabgat" + }, + { + "rshares": "42775578615", + "voter": "claudiop63" + }, + { + "rshares": "4543618384", + "voter": "proto" + }, + { + "rshares": "33381543237", + "voter": "sisterholics" + }, + { + "rshares": "16939424070", + "voter": "michaeldodridge" + }, + { + "rshares": "3555056805", + "voter": "bkkshadow" + }, + { + "rshares": "177054757", + "voter": "kibela" + }, + { + "rshares": "149624601", + "voter": "steemster1" + }, + { + "rshares": "467278771", + "voter": "bullionstackers" + }, + { + "rshares": "2399486339", + "voter": "jillstein2016" + }, + { + "rshares": "113159459", + "voter": "cryptoz" + }, + { + "rshares": "947490604", + "voter": "metaflute" + }, + { + "rshares": "49031153303", + "voter": "gomeravibz" + }, + { + "rshares": "2298221146", + "voter": "taker" + }, + { + "rshares": "14667601139", + "voter": "nekromarinist" + }, + { + "rshares": "10689974196", + "voter": "sykochica" + }, + { + "rshares": "57873464", + "voter": "sharon" + }, + { + "rshares": "235438675", + "voter": "frozendota" + }, + { + "rshares": "10107459891", + "voter": "dumar022" + }, + { + "rshares": "61714352", + "voter": "lillianjones" + }, + { + "rshares": "1180036690060", + "voter": "laonie" + }, + { + "rshares": "156808373457", + "voter": "twinner" + }, + { + "rshares": "24365622803", + "voter": "rawnetics" + }, + { + "rshares": "21937293191", + "voter": "thebluepanda" + }, + { + "rshares": "4038742528", + "voter": "timcliff" + }, + { + "rshares": "38493825241", + "voter": "myfirst" + }, + { + "rshares": "239614488307", + "voter": "somebody" + }, + { + "rshares": "9201794973", + "voter": "flysaga" + }, + { + "rshares": "1249580263", + "voter": "gmurph" + }, + { + "rshares": "7842754455", + "voter": "chris.roy" + }, + { + "rshares": "77413968", + "voter": "kurzer42" + }, + { + "rshares": "52933383775", + "voter": "midnightoil" + }, + { + "rshares": "2422858002", + "voter": "kalimor" + }, + { + "rshares": "4337200195", + "voter": "armen" + }, + { + "rshares": "109799369185", + "voter": "thisisbenbrick" + }, + { + "rshares": "35930892807", + "voter": "budgetbucketlist" + }, + { + "rshares": "132362897113", + "voter": "xiaohui" + }, + { + "rshares": "4269542847", + "voter": "antfield" + }, + { + "rshares": "60240401", + "voter": "locolote" + }, + { + "rshares": "3062483684", + "voter": "alitas" + }, + { + "rshares": "6555686028", + "voter": "elfkitchen" + }, + { + "rshares": "93215140213", + "voter": "joele" + }, + { + "rshares": "15543048016", + "voter": "randyclemens" + }, + { + "rshares": "4251276841", + "voter": "xiaokongcom" + }, + { + "rshares": "12956892771", + "voter": "gargon" + }, + { + "rshares": "2505333045", + "voter": "pgarcgo" + }, + { + "rshares": "39336543785", + "voter": "nonlinearone" + }, + { + "rshares": "62201879", + "voter": "msjennifer" + }, + { + "rshares": "57196572", + "voter": "ciao" + }, + { + "rshares": "3820074526", + "voter": "villainblack" + }, + { + "rshares": "67219867859", + "voter": "cryptos" + }, + { + "rshares": "8446448806", + "voter": "theconnoisseur" + }, + { + "rshares": "52985539", + "voter": "steemo" + }, + { + "rshares": "8569626145", + "voter": "xianjun" + }, + { + "rshares": "55306941", + "voter": "steema" + }, + { + "rshares": "3209376097", + "voter": "fingolfin" + }, + { + "rshares": "68042118", + "voter": "confucius" + }, + { + "rshares": "4097488430", + "voter": "bledarus" + }, + { + "rshares": "61075670", + "voter": "weames" + }, + { + "rshares": "56157882", + "voter": "jarvis" + }, + { + "rshares": "561462512", + "voter": "microluck" + }, + { + "rshares": "54313084", + "voter": "fortuner" + }, + { + "rshares": "9443278113", + "voter": "pjheinz" + }, + { + "rshares": "33826834839", + "voter": "thecurator" + }, + { + "rshares": "3054149279", + "voter": "virtualgrowth" + }, + { + "rshares": "7981841214", + "voter": "lemouth" + }, + { + "rshares": "20539806569", + "voter": "runaway-psyche" + }, + { + "rshares": "916656643", + "voter": "chanbam" + }, + { + "rshares": "95362884392", + "voter": "anotherjoe" + }, + { + "rshares": "59750246", + "voter": "saveliy" + }, + { + "rshares": "62751101", + "voter": "alfaman" + }, + { + "rshares": "11375408076", + "voter": "gvargas123" + }, + { + "rshares": "50698107", + "voter": "johnbyrd" + }, + { + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "rshares": "50680459", + "voter": "thermor" + }, + { + "rshares": "50691211", + "voter": "ficholl" + }, + { + "rshares": "50673817", + "voter": "widell" + }, + { + "rshares": "278004039", + "voter": "steevc" + }, + { + "rshares": "51481279", + "voter": "revelbrooks" + }, + { + "rshares": "377542979", + "voter": "mrlogic" + }, + { + "rshares": "61115647", + "voter": "steempipe" + }, + { + "rshares": "23522356557", + "voter": "andrewawerdna" + }, + { + "rshares": "75274936", + "voter": "joelbow" + }, + { + "rshares": "9139349966", + "voter": "craigwilliamz" + }, + { + "rshares": "3632579654", + "voter": "naquoya" + }, + { + "rshares": "52708083", + "voter": "curpose" + }, + { + "rshares": "1233668048", + "voter": "lenar" + }, + { + "rshares": "9818184488", + "voter": "lesliestarrohara" + }, + { + "rshares": "88019548", + "voter": "uziriel" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "70275964", + "voter": "lovetosteemit" + }, + { + "rshares": "1624586871", + "voter": "davidjkelley" + }, + { + "rshares": "78525447485", + "voter": "markrmorrisjr" + }, + { + "rshares": "52842496", + "voter": "crion" + }, + { + "rshares": "182060433", + "voter": "greatness" + }, + { + "rshares": "52505412", + "voter": "hitherise" + }, + { + "rshares": "50262756", + "voter": "wiss" + }, + { + "rshares": "42587324218", + "voter": "sponge-bob" + }, + { + "rshares": "15560806947", + "voter": "digital-wisdom" + }, + { + "rshares": "5676881799", + "voter": "leavemealone" + }, + { + "rshares": "474964783", + "voter": "areynolds" + }, + { + "rshares": "3708768210", + "voter": "ethical-ai" + }, + { + "rshares": "53281654", + "voter": "jamespro" + }, + { + "rshares": "51033798", + "voter": "stroully" + }, + { + "rshares": "6827381497", + "voter": "jwaser" + }, + { + "rshares": "345961132", + "voter": "tfeldman" + }, + { + "rshares": "50712038", + "voter": "thadm" + }, + { + "rshares": "50710305", + "voter": "prof" + }, + { + "rshares": "1414660150", + "voter": "ionescur" + }, + { + "rshares": "145187700042", + "voter": "thecyclist" + }, + { + "rshares": "620633970", + "voter": "kev7000" + }, + { + "rshares": "52560790", + "voter": "yorsens" + }, + { + "rshares": "207236223370", + "voter": "asksisk" + }, + { + "rshares": "55690180", + "voter": "jeremyschew" + }, + { + "rshares": "52242652", + "voter": "bane" + }, + { + "rshares": "52236265", + "voter": "vive" + }, + { + "rshares": "50054445", + "voter": "coad" + }, + { + "rshares": "25849035338", + "voter": "dubi" + }, + { + "rshares": "2674022812", + "voter": "bwaser" + }, + { + "rshares": "7642689568", + "voter": "renzoarg" + }, + { + "rshares": "53003720", + "voter": "sofa" + }, + { + "rshares": "2201645172", + "voter": "alina1" + }, + { + "rshares": "1504667661", + "voter": "digitalbrain" + }, + { + "rshares": "7681172153", + "voter": "mariandavp" + }, + { + "rshares": "43440714161", + "voter": "brains" + }, + { + "rshares": "3956902718", + "voter": "ibringawareness" + }, + { + "rshares": "50933404", + "voter": "ailo" + }, + { + "rshares": "5419706802", + "voter": "burnin" + }, + { + "rshares": "598109050", + "voter": "nelyp" + }, + { + "rshares": "51261721", + "voter": "f1111111" + }, + { + "rshares": "438008616", + "voter": "anomaly" + }, + { + "rshares": "2400009033", + "voter": "ellepdub" + }, + { + "rshares": "52928580", + "voter": "gregorygarcia" + }, + { + "rshares": "263062725", + "voter": "ola1" + }, + { + "rshares": "12084353453", + "voter": "herpetologyguy" + }, + { + "rshares": "50441122", + "voter": "eavy" + }, + { + "rshares": "51484593", + "voter": "roto" + }, + { + "rshares": "50263480", + "voter": "drac59" + }, + { + "rshares": "76492342", + "voter": "ancientofdays" + }, + { + "rshares": "4814064056", + "voter": "morgan.waser" + }, + { + "rshares": "51615039", + "voter": "cfisher" + }, + { + "rshares": "58668861", + "voter": "humans" + }, + { + "rshares": "50938725", + "voter": "haved" + }, + { + "rshares": "61035542", + "voter": "teo" + }, + { + "rshares": "2019644456", + "voter": "greenwayoflife" + }, + { + "rshares": "50873654", + "voter": "palladium" + }, + { + "rshares": "1523610145", + "voter": "thebiggestidea" + }, + { + "rshares": "50572441", + "voter": "unilever" + }, + { + "rshares": "50565798", + "voter": "penthouse" + }, + { + "rshares": "50534533", + "voter": "bapparabi" + }, + { + "rshares": "50482289", + "voter": "connection" + }, + { + "rshares": "50351738", + "voter": "aschwin" + }, + { + "rshares": "166200503", + "voter": "haddock" + }, + { + "rshares": "3607535118", + "voter": "strong-ai" + }, + { + "rshares": "69589512", + "voter": "igtes" + }, + { + "rshares": "46774280781", + "voter": "curie" + }, + { + "rshares": "82287966", + "voter": "olesia83" + }, + { + "rshares": "705822962", + "voter": "dikanevroman" + }, + { + "rshares": "138459757", + "voter": "buffett" + }, + { + "rshares": "159730645", + "voter": "uct" + }, + { + "rshares": "159716853", + "voter": "front" + }, + { + "rshares": "158676075", + "voter": "iberia" + }, + { + "rshares": "158649039", + "voter": "ndea30" + }, + { + "rshares": "158641883", + "voter": "domenico" + }, + { + "rshares": "435351417", + "voter": "witchcraftblog" + }, + { + "rshares": "157805871", + "voter": "serena199" + }, + { + "rshares": "160900665", + "voter": "digitalillusions" + }, + { + "rshares": "157774885", + "voter": "gia7" + }, + { + "rshares": "1883713307", + "voter": "dresden" + }, + { + "rshares": "160835930", + "voter": "skrillex" + }, + { + "rshares": "205939206", + "voter": "mgibson" + }, + { + "rshares": "157303076", + "voter": "richie4" + }, + { + "rshares": "157241455", + "voter": "coraline88" + }, + { + "rshares": "156977663", + "voter": "harlen" + }, + { + "rshares": "155225345", + "voter": "food-creator" + }, + { + "rshares": "156939548", + "voter": "yanuel" + }, + { + "rshares": "692395145", + "voter": "ysa" + }, + { + "rshares": "156889267", + "voter": "daritza" + }, + { + "rshares": "159973989", + "voter": "capcom" + }, + { + "rshares": "159950870", + "voter": "haribo" + }, + { + "rshares": "159531007", + "voter": "benetton" + }, + { + "rshares": "156054487", + "voter": "fallout" + }, + { + "rshares": "152431082", + "voter": "alterego" + }, + { + "rshares": "158486055", + "voter": "zendesk" + }, + { + "rshares": "158198121", + "voter": "lefrisa" + }, + { + "rshares": "157848543", + "voter": "bicolisarog" + }, + { + "rshares": "184381906", + "voter": "antaja" + }, + { + "rshares": "203602662", + "voter": "steemdesigner" + }, + { + "rshares": "154247502", + "voter": "dougkarr" + }, + { + "rshares": "846327994", + "voter": "alienbutt" + }, + { + "rshares": "182445807", + "voter": "techslut" + }, + { + "rshares": "112446078", + "voter": "paulocouto" + }, + { + "rshares": "152816202", + "voter": "countofdelphi" + }, + { + "rshares": "151525581", + "voter": "kevinfoesenek" + }, + { + "rshares": "151078228", + "voter": "unterhd6" + }, + { + "rshares": "141999204", + "voter": "newsfeed" + }, + { + "rshares": "147818170", + "voter": "dirlei.sdias" + }, + { + "rshares": "153395599", + "voter": "trickster512" + }, + { + "rshares": "150319355", + "voter": "denise12" + } + ], + "author": "curie", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\n

One Month of Project Curie

\n

This will be special update from Project Curie. One month ago, Project Curie began with humble beginnings. It has been an exhilarating experience for the team and we are delighted to share our progress with the Steemit community. To know more about Project Curie, do check out our initial announcement.


\n

Project Curie wishes to thank @pharesim, @val, @silversteem and @clayop along with @nextgencrypto and @berniesanders for helping us reward more deserving posts

\n

When a group of Steemit writers got together to form Project Curie, we thought that if we pooled our own votes on some posts, we could help reward some emerging and undiscovered authors who were posting great original material. 

\n

$5 later, it was clear our combined votes wouldn\u2019t make a huge difference.

\n

Fortunately, we were able to form a partnership with @nextgencrypto who was generous enough to donate some voting power to help reward deserving posters who were not yet established. @berniesanders then joined to help. With their support, Project Curie became a reality. 

\n

Today, we announce that @val, @pharesim, @silversteem and @clayop also have donated additional voting power to help Project Curie reach a greater number of original content posts from undiscovered and deserving authors. Please join us in thanking them. And please do not send your posts directly to any of these individuals; Project Curie is curating the posts and you are welcome to submit any good ones you find to the #curie channel on Steemit.chat.


\n\n

Proyecto Cervantes

\n

Project Curie is excited to announce a new branch of curation created to support Spanish authors on Steemit. The branch is called \u201cProyecto Cervantes\u201d and it\u2019s main curators are @gargon and @pgarcgo. The goal is to find and reward Spanish or bilingual (Spanish and English) posts on Steemit in order to foster a more diverse community. @gargon and @pgarcgo will be creating a compilation post for every 10 posts that they curate in order to provide transparency as to which posts are being rewarded. The hope is also to provide the original authors more exposure. You can find their first compilation posts here and here. Two members of Project Curie are Spanish speakers ( @anwenbaumeister and @the-alien), and they provide a second line of curation and review for these posts. So, if you are a Spanish speaker, we encourage you to begin writing bilingual posts in order to create a bridge between the two languages and communities!

\n\n
\n\n

Statistics from Month #1

\n

Total posts curated: 2055
\n
Unique authors rewarded: 763
\n
Total rewards generated for authors: SBD 158,151
\n
Mean reward generated per post: SBD 77
\n
Median reward generated per post: SBD 40  

\n

\n

Since we began tracking on 18th August, we have consistently voted on an average of over 75 posts per day. The trajectory is clearly heading up, and in the last week we have been averaging nearly 100 posts. 

\n

Authors

\n

The Top 10 Authors by number of posts curated were -

\n
    \n
  • @kimal73   
  • \n
  • @herverisson   
  • \n
  • @cristi   
  • \n
  • @lukeofkondor   
  • \n
  • @papa-pepper   
  • \n
  • @cryptos   
  • \n
  • @mariandavp   
  • \n
  • @stephmckenzie   
  • \n
  • @eveningstar92   
  • \n
  • @prufarchy    
  • \n
\n

Top Authors by payouts includes @alexbeyman, @kaylinart, @brianphobos, @jamielefay, @omfedor, @stephmckenzie, @ionescur, @aboundlessworld and @anotherjoe. Many of those names are pretty familiar today, but less than a month ago, they were new authors struggling for exposure.

\n

Tags/Topics

\n

The most used tag was \"life\", but that pretty much includes everything!

\n

\n

The most popular topics were \"art\" (549) and \"photography\" (418). \"Story\" and \"writing\" were pretty close, tagged on around 370 posts each, though we suspect these two tags are often repeated. \"Travel\" and \"science\" also make an appearance. Looking forward, we intend to focus more on original science and technology related posts, and other unique / niche topics. 

\n

#curie

\n

Following our announcement on September 2nd, the #curie channel has been a remarkable success. Currently we have 218 users in the room, 44 of whom have curated content from other authors. We have upvoted 105 posts submitted in #curie, and paid out SBD 525 to curators. 

\n

Top curators from #curie were -

\n
    \n
  • @pfunk
  • \n
  • @kental
  • \n
  • @jamtaylor
  • \n
  • @deviedev
  • \n
  • @royaltiffany
  • \n
\n

Join us on #curie at Steemit.chat and keep the submissions coming! 


\n

Thanks

\n

Last, but not least, we wish to thank - 

\n

@knozaki2015, @shaka, @razvanelulmarin, @greenwayoflife, @jasonstaggers for their generous donations.
\n@royaltiffany for moderating #curie and creating the noble TheButler bot. :)
\n@firepower for setting up the #curie room.
\n
\nAnd of course, everyone voting on and commenting on posts we curate!


\n

Onward to Month #2! 

\n

We are working to increase our reach and rewards for authors, courtesy of extended whale support. We are also setting up @curie as a universal voter for all posts we curate. This way, you can choose to mirror our votes to support the authors. Look out for an announcement regarding this in our Daily Curation List posts. From next week, every Monday we'll have a Weekly Roundup with statistics, similar to this post.

\n

We are always open to feedback, and would love to know how you feel we could do better in Month #2!

\n", + "category": "curie", + "children": 37, + "created": "2016-09-14T14:11:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/01/Babel-Lille-2012-Bibliohteque-ideale-2-Jean-Francois-RAUZIER4f9da.jpg", + "https://www.steemimg.com/images/2016/09/14/curie-1da303.jpg", + "https://www.steemimg.com/images/2016/09/14/curie-23f98a.jpg" + ], + "links": [ + "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", + "https://steemit.com/spanish/@gargon/proyecto-cervantes-08-11-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", + "https://steemit.com/spanish/@pgarcgo/proyecto-cervantes-11-13-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and" + ], + "tags": [ + "curie", + "minnows", + "hidden-gems", + "steemit", + "project-curie" + ], + "users": [ + "pharesim", + "val", + "silversteem", + "clayop", + "nextgencrypto", + "berniesanders", + "gargon", + "pgarcgo", + "anwenbaumeister", + "the-alien", + "kimal73", + "herverisson", + "cristi", + "lukeofkondor", + "papa-pepper", + "cryptos", + "mariandavp", + "stephmckenzie", + "eveningstar92", + "prufarchy", + "alexbeyman", + "kaylinart", + "brianphobos", + "jamielefay", + "omfedor", + "ionescur", + "aboundlessworld", + "anotherjoe", + "pfunk", + "kental", + "jamtaylor", + "deviedev", + "royaltiffany", + "knozaki2015", + "shaka", + "razvanelulmarin", + "greenwayoflife", + "jasonstaggers", + "firepower", + "curie" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 203814685511375, + "payout": 2327.995, + "payout_at": "2016-09-21T14:11:30", + "pending_payout_value": "2327.995 HBD", + "percent_hbd": 10000, + "permlink": "special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", + "post_id": 1243454, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 318 + }, + "title": "Special Edition: Major Updates & Project Curie Month #1 Roundup (12 August - 11 September 2016)", + "updated": "2016-09-14T16:09:51", + "url": "/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016" + }, + { + "active_votes": [ + { + "rshares": "31307487536364", + "voter": "smooth" + }, + { + "rshares": "231809639013", + "voter": "anonymous" + }, + { + "rshares": "1551268628220", + "voter": "butterfly" + }, + { + "rshares": "4287714457313", + "voter": "riverhead" + }, + { + "rshares": "1855967006728", + "voter": "badassmother" + }, + { + "rshares": "2053236030423", + "voter": "hr1" + }, + { + "rshares": "1271804694676", + "voter": "rossco99" + }, + { + "rshares": "2206068741954", + "voter": "wang" + }, + { + "rshares": "22391622942", + "voter": "jaewoocho" + }, + { + "rshares": "1534654466021", + "voter": "joseph" + }, + { + "rshares": "466132509421", + "voter": "recursive2" + }, + { + "rshares": "452874558937", + "voter": "recursive3" + }, + { + "rshares": "636519834128", + "voter": "masteryoda" + }, + { + "rshares": "3120576239931", + "voter": "recursive" + }, + { + "rshares": "5942254587236", + "voter": "smooth.witness" + }, + { + "rshares": "8927291120", + "voter": "idol" + }, + { + "rshares": "800066797130", + "voter": "steemrollin" + }, + { + "rshares": "4941942978", + "voter": "sakr" + }, + { + "rshares": "284401462010", + "voter": "chitty" + }, + { + "rshares": "75736848691", + "voter": "unosuke" + }, + { + "rshares": "481790356914", + "voter": "noaommerrr" + }, + { + "rshares": "1536592488", + "voter": "jocelyn" + }, + { + "rshares": "85270554570", + "voter": "acidsun" + }, + { + "rshares": "14502980866", + "voter": "gregory-f" + }, + { + "rshares": "154334962550", + "voter": "edgeland" + }, + { + "rshares": "9028550345", + "voter": "gregory60" + }, + { + "rshares": "1196485708874", + "voter": "gavvet" + }, + { + "rshares": "89897944197", + "voter": "eeks" + }, + { + "rshares": "1511911763", + "voter": "fkn" + }, + { + "rshares": "122160437", + "voter": "paco-steem" + }, + { + "rshares": "1471747302", + "voter": "spaninv" + }, + { + "rshares": "1987313581", + "voter": "elishagh1" + }, + { + "rshares": "7803257741", + "voter": "richman" + }, + { + "rshares": "584279800798", + "voter": "nanzo-scoop" + }, + { + "rshares": "9857825141", + "voter": "kefkius" + }, + { + "rshares": "177417522325", + "voter": "mummyimperfect" + }, + { + "rshares": "2366347863", + "voter": "alenevaa" + }, + { + "rshares": "313697862", + "voter": "coar" + }, + { + "rshares": "106635074770", + "voter": "asch" + }, + { + "rshares": "1061264730", + "voter": "murh" + }, + { + "rshares": "3187850436", + "voter": "cryptofunk" + }, + { + "rshares": "579494558", + "voter": "kodi" + }, + { + "rshares": "2003359924", + "voter": "error" + }, + { + "rshares": "11848125383", + "voter": "andu" + }, + { + "rshares": "970579316703", + "voter": "cyber" + }, + { + "rshares": "59952188311", + "voter": "theshell" + }, + { + "rshares": "49580154489", + "voter": "ak2020" + }, + { + "rshares": "3848697023555", + "voter": "satoshifund" + }, + { + "rshares": "402139444", + "voter": "applecrisp" + }, + { + "rshares": "35693164103", + "voter": "altoz" + }, + { + "rshares": "95314034", + "voter": "stiletto" + }, + { + "rshares": "219283354085", + "voter": "will-zewe" + }, + { + "rshares": "12241505540", + "voter": "lindee-hamner" + }, + { + "rshares": "15787522491", + "voter": "zakharya" + }, + { + "rshares": "275008585094", + "voter": "trogdor" + }, + { + "rshares": "5047464747", + "voter": "tee-em" + }, + { + "rshares": "5821262190", + "voter": "mark-waser" + }, + { + "rshares": "118356217412", + "voter": "geoffrey" + }, + { + "rshares": "16027781644", + "voter": "kimziv" + }, + { + "rshares": "45359587433", + "voter": "honeythief" + }, + { + "rshares": "75333038089", + "voter": "emily-cook" + }, + { + "rshares": "2187607792", + "voter": "superfreek" + }, + { + "rshares": "17557768630", + "voter": "grey580" + }, + { + "rshares": "275327756", + "voter": "ladyclair" + }, + { + "rshares": "3898829337", + "voter": "michaellamden68" + }, + { + "rshares": "19975706505", + "voter": "thebatchman" + }, + { + "rshares": "3350419346", + "voter": "orly" + }, + { + "rshares": "5271030976", + "voter": "riscadox" + }, + { + "rshares": "7380892516", + "voter": "furion" + }, + { + "rshares": "105911917280", + "voter": "cdubendo" + }, + { + "rshares": "156249887947", + "voter": "jacor" + }, + { + "rshares": "2632460141", + "voter": "steem1653" + }, + { + "rshares": "136322030", + "voter": "cynetyc" + }, + { + "rshares": "80777327", + "voter": "snowden" + }, + { + "rshares": "5250179537", + "voter": "thegoodguy" + }, + { + "rshares": "14168005907", + "voter": "aaseb" + }, + { + "rshares": "4209533734", + "voter": "karen13" + }, + { + "rshares": "8751103405", + "voter": "noodhoog" + }, + { + "rshares": "8164924332", + "voter": "hyiparena" + }, + { + "rshares": "46859060143", + "voter": "milestone" + }, + { + "rshares": "21565632626", + "voter": "artific" + }, + { + "rshares": "33739169732", + "voter": "creemej" + }, + { + "rshares": "15378221086", + "voter": "nippel66" + }, + { + "rshares": "163325751551", + "voter": "blueorgy" + }, + { + "rshares": "13373880577", + "voter": "benjiberigan" + }, + { + "rshares": "349618451", + "voter": "poseidon" + }, + { + "rshares": "7946812357", + "voter": "smolalit" + }, + { + "rshares": "3365797955", + "voter": "simon.braki.love" + }, + { + "rshares": "5609578664", + "voter": "sharker" + }, + { + "rshares": "204618396015", + "voter": "jl777" + }, + { + "rshares": "1114903893", + "voter": "oecp85" + }, + { + "rshares": "1218867625", + "voter": "victoria2002" + }, + { + "rshares": "1226120506", + "voter": "positive" + }, + { + "rshares": "1809205777", + "voter": "yarly" + }, + { + "rshares": "272641013", + "voter": "yarly2" + }, + { + "rshares": "273048922", + "voter": "yarly3" + }, + { + "rshares": "157733805", + "voter": "yarly4" + }, + { + "rshares": "158624349", + "voter": "yarly5" + }, + { + "rshares": "90416287", + "voter": "yarly7" + }, + { + "rshares": "50626015", + "voter": "steemchain" + }, + { + "rshares": "17267341753", + "voter": "proto" + }, + { + "rshares": "2708629529", + "voter": "sisterholics" + }, + { + "rshares": "437620869", + "voter": "yarly10" + }, + { + "rshares": "234191245", + "voter": "yarly11" + }, + { + "rshares": "8781903824", + "voter": "royalmacro" + }, + { + "rshares": "81879061", + "voter": "yarly12" + }, + { + "rshares": "146224042", + "voter": "steemster1" + }, + { + "rshares": "3022447454", + "voter": "dmilash" + }, + { + "rshares": "3353991305", + "voter": "glitterpig" + }, + { + "rshares": "8734185109", + "voter": "taker" + }, + { + "rshares": "7825324952", + "voter": "nekromarinist" + }, + { + "rshares": "57873464", + "voter": "sharon" + }, + { + "rshares": "58971492", + "voter": "lillianjones" + }, + { + "rshares": "95786319596", + "voter": "laonie" + }, + { + "rshares": "153264363976", + "voter": "twinner" + }, + { + "rshares": "24562882668", + "voter": "laoyao" + }, + { + "rshares": "2664979204", + "voter": "myfirst" + }, + { + "rshares": "19443061295", + "voter": "somebody" + }, + { + "rshares": "726959262", + "voter": "flysaga" + }, + { + "rshares": "7707314246", + "voter": "asdes" + }, + { + "rshares": "2501638608", + "voter": "gmurph" + }, + { + "rshares": "1693568633", + "voter": "stormblaze" + }, + { + "rshares": "5558177167", + "voter": "denn" + }, + { + "rshares": "4295114546", + "voter": "midnightoil" + }, + { + "rshares": "3157785139", + "voter": "kurtbeil" + }, + { + "rshares": "10742990382", + "voter": "xiaohui" + }, + { + "rshares": "67965196", + "voter": "zahar" + }, + { + "rshares": "485140088", + "voter": "elfkitchen" + }, + { + "rshares": "99935909954", + "voter": "joele" + }, + { + "rshares": "5855738054", + "voter": "oflyhigh" + }, + { + "rshares": "15549176040", + "voter": "randyclemens" + }, + { + "rshares": "79785139", + "voter": "dims" + }, + { + "rshares": "335856762", + "voter": "xiaokongcom" + }, + { + "rshares": "1446509276", + "voter": "future24" + }, + { + "rshares": "60819615", + "voter": "msjennifer" + }, + { + "rshares": "54654502", + "voter": "ciao" + }, + { + "rshares": "13254585210", + "voter": "cristi" + }, + { + "rshares": "54217761", + "voter": "steemo" + }, + { + "rshares": "677027684", + "voter": "xianjun" + }, + { + "rshares": "54077897", + "voter": "steema" + }, + { + "rshares": "72192938", + "voter": "sijoittaja" + }, + { + "rshares": "69662169", + "voter": "confucius" + }, + { + "rshares": "93807196108", + "voter": "miacats" + }, + { + "rshares": "54909929", + "voter": "jarvis" + }, + { + "rshares": "74131936", + "voter": "razberrijam" + }, + { + "rshares": "53106127", + "voter": "fortuner" + }, + { + "rshares": "2022702929", + "voter": "chinadaily" + }, + { + "rshares": "10471074095", + "voter": "pjheinz" + }, + { + "rshares": "86712034", + "voter": "pompe72" + }, + { + "rshares": "108403024", + "voter": "pollina" + }, + { + "rshares": "51877132", + "voter": "johnbyrd" + }, + { + "rshares": "51860909", + "voter": "thomasaustin" + }, + { + "rshares": "51859074", + "voter": "thermor" + }, + { + "rshares": "51870077", + "voter": "ficholl" + }, + { + "rshares": "51852278", + "voter": "widell" + }, + { + "rshares": "3635091595", + "voter": "movievertigo" + }, + { + "rshares": "51481279", + "voter": "revelbrooks" + }, + { + "rshares": "2982691190", + "voter": "netaterra" + }, + { + "rshares": "21980957828", + "voter": "andrewawerdna" + }, + { + "rshares": "4337454155", + "voter": "onetree" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "50416427", + "voter": "curpose" + }, + { + "rshares": "989363278", + "voter": "dajohns1420" + }, + { + "rshares": "2196907450", + "voter": "runridefly" + }, + { + "rshares": "1783693666", + "voter": "funkywanderer" + }, + { + "rshares": "4747321980", + "voter": "richardcrill" + }, + { + "rshares": "2205784762", + "voter": "jeremyfromwi" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "4546391288", + "voter": "nadin3" + }, + { + "rshares": "1625414479", + "voter": "davidjkelley" + }, + { + "rshares": "9458733324", + "voter": "aggroed" + }, + { + "rshares": "50593879", + "voter": "crion" + }, + { + "rshares": "178419224", + "voter": "greatness" + }, + { + "rshares": "50271139", + "voter": "hitherise" + }, + { + "rshares": "50262756", + "voter": "wiss" + }, + { + "rshares": "53143607139", + "voter": "sponge-bob" + }, + { + "rshares": "15571125147", + "voter": "digital-wisdom" + }, + { + "rshares": "3710973264", + "voter": "ethical-ai" + }, + { + "rshares": "51033798", + "voter": "stroully" + }, + { + "rshares": "6831389463", + "voter": "jwaser" + }, + { + "rshares": "1064809843", + "voter": "tatianka" + }, + { + "rshares": "50712038", + "voter": "thadm" + }, + { + "rshares": "50710305", + "voter": "prof" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "50370757", + "voter": "yorsens" + }, + { + "rshares": "50065875", + "voter": "bane" + }, + { + "rshares": "50059754", + "voter": "vive" + }, + { + "rshares": "50054445", + "voter": "coad" + }, + { + "rshares": "2617343597", + "voter": "bwaser" + }, + { + "rshares": "50840303", + "voter": "sofa" + }, + { + "rshares": "323483227", + "voter": "panther" + }, + { + "rshares": "53871683", + "voter": "doggnostic" + }, + { + "rshares": "53593366", + "voter": "jenny-talls" + }, + { + "rshares": "54239080444", + "voter": "brains" + }, + { + "rshares": "50450987", + "voter": "waldemar-kuhn" + }, + { + "rshares": "50933404", + "voter": "ailo" + }, + { + "rshares": "1387263917", + "voter": "steemafon" + }, + { + "rshares": "1317649856", + "voter": "bitcoinparadise" + }, + { + "rshares": "5753524189", + "voter": "chick1" + }, + { + "rshares": "3338622584", + "voter": "steempowerwhale" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "50516543", + "voter": "typingagent" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "62515317", + "voter": "freebornangel" + }, + { + "rshares": "271440423", + "voter": "anomaly" + }, + { + "rshares": "2401297947", + "voter": "ellepdub" + }, + { + "rshares": "120649148", + "voter": "rynow" + }, + { + "rshares": "61292139", + "voter": "inarix03" + }, + { + "rshares": "98577200", + "voter": "ola1" + }, + { + "rshares": "50583338", + "voter": "rayzzz" + }, + { + "rshares": "12115690216", + "voter": "herpetologyguy" + }, + { + "rshares": "4712300251", + "voter": "morgan.waser" + }, + { + "rshares": "51230296", + "voter": "steemq" + }, + { + "rshares": "50871059", + "voter": "motion" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "50704078", + "voter": "yotoh" + }, + { + "rshares": "50538694", + "voter": "fenix" + }, + { + "rshares": "1921231770", + "voter": "bapparabi" + }, + { + "rshares": "50532230", + "voter": "friends" + }, + { + "rshares": "50349676", + "voter": "albertheijn" + }, + { + "rshares": "3609651500", + "voter": "strong-ai" + }, + { + "rshares": "516546553", + "voter": "grisha-danunaher" + }, + { + "rshares": "71207873", + "voter": "igtes" + }, + { + "rshares": "141679752", + "voter": "buffett" + }, + { + "rshares": "213848535", + "voter": "sjamayee" + }, + { + "rshares": "453506109", + "voter": "witchcraftblog" + }, + { + "rshares": "3265972001", + "voter": "zaitsevalesyaa" + }, + { + "rshares": "161205518", + "voter": "acute" + }, + { + "rshares": "161179339", + "voter": "bethesda" + }, + { + "rshares": "160957729", + "voter": "realtime" + }, + { + "rshares": "7187212765", + "voter": "dresden" + }, + { + "rshares": "212371776", + "voter": "mgibson" + }, + { + "rshares": "156837244", + "voter": "capcom" + }, + { + "rshares": "159506164", + "voter": "greenpeace" + }, + { + "rshares": "159352476", + "voter": "panic" + }, + { + "rshares": "156054487", + "voter": "fallout" + }, + { + "rshares": "159025535", + "voter": "xtreme" + }, + { + "rshares": "1473342460", + "voter": "modernbukowski" + }, + { + "rshares": "158541985", + "voter": "citigroup" + }, + { + "rshares": "30995434343", + "voter": "goldmatters" + }, + { + "rshares": "71727340", + "voter": "dealzgal" + }, + { + "rshares": "64921864", + "voter": "storage" + }, + { + "rshares": "298391608", + "voter": "risabold" + }, + { + "rshares": "55383257", + "voter": "blackmarket" + }, + { + "rshares": "58454327", + "voter": "gifts" + }, + { + "rshares": "93882016", + "voter": "expat" + }, + { + "rshares": "126595034", + "voter": "toddemaher1" + } + ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "@herpetologyguy\n\nOne of my many tasks as a zoo keeper is connecting people to animals. \n-\n\n\n\n

The museum I work at is unique because we showcase animals that are native to Virginia -- meaning that these are animals people will find close to home, rather than across the ocean in some distant country. This makes my job more crucial in that I am responsible for educating people about the reptiles and amphibians that they will find in their own backyards. And obviously, there\u2019s one group of reptiles that gives people more pause than almost any other animal . . . . 

\n

Snakes. 

\n

http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj   Picture Credit

\n

I do public programs featuring snakes quite frequently.  I believe people should know how to identify local venomous/non-venomous snakes, their role in the environment and how to deal with them when they are in close proximity to our homes.  Usually, I get eager audiences asking great questions.  But, every now and then, I get some idiot who tells me, \u201cI saw that same snake in my backyard! I chopped off its head with a shovel!\u201d

\n

Are they an idiot for killing the snake?  Not necessarily . . . I don\u2019t know the situation behind the encounter. But, only an idiot would walk into a wildlife facility, approach a zoo keeper and proudly declare that they kill the very same animals that the keeper is charged with the care for.  Would you walk into an animal shelter and tell someone working there that you enjoy stomping on puppies?  To us, there\u2019s not much difference\u2026 

\n

http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png   Picture Credit\n

\n

The best we can do in these situations is to try to educate people. This can be difficult because so many people are set in their ways -- plus we have to combat an instinctive fear and prejudice against snakes.  So, I\u2019m going to briefly lay it all out for you and tell you \"Why you shouldn\u2019t kill that snake in your yard.\" 

\n

http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg   Picture Credit

\n

1.  It\u2019s ILLEGAL in most states to kill a wild snake, unless that snake presents an IMMEDIATE threat.  And no, a snake crawling through your yard does not represent a good enough excuse to use force.  We\u2019re talking about a situation where a venomous snake is about to strike and you have no escape route but to fight your way out.  And guess what, that really doesn\u2019t ever happen (barring instances where someone purposefully provokes an animal).  Wildlife and law enforcement agencies are cracking down on people killing snakes, so it\u2019s better to keep yourself out of trouble. 

\n

http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg   Picture Credit

\n

2.  You are putting yourself in harm\u2019s way.  The vast majority of snake bites occur when people attempt to capture or kill snakes.  If left alone, the snake CANNOT hurt you.  Call wildlife services or trained professionals to remove the animal. 

\n

http://www.snakegetters.com/demo/bud-cotton-gg.jpg   Picture Credit

\n

3.  It\u2019s an incredibly beneficial animal, and you\u2019d be foolish to kill it.  Small snakes eat a huge variety of pest insects that destroy gardens, while large snakes typically feed on rats and other rodents that infest our homes.  If you see a large snake hanging around, you have a rodent problem; snakes will not hang around if there is no food source.  To keep snakes from being attracted to your property, do your best to remove any shelter or food sources that would attract rodents.  Some snakes even eat other snakes, and species like the harmless king snake will even feed on venomous species! 

\n

https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg   Picture Credit

\n

4.  Another snake might show up.  Snakes will not typically inhabit the same area in order to avoid competition.  If you kill that harmless rat snake, but you still have a food source nearby, another snake may move in to make use of that source.  The new snake may be another harmless species or something a bit less desirable.  So why not let that harmless snake take care of the infestation for you?

\n

http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg   Picture Credit

\n

Having a snake around can be hugely beneficial to you.  It is a free, environmentally-safe form of pest control.  Snakes, including venomous species, are non-aggressive animals (unless you provoke them) that will actively do their best to AVOID people.  A resident snake will often go unnoticed by homeowners, and most encounters are fleeting glimpses of the snake making a hasty escape.  Remember that snakes have their own unique role in the environment, and regardless of our own fears and feelings towards them, they are a necessary part of life. 

\n

   http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg   Picture Credit

\n\n\nif you liked this also please check out:\nhttps://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians\n\n\n***don't forget to follow @herpetologyguy***", + "category": "herpetology", + "children": 6, + "created": "2016-09-15T18:19:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg" + ], + "links": [ + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://www.sciencemag.org", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://proactivepestga.com", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://blogs.discovermagazine.com", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.mylakelandnow.com", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "http://www.snakegetters.com", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "https://www.youtube.com/watch?v=ImOj1CKTBqE", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://phenomena.nationalgeographic.com", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg", + "http://westernmassnaturalist.org", + "https://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians" + ], + "tags": [ + "herpetology", + "reptiles", + "snakes", + "science" + ], + "users": [ + "herpetologyguy" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 68620995119384, + "payout": 274.303, + "payout_at": "2016-09-22T18:19:39", + "pending_payout_value": "274.303 HBD", + "percent_hbd": 10000, + "permlink": "why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", + "post_id": 1256988, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 247 + }, + "title": "Why You Don\u2019t Want to Kill that Snake in Your Yard (featuring @herpetologyguy as author)", + "updated": "2016-09-15T18:19:39", + "url": "/herpetology/@gavvet/why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author" + }, + { + "active_votes": [ + { + "rshares": "31621188390159", + "voter": "smooth" + }, + { + "rshares": "2078528809174", + "voter": "bmw" + }, + { + "rshares": "1912120788268", + "voter": "badassmother" + }, + { + "rshares": "3312854507128", + "voter": "pharesim" + }, + { + "rshares": "2053144245901", + "voter": "hr1" + }, + { + "rshares": "1271804694676", + "voter": "rossco99" + }, + { + "rshares": "22390733187", + "voter": "jaewoocho" + }, + { + "rshares": "1736291789819", + "voter": "steemychicken1" + }, + { + "rshares": "1533973920081", + "voter": "joseph" + }, + { + "rshares": "466132509421", + "voter": "recursive2" + }, + { + "rshares": "652005899349", + "voter": "masteryoda" + }, + { + "rshares": "3120458041174", + "voter": "recursive" + }, + { + "rshares": "5941203882368", + "voter": "smooth.witness" + }, + { + "rshares": "9168101098", + "voter": "idol" + }, + { + "rshares": "816386307308", + "voter": "steemrollin" + }, + { + "rshares": "4941741048", + "voter": "sakr" + }, + { + "rshares": "1578030666", + "voter": "jocelyn" + }, + { + "rshares": "83530339170", + "voter": "acidsun" + }, + { + "rshares": "14818192446", + "voter": "gregory-f" + }, + { + "rshares": "151248263299", + "voter": "edgeland" + }, + { + "rshares": "9028522101", + "voter": "gregory60" + }, + { + "rshares": "74914792736", + "voter": "eeks" + }, + { + "rshares": "15119117634", + "voter": "fkn" + }, + { + "rshares": "19873135819", + "voter": "elishagh1" + }, + { + "rshares": "7802860274", + "voter": "richman" + }, + { + "rshares": "584250736753", + "voter": "nanzo-scoop" + }, + { + "rshares": "177409209153", + "voter": "mummyimperfect" + }, + { + "rshares": "313697862", + "voter": "coar" + }, + { + "rshares": "106632631169", + "voter": "asch" + }, + { + "rshares": "1061245798", + "voter": "murh" + }, + { + "rshares": "6230746892", + "voter": "cryptofunk" + }, + { + "rshares": "2057413439", + "voter": "error" + }, + { + "rshares": "962077066542", + "voter": "cyber" + }, + { + "rshares": "59950063204", + "voter": "theshell" + }, + { + "rshares": "49578772788", + "voter": "ak2020" + }, + { + "rshares": "76584409982", + "voter": "noganoo" + }, + { + "rshares": "3848540783991", + "voter": "satoshifund" + }, + { + "rshares": "400880323222", + "voter": "taoteh1221" + }, + { + "rshares": "410517349", + "voter": "applecrisp" + }, + { + "rshares": "35693164103", + "voter": "altoz" + }, + { + "rshares": "335983556", + "voter": "gardening" + }, + { + "rshares": "336136344", + "voter": "survival" + }, + { + "rshares": "10021612024", + "voter": "arisa" + }, + { + "rshares": "280737930617", + "voter": "trogdor" + }, + { + "rshares": "5950554459", + "voter": "mark-waser" + }, + { + "rshares": "118348776939", + "voter": "geoffrey" + }, + { + "rshares": "42738217262", + "voter": "kimziv" + }, + { + "rshares": "24170583392", + "voter": "seth-krings" + }, + { + "rshares": "46264097306", + "voter": "honeythief" + }, + { + "rshares": "78976166587", + "voter": "technology" + }, + { + "rshares": "76017114668", + "voter": "emily-cook" + }, + { + "rshares": "2187607792", + "voter": "superfreek" + }, + { + "rshares": "49806227536", + "voter": "isteemit" + }, + { + "rshares": "10993053311", + "voter": "auction" + }, + { + "rshares": "17557768630", + "voter": "grey580" + }, + { + "rshares": "19975264794", + "voter": "thebatchman" + }, + { + "rshares": "60403077307", + "voter": "lehard" + }, + { + "rshares": "3283410959", + "voter": "orly" + }, + { + "rshares": "5270985903", + "voter": "riscadox" + }, + { + "rshares": "24867544970", + "voter": "katyakov" + }, + { + "rshares": "12790313163", + "voter": "jako" + }, + { + "rshares": "1159208963", + "voter": "steemswede" + }, + { + "rshares": "1664172448", + "voter": "sergei" + }, + { + "rshares": "238378512", + "voter": "honey" + }, + { + "rshares": "71343869654", + "voter": "furion" + }, + { + "rshares": "354114465", + "voter": "barbara2" + }, + { + "rshares": "393593664", + "voter": "ch0c0latechip" + }, + { + "rshares": "364274718", + "voter": "doge4lyf" + }, + { + "rshares": "5532441214", + "voter": "on0tole" + }, + { + "rshares": "1231812238", + "voter": "dicov" + }, + { + "rshares": "2834923420", + "voter": "steem1653" + }, + { + "rshares": "2919298058", + "voter": "sveokla" + }, + { + "rshares": "17173174800", + "voter": "sebastien" + }, + { + "rshares": "5357205853", + "voter": "thegoodguy" + }, + { + "rshares": "14167556353", + "voter": "aaseb" + }, + { + "rshares": "1026087885", + "voter": "danielkt" + }, + { + "rshares": "4209522316", + "voter": "karen13" + }, + { + "rshares": "251366150295", + "voter": "nabilov" + }, + { + "rshares": "629471993", + "voter": "luisucv34" + }, + { + "rshares": "462033723200", + "voter": "knozaki2015" + }, + { + "rshares": "95668007343", + "voter": "inertia" + }, + { + "rshares": "46858037615", + "voter": "milestone" + }, + { + "rshares": "7164489185", + "voter": "lichtblick" + }, + { + "rshares": "34761364489", + "voter": "creemej" + }, + { + "rshares": "2726160685", + "voter": "the-future" + }, + { + "rshares": "15378115921", + "voter": "nippel66" + }, + { + "rshares": "23929304431", + "voter": "phenom" + }, + { + "rshares": "167305835788", + "voter": "blueorgy" + }, + { + "rshares": "12849414672", + "voter": "benjiberigan" + }, + { + "rshares": "932262984", + "voter": "poseidon" + }, + { + "rshares": "19717588129", + "voter": "mustafaomar" + }, + { + "rshares": "3435918746", + "voter": "simon.braki.love" + }, + { + "rshares": "82781233416", + "voter": "thylbom" + }, + { + "rshares": "32543400703", + "voter": "deanliu" + }, + { + "rshares": "4996306142", + "voter": "dmitriybtc" + }, + { + "rshares": "1019831473", + "voter": "hemp" + }, + { + "rshares": "118287211", + "voter": "flowers" + }, + { + "rshares": "204617853645", + "voter": "jl777" + }, + { + "rshares": "30989251579", + "voter": "zaebars" + }, + { + "rshares": "12261205066", + "voter": "positive" + }, + { + "rshares": "1773021661", + "voter": "yarly" + }, + { + "rshares": "267188192", + "voter": "yarly2" + }, + { + "rshares": "267587944", + "voter": "yarly3" + }, + { + "rshares": "154579129", + "voter": "yarly4" + }, + { + "rshares": "155451862", + "voter": "yarly5" + }, + { + "rshares": "88607961", + "voter": "yarly7" + }, + { + "rshares": "50626015", + "voter": "steemchain" + }, + { + "rshares": "50626015", + "voter": "whalepool" + }, + { + "rshares": "6114654934", + "voter": "summonerrk" + }, + { + "rshares": "12098269394", + "voter": "webdeals" + }, + { + "rshares": "231254136", + "voter": "alexbezimeni" + }, + { + "rshares": "17267307497", + "voter": "proto" + }, + { + "rshares": "7222569746", + "voter": "sisterholics" + }, + { + "rshares": "428868451", + "voter": "yarly10" + }, + { + "rshares": "229507420", + "voter": "yarly11" + }, + { + "rshares": "80241480", + "voter": "yarly12" + }, + { + "rshares": "412825844", + "voter": "fnait" + }, + { + "rshares": "366755128", + "voter": "keepcalmand" + }, + { + "rshares": "180668119", + "voter": "kibela" + }, + { + "rshares": "3084130055", + "voter": "dmilash" + }, + { + "rshares": "13626326152", + "voter": "mahekg" + }, + { + "rshares": "50578642550", + "voter": "gomeravibz" + }, + { + "rshares": "8734139434", + "voter": "taker" + }, + { + "rshares": "6521104126", + "voter": "nekromarinist" + }, + { + "rshares": "6895440187", + "voter": "theprophet" + }, + { + "rshares": "255409573883", + "voter": "laonie" + }, + { + "rshares": "24562026280", + "voter": "laoyao" + }, + { + "rshares": "7994566199", + "voter": "myfirst" + }, + { + "rshares": "51844874813", + "voter": "somebody" + }, + { + "rshares": "1938440237", + "voter": "flysaga" + }, + { + "rshares": "2084695835", + "voter": "gmurph" + }, + { + "rshares": "68250832", + "voter": "missmishel623" + }, + { + "rshares": "11452948850", + "voter": "midnightoil" + }, + { + "rshares": "2280336943", + "voter": "kalimor" + }, + { + "rshares": "4190335896", + "voter": "ullikume" + }, + { + "rshares": "28645142464", + "voter": "xiaohui" + }, + { + "rshares": "1293627572", + "voter": "elfkitchen" + }, + { + "rshares": "102434307703", + "voter": "joele" + }, + { + "rshares": "5855564372", + "voter": "oflyhigh" + }, + { + "rshares": "895565145", + "voter": "xiaokongcom" + }, + { + "rshares": "12687522802", + "voter": "gargon" + }, + { + "rshares": "2076619689", + "voter": "natalymaty" + }, + { + "rshares": "84763896", + "voter": "numberone" + }, + { + "rshares": "62760150", + "voter": "diamonds" + }, + { + "rshares": "1805296575", + "voter": "xianjun" + }, + { + "rshares": "3251259359", + "voter": "unrealisback" + }, + { + "rshares": "11292536945", + "voter": "borran" + }, + { + "rshares": "93805187965", + "voter": "miacats" + }, + { + "rshares": "118219525", + "voter": "microluck" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "2022625104", + "voter": "chinadaily" + }, + { + "rshares": "84708065280", + "voter": "serejandmyself" + }, + { + "rshares": "106144628", + "voter": "pollina" + }, + { + "rshares": "2958177650", + "voter": "macartem" + }, + { + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "rshares": "10691300360", + "voter": "jaredcwillis" + }, + { + "rshares": "2982676167", + "voter": "netaterra" + }, + { + "rshares": "59171026", + "voter": "piezolit" + }, + { + "rshares": "6069996297", + "voter": "trev" + }, + { + "rshares": "1152952998", + "voter": "leno4ek" + }, + { + "rshares": "33111928321", + "voter": "daut44" + }, + { + "rshares": "5475437205", + "voter": "contentjunkie" + }, + { + "rshares": "7779288318", + "voter": "einsteinpotsdam" + }, + { + "rshares": "5053600817", + "voter": "richardcrill" + }, + { + "rshares": "2205784762", + "voter": "jeremyfromwi" + }, + { + "rshares": "2056057288", + "voter": "eight-rad" + }, + { + "rshares": "5012661990", + "voter": "nadin3" + }, + { + "rshares": "3411072843", + "voter": "xanoxt" + }, + { + "rshares": "1661520978", + "voter": "davidjkelley" + }, + { + "rshares": "27677639861", + "voter": "sponge-bob" + }, + { + "rshares": "15570931627", + "voter": "digital-wisdom" + }, + { + "rshares": "3710931796", + "voter": "ethical-ai" + }, + { + "rshares": "6831306526", + "voter": "jwaser" + }, + { + "rshares": "1086106040", + "voter": "tatianka" + }, + { + "rshares": "55281264", + "voter": "apparat" + }, + { + "rshares": "14097243573", + "voter": "cryptobiker" + }, + { + "rshares": "54182817", + "voter": "analyzethis" + }, + { + "rshares": "2675492964", + "voter": "bwaser" + }, + { + "rshares": "54949117", + "voter": "doggnostic" + }, + { + "rshares": "54665234", + "voter": "jenny-talls" + }, + { + "rshares": "27671309914", + "voter": "brains" + }, + { + "rshares": "53671263", + "voter": "waldemar-kuhn" + }, + { + "rshares": "1359518638", + "voter": "steemafon" + }, + { + "rshares": "5753400992", + "voter": "chick1" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "51568971", + "voter": "typingagent" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "339287005", + "voter": "anomaly" + }, + { + "rshares": "2401284424", + "voter": "ellepdub" + }, + { + "rshares": "12115548081", + "voter": "herpetologyguy" + }, + { + "rshares": "4816962742", + "voter": "morgan.waser" + }, + { + "rshares": "51232949", + "voter": "dragonice" + }, + { + "rshares": "51230296", + "voter": "steemq" + }, + { + "rshares": "51218466", + "voter": "weare" + }, + { + "rshares": "1258359388", + "voter": "anns" + }, + { + "rshares": "50875769", + "voter": "cyan" + }, + { + "rshares": "50871059", + "voter": "motion" + }, + { + "rshares": "50791473", + "voter": "synereo" + }, + { + "rshares": "50572441", + "voter": "unilever" + }, + { + "rshares": "1871969417", + "voter": "bapparabi" + }, + { + "rshares": "50532230", + "voter": "friends" + }, + { + "rshares": "3689824509", + "voter": "strong-ai" + }, + { + "rshares": "53738244", + "voter": "ivanakamoto" + }, + { + "rshares": "516546553", + "voter": "grisha-danunaher" + }, + { + "rshares": "213848535", + "voter": "sjamayee" + }, + { + "rshares": "2974116451", + "voter": "htyfn" + }, + { + "rshares": "162904624", + "voter": "allianz" + }, + { + "rshares": "1630350803", + "voter": "rusteemitblog" + }, + { + "rshares": "161815656", + "voter": "ranger" + }, + { + "rshares": "444435987", + "voter": "witchcraftblog" + }, + { + "rshares": "161693690", + "voter": "shadowproject" + }, + { + "rshares": "161205518", + "voter": "acute" + }, + { + "rshares": "161179339", + "voter": "bethesda" + }, + { + "rshares": "159352476", + "voter": "panic" + }, + { + "rshares": "159318360", + "voter": "stimmt" + }, + { + "rshares": "159062820", + "voter": "rule" + }, + { + "rshares": "158560941", + "voter": "steemthis" + }, + { + "rshares": "158486055", + "voter": "zendesk" + }, + { + "rshares": "68013381", + "voter": "storage" + }, + { + "rshares": "157667385", + "voter": "cbd" + }, + { + "rshares": "157667385", + "voter": "junk" + }, + { + "rshares": "157682838", + "voter": "hug" + }, + { + "rshares": "157682838", + "voter": "bearcub" + }, + { + "rshares": "157682809", + "voter": "cyberpunk" + }, + { + "rshares": "156919204", + "voter": "keisha" + }, + { + "rshares": "58460105", + "voter": "blackmarket" + }, + { + "rshares": "61530871", + "voter": "gifts" + }, + { + "rshares": "156919175", + "voter": "int" + }, + { + "rshares": "1593664040", + "voter": "steemlift" + } + ], + "author": "serejandmyself", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "#### Hey guys, welcome to the first chapter of my new novel.\n#### It is a mixture of 3 time lines, with 19th century, modern day and ancient times. The genre is probably something you would call a mixture of sci-fi, mystery, adventure and a bit more. \n#### Well, I welcome you to be the judge...\n\n

[![b801c049484636e0faf71f56cca03864c0bd6.jpg](https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg)](https://www.steemimg.com/image/1wrYT)

\n\n__________________________________\n\n**Chapter ONE**\n\nIt seemed as nothing was different in yet another cold and slightly windy London evening. The smog from the river was rising up as usual and the chilly wind would bring the smell up to the embankment, where Charles was taking a rest, sitting down on his favorite bench. \n\nFrom here he could see the might of the power station from across the river and something was special in the way those chimneys threw out the smoke onto the city. \n\nHe just finished his walk along his usual route, walking amongst the cemetery outside the chapel. It always amused him; that mix of emotion and sorrow amongst the busy city people, especially during the busy afternoon hours.\n\nThat rusty smell kept mixing with up with the light freshness of the leaves from the tree nearby Charles\u2019s bench. As he threw a brief glimpse onto the clock on the parliament building he noticed that the small arrow was on 45 minutes\u2026 \n\nSuddenly he heard a murmur of horses; he turned his head before he could finish realizing what time it was. He saw that just a few yards up the road two horse carriages didn\u2019t manage to share the drive way. \n\n
[![Saratogacarriagec5af5.jpg](https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg)](https://www.steemimg.com/image/1w1bI)
\n\nOne of the coachmen was shouting something and angrily waving his hands. Charles was able to see from here that the coachmen\u2019s grey clothing was partially covered in dirt, probably from the splash of the puddles from underneath the wheels. \n\nThe coachmen kept shouting something, Charles was unable to see the second carriage from where he was sitting, but was able to see some passersby, that starting to gather around the incident.\n\nIt was obvious that, just like him, those people had nothing better to do on this late afternoon then to watch in amusement the accident in the middle of the avenue.\n\nJust as Charles was starting to lose interest in the whole situation, the door of the cab that Charles could see, opened and a man dressed in a black suit and holding a pipe stepped out. He calmly put his hand in the upper inner pocket of the suit and pulled out some coins. The man made two steps up to driver and handed him the coins. At this moment the driver stopped shouting for a moment and it was clear from the look on his face that he was confused. \n\nThe cab driver counted the coins and said something to the man in the suit, the passenger didn\u2019t answer. He turned around and started to walk in the direction of the chapel. The cab driver clearly wasn\u2019t happy. He started to shout once again, but this time at the passenger. While the cab driver turned his attention to the passenger, Charles noticed how the second carriage that was involved in the accident managed to move a few yards back.\n\nIt was a much smaller carriage, and the driver was clearly seeable to Charles now. He seemed somewhat happy that he was not in the middle of the light anymore; he hurryingly turned the carriage and the horse around and started to move also in the direction of the chapel. \n\nAt this moment the driver of the first carriage started to lose interest in shouting and decided to clean himself up. As he started to calm down, the bemused passersby begun to walk back to where they were heading and Charles also turned his head back towards the power station.\n\nCharles was so busy watching the situation unfold that he didn\u2019t noticed that the passenger of the first carriage crossed the road and was now heading not towards the chapel anymore, but exactly in the other direction, towards the grey bench that Charles was sitting on.\n\nAt first Charles didn\u2019t pay any attention to just another man who was walking by. But then he noticed that calm walk of his and it hit him that this was the same passenger from the carriage.\n\n\u201cExcuse me sir?\u201d said Charles as the man closed up to the bench. \u201cYou are the gentleman from the carriage, aren\u2019t you?\u201d \u201cI saw you a minute ago, what happened?\u201d\n\nThe man stopped to walk and shared a look with Charles; he calmly sat down beside him and carried on smoking his pipe, as he was not hearing the questions Charles asked him. \n\n\u201cI do apologies for the intervention, but you must not be local, I can tell by your calmness, all the folks round here are always in a hurry\u201d Charles carried on talking as if not noticing that the man was ignoring him. \n\nAll of a sudden the weather begun to change, wind started to blow stronger and the few leaves that the tree was holding blew in the direction of the bench. The smell from the river rose up and as if that wasn\u2019t enough Charles felt like a small rain drop hit his head. He could clearly see the green water from where he was sitting through the decorations holes of the embankments fence. It was clear that it will start to rain soon by the appearing circles on the top of the river.\n\nAfter a few minutes of quietly seating by his new neighbor Charles caught himself looking at the clock on the tower, once again he saw the small arrow on 45 minutes\u2026\n\n\u201cAnd what do we pay the government for?\u201d \u201cIt would feel though they are taking our money and spend it on their fancy hats and suits, don\u2019t you find?\u201d Said Charles.\n\nAt this point the man took out the pipe into his left hand and begun to cough. After he finished coughing Charles heard him speak, at this point Charles understood that for some reason he would remember this moment for a long time to come. \n\n\u201cIt is likely to assume that they deserve to spend the money they earn\u201d Said the man, his voice was quite low and he had a certain accent Charles could quite catch.\n\n\u201cI don\u2019t think that money is of importance nowadays\u201d Said the man.\n\nCharles looked at the man with a smile - \u201cWhat is of importance? One might assume that philosophically speaking, importance can be found in nothing but what is good to us\u201d.\n\n\u201cNo body knows what can be important to others if we carry on like this, then\u2026\u201d Charles didn\u2019t finish his sentence as the man turned away from him and looked the other way. He then turned his head back and Charles noticed his eyes. His eyes were nothing like what Charles had seen before, they looked as though they were glass like and the as if they were blank, there was nothing behind them.\n\n\u201cWhat is important is that I am here now and that it is happening today. It is important to live your life because, just like your life Charles, it has an end\u201d, the man looked somewhat happy when he said that and Charles jumped back on the bench a little, he felt a small shiver run down his spine.\n\n\u201cWhat? How do you know my name sir? Have you been following me?\u201d questions were racing through Charles\u2019s mind. \n\n\u201cAs I said, this is now of importance. You life can find its end today when you get back to your gallery in your cold basement on Kinnerton street or you might listen to me and\u2026\u201d Charles didn\u2019t let the man finish his sentence. He jumped up from the bench; his cane flew within millimeters of the stranger leg as he jumped.\n\n\u201cHow dare you sir? Who gives you the right\u2026\u201d Charles raised his voice, he never allowed himself to raise his voice at a stranger beforehand.\n\n\u201cI think this conversation is over!\u201d exclaimed Charles. \u201cThat would be your choice\u201d replied the man, \u201cDo you think the time is right?\u201d \n\nCharles had already turned away in anger and was about to make his first step away. Something in the words of the man about the time made him think for a second, thoughts raced through his mind. The number 45 and the small arrow of the parliament clock were stuck in his head. \n\n\u201cI don\u2019t understand said Charles\u2026\u201d he turned his head back towards the clock; the arrow was still on 45 minutes. \u201cHow is that possible?\u201d Charles turned his head to the man, but there was no one on the bench. \n\nCharles begun to search the street rapidly with his eyes, it didn\u2019t even occur to him that it was heavily raining until that moment. \n\n
[![tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif](https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif)](https://www.steemimg.com/image/1w5tK)
\n\nThe streets were empty; there were no carriages or people to be seen around. Feeling scared he turned his head to the clock once again \u2013 \u201cHow can it still be 45 minutes...\u201d Charles was speaking out loud.\n\nThe next moment he felt like his knees weakened, his head was swirling and he dropped his cane, last thing he could hear was the clinging the of the cane\u2019s handle against the pavement. His thoughts mixed up with his eyesight; the man and his pipe, the handle of the clock, the carriage, the passersby, the power stations smoke\u2026\n \n_________________________________\n\n#### Follow me @serejandmyself for more \n\nImage credit - [1](https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/) ; [2](https://giphy.com/search/carriage) ; [3](http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html) ;", + "category": "story", + "children": 2, + "created": "2016-09-15T17:23:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg", + "https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg", + "https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif" + ], + "links": [ + "https://www.steemimg.com/image/1wrYT", + "https://www.steemimg.com/image/1w1bI", + "https://www.steemimg.com/image/1w5tK", + "https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/", + "https://giphy.com/search/carriage", + "http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html" + ], + "tags": [ + "story", + "fiction", + "scifi", + "mystery", + "writing" + ], + "users": [ + "serejandmyself" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66871297900441, + "payout": 259.423, + "payout_at": "2016-09-22T17:23:48", + "pending_payout_value": "259.423 HBD", + "percent_hbd": 10000, + "permlink": "captured-by-time-an-original-novel-chapter-1", + "post_id": 1256421, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 229 + }, + "title": "CAPTURED BY TIME (An Original Novel - Chapter 1)", + "updated": "2016-09-15T17:23:48", + "url": "/story/@serejandmyself/captured-by-time-an-original-novel-chapter-1" + }, + { + "active_votes": [ + { + "rshares": "494637006894", + "voter": "barrie" + }, + { + "rshares": "7710245013992", + "voter": "steempty" + }, + { + "rshares": "30984805998710", + "voter": "smooth" + }, + { + "rshares": "289667785336", + "voter": "anonymous" + }, + { + "rshares": "14447196140450", + "voter": "summon" + }, + { + "rshares": "681484074723", + "voter": "eternity" + }, + { + "rshares": "36033200189196", + "voter": "jamesc" + }, + { + "rshares": "4574334081535", + "voter": "riverhead" + }, + { + "rshares": "7015534059816", + "voter": "wackou" + }, + { + "rshares": "2160925860071", + "voter": "badassmother" + }, + { + "rshares": "2051034289892", + "voter": "hr1" + }, + { + "rshares": "6466290924028", + "voter": "fuzzyvest" + }, + { + "rshares": "118485787519", + "voter": "sandra" + }, + { + "rshares": "5339100755934", + "voter": "kushed" + }, + { + "rshares": "1674029296934", + "voter": "silver" + }, + { + "rshares": "4063925838557", + "voter": "silversteem" + }, + { + "rshares": "128324636011", + "voter": "svk" + }, + { + "rshares": "1126556112870", + "voter": "ihashfury" + }, + { + "rshares": "1019287149109", + "voter": "liondani" + }, + { + "rshares": "2937247386101", + "voter": "wang" + }, + { + "rshares": "23332152248", + "voter": "jaewoocho" + }, + { + "rshares": "1910071941344", + "voter": "xeroc" + }, + { + "rshares": "6514602351120", + "voter": "complexring" + }, + { + "rshares": "1731498672998", + "voter": "joseph" + }, + { + "rshares": "90517391466", + "voter": "aizensou" + }, + { + "rshares": "4166462346763", + "voter": "au1nethyb1" + }, + { + "rshares": "475419579220", + "voter": "recursive2" + }, + { + "rshares": "462210569737", + "voter": "recursive3" + }, + { + "rshares": "651686683150", + "voter": "masteryoda" + }, + { + "rshares": "3254899228205", + "voter": "recursive" + }, + { + "rshares": "1209033907", + "voter": "mineralwasser" + }, + { + "rshares": "6756071314", + "voter": "bingo-0" + }, + { + "rshares": "1718241828", + "voter": "bingo-1" + }, + { + "rshares": "5801165470383", + "voter": "smooth.witness" + }, + { + "rshares": "1330827857292", + "voter": "steempower" + }, + { + "rshares": "425345638228", + "voter": "officialfuzzy" + }, + { + "rshares": "1215800936456", + "voter": "cass" + }, + { + "rshares": "10365366239", + "voter": "idol" + }, + { + "rshares": "816021167585", + "voter": "steemrollin" + }, + { + "rshares": "5043750251", + "voter": "sakr" + }, + { + "rshares": "64509999367", + "voter": "bangking" + }, + { + "rshares": "296422841257", + "voter": "chitty" + }, + { + "rshares": "8231062957", + "voter": "unosuke" + }, + { + "rshares": "3109726595", + "voter": "yefet" + }, + { + "rshares": "8209280181", + "voter": "khanhsang" + }, + { + "rshares": "1784486145", + "voter": "jocelyn" + }, + { + "rshares": "85258511340", + "voter": "acidsun" + }, + { + "rshares": "14485500439", + "voter": "gregory-f" + }, + { + "rshares": "17261905745", + "voter": "jademont" + }, + { + "rshares": "74893360972", + "voter": "eeks" + }, + { + "rshares": "488526217", + "voter": "paco-steem" + }, + { + "rshares": "5883825852", + "voter": "spaninv" + }, + { + "rshares": "-12087903048", + "voter": "james-show" + }, + { + "rshares": "336429919201", + "voter": "teamsteem" + }, + { + "rshares": "8667563285", + "voter": "richman" + }, + { + "rshares": "13068852902", + "voter": "acidyo" + }, + { + "rshares": "174506653297", + "voter": "steve-walschot" + }, + { + "rshares": "9836158141", + "voter": "kefkius" + }, + { + "rshares": "58639157917", + "voter": "oaldamster" + }, + { + "rshares": "268816966", + "voter": "coar" + }, + { + "rshares": "100988550788", + "voter": "asch" + }, + { + "rshares": "629740296743", + "voter": "kevinwong" + }, + { + "rshares": "1414344480", + "voter": "murh" + }, + { + "rshares": "6372449504", + "voter": "cryptofunk" + }, + { + "rshares": "16733609471", + "voter": "b4bb4r-5h3r" + }, + { + "rshares": "579449391", + "voter": "kodi" + }, + { + "rshares": "2326310189", + "voter": "error" + }, + { + "rshares": "206727143370", + "voter": "dragonslayer109" + }, + { + "rshares": "5853981249", + "voter": "marta-zaidel" + }, + { + "rshares": "1064576926325", + "voter": "cyber" + }, + { + "rshares": "61678758152", + "voter": "theshell" + }, + { + "rshares": "425799805812", + "voter": "taoteh1221" + }, + { + "rshares": "418804855", + "voter": "applecrisp" + }, + { + "rshares": "381169481", + "voter": "stiletto" + }, + { + "rshares": "383436160153", + "voter": "hedge-x" + }, + { + "rshares": "56682792316", + "voter": "juanmiguelsalas" + }, + { + "rshares": "572341707403", + "voter": "andrarchy" + }, + { + "rshares": "48485320682", + "voter": "thecryptodrive" + }, + { + "rshares": "1380704224", + "voter": "fjccoin" + }, + { + "rshares": "563704760996", + "voter": "infovore" + }, + { + "rshares": "13622725061", + "voter": "facer" + }, + { + "rshares": "210189819099", + "voter": "alexc" + }, + { + "rshares": "4866103974", + "voter": "tee-em" + }, + { + "rshares": "32185020754", + "voter": "michaelx" + }, + { + "rshares": "5946920606", + "voter": "mark-waser" + }, + { + "rshares": "17023109715", + "voter": "albertogm" + }, + { + "rshares": "111322975376", + "voter": "geoffrey" + }, + { + "rshares": "6609454107", + "voter": "tyler-fletcher" + }, + { + "rshares": "81716838174", + "voter": "razvanelulmarin" + }, + { + "rshares": "2251029884", + "voter": "superfreek" + }, + { + "rshares": "497689345", + "voter": "mrhankeh" + }, + { + "rshares": "35378265315", + "voter": "clement" + }, + { + "rshares": "32849189476", + "voter": "acassity" + }, + { + "rshares": "280886491", + "voter": "ladyclair" + }, + { + "rshares": "68448307991", + "voter": "bacchist" + }, + { + "rshares": "29507132066", + "voter": "venuspcs" + }, + { + "rshares": "189899541322", + "voter": "asmolokalo" + }, + { + "rshares": "57789275837", + "voter": "good-karma" + }, + { + "rshares": "462726697228", + "voter": "roelandp" + }, + { + "rshares": "1642746247", + "voter": "gidlark" + }, + { + "rshares": "3281446057", + "voter": "orly" + }, + { + "rshares": "3822074668", + "voter": "getssidetracked" + }, + { + "rshares": "250280584", + "voter": "mstang83" + }, + { + "rshares": "18842493961", + "voter": "hakise" + }, + { + "rshares": "366200786008", + "voter": "fabio" + }, + { + "rshares": "15993709711", + "voter": "yogi.artist" + }, + { + "rshares": "103519364", + "voter": "strawhat" + }, + { + "rshares": "16242543792", + "voter": "r4fken" + }, + { + "rshares": "102589641", + "voter": "cryptochannel" + }, + { + "rshares": "154460522305", + "voter": "derekareith" + }, + { + "rshares": "134342335542", + "voter": "slowwalker" + }, + { + "rshares": "234221482", + "voter": "dzweta" + }, + { + "rshares": "2304777789", + "voter": "vi1son" + }, + { + "rshares": "167273913111", + "voter": "knircky" + }, + { + "rshares": "18842550092", + "voter": "ausbitbank" + }, + { + "rshares": "167108122163", + "voter": "jacor" + }, + { + "rshares": "243777568", + "voter": "ardina" + }, + { + "rshares": "1422705803", + "voter": "mixa" + }, + { + "rshares": "18005198739", + "voter": "sebastien" + }, + { + "rshares": "3519456066", + "voter": "taurus" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "11694816243", + "voter": "asim" + }, + { + "rshares": "321595915706", + "voter": "jesta" + }, + { + "rshares": "33655847643", + "voter": "toxonaut" + }, + { + "rshares": "109259290", + "voter": "snowden" + }, + { + "rshares": "4602737482", + "voter": "thegoodguy" + }, + { + "rshares": "129723551811", + "voter": "paco" + }, + { + "rshares": "1107683133", + "voter": "karen13" + }, + { + "rshares": "24478695193", + "voter": "igster" + }, + { + "rshares": "73113648749", + "voter": "jpiper20" + }, + { + "rshares": "2722560234", + "voter": "dmacshady" + }, + { + "rshares": "32333061210", + "voter": "pkattera" + }, + { + "rshares": "19237325288", + "voter": "anduweb" + }, + { + "rshares": "10485943136", + "voter": "shla-rafia" + }, + { + "rshares": "46825725594", + "voter": "milestone" + }, + { + "rshares": "7311652491", + "voter": "lichtblick" + }, + { + "rshares": "35770229729", + "voter": "creemej" + }, + { + "rshares": "91938017", + "voter": "wildchild" + }, + { + "rshares": "126704886218", + "voter": "demotruk" + }, + { + "rshares": "3638341233", + "voter": "maximkichev" + }, + { + "rshares": "2506537211", + "voter": "the-future" + }, + { + "rshares": "4381902261", + "voter": "adamt" + }, + { + "rshares": "865281681", + "voter": "sebhaj" + }, + { + "rshares": "24903536535", + "voter": "phenom" + }, + { + "rshares": "2828187420", + "voter": "sgnsteems" + }, + { + "rshares": "175156042246", + "voter": "blueorgy" + }, + { + "rshares": "9702073568", + "voter": "benjiberigan" + }, + { + "rshares": "339108457006", + "voter": "calaber24p" + }, + { + "rshares": "7168473448", + "voter": "geronimo" + }, + { + "rshares": "4923764236", + "voter": "bitcoiner" + }, + { + "rshares": "3756065125", + "voter": "tarindel" + }, + { + "rshares": "92046641189", + "voter": "rea" + }, + { + "rshares": "53840923427", + "voter": "jl777" + }, + { + "rshares": "30194118400", + "voter": "zaebars" + }, + { + "rshares": "35105109840", + "voter": "paquito" + }, + { + "rshares": "1772149995", + "voter": "yarly" + }, + { + "rshares": "267173384", + "voter": "yarly2" + }, + { + "rshares": "267573135", + "voter": "yarly3" + }, + { + "rshares": "154579129", + "voter": "yarly4" + }, + { + "rshares": "155451862", + "voter": "yarly5" + }, + { + "rshares": "88607961", + "voter": "yarly7" + }, + { + "rshares": "780100857", + "voter": "raymonjohnstone" + }, + { + "rshares": "50619397", + "voter": "steemchain" + }, + { + "rshares": "50619397", + "voter": "whalepool" + }, + { + "rshares": "506354306", + "voter": "gustavopasquini" + }, + { + "rshares": "206059171", + "voter": "sergey44" + }, + { + "rshares": "114721821", + "voter": "mxo8" + }, + { + "rshares": "1234205003", + "voter": "mohammed123" + }, + { + "rshares": "21120708735", + "voter": "krabgat" + }, + { + "rshares": "2763375206", + "voter": "favorit" + }, + { + "rshares": "4543618384", + "voter": "proto" + }, + { + "rshares": "634042636", + "voter": "curator" + }, + { + "rshares": "428809375", + "voter": "yarly10" + }, + { + "rshares": "229507420", + "voter": "yarly11" + }, + { + "rshares": "16468884512", + "voter": "michaeldodridge" + }, + { + "rshares": "80241480", + "voter": "yarly12" + }, + { + "rshares": "46743296544", + "voter": "celebr1ty" + }, + { + "rshares": "11567632851", + "voter": "dimitarj" + }, + { + "rshares": "142823483", + "voter": "steemster1" + }, + { + "rshares": "25747727433", + "voter": "fabien" + }, + { + "rshares": "817422571", + "voter": "bullionstackers" + }, + { + "rshares": "250094985729", + "voter": "originate" + }, + { + "rshares": "3021945641", + "voter": "dmilash" + }, + { + "rshares": "2214910466", + "voter": "jillstein2016" + }, + { + "rshares": "110940646", + "voter": "cryptoz" + }, + { + "rshares": "3302445446", + "voter": "glitterpig" + }, + { + "rshares": "6338015068", + "voter": "uwe69" + }, + { + "rshares": "6276554782", + "voter": "shortcut" + }, + { + "rshares": "115422843193", + "voter": "steemdrive" + }, + { + "rshares": "947490604", + "voter": "metaflute" + }, + { + "rshares": "52093680889", + "voter": "gomeravibz" + }, + { + "rshares": "2298221146", + "voter": "taker" + }, + { + "rshares": "6519151447", + "voter": "nekromarinist" + }, + { + "rshares": "57873464", + "voter": "sharon" + }, + { + "rshares": "240147448", + "voter": "frozendota" + }, + { + "rshares": "15408983536", + "voter": "felixxx" + }, + { + "rshares": "1571831658", + "voter": "whitemike313" + }, + { + "rshares": "3034673286", + "voter": "merej99" + }, + { + "rshares": "58971492", + "voter": "lillianjones" + }, + { + "rshares": "160728582794", + "voter": "twinner" + }, + { + "rshares": "24365622803", + "voter": "rawnetics" + }, + { + "rshares": "54215689285", + "voter": "sextusempiricus" + }, + { + "rshares": "24019048233", + "voter": "laonie1" + }, + { + "rshares": "25067031014", + "voter": "laonie2" + }, + { + "rshares": "25075820795", + "voter": "laonie3" + }, + { + "rshares": "6338796297", + "voter": "brendio" + }, + { + "rshares": "2082633772", + "voter": "gmurph" + }, + { + "rshares": "80533628422", + "voter": "timsaid" + }, + { + "rshares": "2375350982", + "voter": "kalimor" + }, + { + "rshares": "63541793", + "voter": "coderg" + }, + { + "rshares": "2868848889", + "voter": "darrenturetzky" + }, + { + "rshares": "56886318", + "voter": "michellek" + }, + { + "rshares": "25071217681", + "voter": "laonie4" + }, + { + "rshares": "25068579591", + "voter": "laonie5" + }, + { + "rshares": "25065597250", + "voter": "laonie6" + }, + { + "rshares": "25061528883", + "voter": "laonie7" + }, + { + "rshares": "5480906296", + "voter": "kurtbeil" + }, + { + "rshares": "25057888093", + "voter": "laonie8" + }, + { + "rshares": "25055101904", + "voter": "laonie9" + }, + { + "rshares": "3229522119", + "voter": "steemleak" + }, + { + "rshares": "112040172638", + "voter": "thisisbenbrick" + }, + { + "rshares": "4269542847", + "voter": "antfield" + }, + { + "rshares": "7834943379", + "voter": "mevilkingdom" + }, + { + "rshares": "60240401", + "voter": "locolote" + }, + { + "rshares": "368648608", + "voter": "riosparada" + }, + { + "rshares": "11282370272", + "voter": "ekitcho" + }, + { + "rshares": "115248537", + "voter": "bigsambucca" + }, + { + "rshares": "93215140213", + "voter": "joele" + }, + { + "rshares": "2215228183", + "voter": "paynode" + }, + { + "rshares": "79785139", + "voter": "dims" + }, + { + "rshares": "2455226384", + "voter": "pgarcgo" + }, + { + "rshares": "1434064827", + "voter": "hms818" + }, + { + "rshares": "40210689203", + "voter": "nonlinearone" + }, + { + "rshares": "59437351", + "voter": "msjennifer" + }, + { + "rshares": "54654502", + "voter": "ciao" + }, + { + "rshares": "3667415885", + "voter": "villainblack" + }, + { + "rshares": "52985539", + "voter": "steemo" + }, + { + "rshares": "52848854", + "voter": "steema" + }, + { + "rshares": "16997336414", + "voter": "plasticfuzzy" + }, + { + "rshares": "74615731", + "voter": "evgenyche" + }, + { + "rshares": "69662169", + "voter": "confucius" + }, + { + "rshares": "70633121", + "voter": "stevescriber" + }, + { + "rshares": "4179438198", + "voter": "bledarus" + }, + { + "rshares": "53688127", + "voter": "loli" + }, + { + "rshares": "93744050986", + "voter": "miacats" + }, + { + "rshares": "53661976", + "voter": "jarvis" + }, + { + "rshares": "77220767", + "voter": "razberrijam" + }, + { + "rshares": "6669342810", + "voter": "rubenalexander" + }, + { + "rshares": "51899170", + "voter": "fortuner" + }, + { + "rshares": "9443278113", + "voter": "pjheinz" + }, + { + "rshares": "3054149279", + "voter": "virtualgrowth" + }, + { + "rshares": "84068339484", + "voter": "neptun" + }, + { + "rshares": "11375408076", + "voter": "gvargas123" + }, + { + "rshares": "50698107", + "voter": "johnbyrd" + }, + { + "rshares": "50682252", + "voter": "thomasaustin" + }, + { + "rshares": "50680459", + "voter": "thermor" + }, + { + "rshares": "50691211", + "voter": "ficholl" + }, + { + "rshares": "50673817", + "voter": "widell" + }, + { + "rshares": "50311250", + "voter": "revelbrooks" + }, + { + "rshares": "25048684602", + "voter": "laonie10" + }, + { + "rshares": "91779459", + "voter": "lasseehlers" + }, + { + "rshares": "377542979", + "voter": "mrlogic" + }, + { + "rshares": "2982178419", + "voter": "netaterra" + }, + { + "rshares": "54361669", + "voter": "bitchplease" + }, + { + "rshares": "78411391", + "voter": "joelbow" + }, + { + "rshares": "5764641330", + "voter": "hilarski" + }, + { + "rshares": "3133328104", + "voter": "imag1ne" + }, + { + "rshares": "2080442949", + "voter": "shadowspub" + }, + { + "rshares": "80071335", + "voter": "justinschwalm" + }, + { + "rshares": "50416427", + "voter": "curpose" + }, + { + "rshares": "17920360614", + "voter": "takethecannoli" + }, + { + "rshares": "1208491149", + "voter": "lenar" + }, + { + "rshares": "1699015883", + "voter": "runridefly" + }, + { + "rshares": "88019548", + "voter": "uziriel" + }, + { + "rshares": "2212170971", + "voter": "steemitguide" + }, + { + "rshares": "7470990325", + "voter": "einsteinpotsdam" + }, + { + "rshares": "4592852638", + "voter": "richardcrill" + }, + { + "rshares": "24180906457", + "voter": "laonie11" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "3336919086", + "voter": "xanoxt" + }, + { + "rshares": "1660688801", + "voter": "davidjkelley" + }, + { + "rshares": "50593879", + "voter": "crion" + }, + { + "rshares": "50271139", + "voter": "hitherise" + }, + { + "rshares": "50262756", + "voter": "wiss" + }, + { + "rshares": "42587324218", + "voter": "sponge-bob" + }, + { + "rshares": "4656328113", + "voter": "l0k1" + }, + { + "rshares": "15560806947", + "voter": "digital-wisdom" + }, + { + "rshares": "3708768210", + "voter": "ethical-ai" + }, + { + "rshares": "51939094", + "voter": "freesteem" + }, + { + "rshares": "51061585", + "voter": "jamespro" + }, + { + "rshares": "51033798", + "voter": "stroully" + }, + { + "rshares": "3079499780", + "voter": "maryfromsochi" + }, + { + "rshares": "6827381497", + "voter": "jwaser" + }, + { + "rshares": "50712038", + "voter": "thadm" + }, + { + "rshares": "50710305", + "voter": "prof" + }, + { + "rshares": "50370757", + "voter": "yorsens" + }, + { + "rshares": "212837202380", + "voter": "asksisk" + }, + { + "rshares": "50065875", + "voter": "bane" + }, + { + "rshares": "50059754", + "voter": "vive" + }, + { + "rshares": "50054445", + "voter": "coad" + }, + { + "rshares": "26903512125", + "voter": "dubi" + }, + { + "rshares": "2674022812", + "voter": "bwaser" + }, + { + "rshares": "50840303", + "voter": "sofa" + }, + { + "rshares": "52910800", + "voter": "roadhog" + }, + { + "rshares": "2201645172", + "voter": "alina1" + }, + { + "rshares": "659649765", + "voter": "ct-gurus" + }, + { + "rshares": "54622489", + "voter": "medafi" + }, + { + "rshares": "7708395185", + "voter": "mariandavp" + }, + { + "rshares": "63519655246", + "voter": "tracemayer" + }, + { + "rshares": "43440714161", + "voter": "brains" + }, + { + "rshares": "51278775", + "voter": "post-successful" + }, + { + "rshares": "50933404", + "voter": "ailo" + }, + { + "rshares": "5419706802", + "voter": "burnin" + }, + { + "rshares": "5749962751", + "voter": "chick1" + }, + { + "rshares": "3613469334", + "voter": "funnyman" + }, + { + "rshares": "2188505650", + "voter": "rigaronib" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "61548157", + "voter": "freebornangel" + }, + { + "rshares": "474509334", + "voter": "anomaly" + }, + { + "rshares": "27666667825", + "voter": "tarekadam" + }, + { + "rshares": "2400009033", + "voter": "ellepdub" + }, + { + "rshares": "51890765", + "voter": "gregorygarcia" + }, + { + "rshares": "61292139", + "voter": "inarix03" + }, + { + "rshares": "286977519", + "voter": "ola1" + }, + { + "rshares": "12084353453", + "voter": "herpetologyguy" + }, + { + "rshares": "50441122", + "voter": "eavy" + }, + { + "rshares": "50454901", + "voter": "roto" + }, + { + "rshares": "53055896", + "voter": "drac59" + }, + { + "rshares": "4814064056", + "voter": "morgan.waser" + }, + { + "rshares": "50602980", + "voter": "cfisher" + }, + { + "rshares": "56301561", + "voter": "stringer" + }, + { + "rshares": "50235850", + "voter": "billkappa442" + }, + { + "rshares": "1491995147", + "voter": "robotev" + }, + { + "rshares": "61035542", + "voter": "teo" + }, + { + "rshares": "4984135374", + "voter": "donchate" + }, + { + "rshares": "50708837", + "voter": "ardly" + }, + { + "rshares": "50704078", + "voter": "yotoh" + }, + { + "rshares": "827252367", + "voter": "bapparabi" + }, + { + "rshares": "50372583", + "voter": "carre" + }, + { + "rshares": "50349676", + "voter": "albertheijn" + }, + { + "rshares": "3687702565", + "voter": "strong-ai" + }, + { + "rshares": "52329350", + "voter": "ninjapainter" + }, + { + "rshares": "728357348", + "voter": "ziogio" + }, + { + "rshares": "69589512", + "voter": "igtes" + }, + { + "rshares": "141679752", + "voter": "buffett" + }, + { + "rshares": "197326430", + "voter": "sjamayee" + }, + { + "rshares": "121259976", + "voter": "comeup" + }, + { + "rshares": "1630339077", + "voter": "rusteemitblog" + }, + { + "rshares": "155476058", + "voter": "ndea30" + }, + { + "rshares": "155469045", + "voter": "domenico" + }, + { + "rshares": "444421238", + "voter": "witchcraftblog" + }, + { + "rshares": "158523226", + "voter": "shadowproject" + }, + { + "rshares": "157805871", + "voter": "serena199" + }, + { + "rshares": "154619387", + "voter": "gia7" + }, + { + "rshares": "1994519972", + "voter": "dresden" + }, + { + "rshares": "201362779", + "voter": "mgibson" + }, + { + "rshares": "154157014", + "voter": "richie4" + }, + { + "rshares": "157241455", + "voter": "coraline88" + }, + { + "rshares": "157176058", + "voter": "cybergirls" + }, + { + "rshares": "153838109", + "voter": "harlen" + }, + { + "rshares": "152057481", + "voter": "food-creator" + }, + { + "rshares": "156939548", + "voter": "yanuel" + }, + { + "rshares": "153751482", + "voter": "daritza" + }, + { + "rshares": "156847954", + "voter": "correct" + }, + { + "rshares": "156411729", + "voter": "blender" + }, + { + "rshares": "159506164", + "voter": "greenpeace" + }, + { + "rshares": "156299377", + "voter": "tipsandtricks" + }, + { + "rshares": "156261069", + "voter": "ibm1000" + }, + { + "rshares": "159352476", + "voter": "panic" + }, + { + "rshares": "156023422", + "voter": "reef" + }, + { + "rshares": "159025535", + "voter": "xtreme" + }, + { + "rshares": "155619923", + "voter": "steemwallet" + }, + { + "rshares": "81075259", + "voter": "dealzgal" + }, + { + "rshares": "89654003", + "voter": "storage" + }, + { + "rshares": "151413472", + "voter": "steemdesigner" + }, + { + "rshares": "148077602", + "voter": "dougkarr" + }, + { + "rshares": "73844343", + "voter": "blackmarket" + }, + { + "rshares": "79990132", + "voter": "gifts" + }, + { + "rshares": "171078424", + "voter": "pathtomydream" + }, + { + "rshares": "112446078", + "voter": "paulocouto" + }, + { + "rshares": "151525581", + "voter": "kevinfoesenek" + }, + { + "rshares": "144957585", + "voter": "sawgunner13" + }, + { + "rshares": "1593664040", + "voter": "steemlift" + }, + { + "rshares": "147818170", + "voter": "dirlei.sdias" + }, + { + "rshares": "135637537", + "voter": "toddemaher1" + } + ], + "author": "cass", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "![b99cea99b79d334be4815a56a64ff4f1.png](https://www.steemimg.com/images/2016/09/14/b99cea99b79d334be4815a56a64ff4f1.png)\n\n---\n\nI want to follow up on @roelandp announcement post about the steemfest.com at November 11/12/13.\n\nSome of u have noticed i'm assisting him on the preparation for the Steemfest Event in November.\nI did meet @roelandp in Amsterdam last week and was directly impressed by his passion and energy.\nSo i decided to FULL support him towards the Nov11.\n\n\n### All gotten SBD rewards will contributed towards @steemfest project \n\nSo u will have a better possibility to get a preview on how the posters will look later on \"LIVE\".\nHere we go, i was trying to make a nice small mockup collection to this cause.\n\nENJOY\n[![3a7db045b911ea8785a1e9c37c7e75a7.jpg](https://www.steemimg.com/images/2016/09/14/3a7db045b911ea8785a1e9c37c7e75a7.jpg)](https://www.steemimg.com/image/1SL5m)\n\n[![9a8268f34903dbcf5fbe06559ce7bfc6.png](https://www.steemimg.com/images/2016/09/14/9a8268f34903dbcf5fbe06559ce7bfc6.png)](https://www.steemimg.com/image/1V8e6)\n[![8f8de740d802a0bf228bd833657b1f26.jpg](https://www.steemimg.com/images/2016/09/14/8f8de740d802a0bf228bd833657b1f26.jpg)](https://www.steemimg.com/image/1SnTu)\n[![a317ccbeec3112a5d60f6f2afdf8255a.jpg](https://www.steemimg.com/images/2016/09/14/a317ccbeec3112a5d60f6f2afdf8255a.jpg)](https://www.steemimg.com/image/1SPji)\n[![bd3b5b4c18cda4d063cabc03443cb6a8.jpg](https://www.steemimg.com/images/2016/09/14/bd3b5b4c18cda4d063cabc03443cb6a8.jpg)](https://www.steemimg.com/image/1SCWB)\n[![4d16cb792150dbd9c7cca2e9eea45f9d.jpg](https://www.steemimg.com/images/2016/09/14/4d16cb792150dbd9c7cca2e9eea45f9d.jpg)](https://www.steemimg.com/image/1S62K)\n[![25943765543ef057543db7f2d5b65e28.jpg](https://www.steemimg.com/images/2016/09/14/25943765543ef057543db7f2d5b65e28.jpg)](https://www.steemimg.com/image/1SwCI)\n[![a1d1fc9af366abae551a9b443ac0441f.jpg](https://www.steemimg.com/images/2016/09/14/a1d1fc9af366abae551a9b443ac0441f.jpg)](https://www.steemimg.com/image/1Sq3h)", + "category": "steemfest", + "children": 17, + "created": "2016-09-14T14:02:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/14/b99cea99b79d334be4815a56a64ff4f1.png", + "https://www.steemimg.com/images/2016/09/14/3a7db045b911ea8785a1e9c37c7e75a7.jpg", + "https://www.steemimg.com/images/2016/09/14/9a8268f34903dbcf5fbe06559ce7bfc6.png", + "https://www.steemimg.com/images/2016/09/14/8f8de740d802a0bf228bd833657b1f26.jpg", + "https://www.steemimg.com/images/2016/09/14/a317ccbeec3112a5d60f6f2afdf8255a.jpg", + "https://www.steemimg.com/images/2016/09/14/bd3b5b4c18cda4d063cabc03443cb6a8.jpg", + "https://www.steemimg.com/images/2016/09/14/4d16cb792150dbd9c7cca2e9eea45f9d.jpg", + "https://www.steemimg.com/images/2016/09/14/25943765543ef057543db7f2d5b65e28.jpg", + "https://www.steemimg.com/images/2016/09/14/a1d1fc9af366abae551a9b443ac0441f.jpg" + ], + "links": [ + "https://www.steemimg.com/image/1SL5m", + "https://www.steemimg.com/image/1V8e6", + "https://www.steemimg.com/image/1SnTu", + "https://www.steemimg.com/image/1SPji", + "https://www.steemimg.com/image/1SCWB", + "https://www.steemimg.com/image/1S62K", + "https://www.steemimg.com/image/1SwCI", + "https://www.steemimg.com/image/1Sq3h" + ], + "tags": [ + "steemfest", + "design", + "poster", + "amsterdam" + ], + "users": [ + "roelandp", + "steemfest" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 169985783269298, + "payout": 1618.329, + "payout_at": "2016-09-21T14:02:39", + "pending_payout_value": "1618.329 HBD", + "percent_hbd": 10000, + "permlink": "steemfest-follow-up-poster-designs-sbd-rewards-will-donated-to-the-project", + "post_id": 1243377, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 386 + }, + "title": "[Steemfest] Follow up - Poster designs! SBD rewards will donated to the project!", + "updated": "2016-09-14T14:02:39", + "url": "/steemfest/@cass/steemfest-follow-up-poster-designs-sbd-rewards-will-donated-to-the-project" + }, + { + "active_votes": [ + { + "rshares": "30948708908726", + "voter": "val-a" + }, + { + "rshares": "15292900000000", + "voter": "val-b" + }, + { + "rshares": "1534352192855", + "voter": "joseph" + }, + { + "rshares": "652034182902", + "voter": "masteryoda" + }, + { + "rshares": "8927024295", + "voter": "idol" + }, + { + "rshares": "2637269453488", + "voter": "donkeypong" + }, + { + "rshares": "816386307308", + "voter": "steemrollin" + }, + { + "rshares": "4941856440", + "voter": "sakr" + }, + { + "rshares": "140357414085", + "voter": "chris4210" + }, + { + "rshares": "1536548017", + "voter": "jocelyn" + }, + { + "rshares": "83530339170", + "voter": "acidsun" + }, + { + "rshares": "1196485708874", + "voter": "gavvet" + }, + { + "rshares": "59931939963", + "voter": "eeks" + }, + { + "rshares": "6122594947", + "voter": "fernando-sanz" + }, + { + "rshares": "584270995256", + "voter": "nanzo-scoop" + }, + { + "rshares": "177415501233", + "voter": "mummyimperfect" + }, + { + "rshares": "106634401121", + "voter": "asch" + }, + { + "rshares": "603741881611", + "voter": "kevinwong" + }, + { + "rshares": "1061259321", + "voter": "murh" + }, + { + "rshares": "3187850436", + "voter": "cryptofunk" + }, + { + "rshares": "2003304335", + "voter": "error" + }, + { + "rshares": "962089879337", + "voter": "cyber" + }, + { + "rshares": "50884297723", + "voter": "ak2020" + }, + { + "rshares": "61300613738", + "voter": "justtryme90" + }, + { + "rshares": "410517349", + "voter": "applecrisp" + }, + { + "rshares": "35693164103", + "voter": "altoz" + }, + { + "rshares": "820589638514", + "voter": "anwenbaumeister" + }, + { + "rshares": "5950595929", + "voter": "mark-waser" + }, + { + "rshares": "118349796563", + "voter": "geoffrey" + }, + { + "rshares": "192325266448", + "voter": "kimziv" + }, + { + "rshares": "77083924707", + "voter": "emily-cook" + }, + { + "rshares": "3283440404", + "voter": "orly" + }, + { + "rshares": "2834957075", + "voter": "steem1653" + }, + { + "rshares": "124961861", + "voter": "cynetyc" + }, + { + "rshares": "5357326058", + "voter": "thegoodguy" + }, + { + "rshares": "4209522316", + "voter": "karen13" + }, + { + "rshares": "251366150295", + "voter": "nabilov" + }, + { + "rshares": "8401059269", + "voter": "noodhoog" + }, + { + "rshares": "455246290726", + "voter": "knozaki2015" + }, + { + "rshares": "7166494256", + "voter": "lichtblick" + }, + { + "rshares": "33739090409", + "voter": "creemej" + }, + { + "rshares": "5726411049", + "voter": "btcbtcbtc20155" + }, + { + "rshares": "163324531946", + "voter": "blueorgy" + }, + { + "rshares": "4195248338", + "voter": "poseidon" + }, + { + "rshares": "3435918746", + "voter": "simon.braki.love" + }, + { + "rshares": "268137172703", + "voter": "liberosist" + }, + { + "rshares": "4128504280", + "voter": "birdie" + }, + { + "rshares": "5609578664", + "voter": "sharker" + }, + { + "rshares": "204618259005", + "voter": "jl777" + }, + { + "rshares": "1773036384", + "voter": "yarly" + }, + { + "rshares": "267188192", + "voter": "yarly2" + }, + { + "rshares": "267587944", + "voter": "yarly3" + }, + { + "rshares": "154579129", + "voter": "yarly4" + }, + { + "rshares": "155451862", + "voter": "yarly5" + }, + { + "rshares": "88607961", + "voter": "yarly7" + }, + { + "rshares": "11031796651", + "voter": "moon32walker" + }, + { + "rshares": "258619590", + "voter": "sergey44" + }, + { + "rshares": "17267341753", + "voter": "proto" + }, + { + "rshares": "31599342155", + "voter": "sisterholics" + }, + { + "rshares": "428868451", + "voter": "yarly10" + }, + { + "rshares": "229507420", + "voter": "yarly11" + }, + { + "rshares": "80241480", + "voter": "yarly12" + }, + { + "rshares": "146224042", + "voter": "steemster1" + }, + { + "rshares": "5878023046", + "voter": "mahekg" + }, + { + "rshares": "8734150854", + "voter": "taker" + }, + { + "rshares": "6521104126", + "voter": "nekromarinist" + }, + { + "rshares": "10553169212", + "voter": "theprophet0" + }, + { + "rshares": "57873464", + "voter": "sharon" + }, + { + "rshares": "58971492", + "voter": "lillianjones" + }, + { + "rshares": "1117443990130", + "voter": "laonie" + }, + { + "rshares": "4257390614", + "voter": "twinner" + }, + { + "rshares": "4414425121", + "voter": "timcliff" + }, + { + "rshares": "38640926181", + "voter": "myfirst" + }, + { + "rshares": "233306274805", + "voter": "somebody" + }, + { + "rshares": "8723132526", + "voter": "flysaga" + }, + { + "rshares": "1667759072", + "voter": "gmurph" + }, + { + "rshares": "51539167746", + "voter": "midnightoil" + }, + { + "rshares": "4190377366", + "voter": "ullikume" + }, + { + "rshares": "128906992414", + "voter": "xiaohui" + }, + { + "rshares": "21112616587", + "voter": "jphamer1" + }, + { + "rshares": "6306539895", + "voter": "elfkitchen" + }, + { + "rshares": "102434307703", + "voter": "joele" + }, + { + "rshares": "15549176040", + "voter": "randyclemens" + }, + { + "rshares": "4030108065", + "voter": "xiaokongcom" + }, + { + "rshares": "59437351", + "voter": "msjennifer" + }, + { + "rshares": "54654502", + "voter": "ciao" + }, + { + "rshares": "52985539", + "voter": "steemo" + }, + { + "rshares": "8123975227", + "voter": "xianjun" + }, + { + "rshares": "52848854", + "voter": "steema" + }, + { + "rshares": "69662169", + "voter": "confucius" + }, + { + "rshares": "11292536945", + "voter": "borran" + }, + { + "rshares": "53661976", + "voter": "jarvis" + }, + { + "rshares": "546765304", + "voter": "microluck" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "53106127", + "voter": "fortuner" + }, + { + "rshares": "84942400", + "voter": "pompe72" + }, + { + "rshares": "8114632832", + "voter": "lemouth" + }, + { + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "rshares": "51877132", + "voter": "johnbyrd" + }, + { + "rshares": "50682252", + "voter": "thomasaustin" + }, + { + "rshares": "51859074", + "voter": "thermor" + }, + { + "rshares": "50691211", + "voter": "ficholl" + }, + { + "rshares": "51852278", + "voter": "widell" + }, + { + "rshares": "404286448", + "voter": "steevc" + }, + { + "rshares": "3635091595", + "voter": "movievertigo" + }, + { + "rshares": "51481279", + "voter": "revelbrooks" + }, + { + "rshares": "1573489537", + "voter": "cehuneke" + }, + { + "rshares": "2982676167", + "voter": "netaterra" + }, + { + "rshares": "23137850346", + "voter": "andrewawerdna" + }, + { + "rshares": "5831957227", + "voter": "trev" + }, + { + "rshares": "8773942171", + "voter": "craigwilliamz" + }, + { + "rshares": "51505575275", + "voter": "mandibil" + }, + { + "rshares": "32462674824", + "voter": "daut44" + }, + { + "rshares": "50416427", + "voter": "curpose" + }, + { + "rshares": "3597236649", + "voter": "curving" + }, + { + "rshares": "61596105", + "voter": "uri-bruck" + }, + { + "rshares": "112983030208", + "voter": "shenanigator" + }, + { + "rshares": "10005063213", + "voter": "quinneaker" + }, + { + "rshares": "7626813355", + "voter": "einsteinpotsdam" + }, + { + "rshares": "4747321980", + "voter": "richardcrill" + }, + { + "rshares": "2205784762", + "voter": "jeremyfromwi" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "1661534801", + "voter": "davidjkelley" + }, + { + "rshares": "50593879", + "voter": "crion" + }, + { + "rshares": "178419224", + "voter": "greatness" + }, + { + "rshares": "50271139", + "voter": "hitherise" + }, + { + "rshares": "50262756", + "voter": "wiss" + }, + { + "rshares": "54249219602", + "voter": "sponge-bob" + }, + { + "rshares": "15571056039", + "voter": "digital-wisdom" + }, + { + "rshares": "3365396535", + "voter": "getonthetrain" + }, + { + "rshares": "3710959443", + "voter": "ethical-ai" + }, + { + "rshares": "51033798", + "voter": "stroully" + }, + { + "rshares": "6831361820", + "voter": "jwaser" + }, + { + "rshares": "468106735", + "voter": "tfeldman" + }, + { + "rshares": "50712038", + "voter": "thadm" + }, + { + "rshares": "50710305", + "voter": "prof" + }, + { + "rshares": "1597514180", + "voter": "ionescur" + }, + { + "rshares": "50065875", + "voter": "bane" + }, + { + "rshares": "50059754", + "voter": "vive" + }, + { + "rshares": "50054445", + "voter": "coad" + }, + { + "rshares": "2675506788", + "voter": "bwaser" + }, + { + "rshares": "7645490859", + "voter": "renzoarg" + }, + { + "rshares": "50840303", + "voter": "sofa" + }, + { + "rshares": "53990613", + "voter": "roadhog" + }, + { + "rshares": "52794249", + "voter": "doggnostic" + }, + { + "rshares": "52521499", + "voter": "jenny-talls" + }, + { + "rshares": "8199670899", + "voter": "mariandavp" + }, + { + "rshares": "55344422883", + "voter": "brains" + }, + { + "rshares": "53415391", + "voter": "post-successful" + }, + { + "rshares": "5866415576", + "voter": "burnin" + }, + { + "rshares": "271439221", + "voter": "anomaly" + }, + { + "rshares": "2401297947", + "voter": "ellepdub" + }, + { + "rshares": "4116636581", + "voter": "michelle.gent" + }, + { + "rshares": "12115638535", + "voter": "herpetologyguy" + }, + { + "rshares": "4817004213", + "voter": "morgan.waser" + }, + { + "rshares": "50228382", + "voter": "dragonice" + }, + { + "rshares": "1288421610", + "voter": "aksinya" + }, + { + "rshares": "1921231770", + "voter": "bapparabi" + }, + { + "rshares": "50487909", + "voter": "opticalillusions" + }, + { + "rshares": "3689852156", + "voter": "strong-ai" + }, + { + "rshares": "505556200", + "voter": "grisha-danunaher" + }, + { + "rshares": "71207873", + "voter": "igtes" + }, + { + "rshares": "50277354380", + "voter": "curie" + }, + { + "rshares": "851767121", + "voter": "dikanevroman" + }, + { + "rshares": "141679752", + "voter": "buffett" + }, + { + "rshares": "453506109", + "voter": "witchcraftblog" + }, + { + "rshares": "157799009", + "voter": "photorealistic" + }, + { + "rshares": "160880639", + "voter": "illusions" + }, + { + "rshares": "6920933761", + "voter": "dresden" + }, + { + "rshares": "160845765", + "voter": "caseyneistat" + }, + { + "rshares": "692395145", + "voter": "ysa" + }, + { + "rshares": "159984914", + "voter": "correct" + }, + { + "rshares": "159973989", + "voter": "capcom" + }, + { + "rshares": "159963865", + "voter": "sledgehammer" + }, + { + "rshares": "159950870", + "voter": "haribo" + }, + { + "rshares": "159531007", + "voter": "benetton" + }, + { + "rshares": "156194471", + "voter": "stimmt" + }, + { + "rshares": "159143891", + "voter": "reef" + }, + { + "rshares": "158632601", + "voter": "cream" + }, + { + "rshares": "891891710", + "voter": "reddust" + }, + { + "rshares": "336222066", + "voter": "aldentan" + }, + { + "rshares": "191981449", + "voter": "techslut" + } + ], + "author": "curie", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "
https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg
\n\n## Introduction\n[Project Curie](https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors) is a community project run by several Steemit authors. Its mission is to help reward content creators who are posting great original content, yet who have not yet become established. In the short time since Curie began, our writers group has partnered with @nextgencrypto and other whale accounts to bring rewards to these deserving authors. *Writers, artists, chefs, photographers, videographers, and many others have been recognized by these rewards.*\n\nEach day, the members of our Project will publish this list of the posts that Project Curie has chosen to reward recently. We hope that this list will provide more positive exposure to the authors we have selected. Also, it is an effort for us to be more transparent about which posts are being rewarded. We hope that you will consider following not only this @curie account, but also many of the authors whose work is featured here each day. **Please consider adding your comments on these posts also!**\n\nProject Curie's daily curation lists will now be called \"The Daily Curie\". We hope you like the name! Future editions of The Daily Curie will [feature our new logo](https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement). For the latest on Project Curie, do check out our [Month #1 update](https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016). \n\n----------------------\n\n## Today's Brief Analysis\n\nToday's list polls all posts curated between 17:00 14/09 UTC and 17:00 15/09 UTC. Project Curie voted on a total of **103 posts** by 99 unique authors. **SBD 3,832** has been generated for authors thus far, at an average of SBD 37 per post. \n\n----------------------\n| Author | Post | Payout |\n| --------- | ---------- | --------- |\n| [@faddat](https://steemit.com/@faddat) | [[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!](https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed) | 616.681 SBD |\n| [@rampant](https://steemit.com/@rampant) | [Steemit Daily Drawing Tutorial - Gesture drawings (plus tool)](https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool) | 215.310 SBD |\n| [@shenanigator](https://steemit.com/@shenanigator) | [Doing the Right Thing Will Get You Fired. What Do You Do?](https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do) | 205.664 SBD |\n| [@penguinpablo](https://steemit.com/@penguinpablo) | [How to Carve an Apple Leaf](https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf) | 196.419 SBD |\n| [@nathanjtaylor](https://steemit.com/@nathanjtaylor) | [Fire And Grace Art Painting And Poetry](https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry) | 189.043 SBD |\n| [@lily-da-vine](https://steemit.com/@lily-da-vine) | [Going Bananas in Acapulco](https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco) | 158.416 SBD |\n| [@budgetbucketlist](https://steemit.com/@budgetbucketlist) | [A 1-week plunge into Mexico City's madness! Art adventures, Frida-seeking and unfiltered exhaust fumes...](https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes) | 151.033 SBD |\n| [@benjiberigan](https://steemit.com/@benjiberigan) | [Anarchist Architecture, part 5: The cruelty of architectural codes and regulations.](https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations) | 132.427 SBD |\n| [@ausbitbank](https://steemit.com/@ausbitbank) | [The time my town flooded, the fragility of the food supply and lessons learned (Original photos)](https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos) | 125.877 SBD |\n| [@emily-cook](https://steemit.com/@emily-cook) | [THE ISLE OF MAN FILM FESTIVAL 2016 -A week of parties, red carpets and a lot of hard work!](https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work) | 121.336 SBD |\n| [@team-leibniz](https://steemit.com/@team-leibniz) | [Week 1 NFL Daily Fantasy Football Results - How my Bayesian Inspired Lineups Fared (+$84.00)](https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00) | 119.473 SBD |\n| [@ionescur](https://steemit.com/@ionescur) | [Urban dreams of freedom: back to the countryside, back to the land](https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land) | 110.564 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [New traditionl painting - \"The Battle\" - Steps of work](https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work) | 105.622 SBD |\n| [@juliac](https://steemit.com/@juliac) | [One of The Best Portraits That I've Ever Created: Einstein. What Do You Think?](https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think) | 103.781 SBD |\n| [@luzcypher](https://steemit.com/@luzcypher) | [Cover Crops Can Grow Food Organically With No Fertilizers, No Pesticides, No Herbicides And No Chemicals](https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals) | 100.117 SBD |\n| [@akareyon](https://steemit.com/@akareyon) | [I find your lack of argument disturbing](https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing) | 98.525 SBD |\n| [@curving](https://steemit.com/@curving) | [The Ephemeral Cairn Gardens Of the Austin Greenbelt - A Photo Journal and Meditation](https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation) | 96.834 SBD |\n| [@aleksandraz](https://steemit.com/@aleksandraz) | [Incredible Science - Brainbow Technology](https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology) | 89.777 SBD |\n| [@skapaneas](https://steemit.com/@skapaneas) | [IBD Crohn desease and Ulceritive collitis. what are they, self diagnose, self treat and more.](https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more) | 85.958 SBD |\n| [@gargon](https://steemit.com/@gargon) | [Proyecto Cervantes (13 - 15 Sept 2016): Compensaci\u00f3n y reconocimiento para escritores de habla hispana / Bringing rewards and recognition to spanish writers (Vol. III)](https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and) | 83.725 SBD |\n| [@iamwne](https://steemit.com/@iamwne) | [Blade Runner Inspired Digital Set - The Dark Market - Beauty Pass](https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass) | 83.869 SBD |\n| [@stormblaze](https://steemit.com/@stormblaze) | [Where Do Deleted Files Go?](https://steemit.com/technology/@stormblaze/where-do-deleted-files-go) | 81.221 SBD |\n| [@yanarnst](https://steemit.com/@yanarnst) | [Steemit Food Art lesson 2 ''Salad with chicken liver and pine nuts''](https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts) | 78.034 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Myths in the Sky: Ursa Major and Ursa Minor](https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor) | 72.174 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Brain preservation: an ambulance to the future](https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future) | 72.082 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Vivisecting the Stargazing Tribe: Visual Observers and Screen Scanners](https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners) | 71.421 SBD |\n| [@cristi](https://steemit.com/@cristi) | [Radical Metabolism - No Food and Water for 8 Months](https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months) | 69.559 SBD |\n| [@stranger27](https://steemit.com/@stranger27) | [Fibonacci sequence and Golden Ratio: magic numbers of Nature](https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature) | 66.258 SBD |\n| [@nekromarinist](https://steemit.com/@nekromarinist) | [Let's talk a little bit about phobias today!](https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today) | 61.776 SBD |\n| [@richman](https://steemit.com/@richman) | [If you want to lose a friend, lend him money (My life story)](https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story) | 58.193 SBD |\n| [@maceytomlin](https://steemit.com/@maceytomlin) | [What Exactly is Ayahuasca? How Should You Prepare for a Ceremony?](https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony) | 58.197 SBD |\n| [@nili](https://steemit.com/@nili) | [Smart Life (part 2) - Resolving the Godel's paradox on the blockchain as a solution for a decentralized trusted protocol](https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol) | 55.575 SBD |\n| [@optimistic-crone](https://steemit.com/@optimistic-crone) | [PROBIOTICS FOR LIFE!!! SUPER SIMPLE FERMENTED VEGETABLE 'KIM CHEE' RECIPE](https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe) | 54.909 SBD |\n| [@anarchyhasnogods](https://steemit.com/@anarchyhasnogods) | [Learning one dimensional motion using graphs- physics for beginners - part one](https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one) | 53.295 SBD |\n| [@yostopia](https://steemit.com/@yostopia) | [Beginner's mind, creative mind... the making of a Vimeo Staff Pick.](https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick) | 51.222 SBD |\n| [@reneenouveau](https://steemit.com/@reneenouveau) | [My response to Paul Steyn's myopic article \"Mr. Environmentalist\" shockingly published by National Geographic in Sept 2015.](https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015) | 49.433 SBD |\n| [@king3071](https://steemit.com/@king3071) | [MY DREAM DESTINATION - SWITZERLAND](https://steemit.com/travel/@king3071/my-dream-destination-switzerland) | 49.816 SBD |\n| [@kolin.evans](https://steemit.com/@kolin.evans) | [Something a little more substantial for you to think about - the 'IS' / 'WAS' CPT (Continuous Probable Time-lines.)](https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines) | 47.288 SBD |\n| [@fenglosophy](https://steemit.com/@fenglosophy) | [Does the language you speak influence how you think?](https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think) | 44.070 SBD |\n| [@mandibil](https://steemit.com/@mandibil) | [SAVAGE [Gorm Just, Denmark 2009] - movie review by Mandibil](https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil) | 44.621 SBD |\n| [@therajmahal](https://steemit.com/@therajmahal) | [Making the Impossible... Possible](https://steemit.com/science/@therajmahal/making-the-impossible-possible) | 44.765 SBD |\n| [@carlitashaw](https://steemit.com/@carlitashaw) | [The World's Worst Oil Spills, Ramifications & Amazing Alternative Solutions.](https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions) | 44.986 SBD |\n| [@renzoarg](https://steemit.com/@renzoarg) | [Skip a pill - Antibiotics](https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics) | 43.918 SBD |\n| [@rachelsvparry](https://steemit.com/@rachelsvparry) | [Under the Sea (again, but better this time)](https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time) | 43.436 SBD |\n| [@royalmacro](https://steemit.com/@royalmacro) | [lonely tree [An Original Abstract Art]](https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art) | 42.826 SBD |\n| [@stephmckenzie](https://steemit.com/@stephmckenzie) | [The Power of Choice--A Magnificent Key to True Personal Freedom](https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone) | 42.441 SBD |\n| [@alwayzgame](https://steemit.com/@alwayzgame) | [10 simple steps to ruin your child's life](https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life) | 42.475 SBD |\n| [@nonlinearone](https://steemit.com/@nonlinearone) | [Can Hemingway Improve Your Writing?](https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing) | 42.669 SBD |\n| [@kafkanarchy84](https://steemit.com/@kafkanarchy84) | [\"Johnny B. Goode\" Guitar Lesson and Intro to Theory, Vol. II](https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii) | 41.326 SBD |\n| [@feline1991](https://steemit.com/@feline1991) | [A Steemit Original - A Lifetime of Seeking Happiness - Chapter 2 - Part 2](https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2) | 41.931 SBD |\n| [@geke](https://steemit.com/@geke) | [The Banker and the Bulova - an original poem (Steemit flash-writing challenge)](https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge) | 41.497 SBD |\n| [@lscottphotos](https://steemit.com/@lscottphotos) | [LSCOTTPHOTOS Welcome to my family :) Thank you steemers <3 (Original Photos)](https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos) | 40.201 SBD |\n| [@pinkisland](https://steemit.com/@pinkisland) | [My Philosophy of Education](https://steemit.com/writing/@pinkisland/my-philosophy-of-education) | 40.978 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cinco](https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco) | 39.708 SBD |\n| [@luisucv34](https://steemit.com/@luisucv34) | [Venezuela: The lack of opportunities (English edition)](https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition) | 39.783 SBD |\n| [@beowulfoflegend](https://steemit.com/@beowulfoflegend) | [Silvanus and Empire, an Original Novel (Chapter Twenty)](https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty) | 39.543 SBD |\n| [@mariandavp](https://steemit.com/@mariandavp) | [From zero to hero - abstract office art by @mariandavp](https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp) | 39.529 SBD |\n| [@nasimbabu](https://steemit.com/@nasimbabu) | [The technology that defends us from potentially deadly diseases](https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases) | 39.620 SBD |\n| [@royaltiffany](https://steemit.com/@royaltiffany) | [Steemit B'Day Movie Review Contest Update!](https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update) | 37.706 SBD |\n| [@travelista](https://steemit.com/@travelista) | [An Adventure in Isla Esp\u00edritu Santo!](https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo) | 37.218 SBD |\n| [@jpiper20](https://steemit.com/@jpiper20) | [We Meet At Night -- An Original Story (Part 4)](https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4) | 37.319 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new painting - \"Dexter\" - Modern Impressionism](https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism) | 36.937 SBD |\n| [@krystle](https://steemit.com/@krystle) | [Keltorin's Flora and Fauna of Note - Firikwea - Valcanne's Guide to Keltorin](https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin) | 36.972 SBD |\n| [@cryptoiskey](https://steemit.com/@cryptoiskey) | [Workout from home on the cheap! - 12th September #Ultimate workout companion for your kids!](https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids) | 36.115 SBD |\n| [@getonthetrain](https://steemit.com/@getonthetrain) | [Top 10 Grisly Medieval Torture Methods](https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods) | 34.093 SBD |\n| [@ansharphoto](https://steemit.com/@ansharphoto) | [Roman Forum in the Morning, Rome](https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome) | 33.328 SBD |\n| [@aboundlessworld](https://steemit.com/@aboundlessworld) | [Introducing The Steemit Stories Podcast!](https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast) | 33.728 SBD |\n| [@thornybastard](https://steemit.com/@thornybastard) | [Chapter 10: A Call from the Forest\u2014\u6765\u81ea\u68ee\u6797\u7684\u547c\u5524](https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest) | 32.465 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Installing Bitshares / graphene from source on Mac OS X Yosemite (10.5.5)](https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5) | 32.348 SBD |\n| [@dumar022](https://steemit.com/@dumar022) | [Workshop lesson 6: Wrench: You don't wanna mess with this](https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this) | 32.155 SBD |\n| [@lapilipinas](https://steemit.com/@lapilipinas) | [Light from distant stars](https://steemit.com/science/@lapilipinas/light-from-distant-stars) | 32.778 SBD |\n| [@williambanks](https://steemit.com/@williambanks) | [Towards A Better Tomorrow : Part 1 - There but for grace!](https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace) | 31.434 SBD |\n| [@driv3n](https://steemit.com/@driv3n) | [How to Solve the Rubik's Cube like a boss - Part 2](https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2) | 31.858 SBD |\n| [@timbot606](https://steemit.com/@timbot606) | [Growing up in Appalachia](https://steemit.com/life/@timbot606/growing-up-in-appalachia) | 31.548 SBD |\n| [@themagus](https://steemit.com/@themagus) | [A less privileged white growing up in South Africa in the 1970's - part 2](https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2) | 31.099 SBD |\n| [@echoesinthemind](https://steemit.com/@echoesinthemind) | [Hanging Upside Down / DO NOT Try At Home](https://steemit.com/life/@echoesinthemind/hanging-upside-down) | 31.736 SBD |\n| [@ysa](https://steemit.com/@ysa) | [My pictures from traveling to Estes Park, Colorado](https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado) | 31.981 SBD |\n| [@aksinya](https://steemit.com/@aksinya) | [Our Trip to Wonderful, Scary and Unforgettable Kenya. Original Photos and Video](https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video) | 31.882 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cuatro](https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro) | 31.992 SBD |\n| [@successfully00](https://steemit.com/@successfully00) | [Knowing The Math - Mental Tricks - Multiplication Part 1](https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1) | 31.037 SBD |\n| [@linzo](https://steemit.com/@linzo) | [A Life Fantasy (Original Poem)](https://steemit.com/poem/@linzo/a-life-fantasy-original-poem) | 30.964 SBD |\n| [@hilarski](https://steemit.com/@hilarski) | [Panama Critters.](https://steemit.com/panama/@hilarski/panama-critters) | 28.729 SBD |\n| [@sulev](https://steemit.com/@sulev) | [Photography #11 - Pictures from my Garden: Bees, Lizards and other (part 2)](https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2) | 27.947 SBD |\n| [@steemswede](https://steemit.com/@steemswede) | [[BEER REVIEW] Thomas Hardy's Ale](https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale) | 27.183 SBD |\n| [@marius19](https://steemit.com/@marius19) | [Set of paper coffee cups. Origami](https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami) | 26.439 SBD |\n| [@poeticsnake](https://steemit.com/@poeticsnake) | [Autumn is coming Doodle style! ( Tutorial with step by step drawings)](https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings) | 26.547 SBD |\n| [@kiddarko](https://steemit.com/@kiddarko) | [Peep Life a Story By KidDarko (with tattoo illistrations and video)](https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video) | 26.853 SBD |\n| [@shieha](https://steemit.com/@shieha) | [The Hardest Computer Game of All Time - Robot Odyssey - Part 2](https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2) | 26.372 SBD |\n| [@ayim](https://steemit.com/@ayim) | [Fixing Posture - Part 4: Neck](https://steemit.com/life/@ayim/fixing-posture-part-4-neck) | 26.142 SBD |\n| [@hitmeasap](https://steemit.com/@hitmeasap) | [I am Batman's Robin or Skywalkers R2-D2. - I've always been the co-pilot. Always been the second choice.](https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice) | 25.747 SBD |\n| [@peskov](https://steemit.com/@peskov) | [Antonikha. Part 2 (featuring Vasily Peskov as author)](https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author) | 25.173 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [Advice from an angry dude: Breathe and interrupt your thoughts](https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts) | 25.162 SBD |\n| [@beginningtoend](https://steemit.com/@beginningtoend) | [Poetry, art and a little home spun philosophy.](https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy) | 25.708 SBD |\n| [@kaykunoichi](https://steemit.com/@kaykunoichi) | [Suicide Note - Audio (Written & performed by myself)](https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself) | 25.523 SBD |\n| [@booky](https://steemit.com/@booky) | [Boosting Leadership Skills = Healthier Happier You and Your Workmates](https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates) | 24.083 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [Do you Know the Difference Between RIGHT & WRONG?](https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong) | 24.516 SBD |\n| [@ekaterina4ka](https://steemit.com/@ekaterina4ka) | [We Knit Patterns by the Spokes. Post 2. \u0412\u044f\u0436\u0435\u043c \u0443\u0437\u043e\u0440\u044b \u0441\u043f\u0438\u0446\u0430\u043c\u0438. \u041f\u043e\u0441\u0442 2.](https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2) | 24.793 SBD |\n| [@scaredycatguide](https://steemit.com/@scaredycatguide) | [Real Talk - Vol 9. - Welcome To Dogmerica](https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica) | 24.207 SBD |\n| [@amy-goodrich](https://steemit.com/@amy-goodrich) | [Pineapple Mojito Green Smoothie](https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie) | 24.126 SBD |\n| [@scott.stevens](https://steemit.com/@scott.stevens) | [Awareness of Bitcoin is Now More Important Than Awareness of Geoengineering](https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering) | 24.875 SBD |\n| [@witchcraftblog](https://steemit.com/@witchcraftblog) | [My trip to Italy. Pisa.](https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa) | 24.265 SBD |\n| [@ibringawareness](https://steemit.com/@ibringawareness) | [\"Why I Got Stiffed\" Guy's Waiter Blog chapter 5](https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5) | 24.224 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new illustration - Batman vs Superman - Modern Impressionism by kimal73](https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73) | 23.617 SBD |\n| [@leylar](https://steemit.com/@leylar) | [Seeds are great travelers ~ Own work](https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work) | 23.166 SBD |\n| [@ocrdu](https://steemit.com/@ocrdu) | [The pods that go \"pop\"](https://steemit.com/photography/@ocrdu/the-pods-that-go-pop) | 23.530 SBD |\n| [@rusla](https://steemit.com/@rusla) | [Japan. Part8.](https://steemit.com/travel/@rusla/japan-part8) | 23.209 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [Puppy Charcoal Original Pencil Drawing](https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing) | 23.879 SBD |\n| [@borishaifa](https://steemit.com/@borishaifa) | [To Write Or Not To Wirte? \u041f\u0438\u0441\u0430\u0442\u044c \u0438\u043b\u0438 \u043d\u0435 \u043f\u0438\u0441\u0430\u0442\u044c?](https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat) | 23.730 SBD |\n| [@eveningstar92](https://steemit.com/@eveningstar92) | [Shit Happens, Move On-NSFW- Evening Star Art](https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art) | 23.092 SBD |\n| [@elewarne](https://steemit.com/@elewarne) | [Mixed Media](https://steemit.com/mixedmedia/@elewarne/mixed-media) | 23.059 SBD |\n| [@shredlord](https://steemit.com/@shredlord) | [Sunrise](https://steemit.com/art/@shredlord/sunrise) | 23.318 SBD |\n| [@sherlockcupid](https://steemit.com/@sherlockcupid) | [Let's Talk: Fears (Part One)](https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one) | 23.720 SBD |\n| [@annesaya](https://steemit.com/@annesaya) | [Our Guiding Star, a poem (A tribute to writers)](https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers) | 23.384 SBD |\n| [@fitmama](https://steemit.com/@fitmama) | [Why Do I Bother....](https://steemit.com/life/@fitmama/why-do-i-bother) | 23.451 SBD |\n| [@ezzy](https://steemit.com/@ezzy) | [The Bionic Experiment - Part 1 (My Original Short Stories)](https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories) | 23.480 SBD |\n| [@kingarbinv](https://steemit.com/@kingarbinv) | [Adventures in Nemaland - Part 8 (Video) + My best Pokemon catch so far.](https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far) | 23.292 SBD |\n| [@soulsistashakti](https://steemit.com/@soulsistashakti) | [How to Detect and Deflect Gaslighting from a Narcissist](https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist) | 22.018 SBD |\n| [@puffin](https://steemit.com/@puffin) | [Tragical Impoverishment - Society's Dirt (Original Poem)](https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem) | 22.621 SBD |\n| [@cehuneke](https://steemit.com/@cehuneke) | [The Sugar Scandal: Corrupted Science in the Debate of Fat vs. Sugar and Coronary Heart Disease](https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease) | 22.821 SBD |\n| [@tanata](https://steemit.com/@tanata) | [Little Black Dress involving](https://steemit.com/fashion/@tanata/little-black-dress-involving) | 22.237 SBD |\n| [@steemwriter](https://steemit.com/@steemwriter) | [YouTube Demonetization: A Step Towards Censorship?](https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship) | 22.297 SBD |\n| [@michelle.gent](https://steemit.com/@michelle.gent) | [Dusty - one of my characters](https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters) | 22.659 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [A Gift-Original Rose Drawing](https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing) | 22.249 SBD |\n| [@runridefly](https://steemit.com/@runridefly) | [Minnow's Life - @runridefly original cartoon \"minnowsunite Whale sighting\" minnows and a whale](https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale) | 22.836 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [[SHORT STORY] The Cult of Personality - Part One](https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one) | 22.552 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Look at the Flower Chicory: a Useful and Beautiful Flower ... my Favorite Photos of Chicory](https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory) | 22.795 SBD |\n| [@victoriart](https://steemit.com/@victoriart) | [Hazelnut Mood](https://steemit.com/art/@victoriart/hazelnut-mood) | 22.443 SBD |\n| [@heroic15397](https://steemit.com/@heroic15397) | [Amazing Birds in the Greater Montreal area](https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area) | 22.987 SBD |\n| [@smartercars](https://steemit.com/@smartercars) | [Reviewing the Volkswagen Touareg ~ Smarter Car Reviews](https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews) | 22.975 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [Blues Jam & Techniques [9-14-2016]](https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016) | 22.415 SBD |\n| [@matthew.raymer](https://steemit.com/@matthew.raymer) | [Life Stories](https://steemit.com/psychology/@matthew.raymer/life-stories) | 22.733 SBD |\n| [@positivesteem](https://steemit.com/@positivesteem) | [Common Sense Versus Degrees: The Man Who Has One Hundred Degrees](https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees) | 22.941 SBD |\n| [@d3nv3r](https://steemit.com/@d3nv3r) | [Cloud Mining - The Struggle is Real](https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real) | 22.266 SBD |\n| [@adubi](https://steemit.com/@adubi) | [Healing Food Plan: The Ultimate Cheat Sheet](https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet) | 22.947 SBD |\n| [@alitas](https://steemit.com/@alitas) | [(spanish) Cazuela de Calamar con Papas Rejilla](https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla) | 22.240 SBD |\n| [@mazi](https://steemit.com/@mazi) | [I Can See Clearly Now .... Platanus occidentalis](https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis) | 22.784 SBD |\n| [@mikemacintire](https://steemit.com/@mikemacintire) | [A Red Like No Other - My work](https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work) | 22.289 SBD |\n| [@altzero](https://steemit.com/@altzero) | [Im\u00e1genes de una vida (2)](https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2) | 21.555 SBD |\n| [@birdie](https://steemit.com/@birdie) | [Clouds That Demand Attention (Original Photos)](https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos) | 21.397 SBD |\n| [@michaelstobiersk](https://steemit.com/@michaelstobiersk) | [An Original Painting by Michael Stobierski](https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski) | 21.367 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Meditation Experience Can Be Really Scary](https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary) | 21.583 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [The Price Is Right Theme Music Breakdown](https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown) | 21.937 SBD |\n| [@karisa](https://steemit.com/@karisa) | [Very tasty and delicious curd cookies specially for Steemit . Part 4](https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4) | 21.940 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Borovoye (Burabai) - Pearl of Kazakhstan: The Incredible Journey (Story of my Husband)](https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband) | 20.616 SBD |\n| [@burnin](https://steemit.com/@burnin) | [Exploring the Off-Limits Areas of the Largest Cruise Ship In the World - Part 2](https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2) | 20.298 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Eyes Of Wisdom](https://steemit.com/art/@reddust/eyes-of-wisdom) | 20.051 SBD |\n| [@levycore](https://steemit.com/@levycore) | [Hot Chocolate Art - Trying Draw Faces](https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces) | 20.233 SBD |\n| [@awesomenyl](https://steemit.com/@awesomenyl) | [Sunflower Paper Tutorial](https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial) | 20.040 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [The epic and awesome guide to writing articles like a true artist that people want to read and share! [Edited for Steemit today]](https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today) | 20.192 SBD |\n| [@naquoya](https://steemit.com/@naquoya) | [[ORIGINAL FICTION] Bad Trip part two: The Gamemaster](https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster) | 20.041 SBD |\n| [@moon32walker](https://steemit.com/@moon32walker) | [Top 10 Game Development Studios](https://steemit.com/gaming/@moon32walker/top-10-game-development-studios) | 20.468 SBD |\n| [@gustavopasquini](https://steemit.com/@gustavopasquini) | [Polenta with Ragu Meat Dry](https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry) | 20.436 SBD |\n| [@benadapt](https://steemit.com/@benadapt) | [Capturing the Milky Way \u2014 A Photographer\u2019s Biggest Challenge](https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge) | 20.477 SBD |\n| [@altzero](https://steemit.com/@altzero) | [\u00bfQue es la nueva economia?](https://steemit.com/spanish/@altzero/que-es-la-nueva-economia) | 20.037 SBD |\n| [@por500bolos](https://steemit.com/@por500bolos) | [Uncovering The Most Transcendental & Biggest Secret In The Human Life. \u00bfSkeptical? I will challenge you to prove otherwise!!](https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise) | 20.894 SBD |\n| [@zonpower](https://steemit.com/@zonpower) | [This is a place (An original Poem)](https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem) | 20.869 SBD |\n| [@katharsisdrill](https://steemit.com/@katharsisdrill) | [The rune-stones of Jelling, and a new realisation.](https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation) | 19.761 SBD |\n| [@glezeddy](https://steemit.com/@glezeddy) | [MEZCLA DE TEQUILA PARA DAR EL \"GRITO\" (M\u00c9XICO)](https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico) | 15.682 SBD |\n| [@onetree](https://steemit.com/@onetree) | [South African Slang - Enter Those Who Dare!](https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare) | 33.017 SBD |\n| [@verbal-d](https://steemit.com/@verbal-d) | [Melodious Music Memoirs # 2: Impact](https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact) | 30.372 SBD |\n| [@wanderingagorist](https://steemit.com/@wanderingagorist) | [Foraging Wild Rose Hips for Tea and Eating](https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating) | 29.228 SBD |\n| [@knablinz](https://steemit.com/@knablinz) | [Hand-Made Collage Art By Knablinz ( Donuts & Coffee )](https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee) | 35.939 SBD |\n\n---------------------------\n
Note: All author rewards from this post will be used to fund Project Curie.
Join us in #curie on Steemit.chat and follow us @curie!
", + "category": "curie", + "children": 10, + "created": "2016-09-15T17:53:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg" + ], + "links": [ + "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", + "https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement", + "https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", + "https://steemit.com/@faddat", + "https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed", + "https://steemit.com/@rampant", + "https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool", + "https://steemit.com/@shenanigator", + "https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do", + "https://steemit.com/@penguinpablo", + "https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf", + "https://steemit.com/@nathanjtaylor", + "https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry", + "https://steemit.com/@lily-da-vine", + "https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco", + "https://steemit.com/@budgetbucketlist", + "https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes", + "https://steemit.com/@benjiberigan", + "https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations", + "https://steemit.com/@ausbitbank", + "https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos", + "https://steemit.com/@emily-cook", + "https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work", + "https://steemit.com/@team-leibniz", + "https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00", + "https://steemit.com/@ionescur", + "https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land", + "https://steemit.com/@kimal73", + "https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work", + "https://steemit.com/@juliac", + "https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think", + "https://steemit.com/@luzcypher", + "https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals", + "https://steemit.com/@akareyon", + "https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing", + "https://steemit.com/@curving", + "https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation", + "https://steemit.com/@aleksandraz", + "https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology", + "https://steemit.com/@skapaneas", + "https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more", + "https://steemit.com/@gargon", + "https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", + "https://steemit.com/@iamwne", + "https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass", + "https://steemit.com/@stormblaze", + "https://steemit.com/technology/@stormblaze/where-do-deleted-files-go", + "https://steemit.com/@yanarnst", + "https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts", + "https://steemit.com/@senseye", + "https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor", + "https://steemit.com/@crasch", + "https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future", + "https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners", + "https://steemit.com/@cristi", + "https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months", + "https://steemit.com/@stranger27", + "https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature", + "https://steemit.com/@nekromarinist", + "https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today", + "https://steemit.com/@richman", + "https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story", + "https://steemit.com/@maceytomlin", + "https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony", + "https://steemit.com/@nili", + "https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol", + "https://steemit.com/@optimistic-crone", + "https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe", + "https://steemit.com/@anarchyhasnogods", + "https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one", + "https://steemit.com/@yostopia", + "https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick", + "https://steemit.com/@reneenouveau", + "https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015", + "https://steemit.com/@king3071", + "https://steemit.com/travel/@king3071/my-dream-destination-switzerland", + "https://steemit.com/@kolin.evans", + "https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines", + "https://steemit.com/@fenglosophy", + "https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think", + "https://steemit.com/@mandibil", + "https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil", + "https://steemit.com/@therajmahal", + "https://steemit.com/science/@therajmahal/making-the-impossible-possible", + "https://steemit.com/@carlitashaw", + "https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions", + "https://steemit.com/@renzoarg", + "https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics", + "https://steemit.com/@rachelsvparry", + "https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time", + "https://steemit.com/@royalmacro", + "https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art", + "https://steemit.com/@stephmckenzie", + "https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone", + "https://steemit.com/@alwayzgame", + "https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life", + "https://steemit.com/@nonlinearone", + "https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing", + "https://steemit.com/@kafkanarchy84", + "https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii", + "https://steemit.com/@feline1991", + "https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2", + "https://steemit.com/@geke", + "https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge", + "https://steemit.com/@lscottphotos", + "https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos", + "https://steemit.com/@pinkisland", + "https://steemit.com/writing/@pinkisland/my-philosophy-of-education", + "https://steemit.com/@jgcastrillo19", + "https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco", + "https://steemit.com/@luisucv34", + "https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition", + "https://steemit.com/@beowulfoflegend", + "https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty", + "https://steemit.com/@mariandavp", + "https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp", + "https://steemit.com/@nasimbabu", + "https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases", + "https://steemit.com/@royaltiffany", + "https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update", + "https://steemit.com/@travelista", + "https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo", + "https://steemit.com/@jpiper20", + "https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4", + "https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism", + "https://steemit.com/@krystle", + "https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin", + "https://steemit.com/@cryptoiskey", + "https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids", + "https://steemit.com/@getonthetrain", + "https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods", + "https://steemit.com/@ansharphoto", + "https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome", + "https://steemit.com/@aboundlessworld", + "https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast", + "https://steemit.com/@thornybastard", + "https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest", + "https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5", + "https://steemit.com/@dumar022", + "https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this", + "https://steemit.com/@lapilipinas", + "https://steemit.com/science/@lapilipinas/light-from-distant-stars", + "https://steemit.com/@williambanks", + "https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace", + "https://steemit.com/@driv3n", + "https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2", + "https://steemit.com/@timbot606", + "https://steemit.com/life/@timbot606/growing-up-in-appalachia", + "https://steemit.com/@themagus", + "https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2", + "https://steemit.com/@echoesinthemind", + "https://steemit.com/life/@echoesinthemind/hanging-upside-down", + "https://steemit.com/@ysa", + "https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado", + "https://steemit.com/@aksinya", + "https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video", + "https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro", + "https://steemit.com/@successfully00", + "https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1", + "https://steemit.com/@linzo", + "https://steemit.com/poem/@linzo/a-life-fantasy-original-poem", + "https://steemit.com/@hilarski", + "https://steemit.com/panama/@hilarski/panama-critters", + "https://steemit.com/@sulev", + "https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2", + "https://steemit.com/@steemswede", + "https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale", + "https://steemit.com/@marius19", + "https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami", + "https://steemit.com/@poeticsnake", + "https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings", + "https://steemit.com/@kiddarko", + "https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video", + "https://steemit.com/@shieha", + "https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2", + "https://steemit.com/@ayim", + "https://steemit.com/life/@ayim/fixing-posture-part-4-neck", + "https://steemit.com/@hitmeasap", + "https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice", + "https://steemit.com/@peskov", + "https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author", + "https://steemit.com/@aldentan", + "https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts", + "https://steemit.com/@beginningtoend", + "https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy", + "https://steemit.com/@kaykunoichi", + "https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself", + "https://steemit.com/@booky", + "https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates", + "https://steemit.com/@doubledex", + "https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong", + "https://steemit.com/@ekaterina4ka", + "https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2", + "https://steemit.com/@scaredycatguide", + "https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica", + "https://steemit.com/@amy-goodrich", + "https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie", + "https://steemit.com/@scott.stevens", + "https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering", + "https://steemit.com/@witchcraftblog", + "https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa", + "https://steemit.com/@ibringawareness", + "https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5", + "https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73", + "https://steemit.com/@leylar", + "https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work", + "https://steemit.com/@ocrdu", + "https://steemit.com/photography/@ocrdu/the-pods-that-go-pop", + "https://steemit.com/@rusla", + "https://steemit.com/travel/@rusla/japan-part8", + "https://steemit.com/@edgarsart", + "https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing", + "https://steemit.com/@borishaifa", + "https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat", + "https://steemit.com/@eveningstar92", + "https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art", + "https://steemit.com/@elewarne", + "https://steemit.com/mixedmedia/@elewarne/mixed-media", + "https://steemit.com/@shredlord", + "https://steemit.com/art/@shredlord/sunrise", + "https://steemit.com/@sherlockcupid", + "https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one", + "https://steemit.com/@annesaya", + "https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers", + "https://steemit.com/@fitmama", + "https://steemit.com/life/@fitmama/why-do-i-bother", + "https://steemit.com/@ezzy", + "https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories", + "https://steemit.com/@kingarbinv", + "https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far", + "https://steemit.com/@soulsistashakti", + "https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist", + "https://steemit.com/@puffin", + "https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem", + "https://steemit.com/@cehuneke", + "https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease", + "https://steemit.com/@tanata", + "https://steemit.com/fashion/@tanata/little-black-dress-involving", + "https://steemit.com/@steemwriter", + "https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship", + "https://steemit.com/@michelle.gent", + "https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters", + "https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing", + "https://steemit.com/@runridefly", + "https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale", + "https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one", + "https://steemit.com/@lyubovbar", + "https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory", + "https://steemit.com/@victoriart", + "https://steemit.com/art/@victoriart/hazelnut-mood", + "https://steemit.com/@heroic15397", + "https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area", + "https://steemit.com/@smartercars", + "https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews", + "https://steemit.com/@rubenalexander", + "https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016", + "https://steemit.com/@matthew.raymer", + "https://steemit.com/psychology/@matthew.raymer/life-stories", + "https://steemit.com/@positivesteem", + "https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees", + "https://steemit.com/@d3nv3r", + "https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real", + "https://steemit.com/@adubi", + "https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet", + "https://steemit.com/@alitas", + "https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla", + "https://steemit.com/@mazi", + "https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis", + "https://steemit.com/@mikemacintire", + "https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work", + "https://steemit.com/@altzero", + "https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2", + "https://steemit.com/@birdie", + "https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos", + "https://steemit.com/@michaelstobiersk", + "https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski", + "https://steemit.com/@reddust", + "https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary", + "https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown", + "https://steemit.com/@karisa", + "https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4", + "https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband", + "https://steemit.com/@burnin", + "https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2", + "https://steemit.com/art/@reddust/eyes-of-wisdom", + "https://steemit.com/@levycore", + "https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces", + "https://steemit.com/@awesomenyl", + "https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial", + "https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today", + "https://steemit.com/@naquoya", + "https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster", + "https://steemit.com/@moon32walker", + "https://steemit.com/gaming/@moon32walker/top-10-game-development-studios", + "https://steemit.com/@gustavopasquini", + "https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry", + "https://steemit.com/@benadapt", + "https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge", + "https://steemit.com/spanish/@altzero/que-es-la-nueva-economia", + "https://steemit.com/@por500bolos", + "https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise", + "https://steemit.com/@zonpower", + "https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem", + "https://steemit.com/@katharsisdrill", + "https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation", + "https://steemit.com/@glezeddy", + "https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico", + "https://steemit.com/@onetree", + "https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare", + "https://steemit.com/@verbal-d", + "https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact", + "https://steemit.com/@wanderingagorist", + "https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating", + "https://steemit.com/@knablinz", + "https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee" + ], + "tags": [ + "curie", + "minnows", + "hidden-gems", + "steemit", + "project-curie" + ], + "users": [ + "nextgencrypto", + "curie" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 61028272797290, + "payout": 217.281, + "payout_at": "2016-09-22T17:53:48", + "pending_payout_value": "217.281 HBD", + "percent_hbd": 10000, + "permlink": "the-daily-curie-14th-sept-15th-sept-2016", + "post_id": 1256756, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 182 + }, + "title": "The Daily Curie (14th Sept - 15th Sept 2016)", + "updated": "2016-09-15T17:53:48", + "url": "/curie/@curie/the-daily-curie-14th-sept-15th-sept-2016" + }, + { + "active_votes": [ + { + "rshares": "231809639013", + "voter": "anonymous" + }, + { + "rshares": "40859141206977", + "voter": "blocktrades" + }, + { + "rshares": "1912118346075", + "voter": "badassmother" + }, + { + "rshares": "7113882084470", + "voter": "xeldal" + }, + { + "rshares": "5763993012820", + "voter": "enki" + }, + { + "rshares": "1304415071462", + "voter": "rossco99" + }, + { + "rshares": "1577462576089", + "voter": "joseph" + }, + { + "rshares": "651993277150", + "voter": "masteryoda" + }, + { + "rshares": "446958795092", + "voter": "boatymcboatface" + }, + { + "rshares": "9168101098", + "voter": "idol" + }, + { + "rshares": "23383993964", + "voter": "wpalczynski" + }, + { + "rshares": "5044693986", + "voter": "sakr" + }, + { + "rshares": "1578030666", + "voter": "jocelyn" + }, + { + "rshares": "14818192446", + "voter": "gregory-f" + }, + { + "rshares": "74914583876", + "voter": "eeks" + }, + { + "rshares": "1007941175", + "voter": "fkn" + }, + { + "rshares": "8867224532", + "voter": "james-show" + }, + { + "rshares": "1324875721", + "voter": "elishagh1" + }, + { + "rshares": "7802860274", + "voter": "richman" + }, + { + "rshares": "24193131603", + "voter": "acidyo" + }, + { + "rshares": "313691550", + "voter": "coar" + }, + { + "rshares": "1061234978", + "voter": "murh" + }, + { + "rshares": "2057413439", + "voter": "error" + }, + { + "rshares": "59950022330", + "voter": "theshell" + }, + { + "rshares": "400880323222", + "voter": "taoteh1221" + }, + { + "rshares": "410517349", + "voter": "applecrisp" + }, + { + "rshares": "280737930617", + "voter": "trogdor" + }, + { + "rshares": "5287820211", + "voter": "tee-em" + }, + { + "rshares": "121383360964", + "voter": "geoffrey" + }, + { + "rshares": "10684548905", + "voter": "kimziv" + }, + { + "rshares": "30279968088", + "voter": "acassity" + }, + { + "rshares": "45145254362", + "voter": "venuspcs" + }, + { + "rshares": "7264907621", + "voter": "getssidetracked" + }, + { + "rshares": "1414199127", + "voter": "trees" + }, + { + "rshares": "197179742", + "voter": "strawhat" + }, + { + "rshares": "1159208963", + "voter": "steemswede" + }, + { + "rshares": "691425107", + "voter": "cryptochannel" + }, + { + "rshares": "894044199", + "voter": "endgame" + }, + { + "rshares": "4920266872", + "voter": "furion" + }, + { + "rshares": "2834923420", + "voter": "steem1653" + }, + { + "rshares": "25221166135", + "voter": "steemit-life" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "80777327", + "voter": "snowden" + }, + { + "rshares": "14167503457", + "voter": "aaseb" + }, + { + "rshares": "4209522316", + "voter": "karen13" + }, + { + "rshares": "243749878708", + "voter": "nabilov" + }, + { + "rshares": "677892916", + "voter": "luisucv34" + }, + { + "rshares": "34761252099", + "voter": "creemej" + }, + { + "rshares": "233065746", + "voter": "poseidon" + }, + { + "rshares": "82781233416", + "voter": "thylbom" + }, + { + "rshares": "32543319555", + "voter": "deanliu" + }, + { + "rshares": "5428442637", + "voter": "rainchen" + }, + { + "rshares": "204617448258", + "voter": "jl777" + }, + { + "rshares": "103514864", + "voter": "pokemon" + }, + { + "rshares": "817413671", + "voter": "positive" + }, + { + "rshares": "6361356981", + "voter": "chloetaylor" + }, + { + "rshares": "17267278949", + "voter": "proto" + }, + { + "rshares": "1805641835", + "voter": "sisterholics" + }, + { + "rshares": "61286903", + "voter": "reported" + }, + { + "rshares": "8734133724", + "voter": "taker" + }, + { + "rshares": "57607550", + "voter": "krushing" + }, + { + "rshares": "63852353198", + "voter": "laonie" + }, + { + "rshares": "24561889230", + "voter": "laoyao" + }, + { + "rshares": "1332427399", + "voter": "myfirst" + }, + { + "rshares": "12961212091", + "voter": "somebody" + }, + { + "rshares": "484610059", + "voter": "flysaga" + }, + { + "rshares": "2084691327", + "voter": "gmurph" + }, + { + "rshares": "513517114", + "voter": "minnowsunited" + }, + { + "rshares": "2863236010", + "voter": "midnightoil" + }, + { + "rshares": "56653113", + "voter": "whatyouganjado" + }, + { + "rshares": "3323984357", + "voter": "kurtbeil" + }, + { + "rshares": "7161280807", + "voter": "xiaohui" + }, + { + "rshares": "323406893", + "voter": "elfkitchen" + }, + { + "rshares": "5855543935", + "voter": "oflyhigh" + }, + { + "rshares": "63373184", + "voter": "makaveli" + }, + { + "rshares": "223891286", + "voter": "xiaokongcom" + }, + { + "rshares": "1780319109", + "voter": "future24" + }, + { + "rshares": "7709317035", + "voter": "thebotkiller" + }, + { + "rshares": "451324143", + "voter": "xianjun" + }, + { + "rshares": "647921440", + "voter": "herbertmueller" + }, + { + "rshares": "56109399", + "voter": "alexbones" + }, + { + "rshares": "2022625104", + "voter": "chinadaily" + }, + { + "rshares": "90172824082", + "voter": "serejandmyself" + }, + { + "rshares": "163783062", + "voter": "nang1" + }, + { + "rshares": "2982676167", + "voter": "netaterra" + }, + { + "rshares": "52319145", + "voter": "dobbydaba" + }, + { + "rshares": "22559404087", + "voter": "andrewawerdna" + }, + { + "rshares": "77466140", + "voter": "ozertayiz" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "55922029", + "voter": "salebored" + }, + { + "rshares": "2196862373", + "voter": "runridefly" + }, + { + "rshares": "115288806334", + "voter": "shenanigator" + }, + { + "rshares": "1709331623", + "voter": "funkywanderer" + }, + { + "rshares": "4594182561", + "voter": "richardcrill" + }, + { + "rshares": "79155262951", + "voter": "markrmorrisjr" + }, + { + "rshares": "55917888", + "voter": "bitdrone" + }, + { + "rshares": "55908853", + "voter": "sleepcult" + }, + { + "rshares": "27677639861", + "voter": "sponge-bob" + }, + { + "rshares": "12031039232", + "voter": "doitvoluntarily" + }, + { + "rshares": "67696453939", + "voter": "thecyclist" + }, + { + "rshares": "646493719", + "voter": "kev7000" + }, + { + "rshares": "55266473", + "voter": "analyzethis" + }, + { + "rshares": "27671309914", + "voter": "brains" + }, + { + "rshares": "5866415576", + "voter": "burnin" + }, + { + "rshares": "1352324852", + "voter": "bitcoinparadise" + }, + { + "rshares": "4235074146", + "voter": "funnyman" + }, + { + "rshares": "50193769", + "voter": "f1111111" + }, + { + "rshares": "339287005", + "voter": "anomaly" + }, + { + "rshares": "63405661", + "voter": "inarix03" + }, + { + "rshares": "98545946", + "voter": "ola1" + }, + { + "rshares": "4382226038", + "voter": "michelle.gent" + }, + { + "rshares": "66935282", + "voter": "mari5555na" + }, + { + "rshares": "31683945302", + "voter": "goldmatters" + }, + { + "rshares": "155180811", + "voter": "majes" + }, + { + "rshares": "71727340", + "voter": "dealzgal" + }, + { + "rshares": "68013381", + "voter": "storage" + }, + { + "rshares": "58460105", + "voter": "blackmarket" + }, + { + "rshares": "61530871", + "voter": "gifts" + }, + { + "rshares": "96643251", + "voter": "expat" + }, + { + "rshares": "129609202", + "voter": "toddemaher1" + } + ], + "author": "markrmorrisjr", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "## In this episode, Joshua Claiborne stands trial for violation of the First Law ##\n\n**\u201cWhoa, whoa, whoa!\u201d Phil screamed, \u201cWhat the hell dude?\u201d**\n\n*The Reaper crumpled to the floor, arms flailing as Joshua rode it to the ground. Finally, the hands found the catches at either side of the helmet and popped it off. A black, shaggy head of hair emerged.* \n\n***If you've missed episodes, [visit my blog](https://steemit.com/@markrmorrisjr) to catch up. Be sure to follow me for updates in your feed!***\n\n\u201cEmil?\u201d Stella said, \u201cMeet Joshua. Are you okay?\u201d\n\nEmil, the Reaper suit\u2019s operator laughed, \u201cYeah, I\u2019m fine, but that was awesome! Can you teach us that?\u201d\n\n\u201cMan! Now I have to rebuild this helmet,\u201d Phil held up a small remote. \u201cAll I had to do was push this button,\u201d he said, pressing it, as the suit powered down. \u201cWhat did you do?\u201d\n\n\u201cThe \u2018nerve\u2019 bundle that controls these things motor skills is on the very top of the skull, under a thin piece of sheet metal, puncture it, it collapses. You didn\u2019t know that?\u201d Joshua said. \n\n\u201cWell, it appears we may need you more than you need us,\u201d Stella said. \u201cSo, just say the word and we\u2019ll get you where you need to be. Meanwhile, my team will be working on your son\u2019s location.\u201d\n\nJoshua dropped the letter opener and walked to the stairs, \u201cFine, whatever you need to collect from my meeting, get it. Now, who\u2019s driving?\u201d With that, he walked up the stairs, he had no more time to waste. \n\n**The Mapleton courthouse sat on a hill in the center of the town, overlooking the area around for miles.** \n\n*Joshua insisted that the team Stella had sent stop 5 miles out and allow him to ride in on the electric trike alone, while they observed the meeting from a distance.* \n\nHe carried the tiny remote in his shirt pocket, a gift from Phil. \u201cThat\u2019s my only prototype, so don\u2019t lose it,\u201d he\u2019d said. \n\n![enter image description here](https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg)\n\nFrom the end of Main Street, looking up toward the courthouse, Joshua counted at least six reapers. He wondered how far the signal from the remote would travel. \n\nHe thought about pressing it now, disarming his enemy, then walking in, but he\u2019d still have to deal with the six drivers, if they managed to escape the suits. \n\nBesides, Stella seemed to think there was some secret they were going to give away, although Joshua couldn\u2019t imagine it. \n\n*He checked his watch, ten minutes until his scheduled time and while he knew better than to be late, he had no intention of giving the Consensus one more second than he had to.* \n\nThe trike spun it\u2019s tires on a patch of loose gravel as he started back up. He decided a quick approach was best. He charged up the hill, jumping the \u201cMayor\u2019s\u201d parking barrier and rolling up to the foot of the front stairs, he cranked the accelerator and the trike rose up on its back wheel, popping the two front wheels, over the bottom step. \n\nThe machine had more than enough power to climb the steps and Joshua skidded to a stop outside the courthouse door. He stopped and turned back toward the town, the six Reapers swarming toward him up the steps. He powered down, swung his leg up and over the bike and opened the door. \n\n**The Reapers followed him into the hall as he approached the court room.** \n\nThe Magistrate sat behind the judge\u2019s bench and Joshua couldn\u2019t help but smirk at the insult to the very concept of actual justice that this thing represented. \n\n\u201cJoshua Claiborne, appearing as requested,\u201d Joshua said, standing directly in front of the Magistrate. \n\n![enter image description here](https://s12.postimg.org/6h4lvyh7x/judge.jpg)\n\n> \u201cYes, Mr. Claiborne, have a seat,\u201d A woman\u2019s face, projected on the face shield of the Magistrate said.\n\n\u201cI\u2019d rather stand,\u201d he said. \n\n> \u201cSuit yourself, may we have the room, please?\u201d she said, looking toward the reapers that had entered the back doors of the courtroom.\n\nThey left quietly. \n\n> \u201cMr. Claiborne, you\u2019re charged with violation of the first law, in so\n> much as you have encouraged and joined in the activity of settling\n> outside of Consensus approved areas, acted outside of the legal\n> jurisdiction of the council and on more than one occasion, acted\n> against the best interest of Consensus, including attacking duly\n> authorized Magistrates in the course of their legally binding duties,\n> how do you plead?\u201d\n\n**The woman looked at Joshua, peering over a pair of short, square spectacles, like some sort of outdated stereotype.** \n\n\u201cNot guilty, by reason of illegitimacy of the currently established government and its ensigns. I am not, nor do I choose to become, subject to your law. I stand judged as innocent by natural law, insomuch as I have not caused harm to another human in aggression, damaged or stolen property, nor unnecessarily restricted the liberty of any other person. I recognize no other responsibility to my fellow man,\u201d Joshua said calmly. \n\n> \u201cBe that as it may, Mr. Claiborne, we are not here under the auspices of \u201cnatural law\u201d but rather, under the Council mandated authority of the Consensus and its Magisterial Ministry, of which I am a part and I assure you, you are subject to,\u201d\n\nThe woman intoned, her expression one of almost sheer boredom.\n\n> \u201cCourt finds the defendant guilty and remands the subject for immediate judicial murder.\u201d\n\nThe magistrate raised its arm and brought it down on the bench with a solid thud, that echoed through the court. Joshua felt his heart sink as the Reapers reentered the court and moved up to surround him. \n\n## Look for the upvote button below. If you liked the post, upvote and share! If you're not on Steemit yet, why not? You get free money for signing up! ##", + "category": "story", + "children": 2, + "created": "2016-09-15T16:54:06", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg", + "https://s12.postimg.org/6h4lvyh7x/judge.jpg" + ], + "links": [ + "https://steemit.com/@markrmorrisjr" + ], + "tags": [ + "story", + "fiction", + "anarchy", + "life", + "minnowsunited" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62355283653318, + "payout": 226.397, + "payout_at": "2016-09-22T16:54:06", + "pending_payout_value": "226.397 HBD", + "percent_hbd": 10000, + "permlink": "original-fiction-anarchist-s-almanac-episode-15", + "post_id": 1256087, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 120 + }, + "title": "Original Fiction: Anarchist's Almanac, Episode 15", + "updated": "2016-09-15T16:54:06", + "url": "/story/@markrmorrisjr/original-fiction-anarchist-s-almanac-episode-15" + }, + { + "active_votes": [ + { + "rshares": "504201493814", + "voter": "barrie" + }, + { + "rshares": "31621044834059", + "voter": "smooth" + }, + { + "rshares": "231803784363", + "voter": "anonymous" + }, + { + "rshares": "1992555050222", + "voter": "apple" + }, + { + "rshares": "1912040731624", + "voter": "badassmother" + }, + { + "rshares": "2053103615195", + "voter": "hr1" + }, + { + "rshares": "1304415071462", + "voter": "rossco99" + }, + { + "rshares": "2352777844031", + "voter": "wang" + }, + { + "rshares": "22390337604", + "voter": "jaewoocho" + }, + { + "rshares": "1576668025571", + "voter": "joseph" + }, + { + "rshares": "466113536214", + "voter": "recursive2" + }, + { + "rshares": "452820496964", + "voter": "recursive3" + }, + { + "rshares": "651951614915", + "voter": "masteryoda" + }, + { + "rshares": "3120381242465", + "voter": "recursive" + }, + { + "rshares": "91328598326", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6959198181", + "voter": "bingo-0" + }, + { + "rshares": "5939784887153", + "voter": "smooth.witness" + }, + { + "rshares": "446272257734", + "voter": "boatymcboatface" + }, + { + "rshares": "9167804100", + "voter": "idol" + }, + { + "rshares": "22448634206", + "voter": "wpalczynski" + }, + { + "rshares": "816380174873", + "voter": "steemrollin" + }, + { + "rshares": "5147541712", + "voter": "sakr" + }, + { + "rshares": "284355351943", + "voter": "chitty" + }, + { + "rshares": "34575031962", + "voter": "unosuke" + }, + { + "rshares": "481762857054", + "voter": "noaommerrr" + }, + { + "rshares": "1578007819", + "voter": "jocelyn" + }, + { + "rshares": "85270098112", + "voter": "acidsun" + }, + { + "rshares": "14692173218", + "voter": "gregory-f" + }, + { + "rshares": "9604795718", + "voter": "gregory60" + }, + { + "rshares": "18382400031", + "voter": "jademont" + }, + { + "rshares": "1294872282183", + "voter": "gavvet" + }, + { + "rshares": "89897365397", + "voter": "eeks" + }, + { + "rshares": "1511911763", + "voter": "fkn" + }, + { + "rshares": "122160437", + "voter": "paco-steem" + }, + { + "rshares": "1471653540", + "voter": "spaninv" + }, + { + "rshares": "1987313581", + "voter": "elishagh1" + }, + { + "rshares": "8669811688", + "voter": "richman" + }, + { + "rshares": "584222819564", + "voter": "nanzo-scoop" + }, + { + "rshares": "28116199940", + "voter": "acidyo" + }, + { + "rshares": "9857648383", + "voter": "kefkius" + }, + { + "rshares": "177403714671", + "voter": "mummyimperfect" + }, + { + "rshares": "313689446", + "voter": "coar" + }, + { + "rshares": "106631248984", + "voter": "asch" + }, + { + "rshares": "1061230469", + "voter": "murh" + }, + { + "rshares": "936957207", + "voter": "slickwilly" + }, + { + "rshares": "3187804154", + "voter": "cryptofunk" + }, + { + "rshares": "579494558", + "voter": "kodi" + }, + { + "rshares": "2057367746", + "voter": "error" + }, + { + "rshares": "11847990151", + "voter": "andu" + }, + { + "rshares": "962069747008", + "voter": "cyber" + }, + { + "rshares": "61712174604", + "voter": "theshell" + }, + { + "rshares": "49577333486", + "voter": "ak2020" + }, + { + "rshares": "24894446745", + "voter": "paul-labossiere" + }, + { + "rshares": "400880323222", + "voter": "taoteh1221" + }, + { + "rshares": "95314034", + "voter": "stiletto" + }, + { + "rshares": "56688940478", + "voter": "juanmiguelsalas" + }, + { + "rshares": "33781859925", + "voter": "ratel" + }, + { + "rshares": "15787327103", + "voter": "zakharya" + }, + { + "rshares": "280717515045", + "voter": "trogdor" + }, + { + "rshares": "5287383826", + "voter": "tee-em" + }, + { + "rshares": "121383360964", + "voter": "geoffrey" + }, + { + "rshares": "42737137488", + "voter": "kimziv" + }, + { + "rshares": "74286777275", + "voter": "emily-cook" + }, + { + "rshares": "2187597574", + "voter": "superfreek" + }, + { + "rshares": "49806164408", + "voter": "isteemit" + }, + { + "rshares": "4091429870", + "voter": "spikykevin" + }, + { + "rshares": "52090524796", + "voter": "venuspcs" + }, + { + "rshares": "3989473346", + "voter": "michaellamden68" + }, + { + "rshares": "19974764064", + "voter": "thebatchman" + }, + { + "rshares": "158997516614", + "voter": "asmolokalo" + }, + { + "rshares": "8603166550", + "voter": "getssidetracked" + }, + { + "rshares": "5165418905", + "voter": "riscadox" + }, + { + "rshares": "17538291453", + "voter": "konstantin" + }, + { + "rshares": "261755903", + "voter": "mstang83" + }, + { + "rshares": "39099397056", + "voter": "hitmeasap" + }, + { + "rshares": "252977703", + "voter": "nexus1" + }, + { + "rshares": "1515818756", + "voter": "burmik123" + }, + { + "rshares": "280713275", + "voter": "ksenia" + }, + { + "rshares": "1649898982", + "voter": "trees" + }, + { + "rshares": "231686197", + "voter": "strawhat" + }, + { + "rshares": "219133173153", + "voter": "domino" + }, + { + "rshares": "251687687", + "voter": "playtime" + }, + { + "rshares": "404548352", + "voter": "whitepeach" + }, + { + "rshares": "7380400309", + "voter": "furion" + }, + { + "rshares": "6462652657", + "voter": "owdy" + }, + { + "rshares": "1256448483", + "voter": "dicov" + }, + { + "rshares": "2936170685", + "voter": "steem1653" + }, + { + "rshares": "136318424", + "voter": "cynetyc" + }, + { + "rshares": "18770538147", + "voter": "sebastien" + }, + { + "rshares": "13787216422", + "voter": "sitaru" + }, + { + "rshares": "80777327", + "voter": "snowden" + }, + { + "rshares": "14167053756", + "voter": "aaseb" + }, + { + "rshares": "4209522316", + "voter": "karen13" + }, + { + "rshares": "10646413479", + "voter": "deviedev" + }, + { + "rshares": "266599021635", + "voter": "nabilov" + }, + { + "rshares": "2286950597", + "voter": "dmacshady" + }, + { + "rshares": "726313838", + "voter": "luisucv34" + }, + { + "rshares": "8811980236", + "voter": "herverisson" + }, + { + "rshares": "53424827264", + "voter": "streetstyle" + }, + { + "rshares": "46856213520", + "voter": "milestone" + }, + { + "rshares": "3801182358", + "voter": "maximkichev" + }, + { + "rshares": "15070465231", + "voter": "nippel66" + }, + { + "rshares": "167302364294", + "voter": "blueorgy" + }, + { + "rshares": "12849414672", + "voter": "benjiberigan" + }, + { + "rshares": "932248554", + "voter": "poseidon" + }, + { + "rshares": "19717588129", + "voter": "mustafaomar" + }, + { + "rshares": "3506039536", + "voter": "simon.braki.love" + }, + { + "rshares": "82781233416", + "voter": "thylbom" + }, + { + "rshares": "32542976852", + "voter": "deanliu" + }, + { + "rshares": "5609548617", + "voter": "sharker" + }, + { + "rshares": "541016983", + "voter": "qonq99" + }, + { + "rshares": "204615752038", + "voter": "jl777" + }, + { + "rshares": "119983138", + "voter": "pokemon" + }, + { + "rshares": "1226120506", + "voter": "positive" + }, + { + "rshares": "6939662161", + "voter": "chloetaylor" + }, + { + "rshares": "43638419601", + "voter": "claudiop63" + }, + { + "rshares": "17267164725", + "voter": "proto" + }, + { + "rshares": "7222403812", + "voter": "sisterholics" + }, + { + "rshares": "1444237397", + "voter": "alex.chien" + }, + { + "rshares": "8781903824", + "voter": "royalmacro" + }, + { + "rshares": "1838367968", + "voter": "remlaps" + }, + { + "rshares": "149624601", + "voter": "steemster1" + }, + { + "rshares": "3353872300", + "voter": "glitterpig" + }, + { + "rshares": "8734116589", + "voter": "taker" + }, + { + "rshares": "59219358", + "voter": "sharon" + }, + { + "rshares": "4999720649", + "voter": "dumar022" + }, + { + "rshares": "2077201153", + "voter": "merej99" + }, + { + "rshares": "60342922", + "voter": "lillianjones" + }, + { + "rshares": "255401498427", + "voter": "laonie" + }, + { + "rshares": "24561432292", + "voter": "laoyao" + }, + { + "rshares": "7994421908", + "voter": "myfirst" + }, + { + "rshares": "51843535316", + "voter": "somebody" + }, + { + "rshares": "1938401760", + "voter": "flysaga" + }, + { + "rshares": "2501627790", + "voter": "gmurph" + }, + { + "rshares": "1691577797", + "voter": "chris.roy" + }, + { + "rshares": "1693568633", + "voter": "stormblaze" + }, + { + "rshares": "11452681912", + "voter": "midnightoil" + }, + { + "rshares": "2327843962", + "voter": "kalimor" + }, + { + "rshares": "84246848", + "voter": "coderg" + }, + { + "rshares": "4190252928", + "voter": "ullikume" + }, + { + "rshares": "3323749960", + "voter": "kurtbeil" + }, + { + "rshares": "28644139641", + "voter": "xiaohui" + }, + { + "rshares": "1349109906", + "voter": "dolov" + }, + { + "rshares": "1293603524", + "voter": "elfkitchen" + }, + { + "rshares": "103394476995", + "voter": "joele" + }, + { + "rshares": "5855492830", + "voter": "oflyhigh" + }, + { + "rshares": "895550716", + "voter": "xiaokongcom" + }, + { + "rshares": "2118152083", + "voter": "natalymaty" + }, + { + "rshares": "60819615", + "voter": "msjennifer" + }, + { + "rshares": "55925537", + "voter": "ciao" + }, + { + "rshares": "1156101266", + "voter": "darthnava" + }, + { + "rshares": "3670417888", + "voter": "villainblack" + }, + { + "rshares": "8410164039", + "voter": "thebotkiller" + }, + { + "rshares": "3033050865", + "voter": "jrcornel" + }, + { + "rshares": "54217761", + "voter": "steemo" + }, + { + "rshares": "1805262907", + "voter": "xianjun" + }, + { + "rshares": "26819912795", + "voter": "hanshotfirst" + }, + { + "rshares": "54077897", + "voter": "steema" + }, + { + "rshares": "71282219", + "voter": "confucius" + }, + { + "rshares": "93801736989", + "voter": "miacats" + }, + { + "rshares": "2249572206", + "voter": "njall" + }, + { + "rshares": "54909929", + "voter": "jarvis" + }, + { + "rshares": "118219525", + "voter": "microluck" + }, + { + "rshares": "54313084", + "voter": "fortuner" + }, + { + "rshares": "2077267800", + "voter": "chinadaily" + }, + { + "rshares": "4879530405", + "voter": "almerri" + }, + { + "rshares": "9253395112", + "voter": "johnnyyash" + }, + { + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "rshares": "4751552849", + "voter": "themanualbot" + }, + { + "rshares": "136485885", + "voter": "nang1" + }, + { + "rshares": "13839238841", + "voter": "telos" + }, + { + "rshares": "51877132", + "voter": "johnbyrd" + }, + { + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "rshares": "51859074", + "voter": "thermor" + }, + { + "rshares": "51870077", + "voter": "ficholl" + }, + { + "rshares": "53030738", + "voter": "widell" + }, + { + "rshares": "51481279", + "voter": "revelbrooks" + }, + { + "rshares": "406983674", + "voter": "mig641" + }, + { + "rshares": "169608367", + "voter": "kamil5" + }, + { + "rshares": "59295031", + "voter": "dobbydaba" + }, + { + "rshares": "24294717617", + "voter": "andrewawerdna" + }, + { + "rshares": "55367485477", + "voter": "mandibil" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "51562255", + "voter": "curpose" + }, + { + "rshares": "76072115", + "voter": "steembriefing" + }, + { + "rshares": "55750195", + "voter": "riv" + }, + { + "rshares": "2196862373", + "voter": "runridefly" + }, + { + "rshares": "1783607101", + "voter": "funkywanderer" + }, + { + "rshares": "2249900457", + "voter": "jeremyfromwi" + }, + { + "rshares": "2056057288", + "voter": "eight-rad" + }, + { + "rshares": "51712804", + "voter": "troich" + }, + { + "rshares": "9458733324", + "voter": "aggroed" + }, + { + "rshares": "51718188", + "voter": "crion" + }, + { + "rshares": "182060433", + "voter": "greatness" + }, + { + "rshares": "51388276", + "voter": "hitherise" + }, + { + "rshares": "51379706", + "voter": "wiss" + }, + { + "rshares": "54247555535", + "voter": "sponge-bob" + }, + { + "rshares": "52143228", + "voter": "stroully" + }, + { + "rshares": "88628906", + "voter": "ruscion" + }, + { + "rshares": "1086106040", + "voter": "tatianka" + }, + { + "rshares": "54175638", + "voter": "apparat" + }, + { + "rshares": "51814474", + "voter": "thadm" + }, + { + "rshares": "51812703", + "voter": "prof" + }, + { + "rshares": "157957231026", + "voter": "thecyclist" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "50370757", + "voter": "yorsens" + }, + { + "rshares": "201688406600", + "voter": "asksisk" + }, + { + "rshares": "50065875", + "voter": "bane" + }, + { + "rshares": "50059754", + "voter": "vive" + }, + { + "rshares": "51142585", + "voter": "coad" + }, + { + "rshares": "51922012", + "voter": "sofa" + }, + { + "rshares": "323483227", + "voter": "panther" + }, + { + "rshares": "60610693", + "voter": "plantbasedjunkie" + }, + { + "rshares": "55341943517", + "voter": "brains" + }, + { + "rshares": "517900727", + "voter": "mohamedmashaal" + }, + { + "rshares": "20617809185", + "voter": "skypilot" + }, + { + "rshares": "50933404", + "voter": "ailo" + }, + { + "rshares": "5753290068", + "voter": "chick1" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "51568971", + "voter": "typingagent" + }, + { + "rshares": "51581492", + "voter": "cwb" + }, + { + "rshares": "339274981", + "voter": "anomaly" + }, + { + "rshares": "147786454", + "voter": "ola1" + }, + { + "rshares": "50441122", + "voter": "eavy" + }, + { + "rshares": "50454901", + "voter": "roto" + }, + { + "rshares": "71955428", + "voter": "mari5555na" + }, + { + "rshares": "157644916", + "voter": "iggy" + }, + { + "rshares": "51232949", + "voter": "dragonice" + }, + { + "rshares": "50907857", + "voter": "oxygen" + }, + { + "rshares": "50871059", + "voter": "motion" + }, + { + "rshares": "50796122", + "voter": "factom" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "50565798", + "voter": "penthouse" + }, + { + "rshares": "50538694", + "voter": "fenix" + }, + { + "rshares": "2118281183", + "voter": "bapparabi" + }, + { + "rshares": "50487909", + "voter": "opticalillusions" + }, + { + "rshares": "50349676", + "voter": "albertheijn" + }, + { + "rshares": "90053391", + "voter": "remlaps1" + }, + { + "rshares": "239963421", + "voter": "darkminded153" + }, + { + "rshares": "527464783", + "voter": "grisha-danunaher" + }, + { + "rshares": "72826233", + "voter": "igtes" + }, + { + "rshares": "141679752", + "voter": "buffett" + }, + { + "rshares": "161815656", + "voter": "ranger" + }, + { + "rshares": "444435987", + "voter": "witchcraftblog" + }, + { + "rshares": "161693690", + "voter": "shadowproject" + }, + { + "rshares": "160975092", + "voter": "user45-87" + }, + { + "rshares": "157182398", + "voter": "planet" + }, + { + "rshares": "156043541", + "voter": "disneypixar" + }, + { + "rshares": "159143891", + "voter": "reef" + }, + { + "rshares": "158602900", + "voter": "steem-wallet" + }, + { + "rshares": "31683945302", + "voter": "goldmatters" + }, + { + "rshares": "68013381", + "voter": "storage" + }, + { + "rshares": "58460105", + "voter": "blackmarket" + }, + { + "rshares": "61530871", + "voter": "gifts" + }, + { + "rshares": "135637537", + "voter": "toddemaher1" + }, + { + "rshares": "153397644", + "voter": "milank" + }, + { + "rshares": "153325742", + "voter": "denise12" + } + ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Hello everyone. I did not write anything about World War II for a long time. So today I decided to tell you about the Tank Destroyers. About the machines, specialization of which was the destruction of tanks. In this article I will talk about the classic representatives of this class.\n>\u0412\u0441\u0456\u043c \u043f\u0440\u0438\u0432\u0456\u0442. \u0414\u0430\u0432\u043d\u0435\u043d\u044c\u043a\u043e \u044f \u043d\u0435 \u043f\u0438\u0441\u0430\u0432 \u043d\u0456\u0447\u043e\u0433\u043e \u043d\u0430 \u0442\u0435\u043c\u0443 \u0414\u0440\u0443\u0433\u043e\u0457 \u0421\u0432\u0456\u0442\u043e\u0432\u043e\u0457. \u0406 \u043e\u0441\u044c \u0441\u044c\u043e\u0433\u043e\u0434\u043d\u0456 \u044f \u0432\u0438\u0440\u0456\u0448\u0438\u0432 \u0440\u043e\u0437\u043f\u043e\u0432\u0456\u0441\u0442\u0438 \u0432\u0430\u043c \u043f\u0440\u043e \u041f\u0422-\u0421\u0410\u0423. \u041f\u0440\u043e \u043c\u0430\u0448\u0438\u043d\u0438, \u0441\u043f\u0435\u0446\u0456\u0430\u043b\u0456\u0437\u0430\u0446\u0456\u0454\u044e \u044f\u043a\u0438\u0445 \u0431\u0443\u043b\u043e \u0437\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0442\u0430\u043d\u043a\u0456\u0432. \u0423 \u0446\u0456\u0439 \u0447\u0430\u0441\u0442\u0438\u043d\u0456 \u044f \u0440\u043e\u0437\u043f\u043e\u0432\u0456\u043c \u043f\u0440\u043e \u043a\u043b\u0430\u0441\u0438\u0447\u043d\u0438\u0445 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043d\u0438\u043a\u0456\u0432 \u0441\u0432\u043e\u0433\u043e \u043a\u043b\u0430\u0441\u0443.\n\n# StuG III\nhttp://i.piccy.info/i9/3d367a52a1b8dc6c22f126332f335144/1473836215/88822/1063747/cqWCxy6vYP0.jpg\n\nLet's start with the most produced Tank Destroyer in the history. At the beginning of the WW II German command decided to create a mobile artillery on the basis of existing tanks, which would be able to support the infantry. The priority in new machine were the firepower, a good armor and cheapness. The firm Daimler-Benz successfully embodied these wishes into reality. There were about eight versions of StuG III, however, the main was Ausf. G. The cost of production of one StuG was quite low - 83 000 DM. Total was released 10500 machines. The basis for the creation was German tank PzKpfw III.\nInitially StuG III was equipped with a short-75mm gun, but when good armored Soviet T-34 came to the fronts, it was decided to replace short gun with a new long-barreled 75mm cannon Stuk 40 L / 48, which surely hit the Soviet tanks. StuG armor was quite good \u2013 50 mm in a front took a punch at a distance of 1 km. StuG III was very compact in a size and had good mobility. The main disadvantage was little size which allowed bad conditions for crew working. StuG III took active part in a war from the very beginning to its end. \nhttp://i.piccy.info/i9/5dc09cebc0ddfcd1fac4a8013ee385ad/1473836240/182233/1063747/5u9ghQyvkTc.jpg\n\n>\u041f\u043e\u0447\u043d\u0435\u043c\u043e \u0437 \u043d\u0430\u0439\u043c\u0430\u0441\u043e\u0432\u0456\u0448\u0457 \u041f\u0422-\u0421\u0410\u0423 \u0432 \u0456\u0441\u0442\u043e\u0440\u0456\u0457. \u041d\u0430 \u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0432\u0456\u0439\u043d\u0438 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u0438\u0440\u0456\u0448\u0438\u043b\u043e \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0443 \u0430\u0440\u0442\u0438\u043b\u0435\u0440\u0456\u044e \u043d\u0430 \u0431\u0430\u0437\u0456 \u0432\u0436\u0435 \u043d\u0430\u044f\u0432\u043d\u0438\u0445 \u0442\u0430\u043d\u043a\u0456\u0432, \u0437\u0434\u0430\u0442\u043d\u0443 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0430\u0442\u0438 \u043f\u0456\u0445\u043e\u0442\u0443. \u041f\u0440\u0456\u043e\u0440\u0438\u0442\u0435\u0442\u043d\u043e\u044e \u0431\u0443\u043b\u0430 \u0432\u043e\u0433\u043d\u0435\u0432\u0430 \u043c\u0456\u0446\u044c, \u0433\u0430\u0440\u043d\u0435 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f \u0456 \u0434\u0435\u0448\u0435\u0432\u0438\u0437\u043d\u0430. \u0424\u0456\u0440\u043c\u0430 Daimler-Benz \u0432\u0434\u0430\u043b\u043e \u0432\u0442\u0456\u043b\u0438\u043b\u0430 \u0446\u0456 \u043f\u043e\u0431\u0430\u0436\u0430\u043d\u043d\u044f \u0432 \u0440\u0435\u0430\u043b\u044c\u043d\u0456\u0441\u0442\u044c. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0431\u043b\u0438\u0437\u044c\u043a\u043e \u0432\u043e\u0441\u044c\u043c\u0438 \u043c\u043e\u0434\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u0439 StuG III, \u043f\u0440\u043e\u0442\u0435 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u044e \u0431\u0443\u043b\u0430 Ausf. G. \u0412\u0430\u0440\u0442\u0456\u0441\u0442\u044c \u043e\u0434\u043d\u0456\u0454\u0457 \u041f\u0422-\u0421\u0410\u0423 \u0431\u0443\u043b\u0430 \u0434\u043e\u0441\u0438\u0442\u044c \u043d\u0438\u0437\u044c\u043a\u043e\u044e - 83 000 \u043c\u0430\u0440\u043e\u043a. \u0421\u0443\u043c\u0430\u0440\u043d\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 10500 \u043c\u0430\u0448\u0438\u043d. \u0411\u0430\u0437\u043e\u044e \u0434\u043b\u044f \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f \u043f\u043e\u0441\u043b\u0443\u0436\u0438\u0432 \u0442\u0430\u043d\u043a PzKpfw III.\n\u0421\u043f\u043e\u0447\u0430\u0442\u043a\u0443 StuG III \u043e\u0441\u043d\u0430\u0449\u0443\u0432\u0430\u0432\u0441\u044f \u043a\u043e\u0440\u043e\u0442\u043a\u043e\u0441\u0442\u0432\u043e\u043b\u044c\u043d\u043e\u044e 75\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u043e\u044e, \u043e\u0434\u043d\u0430\u043a \u0437 \u043f\u043e\u044f\u0432\u043e\u044e \u043d\u0430 \u0444\u0440\u043e\u043d\u0442\u0430\u0445 \u0422-34 \u0431\u0443\u043b\u043e \u043f\u0440\u0438\u0439\u043d\u044f\u0442\u043e \u0440\u0456\u0448\u0435\u043d\u043d\u044f \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0457\u0457 \u043d\u0430 \u043d\u043e\u0432\u0443 \u0434\u043e\u0432\u0433\u043e\u0441\u0442\u0432\u043e\u043b\u044c\u043d\u0443 75\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u0443 Stuk 40 L / 48, \u044f\u043a\u0430 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u043e \u0432\u0440\u0430\u0436\u0430\u043b\u0430 \u0440\u0430\u0434\u044f\u043d\u0441\u044c\u043a\u0456 \u0442\u0430\u043d\u043a\u0438. \u0411\u0440\u043e\u043d\u044f \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 \u0443 \u043b\u043e\u0431\u0456 \u0431\u0443\u043b\u0430 50 \u043c\u043c \u0456 \u0442\u0440\u0438\u043c\u0430\u043b\u0430 \u0443\u0434\u0430\u0440 \u043d\u0430 \u0432\u0456\u0434\u0441\u0442\u0430\u043d\u0456 1 \u043a\u043c. StuG III \u0432\u0456\u0434\u0440\u0456\u0437\u043d\u044f\u0432\u0441\u044f \u043a\u043e\u043c\u043f\u0430\u043a\u0442\u043d\u0438\u043c\u0438 \u0440\u043e\u0437\u043c\u0456\u0440\u0430\u043c\u0438, \u0445\u043e\u0440\u043e\u0448\u043e\u044e \u043c\u0430\u043d\u0435\u0432\u0440\u0435\u043d\u0456\u0441\u0442\u044e \u0442\u0430 \u043d\u0435\u043f\u043e\u0433\u0430\u043d\u043e\u044e \u0448\u0432\u0438\u0434\u043a\u0456\u0441\u0442\u044e. \u0417 \u043d\u0435\u0434\u043e\u043b\u0456\u043a\u0456\u0432 \u0432\u0430\u0440\u0442\u043e \u0432\u0456\u0434\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u043d\u0435\u0437\u0440\u0443\u0447\u043d\u0456\u0441\u0442\u044c \u0440\u043e\u0431\u043e\u0442\u0438 \u0435\u043a\u0456\u043f\u0430\u0436\u0443 \u0447\u0435\u0440\u0435\u0437 \u043d\u0435\u0432\u0435\u043b\u0438\u043a\u0438\u0439 \u0437\u0430 \u0431\u0440\u043e\u043d\u044c\u043e\u0432\u0438\u0439 \u043f\u0440\u043e\u0441\u0442\u0456\u0440. \u041c\u0430\u0448\u0438\u043d\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0431\u0440\u0430\u043b\u0430 \u0443\u0447\u0430\u0441\u0442\u044c \u0437 \u0441\u0430\u043c\u043e\u0433\u043e \u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0432\u0456\u0439\u043d\u0438 \u0456 \u0434\u043e \u0457\u0457 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u044f.\n\n# Su-85 (100) \u0421\u0423-85 (100)\nhttp://i.piccy.info/i9/b5ef17359d201f4a7a61b38b5e6ca72f/1473836271/164656/1063747/kKktJUlUuXk.jpg\n\nTowards in 1943 it became clear for the Soviet command that to deal effectively with new German tanks Soviet army required new, more modern machines and Tank Destroyers. It was decided to create new Tank Destroyer based on the T-34, driving performance and armor of which were very good. Development of a new machine was conducted at Uralmash factory.\nSu-85 had a new long-barreled 85mm gun, similar to that which will soon be installed at T-34-85. This gun was able to destroy enemy medium tanks at the distance of over a kilometer, and heavy tanks \u2013 at 800 meters to a front plate. The gun was placed in the middle part of the Tanks Destroyer body and had angles of + - 8 degrees. Also the inside size of tanks was nice which allowed good conditions for crew working. Driving characteristics inherited from the T-34-85. Armor (45 mm at the front with big armor slope) provided good protection against German medium tanks. A little later, with the release of the T-34-85, SU-85 was converted under the new 100mm gun. It was a tool for successfully destroying any enemy tanks, including Tiger 2. Also Su-100 had a very low silhouette, which contributed to an excellent disguise. Observation and aiming devices have been improved. SU-100 was easy to maintain. This Tank Destroyer applied to the end of the WW II. Total were released 4976 SU-100 and 2050 SU-85.\nhttp://i.piccy.info/i9/4dc33c464a97ab5b3b8b294778f28103/1473836298/33303/1063747/WVaI_c18Lyw.jpg\n\n>\u0411\u043b\u0438\u0436\u0447\u0435 \u0434\u043e 1943 \u0440\u043e\u043a\u0443 \u0440\u0430\u0434\u044f\u043d\u0441\u044c\u043a\u043e\u043c\u0443 \u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u043d\u043d\u044e \u0441\u0442\u0430\u043b\u043e \u0437\u0440\u043e\u0437\u0443\u043c\u0456\u043b\u043e, \u0449\u043e \u0434\u043b\u044f \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0457 \u0431\u043e\u0440\u043e\u0442\u044c\u0431\u0438 \u0437 \u043d\u043e\u0432\u0438\u043c\u0438 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0438\u043c\u0438 \u0442\u0430\u043d\u043a\u0430\u043c\u0438 \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u0456 \u0431\u0456\u043b\u044c\u0448 \u0441\u0443\u0447\u0430\u0441\u043d\u0456 \u043c\u0430\u0448\u0438\u043d\u0438. \u0411\u0443\u043b\u043e \u0432\u0438\u0440\u0456\u0448\u0435\u043d\u043e \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0443 \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043d\u0443 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443 \u043d\u0430 \u0431\u0430\u0437\u0456 \u0442\u0430\u043d\u043a\u0430 \u0422-34, \u0445\u043e\u0434\u043e\u0432\u0456 \u044f\u043a\u043e\u0441\u0442\u0456 \u0456 \u0431\u0440\u043e\u043d\u044f \u044f\u043a\u043e\u0433\u043e \u0431\u0443\u043b\u0438 \u0434\u0443\u0436\u0435 \u0445\u043e\u0440\u043e\u0448\u0456. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u043d\u043e\u0432\u043e\u0457 \u041f\u0422-\u0421\u0410\u0423 \u0432\u0435\u043b\u0430\u0441\u044f \u043d\u0430 \u0423\u0440\u0430\u043b\u043c\u0430\u0448\u0437\u0430\u0432\u043e\u0434\u0456.\n\u0421\u0423-85 \u043c\u0430\u043b\u0430 \u043d\u043e\u0432\u0443 85\u043c\u043c \u043d\u0430\u0440\u0456\u0437\u043d\u0443 \u0433\u0430\u0440\u043c\u0430\u0442\u0443, \u0430\u043d\u0430\u043b\u043e\u0433\u0456\u0447\u043d\u0443 \u0437 \u0442\u043e\u044e, \u044f\u043a\u0430 \u043d\u0435\u0437\u0430\u0431\u0430\u0440\u043e\u043c \u0431\u0443\u0434\u0435 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u043d\u0430 \u0442 34-85. \u0412\u043e\u043d\u0430 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u043b\u043e \u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u043b\u0435\u043c \u0432\u0440\u0430\u0436\u0430\u0442\u0438 \u0441\u0435\u0440\u0435\u0434\u043d\u0456 \u0442\u0430\u043d\u043a\u0438 \u0441\u0443\u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430 \u043d\u0430 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0456\u0457 \u0431\u0456\u043b\u044c\u0448\u0435 \u043a\u0456\u043b\u043e\u043c\u0435\u0442\u0440\u0430, \u0430 \u0432\u0430\u0436\u043a\u0456 - \u043d\u0430 800 \u043c\u0435\u0442\u0440\u0430\u0445. \u0413\u0430\u0440\u043c\u0430\u0442\u0430 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u044e\u0432\u0430\u043b\u0430\u0441\u044f \u043f\u0440\u044f\u043c\u043e \u0432 \u043a\u043e\u0440\u043f\u0443\u0441 \u0456 \u043c\u0430\u043b\u043e \u043a\u0443\u0442\u0438 \u043d\u0430\u0432\u0435\u0434\u0435\u043d\u043d\u044f \u0432 + - 8 \u0433\u0440\u0430\u0434\u0443\u0441\u0456\u0432. \u041a\u043e\u0440\u043f\u0443\u0441 \u0431\u0443\u0432 \u0432\u0456\u0434\u043d\u043e\u0441\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u043e\u0440\u0438\u0439 \u0456 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u0432 \u0437 \u043a\u043e\u043c\u0444\u043e\u0440\u0442\u043e\u043c \u043f\u0440\u0430\u0446\u044e\u0432\u0430\u0442\u0438 \u0435\u043a\u0456\u043f\u0430\u0436\u0443. \u0425\u043e\u0434\u043e\u0432\u0456 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u0421\u0423 \u0443\u0441\u043f\u0430\u0434\u043a\u0443\u0432\u0430\u043b\u0430 \u0432\u0456\u0434 \u0442-34. \u0411\u0440\u043e\u043d\u044f (45\u043c\u043c \u043f\u0456\u0434 \u043d\u0430\u0445\u0438\u043b\u043e\u043c) \u0437\u0430\u0431\u0435\u0437\u043f\u0435\u0447\u0443\u0432\u0430\u043b\u0430 \u0445\u043e\u0440\u043e\u0448\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u043e\u0441\u0442\u0440\u0456\u043b\u0456\u0432 \u0441\u0435\u0440\u0435\u0434\u043d\u0456\u0445 \u0442\u0430\u043d\u043a\u0456\u0432 \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430. \u0422\u0440\u043e\u0445\u0438 \u043f\u0456\u0437\u043d\u0456\u0448\u0435 \u0437 \u0432\u0438\u0445\u043e\u0434\u043e\u043c \u0442\u0430\u043d\u043a\u0430 \u0442 34-85 \u0421\u0443\u0448\u043a\u0438 \u0431\u0443\u043b\u0438 \u043f\u0435\u0440\u0435\u043e\u0431\u043b\u0430\u0434\u043d\u0430\u043d\u0456 \u043f\u0456\u0434 \u043d\u043e\u0432\u0443 100\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u0443. \u0426\u044f \u0433\u0430\u0440\u043c\u0430\u0442 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u043b\u0430 \u0443\u0441\u043f\u0456\u0448\u043d\u043e \u0431\u043e\u0440\u043e\u0442\u0438\u0441\u044f \u0437 \u0431\u0443\u0434\u044c-\u044f\u043a\u0438\u043c \u0442\u0430\u043d\u043a\u043e\u043c \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430, \u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0447\u0438 \u0456 \u0422\u0438\u0433\u0440 2. \u0422\u0430\u043a\u043e\u0436 \u0432\u0430\u0440\u0442\u043e \u0432\u0456\u0434\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u043d\u0438\u0437\u044c\u043a\u0438\u0439 \u0441\u0438\u043b\u0443\u0435\u0442 \u043c\u0430\u0448\u0438\u043d\u0438, \u044f\u043a\u0438\u0439 \u0441\u043f\u0440\u0438\u044f\u0432 \u0432\u0456\u0434\u043c\u0456\u043d\u043d\u043e\u043c\u0443 \u043c\u0430\u0441\u043a\u0443\u0432\u0430\u043d\u043d\u044e. \u0411\u0443\u043b\u0438 \u043f\u043e\u043b\u0456\u043f\u0448\u0435\u043d\u0456 \u043f\u0440\u0438\u043b\u0430\u0434\u0438 \u0441\u043f\u043e\u0441\u0442\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f \u0439 \u043f\u0440\u0438\u0446\u0456\u043b\u044e\u0432\u0430\u043d\u043d\u044f. \u0422\u0435\u0445\u043d\u0456\u043a\u0430 \u0431\u0443\u043b\u0430 \u043f\u0440\u043e\u0441\u0442\u0430 \u0432 \u043e\u0431\u0441\u043b\u0443\u0433\u043e\u0432\u0443\u0432\u0430\u043d\u043d\u0456. \u0426\u044f \u041f\u0422-\u0421\u0410\u0423 \u0437\u0430\u0441\u0442\u043e\u0441\u043e\u0432\u0443\u0432\u0430\u043b\u0430\u0441\u044f \u0434\u043e \u0441\u0430\u043c\u043e\u0433\u043e \u043a\u0456\u043d\u0446\u044f \u0432\u0456\u0439\u043d\u0438. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 4976 \u0421\u0423-100 \u0456 2050 \u0421\u0423-85.\n\n# Jagdpanther (\u042f\u0433\u0434\u043f\u0430\u043d\u0442\u0435\u0440\u0430)\nhttp://i.piccy.info/i9/201bcdc4469d546e806e4a38ba752ea7/1473836330/161907/1063747/_jvoDheMLik.jpg\n\nIn the middle of 1942 the German command decided to create a new Tank Destroyer with 88mm anti-tank gun Pak-43, using the basis of medium tank \u201cPanther\u201d. The development of this Tank Destroyer at first was carried by a Krupp company, then it was given to a Daimler-Benz and at last it was finished by a MIAG company. So, the destiny of Jagdpather was hard. The development has been complicated by the regular air raids allies, constant shortage of necessary parts and confusion in the serial versions of the machine. Jagdpanther took the most actively part in the Ardennes offensive and the Balaton operation.\nhttp://i.piccy.info/i9/d2e68a346dd9f511c77c83d8b77eaf87/1473836361/30639/1063747/XmYA_dzfCU8.jpg\n\nIn general, as a Tank Destroyer Jagdpanthere was great. Maneuverability and speed characteristics were good because of using \u201cPanther\u201d basis. Armor of Jagdpanthere (80 mm in the front with a good armor slope) confidently defended the machine and a crew at the distance of 800 meters from all Soviet tanks. The new 88mm anti-tank gun allowed to destroy the enemy at a distance of 1km. Rate of fire at the same time was very high - 8 rounds per minute. The fighting compartment inside of a car was spacious and was equipped with ventilation, increasing the convenience of the crew working. And don\u2019t forget than Jagdpanther had a low silhouette. The disadvantages were the relatively high cost of the machine (due to the use of scarce materials), unreliability and complexity of the transmission service. Jagdpanther has established itself as a formidable and dangerous opponent, specializing in the destruction of tanks. Total were produced 392 cars.\nhttp://i.piccy.info/i9/f1590af47cd302853838f357b7786d76/1473836385/192289/1063747/V3N3_0icSI.jpg\n\n>\u0423 \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0438 1942 \u0440\u043e\u043a\u0443 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u043d\u043d\u044f \u043f\u0440\u0438\u0439\u043d\u044f\u043b\u043e \u0440\u0456\u0448\u0435\u043d\u043d\u044f \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u041f\u0422-\u0421\u0410\u0423 \u0437 \u043d\u043e\u0432\u043e\u044e \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u043e\u044e 88\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u043e\u044e \u0420\u0430\u043a-43 \u043d\u0430 \u0431\u0430\u0437\u0456 \u0441\u0435\u0440\u0435\u0434\u043d\u044c\u043e\u0433\u043e \u0442\u0430\u043d\u043a\u0430 \u041f\u0430\u043d\u0442\u0435\u0440\u0430. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0443 \u041f\u0422-\u0421\u0410\u0423 \u0441\u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0432\u0435\u043b\u0430 \u0444\u0456\u0440\u043c\u0430 \u041a\u0440\u0443\u043f\u043f, \u043f\u0456\u0437\u043d\u0456\u0448\u0435 \u043f\u0440\u043e\u0435\u043a\u0442 \u0434\u043e\u0440\u043e\u0431\u043b\u044f\u0432\u0441\u044f \u0444\u0456\u0440\u043c\u043e\u044e Daimler-Benz, \u0430 \u0432 \u0441\u0430\u043c\u043e\u043c\u0443 \u043a\u0456\u043d\u0446\u0456 - MIAG. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u0431\u0443\u043b\u0430 \u0443\u0441\u043a\u043b\u0430\u0434\u043d\u0435\u043d\u0430 \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u0438\u043c\u0438 \u0430\u0432\u0456\u0430 \u043d\u0430\u043b\u044c\u043e\u0442\u0430\u043c\u0438 \u0441\u043e\u044e\u0437\u043d\u0438\u043a\u0456\u0432, \u043f\u043e\u0441\u0442\u0456\u0439\u043d\u0438\u043c\u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0447\u0430\u043c\u0438 \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u0438\u0445 \u0434\u0435\u0442\u0430\u043b\u0435\u0439 \u0456 \u043f\u043b\u0443\u0442\u0430\u043d\u0438\u043d\u043e\u044e \u0432 \u0441\u0435\u0440\u0456\u0439\u043d\u0438\u0445 \u043c\u043e\u0434\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u044f\u0445 \u043c\u0430\u0448\u0438\u043d\u0438. \u041d\u0430\u0439\u0431\u0456\u043b\u044c\u0448 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u042f\u0433\u0434\u043f\u0430\u043d\u0442\u0435\u0440\u0438 \u0431\u0440\u0430\u043b\u0438 \u0443\u0447\u0430\u0441\u0442\u044c \u0432 \u0410\u0440\u0434\u0435\u043d\u0441\u044c\u043a\u043e\u043c\u0443 \u043d\u0430\u0441\u0442\u0443\u043f\u0456 \u0442\u0430 \u0411\u0430\u043b\u0430\u0442\u043e\u043d\u0441\u044c\u043a\u0456\u0439 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457.\n\u0412 \u0446\u0456\u043b\u043e\u043c\u0443 \u0441\u0430\u043c\u043e\u0445\u043e\u0434\u043a\u0430 \u0432\u0438\u0439\u0448\u043b\u0430 \u0432\u0434\u0430\u043b\u043e\u044e. \u0425\u043e\u0434\u043e\u0432\u0456 \u0456 \u043c\u0430\u043d\u0435\u0432\u0440\u0435\u043d\u0456 \u044f\u043a\u043e\u0441\u0442\u0456 \u0432\u043e\u043d\u0430 \u0446\u0456\u043b\u043a\u043e\u043c \u0443\u0441\u043f\u0430\u0434\u043a\u0443\u0432\u0430\u043b\u0430 \u0432\u0456\u0434 \u041f\u0430\u043d\u0442\u0435\u0440\u0438 \u0456 \u0432\u043e\u043d\u0438 \u0431\u0443\u043b\u0438 \u043d\u0430 \u0432\u0438\u0441\u043e\u043a\u043e\u043c\u0443 \u0440\u0456\u0432\u043d\u0456. \u0411\u0440\u043e\u043d\u044f \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 (80 \u043c\u043c \u0432 \u043b\u043e\u0431\u0456 \u043f\u0456\u0434 \u0445\u043e\u0440\u043e\u0448\u0438\u043c \u043d\u0430\u0445\u0438\u043b\u043e\u043c) \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u043e \u0437\u0430\u0445\u0438\u0449\u0430\u043b\u0430 \u0457\u0457 \u043d\u0430 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0456\u044f\u0445 \u0432\u0456\u0434 800 \u043c\u0435\u0442\u0440\u0456\u0432. \u041d\u043e\u0432\u0430 88\u043c\u043c \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0430 \u0433\u0430\u0440\u043c\u0430\u0442\u0430 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u043b\u0430 \u0432\u0435\u0441\u0442\u0438 \u043f\u0440\u0438\u0446\u0456\u043b\u044c\u043d\u0438\u0439 \u0432\u043e\u0433\u043e\u043d\u044c \u043f\u043e \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0443 \u043d\u0430 \u0432\u0456\u0434\u0441\u0442\u0430\u043d\u0456 1\u043a\u043c. \u0422\u0435\u043c\u043f \u0441\u0442\u0440\u0456\u043b\u044c\u0431\u0438 \u043f\u0440\u0438 \u0446\u044c\u043e\u043c\u0443 \u0431\u0443\u0432 \u0434\u0443\u0436\u0435 \u0432\u0438\u0441\u043e\u043a\u0438\u0439 - 8 \u043f\u043e\u0441\u0442\u0440\u0456\u043b\u0456\u0432 \u043d\u0430 \u0445\u0432\u0438\u043b\u0438\u043d\u0443. \u0411\u043e\u0439\u043e\u0432\u0435 \u0432\u0456\u0434\u0434\u0456\u043b\u0435\u043d\u043d\u044f \u043c\u0430\u0448\u0438\u043d\u0438 \u0431\u0443\u043b\u043e \u043f\u0440\u043e\u0441\u0442\u043e\u0440\u0438\u043c \u0456 \u043e\u0441\u043d\u0430\u0449\u0443\u0432\u0430\u043b\u043e\u0441\u044f \u0432\u0435\u043d\u0442\u0438\u043b\u044f\u0446\u0456\u0454\u044e, \u0449\u043e \u043f\u0456\u0434\u0432\u0438\u0449\u0443\u0432\u0430\u043b\u043e \u0437\u0440\u0443\u0447\u043d\u043e\u0441\u0442\u0456 \u0440\u043e\u0431\u043e\u0442\u0438 \u0435\u043a\u0456\u043f\u0430\u0436\u0443. \u041f\u0440\u0438\u043b\u0430\u0434\u0438 \u0441\u043f\u043e\u0441\u0442\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f \u0456 \u043f\u0440\u0438\u0446\u0456\u043b\u0438 \u0431\u0443\u043b\u0438 \u044f\u043a \u0437\u0430\u0432\u0436\u0434\u0438 \u043d\u0430 \u0432\u0438\u0449\u043e\u043c\u0443 \u0440\u0456\u0432\u043d\u0456. \u041f\u0422-\u0421\u0410\u0423 \u043c\u0430\u043b\u0430 \u043d\u0438\u0437\u044c\u043a\u0438\u0439 \u0441\u0438\u043b\u0443\u0435\u0442. \u0417 \u043d\u0435\u0434\u043e\u043b\u0456\u043a\u0456\u0432 \u0432\u0430\u0440\u0442\u043e \u0432\u0456\u0434\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u0432\u0456\u0434\u043d\u043e\u0441\u043d\u043e \u0432\u0438\u0441\u043e\u043a\u0443 \u0432\u0430\u0440\u0442\u0456\u0441\u0442\u044c \u043c\u0430\u0448\u0438\u043d\u0438 (\u0447\u0435\u0440\u0435\u0437 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u044f \u0434\u0435\u0444\u0456\u0446\u0438\u0442\u043d\u0438\u0445 \u043c\u0430\u0442\u0435\u0440\u0456\u0430\u043b\u0456\u0432), \u043d\u0435\u043d\u0430\u0434\u0456\u0439\u043d\u0456\u0441\u0442\u044c \u0442\u0440\u0430\u043d\u0441\u043c\u0456\u0441\u0456\u0457 \u0456 \u0441\u043a\u043b\u0430\u0434\u043d\u0456\u0441\u0442\u044c \u0432 \u043e\u0431\u0441\u043b\u0443\u0433\u043e\u0432\u0443\u0432\u0430\u043d\u043d\u0456. \u0422\u0430\u043a\u043e\u0436 \u043d\u0435\u0437\u0430\u0434\u043e\u0432\u0456\u043b\u044c\u043d\u043e\u044e \u0431\u0443\u043b\u0430 \u0431\u0440\u043e\u043d\u044f \u0431\u043e\u0440\u0442\u0456\u0432. \u042f\u0433\u0434\u043f\u0430\u043d\u0442\u0435\u0440\u0430 \u0437\u0430\u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0432\u0430\u043b\u0430 \u0441\u0435\u0431\u0435 \u044f\u043a \u0433\u0440\u0456\u0437\u043d\u0438\u0439 \u0456 \u043d\u0435\u0431\u0435\u0437\u043f\u0435\u0447\u043d\u0438\u0439 \u0441\u0443\u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a, \u0449\u043e \u0441\u043f\u0435\u0446\u0456\u0430\u043b\u0456\u0437\u0443\u0454\u0442\u044c\u0441\u044f \u043d\u0430 \u0432\u0438\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0442\u0430\u043d\u043a\u0456\u0432. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 392 \u043c\u0430\u0448\u0438\u043d\u0438.\n\n# M18 \u201cHellcat\u201d\nhttp://i.piccy.info/i9/96dea13cac0295bde2f7c6dd2ddf0f93/1473836416/237135/1063747/Zt4ltwPq9qQ.jpg\n\nThe design of the American Tank Destroyer was caused by the US military doctrine. In contrast to the Germans and the Soviets, who had good-armored Tank Destroyers with a powerful anti-tank gun and mediocre mobility, American Tank Destroyers were oriented on a good mobility firstly. M18 was developed for quickly interception of enemy tank formations and the destruction of their flanks. This also caused the weak armor, small caliber of guns and excellent mobility equipment. M18 had been developed by General Motors Buick Division, the cost of one machine was 57,000 dollars. Total it was produced 2507 M18.\nAt first it was planned to put the 37mm gun, but very soon it was decided to replace it by the 57mm British gun. But this was not enough, and in the final version M18 was equipped with a 76mm cannon from Shermans. New Tank Destroyer had a very light weight, had weak armor (20mm in the forehead) and the rotating tower, which was unusual for that time. Suspension provides the convenience of driving on rough terrain; the engine allowed reaching speed up to 45 km per hour. M18 was easy to operate and convenient to use. In general, the machine was ambiguous, absorbing a lot of bold decisions.\nhttp://i.piccy.info/i9/df0129bd789f7923e8f0306e5a8b6520/1473836445/147058/1063747/pxmv2fJDVRs.jpg\n\n>\u041a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u043e\u0433\u043e \u0432\u0438\u043d\u0438\u0449\u0443\u0432\u0430\u0447\u0430 \u0442\u0430\u043d\u043a\u0456\u0432 \u043e\u0431\u0443\u043c\u043e\u0432\u043b\u0435\u043d\u0430 \u0432 \u043f\u0435\u0440\u0448\u0443 \u0447\u0435\u0440\u0433\u0443 \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u043e\u044e \u0432\u0456\u0439\u0441\u044c\u043a\u043e\u0432\u043e\u044e \u0434\u043e\u043a\u0442\u0440\u0438\u043d\u043e\u044e. \u041d\u0430 \u0432\u0456\u0434\u043c\u0456\u043d\u0443 \u0432\u0456\u0434 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0438\u0445 \u0456 \u0440\u0430\u0434\u044f\u043d\u0441\u044c\u043a\u0438\u0445 \u0430\u0440\u043c\u0456\u0439, \u0443 \u044f\u043a\u0438\u0445 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0456 \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 \u043c\u0430\u043b\u0438 \u0433\u0430\u0440\u043d\u0443 \u043b\u043e\u0431\u043e\u0432\u0443 \u0431\u0440\u043e\u043d\u044e, \u043f\u043e\u0442\u0443\u0436\u043d\u0443 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0443 \u0433\u0430\u0440\u043c\u0430\u0442\u0443 \u0456 \u043f\u043e\u0441\u0435\u0440\u0435\u0434\u043d\u044e \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0456\u0441\u0442\u044c, \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u0456 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0456 \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 \u0432 \u043f\u0435\u0440\u0448\u0443 \u0447\u0435\u0440\u0433\u0443 \u043f\u043e\u0432\u0438\u043d\u043d\u0456 \u0431\u0443\u043b\u0438 \u0431\u0443\u0442\u0438 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0456. \u041c18 \u0440\u043e\u0437\u0440\u043e\u0431\u043b\u044f\u0432\u0441\u044f \u0434\u043b\u044f \u0448\u0432\u0438\u0434\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0445\u043e\u043f\u043b\u0435\u043d\u043d\u044f \u0442\u0430\u043d\u043a\u043e\u0432\u0438\u0445 \u0437'\u0454\u0434\u043d\u0430\u043d\u044c \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430 \u0456 \u0437\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0457\u0445 \u0437 \u0444\u043b\u0430\u043d\u0433\u0456\u0432. \u0426\u0438\u043c \u0456 \u043e\u0431\u0443\u043c\u043e\u0432\u043b\u044e\u0432\u0430\u043b\u0430\u0441\u044f \u0441\u043b\u0430\u0431\u043a\u0435 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f, \u043d\u0435\u0432\u0435\u043b\u0438\u043a\u0438\u0439 \u043a\u0430\u043b\u0456\u0431\u0440 \u0433\u0430\u0440\u043c\u0430\u0442\u0438 \u0456 \u0432\u0456\u0434\u043c\u0456\u043d\u043d\u0430 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0456\u0441\u0442\u044c \u0442\u0435\u0445\u043d\u0456\u043a\u0438. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u0432\u0435\u043b\u0430\u0441\u044f \u0444\u0456\u0440\u043c\u043e\u044e General Motors Buick Division, \u0432\u0430\u0440\u0442\u0456\u0441\u0442\u044c \u043e\u0434\u043d\u0456\u0454\u0457 \u043c\u0430\u0448\u0438\u043d\u0438 \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b\u0430 57000 \u0434\u043e\u043b\u0430\u0440\u0456\u0432. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 2507 \u041f\u0422-\u0421\u0410\u0423 \u041c18.\n\u0421\u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u043f\u043b\u0430\u043d\u0443\u0432\u0430\u043b\u043e\u0441\u044f \u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u0438 37\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u0443, \u043f\u0440\u043e\u0442\u0435 \u0434\u0443\u0436\u0435 \u0441\u043a\u043e\u0440\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u0440\u0456\u0448\u0435\u043d\u043e \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0457\u0457 \u043d\u0430 57\u043c\u043c \u0431\u0440\u0438\u0442\u0430\u043d\u0441\u044c\u043a\u0443 \u0433\u0430\u0440\u043c\u0430\u0442\u0443. \u0410\u043b\u0435 \u0446\u044c\u043e\u0433\u043e \u0432\u0438\u044f\u0432\u0438\u043b\u043e\u0441\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043d\u044c\u043e, \u0456 \u0432 \u0444\u0456\u043d\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u0432\u0430\u0440\u0456\u0430\u043d\u0442\u0456 \u041c18 \u043e\u0441\u043d\u0430\u0449\u0443\u0432\u0430\u043b\u0430\u0441\u044f 76\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u043e\u044e, \u0449\u043e \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u044e\u0432\u0430\u043b\u0430\u0441\u044f \u043d\u0430 \u0442\u0430\u043d\u043a\u0438 \u0428\u0435\u0440\u043c\u0430\u043d. \u041f\u0422-\u0421\u0410\u0423 \u0431\u0443\u043b\u0430 \u0434\u0443\u0436\u0435 \u043b\u0435\u0433\u043a\u0430, \u043c\u0430\u043b\u0430 \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043a\u0443\u043b\u044c\u043e\u0432\u0435 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f (20\u043c\u043c \u0432 \u043b\u043e\u0431\u0456) \u0456 \u043f\u043e\u0432\u043e\u0440\u043e\u0442\u043d\u0443 \u0431\u0430\u0448\u0442\u0443, \u0449\u043e \u0431\u0443\u043b\u043e \u043d\u0435\u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u043d\u043e \u0434\u043b\u044f \u041f\u0422-\u0421\u0410\u0423 \u0442\u043e\u0433\u043e \u0447\u0430\u0441\u0443. \u041f\u0456\u0434\u0432\u0456\u0441\u043a\u0430 \u0437\u0430\u0431\u0435\u0437\u043f\u0435\u0447\u0443\u0432\u0430\u043b\u0430 \u0437\u0440\u0443\u0447\u043d\u0456\u0441\u0442\u044c \u0457\u0437\u0434\u0438 \u043f\u043e \u043f\u0435\u0440\u0435\u0441\u0456\u0447\u0435\u043d\u0456\u0439 \u043c\u0456\u0441\u0446\u0435\u0432\u043e\u0441\u0442\u0456, \u0434\u0432\u0438\u0433\u0443\u043d \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u0432 \u0440\u043e\u0437\u0432\u0438\u0432\u0430\u0442\u0438 \u0448\u0432\u0438\u0434\u043a\u0456\u0441\u0442\u044c \u0434\u043e 45 \u043a\u043c \u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0443. \u041c18 \u0431\u0443\u0432 \u043f\u0440\u043e\u0441\u0442\u0438\u0439 \u0432 \u043e\u0431\u0441\u043b\u0443\u0433\u043e\u0432\u0443\u0432\u0430\u043d\u043d\u0456 \u0456 \u0437\u0440\u0443\u0447\u043d\u0438\u0439 \u0432 \u0435\u043a\u0441\u043f\u043b\u0443\u0430\u0442\u0430\u0446\u0456\u0457. \u0412 \u0446\u0456\u043b\u043e\u043c\u0443 \u043c\u0430\u0448\u0438\u043d\u0430 \u0432\u0438\u0439\u0448\u043b\u0430 \u043d\u0435\u043e\u0434\u043d\u043e\u0437\u043d\u0430\u0447\u043d\u043e\u044e, \u0443\u0432\u0456\u0431\u0440\u0430\u0432\u0448\u0438 \u0432 \u0441\u0435\u0431\u0435 \u0431\u0435\u0437\u043b\u0456\u0447 \u0441\u043c\u0456\u043b\u0438\u0432\u0438\u0445 \u0440\u0456\u0448\u0435\u043d\u044c.\n\nAt the end I want to say, that the birth of Tank destroyers was caused by the necessary of destroying heavy enemy techniques. Next time I will tell you about machines with a real \u201cBig Guns\u201d.\n>\u041d\u0430 \u0446\u044c\u043e\u043c\u0443 \u043c\u0456 \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u043c\u043e \u043d\u0430\u0448\u0435 \u0437\u043d\u0430\u0439\u043e\u043c\u0441\u0442\u0432\u043e \u0437 \u043a\u043b\u0430\u0441\u043e\u043c \u041f\u0422-\u0421\u0410\u0423. \u041f\u043e\u044f\u0432\u0430 \u0441\u0430\u043c\u043e\u0445\u043e\u0434\u043e\u043a \u0431\u0443\u043b\u0430 \u0432\u0438\u043a\u043b\u0438\u043a\u0430\u043d\u0430 \u043d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u0456\u0441\u0442\u044e \u0437\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0432\u0430\u0436\u043a\u043e\u0457 \u0442\u0435\u0445\u043d\u0456\u043a\u0438 \u0441\u0443\u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430. \u041d\u0430 \u0447\u0435\u0440\u0437\u0456 \u043c\u0430\u0448\u0438\u043d\u0438 \u0437 \u0434\u0456\u0439\u0441\u043d\u043e \u0432\u0435\u043b\u0438\u043a\u0438\u043c\u0438 \u043a\u0430\u043b\u0456\u0431\u0440\u0430\u043c\u0438. \n\n***don't forget to follow @burmik123***", + "category": "tanks", + "children": 20, + "created": "2016-09-15T15:48:12", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.piccy.info/i9/3d367a52a1b8dc6c22f126332f335144/1473836215/88822/1063747/cqWCxy6vYP0.jpg", + "http://i.piccy.info/i9/5dc09cebc0ddfcd1fac4a8013ee385ad/1473836240/182233/1063747/5u9ghQyvkTc.jpg", + "http://i.piccy.info/i9/b5ef17359d201f4a7a61b38b5e6ca72f/1473836271/164656/1063747/kKktJUlUuXk.jpg", + "http://i.piccy.info/i9/4dc33c464a97ab5b3b8b294778f28103/1473836298/33303/1063747/WVaI_c18Lyw.jpg", + "http://i.piccy.info/i9/201bcdc4469d546e806e4a38ba752ea7/1473836330/161907/1063747/_jvoDheMLik.jpg", + "http://i.piccy.info/i9/d2e68a346dd9f511c77c83d8b77eaf87/1473836361/30639/1063747/XmYA_dzfCU8.jpg", + "http://i.piccy.info/i9/f1590af47cd302853838f357b7786d76/1473836385/192289/1063747/V3N3_0icSI.jpg", + "http://i.piccy.info/i9/96dea13cac0295bde2f7c6dd2ddf0f93/1473836416/237135/1063747/Zt4ltwPq9qQ.jpg", + "http://i.piccy.info/i9/df0129bd789f7923e8f0306e5a8b6520/1473836445/147058/1063747/pxmv2fJDVRs.jpg" + ], + "tags": [ + "tanks", + "ua", + "war" + ], + "users": [ + "burmik123" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 64027086650725, + "payout": 239.682, + "payout_at": "2016-09-22T15:48:12", + "pending_payout_value": "239.682 HBD", + "percent_hbd": 10000, + "permlink": "title-steel-monsters-tank-destroyers-of-ww-ii-eng-ua-featuring-burmik123-as-author", + "post_id": 1255397, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 257 + }, + "title": "Steel monsters. Tank Destroyers of WW II. ENG\\UA (featuring @burmik123 as author)", + "updated": "2016-09-15T16:20:39", + "url": "/tanks/@gavvet/title-steel-monsters-tank-destroyers-of-ww-ii-eng-ua-featuring-burmik123-as-author" + }, + { + "active_votes": [ + { + "rshares": "518200944380", + "voter": "barrie" + }, + { + "rshares": "31620599440742", + "voter": "smooth" + }, + { + "rshares": "5980286152113", + "voter": "freedom" + }, + { + "rshares": "1968119541431", + "voter": "badassmother" + }, + { + "rshares": "2052934239988", + "voter": "hr1" + }, + { + "rshares": "1337025448249", + "voter": "rossco99" + }, + { + "rshares": "22864938197", + "voter": "jaewoocho" + }, + { + "rshares": "1575899708999", + "voter": "joseph" + }, + { + "rshares": "98682346357", + "voter": "aizensou" + }, + { + "rshares": "466049312123", + "voter": "recursive2" + }, + { + "rshares": "462419963819", + "voter": "recursive3" + }, + { + "rshares": "3120252422964", + "voter": "recursive" + }, + { + "rshares": "1246183601", + "voter": "mineralwasser" + }, + { + "rshares": "681017160441", + "voter": "boombastic" + }, + { + "rshares": "1670000041", + "voter": "bingo-1" + }, + { + "rshares": "5938790183563", + "voter": "smooth.witness" + }, + { + "rshares": "445638290328", + "voter": "boatymcboatface" + }, + { + "rshares": "9408499254", + "voter": "idol" + }, + { + "rshares": "18955732033", + "voter": "chitty" + }, + { + "rshares": "65857071449", + "voter": "unosuke" + }, + { + "rshares": "1619440533", + "voter": "jocelyn" + }, + { + "rshares": "15004166459", + "voter": "gregory-f" + }, + { + "rshares": "154334962550", + "voter": "edgeland" + }, + { + "rshares": "9796891633", + "voter": "gregory60" + }, + { + "rshares": "1290497974419", + "voter": "gavvet" + }, + { + "rshares": "89897083981", + "voter": "eeks" + }, + { + "rshares": "1511911763", + "voter": "fkn" + }, + { + "rshares": "122160437", + "voter": "paco-steem" + }, + { + "rshares": "1471599418", + "voter": "spaninv" + }, + { + "rshares": "1987313581", + "voter": "elishagh1" + }, + { + "rshares": "8669787638", + "voter": "richman" + }, + { + "rshares": "599944427461", + "voter": "nanzo-scoop" + }, + { + "rshares": "9857442120", + "voter": "kefkius" + }, + { + "rshares": "177393180428", + "voter": "mummyimperfect" + }, + { + "rshares": "313687341", + "voter": "coar" + }, + { + "rshares": "106628883920", + "voter": "asch" + }, + { + "rshares": "1061184463", + "voter": "murh" + }, + { + "rshares": "3187790925", + "voter": "cryptofunk" + }, + { + "rshares": "579494558", + "voter": "kodi" + }, + { + "rshares": "2111403468", + "voter": "error" + }, + { + "rshares": "985486511940", + "voter": "cyber" + }, + { + "rshares": "61710806563", + "voter": "theshell" + }, + { + "rshares": "50879010002", + "voter": "ak2020" + }, + { + "rshares": "1616373298272", + "voter": "satoshifund" + }, + { + "rshares": "409218031185", + "voter": "taoteh1221" + }, + { + "rshares": "418880227", + "voter": "applecrisp" + }, + { + "rshares": "95314034", + "voter": "stiletto" + }, + { + "rshares": "19213136885", + "voter": "ziv" + }, + { + "rshares": "15787116636", + "voter": "zakharya" + }, + { + "rshares": "280675599804", + "voter": "trogdor" + }, + { + "rshares": "19151208027", + "voter": "crypto-fan" + }, + { + "rshares": "121380113922", + "voter": "geoffrey" + }, + { + "rshares": "16025451490", + "voter": "kimziv" + }, + { + "rshares": "76008701316", + "voter": "emily-cook" + }, + { + "rshares": "2187587354", + "voter": "superfreek" + }, + { + "rshares": "387326356155", + "voter": "fyrstikken" + }, + { + "rshares": "49806164408", + "voter": "isteemit" + }, + { + "rshares": "29635215678", + "voter": "acassity" + }, + { + "rshares": "280916636", + "voter": "ladyclair" + }, + { + "rshares": "3898803498", + "voter": "michaellamden68" + }, + { + "rshares": "19974572536", + "voter": "thebatchman" + }, + { + "rshares": "153697599394", + "voter": "asmolokalo" + }, + { + "rshares": "73848595449", + "voter": "rubybian" + }, + { + "rshares": "5270775482", + "voter": "riscadox" + }, + { + "rshares": "256623434", + "voter": "mstang83" + }, + { + "rshares": "2597453094", + "voter": "romel" + }, + { + "rshares": "150964836849", + "voter": "derekareith" + }, + { + "rshares": "7380400309", + "voter": "furion" + }, + { + "rshares": "15308452303", + "voter": "bitshares101" + }, + { + "rshares": "6591905710", + "voter": "owdy" + }, + { + "rshares": "14388449041", + "voter": "ausbitbank" + }, + { + "rshares": "159573949583", + "voter": "jacor" + }, + { + "rshares": "124958555", + "voter": "cynetyc" + }, + { + "rshares": "85528935", + "voter": "snowden" + }, + { + "rshares": "14487855165", + "voter": "aaseb" + }, + { + "rshares": "4431052068", + "voter": "karen13" + }, + { + "rshares": "10646413479", + "voter": "deviedev" + }, + { + "rshares": "258981906731", + "voter": "nabilov" + }, + { + "rshares": "847366145", + "voter": "luisucv34" + }, + { + "rshares": "54561525717", + "voter": "streetstyle" + }, + { + "rshares": "7372366244", + "voter": "krystle" + }, + { + "rshares": "46854512371", + "voter": "milestone" + }, + { + "rshares": "35782074085", + "voter": "creemej" + }, + { + "rshares": "3800710913", + "voter": "maximkichev" + }, + { + "rshares": "167298234999", + "voter": "blueorgy" + }, + { + "rshares": "12587181720", + "voter": "benjiberigan" + }, + { + "rshares": "349575168", + "voter": "poseidon" + }, + { + "rshares": "7946556816", + "voter": "smolalit" + }, + { + "rshares": "20522265015", + "voter": "mustafaomar" + }, + { + "rshares": "3506024506", + "voter": "simon.braki.love" + }, + { + "rshares": "82780602040", + "voter": "thylbom" + }, + { + "rshares": "3695597998", + "voter": "bitcoiner" + }, + { + "rshares": "32542074868", + "voter": "deanliu" + }, + { + "rshares": "519376303", + "voter": "qonq99" + }, + { + "rshares": "7659625135", + "voter": "neroru" + }, + { + "rshares": "215384334659", + "voter": "jl777" + }, + { + "rshares": "1226120506", + "voter": "positive" + }, + { + "rshares": "101547003699", + "voter": "crazymumzysa" + }, + { + "rshares": "50626015", + "voter": "steemchain" + }, + { + "rshares": "50626015", + "voter": "whalepool" + }, + { + "rshares": "5287640951", + "voter": "gustavopasquini" + }, + { + "rshares": "114437903", + "voter": "firehorse" + }, + { + "rshares": "18175932801", + "voter": "proto" + }, + { + "rshares": "2708251696", + "voter": "sisterholics" + }, + { + "rshares": "1444237397", + "voter": "alex.chien" + }, + { + "rshares": "8921793478", + "voter": "royalmacro" + }, + { + "rshares": "1802321537", + "voter": "remlaps" + }, + { + "rshares": "3353832611", + "voter": "glitterpig" + }, + { + "rshares": "119294413", + "voter": "picker" + }, + { + "rshares": "870677269", + "voter": "metaflute" + }, + { + "rshares": "9193734776", + "voter": "taker" + }, + { + "rshares": "6521104126", + "voter": "nekromarinist" + }, + { + "rshares": "2156971728", + "voter": "merej99" + }, + { + "rshares": "95768393690", + "voter": "laonie" + }, + { + "rshares": "157498807066", + "voter": "twinner" + }, + { + "rshares": "11693771864", + "voter": "thebluepanda" + }, + { + "rshares": "24561066673", + "voter": "laoyao" + }, + { + "rshares": "2664664784", + "voter": "myfirst" + }, + { + "rshares": "19440183808", + "voter": "somebody" + }, + { + "rshares": "726860971", + "voter": "flysaga" + }, + { + "rshares": "2501625986", + "voter": "gmurph" + }, + { + "rshares": "4294504959", + "voter": "midnightoil" + }, + { + "rshares": "2327843962", + "voter": "kalimor" + }, + { + "rshares": "84246848", + "voter": "coderg" + }, + { + "rshares": "4281232336", + "voter": "ullikume" + }, + { + "rshares": "50577648", + "voter": "michellek" + }, + { + "rshares": "3489905889", + "voter": "kurtbeil" + }, + { + "rshares": "2370103862", + "voter": "steemleak" + }, + { + "rshares": "117035295217", + "voter": "thisisbenbrick" + }, + { + "rshares": "10740805506", + "voter": "xiaohui" + }, + { + "rshares": "88206053", + "voter": "bigsambucca" + }, + { + "rshares": "485070652", + "voter": "elfkitchen" + }, + { + "rshares": "103387869456", + "voter": "joele" + }, + { + "rshares": "5855349715", + "voter": "oflyhigh" + }, + { + "rshares": "15238192519", + "voter": "randyclemens" + }, + { + "rshares": "856854397", + "voter": "skavkaz" + }, + { + "rshares": "335812576", + "voter": "xiaokongcom" + }, + { + "rshares": "13237481048", + "voter": "gargon" + }, + { + "rshares": "2076619689", + "voter": "natalymaty" + }, + { + "rshares": "2002858998", + "voter": "future24" + }, + { + "rshares": "1156101266", + "voter": "darthnava" + }, + { + "rshares": "3670417888", + "voter": "villainblack" + }, + { + "rshares": "12672968653", + "voter": "cristi" + }, + { + "rshares": "676933902", + "voter": "xianjun" + }, + { + "rshares": "26283514539", + "voter": "hanshotfirst" + }, + { + "rshares": "93798273061", + "voter": "miacats" + }, + { + "rshares": "2249572206", + "voter": "njall" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "6417335694", + "voter": "userlogin" + }, + { + "rshares": "2077210674", + "voter": "chinadaily" + }, + { + "rshares": "90171375563", + "voter": "serejandmyself" + }, + { + "rshares": "4976983022", + "voter": "almerri" + }, + { + "rshares": "9071955992", + "voter": "johnnyyash" + }, + { + "rshares": "3221126774", + "voter": "macartem" + }, + { + "rshares": "9827647000", + "voter": "gvargas123" + }, + { + "rshares": "4658385146", + "voter": "themanualbot" + }, + { + "rshares": "10468564936", + "voter": "jaredcwillis" + }, + { + "rshares": "3562389763", + "voter": "movievertigo" + }, + { + "rshares": "332237822", + "voter": "mrlogic" + }, + { + "rshares": "415123347", + "voter": "mig641" + }, + { + "rshares": "57942270939", + "voter": "mandibil" + }, + { + "rshares": "2028431875", + "voter": "shadowspub" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "74550672", + "voter": "steembriefing" + }, + { + "rshares": "55750195", + "voter": "riv" + }, + { + "rshares": "2196854858", + "voter": "runridefly" + }, + { + "rshares": "169049426", + "voter": "sammie" + }, + { + "rshares": "1857706060", + "voter": "funkywanderer" + }, + { + "rshares": "5053551216", + "voter": "richardcrill" + }, + { + "rshares": "184076493", + "voter": "team101" + }, + { + "rshares": "178419224", + "voter": "greatness" + }, + { + "rshares": "54241736164", + "voter": "sponge-bob" + }, + { + "rshares": "50798127", + "voter": "freesteem" + }, + { + "rshares": "51964388", + "voter": "apparat" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "212888896291", + "voter": "asksisk" + }, + { + "rshares": "330365849", + "voter": "panther" + }, + { + "rshares": "59422248", + "voter": "plantbasedjunkie" + }, + { + "rshares": "55335855053", + "voter": "brains" + }, + { + "rshares": "56573340", + "voter": "film-editor" + }, + { + "rshares": "799615255", + "voter": "jessicanicklos" + }, + { + "rshares": "1369339863", + "voter": "steemafon" + }, + { + "rshares": "1072070421", + "voter": "positivesteem" + }, + { + "rshares": "5753129814", + "voter": "chick1" + }, + { + "rshares": "3319554336", + "voter": "steempowerwhale" + }, + { + "rshares": "51637870", + "voter": "aoki" + }, + { + "rshares": "51568971", + "voter": "typingagent" + }, + { + "rshares": "51581492", + "voter": "cwb" + }, + { + "rshares": "339270470", + "voter": "anomaly" + }, + { + "rshares": "98524303", + "voter": "ola1" + }, + { + "rshares": "70282046", + "voter": "mari5555na" + }, + { + "rshares": "50871059", + "voter": "motion" + }, + { + "rshares": "50868434", + "voter": "jumbo" + }, + { + "rshares": "120278139", + "voter": "optimistic-crone" + }, + { + "rshares": "50536471", + "voter": "twistys" + }, + { + "rshares": "2216805889", + "voter": "bapparabi" + }, + { + "rshares": "50487909", + "voter": "opticalillusions" + }, + { + "rshares": "88287639", + "voter": "remlaps1" + }, + { + "rshares": "65849185", + "voter": "vuyusile" + }, + { + "rshares": "247235040", + "voter": "darkminded153" + }, + { + "rshares": "2650993895", + "voter": "senseye" + }, + { + "rshares": "161849597", + "voter": "iberia" + }, + { + "rshares": "158666175", + "voter": "durex" + }, + { + "rshares": "444435987", + "voter": "witchcraftblog" + }, + { + "rshares": "161212160", + "voter": "origin" + }, + { + "rshares": "4671589034", + "voter": "dresden" + }, + { + "rshares": "160845765", + "voter": "caseyneistat" + }, + { + "rshares": "159554050", + "voter": "planetearth" + }, + { + "rshares": "159506164", + "voter": "greenpeace" + }, + { + "rshares": "159164412", + "voter": "disneypixar" + }, + { + "rshares": "159062820", + "voter": "rule" + }, + { + "rshares": "158638676", + "voter": "icesteem" + }, + { + "rshares": "158602900", + "voter": "steem-wallet" + }, + { + "rshares": "155451903", + "voter": "steemthis" + }, + { + "rshares": "158541985", + "voter": "citigroup" + }, + { + "rshares": "31683945302", + "voter": "goldmatters" + }, + { + "rshares": "71727340", + "voter": "dealzgal" + }, + { + "rshares": "702613929", + "voter": "reddust" + }, + { + "rshares": "298391608", + "voter": "risabold" + } + ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Is this a typo? Benefits? You ask. How could there be any possible benefit from having a disability?\n\nWell, in fact there are. And here are three unexpected benefits I have personally experienced in my own journey living with a degenerating eye condition.\n\n## Improved lateral thinking and innovation\nGrowing up with a vision impairment meant that there were often things that most people took for granted, but which I struggled to do. To do the same things, I needed to come up with creative solutions and alternative ways of doing things. So from a very young age, I learnt to think laterally and developed my problem solving skills. Most people are so use to perceiving the world in a certain way, but when you are stripped of one of your senses, you learn to perceive things in a different way.\n\nhttps://ipfs.pics/ipfs/QmWb5pzYhKKJZ8zmeYqVeV6oNqGi5h7yDEtxBbjwRdTUZ7\n\nWhen I was still living by myself a few years ago, I had the annoying task of having to cook for myself each night. The challenge I faced in the kitchen was not been able to read the labels on various bottles and containers. As a result, I couldn't tell which container was the salt and which one was the sugar, and all the packaging for the herbs looked the same. So how did I manage? Instead of using sight, I used my sense of smell to distinguish between the herbs, and for some ingredients where I couldn't use the sense of smell, I used different containers and labels to help me identify all the different ingredients.\n\nAnd this leads on to the second benefit.\n\n## Improved memory\nPeople who know me well often comment on my ability to remember things. In fact, I've noticed this in many other people I know who also have a vision impairment. I think this is due to the fact that for someone with a vision impairment to thrive in a sighted world, we often need to make extra effort to adapt to our circumstances.\n\nFor example, I remember when I was still in university, I had to do many presentations. For most people, they could refer to speech notes as they are presenting. However, for me, this was not possible, as I couldn't read speech notes no matter how big the font was. Furthermore, as I have some sight, I never needed to learn braille, which meant I couldn't refer to braille notes either. _As a side note, this is why the title of my memoir which I've been posting on Steemit is \"Living in Between Two Worlds\", because I have often found myself being caught between the world of the sighted and the world of the blind, and also between the identity of being Chinese but not fully Chinese, and being Australian but not fully Australian._ As a result, every time I had to do a presentation, I would always remember the entire speech. Over time, this has become second nature to me. I have learnt how to force things into my memory, and be innovative when I need to.\n\n## Resilience\nGrowing up with a vision impairment, I experienced a lot of bullying at school and a lot of hurtful comments and actions from people, sometimes done knowingly and sometimes unknowingly. Sometimes this comes in the form of a patronising comment, and sometimes from a look or stare. The interesting thing with people staring and giving me strange looks is that I can often notice people are doing it to me because I have some peripheral vision, however people generally can't tell I'm looking back at them because it doesn't seem like I'm looking at them. Most of the time however, those hurtful words and actions are done out of ignorance and a lack of understanding, rather then out of malice.\n\n#### But from all these things I've experienced, it has made me a stronger and more resilient person.\nAs a result, whatever unforeseen things I may experience in life, there's not much that can knock me out completely. I have developed the ability to adapt to changing circumstances and stay optimistic, because as they say:\n### What doesn't kill you, makes you stronger.\n\nSo I'm thankful to God for the person I have become today. Disability isn't all bad. Without what I have gone through with my vision impairment, I wouldn't be the person I am today, and for these reasons, I am thankful.\n\nTo read more about my story, you can read my short memoir series. You can find [Part 1 here.](https://steemit.com/memoir/@nextgen622/living-in-between-two-worlds-my-memoir-part-1-updated)\n\nYou can also follow me on @nextgen622", + "category": "life", + "children": 10, + "created": "2016-09-15T14:46:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://ipfs.pics/ipfs/QmWb5pzYhKKJZ8zmeYqVeV6oNqGi5h7yDEtxBbjwRdTUZ7" + ], + "links": [ + "https://steemit.com/memoir/@nextgen622/living-in-between-two-worlds-my-memoir-part-1-updated" + ], + "tags": [ + "life", + "disability", + "strength" + ], + "users": [ + "nextgen622" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66119907751704, + "payout": 254.34, + "payout_at": "2016-09-22T14:46:21", + "pending_payout_value": "254.340 HBD", + "percent_hbd": 10000, + "permlink": "three-benefits-of-living-with-a-disability-featuring-nextgen622-as-author", + "post_id": 1254663, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 219 + }, + "title": "Three benefits of living with a disability (featuring @nextgen622 as author)", + "updated": "2016-09-15T14:46:21", + "url": "/life/@gavvet/three-benefits-of-living-with-a-disability-featuring-nextgen622-as-author" + }, + { + "active_votes": [ + { + "rshares": "518193384474", + "voter": "barrie" + }, + { + "rshares": "31620272424965", + "voter": "smooth" + }, + { + "rshares": "7465716124744", + "voter": "firstclass" + }, + { + "rshares": "1991230051184", + "voter": "badassmother" + }, + { + "rshares": "2052900127917", + "voter": "hr1" + }, + { + "rshares": "1337025448249", + "voter": "rossco99" + }, + { + "rshares": "22864591759", + "voter": "jaewoocho" + }, + { + "rshares": "1619082976045", + "voter": "joseph" + }, + { + "rshares": "223905651656", + "voter": "b0y2k" + }, + { + "rshares": "475735272749", + "voter": "recursive2" + }, + { + "rshares": "462392248872", + "voter": "recursive3" + }, + { + "rshares": "3188060280256", + "voter": "recursive" + }, + { + "rshares": "1246152952", + "voter": "mineralwasser" + }, + { + "rshares": "680994650765", + "voter": "boombastic" + }, + { + "rshares": "94091830376", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6959061481", + "voter": "bingo-0" + }, + { + "rshares": "1669969392", + "voter": "bingo-1" + }, + { + "rshares": "5938061627471", + "voter": "smooth.witness" + }, + { + "rshares": "9408405427", + "voter": "idol" + }, + { + "rshares": "134476949201", + "voter": "team" + }, + { + "rshares": "290603380713", + "voter": "chitty" + }, + { + "rshares": "59271072026", + "voter": "unosuke" + }, + { + "rshares": "10884676283", + "voter": "yefet" + }, + { + "rshares": "1619428804", + "voter": "jocelyn" + }, + { + "rshares": "15316591171", + "voter": "gregory-f" + }, + { + "rshares": "9028507975", + "voter": "gregory60" + }, + { + "rshares": "1285091135093", + "voter": "gavvet" + }, + { + "rshares": "89896753810", + "voter": "eeks" + }, + { + "rshares": "1511911763", + "voter": "fkn" + }, + { + "rshares": "122160437", + "voter": "paco-steem" + }, + { + "rshares": "1471581374", + "voter": "spaninv" + }, + { + "rshares": "1987313581", + "voter": "elishagh1" + }, + { + "rshares": "8669787638", + "voter": "richman" + }, + { + "rshares": "599925765931", + "voter": "nanzo-scoop" + }, + { + "rshares": "9857353705", + "voter": "kefkius" + }, + { + "rshares": "177389912085", + "voter": "mummyimperfect" + }, + { + "rshares": "313687341", + "voter": "coar" + }, + { + "rshares": "106628118273", + "voter": "asch" + }, + { + "rshares": "1061159202", + "voter": "murh" + }, + { + "rshares": "3187771076", + "voter": "cryptofunk" + }, + { + "rshares": "591084449", + "voter": "kodi" + }, + { + "rshares": "2111391740", + "voter": "error" + }, + { + "rshares": "985477191740", + "voter": "cyber" + }, + { + "rshares": "61710385546", + "voter": "theshell" + }, + { + "rshares": "50878059993", + "voter": "ak2020" + }, + { + "rshares": "13256265846", + "voter": "johnerfx" + }, + { + "rshares": "409218031185", + "voter": "taoteh1221" + }, + { + "rshares": "95314034", + "voter": "stiletto" + }, + { + "rshares": "55528544371", + "voter": "kus-knee" + }, + { + "rshares": "1177332471", + "voter": "johnerminer" + }, + { + "rshares": "19213121851", + "voter": "ziv" + }, + { + "rshares": "280666949780", + "voter": "trogdor" + }, + { + "rshares": "6652542986", + "voter": "grandpere" + }, + { + "rshares": "5821005163", + "voter": "mark-waser" + }, + { + "rshares": "124413655063", + "voter": "geoffrey" + }, + { + "rshares": "16025151061", + "voter": "kimziv" + }, + { + "rshares": "77734412526", + "voter": "emily-cook" + }, + { + "rshares": "2187587354", + "voter": "superfreek" + }, + { + "rshares": "53269952968", + "voter": "pmartynov" + }, + { + "rshares": "48620303351", + "voter": "isteemit" + }, + { + "rshares": "30279417098", + "voter": "acassity" + }, + { + "rshares": "65769554169", + "voter": "norbu" + }, + { + "rshares": "3808133649", + "voter": "michaellamden68" + }, + { + "rshares": "20382096581", + "voter": "thebatchman" + }, + { + "rshares": "158987747182", + "voter": "asmolokalo" + }, + { + "rshares": "76019855821", + "voter": "rubybian" + }, + { + "rshares": "5270775482", + "voter": "riscadox" + }, + { + "rshares": "17903672525", + "voter": "konstantin" + }, + { + "rshares": "256623434", + "voter": "mstang83" + }, + { + "rshares": "373878481829", + "voter": "fabio" + }, + { + "rshares": "6941291365", + "voter": "gatoso" + }, + { + "rshares": "7380400309", + "voter": "furion" + }, + { + "rshares": "159573949583", + "voter": "jacor" + }, + { + "rshares": "147678292", + "voter": "cynetyc" + }, + { + "rshares": "18770255506", + "voter": "sebastien" + }, + { + "rshares": "12011479963", + "voter": "asim" + }, + { + "rshares": "14487056742", + "voter": "aaseb" + }, + { + "rshares": "4431046054", + "voter": "karen13" + }, + { + "rshares": "10645918815", + "voter": "deviedev" + }, + { + "rshares": "251364791827", + "voter": "nabilov" + }, + { + "rshares": "441803588", + "voter": "karenmckersie" + }, + { + "rshares": "871576606", + "voter": "luisucv34" + }, + { + "rshares": "54561525717", + "voter": "streetstyle" + }, + { + "rshares": "46854241122", + "voter": "milestone" + }, + { + "rshares": "35782000412", + "voter": "creemej" + }, + { + "rshares": "3878126092", + "voter": "maximkichev" + }, + { + "rshares": "15377574672", + "voter": "nippel66" + }, + { + "rshares": "171280078005", + "voter": "blueorgy" + }, + { + "rshares": "12324948767", + "voter": "benjiberigan" + }, + { + "rshares": "349568852", + "voter": "poseidon" + }, + { + "rshares": "2182574144", + "voter": "iamwne" + }, + { + "rshares": "347965502695", + "voter": "calaber24p" + }, + { + "rshares": "20119867662", + "voter": "mustafaomar" + }, + { + "rshares": "3576144996", + "voter": "simon.braki.love" + }, + { + "rshares": "82813520861", + "voter": "thylbom" + }, + { + "rshares": "3720107267", + "voter": "azurejasper" + }, + { + "rshares": "32541921491", + "voter": "deanliu" + }, + { + "rshares": "31308203650", + "voter": "sauravrungta" + }, + { + "rshares": "7659625135", + "voter": "neroru" + }, + { + "rshares": "215383763306", + "voter": "jl777" + }, + { + "rshares": "1226120506", + "voter": "positive" + }, + { + "rshares": "103577805737", + "voter": "crazymumzysa" + }, + { + "rshares": "6232841459", + "voter": "summonerrk" + }, + { + "rshares": "14894144779", + "voter": "lemooljiang" + }, + { + "rshares": "904575538", + "voter": "happyphoenix" + }, + { + "rshares": "43631243627", + "voter": "claudiop63" + }, + { + "rshares": "18175890702", + "voter": "proto" + }, + { + "rshares": "2708201174", + "voter": "sisterholics" + }, + { + "rshares": "8964609699", + "voter": "royalmacro" + }, + { + "rshares": "1802321537", + "voter": "remlaps" + }, + { + "rshares": "46040443375", + "voter": "jasonstaggers" + }, + { + "rshares": "13359113213", + "voter": "mahekg" + }, + { + "rshares": "845069114", + "voter": "metaflute" + }, + { + "rshares": "9193716733", + "voter": "taker" + }, + { + "rshares": "6521104126", + "voter": "nekromarinist" + }, + { + "rshares": "95766250088", + "voter": "laonie" + }, + { + "rshares": "161751897653", + "voter": "twinner" + }, + { + "rshares": "24560895252", + "voter": "laoyao" + }, + { + "rshares": "2664547502", + "voter": "myfirst" + }, + { + "rshares": "19439832856", + "voter": "somebody" + }, + { + "rshares": "65245460", + "voter": "ierg" + }, + { + "rshares": "16958164504", + "voter": "sunshine" + }, + { + "rshares": "726848341", + "voter": "flysaga" + }, + { + "rshares": "7706698035", + "voter": "asdes" + }, + { + "rshares": "2501620573", + "voter": "gmurph" + }, + { + "rshares": "1659697260", + "voter": "stormblaze" + }, + { + "rshares": "4294420153", + "voter": "midnightoil" + }, + { + "rshares": "2280336943", + "voter": "kalimor" + }, + { + "rshares": "84246848", + "voter": "coderg" + }, + { + "rshares": "2267389147", + "voter": "crypto-toll" + }, + { + "rshares": "4281204067", + "voter": "ullikume" + }, + { + "rshares": "10740550186", + "voter": "xiaohui" + }, + { + "rshares": "176650903994", + "voter": "terrycraft" + }, + { + "rshares": "461085584", + "voter": "elfkitchen" + }, + { + "rshares": "103384195129", + "voter": "joele" + }, + { + "rshares": "5823989445", + "voter": "oflyhigh" + }, + { + "rshares": "335807163", + "voter": "xiaokongcom" + }, + { + "rshares": "12961700193", + "voter": "gargon" + }, + { + "rshares": "2076619689", + "voter": "natalymaty" + }, + { + "rshares": "2002858998", + "voter": "future24" + }, + { + "rshares": "1405383530", + "voter": "hms818" + }, + { + "rshares": "3670417888", + "voter": "villainblack" + }, + { + "rshares": "3033035828", + "voter": "jrcornel" + }, + { + "rshares": "676921271", + "voter": "xianjun" + }, + { + "rshares": "25747116283", + "voter": "hanshotfirst" + }, + { + "rshares": "11541933907", + "voter": "borran" + }, + { + "rshares": "93797422302", + "voter": "miacats" + }, + { + "rshares": "2249572206", + "voter": "njall" + }, + { + "rshares": "6417144136", + "voter": "userlogin" + }, + { + "rshares": "2077199246", + "voter": "chinadaily" + }, + { + "rshares": "20666103650", + "voter": "anotherjoe" + }, + { + "rshares": "4879395119", + "voter": "almerri" + }, + { + "rshares": "8890516872", + "voter": "johnnyyash" + }, + { + "rshares": "3155389493", + "voter": "macartem" + }, + { + "rshares": "9310407829", + "voter": "gvargas123" + }, + { + "rshares": "4658385146", + "voter": "themanualbot" + }, + { + "rshares": "2148477670", + "voter": "levycore" + }, + { + "rshares": "406983674", + "voter": "mig641" + }, + { + "rshares": "56654664918", + "voter": "mandibil" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "54612436", + "voter": "riv" + }, + { + "rshares": "2196749616", + "voter": "runridefly" + }, + { + "rshares": "2458800256", + "voter": "seva" + }, + { + "rshares": "7375519035", + "voter": "macksby" + }, + { + "rshares": "1931998664", + "voter": "funkywanderer" + }, + { + "rshares": "5053531368", + "voter": "richardcrill" + }, + { + "rshares": "1625387426", + "voter": "davidjkelley" + }, + { + "rshares": "182060433", + "voter": "greatness" + }, + { + "rshares": "27673580803", + "voter": "sponge-bob" + }, + { + "rshares": "15231878384", + "voter": "digital-wisdom" + }, + { + "rshares": "3710834980", + "voter": "ethical-ai" + }, + { + "rshares": "6682569853", + "voter": "jwaser" + }, + { + "rshares": "51964388", + "voter": "apparat" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "224088474986", + "voter": "asksisk" + }, + { + "rshares": "113366516", + "voter": "edgarsart" + }, + { + "rshares": "26377562678", + "voter": "dubi" + }, + { + "rshares": "2617262426", + "voter": "bwaser" + }, + { + "rshares": "337248470", + "voter": "panther" + }, + { + "rshares": "27667123071", + "voter": "brains" + }, + { + "rshares": "50450987", + "voter": "waldemar-kuhn" + }, + { + "rshares": "5753092824", + "voter": "chick1" + }, + { + "rshares": "51637870", + "voter": "aoki" + }, + { + "rshares": "51568971", + "voter": "typingagent" + }, + { + "rshares": "51581492", + "voter": "cwb" + }, + { + "rshares": "3623547539", + "voter": "slayer" + }, + { + "rshares": "407122760", + "voter": "anomaly" + }, + { + "rshares": "27667189544", + "voter": "tarekadam" + }, + { + "rshares": "2401230307", + "voter": "ellepdub" + }, + { + "rshares": "123128317", + "voter": "ola1" + }, + { + "rshares": "12115121436", + "voter": "herpetologyguy" + }, + { + "rshares": "52460746", + "voter": "cryptofarmer" + }, + { + "rshares": "4712097333", + "voter": "morgan.waser" + }, + { + "rshares": "50228382", + "voter": "dragonice" + }, + { + "rshares": "50223099", + "voter": "battalar" + }, + { + "rshares": "51218466", + "voter": "weare" + }, + { + "rshares": "50139069", + "voter": "slow" + }, + { + "rshares": "50907857", + "voter": "oxygen" + }, + { + "rshares": "50873654", + "voter": "palladium" + }, + { + "rshares": "117919744", + "voter": "optimistic-crone" + }, + { + "rshares": "50540827", + "voter": "amstel" + }, + { + "rshares": "50484452", + "voter": "connect" + }, + { + "rshares": "88287639", + "voter": "remlaps1" + }, + { + "rshares": "3609516222", + "voter": "strong-ai" + }, + { + "rshares": "230273165", + "voter": "sjamayee" + }, + { + "rshares": "162925257", + "voter": "uct" + }, + { + "rshares": "435365865", + "voter": "witchcraftblog" + }, + { + "rshares": "161218747", + "voter": "sdc" + }, + { + "rshares": "161179339", + "voter": "bethesda" + }, + { + "rshares": "161096439", + "voter": "bethsoft" + }, + { + "rshares": "157816798", + "voter": "gravity" + }, + { + "rshares": "157726117", + "voter": "illusions" + }, + { + "rshares": "160861015", + "voter": "cybergirl" + }, + { + "rshares": "3941523341", + "voter": "dresden" + }, + { + "rshares": "164549939", + "voter": "pawel-krawczyk" + }, + { + "rshares": "159352476", + "voter": "panic" + }, + { + "rshares": "158638676", + "voter": "icesteem" + }, + { + "rshares": "32369065992", + "voter": "goldmatters" + }, + { + "rshares": "702613929", + "voter": "reddust" + }, + { + "rshares": "150387842", + "voter": "trickster512" + } + ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": ">Today I told my dad the final date of my marriage: October 2nd . Few days ago, as I told him that I was going to get married in a few weeks, he got mad at me. \u201cI was expecting you to get a real job before you got married!\u201d was his main critique. \u201cHow can you get married *now*?\u201d he asked me.\n\nOggi ho detto a mio padre la data definitiva del mio matrimonio: due ottobre. Pochi giorni fa, quando gli ho detto che mi sarei sposato nel giro di poche settimane, si \u00e8 arrabbiato con me. \u201cMi sarei aspettato che ti trovassi un lavoro vero prima di sposarti\u201d \u00e8 stato il suo principale oggetto di critica. \u201cCome puoi sposarti *adesso*?\u201d mi ha chiesto.\n\n>Let me give you some background. I\u2019m 29 years old and I want to do many things in my life. I studied economics, worked for no-profit and academia and I published a book in May on the shifting economic paradigm. I dedicated the last year to this book, spent all the savings I had and by now I have a few weeks of financial autonomy left. Meanwhile I rented a room on Airbnb, learned how to do bracelets and sold them on the Ligurian (North-West Italy) seaside. Simultaneously, I\u2019m working on becoming what I call a cryptofarmer: in fact, my goal is to write and earn cryptocurrencies while living in the countryside in a small house I\u2019m transforming into a farm. I learned how to plant a vegetable garden, how to chop wood and limiting the expenses of food and heating.\nEven if sometimes I\u2019m scared I could not afford a living, I feeI I can make it. We can make it. In fact, few months ago a girl I met last winter in Chile joined me and is providing great help with her skills and work. And I\u2019m going to marry her in a few weeks, as I said.\n\nFacciamo un passo indietro. Ho 29 anni e voglio fare tante cose nella mia vita. Ho studiato economia, lavorato nel no-profit e nel mondo accademico per poi pubblicare, a maggio di quest\u2019anno, un libro sul cambio di paradigma in economia. Ho dedicato l\u2019ultimo anno a questo libro, ho speso tutti i miei risparmi e ho davanti ancora qualche settimana di autonomia finanziaria. Nel frattempo ho affittato una stanza su Airbnb e imparato a fare braccialetti che ho venduto sulla costa ligure. Parallelamente lavoro per diventare quello che chiamo un cryptofarmer; il mio obiettivo \u00e8 infatti quello di scrivere e guadagnare cripto-valute mentre vivo in una piccola casa di campagna che sto trasformando in fattoria. Ho imparato come piantare un orto, spaccare la legna e limitare le spese di cibo e riscaldamento.\nAnche se a volte ho paura di non riuscire a guadagnarmi da vivere, sento che ce la posso fare. Che ce la *possiamo* fare. Qualche mese fa, infatti, una ragazza che ho conosciuto lo scorso inverno in Cile si \u00e8 unita ai miei progetti e mi sta dando un grosso aiuto con le sue capacit\u00e0 e il suo lavoro. E io la sposer\u00f2 in qualche settimana, come dicevo.\n>My father is 69 years old. Oddly enough, he actually left countryside for the city \u2013 a choice diametrically opposite to the one I made \u2013 to become a lawyer and had success by working really hard. As far as I know, he wanted to be a journalist but chose to be a lawyer to get a better salary \u2013 as he got. He wanted me to be a lawyer too, of course, but when I chose to study economics he told me I could become an auditor; those were professions, in his words, that paid good.\n\nMio padre ha 69 anni. E\u2019 curioso come lui lasci\u00f2 la campagna per la citt\u00e0 \u2013 una scelta diametralmente opposta a quella che ho fatto io \u2013 per diventare un avvocato e l\u00ec ha avuto successo lavorando molto. Da quel che so, lui voleva fare il giornalista da giovane, ma poi ha scelto di fare l\u2019avvocato per avere un miglior salario \u2013 come appunto si \u00e8 verificato. Chiaramente voleva che anche io facessi l\u2019avvocato e successivamente, quando io scelsi di studiare economia, mi disse che potevo diventare il revisore contabile; mestieri, questi, che secondo lui erano ben remunerati. \n>Dear dad,\nA couple of years ago, you told that you were eventually glad I didn\u2019t follow your path and became a lawyer. The job had changed too much, you said. Now too many lawyers are fighting one against each other to get the job and clients are not paying for the work you did for them. That\u2019s how you described me your job \u2013 a job that in Italy, for your generation, was a synonym of success. A son who became a lawyer was a dream for the average family.\nWell, I\u2019m going to add a little piece to this picture. In a few decades, the whole profession of lawyer may become obsolete. Do you know that even today you can ask legal question to [Ross](http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html), an IBM powered machine? It will provide you an answer by sifting through thousands of legal documents, statutes and cases - assisting you to get ready for the case by including citations, suggested readings and confidence ratings. \nToday few technologies are ready to disrupt whole sectors of the economy. One of these is Artificial Intelligence that could make your profession obsolete. Another is the blockchain: that one could make the auditor and accountancy profession useless too. Have you ever heard about it? Some say it\u2019s important as the invention of the Internet.\n\nCaro pap\u00e0,\nQualche anno fa mi hai detto che in fin dei conti eri contento che non avessi seguito la tua strada e fossi diventato un avvocato. Il lavoro \u00e8 cambiato troppo, hai detto. Troppi avvocati in conflitto l\u2019uno contro l\u2019altro per accaparrarsi clienti che poi non pagano il lavoro che fai per loro. Cos\u00ec mi hai descritto il tuo lavoro \u2013 un lavoro che in Italia, per la tua generazione, era sinonimo di successo. Un figlio che diventava avvocato era un sogno per la famiglia media.\nBeh, lasciami aggiungere un pezzo a questa storia. In un paio di decadi, la professione stessa dell\u2019avvocato potrebbe diventare obsoleta. Sai che gi\u00e0 oggi puoi chiedere un parere legale a [Ross](http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html), una macchina sviluppata da IBM? Ti restituisce una risposta setacciando migliaia di documenti legali, statuti e casi \u2013 assistendoti a prepararti al caso includendo citazioni, letture consigliate e intervalli di confidenza. Alcune tecnologie sono sul punto di rivoluzionare interi settori dell\u2019economia. Una di queste \u00e8 l\u2019intelligenza artificiale che potrebbe rendere obsoleta la tua professione. Un\u2019altra \u00e8 la blockchain: questa potrebbe rendere inutile la professione del contabile e del revisore. Ne hai mai sentito parlare? Alcuni dicono che \u00e8 importante quanto l\u2019invenzione di Internet.\n>**You should really be glad I didn\u2019t choose your job just because it paid good**. As I was 18 (in 2005) being a lawyer paid good, in a decade it wasn\u2019t the case anymore. **In fact, between 2007 and 2014 the average income reported by Italian lawyers [declined from 51.314 euro to 37.505]( http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare)**. Well, last decade \u2013 it is to be said - was a *century*: while economy collapsed in one of the worst crisis ever, technology produced unparalleled innovations. Before 2005 there was no Youtube. In 2005 there was no smartphone either. No-one can tell what are we going to see in the next decade. Some say there will be some big change in the workplace. In fact, [some researchers at Oxford]( http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf) say that by 2035, half of the jobs Americans currently hold will be automatized. **Robots are simply better than men in doing robotic work**. Even the world\u2019s most ancient profession may suffer a strong decline with the development of virtual reality \u2013 this has become the next big thing in adult entertainment.\n\n**Devi essere davvero contento che non abbia scelto il tuo lavoro solo perch\u00e9 era ben remunerato**. Quando ancora io avevo 18 anni (nel 2005) fare l\u2019avvocato era remunerativo, ma nell\u2019arco di un decennio ci\u00f2 non era pi\u00f9 vero. **Tra il 2007 e il 2014 il reddito medio dell\u2019avvocato italiano [\u00e8 sceso da 51.314 euro a 37.505 euro]( http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare)**. L\u2019ultimo decennio \u2013 bisogna riconoscerlo - ha rappresentato un *secolo*: mentre l\u2019economia collassava in una delle peggiori crisi di sempre, la tecnologia produceva innovazioni senza pari. Prima del 2005 non c\u2019era Youtube. Prima del 2005 non c\u2019era nemmeno lo smartphone. Nessuno pu\u00f2 dire cosa vedremo nel prossimo decennio. Molti dicono che ci saranno grossi cambiamenti sul luogo di lavoro. [Alcuni ricercatori di Oxford]( http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf) dicono che entro il 2035, il 45% dei lavori attualmente svolti dagli americani verr\u00e0 automatizzato. **I robot svolgono meglio degli uomini i lavori da robot**. Perfino il mestiere pi\u00f9 vecchio del mondo potrebbe risentire di un forte declino a seguito dello sviluppo della realt\u00e0 virtuale \u2013 questa \u00e8 diventata l\u2019ultima novit\u00e0 nel mondo dell\u2019intrattenimento per adulti.\n>Don\u2019t worry, dad, and don\u2019t look at me as someone who is living hand to mouth. Many things are changing in the next years, together with most of the reference points we had. Those jobs who were good, could not be profitable and stable anymore. Most of all, the same idea of stability will change: we\u2019ll have to find stability surfing between waves of change. Choosing a job just because it pays good today, may not be a good strategy. **My generation is challenged to find and develop that personal value, those talents, that no machine could substitute. This is what I\u2019m doing \u2013 soon I\u2019ll write you how**.\n\nPer questo, pap\u00e0, non preoccuparti e non guardarmi come si guarda un figlio che vive di espedienti. Molte cose cambieranno nei prossimi anni, insieme a molti dei punti di riferimento che avevamo. Quei lavori che prima erano buoni, potrebbero non essere pi\u00f9 remunerativi e stabili. Pi\u00f9 di tutto, cambier\u00e0 l\u2019idea di stabilit\u00e0: dovremmo imparare a trovare la stabilit\u00e0 di un surfista a cavallo di ondate di cambiamento. Scegliere un lavoro solo perch\u00e9 paga bene oggi, potrebbe non essere una strategia che paga. **La sfida per la mia generazione \u00e8 di trovare e sviluppare quel valore personale, quei talenti, che nessuna macchina pu\u00f2 sostituire. Questo \u00e8 quello che sto facendo io \u2013 presto ti scriver\u00f2 come**.\n\nhttp://i68.tinypic.com/2hz9lz.jpg \n\n*Me, dad, fianc\u00e9, mum*\n\n***Don't forget to follow @cryptofarmer***\n***a shout out goes to @claudiop63 for assisting the Italian community so don't forget to follow him***", + "category": "life", + "children": 11, + "created": "2016-09-15T14:01:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i68.tinypic.com/2hz9lz.jpg" + ], + "links": [ + "http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html", + "http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare", + "http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf" + ], + "tags": [ + "life", + "introducemyself" + ], + "users": [ + "cryptofarmer", + "claudiop63" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66723421210839, + "payout": 258.716, + "payout_at": "2016-09-22T14:01:30", + "pending_payout_value": "258.716 HBD", + "percent_hbd": 10000, + "permlink": "letters-to-my-dad-on-the-changing-world-with-italian-featuring-cryptofarmer-as-author", + "post_id": 1254158, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 220 + }, + "title": "Letters to my dad on the changing world... with Italian(featuring @cryptofarmer as author)", + "updated": "2016-09-15T14:01:30", + "url": "/life/@gavvet/letters-to-my-dad-on-the-changing-world-with-italian-featuring-cryptofarmer-as-author" + }, + { + "active_votes": [ + { + "rshares": "480579269556", + "voter": "barrie" + }, + { + "rshares": "231751293887", + "voter": "anonymous" + }, + { + "rshares": "12889266254874", + "voter": "rainman" + }, + { + "rshares": "26305603050148", + "voter": "berniesanders" + }, + { + "rshares": "15605000000000", + "voter": "val-b" + }, + { + "rshares": "3358053566682", + "voter": "riverhead" + }, + { + "rshares": "1990377241911", + "voter": "badassmother" + }, + { + "rshares": "187617413684", + "voter": "nextgenwitness" + }, + { + "rshares": "3306757675077", + "voter": "pharesim" + }, + { + "rshares": "2005106058621", + "voter": "hr1" + }, + { + "rshares": "640773963547", + "voter": "justin" + }, + { + "rshares": "1758663279793", + "voter": "silver" + }, + { + "rshares": "4166786907723", + "voter": "silversteem" + }, + { + "rshares": "4851657471753", + "voter": "nextgencrypto" + }, + { + "rshares": "22381565222", + "voter": "jaewoocho" + }, + { + "rshares": "1869062512579", + "voter": "xeroc" + }, + { + "rshares": "425868900225", + "voter": "steemservices" + }, + { + "rshares": "209639354860", + "voter": "alex90342fastn1" + }, + { + "rshares": "1607381560851", + "voter": "joseph" + }, + { + "rshares": "452603688207", + "voter": "recursive3" + }, + { + "rshares": "588963325183", + "voter": "masteryoda" + }, + { + "rshares": "3051642158867", + "voter": "recursive" + }, + { + "rshares": "1172473837", + "voter": "mineralwasser" + }, + { + "rshares": "85737349562", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "1620255991", + "voter": "bingo-1" + }, + { + "rshares": "438041274025", + "voter": "boatymcboatface" + }, + { + "rshares": "9404339123", + "voter": "idol" + }, + { + "rshares": "2692207475582", + "voter": "donkeypong" + }, + { + "rshares": "783510713656", + "voter": "steemrollin" + }, + { + "rshares": "4632015537", + "voter": "sakr" + }, + { + "rshares": "283944946279", + "voter": "chitty" + }, + { + "rshares": "47092417970", + "voter": "alexgr" + }, + { + "rshares": "1660446343", + "voter": "jocelyn" + }, + { + "rshares": "83523204254", + "voter": "acidsun" + }, + { + "rshares": "148150884169", + "voter": "edgeland" + }, + { + "rshares": "194244553812", + "voter": "jamtaylor" + }, + { + "rshares": "74898454777", + "voter": "eeks" + }, + { + "rshares": "468170958", + "voter": "paco-steem" + }, + { + "rshares": "912602737692", + "voter": "cryptogee" + }, + { + "rshares": "5638722045", + "voter": "spaninv" + }, + { + "rshares": "25545945557", + "voter": "georgedonnelly" + }, + { + "rshares": "31081352622", + "voter": "instructor2121" + }, + { + "rshares": "7891620962", + "voter": "nate-atkins" + }, + { + "rshares": "18533432464", + "voter": "james-show" + }, + { + "rshares": "319841523573", + "voter": "teamsteem" + }, + { + "rshares": "1713517353627", + "voter": "cryptoctopus" + }, + { + "rshares": "9535707424", + "voter": "richman" + }, + { + "rshares": "550546408583", + "voter": "nanzo-scoop" + }, + { + "rshares": "13340014301", + "voter": "fact" + }, + { + "rshares": "160905828175", + "voter": "steve-walschot" + }, + { + "rshares": "10099012692", + "voter": "cian.dafe" + }, + { + "rshares": "47422549796", + "voter": "hannixx42" + }, + { + "rshares": "169123085990", + "voter": "mummyimperfect" + }, + { + "rshares": "268838726", + "voter": "coar" + }, + { + "rshares": "98194455049", + "voter": "asch" + }, + { + "rshares": "603531864037", + "voter": "kevinwong" + }, + { + "rshares": "1060920601", + "voter": "murh" + }, + { + "rshares": "3041891225", + "voter": "cryptofunk" + }, + { + "rshares": "3140744830", + "voter": "radioactivities" + }, + { + "rshares": "2164686241", + "voter": "error" + }, + { + "rshares": "5736901624", + "voter": "marta-zaidel" + }, + { + "rshares": "40014025775", + "voter": "ranko-k" + }, + { + "rshares": "985042955913", + "voter": "cyber" + }, + { + "rshares": "48237714954", + "voter": "ak2020" + }, + { + "rshares": "65573912297", + "voter": "justtryme90" + }, + { + "rshares": "33032554744", + "voter": "drinkzya" + }, + { + "rshares": "3616249140600", + "voter": "satoshifund" + }, + { + "rshares": "392453750650", + "voter": "taoteh1221" + }, + { + "rshares": "418804855", + "voter": "applecrisp" + }, + { + "rshares": "365287420", + "voter": "stiletto" + }, + { + "rshares": "55576340008", + "voter": "juanmiguelsalas" + }, + { + "rshares": "572341707403", + "voter": "andrarchy" + }, + { + "rshares": "110473581518", + "voter": "kenny-crane" + }, + { + "rshares": "54694274623", + "voter": "thecryptodrive" + }, + { + "rshares": "353770070386", + "voter": "kaylinart" + }, + { + "rshares": "563733180586", + "voter": "infovore" + }, + { + "rshares": "132301151875", + "voter": "schro" + }, + { + "rshares": "4552145645", + "voter": "tee-em" + }, + { + "rshares": "30491735429", + "voter": "michaelx" + }, + { + "rshares": "804471067802", + "voter": "anwenbaumeister" + }, + { + "rshares": "8928351544", + "voter": "grandpere" + }, + { + "rshares": "5689049935", + "voter": "mark-waser" + }, + { + "rshares": "17023109715", + "voter": "albertogm" + }, + { + "rshares": "106033721718", + "voter": "geoffrey" + }, + { + "rshares": "192232704674", + "voter": "kimziv" + }, + { + "rshares": "267994388047", + "voter": "lukestokes" + }, + { + "rshares": "43526357269", + "voter": "honeythief" + }, + { + "rshares": "783400875", + "voter": "mammasitta" + }, + { + "rshares": "77695030973", + "voter": "emily-cook" + }, + { + "rshares": "32733174015", + "voter": "talanhorne" + }, + { + "rshares": "81716838174", + "voter": "razvanelulmarin" + }, + { + "rshares": "2122888373", + "voter": "superfreek" + }, + { + "rshares": "33245604843", + "voter": "cryptoiskey" + }, + { + "rshares": "11728574802", + "voter": "primus" + }, + { + "rshares": "471495169", + "voter": "mrhankeh" + }, + { + "rshares": "37138635112", + "voter": "clement" + }, + { + "rshares": "47416157546", + "voter": "isteemit" + }, + { + "rshares": "67109183200", + "voter": "norbu" + }, + { + "rshares": "280886491", + "voter": "ladyclair" + }, + { + "rshares": "69639423700", + "voter": "bacchist" + }, + { + "rshares": "53810463964", + "voter": "venuspcs" + }, + { + "rshares": "3806124499", + "voter": "michaellamden68" + }, + { + "rshares": "7415227922", + "voter": "dasha" + }, + { + "rshares": "174543034217", + "voter": "asmolokalo" + }, + { + "rshares": "55965693937", + "voter": "ezzy" + }, + { + "rshares": "69473128292", + "voter": "rubybian" + }, + { + "rshares": "3148262011", + "voter": "orly" + }, + { + "rshares": "46383380668", + "voter": "firepower" + }, + { + "rshares": "245172817", + "voter": "mstang83" + }, + { + "rshares": "24863029935", + "voter": "katyakov" + }, + { + "rshares": "15674042620", + "voter": "yogi.artist" + }, + { + "rshares": "14215545466", + "voter": "r4fken" + }, + { + "rshares": "1001850942", + "voter": "steemswede" + }, + { + "rshares": "142892158061", + "voter": "derekareith" + }, + { + "rshares": "823059128625", + "voter": "slowwalker" + }, + { + "rshares": "1553964832", + "voter": "btcshare7" + }, + { + "rshares": "2210761988", + "voter": "vi1son" + }, + { + "rshares": "1267696038568", + "voter": "renohq" + }, + { + "rshares": "98005962692", + "voter": "sigmajin" + }, + { + "rshares": "14876241153", + "voter": "ausbitbank" + }, + { + "rshares": "45733145544", + "voter": "mrwang" + }, + { + "rshares": "2530804964", + "voter": "steem1653" + }, + { + "rshares": "188405790343", + "voter": "anyx" + }, + { + "rshares": "7540907296", + "voter": "steemit-life" + }, + { + "rshares": "11754696821", + "voter": "asim" + }, + { + "rshares": "320414159082", + "voter": "jesta" + }, + { + "rshares": "90257674", + "voter": "snowden" + }, + { + "rshares": "14289427593", + "voter": "aaseb" + }, + { + "rshares": "1107704273", + "voter": "karen13" + }, + { + "rshares": "10417290332", + "voter": "deviedev" + }, + { + "rshares": "258942997644", + "voter": "nabilov" + }, + { + "rshares": "17586922894", + "voter": "meesterboom" + }, + { + "rshares": "8573230772", + "voter": "noodhoog" + }, + { + "rshares": "6400554488", + "voter": "juvyjabian" + }, + { + "rshares": "2668109030", + "voter": "dmacshady" + }, + { + "rshares": "476670464", + "voter": "karenmckersie" + }, + { + "rshares": "451014793670", + "voter": "knozaki2015" + }, + { + "rshares": "44553728340", + "voter": "milestone" + }, + { + "rshares": "7312894074", + "voter": "lichtblick" + }, + { + "rshares": "84865861", + "voter": "wildchild" + }, + { + "rshares": "5726094484", + "voter": "btcbtcbtc20155" + }, + { + "rshares": "15683266563", + "voter": "nippel66" + }, + { + "rshares": "4317565662", + "voter": "oululahti" + }, + { + "rshares": "4310346145", + "voter": "poseidon" + }, + { + "rshares": "3365335082", + "voter": "simon.braki.love" + }, + { + "rshares": "76406992485", + "voter": "thylbom" + }, + { + "rshares": "7311858289", + "voter": "geronimo" + }, + { + "rshares": "10684939578", + "voter": "rpf" + }, + { + "rshares": "3692989929", + "voter": "bitcoiner" + }, + { + "rshares": "3756550273", + "voter": "tarindel" + }, + { + "rshares": "3712828665", + "voter": "azurejasper" + }, + { + "rshares": "279059042940", + "voter": "liberosist" + }, + { + "rshares": "30859119533", + "voter": "deanliu" + }, + { + "rshares": "5496325958", + "voter": "sharker" + }, + { + "rshares": "33395139065", + "voter": "sauravrungta" + }, + { + "rshares": "84683756607", + "voter": "rea" + }, + { + "rshares": "53842086331", + "voter": "jl777" + }, + { + "rshares": "29215490743", + "voter": "zaebars" + }, + { + "rshares": "1700143919", + "voter": "yarly" + }, + { + "rshares": "256282552", + "voter": "yarly2" + }, + { + "rshares": "256665987", + "voter": "yarly3" + }, + { + "rshares": "148269777", + "voter": "yarly4" + }, + { + "rshares": "149106888", + "voter": "yarly5" + }, + { + "rshares": "84991309", + "voter": "yarly7" + }, + { + "rshares": "779992403", + "voter": "raymonjohnstone" + }, + { + "rshares": "50619397", + "voter": "steemchain" + }, + { + "rshares": "50619397", + "voter": "whalepool" + }, + { + "rshares": "5218510034", + "voter": "gustavopasquini" + }, + { + "rshares": "32308067031", + "voter": "papa-pepper" + }, + { + "rshares": "16539590111", + "voter": "winstonwolfe" + }, + { + "rshares": "885730214", + "voter": "happyphoenix" + }, + { + "rshares": "21120708735", + "voter": "krabgat" + }, + { + "rshares": "474951354", + "voter": "kooshikoo" + }, + { + "rshares": "4543692384", + "voter": "proto" + }, + { + "rshares": "634121191", + "voter": "curator" + }, + { + "rshares": "31584377035", + "voter": "sisterholics" + }, + { + "rshares": "411321155", + "voter": "yarly10" + }, + { + "rshares": "1365664469", + "voter": "alex.chien" + }, + { + "rshares": "220139771", + "voter": "yarly11" + }, + { + "rshares": "76966318", + "voter": "yarly12" + }, + { + "rshares": "3675499938", + "voter": "tygergamer" + }, + { + "rshares": "173441395", + "voter": "kibela" + }, + { + "rshares": "376816435", + "voter": "alanc" + }, + { + "rshares": "238488697", + "voter": "bullionstackers" + }, + { + "rshares": "245216458115", + "voter": "originate" + }, + { + "rshares": "3361197115", + "voter": "sulev" + }, + { + "rshares": "121123550176", + "voter": "sterlinluxan" + }, + { + "rshares": "108721833", + "voter": "cryptoz" + }, + { + "rshares": "46036044554", + "voter": "jasonstaggers" + }, + { + "rshares": "131896331875", + "voter": "steemdrive" + }, + { + "rshares": "114064883", + "voter": "andrew-charles" + }, + { + "rshares": "1024314167", + "voter": "metaflute" + }, + { + "rshares": "50563376844", + "voter": "gomeravibz" + }, + { + "rshares": "2298283061", + "voter": "taker" + }, + { + "rshares": "4238154544", + "voter": "nekromarinist" + }, + { + "rshares": "230729901", + "voter": "frozendota" + }, + { + "rshares": "14753485936", + "voter": "felixxx" + }, + { + "rshares": "9904971006", + "voter": "dumar022" + }, + { + "rshares": "2236125772", + "voter": "merej99" + }, + { + "rshares": "1116584393219", + "voter": "laonie" + }, + { + "rshares": "23391691291", + "voter": "rawnetics" + }, + { + "rshares": "47378225109", + "voter": "capitalism" + }, + { + "rshares": "72994310", + "voter": "always1success" + }, + { + "rshares": "11693177698", + "voter": "thebluepanda" + }, + { + "rshares": "22955094272", + "voter": "laonie1" + }, + { + "rshares": "23470889026", + "voter": "laonie2" + }, + { + "rshares": "23479197538", + "voter": "laonie3" + }, + { + "rshares": "23907912804", + "voter": "laoyao" + }, + { + "rshares": "37203693135", + "voter": "myfirst" + }, + { + "rshares": "226716353883", + "voter": "somebody" + }, + { + "rshares": "8719381987", + "voter": "flysaga" + }, + { + "rshares": "4930352522", + "voter": "brendio" + }, + { + "rshares": "2082768176", + "voter": "gmurph" + }, + { + "rshares": "75896047", + "voter": "kurzer42" + }, + { + "rshares": "50083801467", + "voter": "midnightoil" + }, + { + "rshares": "2375155298", + "voter": "kalimor" + }, + { + "rshares": "85931785", + "voter": "coderg" + }, + { + "rshares": "4371109343", + "voter": "ullikume" + }, + { + "rshares": "50565616", + "voter": "michellek" + }, + { + "rshares": "23474742068", + "voter": "laonie4" + }, + { + "rshares": "23472418592", + "voter": "laonie5" + }, + { + "rshares": "23469546880", + "voter": "laonie6" + }, + { + "rshares": "23465711623", + "voter": "laonie7" + }, + { + "rshares": "3820532578", + "voter": "kurtbeil" + }, + { + "rshares": "23462236775", + "voter": "laonie8" + }, + { + "rshares": "23459668262", + "voter": "laonie9" + }, + { + "rshares": "2440083379", + "voter": "steemleak" + }, + { + "rshares": "112055912400", + "voter": "thisisbenbrick" + }, + { + "rshares": "125244617154", + "voter": "xiaohui" + }, + { + "rshares": "21110659306", + "voter": "jphamer1" + }, + { + "rshares": "94018543", + "voter": "bigsambucca" + }, + { + "rshares": "5946773586", + "voter": "elfkitchen" + }, + { + "rshares": "5766554064", + "voter": "oflyhigh" + }, + { + "rshares": "2142137848", + "voter": "paynode" + }, + { + "rshares": "62525016", + "voter": "nickche" + }, + { + "rshares": "303568520", + "voter": "rusteller" + }, + { + "rshares": "260000341079", + "voter": "sirwinchester" + }, + { + "rshares": "4028395316", + "voter": "xiaokongcom" + }, + { + "rshares": "12683521359", + "voter": "gargon" + }, + { + "rshares": "2305504187", + "voter": "pgarcgo" + }, + { + "rshares": "2447938775", + "voter": "future24" + }, + { + "rshares": "8120387338", + "voter": "xianjun" + }, + { + "rshares": "7546495705", + "voter": "lgm-1" + }, + { + "rshares": "77724719", + "voter": "evgenyche" + }, + { + "rshares": "69130289", + "voter": "stevescriber" + }, + { + "rshares": "3277990744", + "voter": "bledarus" + }, + { + "rshares": "50027573", + "voter": "loli" + }, + { + "rshares": "89195680289", + "voter": "miacats" + }, + { + "rshares": "52419023", + "voter": "nano2nd" + }, + { + "rshares": "531944476", + "voter": "microluck" + }, + { + "rshares": "77220767", + "voter": "razberrijam" + }, + { + "rshares": "1952786674", + "voter": "chinadaily" + }, + { + "rshares": "13869624454", + "voter": "kyriacos" + }, + { + "rshares": "36244326905", + "voter": "thecurator" + }, + { + "rshares": "59021275", + "voter": "cryptoblu" + }, + { + "rshares": "59014859", + "voter": "instructor" + }, + { + "rshares": "739426684571", + "voter": "dollarvigilante" + }, + { + "rshares": "93497889783", + "voter": "anotherjoe" + }, + { + "rshares": "7166212158", + "voter": "solarguy" + }, + { + "rshares": "3897735456", + "voter": "lamech-m" + }, + { + "rshares": "84681497836", + "voter": "serejandmyself" + }, + { + "rshares": "9544116466", + "voter": "mrgrey" + }, + { + "rshares": "728730693", + "voter": "alexma3x" + }, + { + "rshares": "9825243280", + "voter": "gvargas123" + }, + { + "rshares": "13829552678", + "voter": "cryptomancer" + }, + { + "rshares": "58964015", + "voter": "dimitriy" + }, + { + "rshares": "23453540976", + "voter": "laonie10" + }, + { + "rshares": "604185913", + "voter": "wuyueling" + }, + { + "rshares": "73276984296", + "voter": "sweetsssj" + }, + { + "rshares": "2803446535", + "voter": "netaterra" + }, + { + "rshares": "50816343", + "voter": "bitchplease" + }, + { + "rshares": "92899380169", + "voter": "barrycooper" + }, + { + "rshares": "79979619", + "voter": "joelbow" + }, + { + "rshares": "11300097831", + "voter": "sethlinson" + }, + { + "rshares": "29734500129", + "voter": "hilarski" + }, + { + "rshares": "2392467864", + "voter": "shadowspub" + }, + { + "rshares": "267071524484", + "voter": "oldtimer" + }, + { + "rshares": "32411487065", + "voter": "daut44" + }, + { + "rshares": "4580262873", + "voter": "steemitpatina" + }, + { + "rshares": "4768611178", + "voter": "fat-like-buddha" + }, + { + "rshares": "55859919", + "voter": "rickmiller" + }, + { + "rshares": "1233668048", + "voter": "lenar" + }, + { + "rshares": "2076202607", + "voter": "cryptoeasy" + }, + { + "rshares": "5154805617", + "voter": "nulliusinverba" + }, + { + "rshares": "110647858832", + "voter": "shenanigator" + }, + { + "rshares": "2908012841", + "voter": "daveks" + }, + { + "rshares": "7471182625", + "voter": "einsteinpotsdam" + }, + { + "rshares": "23133191472", + "voter": "laonie11" + }, + { + "rshares": "1552512887", + "voter": "davidjkelley" + }, + { + "rshares": "1878628053", + "voter": "mobios" + }, + { + "rshares": "20853973484", + "voter": "sponge-bob" + }, + { + "rshares": "4324039528", + "voter": "l0k1" + }, + { + "rshares": "14886230314", + "voter": "digital-wisdom" + }, + { + "rshares": "3547902817", + "voter": "ethical-ai" + }, + { + "rshares": "50784892", + "voter": "freesteem" + }, + { + "rshares": "6531322926", + "voter": "jwaser" + }, + { + "rshares": "161709465048", + "voter": "thecyclist" + }, + { + "rshares": "1018513187", + "voter": "zettar" + }, + { + "rshares": "122271956", + "voter": "tito-baron" + }, + { + "rshares": "1735431749", + "voter": "kiwideb" + }, + { + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "rshares": "2558000160", + "voter": "bwaser" + }, + { + "rshares": "5773395051", + "voter": "dexter-k" + }, + { + "rshares": "50751176", + "voter": "roadhog" + }, + { + "rshares": "2201645172", + "voter": "alina1" + }, + { + "rshares": "50639382", + "voter": "doggnostic" + }, + { + "rshares": "644579979", + "voter": "ct-gurus" + }, + { + "rshares": "50377764", + "voter": "jenny-talls" + }, + { + "rshares": "386792765707", + "voter": "charlieshrem" + }, + { + "rshares": "7681172153", + "voter": "mariandavp" + }, + { + "rshares": "60088527835", + "voter": "tracemayer" + }, + { + "rshares": "20817850462", + "voter": "brains" + }, + { + "rshares": "50210467", + "voter": "post-successful" + }, + { + "rshares": "1049744855", + "voter": "positivesteem" + }, + { + "rshares": "5470937952", + "voter": "chick1" + }, + { + "rshares": "1735164858", + "voter": "sens" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "503052886", + "voter": "echoesinthemind" + }, + { + "rshares": "57534146", + "voter": "freebornangel" + }, + { + "rshares": "2084741030", + "voter": "steemsquad" + }, + { + "rshares": "255505026", + "voter": "anomaly" + }, + { + "rshares": "2293549771", + "voter": "ellepdub" + }, + { + "rshares": "1550172009", + "voter": "allesgruen" + }, + { + "rshares": "59178617", + "voter": "inarix03" + }, + { + "rshares": "4725653598", + "voter": "michelle.gent" + }, + { + "rshares": "11523640324", + "voter": "herpetologyguy" + }, + { + "rshares": "54452104", + "voter": "drac59" + }, + { + "rshares": "4605288518", + "voter": "morgan.waser" + }, + { + "rshares": "50235850", + "voter": "billkappa442" + }, + { + "rshares": "50233449", + "voter": "teemsteem" + }, + { + "rshares": "51235131", + "voter": "glassheart" + }, + { + "rshares": "51227561", + "voter": "battalar" + }, + { + "rshares": "51141851", + "voter": "slow" + }, + { + "rshares": "50975390", + "voter": "steemprincess" + }, + { + "rshares": "57373409", + "voter": "teo" + }, + { + "rshares": "50873654", + "voter": "palladium" + }, + { + "rshares": "1317053201", + "voter": "aksinya" + }, + { + "rshares": "50570250", + "voter": "ziggo" + }, + { + "rshares": "50538694", + "voter": "fenix" + }, + { + "rshares": "50536471", + "voter": "twistys" + }, + { + "rshares": "810369666", + "voter": "bapparabi" + }, + { + "rshares": "50479027", + "voter": "sunlight" + }, + { + "rshares": "9346140667", + "voter": "luzcypher" + }, + { + "rshares": "166200503", + "voter": "haddock" + }, + { + "rshares": "3447563868", + "voter": "strong-ai" + }, + { + "rshares": "159723319", + "voter": "ctu" + }, + { + "rshares": "1507439774", + "voter": "yanik" + }, + { + "rshares": "1319385375", + "voter": "rusteemitblog" + }, + { + "rshares": "4636706408", + "voter": "jennane" + }, + { + "rshares": "149130097", + "voter": "ndea30" + }, + { + "rshares": "149123370", + "voter": "domenico" + }, + { + "rshares": "444421238", + "voter": "witchcraftblog" + }, + { + "rshares": "148337519", + "voter": "serena199" + }, + { + "rshares": "148308392", + "voter": "gia7" + }, + { + "rshares": "160773127", + "voter": "animal" + }, + { + "rshares": "147864891", + "voter": "richie4" + }, + { + "rshares": "147806968", + "voter": "coraline88" + }, + { + "rshares": "160319579", + "voter": "cybergirls" + }, + { + "rshares": "160260561", + "voter": "rage" + }, + { + "rshares": "147559003", + "voter": "harlen" + }, + { + "rshares": "147523175", + "voter": "yanuel" + }, + { + "rshares": "147475911", + "voter": "daritza" + }, + { + "rshares": "159984914", + "voter": "correct" + }, + { + "rshares": "156411729", + "voter": "blender" + }, + { + "rshares": "159318360", + "voter": "stimmt" + }, + { + "rshares": "158732321", + "voter": "steemwallet" + }, + { + "rshares": "28919059756", + "voter": "goldmatters" + }, + { + "rshares": "71720421", + "voter": "dealzgal" + }, + { + "rshares": "77287933", + "voter": "storage" + }, + { + "rshares": "184381906", + "voter": "antaja" + }, + { + "rshares": "154503543", + "voter": "steemdesigner" + }, + { + "rshares": "329629477", + "voter": "aldentan" + }, + { + "rshares": "61536953", + "voter": "blackmarket" + }, + { + "rshares": "67683958", + "voter": "gifts" + }, + { + "rshares": "91120780", + "voter": "expat" + }, + { + "rshares": "134906258", + "voter": "steemtrail" + }, + { + "rshares": "100289745", + "voter": "paulocouto" + }, + { + "rshares": "138917685", + "voter": "sawgunner13" + }, + { + "rshares": "1593664040", + "voter": "steemlift" + } + ], + "author": "kevinwong", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "
https://s16.postimg.org/5csp5ocf9/kevv.jpg
\n\nHere I am spending the night in the darkness of my bedroom. Dog's snoring right beside me, his head resting on my chest. Feeling like I'm in some prologue of a cyberpunk story. Anyway, surfing on Steemit mobile is actually quite decent, despite the inadequacy of certain types of tables and media not showing up properly on screen.\n\nDecided to write this after going through some dramatic commentaries on Steemit that happened for the past few days. Mostly about ideological disagreements, and especially, overcompensation of posts. While I consider myself pretty critical, I usually opt out of direct, in-your-face type of confrontations. I prefer to plan and pick my own battles, having learned out of experience.\n\nBecause personally, I've never come across any situation that immediately improves itself after insults are thrown around. No one is going to admit wrong right away. Everyone's always right in their own world, and that's particularly true with the presence of an opposing voice. And it doesn't matter how zen one may be. No one's a perfect saint. Everyone has a breaking point. \n\nYup, I've snapped before, more than enough times to know this little fact of life. Nothing good comes out of throwing a fit (well not as much as can be). Sure, our message, our version of truth should be upheld. But there are better ways of fighting the good fight.. maybe like what I'm trying to do with this post right now. So what am I trying to address here?\n\n---------------------------\n# Plan your battles - don't join someone else's!\n
https://s10.postimg.org/ntels66d5/planning.jpg
\nThere was [a post on Steemit](https://steemit.com/anarchy/@kennyskitchen/the-40-anarchists-you-want-to-be-following-on-steemit) a while ago that labelled me an anarchist. Am I? Maybe I am. Sure, I'm against big, centralised governments. I may even detest the inherent thieving practices of big brother. But I'm still running a music event company - there are legal matters that I still need to run by government offices, purely out of safety and security reasons.\n\nYou may argue that it's perverted that I'm using an intrinsically violent agent (namely, The Government and The Police State) to secure the well-being of my business customers. Next I'll ask - can we have a decentralised free market doing music events with all the right securities? That's what my company, [Hybrid Entertainment](https://steemit.com/steemit-marketing/@kevinwong/our-next-dance-music-event-psychedelic-trance-some-steemit-love) partly aims to do. It's a learning process. \n\nFor now, we still need to use the existing structures of Old, Big Government.. while we find ways to transition out of such dependence. Fight too hard and you'll get clamped down, thrown out of the game. You can't do much when you're out of the game, so stay in it! Take the time to plan your battles, dear hot-blooded confrontationists (if that's even a word).\n\nSure, the world needs you to say things as they are. But hearing the painful truth is almost like violence itself. No one likes that, no matter which side of a dispute. Peace also involves peace of mind. It's a much longer game - it comes with the territory. You're already in someone else's fight once you get into war. Only get into war if you're the big guy. The small guy is always the loser - the unwilling pawn. Think about this in scope of what's happening all around the world, even on Steemit.\n\nDon't be a zealot. There are dangers of being too far left, or too far right. Find the middle way. All you need is another perspective. Some people may be asswipes, but goodness is omnipresent if the conditions are right.\n\nAnd that's how you plan your battles - take the time to do it right. \n\nIn perspective of my generally apolitical position on Steemit, I tend to find better ways to contribute instead of lashing out on another user. Sure, I have my dissatisfaction about some author rewards and posting models from time to time. However, I tried putting effort into building better models and figuring out ways to add substantial value into the ecosystem. Eventually, some of us gravitated towards a loose goal of rewarding diversity by combing contents on Steemit on a daily basis.\n\nThere are now epic giant hidden-gem megaposts on Steemit - like this one from [Project Curie](https://steemit.com/@curie) and [Robinhood Whale](https://steemit.com/@robinhoodwhale). Better coverage, better quality, better value - in so many ways. This is the free-market reaction to solo authored hidden-gem posts of early Steemit. No doubt that everything evolves over time. \n\nKnowing that value is subjective, I have always refrained from losing my cool. Even here on Steemit. \n\n**I'm the small fish and I have to plan my battles!**\n\n---------------------------------------\n\n# Don't freaking milk it!\n\n
https://s3.postimg.org/6ne6t272b/milk.jpg
\nThere are big reasons why most of us don't really like governments. Greed and corruption. Needless to say, the crowd easily picks up on this when insubstantial effort is rewarded handsomely. By all means, that's as subjective as can be. What's not (very) subjective, however, is if one continues to milk it, even despite public disapproval. \n\nThis happens all around the world. Don't oversell. You'll lose reputation if you are obviously **milking it**!\n\nSure, you may gain new followers.. newly inspired and freshly impressed. But old eyes grow weary. People are watching, and your social value fluctuates all the time. You can't please everyone, but you can try the **art of not milking the shit out of the system**.\n\nIt's a good business practice. It's a good personal conduct. And it works on Steemit.\n\nThat's a reason why I'm also posting lesser (other than plainly having a huge writer's block, reserving myself from random shitposting). Now I'm only writing when I really think I have something good to add as a post. As I'm partly dependent on Steemit, I've strategized a lil, refraining from appearing to be **milking it**, seeking modes of substantial contribution behind the scenes to compensate for the awesome support that has been given to me on this platform.\n\nIf you are suddenly rewarded thousands for a post - ask yourself. Is that post worth that much? Heck, I don't know if my top philosophical post is worth 4,000 bucks, but I know I've put long hours in it, enough to avoid milking and recycling the same content. Instead, I try to put more effort in other areas of the ecosystem to balance out the lopsided reward.\n\nThe blockchain is transparent. It's easy to find out if you're milking it. To avoid seeming like you're milking it - just be honest and ask yourself the right questions! Then, do the right thing!\n\n**Like life, like Steemit - try to give more than you can take. Don't. Freaking. Milk It.**\n\n----------------------------------\n\n# Take time to build, or take time to exploit?\n
https://img1.steemit.com/0x0/http://i.imgur.com/T9b4dDQ.jpg
\n
By Steemit's talented artist @lgm-1
\n\nNaturally, I'd say take time to build. Once you're caught exploiting the system, in life or on Steemit, you're lose reputation whether or not if its digitally measurable. You can create as many accounts as you want and find a million ways to exploit everything, but ask yourself - what are you building?\n\nHere are some tips for maintaining reputation on Steemit:-\n- Steemit's a mutual aid society. While posts can be about anything, note there's a limited amount of funds going around each day. It's obvious that your reputation is at stake if you have somehow managed to acquire good support, but not giving back substantially.\n- Tags are like real estate. Choose appropriately. An example is if you're writing your opinions on something rather meta, I think it's prudent to respect the scientific community. For example in [my article about consciousness](https://steemit.com/consciousness/@kevinwong/let-s-talk-about-consciousness-wtf-is-it), I've deliberately used the ***pseudoscience*** tag, no matter how right I think I could be. I clearly think about such topics often, but I never put myself in research labs knowing about consciousness well enough to indicate that I am the master of that domain.\n- Follow up on your promises. Communicate transparently.\n- Put in more effort, visibly and even behind the scenes when you manage to acquire good payouts.\n- Try to follow others. Curate and also support other members.\n- Plan your battles and don't milk it! And also, celebrity attitudes won't last long here if you're not giving back to the community. @dollarvigilante is doing this right - he's aiding others and even curating frequently on his free time!\n- Again, in general, give more than you can take.\n\n### Reputation is everything - for survival, for change in a social landscape.\n\n*Note: There is some form of censorship of the mind when it comes to chance of interruption from higher powers. It's the same everywhere. You just have to play your cards right, opting for different methods, different approaches. It's not really a systems-problem. It's a people-problem, as always. Never leave an opening for others to destroy your reputation.*\n\n-----------------------------------------------\n
Stock photos courtesy of https://pixabay.com/
\n\n-----------------------------------------------\n
Follow me @kevinwong
\n-------------------------------------------------", + "category": "guide", + "children": 53, + "created": "2016-09-14T22:00:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s16.postimg.org/5csp5ocf9/kevv.jpg", + "https://s10.postimg.org/ntels66d5/planning.jpg", + "https://s3.postimg.org/6ne6t272b/milk.jpg", + "https://img1.steemit.com/0x0/http://i.imgur.com/T9b4dDQ.jpg" ], - "author": "good-karma", - "author_payout_value": "0.000 HBD", - "author_reputation": 76.74, - "author_role": "mod", - "author_title": "Founder of Esteem", - "beneficiaries": [ - { - "account": "esteemapp", - "weight": 300 - } + "links": [ + "https://steemit.com/anarchy/@kennyskitchen/the-40-anarchists-you-want-to-be-following-on-steemit", + "https://steemit.com/steemit-marketing/@kevinwong/our-next-dance-music-event-psychedelic-trance-some-steemit-love", + "https://steemit.com/@curie", + "https://steemit.com/@robinhoodwhale", + "https://steemit.com/consciousness/@kevinwong/let-s-talk-about-consciousness-wtf-is-it", + "https://pixabay.com/" ], - "blacklists": [], - "body": "Hello everyone,\n\nEarlier in [Hivesigner updates](/hive/@good-karma/hivesigner-ongoing-development-and-improvement), I mentioned that [integrating Hivesigner into Hive.blog](https://gitlab.syncad.com/hive/condenser/-/issues/43) would be huge steps for giving similar user experience across Hive applications.\n\nOne of the first steps were to solve Imagehoster issue or rather expand it to allow image uploads if user Logged in via Hivesigner.\n\n![](https://images.ecency.com/p/Y2iXpRRkNSnseh3NuL6KUBitJTXrc5K2vbTzBseGEENcE)\n\n## Imagehoster + Hivesigner\n\nImagehoster works by signing image file with user's private key and then use signature to upload image file. On server side, signature is verified with image file content and accepted/stored.\n\nHivesigner being OAuth2 works slightly different, so we couldn't sign the image file before uploading to Imagehoster because we don't have access to user's private keys. But each application has `accessToken` issued by Hivesigner with user's permission. [I just created Merge Request into Imagehoster](https://gitlab.syncad.com/hive/imagehoster/-/merge_requests/1) which uses `accessToken` for verifying application, user account and uploads image.\n\nOnce accepted by @blocktrades team, we can start working on next step [Condenser Hivesigner integration](https://gitlab.syncad.com/hive/condenser/-/issues/43). \n\n## Condenser Bounty\n\nIf you are familiar with condenser source code: https://gitlab.syncad.com/hive/condenser, here is a challenge and programming task to get first hand experience on how Condenser and Hivesigner works, earn extra reward while learning.\n\nAnnouncing Bounty for integrating Hivesigner OAuth2 into hive.blog and wallet.hive.blog.\n\n**Bounty prize: 1000 HBD**\nRelated issue: https://gitlab.syncad.com/hive/condenser/-/issues/43\n\nIntegration examples to get started: Esteem/Ecency [desktop](https://github.com/esteemapp/esteem-surfer/blob/master/app/helpers/sc.js) and [mobile](https://github.com/esteemapp/esteem-mobile/blob/development/src/providers/steem/steemConnect.js) apps, as well as https://demo.hivesigner.com.\n\n\nIf anyone interested adding into prize pool, please feel free to reach out or leave a comment.\n\n# Hive on!\n\n## Support Hivesigner\n\n- [Read details of Hivesigner proposal](https://esteem.app/hive/@good-karma/hivesigner-ongoing-development-and-improvement)\n- [Vote for proposal using Hivesigner](https://hivesigner.com/sign/update-proposal-votes?proposal_ids=%5B88%5D&approve=true)\n- PeakD: https://peakd.com/proposals/88\n- HiveBlog Wallet: https://wallet.hive.blog/proposals\n- Discord: https://discord.gg/pNJn7wh", - "category": "hive-139531", - "children": 5, - "community": "hive-139531", - "community_title": "HiveDevs", - "created": "2020-07-07T16:03:48", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "esteem/2.2.7-surfer", - "community": "esteem.app", - "format": "markdown+html", - "links": [ - "https://gitlab.syncad.com/hive/condenser/-/issues/43", - "https://images.ecency.com/p/Y2iXpRRkNSnseh3NuL6KUBitJTXrc5K2vbTzBseGEENcE", - "https://gitlab.syncad.com/hive/imagehoster/-/merge_requests/1", - "https://gitlab.syncad.com/hive/condenser/-/issues/43", - "https://gitlab.syncad.com/hive/condenser", - "https://gitlab.syncad.com/hive/condenser/-/issues/43", - "https://github.com/esteemapp/esteem-surfer/blob/master/app/helpers/sc.js", - "https://github.com/esteemapp/esteem-mobile/blob/development/src/providers/steem/steemConnect.js", - "https://demo.hivesigner.com", - "https://esteem.app/hive/@good-karma/hivesigner-ongoing-development-and-improvement", - "https://hivesigner.com/sign/update-proposal-votes?proposal_ids=%5B88%5D&approve=true", - "https://peakd.com/proposals/88", - "https://wallet.hive.blog/proposals", - "https://discord.gg/pNJn7wh" - ], - "tags": [ - "hive-139531", - "hivesigner", - "imagehoster", - "hive", - "development", - "upload", - "dapps" - ], - "users": [ - "blocktrades" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 302305073292290, - "payout": 124.996, - "payout_at": "2020-07-14T16:03:48", - "pending_payout_value": "124.996 HBD", - "percent_steem_dollars": 10000, - "permlink": "imagehoster-hivesigner-and-condenser-bounty", - "post_id": 86934500, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 465 - }, - "title": "Imagehoster + Hivesigner and Condenser bounty", - "updated": "2020-07-07T18:16:27", - "url": "/hive-139531/@good-karma/imagehoster-hivesigner-and-condenser-bounty" + "tags": [ + "guide", + "life", + "lifehack", + "reputation", + "craigrant" + ], + "users": [ + "lgm-1", + "dollarvigilante", + "kevinwong" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 115120672136759, + "payout": 753.848, + "payout_at": "2016-09-21T22:00:36", + "pending_payout_value": "753.848 HBD", + "percent_hbd": 10000, + "permlink": "the-art-of-maintaining-reputation-plan-your-battles-and-don-t-milk-it", + "post_id": 1247817, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 380 + }, + "title": "The Art of Maintaining Reputation: Plan Your Battles and Don't Milk It!", + "updated": "2016-09-15T07:45:57", + "url": "/guide/@kevinwong/the-art-of-maintaining-reputation-plan-your-battles-and-don-t-milk-it" }, { - "active_votes": [ - { - "rshares": "195445517029450", - "voter": "blocktrades" - }, - { - "rshares": "37437184382", - "voter": "tombstone" - }, - { - "rshares": "6235077814968", - "voter": "acidyo" - }, - { - "rshares": "853064859824", - "voter": "kevinwong" - }, - { - "rshares": "533434900", - "voter": "kosimoos" - }, - { - "rshares": "3410551227", - "voter": "mrwang" - }, - { - "rshares": "63050623550", - "voter": "arcange" - }, - { - "rshares": "5021974125", - "voter": "sharker" - }, - { - "rshares": "3551444099", - "voter": "arconite" - }, - { - "rshares": "1606141452", - "voter": "raphaelle" - }, - { - "rshares": "4019221485", - "voter": "kibela" - }, - { - "rshares": "539052817", - "voter": "alinalazareva" - }, - { - "rshares": "29567796081", - "voter": "fooblic" - }, - { - "rshares": "9460419041", - "voter": "anech512" - }, - { - "rshares": "111203549746", - "voter": "frankbacon" - }, - { - "rshares": "92747144611", - "voter": "ixindamix" - }, - { - "rshares": "8669866601", - "voter": "cardboard" - }, - { - "rshares": "1565254098", - "voter": "soushi888" - }, - { - "rshares": "21726964805", - "voter": "rahul.stan" - }, - { - "rshares": "155852686573", - "voter": "steemitboard" - }, - { - "rshares": "682752314", - "voter": "lugaxker" - }, - { - "rshares": "23355454961", - "voter": "valued-customer" - }, - { - "rshares": "274168567415", - "voter": "drag33" - }, - { - "rshares": "4947891496976", - "voter": "nrg" - }, - { - "rshares": "29898861060", - "voter": "steeminator3000" - }, - { - "rshares": "132580289535", - "voter": "maxer27" - }, - { - "rshares": "30991338386", - "voter": "sam99" - }, - { - "rshares": "14212908975", - "voter": "d-pend" - }, - { - "rshares": "2692188257", - "voter": "fancybrothers" - }, - { - "rshares": "78627390582", - "voter": "goldkey" - }, - { - "rshares": "1311625287", - "voter": "wargof" - }, - { - "rshares": "1275260631392", - "voter": "steemvote" - }, - { - "rshares": "49942820207", - "voter": "shasta" - }, - { - "rshares": "259373611660", - "voter": "investingpennies" - }, - { - "rshares": "1407859255", - "voter": "steemik" - }, - { - "rshares": "6457936294", - "voter": "francosteemvotes" - }, - { - "rshares": "26748901378", - "voter": "santigs" - }, - { - "rshares": "52642605048", - "voter": "bashadow" - }, - { - "rshares": "1125210601", - "voter": "evildido" - }, - { - "rshares": "3795367211", - "voter": "aidefr" - }, - { - "rshares": "53885179", - "voter": "steemsql" - }, - { - "rshares": "16360446921", - "voter": "chireerocks" - }, - { - "rshares": "5318172576", - "voter": "robotics101" - }, - { - "rshares": "1257341204", - "voter": "lpv" - }, - { - "rshares": "88356952530", - "voter": "lyon89" - }, - { - "rshares": "6764339287", - "voter": "as31" - }, - { - "rshares": "19959881467", - "voter": "spiritabsolute" - }, - { - "rshares": "6003888584", - "voter": "tomatom" - }, - { - "rshares": "1709089989", - "voter": "fourfourfun" - }, - { - "rshares": "3717836816", - "voter": "duke77" - }, - { - "rshares": "25627909991", - "voter": "gabrielatravels" - }, - { - "rshares": "216747221503", - "voter": "alexanderfluke" - }, - { - "rshares": "153857583608", - "voter": "mmmmkkkk311" - }, - { - "rshares": "1391595067", - "voter": "dragibusss" - }, - { - "rshares": "12921643067", - "voter": "a-quarius" - }, - { - "rshares": "4143623264", - "voter": "psos" - }, - { - "rshares": "552963555", - "voter": "cfminer" - }, - { - "rshares": "1336167026", - "voter": "voltagrou" - }, - { - "rshares": "620890643", - "voter": "gribouille" - }, - { - "rshares": "3239051938841", - "voter": "holger80" - }, - { - "rshares": "7376062209", - "voter": "orlandumike" - }, - { - "rshares": "872948502", - "voter": "gavinatorial" - }, - { - "rshares": "11493324856", - "voter": "chalacuna" - }, - { - "rshares": "1821016653", - "voter": "minerspost" - }, - { - "rshares": "21852975090", - "voter": "photohunt" - }, - { - "rshares": "1086259701", - "voter": "photohunter4" - }, - { - "rshares": "6121444799", - "voter": "frassman" - }, - { - "rshares": "102895426172", - "voter": "outlinez" - }, - { - "rshares": "901826876", - "voter": "marcus0alameda" - }, - { - "rshares": "2601908273", - "voter": "onepercentbetter" - }, - { - "rshares": "11318853008", - "voter": "goldvault" - }, - { - "rshares": "384873793", - "voter": "sekhet" - }, - { - "rshares": "1092557075666", - "voter": "jkramer" - }, - { - "rshares": "1500244757", - "voter": "memepress" - }, - { - "rshares": "1023257936", - "voter": "imcore" - }, - { - "rshares": "42557398813", - "voter": "nancybriti" - }, - { - "rshares": "169273801951", - "voter": "kgakakillerg" - }, - { - "rshares": "8380401434919", - "voter": "julialee66" - }, - { - "rshares": "4788912612", - "voter": "josebenavente" - }, - { - "rshares": "40400407328", - "voter": "promobot" - }, - { - "rshares": "2838568521", - "voter": "mrs.goldkey" - }, - { - "rshares": "606031778", - "voter": "sayago" - }, - { - "rshares": "13986305231", - "voter": "aliriera" - }, - { - "rshares": "1572549003215", - "voter": "solarwarrior" - }, - { - "rshares": "498800536", - "voter": "merlion" - }, - { - "rshares": "109254830743", - "voter": "simplegame" - }, - { - "rshares": "677406955", - "voter": "revueh" - }, - { - "rshares": "24413325044", - "voter": "urdreamscometrue" - }, - { - "rshares": "35653091707", - "voter": "thehive" - }, - { - "rshares": "754462606", - "voter": "arrixion" - }, - { - "rshares": "138928667143", - "voter": "harkar" - }, - { - "rshares": "2566447623", - "voter": "sughey" - }, - { - "rshares": "58059146484", - "voter": "idakarlsen" - }, - { - "rshares": "534385275", - "voter": "clement.poiret" - }, - { - "rshares": "19565940786", - "voter": "fullnodeupdate" - }, - { - "rshares": "7852798488", - "voter": "pboulet" - }, - { - "rshares": "12950441", - "voter": "laissez-faire" - }, - { - "rshares": "2886514957", - "voter": "silverkey" - }, - { - "rshares": "12311223293", - "voter": "silvervault" - }, - { - "rshares": "4804059307", - "voter": "cryptycoon" - }, - { - "rshares": "5061318118", - "voter": "cryptoclerk" - }, - { - "rshares": "39898513297", - "voter": "mister-meeseeks" - }, - { - "rshares": "4263060681", - "voter": "jackofcrows" - }, - { - "rshares": "9339027669", - "voter": "steemitcuration" - }, - { - "rshares": "1745777616", - "voter": "dubignyp" - }, - { - "rshares": "1257828660882", - "voter": "brianoflondon" - }, - { - "rshares": "1976442843", - "voter": "onze" - }, - { - "rshares": "1482290943", - "voter": "solarphasing" - }, - { - "rshares": "3734196070", - "voter": "iovoccae" - }, - { - "rshares": "-78815199", - "voter": "dein-problem" - }, - { - "rshares": "2110159699", - "voter": "unknownonline" - }, - { - "rshares": "3719824761", - "voter": "steemlandia" - }, - { - "rshares": "718076878", - "voter": "seekingalpha" - }, - { - "rshares": "340566494082", - "voter": "ctime" - }, - { - "rshares": "2811677631", - "voter": "goodcontentbot" - }, - { - "rshares": "54198084", - "voter": "hungrybear" - }, - { - "rshares": "56471839639", - "voter": "doze" - }, - { - "rshares": "22991352676", - "voter": "maryincryptoland" - }, - { - "rshares": "2485267405", - "voter": "helgalubevi" - }, - { - "rshares": "624962544346", - "voter": "scholaris" - }, - { - "rshares": "2531752129", - "voter": "bosferi123" - }, - { - "rshares": "1944359467", - "voter": "hjlee119" - }, - { - "rshares": "4613354678588", - "voter": "likwid" - }, - { - "rshares": "535026376", - "voter": "treze" - }, - { - "rshares": "24348705009", - "voter": "golden.future" - }, - { - "rshares": "2752300677", - "voter": "lrekt01" - }, - { - "rshares": "8100023887", - "voter": "luismar1978" - }, - { - "rshares": "510553506274", - "voter": "votebetting" - }, - { - "rshares": "28277014156", - "voter": "acta" - }, - { - "rshares": "19599953694", - "voter": "the-table" - }, - { - "rshares": "3494997675", - "voter": "hongdangmu" - }, - { - "rshares": "100421481405", - "voter": "silverquest" - }, - { - "rshares": "6406421046", - "voter": "blocktvnews" - }, - { - "rshares": "8871278130", - "voter": "fearlessgu" - }, - { - "rshares": "142211011972", - "voter": "max.curation" - }, - { - "rshares": "2845551546", - "voter": "redwarbull" - }, - { - "rshares": "4366275774", - "voter": "dec.entralized" - }, - { - "rshares": "337178204", - "voter": "bela29" - }, - { - "rshares": "2074057004", - "voter": "bcm.dblog" - }, - { - "rshares": "635042011", - "voter": "aceh.point" - }, - { - "rshares": "43577050317", - "voter": "monica-ene" - }, - { - "rshares": "109299499829", - "voter": "fengchao" - }, - { - "rshares": "171277884762", - "voter": "hivebuzz" - }, - { - "rshares": "856700595668", - "voter": "laruche" - }, - { - "rshares": "1811768263", - "voter": "green-finger" - }, - { - "rshares": "11251086598", - "voter": "unknown0nline" - }, - { - "rshares": "1118751191004", - "voter": "softworld" - }, - { - "rshares": "802600846", - "voter": "sunsan" - }, - { - "rshares": "731915203", - "voter": "radio-quebec" - }, - { - "rshares": "838002361", - "voter": "marvschurchill1" - }, - { - "rshares": "925431858", - "voter": "hive.revolution" - }, - { - "rshares": "1469389745", - "voter": "ninnu" - }, - { - "rshares": "1799507065415", - "voter": "hive.curation" - }, - { - "rshares": "0", - "voter": "galaxy100" - }, - { - "rshares": "90359013280", - "voter": "ghaazi" - }, - { - "rshares": "528323912", - "voter": "mr-toke" - }, - { - "rshares": "1470558564", - "voter": "patronpass" - }, - { - "rshares": "696232350", - "voter": "comprendre.hive" - }, - { - "rshares": "2151978103", - "voter": "reza-shamim" - }, - { - "rshares": "922043503", - "voter": "plusvault" - }, - { - "rshares": "1237960102", - "voter": "hivebuilderteam" - }, - { - "rshares": "0", - "voter": "marsal100" - }, - { - "rshares": "0", - "voter": "bivashpaul1" - }, - { - "rshares": "0", - "voter": "veseq" - } + "active_votes": [ + { + "rshares": "27814176695531", + "voter": "dantheman" + }, + { + "rshares": "7145643497594", + "voter": "skywalker" + }, + { + "rshares": "1968124814276", + "voter": "badassmother" + }, + { + "rshares": "2052934239988", + "voter": "hr1" + }, + { + "rshares": "6596087814836", + "voter": "fuzzyvest" + }, + { + "rshares": "1337025448249", + "voter": "rossco99" + }, + { + "rshares": "22864938197", + "voter": "jaewoocho" + }, + { + "rshares": "1576018783851", + "voter": "joseph" + }, + { + "rshares": "466052314352", + "voter": "recursive2" + }, + { + "rshares": "636514783207", + "voter": "masteryoda" + }, + { + "rshares": "3120252422964", + "voter": "recursive" + }, + { + "rshares": "681020986865", + "voter": "boombastic" + }, + { + "rshares": "91328598326", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6959124583", + "voter": "bingo-0" + }, + { + "rshares": "1330868635495", + "voter": "steempower" + }, + { + "rshares": "445757361586", + "voter": "boatymcboatface" + }, + { + "rshares": "443132842669", + "voter": "officialfuzzy" + }, + { + "rshares": "9167255683", + "voter": "idol" + }, + { + "rshares": "18955732033", + "voter": "chitty" + }, + { + "rshares": "8232133931", + "voter": "unosuke" + }, + { + "rshares": "139694054199", + "voter": "chris4210" + }, + { + "rshares": "14501486968", + "voter": "valtr" + }, + { + "rshares": "1577916417", + "voter": "jocelyn" + }, + { + "rshares": "9604795718", + "voter": "gregory60" + }, + { + "rshares": "89897248149", + "voter": "eeks" + }, + { + "rshares": "24694558802", + "voter": "fkn" + }, + { + "rshares": "468281676", + "voter": "paco-steem" + }, + { + "rshares": "5641144936", + "voter": "spaninv" + }, + { + "rshares": "32459455171", + "voter": "elishagh1" + }, + { + "rshares": "8669787638", + "voter": "richman" + }, + { + "rshares": "584162335269", + "voter": "nanzo-scoop" + }, + { + "rshares": "469184158", + "voter": "jeffanthonyfds" + }, + { + "rshares": "10461841838", + "voter": "acidyo" + }, + { + "rshares": "36656769992", + "voter": "dan-atstarlite" + }, + { + "rshares": "177393957447", + "voter": "mummyimperfect" + }, + { + "rshares": "313687341", + "voter": "coar" + }, + { + "rshares": "106629500909", + "voter": "asch" + }, + { + "rshares": "1061210624", + "voter": "murh" + }, + { + "rshares": "6230682263", + "voter": "cryptofunk" + }, + { + "rshares": "579494558", + "voter": "kodi" + }, + { + "rshares": "2111403468", + "voter": "error" + }, + { + "rshares": "985518335179", + "voter": "cyber" + }, + { + "rshares": "61711048609", + "voter": "theshell" + }, + { + "rshares": "50879221096", + "voter": "ak2020" + }, + { + "rshares": "63100175656", + "voter": "justtryme90" + }, + { + "rshares": "400866642793", + "voter": "taoteh1221" + }, + { + "rshares": "410502622", + "voter": "applecrisp" + }, + { + "rshares": "365370465", + "voter": "stiletto" + }, + { + "rshares": "15787116636", + "voter": "zakharya" + }, + { + "rshares": "280678620376", + "voter": "trogdor" + }, + { + "rshares": "121380113922", + "voter": "geoffrey" + }, + { + "rshares": "208331842756", + "voter": "kimziv" + }, + { + "rshares": "76009124707", + "voter": "emily-cook" + }, + { + "rshares": "12064022115", + "voter": "primus" + }, + { + "rshares": "29635215678", + "voter": "acassity" + }, + { + "rshares": "280916636", + "voter": "ladyclair" + }, + { + "rshares": "19099829330", + "voter": "venuspcs" + }, + { + "rshares": "813595892", + "voter": "poias" + }, + { + "rshares": "7418976078", + "voter": "dasha" + }, + { + "rshares": "153697599394", + "voter": "asmolokalo" + }, + { + "rshares": "1642983170", + "voter": "gidlark" + }, + { + "rshares": "73849034695", + "voter": "rubybian" + }, + { + "rshares": "3058898852", + "voter": "getssidetracked" + }, + { + "rshares": "17903672525", + "voter": "konstantin" + }, + { + "rshares": "572413932", + "voter": "trees" + }, + { + "rshares": "83801390", + "voter": "strawhat" + }, + { + "rshares": "2597453094", + "voter": "romel" + }, + { + "rshares": "276570042", + "voter": "cryptochannel" + }, + { + "rshares": "120546538382", + "voter": "furion" + }, + { + "rshares": "6462652657", + "voter": "owdy" + }, + { + "rshares": "590190776", + "voter": "barbara2" + }, + { + "rshares": "642869652", + "voter": "ch0c0latechip" + }, + { + "rshares": "607124531", + "voter": "doge4lyf" + }, + { + "rshares": "18371164995", + "voter": "sebastien" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "14487855165", + "voter": "aaseb" + }, + { + "rshares": "4209499465", + "voter": "karen13" + }, + { + "rshares": "10646413479", + "voter": "deviedev" + }, + { + "rshares": "258981906731", + "voter": "nabilov" + }, + { + "rshares": "117757790207", + "voter": "pkattera" + }, + { + "rshares": "274155883", + "voter": "tinyhomeliving" + }, + { + "rshares": "55698224169", + "voter": "streetstyle" + }, + { + "rshares": "7313749376", + "voter": "lichtblick" + }, + { + "rshares": "35782652880", + "voter": "creemej" + }, + { + "rshares": "5726411049", + "voter": "btcbtcbtc20155" + }, + { + "rshares": "167298234999", + "voter": "blueorgy" + }, + { + "rshares": "4544488912", + "voter": "poseidon" + }, + { + "rshares": "7946556816", + "voter": "smolalit" + }, + { + "rshares": "3506024506", + "voter": "simon.braki.love" + }, + { + "rshares": "82781233416", + "voter": "thylbom" + }, + { + "rshares": "86528557116", + "voter": "rea" + }, + { + "rshares": "204615586375", + "voter": "jl777" + }, + { + "rshares": "20026634941", + "voter": "positive" + }, + { + "rshares": "35105434017", + "voter": "paquito" + }, + { + "rshares": "8507360175", + "voter": "fishborne" + }, + { + "rshares": "309088757", + "voter": "sergey44" + }, + { + "rshares": "17267159012", + "voter": "proto" + }, + { + "rshares": "34304658614", + "voter": "sisterholics" + }, + { + "rshares": "674282213", + "voter": "fnait" + }, + { + "rshares": "611258547", + "voter": "keepcalmand" + }, + { + "rshares": "42379649186", + "voter": "smailer" + }, + { + "rshares": "25636155654", + "voter": "pixielolz" + }, + { + "rshares": "149624601", + "voter": "steemster1" + }, + { + "rshares": "1033757233", + "voter": "neowenyuan27" + }, + { + "rshares": "3353832611", + "voter": "glitterpig" + }, + { + "rshares": "121680301", + "voter": "picker" + }, + { + "rshares": "896285424", + "voter": "metaflute" + }, + { + "rshares": "8734048037", + "voter": "taker" + }, + { + "rshares": "59219358", + "voter": "sharon" + }, + { + "rshares": "60342922", + "voter": "lillianjones" + }, + { + "rshares": "1213074787308", + "voter": "laonie" + }, + { + "rshares": "157504637007", + "voter": "twinner" + }, + { + "rshares": "4890234271", + "voter": "satoshifpv" + }, + { + "rshares": "11693771864", + "voter": "thebluepanda" + }, + { + "rshares": "42635136908", + "voter": "myfirst" + }, + { + "rshares": "252723433247", + "voter": "somebody" + }, + { + "rshares": "16251975438", + "voter": "sunshine" + }, + { + "rshares": "9691515710", + "voter": "flysaga" + }, + { + "rshares": "2501627790", + "voter": "gmurph" + }, + { + "rshares": "55828810753", + "voter": "midnightoil" + }, + { + "rshares": "84246848", + "voter": "coderg" + }, + { + "rshares": "4281232336", + "voter": "ullikume" + }, + { + "rshares": "139631233866", + "voter": "xiaohui" + }, + { + "rshares": "6952769870", + "voter": "elfkitchen" + }, + { + "rshares": "103387869456", + "voter": "joele" + }, + { + "rshares": "4365575224", + "voter": "xiaokongcom" + }, + { + "rshares": "1405383530", + "voter": "hms818" + }, + { + "rshares": "42833125455", + "voter": "nonlinearone" + }, + { + "rshares": "60819615", + "voter": "msjennifer" + }, + { + "rshares": "55925537", + "voter": "ciao" + }, + { + "rshares": "3033050865", + "voter": "jrcornel" + }, + { + "rshares": "55449983", + "voter": "steemo" + }, + { + "rshares": "9025821447", + "voter": "xianjun" + }, + { + "rshares": "55306941", + "voter": "steema" + }, + { + "rshares": "71282219", + "voter": "confucius" + }, + { + "rshares": "9729857687", + "voter": "mione" + }, + { + "rshares": "56157882", + "voter": "jarvis" + }, + { + "rshares": "591097626", + "voter": "microluck" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "54313084", + "voter": "fortuner" + }, + { + "rshares": "3286864056", + "voter": "macartem" + }, + { + "rshares": "9827647000", + "voter": "gvargas123" + }, + { + "rshares": "53056158", + "voter": "johnbyrd" + }, + { + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "rshares": "53037689", + "voter": "thermor" + }, + { + "rshares": "53048942", + "voter": "ficholl" + }, + { + "rshares": "53030738", + "voter": "widell" + }, + { + "rshares": "3635091595", + "voter": "movievertigo" + }, + { + "rshares": "52651308", + "voter": "revelbrooks" + }, + { + "rshares": "332237822", + "voter": "mrlogic" + }, + { + "rshares": "56654664918", + "voter": "mandibil" + }, + { + "rshares": "51562255", + "voter": "curpose" + }, + { + "rshares": "69986345", + "voter": "steembriefing" + }, + { + "rshares": "54612436", + "voter": "riv" + }, + { + "rshares": "56405368", + "voter": "stephenkendal" + }, + { + "rshares": "115288656029", + "voter": "shenanigator" + }, + { + "rshares": "2163490459", + "voter": "jeffreyahann" + }, + { + "rshares": "1857811307", + "voter": "funkywanderer" + }, + { + "rshares": "5053551216", + "voter": "richardcrill" + }, + { + "rshares": "51712804", + "voter": "troich" + }, + { + "rshares": "180241566", + "voter": "team101" + }, + { + "rshares": "51718188", + "voter": "crion" + }, + { + "rshares": "51388276", + "voter": "hitherise" + }, + { + "rshares": "51379706", + "voter": "wiss" + }, + { + "rshares": "54241809836", + "voter": "sponge-bob" + }, + { + "rshares": "52143228", + "voter": "stroully" + }, + { + "rshares": "53070013", + "voter": "apparat" + }, + { + "rshares": "51814474", + "voter": "thadm" + }, + { + "rshares": "51812703", + "voter": "prof" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "51465774", + "voter": "yorsens" + }, + { + "rshares": "3068760608", + "voter": "michaelmatthews" + }, + { + "rshares": "184881039384", + "voter": "asksisk" + }, + { + "rshares": "51154263", + "voter": "bane" + }, + { + "rshares": "51148009", + "voter": "vive" + }, + { + "rshares": "51142585", + "voter": "coad" + }, + { + "rshares": "232386397", + "voter": "pjo" + }, + { + "rshares": "51922012", + "voter": "sofa" + }, + { + "rshares": "330365849", + "voter": "panther" + }, + { + "rshares": "201122420257", + "voter": "doudou252666" + }, + { + "rshares": "59422248", + "voter": "plantbasedjunkie" + }, + { + "rshares": "55335930229", + "voter": "brains" + }, + { + "rshares": "51994517", + "voter": "ailo" + }, + { + "rshares": "1369339863", + "voter": "steemafon" + }, + { + "rshares": "339273477", + "voter": "anomaly" + }, + { + "rshares": "123155378", + "voter": "ola1" + }, + { + "rshares": "4647741844", + "voter": "michelle.gent" + }, + { + "rshares": "50441122", + "voter": "eavy" + }, + { + "rshares": "50454901", + "voter": "roto" + }, + { + "rshares": "70282046", + "voter": "mari5555na" + }, + { + "rshares": "50225780", + "voter": "steemq" + }, + { + "rshares": "50223099", + "voter": "battalar" + }, + { + "rshares": "51215236", + "voter": "deli" + }, + { + "rshares": "50875769", + "voter": "cyan" + }, + { + "rshares": "50540827", + "voter": "amstel" + }, + { + "rshares": "2216805889", + "voter": "bapparabi" + }, + { + "rshares": "247235040", + "voter": "darkminded153" + }, + { + "rshares": "72826233", + "voter": "igtes" + }, + { + "rshares": "144899746", + "voter": "buffett" + }, + { + "rshares": "2650993895", + "voter": "senseye" + }, + { + "rshares": "162911190", + "voter": "front" + }, + { + "rshares": "158676075", + "voter": "iberia" + }, + { + "rshares": "161218747", + "voter": "sdc" + }, + { + "rshares": "304461322", + "voter": "james1987" + }, + { + "rshares": "157745750", + "voter": "digitalillusions" + }, + { + "rshares": "160880639", + "voter": "illusions" + }, + { + "rshares": "160870736", + "voter": "electronicarts" + }, + { + "rshares": "3795712999", + "voter": "dresden" + }, + { + "rshares": "159950870", + "voter": "haribo" + }, + { + "rshares": "159352476", + "voter": "panic" + }, + { + "rshares": "156043541", + "voter": "disneypixar" + }, + { + "rshares": "1534731729", + "voter": "modernbukowski" + }, + { + "rshares": "155452864", + "voter": "jyriygo" + }, + { + "rshares": "31683945302", + "voter": "goldmatters" + }, + { + "rshares": "155180811", + "voter": "majes" + }, + { + "rshares": "153284499", + "voter": "daniel1974" + } + ], + "author": "steempower", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "![](https://s18.postimg.org/fcl7ffx1l/ripple.png)\n## Ripple has raised another 55 Million in its latest round of funding bringing it total raised to 93 Million.\n\nThe news has reached mainstream news services such as CNBC, WSJ, Reuters and the like. News seems to be first released 2 hours ago 12:35 pm; Thursday, 15 September 2016.\n\n### News Articles:\n[CoinDesk](http://www.coindesk.com/ripple-blockchain-55-million-series-b/)\n[CNBC](http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html)\n[WSJ](http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401)\n[Reuters ](http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z)\n\nAccording to the article linked above (CNBC) 'The start-up is currently working with 15 of the top 50 global banks including UBS and Santander.'\n\nNew and existing investors were involved in the new Ripple funding round. New investors included Accenture Ventures, SBI Holdings, SCB Digital Ventures, Standard Chartered PLC, and the investment arm of Thailand\u2019s Siam Commercial Bank. Existing investors that joined in this round included a Banco Santander SA venture fund, the venture arms of CME Group Inc. and Seagate Technology, and Venture 51.\n\nObviously this is good news for ripple with 55 Million accounting for 20-25% of their market cap before today's rally, the current price of XRP is 0.00001760 BTC and 2 hours ago it was trading for below 0.00001000 BTC, it has seen a large move already price wise although volume is still relatively small at this time, we could be in for an interesting time while this initial excitement settles in\n![](https://www.coinigy.com/assets/img/charts/57dab3f3.png)", + "category": "ripple", + "children": 10, + "created": "2016-09-15T14:58:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s18.postimg.org/fcl7ffx1l/ripple.png", + "https://www.coinigy.com/assets/img/charts/57dab3f3.png" ], - "author": "hivebuzz", - "author_payout_value": "0.000 HBD", - "author_reputation": 62.61, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "![](https://i.imgur.com/4qjwaYD.png)\n\nSeveral developers have recently contacted us to ask if it is possible to integrate HiveBuzz badges with their websites or applications.\n\nThis is why we have set up an API server that will allow them to easily obtain information relating to users' badges. The API is free to use. However, be aware that the call rate is throttled to avoid exhausting the server resources.\n\n## How to use the HiveBuzz API?\n\n### Endpoint\nhttp://hivebuzz.me/api\n\n### /badges/{username}/\n\n|||\n|-|-|\n|Method|GET|\n|Description|Retrieve the list of all badges for a user, including those that were not collected by the user|\n|Example|https://hivebuzz.me/api/badges/arcange|\n\nReturns an array of objects with the following properties\n\n|||\n|-|-|\n|`type`|badge type _(activity, perso, meetup)_|\n|`ID`|identifier|\n|`name`|short name|\n|`title`|name of the badge displayed on the board|\n|`description`|Description of the badge that is displayed in the description modal window when you click on a badge|\n|`description_title`|Title displayed on the top of the description window|\n|`group`|Group identifier used to group badges by affinity|\n|`url`|url of the the badge|\n\nSample Response:\n\n```JS\n[\n ...,\n {\n \"type\": \"perso\",\n \"ID\": 38,\n \"name\": \"birthday-3\",\n \"title\": \"3 years on the Hive blockchain\",\n \"description\": \"Congratulations! You joined Hive blockchain three years ago!\",\n \"description_title\": \"3 years on the Hive blockchain\",\n \"group\": \"P01\",\n \"url\": \"https://hivebuzz.me/badges/birthday-3.png\"\n },\n {\n \"type\": \"meetup\",\n \"ID\": 43,\n \"name\": \"steemfest-4\",\n \"title\": \"SteemFest 4 Attendee\",\n \"description\": \"You went to Bangkok to attend SteemFest\u2074\",\n \"description_title\": \"SteemFest 4 Attendee\",\n \"group\": \"M01\",\n \"url\": \"https://hivebuzz.me/badges/steemfest-4.s4.png\"\n },\n ...\n]\n```\n\n### /owners/{id}/\n\n|||\n|-|-|\n|Method|GET|\n|Description|Query for the owner list of a badge|\n|Example| https://hivebuzz.me/api/owners/43|\n\nReturns an array of strings (usernames)\n\nSample Response:\n\n`[\"achimmertens\",\"arcange\",\"brittandjosie\",\"charly.travels\",\"coolsurfer\",\"detlev\",\"fynemiene\",\"louis88\",\"martibis\",\"pundito\",\"rollie1212\",\"sunsea\"]`\n\n### Displaying a user level badge\n\nDisplaying the level badge of a user is quite easy and doesn't require to call any API. You can simply build the URL of the image using the following format:\n\n**`https://hivebuzz.me/{username}/level.png`**\n\nExample: `https://hivebuzz.me/@arcange/level.png`\n\nHiveBuzz will update the image automatically whenever the user's level changes (up or down) or when the user becomes inactive.\n\n### Support\n\nIf you need help to integrate your website or application with HiveBuzz, feel free to contact us on [Discord](https://discord.gg/J6JrABJ).\n\n**The Hivebuzz Team**\n\n---\n
\n\nHiveBuzz needs your help! **Read and support [our proposal](https://peakd.com/me/proposals/109)!**
\n\n---\n
_HiveBuzz is a project created by @arcange_
", - "category": "hive-139531", - "children": 4, - "community": "hive-139531", - "community_title": "HiveDevs", - "created": "2020-07-07T14:38:03", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "description": "Introducing our new public API to help developers integrate HiveBuzz badges into their apps and websites", - "format": "markdown", - "image": [ - "https://i.imgur.com/4qjwaYD.png" - ], - "links": [ - "http://hivebuzz.me/api", - "https://hivebuzz.me/api/badges/arcange", - "https://hivebuzz.me/api/owners/43", - "https://discord.gg/J6JrABJ", - "/me/proposals/109", - "/@arcange" - ], - "tags": [ - "hivebuzz", - "api", - "hive-139531" - ], - "users": [ - "arcange" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 238092639730622, - "payout": 98.173, - "payout_at": "2020-07-14T14:38:03", - "pending_payout_value": "98.173 HBD", - "percent_steem_dollars": 10000, - "permlink": "api", - "post_id": 86933271, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 160 - }, - "title": "Introducing the HiveBuzz API for applications and websites", - "updated": "2020-07-07T14:48:54", - "url": "/hive-139531/@hivebuzz/api" - }, - { - "active_votes": [ - { - "rshares": "49204793302124", - "voter": "blocktrades" - }, - { - "rshares": "76168115673", - "voter": "tombstone" - }, - { - "rshares": "515687579315", - "voter": "roelandp" - }, - { - "rshares": "7652574625", - "voter": "matt-a" - }, - { - "rshares": "63520409851", - "voter": "arcange" - }, - { - "rshares": "110189734995", - "voter": "fiveboringgames" - }, - { - "rshares": "1685099378", - "voter": "raphaelle" - }, - { - "rshares": "70716332089", - "voter": "petrvl" - }, - { - "rshares": "29378690097", - "voter": "steemyoda" - }, - { - "rshares": "115998460140", - "voter": "ixindamix" - }, - { - "rshares": "192012949826", - "voter": "detlev" - }, - { - "rshares": "4796890519", - "voter": "ma1neevent" - }, - { - "rshares": "1173204634", - "voter": "khussan" - }, - { - "rshares": "796532637", - "voter": "activate.alpha" - }, - { - "rshares": "1600631569", - "voter": "kennyroy" - }, - { - "rshares": "80927710360", - "voter": "ironshield" - }, - { - "rshares": "85607117789", - "voter": "djynn" - }, - { - "rshares": "7525110342", - "voter": "arrliinn" - }, - { - "rshares": "11934923240", - "voter": "belahejna" - }, - { - "rshares": "11060060766", - "voter": "blacklux" - }, - { - "rshares": "170871073751", - "voter": "dexpartacus" - }, - { - "rshares": "8559609733", - "voter": "d-pend" - }, - { - "rshares": "44525930432", - "voter": "gniksivart" - }, - { - "rshares": "58680083335", - "voter": "captainquack22" - }, - { - "rshares": "3290538880", - "voter": "dante31" - }, - { - "rshares": "1214563592738", - "voter": "howo" - }, - { - "rshares": "96626786138", - "voter": "travelgirl" - }, - { - "rshares": "4872977300279", - "voter": "ocd" - }, - { - "rshares": "1249763455701", - "voter": "steemvote" - }, - { - "rshares": "4707919920", - "voter": "macchiata" - }, - { - "rshares": "8749176219", - "voter": "santigs" - }, - { - "rshares": "9199751744", - "voter": "kimzwarch" - }, - { - "rshares": "229211675237", - "voter": "fbslo" - }, - { - "rshares": "3094078623", - "voter": "justinparke" - }, - { - "rshares": "3464697634001", - "voter": "therealwolf" - }, - { - "rshares": "13497175539", - "voter": "jlsplatts" - }, - { - "rshares": "1766240477", - "voter": "divinekids" - }, - { - "rshares": "5430304894", - "voter": "hanggggbeeee" - }, - { - "rshares": "904654570", - "voter": "liverpool-fan" - }, - { - "rshares": "251295396005", - "voter": "eonwarped" - }, - { - "rshares": "2470069816682", - "voter": "postpromoter" - }, - { - "rshares": "9537846624", - "voter": "mejustandrew" - }, - { - "rshares": "2561018844", - "voter": "omstavan" - }, - { - "rshares": "40848309370", - "voter": "sankysanket18" - }, - { - "rshares": "5576507588", - "voter": "gtrussi" - }, - { - "rshares": "1648369187", - "voter": "lordnigel" - }, - { - "rshares": "709451837216", - "voter": "smartsteem" - }, - { - "rshares": "19042613687", - "voter": "mytechtrail" - }, - { - "rshares": "4352381885", - "voter": "itchyfeetdonica" - }, - { - "rshares": "706337207", - "voter": "godlovermel25" - }, - { - "rshares": "1812605332", - "voter": "tomatom" - }, - { - "rshares": "6661311424", - "voter": "fourfourfun" - }, - { - "rshares": "7713964520", - "voter": "gabrielatravels" - }, - { - "rshares": "81599245248", - "voter": "girolamomarotta" - }, - { - "rshares": "80718714528", - "voter": "mathowl" - }, - { - "rshares": "2834532623", - "voter": "indianteam" - }, - { - "rshares": "1098210756", - "voter": "chrismadcboy2016" - }, - { - "rshares": "143188599535", - "voter": "ocd-witness" - }, - { - "rshares": "957713052", - "voter": "ericburgoyne" - }, - { - "rshares": "56393873886", - "voter": "ryo-6414" - }, - { - "rshares": "27734598301", - "voter": "bigtom13" - }, - { - "rshares": "322740228834", - "voter": "takowi" - }, - { - "rshares": "1165056938", - "voter": "russellstockley" - }, - { - "rshares": "8459576163", - "voter": "forester-joe" - }, - { - "rshares": "1202531244", - "voter": "cruisin" - }, - { - "rshares": "21957676931", - "voter": "miroslavrc" - }, - { - "rshares": "370029707", - "voter": "sekhet" - }, - { - "rshares": "3548561291", - "voter": "flaxz" - }, - { - "rshares": "2031943841", - "voter": "racibo" - }, - { - "rshares": "10189553771", - "voter": "road2horizon" - }, - { - "rshares": "174506461807", - "voter": "hiddenblade" - }, - { - "rshares": "8130779189693", - "voter": "julialee66" - }, - { - "rshares": "56656112015", - "voter": "indigoocean" - }, - { - "rshares": "16125579598", - "voter": "romeskie" - }, - { - "rshares": "2950984218", - "voter": "crystalhuman" - }, - { - "rshares": "181176170407", - "voter": "nateaguila" - }, - { - "rshares": "183222957550", - "voter": "digital.mine" - }, - { - "rshares": "1136831701", - "voter": "linco" - }, - { - "rshares": "1184581735", - "voter": "yougotavote" - }, - { - "rshares": "2981896797", - "voter": "jd4e" - }, - { - "rshares": "26539931519894", - "voter": "ocdb" - }, - { - "rshares": "5837036999", - "voter": "pagliozzo" - }, - { - "rshares": "7145853735", - "voter": "tangofever" - }, - { - "rshares": "711662410", - "voter": "jesusmedit" - }, - { - "rshares": "1791590939", - "voter": "dronegraphica" - }, - { - "rshares": "738393578", - "voter": "arrixion" - }, - { - "rshares": "1004317625", - "voter": "nancybmp" - }, - { - "rshares": "194424866317", - "voter": "gorbisan" - }, - { - "rshares": "21122160", - "voter": "laissez-faire" - }, - { - "rshares": "1030984947", - "voter": "jackofcrows" - }, - { - "rshares": "25540051794", - "voter": "lion200" - }, - { - "rshares": "1250511440", - "voter": "pushpedal" - }, - { - "rshares": "6318644279", - "voter": "bettervision" - }, - { - "rshares": "7231233115", - "voter": "edriseur" - }, - { - "rshares": "2490602346", - "voter": "regularowl" - }, - { - "rshares": "3517846406", - "voter": "chocolatelover" - }, - { - "rshares": "36405130", - "voter": "limka" - }, - { - "rshares": "768928443", - "voter": "abbenay" - }, - { - "rshares": "980449499", - "voter": "david.steem" - }, - { - "rshares": "7960018662", - "voter": "cryptofiloz" - }, - { - "rshares": "3887616976", - "voter": "squareonefarms" - }, - { - "rshares": "22530854687", - "voter": "maryincryptoland" - }, - { - "rshares": "23524207951", - "voter": "epicdice" - }, - { - "rshares": "3872351260", - "voter": "yiobri" - }, - { - "rshares": "1884954700", - "voter": "hjlee119" - }, - { - "rshares": "4791087205", - "voter": "ocd-accountant" - }, - { - "rshares": "4047736132", - "voter": "leighscotford" - }, - { - "rshares": "3802197953", - "voter": "ilovecanada" - }, - { - "rshares": "724183204", - "voter": "maddogmike" - }, - { - "rshares": "2394519470", - "voter": "iamraincrystal" - }, - { - "rshares": "16317381087", - "voter": "bradleyarrow" - }, - { - "rshares": "1897457474", - "voter": "dinamida" - }, - { - "rshares": "3389404995", - "voter": "hongdangmu" - }, - { - "rshares": "559348138", - "voter": "steemlondon" - }, - { - "rshares": "587629864", - "voter": "splatts" - }, - { - "rshares": "4188071155", - "voter": "kryptoformator" - }, - { - "rshares": "593382975", - "voter": "reghunter" - }, - { - "rshares": "41279397", - "voter": "toni.ccc" - }, - { - "rshares": "3840843066", - "voter": "dollarbills" - }, - { - "rshares": "1050246566", - "voter": "bilpcoinbpc" - }, - { - "rshares": "2010774561", - "voter": "bcm.dblog" - }, - { - "rshares": "12360178863", - "voter": "goldstreet" - }, - { - "rshares": "7923265757", - "voter": "dpend.active" - }, - { - "rshares": "2198021323", - "voter": "fengchao" - }, - { - "rshares": "1756312909", - "voter": "green-finger" - }, - { - "rshares": "230739085711", - "voter": "nulledgh0st" - }, - { - "rshares": "508012053862", - "voter": "softworld" - }, - { - "rshares": "1743788013", - "voter": "marvschurchill1" - }, - { - "rshares": "24713212468", - "voter": "the100" - }, - { - "rshares": "1110470622", - "voter": "iameden" - }, - { - "rshares": "4047995256", - "voter": "rihc94" - }, - { - "rshares": "255330312991", - "voter": "hivelander" - }, - { - "rshares": "62537828507", - "voter": "hivehustlers" - }, - { - "rshares": "1156873651", - "voter": "rollinshive" - } + "links": [ + "http://www.coindesk.com/ripple-blockchain-55-million-series-b/", + "http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html", + "http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401", + "http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z" ], - "author": "ryo-6414", - "author_payout_value": "0.000 HBD", - "author_reputation": 68.16, - "beneficiaries": [], - "blacklists": [], - "body": "![IMG_-rmywfu.jpg](https://images.hive.blog/DQmbMneDMgyR4rqqUf5Xbg8NrrDsgy22opBTndHsVpCw6jZ/IMG_-rmywfu.jpg)\n\n\n\n\nHello I am RYO!\n\nThat's my April photo!\nMany flowers bloom in the mountains in spring and the animals wake up from winter so I went to see them!\n\n![IMG_vuvvef.jpg](https://images.hive.blog/DQmNbTEjg28iskcoiyXZ7yPEo81SNk3degHBGbnytSyWgSS/IMG_vuvvef.jpg)\n\nIt place was a little cold so there were still a lot of cherry blossoms in bloom!\n![DSC_4198.JPG](https://images.hive.blog/DQmWsYuJbqv76QqPMDPm5YRCZSHmjfELF4ugjjUpfrPyiR8/DSC_4198.JPG)\nCherry blossoms have already withered in the flatlands\n\n![DSC_4199.JPG](https://images.hive.blog/DQmTH2KwFppaWuuhLPYnKCYBtPyETcx4xFreTBZrcmWtvvs/DSC_4199.JPG)\n\n![DSC_4200.JPG](https://images.hive.blog/DQmeHgGTyNFhcYnc3j9QKLcwC8ZKp2ojhQ6CFJsWyauKoS3/DSC_4200.JPG)\n\nRare white violet\u2193\n![DSC_4202.JPG](https://images.hive.blog/DQmZoz2haaz15cJCB7XsBjgwhud48xpgGBN6kBGpx4TLUnh/DSC_4202.JPG)\n\n![DSC_4203.JPG](https://images.hive.blog/DQmXVRgCeNJb7jMFpeFYS2MdnngwcQSqLm9DpRgbfeT6UqH/DSC_4203.JPG)\n\n![DSC_4204.JPG](https://images.hive.blog/DQmUCCRQcWY9ftWqeQLGN4jHZazvKetSzs728Yxo2ehBemJ/DSC_4204.JPG)\n\n![DSC_4205.JPG](https://images.hive.blog/DQmRjxMnMuNUBUZdU5njALB6SJrr9KdGreDwoybEY5kXBd3/DSC_4205.JPG)\n\n![DSC_4206.JPG](https://images.hive.blog/DQmXhYcjGXYtvSK7qCC79rbEee7MZPjoUpixtRSXvKgi3QW/DSC_4206.JPG)\n\n\nIt is a small number of white cherry blossoms\u2193\n![DSC_4208.JPG](https://images.hive.blog/DQmTb7HDLjiarSLJhGRhLvfVidS46NdASaSdbC5BVd7UqS1/DSC_4208.JPG)\n\n![IMG_vnw583.jpg](https://images.hive.blog/DQmW81an6DthveerrdYzCLsY59i41rknhQ1hMA5EfRXVpvk/IMG_vnw583.jpg)\nI don't know why it's white... it's the kind or the soil but beautiful\ud83d\ude0a\n\n![IMG_mn98ux.jpg](https://images.hive.blog/DQmbND2cphAwzLwWzjyfKEdm1ymmqAjgeAmhkaVtfW2iBim/IMG_mn98ux.jpg)\n\n![DSC_4211.JPG](https://images.hive.blog/DQmZ4oLwwTF1daCLThr9waT1KhM94uEtW8pFtP3ZR5Ju8Ln/DSC_4211.JPG)\n\n![DSC_4212.JPG](https://images.hive.blog/DQmaT5bqUSov5X1PgWxHyoUYf1iPn39GQtcXdSPYxGYZABf/DSC_4212.JPG)\n\n![DSC_4214.JPG](https://images.hive.blog/DQmT7eMEXKHLtpDR4yH68MQHi7EAts2FbyXMheugEwBqxWu/DSC_4214.JPG)\n\n\nI walked for a while and there was a small pond there!\n![DSC_4215.JPG](https://images.hive.blog/DQmeK4z8Umipwysp8p6rYywQZZ9PJqptP9K5q6GnQVnX3Gd/DSC_4215.JPG)\n\n![DSC_4216.JPG](https://images.hive.blog/DQmWvstovtaKb5V2rb7u1YjgAEsmzDBeXd2TPa1EFtvfZR1/DSC_4216.JPG)\n I had a amazing meeting there!\n![DSC_4217.JPG](https://images.hive.blog/DQmU7fqWwTynyD86HxBAAZFRoddu2FGK4BhbiHLfHvP5jWz/DSC_4217.JPG)\n\nLots of small tadpoles!\u2193\n![IMG_vvyeu5.jpg](https://images.hive.blog/DQmeB3iNnG3nEZtwgRpAqgb3SpwxD4WbATEyJ4iF1YiNviv/IMG_vvyeu5.jpg)\nCarp is swimming with them!\u2193\n![IMG_-qbv9k7.jpg](https://images.hive.blog/DQmbNhfPyaTh8BoyCVfEYWv24PnpTUW89SHafroYpGD5qkS/IMG_-qbv9k7.jpg)\n\nEverything like small black particles is a tadpole\u2193\n![IMG_sxlfw0.jpg](https://images.hive.blog/DQmXanMkedHkuVNtD35yTsjaozrKVPB8zwq3xhgqkz2Qa19/IMG_sxlfw0.jpg)\n\nWoow That's heaven for me!\ud83d\ude01\n![IMG_thid6i.jpg](https://images.hive.blog/DQmQap7cbB7HgWVv6tWAYmnTJaGMLn8tCu2c5Ds3aDjPJJ7/IMG_thid6i.jpg)\n\n![IMG_npq7t6.jpg](https://images.hive.blog/DQmdp7p8g5tfjPxm28X4JJZFAwhiVVsaKKQQiR1MadqYLD5/IMG_npq7t6.jpg)\n\nCherry petals and tadpoles!\u2193\n![IMG_-bsg1fv.jpg](https://images.hive.blog/DQmfB5cZCUvJifmCUV212y9HZiQ8UZz3yn1xoJfHTxrdVRR/IMG_-bsg1fv.jpg)\n\nThere are very few people in this place. Probably for animals and plants this place is their paradise\ud83d\ude0a\n![DSC_4226.JPG](https://images.hive.blog/DQmdy5kbV5Yuv6nvkCAoRLhjGwEQrNVUXd7rS3sunTcG8hL/DSC_4226.JPG)\n\n![IMG_-jbt8cs.jpg](https://images.hive.blog/DQmV1NFBXjcMQgXKfdrxebA6MBVeb7ZPDeKnx3eUjqAQJUm/IMG_-jbt8cs.jpg)\n\n![IMG_dlu0eu.jpg](https://images.hive.blog/DQmXx5g5TieM4Pv2sqFmxNhCLcnRh4o22dKVux4QQEQrgNM/IMG_dlu0eu.jpg)\n\nBeautiful moss\n![IMG_-saow7m.jpg](https://images.hive.blog/DQmX15RHhNsY7feaZEDjSa2uD2VkFf5BHKU9NsaYtfT5nNQ/IMG_-saow7m.jpg)\n\nAnd flowers\n![IMG_-gp9idu.jpg](https://images.hive.blog/DQmXeVouJwK7K5GWnTDxMefPGY9QvoR3t1cPopSSzLPSjL3/IMG_-gp9idu.jpg)\n\n![IMG_4jcsea.jpg](https://images.hive.blog/DQmNTfsYpCSBTf2BKpyg7swcm7CuM4CkV5n8eytS7gYuZLt/IMG_4jcsea.jpg)\n\nThere were different types of cherry blossoms that were different from normal cherry blossoms\u2193\n![IMG_-2n53y3.jpg](https://images.hive.blog/DQmUeCyfhF18pDCijNaeJ2S5NiXAfrz12soPeSgrqQLhnTY/IMG_-2n53y3.jpg)\n\n![DSC_4237.JPG](https://images.hive.blog/DQmRPennasiFqjHX8qB74NrrGe1BKESwokU5P3PMseD4FLJ/DSC_4237.JPG)\n\n![DSC_4238.JPG](https://images.hive.blog/DQmQq9LswLoJ52G4wopuUFQDTqsvPJoqJmUXfQm2FQHYDAd/DSC_4238.JPG)\n\nIt is a type of cherry tree called \"Yaezakura\". \n![DSC_4239.JPG](https://images.hive.blog/DQmWJnxfbpaT7S5e4QVWkHDGQLt2Y46kzmXWPvyq3MSeeqn/DSC_4239.JPG)\n\nIt blooms 2-3 weeks later than regular cherry blossoms. And it has a lot of petals\n![IMG_bw9wbo.jpg](https://images.hive.blog/DQmavf5Ny27t4cWFk61hLTUQorzC8UVZuConGZi6MPwb1DU/IMG_bw9wbo.jpg)\n\n![IMG_4pcxjz.jpg](https://images.hive.blog/DQmeEC6oxQPaU6NbSPmBCony1p46YqWZMFi6ApWWefUYR52/IMG_4pcxjz.jpg)\nbeautiful\ud83d\ude0a\n\n![DSC_4253.JPG](https://images.hive.blog/DQmS1Vqhvy654zEMk5xFnWfrnzC23ogbH7GN4unbEKpckDD/DSC_4253.JPG)\n\n![DSC_4252.JPG](https://images.hive.blog/DQmXZxLSccVXAhUR15NXgoARsRKG9mbGzt2qLS1xfZdzWCL/DSC_4252.JPG)\n\nWow! Frog corpse!\ud83d\ude28\n![IMG_-hrumrf.jpg](https://images.hive.blog/DQmdTpScKiDuszKLAV8zwj8JuCJ7CqpCQGTjHtLGawwCVit/IMG_-hrumrf.jpg)\nProbably their parents\n![IMG_n47a2o.jpg](https://images.hive.blog/DQmSef3fW1RL2UBFCKnpTZ89GufTEK9oXd1BvMMwxWBzm14/IMG_n47a2o.jpg)\n\n![DSC_4248.JPG](https://images.hive.blog/DQme6rVUcP36Yjt7Hoocby6yDYAyJEAc3XzmfqFVoeTHGP2/DSC_4248.JPG)\n\n![DSC_4246.JPG](https://images.hive.blog/DQmUgTmbkw6PDjs7Fib6up1YDAj34RfpsYb8beLnVfTr7m8/DSC_4246.JPG)\n\nAnd I ate delicious \"Soba\" in this place with beautiful water\n![DSC_4194.JPG](https://images.hive.blog/DQmP4V917xD66vNxZ3oP4ZRQUmHoeigcqPGKFSdDzuMbvzT/DSC_4194.JPG)\n\n![IMG_-3v24sz.jpg](https://images.hive.blog/DQmUyXegx9d3bpR9n3Jv1SnZZw1iR9Xi4CpXkYxn6c3Jbb3/IMG_-3v24sz.jpg)\n\n# \u203bRequest from me\n# If you want to share my photos on other platform please include a link to my profile page\u2193 https://hive.blog/@ryo-6414\n\n\nThank you for reading!\nArigatou gozaimashita!", - "category": "animals", - "children": 1, - "created": "2020-07-07T12:27:06", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "hiveblog/0.1", - "format": "markdown", - "image": [ - "https://images.hive.blog/DQmbMneDMgyR4rqqUf5Xbg8NrrDsgy22opBTndHsVpCw6jZ/IMG_-rmywfu.jpg", - "https://images.hive.blog/DQmNbTEjg28iskcoiyXZ7yPEo81SNk3degHBGbnytSyWgSS/IMG_vuvvef.jpg", - "https://images.hive.blog/DQmWsYuJbqv76QqPMDPm5YRCZSHmjfELF4ugjjUpfrPyiR8/DSC_4198.JPG", - "https://images.hive.blog/DQmTH2KwFppaWuuhLPYnKCYBtPyETcx4xFreTBZrcmWtvvs/DSC_4199.JPG", - "https://images.hive.blog/DQmeHgGTyNFhcYnc3j9QKLcwC8ZKp2ojhQ6CFJsWyauKoS3/DSC_4200.JPG", - "https://images.hive.blog/DQmZoz2haaz15cJCB7XsBjgwhud48xpgGBN6kBGpx4TLUnh/DSC_4202.JPG", - "https://images.hive.blog/DQmXVRgCeNJb7jMFpeFYS2MdnngwcQSqLm9DpRgbfeT6UqH/DSC_4203.JPG", - "https://images.hive.blog/DQmUCCRQcWY9ftWqeQLGN4jHZazvKetSzs728Yxo2ehBemJ/DSC_4204.JPG", - "https://images.hive.blog/DQmRjxMnMuNUBUZdU5njALB6SJrr9KdGreDwoybEY5kXBd3/DSC_4205.JPG", - "https://images.hive.blog/DQmXhYcjGXYtvSK7qCC79rbEee7MZPjoUpixtRSXvKgi3QW/DSC_4206.JPG", - "https://images.hive.blog/DQmTb7HDLjiarSLJhGRhLvfVidS46NdASaSdbC5BVd7UqS1/DSC_4208.JPG", - "https://images.hive.blog/DQmW81an6DthveerrdYzCLsY59i41rknhQ1hMA5EfRXVpvk/IMG_vnw583.jpg", - "https://images.hive.blog/DQmbND2cphAwzLwWzjyfKEdm1ymmqAjgeAmhkaVtfW2iBim/IMG_mn98ux.jpg", - "https://images.hive.blog/DQmZ4oLwwTF1daCLThr9waT1KhM94uEtW8pFtP3ZR5Ju8Ln/DSC_4211.JPG", - "https://images.hive.blog/DQmaT5bqUSov5X1PgWxHyoUYf1iPn39GQtcXdSPYxGYZABf/DSC_4212.JPG", - "https://images.hive.blog/DQmT7eMEXKHLtpDR4yH68MQHi7EAts2FbyXMheugEwBqxWu/DSC_4214.JPG", - "https://images.hive.blog/DQmeK4z8Umipwysp8p6rYywQZZ9PJqptP9K5q6GnQVnX3Gd/DSC_4215.JPG", - "https://images.hive.blog/DQmWvstovtaKb5V2rb7u1YjgAEsmzDBeXd2TPa1EFtvfZR1/DSC_4216.JPG", - "https://images.hive.blog/DQmU7fqWwTynyD86HxBAAZFRoddu2FGK4BhbiHLfHvP5jWz/DSC_4217.JPG", - "https://images.hive.blog/DQmeB3iNnG3nEZtwgRpAqgb3SpwxD4WbATEyJ4iF1YiNviv/IMG_vvyeu5.jpg", - "https://images.hive.blog/DQmbNhfPyaTh8BoyCVfEYWv24PnpTUW89SHafroYpGD5qkS/IMG_-qbv9k7.jpg", - "https://images.hive.blog/DQmXanMkedHkuVNtD35yTsjaozrKVPB8zwq3xhgqkz2Qa19/IMG_sxlfw0.jpg", - "https://images.hive.blog/DQmQap7cbB7HgWVv6tWAYmnTJaGMLn8tCu2c5Ds3aDjPJJ7/IMG_thid6i.jpg", - "https://images.hive.blog/DQmdp7p8g5tfjPxm28X4JJZFAwhiVVsaKKQQiR1MadqYLD5/IMG_npq7t6.jpg", - "https://images.hive.blog/DQmfB5cZCUvJifmCUV212y9HZiQ8UZz3yn1xoJfHTxrdVRR/IMG_-bsg1fv.jpg", - "https://images.hive.blog/DQmdy5kbV5Yuv6nvkCAoRLhjGwEQrNVUXd7rS3sunTcG8hL/DSC_4226.JPG", - "https://images.hive.blog/DQmV1NFBXjcMQgXKfdrxebA6MBVeb7ZPDeKnx3eUjqAQJUm/IMG_-jbt8cs.jpg", - "https://images.hive.blog/DQmXx5g5TieM4Pv2sqFmxNhCLcnRh4o22dKVux4QQEQrgNM/IMG_dlu0eu.jpg", - "https://images.hive.blog/DQmX15RHhNsY7feaZEDjSa2uD2VkFf5BHKU9NsaYtfT5nNQ/IMG_-saow7m.jpg", - "https://images.hive.blog/DQmXeVouJwK7K5GWnTDxMefPGY9QvoR3t1cPopSSzLPSjL3/IMG_-gp9idu.jpg", - "https://images.hive.blog/DQmNTfsYpCSBTf2BKpyg7swcm7CuM4CkV5n8eytS7gYuZLt/IMG_4jcsea.jpg", - "https://images.hive.blog/DQmUeCyfhF18pDCijNaeJ2S5NiXAfrz12soPeSgrqQLhnTY/IMG_-2n53y3.jpg", - "https://images.hive.blog/DQmRPennasiFqjHX8qB74NrrGe1BKESwokU5P3PMseD4FLJ/DSC_4237.JPG", - "https://images.hive.blog/DQmQq9LswLoJ52G4wopuUFQDTqsvPJoqJmUXfQm2FQHYDAd/DSC_4238.JPG", - "https://images.hive.blog/DQmWJnxfbpaT7S5e4QVWkHDGQLt2Y46kzmXWPvyq3MSeeqn/DSC_4239.JPG", - "https://images.hive.blog/DQmavf5Ny27t4cWFk61hLTUQorzC8UVZuConGZi6MPwb1DU/IMG_bw9wbo.jpg", - "https://images.hive.blog/DQmeEC6oxQPaU6NbSPmBCony1p46YqWZMFi6ApWWefUYR52/IMG_4pcxjz.jpg", - "https://images.hive.blog/DQmS1Vqhvy654zEMk5xFnWfrnzC23ogbH7GN4unbEKpckDD/DSC_4253.JPG", - "https://images.hive.blog/DQmXZxLSccVXAhUR15NXgoARsRKG9mbGzt2qLS1xfZdzWCL/DSC_4252.JPG", - "https://images.hive.blog/DQmdTpScKiDuszKLAV8zwj8JuCJ7CqpCQGTjHtLGawwCVit/IMG_-hrumrf.jpg", - "https://images.hive.blog/DQmSef3fW1RL2UBFCKnpTZ89GufTEK9oXd1BvMMwxWBzm14/IMG_n47a2o.jpg", - "https://images.hive.blog/DQme6rVUcP36Yjt7Hoocby6yDYAyJEAc3XzmfqFVoeTHGP2/DSC_4248.JPG", - "https://images.hive.blog/DQmUgTmbkw6PDjs7Fib6up1YDAj34RfpsYb8beLnVfTr7m8/DSC_4246.JPG", - "https://images.hive.blog/DQmP4V917xD66vNxZ3oP4ZRQUmHoeigcqPGKFSdDzuMbvzT/DSC_4194.JPG", - "https://images.hive.blog/DQmUyXegx9d3bpR9n3Jv1SnZZw1iR9Xi4CpXkYxn6c3Jbb3/IMG_-3v24sz.jpg" - ], - "links": [ - "https://hive.blog/@ryo-6414" - ], - "tags": [ - "animals", - "flowers", - "travel", - "trip", - "japan", - "oc", - "creativecoin", - "powerhousecreatives" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 103130829108388, - "payout": 41.686, - "payout_at": "2020-07-14T12:27:06", - "pending_payout_value": "41.686 HBD", - "percent_steem_dollars": 10000, - "permlink": "paradise-of-tadpoles-and-cherry-blossoms", - "post_id": 86931667, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 134 - }, - "title": "Paradise of tadpoles and cherry blossoms", - "updated": "2020-07-07T12:27:06", - "url": "/animals/@ryo-6414/paradise-of-tadpoles-and-cherry-blossoms" + "tags": [ + "ripple", + "crypto-news", + "beyondbitcoin", + "money", + "trading" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 63885038592928, + "payout": 238.227, + "payout_at": "2016-09-22T14:58:21", + "pending_payout_value": "238.227 HBD", + "percent_hbd": 10000, + "permlink": "ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour", + "post_id": 1254813, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 216 + }, + "title": "Ripple raises $55 million from big banks - Series B - XRP Prices jumped 60% to 0.0001600 within 1 hour", + "updated": "2016-09-15T14:58:21", + "url": "/ripple/@steempower/ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour" }, { - "active_votes": [ - { - "rshares": "54945558661", - "voter": "enlil" - }, - { - "rshares": "154883568716", - "voter": "tombstone" - }, - { - "rshares": "2365156916", - "voter": "gavvet" - }, - { - "rshares": "1554071081579", - "voter": "kingscrown" - }, - { - "rshares": "259683453138", - "voter": "nanzo-scoop" - }, - { - "rshares": "36850089175", - "voter": "mummyimperfect" - }, - { - "rshares": "3403643941798", - "voter": "kevinwong" - }, - { - "rshares": "14696422055", - "voter": "ak2020" - }, - { - "rshares": "3369202502", - "voter": "juanmiguelsalas" - }, - { - "rshares": "536020239693", - "voter": "mark-waser" - }, - { - "rshares": "4453450008", - "voter": "mammasitta" - }, - { - "rshares": "1199688564", - "voter": "emily-cook" - }, - { - "rshares": "214196246015", - "voter": "gerber" - }, - { - "rshares": "367777078787", - "voter": "daan" - }, - { - "rshares": "235003544741", - "voter": "ezzy" - }, - { - "rshares": "1515836841", - "voter": "kiligirl" - }, - { - "rshares": "13527841602", - "voter": "mrwang" - }, - { - "rshares": "905757760994", - "voter": "livingfree" - }, - { - "rshares": "54515109492", - "voter": "gikitiki" - }, - { - "rshares": "8387974757", - "voter": "steemit-life" - }, - { - "rshares": "63464779505", - "voter": "arcange" - }, - { - "rshares": "279045405148", - "voter": "exyle" - }, - { - "rshares": "14339769977", - "voter": "arconite" - }, - { - "rshares": "1683500384", - "voter": "raphaelle" - }, - { - "rshares": "483264273953", - "voter": "joythewanderer" - }, - { - "rshares": "577558485125", - "voter": "ace108" - }, - { - "rshares": "78713972105", - "voter": "sazbird" - }, - { - "rshares": "4157994003942", - "voter": "shaka" - }, - { - "rshares": "126194284198", - "voter": "karenb54" - }, - { - "rshares": "9633289186210", - "voter": "jphamer1" - }, - { - "rshares": "3873919773741", - "voter": "joele" - }, - { - "rshares": "2713401026082", - "voter": "hanshotfirst" - }, - { - "rshares": "7661466941", - "voter": "wisbeech" - }, - { - "rshares": "379565073018", - "voter": "netaterra" - }, - { - "rshares": "48431386074", - "voter": "jlufer" - }, - { - "rshares": "25721826545", - "voter": "por500bolos" - }, - { - "rshares": "257871599877", - "voter": "uwelang" - }, - { - "rshares": "540975342504", - "voter": "digital-wisdom" - }, - { - "rshares": "2097015463", - "voter": "ethical-ai" - }, - { - "rshares": "25619052730", - "voter": "jwaser" - }, - { - "rshares": "362820665603", - "voter": "jacobtothe" - }, - { - "rshares": "22614568741", - "voter": "jacobts" - }, - { - "rshares": "14874816309", - "voter": "bwaser" - }, - { - "rshares": "3026568935317", - "voter": "abh12345" - }, - { - "rshares": "88095360457", - "voter": "justyy" - }, - { - "rshares": "13670699025", - "voter": "t-bot" - }, - { - "rshares": "1559330738", - "voter": "ellepdub" - }, - { - "rshares": "14255474340", - "voter": "rynow" - }, - { - "rshares": "102359816437", - "voter": "michelle.gent" - }, - { - "rshares": "162462774968", - "voter": "herpetologyguy" - }, - { - "rshares": "65890799048", - "voter": "natubat" - }, - { - "rshares": "29752591712", - "voter": "morgan.waser" - }, - { - "rshares": "30488743437", - "voter": "alishi" - }, - { - "rshares": "71211717915", - "voter": "johannvdwalt" - }, - { - "rshares": "3763757175", - "voter": "handyman" - }, - { - "rshares": "2182505157", - "voter": "strong-ai" - }, - { - "rshares": "48703757368", - "voter": "gamer00" - }, - { - "rshares": "12673291063", - "voter": "vannour" - }, - { - "rshares": "139478026025", - "voter": "techslut" - }, - { - "rshares": "204752060733", - "voter": "slider2990" - }, - { - "rshares": "1031809211879", - "voter": "created" - }, - { - "rshares": "174029400056", - "voter": "edb" - }, - { - "rshares": "1013072381", - "voter": "technoprogressiv" - }, - { - "rshares": "44598171229", - "voter": "mafeeva" - }, - { - "rshares": "6190607154390", - "voter": "vcelier" - }, - { - "rshares": "2300326884815", - "voter": "newhope" - }, - { - "rshares": "735598616", - "voter": "steemnet" - }, - { - "rshares": "51181772606", - "voter": "darth-azrael" - }, - { - "rshares": "769525437", - "voter": "homo.steemiensis" - }, - { - "rshares": "19075299258", - "voter": "paolobeneforti" - }, - { - "rshares": "125284153811", - "voter": "silviabeneforti" - }, - { - "rshares": "18299186567", - "voter": "darth-cryptic" - }, - { - "rshares": "3223542024909", - "voter": "tarazkp" - }, - { - "rshares": "19293154022577", - "voter": "trafalgar" - }, - { - "rshares": "4281376784", - "voter": "makersunited" - }, - { - "rshares": "27592015940", - "voter": "dickturpin" - }, - { - "rshares": "5544571077", - "voter": "lizanomadsoul" - }, - { - "rshares": "309614470141", - "voter": "raindrop" - }, - { - "rshares": "18689917389", - "voter": "choogirl" - }, - { - "rshares": "57902393928", - "voter": "zaragast" - }, - { - "rshares": "11015311618", - "voter": "dune69" - }, - { - "rshares": "1897610812535", - "voter": "smasssh" - }, - { - "rshares": "130943087286", - "voter": "thenightflier" - }, - { - "rshares": "341483228683", - "voter": "cryptocurator" - }, - { - "rshares": "32414349468", - "voter": "stackin" - }, - { - "rshares": "29305887871", - "voter": "jerrybanfield" - }, - { - "rshares": "5262979167", - "voter": "aleister" - }, - { - "rshares": "82579731166", - "voter": "ironshield" - }, - { - "rshares": "1437093273", - "voter": "kilianmiguel" - }, - { - "rshares": "54539509525", - "voter": "stevelivingston" - }, - { - "rshares": "10341811451", - "voter": "cecicastor" - }, - { - "rshares": "27113384890", - "voter": "anneke" - }, - { - "rshares": "1820928337441", - "voter": "galenkp" - }, - { - "rshares": "34886012727", - "voter": "sam99" - }, - { - "rshares": "310083064350", - "voter": "paulag" - }, - { - "rshares": "336464165459", - "voter": "jaynie" - }, - { - "rshares": "67871179896", - "voter": "jayna" - }, - { - "rshares": "634127454599", - "voter": "dswigle" - }, - { - "rshares": "796292024", - "voter": "d-pend" - }, - { - "rshares": "547599992774", - "voter": "offgridlife" - }, - { - "rshares": "59876672314", - "voter": "captainquack22" - }, - { - "rshares": "4426743204", - "voter": "sportspodium" - }, - { - "rshares": "56653989374", - "voter": "molometer" - }, - { - "rshares": "1820620352", - "voter": "sannur" - }, - { - "rshares": "11715838097", - "voter": "beautifulbullies" - }, - { - "rshares": "1044697601", - "voter": "shitsignals" - }, - { - "rshares": "1224776223524", - "voter": "steemvote" - }, - { - "rshares": "170716399261", - "voter": "steempostitalia" - }, - { - "rshares": "390482712819", - "voter": "davedickeyyall" - }, - { - "rshares": "1058268198", - "voter": "africaunited" - }, - { - "rshares": "6270420100", - "voter": "himshweta" - }, - { - "rshares": "14612970825", - "voter": "felander" - }, - { - "rshares": "15359356283", - "voter": "santigs" - }, - { - "rshares": "832466461", - "voter": "sportsgeek" - }, - { - "rshares": "2384893291", - "voter": "musicgeek" - }, - { - "rshares": "829814626", - "voter": "kromtar" - }, - { - "rshares": "51463460525", - "voter": "bashadow" - }, - { - "rshares": "9201031157", - "voter": "kimzwarch" - }, - { - "rshares": "1857499655", - "voter": "nurhayati" - }, - { - "rshares": "50617299564", - "voter": "accelerator" - }, - { - "rshares": "513708730716", - "voter": "artonmysleeve" - }, - { - "rshares": "8178946510", - "voter": "zeky" - }, - { - "rshares": "2266579896", - "voter": "hokkaido" - }, - { - "rshares": "3314976377", - "voter": "zeinmalik" - }, - { - "rshares": "657656745", - "voter": "sme" - }, - { - "rshares": "53907894081", - "voter": "alinakot" - }, - { - "rshares": "1351111106", - "voter": "yogacoach" - }, - { - "rshares": "231050962341", - "voter": "chinchilla" - }, - { - "rshares": "3131371309", - "voter": "deathwing" - }, - { - "rshares": "583744235913", - "voter": "revisesociology" - }, - { - "rshares": "749746785183", - "voter": "puncakbukit" - }, - { - "rshares": "14964182768", - "voter": "espoem" - }, - { - "rshares": "12281121506", - "voter": "mcfarhat" - }, - { - "rshares": "1577952544", - "voter": "gvand" - }, - { - "rshares": "13930954488", - "voter": "borgheseglass" - }, - { - "rshares": "8863943751", - "voter": "shadflyfilms" - }, - { - "rshares": "28599932826", - "voter": "heidi71" - }, - { - "rshares": "3889176937", - "voter": "m-san" - }, - { - "rshares": "38833319411", - "voter": "daisyphotography" - }, - { - "rshares": "11164440095", - "voter": "caladan" - }, - { - "rshares": "11905532780", - "voter": "ronak10" - }, - { - "rshares": "1007371887", - "voter": "acolucky" - }, - { - "rshares": "93240603272", - "voter": "steemflow" - }, - { - "rshares": "73540320443", - "voter": "emrebeyler" - }, - { - "rshares": "24561884883", - "voter": "brandt" - }, - { - "rshares": "670798925664", - "voter": "citizensmith" - }, - { - "rshares": "1689319942744", - "voter": "traf" - }, - { - "rshares": "18756096221", - "voter": "itchyfeetdonica" - }, - { - "rshares": "107504940807", - "voter": "obvious" - }, - { - "rshares": "1153260533", - "voter": "funtraveller" - }, - { - "rshares": "26583134972", - "voter": "nokodemion" - }, - { - "rshares": "7419276265", - "voter": "marcolino76" - }, - { - "rshares": "10153184913", - "voter": "howiemac" - }, - { - "rshares": "1541678168344", - "voter": "steembasicincome" - }, - { - "rshares": "269481896319", - "voter": "jongolson" - }, - { - "rshares": "22403517679", - "voter": "neupanedipen" - }, - { - "rshares": "78225022369", - "voter": "nealmcspadden" - }, - { - "rshares": "1044254536", - "voter": "manncpt" - }, - { - "rshares": "47800330484", - "voter": "purefood" - }, - { - "rshares": "714301271700", - "voter": "soyrosa" - }, - { - "rshares": "2702724796", - "voter": "philnewton" - }, - { - "rshares": "28525572773", - "voter": "jjangdol69" - }, - { - "rshares": "133727705254", - "voter": "chronocrypto" - }, - { - "rshares": "1852323609", - "voter": "nobyeni" - }, - { - "rshares": "6200117745", - "voter": "cadawg" - }, - { - "rshares": "1663160031", - "voter": "ericburgoyne" - }, - { - "rshares": "102495535453", - "voter": "bigtom13" - }, - { - "rshares": "688791119", - "voter": "edgarf1979" - }, - { - "rshares": "1907269871", - "voter": "moeenali" - }, - { - "rshares": "58514069983", - "voter": "verhp11" - }, - { - "rshares": "1288757547", - "voter": "pkocjan" - }, - { - "rshares": "1527712726", - "voter": "anikys3reasure" - }, - { - "rshares": "79200121818", - "voter": "barge" - }, - { - "rshares": "4038404434", - "voter": "eugenekul" - }, - { - "rshares": "5656431570", - "voter": "crowbarmama" - }, - { - "rshares": "147137329238", - "voter": "whack.science" - }, - { - "rshares": "1607287617", - "voter": "russellstockley" - }, - { - "rshares": "191403897262", - "voter": "cryptictruth" - }, - { - "rshares": "9250010667", - "voter": "afrinsultana" - }, - { - "rshares": "39679805401", - "voter": "teutonium" - }, - { - "rshares": "23400174344", - "voter": "oadissin" - }, - { - "rshares": "5033736655", - "voter": "tubcat" - }, - { - "rshares": "43142453895", - "voter": "talesfrmthecrypt" - }, - { - "rshares": "11315220534", - "voter": "bestboom" - }, - { - "rshares": "1293761031", - "voter": "g-money-needed" - }, - { - "rshares": "14751385607", - "voter": "abrockman" - }, - { - "rshares": "93301583412", - "voter": "ronaldoavelino" - }, - { - "rshares": "11465706751", - "voter": "goldvault" - }, - { - "rshares": "376684534", - "voter": "sekhet" - }, - { - "rshares": "585555514787", - "voter": "dera123" - }, - { - "rshares": "784625792", - "voter": "brightideas" - }, - { - "rshares": "120126804554", - "voter": "broncofan99" - }, - { - "rshares": "13949444124", - "voter": "racibo" - }, - { - "rshares": "16145389012", - "voter": "francisftlp" - }, - { - "rshares": "11978761987", - "voter": "freddio" - }, - { - "rshares": "1680501740", - "voter": "blainjones" - }, - { - "rshares": "660898125", - "voter": "alitavirgen" - }, - { - "rshares": "15973840630", - "voter": "allover" - }, - { - "rshares": "327891870486", - "voter": "quochuy" - }, - { - "rshares": "6573001668", - "voter": "thegoldencobra" - }, - { - "rshares": "125615751285", - "voter": "saboin" - }, - { - "rshares": "39807905771", - "voter": "janton" - }, - { - "rshares": "535198285", - "voter": "globalschool" - }, - { - "rshares": "22811817571", - "voter": "savagebits" - }, - { - "rshares": "802306992", - "voter": "glodniwiedzy" - }, - { - "rshares": "2827342345", - "voter": "mrs.goldkey" - }, - { - "rshares": "4818980946296", - "voter": "slobberchops" - }, - { - "rshares": "16300672392", - "voter": "eii" - }, - { - "rshares": "10615651492", - "voter": "diabonua" - }, - { - "rshares": "465703794", - "voter": "xers" - }, - { - "rshares": "4416149405", - "voter": "spamfarmer" - }, - { - "rshares": "486618078106", - "voter": "cryptoandcoffee" - }, - { - "rshares": "43773885370", - "voter": "insaneworks" - }, - { - "rshares": "183197714549", - "voter": "digital.mine" - }, - { - "rshares": "1702033548", - "voter": "swisswitness" - }, - { - "rshares": "426277112516", - "voter": "fitat40" - }, - { - "rshares": "819307661", - "voter": "moneybaby" - }, - { - "rshares": "0", - "voter": "steemprotect" - }, - { - "rshares": "29174606223", - "voter": "k0wsk1" - }, - { - "rshares": "450717885", - "voter": "abduljalill" - }, - { - "rshares": "2709403254", - "voter": "daath" - }, - { - "rshares": "29998125343", - "voter": "dalz" - }, - { - "rshares": "3030226303959", - "voter": "goblinknackers" - }, - { - "rshares": "1345305691093", - "voter": "partitura" - }, - { - "rshares": "722645931", - "voter": "arrixion" - }, - { - "rshares": "22272169369", - "voter": "mimismartypants" - }, - { - "rshares": "63699307189", - "voter": "goingbonkers" - }, - { - "rshares": "2449844405", - "voter": "slutwife" - }, - { - "rshares": "37008067063", - "voter": "dlike" - }, - { - "rshares": "6702974131", - "voter": "judethedude" - }, - { - "rshares": "39940315905", - "voter": "engrave" - }, - { - "rshares": "3335367537", - "voter": "bagpuss" - }, - { - "rshares": "4481967571", - "voter": "chops.support" - }, - { - "rshares": "180166719268", - "voter": "upvoteshares" - }, - { - "rshares": "1170425109", - "voter": "bobby.madagascar" - }, - { - "rshares": "11498244", - "voter": "laissez-faire" - }, - { - "rshares": "2887734190", - "voter": "silverkey" - }, - { - "rshares": "12470654756", - "voter": "silvervault" - }, - { - "rshares": "4779101352", - "voter": "cryptycoon" - }, - { - "rshares": "5066139288", - "voter": "cryptoclerk" - }, - { - "rshares": "4624765452", - "voter": "hyperbole" - }, - { - "rshares": "507954670", - "voter": "everyoung" - }, - { - "rshares": "17007312017", - "voter": "followjohngalt" - }, - { - "rshares": "6539651752", - "voter": "mistia" - }, - { - "rshares": "1700349783", - "voter": "themightysquid" - }, - { - "rshares": "23275605862", - "voter": "moneytron" - }, - { - "rshares": "14605891969", - "voter": "retrodroid" - }, - { - "rshares": "66309512645", - "voter": "steem-on-2020" - }, - { - "rshares": "30681162947", - "voter": "tigerrkg" - }, - { - "rshares": "4000345591", - "voter": "tommyknockers" - }, - { - "rshares": "4346385265", - "voter": "brucutu1" - }, - { - "rshares": "4328569749", - "voter": "brucutu2" - }, - { - "rshares": "15573906270", - "voter": "delabo" - }, - { - "rshares": "1384271629", - "voter": "noekie" - }, - { - "rshares": "554620241", - "voter": "permaculturedude" - }, - { - "rshares": "932956426", - "voter": "princessamber" - }, - { - "rshares": "4350391676", - "voter": "tubiska" - }, - { - "rshares": "4506297530", - "voter": "pocoto" - }, - { - "rshares": "4518600013", - "voter": "kitty-kitty" - }, - { - "rshares": "4582619740", - "voter": "jussara" - }, - { - "rshares": "4391853331", - "voter": "cyrillo" - }, - { - "rshares": "936729554", - "voter": "ghostdylan" - }, - { - "rshares": "9724462066", - "voter": "scoopstakes" - }, - { - "rshares": "6437912081", - "voter": "nanzo-snaps" - }, - { - "rshares": "4856411945", - "voter": "hamsa.quality" - }, - { - "rshares": "4461626090", - "voter": "carioca" - }, - { - "rshares": "1894904966", - "voter": "bewithbreath" - }, - { - "rshares": "976797273", - "voter": "sophieandhenrik" - }, - { - "rshares": "14655883351", - "voter": "cpt-sparrow" - }, - { - "rshares": "498692727543", - "voter": "ttg" - }, - { - "rshares": "22079566658", - "voter": "maryincryptoland" - }, - { - "rshares": "580305274", - "voter": "kirstieclutte" - }, - { - "rshares": "6084093873", - "voter": "gulf41" - }, - { - "rshares": "41815160529", - "voter": "banvie" - }, - { - "rshares": "2319793510", - "voter": "iamjohn" - }, - { - "rshares": "1219920394", - "voter": "bimguide" - }, - { - "rshares": "2912573841", - "voter": "kgswallet" - }, - { - "rshares": "1262214956", - "voter": "milu-the-dog" - }, - { - "rshares": "54014780073", - "voter": "asmr.tist" - }, - { - "rshares": "10550906969", - "voter": "badfinger" - }, - { - "rshares": "1041510258", - "voter": "triplea.bot" - }, - { - "rshares": "78849827952", - "voter": "steem.leo" - }, - { - "rshares": "2436160391", - "voter": "freddio.sport" - }, - { - "rshares": "5366420064", - "voter": "babytarazkp" - }, - { - "rshares": "16990824094", - "voter": "asteroids" - }, - { - "rshares": "4173968004", - "voter": "thranax" - }, - { - "rshares": "1035843564", - "voter": "midlet-creates" - }, - { - "rshares": "496872143", - "voter": "one.life" - }, - { - "rshares": "20787880177", - "voter": "maxuvd" - }, - { - "rshares": "47076036866", - "voter": "jk6276.life" - }, - { - "rshares": "1583525176", - "voter": "debtfreein2" - }, - { - "rshares": "1451525386", - "voter": "mister.reatard" - }, - { - "rshares": "1331091302", - "voter": "therealyme" - }, - { - "rshares": "5542281384", - "voter": "bilpcoin.pay" - }, - { - "rshares": "2236771961", - "voter": "qwertm" - }, - { - "rshares": "0", - "voter": "gerbo" - }, - { - "rshares": "561430048", - "voter": "steemlondon" - }, - { - "rshares": "1529784193", - "voter": "khalccc" - }, - { - "rshares": "1189675482", - "voter": "galenkp.aus" - }, - { - "rshares": "905198533", - "voter": "steempower-001" - }, - { - "rshares": "1519555452", - "voter": "yohjuan" - }, - { - "rshares": "4924627333", - "voter": "gmlrecordz" - }, - { - "rshares": "10710347795", - "voter": "simply2koool" - }, - { - "rshares": "947732397", - "voter": "ribary" - }, - { - "rshares": "17697151", - "voter": "cmdd" - }, - { - "rshares": "1272182603", - "voter": "bilpcoinbpc" - }, - { - "rshares": "119187779", - "voter": "steempower-002" - }, - { - "rshares": "17845269993", - "voter": "mice-k" - }, - { - "rshares": "1467541026", - "voter": "curamax" - }, - { - "rshares": "574755547", - "voter": "steemcityrewards" - }, - { - "rshares": "737492082", - "voter": "dpend.active" - }, - { - "rshares": "37099033410", - "voter": "monica-ene" - }, - { - "rshares": "2196056735", - "voter": "fengchao" - }, - { - "rshares": "3405485657", - "voter": "hivebuzz" - }, - { - "rshares": "1660545649572", - "voter": "hellohive" - }, - { - "rshares": "19713788374", - "voter": "hiveyoda" - }, - { - "rshares": "28068813041", - "voter": "creativemary" - }, - { - "rshares": "577599772706", - "voter": "softworld" - }, - { - "rshares": "8001192611", - "voter": "polish.hive" - }, - { - "rshares": "802598128", - "voter": "sunsan" - }, - { - "rshares": "28080365", - "voter": "tips.tracker" - }, - { - "rshares": "74046988468", - "voter": "dcityrewards" - }, - { - "rshares": "635225760", - "voter": "ninnu" - }, - { - "rshares": "250484436579", - "voter": "hivelander" - }, - { - "rshares": "11572060935", - "voter": "hairofmedusa" - }, - { - "rshares": "9732553599", - "voter": "sweetmonsters" - }, - { - "rshares": "74948311731", - "voter": "hivecur" - }, - { - "rshares": "0", - "voter": "mutabor78" - }, - { - "rshares": "1143317257", - "voter": "hivecur2" - } + "active_votes": [ + { + "rshares": "518197131276", + "voter": "barrie" + }, + { + "rshares": "31620599440742", + "voter": "smooth" + }, + { + "rshares": "1968100090680", + "voter": "badassmother" + }, + { + "rshares": "3311776812132", + "voter": "pharesim" + }, + { + "rshares": "2052926274941", + "voter": "hr1" + }, + { + "rshares": "1337025448249", + "voter": "rossco99" + }, + { + "rshares": "22864866028", + "voter": "jaewoocho" + }, + { + "rshares": "1619361992750", + "voter": "joseph" + }, + { + "rshares": "98682259833", + "voter": "aizensou" + }, + { + "rshares": "462397546754", + "voter": "recursive3" + }, + { + "rshares": "3120246710189", + "voter": "recursive" + }, + { + "rshares": "1246163169", + "voter": "mineralwasser" + }, + { + "rshares": "681003747775", + "voter": "boombastic" + }, + { + "rshares": "94094732044", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6959103550", + "voter": "bingo-0" + }, + { + "rshares": "1669989826", + "voter": "bingo-1" + }, + { + "rshares": "5938484287107", + "voter": "smooth.witness" + }, + { + "rshares": "445429446140", + "voter": "boatymcboatface" + }, + { + "rshares": "9408475799", + "voter": "idol" + }, + { + "rshares": "284298500346", + "voter": "chitty" + }, + { + "rshares": "1619440533", + "voter": "jocelyn" + }, + { + "rshares": "15004137591", + "voter": "gregory-f" + }, + { + "rshares": "148161564048", + "voter": "edgeland" + }, + { + "rshares": "9604795718", + "voter": "gregory60" + }, + { + "rshares": "1272853996010", + "voter": "gavvet" + }, + { + "rshares": "89896930629", + "voter": "eeks" + }, + { + "rshares": "2015882351", + "voter": "fkn" + }, + { + "rshares": "478461713", + "voter": "paco-steem" + }, + { + "rshares": "5763764389", + "voter": "spaninv" + }, + { + "rshares": "7733788543", + "voter": "nate-atkins" + }, + { + "rshares": "2649751442", + "voter": "elishagh1" + }, + { + "rshares": "8669787638", + "voter": "richman" + }, + { + "rshares": "599927640145", + "voter": "nanzo-scoop" + }, + { + "rshares": "459984469", + "voter": "jeffanthonyfds" + }, + { + "rshares": "177390312070", + "voter": "mummyimperfect" + }, + { + "rshares": "313687341", + "voter": "coar" + }, + { + "rshares": "106628883920", + "voter": "asch" + }, + { + "rshares": "1061168224", + "voter": "murh" + }, + { + "rshares": "6230682263", + "voter": "cryptofunk" + }, + { + "rshares": "2111403468", + "voter": "error" + }, + { + "rshares": "985480652331", + "voter": "cyber" + }, + { + "rshares": "61710743415", + "voter": "theshell" + }, + { + "rshares": "50878177282", + "voter": "ak2020" + }, + { + "rshares": "409218031185", + "voter": "taoteh1221" + }, + { + "rshares": "418880227", + "voter": "applecrisp" + }, + { + "rshares": "373313301", + "voter": "stiletto" + }, + { + "rshares": "375920034566", + "voter": "hedge-x" + }, + { + "rshares": "55577392625", + "voter": "juanmiguelsalas" + }, + { + "rshares": "33780018119", + "voter": "ratel" + }, + { + "rshares": "280669440211", + "voter": "trogdor" + }, + { + "rshares": "121380113922", + "voter": "geoffrey" + }, + { + "rshares": "16025171812", + "voter": "kimziv" + }, + { + "rshares": "76007179625", + "voter": "emily-cook" + }, + { + "rshares": "2187587354", + "voter": "superfreek" + }, + { + "rshares": "30279417098", + "voter": "acassity" + }, + { + "rshares": "17557768630", + "voter": "grey580" + }, + { + "rshares": "280916636", + "voter": "ladyclair" + }, + { + "rshares": "19974572536", + "voter": "thebatchman" + }, + { + "rshares": "61460113993", + "voter": "good-karma" + }, + { + "rshares": "76019855821", + "voter": "rubybian" + }, + { + "rshares": "5270775482", + "voter": "riscadox" + }, + { + "rshares": "17903672525", + "voter": "konstantin" + }, + { + "rshares": "256623434", + "voter": "mstang83" + }, + { + "rshares": "25057071012", + "voter": "tcfxyz" + }, + { + "rshares": "6939848809", + "voter": "futurefood" + }, + { + "rshares": "844421054", + "voter": "endgame" + }, + { + "rshares": "823151341679", + "voter": "slowwalker" + }, + { + "rshares": "9840533745", + "voter": "furion" + }, + { + "rshares": "52479155", + "voter": "ch0c0latechip" + }, + { + "rshares": "19169622645", + "voter": "sebastien" + }, + { + "rshares": "12011479963", + "voter": "asim" + }, + { + "rshares": "14487516865", + "voter": "aaseb" + }, + { + "rshares": "4097381727", + "voter": "incomemonthly" + }, + { + "rshares": "4431046054", + "voter": "karen13" + }, + { + "rshares": "10646413479", + "voter": "deviedev" + }, + { + "rshares": "258981906731", + "voter": "nabilov" + }, + { + "rshares": "5482949271", + "voter": "tinyhomeliving" + }, + { + "rshares": "847366145", + "voter": "luisucv34" + }, + { + "rshares": "54561525717", + "voter": "streetstyle" + }, + { + "rshares": "452581935074", + "voter": "knozaki2015" + }, + { + "rshares": "35782074085", + "voter": "creemej" + }, + { + "rshares": "15377860373", + "voter": "nippel66" + }, + { + "rshares": "24417657582", + "voter": "phenom" + }, + { + "rshares": "167298234999", + "voter": "blueorgy" + }, + { + "rshares": "4256486989", + "voter": "oululahti" + }, + { + "rshares": "349568852", + "voter": "poseidon" + }, + { + "rshares": "2182574144", + "voter": "iamwne" + }, + { + "rshares": "20119867662", + "voter": "mustafaomar" + }, + { + "rshares": "3506024506", + "voter": "simon.braki.love" + }, + { + "rshares": "39345808582", + "voter": "royaltiffany" + }, + { + "rshares": "14954254688", + "voter": "beowulfoflegend" + }, + { + "rshares": "32542074868", + "voter": "deanliu" + }, + { + "rshares": "5373137632", + "voter": "rainchen" + }, + { + "rshares": "86528557116", + "voter": "rea" + }, + { + "rshares": "1616791389", + "voter": "tokyodude" + }, + { + "rshares": "7822595883", + "voter": "neroru" + }, + { + "rshares": "215384292560", + "voter": "jl777" + }, + { + "rshares": "1634827342", + "voter": "positive" + }, + { + "rshares": "5172692235", + "voter": "gustavopasquini" + }, + { + "rshares": "12345105776", + "voter": "moon32walker" + }, + { + "rshares": "6232841459", + "voter": "summonerrk" + }, + { + "rshares": "116726661", + "voter": "firehorse" + }, + { + "rshares": "942266185", + "voter": "happyphoenix" + }, + { + "rshares": "42775729046", + "voter": "claudiop63" + }, + { + "rshares": "18175932801", + "voter": "proto" + }, + { + "rshares": "230455938", + "voter": "jasen.g1311" + }, + { + "rshares": "29035294642", + "voter": "pinkisland" + }, + { + "rshares": "3266602711", + "voter": "ace108" + }, + { + "rshares": "2708203880", + "voter": "sisterholics" + }, + { + "rshares": "1483259422", + "voter": "alex.chien" + }, + { + "rshares": "8964609699", + "voter": "royalmacro" + }, + { + "rshares": "11169454095", + "voter": "logic" + }, + { + "rshares": "55043445", + "voter": "fnait" + }, + { + "rshares": "3482504625", + "voter": "bkkshadow" + }, + { + "rshares": "25636155654", + "voter": "pixielolz" + }, + { + "rshares": "56747133", + "voter": "reported" + }, + { + "rshares": "3353832611", + "voter": "glitterpig" + }, + { + "rshares": "7350128313", + "voter": "jed78" + }, + { + "rshares": "6785260219", + "voter": "shortcut" + }, + { + "rshares": "111828316", + "voter": "andrew-charles" + }, + { + "rshares": "870677269", + "voter": "metaflute" + }, + { + "rshares": "9193722747", + "voter": "taker" + }, + { + "rshares": "1894317852", + "voter": "gruber" + }, + { + "rshares": "15412506890", + "voter": "felixxx" + }, + { + "rshares": "52486879", + "voter": "krushing" + }, + { + "rshares": "95766386323", + "voter": "laonie" + }, + { + "rshares": "157495713864", + "voter": "twinner" + }, + { + "rshares": "61361321", + "voter": "southbaybits" + }, + { + "rshares": "24561066673", + "voter": "laoyao" + }, + { + "rshares": "3996853733", + "voter": "myfirst" + }, + { + "rshares": "19439859020", + "voter": "somebody" + }, + { + "rshares": "726849243", + "voter": "flysaga" + }, + { + "rshares": "66940286", + "voter": "ann76" + }, + { + "rshares": "18234762995", + "voter": "timelapse" + }, + { + "rshares": "2501622377", + "voter": "gmurph" + }, + { + "rshares": "494521401", + "voter": "minnowsunited" + }, + { + "rshares": "4294430078", + "voter": "midnightoil" + }, + { + "rshares": "4281232336", + "voter": "ullikume" + }, + { + "rshares": "5693098913", + "voter": "cjclaro" + }, + { + "rshares": "52700570", + "voter": "whatyouganjado" + }, + { + "rshares": "36649510663", + "voter": "budgetbucketlist" + }, + { + "rshares": "10740564621", + "voter": "xiaohui" + }, + { + "rshares": "176650903994", + "voter": "terrycraft" + }, + { + "rshares": "461088291", + "voter": "elfkitchen" + }, + { + "rshares": "103384996602", + "voter": "joele" + }, + { + "rshares": "5855063437", + "voter": "oflyhigh" + }, + { + "rshares": "59002619", + "voter": "makaveli" + }, + { + "rshares": "335807163", + "voter": "xiaokongcom" + }, + { + "rshares": "13237481048", + "voter": "gargon" + }, + { + "rshares": "676922173", + "voter": "xianjun" + }, + { + "rshares": "26283514539", + "voter": "hanshotfirst" + }, + { + "rshares": "9199546040", + "voter": "tom77" + }, + { + "rshares": "126090405", + "voter": "sarita" + }, + { + "rshares": "52450091", + "voter": "alexbones" + }, + { + "rshares": "2249542145", + "voter": "njall" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "6402569097", + "voter": "rubenalexander" + }, + { + "rshares": "2077210674", + "voter": "chinadaily" + }, + { + "rshares": "11979592683", + "voter": "kyriacos" + }, + { + "rshares": "806759200", + "voter": "jayfox" + }, + { + "rshares": "1647538615", + "voter": "ignat" + }, + { + "rshares": "90168606946", + "voter": "serejandmyself" + }, + { + "rshares": "106144628", + "voter": "pollina" + }, + { + "rshares": "4781807217", + "voter": "almerri" + }, + { + "rshares": "9071955992", + "voter": "johnnyyash" + }, + { + "rshares": "3221126774", + "voter": "macartem" + }, + { + "rshares": "9310407829", + "voter": "gvargas123" + }, + { + "rshares": "4658385146", + "voter": "themanualbot" + }, + { + "rshares": "2005245825", + "voter": "levycore" + }, + { + "rshares": "58169756", + "voter": "cnmtz" + }, + { + "rshares": "476161300", + "voter": "claudia" + }, + { + "rshares": "70203690", + "voter": "ozertayiz" + }, + { + "rshares": "57942270939", + "voter": "mandibil" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "71507788", + "voter": "steembriefing" + }, + { + "rshares": "51356966", + "voter": "salebored" + }, + { + "rshares": "54612436", + "voter": "riv" + }, + { + "rshares": "5081885632", + "voter": "ats-david" + }, + { + "rshares": "1544966078", + "voter": "pollux.one" + }, + { + "rshares": "7776590110", + "voter": "einsteinpotsdam" + }, + { + "rshares": "1932014303", + "voter": "funkywanderer" + }, + { + "rshares": "56854958", + "voter": "jasonji12" + }, + { + "rshares": "5053551216", + "voter": "richardcrill" + }, + { + "rshares": "184076493", + "voter": "team101" + }, + { + "rshares": "51444457", + "voter": "bitdrone" + }, + { + "rshares": "51436144", + "voter": "sleepcult" + }, + { + "rshares": "182060433", + "voter": "greatness" + }, + { + "rshares": "1233641092", + "voter": "goldstein" + }, + { + "rshares": "27674257450", + "voter": "sponge-bob" + }, + { + "rshares": "3432704465", + "voter": "getonthetrain" + }, + { + "rshares": "44943498845", + "voter": "zahnspange" + }, + { + "rshares": "414338857", + "voter": "steemorama" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "59594290", + "voter": "sunjo" + }, + { + "rshares": "285084767", + "voter": "benjamin.still" + }, + { + "rshares": "229690686860", + "voter": "asksisk" + }, + { + "rshares": "27667822273", + "voter": "brains" + }, + { + "rshares": "1772168372", + "voter": "alwayzgame" + }, + { + "rshares": "3531841420", + "voter": "rigaronib" + }, + { + "rshares": "339268967", + "voter": "anomaly" + }, + { + "rshares": "1550172009", + "voter": "allesgruen" + }, + { + "rshares": "123129821", + "voter": "ola1" + }, + { + "rshares": "431087473", + "voter": "littlemorelove" + }, + { + "rshares": "68608664", + "voter": "mari5555na" + }, + { + "rshares": "53309537", + "voter": "michaelblizek" + }, + { + "rshares": "135324063", + "voter": "creativeyoke" + }, + { + "rshares": "841787796", + "voter": "annesaya" + }, + { + "rshares": "51240567", + "voter": "billkappa442" + }, + { + "rshares": "50225780", + "voter": "steemq" + }, + { + "rshares": "50139069", + "voter": "slow" + }, + { + "rshares": "58668861", + "voter": "humans" + }, + { + "rshares": "50796122", + "voter": "factom" + }, + { + "rshares": "50538694", + "voter": "fenix" + }, + { + "rshares": "1921231770", + "voter": "bapparabi" + }, + { + "rshares": "50532230", + "voter": "friends" + }, + { + "rshares": "50349676", + "voter": "albertheijn" + }, + { + "rshares": "161839498", + "voter": "durex" + }, + { + "rshares": "161815656", + "voter": "ranger" + }, + { + "rshares": "435365865", + "voter": "witchcraftblog" + }, + { + "rshares": "161205518", + "voter": "acute" + }, + { + "rshares": "160900665", + "voter": "digitalillusions" + }, + { + "rshares": "4087522528", + "voter": "dresden" + }, + { + "rshares": "155111085", + "voter": "coolbeans" + }, + { + "rshares": "160151932", + "voter": "maxlviv" + }, + { + "rshares": "158393209", + "voter": "food-creator" + }, + { + "rshares": "159973989", + "voter": "capcom" + }, + { + "rshares": "159175576", + "voter": "fallout" + }, + { + "rshares": "158560941", + "voter": "steemthis" + }, + { + "rshares": "158535752", + "voter": "nerds" + }, + { + "rshares": "31680362460", + "voter": "goldmatters" + }, + { + "rshares": "136494240", + "voter": "bleujay" + }, + { + "rshares": "150430703", + "voter": "jproto22" + } + ], + "author": "knozaki2015", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\"Easy
\n

\n

There are many vegan or raw chocolates to buy, but the best chocolates comes from your own kitchen

\n

HOME MADE ROCKS !!

\n


\n

\"Schokolade

\n 

\n

What is raw chocolate ? The cocoa mass that you need for it consists of unroasted fermented cocoa beans . All fiber and nutrients are untouched. The cocoa mass you can buy online.

\n


\n
\"Schokolade1\"

\n
\nAnd here comes the recipe:

\n
    \n
  • 400 g raw cacao mass (not to be confused with cocoa butter) 
  • \n
  • 2 Tablespoon Coconutoil (best is Dr. Goerg)
  • \n
  • 100 g sprouted buckwheat (for a Crunchy taste)
  • \n
  • 100 g peanuts
  • \n
  • 100 g Walnuts or chopped almonds , Goji berries or what you listen to taste .
    \n
  • \n
\n
    \n
  1. Melt the cocoa paste and coconut oil in a waterbath or in the hydrator at max . 42 degrees .
  2. \n
  3. Once it is melted add the nuts with a big spoon
  4. \n
  5. If you like bars, fill the chocolate nut mixture into silicone bars . You can buy bars in any bakery shop or at Amazon 
  6. \n
  7.  But you can also use a large shallow plate and place baking paper on the plate and fill with the chocolate nut mixture
  8. \n
\n

Be creative : Put anything you like onto the chocolate-nut mixture (Goji berries , whole nuts , coconut pieces etc.)

\n

Place the finished chocolate 1 Hour in your freezer

\n

Get the bars out of the form or break the chocolate from the plate  and put it into the fridge .

\n


\nTrust me, your chocolate won't stay too long in your fridge.... 

\n

Please follow me @allesgruen !

\n

German Original Article


\n

Written by @allesgruen & translated by @knozaki2015

\n

@knozaki2015 features authors and artist to promote them and a diversity of content.
\nThe author will receive 100% of the STEEM Dollars from this post

\n

If you like this post please support @allesgruen and follow the author!

\n


\n", + "category": "food", + "children": 34, + "created": "2016-09-15T14:24:12", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s10.postimg.org/5kfqkef9l/Easy_Dishes_To_Make_For_Your50th_Birthday_Dinner_P.jpg", + "https://s16.postimg.org/j1hikj3np/Schokolade_Bild.jpg", + "https://s16.postimg.org/pggjh7adh/Schokolade1.jpg" ], - "author": "meesterboom", - "author_payout_value": "0.000 HBD", - "author_reputation": 78.31, - "beneficiaries": [], - "blacklists": [], - "body": "![ninja_gardens.jpg](https://images.hive.blog/DQmU9EXhp1Cq8PG8zZykVxoWM23zEo5Nsgp1obp8n4xmPWk/ninja_gardens.jpg)\n\n*Eeewowurp eewowurp eewowurp*\n\nI stared in *perplexelment* at my phone which was ringing with the strangest and most unfamiliar ringtone. \n\nWhat the fuck was wrong with it? Was it the COVID? Was nothing safe from the COVID these days?\n\nI picked it up and noticed a picture of my mate *Daz* above the answer symbol. \n\nIt all clicked into place. This was the ringtone I had set for my close friends. \n\nSince COVID it hadn't rung much as everyone had hunkered down in their bunkers out of fear of the *Bat-Flu.*\n\n*Yo homie? Wha's going on?*\n\nI answered in a street drawl as if I were wearing pantaloons that were too short, a T-Shirt that was too big and was standing on a sun-drenched South Central LA street corner.\n\n*Hey bitches, how you doing?*\n\nMy mate *Daz's* face filled the screen and I realised that it was a video call. \n\nInwardly I cursed. Didn'y anyone just fucking phone anymore? Were ears alone no longer good enough? Did it always have to be fucking video and the accompanying fear of penile exposure because I am a saucy extrovert and feel pressured to get my lad out when on cam?\n\n*I'm cool, man. Just chilling with the family.*\n\nI lied convincingly as in the background my children fought and screamed over what to watch on the TV.\n\n*Cool cool. Well, never mind the family, mate. It's beer garden day.*\n\n*Daz's* mouth gaped wide in a grin like a rip on the heel of an old sock.\n\n*It's what day?*\n\nI asked in no little bafflement like a small monkey trying to set fire to a banana to get high.\n\nDaz pulled his head back from his phone then thrust it back up close to the screen with such fervour that I feared he would break right through the glass and tumble into my living room.\n\n*Beer garden day!!! BEERS!!! You must have heard? Lockdown is relaxing and pubs can open their beer gardens!! Are you up for it? Come on man. Let's get beered up in the sun!!*\n\nHe looked at me expectantly.\n\nI tried my best to smile like one of the lads.\n\n*Erm. aye, em, eh, bit short notice though. Dunno if I can get away what with the kids and all?*\n\nI said trying to stop my voice from raising up into a terrified squeak.\n\n*Kids?! Kids?! Fuck them, dude. That's what the wives are for. Come on, it's been ages! Let's tear the roof off the place!*\n\n*Daz's* picture blurred madly and I realised he was jumping up and down with excitement.\n\n*Erm, what about the COVID, do we need masks?*\n\nI was a bit nervous. I didn't really have a mask and I was stricken by the sudden fear of going out properly as if there wasn't a worldwide pandemic.\n\n*Masks? HAHAHAHAHA, how the fuck can you drink through a mask? No mate. No fucking masks, just beer and all that glorious freedom!*\n\n*Daz* threw his head back and shook his hand back and forth at his mouth, enthusiastically imitating guzzling a pint of beer. \n\nIt made him look like he was felating a Giraffe.\n\n*Come on man, live whilst your alive and all that. See you at the Goose at 3 o'clock?*\n\nHe looked expectantly at me. \n\nI furrowed my brow then snorted loudly through my nostrils as if I were a bull and the farmer were approaching with the big plastic funnel again.\n\n*Aye fuck it, let's do it. See you then.*\n\nI cut the call and paused. \n\nGo outside? Mix with normal people, in a bar with no masks? \n\nNow this... This was madness!", - "category": "life", - "children": 38, - "created": "2020-07-07T12:33:51", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "hiveblog/0.1", - "format": "markdown", - "image": [ - "https://images.hive.blog/DQmU9EXhp1Cq8PG8zZykVxoWM23zEo5Nsgp1obp8n4xmPWk/ninja_gardens.jpg" - ], - "tags": [ - "life", - "writing", - "story", - "blog", - "lockdown", - "beer", - "garden" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 101616764581259, - "payout": 41.058, - "payout_at": "2020-07-14T12:33:51", - "pending_payout_value": "41.058 HBD", - "percent_steem_dollars": 10000, - "permlink": "the-gardens-of-babylon", - "post_id": 86931763, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 326 - }, - "title": "The Gardens Of Babylon", - "updated": "2020-07-07T12:33:51", - "url": "/life/@meesterboom/the-gardens-of-babylon" - }, - { - "active_votes": [ - { - "rshares": "22078484216", - "voter": "fractalnode" - }, - { - "rshares": "590233617376", - "voter": "onealfa" - }, - { - "rshares": "1326231954929", - "voter": "kingscrown" - }, - { - "rshares": "44479892124", - "voter": "churdtzu" - }, - { - "rshares": "115056062717", - "voter": "hedge-x" - }, - { - "rshares": "1514890429", - "voter": "paradise-paradox" - }, - { - "rshares": "14546630291", - "voter": "kennyskitchen" - }, - { - "rshares": "504384747377", - "voter": "mark-waser" - }, - { - "rshares": "95446373084", - "voter": "arcange" - }, - { - "rshares": "2555243707", - "voter": "raphaelle" - }, - { - "rshares": "9371795673", - "voter": "sterlinluxan" - }, - { - "rshares": "409535187", - "voter": "d3nv3r" - }, - { - "rshares": "9224271552919", - "voter": "jphamer1" - }, - { - "rshares": "1012962246", - "voter": "bidnat" - }, - { - "rshares": "46572757115", - "voter": "shanghaipreneur" - }, - { - "rshares": "2948521226", - "voter": "alchemage" - }, - { - "rshares": "22820685160", - "voter": "scaredycatguide" - }, - { - "rshares": "547533949767", - "voter": "borran" - }, - { - "rshares": "3195095310", - "voter": "burntmd" - }, - { - "rshares": "5456318156", - "voter": "johnvibes" - }, - { - "rshares": "23687797693", - "voter": "elamental" - }, - { - "rshares": "2634087089", - "voter": "catherinebleish" - }, - { - "rshares": "1091643168", - "voter": "mckeever" - }, - { - "rshares": "85358630163", - "voter": "shadowspub" - }, - { - "rshares": "65120473021", - "voter": "terrybrock" - }, - { - "rshares": "4983021303", - "voter": "dannyshine" - }, - { - "rshares": "41608418245", - "voter": "notconvinced" - }, - { - "rshares": "1321486418", - "voter": "brightstar" - }, - { - "rshares": "25234543944", - "voter": "por500bolos" - }, - { - "rshares": "637736034", - "voter": "tftproject" - }, - { - "rshares": "28727006224", - "voter": "dbroze" - }, - { - "rshares": "15555534749", - "voter": "eftnow" - }, - { - "rshares": "510994328050", - "voter": "digital-wisdom" - }, - { - "rshares": "1972741023", - "voter": "ethical-ai" - }, - { - "rshares": "24097982430", - "voter": "jwaser" - }, - { - "rshares": "74423431120", - "voter": "justyy" - }, - { - "rshares": "2350097462", - "voter": "freebornangel" - }, - { - "rshares": "14510965890", - "voter": "rynow" - }, - { - "rshares": "156025709025", - "voter": "herpetologyguy" - }, - { - "rshares": "2052605275", - "voter": "strong-ai" - }, - { - "rshares": "69213339954", - "voter": "wearechange-co" - }, - { - "rshares": "13200638850", - "voter": "mitchelljaworski" - }, - { - "rshares": "14179504474", - "voter": "makinstuff" - }, - { - "rshares": "5031506440", - "voter": "thoughts-in-time" - }, - { - "rshares": "1010413061", - "voter": "hopehuggs" - }, - { - "rshares": "952089805", - "voter": "technoprogressiv" - }, - { - "rshares": "5059144438", - "voter": "amariespeaks" - }, - { - "rshares": "6999780705", - "voter": "automaton" - }, - { - "rshares": "45199487199", - "voter": "markkujantunen" - }, - { - "rshares": "2676582066", - "voter": "dyrt88" - }, - { - "rshares": "2257594094624", - "voter": "alexis555" - }, - { - "rshares": "37962230905", - "voter": "eirik" - }, - { - "rshares": "153818794415", - "voter": "louisthomas" - }, - { - "rshares": "160969064869", - "voter": "preparedwombat" - }, - { - "rshares": "2553247951", - "voter": "freebornsociety" - }, - { - "rshares": "650057774", - "voter": "haileyscomet" - }, - { - "rshares": "3112472819", - "voter": "marxrab" - }, - { - "rshares": "41157966936", - "voter": "egonz" - }, - { - "rshares": "1128811099700", - "voter": "smasssh" - }, - { - "rshares": "11775896513", - "voter": "arnel" - }, - { - "rshares": "34908284856", - "voter": "whatamidoing" - }, - { - "rshares": "1101706196", - "voter": "khussan" - }, - { - "rshares": "24667429435", - "voter": "jerrybanfield" - }, - { - "rshares": "263323045671", - "voter": "drag33" - }, - { - "rshares": "34654666081", - "voter": "mys" - }, - { - "rshares": "79308729971", - "voter": "ironshield" - }, - { - "rshares": "211300872658", - "voter": "sumatranate" - }, - { - "rshares": "234583176454", - "voter": "arunava" - }, - { - "rshares": "55330789187", - "voter": "misslasvegas" - }, - { - "rshares": "69765352998", - "voter": "handofzara" - }, - { - "rshares": "3848364740", - "voter": "flauwy" - }, - { - "rshares": "294659031582", - "voter": "tonyz" - }, - { - "rshares": "6240025963", - "voter": "mxzn" - }, - { - "rshares": "19464364337", - "voter": "mdosev" - }, - { - "rshares": "4123884021", - "voter": "antimedia" - }, - { - "rshares": "30575075241", - "voter": "anacristinasilva" - }, - { - "rshares": "31744246394", - "voter": "sam99" - }, - { - "rshares": "8116744689", - "voter": "howtostartablog" - }, - { - "rshares": "32402135255", - "voter": "dadapizza" - }, - { - "rshares": "11132920740", - "voter": "colinhoward" - }, - { - "rshares": "13428800412", - "voter": "whd" - }, - { - "rshares": "537507210975", - "voter": "offgridlife" - }, - { - "rshares": "34683604102", - "voter": "thegreens" - }, - { - "rshares": "4494692024146", - "voter": "gunthertopp" - }, - { - "rshares": "2198026293", - "voter": "eco-alex" - }, - { - "rshares": "4239993440", - "voter": "binkyprod" - }, - { - "rshares": "51387075732", - "voter": "mcoinz79" - }, - { - "rshares": "3368461728", - "voter": "adambarratt" - }, - { - "rshares": "2578228159", - "voter": "bryandivisions" - }, - { - "rshares": "1233925614", - "voter": "rafalski" - }, - { - "rshares": "3173869590", - "voter": "heart-to-heart" - }, - { - "rshares": "10828622030", - "voter": "blazing" - }, - { - "rshares": "27532074334", - "voter": "vincentnijman" - }, - { - "rshares": "6360608262", - "voter": "howtobelight" - }, - { - "rshares": "765666862", - "voter": "rollingthunder" - }, - { - "rshares": "887697725796", - "voter": "stayoutoftherz" - }, - { - "rshares": "12133292368", - "voter": "pixelfan" - }, - { - "rshares": "2897350853", - "voter": "tykee" - }, - { - "rshares": "1200297772928", - "voter": "steemvote" - }, - { - "rshares": "281127867144", - "voter": "investingpennies" - }, - { - "rshares": "150899226681", - "voter": "jasonbu" - }, - { - "rshares": "3932364103", - "voter": "chetanpadliya" - }, - { - "rshares": "800216561", - "voter": "fabiyamada" - }, - { - "rshares": "126798744689", - "voter": "shanibeer" - }, - { - "rshares": "80146919105", - "voter": "chrisparis" - }, - { - "rshares": "8247205322914", - "voter": "tribesteemup" - }, - { - "rshares": "853893552258", - "voter": "onetin84" - }, - { - "rshares": "17811925182", - "voter": "costanza" - }, - { - "rshares": "10558481600", - "voter": "santigs" - }, - { - "rshares": "3056828052511", - "voter": "stoodkev" - }, - { - "rshares": "14615379917456", - "voter": "tipu" - }, - { - "rshares": "24527382416", - "voter": "thelordsharvest" - }, - { - "rshares": "9119198905", - "voter": "kimzwarch" - }, - { - "rshares": "41847001913", - "voter": "redouanemez" - }, - { - "rshares": "2086257670", - "voter": "shawkr13" - }, - { - "rshares": "218080095806", - "voter": "fbslo" - }, - { - "rshares": "3492471744031", - "voter": "vlemon" - }, - { - "rshares": "1443185068", - "voter": "paullifefit" - }, - { - "rshares": "3165431191", - "voter": "justinparke" - }, - { - "rshares": "2197948315", - "voter": "solarsupermama" - }, - { - "rshares": "288443907234", - "voter": "chinchilla" - }, - { - "rshares": "488609136712", - "voter": "taskmaster4450" - }, - { - "rshares": "342692198416", - "voter": "revisesociology" - }, - { - "rshares": "49058899438", - "voter": "yangyanje" - }, - { - "rshares": "571905684", - "voter": "superbing" - }, - { - "rshares": "45294197699", - "voter": "ecotrain" - }, - { - "rshares": "8784213476", - "voter": "shadflyfilms" - }, - { - "rshares": "7866681723", - "voter": "dinglehopper" - }, - { - "rshares": "6111588405", - "voter": "canadianrenegade" - }, - { - "rshares": "34445810124", - "voter": "pitboy" - }, - { - "rshares": "38483639559", - "voter": "daisyphotography" - }, - { - "rshares": "1524513676", - "voter": "kieranpearson" - }, - { - "rshares": "52966386461", - "voter": "joetunex" - }, - { - "rshares": "11419876537", - "voter": "tradingideas" - }, - { - "rshares": "703652601", - "voter": "photolander" - }, - { - "rshares": "7767983740", - "voter": "senorcoconut" - }, - { - "rshares": "4579392155", - "voter": "dashroom" - }, - { - "rshares": "22601422249", - "voter": "nomad-magus" - }, - { - "rshares": "2666381270", - "voter": "kaniz" - }, - { - "rshares": "80911078684", - "voter": "katerinaramm" - }, - { - "rshares": "1143048527", - "voter": "earthmother" - }, - { - "rshares": "25975589808", - "voter": "trucklife-family" - }, - { - "rshares": "4421822505", - "voter": "not-a-bird" - }, - { - "rshares": "2179038738", - "voter": "lishu" - }, - { - "rshares": "1344347549", - "voter": "belleamie" - }, - { - "rshares": "38971348015", - "voter": "mytechtrail" - }, - { - "rshares": "14792094431", - "voter": "careywedler" - }, - { - "rshares": "1334751449", - "voter": "skycae" - }, - { - "rshares": "36872209395", - "voter": "itchyfeetdonica" - }, - { - "rshares": "1127433960", - "voter": "infinityroad" - }, - { - "rshares": "24364306112", - "voter": "nokodemion" - }, - { - "rshares": "152155038226", - "voter": "kamchore" - }, - { - "rshares": "1893902333", - "voter": "firststeps" - }, - { - "rshares": "1624524308", - "voter": "fourfourfun" - }, - { - "rshares": "4692487637", - "voter": "candyboy" - }, - { - "rshares": "13570752594", - "voter": "paradigmprospect" - }, - { - "rshares": "5607550181", - "voter": "krishool" - }, - { - "rshares": "10245479406", - "voter": "eaglespirit" - }, - { - "rshares": "144303818926", - "voter": "deepresearch" - }, - { - "rshares": "1118060230", - "voter": "jewel-lover" - }, - { - "rshares": "537154478921", - "voter": "jongolson" - }, - { - "rshares": "36320183259", - "voter": "mountainjewel" - }, - { - "rshares": "37088146104", - "voter": "bartheek" - }, - { - "rshares": "25807216438", - "voter": "neupanedipen" - }, - { - "rshares": "1163618655", - "voter": "mehta" - }, - { - "rshares": "153457107647", - "voter": "mmmmkkkk311" - }, - { - "rshares": "1397475466", - "voter": "moxieme" - }, - { - "rshares": "809351845", - "voter": "davinsh" - }, - { - "rshares": "20326302970", - "voter": "steemvault" - }, - { - "rshares": "125480139131", - "voter": "communitybank" - }, - { - "rshares": "4651175695901", - "voter": "znnuksfe" - }, - { - "rshares": "53076786596", - "voter": "utube" - }, - { - "rshares": "39873468120", - "voter": "bala41288" - }, - { - "rshares": "4046057328", - "voter": "davemccoy" - }, - { - "rshares": "36293317974", - "voter": "sportscontest" - }, - { - "rshares": "34929515024", - "voter": "videosteemit" - }, - { - "rshares": "14686940310", - "voter": "investprosper" - }, - { - "rshares": "15723121323", - "voter": "upfundme" - }, - { - "rshares": "950335702", - "voter": "gavinatorial" - }, - { - "rshares": "3385630559", - "voter": "ericburgoyne" - }, - { - "rshares": "1921584654", - "voter": "moeenali" - }, - { - "rshares": "137301266499", - "voter": "happy-soul" - }, - { - "rshares": "2083723513", - "voter": "borrowedearth" - }, - { - "rshares": "947426413", - "voter": "hempress" - }, - { - "rshares": "23784054816", - "voter": "photohunt" - }, - { - "rshares": "773031990", - "voter": "photohunter1" - }, - { - "rshares": "1887576857", - "voter": "photohunter2" - }, - { - "rshares": "1113471789", - "voter": "photohunter3" - }, - { - "rshares": "1181532938", - "voter": "photohunter4" - }, - { - "rshares": "1141349356", - "voter": "photohunter5" - }, - { - "rshares": "1113366761", - "voter": "allyson19" - }, - { - "rshares": "3218247923", - "voter": "vegan.niinja" - }, - { - "rshares": "50591179031", - "voter": "cst90" - }, - { - "rshares": "1169095494", - "voter": "ladysalsa" - }, - { - "rshares": "4423787903", - "voter": "homestead-guru" - }, - { - "rshares": "1607642485", - "voter": "russellstockley" - }, - { - "rshares": "758851394", - "voter": "sovereignalien" - }, - { - "rshares": "3395736554", - "voter": "steemsmarter" - }, - { - "rshares": "5957309047", - "voter": "wildarms65" - }, - { - "rshares": "16726028523", - "voter": "fego" - }, - { - "rshares": "105494616266", - "voter": "superlotto" - }, - { - "rshares": "4990969906", - "voter": "dhingvimal" - }, - { - "rshares": "729266322", - "voter": "antisocialists" - }, - { - "rshares": "16011492987", - "voter": "movingman" - }, - { - "rshares": "4306355894", - "voter": "veganomics" - }, - { - "rshares": "5262580437", - "voter": "amico" - }, - { - "rshares": "13593577047", - "voter": "neopch" - }, - { - "rshares": "4602418280", - "voter": "beleg" - }, - { - "rshares": "2604224561", - "voter": "onepercentbetter" - }, - { - "rshares": "2201124933", - "voter": "celestialcow" - }, - { - "rshares": "1233769434", - "voter": "sanderjansenart" - }, - { - "rshares": "91077083072", - "voter": "ronaldoavelino" - }, - { - "rshares": "387638140", - "voter": "stmdev" - }, - { - "rshares": "219766094095", - "voter": "mariuszkarowski" - }, - { - "rshares": "362947398", - "voter": "sekhet" - }, - { - "rshares": "584881570797", - "voter": "dera123" - }, - { - "rshares": "4146326502", - "voter": "paragism" - }, - { - "rshares": "1049322009379", - "voter": "jkramer" - }, - { - "rshares": "2604882302484", - "voter": "rawutah" - }, - { - "rshares": "3439466432", - "voter": "blainjones" - }, - { - "rshares": "9611552606", - "voter": "bobaphet" - }, - { - "rshares": "11710536918", - "voter": "gadrian" - }, - { - "rshares": "1555449552909", - "voter": "lordbutterfly" - }, - { - "rshares": "171331089", - "voter": "angelinafx" - }, - { - "rshares": "1041966865", - "voter": "rollandthomas" - }, - { - "rshares": "623576686", - "voter": "nateonsteemit" - }, - { - "rshares": "8051269874936", - "voter": "julialee66" - }, - { - "rshares": "3678805201", - "voter": "reinaldoverdu" - }, - { - "rshares": "1657323770", - "voter": "stefannikolov" - }, - { - "rshares": "47412328760", - "voter": "indigoocean" - }, - { - "rshares": "2402155465", - "voter": "trumpman2" - }, - { - "rshares": "863231632", - "voter": "feedmytwi" - }, - { - "rshares": "38210520874", - "voter": "promobot" - }, - { - "rshares": "338050373355", - "voter": "sbi4" - }, - { - "rshares": "629031082636", - "voter": "friendsofgondor" - }, - { - "rshares": "719516013", - "voter": "geliquasjourney" - }, - { - "rshares": "1034257370", - "voter": "tronsformer" - }, - { - "rshares": "2520098109", - "voter": "archisteem" - }, - { - "rshares": "598971926", - "voter": "truthabides" - }, - { - "rshares": "1462199950", - "voter": "cambridgeport90" - }, - { - "rshares": "681903724", - "voter": "metama" - }, - { - "rshares": "500379331", - "voter": "merlion" - }, - { - "rshares": "642401240", - "voter": "hardaeborla" - }, - { - "rshares": "117770017024", - "voter": "citizendog" - }, - { - "rshares": "181859066454", - "voter": "digital.mine" - }, - { - "rshares": "10643659876", - "voter": "qam2112" - }, - { - "rshares": "68420526511", - "voter": "inspirewithwords" - }, - { - "rshares": "811007264", - "voter": "moneybaby" - }, - { - "rshares": "5152681216", - "voter": "mannacurrency" - }, - { - "rshares": "3684386738", - "voter": "longer" - }, - { - "rshares": "1976010158", - "voter": "libuska" - }, - { - "rshares": "2521750969", - "voter": "nickhans" - }, - { - "rshares": "1158644390", - "voter": "nutritree" - }, - { - "rshares": "639499265", - "voter": "mightypanda" - }, - { - "rshares": "1707993563", - "voter": "phillyc" - }, - { - "rshares": "842987802", - "voter": "rufruf" - }, - { - "rshares": "2456896334", - "voter": "daath" - }, - { - "rshares": "68557837", - "voter": "jk6276" - }, - { - "rshares": "707213236", - "voter": "arrixion" - }, - { - "rshares": "4418481043", - "voter": "julian2013" - }, - { - "rshares": "188461547216", - "voter": "gorbisan" - }, - { - "rshares": "336100091875", - "voter": "bengiles" - }, - { - "rshares": "86172829029", - "voter": "torrey.blog" - }, - { - "rshares": "521981823222", - "voter": "tipsybosphorus" - }, - { - "rshares": "390741049344", - "voter": "definethedollar" - }, - { - "rshares": "39087364703", - "voter": "gabbynhice" - }, - { - "rshares": "68367584282", - "voter": "kr-coffeesteem" - }, - { - "rshares": "11856758586", - "voter": "porters" - }, - { - "rshares": "1370194313111", - "voter": "inature" - }, - { - "rshares": "43961660", - "voter": "oakshieldholding" - }, - { - "rshares": "11216085", - "voter": "laissez-faire" - }, - { - "rshares": "126924382060", - "voter": "agromeror" - }, - { - "rshares": "86574362978", - "voter": "cultus-forex" - }, - { - "rshares": "1949154013", - "voter": "musinka" - }, - { - "rshares": "635664344", - "voter": "kuhle" - }, - { - "rshares": "25092003267", - "voter": "lion200" - }, - { - "rshares": "9476424605", - "voter": "steemitcuration" - }, - { - "rshares": "1942233412", - "voter": "thrasher666" - }, - { - "rshares": "1242568371882", - "voter": "brianoflondon" - }, - { - "rshares": "10461556162", - "voter": "geekdancing" - }, - { - "rshares": "89745489413", - "voter": "cakemonster" - }, - { - "rshares": "136667369321", - "voter": "bleuxwolf" - }, - { - "rshares": "3505705027", - "voter": "vibesforlife" - }, - { - "rshares": "2057922041", - "voter": "bia.birch" - }, - { - "rshares": "-35876799", - "voter": "dein-problem" - }, - { - "rshares": "41577295408", - "voter": "francescomai" - }, - { - "rshares": "1139475303", - "voter": "smonia" - }, - { - "rshares": "21141130948", - "voter": "moneytron" - }, - { - "rshares": "14814471105", - "voter": "rasalom" - }, - { - "rshares": "880606012", - "voter": "hedidylan" - }, - { - "rshares": "1354750938", - "voter": "smon-fan" - }, - { - "rshares": "8637954745", - "voter": "jacuzzi" - }, - { - "rshares": "14231258020", - "voter": "steemstorage" - }, - { - "rshares": "1493556732", - "voter": "fire451" - }, - { - "rshares": "864190578", - "voter": "starfighter" - }, - { - "rshares": "782478678", - "voter": "seekingalpha" - }, - { - "rshares": "4221039801", - "voter": "brucutu1" - }, - { - "rshares": "725650093", - "voter": "tr777" - }, - { - "rshares": "599483498", - "voter": "sm-jewel" - }, - { - "rshares": "571505733", - "voter": "tr77" - }, - { - "rshares": "50429984817", - "voter": "tribevibes" - }, - { - "rshares": "603590591", - "voter": "smoner" - }, - { - "rshares": "842417866", - "voter": "smonian" - }, - { - "rshares": "4224993514", - "voter": "tubiska" - }, - { - "rshares": "4376516117", - "voter": "pocoto" - }, - { - "rshares": "340113743461", - "voter": "ctime" - }, - { - "rshares": "4388150397", - "voter": "kitty-kitty" - }, - { - "rshares": "4450566837", - "voter": "jussara" - }, - { - "rshares": "4265052298", - "voter": "cyrillo" - }, - { - "rshares": "16583893194", - "voter": "smon-joa" - }, - { - "rshares": "582554171", - "voter": "jjangjjanggirl" - }, - { - "rshares": "1132976346", - "voter": "rgvmedia" - }, - { - "rshares": "1369476911", - "voter": "blockbeard" - }, - { - "rshares": "54497843", - "voter": "hungrybear" - }, - { - "rshares": "1451439805", - "voter": "brandnewaccount" - }, - { - "rshares": "1496286199", - "voter": "shit-posts" - }, - { - "rshares": "1124350415", - "voter": "jadung" - }, - { - "rshares": "599768564", - "voter": "rihanna2" - }, - { - "rshares": "4332803130", - "voter": "carioca" - }, - { - "rshares": "820572423", - "voter": "theithei" - }, - { - "rshares": "590773200", - "voter": "smonbear" - }, - { - "rshares": "6551280680", - "voter": "bewithbreath" - }, - { - "rshares": "1025749674", - "voter": "denizcakmak" - }, - { - "rshares": "13310180319", - "voter": "cpt-sparrow" - }, - { - "rshares": "11123157319", - "voter": "wolffeys" - }, - { - "rshares": "469438543951", - "voter": "ttg" - }, - { - "rshares": "21637468923", - "voter": "maryincryptoland" - }, - { - "rshares": "362693319", - "voter": "crazydaisy" - }, - { - "rshares": "64552695", - "voter": "coredump" - }, - { - "rshares": "2839638775", - "voter": "steelborne" - }, - { - "rshares": "3435850703", - "voter": "raspibot" - }, - { - "rshares": "4756836359", - "voter": "megavest" - }, - { - "rshares": "925081592", - "voter": "gadrian-sp" - }, - { - "rshares": "109758978283", - "voter": "solairitas" - }, - { - "rshares": "668015612", - "voter": "dtrade" - }, - { - "rshares": "7879896596", - "voter": "deeanndmathews" - }, - { - "rshares": "8606036502", - "voter": "dailyke20" - }, - { - "rshares": "628963673", - "voter": "ssc-token" - }, - { - "rshares": "1866032862", - "voter": "hjlee119" - }, - { - "rshares": "4363221399143", - "voter": "likwid" - }, - { - "rshares": "24996568", - "voter": "haxxdump" - }, - { - "rshares": "166328712", - "voter": "tradingideas2" - }, - { - "rshares": "2446181995", - "voter": "leighscotford" - }, - { - "rshares": "572424577", - "voter": "iktisat" - }, - { - "rshares": "32511949309", - "voter": "haleakala" - }, - { - "rshares": "2958945024", - "voter": "travelwritemoney" - }, - { - "rshares": "1470788099", - "voter": "stubborn-soul" - }, - { - "rshares": "700870328", - "voter": "jalentakesphotos" - }, - { - "rshares": "16084618102", - "voter": "mind.force" - }, - { - "rshares": "6932084198", - "voter": "reggaesteem" - }, - { - "rshares": "0", - "voter": "tradingideas.spt" - }, - { - "rshares": "761462769", - "voter": "abh12345.leo" - }, - { - "rshares": "806135112", - "voter": "leovoter" - }, - { - "rshares": "2107432422", - "voter": "mindtrap-leo" - }, - { - "rshares": "1698056293258", - "voter": "leo.voter" - }, - { - "rshares": "1067474577", - "voter": "penpals" - }, - { - "rshares": "34171294", - "voter": "vxc.leo" - }, - { - "rshares": "478039057", - "voter": "bala-pal" - }, - { - "rshares": "500206126", - "voter": "bala-leo" - }, - { - "rshares": "518762199146", - "voter": "votebetting" - }, - { - "rshares": "4886908425", - "voter": "scaredycatcurate" - }, - { - "rshares": "886373823", - "voter": "zaku-leo" - }, - { - "rshares": "5385158478", - "voter": "babytarazkp" - }, - { - "rshares": "640474693", - "voter": "arctis" - }, - { - "rshares": "1412399333", - "voter": "marlians.spt" - }, - { - "rshares": "0", - "voter": "abh12345.neox" - }, - { - "rshares": "231507278", - "voter": "tina-tina" - }, - { - "rshares": "1038175157", - "voter": "tokensink" - }, - { - "rshares": "348734705", - "voter": "happiness19" - }, - { - "rshares": "1507226267", - "voter": "revise.leo" - }, - { - "rshares": "16228075230", - "voter": "knightsunited" - }, - { - "rshares": "1484769931", - "voter": "sbi-tokens" - }, - { - "rshares": "6764098", - "voter": "gdhaetae" - }, - { - "rshares": "11303260538", - "voter": "psycultureradio" - }, - { - "rshares": "719308739", - "voter": "brutoken" - }, - { - "rshares": "54112102973", - "voter": "ufm.pay" - }, - { - "rshares": "46399943910", - "voter": "jk6276.life" - }, - { - "rshares": "0", - "voter": "vxc-ag" - }, - { - "rshares": "1027493954", - "voter": "deflacion" - }, - { - "rshares": "5604620516", - "voter": "build-it" - }, - { - "rshares": "888223777", - "voter": "dnflsms" - }, - { - "rshares": "620272775", - "voter": "bruleo" - }, - { - "rshares": "558775432", - "voter": "jessy22" - }, - { - "rshares": "14261968257", - "voter": "spinvest-leo" - }, - { - "rshares": "28570605904", - "voter": "bcm" - }, - { - "rshares": "42604605579", - "voter": "andylein" - }, - { - "rshares": "3355771203", - "voter": "hongdangmu" - }, - { - "rshares": "295222557935", - "voter": "holybread" - }, - { - "rshares": "1411937758", - "voter": "tonimontana.leo" - }, - { - "rshares": "112698523", - "voter": "tonimontana.neo" - }, - { - "rshares": "6320157222", - "voter": "blocktvnews" - }, - { - "rshares": "2505300035", - "voter": "freemotherearth" - }, - { - "rshares": "9076651459", - "voter": "mowemu" - }, - { - "rshares": "209407353", - "voter": "keep-keep" - }, - { - "rshares": "8542306255", - "voter": "fenngen" - }, - { - "rshares": "15607662969", - "voter": "project007.leo" - }, - { - "rshares": "890443038", - "voter": "javb" - }, - { - "rshares": "586831069", - "voter": "autowin" - }, - { - "rshares": "27810294148", - "voter": "policewala" - }, - { - "rshares": "1915359156", - "voter": "sumatranate.leo" - }, - { - "rshares": "317788051", - "voter": "pjansen.leo" - }, - { - "rshares": "788397739", - "voter": "hatta.jahm" - }, - { - "rshares": "953272788", - "voter": "spinvest-neo" - }, - { - "rshares": "2845551546", - "voter": "redwarbull" - }, - { - "rshares": "1106795633", - "voter": "khalpal" - }, - { - "rshares": "2106660887", - "voter": "toni.curation" - }, - { - "rshares": "612942449", - "voter": "rehan.blog" - }, - { - "rshares": "952879977", - "voter": "keepit2" - }, - { - "rshares": "320871659", - "voter": "empoderat.leo" - }, - { - "rshares": "93034936", - "voter": "toni.pal" - }, - { - "rshares": "329440127", - "voter": "bela29" - }, - { - "rshares": "1990636792", - "voter": "bcm.dblog" - }, - { - "rshares": "25775172786", - "voter": "solairibot" - }, - { - "rshares": "51169561260", - "voter": "davidlionfish" - }, - { - "rshares": "6201318678", - "voter": "platino94" - }, - { - "rshares": "5375865664", - "voter": "willielow" - }, - { - "rshares": "720421157", - "voter": "achim03.leo" - }, - { - "rshares": "1621236077", - "voter": "phython" - }, - { - "rshares": "6298270716", - "voter": "cizolf" - }, - { - "rshares": "4430905690", - "voter": "spiritweb" - }, - { - "rshares": "5213784595", - "voter": "adamdabeast" - }, - { - "rshares": "2199232889", - "voter": "fengchao" - }, - { - "rshares": "1179014572", - "voter": "solcycler" - }, - { - "rshares": "107884551115", - "voter": "abundance.tribe" - }, - { - "rshares": "3358208480", - "voter": "thisismylife" - }, - { - "rshares": "299663012241", - "voter": "reggaejahm" - }, - { - "rshares": "1738649054", - "voter": "green-finger" - }, - { - "rshares": "73367803565", - "voter": "gitplait" - }, - { - "rshares": "615315573752", - "voter": "softworld" - }, - { - "rshares": "5683817127", - "voter": "arlettemsalase" - }, - { - "rshares": "17899878044", - "voter": "blocktokens" - }, - { - "rshares": "554859143", - "voter": "ninnu" - }, - { - "rshares": "1104706750", - "voter": "kennysgaminglife" - }, - { - "rshares": "1916045647", - "voter": "archon-mining" - }, - { - "rshares": "0", - "voter": "galaxy100" - }, - { - "rshares": "6822132035", - "voter": "rz1996" - }, - { - "rshares": "532753259", - "voter": "zemiatin1" - }, - { - "rshares": "7228460", - "voter": "curation.bot" - }, - { - "rshares": "331507243849", - "voter": "ronavel" - }, - { - "rshares": "289274837", - "voter": "kingturk" - }, - { - "rshares": "1246147983", - "voter": "hivebuilderteam" - }, - { - "rshares": "2727997057", - "voter": "anafae" - }, - { - "rshares": "0", - "voter": "graythor" - }, - { - "rshares": "11754745535", - "voter": "hivecur2" - }, - { - "rshares": "653996915", - "voter": "multius" - }, - { - "rshares": "0", - "voter": "yshiyshi" - } + "links": [ + "https://postimg.org/image/fui5jn551/", + "https://www.google.de/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwiU_vePvpHPAhVhJJoKHfEjAjEQFghJMAA&url=https%3A%2F%2Fwww.drgoerg.com%2Fen%2F&usg=AFQjCNGRVxYdyD04Ogm6T_WXZbejaKobyg&sig2=VMpccXoYQ8oXclIYq5y0vg", + "https://steemit.com/@allesgruen", + "https://steemit.com/food/@allesgruen/die-leckerste-und-gesuendeste-rohkost-schokolade-der-welt", + "https://steemit.com/@knozaki2015" ], - "author": "taskmaster4450", - "author_payout_value": "0.000 HBD", - "author_reputation": 79.39, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "This is a concept that I started to write a bit about a few years back. At that time, it was not clear where things were going. The idea of security tokens was just gaining a bit of exposure. Nevertheless, it was something that I saw as an important step forward.\n\nAs with anything in cryptocurrency (technology in general), the benefits will depend upon how things are structured. Unfortunately, the challenge with security tokens is the concept that the regulators are the ones in charge. That is the drawback to the existing system. Instead of protecting the public, they simply keep the existing system in operation. Those that are benefiting are given an even larger leg up.\n\nCryptocurrency has the ability to change this. Rather than having the \"accredited investor\" as the one who can benefit, we can structure things in a way where the average person is able to participate. Over time, this would be a path to not only enormous wealth generation but also distribution.\n\nYesterday, @coyotelation put up a post about a project that is going to take cryptocurrency for the prospect of mining gold. In other words, people will have the opportunity to buy into land that will be used for gold mining.\n\n>Now in Brazil, more precisely on the Dois Irm\u00e3os farm, in Amazonas, she was chosen to undergo the procedures to become a cryptoproperty in the Ethereum network. All investors will be able to acquire a type of lot and they will be like the owners of that place and all this through a digital asset.\n\n>The farm was divided into smaller pieces and altogether we will have 100 million Cryptau (AM1) tokens being represented by property. It means that if you have to buy 1 Cryptau, you will own 1 / 100,000,000 of the farm's property right.\n\n
[Source](https://leofinance.io/hive-167922/@coyotelation/gold-farm-in-amazonas-to-be-tokenized-cryptoproperty-will-be-a-reality-in-brazil#@taskmaster4450le/qd2n8i)
\n\nHere we see the idea of tokenization in action. Without having all the details, we are unsure how much each other will go for. Nevertheless, as we can see by the design, fractional ownership is being offered. One Cryptau gives an individual 1/1 millionth of the property rights. This is the epitome of tokenization.\n\nImagine all the people around the world who could come up with a few dollars for the token. Let us say the project is $5 million (just a guess). This would break down to $5 per token, providing an opportunity for a nice return.\n\nOf course, there are major risks with gold mining and nothing is guaranteed. What is interesting about this project is the fact that it provides the rights to the land. Typically this means that the land can be leased to actual miners who pay a royalty to the land owner. This usually runs between 10%-20% of what they get out of the ground.\n\n*This project is used as an example and not as an endorsement of the project.*\n\nhttps://theblockchainland.com/wp-content/uploads/2019/12/real-estate-tokenization-2019-recap-blockchainLand-780x405.jpg\n
[Source](https://theblockchainland.com/wp-content/uploads/2019/12/real-estate-tokenization-2019-recap-blockchainLand-780x405.jpg)
\n\nImagine being able to own pieces in thousands of different businesses. Obviously, this is possible through the equities markets. However, there are standards and levels of money required to operate there. Also, small businesses cannot meet the requirements to get listed since it is such an expensive process.\n\nThus, we can see tokenization as a viable avenue where people can invest in smaller entities that provide a nice return. The business owners have access to the capital whereas presently, they are locked out. Their expertise is still used to make the enterprise more valuable while the return is spread to people all over the world.\n\nMy view is the ultimate goal is to use this process as automation becomes a bigger part of our world. Tokenized companies that are autonomous is exactly what is needed. The world will not be a very happy place if automation takes over and it is in the hands of a few mega-technology companies. Under these circumstances, automation will only create a dystopian future.\n\nThe key is to offer equality in opportunity. With what we see established so far, the world of cryptocurrency has few requirements. As long as there is some type of smart device and an internet connection, all are welcomed. Any individual can start building by participating in different platforms, ones that start to reward for activities undertaken.\n\nHere we see the first step in wealth accumulation. Getting some money together is always needed. Being rewarded for playing a game, as an example, could be the seed money needed to invest in a gold mining operation in Brazil. From here, the payoff couple be rather nice.\n\nhttps://miro.medium.com/max/3824/1*hWpM3R2UZbixAR4Fw3bN8A.png\n
[Source](https://miro.medium.com/max/3824/1*hWpM3R2UZbixAR4Fw3bN8A.png)
\n\nReal estate can obviously offer tremendous opportunities. In fact, it is one of the most discussed areas pertaining to security tokens. Of course, when this is brought up, it is usually multi-million dollar projects.\n\nWhile those can hold potential, perhaps all that is needed for a solid return is to invest in a duplex in Des Moines. Imagine being able to take some of your rewards from the Hive blockchain and putting it to work in an investment such as this. That could provide a solid return for decades.\n\nMoving into other areas that are not exotic yet can be very lucrative. \n\nHere is a question: have you ever negotiated with a plumber? The answer is likely no. It seems when a plumber is called, things are all backed up. Most just want the problem fixed, not really concerned about saving a few dollars. It is no wonder that we rarely see plumbing companies going out of business.\n\nHow would you like to own a piece of a plumbing company? Again, wouldn't it be great to take some of the rewards from Hive (or any blockchain) and have a piece of a small plumbing company somewhere. I would imagine that could provide steady returns.\n\nhttps://thenextavenue.com/wp-content/uploads/2020/04/tesla-model-3-china-2019-001-min.png\n
[Source](https://thenextavenue.com/wp-content/uploads/2020/04/tesla-model-3-china-2019-001-min.png)
\n\nOr we could go a bit more futuristic and look at the robo-taxis Elon Musk is trying to set up. His vision is to give each Tesla owner the option of turning the vehicle into a working asset. Through the autonomous driving capability, each car could end up generating revenue.\n\nHow about putting together a token that enables a Tesla to be purchased and operate in this capacity? This could be done after the car is bought by the owner or as a way of funding the acquisition. Ultimately, since each Tesla is a business, an individual might be able to buy pieces in many different cars around the world.\n\nCryptocurrency offers the opportunity to create new business structures. This will certainly help deal with many of the wealth distribution problems that exist today. Of course, that will not happen if we allow a digitized version of our present economy to form. This is what the existing powers are trying to do.\n\nI said in a recent video that our answer to the power grabs by governments and big business is to go wide. We need to spread ourselves out in many different directions. Elimination of the single point of entry is vital. This means that we operate on a smaller scale, focusing upon those assets that are overlooked by the regulators and governments of the world. \n\nAfter all, the SEC is not looking at some farm in Brazil as a project to go after. Yet, if we can do a few million of these projects around the world, the regulators will have little choice in the matter. By that time it is too late.\n\n___\nIf you found this article informative, please give an upvote and rehive.\n\n\n\nhttps://images.hive.blog/0x0/https://files.peakd.com/file/peakd-hive/doze/MkkDNhyH-2020_04_13_16_57_48.gif\n\ngif by @doze\n\n![image.png](https://files.peakd.com/file/peakd-hive/taskmaster4450/AyvHLP0Q-image.png)\n\nPosted Using [LeoFinance](https://leofinance.io/@taskmaster4450/the-future-tokenizing-businesses)", - "category": "hive-167922", - "children": 4, - "community": "hive-167922", - "community_title": "LeoFinance", - "created": "2020-07-07T13:53:18", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "leofinance/0.1", - "canonical_url": "https://leofinance.io/@taskmaster4450/the-future-tokenizing-businesses", - "format": "markdown", - "image": [ - "https://theblockchainland.com/wp-content/uploads/2019/12/real-estate-tokenization-2019-recap-blockchainLand-780x405.jpg", - "https://miro.medium.com/max/3824/1*hWpM3R2UZbixAR4Fw3bN8A.png", - "https://thenextavenue.com/wp-content/uploads/2020/04/tesla-model-3-china-2019-001-min.png", - "https://images.hive.blog/0x0/https://files.peakd.com/file/peakd-hive/doze/MkkDNhyH-2020_04_13_16_57_48.gif", - "https://files.peakd.com/file/peakd-hive/taskmaster4450/AyvHLP0Q-image.png" - ], - "links": [ - "https://leofinance.io/hive-167922/@coyotelation/gold-farm-in-amazonas-to-be-tokenized-cryptoproperty-will-be-a-reality-in-brazil#@taskmaster4450le/qd2n8i", - "https://theblockchainland.com/wp-content/uploads/2019/12/real-estate-tokenization-2019-recap-blockchainLand-780x405.jpg", - "https://miro.medium.com/max/3824/1*hWpM3R2UZbixAR4Fw3bN8A.png", - "https://thenextavenue.com/wp-content/uploads/2020/04/tesla-model-3-china-2019-001-min.png" - ], - "tags": [ - "cryptocurrency", - "business", - "tokenization", - "leofinance", - "mining", - "investment", - "telokanda", - "palnet", - "neoxian" - ], - "users": [ - "coyotelation", - "doze" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 96316895838836, - "payout": 38.839, - "payout_at": "2020-07-14T13:53:18", - "pending_payout_value": "38.839 HBD", - "percent_steem_dollars": 0, - "permlink": "the-future-tokenizing-businesses", - "post_id": 86932714, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 440 - }, - "title": "The Future: Tokenizing Businesses", - "updated": "2020-07-07T13:53:18", - "url": "/hive-167922/@taskmaster4450/the-future-tokenizing-businesses" - }, - { - "active_votes": [ - { - "rshares": "14358579878", - "voter": "tombstone" - }, - { - "rshares": "6312019562745", - "voter": "acidyo" - }, - { - "rshares": "852671384149", - "voter": "kevinwong" - }, - { - "rshares": "193484869262", - "voter": "gerber" - }, - { - "rshares": "538309128", - "voter": "kosimoos" - }, - { - "rshares": "58853346755", - "voter": "daan" - }, - { - "rshares": "211859147815", - "voter": "ezzy" - }, - { - "rshares": "3366354611", - "voter": "mrwang" - }, - { - "rshares": "15676614156200", - "voter": "livingfree" - }, - { - "rshares": "74167122558", - "voter": "jeffjagoe" - }, - { - "rshares": "63526179326", - "voter": "arcange" - }, - { - "rshares": "251521862691", - "voter": "exyle" - }, - { - "rshares": "5012722255", - "voter": "sharker" - }, - { - "rshares": "3551444099", - "voter": "arconite" - }, - { - "rshares": "1685322181", - "voter": "raphaelle" - }, - { - "rshares": "178782810966", - "voter": "webdeals" - }, - { - "rshares": "4018645162", - "voter": "kibela" - }, - { - "rshares": "539048935", - "voter": "alinalazareva" - }, - { - "rshares": "5318293760781", - "voter": "jphamer1" - }, - { - "rshares": "71671336988", - "voter": "shanghaipreneur" - }, - { - "rshares": "593835533276", - "voter": "bryan-imhoff" - }, - { - "rshares": "9509546199", - "voter": "anech512" - }, - { - "rshares": "54258769652", - "voter": "netaterra" - }, - { - "rshares": "36397112374", - "voter": "someguy123" - }, - { - "rshares": "4178910773", - "voter": "ebargains" - }, - { - "rshares": "39616246568", - "voter": "okean123" - }, - { - "rshares": "992443826394", - "voter": "redes" - }, - { - "rshares": "17857752607371", - "voter": "created" - }, - { - "rshares": "2051476643", - "voter": "mow" - }, - { - "rshares": "8718479600", - "voter": "cardboard" - }, - { - "rshares": "22476998667", - "voter": "rahul.stan" - }, - { - "rshares": "4901914059", - "voter": "privex" - }, - { - "rshares": "3735359535", - "voter": "sudutpandang" - }, - { - "rshares": "119982403177", - "voter": "markkujantunen" - }, - { - "rshares": "424224060807", - "voter": "teammo" - }, - { - "rshares": "134267679222", - "voter": "louisthomas" - }, - { - "rshares": "3131372255", - "voter": "lordneroo" - }, - { - "rshares": "10263235757", - "voter": "frankk" - }, - { - "rshares": "9925340766", - "voter": "dune69" - }, - { - "rshares": "951693524764", - "voter": "smasssh" - }, - { - "rshares": "1397916286", - "voter": "frankydoodle" - }, - { - "rshares": "29969421696", - "voter": "eliel" - }, - { - "rshares": "12935829967", - "voter": "stackin" - }, - { - "rshares": "26388392579", - "voter": "jerrybanfield" - }, - { - "rshares": "267011727124", - "voter": "drag33" - }, - { - "rshares": "5511778738", - "voter": "mys" - }, - { - "rshares": "77722703006", - "voter": "ironshield" - }, - { - "rshares": "2872883940", - "voter": "varunpinto" - }, - { - "rshares": "1685016373", - "voter": "improv" - }, - { - "rshares": "1177268066", - "voter": "rycharde" - }, - { - "rshares": "3322576181", - "voter": "mxzn" - }, - { - "rshares": "29898861060", - "voter": "steeminator3000" - }, - { - "rshares": "589650131997", - "voter": "enjar" - }, - { - "rshares": "133019921822", - "voter": "maxer27" - }, - { - "rshares": "132766653586", - "voter": "ammonite" - }, - { - "rshares": "239504132505", - "voter": "ew-and-patterns" - }, - { - "rshares": "1217314879", - "voter": "avisk" - }, - { - "rshares": "2109267115", - "voter": "whd" - }, - { - "rshares": "4455342848", - "voter": "d-pend" - }, - { - "rshares": "18373017586", - "voter": "furious-one" - }, - { - "rshares": "8879963818", - "voter": "gniksivart" - }, - { - "rshares": "495776731", - "voter": "raili" - }, - { - "rshares": "147636651546", - "voter": "runicar" - }, - { - "rshares": "78972364409", - "voter": "goldkey" - }, - { - "rshares": "29116240320", - "voter": "codingdefined" - }, - { - "rshares": "938792574", - "voter": "shitsignals" - }, - { - "rshares": "1826195108697", - "voter": "themarkymark" - }, - { - "rshares": "73605193295", - "voter": "nathanmars" - }, - { - "rshares": "1176299854406", - "voter": "steemvote" - }, - { - "rshares": "383131388965", - "voter": "vikisecrets" - }, - { - "rshares": "254218334036", - "voter": "investingpennies" - }, - { - "rshares": "2562177344", - "voter": "stinawog" - }, - { - "rshares": "31530346887", - "voter": "pardeepkumar" - }, - { - "rshares": "13167228483", - "voter": "felander" - }, - { - "rshares": "10016949825", - "voter": "santigs" - }, - { - "rshares": "199181850480", - "voter": "karja" - }, - { - "rshares": "395642001119", - "voter": "coruscate" - }, - { - "rshares": "3456226542", - "voter": "noloafing" - }, - { - "rshares": "3614508118", - "voter": "fbslo" - }, - { - "rshares": "50887777653", - "voter": "accelerator" - }, - { - "rshares": "4284839059414", - "voter": "buildawhale" - }, - { - "rshares": "1211460779", - "voter": "yogacoach" - }, - { - "rshares": "680116288", - "voter": "estream.studios" - }, - { - "rshares": "656626408168", - "voter": "therealwolf" - }, - { - "rshares": "2823798382", - "voter": "deathwing" - }, - { - "rshares": "345556381123", - "voter": "revisesociology" - }, - { - "rshares": "766751293", - "voter": "rakkasan84" - }, - { - "rshares": "3145700980531", - "voter": "yabapmatt" - }, - { - "rshares": "51518621352", - "voter": "littleboy" - }, - { - "rshares": "20897257884", - "voter": "makerhacks" - }, - { - "rshares": "46250762272", - "voter": "miti" - }, - { - "rshares": "10059748681", - "voter": "caladan" - }, - { - "rshares": "66418626962", - "voter": "emrebeyler" - }, - { - "rshares": "134340334481", - "voter": "smartsteem" - }, - { - "rshares": "33435154925", - "voter": "mytechtrail" - }, - { - "rshares": "1036902096", - "voter": "funtraveller" - }, - { - "rshares": "3608914243", - "voter": "enjoyinglife" - }, - { - "rshares": "3317970780", - "voter": "fourfourfun" - }, - { - "rshares": "6529325093", - "voter": "upmyvote" - }, - { - "rshares": "126375715339", - "voter": "aussieninja" - }, - { - "rshares": "2571134424", - "voter": "bluenarcolepsy" - }, - { - "rshares": "29562254239", - "voter": "adityajainxds" - }, - { - "rshares": "8936278968", - "voter": "kiwibloke" - }, - { - "rshares": "1129426694782", - "voter": "upmewhale" - }, - { - "rshares": "70518265189", - "voter": "nealmcspadden" - }, - { - "rshares": "56772046850", - "voter": "curx" - }, - { - "rshares": "27391658278", - "voter": "tntdabomb" - }, - { - "rshares": "151971704739", - "voter": "piotrgrafik" - }, - { - "rshares": "43174282154", - "voter": "purefood" - }, - { - "rshares": "15997989585", - "voter": "enmaart" - }, - { - "rshares": "19973478880", - "voter": "portugalcoin" - }, - { - "rshares": "559293120", - "voter": "cfminer" - }, - { - "rshares": "27954458200", - "voter": "jjangdol69" - }, - { - "rshares": "120797618645", - "voter": "chronocrypto" - }, - { - "rshares": "3415482695", - "voter": "simoneg" - }, - { - "rshares": "5586597538", - "voter": "cadawg" - }, - { - "rshares": "854600681", - "voter": "gavinatorial" - }, - { - "rshares": "12842368794", - "voter": "kristves" - }, - { - "rshares": "1717950414", - "voter": "ericburgoyne" - }, - { - "rshares": "21417852374", - "voter": "photohunt" - }, - { - "rshares": "1063671344", - "voter": "photohunter4" - }, - { - "rshares": "1155837775", - "voter": "pkocjan" - }, - { - "rshares": "1359377436", - "voter": "ofildutemps" - }, - { - "rshares": "2245166568", - "voter": "ipromote" - }, - { - "rshares": "520431291474", - "voter": "mindtrap" - }, - { - "rshares": "1586407432", - "voter": "russellstockley" - }, - { - "rshares": "40714305425", - "voter": "jagoe" - }, - { - "rshares": "10819611034", - "voter": "cruisin" - }, - { - "rshares": "2038191108", - "voter": "frassman" - }, - { - "rshares": "61401304940", - "voter": "scottshots" - }, - { - "rshares": "694386925", - "voter": "beleg" - }, - { - "rshares": "84213442069", - "voter": "bil.prag" - }, - { - "rshares": "10214176447", - "voter": "bestboom" - }, - { - "rshares": "13294331203", - "voter": "abrockman" - }, - { - "rshares": "93567682071", - "voter": "ronaldoavelino" - }, - { - "rshares": "11395700850", - "voter": "goldvault" - }, - { - "rshares": "117082335497", - "voter": "dera123" - }, - { - "rshares": "31295941525", - "voter": "flaxz" - }, - { - "rshares": "25330814900", - "voter": "m2nnari" - }, - { - "rshares": "10807952546", - "voter": "freddio" - }, - { - "rshares": "1764555081", - "voter": "blainjones" - }, - { - "rshares": "8968924182", - "voter": "sholi" - }, - { - "rshares": "893108696", - "voter": "sustainablelivin" - }, - { - "rshares": "29887493104", - "voter": "tsnaks" - }, - { - "rshares": "61431940023", - "voter": "tresor" - }, - { - "rshares": "7972597355230", - "voter": "julialee66" - }, - { - "rshares": "79145699726", - "voter": "promobot" - }, - { - "rshares": "25704599315", - "voter": "superlao" - }, - { - "rshares": "716794321", - "voter": "glodniwiedzy" - }, - { - "rshares": "2842208147", - "voter": "mrs.goldkey" - }, - { - "rshares": "370907646896", - "voter": "steem.services" - }, - { - "rshares": "77670078093", - "voter": "pladozero" - }, - { - "rshares": "289872208820", - "voter": "nateaguila" - }, - { - "rshares": "2547364003", - "voter": "archisteem" - }, - { - "rshares": "1080319989", - "voter": "krbecrypto" - }, - { - "rshares": "183294401007", - "voter": "digital.mine" - }, - { - "rshares": "10229746649", - "voter": "linco" - }, - { - "rshares": "1529316770", - "voter": "swisswitness" - }, - { - "rshares": "101358499731", - "voter": "luca1777" - }, - { - "rshares": "325803435141", - "voter": "apshamilton" - }, - { - "rshares": "4822104090", - "voter": "milaan" - }, - { - "rshares": "15532693486", - "voter": "abcor" - }, - { - "rshares": "430916680", - "voter": "abduljalill" - }, - { - "rshares": "518329247451", - "voter": "hamismsf" - }, - { - "rshares": "301562935934", - "voter": "dalz" - }, - { - "rshares": "48079549768", - "voter": "yaelg" - }, - { - "rshares": "669399524", - "voter": "julian2013" - }, - { - "rshares": "33424463428", - "voter": "dlike" - }, - { - "rshares": "3059771256", - "voter": "gorbisan" - }, - { - "rshares": "2062899297", - "voter": "rayshiuimages" - }, - { - "rshares": "35927208725", - "voter": "engrave" - }, - { - "rshares": "342923842278", - "voter": "bengiles" - }, - { - "rshares": "14868444233", - "voter": "bluengel" - }, - { - "rshares": "1039643732", - "voter": "bobby.madagascar" - }, - { - "rshares": "42584033", - "voter": "laissez-faire" - }, - { - "rshares": "2898594848", - "voter": "silverkey" - }, - { - "rshares": "12394539609", - "voter": "silvervault" - }, - { - "rshares": "4804059307", - "voter": "cryptycoon" - }, - { - "rshares": "5092580723", - "voter": "cryptoclerk" - }, - { - "rshares": "39898513297", - "voter": "mister-meeseeks" - }, - { - "rshares": "28915436478", - "voter": "merlin7" - }, - { - "rshares": "1268259901563", - "voter": "brianoflondon" - }, - { - "rshares": "15326643436", - "voter": "followjohngalt" - }, - { - "rshares": "1833121048235", - "voter": "michealb" - }, - { - "rshares": "98123780989", - "voter": "vcs" - }, - { - "rshares": "110153914755", - "voter": "marki99" - }, - { - "rshares": "43292414670", - "voter": "francescomai" - }, - { - "rshares": "994901778", - "voter": "infinite-love" - }, - { - "rshares": "527774944384", - "voter": "jpbliberty" - }, - { - "rshares": "60805168728", - "voter": "steem-on-2020" - }, - { - "rshares": "53547426435", - "voter": "robmojo" - }, - { - "rshares": "4305122772", - "voter": "jacuzzi" - }, - { - "rshares": "13951425525", - "voter": "steemstorage" - }, - { - "rshares": "702807838", - "voter": "seekingalpha" - }, - { - "rshares": "1248448577782", - "voter": "agent14" - }, - { - "rshares": "263953200065", - "voter": "circa" - }, - { - "rshares": "775641414", - "voter": "steemitmonsters" - }, - { - "rshares": "19912627", - "voter": "yff" - }, - { - "rshares": "53344414", - "voter": "limka" - }, - { - "rshares": "935139295", - "voter": "abbenay" - }, - { - "rshares": "468880666", - "voter": "smileyboy" - }, - { - "rshares": "12723671182", - "voter": "holydog" - }, - { - "rshares": "488781458102", - "voter": "ttg" - }, - { - "rshares": "7929967284", - "voter": "kramgelo" - }, - { - "rshares": "608960363955", - "voter": "claudio83" - }, - { - "rshares": "21205364869", - "voter": "maryincryptoland" - }, - { - "rshares": "965438837", - "voter": "bergelmirsenpai" - }, - { - "rshares": "4340137592", - "voter": "epicdice" - }, - { - "rshares": "6722426610", - "voter": "sirbush" - }, - { - "rshares": "5841441845", - "voter": "gulf41" - }, - { - "rshares": "59776926895", - "voter": "wayneney" - }, - { - "rshares": "1847310031", - "voter": "hjlee119" - }, - { - "rshares": "9030996534494", - "voter": "likwid" - }, - { - "rshares": "83096388548", - "voter": "ph1102" - }, - { - "rshares": "6516992415", - "voter": "nicollefiallo" - }, - { - "rshares": "897703319", - "voter": "mosquito76" - }, - { - "rshares": "6759250114", - "voter": "map10k" - }, - { - "rshares": "518706304", - "voter": "vxc" - }, - { - "rshares": "1132761304", - "voter": "milu-the-dog" - }, - { - "rshares": "54993247694", - "voter": "asmr.tist" - }, - { - "rshares": "934050452", - "voter": "triplea.bot" - }, - { - "rshares": "71075139764", - "voter": "steem.leo" - }, - { - "rshares": "1186697444", - "voter": "bizventures" - }, - { - "rshares": "2194185966", - "voter": "freddio.sport" - }, - { - "rshares": "15342821494", - "voter": "asteroids" - }, - { - "rshares": "2652618140", - "voter": "maddogmike" - }, - { - "rshares": "3144763028", - "voter": "thranax" - }, - { - "rshares": "19985866760", - "voter": "soyunasantacruz" - }, - { - "rshares": "40579578345", - "voter": "botante" - }, - { - "rshares": "11573247620", - "voter": "lisamgentile1961" - }, - { - "rshares": "21574923459", - "voter": "iamraincrystal" - }, - { - "rshares": "1827408752", - "voter": "elianaicgomes" - }, - { - "rshares": "143029702032", - "voter": "bradleyarrow" - }, - { - "rshares": "7049858556", - "voter": "pukeko" - }, - { - "rshares": "2437086161", - "voter": "maxuva" - }, - { - "rshares": "20906158607", - "voter": "maxuvd" - }, - { - "rshares": "26755176050", - "voter": "maxuve" - }, - { - "rshares": "3322491148", - "voter": "hongdangmu" - }, - { - "rshares": "10598665638", - "voter": "chris-uk" - }, - { - "rshares": "6341710795", - "voter": "blocktvnews" - }, - { - "rshares": "0", - "voter": "gerbo" - }, - { - "rshares": "2117858764", - "voter": "upmewhale.team" - }, - { - "rshares": "2417444951", - "voter": "crimianales" - }, - { - "rshares": "24640010859", - "voter": "policewala" - }, - { - "rshares": "8895668205", - "voter": "fearlessgu" - }, - { - "rshares": "4387588454", - "voter": "sacrosanct" - }, - { - "rshares": "3935940775", - "voter": "delilhavores" - }, - { - "rshares": "11545189361", - "voter": "roamingsparrow" - }, - { - "rshares": "1193397716", - "voter": "gmlrecordz" - }, - { - "rshares": "848281042", - "voter": "ribary" - }, - { - "rshares": "1933820210", - "voter": "jeffmackinnon" - }, - { - "rshares": "2407077237", - "voter": "garlet" - }, - { - "rshares": "27930319893", - "voter": "juanvegetarian" - }, - { - "rshares": "844158225", - "voter": "kgsupport" - }, - { - "rshares": "2151636387", - "voter": "bilpcoinbpc" - }, - { - "rshares": "16083718456", - "voter": "mice-k" - }, - { - "rshares": "1970710828", - "voter": "bcm.dblog" - }, - { - "rshares": "1320889737", - "voter": "curamax" - }, - { - "rshares": "513249877", - "voter": "steemcityrewards" - }, - { - "rshares": "657967988", - "voter": "dpend.active" - }, - { - "rshares": "15830342390", - "voter": "opochtli" - }, - { - "rshares": "2198209039", - "voter": "fengchao" - }, - { - "rshares": "0", - "voter": "dagadu" - }, - { - "rshares": "341995172212", - "voter": "hiveyoda" - }, - { - "rshares": "2571429984", - "voter": "robwillmann" - }, - { - "rshares": "1721170975", - "voter": "green-finger" - }, - { - "rshares": "12203018470", - "voter": "nulledgh0st" - }, - { - "rshares": "5318494795", - "voter": "unklebonehead" - }, - { - "rshares": "472300601108", - "voter": "softworld" - }, - { - "rshares": "7208018113", - "voter": "polish.hive" - }, - { - "rshares": "343891943236", - "voter": "quello" - }, - { - "rshares": "66945145957", - "voter": "dcityrewards" - }, - { - "rshares": "871723695", - "voter": "marvschurchill1" - }, - { - "rshares": "1494374157", - "voter": "ninnu" - }, - { - "rshares": "67002085032", - "voter": "hivelander" - }, - { - "rshares": "91361835281", - "voter": "ghaazi" - }, - { - "rshares": "3273543580", - "voter": "hivehustlers" - }, - { - "rshares": "67557174903", - "voter": "hivecur" - }, - { - "rshares": "621084653", - "voter": "improbableliason" - }, - { - "rshares": "0", - "voter": "mutabor78" - }, - { - "rshares": "0", - "voter": "graythor" - }, - { - "rshares": "745889831", - "voter": "hivecur2" - }, - { - "rshares": "0", - "voter": "oyintari9" - } + "tags": [ + "food", + "minnowsunite", + "steemsquad", + "vegan", + "recipe" ], - "author": "cryptofinally", - "author_payout_value": "0.000 HBD", - "author_reputation": 70.69, - "beneficiaries": [], - "blacklists": [], - "body": "Yesterday my Instagram account @CryptoFinally, alongside @Coruscate (GirlGoneCrypto) & another woman who we collaborate with, Tech With Catalina, all had our Instagrams permanently disabled and banned. This comes in the wake of the recent Binance influencer awards, and my vocalization of the gender disparity in the blockchain space.\n\nCointelegraph has covered the situation for you to catch up:\nhttps://cointelegraph.com/news/three-female-binance-award-nominees-get-blocked-from-instagram\n\n\n![1434_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy80YWI2Zjc3YmEzYmUyN2M1NTVmMWZmNjc5NWFiM2JhYi5qcGc=.jpg](https://images.hive.blog/DQmaSb21dMvXbwygiYyFvbbwrUJo5pdAkHjaWFpGBdJMrP4/1434_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy80YWI2Zjc3YmEzYmUyN2M1NTVmMWZmNjc5NWFiM2JhYi5qcGc=.jpg)\n\n\nI will be posting a more detailed account of what happened today!\n\nIt's moments like these that we must move towards decentralized social platforms like Hive. Thank you all for being the best community, in the best place, where things like this can not happen. \n\n\ud83d\udcabCryptoFinally:\nYouTube: \u200bhttps://www.youtube.com/CryptoFinally\nTwitter: \u200bhttps://twitter.com/CryptoFinally\nInstagram: \u200bhttps://www.instagram.com/cryptofinally/\nFacebook: \u200bhttps://www.facebook.com/CryptoFinally\nLBRY: \u200bhttps://lbry.tv/@cryptofinally\n\n\ud83d\udd8aCryptoFinally Blogs:\nHive: \u200bhttps://hive.blog/@cryptofinally\nMinds: \u200bhttps://www.minds.com/cryptofinally\nFlote: https://flote.app/CryptoFinally\nSoMee: \u200bhttps://somee.social/profile/cryptofinally\n\n\ud83d\udcf8CryptoFinally Livestreams:\nDLive: \u200bhttps://dlive.tv/CryptoFinally\nPeriscope: https://www.pscp.tv/CryptoFinally/\n\n\ud83d\udcf9CryptoFinally Videos:\nYouTube: \u200bhttps://www.youtube.com/CryptoFinally\nLBRY: \u200bhttps://lbry.tv/@cryptofinally\nBitTubers: https://bittubers.com/profile/CryptoFinally\nBitChute: https://www.bitchute.com/channel/cryptofinally/\n3Speak: \u200bhttps://3speak.online/user/cryptofinally\nVibraVid: \u200bhttps://vibravid.io/users/CryptoFinally\n\n\ud83d\udc55Store: \u200bhttps://www.etsy.com/shop/CryptoFinally\n\n\ud83d\udcabWebsite: https://rachelsiegelnyc.com/\n\n\ud83d\udce5 Contact Crypto Finally \ud83d\udc49 CryptoFinally@gmail.com \n\nSupport ya girl:\nCryptoFinally Patreon: \u200bhttps://www.patreon.com/cryptofinally\nCryptoFinally Flote: \u200bhttps://flote.app/CryptoFinally\n\nBTC/Bitcoin: 3LHTvBX7wYmLhPfBiypDb8GDGHt5wGFTLV\n\nLTC/Litecoin: MJEyWvP3PPHQjbQhcWGWETgzHpkjnnXdst\n\n\ud83d\udcab Find All CryptoFinally Online: https://linktr.ee/cryptofinally \n\n\ud83d\udc4dGet Bitcoin Back:\nGet 20k Free Satoshis and up to 20% Bitcoin Back on Fold App:\nhttp://use.foldapp.com/r/wqbaCNXK\n\nFree $10 in Bitcoin & Bitcoin Back on Lolli: \u200bhttps://lolli.com/ref/xLdoJ9Z8RU\n\nGet $2.50 Free Bitcoin & Bitcoin Back with Pei: \u200bhttps://getpei.com/\u200b (Use code CRYPTOFINALLY)\n\n\ud83d\udcbb Helpful links & resources for starting in Cryptocurrency \ud83d\udc47\n\n\ud83d\udcdaHODL gang for life & on your way to being a #Bitcoin billionaire? Just getting started? Tired of asking people what is Bitcoin? Or what is Cryptocurrency? Coindesk offers awesome resources to learn about Bitcoin & Blockchain, for newcomers and HODLers alike. \n\ud83d\udcd7A Beginners Guide to Blockchain Technology by Coindesk : https://www.coindesk.com/information/\n\n\ud83d\udcdaQuest for blockchain knowledge never over? Still asking yourself what is Bitcoin & what is blockchain? Wondering how to use Bitcoin? Blockgeeks offers a great article on #Blockchain technology. Be sure to check out these resources about Bitcoin for beginners & Blockchain for beginners:\n\ud83d\udcd5What is Blockchain Technology? A Step by Step Guide for Beginners by Blockgeeks : https://blockgeeks.com/guides/what-is... \n\n\ud83d\udcf0Looking for up to date Crypto News? Searched everywhere but can\u2019t find Bitcoin news? Wondering where you can get Bitcoin updates and #Cryptocurrency updates? Need to know the Bitcoin price now? Or Bitcoin price predictions for 2020? Try Cointelegraph, with new Bitcoin news and cryptocurrency news daily : https://cointelegraph.com/ \n\n\ud83d\udcf0Just in case you didn\u2019t get your fix of #BitcoinNews & #CryptoNews, try Bitcoin Magazine. With #CryptocurrencyNews, beginners guides to blockchain, beginners guides to Bitcoin, #Ethereum, #Ripple, #Altcoins, bitcoin wallets, #Crypto, cryptocurrency exchanges and more : https://bitcoinmagazine.com/\n\nThank you for watching my Bitcoin live streams & Cryptocurrency youtube videos, I hope you will continue to watch and subscribe to my cryptocurrency channel for updated crypto news, bitcoin news and more about the cryptocurrency market, bitcoin in media, bitcoin in movies and cryptocurrency AMAs! I\u2019m so glad you\u2019re interested in Bitcoin, Blockchain & cryptocurrency and hope I can help answer your questions about earning Bitcoin from home & how to use Bitcoin. Please reach out for more resources on what is Bitcoin & what is blockchain!", - "category": "hive", - "children": 16, - "created": "2020-07-07T12:18:33", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "hiveblog/0.1", - "format": "markdown", - "image": [ - "https://images.hive.blog/DQmaSb21dMvXbwygiYyFvbbwrUJo5pdAkHjaWFpGBdJMrP4/1434_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy80YWI2Zjc3YmEzYmUyN2M1NTVmMWZmNjc5NWFiM2JhYi5qcGc=.jpg" - ], - "links": [ - "https://cointelegraph.com/news/three-female-binance-award-nominees-get-blocked-from-instagram", - "https://www.youtube.com/CryptoFinally", - "https://twitter.com/CryptoFinally", - "https://www.instagram.com/cryptofinally/", - "https://www.facebook.com/CryptoFinally", - "https://lbry.tv/@cryptofinally", - "https://hive.blog/@cryptofinally", - "https://www.minds.com/cryptofinally", - "https://flote.app/CryptoFinally", - "https://somee.social/profile/cryptofinally", - "https://dlive.tv/CryptoFinally", - "https://www.pscp.tv/CryptoFinally/", - "https://bittubers.com/profile/CryptoFinally", - "https://www.bitchute.com/channel/cryptofinally/", - "https://3speak.online/user/cryptofinally", - "https://vibravid.io/users/CryptoFinally", - "https://www.etsy.com/shop/CryptoFinally", - "https://rachelsiegelnyc.com/", - "https://www.patreon.com/cryptofinally", - "https://linktr.ee/cryptofinally", - "http://use.foldapp.com/r/wqbaCNXK", - "https://lolli.com/ref/xLdoJ9Z8RU", - "https://getpei.com/\u200b", - "https://www.coindesk.com/information/", - "https://blockgeeks.com/guides/what-is", - "https://cointelegraph.com/", - "https://bitcoinmagazine.com/" - ], - "tags": [ - "hive", - "bitcoin", - "blockchain", - "cryptocurrency", - "decentralized", - "bitcoinnews", - "cryptonews", - "cryptocurrencynews" - ], - "users": [ - "cryptofinally", - "coruscate" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 97532051234603, - "payout": 39.314, - "payout_at": "2020-07-14T12:18:33", - "pending_payout_value": "39.314 HBD", - "percent_steem_dollars": 10000, - "permlink": "instagram-removes-cryptofinally-and-girlgonecrypto-x-cointelegraph", - "post_id": 86931560, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 278 - }, - "title": "Instagram Removes CryptoFinally & GirlGoneCrypto x CoinTelegraph", - "updated": "2020-07-07T12:18:33", - "url": "/hive/@cryptofinally/instagram-removes-cryptofinally-and-girlgonecrypto-x-cointelegraph" + "users": [ + "allesgruen", + "knozaki2015" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62692229771159, + "payout": 229.216, + "payout_at": "2016-09-22T14:24:12", + "pending_payout_value": "229.216 HBD", + "percent_hbd": 10000, + "permlink": "the-tastiest-and-healthiest-raw-chocolate-in-the-world", + "post_id": 1254417, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 232 + }, + "title": "The tastiest and healthiest raw chocolate in the world !!!", + "updated": "2016-09-15T14:24:12", + "url": "/food/@knozaki2015/the-tastiest-and-healthiest-raw-chocolate-in-the-world" }, { - "active_votes": [ - { - "rshares": "9410150046", - "voter": "mangou007" - }, - { - "rshares": "537388223749", - "voter": "mark-waser" - }, - { - "rshares": "15807484832003", - "voter": "livingfree" - }, - { - "rshares": "118905337797", - "voter": "webdeals" - }, - { - "rshares": "5532471197381", - "voter": "jphamer1" - }, - { - "rshares": "28776497370", - "voter": "bert0" - }, - { - "rshares": "76893998181", - "voter": "themanualbot" - }, - { - "rshares": "9457907406", - "voter": "leoplaw" - }, - { - "rshares": "541084974643", - "voter": "digital-wisdom" - }, - { - "rshares": "2100221268", - "voter": "ethical-ai" - }, - { - "rshares": "25690859458", - "voter": "jwaser" - }, - { - "rshares": "81511136409", - "voter": "petrvl" - }, - { - "rshares": "1271113455", - "voter": "ebargains" - }, - { - "rshares": "14973190357", - "voter": "bwaser" - }, - { - "rshares": "1564722665", - "voter": "ellepdub" - }, - { - "rshares": "162842032543", - "voter": "herpetologyguy" - }, - { - "rshares": "29901698274", - "voter": "morgan.waser" - }, - { - "rshares": "3779419179", - "voter": "handyman" - }, - { - "rshares": "2186487096", - "voter": "strong-ai" - }, - { - "rshares": "18005981723032", - "voter": "created" - }, - { - "rshares": "123430636885", - "voter": "felix.herrmann" - }, - { - "rshares": "35369924246", - "voter": "yadamaniart" - }, - { - "rshares": "1014118014", - "voter": "technoprogressiv" - }, - { - "rshares": "9175603632", - "voter": "saleg25" - }, - { - "rshares": "113585890356", - "voter": "federacion45" - }, - { - "rshares": "44701616725", - "voter": "melooo182" - }, - { - "rshares": "5664661985", - "voter": "kennyroy" - }, - { - "rshares": "313982919065", - "voter": "drag33" - }, - { - "rshares": "73150733141", - "voter": "ironshield" - }, - { - "rshares": "51678289584", - "voter": "arrliinn" - }, - { - "rshares": "13763121371", - "voter": "belahejna" - }, - { - "rshares": "25684325802", - "voter": "erangvee" - }, - { - "rshares": "280354373450", - "voter": "offgridlife" - }, - { - "rshares": "70583514337", - "voter": "yanes94" - }, - { - "rshares": "26826126310", - "voter": "dine77" - }, - { - "rshares": "1152799968129", - "voter": "steemvote" - }, - { - "rshares": "275508215050", - "voter": "investingpennies" - }, - { - "rshares": "23074606", - "voter": "travelingmercies" - }, - { - "rshares": "88499886464", - "voter": "masummim50" - }, - { - "rshares": "11609629455", - "voter": "santigs" - }, - { - "rshares": "24036020426", - "voter": "thelordsharvest" - }, - { - "rshares": "23697814194", - "voter": "pingcess" - }, - { - "rshares": "12056213885", - "voter": "divinekids" - }, - { - "rshares": "1520287551", - "voter": "flamingirl" - }, - { - "rshares": "30793181809", - "voter": "miti" - }, - { - "rshares": "98946042794", - "voter": "steemflow" - }, - { - "rshares": "1112330533992", - "voter": "communitycoin" - }, - { - "rshares": "1303378959", - "voter": "awesome-gadgets" - }, - { - "rshares": "633460606871", - "voter": "citizensmith" - }, - { - "rshares": "2457424619", - "voter": "godlovermel25" - }, - { - "rshares": "18132798779", - "voter": "scc664" - }, - { - "rshares": "1761298577", - "voter": "korinkrafting" - }, - { - "rshares": "152075444396", - "voter": "mmmmkkkk311" - }, - { - "rshares": "19918924318", - "voter": "steemvault" - }, - { - "rshares": "5394188587", - "voter": "fun2learn" - }, - { - "rshares": "10619729165", - "voter": "enmaart" - }, - { - "rshares": "529461488", - "voter": "abandi" - }, - { - "rshares": "35566756887", - "voter": "sportscontest" - }, - { - "rshares": "7359555902", - "voter": "best-strategy" - }, - { - "rshares": "930335934", - "voter": "gavinatorial" - }, - { - "rshares": "4230988770", - "voter": "lerma" - }, - { - "rshares": "532861929", - "voter": "nenya" - }, - { - "rshares": "23307557268", - "voter": "photohunt" - }, - { - "rshares": "756577066", - "voter": "photohunter1" - }, - { - "rshares": "1848839084", - "voter": "photohunter2" - }, - { - "rshares": "1156910832", - "voter": "photohunter4" - }, - { - "rshares": "1117531065", - "voter": "photohunter5" - }, - { - "rshares": "4353115065", - "voter": "royfletcher" - }, - { - "rshares": "5643707556", - "voter": "josevas217" - }, - { - "rshares": "2582244218", - "voter": "onepercentbetter" - }, - { - "rshares": "10606087751", - "voter": "adamada" - }, - { - "rshares": "1083691056849", - "voter": "jkramer" - }, - { - "rshares": "15194849800", - "voter": "francisftlp" - }, - { - "rshares": "2306743904389", - "voter": "midlet" - }, - { - "rshares": "7975372015806", - "voter": "julialee66" - }, - { - "rshares": "3093592920", - "voter": "coarebabes" - }, - { - "rshares": "55810480505", - "voter": "romeskie" - }, - { - "rshares": "497884517", - "voter": "merlion" - }, - { - "rshares": "60220616601", - "voter": "alejandra.her" - }, - { - "rshares": "21660487605", - "voter": "tiffcisme" - }, - { - "rshares": "840506010", - "voter": "rufruf" - }, - { - "rshares": "6165409181", - "voter": "sadbear" - }, - { - "rshares": "1346099282", - "voter": "rayshiuimages" - }, - { - "rshares": "10870160240", - "voter": "perazart" - }, - { - "rshares": "31342213", - "voter": "laissez-faire" - }, - { - "rshares": "3536019572", - "voter": "alexbiojs" - }, - { - "rshares": "19680931655", - "voter": "rowell" - }, - { - "rshares": "10196764555", - "voter": "javier.dejuan" - }, - { - "rshares": "540215268", - "voter": "zintarmortalis" - }, - { - "rshares": "596247786", - "voter": "natur-pur" - }, - { - "rshares": "26237128171", - "voter": "steemitcuration" - }, - { - "rshares": "744318761", - "voter": "memeteca" - }, - { - "rshares": "5580005997", - "voter": "rakk3187" - }, - { - "rshares": "1226348581", - "voter": "quenty" - }, - { - "rshares": "-121753598", - "voter": "dein-problem" - }, - { - "rshares": "3683135025", - "voter": "unit101" - }, - { - "rshares": "39479516215", - "voter": "theskmeister" - }, - { - "rshares": "5859107402", - "voter": "littlegurl747" - }, - { - "rshares": "1462697141", - "voter": "fire451" - }, - { - "rshares": "845913206", - "voter": "starfighter" - }, - { - "rshares": "765834886", - "voter": "seekingalpha" - }, - { - "rshares": "797246540", - "voter": "nimloth" - }, - { - "rshares": "7181462968", - "voter": "creary" - }, - { - "rshares": "338065323056", - "voter": "ctime" - }, - { - "rshares": "25794187732", - "voter": "tankometry" - }, - { - "rshares": "25633165138", - "voter": "jetometry" - }, - { - "rshares": "23079065445", - "voter": "rockstarbm" - }, - { - "rshares": "54024823", - "voter": "hungrybear" - }, - { - "rshares": "259531005101", - "voter": "apix" - }, - { - "rshares": "3170831439", - "voter": "steem-fund" - }, - { - "rshares": "20781409300", - "voter": "maryincryptoland" - }, - { - "rshares": "12531216463", - "voter": "scarletreaper" - }, - { - "rshares": "130218103755", - "voter": "morwen" - }, - { - "rshares": "1847969513", - "voter": "hjlee119" - }, - { - "rshares": "1151534074", - "voter": "klima" - }, - { - "rshares": "580067278", - "voter": "mosquito76" - }, - { - "rshares": "723574947", - "voter": "voodooranger" - }, - { - "rshares": "930277412", - "voter": "online-24-7" - }, - { - "rshares": "353104540055", - "voter": "votebetting" - }, - { - "rshares": "26983816603", - "voter": "botante" - }, - { - "rshares": "1576882547", - "voter": "midlet-creates" - }, - { - "rshares": "15902635750", - "voter": "knightsunited" - }, - { - "rshares": "4669762468", - "voter": "pukeko" - }, - { - "rshares": "1254694325660", - "voter": "rootdraws" - }, - { - "rshares": "3323663384", - "voter": "hongdangmu" - }, - { - "rshares": "678610883", - "voter": "jgb" - }, - { - "rshares": "4809654924", - "voter": "kryptoformator" - }, - { - "rshares": "16312783626", - "voter": "policewala" - }, - { - "rshares": "7625134323", - "voter": "roamingsparrow" - }, - { - "rshares": "35406189544", - "voter": "onchainart" - }, - { - "rshares": "1124923398", - "voter": "coin-doubler" - }, - { - "rshares": "321856812", - "voter": "bela29" - }, - { - "rshares": "1971398599", - "voter": "bcm.dblog" - }, - { - "rshares": "553022197", - "voter": "romytokic" - }, - { - "rshares": "33419329494957", - "voter": "darthknight" - }, - { - "rshares": "344776150725", - "voter": "hiveyoda" - }, - { - "rshares": "25325955071", - "voter": "creativemary" - }, - { - "rshares": "1721786612", - "voter": "green-finger" - }, - { - "rshares": "446974337113", - "voter": "softworld" - }, - { - "rshares": "4207665173", - "voter": "diamondstyke" - }, - { - "rshares": "2814111930", - "voter": "blanktasukaki" - }, - { - "rshares": "3737284052", - "voter": "ssygmr" - }, - { - "rshares": "1406246238", - "voter": "tokichope" - }, - { - "rshares": "815301440", - "voter": "dkt333" - }, - { - "rshares": "51848983876", - "voter": "executive-board" - }, - { - "rshares": "267715614", - "voter": "magin.pintor" - }, - { - "rshares": "1116104369", - "voter": "rowye" - }, - { - "rshares": "8510225031", - "voter": "artistparthoroy" - }, - { - "rshares": "1092881213820", - "voter": "asa-raw" - }, - { - "rshares": "2872871968", - "voter": "patagonica" - }, - { - "rshares": "121719583780", - "voter": "hivebuilder" - }, - { - "rshares": "853672470", - "voter": "hivebuilderteam" - }, - { - "rshares": "745082735", - "voter": "hivecur2" - }, - { - "rshares": "150000000", - "voter": "ferleyrios0" - } + "active_votes": [ + { + "rshares": "17090232811151", + "voter": "itsascam" + }, + { + "rshares": "480579269556", + "voter": "barrie" + }, + { + "rshares": "29720965903527", + "voter": "smooth" + }, + { + "rshares": "231748891373", + "voter": "anonymous" + }, + { + "rshares": "3703513941678", + "voter": "alphabet" + }, + { + "rshares": "2010285876889", + "voter": "steemroller" + }, + { + "rshares": "74805101299", + "voter": "donaldtrump" + }, + { + "rshares": "18187582592218", + "voter": "steemed" + }, + { + "rshares": "3205433782741", + "voter": "riverhead" + }, + { + "rshares": "1990377241911", + "voter": "badassmother" + }, + { + "rshares": "2005036868492", + "voter": "hr1" + }, + { + "rshares": "22380813356", + "voter": "jaewoocho" + }, + { + "rshares": "1869058236100", + "voter": "xeroc" + }, + { + "rshares": "1607182817833", + "voter": "joseph" + }, + { + "rshares": "82723821395", + "voter": "aizensou" + }, + { + "rshares": "456027411770", + "voter": "recursive2" + }, + { + "rshares": "588963325183", + "voter": "masteryoda" + }, + { + "rshares": "3119398199095", + "voter": "recursive" + }, + { + "rshares": "1172473837", + "voter": "mineralwasser" + }, + { + "rshares": "85737349562", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "1620255991", + "voter": "bingo-1" + }, + { + "rshares": "5567720953547", + "voter": "smooth.witness" + }, + { + "rshares": "170448445243", + "voter": "pairmike" + }, + { + "rshares": "9645319071", + "voter": "idol" + }, + { + "rshares": "131761872479", + "voter": "team" + }, + { + "rshares": "4632015537", + "voter": "sakr" + }, + { + "rshares": "96050573044", + "voter": "jchch" + }, + { + "rshares": "25239550780", + "voter": "chitty" + }, + { + "rshares": "47092417970", + "voter": "alexgr" + }, + { + "rshares": "3109770089", + "voter": "yefet" + }, + { + "rshares": "1660422196", + "voter": "jocelyn" + }, + { + "rshares": "13752626395", + "voter": "gregory-f" + }, + { + "rshares": "11239173417", + "voter": "dave-hughes" + }, + { + "rshares": "145064407415", + "voter": "edgeland" + }, + { + "rshares": "30188072314", + "voter": "full-measure" + }, + { + "rshares": "60085973635", + "voter": "lovelace" + }, + { + "rshares": "74898454777", + "voter": "eeks" + }, + { + "rshares": "478348587", + "voter": "paco-steem" + }, + { + "rshares": "5761302959", + "voter": "spaninv" + }, + { + "rshares": "30447039303", + "voter": "instructor2121" + }, + { + "rshares": "7891620962", + "voter": "nate-atkins" + }, + { + "rshares": "2197259642", + "voter": "gekko" + }, + { + "rshares": "313176541236", + "voter": "teamsteem" + }, + { + "rshares": "9535707424", + "voter": "richman" + }, + { + "rshares": "550540650972", + "voter": "nanzo-scoop" + }, + { + "rshares": "13884504681", + "voter": "fact" + }, + { + "rshares": "165470271317", + "voter": "steve-walschot" + }, + { + "rshares": "10099012692", + "voter": "cian.dafe" + }, + { + "rshares": "49793677286", + "voter": "hannixx42" + }, + { + "rshares": "169122010230", + "voter": "mummyimperfect" + }, + { + "rshares": "268838726", + "voter": "coar" + }, + { + "rshares": "98193208498", + "voter": "asch" + }, + { + "rshares": "1060920601", + "voter": "murh" + }, + { + "rshares": "6083782451", + "voter": "cryptofunk" + }, + { + "rshares": "2164662094", + "voter": "error" + }, + { + "rshares": "5736901624", + "voter": "marta-zaidel" + }, + { + "rshares": "40923353954", + "voter": "ranko-k" + }, + { + "rshares": "985042955913", + "voter": "cyber" + }, + { + "rshares": "10687278238", + "voter": "aizen01" + }, + { + "rshares": "6372292910", + "voter": "aizen02" + }, + { + "rshares": "3482772895", + "voter": "aizen03" + }, + { + "rshares": "1145023026", + "voter": "aizen04" + }, + { + "rshares": "484325382", + "voter": "aizen05" + }, + { + "rshares": "4698759112", + "voter": "aizen07" + }, + { + "rshares": "2810313611", + "voter": "aizen08" + }, + { + "rshares": "998812710", + "voter": "aizen09" + }, + { + "rshares": "432171763", + "voter": "aizen10" + }, + { + "rshares": "7109531805", + "voter": "aizen06" + }, + { + "rshares": "2986666907", + "voter": "aizen11" + }, + { + "rshares": "2052802727", + "voter": "aizen14" + }, + { + "rshares": "2413810847", + "voter": "aizen19" + }, + { + "rshares": "636225126", + "voter": "aizen15" + }, + { + "rshares": "6299030433", + "voter": "aizen16" + }, + { + "rshares": "48237424583", + "voter": "ak2020" + }, + { + "rshares": "632466769", + "voter": "aizen20" + }, + { + "rshares": "4134827463", + "voter": "aizen22" + }, + { + "rshares": "1099034433", + "voter": "aizen23" + }, + { + "rshares": "2161693603", + "voter": "aizen17" + }, + { + "rshares": "3402464131", + "voter": "aizen24" + }, + { + "rshares": "480934421", + "voter": "aizen18" + }, + { + "rshares": "1288443304", + "voter": "aizen25" + }, + { + "rshares": "2188687430", + "voter": "aizen28" + }, + { + "rshares": "3368022267", + "voter": "aizen26" + }, + { + "rshares": "1105570076", + "voter": "aizen27" + }, + { + "rshares": "3799766067", + "voter": "aizen32" + }, + { + "rshares": "2078826064", + "voter": "aizen30" + }, + { + "rshares": "3845310415", + "voter": "aizen31" + }, + { + "rshares": "1265719430", + "voter": "aizen33" + }, + { + "rshares": "1522643877", + "voter": "aizen34" + }, + { + "rshares": "305661234", + "voter": "aizen35" + }, + { + "rshares": "5734872441", + "voter": "aizen36" + }, + { + "rshares": "1430746846", + "voter": "aizen37" + }, + { + "rshares": "400285218", + "voter": "aizen29" + }, + { + "rshares": "2816257454", + "voter": "aizen21" + }, + { + "rshares": "65573912297", + "voter": "justtryme90" + }, + { + "rshares": "4321209833", + "voter": "aizen12" + }, + { + "rshares": "1839863893", + "voter": "aizen38" + }, + { + "rshares": "32298471411", + "voter": "drinkzya" + }, + { + "rshares": "8444658507", + "voter": "badger311" + }, + { + "rshares": "8739325345", + "voter": "badger313" + }, + { + "rshares": "8702827614", + "voter": "badger312" + }, + { + "rshares": "9001973394", + "voter": "badger316" + }, + { + "rshares": "9123923965", + "voter": "badger319" + }, + { + "rshares": "9031557781", + "voter": "badger3101" + }, + { + "rshares": "8484371114", + "voter": "badger3111" + }, + { + "rshares": "9046675913", + "voter": "badger3121" + }, + { + "rshares": "8655016180", + "voter": "badger3131" + }, + { + "rshares": "8763045211", + "voter": "badger3141" + }, + { + "rshares": "8739453800", + "voter": "badger3171" + }, + { + "rshares": "8546855954", + "voter": "badger3181" + }, + { + "rshares": "9133346310", + "voter": "badger3191" + }, + { + "rshares": "8546692844", + "voter": "badger3112" + }, + { + "rshares": "8887969807", + "voter": "badger3132" + }, + { + "rshares": "8761093741", + "voter": "badger3162" + }, + { + "rshares": "8992244297", + "voter": "badger3113" + }, + { + "rshares": "8642807886", + "voter": "badger3123" + }, + { + "rshares": "8766602954", + "voter": "badger3133" + }, + { + "rshares": "9118359724", + "voter": "badger3153" + }, + { + "rshares": "8796689830", + "voter": "badger3163" + }, + { + "rshares": "8827245303", + "voter": "badger3193" + }, + { + "rshares": "8776818063", + "voter": "badger3114" + }, + { + "rshares": "8685663112", + "voter": "badger3124" + }, + { + "rshares": "8588459406", + "voter": "badger3144" + }, + { + "rshares": "8510231316", + "voter": "badger3154" + }, + { + "rshares": "8377454951", + "voter": "badger3164" + }, + { + "rshares": "8709610129", + "voter": "badger3174" + }, + { + "rshares": "8990147355", + "voter": "badger3194" + }, + { + "rshares": "8886405623", + "voter": "badger3105" + }, + { + "rshares": "8829871300", + "voter": "badger3135" + }, + { + "rshares": "8423693063", + "voter": "badger3145" + }, + { + "rshares": "9007791015", + "voter": "badger3155" + }, + { + "rshares": "8700420554", + "voter": "badger3175" + }, + { + "rshares": "8476416242", + "voter": "badger3195" + }, + { + "rshares": "8118066308", + "voter": "badger3106" + }, + { + "rshares": "8937639951", + "voter": "badger3116" + }, + { + "rshares": "8985666162", + "voter": "badger3126" + }, + { + "rshares": "8612215471", + "voter": "badger3136" + }, + { + "rshares": "8258415644", + "voter": "badger3146" + }, + { + "rshares": "8490356190", + "voter": "badger3156" + }, + { + "rshares": "8706404705", + "voter": "badger3166" + }, + { + "rshares": "8621148181", + "voter": "badger3176" + }, + { + "rshares": "8755890485", + "voter": "badger3186" + }, + { + "rshares": "8791694513", + "voter": "badger3196" + }, + { + "rshares": "8719131325", + "voter": "badger3107" + }, + { + "rshares": "8471234920", + "voter": "badger315" + }, + { + "rshares": "8967798699", + "voter": "badger318" + }, + { + "rshares": "9017469354", + "voter": "badger3151" + }, + { + "rshares": "8689504021", + "voter": "badger3161" + }, + { + "rshares": "8949018277", + "voter": "badger3122" + }, + { + "rshares": "8885778223", + "voter": "badger3142" + }, + { + "rshares": "9108990725", + "voter": "badger3152" + }, + { + "rshares": "8411493414", + "voter": "badger3172" + }, + { + "rshares": "8925369694", + "voter": "badger3182" + }, + { + "rshares": "8680564470", + "voter": "badger3192" + }, + { + "rshares": "8595071709", + "voter": "badger3143" + }, + { + "rshares": "8858368574", + "voter": "badger3173" + }, + { + "rshares": "8564639501", + "voter": "badger3104" + }, + { + "rshares": "8276437501", + "voter": "badger3134" + }, + { + "rshares": "8683745951", + "voter": "badger3184" + }, + { + "rshares": "8620766828", + "voter": "badger3115" + }, + { + "rshares": "9094337935", + "voter": "badger3165" + }, + { + "rshares": "8719854886", + "voter": "badger3185" + }, + { + "rshares": "8781868170", + "voter": "badger314" + }, + { + "rshares": "9016639241", + "voter": "badger317" + }, + { + "rshares": "8754767708", + "voter": "badger3102" + }, + { + "rshares": "8716196161", + "voter": "badger3103" + }, + { + "rshares": "8643125157", + "voter": "badger3125" + }, + { + "rshares": "8609233299", + "voter": "badger3183" + }, + { + "rshares": "512951586", + "voter": "aizen39" + }, + { + "rshares": "3616249140600", + "voter": "satoshifund" + }, + { + "rshares": "392453750650", + "voter": "taoteh1221" + }, + { + "rshares": "418804855", + "voter": "applecrisp" + }, + { + "rshares": "373228451", + "voter": "stiletto" + }, + { + "rshares": "38901034355", + "voter": "juanmiguelsalas" + }, + { + "rshares": "54694274623", + "voter": "thecryptodrive" + }, + { + "rshares": "362609039187", + "voter": "kaylinart" + }, + { + "rshares": "1428647233", + "voter": "benthegameboy" + }, + { + "rshares": "390927750", + "voter": "rafikichi" + }, + { + "rshares": "79218648284", + "voter": "tim-johnston" + }, + { + "rshares": "132301151875", + "voter": "schro" + }, + { + "rshares": "4749927412", + "voter": "tee-em" + }, + { + "rshares": "31338683407", + "voter": "michaelx" + }, + { + "rshares": "6652497229", + "voter": "grandpere" + }, + { + "rshares": "5689049935", + "voter": "mark-waser" + }, + { + "rshares": "17023109715", + "voter": "albertogm" + }, + { + "rshares": "106033721718", + "voter": "geoffrey" + }, + { + "rshares": "192231455054", + "voter": "kimziv" + }, + { + "rshares": "43526357269", + "voter": "honeythief" + }, + { + "rshares": "77694419746", + "voter": "emily-cook" + }, + { + "rshares": "2122888373", + "voter": "superfreek" + }, + { + "rshares": "33245604843", + "voter": "cryptoiskey" + }, + { + "rshares": "484592257", + "voter": "mrhankeh" + }, + { + "rshares": "36254381895", + "voter": "clement" + }, + { + "rshares": "47416085106", + "voter": "isteemit" + }, + { + "rshares": "17205891791", + "voter": "grey580" + }, + { + "rshares": "280886491", + "voter": "ladyclair" + }, + { + "rshares": "55546285382", + "voter": "venuspcs" + }, + { + "rshares": "20379625641", + "voter": "thebatchman" + }, + { + "rshares": "164474222053", + "voter": "dashpaymag" + }, + { + "rshares": "169409415564", + "voter": "asmolokalo" + }, + { + "rshares": "462742250057", + "voter": "roelandp" + }, + { + "rshares": "69473128292", + "voter": "rubybian" + }, + { + "rshares": "3148219453", + "voter": "orly" + }, + { + "rshares": "4953381149", + "voter": "riscadox" + }, + { + "rshares": "245172817", + "voter": "mstang83" + }, + { + "rshares": "18842523479", + "voter": "hakise" + }, + { + "rshares": "14215545466", + "voter": "r4fken" + }, + { + "rshares": "25052927517", + "voter": "tcfxyz" + }, + { + "rshares": "6938809092", + "voter": "futurefood" + }, + { + "rshares": "1001850942", + "voter": "steemswede" + }, + { + "rshares": "31072527474", + "voter": "picokernel" + }, + { + "rshares": "823059128625", + "voter": "slowwalker" + }, + { + "rshares": "381822182", + "voter": "aizen13" + }, + { + "rshares": "3279400287", + "voter": "aizen41" + }, + { + "rshares": "931911377", + "voter": "aizen42" + }, + { + "rshares": "3174813360", + "voter": "aizen46" + }, + { + "rshares": "868931638", + "voter": "aizen47" + }, + { + "rshares": "212993516", + "voter": "aizen48" + }, + { + "rshares": "111038594", + "voter": "aizen49" + }, + { + "rshares": "922579590", + "voter": "aizen51" + }, + { + "rshares": "1267696038568", + "voter": "renohq" + }, + { + "rshares": "446844083", + "voter": "aizen43" + }, + { + "rshares": "66332881", + "voter": "aizen44" + }, + { + "rshares": "748318238", + "voter": "aizen54" + }, + { + "rshares": "14876041938", + "voter": "ausbitbank" + }, + { + "rshares": "1231736991", + "voter": "dicov" + }, + { + "rshares": "2530789873", + "voter": "steem1653" + }, + { + "rshares": "188360520718", + "voter": "anyx" + }, + { + "rshares": "7540907296", + "voter": "steemit-life" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "12461342724", + "voter": "asim" + }, + { + "rshares": "95008078", + "voter": "snowden" + }, + { + "rshares": "17043337041", + "voter": "bdavid" + }, + { + "rshares": "14289175254", + "voter": "aaseb" + }, + { + "rshares": "1107698236", + "voter": "karen13" + }, + { + "rshares": "19964419792", + "voter": "meiisheree" + }, + { + "rshares": "10644107638", + "voter": "deviedev" + }, + { + "rshares": "1427008333", + "voter": "jrd8526" + }, + { + "rshares": "73200426006", + "voter": "jpiper20" + }, + { + "rshares": "258942997644", + "voter": "nabilov" + }, + { + "rshares": "4121277460", + "voter": "dcryptogold" + }, + { + "rshares": "2722560234", + "voter": "dmacshady" + }, + { + "rshares": "228989895", + "voter": "aizen52" + }, + { + "rshares": "44553186838", + "voter": "milestone" + }, + { + "rshares": "87223247", + "voter": "wildchild" + }, + { + "rshares": "2650671514", + "voter": "the-future" + }, + { + "rshares": "186538708", + "voter": "aizen55" + }, + { + "rshares": "23976773907", + "voter": "peacekeeper" + }, + { + "rshares": "4310323809", + "voter": "poseidon" + }, + { + "rshares": "347898300458", + "voter": "calaber24p" + }, + { + "rshares": "3365335082", + "voter": "simon.braki.love" + }, + { + "rshares": "7025103979", + "voter": "geronimo" + }, + { + "rshares": "11121059561", + "voter": "rpf" + }, + { + "rshares": "3846864509", + "voter": "bitcoiner" + }, + { + "rshares": "3756536992", + "voter": "tarindel" + }, + { + "rshares": "30859119533", + "voter": "deanliu" + }, + { + "rshares": "138656821", + "voter": "bento" + }, + { + "rshares": "13069930577", + "voter": "shredlord" + }, + { + "rshares": "53842086331", + "voter": "jl777" + }, + { + "rshares": "30004697167", + "voter": "zaebars" + }, + { + "rshares": "1700129733", + "voter": "yarly" + }, + { + "rshares": "256282552", + "voter": "yarly2" + }, + { + "rshares": "256665987", + "voter": "yarly3" + }, + { + "rshares": "148269777", + "voter": "yarly4" + }, + { + "rshares": "149106888", + "voter": "yarly5" + }, + { + "rshares": "84991309", + "voter": "yarly7" + }, + { + "rshares": "799492214", + "voter": "raymonjohnstone" + }, + { + "rshares": "5272599454", + "voter": "bbrewer" + }, + { + "rshares": "21120708735", + "voter": "krabgat" + }, + { + "rshares": "4543692384", + "voter": "proto" + }, + { + "rshares": "634121191", + "voter": "curator" + }, + { + "rshares": "31584197440", + "voter": "sisterholics" + }, + { + "rshares": "411321155", + "voter": "yarly10" + }, + { + "rshares": "1365664469", + "voter": "alex.chien" + }, + { + "rshares": "220139771", + "voter": "yarly11" + }, + { + "rshares": "76966318", + "voter": "yarly12" + }, + { + "rshares": "10236810028", + "voter": "logic" + }, + { + "rshares": "3675499938", + "voter": "tygergamer" + }, + { + "rshares": "82066003", + "voter": "aizen53" + }, + { + "rshares": "149624601", + "voter": "steemster1" + }, + { + "rshares": "238512214", + "voter": "bullionstackers" + }, + { + "rshares": "108721833", + "voter": "cryptoz" + }, + { + "rshares": "6410776006", + "voter": "jed78" + }, + { + "rshares": "128598923578", + "voter": "steemdrive" + }, + { + "rshares": "973098459", + "voter": "metaflute" + }, + { + "rshares": "50562639777", + "voter": "gomeravibz" + }, + { + "rshares": "440302381", + "voter": "bento04" + }, + { + "rshares": "738358963", + "voter": "bento03" + }, + { + "rshares": "1504291216", + "voter": "aizen" + }, + { + "rshares": "2298269478", + "voter": "taker" + }, + { + "rshares": "234848214", + "voter": "bento02" + }, + { + "rshares": "540710999", + "voter": "bento01" + }, + { + "rshares": "7824682639", + "voter": "nekromarinist" + }, + { + "rshares": "1618775242", + "voter": "coinbar" + }, + { + "rshares": "59219358", + "voter": "sharon" + }, + { + "rshares": "226021128", + "voter": "frozendota" + }, + { + "rshares": "2315969904", + "voter": "merej99" + }, + { + "rshares": "60342922", + "voter": "lillianjones" + }, + { + "rshares": "1116575645876", + "voter": "laonie" + }, + { + "rshares": "245498462743", + "voter": "ozchartart" + }, + { + "rshares": "5002458769", + "voter": "croatia" + }, + { + "rshares": "64020118", + "voter": "vladimirputin" + }, + { + "rshares": "23878310347", + "voter": "rawnetics" + }, + { + "rshares": "64028162", + "voter": "angelamerkel" + }, + { + "rshares": "8270207209", + "voter": "spaceghost" + }, + { + "rshares": "11407745971", + "voter": "thebluepanda" + }, + { + "rshares": "22955094272", + "voter": "laonie1" + }, + { + "rshares": "23470889026", + "voter": "laonie2" + }, + { + "rshares": "23479197538", + "voter": "laonie3" + }, + { + "rshares": "80221808", + "voter": "bento06" + }, + { + "rshares": "23907912804", + "voter": "laoyao" + }, + { + "rshares": "37203524105", + "voter": "myfirst" + }, + { + "rshares": "226714843171", + "voter": "somebody" + }, + { + "rshares": "8719338522", + "voter": "flysaga" + }, + { + "rshares": "6129565712", + "voter": "k4r1nn" + }, + { + "rshares": "5106436541", + "voter": "brendio" + }, + { + "rshares": "2082768176", + "voter": "gmurph" + }, + { + "rshares": "50083495099", + "voter": "midnightoil" + }, + { + "rshares": "81536310749", + "voter": "mibenkito" + }, + { + "rshares": "2375350982", + "voter": "kalimor" + }, + { + "rshares": "998581895", + "voter": "altucher" + }, + { + "rshares": "4187079592", + "voter": "ullikume" + }, + { + "rshares": "99580782", + "voter": "timferriss" + }, + { + "rshares": "50565616", + "voter": "michellek" + }, + { + "rshares": "23474742068", + "voter": "laonie4" + }, + { + "rshares": "23472418592", + "voter": "laonie5" + }, + { + "rshares": "23469546880", + "voter": "laonie6" + }, + { + "rshares": "4337200195", + "voter": "armen" + }, + { + "rshares": "23465711623", + "voter": "laonie7" + }, + { + "rshares": "3986410926", + "voter": "kurtbeil" + }, + { + "rshares": "23462236775", + "voter": "laonie8" + }, + { + "rshares": "23459668262", + "voter": "laonie9" + }, + { + "rshares": "2511850537", + "voter": "steemleak" + }, + { + "rshares": "107573849125", + "voter": "thisisbenbrick" + }, + { + "rshares": "102639999", + "voter": "darrenrowse" + }, + { + "rshares": "125243433939", + "voter": "xiaohui" + }, + { + "rshares": "4185826321", + "voter": "antfield" + }, + { + "rshares": "176650903994", + "voter": "terrycraft" + }, + { + "rshares": "21110659306", + "voter": "jphamer1" + }, + { + "rshares": "97051399", + "voter": "bigsambucca" + }, + { + "rshares": "5946738271", + "voter": "elfkitchen" + }, + { + "rshares": "5766554064", + "voter": "oflyhigh" + }, + { + "rshares": "15547550089", + "voter": "randyclemens" + }, + { + "rshares": "2190476078", + "voter": "paynode" + }, + { + "rshares": "63775516", + "voter": "nickche" + }, + { + "rshares": "4028373583", + "voter": "xiaokongcom" + }, + { + "rshares": "57428544328", + "voter": "driv3n" + }, + { + "rshares": "60819615", + "voter": "msjennifer" + }, + { + "rshares": "55925537", + "voter": "ciao" + }, + { + "rshares": "54217761", + "voter": "steemo" + }, + { + "rshares": "175834493", + "voter": "pcashmore" + }, + { + "rshares": "8120343873", + "voter": "xianjun" + }, + { + "rshares": "54077897", + "voter": "steema" + }, + { + "rshares": "58449787", + "voter": "andrew.sullivan" + }, + { + "rshares": "1025553643", + "voter": "brianclark" + }, + { + "rshares": "815283599", + "voter": "daniel.kahneman" + }, + { + "rshares": "228330036", + "voter": "tucker.max" + }, + { + "rshares": "726300641", + "voter": "darren.rowse" + }, + { + "rshares": "54611897", + "voter": "chris.dunn" + }, + { + "rshares": "71282219", + "voter": "confucius" + }, + { + "rshares": "70633121", + "voter": "stevescriber" + }, + { + "rshares": "4015538661", + "voter": "bledarus" + }, + { + "rshares": "1155158838", + "voter": "pat.flynn" + }, + { + "rshares": "62297184", + "voter": "weames" + }, + { + "rshares": "50027573", + "voter": "loli" + }, + { + "rshares": "89194632643", + "voter": "miacats" + }, + { + "rshares": "1199604993", + "voter": "mattmarshall" + }, + { + "rshares": "429199025", + "voter": "timothysykes" + }, + { + "rshares": "52419023", + "voter": "nano2nd" + }, + { + "rshares": "104765652", + "voter": "patflynn" + }, + { + "rshares": "54909929", + "voter": "jarvis" + }, + { + "rshares": "531944476", + "voter": "microluck" + }, + { + "rshares": "879418656", + "voter": "andrewsullivan" + }, + { + "rshares": "77220767", + "voter": "razberrijam" + }, + { + "rshares": "9618530893", + "voter": "theb0red1" + }, + { + "rshares": "53106127", + "voter": "fortuner" + }, + { + "rshares": "1952786674", + "voter": "chinadaily" + }, + { + "rshares": "59021275", + "voter": "cryptoblu" + }, + { + "rshares": "59014859", + "voter": "instructor" + }, + { + "rshares": "739426684571", + "voter": "dollarvigilante" + }, + { + "rshares": "3897735456", + "voter": "lamech-m" + }, + { + "rshares": "479539090", + "voter": "harvey.levin" + }, + { + "rshares": "9825243280", + "voter": "gvargas123" + }, + { + "rshares": "13004524355", + "voter": "telos" + }, + { + "rshares": "51877132", + "voter": "johnbyrd" + }, + { + "rshares": "51860909", + "voter": "thomasaustin" + }, + { + "rshares": "51859074", + "voter": "thermor" + }, + { + "rshares": "51870077", + "voter": "ficholl" + }, + { + "rshares": "51852278", + "voter": "widell" + }, + { + "rshares": "51481279", + "voter": "revelbrooks" + }, + { + "rshares": "23453540976", + "voter": "laonie10" + }, + { + "rshares": "604185913", + "voter": "wuyueling" + }, + { + "rshares": "73277014476", + "voter": "sweetsssj" + }, + { + "rshares": "2803446535", + "voter": "netaterra" + }, + { + "rshares": "190920669", + "voter": "rand.fishkin" + }, + { + "rshares": "90834949499", + "voter": "barrycooper" + }, + { + "rshares": "79979619", + "voter": "joelbow" + }, + { + "rshares": "28908541792", + "voter": "hilarski" + }, + { + "rshares": "2496488206", + "voter": "shadowspub" + }, + { + "rshares": "51562255", + "voter": "curpose" + }, + { + "rshares": "55859919", + "voter": "rickmiller" + }, + { + "rshares": "1208491149", + "voter": "lenar" + }, + { + "rshares": "2129438571", + "voter": "cryptoeasy" + }, + { + "rshares": "5032072150", + "voter": "nulliusinverba" + }, + { + "rshares": "68558903", + "voter": "stephenkendal" + }, + { + "rshares": "112576381", + "voter": "jlufer" + }, + { + "rshares": "90066514", + "voter": "uziriel" + }, + { + "rshares": "1931935967", + "voter": "funkywanderer" + }, + { + "rshares": "4592861696", + "voter": "richardcrill" + }, + { + "rshares": "22607437120", + "voter": "laonie11" + }, + { + "rshares": "2249900457", + "voter": "jeremyfromwi" + }, + { + "rshares": "63258691", + "voter": "arnoldz61" + }, + { + "rshares": "51712804", + "voter": "troich" + }, + { + "rshares": "1588617838", + "voter": "davidjkelley" + }, + { + "rshares": "187911420", + "voter": "team101" + }, + { + "rshares": "51718188", + "voter": "crion" + }, + { + "rshares": "178419224", + "voter": "greatness" + }, + { + "rshares": "51388276", + "voter": "hitherise" + }, + { + "rshares": "51379706", + "voter": "wiss" + }, + { + "rshares": "13264756693", + "voter": "ghasemkiani" + }, + { + "rshares": "20853966542", + "voter": "sponge-bob" + }, + { + "rshares": "4434912337", + "voter": "l0k1" + }, + { + "rshares": "14886230314", + "voter": "digital-wisdom" + }, + { + "rshares": "3628536972", + "voter": "ethical-ai" + }, + { + "rshares": "52143228", + "voter": "stroully" + }, + { + "rshares": "1433005760", + "voter": "jiganomics" + }, + { + "rshares": "6531322926", + "voter": "jwaser" + }, + { + "rshares": "11919570943", + "voter": "doitvoluntarily" + }, + { + "rshares": "51814474", + "voter": "thadm" + }, + { + "rshares": "51812703", + "voter": "prof" + }, + { + "rshares": "1018513187", + "voter": "zettar" + }, + { + "rshares": "94160774", + "voter": "kyusho" + }, + { + "rshares": "414323782", + "voter": "steemorama" + }, + { + "rshares": "52252552", + "voter": "lighter" + }, + { + "rshares": "51465774", + "voter": "yorsens" + }, + { + "rshares": "3068760608", + "voter": "michaelmatthews" + }, + { + "rshares": "273904972", + "voter": "benjamin.still" + }, + { + "rshares": "174173092", + "voter": "harveylevin" + }, + { + "rshares": "51154263", + "voter": "bane" + }, + { + "rshares": "51148009", + "voter": "vive" + }, + { + "rshares": "51142585", + "voter": "coad" + }, + { + "rshares": "2558000160", + "voter": "bwaser" + }, + { + "rshares": "51922012", + "voter": "sofa" + }, + { + "rshares": "120475423", + "voter": "gary.vaynerchuk" + }, + { + "rshares": "5773395051", + "voter": "dexter-k" + }, + { + "rshares": "344116052", + "voter": "panther" + }, + { + "rshares": "2201645172", + "voter": "alina1" + }, + { + "rshares": "659570211", + "voter": "ct-gurus" + }, + { + "rshares": "395021428301", + "voter": "charlieshrem" + }, + { + "rshares": "61805245119", + "voter": "tracemayer" + }, + { + "rshares": "20817843519", + "voter": "brains" + }, + { + "rshares": "50450987", + "voter": "waldemar-kuhn" + }, + { + "rshares": "51994517", + "voter": "ailo" + }, + { + "rshares": "5470867324", + "voter": "chick1" + }, + { + "rshares": "2275182541", + "voter": "whatsup" + }, + { + "rshares": "51114196", + "voter": "xpice" + }, + { + "rshares": "2084741030", + "voter": "steemsquad" + }, + { + "rshares": "255505026", + "voter": "anomaly" + }, + { + "rshares": "2293549771", + "voter": "ellepdub" + }, + { + "rshares": "50407156", + "voter": "timothy.sykes" + }, + { + "rshares": "59178617", + "voter": "inarix03" + }, + { + "rshares": "218488504", + "voter": "ola1" + }, + { + "rshares": "11523640324", + "voter": "herpetologyguy" + }, + { + "rshares": "52614987", + "voter": "dulcio" + }, + { + "rshares": "51470533", + "voter": "eavy" + }, + { + "rshares": "51484593", + "voter": "roto" + }, + { + "rshares": "54452104", + "voter": "drac59" + }, + { + "rshares": "57119426", + "voter": "everittdmickey" + }, + { + "rshares": "1041710878", + "voter": "jang" + }, + { + "rshares": "4605288518", + "voter": "morgan.waser" + }, + { + "rshares": "50602980", + "voter": "cfisher" + }, + { + "rshares": "285981023", + "voter": "thefinanceguy" + }, + { + "rshares": "50235850", + "voter": "billkappa442" + }, + { + "rshares": "1206752302", + "voter": "anns" + }, + { + "rshares": "50938725", + "voter": "haved" + }, + { + "rshares": "50708837", + "voter": "ardly" + }, + { + "rshares": "50704078", + "voter": "yotoh" + }, + { + "rshares": "50565798", + "voter": "penthouse" + }, + { + "rshares": "1871969417", + "voter": "bapparabi" + }, + { + "rshares": "50487909", + "voter": "opticalillusions" + }, + { + "rshares": "50433760", + "voter": "morse" + }, + { + "rshares": "50372583", + "voter": "carre" + }, + { + "rshares": "50351738", + "voter": "aschwin" + }, + { + "rshares": "3527739772", + "voter": "strong-ai" + }, + { + "rshares": "71207873", + "voter": "igtes" + }, + { + "rshares": "851674848", + "voter": "dikanevroman" + }, + { + "rshares": "144899746", + "voter": "buffett" + }, + { + "rshares": "159723319", + "voter": "ctu" + }, + { + "rshares": "1319373906", + "voter": "rusteemitblog" + }, + { + "rshares": "161974443", + "voter": "zapply" + }, + { + "rshares": "505647276", + "voter": "kjsxj" + }, + { + "rshares": "158642800", + "voter": "ranger" + }, + { + "rshares": "161700361", + "voter": "shadowcash" + }, + { + "rshares": "435351417", + "voter": "witchcraftblog" + }, + { + "rshares": "158051137", + "voter": "origin" + }, + { + "rshares": "310120169", + "voter": "james1987" + }, + { + "rshares": "160845765", + "voter": "caseyneistat" + }, + { + "rshares": "161323470", + "voter": "pawel-krawczyk" + }, + { + "rshares": "201362779", + "voter": "mgibson" + }, + { + "rshares": "160326045", + "voter": "planet" + }, + { + "rshares": "152057481", + "voter": "food-creator" + }, + { + "rshares": "156411729", + "voter": "blender" + }, + { + "rshares": "156261069", + "voter": "ibm1000" + }, + { + "rshares": "156227917", + "voter": "panic" + }, + { + "rshares": "159143891", + "voter": "reef" + }, + { + "rshares": "158560941", + "voter": "steemthis" + }, + { + "rshares": "158541985", + "voter": "citigroup" + }, + { + "rshares": "158486055", + "voter": "zendesk" + }, + { + "rshares": "158270049", + "voter": "maxb02" + }, + { + "rshares": "71720421", + "voter": "dealzgal" + }, + { + "rshares": "197432359", + "voter": "blend" + }, + { + "rshares": "80379451", + "voter": "storage" + }, + { + "rshares": "148077602", + "voter": "dougkarr" + }, + { + "rshares": "64613800", + "voter": "blackmarket" + }, + { + "rshares": "70760501", + "voter": "gifts" + }, + { + "rshares": "91120780", + "voter": "expat" + }, + { + "rshares": "134906258", + "voter": "steemtrail" + }, + { + "rshares": "147050914", + "voter": "royfft" + }, + { + "rshares": "151927362", + "voter": "countofdelphi" + }, + { + "rshares": "154610548", + "voter": "rjordan" + }, + { + "rshares": "144957585", + "voter": "sawgunner13" + }, + { + "rshares": "150986382", + "voter": "mysteryshot" + }, + { + "rshares": "150834868", + "voter": "dirlei.sdias" + }, + { + "rshares": "150260046", + "voter": "tttnofear" + } + ], + "author": "calaber24p", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "

Who Should We Find Responsible For The Subprime Mortgage Lending Crisis?

\n\nI want to preface this article by saying, I\u2019m not 100% sure who we should blame for the Subprime Mortgage Lending Crisis, the lenders or the borrowers which is why I want to attempt to fairly give arguments from both sides. Even today this is a heavily debated topic and I agree with points made by both sides. So I want you to decide as the reader, who you side with, and if you want to post in the comments below. This article is meant to shed light on who we should hold responsible for the Subprime Mortgage Crisis, the lenders or the borrowers, or someone else?\n\nhttp://longislandbankruptcyblog.com/wp-content/uploads/2007/11/mortgage-bubble-bursting-by-the-sub-prime-mortgage-meltdown.jpg\n\n

The Lender\u2019s Side of The Argument

\n\nThe lender\u2019s side of the argument almost completely revolves around the idea that people need to educate themselves before they go into a bank and take on such a series contract, like a mortgage. Even in many cases where the information was fully available to the borrower, they signed the contract even though they didn\u2019t understand it. If you agree with consumer protection, the lenders should have stopped the transaction from taking place, but many believe that we should be free to make all decisions even bad ones. The truth is that these are companies, however and their only job is to look out for themselves. This lending is an especially weird occurrence because the force which usually stops this kind of behavior from taking place is that it would not be beneficial to the company, but mortgage brokers and the companies lending were making so much money that at the time it seemed like a good idea. \n\nhttps://www.biggerpockets.com/renewsblog/wp-content/uploads/2015/06/questions-lender.jpg\n\nAnother way the lenders justify their subprime lending practices was that they were getting pressure from higher up in the company to lend as much as possible because there was such a demand for the financial products on the markets. This is the old \u201cI was just following orders\u201d excuse, but there truly was heavy pressure from companies onto the brokers to loan as much as they could, or they would find someone else to do it. At the time most mortgage brokers legitimately didn\u2019t think that they were doing something bad. They didn\u2019t try to tank the system, they truly believed that the booming real estate market would be able to cover any losses if someone foreclosed on a property. We found out that this was a horribly wrong assumption eventually which lead to billions in toxic assets on the bank balance sheet worth nothing. Ultimately if you think that the consumer should have been diligent and did the required research before they took the mortgage contract, you might side with the side of the lenders\n\n

The Borrower\u2019s Side of The Argument

\n\nOn the flip side, the borrower\u2019s side of the argument claims that it is a company\u2019s duty to inform the customer and the government\u2019s duty to provide consumer protection so mortgages that were created with a high chance of failure wouldn\u2019t be possible. Borrowers also claim that many of the brokers specifically targeted low income and uneducated applicants so they could get a larger commission. In addition, the extreme leniency of the various types of mortgage products that were being offered at the time, for example not having to even show any income, should have been against the law. While not all brokers were predatory, there were many that were, which did target the low income and uneducated, but at the same time there were many borrowers who knew they couldn\u2019t afford the payments on the house and figured they would just resell it for profit. Consumer protection is a tricky subject , because at what point does it stop becoming protection and start becoming a barrier to entry. For example up until this year only Americans with an income of 250k + or 1,000,000 in assets (disregarding primary residence) were able to invest in private companies, many hedge funds and other investment vehicles, all because of consumer protection. \n\nhttps://activerain-store.s3.amazonaws.com/image_store/uploads/2/5/4/4/3/ar123584050234452.jpg\n\nMany people say that a fool and his money soon part ways and it\u2019s hard to wonder if people who signed into these mortgages would have lost money elsewhere on credit cards or payday loans. I think that the mortgage prices that were way to complex for anyone to even understand should have never been offered, but is it the government\u2019s place to protect a private entity from not offering them? Theoretically in a free market banks should not have offered the products because they were too risky and would have lost them money, but this force did not prevail. Whether or not you agree with the borrower heavily comes down to what degree you think consumer protection should play on your everyday life and how the government should police products. \n\n

Conclusion And Some Of My Thoughts

\n\nLike I said when I started the article I don\u2019t think I find either party solely responsible for the subprime mortgage crisis that occurred. I believe both parties over leveraged themselves and took risks that, in hindsight, were insane. The world market wanted more mortgage prices and people all around the world were willing to pay large amounts for them, so banks and mortgage brokers supplied the demand that was out there. Unfortunately the mortgages they supplied them with were garbage. In this regard I blame the credit rating agencies, whose actual job is to rate them properly , for not doing their job. I also believe that the specific brokers and lenders who were predatory lending were morally wrong, but I\u2019m not so sure that they constitute acting criminally. Maybe under current laws yes, but im someone who does not believe in consumer protection, mostly because I believe that people should be able to spend their money as they see fit on any product they see fit. We see 1000 scams on the internet a day, yet we don\u2019t fall for them because we know they are scams. I think trusting any entity that is making money off you is foolish. Im interested to see what other people here think and why.", + "category": "life", + "children": 31, + "created": "2016-09-14T21:48:51", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://longislandbankruptcyblog.com/wp-content/uploads/2007/11/mortgage-bubble-bursting-by-the-sub-prime-mortgage-meltdown.jpg", + "https://www.biggerpockets.com/renewsblog/wp-content/uploads/2015/06/questions-lender.jpg", + "https://activerain-store.s3.amazonaws.com/image_store/uploads/2/5/4/4/3/ar123584050234452.jpg" ], - "author": "erangvee", - "author_payout_value": "0.000 HBD", - "author_reputation": 65.33, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "I have been into J-pop music the past few weeks (besides the occasional English ones). Listening to random suggestions by Spotify introduced me to many bands and musicians that I fell for in a matter of the first few notes. \n\n
https://files.peakd.com/file/peakd-hive/erangvee/cZRvGtRt-1594118384608-01.png
\n\nToday's prompt for my drawing comes from a song by the [SEKAI NO OWARI](https://open.spotify.com/artist/7HwzlRPa9Ad0I8rK0FPzzK?si=sJptQDz0SGGt6LHJe0REWA) band, the name which literally translates to *end of the world*. The song was entitled *[Dropout](https://open.spotify.com/track/7C8zDcBTD0HtYAnolSRZm3?si=8ZK7ZbyaTjq7TsHgnQWG6g)*, with lyrics that went:\n\n

I came from Dropout Boulevard\nThrough my darkest days bettered myself\nAnd beat the odds

\n\nNice, right? You can listen to a preview of the music below, but **NOTE that the embed won't work on the hive.blog frontend**. If you're at the hive.blog frontend and want to listen to the Spotify preview, then edit the address into the peakd.com domain. :)\n\n
NOTE: This one's viewable in PeakD and may not be viewable in other frontends.\n\n## Drawing *Dropout*\n
https://files.peakd.com/file/peakd-hive/erangvee/39FZyTF7-sketch.gif
\n
https://files.peakd.com/file/peakd-hive/erangvee/7AnZyt3W-Screenshot_20200707-122217_Gallery.jpg
\n\nAfter a couple of conceptual drawings that simply revolved around my favorite genres, I decided to go back to portrait again for today. Aside from the fact that it doesn't take much time, I was severely aware of a possible learning decay (wow to me throwing in a machine learning term). This work should also serve as practice.\n\nThe portrait drawing was based off this [Pinterest](https://pin.it/53JjxTt) that unfortunately had no title or corresponding photographer that definitely merited recognition. It was a really beautiful portrait photo, and I hoped this digital painting gave her justice.\n\nMost of the time, I have the reference opened at another screen (my laptop), but since I was running something on my laptop, I've grown accustomed to splitting my screen to view both the reference and the workspace at the same time.\n\nFor the sketch, I used the *pencil* brush. It's easier to work with in the base lineart compared to other brushes available in the MediBang Paint version of the Android (not sure about the PC equivalent). I was tempted to add other details, but I was tight on time because of work.\n\nI was supposed to use the *pen* brush for the base colors, the same way I did previously during my first attempts at drawing with my phone (like [this one](https://peakd.com/hive-156509/@erangvee/digital-art-with-note-10-plus-he-knows-something)). However, I think I got pretty much used to just coloring with the watercolor brush, so that's what happened.\n\nOne of the things I wasn't quite fond of in the MediBang for Android was the blur tool. Its effects just don't sit right with me, unlike the blur tool of Adobe Photoshop. I have to work with what I have, though, so I needed to settle.\n\nYou can find progress shots in the following GIF.\n\n
https://files.peakd.com/file/peakd-hive/erangvee/GN2lwQ62-prog.gif
\n\n### Details\n* *Device:* Samsung Galaxy Note 10+\n* *Apps:* \n * [MediBang Paint](https://play.google.com/store/apps/details?id=com.medibang.android.paint.tablet) for Android\n * [Snapseed](https://play.google.com/store/apps/details?id=com.niksoftware.snapseed&hl=en)\n* *Brushes:* watercolor (at varying opacity settings); pencil (100% opacity); smudge; blur\n\n## Notes\nMy favorite part to draw here was the hair. In the end, I liked how the hair ended up looking, except the horrible smudge that couldn't deliver the effect I was looking for. D: I also enhanced the colors/saturation using Snapseed.\n\n---\n\n
https://a.deviantart.net/avatars-big/e/r/erangvee.gif?
[ko-fi](https://ko-fi.com/erangvee) | [deviantart](https://www.deviantart.com/erangvee) | [twitter](https://twitter.com/erangvee) | [instagram](https://twitter.com/erangvee) | [creary](https://creary.net/@erangvee) | [youtube](http://youtube.com/user/serachan011)
", - "category": "hive-156509", - "children": 7, - "community": "hive-156509", - "community_title": "OnChainArt", - "created": "2020-07-07T11:21:15", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://files.peakd.com/file/peakd-hive/erangvee/cZRvGtRt-1594118384608-01.png", - "https://files.peakd.com/file/peakd-hive/erangvee/39FZyTF7-sketch.gif", - "https://files.peakd.com/file/peakd-hive/erangvee/7AnZyt3W-Screenshot_20200707-122217_Gallery.jpg", - "https://files.peakd.com/file/peakd-hive/erangvee/GN2lwQ62-prog.gif", - "https://a.deviantart.net/avatars-big/e/r/erangvee.gif?" - ], - "links": [ - "https://open.spotify.com/artist/7HwzlRPa9Ad0I8rK0FPzzK?si=sJptQDz0SGGt6LHJe0REWA", - "https://open.spotify.com/track/7C8zDcBTD0HtYAnolSRZm3?si=8ZK7ZbyaTjq7TsHgnQWG6g", - "/hive-156509/@erangvee/dropout-or-drawing-with-the-note-10", - "https://pin.it/53JjxTt", - "/hive-156509/@erangvee/digital-art-with-note-10-plus-he-knows-something", - "https://play.google.com/store/apps/details?id=com.medibang.android.paint.tablet", - "https://play.google.com/store/apps/details?id=com.niksoftware.snapseed&hl=en", - "https://ko-fi.com/erangvee", - "https://www.deviantart.com/erangvee", - "https://twitter.com/erangvee" - ], - "tags": [ - "art", - "creative", - "drawing", - "philippines", - "hiveph" - ], - "users": [ - "erangvee" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 95735163059928, - "payout": 38.602, - "payout_at": "2020-07-14T11:21:15", - "pending_payout_value": "38.602 HBD", - "percent_steem_dollars": 10000, - "permlink": "dropout-or-drawing-with-the-note-10", - "post_id": 86930915, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 154 - }, - "title": "Dropout | Drawing with the Note 10+", - "updated": "2020-07-07T11:21:15", - "url": "/hive-156509/@erangvee/dropout-or-drawing-with-the-note-10" + "tags": [ + "life", + "money", + "investing", + "banking", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 110596898261619, + "payout": 696.13, + "payout_at": "2016-09-21T21:48:51", + "pending_payout_value": "696.130 HBD", + "percent_hbd": 10000, + "permlink": "who-should-we-find-responsible-for-the-subprime-mortgage-lending-crisis", + "post_id": 1247716, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 524 + }, + "title": "Who Should We Find Responsible For The Subprime Mortgage Lending Crisis?", + "updated": "2016-09-14T21:48:51", + "url": "/life/@calaber24p/who-should-we-find-responsible-for-the-subprime-mortgage-lending-crisis" }, { - "active_votes": [ - { - "rshares": "39167839574016", - "voter": "blocktrades" - }, - { - "rshares": "63391478264", - "voter": "tombstone" - }, - { - "rshares": "59095729617", - "voter": "onealfa" - }, - { - "rshares": "426717190507", - "voter": "roelandp" - }, - { - "rshares": "9128444473", - "voter": "matt-a" - }, - { - "rshares": "63250676329", - "voter": "arcange" - }, - { - "rshares": "90259374911", - "voter": "fiveboringgames" - }, - { - "rshares": "1611567162", - "voter": "raphaelle" - }, - { - "rshares": "21313804650", - "voter": "marius19" - }, - { - "rshares": "24140398087", - "voter": "steemyoda" - }, - { - "rshares": "10540114865", - "voter": "yadamaniart" - }, - { - "rshares": "8651454824", - "voter": "valth" - }, - { - "rshares": "916062874238", - "voter": "ripperone" - }, - { - "rshares": "7655181157", - "voter": "erikaflynn" - }, - { - "rshares": "1215993437", - "voter": "ambyr00" - }, - { - "rshares": "158694204315", - "voter": "detlev" - }, - { - "rshares": "4745233169", - "voter": "ma1neevent" - }, - { - "rshares": "6829793475", - "voter": "melooo182" - }, - { - "rshares": "25348986151", - "voter": "scrooger" - }, - { - "rshares": "650753847", - "voter": "activate.alpha" - }, - { - "rshares": "76167822764", - "voter": "ironshield" - }, - { - "rshares": "1515295351", - "voter": "coquiunlimited" - }, - { - "rshares": "6211428673", - "voter": "arrliinn" - }, - { - "rshares": "2199312510", - "voter": "lourdeshd6" - }, - { - "rshares": "1868635311", - "voter": "gingerninja" - }, - { - "rshares": "4859072796", - "voter": "pearica" - }, - { - "rshares": "10117051620", - "voter": "jayna" - }, - { - "rshares": "3319254826", - "voter": "guchtere" - }, - { - "rshares": "7126720685", - "voter": "d-pend" - }, - { - "rshares": "49723074086", - "voter": "ackhoo" - }, - { - "rshares": "636544414", - "voter": "nolasco" - }, - { - "rshares": "2711027097", - "voter": "dante31" - }, - { - "rshares": "19162136950", - "voter": "felt.buzz" - }, - { - "rshares": "994282919497", - "voter": "howo" - }, - { - "rshares": "3989289665783", - "voter": "ocd" - }, - { - "rshares": "963191813", - "voter": "followforupvotes" - }, - { - "rshares": "1129752005704", - "voter": "steemvote" - }, - { - "rshares": "5604106008", - "voter": "macchiata" - }, - { - "rshares": "1209636335", - "voter": "imdazu" - }, - { - "rshares": "583009981", - "voter": "onethousandwords" - }, - { - "rshares": "27367010483", - "voter": "hdmed" - }, - { - "rshares": "297225240574", - "voter": "cyclamen" - }, - { - "rshares": "1109783769", - "voter": "theleapingkoala" - }, - { - "rshares": "1022095225", - "voter": "sdibot" - }, - { - "rshares": "2005873139", - "voter": "garudi" - }, - { - "rshares": "10994103687", - "voter": "santigs" - }, - { - "rshares": "9253475625", - "voter": "make-a-whale" - }, - { - "rshares": "9098686282", - "voter": "kimzwarch" - }, - { - "rshares": "63662296206", - "voter": "niallon11" - }, - { - "rshares": "593203919", - "voter": "shawkr13" - }, - { - "rshares": "466102298", - "voter": "torachibi" - }, - { - "rshares": "3154953252", - "voter": "justinparke" - }, - { - "rshares": "2867961564570", - "voter": "therealwolf" - }, - { - "rshares": "112724343925", - "voter": "majes.tytyty" - }, - { - "rshares": "14952721004", - "voter": "espoem" - }, - { - "rshares": "142021683670", - "voter": "sharpshot" - }, - { - "rshares": "13347270856", - "voter": "jlsplatts" - }, - { - "rshares": "18347630301", - "voter": "feedyourminnows" - }, - { - "rshares": "1451242663", - "voter": "divinekids" - }, - { - "rshares": "4001630708157", - "voter": "qurator" - }, - { - "rshares": "4480563230", - "voter": "hanggggbeeee" - }, - { - "rshares": "1074324312", - "voter": "marcoriccardi" - }, - { - "rshares": "888546574", - "voter": "liverpool-fan" - }, - { - "rshares": "1137645996", - "voter": "che-shyr" - }, - { - "rshares": "155371704782", - "voter": "abbak7" - }, - { - "rshares": "208465759598", - "voter": "eonwarped" - }, - { - "rshares": "2898416711777", - "voter": "postpromoter" - }, - { - "rshares": "33756408583", - "voter": "sankysanket18" - }, - { - "rshares": "4846041929", - "voter": "kph" - }, - { - "rshares": "587278817522", - "voter": "smartsteem" - }, - { - "rshares": "7719126521", - "voter": "chekohler" - }, - { - "rshares": "2817061108", - "voter": "skycae" - }, - { - "rshares": "3613224340", - "voter": "itchyfeetdonica" - }, - { - "rshares": "55469195839", - "voter": "qustodian" - }, - { - "rshares": "1490119083", - "voter": "tomatom" - }, - { - "rshares": "3126024096", - "voter": "elbrava" - }, - { - "rshares": "6404769003", - "voter": "gabrielatravels" - }, - { - "rshares": "6166187678", - "voter": "carn" - }, - { - "rshares": "1188694221", - "voter": "leticiapereira" - }, - { - "rshares": "2566947526", - "voter": "koreaminer" - }, - { - "rshares": "906201360", - "voter": "chrismadcboy2016" - }, - { - "rshares": "770297063", - "voter": "wisewoof" - }, - { - "rshares": "1462375019", - "voter": "soufiani" - }, - { - "rshares": "643746884", - "voter": "gribouille" - }, - { - "rshares": "600130581", - "voter": "pandasquad" - }, - { - "rshares": "4614879808", - "voter": "upfundme" - }, - { - "rshares": "41646276227", - "voter": "katysavage" - }, - { - "rshares": "117230032386", - "voter": "ocd-witness" - }, - { - "rshares": "780957710", - "voter": "ericburgoyne" - }, - { - "rshares": "23001124619", - "voter": "bigtom13" - }, - { - "rshares": "3494461730", - "voter": "nwjordan" - }, - { - "rshares": "1121281400", - "voter": "verhp11" - }, - { - "rshares": "5527424011", - "voter": "qtip" - }, - { - "rshares": "264239602043", - "voter": "takowi" - }, - { - "rshares": "957572267", - "voter": "russellstockley" - }, - { - "rshares": "43276979175", - "voter": "miroslavrc" - }, - { - "rshares": "1717848218", - "voter": "foxyspirit" - }, - { - "rshares": "16397909861", - "voter": "qberry" - }, - { - "rshares": "150639888411", - "voter": "fotogruppemunich" - }, - { - "rshares": "624108296", - "voter": "qurator-tier-0" - }, - { - "rshares": "8055813087978", - "voter": "julialee66" - }, - { - "rshares": "62736521776", - "voter": "saboin" - }, - { - "rshares": "4891396531", - "voter": "realblockchain" - }, - { - "rshares": "46819644403", - "voter": "indigoocean" - }, - { - "rshares": "4683476503", - "voter": "celinavisaez" - }, - { - "rshares": "549909450", - "voter": "indayclara" - }, - { - "rshares": "39753487414", - "voter": "hatoto" - }, - { - "rshares": "3470158725", - "voter": "crystalhuman" - }, - { - "rshares": "3063245893", - "voter": "ntowl" - }, - { - "rshares": "181115406819", - "voter": "nateaguila" - }, - { - "rshares": "57699234202", - "voter": "bdmillergallery" - }, - { - "rshares": "1288852445", - "voter": "leonnolan24" - }, - { - "rshares": "3095735738", - "voter": "mariajruizb" - }, - { - "rshares": "1415566131", - "voter": "yougotavote" - }, - { - "rshares": "3676613370", - "voter": "longer" - }, - { - "rshares": "7990405989", - "voter": "blewitt" - }, - { - "rshares": "31130877462779", - "voter": "ocdb" - }, - { - "rshares": "1049423742", - "voter": "jesusmedit" - }, - { - "rshares": "5962681292", - "voter": "dronegraphica" - }, - { - "rshares": "1673752985", - "voter": "mrultracheese" - }, - { - "rshares": "5790292586", - "voter": "minimining" - }, - { - "rshares": "1071231498", - "voter": "mobi72" - }, - { - "rshares": "881135605", - "voter": "emperorhassy" - }, - { - "rshares": "31250555", - "voter": "laissez-faire" - }, - { - "rshares": "812644066", - "voter": "jackofcrows" - }, - { - "rshares": "1026134917", - "voter": "pushpedal" - }, - { - "rshares": "220265060570", - "voter": "johannpiber" - }, - { - "rshares": "6715936849", - "voter": "danieli98" - }, - { - "rshares": "1008036369", - "voter": "jdugarte" - }, - { - "rshares": "730419331", - "voter": "azli13" - }, - { - "rshares": "550438243", - "voter": "pandapuzzles" - }, - { - "rshares": "5912603982", - "voter": "edriseur" - }, - { - "rshares": "3163833422", - "voter": "robmojo" - }, - { - "rshares": "8663231395", - "voter": "jacuzzi" - }, - { - "rshares": "593942227", - "voter": "maarkhor" - }, - { - "rshares": "15562195936", - "voter": "delabo" - }, - { - "rshares": "71352154", - "voter": "limka" - }, - { - "rshares": "55618893543", - "voter": "kokadi" - }, - { - "rshares": "967809538", - "voter": "artmentor" - }, - { - "rshares": "2135380963", - "voter": "abbenay" - }, - { - "rshares": "6607512480", - "voter": "cryptofiloz" - }, - { - "rshares": "2308089041", - "voter": "ambifokus" - }, - { - "rshares": "3204614092", - "voter": "squareonefarms" - }, - { - "rshares": "20365110179", - "voter": "maryincryptoland" - }, - { - "rshares": "19571813899", - "voter": "epicdice" - }, - { - "rshares": "3195998114", - "voter": "yiobri" - }, - { - "rshares": "1867112943", - "voter": "hjlee119" - }, - { - "rshares": "532342489", - "voter": "tinyhousecryptos" - }, - { - "rshares": "3958509573", - "voter": "ocd-accountant" - }, - { - "rshares": "2391295265", - "voter": "leighscotford" - }, - { - "rshares": "591437659", - "voter": "maddogmike" - }, - { - "rshares": "15949598692", - "voter": "ufm.pay" - }, - { - "rshares": "3357691059", - "voter": "hongdangmu" - }, - { - "rshares": "4605742092", - "voter": "actisam" - }, - { - "rshares": "556421180", - "voter": "steemlondon" - }, - { - "rshares": "567540228", - "voter": "splatts" - }, - { - "rshares": "4583582953", - "voter": "dollarbills" - }, - { - "rshares": "574998046", - "voter": "rufoodingkidding" - }, - { - "rshares": "1991786967", - "voter": "bcm.dblog" - }, - { - "rshares": "10206281453", - "voter": "goldstreet" - }, - { - "rshares": "966953657", - "voter": "sneakyfreak" - }, - { - "rshares": "960098467", - "voter": "sneakysneak" - }, - { - "rshares": "933123428", - "voter": "creepycrawly" - }, - { - "rshares": "931203014", - "voter": "creepycrawler" - }, - { - "rshares": "6586371599", - "voter": "dpend.active" - }, - { - "rshares": "930911867", - "voter": "crawlingterror" - }, - { - "rshares": "930569295", - "voter": "creepypastaz" - }, - { - "rshares": "929468054", - "voter": "poodlenoodle" - }, - { - "rshares": "4908496360", - "voter": "minibets" - }, - { - "rshares": "927537168", - "voter": "minib1" - }, - { - "rshares": "2146656628", - "voter": "fengchao" - }, - { - "rshares": "1739657327", - "voter": "green-finger" - }, - { - "rshares": "190610062072", - "voter": "nulledgh0st" - }, - { - "rshares": "530292689937", - "voter": "softworld" - }, - { - "rshares": "28080365", - "voter": "tips.tracker" - }, - { - "rshares": "20223690906", - "voter": "the100" - }, - { - "rshares": "539813694", - "voter": "archon-mining" - }, - { - "rshares": "910625514", - "voter": "iameden" - }, - { - "rshares": "3353031502", - "voter": "rihc94" - }, - { - "rshares": "51653426034", - "voter": "hivehustlers" - }, - { - "rshares": "57795817622", - "voter": "buzzzz" - }, - { - "rshares": "8724111094", - "voter": "chittysity" - }, - { - "rshares": "0", - "voter": "nuforhad" - } + "active_votes": [ + { + "rshares": "504195513450", + "voter": "barrie" + }, + { + "rshares": "31620913718202", + "voter": "smooth" + }, + { + "rshares": "1911892676725", + "voter": "badassmother" + }, + { + "rshares": "2052957762572", + "voter": "hr1" + }, + { + "rshares": "1304415071462", + "voter": "rossco99" + }, + { + "rshares": "22865183550", + "voter": "jaewoocho" + }, + { + "rshares": "226246467529", + "voter": "steem-id" + }, + { + "rshares": "1576158798591", + "voter": "joseph" + }, + { + "rshares": "452786214573", + "voter": "recursive3" + }, + { + "rshares": "667448946492", + "voter": "masteryoda" + }, + { + "rshares": "3120322518686", + "voter": "recursive" + }, + { + "rshares": "1246183601", + "voter": "mineralwasser" + }, + { + "rshares": "681020986865", + "voter": "boombastic" + }, + { + "rshares": "91328598326", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "1670010256", + "voter": "bingo-1" + }, + { + "rshares": "5939141625779", + "voter": "smooth.witness" + }, + { + "rshares": "9167324238", + "voter": "idol" + }, + { + "rshares": "5147451513", + "voter": "sakr" + }, + { + "rshares": "1577927842", + "voter": "jocelyn" + }, + { + "rshares": "83529892028", + "voter": "acidsun" + }, + { + "rshares": "15004772648", + "voter": "gregory-f" + }, + { + "rshares": "9412699804", + "voter": "gregory60" + }, + { + "rshares": "1221939836170", + "voter": "gavvet" + }, + { + "rshares": "74914418556", + "voter": "eeks" + }, + { + "rshares": "3023823526", + "voter": "fkn" + }, + { + "rshares": "3974627163", + "voter": "elishagh1" + }, + { + "rshares": "584166740800", + "voter": "nanzo-scoop" + }, + { + "rshares": "450784780", + "voter": "jeffanthonyfds" + }, + { + "rshares": "177394802953", + "voter": "mummyimperfect" + }, + { + "rshares": "313689446", + "voter": "coar" + }, + { + "rshares": "106630632039", + "voter": "asch" + }, + { + "rshares": "1061217841", + "voter": "murh" + }, + { + "rshares": "6230682263", + "voter": "cryptofunk" + }, + { + "rshares": "2057276344", + "voter": "error" + }, + { + "rshares": "985521934082", + "voter": "cyber" + }, + { + "rshares": "61711858916", + "voter": "theshell" + }, + { + "rshares": "49574865624", + "voter": "ak2020" + }, + { + "rshares": "769703167086", + "voter": "satoshifund" + }, + { + "rshares": "409231996622", + "voter": "taoteh1221" + }, + { + "rshares": "410502622", + "voter": "applecrisp" + }, + { + "rshares": "33781859925", + "voter": "ratel" + }, + { + "rshares": "121380113922", + "voter": "geoffrey" + }, + { + "rshares": "26709210609", + "voter": "kimziv" + }, + { + "rshares": "74282084191", + "voter": "emily-cook" + }, + { + "rshares": "2187587354", + "voter": "superfreek" + }, + { + "rshares": "19974734600", + "voter": "thebatchman" + }, + { + "rshares": "60285274969", + "voter": "good-karma" + }, + { + "rshares": "1609452901", + "voter": "gidlark" + }, + { + "rshares": "73849034695", + "voter": "rubybian" + }, + { + "rshares": "365381071", + "voter": "konstantin" + }, + { + "rshares": "4533066552", + "voter": "stranger27" + }, + { + "rshares": "2597453094", + "voter": "romel" + }, + { + "rshares": "14760800618", + "voter": "furion" + }, + { + "rshares": "70822893", + "voter": "barbara2" + }, + { + "rshares": "78718732", + "voter": "ch0c0latechip" + }, + { + "rshares": "72854943", + "voter": "doge4lyf" + }, + { + "rshares": "248653120", + "voter": "ardina" + }, + { + "rshares": "14487949878", + "voter": "aaseb" + }, + { + "rshares": "4209499465", + "voter": "karen13" + }, + { + "rshares": "10646413479", + "voter": "deviedev" + }, + { + "rshares": "258981906731", + "voter": "nabilov" + }, + { + "rshares": "35782810726", + "voter": "creemej" + }, + { + "rshares": "3800725646", + "voter": "maximkichev" + }, + { + "rshares": "167301783484", + "voter": "blueorgy" + }, + { + "rshares": "582626783", + "voter": "poseidon" + }, + { + "rshares": "2083366228", + "voter": "iamwne" + }, + { + "rshares": "7946556816", + "voter": "smolalit" + }, + { + "rshares": "347973296817", + "voter": "calaber24p" + }, + { + "rshares": "3506024506", + "voter": "simon.braki.love" + }, + { + "rshares": "268131351853", + "voter": "liberosist" + }, + { + "rshares": "32542201152", + "voter": "deanliu" + }, + { + "rshares": "40247477787", + "voter": "celsius100" + }, + { + "rshares": "204615752038", + "voter": "jl777" + }, + { + "rshares": "2452241013", + "voter": "positive" + }, + { + "rshares": "35821871446", + "voter": "paquito" + }, + { + "rshares": "101547003699", + "voter": "crazymumzysa" + }, + { + "rshares": "4827846086", + "voter": "gustavopasquini" + }, + { + "rshares": "18844269406", + "voter": "carlidos" + }, + { + "rshares": "17267164725", + "voter": "proto" + }, + { + "rshares": "4513770870", + "voter": "sisterholics" + }, + { + "rshares": "1444237397", + "voter": "alex.chien" + }, + { + "rshares": "8964609699", + "voter": "royalmacro" + }, + { + "rshares": "82565168", + "voter": "fnait" + }, + { + "rshares": "73351025", + "voter": "keepcalmand" + }, + { + "rshares": "120956823", + "voter": "ap2002" + }, + { + "rshares": "8734053750", + "voter": "taker" + }, + { + "rshares": "159615103593", + "voter": "laonie" + }, + { + "rshares": "157504637007", + "voter": "twinner" + }, + { + "rshares": "24561329465", + "voter": "laoyao" + }, + { + "rshares": "5329392113", + "voter": "myfirst" + }, + { + "rshares": "32400440159", + "voter": "somebody" + }, + { + "rshares": "16605279252", + "voter": "sunshine" + }, + { + "rshares": "1211439463", + "voter": "flysaga" + }, + { + "rshares": "2084689825", + "voter": "gmurph" + }, + { + "rshares": "7157539840", + "voter": "midnightoil" + }, + { + "rshares": "2327843962", + "voter": "kalimor" + }, + { + "rshares": "17901440239", + "voter": "xiaohui" + }, + { + "rshares": "172970676828", + "voter": "terrycraft" + }, + { + "rshares": "369703928", + "voter": "riosparada" + }, + { + "rshares": "808461612", + "voter": "elfkitchen" + }, + { + "rshares": "103387869456", + "voter": "joele" + }, + { + "rshares": "5855390607", + "voter": "oflyhigh" + }, + { + "rshares": "559689131", + "voter": "xiaokongcom" + }, + { + "rshares": "2114128942", + "voter": "future24" + }, + { + "rshares": "1128227680", + "voter": "xianjun" + }, + { + "rshares": "7546646500", + "voter": "lgm-1" + }, + { + "rshares": "2249482011", + "voter": "njall" + }, + { + "rshares": "73887203", + "voter": "microluck" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "6417571438", + "voter": "userlogin" + }, + { + "rshares": "59219258", + "voter": "photo00" + }, + { + "rshares": "604294820", + "voter": "tagira" + }, + { + "rshares": "2077233526", + "voter": "chinadaily" + }, + { + "rshares": "110661420", + "voter": "pollina" + }, + { + "rshares": "9071955992", + "voter": "johnnyyash" + }, + { + "rshares": "3352601337", + "voter": "macartem" + }, + { + "rshares": "9827647000", + "voter": "gvargas123" + }, + { + "rshares": "3707793427", + "voter": "movievertigo" + }, + { + "rshares": "23716271959", + "voter": "andrewawerdna" + }, + { + "rshares": "9139485521", + "voter": "craigwilliamz" + }, + { + "rshares": "56654664918", + "voter": "mandibil" + }, + { + "rshares": "60273361", + "voter": "bonapetit" + }, + { + "rshares": "74550672", + "voter": "steembriefing" + }, + { + "rshares": "55750195", + "voter": "riv" + }, + { + "rshares": "5401359628", + "voter": "nulliusinverba" + }, + { + "rshares": "2196809758", + "voter": "runridefly" + }, + { + "rshares": "33516506660", + "voter": "krnel" + }, + { + "rshares": "5053551216", + "voter": "richardcrill" + }, + { + "rshares": "11070141971", + "voter": "sponge-bob" + }, + { + "rshares": "53070013", + "voter": "apparat" + }, + { + "rshares": "12276570645", + "voter": "doitvoluntarily" + }, + { + "rshares": "201688406600", + "voter": "asksisk" + }, + { + "rshares": "330365849", + "voter": "panther" + }, + { + "rshares": "11067573914", + "voter": "brains" + }, + { + "rshares": "1396726660", + "voter": "steemafon" + }, + { + "rshares": "3310976095", + "voter": "anton333" + }, + { + "rshares": "339274981", + "voter": "anomaly" + }, + { + "rshares": "123155378", + "voter": "ola1" + }, + { + "rshares": "70282046", + "voter": "mari5555na" + }, + { + "rshares": "6087022243", + "voter": "ekaterina4ka" + }, + { + "rshares": "291933324", + "voter": "thefinanceguy" + }, + { + "rshares": "50223099", + "voter": "battalar" + }, + { + "rshares": "50873654", + "voter": "palladium" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "50565798", + "voter": "penthouse" + }, + { + "rshares": "2216805889", + "voter": "bapparabi" + }, + { + "rshares": "50532230", + "voter": "friends" + }, + { + "rshares": "469221474", + "voter": "iontom" + }, + { + "rshares": "50482289", + "voter": "connection" + }, + { + "rshares": "444435987", + "voter": "witchcraftblog" + }, + { + "rshares": "157816798", + "voter": "gravity" + }, + { + "rshares": "160957729", + "voter": "realtime" + }, + { + "rshares": "160835930", + "voter": "skrillex" + }, + { + "rshares": "148889617", + "voter": "food-creator" + }, + { + "rshares": "156814579", + "voter": "haribo" + }, + { + "rshares": "159425365", + "voter": "tipsandtricks" + }, + { + "rshares": "156054487", + "voter": "fallout" + }, + { + "rshares": "159143891", + "voter": "reef" + }, + { + "rshares": "155528114", + "voter": "icesteem" + }, + { + "rshares": "158632601", + "voter": "cream" + }, + { + "rshares": "155452864", + "voter": "jyriygo" + } + ], + "author": "terrycraft", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Vegetarianism is philosophy which has deep religious and ethical roots, the essence is the refuse to eat meat of living beings.\nPythagorean were vegetarians. Yogis of ancient India were vegetarians. The followers of Buddhism are prescribed to be vegetarians. Early Christianity forbade killing for food.\nI became a vegetarian at the age of 15. I remember clear this comic occasion: during another lush family dinner my dad putted the shin of the roasted goose on my plate. When he was putting this piece of once living bird, I claimed it for the first time: \u201cNo, dad thanks. I don\u2019t eat living creatures anymore. I\u2019m a vegetarian\u201d.\nhttp://petroart.ru/art/b/bronikov/img/3.jpg\n>\u0412\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0441\u0442\u0432\u043e - \u044d\u0442\u043e \u0444\u0438\u043b\u043e\u0441\u043e\u0444\u0438\u044f, \u0438\u043c\u0435\u044e\u0449\u0430\u044f \u043e\u0447\u0435\u043d\u044c \u0434\u0440\u0435\u0432\u043d\u0438\u0435 \u0440\u0435\u043b\u0438\u0433\u0438\u043e\u0437\u043d\u044b\u0435 \u0438 \u044d\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043a\u043e\u0440\u043d\u0438, \u0441\u0443\u0442\u044c \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0441\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043e\u0442\u043a\u0430\u0437 \u043e\u0442 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u043b\u0435\u043d\u0438\u044f \u0432 \u043f\u0438\u0449\u0443 \u043c\u044f\u0441\u0430 \u0436\u0438\u0432\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432. \n\u041f\u0438\u0444\u0430\u0433\u043e\u0440\u0435\u0439\u0446\u044b \u0431\u044b\u043b\u0438 \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0446\u0430\u043c\u0438. \u0419\u043e\u0433\u0438 \u0434\u0440\u0435\u0432\u043d\u0435\u0439 \u0418\u043d\u0434\u0438\u0438 \u0431\u044b\u043b\u0438 \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0446\u0430\u043c\u0438. \u0411\u0443\u0434\u0434\u0438\u0437\u043c \u043f\u0440\u0435\u0434\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u0442 \u0441\u0432\u043e\u0438\u043c \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0441\u0442\u0432\u043e. \u0420\u0430\u043d\u043d\u0435\u0435 \u0445\u0440\u0438\u0441\u0442\u0438\u0430\u043d\u0441\u0442\u0432\u043e \u0437\u0430\u043f\u0440\u0435\u0449\u0430\u043b\u043e \u0443\u0431\u0438\u0439\u0441\u0442\u0432\u043e \u0434\u043b\u044f \u0447\u0440\u0435\u0432\u0430.\n\u042f \u0441\u0442\u0430\u043b\u0430 \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u043e\u0439 \u0432 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0435 15 \u043b\u0435\u0442. \u041f\u0440\u0435\u043a\u0440\u0430\u0441\u043d\u043e \u043f\u043e\u043c\u043d\u044e \u044d\u0442\u043e\u0442 \u043a\u043e\u043c\u0438\u0447\u043d\u044b\u0439 \u0441\u043b\u0443\u0447\u0430\u0439: \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0433\u043e \u043f\u044b\u0448\u043d\u043e\u0433\u043e \u0441\u0435\u043c\u0435\u0439\u043d\u043e\u0433\u043e \u0443\u0436\u0438\u043d\u0430 \u043f\u0430\u043f\u0430 \u0432\u044b\u0437\u0432\u0430\u043b\u0441\u044f \u043f\u043e\u043b\u043e\u0436\u0438\u0442\u044c \u043c\u043d\u0435 \u0432 \u0442\u0430\u0440\u0435\u043b\u043a\u0443 \u0433\u043e\u043b\u0435\u043d\u044c \u0437\u0430\u043f\u0435\u0447\u0451\u043d\u043d\u043e\u0433\u043e \u0432 \u0434\u0443\u0445\u043e\u0432\u043a\u0435 \u0433\u0443\u0441\u044f. \u0412 \u0442\u043e \u0432\u0440\u0435\u043c\u044f \u043a\u0430\u043a \u043e\u043d \u0443\u0436\u0435 \u0432\u0437\u0432\u0430\u043b\u0438\u0432\u0430\u043b \u0432 \u043c\u043e\u044e \u0442\u0430\u0440\u0435\u043b\u043a\u0443 \u043a\u0443\u0441\u043e\u043a \u043d\u0435\u043a\u043e\u0433\u0434\u0430 \u0436\u0438\u0432\u043e\u0439 \u043f\u0442\u0438\u0446\u044b, \u044f \u0432\u043f\u0435\u0440\u0432\u044b\u0435 \u0437\u0430\u044f\u0432\u0438\u043b\u0430 \u0432\u043e \u0432\u0441\u0435\u0443\u0441\u043b\u044b\u0448\u0430\u043d\u0438\u0435:\"\u041d\u0435\u0442, \u043f\u0430\u043f\u0430, \u043d\u0435 \u043d\u0443\u0436\u043d\u043e. \u042f \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0435\u043c \u0436\u0438\u0432\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432. \u042f \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u0430.\"\n----\nI was a teenager at that time, my parents didn\u2019t treat it seriously, considering it as a teenage whim, didn\u2019t understand me, and for sure, didn\u2019t support me. Though they didn\u2019t object it, thinking that it would pass in a few months. But it wasn\u2019t a whim; it was my first serious and conscious decision in my life. They stopped ostracizing me only in a year after, during that year I experienced, at the example of a family as a social group, what it\u2019s like to have your personal opinion when the majority is against you!\nWhat did cause my decision to become a vegetarian?\nI can\u2019t remember the particular event, which marked the switch of my mind to conscious nutrition without harm to living beings. It seemed that I did it easily because I\u2019d been moving to it and at the certain moment I was morally ready to do the step. For example I remember when I was just a kid, at the age of 5 or 6, I was playing in our garden, thinking: \u201cWhy should I kill to keep on living?\u201d I didn\u2019t ask anybody about it, because I felt that I wouldn\u2019t get the proper answer from adults. This question gave me no rest; I often tried to solve this dilemma reasoning from how my childish heart perceived the world, which opposed all violence and evil. Understanding that this faceless, usually tasty grilled chicken used to be a living being, which had been born, had been a little chick, it was eating and enjoying life and then it was beheaded killed to make me think that I like eating fried chicken legs; it led me to the ideological confusion. I loved every animal, considered them as friends; on the one hand I saw people keeping pets and treating them as family members. On the other hand people killed an animal to have something tasty on their dinner table. And so did I, I was sitting and eating that grilled chicken.\n\nhttp://www.damex.ru/images/cache/660x495/crop/images%7Ccms-image-000013620.jpg\n\n>\u0422\u043e\u0433\u0434\u0430 \u044f \u0431\u044b\u043b\u0430 \u043f\u043e\u0434\u0440\u043e\u0441\u0442\u043a\u043e\u043c, \u0438 \u043c\u043e\u0438 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u0438 \u043d\u0435 \u043e\u0442\u043d\u0435\u0441\u043b\u0438\u0441\u044c \u043a\u043e \u043c\u043d\u0435 \u0441\u0435\u0440\u044c\u0451\u0437\u043d\u043e, \u043f\u043e\u0441\u0447\u0438\u0442\u0430\u0432 \u044d\u0442\u043e \u043f\u043e\u0434\u0440\u043e\u0441\u0442\u043a\u043e\u0432\u043e\u0439 \u043f\u0440\u0438\u0447\u0443\u0434\u043e\u0439, \u043d\u0435 \u043f\u043e\u043d\u044f\u043b\u0438 \u043c\u0435\u043d\u044f \u0438, \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e, \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0430\u043b\u0438. \u041d\u043e \u043d\u0435 \u0441\u0442\u0430\u043b\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0432\u043e\u0437\u0440\u0430\u0436\u0430\u0442\u044c, \u0434\u0443\u043c\u0430\u044f, \u0447\u0442\u043e \u0447\u0435\u0440\u0435\u0437 \u043f\u0430\u0440\u0443-\u0442\u0440\u043e\u0439\u043a\u0443 \u043c\u0435\u0441\u044f\u0446\u0435\u0432 \u044d\u0442\u043e \u043f\u0440\u043e\u0439\u0434\u0451\u0442. \u041d\u043e \u044d\u0442\u043e \u043d\u0435 \u0431\u044b\u043b\u043e \u043f\u0440\u0438\u0447\u0443\u0434\u043e\u0439, \u044d\u0442\u043e \u0431\u044b\u043b\u043e \u043f\u0435\u0440\u0432\u044b\u043c \u0441\u0435\u0440\u044c\u0451\u0437\u043d\u044b\u043c \u0438 \u043e\u0441\u043e\u0437\u043d\u0430\u043d\u043d\u044b\u043c \u0440\u0435\u0448\u0435\u043d\u0438\u0435\u043c \u0432 \u043c\u043e\u0435\u0439 \u0436\u0438\u0437\u043d\u0438. \u0422\u043e\u043b\u044c\u043a\u043e \u0441\u043f\u0443\u0441\u0442\u044f \u0433\u043e\u0434 \u043e\u043d\u0438 \u043f\u0435\u0440\u0435\u0441\u0442\u0430\u043b\u0438 \u043f\u043e\u0434\u0432\u0435\u0440\u0433\u0430\u0442\u044c \u043c\u0435\u043d\u044f \u0441\u0435\u043c\u0435\u0439\u043d\u043e\u043c\u0443 \u043e\u0441\u0442\u0440\u0430\u043a\u0438\u0437\u043c\u0443, \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u044f \u0445\u043e\u0440\u043e\u0448\u043e \u043f\u0440\u043e\u0447\u0443\u0432\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0430 \u043d\u0430 \u043f\u0440\u0438\u043c\u0435\u0440\u0435 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \"\u0441\u0435\u043c\u044c\u044f\", \u0447\u0442\u043e \u0442\u0430\u043a\u043e\u0435 \u0438\u043c\u0435\u0442\u044c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u043c\u043d\u0435\u043d\u0438\u0435, \u043a\u043e\u0433\u0434\u0430 \u0431\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u043e \u043f\u0440\u043e\u0442\u0438\u0432 \u0442\u0435\u0431\u044f!\n\u0427\u0435\u043c \u0431\u044b\u043b\u043e \u0432\u044b\u0437\u0432\u0430\u043d\u043e \u043c\u043e\u0451 \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u0442\u044c \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u043e\u0439?\n\u042f \u043d\u0435 \u043c\u043e\u0433\u0443 \u0432\u0441\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e\u0433\u043e \u0441\u043e\u0431\u044b\u0442\u0438\u044f, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0431\u044b \u043e\u0437\u043d\u0430\u043c\u0435\u043d\u043e\u0432\u0430\u043b\u043e \u0440\u0435\u0437\u043a\u0438\u0439 \u0441\u0434\u0432\u0438\u0433 \u043c\u043e\u0435\u0433\u043e \u0441\u043e\u0437\u043d\u0430\u043d\u0438\u044f \u0438 \u043f\u0435\u0440\u0435\u0445\u043e\u0434 \u043d\u0430 \u043e\u0441\u043e\u0437\u043d\u0430\u043d\u043d\u043e\u0435 \u043f\u0438\u0442\u0430\u043d\u0438\u0435 \u0431\u0435\u0437 \u0432\u0440\u0435\u0434\u0430 \u0434\u043b\u044f \u0436\u0438\u0432\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432. \u041c\u043d\u0435 \u0434\u0430\u0436\u0435 \u043a\u0430\u0436\u0435\u0442\u0441\u044f, \u0447\u0442\u043e \u044d\u0442\u043e \u043f\u0440\u043e\u0448\u043b\u043e \u0442\u0430\u043a \u043b\u0435\u0433\u043a\u043e \u0438 \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0438\u043c\u0435\u043d\u043d\u043e \u043f\u043e\u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u044f \u0443\u0436\u0435 \u0434\u0430\u0432\u043d\u043e \u0448\u043b\u0430 \u043a \u044d\u0442\u043e\u043c\u0443 \u0438 \u0432 \u043a\u0430\u043a\u043e\u0439-\u0442\u043e \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u0440\u043e\u0441\u0442\u043e \u043c\u043e\u0440\u0430\u043b\u044c\u043d\u043e \u0441\u043e\u0437\u0440\u0435\u043b\u0430 \u0434\u043b\u044f \u0442\u0430\u043a\u043e\u0433\u043e \u0448\u0430\u0433\u0430. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043f\u043e\u043c\u043d\u044e, \u043a\u0430\u043a \u0435\u0449\u0451 \u0431\u0443\u0434\u0443\u0447\u0438 \u0441\u043e\u0432\u0441\u0435\u043c \u0440\u0435\u0431\u0451\u043d\u043a\u043e\u043c, \u043b\u0435\u0442 \u044d\u0442\u0430\u043a \u0432 \u043f\u044f\u0442\u044c-\u0448\u0435\u0441\u0442\u044c, \u044f \u0438\u0433\u0440\u0430\u043b\u0430 \u0432 \u043d\u0430\u0448\u0435\u043c \u043e\u0433\u043e\u0440\u043e\u0434\u0435 \u0438 \u0434\u0443\u043c\u0430\u043b\u0430:\"\u0410 \u043f\u043e\u0447\u0435\u043c\u0443, \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0436\u0438\u0442\u044c, \u044f \u0434\u043e\u043b\u0436\u043d\u0430 \u0443\u0431\u0438\u0432\u0430\u0442\u044c?\" \u042f \u043d\u0438\u043a\u043e\u0433\u043e \u043d\u0435 \u0441\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u043b\u0430 \u043e\u0431 \u044d\u0442\u043e\u043c, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e \u044f\u0441\u043d\u043e \u0447\u0443\u0432\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0430, \u0447\u0442\u043e \u043d\u0438\u043a\u0442\u043e \u0438\u0437 \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445 \u043d\u0435 \u0432 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0438 \u043e\u0442\u0432\u0435\u0442\u0438\u0442\u044c \u043c\u043d\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e. \u042d\u0442\u043e\u0442 \u0432\u043e\u043f\u0440\u043e\u0441 \u043d\u0435 \u0434\u0430\u0432\u0430\u043b \u043c\u043d\u0435 \u043f\u043e\u043a\u043e\u044f, \u044f \u0447\u0430\u0441\u0442\u043e \u043f\u044b\u0442\u0430\u043b\u0430\u0441\u044c \u0440\u0435\u0448\u0438\u0442\u044c \u044d\u0442\u0443 \u0434\u0438\u043b\u0435\u043c\u043c\u0443, \u0438\u0441\u0445\u043e\u0434\u044f \u0438\u0437 \u0432\u043e\u0441\u043f\u0440\u0438\u044f\u0442\u0438\u044f \u043c\u0438\u0440\u0430 \u0441\u0435\u0440\u0434\u0446\u0435\u043c \u0440\u0435\u0431\u0451\u043d\u043a\u0430, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043f\u0440\u043e\u0442\u0438\u0432\u0438\u0442\u0441\u044f \u0432\u0441\u044f\u043a\u043e\u043c\u0443 \u043d\u0430\u0441\u0438\u043b\u0438\u044e \u0438 \u0437\u043b\u0443 \u043f\u043e \u0441\u0430\u043c\u043e\u0439 \u0441\u0432\u043e\u0435\u0439 \u043f\u0440\u0438\u0440\u043e\u0434\u0435. \u041f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0435, \u0447\u0442\u043e \u044d\u0442\u0430 \u0431\u0435\u0437\u043b\u0438\u043a\u0430\u044f, \u043f\u0440\u0438\u0432\u044b\u0447\u043d\u043e \u0432\u043a\u0443\u0441\u043d\u0430\u044f \"\u043a\u0443\u0440\u0438\u0446\u0430-\u0433\u0440\u0438\u043b\u044c\" \u0431\u044b\u043b\u0430 \u0436\u0438\u0432\u044b\u043c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043e\u043c, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043a\u043e\u0433\u0434\u0430-\u0442\u043e \u0431\u044b\u043b\u043e \u0440\u043e\u0436\u0434\u0435\u043d\u043e, \u0440\u043e\u0441\u043b\u043e \u043c\u0430\u043b\u0435\u043d\u044c\u043a\u0438\u043c \u0446\u044b\u043f\u043b\u0451\u043d\u043a\u043e\u043c, \u043a\u0443\u0448\u0430\u043b\u043e \u0438 \u043f\u043e-\u0441\u0432\u043e\u0435\u043c\u0443 \u0440\u0430\u0434\u043e\u0432\u0430\u043b\u043e\u0441\u044c \u0436\u0438\u0437\u043d\u0438, \u0430 \u0442\u0435\u043f\u0435\u0440\u044c \u043e\u0431\u0435\u0437\u0433\u043b\u0430\u0432\u043b\u0435\u043d\u043e, \u0443\u0431\u0438\u0442\u043e, \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u044f \u0434\u0443\u043c\u0430\u043b\u0430, \u043a\u0430\u043a \u044f \u043b\u044e\u0431\u043b\u044e \u043a\u0443\u0448\u0430\u0442\u044c \u0436\u0430\u0440\u0435\u043d\u044b\u0435 \u043d\u043e\u0436\u043a\u0438 \u044d\u0442\u043e\u0439 \u043a\u0443\u0440\u043e\u0447\u043a\u0438, \u043f\u0440\u0438\u0432\u043e\u0434\u0438\u043b\u043e \u043c\u0435\u043d\u044f \u0432 \u0438\u0434\u0435\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0437\u0430\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e. \u042f \u043e\u0447\u0435\u043d\u044c \u043b\u044e\u0431\u0438\u043b\u0430 \u0432\u0441\u0435\u0445 \u0436\u0438\u0432\u043e\u0442\u043d\u044b\u0445, \u0441\u0447\u0438\u0442\u0430\u043b\u0430 \u0438\u0445 \u0441\u0432\u043e\u0438\u043c\u0438 \u0434\u0440\u0443\u0437\u044c\u044f\u043c\u0438, \u0432\u0438\u0434\u0435\u043b\u0430, \u043a\u0430\u043a \u043b\u044e\u0434\u0438 \u0437\u0430\u0432\u043e\u0434\u044f\u0442 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0434\u043e\u043c\u0430\u0448\u043d\u0438\u0445 \u043b\u044e\u0431\u0438\u043c\u0446\u0435\u0432 \u043a\u0430\u043a \u0447\u043b\u0435\u043d\u043e\u0432 \u0441\u0435\u043c\u044c\u0438. \u0418 \u0442\u0443\u0442 \u0436\u0435 \u0441 \u0434\u0440\u0443\u0433\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u043b\u044e\u0434\u0438 \u0443\u0431\u0438\u0432\u0430\u044e\u0442 \u0436\u0438\u0432\u043e\u0442\u043d\u043e\u0435, \u0447\u0442\u043e\u0431\u044b \u0431\u044b\u043b\u043e \u0447\u0442\u043e \u0432\u043a\u0443\u0441\u043d\u043e\u0435 \u043f\u043e\u043a\u0443\u0448\u0430\u0442\u044c \u043d\u0430 \u0441\u0442\u043e\u043b\u0435. \u0418 \u0432\u043e\u0442 \u044f \u0442\u043e\u0436\u0435 \u0441\u0438\u0436\u0443 \u0438 \u0435\u043c \u044d\u0442\u0443 \u043a\u0443\u0440\u0438\u0446\u0443-\u0433\u0440\u0438\u043b\u044c. \n-----\nBut seeing that adults didn\u2019t care about it, I as any other child didn\u2019t oppose myself to parents and others; I just assimilate all the manners and customs, equaling to those who seemed to be older and wiser.\nI was growing up and parents\u2019 influence and influence of other unquestioned authorities subsided, I got my personal space in my mind and there was my personal opinion on the questions in it. At the age of 15, the formation of my personality reached the level where issues of life turned into beliefs and beliefs \u2013 into actions. I remembered that childish dilemma in a new perspective, and to the question: \u201cWhy should I kill to keep on living?\u201d I answered: \u201cNO, I SHOULD NOT\u201d\nSince then I\u2019m a vegetarian, it\u2019s been 5 years already.\nhttps://media4.giphy.com/media/xcFZrrcaGhbz2/200w.gif\n>\u041d\u043e \u0432\u0438\u0434\u044f, \u0447\u0442\u043e \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445 \u044d\u0442\u043e \u043d\u0435 \u0437\u0430\u0431\u043e\u0442\u0438\u0442, \u044f, \u043a\u0430\u043a \u043b\u044e\u0431\u043e\u0439 \u0440\u0435\u0431\u0451\u043d\u043e\u043a, \u043d\u0435 \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u043b\u0430 \u0441\u0435\u0431\u044f \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044f\u043c \u0438 \u0432\u0441\u0435\u043c \u0434\u0440\u0443\u0433\u0438\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u0432\u043f\u0438\u0442\u044b\u0432\u0430\u043b\u0430 \u0432\u0441\u0435 \u043d\u0440\u0430\u0432\u044b \u0438 \u043e\u0431\u044b\u0447\u0430\u0438, \u0440\u0430\u0432\u043d\u044f\u044f\u0441\u044c \u043d\u0430 \u0442\u0435\u0445, \u043a\u043e\u0433\u043e \u0441\u0447\u0438\u0442\u0430\u043b\u0430 \u0441\u0442\u0430\u0440\u0448\u0435 \u0438 \u043c\u0443\u0434\u0440\u0435\u0435.\n\u042f \u0440\u043e\u0441\u043b\u0430, \u0438 \u043f\u043e\u0441\u0442\u0435\u043f\u0435\u043d\u043d\u043e \u0432\u043b\u0438\u044f\u043d\u0438\u0435 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u0435\u0439 \u0438 \u043f\u0440\u043e\u0447\u0438\u0445 \u043d\u0435\u043f\u0440\u0435\u0440\u0435\u043a\u0430\u0435\u043c\u044b\u0445 \u0430\u0432\u0442\u043e\u0440\u0438\u0442\u0435\u0442\u043e\u0432 \u0441\u043f\u0430\u0434\u0430\u043b\u043e, \u0443 \u043c\u0435\u043d\u044f \u043f\u043e\u044f\u0432\u043b\u044f\u043b\u043e\u0441\u044c \u043b\u0438\u0447\u043d\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0432 \u0440\u0430\u0437\u0443\u043c\u0435 \u0438 \u0432 \u043d\u0451\u043c \u0437\u0430\u0440\u043e\u0436\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0435 \u0432\u043e\u043f\u0440\u043e\u0441\u044b. \u0418 \u0432 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0435 15 \u043b\u0435\u0442 \u0441\u0442\u0435\u043f\u0435\u043d\u044c \u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u043e\u0435\u0439 \u043b\u0438\u0447\u043d\u043e\u0441\u0442\u0438 \u0434\u043e\u0441\u0442\u0438\u0433\u043b\u0430 \u0442\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f, \u043a\u043e\u0433\u0434\u0430 \u0432\u043e\u043f\u0440\u043e\u0441\u044b \u043a \u0436\u0438\u0437\u043d\u0438 \u043f\u0440\u0435\u0432\u0440\u0430\u0442\u0438\u043b\u0438\u0441\u044c \u0432 \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u044f, \u0430 \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u044f - \u0432 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f. \u042f \u0432\u0441\u043f\u043e\u043c\u043d\u0438\u043b\u0430 \u043e \u0442\u043e\u0439 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u0434\u0438\u043b\u0435\u043c\u043c\u0435 \u0432 \u043d\u043e\u0432\u043e\u043c \u0441\u0432\u0435\u0442\u0435, \u0438 \u043d\u0430 \u0432\u043e\u043f\u0440\u043e\u0441:\"\u041f\u043e\u0447\u0435\u043c\u0443, \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0436\u0438\u0442\u044c, \u044f \u0434\u043e\u043b\u0436\u043d\u0430 \u0443\u0431\u0438\u0432\u0430\u0442\u044c?\" \u044f \u043e\u0442\u0432\u0435\u0442\u0438\u043b\u0430 \u0441\u0435\u0431\u0435 - \"\u041d\u0415 \u0414\u041e\u041b\u0416\u041d\u0410.\" \n\u0421 \u0442\u0435\u0445 \u043f\u043e\u0440 \u044f \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u0430, \u043f\u0440\u043e\u0448\u043b\u043e \u0443\u0436\u0435 \u043f\u044f\u0442\u044c \u043b\u0435\u0442. \n---\nIt\u2019s great happiness to live according to you beliefs without betraying them for the sake of the public opinion, to live in accordance with your conscience and moral purity. I\u2019d like more people to think about what they eat and do it consciously, how inhumane it is to feed on flesh of killed creatures.\nAs it is written in the Gospel of the Essenes: \"It was said to them of old time, 'Honor thy Heavenly Father and thy Earthly Mother, and do their commandments, that thy days may be long upon the earth.' And next afterward was given this commandment, 'Thou shalt not kill,' for life is given to all by God, and that which God has given, let not man take away. For-I tell you truly, from one Mother proceeds all that lives upon the earth. Therefore, he who kills, kills his brother. And from him will the Earthly Mother turn away, and will pluck from him her quickening breasts. And he will be shunned by her angels, and Satan will have his dwelling in his body. And the flesh of slain beasts in his body will become his own tomb. For I tell you truly, he who kills, kills himself, and whoso eats the flesh of slain beasts, eats of the body of death. For in his blood every drop of their blood turns to poison; in his breath their breath to stink; in his flesh their flesh to boils; in his bones their bones to chalk; in his bowels their bowels t o decay; in his eyes their eyes to scales; in his ears their ears to waxy issue. And their death will become his death\u201d\nhttp://99px.ru/sstorage/56/2013/07/image_561607131913053649088.gif\n>\u042d\u0442\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u0435 \u0441\u0447\u0430\u0441\u0442\u044c\u0435 - \u0436\u0438\u0442\u044c, \u0441\u043e\u0433\u043b\u0430\u0441\u043d\u043e \u0441\u0432\u043e\u0438\u043c \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u044f\u043c, \u043d\u0435 \u043f\u0440\u0435\u0434\u0430\u0432\u0430\u044f \u0438\u0445 \u0432 \u0443\u0433\u043e\u0434\u0443 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u043c\u0443 \u043c\u043d\u0435\u043d\u0438\u044e, \u0436\u0438\u0442\u044c - \u0432 \u0441\u043e\u0433\u043b\u0430\u0441\u0438\u0438 \u0441\u043e \u0441\u0432\u043e\u0435\u0439 \u0441\u043e\u0432\u0435\u0441\u0442\u044c\u044e \u0438 \u043d\u0440\u0430\u0432\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u0447\u0438\u0441\u0442\u043e\u0442\u043e\u0439. \u042f \u0445\u043e\u0447\u0443, \u0447\u0442\u043e\u0431\u044b \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435 \u043b\u044e\u0434\u0435\u0439 \u0437\u0430\u0434\u0443\u043c\u0430\u043b\u043e\u0441\u044c \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u043e\u043d\u0438 \u0435\u0434\u044f\u0442, \u0438 \u043e\u0441\u043e\u0437\u043d\u0430\u043b\u043e, \u043a\u0430\u043a \u043d\u0435\u0433\u0443\u043c\u0430\u043d\u043d\u043e \u043f\u0438\u0442\u0430\u0442\u044c\u0441\u044f \u043f\u043b\u043e\u0442\u044c\u044e \u0443\u0431\u0438\u0442\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432.\n\u041a\u0430\u043a \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u043e \u0432 \u0415\u0432\u0430\u043d\u0433\u0435\u043b\u0438\u0438 \u043e\u0442 \u0415\u0441\u0441\u0435\u0435\u0432: \"\u0411\u043e\u0433 \u0437\u0430\u043f\u043e\u0432\u0435\u0434\u043e\u0432\u0430\u043b \u043d\u0430\u0448\u0438\u043c \u043f\u0440\u0435\u0434\u043a\u0430\u043c: \u00ab\u041d\u0435 \u0443\u0431\u0438\u0439\u00bb. \u041d\u043e \u0441\u0435\u0440\u0434\u0446\u0430 \u0438\u0445 \u043e\u0436\u0435\u0441\u0442\u043e\u0447\u0438\u043b\u0438\u0441\u044c, \u0438 \u043e\u043d\u0438 \u0441\u0442\u0430\u043b\u0438 \u0443\u0431\u0438\u0432\u0430\u0442\u044c. \u0422\u043e\u0433\u0434\u0430 \u041c\u043e\u0438\u0441\u0435\u0439 \u0440\u0435\u0448\u0438\u043b, \u0447\u0442\u043e \u043e\u043d\u0438 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u044b \u043f\u043e \u043a\u0440\u0430\u0439\u043d\u0435\u0439 \u043c\u0435\u0440\u0435 \u0443\u0431\u0438\u0432\u0430\u0442\u044c \u043b\u044e\u0434\u0435\u0439, \u0438 \u0434\u043e\u0437\u0432\u043e\u043b\u0438\u043b \u0438\u043c \u0443\u0431\u0438\u0432\u0430\u0442\u044c \u0437\u0432\u0435\u0440\u0435\u0439. \u0418 \u0442\u043e\u0433\u0434\u0430 \u0441\u0435\u0440\u0434\u0446\u0430 \u0432\u0430\u0448\u0438\u0445 \u043f\u0440\u0435\u0434\u043a\u043e\u0432 \u043e\u0436\u0435\u0441\u0442\u043e\u0447\u0438\u043b\u0438\u0441\u044c \u0435\u0449\u0435 \u0431\u043e\u043b\u044c\u0448\u0435, \u0438 \u0441\u0442\u0430\u043b\u0438 \u043e\u043d\u0438 \u0443\u0431\u0438\u0432\u0430\u0442\u044c \u043b\u044e\u0434\u0435\u0439, \u0440\u0430\u0432\u043d\u043e \u043a\u0430\u043a \u0438 \u0437\u0432\u0435\u0440\u0435\u0439. \u041d\u043e \u044f \u0433\u043e\u0432\u043e\u0440\u044e \u0432\u0430\u043c, \u043d\u0435 \u0443\u0431\u0438\u0432\u0430\u0439\u0442\u0435 \u043d\u0438 \u043b\u044e\u0434\u0435\u0439, \u043d\u0438 \u0437\u0432\u0435\u0440\u0435\u0439, \u043d\u0438 \u0442\u043e, \u0447\u0442\u043e \u0441\u0442\u0430\u043d\u0435\u0442 \u043f\u0438\u0449\u0435\u0439 \u0432\u0430\u0448\u0435\u0439. \u0418\u0431\u043e \u0435\u0441\u043b\u0438 \u0432\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0435 \u0436\u0438\u0432\u0443\u044e \u043f\u0438\u0449\u0443, \u043e\u043d\u0430 \u043d\u0430\u043f\u043e\u043b\u043d\u044f\u0435\u0442 \u0432\u0430\u0441 \u0436\u0438\u0437\u043d\u044c\u044e, \u043d\u043e \u0435\u0441\u043b\u0438 \u0432\u044b \u0443\u0431\u0438\u0432\u0430\u0435\u0442\u0435 \u0441\u0432\u043e\u044e \u043f\u0438\u0449\u0443, \u043c\u0435\u0440\u0442\u0432\u0430\u044f \u043f\u0438\u0449\u0430 \u0443\u0431\u044c\u0435\u0442 \u0442\u0430\u043a\u0436\u0435 \u0438 \u0432\u0430\u0441. \u0418\u0431\u043e \u0436\u0438\u0437\u043d\u044c \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0442 \u0436\u0438\u0437\u043d\u0438, \u0430 \u043e\u0442 \u0441\u043c\u0435\u0440\u0442\u0438 \u0432\u0441\u0435\u0433\u0434\u0430 \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0441\u043c\u0435\u0440\u0442\u044c. \u0418\u0431\u043e \u0432\u0441\u0435, \u0447\u0442\u043e \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0432\u0430\u0448\u0443 \u043f\u0438\u0449\u0443, \u0442\u0430\u043a\u0436\u0435 \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0438 \u0432\u0430\u0448\u0438 \u0442\u0435\u043b\u0430. \u0410 \u0432\u0441\u0435, \u0447\u0442\u043e \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0432\u0430\u0448\u0438 \u0442\u0435\u043b\u0430, \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0442\u0430\u043a\u0436\u0435 \u0438 \u0432\u0430\u0448\u0438 \u0434\u0443\u0448\u0438. \u0418 \u0442\u0435\u043b\u0430 \u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442\u0441\u044f \u0442\u0435\u043c, \u0447\u0442\u043e \u0435\u0441\u0442\u044c \u043f\u0438\u0449\u0430 \u0432\u0430\u0448\u0430, \u0440\u0430\u0432\u043d\u043e \u043a\u0430\u043a \u0434\u0443\u0445 \u0432\u0430\u0448 \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0442\u0435\u043c, \u0447\u0442\u043e \u0435\u0441\u0442\u044c \u043c\u044b\u0441\u043b\u0438 \u0432\u0430\u0448\u0438.\"\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @tagira\n\n---\n\nAll STEEM Dollars for this post go to the featured author. \u0412\u0441\u0435 SD \u0437\u0430 \u043f\u043e\u0441\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442 \u0430\u0432\u0442\u043e\u0440.", + "category": "vegetarian", + "children": 18, + "created": "2016-09-15T15:10:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://petroart.ru/art/b/bronikov/img/3.jpg", + "http://www.damex.ru/images/cache/660x495/crop/images%7Ccms-image-000013620.jpg", + "https://media4.giphy.com/media/xcFZrrcaGhbz2/200w.gif", + "http://99px.ru/sstorage/56/2013/07/image_561607131913053649088.gif" ], - "author": "tomsmaid", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.09, - "beneficiaries": [ - { - "account": "esteemapp", - "weight": 300 - } + "tags": [ + "vegetarian", + "live", + "ru", + "food" ], - "blacklists": [], - "body": "Hi,\n\nRecently we had a short break in Latvia. It was only couple days but amazing time with family and first trip abroad after long quarantine \ud83d\ude01\ud83d\udc4d\nLong walks by the sea and swimming in the freezing water left some beautiful memories.\nDuring our trip took some photos. Hopefully you will like it and leave some comments \ud83d\udc9a\ud83d\udc4d\n\nLocation of our trip: [Klapkalnciems, Latvia](\nhttps://goo.gl/maps/aSe1SJNP7eiFw1N5A)\n\nUsed gear: Sony a6500 and Sony 18-105mm f/4.0 Lens.\n\nPhotography \u2b07\ufe0f\u2b07\ufe0f\u2b07\ufe0f\n\n![74qt37.jpg](https://img.esteem.app/74qt37.jpg)\n\n![Jurmala11.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/jo9hZHoJ-Jurmala11.jpeg)\n\n![g43ygp.jpg](https://img.esteem.app/g43ygp.jpg)\n\n![5wywkc.jpg](https://img.esteem.app/5wywkc.jpg)\n\n![Jurmala18.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/4Ns2Bwvv-Jurmala18.jpeg)\n\n![Jurmala9.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/hgOT2v7T-Jurmala9.jpeg)\n\n![Jurmala8.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/Abiq5D13-Jurmala8.jpeg)\n\n![Jurmala3.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/szdxo8y5-Jurmala3.jpeg)\n\n![Jurmala7.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/LUDAxxN7-Jurmala7.jpeg)\n\n![Jurmala6.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/HAZXRoRc-Jurmala6.jpeg)\n\n![Jurmala5.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/iUdgHYIa-Jurmala5.jpeg)\n\n![Jurmala2.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/jcUtshUK-Jurmala2.jpeg)\n\n![Jurmala4.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/K6XIQa4r-Jurmala4.jpeg)\n\n![Jurmala1.jpeg](https://files.peakd.com/file/peakd-hive/tomsmaid/S5K28EVO-Jurmala1.jpeg)\n\n\n\u201cTwenty years from now you will be more disappointed by the things that you didn\u2019t do than by the ones you did do. So throw off the bowlines. Sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.\u201d\u2013 Sarah Frances Brown, mother of author H Jackson Brown \n\n![3fnzb5.jpg](https://img.esteem.app/3fnzb5.jpg)", - "category": "photography", - "children": 11, - "created": "2020-07-07T09:44:27", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "community": "hive-125125", - "format": "markdown", - "image": [ - "https://img.esteem.app/74qt37.jpg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/jo9hZHoJ-Jurmala11.jpeg", - "https://img.esteem.app/g43ygp.jpg", - "https://img.esteem.app/5wywkc.jpg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/4Ns2Bwvv-Jurmala18.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/hgOT2v7T-Jurmala9.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/Abiq5D13-Jurmala8.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/szdxo8y5-Jurmala3.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/LUDAxxN7-Jurmala7.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/HAZXRoRc-Jurmala6.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/iUdgHYIa-Jurmala5.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/jcUtshUK-Jurmala2.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/K6XIQa4r-Jurmala4.jpeg", - "https://files.peakd.com/file/peakd-hive/tomsmaid/S5K28EVO-Jurmala1.jpeg", - "https://img.esteem.app/3fnzb5.jpg" - ], - "links": [ - "https://goo.gl/maps/aSe1SJNP7eiFw1N5A" - ], - "tags": [ - "photography", - "palnet", - "creativecoin", - "neoxian", - "nature", - "travel", - "ocd" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 100581973462012, - "payout": 40.619, - "payout_at": "2020-07-14T09:44:27", - "pending_payout_value": "40.619 HBD", - "percent_steem_dollars": 10000, - "permlink": "our-first-trip-abroad-after-quarantine-latvia", - "post_id": 86929973, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 182 - }, - "title": "Our first trip abroad, after quarantine \ud83d\udc9a\ud83c\udf1e\ud83c\udf0e Latvia \ud83c\uddf1\ud83c\uddfb ", - "updated": "2020-07-07T11:47:03", - "url": "/photography/@tomsmaid/our-first-trip-abroad-after-quarantine-latvia" + "users": [ + "tagira" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 57949290153677, + "payout": 196.691, + "payout_at": "2016-09-22T15:10:00", + "pending_payout_value": "196.691 HBD", + "percent_hbd": 10000, + "permlink": "vegetarianism-is-philosophy-which-has-deep-religious-and-ethical-roots-my-way-vegetarianstvo-moi-put-featuring-tagira-as-author", + "post_id": 1254959, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 161 + }, + "title": "Vegetarianism is philosophy which has deep religious and ethical roots, my way / \u0412\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0441\u0442\u0432\u043e-\u043c\u043e\u0439 \u043f\u0443\u0442\u044c (featuring @tagira as author)", + "updated": "2016-09-15T15:10:00", + "url": "/vegetarian/@terrycraft/vegetarianism-is-philosophy-which-has-deep-religious-and-ethical-roots-my-way-vegetarianstvo-moi-put-featuring-tagira-as-author" }, { - "active_votes": [ - { - "rshares": "23546086540744", - "voter": "xeldal" - }, - { - "rshares": "90689523677", - "voter": "flemingfarm" - }, - { - "rshares": "44652605528", - "voter": "churdtzu" - }, - { - "rshares": "2869766847", - "voter": "kennyskitchen" - }, - { - "rshares": "212227464978", - "voter": "gerber" - }, - { - "rshares": "232787509372", - "voter": "ezzy" - }, - { - "rshares": "575850849210", - "voter": "ausbitbank" - }, - { - "rshares": "276814751941", - "voter": "exyle" - }, - { - "rshares": "9371795673", - "voter": "sterlinluxan" - }, - { - "rshares": "15357901522430", - "voter": "glitterfart" - }, - { - "rshares": "1615655404", - "voter": "alchemage" - }, - { - "rshares": "19690355104", - "voter": "azizbd" - }, - { - "rshares": "120160422544", - "voter": "frankbacon" - }, - { - "rshares": "599128714", - "voter": "burntmd" - }, - { - "rshares": "21986285261", - "voter": "johnvibes" - }, - { - "rshares": "23688675450", - "voter": "elamental" - }, - { - "rshares": "427926067478", - "voter": "stevescoins" - }, - { - "rshares": "60247454857", - "voter": "netaterra" - }, - { - "rshares": "40377889125", - "voter": "someguy123" - }, - { - "rshares": "1093623953", - "voter": "mckeever" - }, - { - "rshares": "10066108607", - "voter": "anarcho-andrei" - }, - { - "rshares": "12984094605", - "voter": "terrybrock" - }, - { - "rshares": "3348030703154", - "voter": "krnel" - }, - { - "rshares": "971960469", - "voter": "dannyshine" - }, - { - "rshares": "263845486392", - "voter": "daveks" - }, - { - "rshares": "62967538837", - "voter": "wakeupnd" - }, - { - "rshares": "2700944134", - "voter": "tftproject" - }, - { - "rshares": "5706270453", - "voter": "dbroze" - }, - { - "rshares": "15555534749", - "voter": "eftnow" - }, - { - "rshares": "7692964665", - "voter": "jimbobbill" - }, - { - "rshares": "12680777108757", - "voter": "canadian-coconut" - }, - { - "rshares": "89031784175", - "voter": "petrvl" - }, - { - "rshares": "2339047013", - "voter": "freebornangel" - }, - { - "rshares": "13804759605", - "voter": "wearechange-co" - }, - { - "rshares": "93516558194", - "voter": "ura-soul" - }, - { - "rshares": "2795916424", - "voter": "makinstuff" - }, - { - "rshares": "966301288", - "voter": "thoughts-in-time" - }, - { - "rshares": "573837964", - "voter": "truthseeker101" - }, - { - "rshares": "164504309581", - "voter": "edb" - }, - { - "rshares": "8552124923", - "voter": "cardboard" - }, - { - "rshares": "15250239407", - "voter": "paolobeneforti" - }, - { - "rshares": "125936561577", - "voter": "silviabeneforti" - }, - { - "rshares": "7969295553", - "voter": "jonboka" - }, - { - "rshares": "1351748897", - "voter": "freebornsociety" - }, - { - "rshares": "4264649578", - "voter": "makersunited" - }, - { - "rshares": "650057774", - "voter": "haileyscomet" - }, - { - "rshares": "769436170", - "voter": "jdc" - }, - { - "rshares": "10914664332", - "voter": "dune69" - }, - { - "rshares": "5519012011", - "voter": "frankydoodle" - }, - { - "rshares": "34766434177", - "voter": "whatamidoing" - }, - { - "rshares": "23329816767", - "voter": "valued-customer" - }, - { - "rshares": "4036638977", - "voter": "jerrybanfield" - }, - { - "rshares": "258064667661", - "voter": "drag33" - }, - { - "rshares": "11376944682", - "voter": "mys" - }, - { - "rshares": "71687866114", - "voter": "ironshield" - }, - { - "rshares": "47453208160", - "voter": "galberto" - }, - { - "rshares": "55183431100", - "voter": "misslasvegas" - }, - { - "rshares": "71181747744", - "voter": "handofzara" - }, - { - "rshares": "59517285964", - "voter": "schoolforsdg4" - }, - { - "rshares": "19657356979", - "voter": "mdosev" - }, - { - "rshares": "784920332", - "voter": "antimedia" - }, - { - "rshares": "15037288746", - "voter": "belahejna" - }, - { - "rshares": "109237776344", - "voter": "firstamendment" - }, - { - "rshares": "32630181915", - "voter": "dadapizza" - }, - { - "rshares": "11133046910", - "voter": "colinhoward" - }, - { - "rshares": "1483444958", - "voter": "techken" - }, - { - "rshares": "4389744458", - "voter": "whd" - }, - { - "rshares": "3272831351", - "voter": "wesphilbin" - }, - { - "rshares": "809072718", - "voter": "d-pend" - }, - { - "rshares": "34683817621", - "voter": "thegreens" - }, - { - "rshares": "761750057", - "voter": "binkyprod" - }, - { - "rshares": "2567376940", - "voter": "bryandivisions" - }, - { - "rshares": "594773918", - "voter": "heart-to-heart" - }, - { - "rshares": "26094190196", - "voter": "vincentnijman" - }, - { - "rshares": "1035866528", - "voter": "shitsignals" - }, - { - "rshares": "1107174039464", - "voter": "steemvote" - }, - { - "rshares": "6345807016", - "voter": "helgapn" - }, - { - "rshares": "31966367069", - "voter": "jasonbu" - }, - { - "rshares": "1649650229664", - "voter": "tribesteemup" - }, - { - "rshares": "14492601546", - "voter": "felander" - }, - { - "rshares": "8420951779", - "voter": "santigs" - }, - { - "rshares": "7251583092", - "voter": "nadhora" - }, - { - "rshares": "41745731003", - "voter": "redouanemez" - }, - { - "rshares": "7097734687", - "voter": "fbslo" - }, - { - "rshares": "49997801056", - "voter": "accelerator" - }, - { - "rshares": "19590234408", - "voter": "artonmysleeve" - }, - { - "rshares": "3086793471", - "voter": "justinparke" - }, - { - "rshares": "2197948315", - "voter": "solarsupermama" - }, - { - "rshares": "1349957692", - "voter": "yogacoach" - }, - { - "rshares": "30826787355", - "voter": "taskmaster4450" - }, - { - "rshares": "3102156285", - "voter": "deathwing" - }, - { - "rshares": "87489945192", - "voter": "article61" - }, - { - "rshares": "11394007578", - "voter": "revisesociology" - }, - { - "rshares": "1971860401", - "voter": "insanityisfree" - }, - { - "rshares": "7011448058", - "voter": "risemultiversity" - }, - { - "rshares": "8848786644", - "voter": "ecotrain" - }, - { - "rshares": "704739953", - "voter": "jamiekensell" - }, - { - "rshares": "6111588405", - "voter": "canadianrenegade" - }, - { - "rshares": "1528690964", - "voter": "kieranpearson" - }, - { - "rshares": "4693207301", - "voter": "pataty69" - }, - { - "rshares": "11062601719", - "voter": "caladan" - }, - { - "rshares": "628012771919", - "voter": "informationwar" - }, - { - "rshares": "1466314135", - "voter": "socent" - }, - { - "rshares": "907433170279", - "voter": "familyprotection" - }, - { - "rshares": "61476199975", - "voter": "shadow3scalpel" - }, - { - "rshares": "71583213656", - "voter": "emrebeyler" - }, - { - "rshares": "1404603799", - "voter": "awesome-gadgets" - }, - { - "rshares": "4480968792", - "voter": "nomad-magus" - }, - { - "rshares": "1143048527", - "voter": "earthmother" - }, - { - "rshares": "5247665181", - "voter": "trucklife-family" - }, - { - "rshares": "2179038738", - "voter": "lishu" - }, - { - "rshares": "2918867191", - "voter": "careywedler" - }, - { - "rshares": "1143133735", - "voter": "funtraveller" - }, - { - "rshares": "6874594036", - "voter": "paradigmprospect" - }, - { - "rshares": "5618865207", - "voter": "krishool" - }, - { - "rshares": "10245564813", - "voter": "eaglespirit" - }, - { - "rshares": "6846096695", - "voter": "stupid" - }, - { - "rshares": "7224036652", - "voter": "mountainjewel" - }, - { - "rshares": "25290887620", - "voter": "neupanedipen" - }, - { - "rshares": "1932592568", - "voter": "gibber" - }, - { - "rshares": "1397475466", - "voter": "moxieme" - }, - { - "rshares": "77481589315", - "voter": "nealmcspadden" - }, - { - "rshares": "14089021823", - "voter": "womenempowerment" - }, - { - "rshares": "3918818234", - "voter": "iamevilradio" - }, - { - "rshares": "47357258841", - "voter": "purefood" - }, - { - "rshares": "1294843787", - "voter": "unicron" - }, - { - "rshares": "24952236178", - "voter": "empress-eremmy" - }, - { - "rshares": "17832304492", - "voter": "aagabriel" - }, - { - "rshares": "39923732990", - "voter": "warnas" - }, - { - "rshares": "543526123", - "voter": "cfminer" - }, - { - "rshares": "7914268701", - "voter": "best-strategy" - }, - { - "rshares": "132465379048", - "voter": "chronocrypto" - }, - { - "rshares": "8517662489", - "voter": "julescape" - }, - { - "rshares": "663091427", - "voter": "natha93" - }, - { - "rshares": "6124934220", - "voter": "cadawg" - }, - { - "rshares": "947426413", - "voter": "hempress" - }, - { - "rshares": "1285099757", - "voter": "pkocjan" - }, - { - "rshares": "3132482717", - "voter": "vegan.niinja" - }, - { - "rshares": "849233726", - "voter": "homestead-guru" - }, - { - "rshares": "639149233", - "voter": "steemsmarter" - }, - { - "rshares": "729601723", - "voter": "antisocialists" - }, - { - "rshares": "2633285350", - "voter": "movingman" - }, - { - "rshares": "57399670141", - "voter": "siamcat" - }, - { - "rshares": "1483049920", - "voter": "beleg" - }, - { - "rshares": "11230574256", - "voter": "bestboom" - }, - { - "rshares": "106215454807", - "voter": "onepercentbetter" - }, - { - "rshares": "2021830801", - "voter": "abrockman" - }, - { - "rshares": "2374832275", - "voter": "reversehitler88" - }, - { - "rshares": "11939347020", - "voter": "freddio" - }, - { - "rshares": "9663853965", - "voter": "bobaphet" - }, - { - "rshares": "40066242030", - "voter": "nancybriti" - }, - { - "rshares": "7361153134", - "voter": "meanbees" - }, - { - "rshares": "9135319859", - "voter": "indigoocean" - }, - { - "rshares": "1302896590", - "voter": "retard-gamer-de" - }, - { - "rshares": "796903967", - "voter": "glodniwiedzy" - }, - { - "rshares": "165300325398", - "voter": "veteranforcrypto" - }, - { - "rshares": "719907261", - "voter": "geliquasjourney" - }, - { - "rshares": "2519862431", - "voter": "archisteem" - }, - { - "rshares": "2986239622", - "voter": "natepower" - }, - { - "rshares": "4473095395", - "voter": "commonlaw" - }, - { - "rshares": "21941118625", - "voter": "merlion" - }, - { - "rshares": "13644105303", - "voter": "inspirewithwords" - }, - { - "rshares": "1687332361", - "voter": "swisswitness" - }, - { - "rshares": "536125084", - "voter": "mlgcrypto" - }, - { - "rshares": "15558698876", - "voter": "haccolong" - }, - { - "rshares": "99336315653", - "voter": "luca1777" - }, - { - "rshares": "990536244", - "voter": "mannacurrency" - }, - { - "rshares": "25224911971", - "voter": "amnlive" - }, - { - "rshares": "2469100664", - "voter": "flordiaman" - }, - { - "rshares": "2521750969", - "voter": "nickhans" - }, - { - "rshares": "5996360790", - "voter": "ambiguity" - }, - { - "rshares": "9386963440", - "voter": "nutritree" - }, - { - "rshares": "5822627613", - "voter": "pagliozzo" - }, - { - "rshares": "844678603", - "voter": "izzynoel" - }, - { - "rshares": "1697926475", - "voter": "phillyc" - }, - { - "rshares": "531272653", - "voter": "withered-freddy" - }, - { - "rshares": "17198451331", - "voter": "oppongk" - }, - { - "rshares": "2309069152", - "voter": "aconsciousness" - }, - { - "rshares": "605563485127", - "voter": "deepdives" - }, - { - "rshares": "1424234476", - "voter": "julian2013" - }, - { - "rshares": "36673258423", - "voter": "dlike" - }, - { - "rshares": "108273623328", - "voter": "stever82" - }, - { - "rshares": "620830439", - "voter": "badpupper" - }, - { - "rshares": "6050005116", - "voter": "gorbisan" - }, - { - "rshares": "39601623223", - "voter": "engrave" - }, - { - "rshares": "3547824187", - "voter": "bengiles" - }, - { - "rshares": "798308268", - "voter": "munhenhos" - }, - { - "rshares": "3340530344", - "voter": "wonderlamp" - }, - { - "rshares": "11892982520", - "voter": "porters" - }, - { - "rshares": "1175545571", - "voter": "bobby.madagascar" - }, - { - "rshares": "6927432", - "voter": "laissez-faire" - }, - { - "rshares": "18069971792", - "voter": "canna-curate" - }, - { - "rshares": "555737790", - "voter": "darkprince66" - }, - { - "rshares": "7493139108", - "voter": "canna-collective" - }, - { - "rshares": "5923441768", - "voter": "balticbadger" - }, - { - "rshares": "553600163", - "voter": "malricinferno" - }, - { - "rshares": "582398398", - "voter": "zintarmortalis" - }, - { - "rshares": "28606380824", - "voter": "steemitcuration" - }, - { - "rshares": "11145813045", - "voter": "riskneutral" - }, - { - "rshares": "1208911210", - "voter": "besheda" - }, - { - "rshares": "5997937104", - "voter": "rakk3187" - }, - { - "rshares": "16852716844", - "voter": "followjohngalt" - }, - { - "rshares": "857575146", - "voter": "dfroberg" - }, - { - "rshares": "3505705027", - "voter": "vibesforlife" - }, - { - "rshares": "1906022051", - "voter": "maajaanaa" - }, - { - "rshares": "3962468067", - "voter": "unit101" - }, - { - "rshares": "1979670515", - "voter": "redheaddemon" - }, - { - "rshares": "6301265177", - "voter": "littlegurl747" - }, - { - "rshares": "663887598047", - "voter": "bluesniper" - }, - { - "rshares": "1768057914", - "voter": "mrsbozz" - }, - { - "rshares": "10047521708", - "voter": "tribevibes" - }, - { - "rshares": "6585224083", - "voter": "drazeus" - }, - { - "rshares": "554690626", - "voter": "permaculturedude" - }, - { - "rshares": "13660004434216", - "voter": "ctime" - }, - { - "rshares": "9916214680", - "voter": "robinsonr810" - }, - { - "rshares": "4129438958", - "voter": "fortrussnews" - }, - { - "rshares": "4125346554", - "voter": "hungrybear" - }, - { - "rshares": "2682969249", - "voter": "abbenay" - }, - { - "rshares": "1286444380", - "voter": "bewithbreath" - }, - { - "rshares": "282624751414", - "voter": "apix" - }, - { - "rshares": "756945957", - "voter": "maxsieg" - }, - { - "rshares": "40167268848", - "voter": "pfdm" - }, - { - "rshares": "3412145131", - "voter": "steem-fund" - }, - { - "rshares": "2839011214", - "voter": "steelborne" - }, - { - "rshares": "14566745272", - "voter": "scarletreaper" - }, - { - "rshares": "547124639", - "voter": "izhmash" - }, - { - "rshares": "1510858504", - "voter": "deeanndmathews" - }, - { - "rshares": "11794762029", - "voter": "socialbot" - }, - { - "rshares": "1412853830", - "voter": "steemvpn" - }, - { - "rshares": "4514686543", - "voter": "clownworld" - }, - { - "rshares": "6463373394", - "voter": "haleakala" - }, - { - "rshares": "557897159", - "voter": "weedcash" - }, - { - "rshares": "75321402109", - "voter": "oldoneeye" - }, - { - "rshares": "518258080", - "voter": "vxc" - }, - { - "rshares": "3314134171", - "voter": "gamemods" - }, - { - "rshares": "1252366602", - "voter": "milu-the-dog" - }, - { - "rshares": "605934482", - "voter": "grannabis" - }, - { - "rshares": "1031583127", - "voter": "triplea.bot" - }, - { - "rshares": "78159017795", - "voter": "steem.leo" - }, - { - "rshares": "780914720", - "voter": "voodooranger" - }, - { - "rshares": "386428605813", - "voter": "votebetting" - }, - { - "rshares": "2427861352", - "voter": "freddio.sport" - }, - { - "rshares": "16837895501", - "voter": "asteroids" - }, - { - "rshares": "651013957", - "voter": "marlians.spt" - }, - { - "rshares": "2220652108", - "voter": "psycultureradio" - }, - { - "rshares": "493518112", - "voter": "one.life" - }, - { - "rshares": "20435062470", - "voter": "maxuvd" - }, - { - "rshares": "1579452636", - "voter": "dappcoder" - }, - { - "rshares": "1080924104", - "voter": "build-it" - }, - { - "rshares": "940804287", - "voter": "oratione" - }, - { - "rshares": "11567123995", - "voter": "vipservice" - }, - { - "rshares": "1778356518", - "voter": "mowemu" - }, - { - "rshares": "236740394620", - "voter": "huaren.news" - }, - { - "rshares": "3111067047", - "voter": "goodreader" - }, - { - "rshares": "1480728251", - "voter": "fenngen" - }, - { - "rshares": "216390895887", - "voter": "unpopular" - }, - { - "rshares": "5261783724", - "voter": "kryptoformator" - }, - { - "rshares": "946914706", - "voter": "ribary" - }, - { - "rshares": "11649272780", - "voter": "stevespeaks" - }, - { - "rshares": "1212801398", - "voter": "coin-doubler" - }, - { - "rshares": "1602933721", - "voter": "waskeeid" - }, - { - "rshares": "17672444488", - "voter": "mice-k" - }, - { - "rshares": "314427906", - "voter": "bela29" - }, - { - "rshares": "10748007042", - "voter": "staryao" - }, - { - "rshares": "40609029832", - "voter": "goldstreet" - }, - { - "rshares": "1456073503", - "voter": "curamax" - }, - { - "rshares": "568797997", - "voter": "steemcityrewards" - }, - { - "rshares": "745570290", - "voter": "dpend.active" - }, - { - "rshares": "21540169629", - "voter": "abundance.tribe" - }, - { - "rshares": "3312573983", - "voter": "thisismylife" - }, - { - "rshares": "11239326378", - "voter": "unknown0nline" - }, - { - "rshares": "7928894423", - "voter": "polish.hive" - }, - { - "rshares": "73341951309", - "voter": "dcityrewards" - }, - { - "rshares": "-3944892095", - "voter": "aquarius.academy" - }, - { - "rshares": "56703972899", - "voter": "executive-board" - }, - { - "rshares": "74300339247", - "voter": "hivecur" - }, - { - "rshares": "922132554", - "voter": "hivebuilderteam" - }, - { - "rshares": "1123722672", - "voter": "hivecur2" - }, - { - "rshares": "0", - "voter": "yshiyshi" - } + "active_votes": [ + { + "rshares": "16755161199383", + "voter": "itsascam" + }, + { + "rshares": "480526212736", + "voter": "barrie" + }, + { + "rshares": "5104374858", + "voter": "style" + }, + { + "rshares": "30984805998710", + "voter": "smooth" + }, + { + "rshares": "1970871102026", + "voter": "steemroller" + }, + { + "rshares": "73338425139", + "voter": "donaldtrump" + }, + { + "rshares": "17831785324019", + "voter": "steemed" + }, + { + "rshares": "3813633612078", + "voter": "riverhead" + }, + { + "rshares": "2104090803296", + "voter": "badassmother" + }, + { + "rshares": "2051409124045", + "voter": "hr1" + }, + { + "rshares": "5116652122587", + "voter": "kushed" + }, + { + "rshares": "22856566186", + "voter": "jaewoocho" + }, + { + "rshares": "155402774795", + "voter": "ozmaster" + }, + { + "rshares": "6968855225504", + "voter": "complexring" + }, + { + "rshares": "1647437585658", + "voter": "joseph" + }, + { + "rshares": "92485160845", + "voter": "aizensou" + }, + { + "rshares": "465717138828", + "voter": "recursive2" + }, + { + "rshares": "619876169843", + "voter": "masteryoda" + }, + { + "rshares": "3119278427030", + "voter": "recursive" + }, + { + "rshares": "1172425532", + "voter": "mineralwasser" + }, + { + "rshares": "665687862852", + "voter": "boombastic" + }, + { + "rshares": "88484695103", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6756410360", + "voter": "bingo-0" + }, + { + "rshares": "1620176259", + "voter": "bingo-1" + }, + { + "rshares": "5800874395470", + "voter": "smooth.witness" + }, + { + "rshares": "9885238701", + "voter": "idol" + }, + { + "rshares": "48218286324", + "voter": "stoner19" + }, + { + "rshares": "4837882894", + "voter": "sakr" + }, + { + "rshares": "1701784178", + "voter": "jocelyn" + }, + { + "rshares": "14064642668", + "voter": "gregory-f" + }, + { + "rshares": "58907877644", + "voter": "lovelace" + }, + { + "rshares": "1234583624335", + "voter": "gavvet" + }, + { + "rshares": "74895398010", + "voter": "eeks" + }, + { + "rshares": "488526217", + "voter": "paco-steem" + }, + { + "rshares": "912597254389", + "voter": "cryptogee" + }, + { + "rshares": "5883869384", + "voter": "spaninv" + }, + { + "rshares": "336432003943", + "voter": "teamsteem" + }, + { + "rshares": "8667859424", + "voter": "richman" + }, + { + "rshares": "462352309", + "voter": "murch" + }, + { + "rshares": "566150979416", + "voter": "nanzo-scoop" + }, + { + "rshares": "86323748302", + "voter": "william-noe" + }, + { + "rshares": "170004330283", + "voter": "steve-walschot" + }, + { + "rshares": "173798380609", + "voter": "mummyimperfect" + }, + { + "rshares": "268835102", + "voter": "coar" + }, + { + "rshares": "100993055295", + "voter": "asch" + }, + { + "rshares": "1060848113", + "voter": "murh" + }, + { + "rshares": "240697359051", + "voter": "sascha" + }, + { + "rshares": "6228218902", + "voter": "cryptofunk" + }, + { + "rshares": "2272666902", + "voter": "error" + }, + { + "rshares": "5736901624", + "voter": "marta-zaidel" + }, + { + "rshares": "1040976670262", + "voter": "cyber" + }, + { + "rshares": "10900823677", + "voter": "aizen01" + }, + { + "rshares": "6499631007", + "voter": "aizen02" + }, + { + "rshares": "3552366776", + "voter": "aizen03" + }, + { + "rshares": "1167908093", + "voter": "aizen04" + }, + { + "rshares": "494011890", + "voter": "aizen05" + }, + { + "rshares": "4792657323", + "voter": "aizen07" + }, + { + "rshares": "2866473700", + "voter": "aizen08" + }, + { + "rshares": "1018773570", + "voter": "aizen09" + }, + { + "rshares": "440815198", + "voter": "aizen10" + }, + { + "rshares": "7251599286", + "voter": "aizen06" + }, + { + "rshares": "3046354062", + "voter": "aizen11" + }, + { + "rshares": "2093827993", + "voter": "aizen14" + }, + { + "rshares": "2462056275", + "voter": "aizen19" + }, + { + "rshares": "59929272057", + "voter": "theshell" + }, + { + "rshares": "648949628", + "voter": "aizen15" + }, + { + "rshares": "6424903281", + "voter": "aizen16" + }, + { + "rshares": "49535217690", + "voter": "ak2020" + }, + { + "rshares": "645116104", + "voter": "aizen20" + }, + { + "rshares": "4217447041", + "voter": "aizen22" + }, + { + "rshares": "1120999727", + "voter": "aizen23" + }, + { + "rshares": "2204896687", + "voter": "aizen17" + }, + { + "rshares": "3470451837", + "voter": "aizen24" + }, + { + "rshares": "490553110", + "voter": "aizen18" + }, + { + "rshares": "1314196776", + "voter": "aizen25" + }, + { + "rshares": "2232430390", + "voter": "aizen28" + }, + { + "rshares": "3435321135", + "voter": "aizen26" + }, + { + "rshares": "1127666084", + "voter": "aizen27" + }, + { + "rshares": "3875699811", + "voter": "aizen32" + }, + { + "rshares": "2120371796", + "voter": "aizen30" + }, + { + "rshares": "3922155046", + "voter": "aizen31" + }, + { + "rshares": "1291018425", + "voter": "aizen33" + }, + { + "rshares": "1553081360", + "voter": "aizen34" + }, + { + "rshares": "311774459", + "voter": "aizen35" + }, + { + "rshares": "5849477524", + "voter": "aizen36" + }, + { + "rshares": "1459346389", + "voter": "aizen37" + }, + { + "rshares": "24406094847", + "voter": "paul-labossiere" + }, + { + "rshares": "408290923", + "voter": "aizen29" + }, + { + "rshares": "2872536420", + "voter": "aizen21" + }, + { + "rshares": "4407557058", + "voter": "aizen12" + }, + { + "rshares": "1876630383", + "voter": "aizen38" + }, + { + "rshares": "8279076968", + "voter": "badger311" + }, + { + "rshares": "8567966025", + "voter": "badger313" + }, + { + "rshares": "8532183936", + "voter": "badger312" + }, + { + "rshares": "8825464112", + "voter": "badger316" + }, + { + "rshares": "8945023495", + "voter": "badger319" + }, + { + "rshares": "8854468413", + "voter": "badger3101" + }, + { + "rshares": "8318010896", + "voter": "badger3111" + }, + { + "rshares": "8869290111", + "voter": "badger3121" + }, + { + "rshares": "8485309981", + "voter": "badger3131" + }, + { + "rshares": "8591220795", + "voter": "badger3141" + }, + { + "rshares": "8568091961", + "voter": "badger3171" + }, + { + "rshares": "8379270543", + "voter": "badger3181" + }, + { + "rshares": "8954261088", + "voter": "badger3191" + }, + { + "rshares": "8379110631", + "voter": "badger3112" + }, + { + "rshares": "8713695890", + "voter": "badger3132" + }, + { + "rshares": "8589307590", + "voter": "badger3162" + }, + { + "rshares": "8815925781", + "voter": "badger3113" + }, + { + "rshares": "8473341065", + "voter": "badger3123" + }, + { + "rshares": "8594708779", + "voter": "badger3133" + }, + { + "rshares": "8939568357", + "voter": "badger3153" + }, + { + "rshares": "8624205716", + "voter": "badger3163" + }, + { + "rshares": "8654162062", + "voter": "badger3193" + }, + { + "rshares": "8604723591", + "voter": "badger3114" + }, + { + "rshares": "8515355992", + "voter": "badger3124" + }, + { + "rshares": "8420058241", + "voter": "badger3144" + }, + { + "rshares": "8343364036", + "voter": "badger3154" + }, + { + "rshares": "8213191128", + "voter": "badger3164" + }, + { + "rshares": "8538833460", + "voter": "badger3174" + }, + { + "rshares": "8813869956", + "voter": "badger3194" + }, + { + "rshares": "8712162375", + "voter": "badger3105" + }, + { + "rshares": "8656736569", + "voter": "badger3135" + }, + { + "rshares": "8258522611", + "voter": "badger3145" + }, + { + "rshares": "8831167662", + "voter": "badger3155" + }, + { + "rshares": "8529824072", + "voter": "badger3175" + }, + { + "rshares": "8310212001", + "voter": "badger3195" + }, + { + "rshares": "7958888538", + "voter": "badger3106" + }, + { + "rshares": "8762392108", + "voter": "badger3116" + }, + { + "rshares": "8809476629", + "voter": "badger3126" + }, + { + "rshares": "8443348501", + "voter": "badger3136" + }, + { + "rshares": "8096485926", + "voter": "badger3146" + }, + { + "rshares": "8323878617", + "voter": "badger3156" + }, + { + "rshares": "8535690887", + "voter": "badger3166" + }, + { + "rshares": "8452106060", + "voter": "badger3176" + }, + { + "rshares": "8584206358", + "voter": "badger3186" + }, + { + "rshares": "8619308346", + "voter": "badger3196" + }, + { + "rshares": "8548167966", + "voter": "badger3107" + }, + { + "rshares": "8305132275", + "voter": "badger315" + }, + { + "rshares": "8791959509", + "voter": "badger318" + }, + { + "rshares": "8840656230", + "voter": "badger3151" + }, + { + "rshares": "8519121589", + "voter": "badger3161" + }, + { + "rshares": "8773547330", + "voter": "badger3122" + }, + { + "rshares": "8711547278", + "voter": "badger3142" + }, + { + "rshares": "8930383064", + "voter": "badger3152" + }, + { + "rshares": "8246562170", + "voter": "badger3172" + }, + { + "rshares": "8750362445", + "voter": "badger3182" + }, + { + "rshares": "8510357323", + "voter": "badger3192" + }, + { + "rshares": "8426540891", + "voter": "badger3143" + }, + { + "rshares": "8684675072", + "voter": "badger3173" + }, + { + "rshares": "8396705393", + "voter": "badger3104" + }, + { + "rshares": "8114154413", + "voter": "badger3134" + }, + { + "rshares": "8513476422", + "voter": "badger3184" + }, + { + "rshares": "8451732184", + "voter": "badger3115" + }, + { + "rshares": "8916017583", + "voter": "badger3165" + }, + { + "rshares": "8548877339", + "voter": "badger3185" + }, + { + "rshares": "8609674677", + "voter": "badger314" + }, + { + "rshares": "8839842393", + "voter": "badger317" + }, + { + "rshares": "8583105596", + "voter": "badger3102" + }, + { + "rshares": "8545290354", + "voter": "badger3103" + }, + { + "rshares": "8473652115", + "voter": "badger3125" + }, + { + "rshares": "8440424803", + "voter": "badger3183" + }, + { + "rshares": "523210618", + "voter": "aizen39" + }, + { + "rshares": "3692729259818", + "voter": "satoshifund" + }, + { + "rshares": "409139044923", + "voter": "taoteh1221" + }, + { + "rshares": "418804855", + "voter": "applecrisp" + }, + { + "rshares": "381169481", + "voter": "stiletto" + }, + { + "rshares": "55572589211", + "voter": "juanmiguelsalas" + }, + { + "rshares": "210458611837", + "voter": "will-zewe" + }, + { + "rshares": "380297285001", + "voter": "kaylinart" + }, + { + "rshares": "563706981359", + "voter": "infovore" + }, + { + "rshares": "77665341455", + "voter": "tim-johnston" + }, + { + "rshares": "81000705230", + "voter": "schro" + }, + { + "rshares": "257516084561", + "voter": "trogdor" + }, + { + "rshares": "4491802783", + "voter": "tee-em" + }, + { + "rshares": "32185101127", + "voter": "michaelx" + }, + { + "rshares": "804436229902", + "voter": "anwenbaumeister" + }, + { + "rshares": "5817925334", + "voter": "mark-waser" + }, + { + "rshares": "409576499", + "voter": "keithwillshine" + }, + { + "rshares": "111330095375", + "voter": "geoffrey" + }, + { + "rshares": "202874968510", + "voter": "kimziv" + }, + { + "rshares": "44426159607", + "voter": "honeythief" + }, + { + "rshares": "7049670897", + "voter": "mammasitta" + }, + { + "rshares": "6744340925", + "voter": "tyler-fletcher" + }, + { + "rshares": "79414155694", + "voter": "emily-cook" + }, + { + "rshares": "93849854528", + "voter": "mctiller" + }, + { + "rshares": "2187136185", + "voter": "superfreek" + }, + { + "rshares": "484592257", + "voter": "mrhankeh" + }, + { + "rshares": "4255723858", + "voter": "alexft" + }, + { + "rshares": "1869026224", + "voter": "justoneartist" + }, + { + "rshares": "280886491", + "voter": "ladyclair" + }, + { + "rshares": "3715415813", + "voter": "michaellamden68" + }, + { + "rshares": "161249433461", + "voter": "dashpaymag" + }, + { + "rshares": "174527707979", + "voter": "asmolokalo" + }, + { + "rshares": "57106930713", + "voter": "ezzy" + }, + { + "rshares": "71639420708", + "voter": "rubybian" + }, + { + "rshares": "3214941985", + "voter": "orly" + }, + { + "rshares": "5163778635", + "voter": "riscadox" + }, + { + "rshares": "18842523479", + "voter": "hakise" + }, + { + "rshares": "15354149755", + "voter": "yogi.artist" + }, + { + "rshares": "14213156438", + "voter": "r4fken" + }, + { + "rshares": "389458625", + "voter": "aizen13" + }, + { + "rshares": "3344942110", + "voter": "aizen41" + }, + { + "rshares": "950534210", + "voter": "aizen42" + }, + { + "rshares": "3238263445", + "voter": "aizen46" + }, + { + "rshares": "886294877", + "voter": "aizen47" + }, + { + "rshares": "217253386", + "voter": "aizen48" + }, + { + "rshares": "113259366", + "voter": "aizen49" + }, + { + "rshares": "754082458", + "voter": "busser" + }, + { + "rshares": "941015787", + "voter": "aizen51" + }, + { + "rshares": "1210073491361", + "voter": "renohq" + }, + { + "rshares": "455780965", + "voter": "aizen43" + }, + { + "rshares": "67659539", + "voter": "aizen44" + }, + { + "rshares": "763284602", + "voter": "aizen54" + }, + { + "rshares": "16859493667", + "voter": "ausbitbank" + }, + { + "rshares": "4728705839", + "voter": "gikitiki" + }, + { + "rshares": "11698403373", + "voter": "asim" + }, + { + "rshares": "99758482", + "voter": "snowden" + }, + { + "rshares": "1107690687", + "voter": "karen13" + }, + { + "rshares": "54321503601", + "voter": "shark" + }, + { + "rshares": "20363338717", + "voter": "meiisheree" + }, + { + "rshares": "258937743119", + "voter": "nabilov" + }, + { + "rshares": "8572920051", + "voter": "noodhoog" + }, + { + "rshares": "4205385163", + "voter": "dcryptogold" + }, + { + "rshares": "2668109030", + "voter": "dmacshady" + }, + { + "rshares": "233569693", + "voter": "aizen52" + }, + { + "rshares": "8368498979", + "voter": "herverisson" + }, + { + "rshares": "45693099664", + "voter": "milestone" + }, + { + "rshares": "33727004465", + "voter": "creemej" + }, + { + "rshares": "89580632", + "voter": "wildchild" + }, + { + "rshares": "2579031743", + "voter": "the-future" + }, + { + "rshares": "15372067535", + "voter": "nippel66" + }, + { + "rshares": "190269483", + "voter": "aizen55" + }, + { + "rshares": "163260776578", + "voter": "blueorgy" + }, + { + "rshares": "159387011508", + "voter": "opheliafu" + }, + { + "rshares": "4426428855", + "voter": "poseidon" + }, + { + "rshares": "2033762271", + "voter": "iamwne" + }, + { + "rshares": "79563973688", + "voter": "thylbom" + }, + { + "rshares": "7311858289", + "voter": "geronimo" + }, + { + "rshares": "4308378335", + "voter": "bitcoiner" + }, + { + "rshares": "116496190", + "voter": "bzeen" + }, + { + "rshares": "3756297830", + "voter": "tarindel" + }, + { + "rshares": "31921025901", + "voter": "deanliu" + }, + { + "rshares": "141429957", + "voter": "bento" + }, + { + "rshares": "13069930577", + "voter": "shredlord" + }, + { + "rshares": "13916292595", + "voter": "hagie" + }, + { + "rshares": "53841341992", + "voter": "jl777" + }, + { + "rshares": "1736201261", + "voter": "yarly" + }, + { + "rshares": "261735372", + "voter": "yarly2" + }, + { + "rshares": "262126965", + "voter": "yarly3" + }, + { + "rshares": "151424453", + "voter": "yarly4" + }, + { + "rshares": "152279375", + "voter": "yarly5" + }, + { + "rshares": "86799635", + "voter": "yarly7" + }, + { + "rshares": "100832394226", + "voter": "crazymumzysa" + }, + { + "rshares": "50619397", + "voter": "whalepool" + }, + { + "rshares": "20238670061", + "voter": "prufarchy" + }, + { + "rshares": "35610433440", + "voter": "anca3drandom" + }, + { + "rshares": "206059171", + "voter": "sergey44" + }, + { + "rshares": "6542152680", + "voter": "summonerrk" + }, + { + "rshares": "2012582806", + "voter": "hdd" + }, + { + "rshares": "21120708735", + "voter": "krabgat" + }, + { + "rshares": "4543641049", + "voter": "proto" + }, + { + "rshares": "634074071", + "voter": "curator" + }, + { + "rshares": "33383309924", + "voter": "sisterholics" + }, + { + "rshares": "420072669", + "voter": "yarly10" + }, + { + "rshares": "1404574750", + "voter": "alex.chien" + }, + { + "rshares": "224823596", + "voter": "yarly11" + }, + { + "rshares": "78603899", + "voter": "yarly12" + }, + { + "rshares": "11092117841", + "voter": "phoenixmaid" + }, + { + "rshares": "330141710", + "voter": "esqil" + }, + { + "rshares": "83707323", + "voter": "aizen53" + }, + { + "rshares": "149624601", + "voter": "steemster1" + }, + { + "rshares": "238512214", + "voter": "bullionstackers" + }, + { + "rshares": "6810743439", + "voter": "comealong" + }, + { + "rshares": "2002743924", + "voter": "andreynoch" + }, + { + "rshares": "947490604", + "voter": "metaflute" + }, + { + "rshares": "721310626", + "voter": "karenb54" + }, + { + "rshares": "449108428", + "voter": "bento04" + }, + { + "rshares": "753126143", + "voter": "bento03" + }, + { + "rshares": "1534361646", + "voter": "aizen" + }, + { + "rshares": "2298243810", + "voter": "taker" + }, + { + "rshares": "239545179", + "voter": "bento02" + }, + { + "rshares": "551525219", + "voter": "bento01" + }, + { + "rshares": "1007190932", + "voter": "pakisnxt" + }, + { + "rshares": "14668022793", + "voter": "nekromarinist" + }, + { + "rshares": "1618760149", + "voter": "coinbar" + }, + { + "rshares": "59219358", + "voter": "sharon" + }, + { + "rshares": "2635374169", + "voter": "merej99" + }, + { + "rshares": "61714352", + "voter": "lillianjones" + }, + { + "rshares": "1148224715117", + "voter": "laonie" + }, + { + "rshares": "146176741718", + "voter": "twinner" + }, + { + "rshares": "243451061692", + "voter": "ozchartart" + }, + { + "rshares": "5002368214", + "voter": "croatia" + }, + { + "rshares": "65300521", + "voter": "vladimirputin" + }, + { + "rshares": "23878310347", + "voter": "rawnetics" + }, + { + "rshares": "65308725", + "voter": "angelamerkel" + }, + { + "rshares": "17989038861", + "voter": "thebluepanda" + }, + { + "rshares": "81826244", + "voter": "bento06" + }, + { + "rshares": "24551995771", + "voter": "laoyao" + }, + { + "rshares": "38527150465", + "voter": "myfirst" + }, + { + "rshares": "239628375853", + "voter": "somebody" + }, + { + "rshares": "15892496776", + "voter": "sunshine" + }, + { + "rshares": "9202242828", + "voter": "flysaga" + }, + { + "rshares": "5634572644", + "voter": "brendio" + }, + { + "rshares": "2082686663", + "voter": "gmurph" + }, + { + "rshares": "68250832", + "voter": "missmishel623" + }, + { + "rshares": "82177171859", + "voter": "timsaid" + }, + { + "rshares": "52936380443", + "voter": "midnightoil" + }, + { + "rshares": "81534499564", + "voter": "mibenkito" + }, + { + "rshares": "2375350982", + "voter": "kalimor" + }, + { + "rshares": "63541793", + "voter": "coderg" + }, + { + "rshares": "1018538139", + "voter": "altucher" + }, + { + "rshares": "4186662893", + "voter": "ullikume" + }, + { + "rshares": "101572397", + "voter": "timferriss" + }, + { + "rshares": "53093897", + "voter": "michellek" + }, + { + "rshares": "4650618263", + "voter": "kurtbeil" + }, + { + "rshares": "2798919170", + "voter": "steemleak" + }, + { + "rshares": "109814173501", + "voter": "thisisbenbrick" + }, + { + "rshares": "104692799", + "voter": "darrenrowse" + }, + { + "rshares": "128793789941", + "voter": "xiaohui" + }, + { + "rshares": "83638970", + "voter": "xerneas" + }, + { + "rshares": "106149968", + "voter": "bigsambucca" + }, + { + "rshares": "6403494729", + "voter": "elfkitchen" + }, + { + "rshares": "5935556188", + "voter": "oflyhigh" + }, + { + "rshares": "2226707993", + "voter": "paynode" + }, + { + "rshares": "62525016", + "voter": "nickche" + }, + { + "rshares": "4251472057", + "voter": "xiaokongcom" + }, + { + "rshares": "62201879", + "voter": "msjennifer" + }, + { + "rshares": "57196572", + "voter": "ciao" + }, + { + "rshares": "47958674202", + "voter": "eneismijmich" + }, + { + "rshares": "2951808169", + "voter": "jrcornel" + }, + { + "rshares": "55449983", + "voter": "steemo" + }, + { + "rshares": "179351183", + "voter": "pcashmore" + }, + { + "rshares": "8570039552", + "voter": "xianjun" + }, + { + "rshares": "55306941", + "voter": "steema" + }, + { + "rshares": "59618782", + "voter": "andrew.sullivan" + }, + { + "rshares": "1046049321", + "voter": "brianclark" + }, + { + "rshares": "831589271", + "voter": "daniel.kahneman" + }, + { + "rshares": "232896636", + "voter": "tucker.max" + }, + { + "rshares": "740826654", + "voter": "darren.rowse" + }, + { + "rshares": "55704135", + "voter": "chris.dunn" + }, + { + "rshares": "71282219", + "voter": "confucius" + }, + { + "rshares": "11539993041", + "voter": "borran" + }, + { + "rshares": "3851639124", + "voter": "bledarus" + }, + { + "rshares": "1178246621", + "voter": "pat.flynn" + }, + { + "rshares": "52467942", + "voter": "loli" + }, + { + "rshares": "91473229819", + "voter": "miacats" + }, + { + "rshares": "1223581698", + "voter": "mattmarshall" + }, + { + "rshares": "437783005", + "voter": "timothysykes" + }, + { + "rshares": "106860965", + "voter": "patflynn" + }, + { + "rshares": "56157882", + "voter": "jarvis" + }, + { + "rshares": "561462512", + "voter": "microluck" + }, + { + "rshares": "896991635", + "voter": "andrewsullivan" + }, + { + "rshares": "77220767", + "voter": "razberrijam" + }, + { + "rshares": "54313084", + "voter": "fortuner" + }, + { + "rshares": "2005426994", + "voter": "chinadaily" + }, + { + "rshares": "9358481880", + "voter": "kyriacos" + }, + { + "rshares": "2859735634", + "voter": "virtualgrowth" + }, + { + "rshares": "122302767", + "voter": "thegoldencookie" + }, + { + "rshares": "20137065264", + "voter": "runaway-psyche" + }, + { + "rshares": "755831094058", + "voter": "dollarvigilante" + }, + { + "rshares": "61087248", + "voter": "workout" + }, + { + "rshares": "489129872", + "voter": "harvey.levin" + }, + { + "rshares": "23586282706", + "voter": "mihaiart" + }, + { + "rshares": "10341757518", + "voter": "gvargas123" + }, + { + "rshares": "53056158", + "voter": "johnbyrd" + }, + { + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "rshares": "53037689", + "voter": "thermor" + }, + { + "rshares": "53048942", + "voter": "ficholl" + }, + { + "rshares": "53030738", + "voter": "widell" + }, + { + "rshares": "86340173624", + "voter": "icfiedler" + }, + { + "rshares": "1266977190", + "voter": "laconicflow" + }, + { + "rshares": "52651308", + "voter": "revelbrooks" + }, + { + "rshares": "377542979", + "voter": "mrlogic" + }, + { + "rshares": "194739083", + "voter": "rand.fishkin" + }, + { + "rshares": "50816343", + "voter": "bitchplease" + }, + { + "rshares": "78411391", + "voter": "joelbow" + }, + { + "rshares": "8673217231", + "voter": "onetree" + }, + { + "rshares": "3071905413", + "voter": "imag1ne" + }, + { + "rshares": "64111934444", + "voter": "mandibil" + }, + { + "rshares": "51562255", + "voter": "curpose" + }, + { + "rshares": "1208491149", + "voter": "lenar" + }, + { + "rshares": "9818184488", + "voter": "lesliestarrohara" + }, + { + "rshares": "112927371731", + "voter": "shenanigator" + }, + { + "rshares": "14779778251", + "voter": "macksby" + }, + { + "rshares": "85972582", + "voter": "uziriel" + }, + { + "rshares": "2080022045", + "voter": "funkywanderer" + }, + { + "rshares": "1485475073", + "voter": "linzo" + }, + { + "rshares": "4899042813", + "voter": "richardcrill" + }, + { + "rshares": "2205784762", + "voter": "jeremyfromwi" + }, + { + "rshares": "1688038542", + "voter": "eight-rad" + }, + { + "rshares": "51712804", + "voter": "troich" + }, + { + "rshares": "1624641270", + "voter": "davidjkelley" + }, + { + "rshares": "187911420", + "voter": "team101" + }, + { + "rshares": "51718188", + "voter": "crion" + }, + { + "rshares": "52505412", + "voter": "hitherise" + }, + { + "rshares": "52496656", + "voter": "wiss" + }, + { + "rshares": "13264756693", + "voter": "ghasemkiani" + }, + { + "rshares": "906163750", + "voter": "sponge-bob" + }, + { + "rshares": "4545785145", + "voter": "l0k1" + }, + { + "rshares": "15223303760", + "voter": "digital-wisdom" + }, + { + "rshares": "3708921137", + "voter": "ethical-ai" + }, + { + "rshares": "50784892", + "voter": "freesteem" + }, + { + "rshares": "54391689", + "voter": "jamespro" + }, + { + "rshares": "53252658", + "voter": "stroully" + }, + { + "rshares": "3079499780", + "voter": "maryfromsochi" + }, + { + "rshares": "6679259372", + "voter": "jwaser" + }, + { + "rshares": "51814474", + "voter": "thadm" + }, + { + "rshares": "51812703", + "voter": "prof" + }, + { + "rshares": "1330526017", + "voter": "crypt0mine" + }, + { + "rshares": "646493719", + "voter": "kev7000" + }, + { + "rshares": "1042750516", + "voter": "zettar" + }, + { + "rshares": "51465774", + "voter": "yorsens" + }, + { + "rshares": "177656553", + "voter": "harveylevin" + }, + { + "rshares": "1129213184", + "voter": "chaeya" + }, + { + "rshares": "51154263", + "voter": "bane" + }, + { + "rshares": "51148009", + "voter": "vive" + }, + { + "rshares": "51142585", + "voter": "coad" + }, + { + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "rshares": "2615973485", + "voter": "bwaser" + }, + { + "rshares": "53003720", + "voter": "sofa" + }, + { + "rshares": "2563669906", + "voter": "lilmisjenn" + }, + { + "rshares": "122884931", + "voter": "gary.vaynerchuk" + }, + { + "rshares": "344116052", + "voter": "panther" + }, + { + "rshares": "2201645172", + "voter": "alina1" + }, + { + "rshares": "50639382", + "voter": "doggnostic" + }, + { + "rshares": "689550675", + "voter": "ct-gurus" + }, + { + "rshares": "50377764", + "voter": "jenny-talls" + }, + { + "rshares": "63519834123", + "voter": "tracemayer" + }, + { + "rshares": "905064441", + "voter": "brains" + }, + { + "rshares": "51994517", + "voter": "ailo" + }, + { + "rshares": "1339423728", + "voter": "steemafon" + }, + { + "rshares": "5610795642", + "voter": "chick1" + }, + { + "rshares": "50516543", + "voter": "typingagent" + }, + { + "rshares": "519729361", + "voter": "nelyp" + }, + { + "rshares": "328506462", + "voter": "anomaly" + }, + { + "rshares": "2400090637", + "voter": "ellepdub" + }, + { + "rshares": "113405722", + "voter": "rynow" + }, + { + "rshares": "89841354699", + "voter": "honeyscribe" + }, + { + "rshares": "51415300", + "voter": "timothy.sykes" + }, + { + "rshares": "61292139", + "voter": "inarix03" + }, + { + "rshares": "218488504", + "voter": "ola1" + }, + { + "rshares": "832905434", + "voter": "jbaker585" + }, + { + "rshares": "11803842421", + "voter": "herpetologyguy" + }, + { + "rshares": "28099831450", + "voter": "storyseeker" + }, + { + "rshares": "51470533", + "voter": "eavy" + }, + { + "rshares": "51484593", + "voter": "roto" + }, + { + "rshares": "51659688", + "voter": "drac59" + }, + { + "rshares": "54632106", + "voter": "everittdmickey" + }, + { + "rshares": "780018003", + "voter": "zombiedoll" + }, + { + "rshares": "4709614494", + "voter": "morgan.waser" + }, + { + "rshares": "50602980", + "voter": "cfisher" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "50708837", + "voter": "ardly" + }, + { + "rshares": "50536471", + "voter": "twistys" + }, + { + "rshares": "1822707064", + "voter": "bapparabi" + }, + { + "rshares": "50532230", + "voter": "friends" + }, + { + "rshares": "50487909", + "voter": "opticalillusions" + }, + { + "rshares": "3607671121", + "voter": "strong-ai" + }, + { + "rshares": "516306089", + "voter": "grisha-danunaher" + }, + { + "rshares": "72826233", + "voter": "igtes" + }, + { + "rshares": "705838377", + "voter": "dikanevroman" + }, + { + "rshares": "144899746", + "voter": "buffett" + }, + { + "rshares": "162925257", + "voter": "uct" + }, + { + "rshares": "162904624", + "voter": "allianz" + }, + { + "rshares": "408141953", + "voter": "witchcraftblog" + }, + { + "rshares": "161205518", + "voter": "acute" + }, + { + "rshares": "157931180", + "voter": "pyro" + }, + { + "rshares": "157801695", + "voter": "realtime" + }, + { + "rshares": "304039381", + "voter": "james1987" + }, + { + "rshares": "160870736", + "voter": "electronicarts" + }, + { + "rshares": "1606766770", + "voter": "dresden" + }, + { + "rshares": "201362779", + "voter": "mgibson" + }, + { + "rshares": "152057481", + "voter": "food-creator" + }, + { + "rshares": "159531007", + "voter": "benetton" + }, + { + "rshares": "154417232", + "voter": "jasonxg" + }, + { + "rshares": "159387371", + "voter": "bosch" + }, + { + "rshares": "4918101052", + "voter": "sherlockcupid" + }, + { + "rshares": "158632601", + "voter": "cream" + }, + { + "rshares": "158326081", + "voter": "thomasp" + }, + { + "rshares": "74838700", + "voter": "dealzgal" + }, + { + "rshares": "154959539", + "voter": "mrshanson" + }, + { + "rshares": "83470968", + "voter": "storage" + }, + { + "rshares": "329629477", + "voter": "aldentan" + }, + { + "rshares": "67690648", + "voter": "blackmarket" + }, + { + "rshares": "73837045", + "voter": "gifts" + }, + { + "rshares": "112446078", + "voter": "paulocouto" + }, + { + "rshares": "151927362", + "voter": "countofdelphi" + }, + { + "rshares": "151062983", + "voter": "newsfeed" + }, + { + "rshares": "154022998", + "voter": "sambkf" + }, + { + "rshares": "144957585", + "voter": "sawgunner13" + }, + { + "rshares": "144801473", + "voter": "dirlei.sdias" + }, + { + "rshares": "150387842", + "voter": "trickster512" + } + ], + "author": "fairytalelife", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\n

Do you want to know what depression feels like? 

\n

Think of a foggy grey muck that encircles you head to toe. Severe depression strips you from being able to experience any joy in life, even when for all the world it appears you have everything going for you.   Watered down commentaries attempt to describe the soul rotting misery of waking up in darkness every day. Who are those who can bolt out of bed ready to face the day with their happy attitudes about life? I don\u2019t know. I\u2019ve never been one. I dread waking up. One of the things really depressed people look forward to is a respite from consciousness. This is why those who suffer tend to sleep so much. It\u2019s escapism. Yet it isn\u2019t, because even in sleep you can be terrorized by your daytime demons. The quality of sleep is not restful \u2013 in fact, rather fitful. This is one reason so many people take mind-numbing tranquilizers to dull their wakeful state just to be able to drift away to somewhere, anywhere else than the dangerous and unchecked arena of the mind.    

\n

People experience the tiers of depression's challenges in different ways. It\u2019s not being disappointed or being in a bad mood if something doesn\u2019t pan out in your favor. You chipped you manicure? Bugger. Irritating, yes, but it\u2019s not the end of the world. For a depressed person,  something minor (for whatever reason) can hurl you head first into a bottomless void of regret and agony. You associate daily life with walking through a minefield. Danger lurks with every step. That ad for an antidepressant that shows a cartoon figure walking around under her own cloud of rain sums up the feeling quite well (of course it does \u2013 sponsored by The Pharmaceutical Cartel). You NEED this drug to function. That\u2019s another post, and I know far too well how drugs are touted as the magic solution. Not even children are safe from their campaigns.

\n

\n

It\u2019s the ultimate mind-fuck factory, this thought prison that leads you through Dante\u2019s circles of hell as you try to scramble your way out of the snake pit. The thoughts pull you back in by your ankles. Like a horror movie, the entity of depression knows what scares you. It knows what makes you wail in despair. It knows your saddest thoughts and flashes those across the movie screen in your head in incessant reruns. You are a spectator, but unable to avert your eyes.   

\n

You have things to do? Most can buck up and get 'er done. A very depressed person knows what must be done yet can\u2019t do it. Cannot. It\u2019s not possible. It has nothing to do with laziness and everything to do with apathy. The effort isn\u2019t worth it. You know you will feel better if such and such gets done. So the obvious solution is to do it. You have errands to run? Get in the car and go. But for a depressed person, the mundane becomes detestable to such an extent that not even the guilt for not doing the things is unable to motivate you enough to accomplish what is impossible in your mind.   

\n

\n

Once while touring Alcatraz, I was struck by something the tour guide told us. The island is positioned in just the right way that all the prisoners could smell the Ghirardelli chocolate factory wafting its chocolate scent across the bay, no doubt driving inmates insane. This is much like depression. You are stuck in a jail cell knowing everyone else is living happily while you miss out on what you know (on some level) is a gift \u2013 life itself. You can only observe from afar.    

\n

You know those days when you feel like a sloth and nothing gets done? For many depressed people that\u2019s every day. By getting nothing done I don\u2019t mean cleaning out the refrigerator or reading a book your friend needs back. I mean responsibilities you must accept as an adult, as a parent. You can\u2019t function. Your kids are hungry, but you can\u2019t do anything about it because you can\u2019t move. You have an empty stare and wonder if it\u2019s too early for a drink. It\u2019s only one in the afternoon. Can it be justified?    

\n

And you can\u2019t stop seeing those stories about the Yulin dog meat festival. This is horrible because an animal suffering is the worst thing in the world to me. Or those commercials by the SPCA. The thoughts hit hard, bating me. \u201cUh oh! She\u2019s making some progress \u2013 what is she sad about? Let\u2019s infect.\u201d Self-sabotage is the name of the game. For a depressed person, thoughts take over and pollute your whole mind.   

\n

You hope you will feel better tomorrow, or someday. You keep saying someday. But that wastes away today. You hide from friends and family because the idea of faking a smile is akin to torture. And you think no one cares about your problems. Or they are tired of hearing about them because they are always the same.   Your brain is wired differently. Some of the most creative genius comes from a desolate mental state. It can, but only If you can get any mental energy together to be productive.   

\n

Your friends email you cures for migraines. You have had to invent numerous excuses that involve having them, because that\u2019s a reasonable excuse to cancel plans. Saying you\u2019re sad or not in the mood will get \u201cI\u2019ll cheer you up\u201d from well-meaning friends and family. But you want to be alone, completely isolated, in bed, with the covers pulled up over your head. And you want to cry. And I don\u2019t mean a few tears. I mean heart-wrenching sobs that no one would want to hear.   

\n

You yell at people you love. You cry easily. They can\u2019t help you but they can sure piss you off. And we are pissed at ourselves, because children have needs that must be met -no question about it. And you know are letting them down with your suffering. Another blow.   We do not feel sorry for ourselves in the traditional sense. We do feel sorry that we can\u2019t get a grip as we are often told to do. We feel guilty for letting others down who matter as they stand by helpless, completely befuddled about their roles in all of this. They feel responsible You want to convey it\u2019s not them or their fault, but they start to not believe you. It\u2019s no one\u2019s fault. It simply is.   

\n

Some days are easier than others. I often do well when the stars align - deceptively so, or maybe not deceptive. Maybe I am getting a handle on this curse. It\u2019s a constant roller coaster of wondering when the happy cart will upturn and everything you manage to put in there (composure, self-esteem, productivity) scatters across the road. And cars are coming, but you have to try to summon up the ability to put them back in and continue on your journey. It\u2019s like you are that one slow car on a hill that everyone zips past because they don\u2019t carry the burden of your load.   

\n

Is life a beautiful thing? Yes. It is. Is it filled with sadness? Yes to that too. Can a depressed person overcome depression? I think so. But in order to answer that, you must be willing to look at your origins to discover what might be holding you back.         

\n

\n

Drawings and painting \u00a9 Johanna Westerman 2016  

\n


\n", + "category": "health", + "children": 44, + "created": "2016-09-14T17:46:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/14/HeadlessHoreseman-medium2d3b42.png", + "https://www.steemimg.com/images/2016/09/14/Brain1b12cc.jpg", + "https://www.steemimg.com/images/2016/09/14/Blanche134386.jpg", + "https://www.steemimg.com/images/2016/09/14/HeadlessHoreseman96dd9.jpg" ], - "author": "richq11", - "author_payout_value": "0.000 HBD", - "author_reputation": 73.52, - "author_role": "member", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "\n

\n

\r
\r
https://threadreaderapp.com/thread/1279218044124966912.html?refreshed=1593874202\r
\r
\r
\r

\n

Russian Oligarchs, Rock Stars, Hollywood & the White House

\n


\n

This segment begins with a documentary called The Silent Children in which several prominent rock stars were involved, among them Chris Cornell, Chester Bennington, D J Avicii, and celebrity chef Anthony Bourdain\u2026 all dead due to \u201csuicide.\u201d Also involved as a \u201cconsultant\u201d was Paul Myhill, founder of Traffic Jam, the charity dedicated to helping the victims of child sex trafficking.

\n


\n

\u201cTraffic Jam works with many faiths, NGOs, and governmental programs. During the start-up of Traffic Jam in 2004, Paul concurrently served as the Vice President of World Orphans, a mid-sized charity that has participated in the funding of over 500 orphan homes in almost 50 countries. In 2006, Paul was appointed as the President/CEO of World Orphans and now leads this global organization.\u201d

\n


\n

http://thesilentchildren.com/consultants-resources/paul-myhill-consultant/

\n


\n

As most people that have investigated Pedogate/Pizzagate know that many of these NGOs are fronts for child trafficking operations and the government agencies involved are complicit in the operations. Myhill\u2019s involvement is questionable at best as his character.

\n


\n

\u201cYou can see his tattoo features a known pedo logo. Masonic imagery can be seen in this photo with Sting. He's palled around with other known assets like Katy Perry and Elton John. Could Myhill be the reason this project never lifted? Did he sell out Cornell and the others?\u201d

\n


\n

\n


\n

David Geffen, the billionaire music producer is one of the keys, a go-between, being friends with the Clintons -- who figure into this in more ways than their friendship with Epstein and Maxwell -- Oprah Winfrey, and many other elites tied to this sick business. There are also some other unusual occurrences such as a $1 million grant that Bennington received from the Clinton Foundation to start a recycling plant in Haiti.

\n


\n

\u201cBennington (Podesta Jr?) and his band, Linkin Park, were given a million dollar grant by the Clinton Foundation to open an SRS recycling plant in...that's right, Haiti. Chester knew about the abuses being committed against the Haitian people.\u201d

\n


\n

https://threadreaderapp.com/thread/1279218044124966912.html?refreshed=1593874202

\n


\n

Chris Cornell got married in 2004 to a woman named Vicki Karayiannis, an escort with some unusual friends -- \u201cThis information was verified by Brittany Murphy before being murdered. Brittany attended the wedding as she was dating Jeff Kwatinetz at the time, who was Cornell's agent back then.\u201d Funny how many of Geffen\u2019s friends, like those close to the Clintons, wind up dead. Another of Vicki\u2019s friends was a woman named Dasha Zhukova who was married to an Israeli/Russian mob boss named \u201cRoman Abramovich (owner of Chelsea FC) and is good friends with David Geffen.\u201d

\n


\n

\u201cPLOT TWIST: Enter Courtney Love. Yes. CL produced a measurable body count, having cleaned up Cobain and others like El Duce and Kristen Pfaff. CL is featured in Epstein's flight logs and his black book. Her many connections kept her out of prison.\u201d

\n


\n

https://threadreaderapp.com/thread/1279218044124966912.html?refreshed=1593874202

\n


\n

Courtney Love is also a friend of Marina Abramovic, the \u201cperformance artist\u201d as well as Hugo Chavez. She was also a frequent flyer on the \u201cLolita Express.\u201d Abramovic also ties many in Hollywood and Washington together. Another friend of Chavez was Sean Penn, the Hollywood A-lister mentioned in the Blind Item article.

\n


\n

\u201cNor is the Hollywood A-Lister with a history of friendship with banana-Republic rulers. That A-Lister was a guest of Mari, as a tag-along with a member of that political family. The A-Lister, for all of his own nasty history, enjoyed the party favors at the foreign hideaway; but he drew the line at partaking in sexual activities. (Which says a lot with that guy\u2019s history).\u201d

\n


\n

\u201cIn fact, the A-Lister (who is either an actor or director or maybe even both), was disgusted by what he was offered by his hosts; and the few things he saw himself. So he partook of partying/drugs, but not the underage sex crimes. According to the A-Lister, he is very scared about the people he did see there and what it could mean if it all came out. Not just as a witness for legal reasons, but scared for his life. Not his career \u2014 as this is a guy who revels in controversy. He is literally afraid for his own life. Maybe he should\u2019ve been more scared\u2026not for himself but for those poor victims\u2026back when he was partying on-site with them all.\u201d

\n


\n

https://medium.com/@TheHimmmm/nasty-business-a-himmmm-blind-item-story-6fc0c8147f5a

\n


\n

Apparently Penn had been recording some of the \u201cfestivities\u201d at the Venezuelan retreat.

\n


\n

\u201cThe A-lister had, in fact, quite a collection of his home videos. Some of these are historical and others are very private. He always planned to keep them \u201csealed\u201d until after his death, then have a filmmaker assemble them once unsealed. Back when he visited the estate to party with Mari and Monster, he took his small camera and recorded the festivities. Until it was suggested to him that he stop immediately. But he had already recorded many of the elite, famous, and powerful guests and some of their partying.\u201d

\n


\n

\u201cWhat he recorded was not so much anything of a criminal nature, but was actual proof of people who were there \u2014 and who they were with. It is proof that contradicts statements of VERY powerful people who deny being at Monster & Mari\u2019s \u201cparties\u201d (or only knowing them briefly years ago). It would be enough to support many of the charges by showing visual proof of who was with who.\u201d

\n


\n

https://medium.com/@TheHimmmm/nasty-business-a-himmmm-blind-item-story-6fc0c8147f5a

\n


\n

The knowledge of this incriminating information is likely a big part of Maxwell reaching out to the Russian Oligarch, Semion Mogilevich. Mogilevich is a shady character with ties to the Russian mob, even to where he has been described as \u201cthe Godfather.\u201d He also has ties to the White House, Donald Trump, and Paul Manafort.

\n


\n

Something was wrong. At first, it was just instinct. During the Republican primaries, things weren\u2019t adding up for us with Donald Trump.\u201d

\n


\n

It wasn\u2019t Donald\u2019s \u201c-isms.\u201d It wasn\u2019t his nature, or his voters, or our own politics. It was what we knew about him from journalists like Wayne Barrett. It was what we knew about Donald\u2019s history, that NO ONE in the current media was properly covering. Why? Something was wrong. WHAT was it?\u00a0

\n


\n

And then came Paul Manafort. He entered the scene as a campaign manager. We knew what that meant. We knew who Manafort was, and where he came from. That was the moment we began to dig. What we found is a simple truth. And now, we\u2019re bringing that truth to you.
http://www.citjourno.org/page-1

\n


\n

What this entire thread is about -- and you can draw your own conclusions -- is Trump\u2019s relationship with Semion Mogilevich. What some want to expand into the realm of \u201cRussian collusion\u201d is in reality simply the way the construction business in New York and other large cities is done. You can\u2019t build anything in NYC without dealing with the mob. They control the unions, concrete delivery and manufacture, trash removal, and the people who do the work. The Italian mob has been replaced in much of this by the Russian mob run by Mogilevich. It has nothing to do with Trump\u2019s politics or his loyalty to the country. Moreover, if the choice is between Trump and the Russian mob vs. the Democrats and Chinese communists, I\u2019ll go with Trump any day.

\n


\n

Ghislaine Maxwell contacting Mogilevich likely had more to do with his contacting Trump to provide protection than facial reconstructive surgery. \u201cSince we don\u2019t yet know what the Russian will do; and Mari hasn\u2019t made her request besides \u201cseeing the doctor\u201d? Then we still don\u2019t know how it all plays out. Even the authorities have yet to pounce. She may have surgery to alter her face/body and go on the lam. She may fake her own suicide or murder. She may actually kill herself or be killed by others. She may even be arrested and caught before she runs. Because if others know what she\u2019s planning \u2014 better believe the cops/security services also know. Whether they act on it (or are allowed to act on it) may be a different story.\u201d

\n


\n

https://medium.com/@TheHimmmm/nasty-business-a-himmmm-blind-item-story-6fc0c8147f5a

\n


\n

Ghislaine has been apprehended so it remains to be seen what arrangements have been put in place to protect her if any. It could very well be that she came back and established residence in a fairly remote place so that she could be apprehended and protected while divulging what she knows.

\n


\n

David Geffen

\n


\n

It should be abundantly clear that the only involvement in this story that President Trump and Semion Mogilevich have is in providing protection for Ghislaine Maxwell, not so with David Geffen and his Hollywood friends and people from the music industry who were either actively engaged in child trafficking, or at least witnesses -- which explains why many of them are dead now.

\n


\n

Chris Cornell, before his death, was about to reveal information about an international child trafficking ring that included Geffen and many others in Hollywood and the music industry.

\n


\n

\u201cGeffen ran into actors (Josh Brolin & James Franco) while out to dinner one night with a friend of Cornell\u2019s wife [Dasha Zhukova] who is an international prostitute. He stopped by the table of Brolin/Franco and allegedly told the A list actor he had fresh meat and should stop by. They did so and apparently Franco engaged in sexual activity with some of these teen boys. I don\u2019t know if the teens he hooked up with were legal or not. Fast forward a little bit. This is where things take an even stranger turn. Apparently the escort was not only hooking up with Franco, but also Chris Cornell himself. Chris\u2019 wife had no idea. I still don\u2019t think she has any idea, although the relationship between the two has grown more frosty as of late. I don\u2019t think Franco knew, but probably wouldn\u2019t have cared. I don\u2019t think Chris Cornell knew about Franco and the escort either because Cornell was gone so frequently. Apparently one of those teens being interviewed mentioned Franco or enough of a description of him that the escort knew who the teen was referring to. Whether she saw the video or heard about it from Vicky Karayiannis, I don\u2019t know. The next thing you know, the escort is telling Franco what she knew and Franco was telling Geffen. Fate sealed. Almost immediately after that, the escort suddenly decides that she needs to leave the country again, where she has remained since. Let us call this actor Franco never one to be discreet about sex or who has sex with or concerned about age, our actor has got into trouble for his behavior in the past.\u201d

\n


\n

https://themetalden.com/chris-cornell-david-geffen-and-the-army-of-evil/

\n



\n

Epstein and Chris Cornell are dead, along with Chet Bennington, DJ Avicci, and Anthony Bourdain (remember who he was married to) and child sex-trafficking in the Caribbean islands and elsewhere is still going strong. Cornell had made a promise to \u201cfight for the kids,\u201d and now he is dead likely from the ring that Geffen is a part of that includes Marina Abramovic, Courtney Love, his wife Vicki, John Podesta, the Clintons, Oprah Winfrey, Harvey Weinstein, James Alefantis, Richard Branson, and many others in the Hollywood/Washington elite circles, as well as their equally perverted friends overseas.

\n


\n

The article from the Metal Den is well worth the read as it connects Geffen to Comet Ping Pong, Marc Collins-Rector, Brock Pierce, and other well-known pedophiles, as well as Courtney Love and many others. But there\u2019s a lot more going on in the Caribbean in addition to child sex-trafficking. It goes on to mention models being recruited, something Epstein and Maxwell played a big part of.

\n


\n

\u201cThere was another group of women that have met a different fate. Most were Instagram models. Men overseas would go on the internet and choose one they wanted. They would then be quoted a fee of between $2500-9500 to a business located in Washington D.C. That business specialized in selling items that were all priced in that range. The crazy thing is though if you took a look at the business, they didn\u2019t actually have any inventory. They were just funneling money for a bunch of different purposes. One of those purposes was providing Instagram models as wives to some very very bad people who had been promised wives if they signed up to fight. Most of these Instagram models that were picked at random had no interest in going overseas even for sex. However, there was plenty that the escort found through her web of other escort friends and models she would talk to online. How to make sure the models were really interested? SB would make a personal plea or his almost equally famous family member. The models would be told easy money was waiting overseas. The models all thought they were going to Dubai. They would start in Dubai but were then transported to other places not as nice and then married off. The people getting the wives were not going to complain about not getting their first choice or try to demand a refund. These models were then paraded and used as a recruitment tool to get more people to sign up to fight. Now, it isn\u2019t clear whether SB or the A+ lister or even the escort or our hated widow knew the full story of these models. I do know they knew the women were being sold/rented to men in Dubai. I know they took a cut of that big fee paid to that mystery business. I know the escort is still trolling for new women online to sell. I don\u2019t know who her new middleman is, but she is still doing it.\u201d

\n


\n

https://themetalden.com/chris-cornell-david-geffen-and-the-army-of-evil/

\n


\n

This is all a part of the documented involvement by Epstein, Leslie Wexner, and the Victoria\u2019s Secret scam that involves Naomi Campbell, Heidi Klum, Rachel Chandler, et.al. in their procurement operation. Who remembers this guy?

\n


\n

\n


\n

This is Patrick Demarchelier, a famous French fashion photographer, who seems to be involved in this affair, perhaps to lend an air of respectability to the operation.

\n


\n

Sex and power go hand in hand, sex has been used as a method of controlling politicians as far back as the Greeks, probably before. As time has gone on, and technology has evolved the methods of control have evolved along with it\u2026 brownstone operations and honey traps. There is also nothing new about sex parties, \u201corgies,\u201d and/or pedophilia, they\u2019ve gone on throughout history as well. Wife-swapping parties have been common in America at least since the 50s, but somewhere along the way the sexual appetites of the elites took on a more sinister, satanic overtone, where satanic rituals became a part of the political/power dynamic, hence the popularity of people such as Marina Abramovic.

\n


\n

Child sacrifice is as old as Moloch worship\u2026 probably older. But it, like the sexual appetites, has taken on a sinister nature where the elites enjoy this perfidy. It\u2019s become more than a tool for blackmail and ascendence in the \u201ccabal,\u201d it\u2019s now a perversion enjoyed by those who practice it\u2026 an evil unto itself. Lamentably, trafficking children for this perversion has become one of the most lucrative black market enterprises there is, 3rd only to drugs and weapons -- and many elites in Hollywood and those in power are profiting handsomely.

\n


\n

As we move on to the Caribbean islands in the next episode, bear in mind that not only children, but drugs, weapons, uranium, and other things are being smuggled by the rich and powerful.

\n


\r
\r

\n", - "category": "hive-122315", - "children": 3, - "community": "hive-122315", - "community_title": "Deep Dives", - "created": "2020-07-07T14:30:42", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "hiveblog/0.1", - "format": "html", - "image": [ - "https://i.postimg.cc/ZnCvps6n/Ec-Ckc-Bv-Xg-AAu0qp.jpg", - "https://lh4.googleusercontent.com/HPfm-9nm64n1wLjF8pg1cwcTSPu1SCpdErmOlFQPsj0R4E7tUjHC7ykBIoFNGM_2pVN49FLvVkhparCBePEtlOPU_QUFdwGkyMbuNLj83UpIt6KsaFX7R1IITuI0tL9dd6lVHE0", - "https://lh6.googleusercontent.com/k9DDxfmhEly0ZbvV8bkTILM7xz0Uq7pv24zCaH3bSS0djvjA9eh3wWSA8YUiyZTyCklMKdb9gMhKPyOp2qBLBk1OOoOXKFycJVNGYWvFptyQOlizkQT7iU-swJJ7kgwsAa5oYUM", - "https://lh4.googleusercontent.com/a8ExeRNTytpTZTDhuFG1r0VEkDOxdDL1_3aLGjubaj_V8d-bSNwsdUBE3ZXVaLO0JOH7_NTQRnxdcLhJAf0JVxOVAtRHipz5L9X5YlpbJlEZ4-kOLQIhzn6uVQjO2LedkHUa6a0" - ], - "links": [ - "https://threadreaderapp.com/thread/1279218044124966912.html?refreshed=1593874202", - "http://thesilentchildren.com/consultants-resources/paul-myhill-consultant/", - "https://medium.com/@TheHimmmm/nasty-business-a-himmmm-blind-item-story-6fc0c8147f5a", - "http://www.citjourno.org/page-1", - "https://themetalden.com/chris-cornell-david-geffen-and-the-army-of-evil/" - ], - "tags": [ - "hive-122315", - "hive", - "deepdives", - "informationwar", - "epstein", - "maxwell", - "pedogate", - "geffen" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 81939466462224, - "payout": 32.829, - "payout_at": "2020-07-14T14:30:42", - "pending_payout_value": "32.829 HBD", - "percent_steem_dollars": 10000, - "permlink": "it-s-bigger-than-you-think-epstein-maxwell-the-pieces-begin-to-fall-into-place-pt-2", - "post_id": 86933188, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 278 - }, - "title": "It\u2019s Bigger Than You Think: Epstein - Maxwell\u2026 The Pieces Begin to Fall Into Place Pt.2", - "updated": "2020-07-07T14:30:42", - "url": "/hive-122315/@richq11/it-s-bigger-than-you-think-epstein-maxwell-the-pieces-begin-to-fall-into-place-pt-2" + "tags": [ + "health", + "art", + "illustration", + "life" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 120989205660828, + "payout": 832.556, + "payout_at": "2016-09-21T17:46:30", + "pending_payout_value": "832.556 HBD", + "percent_hbd": 10000, + "permlink": "the-prison-of-depression", + "post_id": 1245264, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 492 + }, + "title": "The Prison of Depression", + "updated": "2016-09-14T19:14:27", + "url": "/health/@fairytalelife/the-prison-of-depression" }, { - "active_votes": [ - { - "rshares": "37351855353", - "voter": "tombstone" - }, - { - "rshares": "779420080059", - "voter": "kingscrown" - }, - { - "rshares": "6094195986899", - "voter": "acidyo" - }, - { - "rshares": "851138605090", - "voter": "kevinwong" - }, - { - "rshares": "522902655297", - "voter": "mark-waser" - }, - { - "rshares": "284767101019", - "voter": "gerber" - }, - { - "rshares": "58770575309", - "voter": "daan" - }, - { - "rshares": "312373776325", - "voter": "ezzy" - }, - { - "rshares": "3412065970", - "voter": "mrwang" - }, - { - "rshares": "371209529604", - "voter": "exyle" - }, - { - "rshares": "5023590556", - "voter": "sharker" - }, - { - "rshares": "3551444099", - "voter": "arconite" - }, - { - "rshares": "4023527413", - "voter": "kibela" - }, - { - "rshares": "3017642048383", - "voter": "shaka" - }, - { - "rshares": "538786925", - "voter": "alinalazareva" - }, - { - "rshares": "9040176288323", - "voter": "jphamer1" - }, - { - "rshares": "3754037740627", - "voter": "joele" - }, - { - "rshares": "9424092349", - "voter": "anech512" - }, - { - "rshares": "53911070966", - "voter": "someguy123" - }, - { - "rshares": "44644697210", - "voter": "patrickulrich" - }, - { - "rshares": "182533485486", - "voter": "uwelang" - }, - { - "rshares": "529457377319", - "voter": "digital-wisdom" - }, - { - "rshares": "2046452069", - "voter": "ethical-ai" - }, - { - "rshares": "24985859132", - "voter": "jwaser" - }, - { - "rshares": "3474683236", - "voter": "funnyman" - }, - { - "rshares": "43620636164", - "voter": "justyy" - }, - { - "rshares": "1518893971", - "voter": "ellepdub" - }, - { - "rshares": "158517872693", - "voter": "herpetologyguy" - }, - { - "rshares": "3665483634", - "voter": "handyman" - }, - { - "rshares": "2129378193", - "voter": "strong-ai" - }, - { - "rshares": "8701060209", - "voter": "vannour" - }, - { - "rshares": "109088110650", - "voter": "edb" - }, - { - "rshares": "988483907", - "voter": "technoprogressiv" - }, - { - "rshares": "21638261402", - "voter": "rahul.stan" - }, - { - "rshares": "216442394513", - "voter": "danielsaori" - }, - { - "rshares": "14660187971", - "voter": "dune69" - }, - { - "rshares": "5174605606", - "voter": "tdiv7653" - }, - { - "rshares": "39428006175", - "voter": "jerrybanfield" - }, - { - "rshares": "68848756592", - "voter": "ironshield" - }, - { - "rshares": "134007610401", - "voter": "masterthematrix" - }, - { - "rshares": "4670129002", - "voter": "ruel.cedeno" - }, - { - "rshares": "47151720073", - "voter": "dkmathstats" - }, - { - "rshares": "131965696590", - "voter": "maxer27" - }, - { - "rshares": "32855399537", - "voter": "sam99" - }, - { - "rshares": "239718744124", - "voter": "ew-and-patterns" - }, - { - "rshares": "95497082223", - "voter": "ladybug146" - }, - { - "rshares": "1087282970", - "voter": "d-pend" - }, - { - "rshares": "67348782389", - "voter": "jacekw" - }, - { - "rshares": "1820101716", - "voter": "sannur" - }, - { - "rshares": "1406410412", - "voter": "shitsignals" - }, - { - "rshares": "26524301563", - "voter": "dine77" - }, - { - "rshares": "1085047632549", - "voter": "steemvote" - }, - { - "rshares": "270028292734", - "voter": "investingpennies" - }, - { - "rshares": "19452788220", - "voter": "felander" - }, - { - "rshares": "567726523", - "voter": "sportsgeek" - }, - { - "rshares": "1668306593", - "voter": "musicgeek" - }, - { - "rshares": "51965149006", - "voter": "bashadow" - }, - { - "rshares": "33064502199", - "voter": "crokkon" - }, - { - "rshares": "50307596222", - "voter": "accelerator" - }, - { - "rshares": "1818213031", - "voter": "yogacoach" - }, - { - "rshares": "4179190702", - "voter": "deathwing" - }, - { - "rshares": "230089957713", - "voter": "revisesociology" - }, - { - "rshares": "43671988834", - "voter": "isnochys" - }, - { - "rshares": "6286717913", - "voter": "dinglehopper" - }, - { - "rshares": "1044420796", - "voter": "liverpool-fan" - }, - { - "rshares": "1296182237", - "voter": "sahil07" - }, - { - "rshares": "1056818570", - "voter": "murattatar" - }, - { - "rshares": "3301520213", - "voter": "anjana77" - }, - { - "rshares": "1730318766", - "voter": "sonu084" - }, - { - "rshares": "14858664404", - "voter": "caladan" - }, - { - "rshares": "700711932", - "voter": "aman433" - }, - { - "rshares": "3965142695", - "voter": "unforgettable" - }, - { - "rshares": "2446818930739", - "voter": "emrebeyler" - }, - { - "rshares": "11225318165", - "voter": "not-a-bird" - }, - { - "rshares": "1267088009", - "voter": "evilest-fiend" - }, - { - "rshares": "562281658", - "voter": "forkonti" - }, - { - "rshares": "78855737435", - "voter": "obvious" - }, - { - "rshares": "1550666506", - "voter": "funtraveller" - }, - { - "rshares": "25694384996", - "voter": "nokodemion" - }, - { - "rshares": "3040091809", - "voter": "tinowhale" - }, - { - "rshares": "609001732", - "voter": "hayirhah" - }, - { - "rshares": "1704369195", - "voter": "slashformotion" - }, - { - "rshares": "9672228117", - "voter": "fromhell2sky" - }, - { - "rshares": "23802643024", - "voter": "neupanedipen" - }, - { - "rshares": "1989931261", - "voter": "ydavgonzalez" - }, - { - "rshares": "103986504641", - "voter": "nealmcspadden" - }, - { - "rshares": "810126950", - "voter": "baycan" - }, - { - "rshares": "941811216", - "voter": "samueladams314" - }, - { - "rshares": "765311909", - "voter": "coinmeria" - }, - { - "rshares": "63557732008", - "voter": "purefood" - }, - { - "rshares": "761002394491", - "voter": "soyrosa" - }, - { - "rshares": "20121025510", - "voter": "portugalcoin" - }, - { - "rshares": "126688629389", - "voter": "chorock" - }, - { - "rshares": "177764389015", - "voter": "chronocrypto" - }, - { - "rshares": "1064993186121", - "voter": "holger80" - }, - { - "rshares": "570750907", - "voter": "lidiceml" - }, - { - "rshares": "8285499999", - "voter": "cadawg" - }, - { - "rshares": "910847311", - "voter": "gavinatorial" - }, - { - "rshares": "832386610", - "voter": "ahmetmertugrul" - }, - { - "rshares": "21978252587", - "voter": "sudefteri" - }, - { - "rshares": "22752323855", - "voter": "photohunt" - }, - { - "rshares": "740554119", - "voter": "photohunter1" - }, - { - "rshares": "1132935109", - "voter": "photohunter4" - }, - { - "rshares": "1094345668", - "voter": "photohunter5" - }, - { - "rshares": "1735356628", - "voter": "pkocjan" - }, - { - "rshares": "571980657", - "voter": "tdogvoid" - }, - { - "rshares": "1435923832", - "voter": "allyson19" - }, - { - "rshares": "1290692058", - "voter": "agememnon" - }, - { - "rshares": "801687016", - "voter": "tipitip" - }, - { - "rshares": "10361381341", - "voter": "ahmeterbay" - }, - { - "rshares": "10950779467", - "voter": "raoul.poenar" - }, - { - "rshares": "52535944565", - "voter": "cst90" - }, - { - "rshares": "568015837", - "voter": "steempampanga" - }, - { - "rshares": "32554750008", - "voter": "thomasthewolf" - }, - { - "rshares": "5289944243", - "voter": "idkpdx" - }, - { - "rshares": "525828408161", - "voter": "backinblackdevil" - }, - { - "rshares": "809558934", - "voter": "ruh" - }, - { - "rshares": "4130114436", - "voter": "frassman" - }, - { - "rshares": "652028240", - "voter": "bulent1976" - }, - { - "rshares": "15072657421", - "voter": "bestboom" - }, - { - "rshares": "19690119915", - "voter": "abrockman" - }, - { - "rshares": "45332478400", - "voter": "muratkbesiroglu" - }, - { - "rshares": "3286859217", - "voter": "mahyulmaulana" - }, - { - "rshares": "91780325730", - "voter": "ronaldoavelino" - }, - { - "rshares": "44469934609", - "voter": "sereze" - }, - { - "rshares": "5744301896", - "voter": "jan23com" - }, - { - "rshares": "15991108498", - "voter": "freddio" - }, - { - "rshares": "3568706981", - "voter": "choco11oreo11" - }, - { - "rshares": "7359788612", - "voter": "ecotone" - }, - { - "rshares": "34989354798", - "voter": "jumbot" - }, - { - "rshares": "155716687516", - "voter": "promobot" - }, - { - "rshares": "1084607367", - "voter": "glodniwiedzy" - }, - { - "rshares": "130971655263", - "voter": "techcoderx" - }, - { - "rshares": "108789100700", - "voter": "enforcer48" - }, - { - "rshares": "777617272", - "voter": "khiabels" - }, - { - "rshares": "20278731181", - "voter": "bilimkurgu" - }, - { - "rshares": "1069770336", - "voter": "krbecrypto" - }, - { - "rshares": "1652809957724", - "voter": "solarwarrior" - }, - { - "rshares": "2280073053", - "voter": "swisswitness" - }, - { - "rshares": "2529499024", - "voter": "adrimonte" - }, - { - "rshares": "1312678726", - "voter": "kahvesizlik" - }, - { - "rshares": "808950246", - "voter": "moneybaby" - }, - { - "rshares": "733187743", - "voter": "luciomcabee" - }, - { - "rshares": "268697194332", - "voter": "sbi6" - }, - { - "rshares": "8390575548", - "voter": "tahirozgen" - }, - { - "rshares": "606339437", - "voter": "pablorg94" - }, - { - "rshares": "44249395939", - "voter": "thehive" - }, - { - "rshares": "2598546768", - "voter": "daath" - }, - { - "rshares": "1087962547", - "voter": "elmauza" - }, - { - "rshares": "599329811", - "voter": "quatro" - }, - { - "rshares": "5404476185", - "voter": "littleshadow" - }, - { - "rshares": "49217501103", - "voter": "dlike" - }, - { - "rshares": "822916850", - "voter": "london65" - }, - { - "rshares": "1821007328", - "voter": "joseph6232" - }, - { - "rshares": "3228155005", - "voter": "emaillisahere" - }, - { - "rshares": "630123207", - "voter": "buzzbee" - }, - { - "rshares": "6399730428", - "voter": "fullnodeupdate" - }, - { - "rshares": "845701313", - "voter": "ceruleanblue" - }, - { - "rshares": "53125993814", - "voter": "engrave" - }, - { - "rshares": "40597542706", - "voter": "gabbynhice" - }, - { - "rshares": "4130992835", - "voter": "caoimhin" - }, - { - "rshares": "1586811093", - "voter": "bobby.madagascar" - }, - { - "rshares": "1463639248", - "voter": "djtrucker" - }, - { - "rshares": "21486959", - "voter": "laissez-faire" - }, - { - "rshares": "0", - "voter": "voter000" - }, - { - "rshares": "654456242", - "voter": "steemituplife" - }, - { - "rshares": "43135506252", - "voter": "marshalmugi" - }, - { - "rshares": "1732182825", - "voter": "podg3" - }, - { - "rshares": "966516944", - "voter": "steemwhalepower" - }, - { - "rshares": "39502259358", - "voter": "mister-meeseeks" - }, - { - "rshares": "5015268562", - "voter": "misstaken" - }, - { - "rshares": "5000007307", - "voter": "thisnewgirl" - }, - { - "rshares": "2092854591", - "voter": "anti-bully" - }, - { - "rshares": "2443208397", - "voter": "twoshyguys" - }, - { - "rshares": "16215201860", - "voter": "maonx" - }, - { - "rshares": "22626275782", - "voter": "followjohngalt" - }, - { - "rshares": "1504827608", - "voter": "daisybuzz" - }, - { - "rshares": "1998685233", - "voter": "jussbren" - }, - { - "rshares": "8189587053", - "voter": "avel692" - }, - { - "rshares": "970154495", - "voter": "criptoanarquista" - }, - { - "rshares": "-121753598", - "voter": "dein-problem" - }, - { - "rshares": "22338521079", - "voter": "moneytron" - }, - { - "rshares": "15388685122", - "voter": "rasalom" - }, - { - "rshares": "10757420274", - "voter": "brucutu" - }, - { - "rshares": "956543331", - "voter": "leviackerman" - }, - { - "rshares": "80299199966", - "voter": "bluerobo" - }, - { - "rshares": "828117295", - "voter": "starfighter" - }, - { - "rshares": "749628029", - "voter": "seekingalpha" - }, - { - "rshares": "756642398", - "voter": "permaculturedude" - }, - { - "rshares": "5252801609", - "voter": "hanke" - }, - { - "rshares": "806738409", - "voter": "goodcontentbot" - }, - { - "rshares": "613026307", - "voter": "samflow" - }, - { - "rshares": "22430330997", - "voter": "curationvoter" - }, - { - "rshares": "962492869", - "voter": "realgoodcontent" - }, - { - "rshares": "1535866912", - "voter": "cooperfelix" - }, - { - "rshares": "11548840271", - "voter": "steemslotgames" - }, - { - "rshares": "549589107", - "voter": "cabalen" - }, - { - "rshares": "1035769683", - "voter": "sm-skynet" - }, - { - "rshares": "606371696", - "voter": "angelanichole" - }, - { - "rshares": "14065088020", - "voter": "cpt-sparrow" - }, - { - "rshares": "1586602985", - "voter": "bitcoinator" - }, - { - "rshares": "1858493352", - "voter": "korle" - }, - { - "rshares": "18419890099", - "voter": "maryincryptoland" - }, - { - "rshares": "3496536041", - "voter": "raspibot" - }, - { - "rshares": "5566249732", - "voter": "gulf41" - }, - { - "rshares": "17763614897762", - "voter": "likwid" - }, - { - "rshares": "6577796991", - "voter": "map10k" - }, - { - "rshares": "565160531", - "voter": "suigener1s" - }, - { - "rshares": "1696178138", - "voter": "milu-the-dog" - }, - { - "rshares": "16217403245", - "voter": "yeswecan" - }, - { - "rshares": "1401399304", - "voter": "triplea.bot" - }, - { - "rshares": "104858544797", - "voter": "steem.leo" - }, - { - "rshares": "3265360637", - "voter": "freddio.sport" - }, - { - "rshares": "22605964566", - "voter": "asteroids" - }, - { - "rshares": "1092236935", - "voter": "midlet-creates" - }, - { - "rshares": "1428080506", - "voter": "sbi-tokens" - }, - { - "rshares": "678884416", - "voter": "one.life" - }, - { - "rshares": "29728613044", - "voter": "acta" - }, - { - "rshares": "18507566960", - "voter": "the-table" - }, - { - "rshares": "4403098745", - "voter": "cardtrader" - }, - { - "rshares": "20618783821", - "voter": "maxuvd" - }, - { - "rshares": "1885017000", - "voter": "thehouse" - }, - { - "rshares": "1061193651", - "voter": "mister.reatard" - }, - { - "rshares": "134963581002", - "voter": "silverquest" - }, - { - "rshares": "8562822710", - "voter": "honeychip" - }, - { - "rshares": "4899723084", - "voter": "gmlrecordz" - }, - { - "rshares": "1280337588", - "voter": "ribary" - }, - { - "rshares": "362896310450", - "voter": "choppy" - }, - { - "rshares": "1741513369", - "voter": "kgsupport" - }, - { - "rshares": "23732467128", - "voter": "mice-k" - }, - { - "rshares": "1970992846", - "voter": "curamax" - }, - { - "rshares": "1732398526", - "voter": "tommys.shop" - }, - { - "rshares": "780364014", - "voter": "steemcityrewards" - }, - { - "rshares": "1008713029", - "voter": "dpend.active" - }, - { - "rshares": "147290558097", - "voter": "steem24" - }, - { - "rshares": "19533462092737", - "voter": "innerhive" - }, - { - "rshares": "577617880", - "voter": "hivewaves" - }, - { - "rshares": "3405107342", - "voter": "blue-witness" - }, - { - "rshares": "1701663465", - "voter": "hivevenezuela" - }, - { - "rshares": "379076852607", - "voter": "softworld" - }, - { - "rshares": "10654117627", - "voter": "polish.hive" - }, - { - "rshares": "800243079", - "voter": "sunsan" - }, - { - "rshares": "98432873048", - "voter": "dcityrewards" - }, - { - "rshares": "836496634", - "voter": "marvschurchill1" - }, - { - "rshares": "1487630239", - "voter": "paulman" - }, - { - "rshares": "1456084851", - "voter": "ninnu" - }, - { - "rshares": "1099908221", - "voter": "yugimuto" - }, - { - "rshares": "88328746854", - "voter": "ghaazi" - }, - { - "rshares": "941841461", - "voter": "magodelcaosnegro" - }, - { - "rshares": "331901958749", - "voter": "ronavel" - }, - { - "rshares": "864912337", - "voter": "sagadegeminis" - }, - { - "rshares": "99676754564", - "voter": "hivecur" - }, - { - "rshares": "939697753", - "voter": "constantinopla" - }, - { - "rshares": "815631871", - "voter": "bellaciao" - }, - { - "rshares": "939160207", - "voter": "jesucristo" - }, - { - "rshares": "938977393", - "voter": "yodinzaku" - }, - { - "rshares": "938934066", - "voter": "lordarianthus" - }, - { - "rshares": "938748165", - "voter": "spiritminer" - }, - { - "rshares": "954648565", - "voter": "drfate" - }, - { - "rshares": "954544159", - "voter": "confucio" - }, - { - "rshares": "954294405", - "voter": "splintergod" - }, - { - "rshares": "940758336", - "voter": "magnor" - }, - { - "rshares": "0", - "voter": "mutabor78" - }, - { - "rshares": "968391492", - "voter": "meele" - }, - { - "rshares": "968386986", - "voter": "kretchtallevor" - } + "active_votes": [ + { + "rshares": "231806896049", + "voter": "anonymous" + }, + { + "rshares": "40039727156805", + "voter": "blocktrades" + }, + { + "rshares": "81139043695", + "voter": "friend5" + }, + { + "rshares": "5563642779143", + "voter": "kushed" + }, + { + "rshares": "4361056998354", + "voter": "roadscape" + }, + { + "rshares": "11463456159", + "voter": "by24seven" + }, + { + "rshares": "48198557404", + "voter": "twiceuponatime" + }, + { + "rshares": "253716125229", + "voter": "indominon" + }, + { + "rshares": "72048644865", + "voter": "vault" + }, + { + "rshares": "22916314085", + "voter": "wpalczynski" + }, + { + "rshares": "23645584002", + "voter": "nikolai" + }, + { + "rshares": "143164562367", + "voter": "chris4210" + }, + { + "rshares": "24193131603", + "voter": "acidyo" + }, + { + "rshares": "313691550", + "voter": "coar" + }, + { + "rshares": "1061234978", + "voter": "murh" + }, + { + "rshares": "33781972641", + "voter": "ratel" + }, + { + "rshares": "208364758717", + "voter": "kimziv" + }, + { + "rshares": "45145254362", + "voter": "venuspcs" + }, + { + "rshares": "7264907621", + "voter": "getssidetracked" + }, + { + "rshares": "1414199127", + "voter": "trees" + }, + { + "rshares": "197179742", + "voter": "strawhat" + }, + { + "rshares": "844421054", + "voter": "endgame" + }, + { + "rshares": "118094280271", + "voter": "furion" + }, + { + "rshares": "2834923420", + "voter": "steem1653" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "3735950544", + "voter": "incomemonthly" + }, + { + "rshares": "6392090406", + "voter": "cryptosi" + }, + { + "rshares": "243749878708", + "voter": "nabilov" + }, + { + "rshares": "677892916", + "voter": "luisucv34" + }, + { + "rshares": "34761252099", + "voter": "creemej" + }, + { + "rshares": "167304333801", + "voter": "blueorgy" + }, + { + "rshares": "4545098461", + "voter": "poseidon" + }, + { + "rshares": "41053239884", + "voter": "celsius100" + }, + { + "rshares": "1659490970", + "voter": "tokyodude" + }, + { + "rshares": "128098702", + "voter": "mysteem" + }, + { + "rshares": "6168588588", + "voter": "chloetaylor" + }, + { + "rshares": "34309889652", + "voter": "sisterholics" + }, + { + "rshares": "59017018", + "voter": "reported" + }, + { + "rshares": "55047214", + "voter": "krushing" + }, + { + "rshares": "1213316718415", + "voter": "laonie" + }, + { + "rshares": "21929710586", + "voter": "rawnetics" + }, + { + "rshares": "41307699258", + "voter": "myfirst" + }, + { + "rshares": "246282932283", + "voter": "somebody" + }, + { + "rshares": "9450611021", + "voter": "flysaga" + }, + { + "rshares": "513541455", + "voter": "minnowsunited" + }, + { + "rshares": "54405663387", + "voter": "midnightoil" + }, + { + "rshares": "54018085", + "voter": "whatyouganjado" + }, + { + "rshares": "136080800992", + "voter": "xiaohui" + }, + { + "rshares": "6792049578", + "voter": "elfkitchen" + }, + { + "rshares": "61187902", + "voter": "makaveli" + }, + { + "rshares": "4366196499", + "voter": "xiaokongcom" + }, + { + "rshares": "7475701368", + "voter": "thebotkiller" + }, + { + "rshares": "8801500509", + "voter": "xianjun" + }, + { + "rshares": "11292536945", + "voter": "borran" + }, + { + "rshares": "53669860", + "voter": "alexbones" + }, + { + "rshares": "576331905", + "voter": "microluck" + }, + { + "rshares": "1310823380", + "voter": "stevescoins" + }, + { + "rshares": "3089652212", + "voter": "macartem" + }, + { + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "rshares": "156958768", + "voter": "nang1" + }, + { + "rshares": "166282713", + "voter": "kamil5" + }, + { + "rshares": "51156498", + "voter": "dobbydaba" + }, + { + "rshares": "5950976762", + "voter": "trev" + }, + { + "rshares": "8773942171", + "voter": "craigwilliamz" + }, + { + "rshares": "72624506", + "voter": "ozertayiz" + }, + { + "rshares": "53639497", + "voter": "salebored" + }, + { + "rshares": "736031742", + "voter": "freeinthought" + }, + { + "rshares": "63258691", + "voter": "arnoldz61" + }, + { + "rshares": "2101747450", + "voter": "eight-rad" + }, + { + "rshares": "53681172", + "voter": "bitdrone" + }, + { + "rshares": "53672498", + "voter": "sleepcult" + }, + { + "rshares": "54175638", + "voter": "apparat" + }, + { + "rshares": "12276570645", + "voter": "doitvoluntarily" + }, + { + "rshares": "135393340675", + "voter": "thecyclist" + }, + { + "rshares": "52015504", + "voter": "analyzethis" + }, + { + "rshares": "63904547", + "voter": "freebornangel" + }, + { + "rshares": "52154065", + "voter": "nommo" + }, + { + "rshares": "51261721", + "voter": "f1111111" + }, + { + "rshares": "339287005", + "voter": "anomaly" + }, + { + "rshares": "98545946", + "voter": "ola1" + }, + { + "rshares": "63588518", + "voter": "mari5555na" + }, + { + "rshares": "2996735269", + "voter": "powerup" + }, + { + "rshares": "527464783", + "voter": "grisha-danunaher" + }, + { + "rshares": "161974443", + "voter": "zapply" + }, + { + "rshares": "158561921", + "voter": "jyriygo" + }, + { + "rshares": "136494240", + "voter": "bleujay" + }, + { + "rshares": "153397644", + "voter": "milank" + }, + { + "rshares": "150273031", + "voter": "inkwisitiveguy01" + } + ], + "author": "powerup", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "So far, a great number of applications, or tools that can considerably improve our user experience whether we are old users or new, has been created. The application directory created by @roelandp is accepted as an official directory that currently contains more than 80 various tools, mainly created by the community members, with a few official ones. The number of applications is growing rapidly, thanks to talented developers and other users, whose ideas are being converted into functional programs.\n\nHere, I want to introduce you to an infographic that contains 17 very useful tools singled out and sorted into categories according to their use. The first category 'for new and old users' contains essential applications for most users, including applications such as the official chat server and block explorer, as well as a dedicated service for uninterrupted adding of photos, @jesta's tool for easier tracking of data related to your account, and a tool for real-time Steem Backed Dollar conversion, with a few extra applications included in the service.\n\nThe next group contains the applications essential for developers, led by @xeroc's piston which says for itself 'The Swiff Army Knife for the Steem network'. They facilitate the communication with the steem blockchain and there is also an application that facilitates the integration of Steem payments to your service. \n\nThe Miscellaneous group contains a variety of useful applications such as tools for curators, a precise browser of user reputation, a dedicated tool for creating shortened links with statistics, a Steem Stream display of all activity in real time with an option of adjusting your settings, as well as speech community and radio.\n\nLast group are applications in the category of data and analytics that contain most of data about the network, the network activity and the users. \n\nI apologize in advance if some of your favorite applications have been left out; if that is the case, you can always visit http://SteemTools.com which contains all the applications.\n\n*For a clearer view, it is recommended that you open the image in full resolution.* *[Infographic Hotlink!](http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png)*\nhttps://s11.postimg.io/8uxamnavn/revision_02.png\n---\n ![http://steemit.com/@powerup](https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png)", + "category": "infographic", + "children": 6, + "created": "2016-09-15T16:45:09", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s11.postimg.io/8uxamnavn/revision_02.png", + "https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png" ], - "author": "emrebeyler", - "author_payout_value": "0.000 HBD", - "author_reputation": 75.06, - "beneficiaries": [], - "blacklists": [], - "body": "
\n
\"Standards\" by XKCD
\n\n***\nOnce upon a time, one developer at Steemit inc. decided to add some custom flavors to the the [official Markdown syntax](https://daringfireball.net/projects/markdown/syntax). One widely used example is that you can just paste image URLs into the post body, and they will be converted into an `img` HTML element, automatically.\n\nOne can argue that this is a very good usability thing for the end-users, but these kinds of custom flavors come with its own problems. Since users are expecting this behavior in everywhere, other HIVE interfaces also needs to implement the *\"Condenser flavored Markdown\".* \n\nAnd guess what, it's not really modular, so you can't just use it as a package, you need to pull the related parts from the Condenser, manually. \n\nWe need a unified \"Hive-Flavored-Markdown\" package for Javascript (also preferably with other popular programming languages) so that every interface uses a common library to handle the differences.", - "category": "condenser", - "children": 7, - "created": "2020-07-07T13:36:03", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "hiveblog/0.1", - "format": "markdown", - "image": [ - "https://imgs.xkcd.com/comics/standards.png" - ], - "links": [ - "https://xkcd.com/927/", - "https://daringfireball.net/projects/markdown/syntax" - ], - "tags": [ - "markdown" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 77424160152197, - "payout": 30.911, - "payout_at": "2020-07-14T13:36:03", - "pending_payout_value": "30.911 HBD", - "percent_steem_dollars": 10000, - "permlink": "standards-and-hive-markdown", - "post_id": 86932486, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 263 - }, - "title": "Standards and HIVE markdown", - "updated": "2020-07-07T18:44:48", - "url": "/condenser/@emrebeyler/standards-and-hive-markdown" - }, - { - "active_votes": [ - { - "rshares": "458949718280", - "voter": "fminerten" - }, - { - "rshares": "5147376393412", - "voter": "steempty" - }, - { - "rshares": "47758084923", - "voter": "enlil" - }, - { - "rshares": "259439414112", - "voter": "tombstone" - }, - { - "rshares": "382502360162", - "voter": "camilla" - }, - { - "rshares": "3118425083414", - "voter": "kingscrown" - }, - { - "rshares": "28598571363", - "voter": "cryptogee" - }, - { - "rshares": "126194580819", - "voter": "nanzo-scoop" - }, - { - "rshares": "17885231765", - "voter": "mummyimperfect" - }, - { - "rshares": "5915588102598", - "voter": "kevinwong" - }, - { - "rshares": "7117512210", - "voter": "ak2020" - }, - { - "rshares": "11383374538", - "voter": "justtryme90" - }, - { - "rshares": "534059683117", - "voter": "mark-waser" - }, - { - "rshares": "560861961", - "voter": "emily-cook" - }, - { - "rshares": "255275128309", - "voter": "gerber" - }, - { - "rshares": "58788025096", - "voter": "daan" - }, - { - "rshares": "279049012278", - "voter": "ezzy" - }, - { - "rshares": "33799985041", - "voter": "hitmeasap" - }, - { - "rshares": "24269933054", - "voter": "mrwang" - }, - { - "rshares": "48410603406", - "voter": "ardina" - }, - { - "rshares": "15478995688810", - "voter": "livingfree" - }, - { - "rshares": "2698504967", - "voter": "nascimentoab" - }, - { - "rshares": "4970729286", - "voter": "jillfeint" - }, - { - "rshares": "372895511713", - "voter": "herverisson" - }, - { - "rshares": "61896361225", - "voter": "arcange" - }, - { - "rshares": "361409320498", - "voter": "exyle" - }, - { - "rshares": "25140872478", - "voter": "arconite" - }, - { - "rshares": "1626172306", - "voter": "raphaelle" - }, - { - "rshares": "189482689290", - "voter": "ace108" - }, - { - "rshares": "9475792049009", - "voter": "jphamer1" - }, - { - "rshares": "28225996282", - "voter": "fooblic" - }, - { - "rshares": "503401325988", - "voter": "borran" - }, - { - "rshares": "14506864875", - "voter": "azizbd" - }, - { - "rshares": "1888315477", - "voter": "bert0" - }, - { - "rshares": "748473026", - "voter": "peppernrino" - }, - { - "rshares": "48424365665", - "voter": "someguy123" - }, - { - "rshares": "497416904734", - "voter": "mattclarke" - }, - { - "rshares": "154781280440", - "voter": "foxkoit" - }, - { - "rshares": "253183516449", - "voter": "daveks" - }, - { - "rshares": "257509296333", - "voter": "uwelang" - }, - { - "rshares": "529507411333", - "voter": "digital-wisdom" - }, - { - "rshares": "2071875244", - "voter": "ethical-ai" - }, - { - "rshares": "25569628825", - "voter": "jwaser" - }, - { - "rshares": "158813371426", - "voter": "lyubovbar" - }, - { - "rshares": "2176137714124", - "voter": "abh12345" - }, - { - "rshares": "176376191936", - "voter": "justyy" - }, - { - "rshares": "6634304045", - "voter": "t-bot" - }, - { - "rshares": "3153997293", - "voter": "fukako" - }, - { - "rshares": "49320871875", - "voter": "clayboyn" - }, - { - "rshares": "16895745399", - "voter": "freshfund" - }, - { - "rshares": "2161183515", - "voter": "strong-ai" - }, - { - "rshares": "2531825516", - "voter": "syahhiran" - }, - { - "rshares": "275781765165", - "voter": "techslut" - }, - { - "rshares": "201191146755", - "voter": "jaybird" - }, - { - "rshares": "147751027662", - "voter": "slider2990" - }, - { - "rshares": "17630512753500", - "voter": "created" - }, - { - "rshares": "996704771", - "voter": "technoprogressiv" - }, - { - "rshares": "21651256890", - "voter": "mafeeva" - }, - { - "rshares": "31731719509", - "voter": "sebastianjago" - }, - { - "rshares": "4574218880222", - "voter": "tarazkp" - }, - { - "rshares": "1129944344", - "voter": "ihsan19" - }, - { - "rshares": "3190183950", - "voter": "sudutpandang" - }, - { - "rshares": "1879870849", - "voter": "nicewoody69" - }, - { - "rshares": "112182330285", - "voter": "markkujantunen" - }, - { - "rshares": "10904748435", - "voter": "evildeathcore" - }, - { - "rshares": "2755835346", - "voter": "yuslindwi" - }, - { - "rshares": "2850348152300", - "voter": "diggndeeper.com" - }, - { - "rshares": "176085690816", - "voter": "louisthomas" - }, - { - "rshares": "808597671", - "voter": "dapu" - }, - { - "rshares": "1915856351", - "voter": "freebornsociety" - }, - { - "rshares": "732510168", - "voter": "cryptophunk" - }, - { - "rshares": "2117427082", - "voter": "teachblogger" - }, - { - "rshares": "4601048689", - "voter": "ma1neevent" - }, - { - "rshares": "51460646846", - "voter": "zaragast" - }, - { - "rshares": "18779558655", - "voter": "htliao" - }, - { - "rshares": "13127917278", - "voter": "dune69" - }, - { - "rshares": "12083868279", - "voter": "arnel" - }, - { - "rshares": "116679123354", - "voter": "thenightflier" - }, - { - "rshares": "1920549347", - "voter": "mrstaf" - }, - { - "rshares": "2491769127", - "voter": "gmuxx" - }, - { - "rshares": "326877058471", - "voter": "drag33" - }, - { - "rshares": "34523038310", - "voter": "thethreehugs" - }, - { - "rshares": "92820281773", - "voter": "swelker101" - }, - { - "rshares": "9822198659", - "voter": "mys" - }, - { - "rshares": "74644040126", - "voter": "ironshield" - }, - { - "rshares": "4730183420", - "voter": "varunpinto" - }, - { - "rshares": "441574848498", - "voter": "isaria" - }, - { - "rshares": "1177491842", - "voter": "rycharde" - }, - { - "rshares": "21475693667", - "voter": "theywillkillyou" - }, - { - "rshares": "599795816", - "voter": "chuckyfucky" - }, - { - "rshares": "109123312072", - "voter": "stevelivingston" - }, - { - "rshares": "79461729251", - "voter": "necio" - }, - { - "rshares": "94366981987", - "voter": "elteamgordo" - }, - { - "rshares": "45618252572", - "voter": "schoolforsdg4" - }, - { - "rshares": "80156695985", - "voter": "djynn" - }, - { - "rshares": "68984794604", - "voter": "carolkean" - }, - { - "rshares": "1152884166062", - "voter": "giuatt07" - }, - { - "rshares": "1595705393729", - "voter": "galenkp" - }, - { - "rshares": "46539453729", - "voter": "swaraj" - }, - { - "rshares": "20363722035", - "voter": "freddbrito" - }, - { - "rshares": "46675022775", - "voter": "chrispy99" - }, - { - "rshares": "2127686774", - "voter": "howtostartablog" - }, - { - "rshares": "190822034152", - "voter": "dandesign86" - }, - { - "rshares": "50694607719", - "voter": "jayna" - }, - { - "rshares": "3811442156", - "voter": "whd" - }, - { - "rshares": "40323961455", - "voter": "deniskj" - }, - { - "rshares": "737341800", - "voter": "d-pend" - }, - { - "rshares": "8249340775", - "voter": "makrotheblack" - }, - { - "rshares": "188872932956", - "voter": "benedict08" - }, - { - "rshares": "2739763030", - "voter": "britcoins" - }, - { - "rshares": "46892332215", - "voter": "khoon" - }, - { - "rshares": "1825167953", - "voter": "st3llar" - }, - { - "rshares": "15319994890", - "voter": "otom" - }, - { - "rshares": "41549829932", - "voter": "kristyglas" - }, - { - "rshares": "78922791599", - "voter": "goldkey" - }, - { - "rshares": "5567581668", - "voter": "gooze" - }, - { - "rshares": "72817781958", - "voter": "drorion" - }, - { - "rshares": "680391811", - "voter": "sirdeza" - }, - { - "rshares": "1249903504", - "voter": "shitsignals" - }, - { - "rshares": "2581461262", - "voter": "attajuttjj" - }, - { - "rshares": "10332027639", - "voter": "dine77" - }, - { - "rshares": "2998970994", - "voter": "tykee" - }, - { - "rshares": "1063354716835", - "voter": "steemvote" - }, - { - "rshares": "152678027536", - "voter": "steempostitalia" - }, - { - "rshares": "18127091577", - "voter": "macchiata" - }, - { - "rshares": "14033993328", - "voter": "diana01" - }, - { - "rshares": "281127867144", - "voter": "investingpennies" - }, - { - "rshares": "16098792184", - "voter": "mamalikh13" - }, - { - "rshares": "65596584570", - "voter": "podnikatel" - }, - { - "rshares": "103428306035", - "voter": "shanibeer" - }, - { - "rshares": "27955689708", - "voter": "fionasfavourites" - }, - { - "rshares": "810735258544", - "voter": "onetin84" - }, - { - "rshares": "1216381674", - "voter": "nascimentocb" - }, - { - "rshares": "17311338819", - "voter": "felander" - }, - { - "rshares": "40503185451", - "voter": "elenasteem" - }, - { - "rshares": "8700891080", - "voter": "santigs" - }, - { - "rshares": "829557484", - "voter": "kromtar" - }, - { - "rshares": "24606972569", - "voter": "thelordsharvest" - }, - { - "rshares": "9123428458", - "voter": "kimzwarch" - }, - { - "rshares": "30097553082", - "voter": "olusolaemmanuel" - }, - { - "rshares": "41023836198", - "voter": "redouanemez" - }, - { - "rshares": "21155312641", - "voter": "onartbali" - }, - { - "rshares": "3270197745", - "voter": "nurhayati" - }, - { - "rshares": "1083217414", - "voter": "fbslo" - }, - { - "rshares": "49605340950", - "voter": "accelerator" - }, - { - "rshares": "18312687776", - "voter": "artonmysleeve" - }, - { - "rshares": "2220609728", - "voter": "hokkaido" - }, - { - "rshares": "3061241302", - "voter": "justinparke" - }, - { - "rshares": "48211747047", - "voter": "alinakot" - }, - { - "rshares": "9534138905", - "voter": "apasia.tech" - }, - { - "rshares": "1622603551", - "voter": "yogacoach" - }, - { - "rshares": "121994637572", - "voter": "rosatravels" - }, - { - "rshares": "199058457169", - "voter": "sorin.cristescu" - }, - { - "rshares": "1768604752", - "voter": "joe.public" - }, - { - "rshares": "153401997985", - "voter": "roleerob" - }, - { - "rshares": "3737204407", - "voter": "deathwing" - }, - { - "rshares": "1162297973", - "voter": "hillaryaa" - }, - { - "rshares": "333802000614", - "voter": "revisesociology" - }, - { - "rshares": "926795346", - "voter": "monita05" - }, - { - "rshares": "1562502524", - "voter": "walidchabir" - }, - { - "rshares": "713050035612", - "voter": "puncakbukit" - }, - { - "rshares": "14955438984", - "voter": "espoem" - }, - { - "rshares": "19740659130", - "voter": "dilimunanzar" - }, - { - "rshares": "666296583", - "voter": "steembet.asia" - }, - { - "rshares": "1779748815", - "voter": "acehnature" - }, - { - "rshares": "10240777266", - "voter": "afrikablr" - }, - { - "rshares": "14747345807", - "voter": "mcfarhat" - }, - { - "rshares": "66347219970", - "voter": "jlsplatts" - }, - { - "rshares": "2275646491", - "voter": "gvand" - }, - { - "rshares": "28786598198", - "voter": "enjieneer" - }, - { - "rshares": "731309421", - "voter": "maria.isaaccura" - }, - { - "rshares": "17858830445", - "voter": "gringo211985" - }, - { - "rshares": "11990345464", - "voter": "kobusu" - }, - { - "rshares": "25619543905", - "voter": "heidi71" - }, - { - "rshares": "145611089810", - "voter": "andywong31" - }, - { - "rshares": "90379682936", - "voter": "khaleelkazi" - }, - { - "rshares": "5064476227", - "voter": "stevejhuggett" - }, - { - "rshares": "81683276907", - "voter": "zoidsoft" - }, - { - "rshares": "967254332", - "voter": "enolife" - }, - { - "rshares": "1136025549", - "voter": "puggle" - }, - { - "rshares": "4379545571", - "voter": "princeso" - }, - { - "rshares": "1819444990", - "voter": "kimchi-king" - }, - { - "rshares": "12501797049", - "voter": "battebilly" - }, - { - "rshares": "1815742175", - "voter": "michaeljpsalazar" - }, - { - "rshares": "13303897628", - "voter": "caladan" - }, - { - "rshares": "11189494080", - "voter": "ronak10" - }, - { - "rshares": "662299825003", - "voter": "lays" - }, - { - "rshares": "5121165333", - "voter": "cryptotradingfr" - }, - { - "rshares": "27920370108", - "voter": "cizzo" - }, - { - "rshares": "245214500547", - "voter": "snook" - }, - { - "rshares": "192918249785", - "voter": "ybanezkim26" - }, - { - "rshares": "3861896037", - "voter": "legendarryll" - }, - { - "rshares": "24950723846", - "voter": "fknmayhem" - }, - { - "rshares": "10420544525", - "voter": "tradingideas" - }, - { - "rshares": "89142557557", - "voter": "emrebeyler" - }, - { - "rshares": "11668453471", - "voter": "senorcoconut" - }, - { - "rshares": "151681261357", - "voter": "xabi" - }, - { - "rshares": "3514191707", - "voter": "yulem" - }, - { - "rshares": "56797877740", - "voter": "hanen" - }, - { - "rshares": "11163839820", - "voter": "not-a-bird" - }, - { - "rshares": "2502643120", - "voter": "hrhmikelength" - }, - { - "rshares": "2496771515", - "voter": "berkaytekinsen" - }, - { - "rshares": "745516832", - "voter": "lmir1965" - }, - { - "rshares": "1152370049", - "voter": "steeminer4up" - }, - { - "rshares": "686169594", - "voter": "chintya" - }, - { - "rshares": "36660217086", - "voter": "itchyfeetdonica" - }, - { - "rshares": "19596339485", - "voter": "egotheist" - }, - { - "rshares": "4163718065", - "voter": "esaia.mystic" - }, - { - "rshares": "1380763034", - "voter": "funtraveller" - }, - { - "rshares": "6604103246", - "voter": "marcolino76" - }, - { - "rshares": "1735875617", - "voter": "elex17" - }, - { - "rshares": "60211671832", - "voter": "lyon89" - }, - { - "rshares": "10053774716", - "voter": "howiemac" - }, - { - "rshares": "8977002341", - "voter": "vladalexan" - }, - { - "rshares": "21259848340", - "voter": "willsaldeno" - }, - { - "rshares": "7027156684", - "voter": "baroen96" - }, - { - "rshares": "20117793586", - "voter": "ekonugraha" - }, - { - "rshares": "1840997453", - "voter": "hrhridoy" - }, - { - "rshares": "13160124327", - "voter": "mattniblock" - }, - { - "rshares": "1432299644", - "voter": "godlovermel25" - }, - { - "rshares": "4477231723", - "voter": "candyboy" - }, - { - "rshares": "545728053", - "voter": "subramanimur638" - }, - { - "rshares": "170728454580", - "voter": "apnigrich" - }, - { - "rshares": "4559476387", - "voter": "duke77" - }, - { - "rshares": "1602273962", - "voter": "baart" - }, - { - "rshares": "1027578541", - "voter": "jewel-lover" - }, - { - "rshares": "870296171", - "voter": "thedrewshow" - }, - { - "rshares": "85010878646", - "voter": "alexanderfluke" - }, - { - "rshares": "747741352", - "voter": "danielalbujas" - }, - { - "rshares": "1387837318", - "voter": "not-a-gamer" - }, - { - "rshares": "29308377587", - "voter": "neupanedipen" - }, - { - "rshares": "2589724029", - "voter": "yakubenko" - }, - { - "rshares": "726416491", - "voter": "korinkrafting" - }, - { - "rshares": "838834224", - "voter": "a1000carv" - }, - { - "rshares": "29564039182", - "voter": "bengy" - }, - { - "rshares": "20485571190", - "voter": "steemvault" - }, - { - "rshares": "19794395697", - "voter": "steem4all" - }, - { - "rshares": "127172178829", - "voter": "communitybank" - }, - { - "rshares": "92954261647", - "voter": "nealmcspadden" - }, - { - "rshares": "53226790752", - "voter": "utube" - }, - { - "rshares": "10789916731", - "voter": "womenempowerment" - }, - { - "rshares": "77753444353", - "voter": "belemo" - }, - { - "rshares": "29904199709", - "voter": "socialmediaseo" - }, - { - "rshares": "10863070157", - "voter": "mermaidvampire" - }, - { - "rshares": "56937112696", - "voter": "purefood" - }, - { - "rshares": "1269073488", - "voter": "motordrive" - }, - { - "rshares": "4587302733", - "voter": "fullcoverbetting" - }, - { - "rshares": "1839162527", - "voter": "jimcustodio" - }, - { - "rshares": "2327093970", - "voter": "vaansteam" - }, - { - "rshares": "33300150163", - "voter": "casberp" - }, - { - "rshares": "2614322468", - "voter": "philnewton" - }, - { - "rshares": "36147930955", - "voter": "sportscontest" - }, - { - "rshares": "35147869924", - "voter": "videosteemit" - }, - { - "rshares": "2202410623", - "voter": "gribouille" - }, - { - "rshares": "31085349715", - "voter": "lesshorrible" - }, - { - "rshares": "19306531207", - "voter": "itharagaian" - }, - { - "rshares": "10926878347", - "voter": "fieryfootprints" - }, - { - "rshares": "726006141", - "voter": "gocho94" - }, - { - "rshares": "159405697076", - "voter": "chronocrypto" - }, - { - "rshares": "3728085510", - "voter": "bishoppeter1" - }, - { - "rshares": "860035318334", - "voter": "lunaticpandora" - }, - { - "rshares": "930928396619", - "voter": "lemony-cricket" - }, - { - "rshares": "1122876394", - "voter": "gabyrutigliano" - }, - { - "rshares": "1104009572", - "voter": "danielpendrgraft" - }, - { - "rshares": "728038063", - "voter": "anabell.brett" - }, - { - "rshares": "7435332390", - "voter": "cadawg" - }, - { - "rshares": "950335702", - "voter": "gavinatorial" - }, - { - "rshares": "3181520770", - "voter": "oredebby" - }, - { - "rshares": "3384037152", - "voter": "gvincentjosephm" - }, - { - "rshares": "6718075394", - "voter": "felixgarciap" - }, - { - "rshares": "2169596446", - "voter": "sweetkathy" - }, - { - "rshares": "15983046627", - "voter": "nwjordan" - }, - { - "rshares": "23995974563", - "voter": "photohunt" - }, - { - "rshares": "773031990", - "voter": "photohunter1" - }, - { - "rshares": "1878025000", - "voter": "photohunter2" - }, - { - "rshares": "1181494117", - "voter": "photohunter4" - }, - { - "rshares": "1126842274", - "voter": "photohunter5" - }, - { - "rshares": "1541623627", - "voter": "pkocjan" - }, - { - "rshares": "4588870100", - "voter": "howtosteem" - }, - { - "rshares": "724688982", - "voter": "joluco123" - }, - { - "rshares": "-241237532", - "voter": "dr-frankenstein" - }, - { - "rshares": "156068403237", - "voter": "barge" - }, - { - "rshares": "19372107867", - "voter": "cyprianj" - }, - { - "rshares": "50165279330", - "voter": "cst90" - }, - { - "rshares": "52385409985", - "voter": "citimillz" - }, - { - "rshares": "15330273963", - "voter": "akpos" - }, - { - "rshares": "144402980359", - "voter": "whack.science" - }, - { - "rshares": "725984718", - "voter": "jdarkmaxter" - }, - { - "rshares": "89335146900", - "voter": "rubencress" - }, - { - "rshares": "54101281487", - "voter": "almi" - }, - { - "rshares": "650385635", - "voter": "polashsen" - }, - { - "rshares": "5010302937", - "voter": "homeginkit" - }, - { - "rshares": "814868501", - "voter": "sardar-sani" - }, - { - "rshares": "904866150", - "voter": "faglerabbi" - }, - { - "rshares": "104986456944", - "voter": "superlotto" - }, - { - "rshares": "866221300424", - "voter": "leeyh" - }, - { - "rshares": "523288594518", - "voter": "backinblackdevil" - }, - { - "rshares": "3160422278", - "voter": "vargart" - }, - { - "rshares": "4173039794", - "voter": "frassman" - }, - { - "rshares": "8701164977", - "voter": "retinox" - }, - { - "rshares": "8422700311", - "voter": "tubcat" - }, - { - "rshares": "72175329913", - "voter": "simplymike" - }, - { - "rshares": "1851696916", - "voter": "inedido" - }, - { - "rshares": "38341877558", - "voter": "khaimi" - }, - { - "rshares": "3463226824", - "voter": "wisejg" - }, - { - "rshares": "55650123873", - "voter": "lionsuit" - }, - { - "rshares": "1670243119", - "voter": "kymio" - }, - { - "rshares": "21503876143", - "voter": "movingman" - }, - { - "rshares": "1499938456", - "voter": "sunshinebear" - }, - { - "rshares": "1292636660", - "voter": "beleg" - }, - { - "rshares": "13375622153", - "voter": "bestboom" - }, - { - "rshares": "82349348812", - "voter": "ronaldoavelino" - }, - { - "rshares": "11412494589", - "voter": "goldvault" - }, - { - "rshares": "1857953049", - "voter": "virgo27" - }, - { - "rshares": "229426778733", - "voter": "dera123" - }, - { - "rshares": "5384108899", - "voter": "jan23com" - }, - { - "rshares": "1101897289051", - "voter": "jkramer" - }, - { - "rshares": "131202269665", - "voter": "derangedvisions" - }, - { - "rshares": "3732233291", - "voter": "vaderetro" - }, - { - "rshares": "20335587614", - "voter": "wolfhart" - }, - { - "rshares": "29029919207", - "voter": "tesmoforia" - }, - { - "rshares": "7378884045", - "voter": "yameen" - }, - { - "rshares": "34246495162", - "voter": "lucious" - }, - { - "rshares": "33797192128", - "voter": "sajannair" - }, - { - "rshares": "13878726872", - "voter": "freddio" - }, - { - "rshares": "1418935737", - "voter": "jemmanuel" - }, - { - "rshares": "2991168869", - "voter": "bookoons" - }, - { - "rshares": "1183346029350", - "voter": "lordbutterfly" - }, - { - "rshares": "25689525172", - "voter": "z3ll" - }, - { - "rshares": "15769135641", - "voter": "allover" - }, - { - "rshares": "3393902285", - "voter": "choco11oreo11" - }, - { - "rshares": "1022673060", - "voter": "imcore" - }, - { - "rshares": "9388782637", - "voter": "yo-yo" - }, - { - "rshares": "1945147286", - "voter": "luiscalzadilla" - }, - { - "rshares": "5097337629", - "voter": "littleboys-faiz" - }, - { - "rshares": "754966703", - "voter": "capnsostre" - }, - { - "rshares": "843104142", - "voter": "feedmytwi" - }, - { - "rshares": "24861494227", - "voter": "superlao" - }, - { - "rshares": "972677607", - "voter": "glodniwiedzy" - }, - { - "rshares": "1305725356", - "voter": "lemcriq" - }, - { - "rshares": "54131483434", - "voter": "jancharlest" - }, - { - "rshares": "8320730992", - "voter": "meins0815" - }, - { - "rshares": "10511735457", - "voter": "diabonua" - }, - { - "rshares": "77661820243", - "voter": "pladozero" - }, - { - "rshares": "764713017", - "voter": "crimo" - }, - { - "rshares": "289604451172", - "voter": "nateaguila" - }, - { - "rshares": "3917071709", - "voter": "danbiohackingman" - }, - { - "rshares": "9053987449", - "voter": "rachelleignacio" - }, - { - "rshares": "147719388753", - "voter": "steem-tube" - }, - { - "rshares": "7658514035", - "voter": "archisteem" - }, - { - "rshares": "22534037368", - "voter": "motherofalegend" - }, - { - "rshares": "3561027712", - "voter": "mikemoi" - }, - { - "rshares": "3480176759", - "voter": "marcuz" - }, - { - "rshares": "880997887", - "voter": "rustam-02" - }, - { - "rshares": "9050856436", - "voter": "wolfofnostreet" - }, - { - "rshares": "27954518090", - "voter": "rainieraveradio" - }, - { - "rshares": "108111004693", - "voter": "uche-nna" - }, - { - "rshares": "4303556166", - "voter": "luminaryhmo" - }, - { - "rshares": "544110966", - "voter": "ibook-ishare" - }, - { - "rshares": "1661903576099", - "voter": "solarwarrior" - }, - { - "rshares": "2163598126", - "voter": "nfaith" - }, - { - "rshares": "28720257965", - "voter": "mdaminulislam" - }, - { - "rshares": "794958208", - "voter": "milayosawa" - }, - { - "rshares": "21292497110", - "voter": "samvan" - }, - { - "rshares": "56015822319", - "voter": "melissaofficial" - }, - { - "rshares": "653133447", - "voter": "sunnya" - }, - { - "rshares": "118162889967", - "voter": "citizendog" - }, - { - "rshares": "2021882562", - "voter": "swisswitness" - }, - { - "rshares": "208973748015", - "voter": "fitat40" - }, - { - "rshares": "2914350524", - "voter": "lil-splatts" - }, - { - "rshares": "0", - "voter": "inteligente" - }, - { - "rshares": "819509016", - "voter": "moneybaby" - }, - { - "rshares": "2244135021", - "voter": "bjornb" - }, - { - "rshares": "267723437492", - "voter": "blewitt" - }, - { - "rshares": "1487384751", - "voter": "nurulafsar03" - }, - { - "rshares": "13261948931", - "voter": "abcor" - }, - { - "rshares": "982656709", - "voter": "noobster" - }, - { - "rshares": "2065298058", - "voter": "enormeanimal" - }, - { - "rshares": "565807870", - "voter": "zephyrepic" - }, - { - "rshares": "559813926", - "voter": "chrome.citizen" - }, - { - "rshares": "4133829079", - "voter": "therealnigerianp" - }, - { - "rshares": "440715295", - "voter": "abduljalill" - }, - { - "rshares": "12066691027", - "voter": "yestermorrow" - }, - { - "rshares": "42191990819", - "voter": "thehive" - }, - { - "rshares": "6352794660", - "voter": "maybedog" - }, - { - "rshares": "1576351071", - "voter": "faady92" - }, - { - "rshares": "5115515062", - "voter": "littleshadow" - }, - { - "rshares": "716340801", - "voter": "natltreasury" - }, - { - "rshares": "1244268321", - "voter": "julian2013" - }, - { - "rshares": "43993587788", - "voter": "dlike" - }, - { - "rshares": "9543632898", - "voter": "cryptoyzzy" - }, - { - "rshares": "725034266", - "voter": "escfrancis" - }, - { - "rshares": "2779303944", - "voter": "gorbisan" - }, - { - "rshares": "1704843348", - "voter": "joseph6232" - }, - { - "rshares": "3157797509", - "voter": "emaillisahere" - }, - { - "rshares": "3763800411", - "voter": "jokinmenipieleen" - }, - { - "rshares": "630084385", - "voter": "buzzbee" - }, - { - "rshares": "6925008227", - "voter": "kosikredki" - }, - { - "rshares": "47413988202", - "voter": "engrave" - }, - { - "rshares": "2262912620", - "voter": "deantonio" - }, - { - "rshares": "2450582471", - "voter": "shepherd-stories" - }, - { - "rshares": "1565580100", - "voter": "sunit" - }, - { - "rshares": "962799638", - "voter": "chike4545" - }, - { - "rshares": "954058760", - "voter": "lfie28" - }, - { - "rshares": "2200558074", - "voter": "cercle" - }, - { - "rshares": "6935831311", - "voter": "emma-hs" - }, - { - "rshares": "3869796402", - "voter": "caoimhin" - }, - { - "rshares": "34800322942", - "voter": "a-bot" - }, - { - "rshares": "42458776089", - "voter": "twotoedsloth" - }, - { - "rshares": "1368704894", - "voter": "bobby.madagascar" - }, - { - "rshares": "1431185110", - "voter": "djtrucker" - }, - { - "rshares": "45637985", - "voter": "laissez-faire" - }, - { - "rshares": "30379259558", - "voter": "voter003" - }, - { - "rshares": "654456242", - "voter": "steemituplife" - }, - { - "rshares": "41432667456", - "voter": "marshalmugi" - }, - { - "rshares": "1621524760", - "voter": "podg3" - }, - { - "rshares": "671234012", - "voter": "juliettana" - }, - { - "rshares": "950527979", - "voter": "steemwhalepower" - }, - { - "rshares": "2898594848", - "voter": "silverkey" - }, - { - "rshares": "12470654756", - "voter": "silvervault" - }, - { - "rshares": "4704434968", - "voter": "misstaken" - }, - { - "rshares": "784527454", - "voter": "imammudarifqi" - }, - { - "rshares": "2442567213", - "voter": "l-singclear" - }, - { - "rshares": "6718646830", - "voter": "anroja" - }, - { - "rshares": "5177432846", - "voter": "kuku-splatts" - }, - { - "rshares": "1972446361", - "voter": "stay-active" - }, - { - "rshares": "38447124624", - "voter": "merlin7" - }, - { - "rshares": "1499436164", - "voter": "curart38" - }, - { - "rshares": "1952112220", - "voter": "thrasher666" - }, - { - "rshares": "67188003934", - "voter": "priyanarc" - }, - { - "rshares": "496740003", - "voter": "everyoung" - }, - { - "rshares": "340578510336", - "voter": "milky-concrete" - }, - { - "rshares": "809680758", - "voter": "florino" - }, - { - "rshares": "20260441143", - "voter": "followjohngalt" - }, - { - "rshares": "1808431709", - "voter": "carbodexkim" - }, - { - "rshares": "1471444852", - "voter": "daisybuzz" - }, - { - "rshares": "1871616252", - "voter": "jussbren" - }, - { - "rshares": "11207475062", - "voter": "cakemonster" - }, - { - "rshares": "1683296028", - "voter": "themightysquid" - }, - { - "rshares": "1051362432", - "voter": "smonia" - }, - { - "rshares": "6510109981", - "voter": "dijin" - }, - { - "rshares": "2794689934", - "voter": "shyant" - }, - { - "rshares": "10761964058", - "voter": "brucutu" - }, - { - "rshares": "1815408915", - "voter": "martinstomisin" - }, - { - "rshares": "30381747519", - "voter": "tigerrkg" - }, - { - "rshares": "21503769535", - "voter": "anmitsu" - }, - { - "rshares": "1245479924", - "voter": "smon-fan" - }, - { - "rshares": "16551541591", - "voter": "kork75" - }, - { - "rshares": "18498360671", - "voter": "blind-spot" - }, - { - "rshares": "1292498650", - "voter": "mikijam" - }, - { - "rshares": "14249752895", - "voter": "steemstorage" - }, - { - "rshares": "1492292811", - "voter": "fire451" - }, - { - "rshares": "859817366", - "voter": "starfighter" - }, - { - "rshares": "782478678", - "voter": "seekingalpha" - }, - { - "rshares": "959418114", - "voter": "cryptoninja.guru" - }, - { - "rshares": "1880835333", - "voter": "breakforbook" - }, - { - "rshares": "665080498", - "voter": "tr777" - }, - { - "rshares": "548359765", - "voter": "sm-jewel" - }, - { - "rshares": "15562221049", - "voter": "delabo" - }, - { - "rshares": "522632494", - "voter": "tr77" - }, - { - "rshares": "719248169", - "voter": "jtm.support" - }, - { - "rshares": "552122851", - "voter": "smoner" - }, - { - "rshares": "772420611", - "voter": "smonian" - }, - { - "rshares": "1165956305", - "voter": "monsterguru" - }, - { - "rshares": "1194580864", - "voter": "kaux" - }, - { - "rshares": "981082631", - "voter": "carrycarrie" - }, - { - "rshares": "697289012", - "voter": "honeygirl" - }, - { - "rshares": "672171159", - "voter": "permaculturedude" - }, - { - "rshares": "888450984319", - "voter": "agent14" - }, - { - "rshares": "2672589668", - "voter": "meins0816" - }, - { - "rshares": "15842622998", - "voter": "smon-joa" - }, - { - "rshares": "530275049", - "voter": "jjangjjanggirl" - }, - { - "rshares": "4701214538", - "voter": "scoopstakes" - }, - { - "rshares": "3103672249", - "voter": "nanzo-snaps" - }, - { - "rshares": "53557868090", - "voter": "rem-steem" - }, - { - "rshares": "22455734751", - "voter": "curationvoter" - }, - { - "rshares": "8045685570", - "voter": "curationhelper" - }, - { - "rshares": "1507044642", - "voter": "archisteem-cn" - }, - { - "rshares": "24101842924", - "voter": "leeyh2" - }, - { - "rshares": "48569042500", - "voter": "thelogicaldude" - }, - { - "rshares": "540381904", - "voter": "smonbear" - }, - { - "rshares": "899375171", - "voter": "adamthedude" - }, - { - "rshares": "1097432697", - "voter": "denizcakmak" - }, - { - "rshares": "1112259560", - "voter": "yoyo-jp" - }, - { - "rshares": "10972311689", - "voter": "wolffeys" - }, - { - "rshares": "14868941223", - "voter": "kggymlife" - }, - { - "rshares": "479012309541", - "voter": "ttg" - }, - { - "rshares": "7597984887", - "voter": "wizzycats" - }, - { - "rshares": "931961791", - "voter": "bitcoinator" - }, - { - "rshares": "534609215", - "voter": "theinspiration" - }, - { - "rshares": "2834637776", - "voter": "maxsieg" - }, - { - "rshares": "535105624", - "voter": "epic4chris" - }, - { - "rshares": "1280363327", - "voter": "rocketpower" - }, - { - "rshares": "34876253585", - "voter": "issymarie" - }, - { - "rshares": "19957137040", - "voter": "maryincryptoland" - }, - { - "rshares": "5297617117", - "voter": "actifit-devil" - }, - { - "rshares": "1179783238", - "voter": "samujaeger" - }, - { - "rshares": "901858747", - "voter": "bigmoneyman" - }, - { - "rshares": "11692995318", - "voter": "yonnathang" - }, - { - "rshares": "37245198", - "voter": "blockchainpeople" - }, - { - "rshares": "10558427869", - "voter": "herbncrypto" - }, - { - "rshares": "4079958017", - "voter": "leedsunited" - }, - { - "rshares": "165849278651", - "voter": "monsterjamgold" - }, - { - "rshares": "174672049523", - "voter": "star.lord" - }, - { - "rshares": "638048642", - "voter": "plebtv" - }, - { - "rshares": "800190292", - "voter": "williamdixz" - }, - { - "rshares": "5961542344", - "voter": "gulf41" - }, - { - "rshares": "314826557911", - "voter": "scholaris" - }, - { - "rshares": "15448100790", - "voter": "kayda-ventures" - }, - { - "rshares": "41407265944", - "voter": "banvie" - }, - { - "rshares": "8398302998", - "voter": "socialbot" - }, - { - "rshares": "576044010", - "voter": "ssc-token" - }, - { - "rshares": "2884284244", - "voter": "solomon.grundy" - }, - { - "rshares": "16619354362", - "voter": "bitsharesorg" - }, - { - "rshares": "1668357963", - "voter": "elosolezama" - }, - { - "rshares": "149144961", - "voter": "tradingideas2" - }, - { - "rshares": "39307035570", - "voter": "ocd-accountant" - }, - { - "rshares": "28058521417", - "voter": "plankton.token" - }, - { - "rshares": "1089817195", - "voter": "erikaliberf" - }, - { - "rshares": "2749181445", - "voter": "phillarecette" - }, - { - "rshares": "642108376", - "voter": "iktisat" - }, - { - "rshares": "3141450579", - "voter": "iamjohn" - }, - { - "rshares": "546554353", - "voter": "suigener1s" - }, - { - "rshares": "518171686", - "voter": "vxc" - }, - { - "rshares": "2966339023", - "voter": "leeyh3" - }, - { - "rshares": "9897117550", - "voter": "psyo" - }, - { - "rshares": "687564661", - "voter": "kgswallet" - }, - { - "rshares": "1496820548", - "voter": "milu-the-dog" - }, - { - "rshares": "15214433948", - "voter": "yeswecan" - }, - { - "rshares": "52267498974", - "voter": "asmr.tist" - }, - { - "rshares": "1263235456", - "voter": "kgcoin" - }, - { - "rshares": "1255651874", - "voter": "triplea.bot" - }, - { - "rshares": "93377391562", - "voter": "steem.leo" - }, - { - "rshares": "0", - "voter": "tradingideas.spt" - }, - { - "rshares": "939000219", - "voter": "pal-isaria" - }, - { - "rshares": "843222538", - "voter": "leo.curator" - }, - { - "rshares": "2497490278", - "voter": "freedomring" - }, - { - "rshares": "2434086534", - "voter": "hyborian-strain" - }, - { - "rshares": "1370863218", - "voter": "leeyh5" - }, - { - "rshares": "2829616528", - "voter": "freddio.sport" - }, - { - "rshares": "62699549309", - "voter": "coffeea.token" - }, - { - "rshares": "5180069746", - "voter": "babytarazkp" - }, - { - "rshares": "20218777714", - "voter": "asteroids" - }, - { - "rshares": "5013310525", - "voter": "mapxv" - }, - { - "rshares": "209537120", - "voter": "tina-tina" - }, - { - "rshares": "1030285088", - "voter": "tokensink" - }, - { - "rshares": "6504638022", - "voter": "thranax" - }, - { - "rshares": "317588839", - "voter": "happiness19" - }, - { - "rshares": "16176116512", - "voter": "knightsunited" - }, - { - "rshares": "2264867", - "voter": "gdhaetae" - }, - { - "rshares": "1521588696", - "voter": "colorcareer" - }, - { - "rshares": "7275320704", - "voter": "fucanglong" - }, - { - "rshares": "605634318", - "voter": "one.life" - }, - { - "rshares": "28099911434", - "voter": "acta" - }, - { - "rshares": "19478291875", - "voter": "the-table" - }, - { - "rshares": "426222914", - "voter": "pukeko" - }, - { - "rshares": "5576671054", - "voter": "rosana6" - }, - { - "rshares": "4132848453", - "voter": "cardtrader" - }, - { - "rshares": "20405976643", - "voter": "maxuvd" - }, - { - "rshares": "2672250790", - "voter": "debtfreein2" - }, - { - "rshares": "1764958246", - "voter": "thehouse" - }, - { - "rshares": "8137814433", - "voter": "teresa.yaiyai" - }, - { - "rshares": "814504740", - "voter": "dnflsms" - }, - { - "rshares": "153254005002", - "voter": "urtrailer" - }, - { - "rshares": "31939030771", - "voter": "hone.heke" - }, - { - "rshares": "507229223", - "voter": "jessy22" - }, - { - "rshares": "1853155546", - "voter": "freedomteam2019" - }, - { - "rshares": "653824244", - "voter": "freddlm" - }, - { - "rshares": "10504005805", - "voter": "writertales" - }, - { - "rshares": "2908554322", - "voter": "coinlogic.online" - }, - { - "rshares": "93909769", - "voter": "akpofure" - }, - { - "rshares": "1061727689", - "voter": "monstervoter" - }, - { - "rshares": "2673334464", - "voter": "mein2070" - }, - { - "rshares": "6571102576", - "voter": "bilpcoinrecords" - }, - { - "rshares": "98670610365", - "voter": "silverquest" - }, - { - "rshares": "1068448513", - "voter": "bilpcoin.pay" - }, - { - "rshares": "19864504390", - "voter": "freemotherearth" - }, - { - "rshares": "188872595", - "voter": "keep-keep" - }, - { - "rshares": "0", - "voter": "detetive" - }, - { - "rshares": "0", - "voter": "gerbo" - }, - { - "rshares": "8223844552", - "voter": "honeychip" - }, - { - "rshares": "2452218885", - "voter": "steemlondon" - }, - { - "rshares": "30108280934", - "voter": "splatts" - }, - { - "rshares": "1061072682", - "voter": "galenkp.aus" - }, - { - "rshares": "4904413278", - "voter": "gmlrecordz" - }, - { - "rshares": "874376278", - "voter": "keepit2" - }, - { - "rshares": "10670444838", - "voter": "simply2koool" - }, - { - "rshares": "1141020070", - "voter": "ribary" - }, - { - "rshares": "688663397", - "voter": "onestop" - }, - { - "rshares": "1737077686", - "voter": "kgsupport" - }, - { - "rshares": "4347969297", - "voter": "bilpcoinbpc" - }, - { - "rshares": "21227190770", - "voter": "mice-k" - }, - { - "rshares": "307147579", - "voter": "bela29" - }, - { - "rshares": "938152750", - "voter": "rahat67" - }, - { - "rshares": "169139226", - "voter": "abu.hair" - }, - { - "rshares": "1755701392", - "voter": "curamax" - }, - { - "rshares": "898413101", - "voter": "bib15hash" - }, - { - "rshares": "9094708399", - "voter": "asimpleman" - }, - { - "rshares": "6386652532", - "voter": "drew0" - }, - { - "rshares": "1621787945", - "voter": "tommys.shop" - }, - { - "rshares": "693225919", - "voter": "steemcityrewards" - }, - { - "rshares": "7352567919", - "voter": "groove-logic" - }, - { - "rshares": "835036185", - "voter": "dpend.active" - }, - { - "rshares": "5177882760", - "voter": "adamdabeast" - }, - { - "rshares": "7553984018", - "voter": "shinoxl" - }, - { - "rshares": "2149159917", - "voter": "fengchao" - }, - { - "rshares": "564193314", - "voter": "hivewaves" - }, - { - "rshares": "3072625809", - "voter": "hivebuzz" - }, - { - "rshares": "2315380726", - "voter": "hive-naija" - }, - { - "rshares": "335968049208", - "voter": "hiveyoda" - }, - { - "rshares": "27005594550", - "voter": "creativemary" - }, - { - "rshares": "240968576735", - "voter": "reggaejahm" - }, - { - "rshares": "387720555688", - "voter": "softworld" - }, - { - "rshares": "9513757314", - "voter": "polish.hive" - }, - { - "rshares": "10681032766", - "voter": "velinov86" - }, - { - "rshares": "1036252336", - "voter": "cryptolemon2" - }, - { - "rshares": "793110575", - "voter": "hivexperiment" - }, - { - "rshares": "923571084", - "voter": "hjchilb" - }, - { - "rshares": "88336428015", - "voter": "dcityrewards" - }, - { - "rshares": "4325722369", - "voter": "maitt87" - }, - { - "rshares": "5025994367", - "voter": "paprik" - }, - { - "rshares": "1454750246", - "voter": "paulman" - }, - { - "rshares": "1317216287", - "voter": "ninnu" - }, - { - "rshares": "16113465804", - "voter": "nakobia" - }, - { - "rshares": "170437530645", - "voter": "ghaazi" - }, - { - "rshares": "384059632", - "voter": "emrysjobber" - }, - { - "rshares": "3845012010", - "voter": "weloveart" - }, - { - "rshares": "322853671656", - "voter": "ronavel" - }, - { - "rshares": "998341743709", - "voter": "kingfadino" - }, - { - "rshares": "799599732", - "voter": "jsalvage" - }, - { - "rshares": "88713565424", - "voter": "hivecur" - }, - { - "rshares": "0", - "voter": "pranay5073" - }, - { - "rshares": "2859630105", - "voter": "wristwatch12" - }, - { - "rshares": "549936369229", - "voter": "jelly13" - }, - { - "rshares": "1530871089", - "voter": "docjulien" - }, - { - "rshares": "0", - "voter": "dukica11234" - }, - { - "rshares": "2537700176", - "voter": "w-splatts" - }, - { - "rshares": "0", - "voter": "mutabor78" - }, - { - "rshares": "750000000", - "voter": "ruddles" - }, - { - "rshares": "741388989", - "voter": "hivecur2" - }, - { - "rshares": "0", - "voter": "chaplintini" - } + "links": [ + "http://SteemTools.com", + "http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png" ], - "author": "acidyo", - "author_payout_value": "0.000 HBD", - "author_reputation": 80.49, - "author_role": "mod", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "After way more attempts than I'd like to admit I finally managed to get things _rolling_ the right way. My record before this was 25 billion. Before I start talking about the run, if anyone is interested in playing this, you can download \"Pinball FX3\" on Steam and you need to purchase a DLC with the Attack from Mars to play it but there is a test version of all machines that anyone can try. \n\nhttps://youtu.be/DWyT4viqLxQ\n\nLately I've been trying this tactic where I try and get a multiball or total annihilation going before attacking the ship in the middle to get the city saved. With each city it requires more hits and the most dangerous part is striking the middle as it often likes to go down between the flippers. What I've learned is that using the right flipper has the most success rate but having many balls such as in multiball or total annihilation naturally you get more attempts and can afford to lose a few.\n\nI had a great run here and it was the first time I managed to get \"ruler of the universe\", one thing I learned was that you could still get more free balls in the late game which is something I didn't expect so curious to find out how many and how often they appear if I ever get this good of a run again.\n\nThe world record stands at 850 billion so my attempt here to reach 66 billion was not too shabby if I may say so. A few very noob losses of balls I could've avoided and I really need to check the settings to see if the tilt function can work in any other way than it does right now cause I've given up on using it cause it never saves me.\n\nAnother note, I haven't on purpose upgraded anything in the game (gaining xp allows you to upgrade certain things like more points on the bouncers in the top or longer \"ball saved\" time if it gets lost soon after starting a new ball.) I wanted to keep it at the basics in case that's what counts world records only but maybe I should check under what kind of rules they do it. \n\nAnyway, in this attempt I happened to be listening to Spotify so most of the songs in the background are of [Jamule](https://youtu.be/zbQJ796kfJM) (I'm really into deutschrap lately).\n\n___\n\nhttps://images.hive.blog/640x0/https://files.peakd.com/file/peakd-hive/hiddenblade/IhaMpvWL-acid20plays-.jpg", - "category": "hive-140217", - "children": 9, - "community": "hive-140217", - "community_title": "Hive Gaming", - "created": "2020-07-07T04:14:15", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://images.hive.blog/640x0/https://files.peakd.com/file/peakd-hive/hiddenblade/IhaMpvWL-acid20plays-.jpg" - ], - "links": [ - "https://youtu.be/zbQJ796kfJM" - ], - "tags": [ - "pinball", - "attackfrommars", - "afm", - "newrecord", - "gaming" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 104997255046480, - "payout": 42.475, - "payout_at": "2020-07-14T04:14:15", - "pending_payout_value": "42.475 HBD", - "percent_steem_dollars": 10000, - "permlink": "acid-plays-attack-from-mars-new-personal-record-no-tilt", - "post_id": 86927207, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 633 - }, - "title": "[Acid Plays] Attack from Mars - New personal record [no tilt]", - "updated": "2020-07-07T04:14:15", - "url": "/hive-140217/@acidyo/acid-plays-attack-from-mars-new-personal-record-no-tilt" - }, - { - "active_votes": [ - { - "rshares": "96205009679", - "voter": "tombstone" - }, - { - "rshares": "656011815343", - "voter": "roelandp" - }, - { - "rshares": "5492402355", - "voter": "matt-a" - }, - { - "rshares": "63352623332", - "voter": "arcange" - }, - { - "rshares": "140358913682", - "voter": "fiveboringgames" - }, - { - "rshares": "1614123569", - "voter": "raphaelle" - }, - { - "rshares": "306636981272", - "voter": "originate" - }, - { - "rshares": "1669079977", - "voter": "bestofreddit" - }, - { - "rshares": "37396860285", - "voter": "steemyoda" - }, - { - "rshares": "8380175150", - "voter": "cardboard" - }, - { - "rshares": "243596431779", - "voter": "detlev" - }, - { - "rshares": "4903534746", - "voter": "ma1neevent" - }, - { - "rshares": "1042359254", - "voter": "activate.alpha" - }, - { - "rshares": "2075476794", - "voter": "kennyroy" - }, - { - "rshares": "34605052386", - "voter": "mys" - }, - { - "rshares": "70253682609", - "voter": "ironshield" - }, - { - "rshares": "9565348323", - "voter": "arrliinn" - }, - { - "rshares": "19273960306", - "voter": "mdosev" - }, - { - "rshares": "25667584464", - "voter": "jayna" - }, - { - "rshares": "13409528135", - "voter": "whd" - }, - { - "rshares": "10809811619", - "voter": "d-pend" - }, - { - "rshares": "4234431142", - "voter": "dante31" - }, - { - "rshares": "1232085678", - "voter": "rafalski" - }, - { - "rshares": "1551319624663", - "voter": "howo" - }, - { - "rshares": "6223612242293", - "voter": "ocd" - }, - { - "rshares": "1021261783183", - "voter": "steemvote" - }, - { - "rshares": "3443624331", - "voter": "macchiata" - }, - { - "rshares": "8805698319", - "voter": "santigs" - }, - { - "rshares": "9107504514", - "voter": "kimzwarch" - }, - { - "rshares": "41707909681", - "voter": "redouanemez" - }, - { - "rshares": "5696583422", - "voter": "saltiberra" - }, - { - "rshares": "21561072888", - "voter": "fbslo" - }, - { - "rshares": "3160533499", - "voter": "justinparke" - }, - { - "rshares": "4391954379381", - "voter": "therealwolf" - }, - { - "rshares": "13505006055", - "voter": "jlsplatts" - }, - { - "rshares": "5725454433", - "voter": "martusamak" - }, - { - "rshares": "2253256858", - "voter": "divinekids" - }, - { - "rshares": "6902232659", - "voter": "hanggggbeeee" - }, - { - "rshares": "48033535230", - "voter": "pataty69" - }, - { - "rshares": "1001128511", - "voter": "liverpool-fan" - }, - { - "rshares": "318148636114", - "voter": "eonwarped" - }, - { - "rshares": "1802379015428", - "voter": "postpromoter" - }, - { - "rshares": "12094099699", - "voter": "mejustandrew" - }, - { - "rshares": "51859294795", - "voter": "sankysanket18" - }, - { - "rshares": "6294434889", - "voter": "dorada" - }, - { - "rshares": "7068356665", - "voter": "gtrussi" - }, - { - "rshares": "1654204507", - "voter": "lordnigel" - }, - { - "rshares": "5981733732", - "voter": "tcpaikano" - }, - { - "rshares": "899198825475", - "voter": "smartsteem" - }, - { - "rshares": "24382062344", - "voter": "mytechtrail" - }, - { - "rshares": "5490466845", - "voter": "itchyfeetdonica" - }, - { - "rshares": "908456355", - "voter": "godlovermel25" - }, - { - "rshares": "2311014439", - "voter": "tomatom" - }, - { - "rshares": "3126933051", - "voter": "elbrava" - }, - { - "rshares": "9781259629", - "voter": "gabrielatravels" - }, - { - "rshares": "24784681500", - "voter": "neupanedipen" - }, - { - "rshares": "1398608360", - "voter": "chrismadcboy2016" - }, - { - "rshares": "40148173595", - "voter": "warnas" - }, - { - "rshares": "623791350", - "voter": "debilog" - }, - { - "rshares": "182767308035", - "voter": "ocd-witness" - }, - { - "rshares": "1239913510", - "voter": "ericburgoyne" - }, - { - "rshares": "35337862573", - "voter": "bigtom13" - }, - { - "rshares": "412814796765", - "voter": "takowi" - }, - { - "rshares": "3408567171", - "voter": "royfletcher" - }, - { - "rshares": "1503387639", - "voter": "russellstockley" - }, - { - "rshares": "6074963732", - "voter": "forester-joe" - }, - { - "rshares": "1143825309", - "voter": "tatylayla" - }, - { - "rshares": "1535914243", - "voter": "cruisin" - }, - { - "rshares": "27880093936", - "voter": "miroslavrc" - }, - { - "rshares": "4595762738", - "voter": "beleg" - }, - { - "rshares": "4524264309", - "voter": "flaxz" - }, - { - "rshares": "2589247632", - "voter": "racibo" - }, - { - "rshares": "170249849", - "voter": "angelinafx" - }, - { - "rshares": "71942385772", - "voter": "indigoocean" - }, - { - "rshares": "2143021807", - "voter": "crystalhuman" - }, - { - "rshares": "77574373349", - "voter": "pladozero" - }, - { - "rshares": "1452351838", - "voter": "linco" - }, - { - "rshares": "844155662", - "voter": "yougotavote" - }, - { - "rshares": "172084248036", - "voter": "suonghuynh" - }, - { - "rshares": "19356224164416", - "voter": "ocdb" - }, - { - "rshares": "6150772004", - "voter": "sadbear" - }, - { - "rshares": "1369862660", - "voter": "joaoprobst" - }, - { - "rshares": "927577388", - "voter": "jesusmedit" - }, - { - "rshares": "5290694033", - "voter": "dalz" - }, - { - "rshares": "2282878478", - "voter": "dronegraphica" - }, - { - "rshares": "6685762493", - "voter": "daan007" - }, - { - "rshares": "1283790836", - "voter": "nancybmp" - }, - { - "rshares": "4417555775", - "voter": "julian2013" - }, - { - "rshares": "18437674795", - "voter": "gorbisan" - }, - { - "rshares": "5630827319", - "voter": "mobi72" - }, - { - "rshares": "8560274314", - "voter": "munhenhos" - }, - { - "rshares": "8119617", - "voter": "laissez-faire" - }, - { - "rshares": "1602693750", - "voter": "pushpedal" - }, - { - "rshares": "8087002075", - "voter": "bettervision" - }, - { - "rshares": "1138900888", - "voter": "general.guy" - }, - { - "rshares": "9238123924", - "voter": "edriseur" - }, - { - "rshares": "3077352734", - "voter": "kork75" - }, - { - "rshares": "2444163332", - "voter": "toycard" - }, - { - "rshares": "3685021698", - "voter": "bolachasmonster" - }, - { - "rshares": "10128494291", - "voter": "cryptofiloz" - }, - { - "rshares": "2999685376", - "voter": "smalltall" - }, - { - "rshares": "40394013883", - "voter": "pfdm" - }, - { - "rshares": "4944012829", - "voter": "squareonefarms" - }, - { - "rshares": "19165667204", - "voter": "maryincryptoland" - }, - { - "rshares": "29845578002", - "voter": "epicdice" - }, - { - "rshares": "4899199153", - "voter": "yiobri" - }, - { - "rshares": "6084514110", - "voter": "ocd-accountant" - }, - { - "rshares": "2925741311", - "voter": "leighscotford" - }, - { - "rshares": "12050627776", - "voter": "ph1102" - }, - { - "rshares": "933408336", - "voter": "maddogmike" - }, - { - "rshares": "3105627399", - "voter": "iamraincrystal" - }, - { - "rshares": "634867830", - "voter": "elianaicgomes" - }, - { - "rshares": "20772563257", - "voter": "bradleyarrow" - }, - { - "rshares": "35824954569", - "voter": "sandymeyer" - }, - { - "rshares": "558502225", - "voter": "steemlondon" - }, - { - "rshares": "590841943", - "voter": "splatts" - }, - { - "rshares": "2763482030", - "voter": "dollarbills" - }, - { - "rshares": "300015601", - "voter": "bela29" - }, - { - "rshares": "15816344815", - "voter": "goldstreet" - }, - { - "rshares": "33236418200795", - "voter": "darthknight" - }, - { - "rshares": "10026453407", - "voter": "dpend.active" - }, - { - "rshares": "2150460246", - "voter": "fengchao" - }, - { - "rshares": "7705442814", - "voter": "thepeakstudio" - }, - { - "rshares": "298641103837", - "voter": "nulledgh0st" - }, - { - "rshares": "396849571505", - "voter": "softworld" - }, - { - "rshares": "31601532413", - "voter": "the100" - }, - { - "rshares": "1420395198", - "voter": "iameden" - }, - { - "rshares": "5189593161", - "voter": "rihc94" - }, - { - "rshares": "80965524958", - "voter": "hivehustlers" - }, - { - "rshares": "20378802779", - "voter": "awownerd" - }, - { - "rshares": "1214337344", - "voter": "angeru64" - }, - { - "rshares": "1122248208", - "voter": "hivecur2" - } + "tags": [ + "infographic", + "steemit", + "steem", + "steemsquad", + "minnowsunite" ], - "author": "stk-g", - "author_payout_value": "0.000 HBD", - "author_reputation": 64.29, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "

\nEnglish\n
\n

\n\n\n
There are plenty of action games out there, but not as many become as frenetic and addictive as Dead Cells is, the title I'll be talking about today.\n\n
\"\"\n[Source](https://generacionxbox.com/analisis-de-dead-cells/)
\n\nDead Cells is a mix of Rogue-like with MetroidVania, since every time we are defeated we will return to the beginning of the map and lose our entire team, a genre that by tradition is very demanding if you want to get to the end, but they are also usually extremely replayable, I'll dig deeper into this in the gameplay.\n\n

\nPlot\n
\n

\n\nLike Hollow Knight, most of the story is not explained directly, but through the environment and things you can find in it, even on the loading screens they give you small pieces of information related to the place we are visiting.\n\n
\"\"\n[Source](https://www.youtube.com/watch?v=gdVRgK5hjnk)
\n\nWe take the role of a headless prisoner, who apparently has been revived by some kind of parasite, as a result of which he will go out to explore the world and defeat everything in his path.\n\nThe world of Dead Cells is mostly dark, abandoned, and scary, other than that it's riddled with monsters everywhere, so it won't be a peaceful journey.\n\nI want to clarify that the story goes much further than this, but it really is one of those stories that make you establish connections between the things that you find until you build the story based on that, and it is not worth ruining that, which is why I leave everything undisclosed for you to discover for yourself.\n\n

\nGameplay\n
\n

\n\n\nFor a rogue-like to succeed, a good gameplay that supports what the game offers us is essential. In this case, as I said above, we talk about a rogue-like, but with MetroidVania elements such as the composition of the map, and the fact that there are places that we will not be able to access until we obtain certain objects, it also takes elements from Hack n 'Slash.\n\n
\"\"\n[Source](https://www.muycomputer.com/2018/08/09/analisis-dead-cells-nintendo-switch/)
\n\n\nWe will always start in the prisoner's cell, and from here it is up to us to explore conscientiously to find the exit to the next area, for this, we are initially provided with a sword and a shield, but they will not be our only defense options.\n\nOur basic movements without including weapons are the double jump and roll to dodge, we can also hold onto ledges and go up and down stairs, if we fall from a very high place we will be stunned for a moment, this can be eliminated if we make a stomp, and of step we will stun enemies who may be nearby.\n\nAs we move through the map, we can find huge chests, which contain different objects that have different functions, from swords, bows, automatic crossbows, bombs, and a good catalog of objects at our disposal, as long as we find them, I will give you a list with different types.\n\n\n\n\n
    \n
  • Main weapons: We can carry a maximum of two weapons of this type, however we can also replace one with a shield, the variety is wide, here are the swords, broadswords, throwing knives, bows and bombs.
  • \n\n\n
  • Secondary weapons: As well as the main ones we can carry a maximum of two secondary weapons, these are more focused on support, since in this category we also find tonics to restore our life bar a bit, also automatic crossbows that we can deploy from time to time, and different types of weapons that do passive damage as long as enemies are in range.
  • \n\n\n
  • Necklace: A unique accessory that will give us some stat advantage, such as causing us to deal more damage, enemies taking damage, and countless other attributes.
  • \n\n\n
  • Recovery Potion: This object we have from the beginning, and restores a good part of our life bar, however initially it only has one use, and to fill it we must go to the next area, otherwise it will be unusable until then.
  • \n\n
\n\n\n
\"\"\n[Source](https://www.gamelegant.com/noticias/los-creadores-de-dead-cells-sorprendidos-por-las-ventas/)
\n\nAs you can see, the range of objects is wide, but we must also note that many times we will find the same object, but with different statistics depending on the level of the object. That is, at the beginning we can find objects level I, II, III, but in more difficult areas there are higher levels such as VII and VIII, and therefore more powerful, this applies to all types of objects that we can achieve by exploring, in case This was not enough, there are also objects with additional quality, marked with a \"+\" in the name, and even \"++\", being some of the best objects depending on the level they have.\n\nThis is not the only way to make us strong, because apart from the levels of the weapons, our character has 3 attributes to level up, and this also affects weapons.\n\n\n\n\n
    \n\n
  • Brutality: Red color, leveling up affects all items and abilities that have the object icon red, generally focused on brute force and weapon damage improvement.
  • \n\n
  • Tactics: Purple color, raising this level attribute affects secondary abilities and weapons such as crossbows and others.
  • \n\n
  • Survival: Green color, focused on survival as its name implies, leveling it up increases the damage of weapons with green color on the icon, and in general everything related to keeping us alive.
  • \n
\n\n\nThese attributes are improved with scrolls that we find scattered around the map, we may be lucky to find several very close, or only one per area, depending on the way in which the map has been built, which is random and changes every time we start a new game.\n\n
\"\"\n[Source](https://www.3djuegos.com/mx/noticias-ver/175636/dead-cells-recibe-actualizacion-masiva-con-nuevo-sistema-de/)
\n\nEach increase of one of these three attributes also increases our life bar, the % increase will depend on the attribute and how many times we have already improved it, but Survival is generally the improvement that gives us the most life of the three.\n\n

\nSafe Areas \n
\n

\n\nBetween one area and another there will always be a rest area, in which there will be several npc that will help us to advance in the game, apart from a jar to fill our life and recovery potion.\n\n\n\n\nWhen we defeat enemies they will sometimes give us circular blue or gold objects called cells, these cells help us to buy permanent improvements for our character, that is, they are preserved even if we are defeated, for example, we can improve the weapon that they will give us at the beginning, increase the number of uses of the recovery potion, unlock new suits, weapons, etc.\n\n
\"\"\n[Source](https://www.gamingcoffee.com/2019/08/whos-the-boss-lo-nuevo-de-dead-cells/)
\n\n\n\nOn the other hand, we can invest the cells in improving the probabilities of the objects that we find, in some safe areas there will be a specific npc that allows us to do this, and what causes is that the objects that we find will have a probability of being \"+\", And this is just one of the things we can improve.\n\nWe can also upgrade our weapons and change their attributes, all in exchange for gold, the game's main currency that we will use to buy weapons in the store, and open some doors that require gold as an opening method.\n\n\n
\"\"\n[Source](https://www.gamerstyle.com.mx/2020/01/30/dead-cells-presentan-the-bad-seed-nuevo-dlc/)
\n\nIn each safe area there are one or two doors, which open if we meet certain conditions in the previous area, such as eliminating 20 enemies without doing damage, or completing the area in a certain time, the doors contain bonuses that will help us In the following areas, however, like many things in this game, the reward is always variable.\n\nLast but not least, during the first 3 safe zones, we can choose our mutations, which are additional abilities that will help us in one way or another, but sometimes they also bring limitations, for example, we can increase our life bar 50%, but the food will not cure us, it always depends on stopping to examine the different options and see which one adapts to our needs and the way we play.\n\n

\nSoundtrack\n
\n

\n\nDead Cells has a pretty good soundtrack in which we can find a strong presence of the use of the acoustic guitar, it gives it a tone that seems quite good to me, and that in combat it sets in a spectacular way, and out of combat also the truth.\n\nThe sound of the weapons is quite pleasant and it feels good when the blows connect, certainly in the audio section they put quite a lot of care, as I always say, here there is not much to explain with words, it is always better that you experience it yourself.
\n\nhttps://www.youtube.com/watch?v=-TpCpcyT-FY\n\n

\nFinal Comments\n
\n

\n\n
I have spoken at length about the gameplay of Dead Cells, and the truth is that it seems to me to be quite a frantic game with a very good rhythm, and yet more than one is surely interested in its background and history, something that really only we can find out by playing.\n\n
\"\"\n[Source](https://pl4yers.com/2018/12/actualizacion-dead-cells-pc/)
\n\nAnd that I have not touched on the topic of replayability, when we \"complete\" the game for the first time, we will be given a boss cell, we use this to increase the difficulty of the game even more, and unlock new elements, there are things that they will need several boss cells, so if we want to unlock everything we must complete the game several times. Best of all, there is no single path to the end, as we can decide our own path, depending on the objects we have, since some areas will be inaccessible at the beginning. In short, it is one of those games where you will always discover something new if you are one of those who love to explore every corner of the map.\n\nIn summary, Dead Cells is a game that I totally recommend, it is not very demanding in terms of specifications, if someone plans to play it on PC; and you know, if you have something to comment on the game you can say so in the comments.\n\n
\n\nAnd here ends today's post, as always thank you very much for reading up to this point and I hope you liked it.\n\nWithout much more to say, see you in the next post, bye bye.
\n\n\n\n\n\n\n
\n\n\n

\nEspa\u00f1ol\n
\n

\n\n\n
Hay muchos juegos de acci\u00f3n ah\u00ed fuera, pero no son tantos los que llegan a ser tan fren\u00e9ticos y adictivos como lo es Dead Cells, el t\u00edtulo del que les hablar\u00e9 hoy.\n\n
\"\"\n[Fuente](https://generacionxbox.com/analisis-de-dead-cells/)
\n\nDead Cells es una mezcla de Rogue-like con MetroidVania, ya que cada vez que seamos derrotados volveremos al inicio del mapa y perderemos todo nuestro equipo, un g\u00e9nero que por tradici\u00f3n es muy exigente si quieres llegar al final, pero tambi\u00e9n suelen ser extremadamente rejugables, indagar\u00e9 m\u00e1s en esto en el gameplay.\n\n

\nHistoria\n
\n

\n\nAs\u00ed como Hollow Knight, la mayor parte de la historia no te la explican directamente, sino a trav\u00e9s del entorno y de cosas que puedes encontrar en \u00e9l, hasta en las pantallas de carga te dan peque\u00f1os fragmentos de informaci\u00f3n relacionados al lugar que estemos visitando.\n\n
\"\"\n[Fuente](https://www.youtube.com/watch?v=gdVRgK5hjnk)
\n\nTomamos el papel de un prisionero sin cabeza, el cual al parecer ha sido revivido por alguna especie de par\u00e1sito, a ra\u00edz de esto saldr\u00e1 a explorar el mundo y derrotar todo a su paso.\n\nEl mundo de Dead Cells es mayormente oscuro, abandonado y tenebroso, aparte de que est\u00e1 plagado de monstruos por todas partes, por lo que no ser\u00e1 un viaje pac\u00edfico.\n\nQuiero aclarar que la historia va mucho m\u00e1s all\u00e1 de esto, pero realmente es de esas historias que te hacen establecer conexiones entre las cosas que vas encontrando hasta que armas la historia en base a eso, y no vale la pena arruinarles eso, por lo cual dejo todo sin revelar para que lo descubran por ustedes mismos.\n\n

\nGameplay\n
\n

\n\n\nPara que un rogue-like triunfe, es imprescindible un buen gameplay que le d\u00e9 soporte a lo que el juego nos plantee. En este caso, como ya dije un poco m\u00e1s arriba hablamos de un rogue-like, pero con elementos MetroidVania como la composici\u00f3n del mapa, y el hecho de que hay lugares a los que no podremos acceder hasta obtener ciertos objetos, tambi\u00e9n toma elementos de los Hack n\u2019 Slash.\n\n
\"\"\n[Fuente](https://www.muycomputer.com/2018/08/09/analisis-dead-cells-nintendo-switch/)
\n\n\nSiempre empezaremos en la celda del prisionero, y a partir de aqu\u00ed depende de nosotros explorar a consciencia para hallar la salida a la siguiente \u00e1rea, para esto, se nos provee inicialmente de una espada y un escudo, pero no ser\u00e1n nuestras \u00fanicas opciones de defensa.\n\nNuestros movimientos b\u00e1sicos sin incluir armas son el doble salto y rodar para esquivar, tambi\u00e9n podemos sujetarnos a salientes y subir y bajar por escaleras, si caemos desde un lugar muy alto quedaremos aturdidos por un momento, esto puede eliminarse si hacemos un pisot\u00f3n, y de paso aturdiremos a los enemigos que puedan estar cerca.\n\nConforme avancemos por el mapa, podemos encontrar cofres enormes, los cuales contienen diferentes objetos que tienen diferentes funciones, desde espadas, arcos, ballestas autom\u00e1ticas, bombas, y un buen cat\u00e1logo de objetos a nuestra disposici\u00f3n, siempre y cuando los encontremos, les dar\u00e9 una lista con los diferentes tipos.\n\n\n\n\n
    \n
  • Armas principales: Podemos llevar un m\u00e1ximo de dos armas de este tipo, sin embargo tambi\u00e9n podemos reemplazar alguna por un escudo, la variedad es amplia, aqu\u00ed entran las espadas, espadones, cuchillos arrojadizos, arcos y bombas.
  • \n\n\n
  • Armas secundarias: As\u00ed como las principales podemos llevar un m\u00e1ximo de dos armas secundarias, estas est\u00e1n m\u00e1s enfocadas al apoyo, ya que en esta categor\u00eda tambi\u00e9n encontramos t\u00f3nicos para restaurar un poco nuestra barra de vida, tambi\u00e9n ballestas autom\u00e1ticas que podemos desplegar cada cierto tiempo, y diferentes tipos de armas que causan da\u00f1o pasivo siempre y cuando los enemigos se encuentren en su rango de alcance.
  • \n\n\n
  • Collar: Un accesorio \u00fanico que nos dar\u00e1 alguna ventaja de estad\u00edsticas, como hacer que causemos m\u00e1s da\u00f1o, que los enemigos reciban el da\u00f1o que nos causan, y un sinf\u00edn de atributos diferentes.
  • \n\n\n
  • Poci\u00f3n de recuperaci\u00f3n: Este objeto lo tenemos desde el inicio, y restaura una buena parte de nuestra barra de vida, sin embargo inicialmente solo tiene un uso, y para rellenarla debemos pasar al \u00e1rea siguiente, de lo contrario quedar\u00e1 inutilizable hasta entonces.
  • \n\n
\n\n\n
\"\"\n[Fuente](https://www.gamelegant.com/noticias/los-creadores-de-dead-cells-sorprendidos-por-las-ventas/)
\n\nComo pueden ver, la gama de objetos es amplia, pero tambi\u00e9n debemos fijarnos en que muchas veces encontraremos el mismo objeto, pero con diferentes estad\u00edsticas dependiendo del nivel del objeto. Es decir, al inicio podemos encontrar objetos nivel I, II, III, pero en \u00e1reas m\u00e1s dif\u00edciles hay niveles mayores como VII y VIII, y por lo tanto m\u00e1s potentes, esto aplica para todos los tipos de objetos que podamos conseguir explorando, por si esto fuera poco, tambi\u00e9n hay objetos con calidad adicional, marcados con un \u201c+\u201d en el nombre, e incluso \u201c++\u201d, siendo algunas de los mejores objetos dependiendo del nivel que tengan.\n\nEsta no es la \u00fanica forma de hacernos fuertes, pues aparte de los niveles de las armas, nuestro personaje tiene 3 atributos para subir, y esto tambi\u00e9n afecta a las armas.\n\n\n\n\n
    \n\n
  • Brutalidad: Color rojo, subirlo de nivel afecta a todos los objetos y habilidades que tengan el color rojo en el icono de objeto, generalmente enfocado a la fuerza bruta y a mejorar el da\u00f1o de las armas.
  • \n\n
  • T\u00e1cticas: Color purpura, subir este atributo de nivel afecta a las habilidades y armas secundarias como ballestas y dem\u00e1s.
  • \n\n
  • Supervivencia: Color verde, enfocado en la supervivencia como su nombre lo indica, subirlo de nivel aumenta el da\u00f1o de las armas con color verde en el icono, y en general todo lo relacionado a mantenernos con vida.
  • \n
\n\n\nEstos atributos se mejoran con pergaminos que encontramos dispersos por el mapa, podemos tener suerte de encontrar varios muy cerca, o uno solo por \u00e1rea, depende de la forma en la que se haya construido el mapa, el cual es aleatorio y cambia cada vez que iniciamos una nueva partida.\n\n
\"\"\n[Fuente](https://www.3djuegos.com/mx/noticias-ver/175636/dead-cells-recibe-actualizacion-masiva-con-nuevo-sistema-de/)
\n\nCada aumento de uno de estos tres atributos tambi\u00e9n aumenta nuestra barra de vida, el % de aumento depender\u00e1 del atributo y de cuantas veces lo hayamos mejorado ya, pero generalmente es Supervivencia la mejora que m\u00e1s vida nos otorga de las tres.\n\n

\nZonas seguras\n
\n

\n\nEntre un \u00e1rea y otra siempre habr\u00e1 una zona de descanso, en la cual habr\u00e1n varios npc que nos ayudar\u00e1n a avanzar en el juego, aparte de un frasco para rellenar nuestra vida y poci\u00f3n de recuperaci\u00f3n.\n\n\n\n\nCuando derrotamos enemigos a veces nos dar\u00e1n objetos azules o dorados circulares llamados c\u00e9lulas, estas c\u00e9lulas nos ayudan a comprar mejoras permanentes para nuestro personaje, es decir, que se conservan aunque seamos derrotados, por ejemplo, podemos mejorar el arma que nos dar\u00e1n al inicio, aumentar la cantidad de usos de la poci\u00f3n de recuperaci\u00f3n, desbloquear nuevos trajes, armas, etc.\n\n
\"\"\n[Fuente](https://www.gamingcoffee.com/2019/08/whos-the-boss-lo-nuevo-de-dead-cells/)
\n\n\n\nPor otra parte, podemos invertir las c\u00e9lulas en mejorar las probabilidades de los objetos que encontremos, en algunas zonas seguras habr\u00e1 un npc en espec\u00edfico que nos permite hacer esto, y lo que causa es que los objetos que encontremos tendr\u00e1n un % de probabilidad de ser \u201c+\u201d, y esto es solo una de las cosas que podemos mejorar.\n\nTambi\u00e9n podemos mejorar nuestras armas y cambiar sus atributos, todo a cambio de oro, la moneda principal del juego que utilizaremos para comprar armas en la tienda, y abrir algunas puertas que exigen oro como forma de apertura.\n\n\n
\"\"\n[Fuente](https://www.gamerstyle.com.mx/2020/01/30/dead-cells-presentan-the-bad-seed-nuevo-dlc/)
\n\n\nEn cada zona segura hay una o dos puertas, las cuales se abren si cumplimos ciertas condiciones en el \u00e1rea anterior, como eliminar a 20 enemigos sin que nos hagan da\u00f1o, o completar el \u00e1rea en un tiempo determinado, las puertas contienen bonificaciones que nos ayudar\u00e1n en las \u00e1reas siguientes, sin embargo, como muchas cosas en este juego, la recompensa siempre es variable.\n\nPor \u00faltimo pero no menos importante, durante las primeras 3 zonas seguras, podemos elegir nuestras mutaciones, las cuales son habilidades adicionales que nos ayudar\u00e1n de una u otra forma, pero a veces tambi\u00e9n traen consigo limitaciones, por ejemplo, podemos aumentar nuestra barra de vida en un 50%, pero la comida no nos curar\u00e1, siempre depende de detenerse a examinar las diferentes opciones y ver cual se adapta a nuestras necesidades y a nuestra forma de jugar.\n\n

\nSoundtrack\n
\n

\n\nDead Cells tiene un soundtrack bastante bueno en el cual podemos encontrar una fuerte presencia del uso de la guitarra ac\u00fastica, le da un tono que me parece bastante bueno, y que en combate ambienta de una forma espectacular, y fuera de combate tambi\u00e9n la verdad.\n\nEl sonido de las armas es bastante agradable y se siente bien cuando los golpes conectan, ciertamente en el apartado de audio le pusieron bastante cuidado, como siempre digo, aqu\u00ed no hay mucho que explicar con palabras, siempre es mejor que lo experimenten ustedes mismos.
\n\nhttps://www.youtube.com/watch?v=-TpCpcyT-FY\n\n

\nComentarios Finales\n
\n

\n\n
He hablado largo y tendido sobre el gameplay de Dead Cells, y la verdad es que me parece un juego bastante fren\u00e9tico y con un muy buen ritmo, y sin embargo m\u00e1s de uno seguramente se sienta interesado por su trasfondo e historia, cosa que realmente solo podemos averiguar jugando.\n\n
\"\"\n[Fuente](https://pl4yers.com/2018/12/actualizacion-dead-cells-pc/)
\n\nY eso que no he tocado el tema de la rejugabilidad, al \u201ccompletar\u201d el juego por primera vez, se nos dar\u00e1 una c\u00e9lula de jefe, esta la utilizamos para aumentar la dificultad del juego a\u00fan m\u00e1s, y desbloquear elementos nuevos, hay cosas que necesitar\u00e1n varias c\u00e9lulas de jefe, por lo cual si queremos desbloquear todo debemos completar el juego varias veces. Lo mejor de todo es que no hay un solo camino para llegar al final, pues podemos decidir nuestro propio camino, dependiendo de los objetos que tengamos, ya que algunas \u00e1reas ser\u00e1n inaccesibles al inicio. En resumen, es uno de esos juegos donde vas a descubrir siempre algo nuevo si eres de los que adoran explorar cada rinc\u00f3n del mapa.\n\nEn resumen, Dead Cells es un juego que recomiendo completamente, no es muy exigente en cuanto a especificaciones en el caso de que alguien piense jugarlo en pc; y ya saben, si tienes algo que comentar sobre el juego pueden decirlo en los comentarios.\n\n
\n\nY aqu\u00ed termina el post de hoy, como siempre muchas gracias por leer hasta este punto y espero haya sido de su agrado.\n\nSin mucho m\u00e1s que decir, nos vemos en el pr\u00f3ximo post, bye bye.
\n\n", - "category": "hive-140217", - "children": 1, - "community": "hive-140217", - "community_title": "Hive Gaming", - "created": "2020-07-07T13:58:27", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://generacionxbox.com/wp-content/uploads/2018/08/Dead-cells-xboxone-review.jpg", - "https://i.ytimg.com/vi/gdVRgK5hjnk/maxresdefault.jpg", - "https://www.muycomputer.com/wp-content/uploads/2018/08/Dead-Cells-Desbloqueables.jpg", - "https://www.gamelegant.com/wp-content/uploads/2019/04/dead-cells-2-780x439.jpg", - "https://i11b.3djuegos.com/juegos/14818/dead_cells/fotos/maestras/dead_cells-3882913.jpg", - "https://www.gamingcoffee.com/wp-content/uploads/2019/08/maxresdefault-8.jpg", - "https://www.gamerstyle.com.mx/wp-content/uploads/2020/01/Dead-cells-the-bad-seed-trailer-fecha-gamer-style.jpg", - "https://pl4yers.com/wp-content/uploads/2018/12/Dead-Cells-se-actualiza-en-PC.jpg" - ], - "links": [ - "https://generacionxbox.com/analisis-de-dead-cells/", - "https://www.youtube.com/watch?v=gdVRgK5hjnk", - "https://www.muycomputer.com/2018/08/09/analisis-dead-cells-nintendo-switch/", - "https://www.gamelegant.com/noticias/los-creadores-de-dead-cells-sorprendidos-por-las-ventas/", - "https://www.3djuegos.com/mx/noticias-ver/175636/dead-cells-recibe-actualizacion-masiva-con-nuevo-sistema-de/", - "https://www.gamingcoffee.com/2019/08/whos-the-boss-lo-nuevo-de-dead-cells/", - "https://www.gamerstyle.com.mx/2020/01/30/dead-cells-presentan-the-bad-seed-nuevo-dlc/", - "https://pl4yers.com/2018/12/actualizacion-dead-cells-pc/", - "https://generacionxbox.com/analisis-de-dead-cells/", - "https://www.youtube.com/watch?v=gdVRgK5hjnk" - ], - "tags": [ - "gaming", - "games", - "appreciator", - "upmewhale", - "oc", - "ocd", - "videogames", - "hive", - "spanish" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 73101064605610, - "payout": 29.14, - "payout_at": "2020-07-14T13:58:27", - "pending_payout_value": "29.140 HBD", - "percent_steem_dollars": 10000, - "permlink": "eng-esp-dead-cells-metroidvania-rogue-like-hack-n-slash-fun-review", - "post_id": 86932790, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 132 - }, - "title": "[ENG/ESP] Dead Cells: MetroidVania + Rogue-Like + Hack N' Slash = Fun // Review", - "updated": "2020-07-07T13:58:27", - "url": "/hive-140217/@stk-g/eng-esp-dead-cells-metroidvania-rogue-like-hack-n-slash-fun-review" + "users": [ + "roelandp", + "jesta", + "xeroc" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53802622776333, + "payout": 170.17, + "payout_at": "2016-09-22T16:45:09", + "pending_payout_value": "170.170 HBD", + "percent_hbd": 10000, + "permlink": "17-steem-tools-every-steemian-needs-to-know", + "post_id": 1256009, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 88 + }, + "title": "Steem Tools Every Steemian Needs To Know (Infographic)", + "updated": "2016-09-15T18:45:09", + "url": "/infographic/@powerup/17-steem-tools-every-steemian-needs-to-know" }, { - "active_votes": [ - { - "rshares": "144678648340", - "voter": "enlil" - }, - { - "rshares": "218577134311", - "voter": "tombstone" - }, - { - "rshares": "165880364", - "voter": "kushed" - }, - { - "rshares": "55457520608", - "voter": "complexring" - }, - { - "rshares": "2278857252570", - "voter": "steemychicken1" - }, - { - "rshares": "14313278073", - "voter": "aizensou" - }, - { - "rshares": "1545131689383", - "voter": "b0y2k" - }, - { - "rshares": "3989375095", - "voter": "stoner19" - }, - { - "rshares": "1422254799", - "voter": "sock" - }, - { - "rshares": "1760742207", - "voter": "josephcraig289" - }, - { - "rshares": "288586901327", - "voter": "onealfa" - }, - { - "rshares": "-7616594376558", - "voter": "kingscrown" - }, - { - "rshares": "0", - "voter": "richman" - }, - { - "rshares": "2104551428", - "voter": "igl00" - }, - { - "rshares": "478783231518", - "voter": "mark-waser" - }, - { - "rshares": "55636922072", - "voter": "razvanelulmarin" - }, - { - "rshares": "567999465941", - "voter": "gerber" - }, - { - "rshares": "622781636141", - "voter": "ezzy" - }, - { - "rshares": "61257519850", - "voter": "hitmeasap" - }, - { - "rshares": "653967398873", - "voter": "fabio" - }, - { - "rshares": "552422809754", - "voter": "anyx" - }, - { - "rshares": "51230041298", - "voter": "gikitiki" - }, - { - "rshares": "18130513655", - "voter": "shawnamawna" - }, - { - "rshares": "741878026304", - "voter": "exyle" - }, - { - "rshares": "17415091499", - "voter": "hagie" - }, - { - "rshares": "10998531642", - "voter": "coinbar" - }, - { - "rshares": "2397320482552", - "voter": "magicmonk" - }, - { - "rshares": "1548087902", - "voter": "caesarion" - }, - { - "rshares": "86953755275", - "voter": "thebluepanda" - }, - { - "rshares": "12392710394", - "voter": "yoshiko" - }, - { - "rshares": "4166775418", - "voter": "thisisbenbrick" - }, - { - "rshares": "9090662005658", - "voter": "jphamer1" - }, - { - "rshares": "1012962246", - "voter": "bidnat" - }, - { - "rshares": "69706475293", - "voter": "shanghaipreneur" - }, - { - "rshares": "22502003800", - "voter": "scaredycatguide" - }, - { - "rshares": "363463671143", - "voter": "borran" - }, - { - "rshares": "160954784885", - "voter": "netaterra" - }, - { - "rshares": "108077533738", - "voter": "someguy123" - }, - { - "rshares": "15100451277", - "voter": "einsteinpotsdam" - }, - { - "rshares": "262490235965", - "voter": "uwelang" - }, - { - "rshares": "450386298232", - "voter": "digital-wisdom" - }, - { - "rshares": "1875533116", - "voter": "ethical-ai" - }, - { - "rshares": "112395980", - "voter": "tejma" - }, - { - "rshares": "22858284786", - "voter": "jwaser" - }, - { - "rshares": "388766321580", - "voter": "jacobtothe" - }, - { - "rshares": "13876230623", - "voter": "bwaser" - }, - { - "rshares": "12178528748", - "voter": "allesgruen" - }, - { - "rshares": "71202163253", - "voter": "dannystravels" - }, - { - "rshares": "148050415451", - "voter": "herpetologyguy" - }, - { - "rshares": "154423388165", - "voter": "clayboyn" - }, - { - "rshares": "14067445155", - "voter": "jerryblanceton" - }, - { - "rshares": "179029271308", - "voter": "platinum-blue" - }, - { - "rshares": "8428876899", - "voter": "ssekulji" - }, - { - "rshares": "1950040721", - "voter": "strong-ai" - }, - { - "rshares": "34344610", - "voter": "timbernana" - }, - { - "rshares": "50491076044", - "voter": "sherlockcupid" - }, - { - "rshares": "75814964910", - "voter": "dougkarr" - }, - { - "rshares": "203097872641", - "voter": "jaybird" - }, - { - "rshares": "342779477", - "voter": "dark.horse" - }, - { - "rshares": "1063376811783", - "voter": "mangos" - }, - { - "rshares": "34049714872", - "voter": "toyman" - }, - { - "rshares": "905163479", - "voter": "technoprogressiv" - }, - { - "rshares": "16962392006", - "voter": "steemizen" - }, - { - "rshares": "34981822898", - "voter": "i-gordan" - }, - { - "rshares": "43791673965", - "voter": "cpol" - }, - { - "rshares": "879699280685", - "voter": "tarazkp" - }, - { - "rshares": "427822126", - "voter": "buzzbeergeek" - }, - { - "rshares": "219022248996", - "voter": "danielsaori" - }, - { - "rshares": "13514879364", - "voter": "bigdaddy" - }, - { - "rshares": "8868740849", - "voter": "kingsmind" - }, - { - "rshares": "1365802767", - "voter": "pboc" - }, - { - "rshares": "137003248917", - "voter": "louisthomas" - }, - { - "rshares": "1944057337", - "voter": "freebornsociety" - }, - { - "rshares": "147587048368", - "voter": "zaragast" - }, - { - "rshares": "29292033540", - "voter": "dune69" - }, - { - "rshares": "16372363654", - "voter": "acromott" - }, - { - "rshares": "340342476054", - "voter": "thenightflier" - }, - { - "rshares": "69820909900", - "voter": "schlees" - }, - { - "rshares": "844705968", - "voter": "papadimos" - }, - { - "rshares": "36715714453", - "voter": "yeaho" - }, - { - "rshares": "55608990020", - "voter": "romedog" - }, - { - "rshares": "76715441461", - "voter": "jerrybanfield" - }, - { - "rshares": "31167050178", - "voter": "sunshinetraveler" - }, - { - "rshares": "282940986218", - "voter": "swelker101" - }, - { - "rshares": "11353635637", - "voter": "mys" - }, - { - "rshares": "351565797095", - "voter": "spg" - }, - { - "rshares": "28235654453", - "voter": "steemitromney" - }, - { - "rshares": "1355766539691", - "voter": "isaria" - }, - { - "rshares": "19596302597", - "voter": "theywillkillyou" - }, - { - "rshares": "30719306365", - "voter": "anacristinasilva" - }, - { - "rshares": "26748732903", - "voter": "sam99" - }, - { - "rshares": "436576402650", - "voter": "offoodandart" - }, - { - "rshares": "3122342817", - "voter": "sammosk" - }, - { - "rshares": "27012740206", - "voter": "biancajapan" - }, - { - "rshares": "4387298313", - "voter": "whd" - }, - { - "rshares": "674669680", - "voter": "kayoko" - }, - { - "rshares": "38912710983", - "voter": "deniskj" - }, - { - "rshares": "2234168899", - "voter": "d-pend" - }, - { - "rshares": "1268164325947", - "voter": "geekgirl" - }, - { - "rshares": "3003131637", - "voter": "apoloo1" - }, - { - "rshares": "1640245764", - "voter": "horsepower" - }, - { - "rshares": "79266496416", - "voter": "goldkey" - }, - { - "rshares": "529747508", - "voter": "rafalski" - }, - { - "rshares": "150073623285", - "voter": "drorion" - }, - { - "rshares": "573776697193", - "voter": "hope-on-fire" - }, - { - "rshares": "2859270283", - "voter": "shitsignals" - }, - { - "rshares": "15674542462", - "voter": "dine77" - }, - { - "rshares": "1042095659435", - "voter": "steemvote" - }, - { - "rshares": "442878374013", - "voter": "steempostitalia" - }, - { - "rshares": "391742917155", - "voter": "bronkong" - }, - { - "rshares": "388774249151", - "voter": "vikisecrets" - }, - { - "rshares": "6353691684", - "voter": "helgapn" - }, - { - "rshares": "2820651421149", - "voter": "nuthman" - }, - { - "rshares": "38912268382", - "voter": "felander" - }, - { - "rshares": "8835918000", - "voter": "teneiced" - }, - { - "rshares": "17638221009", - "voter": "sumayyahsaidso" - }, - { - "rshares": "7071235433", - "voter": "fbslo" - }, - { - "rshares": "50245359099", - "voter": "accelerator" - }, - { - "rshares": "3108248299", - "voter": "justinparke" - }, - { - "rshares": "139900727697", - "voter": "alinakot" - }, - { - "rshares": "3686981519", - "voter": "yogacoach" - }, - { - "rshares": "10014482404643", - "voter": "therealwolf" - }, - { - "rshares": "321332481193", - "voter": "roleerob" - }, - { - "rshares": "8384968132", - "voter": "deathwing" - }, - { - "rshares": "229584310311", - "voter": "revisesociology" - }, - { - "rshares": "67878004577", - "voter": "silversaver888" - }, - { - "rshares": "17834423560", - "voter": "gringo211985" - }, - { - "rshares": "74193059630", - "voter": "heidi71" - }, - { - "rshares": "4528427456", - "voter": "pataty69" - }, - { - "rshares": "735074346", - "voter": "liverpool-fan" - }, - { - "rshares": "5494939630", - "voter": "fulcrumleader" - }, - { - "rshares": "29689376394", - "voter": "caladan" - }, - { - "rshares": "15499048975", - "voter": "joseph1956" - }, - { - "rshares": "94984775", - "voter": "blockbrothers" - }, - { - "rshares": "191916010082", - "voter": "emrebeyler" - }, - { - "rshares": "2051782432695", - "voter": "smartsteem" - }, - { - "rshares": "242393461576", - "voter": "jrvacation" - }, - { - "rshares": "709615704", - "voter": "chintya" - }, - { - "rshares": "128015611405", - "voter": "cervisia" - }, - { - "rshares": "3143785906", - "voter": "funtraveller" - }, - { - "rshares": "23982339948", - "voter": "nokodemion" - }, - { - "rshares": "27063093923", - "voter": "robotics101" - }, - { - "rshares": "19449670624", - "voter": "marcolino76" - }, - { - "rshares": "957435749", - "voter": "fourfourfun" - }, - { - "rshares": "36436391225", - "voter": "alexanderfluke" - }, - { - "rshares": "1074253760988", - "voter": "jongolson" - }, - { - "rshares": "1663321147", - "voter": "slashformotion" - }, - { - "rshares": "350431527250", - "voter": "gandhibaba" - }, - { - "rshares": "207361235408", - "voter": "nealmcspadden" - }, - { - "rshares": "51865592936", - "voter": "bala41288" - }, - { - "rshares": "29907402549", - "voter": "socialmediaseo" - }, - { - "rshares": "126796867803", - "voter": "purefood" - }, - { - "rshares": "39707395183", - "voter": "warnas" - }, - { - "rshares": "5404458311", - "voter": "philnewton" - }, - { - "rshares": "31198234740", - "voter": "leoumesh" - }, - { - "rshares": "354443399768", - "voter": "chronocrypto" - }, - { - "rshares": "1062264165552", - "voter": "holger80" - }, - { - "rshares": "749070034", - "voter": "unconditionalove" - }, - { - "rshares": "16547476571", - "voter": "cadawg" - }, - { - "rshares": "15619419195", - "voter": "upfundme" - }, - { - "rshares": "6626142543", - "voter": "ericburgoyne" - }, - { - "rshares": "153442789990", - "voter": "bigtom13" - }, - { - "rshares": "25300478442", - "voter": "piumadoro" - }, - { - "rshares": "140121427539", - "voter": "captainbob" - }, - { - "rshares": "1932760799", - "voter": "moeenali" - }, - { - "rshares": "3468833914", - "voter": "pkocjan" - }, - { - "rshares": "6448077064", - "voter": "maxpatternman" - }, - { - "rshares": "68817062470", - "voter": "bozz" - }, - { - "rshares": "49022290229", - "voter": "cst90" - }, - { - "rshares": "1566659359", - "voter": "russellstockley" - }, - { - "rshares": "10442149691", - "voter": "g4fun" - }, - { - "rshares": "8939529581", - "voter": "rubencress" - }, - { - "rshares": "26594309482", - "voter": "properfraction" - }, - { - "rshares": "60470586558", - "voter": "satren" - }, - { - "rshares": "1485298033", - "voter": "beleg" - }, - { - "rshares": "30200416220", - "voter": "bestboom" - }, - { - "rshares": "39415370269", - "voter": "abrockman" - }, - { - "rshares": "92220301598", - "voter": "ronaldoavelino" - }, - { - "rshares": "387069394", - "voter": "stmdev" - }, - { - "rshares": "57320215724", - "voter": "paragism" - }, - { - "rshares": "1008543683231", - "voter": "jkramer" - }, - { - "rshares": "130798074", - "voter": "dream-o" - }, - { - "rshares": "32265912568", - "voter": "freddio" - }, - { - "rshares": "6988440712", - "voter": "blainjones" - }, - { - "rshares": "3672554042", - "voter": "reinaldoverdu" - }, - { - "rshares": "0", - "voter": "tushy" - }, - { - "rshares": "1328529467", - "voter": "raorac" - }, - { - "rshares": "3693821452", - "voter": "yaraha" - }, - { - "rshares": "22755895761", - "voter": "promobot" - }, - { - "rshares": "2532610576348", - "voter": "solominer" - }, - { - "rshares": "2220605597", - "voter": "glodniwiedzy" - }, - { - "rshares": "2845614516", - "voter": "mrs.goldkey" - }, - { - "rshares": "81174358738", - "voter": "veteranforcrypto" - }, - { - "rshares": "54092932576", - "voter": "jancharlest" - }, - { - "rshares": "4666146022440", - "voter": "slobberchops" - }, - { - "rshares": "658131365", - "voter": "crimo" - }, - { - "rshares": "7398537458", - "voter": "davidesimoncini" - }, - { - "rshares": "107435377137", - "voter": "enforcer48" - }, - { - "rshares": "11582896794", - "voter": "flibbertigibbet" - }, - { - "rshares": "39800149", - "voter": "teslaman" - }, - { - "rshares": "140896360238", - "voter": "steem-tube" - }, - { - "rshares": "2544595710", - "voter": "archisteem" - }, - { - "rshares": "39782201", - "voter": "blondephysics" - }, - { - "rshares": "1843065595", - "voter": "susantabinod" - }, - { - "rshares": "47550615828", - "voter": "oldmans" - }, - { - "rshares": "983689337866", - "voter": "cryptoandcoffee" - }, - { - "rshares": "10340958378", - "voter": "magictoni" - }, - { - "rshares": "181413717965", - "voter": "digital.mine" - }, - { - "rshares": "10602486568", - "voter": "qam2112" - }, - { - "rshares": "4603401690", - "voter": "swisswitness" - }, - { - "rshares": "2917834750", - "voter": "lil-splatts" - }, - { - "rshares": "326609858624", - "voter": "apshamilton" - }, - { - "rshares": "3752743492", - "voter": "ambiguity" - }, - { - "rshares": "10805061471", - "voter": "schlunior" - }, - { - "rshares": "575839188205", - "voter": "hamismsf" - }, - { - "rshares": "2366147329", - "voter": "daath" - }, - { - "rshares": "29436365318", - "voter": "dalz" - }, - { - "rshares": "15563249212", - "voter": "holovision" - }, - { - "rshares": "68556355", - "voter": "jk6276" - }, - { - "rshares": "47862372633", - "voter": "yaelg" - }, - { - "rshares": "1427485457", - "voter": "julian2013" - }, - { - "rshares": "98237030262", - "voter": "dlike" - }, - { - "rshares": "722882054", - "voter": "triptolemus" - }, - { - "rshares": "53538123178", - "voter": "stever82" - }, - { - "rshares": "5874282669", - "voter": "gorbisan" - }, - { - "rshares": "447077144", - "voter": "jarielomaa" - }, - { - "rshares": "6382775306", - "voter": "fullnodeupdate" - }, - { - "rshares": "106068597636", - "voter": "engrave" - }, - { - "rshares": "782134584", - "voter": "munhenhos" - }, - { - "rshares": "525139381855", - "voter": "tipsybosphorus" - }, - { - "rshares": "34811575272", - "voter": "a-bot" - }, - { - "rshares": "3212935671", - "voter": "bobby.madagascar" - }, - { - "rshares": "22884268", - "voter": "laissez-faire" - }, - { - "rshares": "122876524716", - "voter": "agromeror" - }, - { - "rshares": "5178949137", - "voter": "kuku-splatts" - }, - { - "rshares": "933864591", - "voter": "ldp" - }, - { - "rshares": "9071975413", - "voter": "steemitcuration" - }, - { - "rshares": "1928273319", - "voter": "thrasher666" - }, - { - "rshares": "65438875991", - "voter": "priyanarc" - }, - { - "rshares": "1045796135", - "voter": "conectionbot" - }, - { - "rshares": "15892803128", - "voter": "maonx" - }, - { - "rshares": "45184782606", - "voter": "followjohngalt" - }, - { - "rshares": "8339554241", - "voter": "avel692" - }, - { - "rshares": "143290502", - "voter": "ohfiddlesticks" - }, - { - "rshares": "-121753598", - "voter": "dein-problem" - }, - { - "rshares": "101988883905", - "voter": "kekos" - }, - { - "rshares": "20374017347", - "voter": "moneytron" - }, - { - "rshares": "953253149", - "voter": "redheaddemon" - }, - { - "rshares": "524265265964", - "voter": "jpbliberty" - }, - { - "rshares": "10954899157", - "voter": "brucutu" - }, - { - "rshares": "12148735550", - "voter": "steemfriends" - }, - { - "rshares": "66389695187", - "voter": "ferrate" - }, - { - "rshares": "14606454327", - "voter": "blind-spot" - }, - { - "rshares": "4247869232", - "voter": "brucutu1" - }, - { - "rshares": "4315927682", - "voter": "brucutu2" - }, - { - "rshares": "6215064002", - "voter": "drazeus" - }, - { - "rshares": "1563551360", - "voter": "permaculturedude" - }, - { - "rshares": "4252092281", - "voter": "tubiska" - }, - { - "rshares": "4404645667", - "voter": "pocoto" - }, - { - "rshares": "4416323771", - "voter": "kitty-kitty" - }, - { - "rshares": "4478877192", - "voter": "jussara" - }, - { - "rshares": "4292482474", - "voter": "cyrillo" - }, - { - "rshares": "15051564098", - "voter": "broxi" - }, - { - "rshares": "204781289684", - "voter": "monster-one" - }, - { - "rshares": "15247774", - "voter": "limka" - }, - { - "rshares": "67401366690", - "voter": "dfacademy" - }, - { - "rshares": "4360850008", - "voter": "carioca" - }, - { - "rshares": "543010641", - "voter": "hungryharish" - }, - { - "rshares": "12826545217", - "voter": "cpt-sparrow" - }, - { - "rshares": "10962710780", - "voter": "wolffeys" - }, - { - "rshares": "2406912088", - "voter": "bynarikode" - }, - { - "rshares": "0", - "voter": "flag.god.bot" - }, - { - "rshares": "39945478799", - "voter": "pfdm" - }, - { - "rshares": "19557487897", - "voter": "maryincryptoland" - }, - { - "rshares": "1237578427", - "voter": "wallvater" - }, - { - "rshares": "68450786526", - "voter": "epicdice" - }, - { - "rshares": "12643290570", - "voter": "helgalubevi" - }, - { - "rshares": "174672049523", - "voter": "star.lord" - }, - { - "rshares": "890127661", - "voter": "sm-silva" - }, - { - "rshares": "2601168208889", - "voter": "likwid" - }, - { - "rshares": "581566595", - "voter": "iamjohn" - }, - { - "rshares": "44375647273", - "voter": "xyz004" - }, - { - "rshares": "737868969", - "voter": "steemindian" - }, - { - "rshares": "3441117609", - "voter": "milu-the-dog" - }, - { - "rshares": "53905509163", - "voter": "asmr.tist" - }, - { - "rshares": "2844221849", - "voter": "triplea.bot" - }, - { - "rshares": "208713133982", - "voter": "steem.leo" - }, - { - "rshares": "2197226473", - "voter": "nichemarket" - }, - { - "rshares": "522447045", - "voter": "bala-pal" - }, - { - "rshares": "493598831960", - "voter": "votebetting" - }, - { - "rshares": "6628241865", - "voter": "freddio.sport" - }, - { - "rshares": "305990496", - "voter": "partitura.stem" - }, - { - "rshares": "5378107926", - "voter": "babytarazkp" - }, - { - "rshares": "45152199980", - "voter": "asteroids" - }, - { - "rshares": "354640850", - "voter": "gingerbyna" - }, - { - "rshares": "630793106", - "voter": "arctis" - }, - { - "rshares": "1366816350", - "voter": "marlians.ccc" - }, - { - "rshares": "4247948113", - "voter": "thranax" - }, - { - "rshares": "723985000", - "voter": "brutoken" - }, - { - "rshares": "7728303653", - "voter": "fucanglong" - }, - { - "rshares": "1407387202", - "voter": "one.life" - }, - { - "rshares": "53891692176", - "voter": "ufm.pay" - }, - { - "rshares": "36820295758", - "voter": "shtup" - }, - { - "rshares": "46680214666", - "voter": "jk6276.life" - }, - { - "rshares": "1587215709", - "voter": "dappcoder" - }, - { - "rshares": "15279476677", - "voter": "sreypov" - }, - { - "rshares": "24292424", - "voter": "vxc.stem" - }, - { - "rshares": "156487816234", - "voter": "urtrailer" - }, - { - "rshares": "660779969", - "voter": "bruneo" - }, - { - "rshares": "325297607", - "voter": "stemd" - }, - { - "rshares": "535055666", - "voter": "therealyme" - }, - { - "rshares": "359805893", - "voter": "yggdrasil.laguna" - }, - { - "rshares": "237374840579", - "voter": "huaren.news" - }, - { - "rshares": "3075632569", - "voter": "goodreader" - }, - { - "rshares": "52008811", - "voter": "gerbo" - }, - { - "rshares": "31639564342", - "voter": "splatts" - }, - { - "rshares": "1095850225", - "voter": "khalpal" - }, - { - "rshares": "4254761156", - "voter": "greatnorthcrypto" - }, - { - "rshares": "3772894135", - "voter": "mvanhauten" - }, - { - "rshares": "642588051", - "voter": "angel33" - }, - { - "rshares": "2611168379", - "voter": "ribary" - }, - { - "rshares": "10996534213", - "voter": "stevespeaks" - }, - { - "rshares": "62316528000", - "voter": "lacking" - }, - { - "rshares": "265155701", - "voter": "toni.pal" - }, - { - "rshares": "47343835148", - "voter": "mice-k" - }, - { - "rshares": "10666227133", - "voter": "staryao" - }, - { - "rshares": "51423896918", - "voter": "davidlionfish" - }, - { - "rshares": "1323515011", - "voter": "dalz4" - }, - { - "rshares": "3980044506", - "voter": "curamax" - }, - { - "rshares": "1605106742", - "voter": "steemcityrewards" - }, - { - "rshares": "2091249948", - "voter": "dpend.active" - }, - { - "rshares": "703859717", - "voter": "artdescry" - }, - { - "rshares": "21306190335", - "voter": "polish.hive" - }, - { - "rshares": "10897895329", - "voter": "velinov86" - }, - { - "rshares": "0", - "voter": "imalmani" - }, - { - "rshares": "649856285", - "voter": "brianbrogan1960" - }, - { - "rshares": "196255951432", - "voter": "dcityrewards" - }, - { - "rshares": "1916045647", - "voter": "archon-mining" - }, - { - "rshares": "3611145291", - "voter": "vibrasphere" - }, - { - "rshares": "3845128474", - "voter": "weloveart" - }, - { - "rshares": "334037025374", - "voter": "ronavel" - }, - { - "rshares": "199027119604", - "voter": "hivecur" - }, - { - "rshares": "296834186", - "voter": "kingturd" - }, - { - "rshares": "110181936855", - "voter": "jelly13" - }, - { - "rshares": "1218230372", - "voter": "hivebuilderteam" - }, - { - "rshares": "707633210", - "voter": "iwillsurvive" - }, - { - "rshares": "2540722454", - "voter": "w-splatts" - }, - { - "rshares": "865387102", - "voter": "andreinacdmx" - }, - { - "rshares": "7722754871", - "voter": "hivecur2" - } + "active_votes": [ + { + "rshares": "480436179104", + "voter": "barrie" + }, + { + "rshares": "7864449914272", + "voter": "steempty" + }, + { + "rshares": "231705234180", + "voter": "anonymous" + }, + { + "rshares": "16854862331350", + "voter": "rainman" + }, + { + "rshares": "14446969817383", + "voter": "summon" + }, + { + "rshares": "25305686361517", + "voter": "ned" + }, + { + "rshares": "35326666852152", + "voter": "jamesc" + }, + { + "rshares": "4264966375681", + "voter": "riverhead" + }, + { + "rshares": "2331280387575", + "voter": "badassmother" + }, + { + "rshares": "2097108315061", + "voter": "hr1" + }, + { + "rshares": "118474244256", + "voter": "sandra" + }, + { + "rshares": "186985754668", + "voter": "svk" + }, + { + "rshares": "1112765112473", + "voter": "ihashfury" + }, + { + "rshares": "1120603805124", + "voter": "rossco99" + }, + { + "rshares": "139902157720", + "voter": "liondani" + }, + { + "rshares": "2642718616169", + "voter": "wang" + }, + { + "rshares": "24281627442", + "voter": "jaewoocho" + }, + { + "rshares": "6243689624471", + "voter": "steemit200" + }, + { + "rshares": "1868926634967", + "voter": "xeroc" + }, + { + "rshares": "6514602351120", + "voter": "complexring" + }, + { + "rshares": "6410652893701", + "voter": "clayop" + }, + { + "rshares": "6132075386062", + "voter": "witness.svk" + }, + { + "rshares": "1772458968810", + "voter": "joseph" + }, + { + "rshares": "4727274896444", + "voter": "au1nethyb1" + }, + { + "rshares": "494824460005", + "voter": "recursive2" + }, + { + "rshares": "3458312417787", + "voter": "recursive" + }, + { + "rshares": "686881929841", + "voter": "boombastic" + }, + { + "rshares": "91206564426", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6953910678", + "voter": "bingo-0" + }, + { + "rshares": "1330823260969", + "voter": "steempower" + }, + { + "rshares": "450758929058", + "voter": "boatymcboatface" + }, + { + "rshares": "1191961702407", + "voter": "cass" + }, + { + "rshares": "10604743495", + "voter": "idol" + }, + { + "rshares": "6904136925", + "voter": "nexusdev" + }, + { + "rshares": "783330802369", + "voter": "steemrollin" + }, + { + "rshares": "5146683930", + "voter": "sakr" + }, + { + "rshares": "296262169682", + "voter": "chitty" + }, + { + "rshares": "117668471628", + "voter": "linouxis9" + }, + { + "rshares": "82315328878", + "voter": "unosuke" + }, + { + "rshares": "3109715701", + "voter": "yefet" + }, + { + "rshares": "16257411149", + "voter": "brindleswan" + }, + { + "rshares": "1799714267", + "voter": "jocelyn" + }, + { + "rshares": "74263607249", + "voter": "nenad-ristic" + }, + { + "rshares": "79806365559", + "voter": "easteagle13" + }, + { + "rshares": "17258698670", + "voter": "jademont" + }, + { + "rshares": "74888702310", + "voter": "eeks" + }, + { + "rshares": "508866333", + "voter": "paco-steem" + }, + { + "rshares": "6128712690", + "voter": "spaninv" + }, + { + "rshares": "31076852778", + "voter": "instructor2121" + }, + { + "rshares": "-12893763252", + "voter": "james-show" + }, + { + "rshares": "2068009075", + "voter": "gekko" + }, + { + "rshares": "336346989448", + "voter": "teamsteem" + }, + { + "rshares": "577046508309", + "voter": "nanzo-scoop" + }, + { + "rshares": "13067769111", + "voter": "fact" + }, + { + "rshares": "169323765740", + "voter": "steve-walschot" + }, + { + "rshares": "10036865820", + "voter": "kefkius" + }, + { + "rshares": "47419915237", + "voter": "hannixx42" + }, + { + "rshares": "183044162935", + "voter": "mummyimperfect" + }, + { + "rshares": "57489294954", + "voter": "oaldamster" + }, + { + "rshares": "268804254", + "voter": "coar" + }, + { + "rshares": "109398386804", + "voter": "asch" + }, + { + "rshares": "1413643352", + "voter": "murh" + }, + { + "rshares": "2380104240", + "voter": "error" + }, + { + "rshares": "5853981249", + "voter": "marta-zaidel" + }, + { + "rshares": "40916611985", + "voter": "ranko-k" + }, + { + "rshares": "1135543735246", + "voter": "cyber" + }, + { + "rshares": "50798219281", + "voter": "ak2020" + }, + { + "rshares": "260089147904", + "voter": "billbutler" + }, + { + "rshares": "7897515214", + "voter": "thecryptofiend" + }, + { + "rshares": "32296517134", + "voter": "drinkzya" + }, + { + "rshares": "3923236237211", + "voter": "satoshifund" + }, + { + "rshares": "397051543", + "voter": "stiletto" + }, + { + "rshares": "56682668949", + "voter": "juanmiguelsalas" + }, + { + "rshares": "583788541552", + "voter": "andrarchy" + }, + { + "rshares": "112713462099", + "voter": "kenny-crane" + }, + { + "rshares": "17036364912", + "voter": "samether" + }, + { + "rshares": "33767337247", + "voter": "ratel" + }, + { + "rshares": "54688824107", + "voter": "thecryptodrive" + }, + { + "rshares": "4699576112", + "voter": "dahaz159" + }, + { + "rshares": "379204818665", + "voter": "kaylinart" + }, + { + "rshares": "552432841732", + "voter": "infovore" + }, + { + "rshares": "13355491837", + "voter": "facer" + }, + { + "rshares": "263013790227", + "voter": "trogdor" + }, + { + "rshares": "4675654152", + "voter": "tee-em" + }, + { + "rshares": "31336803829", + "voter": "michaelx" + }, + { + "rshares": "5946252630", + "voter": "mark-waser" + }, + { + "rshares": "17023109715", + "voter": "albertogm" + }, + { + "rshares": "116594641815", + "voter": "geoffrey" + }, + { + "rshares": "42673423694", + "voter": "kimziv" + }, + { + "rshares": "46235030853", + "voter": "honeythief" + }, + { + "rshares": "82866843499", + "voter": "emily-cook" + }, + { + "rshares": "91972176401", + "voter": "mctiller" + }, + { + "rshares": "35412152853", + "voter": "cryptoiskey" + }, + { + "rshares": "11723743800", + "voter": "primus" + }, + { + "rshares": "484592257", + "voter": "mrhankeh" + }, + { + "rshares": "38897615588", + "voter": "clement" + }, + { + "rshares": "46178109682", + "voter": "isteemit" + }, + { + "rshares": "68580548647", + "voter": "bacchist" + }, + { + "rshares": "72899731827", + "voter": "venuspcs" + }, + { + "rshares": "3324885062", + "voter": "michaellamden68" + }, + { + "rshares": "179676652871", + "voter": "asmolokalo" + }, + { + "rshares": "38569797449", + "voter": "good-karma" + }, + { + "rshares": "453653624734", + "voter": "roelandp" + }, + { + "rshares": "3347929950", + "voter": "orly" + }, + { + "rshares": "45472590951", + "voter": "firepower" + }, + { + "rshares": "255388351", + "voter": "mstang83" + }, + { + "rshares": "19227034654", + "voter": "hakise" + }, + { + "rshares": "17256371639", + "voter": "r4fken" + }, + { + "rshares": "25548776759", + "voter": "tcfxyz" + }, + { + "rshares": "7076198200", + "voter": "futurefood" + }, + { + "rshares": "142765809551", + "voter": "derekareith" + }, + { + "rshares": "32325400002", + "voter": "picokernel" + }, + { + "rshares": "10594872684", + "voter": "seanmchughart" + }, + { + "rshares": "766081509", + "voter": "busser" + }, + { + "rshares": "1296482376779", + "voter": "renohq" + }, + { + "rshares": "18840499998", + "voter": "ausbitbank" + }, + { + "rshares": "1451740615", + "voter": "mixa" + }, + { + "rshares": "2226795955", + "voter": "steem1653" + }, + { + "rshares": "17220499402", + "voter": "sebastien" + }, + { + "rshares": "13516728290", + "voter": "sitaru" + }, + { + "rshares": "308826662759", + "voter": "jesta" + }, + { + "rshares": "34328964595", + "voter": "toxonaut" + }, + { + "rshares": "118752539", + "voter": "snowden" + }, + { + "rshares": "4709018700", + "voter": "thegoodguy" + }, + { + "rshares": "15578903803", + "voter": "aaseb" + }, + { + "rshares": "1107663461", + "voter": "karen13" + }, + { + "rshares": "24973952155", + "voter": "igster" + }, + { + "rshares": "4289492867", + "voter": "dcryptogold" + }, + { + "rshares": "12853559657", + "voter": "domavila" + }, + { + "rshares": "2395414530", + "voter": "dmacshady" + }, + { + "rshares": "23336601075", + "voter": "grolelo" + }, + { + "rshares": "1514372408", + "voter": "kendewitt" + }, + { + "rshares": "89580632", + "voter": "wildchild" + }, + { + "rshares": "1682066491", + "voter": "natali22" + }, + { + "rshares": "44666586658", + "voter": "sbq777t" + }, + { + "rshares": "1953764546", + "voter": "the-future" + }, + { + "rshares": "4296012707", + "voter": "adamt" + }, + { + "rshares": "44807508492", + "voter": "mynameisbrian" + }, + { + "rshares": "179093605311", + "voter": "blueorgy" + }, + { + "rshares": "5008619742", + "voter": "poseidon" + }, + { + "rshares": "360289908808", + "voter": "calaber24p" + }, + { + "rshares": "4210919359", + "voter": "fubar-bdhr" + }, + { + "rshares": "119399264", + "voter": "nedrob" + }, + { + "rshares": "16044930360", + "voter": "heimindanger" + }, + { + "rshares": "7311842917", + "voter": "geronimo" + }, + { + "rshares": "3355524755", + "voter": "bones" + }, + { + "rshares": "20338607929", + "voter": "bendjmiller222" + }, + { + "rshares": "5228680253", + "voter": "bitcoiner" + }, + { + "rshares": "3754893033", + "voter": "tarindel" + }, + { + "rshares": "3786022381", + "voter": "azurejasper" + }, + { + "rshares": "30851492146", + "voter": "deanliu" + }, + { + "rshares": "599141666", + "voter": "siol" + }, + { + "rshares": "5479123729", + "voter": "rainchen" + }, + { + "rshares": "5690877975", + "voter": "sharker" + }, + { + "rshares": "34508226149", + "voter": "sauravrungta" + }, + { + "rshares": "530196643", + "voter": "qonq99" + }, + { + "rshares": "53839881372", + "voter": "jl777" + }, + { + "rshares": "7837739118", + "voter": "lostnuggett" + }, + { + "rshares": "30002446832", + "voter": "zaebars" + }, + { + "rshares": "1808058993", + "voter": "yarly" + }, + { + "rshares": "272610758", + "voter": "yarly2" + }, + { + "rshares": "273018668", + "voter": "yarly3" + }, + { + "rshares": "157733805", + "voter": "yarly4" + }, + { + "rshares": "158624349", + "voter": "yarly5" + }, + { + "rshares": "90416287", + "voter": "yarly7" + }, + { + "rshares": "838465852", + "voter": "raymonjohnstone" + }, + { + "rshares": "23815723291", + "voter": "masterinvestor" + }, + { + "rshares": "50619397", + "voter": "steemchain" + }, + { + "rshares": "50619397", + "voter": "whalepool" + }, + { + "rshares": "206059171", + "voter": "sergey44" + }, + { + "rshares": "117016257", + "voter": "mxo8" + }, + { + "rshares": "7787748060", + "voter": "summonerrk" + }, + { + "rshares": "197539708", + "voter": "strictlybusiness" + }, + { + "rshares": "1234205003", + "voter": "mohammed123" + }, + { + "rshares": "5166865550", + "voter": "bbrewer" + }, + { + "rshares": "942251145", + "voter": "happyphoenix" + }, + { + "rshares": "20257716778", + "voter": "krabgat" + }, + { + "rshares": "4543551843", + "voter": "proto" + }, + { + "rshares": "658330815", + "voter": "curator" + }, + { + "rshares": "7211602623", + "voter": "sisterholics" + }, + { + "rshares": "437530299", + "voter": "yarly10" + }, + { + "rshares": "1365336577", + "voter": "alex.chien" + }, + { + "rshares": "234176102", + "voter": "yarly11" + }, + { + "rshares": "81879061", + "voter": "yarly12" + }, + { + "rshares": "3675263114", + "voter": "tygergamer" + }, + { + "rshares": "3627578747", + "voter": "bkkshadow" + }, + { + "rshares": "11567371620", + "voter": "dimitarj" + }, + { + "rshares": "817422571", + "voter": "bullionstackers" + }, + { + "rshares": "3082906297", + "voter": "dmilash" + }, + { + "rshares": "2002481686", + "voter": "andreynoch" + }, + { + "rshares": "110940646", + "voter": "cryptoz" + }, + { + "rshares": "3391999835", + "voter": "glitterpig" + }, + { + "rshares": "6404274840", + "voter": "shortcut" + }, + { + "rshares": "128587928653", + "voter": "steemdrive" + }, + { + "rshares": "1075365048", + "voter": "metaflute" + }, + { + "rshares": "58218132689", + "voter": "gomeravibz" + }, + { + "rshares": "2298169701", + "voter": "taker" + }, + { + "rshares": "65485650", + "voter": "dras" + }, + { + "rshares": "6519151447", + "voter": "nekromarinist" + }, + { + "rshares": "6880289904", + "voter": "theprophet" + }, + { + "rshares": "240147448", + "voter": "frozendota" + }, + { + "rshares": "15543734691", + "voter": "felixxx" + }, + { + "rshares": "3432112427", + "voter": "merej99" + }, + { + "rshares": "254880160829", + "voter": "laonie" + }, + { + "rshares": "24852935259", + "voter": "rawnetics" + }, + { + "rshares": "22374728157", + "voter": "thebluepanda" + }, + { + "rshares": "25618981790", + "voter": "laonie1" + }, + { + "rshares": "26132274895", + "voter": "laonie2" + }, + { + "rshares": "26141438708", + "voter": "laonie3" + }, + { + "rshares": "25094797142", + "voter": "laoyao" + }, + { + "rshares": "65214616", + "voter": "modogg" + }, + { + "rshares": "7958908678", + "voter": "myfirst" + }, + { + "rshares": "51767495130", + "voter": "somebody" + }, + { + "rshares": "1935723185", + "voter": "flysaga" + }, + { + "rshares": "6864125594", + "voter": "brendio" + }, + { + "rshares": "2082514282", + "voter": "gmurph" + }, + { + "rshares": "72860205", + "voter": "kurzer42" + }, + { + "rshares": "11435966181", + "voter": "midnightoil" + }, + { + "rshares": "78269782470", + "voter": "mibenkito" + }, + { + "rshares": "2375155298", + "voter": "kalimor" + }, + { + "rshares": "4276738846", + "voter": "ullikume" + }, + { + "rshares": "2735302379", + "voter": "darrenturetzky" + }, + { + "rshares": "59414599", + "voter": "michellek" + }, + { + "rshares": "26136684196", + "voter": "laonie4" + }, + { + "rshares": "26133889368", + "voter": "laonie5" + }, + { + "rshares": "26130809772", + "voter": "laonie6" + }, + { + "rshares": "26126568283", + "voter": "laonie7" + }, + { + "rshares": "5977415250", + "voter": "kurtbeil" + }, + { + "rshares": "26122787391", + "voter": "laonie8" + }, + { + "rshares": "26119897476", + "voter": "laonie9" + }, + { + "rshares": "3300371180", + "voter": "steemleak" + }, + { + "rshares": "28583578460", + "voter": "xiaohui" + }, + { + "rshares": "1980457070", + "voter": "t3ran13" + }, + { + "rshares": "7834943379", + "voter": "mevilkingdom" + }, + { + "rshares": "21531331546", + "voter": "jphamer1" + }, + { + "rshares": "11056722867", + "voter": "ekitcho" + }, + { + "rshares": "127379962", + "voter": "bigsambucca" + }, + { + "rshares": "1504058180", + "voter": "elfkitchen" + }, + { + "rshares": "93154573622", + "voter": "joele" + }, + { + "rshares": "5999670912", + "voter": "oflyhigh" + }, + { + "rshares": "2078540879", + "voter": "paynode" + }, + { + "rshares": "62400081859", + "voter": "sirwinchester" + }, + { + "rshares": "122933349", + "voter": "agussudaryanto" + }, + { + "rshares": "894298402", + "voter": "xiaokongcom" + }, + { + "rshares": "1802649539", + "voter": "xianjun" + }, + { + "rshares": "61313637", + "voter": "jfelton5" + }, + { + "rshares": "73061236", + "voter": "evgenyche" + }, + { + "rshares": "70633121", + "voter": "stevescriber" + }, + { + "rshares": "4097488430", + "voter": "bledarus" + }, + { + "rshares": "52467942", + "voter": "loli" + }, + { + "rshares": "53638070", + "voter": "nano2nd" + }, + { + "rshares": "118127541", + "voter": "microluck" + }, + { + "rshares": "187339808", + "voter": "lisadang" + }, + { + "rshares": "9426175065", + "voter": "theb0red1" + }, + { + "rshares": "2057906517", + "voter": "chinadaily" + }, + { + "rshares": "31193669396", + "voter": "kyriacos" + }, + { + "rshares": "59021275", + "voter": "cryptoblu" + }, + { + "rshares": "59014859", + "voter": "instructor" + }, + { + "rshares": "7981765563", + "voter": "lemouth" + }, + { + "rshares": "739008163112", + "voter": "dollarvigilante" + }, + { + "rshares": "18699439170", + "voter": "anotherjoe" + }, + { + "rshares": "60945251", + "voter": "saveliy" + }, + { + "rshares": "99328137981", + "voter": "serejandmyself" + }, + { + "rshares": "4877223734", + "voter": "almerri" + }, + { + "rshares": "728677907", + "voter": "alexma3x" + }, + { + "rshares": "9824813120", + "voter": "gvargas123" + }, + { + "rshares": "443801352", + "voter": "keepdoodling" + }, + { + "rshares": "3657683169", + "voter": "shneakysquirrel" + }, + { + "rshares": "278004039", + "voter": "steevc" + }, + { + "rshares": "3341359657", + "voter": "movievertigo" + }, + { + "rshares": "70361224", + "voter": "vasilii" + }, + { + "rshares": "26113221925", + "voter": "laonie10" + }, + { + "rshares": "362426778", + "voter": "mrlogic" + }, + { + "rshares": "62362905", + "voter": "steempipe" + }, + { + "rshares": "55543445", + "voter": "bitchplease" + }, + { + "rshares": "79273566479", + "voter": "someguy123" + }, + { + "rshares": "90827598056", + "voter": "barrycooper" + }, + { + "rshares": "3572205128", + "voter": "stillsafe" + }, + { + "rshares": "76843163", + "voter": "joelbow" + }, + { + "rshares": "28822571115", + "voter": "hilarski" + }, + { + "rshares": "2149644744", + "voter": "therealpaul" + }, + { + "rshares": "4580066391", + "voter": "steemitpatina" + }, + { + "rshares": "5178202476", + "voter": "silverbug2000" + }, + { + "rshares": "55859919", + "voter": "rickmiller" + }, + { + "rshares": "1233668048", + "voter": "lenar" + }, + { + "rshares": "10020064820", + "voter": "etcmike" + }, + { + "rshares": "61596105", + "voter": "uri-bruck" + }, + { + "rshares": "5154589910", + "voter": "nulliusinverba" + }, + { + "rshares": "1698796327", + "voter": "runridefly" + }, + { + "rshares": "57841858", + "voter": "dianaju" + }, + { + "rshares": "88019548", + "voter": "uziriel" + }, + { + "rshares": "57530129", + "voter": "mstoni" + }, + { + "rshares": "4592499069", + "voter": "richardcrill" + }, + { + "rshares": "25230942954", + "voter": "laonie11" + }, + { + "rshares": "1687924866", + "voter": "eight-rad" + }, + { + "rshares": "62783765", + "voter": "lovetosteemit" + }, + { + "rshares": "1660563580", + "voter": "davidjkelley" + }, + { + "rshares": "4350110165", + "voter": "baro" + }, + { + "rshares": "9060248806", + "voter": "sponge-bob" + }, + { + "rshares": "4765474309", + "voter": "l0k1" + }, + { + "rshares": "15558969971", + "voter": "digital-wisdom" + }, + { + "rshares": "494724739", + "voter": "areynolds" + }, + { + "rshares": "3708378555", + "voter": "ethical-ai" + }, + { + "rshares": "54247498", + "voter": "freesteem" + }, + { + "rshares": "2477345340", + "voter": "fajrilgooner" + }, + { + "rshares": "2222639041", + "voter": "matthewtiii" + }, + { + "rshares": "55401224", + "voter": "walternz" + }, + { + "rshares": "6826713536", + "voter": "jwaser" + }, + { + "rshares": "852820572", + "voter": "tatianka" + }, + { + "rshares": "12020525779", + "voter": "doitvoluntarily" + }, + { + "rshares": "56439878", + "voter": "phusionphil" + }, + { + "rshares": "607704096", + "voter": "kev7000" + }, + { + "rshares": "1018487810", + "voter": "zettar" + }, + { + "rshares": "55736056", + "voter": "lighter" + }, + { + "rshares": "207196967560", + "voter": "asksisk" + }, + { + "rshares": "25848472434", + "voter": "dubi" + }, + { + "rshares": "2673758412", + "voter": "bwaser" + }, + { + "rshares": "6400398189", + "voter": "dexter-k" + }, + { + "rshares": "50751176", + "voter": "roadhog" + }, + { + "rshares": "350998373", + "voter": "panther" + }, + { + "rshares": "1784221363", + "voter": "alina1" + }, + { + "rshares": "50639382", + "voter": "doggnostic" + }, + { + "rshares": "1094895432", + "voter": "wulfmeister" + }, + { + "rshares": "659556912", + "voter": "ct-gurus" + }, + { + "rshares": "348073541", + "voter": "bones261" + }, + { + "rshares": "387894501497", + "voter": "charlieshrem" + }, + { + "rshares": "61786622160", + "voter": "tracemayer" + }, + { + "rshares": "9049304130", + "voter": "brains" + }, + { + "rshares": "54448999", + "voter": "onlineworker" + }, + { + "rshares": "50210467", + "voter": "post-successful" + }, + { + "rshares": "689134944", + "voter": "jessicanicklos" + }, + { + "rshares": "633657150", + "voter": "bones555" + }, + { + "rshares": "54919358", + "voter": "steem4fobs" + }, + { + "rshares": "492992904", + "voter": "echoesinthemind" + }, + { + "rshares": "53397626", + "voter": "f1111111" + }, + { + "rshares": "2084637414", + "voter": "steemsquad" + }, + { + "rshares": "574180710", + "voter": "anomaly" + }, + { + "rshares": "27665434494", + "voter": "tarekadam" + }, + { + "rshares": "2399791213", + "voter": "ellepdub" + }, + { + "rshares": "51890765", + "voter": "gregorygarcia" + }, + { + "rshares": "57056918", + "voter": "inarix03" + }, + { + "rshares": "573904238", + "voter": "ola1" + }, + { + "rshares": "849039554", + "voter": "jbaker585" + }, + { + "rshares": "5522323762", + "voter": "michelle.gent" + }, + { + "rshares": "11700805109", + "voter": "herpetologyguy" + }, + { + "rshares": "58261815", + "voter": "everittdmickey" + }, + { + "rshares": "53548226", + "voter": "mari5555na" + }, + { + "rshares": "4813549151", + "voter": "morgan.waser" + }, + { + "rshares": "50602980", + "voter": "cfisher" + }, + { + "rshares": "51240567", + "voter": "billkappa442" + }, + { + "rshares": "51236745", + "voter": "niiboye" + }, + { + "rshares": "51227561", + "voter": "battalar" + }, + { + "rshares": "1157070714", + "voter": "anns" + }, + { + "rshares": "50875769", + "voter": "cyan" + }, + { + "rshares": "50873654", + "voter": "palladium" + }, + { + "rshares": "50796122", + "voter": "factom" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "827252367", + "voter": "bapparabi" + }, + { + "rshares": "3389664065", + "voter": "dodders007" + }, + { + "rshares": "3687326823", + "voter": "strong-ai" + }, + { + "rshares": "161225748", + "voter": "iliyaa" + }, + { + "rshares": "162925257", + "voter": "uct" + }, + { + "rshares": "1354011808", + "voter": "rusteemitblog" + }, + { + "rshares": "158798473", + "voter": "zapply" + }, + { + "rshares": "201362779", + "voter": "mgibson" + }, + { + "rshares": "157118197", + "voter": "rage" + }, + { + "rshares": "159973989", + "voter": "capcom" + }, + { + "rshares": "153699193", + "voter": "allgoodthings" + }, + { + "rshares": "159531007", + "voter": "benetton" + }, + { + "rshares": "159425365", + "voter": "tipsandtricks" + }, + { + "rshares": "159318360", + "voter": "stimmt" + }, + { + "rshares": "159175576", + "voter": "fallout" + }, + { + "rshares": "159025535", + "voter": "xtreme" + }, + { + "rshares": "944924940", + "voter": "modernbukowski" + }, + { + "rshares": "158632601", + "voter": "cream" + }, + { + "rshares": "158637372", + "voter": "alterego" + }, + { + "rshares": "158602900", + "voter": "steem-wallet" + }, + { + "rshares": "158560941", + "voter": "steemthis" + }, + { + "rshares": "158486055", + "voter": "zendesk" + }, + { + "rshares": "26843428547", + "voter": "goldmatters" + }, + { + "rshares": "81051650", + "voter": "dealzgal" + }, + { + "rshares": "158230871", + "voter": "helepa" + }, + { + "rshares": "199633972", + "voter": "rishi556" + }, + { + "rshares": "92745520", + "voter": "storage" + }, + { + "rshares": "188144802", + "voter": "antaja" + }, + { + "rshares": "145960715", + "voter": "raph" + }, + { + "rshares": "151162552", + "voter": "dougkarr" + }, + { + "rshares": "1586499055", + "voter": "slammr76" + }, + { + "rshares": "73844343", + "voter": "blackmarket" + }, + { + "rshares": "79990132", + "voter": "gifts" + }, + { + "rshares": "85598308", + "voter": "expat" + }, + { + "rshares": "134906258", + "voter": "steemtrail" + }, + { + "rshares": "153178035", + "voter": "royfft" + }, + { + "rshares": "112446078", + "voter": "paulocouto" + }, + { + "rshares": "155872526", + "voter": "countofdelphi" + }, + { + "rshares": "151306241", + "voter": "tnemm.atiaw" + }, + { + "rshares": "154295967", + "voter": "harleyismydog" + }, + { + "rshares": "148041723", + "voter": "newsfeed" + }, + { + "rshares": "144957585", + "voter": "sawgunner13" + }, + { + "rshares": "147818170", + "voter": "dirlei.sdias" + } + ], + "author": "steve-walschot", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "# Time for another upgrade of SteemPay.io! A lot of work has been done behind the scenes, and here's a brief overview:\n\n\n---\n\n\n\n\n\n# Pay on site\n\n### Users will be able to make their payments straight from the payments page using a 2 step sliding form. \n\n\n\nhttp://i.imgur.com/iinyGFl.png\n\n\n\nThis means no more need to open another tab page, fill in all the details in your wallet, and returning to SteemPay. Both the password and the active private key can be used to broadcast the transaction. \n\n\n\nSteemPay **does not** encourage password storing, however, there is an option available for those who prefer to save their password in the browser's ***localstorage.*** A warning pop up will appear explaining the risks of storing passwords in the browser.\n\n\n\nAfter a successful login, the user will see a quick overview of his available balances, and another confirmation is required to finalize the transaction straight from the payment window.\n\n\n\n\n\n# Mobile wallet\n\n### The mobile wallet is up and running, but my code seems like a mess due to trial and error. \n\nA **bounty** will be placed for someone to cleanup everything and make some minor corrections so the first version can be released very soon (and get approved on the official android & iOS stores). I feel the need to encourage bounties, so people can become engaged with the community, and hopefully I'll discover new talent to join me on the further expansion of SteemPay.\n\n\n\n# SteemFEST 1\n\nSteemPay will donate some money to SteemFEST 1. Me and @roelandp still need to work out the details, but SteemPay will be present and setup a donation terminal where users are free to send some donations towards the organization by using the mobile wallet with QR support (plans may still change). \n\n\n\n# Hardware upgrade\n\nYet another server upgrade was needed to house all services related to SteemPay. This includes many other side projects that will be announced later on. This should be the final server upgrade for SteemPay and related services. \n\n\n\nThe DNS is still propagating, so you might not see the recent changes on SteemPay.io yet.\n\n\n\n# General statistics implantation\n\nA lightweight database will be kept storing nothing but the transaction amounts processed trough SteemPay. This serves for having some overview on the monthly growth of the transactions, as well as the amounts processed. Every month, the statistics will be published.\n\n\n\n# Steem on!", + "category": "steempay", + "children": 14, + "created": "2016-09-14T06:19:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.imgur.com/iinyGFl.png" ], - "author": "themarkymark", - "author_payout_value": "0.000 HBD", - "author_reputation": 78.7, - "author_role": "admin", - "author_title": "STEMGeeks Team", - "beneficiaries": [], - "blacklists": [], - "body": "![image.png](https://files.peakd.com/file/peakd-hive/themarkymark/J8fXUt5a-image.png)\n\nIn my previous post I talked about the Raspberry Pi case and accessories I got for my recent Raspberry Pi 4 order. \n\n![image.png](https://files.peakd.com/file/peakd-hive/themarkymark/niBeOUBq-image.png)\n\nWhile I do like this case, for $15.99 it includes a 40mm fan, heat sinks, 3A power supply with flip switch, and a nice looking case.\n\nFor roughly the same amount of money as the official case and power supply, you get heat sinks, fan, and a power supply with a built-in switch. \n\nI think I have found better, in fact, this case is amazing. It does come at a premium though.\n\n# Introducing the Argon One Raspberry Pi 4 Case\n\n![image.png](https://files.peakd.com/file/peakd-hive/themarkymark/4npKrkJK-image.png)\n\nWhile it is rather large, you will see why in a few moments.\n\nThis case features a breakaway panel to get to GPIO pins easily. While keeping the case together. This panel is magnetic and not just a snap in and out.\n\n![image.png](https://files.peakd.com/file/peakd-hive/themarkymark/geiMSEc4-image.png)\n\nThe case also features a daughterboard that includes a fan and moves all the ports to the back of the case so they are all in one place. I really love these set-top cases that do this.\n\n![image.png](https://files.peakd.com/file/peakd-hive/themarkymark/z4Bd8qso-image.png)\n\nYou would think that was enough to convince you this case is amazing, but I am not done! The case includes a power switch as well as a script to add smart functionality similar to a PC.\n\n![image.png](https://files.peakd.com/file/peakd-hive/themarkymark/8DzdtVCE-image.png)\n\nA short press of the Power button, while power is off, will turn on the Raspberry Pi. \n\nWhile the power is on, you can long-press (3+ seconds) the button and it will initiate a safe power down and remove power.\n\nIf you double-tap the power button, it will initiate a reboot.\n\nIf you are having trouble with the Pi you can do a long press (5+ seconds) and it will completely power off the Pi with a forced shutdown.\n\nThe Argon One case also includes a smart fan script that will adjust the fan speed based on the CPU temperatures.\n\nThe top of the case is metal and acts as a large heat sink for the Raspberry Pi.\n\nThis case is pure genius but comes at a premium, the case alone is $25 on Amazon and does not include a USB-C power supply which can be purchased separately for $8-10 typically or you can get the bundle for $36. This case isn't cheap and starts to get into PC price territory, but it does come jammed packed with features.\n\nI haven't tried it yet, but glancing over the scripts included with the Argon One they can be modified for any case to give smart fan control and a smart power button.\n\nYou can look over the installation script [here](curl https://download.argon40.com/argon1.sh | bash)\n\nAll Argon One Case images are from the Argon One [website](https://www.argon40.com/argon-one-raspberry-pi-4-case.html)\n\n---\n\n
Securely chat with me on [Keybase](https://keybase.io/officialmarky)\n
https://images.hive.blog/0x0/https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png
\n#
[Why you should vote me as witness](https://peakd.com/witness-category/@themarkymark/why-you-should-vote-for-themarkymark-as-witness)
#", - "category": "hive-163521", - "children": 2, - "community": "hive-163521", - "community_title": "STEMGeeks", - "created": "2020-07-07T16:56:27", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://files.peakd.com/file/peakd-hive/themarkymark/J8fXUt5a-image.png", - "https://files.peakd.com/file/peakd-hive/themarkymark/niBeOUBq-image.png", - "https://files.peakd.com/file/peakd-hive/themarkymark/4npKrkJK-image.png", - "https://files.peakd.com/file/peakd-hive/themarkymark/geiMSEc4-image.png", - "https://files.peakd.com/file/peakd-hive/themarkymark/z4Bd8qso-image.png", - "https://files.peakd.com/file/peakd-hive/themarkymark/8DzdtVCE-image.png", - "https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png" - ], - "links": [ - "https://www.argon40.com/argon-one-raspberry-pi-4-case.html", - "https://keybase.io/officialmarky", - "/witness-category/@themarkymark/why-you-should-vote-for-themarkymark-as-witness" - ], - "tags": [ - "hive-163521", - "raspberrypi", - "technology", - "palnet", - "neoxian", - "gadgets", - "geek" - ], - "users": [ - "themarkymark" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 64822919570451, - "payout": 25.689, - "payout_at": "2020-07-14T16:56:27", - "pending_payout_value": "25.689 HBD", - "percent_steem_dollars": 10000, - "permlink": "is-this-the-best-raspberry-pi-4-case-ever-designed", - "post_id": 86935139, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 3.0, - "gray": false, - "hide": false, - "total_votes": 345 - }, - "title": "Is this the best Raspberry Pi 4 case ever designed?", - "updated": "2020-07-07T16:56:27", - "url": "/hive-163521/@themarkymark/is-this-the-best-raspberry-pi-4-case-ever-designed" - }, - { - "active_votes": [ - { - "rshares": "93390174273", - "voter": "tombstone" - }, - { - "rshares": "208171647273", - "voter": "onealfa" - }, - { - "rshares": "1148958992915", - "voter": "kingscrown" - }, - { - "rshares": "2107018608307", - "voter": "kevinwong" - }, - { - "rshares": "473506633363", - "voter": "mark-waser" - }, - { - "rshares": "224606002559", - "voter": "mammasitta" - }, - { - "rshares": "496232273055", - "voter": "gerber" - }, - { - "rshares": "58822452757", - "voter": "daan" - }, - { - "rshares": "544092097384", - "voter": "ezzy" - }, - { - "rshares": "8576783136", - "voter": "mrwang" - }, - { - "rshares": "897844238978", - "voter": "livingfree" - }, - { - "rshares": "71512805609", - "voter": "jeffjagoe" - }, - { - "rshares": "1934824402983", - "voter": "meesterboom" - }, - { - "rshares": "790674943623", - "voter": "arcange" - }, - { - "rshares": "648387459572", - "voter": "exyle" - }, - { - "rshares": "8923959125", - "voter": "arconite" - }, - { - "rshares": "1610511014", - "voter": "raphaelle" - }, - { - "rshares": "284930767367", - "voter": "joythewanderer" - }, - { - "rshares": "39017247809", - "voter": "sazbird" - }, - { - "rshares": "8994740347087", - "voter": "jphamer1" - }, - { - "rshares": "1059762227", - "voter": "djennyfloro" - }, - { - "rshares": "67841846991", - "voter": "shanghaipreneur" - }, - { - "rshares": "397741733533", - "voter": "borran" - }, - { - "rshares": "13110236736", - "voter": "azizbd" - }, - { - "rshares": "7668435990", - "voter": "wisbeech" - }, - { - "rshares": "140890496961", - "voter": "netaterra" - }, - { - "rshares": "94463745957", - "voter": "someguy123" - }, - { - "rshares": "60612276544", - "voter": "jlufer" - }, - { - "rshares": "25631294118", - "voter": "por500bolos" - }, - { - "rshares": "206214080614", - "voter": "uwelang" - }, - { - "rshares": "437199515351", - "voter": "digital-wisdom" - }, - { - "rshares": "1855291126", - "voter": "ethical-ai" - }, - { - "rshares": "22603332077", - "voter": "jwaser" - }, - { - "rshares": "180694010128", - "voter": "maarnio" - }, - { - "rshares": "13690470824", - "voter": "bwaser" - }, - { - "rshares": "63149164860", - "voter": "justyy" - }, - { - "rshares": "1452897266", - "voter": "ellepdub" - }, - { - "rshares": "146408839767", - "voter": "herpetologyguy" - }, - { - "rshares": "50942773377", - "voter": "clayboyn" - }, - { - "rshares": "17898001873", - "voter": "freshfund" - }, - { - "rshares": "27575020074", - "voter": "morgan.waser" - }, - { - "rshares": "3500416648", - "voter": "handyman" - }, - { - "rshares": "1928744280", - "voter": "strong-ai" - }, - { - "rshares": "3371038067", - "voter": "r0nd0n" - }, - { - "rshares": "278131796742", - "voter": "techslut" - }, - { - "rshares": "553845981", - "voter": "triviummethod" - }, - { - "rshares": "200007950548", - "voter": "jaybird" - }, - { - "rshares": "-4987956704983", - "voter": "jaki01" - }, - { - "rshares": "1022759907696", - "voter": "created" - }, - { - "rshares": "895342983", - "voter": "technoprogressiv" - }, - { - "rshares": "5091535151", - "voter": "amariespeaks" - }, - { - "rshares": "4400177793404", - "voter": "tarazkp" - }, - { - "rshares": "215785810848", - "voter": "danielsaori" - }, - { - "rshares": "62402100894", - "voter": "fingersik" - }, - { - "rshares": "284395312679", - "voter": "lizanomadsoul" - }, - { - "rshares": "3112472819", - "voter": "marxrab" - }, - { - "rshares": "-3227266335829", - "voter": "davidorcamuriel" - }, - { - "rshares": "140211158635", - "voter": "melinda010100" - }, - { - "rshares": "15014151619", - "voter": "htliao" - }, - { - "rshares": "25586841275", - "voter": "dune69" - }, - { - "rshares": "1875870323245", - "voter": "smasssh" - }, - { - "rshares": "1302846956", - "voter": "morph" - }, - { - "rshares": "375636551552", - "voter": "cryptocurator" - }, - { - "rshares": "2328354559", - "voter": "khussan" - }, - { - "rshares": "6443000391", - "voter": "stackin" - }, - { - "rshares": "67407240993", - "voter": "jerrybanfield" - }, - { - "rshares": "143164335295", - "voter": "followbtcnews" - }, - { - "rshares": "5282720815", - "voter": "aleister" - }, - { - "rshares": "92871300613", - "voter": "swelker101" - }, - { - "rshares": "2649191746", - "voter": "varunpinto" - }, - { - "rshares": "445267669764", - "voter": "isaria" - }, - { - "rshares": "65458634316", - "voter": "stevelivingston" - }, - { - "rshares": "39661523976", - "voter": "schoolforsdg4" - }, - { - "rshares": "1831131633619", - "voter": "galenkp" - }, - { - "rshares": "467787843502", - "voter": "enjar" - }, - { - "rshares": "1458612340", - "voter": "robtheranger" - }, - { - "rshares": "26587195822", - "voter": "sam99" - }, - { - "rshares": "61220258838", - "voter": "crimsonclad" - }, - { - "rshares": "496424795860", - "voter": "drakos" - }, - { - "rshares": "311373730118", - "voter": "paulag" - }, - { - "rshares": "332180581332", - "voter": "jaynie" - }, - { - "rshares": "8116744689", - "voter": "howtostartablog" - }, - { - "rshares": "95528056688", - "voter": "dandesign86" - }, - { - "rshares": "33813695240", - "voter": "jayna" - }, - { - "rshares": "239476267588", - "voter": "ew-and-patterns" - }, - { - "rshares": "1956141205", - "voter": "d-pend" - }, - { - "rshares": "184939539218", - "voter": "benedict08" - }, - { - "rshares": "50951070767", - "voter": "mcoinz79" - }, - { - "rshares": "18356074073", - "voter": "otom" - }, - { - "rshares": "67355576159", - "voter": "jacekw" - }, - { - "rshares": "822412416", - "voter": "dernan" - }, - { - "rshares": "76747083112", - "voter": "codingdefined" - }, - { - "rshares": "162004096480", - "voter": "hope-on-fire" - }, - { - "rshares": "2492122145", - "voter": "shitsignals" - }, - { - "rshares": "8668517859", - "voter": "inquiringtimes" - }, - { - "rshares": "1000844584457", - "voter": "steemvote" - }, - { - "rshares": "18753483163", - "voter": "macchiata" - }, - { - "rshares": "27966786431", - "voter": "pocketrocket" - }, - { - "rshares": "74238365474", - "voter": "tfame3865" - }, - { - "rshares": "99191080004", - "voter": "jasonbu" - }, - { - "rshares": "3897540367", - "voter": "chetanpadliya" - }, - { - "rshares": "826063446", - "voter": "fabiyamada" - }, - { - "rshares": "255542997272", - "voter": "shanibeer" - }, - { - "rshares": "25578607834", - "voter": "steemitph" - }, - { - "rshares": "27292996589", - "voter": "fionasfavourites" - }, - { - "rshares": "178106360633", - "voter": "costanza" - }, - { - "rshares": "33999953653", - "voter": "felander" - }, - { - "rshares": "8695329747", - "voter": "santigs" - }, - { - "rshares": "829942951", - "voter": "kromtar" - }, - { - "rshares": "51255882149", - "voter": "bashadow" - }, - { - "rshares": "3028743207054", - "voter": "stoodkev" - }, - { - "rshares": "24622954680", - "voter": "lmon" - }, - { - "rshares": "9005769284", - "voter": "kimzwarch" - }, - { - "rshares": "41063820427", - "voter": "redouanemez" - }, - { - "rshares": "3861132641", - "voter": "aneukpineung78" - }, - { - "rshares": "28501430831", - "voter": "massivevibration" - }, - { - "rshares": "20225344897", - "voter": "onartbali" - }, - { - "rshares": "1136555847", - "voter": "nurhayati" - }, - { - "rshares": "32813738032", - "voter": "crokkon" - }, - { - "rshares": "434228837025", - "voter": "fbslo" - }, - { - "rshares": "50266891864", - "voter": "accelerator" - }, - { - "rshares": "41209140982", - "voter": "raj808" - }, - { - "rshares": "8234716101", - "voter": "zeky" - }, - { - "rshares": "3097168046", - "voter": "justinparke" - }, - { - "rshares": "116003093918", - "voter": "eastmael" - }, - { - "rshares": "3220453870", - "voter": "yogacoach" - }, - { - "rshares": "336370498778", - "voter": "celestal" - }, - { - "rshares": "118373496612", - "voter": "rosatravels" - }, - { - "rshares": "747982030", - "voter": "osm0sis" - }, - { - "rshares": "498490542123", - "voter": "taskmaster4450" - }, - { - "rshares": "159679789248", - "voter": "roleerob" - }, - { - "rshares": "7319400254", - "voter": "deathwing" - }, - { - "rshares": "459844601193", - "voter": "revisesociology" - }, - { - "rshares": "576109865", - "voter": "superbing" - }, - { - "rshares": "58247671313", - "voter": "espoem" - }, - { - "rshares": "3645312600", - "voter": "superdavey" - }, - { - "rshares": "60856968111", - "voter": "steemmatt" - }, - { - "rshares": "3262869977", - "voter": "asbonclz" - }, - { - "rshares": "12736598104", - "voter": "bxlphabet" - }, - { - "rshares": "533755061", - "voter": "bigdizzle91" - }, - { - "rshares": "63258712045", - "voter": "dinglehopper" - }, - { - "rshares": "25843731938", - "voter": "tawasi" - }, - { - "rshares": "142346680658", - "voter": "josediccus" - }, - { - "rshares": "676702881", - "voter": "liverpool-fan" - }, - { - "rshares": "4700104505", - "voter": "cjsean" - }, - { - "rshares": "25934190136", - "voter": "caladan" - }, - { - "rshares": "686178183959", - "voter": "lays" - }, - { - "rshares": "2162415816", - "voter": "karinxxl" - }, - { - "rshares": "15270834174", - "voter": "joseph1956" - }, - { - "rshares": "10646346899", - "voter": "tradingideas" - }, - { - "rshares": "76861678", - "voter": "blockbrothers" - }, - { - "rshares": "167721860239", - "voter": "emrebeyler" - }, - { - "rshares": "10566211071", - "voter": "maverickinvictus" - }, - { - "rshares": "7840062886", - "voter": "chireerocks" - }, - { - "rshares": "2852711127", - "voter": "evecab" - }, - { - "rshares": "709155882", - "voter": "chintya" - }, - { - "rshares": "134662828594", - "voter": "b00m" - }, - { - "rshares": "35416671981", - "voter": "itchyfeetdonica" - }, - { - "rshares": "2740500227", - "voter": "funtraveller" - }, - { - "rshares": "636514169", - "voter": "shai-hulud" - }, - { - "rshares": "10153184913", - "voter": "howiemac" - }, - { - "rshares": "77305490418", - "voter": "yahialababidi" - }, - { - "rshares": "1358693482", - "voter": "fourfourfun" - }, - { - "rshares": "4535306938", - "voter": "candyboy" - }, - { - "rshares": "131584458119", - "voter": "aussieninja" - }, - { - "rshares": "1035067619", - "voter": "jewel-lover" - }, - { - "rshares": "1023051580", - "voter": "insideoutlet" - }, - { - "rshares": "529016786992", - "voter": "jongolson" - }, - { - "rshares": "43594219910", - "voter": "mountainjewel" - }, - { - "rshares": "54786998164", - "voter": "girolamomarotta" - }, - { - "rshares": "5457547280", - "voter": "payger" - }, - { - "rshares": "736977630", - "voter": "korinkrafting" - }, - { - "rshares": "1123302069", - "voter": "mehta" - }, - { - "rshares": "1830516025", - "voter": "gillianpearce" - }, - { - "rshares": "847447225", - "voter": "a1000carv" - }, - { - "rshares": "38438844743", - "voter": "soufianechakrouf" - }, - { - "rshares": "4394173476", - "voter": "anmeitheal" - }, - { - "rshares": "181149444372", - "voter": "nealmcspadden" - }, - { - "rshares": "9376014549", - "voter": "womenempowerment" - }, - { - "rshares": "58892053932", - "voter": "lynncoyle1" - }, - { - "rshares": "3927277011", - "voter": "davemccoy" - }, - { - "rshares": "11392765031", - "voter": "mermaidvampire" - }, - { - "rshares": "55575347732", - "voter": "manncpt" - }, - { - "rshares": "110771084134", - "voter": "purefood" - }, - { - "rshares": "635859047", - "voter": "durbisrodriguez" - }, - { - "rshares": "29802292764", - "voter": "butterb" - }, - { - "rshares": "20005319623", - "voter": "portugalcoin" - }, - { - "rshares": "46888237960", - "voter": "fullcoverbetting" - }, - { - "rshares": "1861221439", - "voter": "jimcustodio" - }, - { - "rshares": "14782860739", - "voter": "jnmarteau" - }, - { - "rshares": "3805519602", - "voter": "newageinv" - }, - { - "rshares": "309642830896", - "voter": "chronocrypto" - }, - { - "rshares": "3895578150", - "voter": "bishoppeter1" - }, - { - "rshares": "1563311703", - "voter": "superstarxtala" - }, - { - "rshares": "1067330058690", - "voter": "holger80" - }, - { - "rshares": "167914939692", - "voter": "fantasycrypto" - }, - { - "rshares": "41928996362", - "voter": "warpedpoetic" - }, - { - "rshares": "652051064", - "voter": "unconditionalove" - }, - { - "rshares": "14445946219", - "voter": "cadawg" - }, - { - "rshares": "3233145748", - "voter": "ericburgoyne" - }, - { - "rshares": "26344620293", - "voter": "piumadoro" - }, - { - "rshares": "1939076915", - "voter": "moeenali" - }, - { - "rshares": "2203879565", - "voter": "sweetkathy" - }, - { - "rshares": "1235828157", - "voter": "noechie1827" - }, - { - "rshares": "3029266320", - "voter": "pkocjan" - }, - { - "rshares": "1040046451", - "voter": "east.autovote" - }, - { - "rshares": "838801251", - "voter": "ilovepoorpeople" - }, - { - "rshares": "157557579068", - "voter": "barge" - }, - { - "rshares": "14784102555", - "voter": "allyson19" - }, - { - "rshares": "45192852195", - "voter": "bozz" - }, - { - "rshares": "36472277406", - "voter": "beeyou" - }, - { - "rshares": "147137329238", - "voter": "whack.science" - }, - { - "rshares": "6860234498", - "voter": "crypto-econom1st" - }, - { - "rshares": "1547487082", - "voter": "russellstockley" - }, - { - "rshares": "679961579", - "voter": "jasonwaterfalls" - }, - { - "rshares": "6312041499", - "voter": "steempampanga" - }, - { - "rshares": "40569207359", - "voter": "jagoe" - }, - { - "rshares": "49516170387", - "voter": "almi" - }, - { - "rshares": "21063941099", - "voter": "ericha" - }, - { - "rshares": "15156723558", - "voter": "teutonium" - }, - { - "rshares": "8423185587", - "voter": "tubcat" - }, - { - "rshares": "80516833470", - "voter": "simplymike" - }, - { - "rshares": "4877836211", - "voter": "dhingvimal" - }, - { - "rshares": "596484884", - "voter": "fabpoleo24" - }, - { - "rshares": "3802633072", - "voter": "designpod" - }, - { - "rshares": "4169034148", - "voter": "veganomics" - }, - { - "rshares": "26391877629", - "voter": "bestboom" - }, - { - "rshares": "34479802712", - "voter": "abrockman" - }, - { - "rshares": "829941807", - "voter": "zainnyferdhoy" - }, - { - "rshares": "91852544321", - "voter": "ronaldoavelino" - }, - { - "rshares": "217300364444", - "voter": "louis88" - }, - { - "rshares": "1175842728277", - "voter": "dera123" - }, - { - "rshares": "35222990145", - "voter": "nomadicsoul" - }, - { - "rshares": "1050080757624", - "voter": "jkramer" - }, - { - "rshares": "2586601851", - "voter": "beat-the-bookies" - }, - { - "rshares": "8104235046", - "voter": "wolfhart" - }, - { - "rshares": "716487655", - "voter": "yameen" - }, - { - "rshares": "74584261365", - "voter": "braaiboy" - }, - { - "rshares": "28229096172", - "voter": "freddio" - }, - { - "rshares": "3473659748", - "voter": "blainjones" - }, - { - "rshares": "15898187736", - "voter": "allover" - }, - { - "rshares": "75288031740", - "voter": "good-darma" - }, - { - "rshares": "2091653767", - "voter": "asapers" - }, - { - "rshares": "1041966865", - "voter": "rollandthomas" - }, - { - "rshares": "348741417641", - "voter": "steemitbloggers" - }, - { - "rshares": "39807905771", - "voter": "janton" - }, - { - "rshares": "29286153431", - "voter": "globalschool" - }, - { - "rshares": "864002502", - "voter": "feedmytwi" - }, - { - "rshares": "804418227820", - "voter": "sbi3" - }, - { - "rshares": "31942424286", - "voter": "promobot" - }, - { - "rshares": "45700397617", - "voter": "incubot" - }, - { - "rshares": "24056163590", - "voter": "superlao" - }, - { - "rshares": "1934645921", - "voter": "glodniwiedzy" - }, - { - "rshares": "608500830362", - "voter": "friendsofgondor" - }, - { - "rshares": "2449795559", - "voter": "opt2o" - }, - { - "rshares": "6354184637", - "voter": "playdice" - }, - { - "rshares": "6523145053", - "voter": "celinavisaez" - }, - { - "rshares": "1038045231", - "voter": "tronsformer" - }, - { - "rshares": "2300010259639", - "voter": "slobberchops" - }, - { - "rshares": "10615651492", - "voter": "diabonua" - }, - { - "rshares": "77634744655", - "voter": "pladozero" - }, - { - "rshares": "290055952068", - "voter": "nateaguila" - }, - { - "rshares": "7615937118", - "voter": "davidesimoncini" - }, - { - "rshares": "106359484785", - "voter": "enforcer48" - }, - { - "rshares": "7367716440", - "voter": "crypticat" - }, - { - "rshares": "14087866482", - "voter": "akdx" - }, - { - "rshares": "8436199874", - "voter": "khiabels" - }, - { - "rshares": "563882581", - "voter": "gmlgang" - }, - { - "rshares": "9922158194", - "voter": "coinsandchains" - }, - { - "rshares": "46894440300", - "voter": "oldmans" - }, - { - "rshares": "16783774908", - "voter": "johndoer123" - }, - { - "rshares": "96883631028", - "voter": "cryptoandcoffee" - }, - { - "rshares": "1932991271", - "voter": "frejafri" - }, - { - "rshares": "4085519052", - "voter": "dipoabasch" - }, - { - "rshares": "24373733436", - "voter": "samvan" - }, - { - "rshares": "837069526", - "voter": "stormrobertson" - }, - { - "rshares": "25656384394", - "voter": "dses" - }, - { - "rshares": "180969407784", - "voter": "digital.mine" - }, - { - "rshares": "4016528547", - "voter": "swisswitness" - }, - { - "rshares": "782442149", - "voter": "moneybaby" - }, - { - "rshares": "4994994", - "voter": "steemprotect" - }, - { - "rshares": "669983832371", - "voter": "blewitt" - }, - { - "rshares": "630859364", - "voter": "pizzajohn" - }, - { - "rshares": "986121375", - "voter": "pileofsteem" - }, - { - "rshares": "43807205123", - "voter": "dog-marley" - }, - { - "rshares": "35050266661", - "voter": "thehive" - }, - { - "rshares": "2284767568211", - "voter": "goblinknackers" - }, - { - "rshares": "68557837", - "voter": "jk6276" - }, - { - "rshares": "6608221135", - "voter": "quatro" - }, - { - "rshares": "9569123406", - "voter": "flaws" - }, - { - "rshares": "63148141304", - "voter": "goingbonkers" - }, - { - "rshares": "85824862169", - "voter": "dlike" - }, - { - "rshares": "626271798", - "voter": "triptolemus" - }, - { - "rshares": "8899523815", - "voter": "london65" - }, - { - "rshares": "273118849576", - "voter": "blueeyes8960" - }, - { - "rshares": "45973386775", - "voter": "voxmortis" - }, - { - "rshares": "6413635199", - "voter": "fullnodeupdate" - }, - { - "rshares": "115346107889", - "voter": "theexcelclub" - }, - { - "rshares": "92674217465", - "voter": "engrave" - }, - { - "rshares": "3335367537", - "voter": "bagpuss" - }, - { - "rshares": "517082366343", - "voter": "tipsybosphorus" - }, - { - "rshares": "4482177207", - "voter": "chops.support" - }, - { - "rshares": "963551778", - "voter": "chike4545" - }, - { - "rshares": "954058760", - "voter": "lfie28" - }, - { - "rshares": "163288900457", - "voter": "upvoteshares" - }, - { - "rshares": "2808073027", - "voter": "bobby.madagascar" - }, - { - "rshares": "24446249", - "voter": "laissez-faire" - }, - { - "rshares": "0", - "voter": "voter000" - }, - { - "rshares": "4176723550", - "voter": "ticket4fun" - }, - { - "rshares": "121063673646", - "voter": "agromeror" - }, - { - "rshares": "28075894303", - "voter": "balticbadger" - }, - { - "rshares": "11785660143", - "voter": "blanchy" - }, - { - "rshares": "6824326793", - "voter": "anroja" - }, - { - "rshares": "812242507", - "voter": "ldp" - }, - { - "rshares": "9018790630", - "voter": "steemitcuration" - }, - { - "rshares": "14850915701", - "voter": "blarchive" - }, - { - "rshares": "4784366785", - "voter": "divine-sound" - }, - { - "rshares": "1915218072", - "voter": "thrasher666" - }, - { - "rshares": "65153928095", - "voter": "priyanarc" - }, - { - "rshares": "511503816", - "voter": "everyoung" - }, - { - "rshares": "811229271", - "voter": "florino" - }, - { - "rshares": "1040165965", - "voter": "conectionbot" - }, - { - "rshares": "4434991685", - "voter": "andydream" - }, - { - "rshares": "6535111518", - "voter": "arteem" - }, - { - "rshares": "21091216469", - "voter": "minnowbuilder" - }, - { - "rshares": "2655645924", - "voter": "mysteempl" - }, - { - "rshares": "122334278738", - "voter": "johannpiber" - }, - { - "rshares": "39473103285", - "voter": "followjohngalt" - }, - { - "rshares": "5399846758", - "voter": "monkaydee293" - }, - { - "rshares": "6540039967", - "voter": "mistia" - }, - { - "rshares": "1809786004", - "voter": "carbodexkim" - }, - { - "rshares": "1700349783", - "voter": "themightysquid" - }, - { - "rshares": "140520295", - "voter": "ohfiddlesticks" - }, - { - "rshares": "1150500333", - "voter": "hubyr" - }, - { - "rshares": "0", - "voter": "dein-problem" - }, - { - "rshares": "100424996288", - "voter": "kekos" - }, - { - "rshares": "1039029079", - "voter": "smonia" - }, - { - "rshares": "30681162947", - "voter": "tigerrkg" - }, - { - "rshares": "3743986981", - "voter": "thehealthylife" - }, - { - "rshares": "1255216670", - "voter": "smon-fan" - }, - { - "rshares": "1110299197", - "voter": "enthef" - }, - { - "rshares": "18296958529", - "voter": "blind-spot" - }, - { - "rshares": "670619687", - "voter": "tr777" - }, - { - "rshares": "553444475", - "voter": "sm-jewel" - }, - { - "rshares": "62210696151", - "voter": "delabo" - }, - { - "rshares": "527475400", - "voter": "tr77" - }, - { - "rshares": "557241195", - "voter": "smoner" - }, - { - "rshares": "778983393", - "voter": "smonian" - }, - { - "rshares": "2156571736", - "voter": "noekie" - }, - { - "rshares": "1362104558", - "voter": "permaculturedude" - }, - { - "rshares": "882329668453", - "voter": "agent14" - }, - { - "rshares": "933997274", - "voter": "princessamber" - }, - { - "rshares": "4236517274", - "voter": "i-c-e" - }, - { - "rshares": "16034256520", - "voter": "smon-joa" - }, - { - "rshares": "4711664397", - "voter": "baasdebeer" - }, - { - "rshares": "537985379", - "voter": "jjangjjanggirl" - }, - { - "rshares": "937774009", - "voter": "ghostdylan" - }, - { - "rshares": "18803880725", - "voter": "fusion.lover" - }, - { - "rshares": "807180834", - "voter": "goodcontentbot" - }, - { - "rshares": "136481305937", - "voter": "rem-steem" - }, - { - "rshares": "32767370567", - "voter": "zaphyr" - }, - { - "rshares": "1312706269", - "voter": "blockbeard" - }, - { - "rshares": "1407741913", - "voter": "brandnewaccount" - }, - { - "rshares": "1451283098", - "voter": "shit-posts" - }, - { - "rshares": "3109496122", - "voter": "neove" - }, - { - "rshares": "5758604896", - "voter": "cabalen" - }, - { - "rshares": "9494062562", - "voter": "jadung" - }, - { - "rshares": "580857705", - "voter": "rihanna2" - }, - { - "rshares": "1278499991", - "voter": "goodcontentbot1" - }, - { - "rshares": "4827348383", - "voter": "afternoondrinks" - }, - { - "rshares": "946001046", - "voter": "steemcameroon" - }, - { - "rshares": "1035769683", - "voter": "sm-skynet" - }, - { - "rshares": "1472285492", - "voter": "rappler" - }, - { - "rshares": "576056920", - "voter": "angelanichole" - }, - { - "rshares": "5561253288", - "voter": "theithei" - }, - { - "rshares": "3206340894", - "voter": "pastoragus" - }, - { - "rshares": "545405256", - "voter": "smonbear" - }, - { - "rshares": "1055430126", - "voter": "snorcity" - }, - { - "rshares": "29600532009", - "voter": "hungryharish" - }, - { - "rshares": "10793201320", - "voter": "wolffeys" - }, - { - "rshares": "5921015279", - "voter": "kggymlife" - }, - { - "rshares": "2531139401", - "voter": "squidben1" - }, - { - "rshares": "3126202798", - "voter": "ilanisnapshots" - }, - { - "rshares": "2329412507", - "voter": "bynarikode" - }, - { - "rshares": "538513238", - "voter": "theinspiration" - }, - { - "rshares": "2852212922", - "voter": "hungryanu" - }, - { - "rshares": "536917419", - "voter": "epic4chris" - }, - { - "rshares": "1885246602", - "voter": "korle" - }, - { - "rshares": "11185790414", - "voter": "herbncrypto" - }, - { - "rshares": "650255255", - "voter": "dtrade" - }, - { - "rshares": "678684124", - "voter": "plebtv" - }, - { - "rshares": "15551010159", - "voter": "simplylars" - }, - { - "rshares": "308873872173", - "voter": "scholaris" - }, - { - "rshares": "5034944041", - "voter": "dailyke20" - }, - { - "rshares": "41815160529", - "voter": "banvie" - }, - { - "rshares": "772611704", - "voter": "sm-silva" - }, - { - "rshares": "8000439903", - "voter": "socialbot" - }, - { - "rshares": "580803261", - "voter": "ssc-token" - }, - { - "rshares": "3649302102908", - "voter": "likwid" - }, - { - "rshares": "3014728785", - "voter": "omnivori" - }, - { - "rshares": "532377634", - "voter": "tinyhousecryptos" - }, - { - "rshares": "150933012", - "voter": "tradingideas2" - }, - { - "rshares": "28196907467", - "voter": "plankton.token" - }, - { - "rshares": "4009482963", - "voter": "glstech" - }, - { - "rshares": "6471631747", - "voter": "nicollefiallo" - }, - { - "rshares": "3116127362", - "voter": "iamjohn" - }, - { - "rshares": "4216100154", - "voter": "kendra19" - }, - { - "rshares": "1421777875", - "voter": "stubborn-soul" - }, - { - "rshares": "19705931139", - "voter": "steemindian" - }, - { - "rshares": "1343115931", - "voter": "teamashen" - }, - { - "rshares": "518308032", - "voter": "vxc" - }, - { - "rshares": "2098139491", - "voter": "strongwoman" - }, - { - "rshares": "3001375959", - "voter": "milu-the-dog" - }, - { - "rshares": "53090293866", - "voter": "asmr.tist" - }, - { - "rshares": "2478399910", - "voter": "triplea.bot" - }, - { - "rshares": "12868165097", - "voter": "tomlee" - }, - { - "rshares": "182372086785", - "voter": "steem.leo" - }, - { - "rshares": "0", - "voter": "tradingideas.spt" - }, - { - "rshares": "2166383755", - "voter": "nichemarket" - }, - { - "rshares": "3881329564", - "voter": "plook" - }, - { - "rshares": "939000219", - "voter": "pal-isaria" - }, - { - "rshares": "2597142218", - "voter": "abh12345.sports" - }, - { - "rshares": "605825711", - "voter": "penpals" - }, - { - "rshares": "484130691349", - "voter": "votebetting" - }, - { - "rshares": "1824672423341", - "voter": "adsup" - }, - { - "rshares": "407531274454", - "voter": "flipstar.sports" - }, - { - "rshares": "5793934435", - "voter": "freddio.sport" - }, - { - "rshares": "5259345709", - "voter": "babytarazkp" - }, - { - "rshares": "743113349", - "voter": "driedfruit" - }, - { - "rshares": "39444802178", - "voter": "asteroids" - }, - { - "rshares": "347893783", - "voter": "gingerbyna" - }, - { - "rshares": "627153333", - "voter": "arctis" - }, - { - "rshares": "943191896", - "voter": "dfacademy-pal" - }, - { - "rshares": "211615376", - "voter": "tina-tina" - }, - { - "rshares": "320552701", - "voter": "happiness19" - }, - { - "rshares": "3459424860", - "voter": "sbi-tokens" - }, - { - "rshares": "2727043", - "voter": "gdhaetae" - }, - { - "rshares": "712246405", - "voter": "brutoken" - }, - { - "rshares": "1223076876", - "voter": "one.life" - }, - { - "rshares": "26906276944", - "voter": "acta" - }, - { - "rshares": "18749937067", - "voter": "the-table" - }, - { - "rshares": "20605035479", - "voter": "maxuvd" - }, - { - "rshares": "46439009259", - "voter": "jk6276.life" - }, - { - "rshares": "2672561370", - "voter": "debtfreein2" - }, - { - "rshares": "7847921047", - "voter": "sreypov" - }, - { - "rshares": "821470967", - "voter": "dnflsms" - }, - { - "rshares": "516757958", - "voter": "jessy22" - }, - { - "rshares": "42325611712", - "voter": "andylein" - }, - { - "rshares": "532558615", - "voter": "cd-leo" - }, - { - "rshares": "1928174959", - "voter": "isaria-neo" - }, - { - "rshares": "124067198138", - "voter": "silverquest" - }, - { - "rshares": "2907309245", - "voter": "enison1" - }, - { - "rshares": "190963006", - "voter": "keep-keep" - }, - { - "rshares": "2810277464", - "voter": "dbfoodbank" - }, - { - "rshares": "39193050", - "voter": "gerbo" - }, - { - "rshares": "824502179", - "voter": "javb" - }, - { - "rshares": "567207710", - "voter": "autowin" - }, - { - "rshares": "1192192366", - "voter": "galenkp.aus" - }, - { - "rshares": "5260180471", - "voter": "weddinggift" - }, - { - "rshares": "1079319567", - "voter": "khalpal" - }, - { - "rshares": "3977686852", - "voter": "delilhavores" - }, - { - "rshares": "881311481", - "voter": "keepit2" - }, - { - "rshares": "10710347795", - "voter": "simply2koool" - }, - { - "rshares": "2278946071", - "voter": "ribary" - }, - { - "rshares": "716848468", - "voter": "onestop" - }, - { - "rshares": "822874511", - "voter": "joemark" - }, - { - "rshares": "1565607395", - "voter": "garlet-68" - }, - { - "rshares": "994731466", - "voter": "lillasaur" - }, - { - "rshares": "41352220919", - "voter": "mice-k" - }, - { - "rshares": "1302469920", - "voter": "dalz4" - }, - { - "rshares": "3470560111", - "voter": "curamax" - }, - { - "rshares": "6361363199", - "voter": "drew0" - }, - { - "rshares": "809301420", - "voter": "mehmetfix" - }, - { - "rshares": "59167904945", - "voter": "alexa.art" - }, - { - "rshares": "1395907744", - "voter": "steemcityrewards" - }, - { - "rshares": "1816123759", - "voter": "dpend.active" - }, - { - "rshares": "1112075090", - "voter": "nyls" - }, - { - "rshares": "2087113455", - "voter": "fengchao" - }, - { - "rshares": "609627253", - "voter": "artdescry" - }, - { - "rshares": "5254822344", - "voter": "unklebonehead" - }, - { - "rshares": "18609094745", - "voter": "polish.hive" - }, - { - "rshares": "171445877919", - "voter": "dcityrewards" - }, - { - "rshares": "925556033", - "voter": "tattytoque" - }, - { - "rshares": "534969099", - "voter": "mynewlifeai" - }, - { - "rshares": "121524929911", - "voter": "hivelander" - }, - { - "rshares": "5793172973", - "voter": "discoveringarni" - }, - { - "rshares": "12575511867", - "voter": "evelynchacin" - }, - { - "rshares": "4071441112", - "voter": "iamyohann" - }, - { - "rshares": "173912227317", - "voter": "hivecur" - }, - { - "rshares": "3644561778", - "voter": "lucianav" - }, - { - "rshares": "552585549189", - "voter": "jelly13" - }, - { - "rshares": "2932437880", - "voter": "patagonica" - }, - { - "rshares": "1206503303", - "voter": "hivebuilderteam" - }, - { - "rshares": "1113725143", - "voter": "hivecur2" - } + "tags": [ + "steempay", + "steempayments", + "development", + "update" ], - "author": "abh12345", - "author_payout_value": "0.000 HBD", - "author_reputation": 77.2, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "Andddd he\u2019s not even looking at the camera.\n\n![ECCC7EC876974D53B739EF7D6C9056A9.jpeg](https://files.peakd.com/file/peakd-hive/abh12345/7d3fa4DL-ECCC7EC8-7697-4D53-B739-EF7D6C9056A9.jpeg)\n\nBeen traveling 8 hours and still another flight to take, zzzzzz.\n\nEast Midlands in the UK and Bergamo Italy have very quiet, most of the shops aren\u2019t open and there is a lot of hand sanitiser knocking around.\n\nHad my temperature taken 3 times so far and am 99% sure I didn\u2019t catch Covid-19, yet.\n\nLater!\n", - "category": "hive-152232", - "children": 18, - "community": "hive-152232", - "community_title": "Faces of Hive", - "created": "2020-07-07T17:29:33", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://files.peakd.com/file/peakd-hive/abh12345/7d3fa4DL-ECCC7EC8-7697-4D53-B739-EF7D6C9056A9.jpeg" - ], - "tags": [ - "selfie", - "shitpost" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 62589971974001, - "payout": 24.737, - "payout_at": "2020-07-14T17:29:33", - "pending_payout_value": "24.737 HBD", - "percent_steem_dollars": 10000, - "permlink": "plane-selfie", - "post_id": 86935580, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 3.0, - "gray": false, - "hide": false, - "total_votes": 491 - }, - "title": "Plane selfie ", - "updated": "2020-07-07T17:29:33", - "url": "/hive-152232/@abh12345/plane-selfie" + "users": [ + "roelandp" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 174333402242155, + "payout": 1750.818, + "payout_at": "2016-09-21T06:19:21", + "pending_payout_value": "1750.818 HBD", + "percent_hbd": 10000, + "permlink": "steempay-upgrade-pay-on-site-or-steemfest-or-mobile-wallet", + "post_id": 1240557, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 400 + }, + "title": "Steempay upgrade - Pay on site | SteemFEST | Mobile wallet", + "updated": "2016-09-14T06:20:42", + "url": "/steempay/@steve-walschot/steempay-upgrade-pay-on-site-or-steemfest-or-mobile-wallet" }, { - "active_votes": [ - { - "rshares": "54946226207", - "voter": "enlil" - }, - { - "rshares": "126549403004", - "voter": "tombstone" - }, - { - "rshares": "258229403543", - "voter": "nanzo-scoop" - }, - { - "rshares": "36643346760", - "voter": "mummyimperfect" - }, - { - "rshares": "14613716814", - "voter": "ak2020" - }, - { - "rshares": "513484465483", - "voter": "mark-waser" - }, - { - "rshares": "1191684281", - "voter": "emily-cook" - }, - { - "rshares": "213550570755", - "voter": "gerber" - }, - { - "rshares": "615563809847", - "voter": "ericvancewalton" - }, - { - "rshares": "234251514135", - "voter": "ezzy" - }, - { - "rshares": "915024057393", - "voter": "livingfree" - }, - { - "rshares": "1918731944698", - "voter": "meesterboom" - }, - { - "rshares": "95691412921", - "voter": "arcange" - }, - { - "rshares": "278401125916", - "voter": "exyle" - }, - { - "rshares": "2561963900", - "voter": "raphaelle" - }, - { - "rshares": "38765592755", - "voter": "sazbird" - }, - { - "rshares": "2649080466835", - "voter": "magicmonk" - }, - { - "rshares": "25503941620", - "voter": "dolov" - }, - { - "rshares": "9625640776964", - "voter": "jphamer1" - }, - { - "rshares": "3683476310960", - "voter": "joele" - }, - { - "rshares": "35553267528", - "voter": "shanghaipreneur" - }, - { - "rshares": "368186767030", - "voter": "borran" - }, - { - "rshares": "7591366149", - "voter": "wisbeech" - }, - { - "rshares": "60286574568", - "voter": "netaterra" - }, - { - "rshares": "40422894373", - "voter": "someguy123" - }, - { - "rshares": "25586882397", - "voter": "por500bolos" - }, - { - "rshares": "265497318596", - "voter": "daveks" - }, - { - "rshares": "259596051632", - "voter": "uwelang" - }, - { - "rshares": "520057463916", - "voter": "digital-wisdom" - }, - { - "rshares": "2008945097", - "voter": "ethical-ai" - }, - { - "rshares": "24534331175", - "voter": "jwaser" - }, - { - "rshares": "14481221243", - "voter": "bwaser" - }, - { - "rshares": "2216389487653", - "voter": "abh12345" - }, - { - "rshares": "13589782052", - "voter": "t-bot" - }, - { - "rshares": "1490505261", - "voter": "ellepdub" - }, - { - "rshares": "29011651879", - "voter": "morgan.waser" - }, - { - "rshares": "3597985869", - "voter": "handyman" - }, - { - "rshares": "2090318163", - "voter": "strong-ai" - }, - { - "rshares": "149831567874", - "voter": "slider2990" - }, - { - "rshares": "1627923717216", - "voter": "redes" - }, - { - "rshares": "1042362648109", - "voter": "created" - }, - { - "rshares": "109776879066", - "voter": "edb" - }, - { - "rshares": "969961193", - "voter": "technoprogressiv" - }, - { - "rshares": "44348051116", - "voter": "mafeeva" - }, - { - "rshares": "5449253829", - "voter": "privex" - }, - { - "rshares": "55841289462", - "voter": "markkujantunen" - }, - { - "rshares": "338821144015", - "voter": "preparedwombat" - }, - { - "rshares": "55914069875", - "voter": "zaragast" - }, - { - "rshares": "10982090844", - "voter": "dune69" - }, - { - "rshares": "1897658072343", - "voter": "smasssh" - }, - { - "rshares": "129039879816", - "voter": "thenightflier" - }, - { - "rshares": "275429901888", - "voter": "barbara-orenya" - }, - { - "rshares": "11109540213", - "voter": "rizasukma" - }, - { - "rshares": "29588292427", - "voter": "jerrybanfield" - }, - { - "rshares": "10009630772", - "voter": "mys" - }, - { - "rshares": "331287205954", - "voter": "sumatranate" - }, - { - "rshares": "30719306365", - "voter": "anacristinasilva" - }, - { - "rshares": "1798440773499", - "voter": "galenkp" - }, - { - "rshares": "20516976904", - "voter": "freddbrito" - }, - { - "rshares": "32289906607", - "voter": "sam99" - }, - { - "rshares": "30934109076", - "voter": "teamaustralia" - }, - { - "rshares": "336466410833", - "voter": "jaynie" - }, - { - "rshares": "50695925050", - "voter": "jayna" - }, - { - "rshares": "3856993327", - "voter": "whd" - }, - { - "rshares": "803889633", - "voter": "d-pend" - }, - { - "rshares": "204029381153", - "voter": "papilloncharity" - }, - { - "rshares": "78361981644", - "voter": "goldkey" - }, - { - "rshares": "128008265830", - "voter": "felt.buzz" - }, - { - "rshares": "574796278699", - "voter": "andre-verbrick" - }, - { - "rshares": "3909957178", - "voter": "fachrulreza" - }, - { - "rshares": "1042289024", - "voter": "shitsignals" - }, - { - "rshares": "216853121", - "voter": "helmirenggrik" - }, - { - "rshares": "26231076423", - "voter": "dine77" - }, - { - "rshares": "2916770149", - "voter": "tykee" - }, - { - "rshares": "980835729705", - "voter": "steemvote" - }, - { - "rshares": "168154268123", - "voter": "steempostitalia" - }, - { - "rshares": "19887796528", - "voter": "macchiata" - }, - { - "rshares": "3966309588", - "voter": "chetanpadliya" - }, - { - "rshares": "105724779285", - "voter": "shanibeer" - }, - { - "rshares": "23714505491", - "voter": "my451r" - }, - { - "rshares": "14577264365", - "voter": "felander" - }, - { - "rshares": "9217186717", - "voter": "santigs" - }, - { - "rshares": "52007548355", - "voter": "bashadow" - }, - { - "rshares": "3115239735043", - "voter": "stoodkev" - }, - { - "rshares": "27089670181", - "voter": "noloafing" - }, - { - "rshares": "9143528995", - "voter": "kimzwarch" - }, - { - "rshares": "41956453077", - "voter": "redouanemez" - }, - { - "rshares": "6562897142", - "voter": "fbslo" - }, - { - "rshares": "50306766751", - "voter": "accelerator" - }, - { - "rshares": "19583611397", - "voter": "artonmysleeve" - }, - { - "rshares": "3227480223", - "voter": "justinparke" - }, - { - "rshares": "53097437112", - "voter": "alinakot" - }, - { - "rshares": "1351623088", - "voter": "yogacoach" - }, - { - "rshares": "245465558351", - "voter": "chinchilla" - }, - { - "rshares": "354188606894", - "voter": "celestal" - }, - { - "rshares": "5808182644339", - "voter": "therealwolf" - }, - { - "rshares": "2114789491", - "voter": "mballesteros" - }, - { - "rshares": "24236669734", - "voter": "roleerob" - }, - { - "rshares": "3121729105", - "voter": "deathwing" - }, - { - "rshares": "286566734073", - "voter": "revisesociology" - }, - { - "rshares": "67877965755", - "voter": "silversaver888" - }, - { - "rshares": "14407619859", - "voter": "espoem" - }, - { - "rshares": "17708311747", - "voter": "gringo211985" - }, - { - "rshares": "28162777098", - "voter": "heidi71" - }, - { - "rshares": "146898653133", - "voter": "josediccus" - }, - { - "rshares": "1026032274", - "voter": "liverpool-fan" - }, - { - "rshares": "11130959445", - "voter": "caladan" - }, - { - "rshares": "35650811632", - "voter": "fknmayhem" - }, - { - "rshares": "11190734330", - "voter": "tradingideas" - }, - { - "rshares": "1189038148070", - "voter": "smartsteem" - }, - { - "rshares": "1584631667", - "voter": "chireerocks" - }, - { - "rshares": "39146157425", - "voter": "mytechtrail" - }, - { - "rshares": "134952656065", - "voter": "b00m" - }, - { - "rshares": "22314609593", - "voter": "itchyfeetdonica" - }, - { - "rshares": "1150445283", - "voter": "funtraveller" - }, - { - "rshares": "24763504429", - "voter": "nokodemion" - }, - { - "rshares": "7391877002", - "voter": "marcolino76" - }, - { - "rshares": "4874085588", - "voter": "candyboy" - }, - { - "rshares": "118965476328", - "voter": "aussieninja" - }, - { - "rshares": "32880746720", - "voter": "abitcoinskeptic" - }, - { - "rshares": "1094723108", - "voter": "jewel-lover" - }, - { - "rshares": "541838185485", - "voter": "jongolson" - }, - { - "rshares": "26332418272", - "voter": "neupanedipen" - }, - { - "rshares": "5631401852185", - "voter": "intrepidphotos" - }, - { - "rshares": "1185418606", - "voter": "mehta" - }, - { - "rshares": "77971614230", - "voter": "nealmcspadden" - }, - { - "rshares": "29470568559", - "voter": "tryskele" - }, - { - "rshares": "52075924305", - "voter": "bala41288" - }, - { - "rshares": "69130318513", - "voter": "belemo" - }, - { - "rshares": "29906004971", - "voter": "socialmediaseo" - }, - { - "rshares": "668637321", - "voter": "leslierevales" - }, - { - "rshares": "47653087653", - "voter": "purefood" - }, - { - "rshares": "770692338446", - "voter": "soyrosa" - }, - { - "rshares": "20072641879", - "voter": "portugalcoin" - }, - { - "rshares": "22956834880", - "voter": "fullcoverbetting" - }, - { - "rshares": "2702140026", - "voter": "philnewton" - }, - { - "rshares": "10340355918", - "voter": "fieryfootprints" - }, - { - "rshares": "133301270400", - "voter": "chronocrypto" - }, - { - "rshares": "406437790333", - "voter": "glenalbrethsen" - }, - { - "rshares": "6203203905", - "voter": "cadawg" - }, - { - "rshares": "3397632193", - "voter": "ericburgoyne" - }, - { - "rshares": "157514749450", - "voter": "bigtom13" - }, - { - "rshares": "1919437669", - "voter": "moeenali" - }, - { - "rshares": "1289360573", - "voter": "pkocjan" - }, - { - "rshares": "93498082645", - "voter": "bozz" - }, - { - "rshares": "51548798460", - "voter": "cst90" - }, - { - "rshares": "1607799094", - "voter": "russellstockley" - }, - { - "rshares": "10441761474", - "voter": "g4fun" - }, - { - "rshares": "9039531068", - "voter": "rubencress" - }, - { - "rshares": "679961579", - "voter": "jasonwaterfalls" - }, - { - "rshares": "60639999932", - "voter": "almi" - }, - { - "rshares": "786956845500", - "voter": "organduo" - }, - { - "rshares": "80489088885", - "voter": "simplymike" - }, - { - "rshares": "37115273648", - "voter": "erikah" - }, - { - "rshares": "5049099320", - "voter": "dhingvimal" - }, - { - "rshares": "3371562415177", - "voter": "azircon" - }, - { - "rshares": "4341579829", - "voter": "veganomics" - }, - { - "rshares": "29345560074", - "voter": "zemiatin" - }, - { - "rshares": "44921475497", - "voter": "talesfrmthecrypt" - }, - { - "rshares": "1297887272", - "voter": "beleg" - }, - { - "rshares": "97755683082", - "voter": "bil.prag" - }, - { - "rshares": "11292733497", - "voter": "bestboom" - }, - { - "rshares": "14753785626", - "voter": "abrockman" - }, - { - "rshares": "91410948296", - "voter": "ronaldoavelino" - }, - { - "rshares": "11286916459", - "voter": "goldvault" - }, - { - "rshares": "710058845", - "voter": "yameen" - }, - { - "rshares": "11985680197", - "voter": "freddio" - }, - { - "rshares": "3439976134", - "voter": "blainjones" - }, - { - "rshares": "15862457872", - "voter": "allover" - }, - { - "rshares": "7218638992", - "voter": "ecotone" - }, - { - "rshares": "1041966865", - "voter": "rollandthomas" - }, - { - "rshares": "43041987187", - "voter": "nancybriti" - }, - { - "rshares": "349468108557", - "voter": "steemitbloggers" - }, - { - "rshares": "25562110351", - "voter": "superlao" - }, - { - "rshares": "801234757", - "voter": "glodniwiedzy" - }, - { - "rshares": "2526478760", - "voter": "archisteem" - }, - { - "rshares": "156838298466", - "voter": "laputis" - }, - { - "rshares": "23738819662", - "voter": "theluvbug" - }, - { - "rshares": "390016535154", - "voter": "cryptoandcoffee" - }, - { - "rshares": "43851983128", - "voter": "insaneworks" - }, - { - "rshares": "181765590683", - "voter": "digital.mine" - }, - { - "rshares": "1697556936", - "voter": "swisswitness" - }, - { - "rshares": "423406643397", - "voter": "fitat40" - }, - { - "rshares": "2480506455", - "voter": "adrimonte" - }, - { - "rshares": "2500460352", - "voter": "daath" - }, - { - "rshares": "68557837", - "voter": "jk6276" - }, - { - "rshares": "31498823802", - "voter": "goingbonkers" - }, - { - "rshares": "1238601261", - "voter": "julian2013" - }, - { - "rshares": "36899086249", - "voter": "dlike" - }, - { - "rshares": "5469766140", - "voter": "gorbisan" - }, - { - "rshares": "3753261915", - "voter": "jokinmenipieleen" - }, - { - "rshares": "69131783759", - "voter": "zayedsakib" - }, - { - "rshares": "39830627497", - "voter": "engrave" - }, - { - "rshares": "531908011960", - "voter": "tipsybosphorus" - }, - { - "rshares": "39832033604", - "voter": "gabbynhice" - }, - { - "rshares": "1178580219", - "voter": "bobby.madagascar" - }, - { - "rshares": "109029648", - "voter": "oakshieldholding" - }, - { - "rshares": "16260500", - "voter": "laissez-faire" - }, - { - "rshares": "88202334724", - "voter": "cultus-forex" - }, - { - "rshares": "2878507173", - "voter": "silverkey" - }, - { - "rshares": "12276501298", - "voter": "silvervault" - }, - { - "rshares": "5092580723", - "voter": "cryptoclerk" - }, - { - "rshares": "5102730390", - "voter": "thisnewgirl" - }, - { - "rshares": "1963343208", - "voter": "thrasher666" - }, - { - "rshares": "16956398515", - "voter": "followjohngalt" - }, - { - "rshares": "42426192821", - "voter": "francescomai" - }, - { - "rshares": "1115713296", - "voter": "smonia" - }, - { - "rshares": "21509383440", - "voter": "moneytron" - }, - { - "rshares": "15098244858", - "voter": "rasalom" - }, - { - "rshares": "13440233101", - "voter": "steemfriends" - }, - { - "rshares": "1326684975", - "voter": "smon-fan" - }, - { - "rshares": "7237435762", - "voter": "samsemilia7" - }, - { - "rshares": "710153155", - "voter": "tr777" - }, - { - "rshares": "586507335", - "voter": "sm-jewel" - }, - { - "rshares": "15573906270", - "voter": "delabo" - }, - { - "rshares": "559088541", - "voter": "tr77" - }, - { - "rshares": "590532372", - "voter": "smoner" - }, - { - "rshares": "824588013", - "voter": "smonian" - }, - { - "rshares": "555181845", - "voter": "permaculturedude" - }, - { - "rshares": "875996098447", - "voter": "agent14" - }, - { - "rshares": "17225296377", - "voter": "smon-joa" - }, - { - "rshares": "569916660", - "voter": "jjangjjanggirl" - }, - { - "rshares": "9669005510", - "voter": "scoopstakes" - }, - { - "rshares": "6401102405", - "voter": "nanzo-snaps" - }, - { - "rshares": "18248949077", - "voter": "krazzytrukker" - }, - { - "rshares": "22797951", - "voter": "limka" - }, - { - "rshares": "683587841", - "voter": "steemcameroon" - }, - { - "rshares": "577971063", - "voter": "smonbear" - }, - { - "rshares": "13542349128", - "voter": "cpt-sparrow" - }, - { - "rshares": "5920310164", - "voter": "kggymlife" - }, - { - "rshares": "2343099579", - "voter": "bynarikode" - }, - { - "rshares": "2897349116", - "voter": "maxsieg" - }, - { - "rshares": "128139166847", - "voter": "contrabourdon" - }, - { - "rshares": "18796490851", - "voter": "maryincryptoland" - }, - { - "rshares": "39286286844", - "voter": "epicdice" - }, - { - "rshares": "7959561398", - "voter": "helgalubevi" - }, - { - "rshares": "489504441", - "voter": "muhammad-wali" - }, - { - "rshares": "615398450", - "voter": "ssc-token" - }, - { - "rshares": "162004393", - "voter": "tradingideas2" - }, - { - "rshares": "44373929414", - "voter": "xyz004" - }, - { - "rshares": "1481768080", - "voter": "stubborn-soul" - }, - { - "rshares": "6524058234", - "voter": "map10k" - }, - { - "rshares": "540673695", - "voter": "kgswallet" - }, - { - "rshares": "1259692215", - "voter": "milu-the-dog" - }, - { - "rshares": "53476476462", - "voter": "asmr.tist" - }, - { - "rshares": "1038459653", - "voter": "triplea.bot" - }, - { - "rshares": "78629492760", - "voter": "steem.leo" - }, - { - "rshares": "5807525919", - "voter": "reggaesteem" - }, - { - "rshares": "0", - "voter": "tradingideas.spt" - }, - { - "rshares": "2253389901", - "voter": "nichemarket" - }, - { - "rshares": "1326503279", - "voter": "abh12345.leo" - }, - { - "rshares": "1870334168", - "voter": "abh12345.sports" - }, - { - "rshares": "1337944628", - "voter": "bearjohn" - }, - { - "rshares": "953214313", - "voter": "mktmaker" - }, - { - "rshares": "2437486896", - "voter": "freddio.sport" - }, - { - "rshares": "64320036714", - "voter": "coffeea.token" - }, - { - "rshares": "5447431927", - "voter": "babytarazkp" - }, - { - "rshares": "805304706", - "voter": "driedfruit" - }, - { - "rshares": "16941334693", - "voter": "asteroids" - }, - { - "rshares": "353335838", - "voter": "gingerbyna" - }, - { - "rshares": "646511123", - "voter": "arctis" - }, - { - "rshares": "1383206467", - "voter": "marlians.spt" - }, - { - "rshares": "5012928981", - "voter": "mapxv" - }, - { - "rshares": "780516410", - "voter": "abh12345.stem" - }, - { - "rshares": "225882972", - "voter": "tina-tina" - }, - { - "rshares": "2027577730", - "voter": "thranax" - }, - { - "rshares": "1106776688", - "voter": "midlet-creates" - }, - { - "rshares": "340768284", - "voter": "happiness19" - }, - { - "rshares": "5629407", - "voter": "gdhaetae" - }, - { - "rshares": "496369814", - "voter": "one.life" - }, - { - "rshares": "20615538614", - "voter": "maxuvd" - }, - { - "rshares": "26674377014", - "voter": "maxuve" - }, - { - "rshares": "37708184355", - "voter": "shtup" - }, - { - "rshares": "46805319731", - "voter": "jk6276.life" - }, - { - "rshares": "234744123853", - "voter": "untersatz" - }, - { - "rshares": "869478765", - "voter": "dnflsms" - }, - { - "rshares": "23945374", - "voter": "vxc.stem" - }, - { - "rshares": "632917616", - "voter": "bruleo" - }, - { - "rshares": "546613189", - "voter": "jessy22" - }, - { - "rshares": "345692999", - "voter": "stemd" - }, - { - "rshares": "674184497", - "voter": "khalneox" - }, - { - "rshares": "5894941851", - "voter": "rrusina" - }, - { - "rshares": "11068593126", - "voter": "mjmarquez4151" - }, - { - "rshares": "204224608", - "voter": "keep-keep" - }, - { - "rshares": "542913606", - "voter": "cd-stem" - }, - { - "rshares": "560726054", - "voter": "steemlondon" - }, - { - "rshares": "592369975", - "voter": "autowin" - }, - { - "rshares": "1177320598", - "voter": "galenkp.aus" - }, - { - "rshares": "653717868", - "voter": "hatta.jahm" - }, - { - "rshares": "1128593518", - "voter": "khalpal" - }, - { - "rshares": "932843117", - "voter": "keepit2" - }, - { - "rshares": "948100528", - "voter": "ribary" - }, - { - "rshares": "15304417854", - "voter": "jeffmackinnon" - }, - { - "rshares": "17785672279", - "voter": "mice-k" - }, - { - "rshares": "293023520", - "voter": "bela29" - }, - { - "rshares": "52927596789", - "voter": "davidlionfish" - }, - { - "rshares": "1465621497", - "voter": "curamax" - }, - { - "rshares": "735123993", - "voter": "achim03.leo" - }, - { - "rshares": "6171393472", - "voter": "cizolf" - }, - { - "rshares": "572721247", - "voter": "steemcityrewards" - }, - { - "rshares": "744656547", - "voter": "dpend.active" - }, - { - "rshares": "2200934516", - "voter": "fengchao" - }, - { - "rshares": "2061023134", - "voter": "hive-naija" - }, - { - "rshares": "19919086506", - "voter": "hiveyoda" - }, - { - "rshares": "251805616226", - "voter": "reggaejahm" - }, - { - "rshares": "419045287547", - "voter": "softworld" - }, - { - "rshares": "7977723996", - "voter": "polish.hive" - }, - { - "rshares": "73806117799", - "voter": "dcityrewards" - }, - { - "rshares": "2687810124", - "voter": "photodashph" - }, - { - "rshares": "9902228819", - "voter": "ambarvegas" - }, - { - "rshares": "679315590", - "voter": "ninnu" - }, - { - "rshares": "3813942770", - "voter": "ssygmr" - }, - { - "rshares": "0", - "voter": "galaxy100" - }, - { - "rshares": "74744344176", - "voter": "hivecur" - }, - { - "rshares": "11822455877", - "voter": "hivecur2" - } + "active_votes": [ + { + "rshares": "518181875581", + "voter": "barrie" + }, + { + "rshares": "31620103450538", + "voter": "smooth" + }, + { + "rshares": "260759332327", + "voter": "anonymous" + }, + { + "rshares": "2047759927809", + "voter": "badassmother" + }, + { + "rshares": "2099340340625", + "voter": "hr1" + }, + { + "rshares": "1402227395408", + "voter": "rossco99" + }, + { + "rshares": "23338638054", + "voter": "jaewoocho" + }, + { + "rshares": "1910039425215", + "voter": "xeroc" + }, + { + "rshares": "1661657401786", + "voter": "joseph" + }, + { + "rshares": "471982260599", + "voter": "recursive3" + }, + { + "rshares": "3187826540990", + "voter": "recursive" + }, + { + "rshares": "1282783470", + "voter": "mineralwasser" + }, + { + "rshares": "702252849815", + "voter": "boombastic" + }, + { + "rshares": "1719075621", + "voter": "bingo-1" + }, + { + "rshares": "5936571539134", + "voter": "smooth.witness" + }, + { + "rshares": "457719147730", + "voter": "boatymcboatface" + }, + { + "rshares": "9890456090", + "voter": "idol" + }, + { + "rshares": "131787410217", + "voter": "team" + }, + { + "rshares": "1702427102", + "voter": "jocelyn" + }, + { + "rshares": "461461082967", + "voter": "leesunmoo" + }, + { + "rshares": "1247396916090", + "voter": "gavvet" + }, + { + "rshares": "74913635150", + "voter": "eeks" + }, + { + "rshares": "8567499992", + "voter": "fkn" + }, + { + "rshares": "11261443630", + "voter": "elishagh1" + }, + { + "rshares": "599827540724", + "voter": "nanzo-scoop" + }, + { + "rshares": "161287532172", + "voter": "steve-walschot" + }, + { + "rshares": "182039074638", + "voter": "mummyimperfect" + }, + { + "rshares": "313666285", + "voter": "coar" + }, + { + "rshares": "109431915950", + "voter": "asch" + }, + { + "rshares": "1414823587", + "voter": "murh" + }, + { + "rshares": "6375528917", + "voter": "cryptofunk" + }, + { + "rshares": "2219594239", + "voter": "error" + }, + { + "rshares": "5268583124", + "voter": "marta-zaidel" + }, + { + "rshares": "38749275184", + "voter": "ranko-k" + }, + { + "rshares": "985447048915", + "voter": "cyber" + }, + { + "rshares": "63472911304", + "voter": "theshell" + }, + { + "rshares": "52177367591", + "voter": "ak2020" + }, + { + "rshares": "417566592605", + "voter": "taoteh1221" + }, + { + "rshares": "375915775849", + "voter": "hedge-x" + }, + { + "rshares": "18668166065", + "voter": "samether" + }, + { + "rshares": "33779461634", + "voter": "ratel" + }, + { + "rshares": "85401868413", + "voter": "herzmeister" + }, + { + "rshares": "5287000077", + "voter": "tee-em" + }, + { + "rshares": "30496214097", + "voter": "michaelx" + }, + { + "rshares": "5950236300", + "voter": "mark-waser" + }, + { + "rshares": "130482031811", + "voter": "geoffrey" + }, + { + "rshares": "74777860177", + "voter": "kimziv" + }, + { + "rshares": "79450691320", + "voter": "emily-cook" + }, + { + "rshares": "2251928158", + "voter": "superfreek" + }, + { + "rshares": "471516850", + "voter": "mrhankeh" + }, + { + "rshares": "17908173089", + "voter": "grey580" + }, + { + "rshares": "68200649381", + "voter": "bacchist" + }, + { + "rshares": "20382051466", + "voter": "thebatchman" + }, + { + "rshares": "59056857395", + "voter": "lehard" + }, + { + "rshares": "76017835973", + "voter": "rubybian" + }, + { + "rshares": "18268797910", + "voter": "konstantin" + }, + { + "rshares": "2649402156", + "voter": "romel" + }, + { + "rshares": "6941291365", + "voter": "gatoso" + }, + { + "rshares": "41821532061", + "voter": "furion" + }, + { + "rshares": "200664863", + "voter": "barbara2" + }, + { + "rshares": "223036409", + "voter": "ch0c0latechip" + }, + { + "rshares": "206422340", + "voter": "doge4lyf" + }, + { + "rshares": "12011310308", + "voter": "asim" + }, + { + "rshares": "85512692", + "voter": "snowden" + }, + { + "rshares": "14804978653", + "voter": "aaseb" + }, + { + "rshares": "4431003942", + "voter": "karen13" + }, + { + "rshares": "1455625353", + "voter": "jrd8526" + }, + { + "rshares": "21565632626", + "voter": "artific" + }, + { + "rshares": "7164402609", + "voter": "lichtblick" + }, + { + "rshares": "37826396801", + "voter": "creemej" + }, + { + "rshares": "84865861", + "voter": "wildchild" + }, + { + "rshares": "3871359622", + "voter": "maximkichev" + }, + { + "rshares": "167294697812", + "voter": "blueorgy" + }, + { + "rshares": "1631211812", + "voter": "poseidon" + }, + { + "rshares": "2083366228", + "voter": "iamwne" + }, + { + "rshares": "362447415925", + "voter": "calaber24p" + }, + { + "rshares": "10466922918", + "voter": "rpf" + }, + { + "rshares": "3694190342", + "voter": "bitcoiner" + }, + { + "rshares": "33624572763", + "voter": "deanliu" + }, + { + "rshares": "459345887", + "voter": "meteor78" + }, + { + "rshares": "30193718340", + "voter": "zaebars" + }, + { + "rshares": "6948016204", + "voter": "positive" + }, + { + "rshares": "780088825", + "voter": "raymonjohnstone" + }, + { + "rshares": "19827631792", + "voter": "krabgat" + }, + { + "rshares": "11734541225", + "voter": "sisterholics" + }, + { + "rshares": "1483259422", + "voter": "alex.chien" + }, + { + "rshares": "8921616604", + "voter": "royalmacro" + }, + { + "rshares": "233934645", + "voter": "fnait" + }, + { + "rshares": "207827906", + "voter": "keepcalmand" + }, + { + "rshares": "1838091863", + "voter": "remlaps" + }, + { + "rshares": "3445177864", + "voter": "glitterpig" + }, + { + "rshares": "7221227809", + "voter": "uwe69" + }, + { + "rshares": "896285424", + "voter": "metaflute" + }, + { + "rshares": "50575844297", + "voter": "gomeravibz" + }, + { + "rshares": "9193626491", + "voter": "taker" + }, + { + "rshares": "2236809039", + "voter": "merej99" + }, + { + "rshares": "414945627496", + "voter": "laonie" + }, + { + "rshares": "166006086500", + "voter": "twinner" + }, + { + "rshares": "22430898487", + "voter": "laonie1" + }, + { + "rshares": "22947696195", + "voter": "laonie2" + }, + { + "rshares": "22955764004", + "voter": "laonie3" + }, + { + "rshares": "25206296089", + "voter": "laoyao" + }, + { + "rshares": "14653942462", + "voter": "myfirst" + }, + { + "rshares": "90711449970", + "voter": "somebody" + }, + { + "rshares": "3391693609", + "voter": "flysaga" + }, + { + "rshares": "5465055585", + "voter": "brendio" + }, + { + "rshares": "2084677795", + "voter": "gmurph" + }, + { + "rshares": "18607683624", + "voter": "midnightoil" + }, + { + "rshares": "2280336943", + "voter": "kalimor" + }, + { + "rshares": "504711698206", + "voter": "glitterfart" + }, + { + "rshares": "22951578069", + "voter": "laonie4" + }, + { + "rshares": "22949307467", + "voter": "laonie5" + }, + { + "rshares": "22946449112", + "voter": "laonie6" + }, + { + "rshares": "22942428841", + "voter": "laonie7" + }, + { + "rshares": "3489545901", + "voter": "kurtbeil" + }, + { + "rshares": "22939097897", + "voter": "laonie8" + }, + { + "rshares": "22936432119", + "voter": "laonie9" + }, + { + "rshares": "46536921016", + "voter": "xiaohui" + }, + { + "rshares": "177527074798", + "voter": "terrycraft" + }, + { + "rshares": "1321003450", + "voter": "dolov" + }, + { + "rshares": "88179884", + "voter": "bigsambucca" + }, + { + "rshares": "2287717822", + "voter": "elfkitchen" + }, + { + "rshares": "105894845081", + "voter": "joele" + }, + { + "rshares": "6166349652", + "voter": "oflyhigh" + }, + { + "rshares": "2229123966", + "voter": "paynode" + }, + { + "rshares": "1566982177", + "voter": "xiaokongcom" + }, + { + "rshares": "253808801", + "voter": "xcepta" + }, + { + "rshares": "3158713250", + "voter": "xianjun" + }, + { + "rshares": "12796476601", + "voter": "borran" + }, + { + "rshares": "64119004", + "voter": "jupiter.zeus" + }, + { + "rshares": "70633121", + "voter": "stevescriber" + }, + { + "rshares": "50027573", + "voter": "loli" + }, + { + "rshares": "51199976", + "voter": "nano2nd" + }, + { + "rshares": "2249451928", + "voter": "njall" + }, + { + "rshares": "206879958", + "voter": "microluck" + }, + { + "rshares": "6547835526", + "voter": "userlogin" + }, + { + "rshares": "6802729666", + "voter": "rubenalexander" + }, + { + "rshares": "59219258", + "voter": "photo00" + }, + { + "rshares": "604279479", + "voter": "tagira" + }, + { + "rshares": "2131733339", + "voter": "chinadaily" + }, + { + "rshares": "108403024", + "voter": "pollina" + }, + { + "rshares": "2649789126", + "voter": "levycore" + }, + { + "rshares": "22930483067", + "voter": "laonie10" + }, + { + "rshares": "332237822", + "voter": "mrlogic" + }, + { + "rshares": "59229074587", + "voter": "mandibil" + }, + { + "rshares": "2132454023", + "voter": "shadowspub" + }, + { + "rshares": "59067894", + "voter": "bonapetit" + }, + { + "rshares": "5053531368", + "voter": "richardcrill" + }, + { + "rshares": "22091338934", + "voter": "laonie11" + }, + { + "rshares": "2101664455", + "voter": "eight-rad" + }, + { + "rshares": "3336919086", + "voter": "xanoxt" + }, + { + "rshares": "1661479473", + "voter": "davidjkelley" + }, + { + "rshares": "187911420", + "voter": "team101" + }, + { + "rshares": "109225703", + "voter": "rusla" + }, + { + "rshares": "4892645779", + "voter": "mscleverclocks" + }, + { + "rshares": "727103786", + "voter": "ksena" + }, + { + "rshares": "11069296957", + "voter": "sponge-bob" + }, + { + "rshares": "4268200560", + "voter": "l0k1" + }, + { + "rshares": "15569990970", + "voter": "digital-wisdom" + }, + { + "rshares": "3791420478", + "voter": "ethical-ai" + }, + { + "rshares": "6830905360", + "voter": "jwaser" + }, + { + "rshares": "50858762", + "voter": "apparat" + }, + { + "rshares": "212888896291", + "voter": "asksisk" + }, + { + "rshares": "2675382304", + "voter": "bwaser" + }, + { + "rshares": "350998373", + "voter": "panther" + }, + { + "rshares": "659649765", + "voter": "ct-gurus" + }, + { + "rshares": "54793782", + "voter": "park.bom" + }, + { + "rshares": "395173675944", + "voter": "charlieshrem" + }, + { + "rshares": "60104450664", + "voter": "tracemayer" + }, + { + "rshares": "23239991726", + "voter": "brains" + }, + { + "rshares": "407083055", + "voter": "anomaly" + }, + { + "rshares": "2401189699", + "voter": "ellepdub" + }, + { + "rshares": "61292139", + "voter": "inarix03" + }, + { + "rshares": "172352271", + "voter": "ola1" + }, + { + "rshares": "12396603737", + "voter": "herpetologyguy" + }, + { + "rshares": "51826827", + "voter": "drac59" + }, + { + "rshares": "4816713747", + "voter": "morgan.waser" + }, + { + "rshares": "297771990", + "voter": "thefinanceguy" + }, + { + "rshares": "1258344048", + "voter": "anns" + }, + { + "rshares": "50907857", + "voter": "oxygen" + }, + { + "rshares": "50875769", + "voter": "cyan" + }, + { + "rshares": "50868434", + "voter": "jumbo" + }, + { + "rshares": "50865840", + "voter": "sting" + }, + { + "rshares": "50796122", + "voter": "factom" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "50568084", + "voter": "brazzers" + }, + { + "rshares": "50543061", + "voter": "rabobank" + }, + { + "rshares": "50538694", + "voter": "fenix" + }, + { + "rshares": "50349676", + "voter": "albertheijn" + }, + { + "rshares": "3689644671", + "voter": "strong-ai" + }, + { + "rshares": "52329350", + "voter": "ninjapainter" + }, + { + "rshares": "254506659", + "voter": "darkminded153" + }, + { + "rshares": "527435916", + "voter": "grisha-danunaher" + }, + { + "rshares": "162917785", + "voter": "ctu" + }, + { + "rshares": "162911190", + "voter": "front" + }, + { + "rshares": "1630327346", + "voter": "rusteemitblog" + }, + { + "rshares": "161089804", + "voter": "pyro" + }, + { + "rshares": "159025535", + "voter": "xtreme" + }, + { + "rshares": "155528114", + "voter": "icesteem" + }, + { + "rshares": "158602900", + "voter": "steem-wallet" + }, + { + "rshares": "158560941", + "voter": "steemthis" + }, + { + "rshares": "74838700", + "voter": "dealzgal" + }, + { + "rshares": "255357124", + "voter": "orenshani7" + }, + { + "rshares": "68013381", + "voter": "storage" + }, + { + "rshares": "58460105", + "voter": "blackmarket" + }, + { + "rshares": "61530871", + "voter": "gifts" + }, + { + "rshares": "93882016", + "voter": "expat" + }, + { + "rshares": "154566975", + "voter": "dimaisrael" + }, + { + "rshares": "1593664040", + "voter": "steemlift" + }, + { + "rshares": "138651704", + "voter": "toddemaher1" + } + ], + "author": "terrycraft", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "
\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman18.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

When looking through old photographs, you realize how much the world has changed around us.

\n
\u041f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u044f \u0441\u0442\u0430\u0440\u044b\u0435 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438, \u043e\u0441\u043e\u0437\u043d\u0430\u0451\u0448\u044c \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437\u043c\u0435\u043d\u0438\u043b\u0441\u044f \u043c\u0438\u0440 \u0432\u043e\u043a\u0440\u0443\u0433 \u043d\u0430\u0441.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman16.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

I am deeply convinced that the people imprinted on these black-and-white photographs never suspected what will happen to them in the future, whether it is immediate or distant As well as they didn't realized how quickly the years will pass, changing all the world around. So, as you look at their careless faces, you fairly quickly realize that your current situation is not much different.

\n
\u042f \u0433\u043b\u0443\u0431\u043e\u043a\u043e \u0443\u0432\u0435\u0440\u0435\u043d\u0430 \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u043b\u044e\u0434\u0438, \u0437\u0430\u043f\u0435\u0447\u0430\u0442\u043b\u0451\u043d\u043d\u044b\u0435 \u043d\u0430 \u0447\u0451\u0440\u043d\u043e-\u0431\u0435\u043b\u044b\u0445 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044f\u0445, \u043d\u0435 \u043f\u043e\u0434\u043e\u0437\u0440\u0435\u0432\u0430\u043b\u0438, \u0447\u0442\u043e \u0441\u0442\u0430\u043d\u0435\u0442 \u0441 \u043d\u0438\u043c\u0438 \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u043c, \u0438 \u043d\u0435 \u043e\u0447\u0435\u043d\u044c, \u0431\u0443\u0434\u0443\u0449\u0435\u043c. \u041d\u0435 \u0437\u043d\u0430\u043b\u0438 \u043e\u043d\u0438 \u0442\u0430\u043a\u0436\u0435, \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u0442\u0440\u0435\u043c\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u0440\u043e\u0439\u0434\u0443\u0442 \u0433\u043e\u0434\u044b, \u0438 \u043a\u0430\u043a \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u0441\u044f \u043c\u0438\u0440 \u0432\u043e\u043a\u0440\u0443\u0433. \u041f\u043e\u044d\u0442\u043e\u043c\u0443, \u0433\u043b\u044f\u0434\u044f \u043d\u0430 \u0438\u0445 \u0431\u0435\u0441\u043f\u0435\u0447\u043d\u044b\u0435 \u043b\u0438\u0446\u0430, \u0434\u043e\u0432\u043e\u043b\u044c\u043d\u043e \u0431\u044b\u0441\u0442\u0440\u043e \u043e\u0441\u043e\u0437\u043d\u0430\u0451\u0448\u044c, \u0447\u0442\u043e \u0442\u0432\u043e\u0451 \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0441\u0435\u0439\u0447\u0430\u0441 \u043c\u0430\u043b\u043e \u0447\u0435\u043c \u043e\u0442\u043b\u0438\u0447\u0430\u0435\u0442\u0441\u044f.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman14.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

Everything that happens around us changes the world we are witnessing. We live in an age of technological progress; the advent of the first computers, the Internet, gadgets, social networks, online games, e-commerce, cryptocurrency and, finally, a blockchain social network - the Steemit, which makes our minds work for creation of good content and its curation.

\n
\u0412\u0441\u0451 \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0435 \u0432\u043e\u043a\u0440\u0443\u0433 \u043d\u0430\u0441 \u043c\u0435\u043d\u044f\u0435\u0442 \u043c\u0438\u0440 \u043d\u0430 \u043d\u0430\u0448\u0438\u0445 \u0433\u043b\u0430\u0437\u0430\u0445. \u041c\u044b \u0436\u0438\u0432\u0451\u043c \u0432 \u0432\u0435\u043a \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0430; \u043f\u043e\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0432\u044b\u0445 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u0432, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430, \u0433\u0430\u0434\u0436\u0435\u0442\u043e\u0432, \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0435\u0442\u0435\u0439, \u043e\u043d\u043b\u0430\u0439\u043d-\u0438\u0433\u0440, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043c\u0430\u0433\u0430\u0437\u0438\u043d\u043e\u0432, \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0438, \u043d\u0430\u043a\u043e\u043d\u0435\u0446, \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 - Steemit, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0437\u0430\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043d\u0430\u0448\u0438 \u0443\u043c\u044b \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0445\u043e\u0440\u043e\u0448\u0435\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0435\u0433\u043e \u043a\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman09.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

And in 10 years, or maybe much earlier, we will see a completely different picture of reality. Generation Steem is coming. The generation that changed everything around and changed itself as well, in opposite to that generation you run with your eyes, trying to convince its immutability and the impossibility of change. No, this already will be the world of the past.

\n
\u0418 \u043b\u0435\u0442 \u0447\u0435\u0440\u0435\u0437 10, \u0430 \u043c\u043e\u0436\u0435\u0442 \u0437\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0440\u0430\u043d\u044c\u0448\u0435, \u043c\u044b \u0443\u0432\u0438\u0434\u0438\u043c \u0432 \u043a\u0430\u0434\u0440\u0435 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e \u0434\u0440\u0443\u0433\u0443\u044e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c. \u0413\u0440\u044f\u0434\u0451\u0442 Steem \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u0435, \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u043d\u0438\u0432\u0448\u0435\u0435 \u0432\u0441\u0451 \u0432\u043e\u043a\u0440\u0443\u0433 \u0441\u0435\u0431\u044f \u0438 \u0438\u0437\u043c\u0435\u043d\u0438\u0432\u0448\u0435\u0435\u0441\u044f \u0441\u0430\u043c\u043e, \u0430 \u043d\u0435 \u0442\u043e, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0441\u0435\u0439\u0447\u0430\u0441, \u043e\u0431\u0432\u043e\u0434\u044f \u0432\u0437\u0433\u043b\u044f\u0434\u043e\u043c, \u0432\u044b \u043f\u044b\u0442\u0430\u0435\u0442\u0435\u0441\u044c \u0443\u0431\u0435\u0434\u0438\u0442\u044c \u0432 \u0435\u0433\u043e \u043d\u0435\u0437\u044b\u0431\u043b\u0435\u043c\u043e\u0441\u0442\u0438 \u0438 \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u043d. \u041d\u0435\u0442, \u044d\u0442\u043e \u0443\u0436\u0435 \u0431\u0443\u0434\u0435\u0442 \u043c\u0438\u0440 \u043f\u0440\u043e\u0448\u043b\u043e\u0433\u043e.
\n\n\n\n

Written to the music: Antonio Vivaldi - The Four Seasons.

\n\n\nPlease follow me\n@panther\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @panther\n\n---\n\nAll STEEM Dollars for this post go to the featured author. \u0412\u0441\u0435 SD \u0437\u0430 \u043f\u043e\u0441\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442 \u0430\u0432\u0442\u043e\u0440.", + "category": "philosophy", + "children": 16, + "created": "2016-09-15T12:27:27", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman18.jpg", + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman16.jpg", + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman14.jpg", + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman09.jpg" ], - "author": "tarazkp", - "author_payout_value": "0.000 HBD", - "author_reputation": 80.5, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "
\n\n\nThirty minutes from now and combined with my two day a week furlough and the day off I took for the *non-arrival* of @galenkp (who should have been landing in Finland on Friday), I should be going entering into the first half of summer vacation. Due to the scheduling of a training session for my second day back afterward though, I will have to do all of the prep work before, which means I will have to work at least til Thursday as I have to wait for customer content to be delivered and as you can probably imagine, that isn't always timely. \n\nWell, it doesn't really change much I guess since I only really have work to do on my vacation anyway, especially since the weather looks like it is going to be raining for the entire time.\n\n![OI000368 1.jpg](https://files.peakd.com/file/peakd-hive/tarazkp/PUaQjmzJ-OI000368201.jpg)\n\nI sat down a little while ago and gave myself some space to write a passage for my dad's eulogy, which will be read by my brother next week. While I can write a lot, it isn't easy to choose the last words to say to someone, and not even be able to say them directly. It is a strange concept to talk to the dead, but if it brings comfort to the living, that is okay. I think that for me, it isn't about getting a sense of closure, it is about reflecting on who my father was to me and what that might mean for my future. \n\nThere is value in having an understanding of the past and using it to predict the future and I can no more extract my father from my future than I can my own heart, as he is a part of me and will affect every decision I make at the genetic level at the very least. While I am not a carbon copy of him, there are plenty of similarities, so learning from his experience would be wise. \n\nNone of us know what the future holds for us and we have very little say over the hand luck will play, but being prepared for it to play a part is important in my opinion. The preparation for luck to benefit is the same preparation for success without luck, doing the prerequisite tasks in order to have access to the tertiary results. Life is much like any process of education, to be able to advance, the basics have to be learned, otherwise we can find ourselves out of our depth.\n\nI think a lot of us are swimming in the deep end and feeling the pressure for survival in a world we aren't prepared for. I see a lot of the social interaction on places like Twitter as indicative of people who have not matured emotionally, but are putting themselves in conversations that trigger them. Outbursts of anger and violence that wouldn't be evoked, given the appropriate lessons in the past. I am pretty lucky to have a role model that exhibited at least some of the qualities of emotional control, but I do think that anyone can learn and improve themselves through practice.\n\nWe aren't encouraged to practice controlling ourselves though and instead are incentivized to do the opposite, to have uncontrolled and public outbursts as they generate drama and drive transactions. The payoff for us is to feel like our feelings matter, when in actual fact, most of our public feelings we ascribe ourselves are actually driven by an engineered narrative to evoke that very reaction, targeted at the groups we identify with at a granular level. It is a manipulation by design and because of our lack of relevance in the real world, we swallow it, hook, line and sinker. It is a race to the bottom and the social sinker used is heavy. \n\nI think for me however, I have been moving ever further away from the drama of the media-driven world and instead looking at life at the more practical levels of economy and community. I believe this is a healthier view when the move is toward improving the community collaboration through an economy that encourages continued working together toward improvement. \n\nThis is definitely not the mainstream position, as even though many \"movements\" claim to be social, at their root is the influence of corporation and government driving them in a direction of their choosing, like cows through a cattle run. The polarization of the various groups is control mechanism that allows for those with the reigns to always have a common enemy available to direct an individual group, for every single group. It is interesting to note how many believe that their group is above that of others, without ever seeing the manipulation. \n\nThe future is uncertain, but I do not think that mine is as uncertain as I believe it to be - although from an economic perspective, it could fall anywhere between the gutter and the stars. I think that my path in the near-term looks much like today and the mid-term is going to head along the same track, looking more practically at the economic and community aspects of life and my role within that system. I think that in time, this is where the real social movements will take a foothold, as they start to push back against the crush from the increasingly powerful centralized authorities until eventually, ground is made and the pressure of the mass of a collected community forms cracks in the wall. \n\nThis has been socially done before from various perspectives and degrees, but where they all fell short was in the economic aspects - the movements were always begging for those who held economy to *allow* change. When the new movements have their self-sustaining and owned economy - the participants can *be the change* and make it stick.\n\nIt is time that we stop acting like beggars asking for change on the street - and start being the change we need to be for ourselves. We hold far more cards to our future than we realize, we just have to do the pre-work. \n\nTaraz\n[ Gen1: Hive ]\n\n
", - "category": "hive-174578", - "children": 18, - "community": "hive-174578", - "community_title": "OCD", - "created": "2020-07-07T13:44:18", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://files.peakd.com/file/peakd-hive/tarazkp/PUaQjmzJ-OI000368201.jpg" - ], - "links": [ - "/@galenkp" - ], - "tags": [ - "thoughts", - "life", - "posh", - "future", - "technology", - "economics", - "philosophy" - ], - "users": [ - "galenkp" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 66369161553792, - "payout": 26.313, - "payout_at": "2020-07-14T13:44:18", - "pending_payout_value": "26.313 HBD", - "percent_steem_dollars": 10000, - "permlink": "begging-for-change-and-doing-the-work", - "post_id": 86932602, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 313 - }, - "title": "Begging for change and doing the work", - "updated": "2020-07-07T13:44:18", - "url": "/hive-174578/@tarazkp/begging-for-change-and-doing-the-work" - }, - { - "active_votes": [ - { - "rshares": "23756878942299", - "voter": "xeldal" - }, - { - "rshares": "21525807376", - "voter": "fractalnode" - }, - { - "rshares": "2462419544007", - "voter": "fulltimegeek" - }, - { - "rshares": "3308622974123", - "voter": "krnel" - }, - { - "rshares": "260349154766", - "voter": "daveks" - }, - { - "rshares": "106224239697", - "voter": "petrvl" - }, - { - "rshares": "21005798136", - "voter": "builderofcastles" - }, - { - "rshares": "19279512719", - "voter": "zedikaredirect" - }, - { - "rshares": "116509114246", - "voter": "worldfinances" - }, - { - "rshares": "932168325910", - "voter": "smasssh" - }, - { - "rshares": "288812366402", - "voter": "flauwy" - }, - { - "rshares": "17949822097", - "voter": "belahejna" - }, - { - "rshares": "30719306365", - "voter": "anacristinasilva" - }, - { - "rshares": "2338234449996", - "voter": "spectrumecons" - }, - { - "rshares": "4338780844661", - "voter": "gunthertopp" - }, - { - "rshares": "961227052048", - "voter": "steemvote" - }, - { - "rshares": "948597991", - "voter": "krazypoet" - }, - { - "rshares": "1724374307", - "voter": "francis.melville" - }, - { - "rshares": "9319225594", - "voter": "santigs" - }, - { - "rshares": "18255853930", - "voter": "artonmysleeve" - }, - { - "rshares": "26741444950", - "voter": "vegoutt-travel" - }, - { - "rshares": "1669755736783", - "voter": "fedesox" - }, - { - "rshares": "1647896748", - "voter": "awesome-gadgets" - }, - { - "rshares": "8850788398641", - "voter": "znnuksfe" - }, - { - "rshares": "5385908003", - "voter": "fun2learn" - }, - { - "rshares": "9245791341", - "voter": "best-strategy" - }, - { - "rshares": "160659360065", - "voter": "archbitsmith" - }, - { - "rshares": "98047485528", - "voter": "mysearchisover" - }, - { - "rshares": "483211416", - "voter": "idkpdx" - }, - { - "rshares": "62664299691", - "voter": "lionsuit" - }, - { - "rshares": "63741060704", - "voter": "scottshots" - }, - { - "rshares": "181053257455", - "voter": "digital.mine" - }, - { - "rshares": "8578819", - "voter": "laissez-faire" - }, - { - "rshares": "119119645588", - "voter": "agromeror" - }, - { - "rshares": "653398106", - "voter": "malricinferno" - }, - { - "rshares": "689149239", - "voter": "zintarmortalis" - }, - { - "rshares": "32557019589", - "voter": "steemitcuration" - }, - { - "rshares": "7138063986", - "voter": "rakk3187" - }, - { - "rshares": "0", - "voter": "dein-problem" - }, - { - "rshares": "4633021329", - "voter": "unit101" - }, - { - "rshares": "7362730756", - "voter": "littlegurl747" - }, - { - "rshares": "666202284425", - "voter": "xxxxxxxxxx" - }, - { - "rshares": "658178348729", - "voter": "bluesniper" - }, - { - "rshares": "329963844140", - "voter": "apix" - }, - { - "rshares": "3990744141", - "voter": "steem-fund" - }, - { - "rshares": "16347326906", - "voter": "scarletreaper" - }, - { - "rshares": "645851933", - "voter": "izhmash" - }, - { - "rshares": "567325753", - "voter": "sevensixtwo" - }, - { - "rshares": "588821724", - "voter": "bastogne" - }, - { - "rshares": "580393544", - "voter": "thirdarmy" - }, - { - "rshares": "3349995768", - "voter": "teo93" - }, - { - "rshares": "919054524", - "voter": "voodooranger" - }, - { - "rshares": "433509036096", - "voter": "votebetting" - }, - { - "rshares": "861800166053", - "voter": "lynds" - }, - { - "rshares": "704860183", - "voter": "dalia-silvana" - }, - { - "rshares": "6288443299", - "voter": "kryptoformator" - }, - { - "rshares": "6491982192", - "voter": "flauwy.apx" - }, - { - "rshares": "1423650329", - "voter": "coin-doubler" - }, - { - "rshares": "1959087318844", - "voter": "innerhive" - }, - { - "rshares": "942488843340", - "voter": "captainhive" - }, - { - "rshares": "1076342573", - "voter": "hivebuilderteam" - }, - { - "rshares": "1112810812", - "voter": "hivecur2" - }, - { - "rshares": "330522834", - "voter": "oyintari9" - }, - { - "rshares": "0", - "voter": "afrozhive" - } + "links": [ + "http://bigpicture.ru/?p=384365&fb_comment_id=180555112091488_997346", + "https://steemit.com/@panther" ], - "author": "pressfortruth", - "author_payout_value": "0.000 HBD", - "author_reputation": 74.91, - "beneficiaries": [], - "blacklists": [], - "body": "# Wearing a mask may soon be mandatory depending on where you live \nand this is causing a debate about whether or not masks are actually effective when it comes to protecting your health during a pandemic. Multiple studies have now concluded that masks are not only ineffective but they in fact offer a disadvantage to those who choose to wear them. \n# In this video \nDan Dicks of Press For Truth speaks with Denis Rancourt a PHD and former professor of physics at the University of Ottawa about a paper he wrote titled \u201cMasks Don\u2019t Work:\u00a0A Review of Science Relevant to COVID-19 Social Policy\u201d to discuss the science behind masks, why they don\u2019t work and how society should handle this highly contentious issue moving forward. \n\nhttps://youtu.be/xKHq1ixEYhQ\n\n# # GoGetFunding \u279c https://goget.fund/2UBhENH\n# Support independent media:\nPatreon \u279c http://www.patreon.com/PressForTruth\nPatreon Alternative \u279c https://pressfortruth.ca/donate\nPaypal \u279c https://www.paypal.me/PressforTruth\n\n# Cryptocurrencies:\nBitcoin \u279c 13oNiHUNGn9vdfv7MT5kjwe7np9bwf5ccv\nEthereum \u279c 0xEce2AEf1F26373a00BDC7243d1201a98578CC67e \nBitcoin Cash \u279c 1MxgFpQdMujLYRTkSTw4PGDmL99s83PFKR\nDash \u279c XirLdVdyaW9rXvhKic78ruc2X39HjNhdTV\nEOS \u279c 0x2BBB00605730feA136623CA366979705293DA659\nLitecoin \u279c LVVaVCfNN25AuU1Ex2s4tX2Ze3iCig2kRo\nARK \u279c ALLDoYdZTSo2G79Rn9RizzAes2bLwK2VVx\nLisk \u279c 6851060122493388407L \nVerge \u279c DGx3kPjZmiYpsZfEePjEpT6sStsNXS1vK2\nReddcoin \u279c RkMCsv5mtMpKaQZRuQFE5fzadse2G2DNfp\nNano \u279cxrb_3rc4uthr5ahyxxzhu1riihcmudiefr4qxzpoq9tq3brbaqpxe6wn8twzb3pq\nCardano \u279c DdzFFzCqrhsrGjJqD8F8NuPvhevcDkonwv3UfGwWxveZ5QQZ9ujtjmXpGxhrSXFa3AsxK94qdi8w2pq289FLqhgQVDyuUN3zxwd4g5M9\nQR Codes for all the above cryptos \u279c https://pressfortruth.ca/top-stories/donate-cryptocurrencies/", - "category": "news", - "children": 1, - "created": "2020-07-07T17:55:21", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "hiveblog/0.1", - "format": "markdown", - "image": [ - "https://img.youtube.com/vi/xKHq1ixEYhQ/0.jpg" - ], - "links": [ - "https://youtu.be/xKHq1ixEYhQ", - "https://goget.fund/2UBhENH", - "http://www.patreon.com/PressForTruth", - "https://pressfortruth.ca/donate", - "https://www.paypal.me/PressforTruth", - "https://pressfortruth.ca/top-stories/donate-cryptocurrencies/" - ], - "tags": [ - "news", - "masks", - "covid", - "anarchy", - "pressfortruth" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 56208978733549, - "payout": 22.079, - "payout_at": "2020-07-14T17:55:21", - "pending_payout_value": "22.079 HBD", - "percent_steem_dollars": 10000, - "permlink": "confirmed-the-absolute-science-behind-masks-and-the-proof-that-they-don-t-work-with-denis-rancourt", - "post_id": 86935897, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 62 - }, - "title": "CONFIRMED! The Absolute SCIENCE Behind MASKS And The PROOF THAT THEY DON\u2019T WORK with Denis Rancourt!", - "updated": "2020-07-07T17:55:21", - "url": "/news/@pressfortruth/confirmed-the-absolute-science-behind-masks-and-the-proof-that-they-don-t-work-with-denis-rancourt" - }, - { - "active_votes": [ - { - "rshares": "670433537824", - "voter": "fminerten" - }, - { - "rshares": "7559066846413", - "voter": "steempty" - }, - { - "rshares": "126001062598", - "voter": "nanzo-scoop" - }, - { - "rshares": "17857915014", - "voter": "mummyimperfect" - }, - { - "rshares": "7106498801", - "voter": "ak2020" - }, - { - "rshares": "463345986922", - "voter": "mark-waser" - }, - { - "rshares": "553699289", - "voter": "emily-cook" - }, - { - "rshares": "62412400303", - "voter": "arcange" - }, - { - "rshares": "1604756884", - "voter": "raphaelle" - }, - { - "rshares": "431524903690", - "voter": "always1success" - }, - { - "rshares": "13899000105063", - "voter": "glitterfart" - }, - { - "rshares": "8821974647474", - "voter": "jphamer1" - }, - { - "rshares": "500749798783", - "voter": "borran" - }, - { - "rshares": "258816941460", - "voter": "daveks" - }, - { - "rshares": "430979133999", - "voter": "digital-wisdom" - }, - { - "rshares": "1856038819", - "voter": "ethical-ai" - }, - { - "rshares": "22107030796", - "voter": "jwaser" - }, - { - "rshares": "13533263056", - "voter": "bwaser" - }, - { - "rshares": "6596635912", - "voter": "t-bot" - }, - { - "rshares": "143227353082", - "voter": "herpetologyguy" - }, - { - "rshares": "27341888747", - "voter": "morgan.waser" - }, - { - "rshares": "1889317371", - "voter": "strong-ai" - }, - { - "rshares": "196156363875", - "voter": "jaybird" - }, - { - "rshares": "877933274", - "voter": "technoprogressiv" - }, - { - "rshares": "21618108799", - "voter": "mafeeva" - }, - { - "rshares": "1808059010", - "voter": "mow" - }, - { - "rshares": "7853061904", - "voter": "cardboard" - }, - { - "rshares": "60612133896", - "voter": "deadspace" - }, - { - "rshares": "4402773918671", - "voter": "tarazkp" - }, - { - "rshares": "1931846826", - "voter": "freebornsociety" - }, - { - "rshares": "12155054401", - "voter": "arnel" - }, - { - "rshares": "18954665881", - "voter": "theywillkillyou" - }, - { - "rshares": "19537685192", - "voter": "freddbrito" - }, - { - "rshares": "39103277680", - "voter": "deniskj" - }, - { - "rshares": "183340664009", - "voter": "benedict08" - }, - { - "rshares": "79051743697", - "voter": "goldkey" - }, - { - "rshares": "147725431031", - "voter": "drorion" - }, - { - "rshares": "817853417054", - "voter": "steemvote" - }, - { - "rshares": "853270420965", - "voter": "onetin84" - }, - { - "rshares": "14489004024", - "voter": "santigs" - }, - { - "rshares": "60560468289", - "voter": "pele23" - }, - { - "rshares": "18008113234", - "voter": "artonmysleeve" - }, - { - "rshares": "7917994965", - "voter": "zeky" - }, - { - "rshares": "14499855114", - "voter": "espoem" - }, - { - "rshares": "17886122373", - "voter": "gringo211985" - }, - { - "rshares": "25167007530", - "voter": "fknmayhem" - }, - { - "rshares": "14563045000", - "voter": "joseph1956" - }, - { - "rshares": "10590682705", - "voter": "tradingideas" - }, - { - "rshares": "4045416479", - "voter": "mariu.espinoza" - }, - { - "rshares": "1533502857", - "voter": "chireerocks" - }, - { - "rshares": "746877808010", - "voter": "armentor" - }, - { - "rshares": "84860570887", - "voter": "lyon89" - }, - { - "rshares": "4495931628", - "voter": "candyboy" - }, - { - "rshares": "142648648807", - "voter": "aussieninja" - }, - { - "rshares": "1026814212", - "voter": "jewel-lover" - }, - { - "rshares": "80769298283", - "voter": "alexanderfluke" - }, - { - "rshares": "743799448", - "voter": "korinkrafting" - }, - { - "rshares": "5692658227", - "voter": "pexpresiones" - }, - { - "rshares": "29908198380", - "voter": "socialmediaseo" - }, - { - "rshares": "11368222698", - "voter": "mermaidvampire" - }, - { - "rshares": "1841332850", - "voter": "jimcustodio" - }, - { - "rshares": "34954798341", - "voter": "casberp" - }, - { - "rshares": "540203195", - "voter": "cfminer" - }, - { - "rshares": "2167932212", - "voter": "sweetkathy" - }, - { - "rshares": "49393188030", - "voter": "cst90" - }, - { - "rshares": "146666125358", - "voter": "whack.science" - }, - { - "rshares": "90800159922", - "voter": "rubencress" - }, - { - "rshares": "883274919585", - "voter": "leeyh" - }, - { - "rshares": "3731973451", - "voter": "frassman" - }, - { - "rshares": "92847183185", - "voter": "ronaldoavelino" - }, - { - "rshares": "11417986147", - "voter": "goldvault" - }, - { - "rshares": "226758719311", - "voter": "dera123" - }, - { - "rshares": "5347891005", - "voter": "jan23com" - }, - { - "rshares": "1071487123260", - "voter": "jkramer" - }, - { - "rshares": "22348510295", - "voter": "m2nnari" - }, - { - "rshares": "28449669952", - "voter": "tesmoforia" - }, - { - "rshares": "7668406458", - "voter": "yameen" - }, - { - "rshares": "3318498860", - "voter": "choco11oreo11" - }, - { - "rshares": "26455831092", - "voter": "tsnaks" - }, - { - "rshares": "9087930616", - "voter": "rachelleignacio" - }, - { - "rshares": "139166908285", - "voter": "steem-tube" - }, - { - "rshares": "103583142913", - "voter": "uche-nna" - }, - { - "rshares": "1627390289791", - "voter": "solarwarrior" - }, - { - "rshares": "180449328165", - "voter": "digital.mine" - }, - { - "rshares": "205418365907", - "voter": "fitat40" - }, - { - "rshares": "0", - "voter": "inteligente" - }, - { - "rshares": "34031490881", - "voter": "thehive" - }, - { - "rshares": "5026987129", - "voter": "littleshadow" - }, - { - "rshares": "950505862", - "voter": "blackpuma1x2" - }, - { - "rshares": "1692793941", - "voter": "joseph6232" - }, - { - "rshares": "3064645641", - "voter": "emaillisahere" - }, - { - "rshares": "3761169491", - "voter": "jokinmenipieleen" - }, - { - "rshares": "612152090", - "voter": "buzzbee" - }, - { - "rshares": "6823192482", - "voter": "kosikredki" - }, - { - "rshares": "1330091685", - "voter": "arkmy" - }, - { - "rshares": "3797781587", - "voter": "caoimhin" - }, - { - "rshares": "34266771524", - "voter": "a-bot" - }, - { - "rshares": "1388105148", - "voter": "djtrucker" - }, - { - "rshares": "15494412", - "voter": "laissez-faire" - }, - { - "rshares": "40454470751", - "voter": "marshalmugi" - }, - { - "rshares": "1610060165", - "voter": "podg3" - }, - { - "rshares": "2881263662", - "voter": "silverkey" - }, - { - "rshares": "12433666655", - "voter": "silvervault" - }, - { - "rshares": "4775595643", - "voter": "cryptycoon" - }, - { - "rshares": "5062389489", - "voter": "cryptoclerk" - }, - { - "rshares": "821574173", - "voter": "reverendrum" - }, - { - "rshares": "4666094023", - "voter": "misstaken" - }, - { - "rshares": "6826185026", - "voter": "anroja" - }, - { - "rshares": "730254892", - "voter": "mannaman" - }, - { - "rshares": "1889012615", - "voter": "thrasher666" - }, - { - "rshares": "811229271", - "voter": "florino" - }, - { - "rshares": "1427235280", - "voter": "daisybuzz" - }, - { - "rshares": "1858307800", - "voter": "jussbren" - }, - { - "rshares": "1035556940", - "voter": "smonia" - }, - { - "rshares": "10955413782", - "voter": "brucutu" - }, - { - "rshares": "1245398343", - "voter": "smon-fan" - }, - { - "rshares": "18259378372", - "voter": "blind-spot" - }, - { - "rshares": "665230523", - "voter": "tr777" - }, - { - "rshares": "549017591", - "voter": "sm-jewel" - }, - { - "rshares": "15480535639", - "voter": "delabo" - }, - { - "rshares": "523228190", - "voter": "tr77" - }, - { - "rshares": "552786952", - "voter": "smoner" - }, - { - "rshares": "772819279", - "voter": "smonian" - }, - { - "rshares": "15898088975", - "voter": "smon-joa" - }, - { - "rshares": "534777508", - "voter": "jjangjjanggirl" - }, - { - "rshares": "4692981832", - "voter": "scoopstakes" - }, - { - "rshares": "3098209714", - "voter": "nanzo-snaps" - }, - { - "rshares": "806718015", - "voter": "goodcontentbot" - }, - { - "rshares": "678886098", - "voter": "steemitmonsters" - }, - { - "rshares": "24972724606", - "voter": "leeyh2" - }, - { - "rshares": "541031092", - "voter": "smonbear" - }, - { - "rshares": "10578401897", - "voter": "wolffeys" - }, - { - "rshares": "457256638700", - "voter": "battlegames" - }, - { - "rshares": "11537095875", - "voter": "yonnathang" - }, - { - "rshares": "41566192", - "voter": "blockchainpeople" - }, - { - "rshares": "310536582485", - "voter": "scholaris" - }, - { - "rshares": "576069571", - "voter": "ssc-token" - }, - { - "rshares": "149481931", - "voter": "tradingideas2" - }, - { - "rshares": "28236132148", - "voter": "plankton.token" - }, - { - "rshares": "3102518238", - "voter": "iamjohn" - }, - { - "rshares": "537269365", - "voter": "suigener1s" - }, - { - "rshares": "2972248616", - "voter": "leeyh3" - }, - { - "rshares": "545273102", - "voter": "kgswallet" - }, - { - "rshares": "15099345080", - "voter": "yeswecan" - }, - { - "rshares": "51028118060", - "voter": "asmr.tist" - }, - { - "rshares": "0", - "voter": "tradingideas.spt" - }, - { - "rshares": "1370863218", - "voter": "leeyh5" - }, - { - "rshares": "5068712297", - "voter": "babytarazkp" - }, - { - "rshares": "209669864", - "voter": "tina-tina" - }, - { - "rshares": "6450883056", - "voter": "thranax" - }, - { - "rshares": "317800743", - "voter": "happiness19" - }, - { - "rshares": "2344383", - "voter": "gdhaetae" - }, - { - "rshares": "691135354274", - "voter": "spt-skillup" - }, - { - "rshares": "26521573302", - "voter": "acta" - }, - { - "rshares": "18506621562", - "voter": "the-table" - }, - { - "rshares": "431199904", - "voter": "pukeko" - }, - { - "rshares": "4043151387", - "voter": "cardtrader" - }, - { - "rshares": "1752543786", - "voter": "thehouse" - }, - { - "rshares": "815026447", - "voter": "dnflsms" - }, - { - "rshares": "513443660", - "voter": "jessy22" - }, - { - "rshares": "1860873490", - "voter": "freedomteam2019" - }, - { - "rshares": "665074899", - "voter": "freddlm" - }, - { - "rshares": "122526302320", - "voter": "silverquest" - }, - { - "rshares": "41404393599", - "voter": "riccc96" - }, - { - "rshares": "21249546664", - "voter": "freemotherearth" - }, - { - "rshares": "189210328", - "voter": "keep-keep" - }, - { - "rshares": "0", - "voter": "detetive" - }, - { - "rshares": "8025392459", - "voter": "honeychip" - }, - { - "rshares": "560806729", - "voter": "steemlondon" - }, - { - "rshares": "4285087216", - "voter": "greatnorthcrypto" - }, - { - "rshares": "2201151643", - "voter": "gmlrecordz" - }, - { - "rshares": "874346439", - "voter": "keepit2" - }, - { - "rshares": "84092051111", - "voter": "lacking" - }, - { - "rshares": "930844862", - "voter": "piratedice" - }, - { - "rshares": "1574979668", - "voter": "kgsupport" - }, - { - "rshares": "1611357800", - "voter": "tommys.shop" - }, - { - "rshares": "2071298903", - "voter": "fengchao" - }, - { - "rshares": "546273843", - "voter": "hivewaves" - }, - { - "rshares": "329448923954", - "voter": "hiveyoda" - }, - { - "rshares": "506862235672", - "voter": "softworld" - }, - { - "rshares": "10039979101", - "voter": "velinov86" - }, - { - "rshares": "1411358440", - "voter": "paulman" - }, - { - "rshares": "13192852801", - "voter": "hairofmedusa" - }, - { - "rshares": "164448336828", - "voter": "ghaazi" - }, - { - "rshares": "3845128474", - "voter": "weloveart" - }, - { - "rshares": "336878534686", - "voter": "ronavel" - }, - { - "rshares": "998342714278", - "voter": "kingfadino" - }, - { - "rshares": "2230744386", - "voter": "reza-shamim" - }, - { - "rshares": "1902578092", - "voter": "oladele-art" - }, - { - "rshares": "727548635", - "voter": "hivecur2" - } + "tags": [ + "philosophy", + "thoughts", + "steemit", + "ru" ], - "author": "acidyo", - "author_payout_value": "0.000 HBD", - "author_reputation": 80.49, - "author_role": "mod", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "I was looking for some new games to play during my \"free time\" as world of warcraft feels a bit dull now before the new expansion comes out that's set some time this year - I'm guessing it's unsure exactly when either cause it's too early or due to covid but can't help but feel that the latter has had a big effect on the release date either way. I remembered that before I moved away from Finland I pre-ordered Battlefield 5 and only played the open beta before that so I started downloading it on Origin. Having missed most of what has happened ever since it's release or how many are still playing it I was surprised to see the amount of new campaigns that existed that I didn't remember existing way back. I believe I played one of them so I moved onto the second one called \"Under no flag\".\n\nBattlefield has always been an amazing game in my eyes, the push of the company to utilize game engine's to the max and make the game as beautiful as it can be for current hardware really sets it aside other ones altho there are many lately attempting the same.\n\nI started recording it without voiceover at first as it was just a test but I didn't want to miss any of the campaign and leave it unrecorded as that could've meant cutscenes that would not have played back if I just restarted it. Also I realized that recording it at 1440p with GeForce Experience was taking a bit too much of a toll on my GPU and possibly rest of the PC. I mean even my SSD was already almost full after downloading the 88gb sized game. So this first part is going to be a bit laggy and spikey now and then, I even think the video is a bit worse than the gameplay was cause it might be that the GPU focuses on the game prior to the recording but either way, just warning you. \n\nhttps://youtu.be/bjzNgz7fgaw\n\nThe next part when I decided to put my mic on and lowered the game's output of the sound I also adjusted a few graphic settings so it wouldn't lag as much but noticed too late that my mic sound was still a bit too low. Which is started to be really annoying cause I have the game's sound output at under 60% while the mic is at 100% with a 20% boost on.\n\nhttps://youtu.be/wukGDyX0Gqw\n\nOh also I thought I'm really good cause of my CS:GO experience so I put the difficulty at hard and got rekt quite a few times but if it's too easy then it's not fun - I usually say. \n\nhttps://youtu.be/WR9h3u0Uz4I\n\nThis was the end of that campaign, I really like how it turned out on video watching it at 1440p it's pretty neat. Can't wait to see what future games will be like although I'm afraid I'm going to have to upgrade my GPU or get another 1080 TI. Those 2k series GPU sure look sweet though, hopefully they become a bit cheaper until some great games come out you don't want to miss out on playing them and recording them at max settings.\n\nHope you enjoy the gameplay, let me know what you think of BFV! If you have any other games you'd want me to try out feel free to let me know about that too and I'll check if my budget allows to purchase them. :3\n\nYes @borran, I'll try to remember to continue the GTA5 campaign very soon. (noticed the other day that game was taking so much space in my SSD and remembered I was going to continue playing it :D)\n\n___\n\nhttps://images.hive.blog/640x0/https://files.peakd.com/file/peakd-hive/hiddenblade/IhaMpvWL-acid20plays-.jpg", - "category": "hive-140217", - "children": 1, - "community": "hive-140217", - "community_title": "Hive Gaming", - "created": "2020-07-07T19:49:30", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://images.hive.blog/640x0/https://files.peakd.com/file/peakd-hive/hiddenblade/IhaMpvWL-acid20plays-.jpg" - ], - "links": [ - "/@borran" - ], - "tags": [ - "battlefield5", - "gaming", - "campaign" - ], - "users": [ - "borran" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 51202430291033, - "payout": 20.001, - "payout_at": "2020-07-14T19:49:30", - "pending_payout_value": "20.001 HBD", - "percent_steem_dollars": 10000, - "permlink": "acid-plays-battlefield-5-campaign-under-no-flag", - "post_id": 86937460, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 187 - }, - "title": "[Acid Plays] Battlefield 5 Campaign - Under no flag", - "updated": "2020-07-07T19:49:30", - "url": "/hive-140217/@acidyo/acid-plays-battlefield-5-campaign-under-no-flag" + "users": [ + "panther" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 61603577309634, + "payout": 220.99, + "payout_at": "2016-09-22T12:27:27", + "pending_payout_value": "220.990 HBD", + "percent_hbd": 10000, + "permlink": "a-look-from-the-past-vzglyad-iz-proshlogo-featuring-panther-as-author", + "post_id": 1253231, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 210 + }, + "title": "A Look From the Past / \u0412\u0437\u0433\u043b\u044f\u0434 \u0438\u0437 \u043f\u0440\u043e\u0448\u043b\u043e\u0433\u043e (featuring @panther as author).", + "updated": "2016-09-15T12:27:27", + "url": "/philosophy/@terrycraft/a-look-from-the-past-vzglyad-iz-proshlogo-featuring-panther-as-author" }, { - "active_votes": [ - { - "rshares": "63224660243", - "voter": "tombstone" - }, - { - "rshares": "431996503994", - "voter": "roelandp" - }, - { - "rshares": "4594783426", - "voter": "matt-a" - }, - { - "rshares": "92891495947", - "voter": "fiveboringgames" - }, - { - "rshares": "201867792738", - "voter": "originate" - }, - { - "rshares": "1732870026", - "voter": "bestofreddit" - }, - { - "rshares": "24708775848", - "voter": "steemyoda" - }, - { - "rshares": "133840536601", - "voter": "lighteye" - }, - { - "rshares": "160630699650", - "voter": "detlev" - }, - { - "rshares": "4920578509", - "voter": "ma1neevent" - }, - { - "rshares": "670341750", - "voter": "activate.alpha" - }, - { - "rshares": "1357584366", - "voter": "kennyroy" - }, - { - "rshares": "5247408056", - "voter": "aleister" - }, - { - "rshares": "6290023857", - "voter": "arrliinn" - }, - { - "rshares": "7078199133", - "voter": "d-pend" - }, - { - "rshares": "268717155767", - "voter": "offgridlife" - }, - { - "rshares": "145359462293", - "voter": "tattoodjay" - }, - { - "rshares": "2775479833", - "voter": "dante31" - }, - { - "rshares": "1028288321664", - "voter": "howo" - }, - { - "rshares": "26632056545", - "voter": "dine77" - }, - { - "rshares": "4125195013122", - "voter": "ocd" - }, - { - "rshares": "942010547944", - "voter": "steemvote" - }, - { - "rshares": "2889057153", - "voter": "macchiata" - }, - { - "rshares": "30426280175", - "voter": "keithboone" - }, - { - "rshares": "86731431844", - "voter": "masummim50" - }, - { - "rshares": "9106784047", - "voter": "kimzwarch" - }, - { - "rshares": "3163789986", - "voter": "justinparke" - }, - { - "rshares": "321447143199", - "voter": "celestal" - }, - { - "rshares": "2896350973238", - "voter": "therealwolf" - }, - { - "rshares": "13505006055", - "voter": "jlsplatts" - }, - { - "rshares": "1468731986", - "voter": "divinekids" - }, - { - "rshares": "4532704842", - "voter": "hanggggbeeee" - }, - { - "rshares": "1038139222", - "voter": "liverpool-fan" - }, - { - "rshares": "209404496671", - "voter": "eonwarped" - }, - { - "rshares": "1532328520583", - "voter": "postpromoter" - }, - { - "rshares": "7939872187", - "voter": "mejustandrew" - }, - { - "rshares": "87393926177", - "voter": "steemflow" - }, - { - "rshares": "34175692942", - "voter": "sankysanket18" - }, - { - "rshares": "4680557494", - "voter": "gtrussi" - }, - { - "rshares": "1659554738", - "voter": "lordnigel" - }, - { - "rshares": "6085573653", - "voter": "tcpaikano" - }, - { - "rshares": "592941889024", - "voter": "smartsteem" - }, - { - "rshares": "16162185333", - "voter": "mytechtrail" - }, - { - "rshares": "3607009315", - "voter": "itchyfeetdonica" - }, - { - "rshares": "581554582", - "voter": "godlovermel25" - }, - { - "rshares": "1505695812", - "voter": "tomatom" - }, - { - "rshares": "6411886540", - "voter": "gabrielatravels" - }, - { - "rshares": "901590111", - "voter": "chrismadcboy2016" - }, - { - "rshares": "121087594429", - "voter": "ocd-witness" - }, - { - "rshares": "804767117", - "voter": "ericburgoyne" - }, - { - "rshares": "23241916713", - "voter": "bigtom13" - }, - { - "rshares": "273538967253", - "voter": "takowi" - }, - { - "rshares": "984186779", - "voter": "russellstockley" - }, - { - "rshares": "5083758448", - "voter": "forester-joe" - }, - { - "rshares": "996573868", - "voter": "cruisin" - }, - { - "rshares": "18465329119", - "voter": "miroslavrc" - }, - { - "rshares": "1157764381", - "voter": "greendo" - }, - { - "rshares": "2967180990", - "voter": "flaxz" - }, - { - "rshares": "185937227577", - "voter": "hiddenblade" - }, - { - "rshares": "47542813941", - "voter": "indigoocean" - }, - { - "rshares": "4695389320", - "voter": "celinavisaez" - }, - { - "rshares": "1815755891", - "voter": "crystalhuman" - }, - { - "rshares": "77612377801", - "voter": "pladozero" - }, - { - "rshares": "181129052897", - "voter": "nateaguila" - }, - { - "rshares": "937819435", - "voter": "linco" - }, - { - "rshares": "701964647", - "voter": "yougotavote" - }, - { - "rshares": "16467706241297", - "voter": "ocdb" - }, - { - "rshares": "6132726500", - "voter": "sadbear" - }, - { - "rshares": "599182280", - "voter": "jesusmedit" - }, - { - "rshares": "1497374644", - "voter": "dronegraphica" - }, - { - "rshares": "828813198", - "voter": "nancybmp" - }, - { - "rshares": "3687542125", - "voter": "mobi72" - }, - { - "rshares": "14650681", - "voter": "laissez-faire" - }, - { - "rshares": "1037362106", - "voter": "pushpedal" - }, - { - "rshares": "5313788611", - "voter": "bettervision" - }, - { - "rshares": "33871438893", - "voter": "francescomai" - }, - { - "rshares": "6102801072", - "voter": "edriseur" - }, - { - "rshares": "2010561488", - "voter": "kork75" - }, - { - "rshares": "5759284249", - "voter": "erofan" - }, - { - "rshares": "1041614417", - "voter": "abbenay" - }, - { - "rshares": "6779232206", - "voter": "cryptofiloz" - }, - { - "rshares": "1958181825", - "voter": "smalltall" - }, - { - "rshares": "3243152681", - "voter": "squareonefarms" - }, - { - "rshares": "18050821362", - "voter": "maryincryptoland" - }, - { - "rshares": "19618143422", - "voter": "epicdice" - }, - { - "rshares": "3251290602", - "voter": "yiobri" - }, - { - "rshares": "585921988", - "voter": "helgalubevi" - }, - { - "rshares": "3992059676", - "voter": "ocd-accountant" - }, - { - "rshares": "2443754134", - "voter": "leighscotford" - }, - { - "rshares": "7978574799", - "voter": "ph1102" - }, - { - "rshares": "2423368499", - "voter": "shimozurdo" - }, - { - "rshares": "761038904", - "voter": "driedfruit" - }, - { - "rshares": "602345614", - "voter": "maddogmike" - }, - { - "rshares": "2031568564", - "voter": "iamraincrystal" - }, - { - "rshares": "13766293801", - "voter": "bradleyarrow" - }, - { - "rshares": "23743110272", - "voter": "sandymeyer" - }, - { - "rshares": "561430048", - "voter": "steemlondon" - }, - { - "rshares": "589519284", - "voter": "splatts" - }, - { - "rshares": "7139293366", - "voter": "rcaine" - }, - { - "rshares": "2305289656", - "voter": "dollarbills" - }, - { - "rshares": "286168537", - "voter": "bela29" - }, - { - "rshares": "10457542362", - "voter": "goldstreet" - }, - { - "rshares": "33039200014442", - "voter": "darthknight" - }, - { - "rshares": "6585869368", - "voter": "dpend.active" - }, - { - "rshares": "5075378759", - "voter": "thepeakstudio" - }, - { - "rshares": "198962612094", - "voter": "nulledgh0st" - }, - { - "rshares": "1827436593", - "voter": "marvschurchill1" - }, - { - "rshares": "20927425214", - "voter": "the100" - }, - { - "rshares": "919577884", - "voter": "iameden" - }, - { - "rshares": "3414551419", - "voter": "rihc94" - }, - { - "rshares": "0", - "voter": "parung76" - }, - { - "rshares": "745251635", - "voter": "jadeaca" - }, - { - "rshares": "53934119010", - "voter": "hivehustlers" - }, - { - "rshares": "150000000", - "voter": "tasri" - } + "active_votes": [ + { + "rshares": "532169253053", + "voter": "barrie" + }, + { + "rshares": "31619883437623", + "voter": "smooth" + }, + { + "rshares": "2104460112078", + "voter": "badassmother" + }, + { + "rshares": "2145924640161", + "voter": "hr1" + }, + { + "rshares": "1417915977465", + "voter": "rossco99" + }, + { + "rshares": "23814289766", + "voter": "jaewoocho" + }, + { + "rshares": "1703642542869", + "voter": "joseph" + }, + { + "rshares": "475597049622", + "voter": "recursive2" + }, + { + "rshares": "636257408102", + "voter": "masteryoda" + }, + { + "rshares": "3255552805749", + "voter": "recursive" + }, + { + "rshares": "1319401954", + "voter": "mineralwasser" + }, + { + "rshares": "723485629708", + "voter": "boombastic" + }, + { + "rshares": "96850892172", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "1768181243", + "voter": "bingo-1" + }, + { + "rshares": "5934415897198", + "voter": "smooth.witness" + }, + { + "rshares": "1304768990979", + "voter": "steempower" + }, + { + "rshares": "456278512142", + "voter": "boatymcboatface" + }, + { + "rshares": "9890048933", + "voter": "idol" + }, + { + "rshares": "296830135486", + "voter": "chitty" + }, + { + "rshares": "491386120119", + "voter": "noaommerrr" + }, + { + "rshares": "1702377748", + "voter": "jocelyn" + }, + { + "rshares": "85268786798", + "voter": "acidsun" + }, + { + "rshares": "77509187475", + "voter": "easteagle13" + }, + { + "rshares": "194274169571", + "voter": "jamtaylor" + }, + { + "rshares": "74913340244", + "voter": "eeks" + }, + { + "rshares": "14615120866", + "voter": "fkn" + }, + { + "rshares": "478362750", + "voter": "paco-steem" + }, + { + "rshares": "5762166771", + "voter": "spaninv" + }, + { + "rshares": "8867214614", + "voter": "james-show" + }, + { + "rshares": "19210663051", + "voter": "elishagh1" + }, + { + "rshares": "599812753161", + "voter": "nanzo-scoop" + }, + { + "rshares": "10057636659", + "voter": "kefkius" + }, + { + "rshares": "182037114530", + "voter": "mummyimperfect" + }, + { + "rshares": "313666285", + "voter": "coar" + }, + { + "rshares": "109429287148", + "voter": "asch" + }, + { + "rshares": "1414771825", + "voter": "murh" + }, + { + "rshares": "6375475951", + "voter": "cryptofunk" + }, + { + "rshares": "2219507871", + "voter": "error" + }, + { + "rshares": "5268583124", + "voter": "marta-zaidel" + }, + { + "rshares": "985431200080", + "voter": "cyber" + }, + { + "rshares": "65234010126", + "voter": "theshell" + }, + { + "rshares": "52176837915", + "voter": "ak2020" + }, + { + "rshares": "3924426072251", + "voter": "satoshifund" + }, + { + "rshares": "373242613", + "voter": "stiletto" + }, + { + "rshares": "56687866808", + "voter": "juanmiguelsalas" + }, + { + "rshares": "33773766247", + "voter": "ratel" + }, + { + "rshares": "219282437688", + "voter": "will-zewe" + }, + { + "rshares": "79219201090", + "voter": "tim-johnston" + }, + { + "rshares": "19597062136", + "voter": "ziv" + }, + { + "rshares": "16102536836", + "voter": "zakharya" + }, + { + "rshares": "2246887418", + "voter": "stephen-somers" + }, + { + "rshares": "286332817574", + "voter": "trogdor" + }, + { + "rshares": "175807204421", + "voter": "thedashguy" + }, + { + "rshares": "5950208619", + "voter": "mark-waser" + }, + { + "rshares": "17023129603", + "voter": "albertogm" + }, + { + "rshares": "213644107795", + "voter": "kimziv" + }, + { + "rshares": "79449639183", + "voter": "emily-cook" + }, + { + "rshares": "2316258127", + "voter": "superfreek" + }, + { + "rshares": "31567740828", + "voter": "acassity" + }, + { + "rshares": "17557032440", + "voter": "grey580" + }, + { + "rshares": "1250400407", + "voter": "arcaneinfo" + }, + { + "rshares": "3987474604", + "voter": "michaellamden68" + }, + { + "rshares": "449234523497", + "voter": "ericvancewalton" + }, + { + "rshares": "20789508317", + "voter": "thebatchman" + }, + { + "rshares": "76015962675", + "voter": "rubybian" + }, + { + "rshares": "256232582", + "voter": "mstang83" + }, + { + "rshares": "7271192517", + "voter": "elyaque" + }, + { + "rshares": "25055988031", + "voter": "tcfxyz" + }, + { + "rshares": "2596866157", + "voter": "romel" + }, + { + "rshares": "6939608148", + "voter": "futurefood" + }, + { + "rshares": "839919246636", + "voter": "slowwalker" + }, + { + "rshares": "71342508795", + "voter": "furion" + }, + { + "rshares": "342310650", + "voter": "barbara2" + }, + { + "rshares": "380473875", + "voter": "ch0c0latechip" + }, + { + "rshares": "352132228", + "voter": "doge4lyf" + }, + { + "rshares": "136318424", + "voter": "cynetyc" + }, + { + "rshares": "25221048335", + "voter": "steemit-life" + }, + { + "rshares": "12266682329", + "voter": "asim" + }, + { + "rshares": "15125765260", + "voter": "aaseb" + }, + { + "rshares": "4430997922", + "voter": "karen13" + }, + { + "rshares": "274216136539", + "voter": "nabilov" + }, + { + "rshares": "476682819", + "voter": "karenmckersie" + }, + { + "rshares": "840273090", + "voter": "thinkngrow" + }, + { + "rshares": "47995763722", + "voter": "milestone" + }, + { + "rshares": "7462648594", + "voter": "lichtblick" + }, + { + "rshares": "5840939270", + "voter": "btcbtcbtc20155" + }, + { + "rshares": "4210092453", + "voter": "adamt" + }, + { + "rshares": "171273414934", + "voter": "blueorgy" + }, + { + "rshares": "4777021608", + "voter": "poseidon" + }, + { + "rshares": "3506024506", + "voter": "simon.braki.love" + }, + { + "rshares": "3424170757", + "voter": "bones" + }, + { + "rshares": "3787131399", + "voter": "azurejasper" + }, + { + "rshares": "1840626661", + "voter": "bola" + }, + { + "rshares": "33535112463", + "voter": "deanliu" + }, + { + "rshares": "7822595883", + "voter": "neroru" + }, + { + "rshares": "215381633110", + "voter": "jl777" + }, + { + "rshares": "450339105", + "voter": "meteor78" + }, + { + "rshares": "11852480777", + "voter": "positive" + }, + { + "rshares": "13133061167", + "voter": "moon32walker" + }, + { + "rshares": "685414916", + "voter": "tobythecat" + }, + { + "rshares": "3997180642", + "voter": "sompitonov" + }, + { + "rshares": "14893508235", + "voter": "lemooljiang" + }, + { + "rshares": "20258667266", + "voter": "krabgat" + }, + { + "rshares": "18175770345", + "voter": "proto" + }, + { + "rshares": "30220408709", + "voter": "pinkisland" + }, + { + "rshares": "4083118071", + "voter": "ace108" + }, + { + "rshares": "36105101075", + "voter": "sisterholics" + }, + { + "rshares": "9087754202", + "voter": "royalmacro" + }, + { + "rshares": "291577197", + "voter": "faraz" + }, + { + "rshares": "399064983", + "voter": "fnait" + }, + { + "rshares": "354529957", + "voter": "keepcalmand" + }, + { + "rshares": "607346548", + "voter": "cwmyao1" + }, + { + "rshares": "42831828400", + "voter": "smailer" + }, + { + "rshares": "153025160", + "voter": "steemster1" + }, + { + "rshares": "26276845296", + "voter": "fabien" + }, + { + "rshares": "1311817181", + "voter": "bullionstackers" + }, + { + "rshares": "10079340576", + "voter": "michiel" + }, + { + "rshares": "66976384508", + "voter": "malaiandrueth" + }, + { + "rshares": "3445106241", + "voter": "glitterpig" + }, + { + "rshares": "176122993", + "voter": "uwe69" + }, + { + "rshares": "24521510758", + "voter": "gomeravibz" + }, + { + "rshares": "9193596396", + "voter": "taker" + }, + { + "rshares": "1042734400", + "voter": "pakisnxt" + }, + { + "rshares": "7824682639", + "voter": "nekromarinist" + }, + { + "rshares": "60565253", + "voter": "sharon" + }, + { + "rshares": "7879017303", + "voter": "french.fyde" + }, + { + "rshares": "61714352", + "voter": "lillianjones" + }, + { + "rshares": "1244785807395", + "voter": "laonie" + }, + { + "rshares": "174513111694", + "voter": "twinner" + }, + { + "rshares": "25205404125", + "voter": "laoyao" + }, + { + "rshares": "42592081002", + "voter": "myfirst" + }, + { + "rshares": "259167037180", + "voter": "somebody" + }, + { + "rshares": "9690288359", + "voter": "flysaga" + }, + { + "rshares": "2084677795", + "voter": "gmurph" + }, + { + "rshares": "55821231813", + "voter": "midnightoil" + }, + { + "rshares": "85931785", + "voter": "coderg" + }, + { + "rshares": "4371311648", + "voter": "ullikume" + }, + { + "rshares": "4752967790", + "voter": "miketr" + }, + { + "rshares": "143185133504", + "voter": "xiaohui" + }, + { + "rshares": "21533856625", + "voter": "jphamer1" + }, + { + "rshares": "6710387381", + "voter": "elfkitchen" + }, + { + "rshares": "105893050403", + "voter": "joele" + }, + { + "rshares": "6135664318", + "voter": "oflyhigh" + }, + { + "rshares": "4476983604", + "voter": "xiaokongcom" + }, + { + "rshares": "1434064827", + "voter": "hms818" + }, + { + "rshares": "62201879", + "voter": "msjennifer" + }, + { + "rshares": "57196572", + "voter": "ciao" + }, + { + "rshares": "3743673036", + "voter": "villainblack" + }, + { + "rshares": "55449983", + "voter": "steemo" + }, + { + "rshares": "9024630191", + "voter": "xianjun" + }, + { + "rshares": "55306941", + "voter": "steema" + }, + { + "rshares": "74615731", + "voter": "evgenyche" + }, + { + "rshares": "72902270", + "voter": "confucius" + }, + { + "rshares": "93794893233", + "voter": "miacats" + }, + { + "rshares": "56157882", + "voter": "jarvis" + }, + { + "rshares": "605862734", + "voter": "microluck" + }, + { + "rshares": "599010678", + "voter": "ashwim" + }, + { + "rshares": "6535955953", + "voter": "rubenalexander" + }, + { + "rshares": "55520042", + "voter": "fortuner" + }, + { + "rshares": "2131698126", + "voter": "chinadaily" + }, + { + "rshares": "8114302214", + "voter": "lemouth" + }, + { + "rshares": "670432237", + "voter": "alexma3x" + }, + { + "rshares": "10344067760", + "voter": "gvargas123" + }, + { + "rshares": "54235184", + "voter": "johnbyrd" + }, + { + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "rshares": "54216305", + "voter": "thermor" + }, + { + "rshares": "53048942", + "voter": "ficholl" + }, + { + "rshares": "54209199", + "voter": "widell" + }, + { + "rshares": "53821337", + "voter": "revelbrooks" + }, + { + "rshares": "25448736737", + "voter": "andrewawerdna" + }, + { + "rshares": "11074790441", + "voter": "sethlinson" + }, + { + "rshares": "4042151059", + "voter": "booky" + }, + { + "rshares": "101945845", + "voter": "slorunner" + }, + { + "rshares": "52708083", + "voter": "curpose" + }, + { + "rshares": "1258844947", + "voter": "lenar" + }, + { + "rshares": "2196689434", + "voter": "runridefly" + }, + { + "rshares": "54585840", + "voter": "stephenkendal" + }, + { + "rshares": "52836995", + "voter": "troich" + }, + { + "rshares": "5011419926", + "voter": "nadin3" + }, + { + "rshares": "1661479473", + "voter": "davidjkelley" + }, + { + "rshares": "191746347", + "voter": "team101" + }, + { + "rshares": "52842496", + "voter": "crion" + }, + { + "rshares": "185701642", + "voter": "greatness" + }, + { + "rshares": "52505412", + "voter": "hitherise" + }, + { + "rshares": "52496656", + "voter": "wiss" + }, + { + "rshares": "9069255648", + "voter": "sponge-bob" + }, + { + "rshares": "15569866401", + "voter": "digital-wisdom" + }, + { + "rshares": "3791392195", + "voter": "ethical-ai" + }, + { + "rshares": "53252658", + "voter": "stroully" + }, + { + "rshares": "6830877679", + "voter": "jwaser" + }, + { + "rshares": "52916909", + "voter": "thadm" + }, + { + "rshares": "52915101", + "voter": "prof" + }, + { + "rshares": "2274469633", + "voter": "richhersey" + }, + { + "rshares": "1688383151", + "voter": "smisi" + }, + { + "rshares": "123190927", + "voter": "tito-baron" + }, + { + "rshares": "53413720", + "voter": "lighter" + }, + { + "rshares": "52560790", + "voter": "yorsens" + }, + { + "rshares": "52242652", + "voter": "bane" + }, + { + "rshares": "52236265", + "voter": "vive" + }, + { + "rshares": "52230725", + "voter": "coad" + }, + { + "rshares": "2675382304", + "voter": "bwaser" + }, + { + "rshares": "53003720", + "voter": "sofa" + }, + { + "rshares": "83883352848", + "voter": "cnfund" + }, + { + "rshares": "348073541", + "voter": "bones261" + }, + { + "rshares": "9054592458", + "voter": "brains" + }, + { + "rshares": "633672233", + "voter": "bones555" + }, + { + "rshares": "53055629", + "voter": "ailo" + }, + { + "rshares": "5893247853", + "voter": "chick1" + }, + { + "rshares": "51637870", + "voter": "aoki" + }, + { + "rshares": "52621399", + "voter": "typingagent" + }, + { + "rshares": "52634176", + "voter": "cwb" + }, + { + "rshares": "3623547539", + "voter": "slayer" + }, + { + "rshares": "407075832", + "voter": "anomaly" + }, + { + "rshares": "2401189699", + "voter": "ellepdub" + }, + { + "rshares": "172324884", + "voter": "ola1" + }, + { + "rshares": "4601294293", + "voter": "michelle.gent" + }, + { + "rshares": "12396524304", + "voter": "herpetologyguy" + }, + { + "rshares": "51470533", + "voter": "eavy" + }, + { + "rshares": "51484593", + "voter": "roto" + }, + { + "rshares": "4816686066", + "voter": "morgan.waser" + }, + { + "rshares": "291933324", + "voter": "thefinanceguy" + }, + { + "rshares": "51235131", + "voter": "glassheart" + }, + { + "rshares": "51230296", + "voter": "steemq" + }, + { + "rshares": "51227561", + "voter": "battalar" + }, + { + "rshares": "50938725", + "voter": "haved" + }, + { + "rshares": "50871059", + "voter": "motion" + }, + { + "rshares": "50708837", + "voter": "ardly" + }, + { + "rshares": "50572441", + "voter": "unilever" + }, + { + "rshares": "50570250", + "voter": "ziggo" + }, + { + "rshares": "50565798", + "voter": "penthouse" + }, + { + "rshares": "417240825", + "voter": "bapparabi" + }, + { + "rshares": "50433760", + "voter": "morse" + }, + { + "rshares": "50372583", + "voter": "carre" + }, + { + "rshares": "88794357432", + "voter": "btshuang" + }, + { + "rshares": "3229471810", + "voter": "dodders007" + }, + { + "rshares": "3689616990", + "voter": "strong-ai" + }, + { + "rshares": "538350430", + "voter": "grisha-danunaher" + }, + { + "rshares": "74444594", + "voter": "igtes" + }, + { + "rshares": "148119740", + "voter": "buffett" + }, + { + "rshares": "162917785", + "voter": "ctu" + }, + { + "rshares": "162911190", + "voter": "front" + }, + { + "rshares": "159394872", + "voter": "prosto-veter" + }, + { + "rshares": "162375387", + "voter": "yourase1" + }, + { + "rshares": "161839498", + "voter": "durex" + }, + { + "rshares": "160973134", + "voter": "gravity" + }, + { + "rshares": "160957729", + "voter": "realtime" + }, + { + "rshares": "160326045", + "voter": "planet" + }, + { + "rshares": "159984914", + "voter": "correct" + }, + { + "rshares": "159175576", + "voter": "fallout" + }, + { + "rshares": "158777847", + "voter": "agundoba" + }, + { + "rshares": "158726294", + "voter": "alberged" + }, + { + "rshares": "158718933", + "voter": "alene33" + }, + { + "rshares": "158713085", + "voter": "argesti" + }, + { + "rshares": "158709279", + "voter": "artamm" + }, + { + "rshares": "158704921", + "voter": "artyne43" + }, + { + "rshares": "158701918", + "voter": "odlaen" + }, + { + "rshares": "158692611", + "voter": "brenna88" + }, + { + "rshares": "158688416", + "voter": "fortelyn" + }, + { + "rshares": "158684075", + "voter": "cheva0" + }, + { + "rshares": "158678677", + "voter": "peris2" + }, + { + "rshares": "158667376", + "voter": "gilbertur" + }, + { + "rshares": "158658206", + "voter": "irdaince" + }, + { + "rshares": "158655323", + "voter": "whenda3" + }, + { + "rshares": "158647100", + "voter": "brenkelley" + }, + { + "rshares": "158640828", + "voter": "donaigh" + }, + { + "rshares": "158637072", + "voter": "baire00" + }, + { + "rshares": "158624650", + "voter": "gundalach" + }, + { + "rshares": "158620061", + "voter": "childirac" + }, + { + "rshares": "158609836", + "voter": "guoteff" + }, + { + "rshares": "158541985", + "voter": "citigroup" + }, + { + "rshares": "157896009", + "voter": "wymmendycer" + }, + { + "rshares": "157892476", + "voter": "fariuss" + }, + { + "rshares": "157889502", + "voter": "chutec" + }, + { + "rshares": "157887016", + "voter": "udoladhnak" + }, + { + "rshares": "157883027", + "voter": "brochari" + }, + { + "rshares": "157877631", + "voter": "hervedui" + }, + { + "rshares": "157876011", + "voter": "isetar" + }, + { + "rshares": "157874479", + "voter": "pollengus" + }, + { + "rshares": "157871566", + "voter": "valiner" + }, + { + "rshares": "157869417", + "voter": "cunod" + }, + { + "rshares": "157866738", + "voter": "trentegan" + }, + { + "rshares": "157864709", + "voter": "shenburen" + }, + { + "rshares": "157861808", + "voter": "margery2" + }, + { + "rshares": "157860265", + "voter": "thiner" + }, + { + "rshares": "157857120", + "voter": "joycery" + }, + { + "rshares": "157855001", + "voter": "cuiliobeth" + }, + { + "rshares": "157853250", + "voter": "gwilion" + }, + { + "rshares": "157847571", + "voter": "damul" + }, + { + "rshares": "157845805", + "voter": "youthan" + }, + { + "rshares": "188144802", + "voter": "antaja" + }, + { + "rshares": "156241596", + "voter": "royfft" + } + ], + "author": "masteryoda", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "![photo](http://i.imgsafe.org/81a1095cd2.png)\n\n- - -\n\nThis report covers payouts made between:\n\n**September 8, 2016, 12:00 am UTC** and **September 14, 2016, 11:59 pm UTC**\n\nTotal SBD paid: **136 116.418 SBD**\n\nTotal VESTS paid: **714 086 946.799 VESTS**\n\n- - -\n\n### SBD and VESTS payouts chart:\n![photo](http://imgh.us/canvas2_1.png)\n\n- - -\n\n### Top 100 overall SBD earners:\n|Rank | Account | Posts |SBD | VESTS |\n| :-----| ------------- |-------------:|-------------:| -----:|\n|1|[@ericvancewalton](https://steemit.com/@ericvancewalton)|15|6 077.522|24 596 951.571|\n|2|[@roelandp](https://steemit.com/@roelandp)|5|5 750.861|26 290 325.567|\n|3|[@gavvet](https://steemit.com/@gavvet)|29|5 680.552|23 514 590.090|\n|4|[@knozaki2015](https://steemit.com/@knozaki2015)|27|4 089.160|16 881 905.884|\n|5|[@sirwinchester](https://steemit.com/@sirwinchester)|20|3 196.259|13 196 949.343|\n|6|[@terrycraft](https://steemit.com/@terrycraft)|22|2 997.141|12 216 236.410|\n|7|[@calaber24p](https://steemit.com/@calaber24p)|9|2 411.786|10 175 362.253|\n|8|[@dollarvigilante](https://steemit.com/@dollarvigilante)|9|2 135.290|9 376 253.261|\n|9|[@someguy123](https://steemit.com/@someguy123)|11|1 852.735|7 812 606.655|\n|10|[@ozchartart](https://steemit.com/@ozchartart)|13|1 771.698|7 215 740.701|\n|11|[@infovore](https://steemit.com/@infovore)|5|1 705.589|6 924 653.829|\n|12|[@lifeisawesome](https://steemit.com/@lifeisawesome)|6|1 689.879|6 989 106.948|\n|13|[@dantheman](https://steemit.com/@dantheman)|11|1 612.428|8 604 664.210|\n|14|[@jamielefay](https://steemit.com/@jamielefay)|4|1 607.864|6 411 495.342|\n|15|[@kevinwong](https://steemit.com/@kevinwong)|6|1 525.609|6 542 045.016|\n|16|[@charlieshrem](https://steemit.com/@charlieshrem)|4|1 500.105|6 557 010.291|\n|17|[@jesta](https://steemit.com/@jesta)|9|1 492.300|6 472 103.097|\n|18|[@masteryoda](https://steemit.com/@masteryoda)|16|1 423.208|6 023 057.885|\n|19|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|9|1 324.346|5 343 516.577|\n|20|[@katecloud](https://steemit.com/@katecloud)|7|1 265.447|5 136 897.795|\n|21|[@timsaid](https://steemit.com/@timsaid)|10|1 153.420|4 999 746.262|\n|22|[@sascha](https://steemit.com/@sascha)|2|1 152.462|4 737 155.424|\n|23|[@honeyscribe](https://steemit.com/@honeyscribe)|6|1 147.954|4 693 320.648|\n|24|[@cryptogee](https://steemit.com/@cryptogee)|4|1 145.094|4 704 779.347|\n|25|[@krishtopa](https://steemit.com/@krishtopa)|11|1 143.346|4 834 060.865|\n|26|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|8|1 138.985|4 813 642.940|\n|27|[@good-karma](https://steemit.com/@good-karma)|6|1 118.049|5 063 419.555|\n|28|[@lobotony](https://steemit.com/@lobotony)|2|1 084.459|4 247 247.973|\n|29|[@markrmorrisjr](https://steemit.com/@markrmorrisjr)|21|1 058.539|4 369 963.419|\n|30|[@curie](https://steemit.com/@curie)|5|1 056.415|4 572 371.506|\n|31|[@opheliafu](https://steemit.com/@opheliafu)|19|1 005.845|4 156 440.681|\n|32|[@steve-walschot](https://steemit.com/@steve-walschot)|4|972.080|4 394 483.105|\n|33|[@marius19](https://steemit.com/@marius19)|23|951.573|4 011 036.875|\n|34|[@serejandmyself](https://steemit.com/@serejandmyself)|11|941.108|3 990 747.231|\n|35|[@steempower](https://steemit.com/@steempower)|4|848.391|3 693 774.188|\n|36|[@aizensou](https://steemit.com/@aizensou)|4|813.814|3 460 586.334|\n|37|[@furion](https://steemit.com/@furion)|7|776.731|3 320 010.859|\n|38|[@officialfuzzy](https://steemit.com/@officialfuzzy)|5|769.671|3 256 431.084|\n|39|[@kencode](https://steemit.com/@kencode)|3|769.635|3 084 463.879|\n|40|[@clayop](https://steemit.com/@clayop)|9|744.729|3 588 626.269|\n|41|[@larkenrose](https://steemit.com/@larkenrose)|8|718.161|2 952 298.454|\n|42|[@steemdrive](https://steemit.com/@steemdrive)|1|713.054|3 137 516.266|\n|43|[@jpiper20](https://steemit.com/@jpiper20)|21|704.591|2 861 337.136|\n|44|[@xeroc](https://steemit.com/@xeroc)|3|700.860|3 667 185.079|\n|45|[@steemship](https://steemit.com/@steemship)|3|700.485|2 935 488.501|\n|46|[@steemcleaners](https://steemit.com/@steemcleaners)|3|659.132|2 596 140.333|\n|47|[@complexring](https://steemit.com/@complexring)|2|647.683|6 065 457.160|\n|48|[@charleshosk](https://steemit.com/@charleshosk)|2|585.319|2 399 760.878|\n|49|[@hisnameisolllie](https://steemit.com/@hisnameisolllie)|11|581.385|2 338 969.539|\n|50|[@sweetsssj](https://steemit.com/@sweetsssj)|14|523.979|2 170 158.700|\n|51|[@livingthedream](https://steemit.com/@livingthedream)|4|510.792|2 027 254.578|\n|52|[@eneismijmich](https://steemit.com/@eneismijmich)|9|504.116|2 061 771.205|\n|53|[@sterlinluxan](https://steemit.com/@sterlinluxan)|7|500.904|2 022 584.130|\n|54|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|1|497.669|2 274 840.954|\n|55|[@b0y2k](https://steemit.com/@b0y2k)|2|497.114|2 132 474.149|\n|56|[@fairytalelife](https://steemit.com/@fairytalelife)|7|481.143|2 023 586.799|\n|57|[@corbettreport](https://steemit.com/@corbettreport)|6|457.908|1 979 421.716|\n|58|[@kental](https://steemit.com/@kental)|19|435.486|1 746 992.520|\n|59|[@barrycooper](https://steemit.com/@barrycooper)|4|433.548|1 887 586.618|\n|60|[@storyseeker](https://steemit.com/@storyseeker)|4|430.221|1 849 858.609|\n|61|[@jacor](https://steemit.com/@jacor)|11|428.758|1 774 043.305|\n|62|[@bravenewcoin](https://steemit.com/@bravenewcoin)|14|427.758|1 764 533.073|\n|63|[@alexbeyman](https://steemit.com/@alexbeyman)|36|409.397|1 679 902.161|\n|64|[@gangsta](https://steemit.com/@gangsta)|5|405.820|1 620 709.343|\n|65|[@dannystravels](https://steemit.com/@dannystravels)|1|404.374|1 568 065.581|\n|66|[@smailer](https://steemit.com/@smailer)|11|400.558|1 679 104.012|\n|67|[@mibenkito](https://steemit.com/@mibenkito)|1|399.692|1 722 718.612|\n|68|[@cass](https://steemit.com/@cass)|1|391.041|1 993 157.960|\n|69|[@razvanelulmarin](https://steemit.com/@razvanelulmarin)|13|373.350|1 644 174.858|\n|70|[@mrs.steemit](https://steemit.com/@mrs.steemit)|9|368.118|1 530 900.679|\n|71|[@jamtaylor](https://steemit.com/@jamtaylor)|14|358.256|1 555 939.370|\n|72|[@senseiteekay](https://steemit.com/@senseiteekay)|11|357.948|1 517 489.098|\n|73|[@healthyrecipes](https://steemit.com/@healthyrecipes)|3|350.465|1 480 991.813|\n|74|[@aggroed](https://steemit.com/@aggroed)|14|348.227|1 428 790.019|\n|75|[@celebr1ty](https://steemit.com/@celebr1ty)|5|341.894|1 368 751.869|\n|76|[@dana-edwards](https://steemit.com/@dana-edwards)|10|337.839|1 341 593.683|\n|77|[@cryptovpn](https://steemit.com/@cryptovpn)|5|330.063|1 278 755.869|\n|78|[@nanzo-scoop](https://steemit.com/@nanzo-scoop)|17|330.055|2 655 433.594|\n|79|[@fyrstikken](https://steemit.com/@fyrstikken)|23|325.469|1 521 433.247|\n|80|[@richman](https://steemit.com/@richman)|5|321.227|1 332 080.256|\n|81|[@enric](https://steemit.com/@enric)|1|311.640|1 208 207.684|\n|82|[@firepower](https://steemit.com/@firepower)|1|308.085|1 405 620.303|\n|83|[@donkeypong](https://steemit.com/@donkeypong)|4|306.922|1 672 530.744|\n|84|[@churdtzu](https://steemit.com/@churdtzu)|7|305.428|1 246 268.798|\n|85|[@pfunk](https://steemit.com/@pfunk)|6|304.288|1 696 845.158|\n|86|[@canadian-coconut](https://steemit.com/@canadian-coconut)|7|303.757|1 247 066.035|\n|87|[@alexgr](https://steemit.com/@alexgr)|7|296.946|1 259 479.298|\n|88|[@quinneaker](https://steemit.com/@quinneaker)|15|293.521|1 241 558.241|\n|89|[@nekromarinist](https://steemit.com/@nekromarinist)|10|288.002|1 136 848.911|\n|90|[@liberosist](https://steemit.com/@liberosist)|6|284.471|1 407 917.609|\n|91|[@sigmajin](https://steemit.com/@sigmajin)|3|276.147|1 127 048.263|\n|92|[@aaronkoenig](https://steemit.com/@aaronkoenig)|9|274.485|1 168 689.323|\n|93|[@tracemayer](https://steemit.com/@tracemayer)|7|273.934|1 170 292.676|\n|94|[@hilarski](https://steemit.com/@hilarski)|12|272.752|1 111 134.239|\n|95|[@shammyshiggs](https://steemit.com/@shammyshiggs)|6|267.958|1 068 640.107|\n|96|[@halo](https://steemit.com/@halo)|34|265.233|1 109 892.049|\n|97|[@rok-sivante](https://steemit.com/@rok-sivante)|8|261.410|1 152 452.980|\n|98|[@vermillion666](https://steemit.com/@vermillion666)|2|260.282|1 015 370.956|\n|99|[@kaylinart](https://steemit.com/@kaylinart)|31|258.027|1 209 969.357|\n|100|[@kobur](https://steemit.com/@kobur)|9|257.060|1 001 194.076|\n\n\n- - -\n\n### Top 100 overall VESTS earners:\n|Rank | Account | SBD | VESTS |\n| :-----| ------------- |-------------:| -----:|\n|1|[@blocktrades](https://steemit.com/@blocktrades)|6.267|31 932 805.126|\n|2|[@roelandp](https://steemit.com/@roelandp)|5 750.861|26 290 325.567|\n|3|[@ericvancewalton](https://steemit.com/@ericvancewalton)|6 077.522|24 596 951.571|\n|4|[@gavvet](https://steemit.com/@gavvet)|5 680.552|23 514 590.090|\n|5|[@knozaki2015](https://steemit.com/@knozaki2015)|4 089.160|16 881 905.884|\n|6|[@sirwinchester](https://steemit.com/@sirwinchester)|3 196.259|13 196 949.343|\n|7|[@terrycraft](https://steemit.com/@terrycraft)|2 997.141|12 216 236.410|\n|8|[@calaber24p](https://steemit.com/@calaber24p)|2 411.786|10 175 362.253|\n|9|[@smooth](https://steemit.com/@smooth)|35.690|9 725 180.893|\n|10|[@dollarvigilante](https://steemit.com/@dollarvigilante)|2 135.290|9 376 253.261|\n|11|[@berniesanders](https://steemit.com/@berniesanders)|3.218|9 025 844.273|\n|12|[@dantheman](https://steemit.com/@dantheman)|1 612.428|8 604 664.210|\n|13|[@someguy123](https://steemit.com/@someguy123)|1 852.735|7 812 606.655|\n|14|[@ozchartart](https://steemit.com/@ozchartart)|1 771.698|7 215 740.701|\n|15|[@lifeisawesome](https://steemit.com/@lifeisawesome)|1 689.879|6 989 106.948|\n|16|[@infovore](https://steemit.com/@infovore)|1 705.589|6 924 653.829|\n|17|[@wang](https://steemit.com/@wang)|0.000|6 613 063.186|\n|18|[@charlieshrem](https://steemit.com/@charlieshrem)|1 500.105|6 557 010.291|\n|19|[@kevinwong](https://steemit.com/@kevinwong)|1 525.609|6 542 045.016|\n|20|[@jesta](https://steemit.com/@jesta)|1 492.300|6 472 103.097|\n|21|[@jamielefay](https://steemit.com/@jamielefay)|1 607.864|6 411 495.342|\n|22|[@complexring](https://steemit.com/@complexring)|647.683|6 065 457.160|\n|23|[@masteryoda](https://steemit.com/@masteryoda)|1 423.208|6 023 057.885|\n|24|[@nextgencrypto](https://steemit.com/@nextgencrypto)|7.149|5 399 639.966|\n|25|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|1 324.346|5 343 516.577|\n|26|[@katecloud](https://steemit.com/@katecloud)|1 265.447|5 136 897.795|\n|27|[@good-karma](https://steemit.com/@good-karma)|1 118.049|5 063 419.555|\n|28|[@timsaid](https://steemit.com/@timsaid)|1 153.420|4 999 746.262|\n|29|[@krishtopa](https://steemit.com/@krishtopa)|1 143.346|4 834 060.865|\n|30|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|1 138.985|4 813 642.940|\n|31|[@sascha](https://steemit.com/@sascha)|1 152.462|4 737 155.424|\n|32|[@cryptogee](https://steemit.com/@cryptogee)|1 145.094|4 704 779.347|\n|33|[@honeyscribe](https://steemit.com/@honeyscribe)|1 147.954|4 693 320.648|\n|34|[@curie](https://steemit.com/@curie)|1 056.415|4 572 371.506|\n|35|[@steve-walschot](https://steemit.com/@steve-walschot)|972.080|4 394 483.105|\n|36|[@markrmorrisjr](https://steemit.com/@markrmorrisjr)|1 058.539|4 369 963.419|\n|37|[@lobotony](https://steemit.com/@lobotony)|1 084.459|4 247 247.973|\n|38|[@steemed](https://steemit.com/@steemed)|32.767|4 188 255.968|\n|39|[@opheliafu](https://steemit.com/@opheliafu)|1 005.845|4 156 440.681|\n|40|[@riverhead](https://steemit.com/@riverhead)|7.248|4 045 823.778|\n|41|[@marius19](https://steemit.com/@marius19)|951.573|4 011 036.875|\n|42|[@serejandmyself](https://steemit.com/@serejandmyself)|941.108|3 990 747.231|\n|43|[@pharesim](https://steemit.com/@pharesim)|0.000|3 875 558.313|\n|44|[@steemit200](https://steemit.com/@steemit200)|0.000|3 768 755.702|\n|45|[@steempower](https://steemit.com/@steempower)|848.391|3 693 774.188|\n|46|[@xeroc](https://steemit.com/@xeroc)|700.860|3 667 185.079|\n|47|[@clayop](https://steemit.com/@clayop)|744.729|3 588 626.269|\n|48|[@aizensou](https://steemit.com/@aizensou)|813.814|3 460 586.334|\n|49|[@furion](https://steemit.com/@furion)|776.731|3 320 010.859|\n|50|[@xeldal](https://steemit.com/@xeldal)|0.393|3 300 335.411|\n|51|[@ned](https://steemit.com/@ned)|32.419|3 290 566.039|\n|52|[@officialfuzzy](https://steemit.com/@officialfuzzy)|769.671|3 256 431.084|\n|53|[@steemdrive](https://steemit.com/@steemdrive)|713.054|3 137 516.266|\n|54|[@joseph](https://steemit.com/@joseph)|57.350|3 085 782.531|\n|55|[@kencode](https://steemit.com/@kencode)|769.635|3 084 463.879|\n|56|[@larkenrose](https://steemit.com/@larkenrose)|718.161|2 952 298.454|\n|57|[@steemship](https://steemit.com/@steemship)|700.485|2 935 488.501|\n|58|[@recursive](https://steemit.com/@recursive)|6.621|2 918 906.746|\n|59|[@jpiper20](https://steemit.com/@jpiper20)|704.591|2 861 337.136|\n|60|[@hr1](https://steemit.com/@hr1)|0.300|2 780 636.062|\n|61|[@nanzo-scoop](https://steemit.com/@nanzo-scoop)|330.055|2 655 433.594|\n|62|[@laonie](https://steemit.com/@laonie)|116.404|2 619 872.564|\n|63|[@steemcleaners](https://steemit.com/@steemcleaners)|659.132|2 596 140.333|\n|64|[@charleshosk](https://steemit.com/@charleshosk)|585.319|2 399 760.878|\n|65|[@hisnameisolllie](https://steemit.com/@hisnameisolllie)|581.385|2 338 969.539|\n|66|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|497.669|2 274 840.954|\n|67|[@sweetsssj](https://steemit.com/@sweetsssj)|523.979|2 170 158.700|\n|68|[@b0y2k](https://steemit.com/@b0y2k)|497.114|2 132 474.149|\n|69|[@eneismijmich](https://steemit.com/@eneismijmich)|504.116|2 061 771.205|\n|70|[@livingthedream](https://steemit.com/@livingthedream)|510.792|2 027 254.578|\n|71|[@fairytalelife](https://steemit.com/@fairytalelife)|481.143|2 023 586.799|\n|72|[@sterlinluxan](https://steemit.com/@sterlinluxan)|500.904|2 022 584.130|\n|73|[@cass](https://steemit.com/@cass)|391.041|1 993 157.960|\n|74|[@corbettreport](https://steemit.com/@corbettreport)|457.908|1 979 421.716|\n|75|[@barrycooper](https://steemit.com/@barrycooper)|433.548|1 887 586.618|\n|76|[@jamesc](https://steemit.com/@jamesc)|0.153|1 871 857.951|\n|77|[@storyseeker](https://steemit.com/@storyseeker)|430.221|1 849 858.609|\n|78|[@jacor](https://steemit.com/@jacor)|428.758|1 774 043.305|\n|79|[@bravenewcoin](https://steemit.com/@bravenewcoin)|427.758|1 764 533.073|\n|80|[@kental](https://steemit.com/@kental)|435.486|1 746 992.520|\n|81|[@au1nethyb1](https://steemit.com/@au1nethyb1)|0.000|1 740 612.769|\n|82|[@mibenkito](https://steemit.com/@mibenkito)|399.692|1 722 718.612|\n|83|[@pfunk](https://steemit.com/@pfunk)|304.288|1 696 845.158|\n|84|[@alexbeyman](https://steemit.com/@alexbeyman)|409.397|1 679 902.161|\n|85|[@smailer](https://steemit.com/@smailer)|400.558|1 679 104.012|\n|86|[@badassmother](https://steemit.com/@badassmother)|0.000|1 679 019.431|\n|87|[@donkeypong](https://steemit.com/@donkeypong)|306.922|1 672 530.744|\n|88|[@razvanelulmarin](https://steemit.com/@razvanelulmarin)|373.350|1 644 174.858|\n|89|[@summon](https://steemit.com/@summon)|72.228|1 622 251.187|\n|90|[@gangsta](https://steemit.com/@gangsta)|405.820|1 620 709.343|\n|91|[@silver](https://steemit.com/@silver)|0.000|1 609 716.257|\n|92|[@dannystravels](https://steemit.com/@dannystravels)|404.374|1 568 065.581|\n|93|[@jamtaylor](https://steemit.com/@jamtaylor)|358.256|1 555 939.370|\n|94|[@mrs.steemit](https://steemit.com/@mrs.steemit)|368.118|1 530 900.679|\n|95|[@fyrstikken](https://steemit.com/@fyrstikken)|325.469|1 521 433.247|\n|96|[@senseiteekay](https://steemit.com/@senseiteekay)|357.948|1 517 489.098|\n|97|[@healthyrecipes](https://steemit.com/@healthyrecipes)|350.465|1 480 991.813|\n|98|[@satoshifund](https://steemit.com/@satoshifund)|0.000|1 472 512.796|\n|99|[@kushed](https://steemit.com/@kushed)|0.160|1 449 619.943|\n|100|[@aggroed](https://steemit.com/@aggroed)|348.227|1 428 790.019|\n\n\n- - -\n\n### Top 100 paying posts (author reward):\n|Rank | Account | SBD | VESTS | POST|\n| :-----| ------------- |-------------:| -----:|:-----|\n|1|[@roelandp](https://steemit.com/@roelandp)|5417.783|24936028.708622|[save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-n](https://steemit.com/all/@roelandp/save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl)|\n|2|[@someguy123](https://steemit.com/@someguy123)|1314.389|5601399.952738|[understeem-steemit-without-censorship-nsfw-filter-removed-vi](https://steemit.com/all/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor)|\n|3|[@kevinwong](https://steemit.com/@kevinwong)|971.542|4190657.642935|[logo-contest-for-project-curie-calling-all-designers](https://steemit.com/all/@kevinwong/logo-contest-for-project-curie-calling-all-designers)|\n|4|[@steve-walschot](https://steemit.com/@steve-walschot)|937.502|4105645.799136|[investigating-the-wale-scam-assumptions-above-knowledge](https://steemit.com/all/@steve-walschot/investigating-the-wale-scam-assumptions-above-knowledge)|\n|5|[@good-karma](https://steemit.com/@good-karma)|909.717|4210888.383925|[esteem-ios-1-2-2-released-advanced-login-signup-patch-post-e](https://steemit.com/all/@good-karma/esteem-ios-1-2-2-released-advanced-login-signup-patch-post-edits-photo-inclusion-on-posts-new-navigation-filter)|\n|6|[@cryptogee](https://steemit.com/@cryptogee)|802.871|3114844.305012|[a-quick-fix-for-a-broken-capitalist-society](https://steemit.com/all/@cryptogee/a-quick-fix-for-a-broken-capitalist-society)|\n|7|[@infovore](https://steemit.com/@infovore)|780.138|3145392.168091|[steemmag-steemit-s-weekend-digest-9-of-community-curation-an](https://steemit.com/all/@infovore/steemmag-steemit-s-weekend-digest-9-of-community-curation-and-reputation-chats-with-a-whale-steemit-chat-lead-moderators-a-day)|\n|8|[@steemdrive](https://steemit.com/@steemdrive)|709.735|3021388.477665|[steemdrive-second-proof-of-successful-crowdfunded-billboard-](https://steemit.com/all/@steemdrive/steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa)|\n|9|[@ericvancewalton](https://steemit.com/@ericvancewalton)|694.130|2692969.805438|[alarm-clock-dawn-an-original-novel-episode-22](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-22)|\n|10|[@sascha](https://steemit.com/@sascha)|672.279|2606133.315123|[our-life-on-planet-earth-part-8-the-meaning-of-life](https://steemit.com/all/@sascha/our-life-on-planet-earth-part-8-the-meaning-of-life)|\n|11|[@jesta](https://steemit.com/@jesta)|672.102|3084315.315130|[steem-bounty-system-milestone-1-proposal](https://steemit.com/all/@jesta/steem-bounty-system-milestone-1-proposal)|\n|12|[@steempower](https://steemit.com/@steempower)|670.009|2855734.328170|[bitshares-state-of-the-network-11th-sept-2016](https://steemit.com/all/@steempower/bitshares-state-of-the-network-11th-sept-2016)|\n|13|[@complexring](https://steemit.com/@complexring)|635.717|2707974.667320|[bypassing-the-great-firewall-of-china](https://steemit.com/all/@complexring/bypassing-the-great-firewall-of-china)|\n|14|[@katecloud](https://steemit.com/@katecloud)|628.891|2463723.749341|[a-photo-the-progression-of-a-painting-and-a-poem-by-kate-clo](https://steemit.com/all/@katecloud/a-photo-the-progression-of-a-painting-and-a-poem-by-kate-cloud)|\n|15|[@infovore](https://steemit.com/@infovore)|623.373|2415144.530628|[the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-th](https://steemit.com/all/@infovore/the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-the-internables-trend)|\n|16|[@ericvancewalton](https://steemit.com/@ericvancewalton)|605.001|2343398.347985|[the-cliff-an-original-poem](https://steemit.com/all/@ericvancewalton/the-cliff-an-original-poem)|\n|17|[@ericvancewalton](https://steemit.com/@ericvancewalton)|599.216|2408866.584548|[rush-hour-train-an-original-poem](https://steemit.com/all/@ericvancewalton/rush-hour-train-an-original-poem)|\n|18|[@dantheman](https://steemit.com/@dantheman)|588.696|2270663.485250|[censorship-is-impossible-in-a-free-society](https://steemit.com/all/@dantheman/censorship-is-impossible-in-a-free-society)|\n|19|[@ericvancewalton](https://steemit.com/@ericvancewalton)|573.497|2217973.305761|[too-simple-to-see-an-original-poem](https://steemit.com/all/@ericvancewalton/too-simple-to-see-an-original-poem)|\n|20|[@lobotony](https://steemit.com/@lobotony)|559.734|2169953.235319|[a-trip-to-the-north-part-1-of-2-iceland](https://steemit.com/all/@lobotony/a-trip-to-the-north-part-1-of-2-iceland)|\n|21|[@steemship](https://steemit.com/@steemship)|556.189|2365420.937467|[open-letter-to-ned-and-dan-you-badly-need-a-communications-c](https://steemit.com/all/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or)|\n|22|[@kevinwong](https://steemit.com/@kevinwong)|550.834|2135268.781675|[dayjob-ended-hello-steemit](https://steemit.com/all/@kevinwong/dayjob-ended-hello-steemit)|\n|23|[@ericvancewalton](https://steemit.com/@ericvancewalton)|539.244|2295220.650034|[alarm-clock-dawn-an-original-novel-episode-25](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-25)|\n|24|[@ericvancewalton](https://steemit.com/@ericvancewalton)|535.500|2075831.717451|[4ziyjc-alarm-clock-dawn-an-original-novel-episode-22](https://steemit.com/all/@ericvancewalton/4ziyjc-alarm-clock-dawn-an-original-novel-episode-22)|\n|25|[@lobotony](https://steemit.com/@lobotony)|524.725|2076637.525890|[a-trip-to-the-north-part-2-of-2-greenland](https://steemit.com/all/@lobotony/a-trip-to-the-north-part-2-of-2-greenland)|\n|26|[@dollarvigilante](https://steemit.com/@dollarvigilante)|522.074|2024561.204875|[gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-i](https://steemit.com/all/@dollarvigilante/gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-into-gold)|\n|27|[@calaber24p](https://steemit.com/@calaber24p)|516.871|2073762.161780|[the-evolution-of-virtual-economies-and-their-future-global-i](https://steemit.com/all/@calaber24p/the-evolution-of-virtual-economies-and-their-future-global-impact-on-the-world)|\n|28|[@jamielefay](https://steemit.com/@jamielefay)|515.285|1997372.750614|[ahe-ey-submission-an-original-novel-part-16](https://steemit.com/all/@jamielefay/ahe-ey-submission-an-original-novel-part-16)|\n|29|[@lifeisawesome](https://steemit.com/@lifeisawesome)|515.184|2076732.392526|[you-are-what-your-friends-are](https://steemit.com/all/@lifeisawesome/you-are-what-your-friends-are)|\n|30|[@ericvancewalton](https://steemit.com/@ericvancewalton)|512.929|1979697.284935|[alarm-clock-dawn-an-original-novel-episode-21](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-21)|\n|31|[@charlieshrem](https://steemit.com/@charlieshrem)|508.009|2110171.661194|[how-to-live-completely-off-steem-using-a-virtual-and-physica](https://steemit.com/all/@charlieshrem/how-to-live-completely-off-steem-using-a-virtual-and-physical-debit-card-topped-up-with-steem)|\n|32|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|497.660|2255006.094857|[the-lifecycle-of-a-song](https://steemit.com/all/@thisisbenbrick/the-lifecycle-of-a-song)|\n|33|[@timsaid](https://steemit.com/@timsaid)|493.545|1978954.745437|[life-explorers-the-human-senses-part-ii-hearing](https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-ii-hearing)|\n|34|[@gavvet](https://steemit.com/@gavvet)|483.546|2060779.396304|[crab-mentality-what-you-need-to-know-about-this-kind-of-degr](https://steemit.com/all/@gavvet/crab-mentality-what-you-need-to-know-about-this-kind-of-degrading-mentality-english-filipino)|\n|35|[@fairytalelife](https://steemit.com/@fairytalelife)|479.523|1927465.053480|[how-to-draw-a-braid](https://steemit.com/all/@fairytalelife/how-to-draw-a-braid)|\n|36|[@sascha](https://steemit.com/@sascha)|479.357|2090356.322663|[salt-as-an-energy-source-energetic-purification-with-salt](https://steemit.com/all/@sascha/salt-as-an-energy-source-energetic-purification-with-salt)|\n|37|[@ericvancewalton](https://steemit.com/@ericvancewalton)|459.391|1953748.642541|[walk-your-worries-an-original-poem](https://steemit.com/all/@ericvancewalton/walk-your-worries-an-original-poem)|\n|38|[@calaber24p](https://steemit.com/@calaber24p)|458.060|1948333.287074|[different-ways-to-think-about-your-time-and-money-to-lead-to](https://steemit.com/all/@calaber24p/different-ways-to-think-about-your-time-and-money-to-lead-to-better-financial-security)|\n|39|[@dollarvigilante](https://steemit.com/@dollarvigilante)|457.747|2096614.988536|[boom-end-game-nears-as-central-banks-buying-up-gold-mining-c](https://steemit.com/all/@dollarvigilante/boom-end-game-nears-as-central-banks-buying-up-gold-mining-companies)|\n|40|[@timsaid](https://steemit.com/@timsaid)|451.707|2069238.286170|[life-explorers-the-human-senses-part-iii-touch](https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-iii-touch)|\n|41|[@sterlinluxan](https://steemit.com/@sterlinluxan)|445.525|1790952.274641|[anarchapulco-is-one-of-the-most-world-changing-conferences-e](https://steemit.com/all/@sterlinluxan/anarchapulco-is-one-of-the-most-world-changing-conferences-ever)|\n|42|[@calaber24p](https://steemit.com/@calaber24p)|445.091|1730853.060104|[revamping-curation-is-the-way-to-increase-steem-power-demand](https://steemit.com/all/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand)|\n|43|[@jamielefay](https://steemit.com/@jamielefay)|444.129|1722107.917895|[ahe-ey-water-angels-an-original-novel-part-7-audiobook](https://steemit.com/all/@jamielefay/ahe-ey-water-angels-an-original-novel-part-7-audiobook)|\n|44|[@xeroc](https://steemit.com/@xeroc)|442.100|1715452.124498|[piston-how-to-use-it-for-multisignature-accounts](https://steemit.com/all/@xeroc/piston-how-to-use-it-for-multisignature-accounts)|\n|45|[@dollarvigilante](https://steemit.com/@dollarvigilante)|439.671|1772010.226787|[jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-sin](https://steemit.com/all/@dollarvigilante/jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-since-brexit)|\n|46|[@jamielefay](https://steemit.com/@jamielefay)|436.368|1860075.567439|[ahe-ey-allegiance-an-original-novel-part-18](https://steemit.com/all/@jamielefay/ahe-ey-allegiance-an-original-novel-part-18)|\n|47|[@jesta](https://steemit.com/@jesta)|427.963|1692835.407320|[steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-](https://steemit.com/all/@jesta/steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-0-14-0)|\n|48|[@dollarvigilante](https://steemit.com/@dollarvigilante)|426.107|1815667.350107|[famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-a](https://steemit.com/all/@dollarvigilante/famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-anarchy-and-cryptocurrencies)|\n|49|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|413.120|1600748.444404|[pura-vida-my-experience-working-on-a-permaculture-farm-in-co](https://steemit.com/all/@anwenbaumeister/pura-vida-my-experience-working-on-a-permaculture-farm-in-costa-rica-part-two)|\n|50|[@dannystravels](https://steemit.com/@dannystravels)|404.374|1567809.296314|[face-to-face-with-our-closest-living-relative-part-2-2](https://steemit.com/all/@dannystravels/face-to-face-with-our-closest-living-relative-part-2-2)|\n|51|[@sirwinchester](https://steemit.com/@sirwinchester)|403.621|1723295.787435|[bitcoin-exchange-berlin-meetup-with-ned-on-skype](https://steemit.com/all/@sirwinchester/bitcoin-exchange-berlin-meetup-with-ned-on-skype)|\n|52|[@mibenkito](https://steemit.com/@mibenkito)|399.692|1701129.893154|[a-steemian-s-world-food-journal-part-5-sydney](https://steemit.com/all/@mibenkito/a-steemian-s-world-food-journal-part-5-sydney)|\n|53|[@ericvancewalton](https://steemit.com/@ericvancewalton)|399.641|1719344.321486|[broken-dreams-an-original-poem](https://steemit.com/all/@ericvancewalton/broken-dreams-an-original-poem)|\n|54|[@charleshosk](https://steemit.com/@charleshosk)|390.939|1571334.118454|[ethereum-classic-an-update](https://steemit.com/all/@charleshosk/ethereum-classic-an-update)|\n|55|[@calaber24p](https://steemit.com/@calaber24p)|390.494|1824187.485033|[countries-that-incentivize-and-deregulate-crypto-startups-wi](https://steemit.com/all/@calaber24p/countries-that-incentivize-and-deregulate-crypto-startups-will-reap-the-rewards-if-the-technology-goes-mainstream)|\n|56|[@charlieshrem](https://steemit.com/@charlieshrem)|382.869|1477441.136465|[an-intimate-evening-with-charlie-shrem-moving-forward-south-](https://steemit.com/all/@charlieshrem/an-intimate-evening-with-charlie-shrem-moving-forward-south-florida-usa)|\n|57|[@officialfuzzy](https://steemit.com/@officialfuzzy)|378.829|1519255.893290|[guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-fri](https://steemit.com/all/@officialfuzzy/guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-friday-s-hangout-refer-projects-for-rewards)|\n|58|[@knozaki2015](https://steemit.com/@knozaki2015)|370.606|1493308.546306|[steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-german](https://steemit.com/all/@knozaki2015/steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-germany-9-9-2016-with-pictures)|\n|59|[@dantheman](https://steemit.com/@dantheman)|369.466|1485061.731912|[justification-for-104-week-power-down](https://steemit.com/all/@dantheman/justification-for-104-week-power-down)|\n|60|[@cass](https://steemit.com/@cass)|369.092|1533209.359825|[sneak-preview-chainsquad-corporate-branding-logo-design](https://steemit.com/all/@cass/sneak-preview-chainsquad-corporate-branding-logo-design)|\n|61|[@aizensou](https://steemit.com/@aizensou)|358.318|1418712.320393|[top-5-places-in-barcelona-featuring-maryfromsochi-as-author](https://steemit.com/all/@aizensou/top-5-places-in-barcelona-featuring-maryfromsochi-as-author)|\n|62|[@sirwinchester](https://steemit.com/@sirwinchester)|358.314|1477359.694757|[steemit-meetup-in-berlin-germany](https://steemit.com/all/@sirwinchester/steemit-meetup-in-berlin-germany)|\n|63|[@clayop](https://steemit.com/@clayop)|355.145|1512981.501683|[the-typology-of-curation-what-kinds-of-curators-we-have-now](https://steemit.com/all/@clayop/the-typology-of-curation-what-kinds-of-curators-we-have-now)|\n|64|[@kencode](https://steemit.com/@kencode)|353.240|1453050.277044|[ann-smartcoins-wallet-v1-0-6-released](https://steemit.com/all/@kencode/ann-smartcoins-wallet-v1-0-6-released)|\n|65|[@gavvet](https://steemit.com/@gavvet)|353.159|1405040.374698|[a-free-lunch-with-edward-snowden](https://steemit.com/all/@gavvet/a-free-lunch-with-edward-snowden)|\n|66|[@clayop](https://steemit.com/@clayop)|343.604|1365548.612065|[how-much-do-whales-influences-on-rewards-introducing-new-sta](https://steemit.com/all/@clayop/how-much-do-whales-influences-on-rewards-introducing-new-statistics)|\n|67|[@curie](https://steemit.com/@curie)|343.592|1465300.000707|[project-curie-s-daily-curation-list-10-sept-11-sept-2016](https://steemit.com/all/@curie/project-curie-s-daily-curation-list-10-sept-11-sept-2016)|\n|68|[@calaber24p](https://steemit.com/@calaber24p)|342.141|1457567.812539|[immigration-into-america-has-made-it-the-world-power-it-is-t](https://steemit.com/all/@calaber24p/immigration-into-america-has-made-it-the-world-power-it-is-today)|\n|69|[@b0y2k](https://steemit.com/@b0y2k)|340.586|1369051.035651|[steemit-sponsoring-the-compass-cup-team-event](https://steemit.com/all/@b0y2k/steemit-sponsoring-the-compass-cup-team-event)|\n|70|[@cryptogee](https://steemit.com/@cryptogee)|339.967|1496475.706859|[spotlight-issue-8-philosophy-music-and-science](https://steemit.com/all/@cryptogee/spotlight-issue-8-philosophy-music-and-science)|\n|71|[@kencode](https://steemit.com/@kencode)|337.474|1308694.645920|[blockpay-moving-up-the-charts](https://steemit.com/all/@kencode/blockpay-moving-up-the-charts)|\n|72|[@ericvancewalton](https://steemit.com/@ericvancewalton)|336.781|1347763.370147|[alarm-clock-dawn-an-original-novel-episode-24](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-24)|\n|73|[@gavvet](https://steemit.com/@gavvet)|332.977|1291120.851189|[hi-to-reinvent-yourself-featuring-sauravrungta-as-author](https://steemit.com/all/@gavvet/hi-to-reinvent-yourself-featuring-sauravrungta-as-author)|\n|74|[@ozchartart](https://steemit.com/@ozchartart)|332.418|1282511.839603|[usdeth-btc-poloniex-technical-analysis-sept-07-2016](https://steemit.com/all/@ozchartart/usdeth-btc-poloniex-technical-analysis-sept-07-2016)|\n|75|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|332.381|1339735.329416|[celtic-heart-knot-pictorial](https://steemit.com/all/@bridgetbunchy/celtic-heart-knot-pictorial)|\n|76|[@roelandp](https://steemit.com/@roelandp)|331.053|1286840.936796|[my-proper-introduceyourself-hello-i-m-roelandp](https://steemit.com/all/@roelandp/my-proper-introduceyourself-hello-i-m-roelandp)|\n|77|[@ericvancewalton](https://steemit.com/@ericvancewalton)|330.742|1295789.736302|[know-me-an-original-poem](https://steemit.com/all/@ericvancewalton/know-me-an-original-poem)|\n|78|[@cryptovpn](https://steemit.com/@cryptovpn)|329.564|1276654.885609|[steemit-charity-run-no-1-doctors-without-borders](https://steemit.com/all/@cryptovpn/steemit-charity-run-no-1-doctors-without-borders)|\n|79|[@steemcleaners](https://steemit.com/@steemcleaners)|329.504|1292242.895864|[steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-](https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-1)|\n|80|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|320.241|1241317.843204|[my-cross-country-road-trip-greater-than-sf-greater-than-vega](https://steemit.com/all/@anwenbaumeister/my-cross-country-road-trip-greater-than-sf-greater-than-vegas-greater-than-boulder-greater-than-houston-greater-than-new-orleans)|\n|81|[@charlieshrem](https://steemit.com/@charlieshrem)|313.754|1475625.347428|[a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-](https://steemit.com/all/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-life-and-the-shrempresso)|\n|82|[@enric](https://steemit.com/@enric)|311.617|1208114.056405|[im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurre](https://steemit.com/all/@enric/im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurrency-my-revolutionary-struggle-now-im-here)|\n|83|[@dantheman](https://steemit.com/@dantheman)|309.920|1201663.748404|[scalability-of-individual-responsibility-in-anarchy](https://steemit.com/all/@dantheman/scalability-of-individual-responsibility-in-anarchy)|\n|84|[@officialfuzzy](https://steemit.com/@officialfuzzy)|309.814|1312470.274185|[e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-test](https://steemit.com/all/@officialfuzzy/e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-testnet-jewels-ico-success-gridcoin-and-making-it-rain)|\n|85|[@gavvet](https://steemit.com/@gavvet)|308.127|1212749.753443|[a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-](https://steemit.com/all/@gavvet/a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-author)|\n|86|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|303.555|1201909.200453|[the-love-of-a-maker](https://steemit.com/all/@bridgetbunchy/the-love-of-a-maker)|\n|87|[@steemcleaners](https://steemit.com/@steemcleaners)|302.924|1192233.387004|[steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-](https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-2)|\n|88|[@dantheman](https://steemit.com/@dantheman)|301.672|1169749.675855|[nonviolent-censorship-is-how-nonviolent-societies-create-non](https://steemit.com/all/@dantheman/nonviolent-censorship-is-how-nonviolent-societies-create-nonviolent-government)|\n|89|[@infovore](https://steemit.com/@infovore)|301.261|1214999.166441|[a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-](https://steemit.com/all/@infovore/a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-moment-on-steemit-this-week-on-steemit-steemmag-steemit-s-weekend)|\n|90|[@firepower](https://steemit.com/@firepower)|300.280|1368056.554963|[when-i-lost-sight-while-steeming](https://steemit.com/all/@firepower/when-i-lost-sight-while-steeming)|\n|91|[@ozchartart](https://steemit.com/@ozchartart)|294.271|1183433.553199|[usddoge-btc-poloniex-technical-analysis-sept-10-2016](https://steemit.com/all/@ozchartart/usddoge-btc-poloniex-technical-analysis-sept-10-2016)|\n|92|[@donkeypong](https://steemit.com/@donkeypong)|293.559|1138798.465907|[a-tribute-to-snail-mail](https://steemit.com/all/@donkeypong/a-tribute-to-snail-mail)|\n|93|[@charlieshrem](https://steemit.com/@charlieshrem)|292.995|1135970.118327|[progressive-relaxation-by-charlie-shrem-mindfulness-meditati](https://steemit.com/all/@charlieshrem/progressive-relaxation-by-charlie-shrem-mindfulness-meditation-in-prison-and-everyday-life)|\n|94|[@curie](https://steemit.com/@curie)|289.920|1234271.286622|[project-curie-s-daily-curation-list-9-sept-10-sept-2016](https://steemit.com/all/@curie/project-curie-s-daily-curation-list-9-sept-10-sept-2016)|\n|95|[@furion](https://steemit.com/@furion)|289.919|1234751.363741|[a-quick-look-at-null-and-the-profitability-of-promoted-posts](https://steemit.com/all/@furion/a-quick-look-at-null-and-the-profitability-of-promoted-posts)|\n|96|[@sirwinchester](https://steemit.com/@sirwinchester)|288.926|1119010.839878|[mr-gourmet-exploring-a-new-location](https://steemit.com/all/@sirwinchester/mr-gourmet-exploring-a-new-location)|\n|97|[@larkenrose](https://steemit.com/@larkenrose)|281.627|1138819.558651|[supply-and-demand-steemit-style](https://steemit.com/all/@larkenrose/supply-and-demand-steemit-style)|\n|98|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|278.638|1162968.108837|[a-peek-into-pre-columbian-worldviews-found-in-agricultural-p](https://steemit.com/all/@anwenbaumeister/a-peek-into-pre-columbian-worldviews-found-in-agricultural-practices-duality-complementarity-cyclicity-and-reciprocity)|\n|99|[@corbettreport](https://steemit.com/@corbettreport)|277.435|1238430.062064|[only-9-11-truth-can-smash-the-9-11-lies](https://steemit.com/all/@corbettreport/only-9-11-truth-can-smash-the-9-11-lies)|\n|100|[@sirwinchester](https://steemit.com/@sirwinchester)|277.087|1113453.030386|[find-your-why-self-discovery-and-finding-your-purpose-in-lif](https://steemit.com/all/@sirwinchester/find-your-why-self-discovery-and-finding-your-purpose-in-life)|\n\n\n- - -\nPrevious report: [September week 1](https://steemit.com/stats/@masteryoda/weekly-payouts-leaderboards-september-week-1)\n- - -\n\n###### \u00a9 @masteryoda", + "category": "stats", + "children": 25, + "created": "2016-09-15T10:10:06", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.imgsafe.org/81a1095cd2.png", + "http://imgh.us/canvas2_1.png" ], - "author": "mister-omortson", - "author_payout_value": "0.000 HBD", - "author_reputation": 66.74, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "
\n*Hi everybody! \u0412\u0441\u0435\u043c \u043f\u0440\u0438\u0432\u0435\u0442! Hola a todos! Bonjour \u00e0 tous! Hallo allerseits! \u041f\u043e\u0437\u0434\u0440\u0430\u0432 \u0441\u0432\u0438\u043c\u0430!*\n
\n
\n\n\n
\n![IMG_5394.JPG](https://images.hive.blog/DQmXCRAJrukHDBH6ohpEUrawxsMACy42MYebv6ub31iVqRx/IMG_5394.JPG)\n\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n
\n**\"By the river\"**\n
\n 2 0 2 0\nwatercolor\n
\n![777.png](https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png)\n
\n
\n
\n
\n\n\nThe weather was fine yesterday morning. I decided to lighten up some time for painting. He collected paints and brushes, took my stretcher with paper, and went to the river. As I got to the place the weather began to change. The sky was covered with clouds, the humidity increased - optimal conditions for watercolor.\n\n\n![image.png](https://images.hive.blog/DQmWr2fPZJL3sE9wYk2ovaybXjfTGjL3bAtew3Gjy4zUM8P/image.png)\n\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n
\nI moved along the river looking for a suitable scenery for an etude. In good weather, it\u2019s hard to find a free place. The whole coast is occupied by groups of vacationers\n
\n![image.png](https://images.hive.blog/DQmY4TbiX8t5dpp1WyJqGf88dZw2W7Sxjjq5QcA4PjEHrof/image.png)\n\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n
\nAnother task is to find a good view of the river. Finally I found something interesting. This place has another important positive aspect, there are no people and ants. The only unpleasant fact is the presence of prickly plants. I do not know what it's called, but this plant pricks very much\n
\n\n![20200705_193445.jpg](https://images.hive.blog/DQmQtNecw7AyEF98f3zPr7A66yEyLNqYKApm2zHUV7XZW13/20200705_193445.jpg)\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n
\nSo we have a wonderful scenery. River, distant shore, clouds and sedge reflected in the water.\n\n![image.png](https://images.hive.blog/DQmP9yfSPeiyTy3i1quBAAN1hBW9tVRRAg6SwJGJ5Xtn3uD/image.png)\n\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n
\n\n\nAs usual several pictures of work stages\n1\n\n![image.png](https://images.hive.blog/DQmdFnNj6RfnxS7sP45qbErpK7WvJLniD1EdfdC5ynpuMB4/image.png)\n\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n2\n\n![image.png](https://images.hive.blog/DQmTCHkgjNPguXSxfNpgGiEvEVqZLcXyJyEAMU2QhFjsJuK/image.png)\n\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n3\n\n![image.png](https://images.hive.blog/DQmYTucC3bEYGTPzT7vYJr1bMSffVD2yeDtbrX7ckZh4CX8/image.png)\n\nhttps://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png\n\n\n\n\n
\n
\nThe finished painting:\n
\n\n![IMG_5397.JPG](https://images.hive.blog/DQmf77BY84gkm94sL1iofwYwA8hdT6duSyZYkyxAgnJHuY9/IMG_5397.JPG)\n\n![777.png](https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png)\n
\nWatercolor painting by @mister-omortson\n
\nTextured paper\nSize A4 \n
\n\n
\nThank you for viewing\n\n\n\n
\n
\nStand by\n
\nhttps://images.hive.blog/0x0/https://images.hive.blog/DQmfXVDrjFhc733t5tmFYRSf9mZZnJWDw8swAcxxg58Da1q/DQmPWWJcKSsQbBiPea3b7ZDe8N5x8D6nr51Ppu5SYnDbdde.gif\n
\n\n\n\n\n\n
\nSincerely yours \n\n\n\n\n\n![image.png](https://cdn.steemitimages.com/DQmdkC7D6LQSWLoW9JmqfgZgdSqAZLMpECkKP9PMnKnuWqc/image.png)\n\n\n\n\n
\n
\n
\n
\n#curie #oc #gems #hive-185836 \n
", - "category": "hive-156509", - "children": 3, - "community": "hive-156509", - "community_title": "OnChainArt", - "created": "2020-07-07T12:40:21", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "hiveblog/0.1", - "format": "markdown", - "image": [ - "https://images.hive.blog/DQmXCRAJrukHDBH6ohpEUrawxsMACy42MYebv6ub31iVqRx/IMG_5394.JPG", - "https://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png", - "https://cdn.steemitimages.com/DQmWuijHq116hV92QfMvoibjiGAzC2ADvTeyFiBJTtBpNfX/777.png", - "https://images.hive.blog/DQmWr2fPZJL3sE9wYk2ovaybXjfTGjL3bAtew3Gjy4zUM8P/image.png", - "https://images.hive.blog/DQmY4TbiX8t5dpp1WyJqGf88dZw2W7Sxjjq5QcA4PjEHrof/image.png", - "https://images.hive.blog/DQmQtNecw7AyEF98f3zPr7A66yEyLNqYKApm2zHUV7XZW13/20200705_193445.jpg", - "https://images.hive.blog/DQmP9yfSPeiyTy3i1quBAAN1hBW9tVRRAg6SwJGJ5Xtn3uD/image.png", - "https://images.hive.blog/DQmdFnNj6RfnxS7sP45qbErpK7WvJLniD1EdfdC5ynpuMB4/image.png", - "https://images.hive.blog/DQmTCHkgjNPguXSxfNpgGiEvEVqZLcXyJyEAMU2QhFjsJuK/image.png", - "https://images.hive.blog/DQmYTucC3bEYGTPzT7vYJr1bMSffVD2yeDtbrX7ckZh4CX8/image.png", - "https://images.hive.blog/DQmf77BY84gkm94sL1iofwYwA8hdT6duSyZYkyxAgnJHuY9/IMG_5397.JPG", - "https://images.hive.blog/0x0/https://images.hive.blog/DQmfXVDrjFhc733t5tmFYRSf9mZZnJWDw8swAcxxg58Da1q/DQmPWWJcKSsQbBiPea3b7ZDe8N5x8D6nr51Ppu5SYnDbdde.gif", - "https://cdn.steemitimages.com/DQmdkC7D6LQSWLoW9JmqfgZgdSqAZLMpECkKP9PMnKnuWqc/image.png" - ], - "tags": [ - "hive-156509", - "art", - "photography", - "life", - "sketchbook", - "painting", - "curie", - "oc" - ], - "users": [ - "mister-omortson" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 64505084498408, - "payout": 25.554, - "payout_at": "2020-07-14T12:40:21", - "pending_payout_value": "25.554 HBD", - "percent_steem_dollars": 10000, - "permlink": "by-the-river", - "post_id": 86931855, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 113 - }, - "title": "By the river", - "updated": "2020-07-07T12:40:21", - "url": "/hive-156509/@mister-omortson/by-the-river" - }, - { - "active_votes": [ - { - "rshares": "12182801771", - "voter": "mangou007" - }, - { - "rshares": "476649462716", - "voter": "mark-waser" - }, - { - "rshares": "9070029097151", - "voter": "jphamer1" - }, - { - "rshares": "3709714682431", - "voter": "joele" - }, - { - "rshares": "8600334806051", - "voter": "jrcornel" - }, - { - "rshares": "37281052111", - "voter": "bert0" - }, - { - "rshares": "450409469710", - "voter": "netaterra" - }, - { - "rshares": "442355966313", - "voter": "digital-wisdom" - }, - { - "rshares": "22746684794", - "voter": "jwaser" - }, - { - "rshares": "147355062810", - "voter": "herpetologyguy" - }, - { - "rshares": "6483854871", - "voter": "planosdeunacasa" - }, - { - "rshares": "1944037443", - "voter": "strong-ai" - }, - { - "rshares": "198872822959", - "voter": "jaybird" - }, - { - "rshares": "1780033480122", - "voter": "redes" - }, - { - "rshares": "20918155916", - "voter": "builderofcastles" - }, - { - "rshares": "903680571", - "voter": "technoprogressiv" - }, - { - "rshares": "6530896091", - "voter": "mys" - }, - { - "rshares": "2517667102", - "voter": "whd" - }, - { - "rshares": "183974229622", - "voter": "benedict08" - }, - { - "rshares": "969583577", - "voter": "rollingthunder" - }, - { - "rshares": "11977360758", - "voter": "pixelfan" - }, - { - "rshares": "923178373922", - "voter": "steemvote" - }, - { - "rshares": "388925717613", - "voter": "vikisecrets" - }, - { - "rshares": "14061796475", - "voter": "dineroconopcion" - }, - { - "rshares": "1592652089", - "voter": "zonabitcoin" - }, - { - "rshares": "895683261", - "voter": "djkrad" - }, - { - "rshares": "80504325504", - "voter": "sevillaespino" - }, - { - "rshares": "2869064177", - "voter": "ernick" - }, - { - "rshares": "1009500902", - "voter": "elprutest" - }, - { - "rshares": "3701471975", - "voter": "angelusnoctum" - }, - { - "rshares": "794314274", - "voter": "alexanderlara" - }, - { - "rshares": "4018027410", - "voter": "fbslo" - }, - { - "rshares": "11688994738", - "voter": "robertoueti" - }, - { - "rshares": "1980504831", - "voter": "flamingirl" - }, - { - "rshares": "568387990", - "voter": "liverpool-fan" - }, - { - "rshares": "14985536628", - "voter": "joseph1956" - }, - { - "rshares": "10701020424", - "voter": "tradingideas" - }, - { - "rshares": "4102328716", - "voter": "mtl1979" - }, - { - "rshares": "14703115218", - "voter": "hendersonp" - }, - { - "rshares": "999987439", - "voter": "ubikalo" - }, - { - "rshares": "9977120992", - "voter": "fjcalduch" - }, - { - "rshares": "661704017", - "voter": "guifaquetti" - }, - { - "rshares": "4543631981", - "voter": "candyboy" - }, - { - "rshares": "1038702013", - "voter": "jewel-lover" - }, - { - "rshares": "6597467717", - "voter": "stupid" - }, - { - "rshares": "742000426", - "voter": "korinkrafting" - }, - { - "rshares": "11391673353", - "voter": "mermaidvampire" - }, - { - "rshares": "1848898920", - "voter": "jimcustodio" - }, - { - "rshares": "2412227278", - "voter": "fsegredo1" - }, - { - "rshares": "668614274", - "voter": "ulisesfl17" - }, - { - "rshares": "1464120414", - "voter": "arac" - }, - { - "rshares": "30849674410", - "voter": "josemalavem" - }, - { - "rshares": "2951006780", - "voter": "henlicps" - }, - { - "rshares": "8049463493", - "voter": "josevas217" - }, - { - "rshares": "833959474", - "voter": "beleg" - }, - { - "rshares": "340089634489", - "voter": "dera123" - }, - { - "rshares": "2274342036", - "voter": "moiscapsesii" - }, - { - "rshares": "719109238", - "voter": "yameen" - }, - { - "rshares": "2858810316", - "voter": "juanmanuellopez1" - }, - { - "rshares": "101733519586", - "voter": "themightyvolcano" - }, - { - "rshares": "3182896425", - "voter": "iseeyouvee" - }, - { - "rshares": "3561106412", - "voter": "laloretoyya" - }, - { - "rshares": "1041966865", - "voter": "rollandthomas" - }, - { - "rshares": "3973342155", - "voter": "flores39" - }, - { - "rshares": "17550093585", - "voter": "ifunnymemes" - }, - { - "rshares": "150587449258", - "voter": "promobot" - }, - { - "rshares": "41918384249", - "voter": "kadoshmenorah" - }, - { - "rshares": "2544403652", - "voter": "archisteem" - }, - { - "rshares": "180398794461", - "voter": "digital.mine" - }, - { - "rshares": "592592971", - "voter": "robertojavier" - }, - { - "rshares": "29038558", - "voter": "jk6276" - }, - { - "rshares": "813127118", - "voter": "julian2013" - }, - { - "rshares": "3377230580", - "voter": "gorbisan" - }, - { - "rshares": "21402118", - "voter": "laissez-faire" - }, - { - "rshares": "1032208074", - "voter": "kermosura" - }, - { - "rshares": "2087062652", - "voter": "anti-bully" - }, - { - "rshares": "977084252", - "voter": "memeteca" - }, - { - "rshares": "811229271", - "voter": "florino" - }, - { - "rshares": "1871819727", - "voter": "take-a-break" - }, - { - "rshares": "1046206043", - "voter": "smonia" - }, - { - "rshares": "1259664304", - "voter": "smon-fan" - }, - { - "rshares": "14657345306", - "voter": "blind-spot" - }, - { - "rshares": "673106471", - "voter": "tr777" - }, - { - "rshares": "555584743", - "voter": "sm-jewel" - }, - { - "rshares": "529513814", - "voter": "tr77" - }, - { - "rshares": "559395290", - "voter": "smoner" - }, - { - "rshares": "781870009", - "voter": "smonian" - }, - { - "rshares": "16062060690", - "voter": "smon-joa" - }, - { - "rshares": "541033401", - "voter": "jjangjjanggirl" - }, - { - "rshares": "10049282345", - "voter": "broxi" - }, - { - "rshares": "8945439", - "voter": "limka" - }, - { - "rshares": "547517309", - "voter": "smonbear" - }, - { - "rshares": "356689205", - "voter": "crazydaisy" - }, - { - "rshares": "62988905", - "voter": "coredump" - }, - { - "rshares": "1516690170", - "voter": "trxjjbtc" - }, - { - "rshares": "779160879", - "voter": "dtrade" - }, - { - "rshares": "582968257", - "voter": "ssc-token" - }, - { - "rshares": "145545291061", - "voter": "cezary-io" - }, - { - "rshares": "17185645574419", - "voter": "likwid" - }, - { - "rshares": "23472404", - "voter": "haxxdump" - }, - { - "rshares": "151663719", - "voter": "tradingideas2" - }, - { - "rshares": "28237710350", - "voter": "plankton.token" - }, - { - "rshares": "51734425207", - "voter": "asmr.tist" - }, - { - "rshares": "1641533892", - "voter": "camila19" - }, - { - "rshares": "7851801039", - "voter": "luismar1978" - }, - { - "rshares": "0", - "voter": "tradingideas.spt" - }, - { - "rshares": "797705666", - "voter": "leovoter" - }, - { - "rshares": "1077658726", - "voter": "mindtrap-leo" - }, - { - "rshares": "825000259772", - "voter": "onealfa.leo" - }, - { - "rshares": "6998531194", - "voter": "elgranpoeta" - }, - { - "rshares": "622990674", - "voter": "arctis" - }, - { - "rshares": "17236261630", - "voter": "helengutier2" - }, - { - "rshares": "1342869340", - "voter": "marlians.spt" - }, - { - "rshares": "0", - "voter": "abh12345.neox" - }, - { - "rshares": "212526202", - "voter": "tina-tina" - }, - { - "rshares": "321845476", - "voter": "happiness19" - }, - { - "rshares": "2917848", - "voter": "gdhaetae" - }, - { - "rshares": "429069551", - "voter": "pukeko" - }, - { - "rshares": "46184598990", - "voter": "jk6276.life" - }, - { - "rshares": "0", - "voter": "vxc-ag" - }, - { - "rshares": "1005985249", - "voter": "deflacion" - }, - { - "rshares": "824537001", - "voter": "dnflsms" - }, - { - "rshares": "519385562", - "voter": "jessy22" - }, - { - "rshares": "18027803452", - "voter": "spinvest-leo" - }, - { - "rshares": "1073716500", - "voter": "tonimontana.leo" - }, - { - "rshares": "42512321", - "voter": "tonimontana.neo" - }, - { - "rshares": "1573714060", - "voter": "therealyme" - }, - { - "rshares": "191832123", - "voter": "keep-keep" - }, - { - "rshares": "14640802025", - "voter": "project007.leo" - }, - { - "rshares": "786077753", - "voter": "javb" - }, - { - "rshares": "209072026513", - "voter": "unpopular" - }, - { - "rshares": "907494558", - "voter": "jgb" - }, - { - "rshares": "1688087813", - "voter": "crimianales" - }, - { - "rshares": "1847856138", - "voter": "sumatranate.leo" - }, - { - "rshares": "1077255456", - "voter": "toni.curation" - }, - { - "rshares": "83585293870", - "voter": "travelssteem" - }, - { - "rshares": "884523513", - "voter": "keepit2" - }, - { - "rshares": "1117467951", - "voter": "ldelegations" - }, - { - "rshares": "6341102731", - "voter": "drew0" - }, - { - "rshares": "1271154176", - "voter": "rehan-leo" - }, - { - "rshares": "8948028036", - "voter": "uzzca" - }, - { - "rshares": "0", - "voter": "galaxy100" - }, - { - "rshares": "2899839756704", - "voter": "nautilus-up" - }, - { - "rshares": "0", - "voter": "curation.bot" - }, - { - "rshares": "7742793600", - "voter": "hivecur2" - } + "links": [ + "https://steemit.com/@ericvancewalton", + "https://steemit.com/@roelandp", + "https://steemit.com/@gavvet", + "https://steemit.com/@knozaki2015", + "https://steemit.com/@sirwinchester", + "https://steemit.com/@terrycraft", + "https://steemit.com/@calaber24p", + "https://steemit.com/@dollarvigilante", + "https://steemit.com/@someguy123", + "https://steemit.com/@ozchartart", + "https://steemit.com/@infovore", + "https://steemit.com/@lifeisawesome", + "https://steemit.com/@dantheman", + "https://steemit.com/@jamielefay", + "https://steemit.com/@kevinwong", + "https://steemit.com/@charlieshrem", + "https://steemit.com/@jesta", + "https://steemit.com/@masteryoda", + "https://steemit.com/@bridgetbunchy", + "https://steemit.com/@katecloud", + "https://steemit.com/@timsaid", + "https://steemit.com/@sascha", + "https://steemit.com/@honeyscribe", + "https://steemit.com/@cryptogee", + "https://steemit.com/@krishtopa", + "https://steemit.com/@anwenbaumeister", + "https://steemit.com/@good-karma", + "https://steemit.com/@lobotony", + "https://steemit.com/@markrmorrisjr", + "https://steemit.com/@curie", + "https://steemit.com/@opheliafu", + "https://steemit.com/@steve-walschot", + "https://steemit.com/@marius19", + "https://steemit.com/@serejandmyself", + "https://steemit.com/@steempower", + "https://steemit.com/@aizensou", + "https://steemit.com/@furion", + "https://steemit.com/@officialfuzzy", + "https://steemit.com/@kencode", + "https://steemit.com/@clayop", + "https://steemit.com/@larkenrose", + "https://steemit.com/@steemdrive", + "https://steemit.com/@jpiper20", + "https://steemit.com/@xeroc", + "https://steemit.com/@steemship", + "https://steemit.com/@steemcleaners", + "https://steemit.com/@complexring", + "https://steemit.com/@charleshosk", + "https://steemit.com/@hisnameisolllie", + "https://steemit.com/@sweetsssj", + "https://steemit.com/@livingthedream", + "https://steemit.com/@eneismijmich", + "https://steemit.com/@sterlinluxan", + "https://steemit.com/@thisisbenbrick", + "https://steemit.com/@b0y2k", + "https://steemit.com/@fairytalelife", + "https://steemit.com/@corbettreport", + "https://steemit.com/@kental", + "https://steemit.com/@barrycooper", + "https://steemit.com/@storyseeker", + "https://steemit.com/@jacor", + "https://steemit.com/@bravenewcoin", + "https://steemit.com/@alexbeyman", + "https://steemit.com/@gangsta", + "https://steemit.com/@dannystravels", + "https://steemit.com/@smailer", + "https://steemit.com/@mibenkito", + "https://steemit.com/@cass", + "https://steemit.com/@razvanelulmarin", + "https://steemit.com/@mrs.steemit", + "https://steemit.com/@jamtaylor", + "https://steemit.com/@senseiteekay", + "https://steemit.com/@healthyrecipes", + "https://steemit.com/@aggroed", + "https://steemit.com/@celebr1ty", + "https://steemit.com/@dana-edwards", + "https://steemit.com/@cryptovpn", + "https://steemit.com/@nanzo-scoop", + "https://steemit.com/@fyrstikken", + "https://steemit.com/@richman", + "https://steemit.com/@enric", + "https://steemit.com/@firepower", + "https://steemit.com/@donkeypong", + "https://steemit.com/@churdtzu", + "https://steemit.com/@pfunk", + "https://steemit.com/@canadian-coconut", + "https://steemit.com/@alexgr", + "https://steemit.com/@quinneaker", + "https://steemit.com/@nekromarinist", + "https://steemit.com/@liberosist", + "https://steemit.com/@sigmajin", + "https://steemit.com/@aaronkoenig", + "https://steemit.com/@tracemayer", + "https://steemit.com/@hilarski", + "https://steemit.com/@shammyshiggs", + "https://steemit.com/@halo", + "https://steemit.com/@rok-sivante", + "https://steemit.com/@vermillion666", + "https://steemit.com/@kaylinart", + "https://steemit.com/@kobur", + "https://steemit.com/@blocktrades", + "https://steemit.com/@smooth", + "https://steemit.com/@berniesanders", + "https://steemit.com/@wang", + "https://steemit.com/@nextgencrypto", + "https://steemit.com/@steemed", + "https://steemit.com/@riverhead", + "https://steemit.com/@pharesim", + "https://steemit.com/@steemit200", + "https://steemit.com/@xeldal", + "https://steemit.com/@ned", + "https://steemit.com/@joseph", + "https://steemit.com/@recursive", + "https://steemit.com/@hr1", + "https://steemit.com/@laonie", + "https://steemit.com/@jamesc", + "https://steemit.com/@au1nethyb1", + "https://steemit.com/@badassmother", + "https://steemit.com/@summon", + "https://steemit.com/@silver", + "https://steemit.com/@satoshifund", + "https://steemit.com/@kushed", + "https://steemit.com/all/@roelandp/save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl", + "https://steemit.com/all/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor", + "https://steemit.com/all/@kevinwong/logo-contest-for-project-curie-calling-all-designers", + "https://steemit.com/all/@steve-walschot/investigating-the-wale-scam-assumptions-above-knowledge", + "https://steemit.com/all/@good-karma/esteem-ios-1-2-2-released-advanced-login-signup-patch-post-edits-photo-inclusion-on-posts-new-navigation-filter", + "https://steemit.com/all/@cryptogee/a-quick-fix-for-a-broken-capitalist-society", + "https://steemit.com/all/@infovore/steemmag-steemit-s-weekend-digest-9-of-community-curation-and-reputation-chats-with-a-whale-steemit-chat-lead-moderators-a-day", + "https://steemit.com/all/@steemdrive/steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-22", + "https://steemit.com/all/@sascha/our-life-on-planet-earth-part-8-the-meaning-of-life", + "https://steemit.com/all/@jesta/steem-bounty-system-milestone-1-proposal", + "https://steemit.com/all/@steempower/bitshares-state-of-the-network-11th-sept-2016", + "https://steemit.com/all/@complexring/bypassing-the-great-firewall-of-china", + "https://steemit.com/all/@katecloud/a-photo-the-progression-of-a-painting-and-a-poem-by-kate-cloud", + "https://steemit.com/all/@infovore/the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-the-internables-trend", + "https://steemit.com/all/@ericvancewalton/the-cliff-an-original-poem", + "https://steemit.com/all/@ericvancewalton/rush-hour-train-an-original-poem", + "https://steemit.com/all/@dantheman/censorship-is-impossible-in-a-free-society", + "https://steemit.com/all/@ericvancewalton/too-simple-to-see-an-original-poem", + "https://steemit.com/all/@lobotony/a-trip-to-the-north-part-1-of-2-iceland", + "https://steemit.com/all/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or", + "https://steemit.com/all/@kevinwong/dayjob-ended-hello-steemit", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-25", + "https://steemit.com/all/@ericvancewalton/4ziyjc-alarm-clock-dawn-an-original-novel-episode-22", + "https://steemit.com/all/@lobotony/a-trip-to-the-north-part-2-of-2-greenland", + "https://steemit.com/all/@dollarvigilante/gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-into-gold", + "https://steemit.com/all/@calaber24p/the-evolution-of-virtual-economies-and-their-future-global-impact-on-the-world", + "https://steemit.com/all/@jamielefay/ahe-ey-submission-an-original-novel-part-16", + "https://steemit.com/all/@lifeisawesome/you-are-what-your-friends-are", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-21", + "https://steemit.com/all/@charlieshrem/how-to-live-completely-off-steem-using-a-virtual-and-physical-debit-card-topped-up-with-steem", + "https://steemit.com/all/@thisisbenbrick/the-lifecycle-of-a-song", + "https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-ii-hearing", + "https://steemit.com/all/@gavvet/crab-mentality-what-you-need-to-know-about-this-kind-of-degrading-mentality-english-filipino", + "https://steemit.com/all/@fairytalelife/how-to-draw-a-braid", + "https://steemit.com/all/@sascha/salt-as-an-energy-source-energetic-purification-with-salt", + "https://steemit.com/all/@ericvancewalton/walk-your-worries-an-original-poem", + "https://steemit.com/all/@calaber24p/different-ways-to-think-about-your-time-and-money-to-lead-to-better-financial-security", + "https://steemit.com/all/@dollarvigilante/boom-end-game-nears-as-central-banks-buying-up-gold-mining-companies", + "https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-iii-touch", + "https://steemit.com/all/@sterlinluxan/anarchapulco-is-one-of-the-most-world-changing-conferences-ever", + "https://steemit.com/all/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand", + "https://steemit.com/all/@jamielefay/ahe-ey-water-angels-an-original-novel-part-7-audiobook", + "https://steemit.com/all/@xeroc/piston-how-to-use-it-for-multisignature-accounts", + "https://steemit.com/all/@dollarvigilante/jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-since-brexit", + "https://steemit.com/all/@jamielefay/ahe-ey-allegiance-an-original-novel-part-18", + "https://steemit.com/all/@jesta/steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-0-14-0", + "https://steemit.com/all/@dollarvigilante/famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-anarchy-and-cryptocurrencies", + "https://steemit.com/all/@anwenbaumeister/pura-vida-my-experience-working-on-a-permaculture-farm-in-costa-rica-part-two", + "https://steemit.com/all/@dannystravels/face-to-face-with-our-closest-living-relative-part-2-2", + "https://steemit.com/all/@sirwinchester/bitcoin-exchange-berlin-meetup-with-ned-on-skype", + "https://steemit.com/all/@mibenkito/a-steemian-s-world-food-journal-part-5-sydney", + "https://steemit.com/all/@ericvancewalton/broken-dreams-an-original-poem", + "https://steemit.com/all/@charleshosk/ethereum-classic-an-update", + "https://steemit.com/all/@calaber24p/countries-that-incentivize-and-deregulate-crypto-startups-will-reap-the-rewards-if-the-technology-goes-mainstream", + "https://steemit.com/all/@charlieshrem/an-intimate-evening-with-charlie-shrem-moving-forward-south-florida-usa", + "https://steemit.com/all/@officialfuzzy/guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-friday-s-hangout-refer-projects-for-rewards", + "https://steemit.com/all/@knozaki2015/steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-germany-9-9-2016-with-pictures", + "https://steemit.com/all/@dantheman/justification-for-104-week-power-down", + "https://steemit.com/all/@cass/sneak-preview-chainsquad-corporate-branding-logo-design", + "https://steemit.com/all/@aizensou/top-5-places-in-barcelona-featuring-maryfromsochi-as-author", + "https://steemit.com/all/@sirwinchester/steemit-meetup-in-berlin-germany", + "https://steemit.com/all/@clayop/the-typology-of-curation-what-kinds-of-curators-we-have-now", + "https://steemit.com/all/@kencode/ann-smartcoins-wallet-v1-0-6-released", + "https://steemit.com/all/@gavvet/a-free-lunch-with-edward-snowden", + "https://steemit.com/all/@clayop/how-much-do-whales-influences-on-rewards-introducing-new-statistics", + "https://steemit.com/all/@curie/project-curie-s-daily-curation-list-10-sept-11-sept-2016", + "https://steemit.com/all/@calaber24p/immigration-into-america-has-made-it-the-world-power-it-is-today", + "https://steemit.com/all/@b0y2k/steemit-sponsoring-the-compass-cup-team-event", + "https://steemit.com/all/@cryptogee/spotlight-issue-8-philosophy-music-and-science", + "https://steemit.com/all/@kencode/blockpay-moving-up-the-charts", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-24", + "https://steemit.com/all/@gavvet/hi-to-reinvent-yourself-featuring-sauravrungta-as-author", + "https://steemit.com/all/@ozchartart/usdeth-btc-poloniex-technical-analysis-sept-07-2016", + "https://steemit.com/all/@bridgetbunchy/celtic-heart-knot-pictorial", + "https://steemit.com/all/@roelandp/my-proper-introduceyourself-hello-i-m-roelandp", + "https://steemit.com/all/@ericvancewalton/know-me-an-original-poem", + "https://steemit.com/all/@cryptovpn/steemit-charity-run-no-1-doctors-without-borders", + "https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-1", + "https://steemit.com/all/@anwenbaumeister/my-cross-country-road-trip-greater-than-sf-greater-than-vegas-greater-than-boulder-greater-than-houston-greater-than-new-orleans", + "https://steemit.com/all/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-life-and-the-shrempresso", + "https://steemit.com/all/@enric/im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurrency-my-revolutionary-struggle-now-im-here", + "https://steemit.com/all/@dantheman/scalability-of-individual-responsibility-in-anarchy", + "https://steemit.com/all/@officialfuzzy/e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-testnet-jewels-ico-success-gridcoin-and-making-it-rain", + "https://steemit.com/all/@gavvet/a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-author", + "https://steemit.com/all/@bridgetbunchy/the-love-of-a-maker", + "https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-2", + "https://steemit.com/all/@dantheman/nonviolent-censorship-is-how-nonviolent-societies-create-nonviolent-government", + "https://steemit.com/all/@infovore/a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-moment-on-steemit-this-week-on-steemit-steemmag-steemit-s-weekend", + "https://steemit.com/all/@firepower/when-i-lost-sight-while-steeming", + "https://steemit.com/all/@ozchartart/usddoge-btc-poloniex-technical-analysis-sept-10-2016", + "https://steemit.com/all/@donkeypong/a-tribute-to-snail-mail", + "https://steemit.com/all/@charlieshrem/progressive-relaxation-by-charlie-shrem-mindfulness-meditation-in-prison-and-everyday-life", + "https://steemit.com/all/@curie/project-curie-s-daily-curation-list-9-sept-10-sept-2016", + "https://steemit.com/all/@furion/a-quick-look-at-null-and-the-profitability-of-promoted-posts", + "https://steemit.com/all/@sirwinchester/mr-gourmet-exploring-a-new-location", + "https://steemit.com/all/@larkenrose/supply-and-demand-steemit-style", + "https://steemit.com/all/@anwenbaumeister/a-peek-into-pre-columbian-worldviews-found-in-agricultural-practices-duality-complementarity-cyclicity-and-reciprocity", + "https://steemit.com/all/@corbettreport/only-9-11-truth-can-smash-the-9-11-lies", + "https://steemit.com/all/@sirwinchester/find-your-why-self-discovery-and-finding-your-purpose-in-life", + "https://steemit.com/stats/@masteryoda/weekly-payouts-leaderboards-september-week-1" ], - "author": "jrcornel", - "author_payout_value": "0.000 HBD", - "author_reputation": 81.0, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "# Pantera Capital is overweight Altcoins, but that is not a knock a Bitcoin...\n\nDan Morehead of Pantera Captial was speaking at the Unitize Virtual Event along with other heavyweights such as Tim Draper, Meltem Demirors, and Balaji Srinivasan among others...\n\nIt was a virtual meetup to discuss many of the latest happenings in the crypto world as well as their investing ideas moving forward.\n\nThe virtual event can be seen here btw:\n\nhttps://youtu.be/QgntfQ0gFo8\n\n(Source: https://www.youtube.com/)\n\n# The big takeaway?\n\nThe big takeaway for me was just how bullish Dan Morehead and Pantera Capital is on altcoins.\n\nPantera Capital has roughly $400 million assets under management and they are known as being one of the first crypto venture capital firm.\n\nThey are very bullish on bitcoin over the next two years, but they are even more bullish on altcoins over that same time period...\n\nSaying:\n\n> \u201cAnd it's our opinion that these altcoins and particularly smaller cap smart contract tokens are going to outperform Bitcoin over the next couple of years.\u201d\n\nBut that's not a knock on bitcoin in any way...\n\nIn fact they think bitcoin is going to do very well in it's own right:\n\n> \u201cWe think Bitcoin is going to go up a ton, but altcoins will go up even more. An example is Bitcoin is up about 30 percent year to date, which is amazing. Given that equities are down and real estate's down and almost all assets are down in price. But other things in the cryptocurrency space are up much more, Ethereum is up 80% and then other smaller projects like Augur (REP) and 0x (ZRX) are up 100% on the year.\u201d\n\n(Source: https://cointelegraph.com/news/crypto-og-thinks-altcoins-will-outperform-btc-in-the-near-future)\n\n# Bitcoin is going to up a lot, but altcoins are go up even more\n\nMorehead and his fund have done very well over the years they have been involved in the crypto space, though anyone who has just held since the time they bought (as long as it was before late 2017) is likely doing very well as well. \n\nHis stance on altcoins over bitcoin makes a lot of sense when you consider historical patterns.\n\nAfter/during every major bitcoin rally there have been a number of altcoins that have done even better.\n\nBitcoin went up 20x from late 2016 to end of 2017.\n\nHowever, there were some altcoins, like STEEM/HIVE for example that went up roughly 90x over that same time period...\n\nMorehead and Pantera Capital are simply betting on bitcoin and crypto to do what it has always done.\n\nHopefully they are right!\n\nStay informed my friends.\n\n-Doc\n\nPosted Using [LeoFinance](https://leofinance.io/@jrcornel/pantera-capital-says-bitcoin-is-going-to-go-up-a-ton-but-altcoins-are-going-to-go-up-even-more)", - "category": "hive-167922", - "children": 1, - "community": "hive-167922", - "community_title": "LeoFinance", - "created": "2020-07-07T19:06:42", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "leofinance/0.1", - "canonical_url": "https://leofinance.io/@jrcornel/pantera-capital-says-bitcoin-is-going-to-go-up-a-ton-but-altcoins-are-going-to-go-up-even-more", - "format": "markdown", - "image": [ - "https://img.youtube.com/vi/QgntfQ0gFo8/0.jpg" - ], - "links": [ - "https://youtu.be/QgntfQ0gFo8", - "https://www.youtube.com/", - "https://cointelegraph.com/news/crypto-og-thinks-altcoins-will-outperform-btc-in-the-near-future" - ], - "tags": [ - "bitcoin", - "crypto", - "altcoins", - "hive", - "neoxian", - "life", - "blog", - "news", - "investing", - "leofinance" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 49248180508911, - "payout": 19.198, - "payout_at": "2020-07-14T19:06:42", - "pending_payout_value": "19.198 HBD", - "percent_steem_dollars": 10000, - "permlink": "pantera-capital-says-bitcoin-is-going-to-go-up-a-ton-but-altcoins-are-going-to-go-up-even-more", - "post_id": 86936841, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 140 - }, - "title": "Pantera Capital says Bitcoin is going to go up a ton, but Altcoins are going to go up even more", - "updated": "2020-07-07T19:06:42", - "url": "/hive-167922/@jrcornel/pantera-capital-says-bitcoin-is-going-to-go-up-a-ton-but-altcoins-are-going-to-go-up-even-more" - }, - { - "active_votes": [ - { - "rshares": "12317186291122", - "voter": "abit" - }, - { - "rshares": "134192917737", - "voter": "onealfa" - }, - { - "rshares": "905159855695", - "voter": "livingfree" - }, - { - "rshares": "9013359788", - "voter": "asim" - }, - { - "rshares": "2399480225818", - "voter": "deanliu" - }, - { - "rshares": "450371492255", - "voter": "lemooljiang" - }, - { - "rshares": "556755829747", - "voter": "ace108" - }, - { - "rshares": "165849999594", - "voter": "noopu" - }, - { - "rshares": "1351908919350", - "voter": "magicmonk" - }, - { - "rshares": "112583773", - "voter": "skysunny" - }, - { - "rshares": "9194246850502", - "voter": "glitterfart" - }, - { - "rshares": "1540787052466", - "voter": "nextgen622" - }, - { - "rshares": "13598838271665", - "voter": "sweetsssj" - }, - { - "rshares": "265181125475", - "voter": "daveks" - }, - { - "rshares": "1031128402020", - "voter": "created" - }, - { - "rshares": "149262017", - "voter": "timool" - }, - { - "rshares": "16599514353", - "voter": "lucknie" - }, - { - "rshares": "1668577085", - "voter": "dumping" - }, - { - "rshares": "3440445971", - "voter": "kalita27" - }, - { - "rshares": "16642078527", - "voter": "elizacheng" - }, - { - "rshares": "3314701493", - "voter": "world-travel-pro" - }, - { - "rshares": "5255476090", - "voter": "aleister" - }, - { - "rshares": "39291677444", - "voter": "spg" - }, - { - "rshares": "226011893632", - "voter": "nanosesame" - }, - { - "rshares": "2647372609", - "voter": "varunpinto" - }, - { - "rshares": "21283984706", - "voter": "theywillkillyou" - }, - { - "rshares": "60159598750", - "voter": "bearone" - }, - { - "rshares": "31285549595", - "voter": "teamaustralia" - }, - { - "rshares": "463917142662", - "voter": "offoodandart" - }, - { - "rshares": "1449255086920", - "voter": "livinguktaiwan" - }, - { - "rshares": "187867454974", - "voter": "benedict08" - }, - { - "rshares": "61098342859", - "voter": "captainquack22" - }, - { - "rshares": "275652255326", - "voter": "travelgirl" - }, - { - "rshares": "26797947862", - "voter": "dine77" - }, - { - "rshares": "886645460387", - "voter": "steemvote" - }, - { - "rshares": "4430412841", - "voter": "martibis" - }, - { - "rshares": "2014984410", - "voter": "stevenmosoes" - }, - { - "rshares": "165659134241", - "voter": "shogo" - }, - { - "rshares": "842161351", - "voter": "shihabieee" - }, - { - "rshares": "9198259247", - "voter": "kimzwarch" - }, - { - "rshares": "1780206362", - "voter": "bboyady" - }, - { - "rshares": "19474574912", - "voter": "artonmysleeve" - }, - { - "rshares": "197940974923", - "voter": "argon" - }, - { - "rshares": "1499927607", - "voter": "veenang" - }, - { - "rshares": "43970602697", - "voter": "davidke20" - }, - { - "rshares": "6420890834", - "voter": "xiaoshancun" - }, - { - "rshares": "171877981593", - "voter": "victory622" - }, - { - "rshares": "8750437269", - "voter": "metten" - }, - { - "rshares": "16629875324", - "voter": "joseph1956" - }, - { - "rshares": "973881035", - "voter": "cn-book" - }, - { - "rshares": "151602468054", - "voter": "steemflow" - }, - { - "rshares": "717642846", - "voter": "jacktan" - }, - { - "rshares": "97332532", - "voter": "cn-movie" - }, - { - "rshares": "251310184919", - "voter": "jrvacation" - }, - { - "rshares": "653949286259", - "voter": "citizensmith" - }, - { - "rshares": "2850658132", - "voter": "vivia" - }, - { - "rshares": "11963700967", - "voter": "aitommylr" - }, - { - "rshares": "754545203", - "voter": "korinkrafting" - }, - { - "rshares": "152970501540", - "voter": "mmmmkkkk311" - }, - { - "rshares": "79922260136", - "voter": "soufianechakrouf" - }, - { - "rshares": "14902463898", - "voter": "sinochip" - }, - { - "rshares": "11174142362", - "voter": "mermaidvampire" - }, - { - "rshares": "264692935", - "voter": "xiaoli" - }, - { - "rshares": "1865910848", - "voter": "jimcustodio" - }, - { - "rshares": "288823648", - "voter": "yumisee" - }, - { - "rshares": "838231341", - "voter": "joeliew" - }, - { - "rshares": "73751694", - "voter": "hkit98" - }, - { - "rshares": "61124847", - "voter": "elvinmas001" - }, - { - "rshares": "792198180", - "voter": "watersoo" - }, - { - "rshares": "957580170", - "voter": "vamos-amigo" - }, - { - "rshares": "2181748257", - "voter": "sweetkathy" - }, - { - "rshares": "93361335", - "voter": "iipoh06" - }, - { - "rshares": "175615418", - "voter": "annabellenoelle" - }, - { - "rshares": "146178567330", - "voter": "whack.science" - }, - { - "rshares": "6271689513", - "voter": "pizzapai" - }, - { - "rshares": "195307109114", - "voter": "cryptictruth" - }, - { - "rshares": "138867619", - "voter": "yethui" - }, - { - "rshares": "483102765", - "voter": "idkpdx" - }, - { - "rshares": "0", - "voter": "andrewnoel" - }, - { - "rshares": "2466852253", - "voter": "frassman" - }, - { - "rshares": "2596783956", - "voter": "onepercentbetter" - }, - { - "rshares": "387165698", - "voter": "stmdev" - }, - { - "rshares": "723332726", - "voter": "liewsc" - }, - { - "rshares": "1304689443874", - "voter": "quochuy" - }, - { - "rshares": "1181293756232", - "voter": "slobberchops" - }, - { - "rshares": "16210632633", - "voter": "eii" - }, - { - "rshares": "156083407767", - "voter": "steem-tube" - }, - { - "rshares": "2532853135", - "voter": "archisteem" - }, - { - "rshares": "10224426294", - "voter": "cn-malaysia" - }, - { - "rshares": "500329950", - "voter": "merlion" - }, - { - "rshares": "25707655425", - "voter": "dses" - }, - { - "rshares": "183243059162", - "voter": "digital.mine" - }, - { - "rshares": "29038558", - "voter": "jk6276" - }, - { - "rshares": "13302930", - "voter": "laissez-faire" - }, - { - "rshares": "4043000075", - "voter": "thisnewgirl" - }, - { - "rshares": "13642450661", - "voter": "sasaadrian" - }, - { - "rshares": "811217625", - "voter": "florino" - }, - { - "rshares": "0", - "voter": "foodblogresteem" - }, - { - "rshares": "0", - "voter": "dein-problem" - }, - { - "rshares": "68054740063", - "voter": "steem-on-2020" - }, - { - "rshares": "6835857478", - "voter": "steemfriends" - }, - { - "rshares": "667127621211", - "voter": "xxxxxxxxxx" - }, - { - "rshares": "2408341746", - "voter": "steemegg" - }, - { - "rshares": "1903180539", - "voter": "tagalong" - }, - { - "rshares": "339649047976", - "voter": "ctime" - }, - { - "rshares": "18911324273", - "voter": "fusion.lover" - }, - { - "rshares": "0", - "voter": "bobdavids" - }, - { - "rshares": "3326038543", - "voter": "a-secondchance" - }, - { - "rshares": "10081387233", - "voter": "chocolatelover" - }, - { - "rshares": "34178846", - "voter": "limka" - }, - { - "rshares": "3190451229", - "voter": "mia-cc" - }, - { - "rshares": "1845800376", - "voter": "cecilian" - }, - { - "rshares": "54489130", - "voter": "hungrybear" - }, - { - "rshares": "460168462690", - "voter": "ttg" - }, - { - "rshares": "62914164165", - "voter": "mfblack" - }, - { - "rshares": "64423820", - "voter": "coredump" - }, - { - "rshares": "9463920701", - "voter": "dailyke20" - }, - { - "rshares": "3061469771", - "voter": "omnivori" - }, - { - "rshares": "28265936670", - "voter": "plankton.token" - }, - { - "rshares": "1155070838", - "voter": "penpals" - }, - { - "rshares": "706673180573", - "voter": "spt-skillup" - }, - { - "rshares": "0", - "voter": "vxc.tra" - }, - { - "rshares": "0", - "voter": "tonimontana.neo" - }, - { - "rshares": "2872421341", - "voter": "dbfoodbank" - }, - { - "rshares": "5273014986", - "voter": "weddinggift" - }, - { - "rshares": "184623678", - "voter": "starnote" - }, - { - "rshares": "103541193", - "voter": "toni.ccc" - }, - { - "rshares": "0", - "voter": "toni.pal" - }, - { - "rshares": "1024344198", - "voter": "kgsupport" - }, - { - "rshares": "186128425", - "voter": "moochain.net" - }, - { - "rshares": "0", - "voter": "lemool" - }, - { - "rshares": "0", - "voter": "moochain.com" - }, - { - "rshares": "0", - "voter": "bettyliu" - }, - { - "rshares": "0", - "voter": "younggle" - }, - { - "rshares": "0", - "voter": "dinggle" - }, - { - "rshares": "0", - "voter": "moocer" - }, - { - "rshares": "0", - "voter": "steem-zh" - }, - { - "rshares": "0", - "voter": "coursechain" - }, - { - "rshares": "0", - "voter": "youngoole" - }, - { - "rshares": "0", - "voter": "imooc" - }, - { - "rshares": "587801090", - "voter": "drew0" - }, - { - "rshares": "55920348711", - "voter": "lovequeen" - }, - { - "rshares": "1959655799260", - "voter": "innerhive" - }, - { - "rshares": "1531779189893", - "voter": "hellohive" - }, - { - "rshares": "19700862164", - "voter": "hiveyoda" - }, - { - "rshares": "0", - "voter": "wikicoin" - }, - { - "rshares": "0", - "voter": "starchain" - }, - { - "rshares": "0", - "voter": "steemzh" - }, - { - "rshares": "0", - "voter": "openbazzar" - }, - { - "rshares": "0", - "voter": "steemipfs" - }, - { - "rshares": "0", - "voter": "hive-224466" - }, - { - "rshares": "4310541684", - "voter": "cieliss" - }, - { - "rshares": "0", - "voter": "curation.bot" - }, - { - "rshares": "774986504014", - "voter": "jywahaha" - }, - { - "rshares": "0", - "voter": "mutabor78" - }, - { - "rshares": "1142680817", - "voter": "hivecur2" - } + "tags": [ + "stats", + "steemstats", + "steem-stats", + "steemit" ], - "author": "travelgirl", - "author_payout_value": "0.000 HBD", - "author_reputation": 77.62, - "author_role": "guest", - "author_title": "", - "beneficiaries": [], - "blacklists": [], - "body": "Hi Everyone,\n\nWinter here in Sydney can be pretty bad especially at night. I normally like to have a small supper after the kids go to sleep when I either go online or watch tv. I usually have some cup noodles, cuppa soups or left over dinner handy so I can heat it up as I do want something warm so late at night. I found some noodle soup from Daiso which thought I would give it a try because it\u2019s a new product plus imported from Japan.\n\n> \u6089\u5c3c\u7684\u51ac\u5929\u975e\u5e38\u51b7\u5c24\u5176\u662f\u665a\u4e0a\u5927\u591a\u6642\u9593\u90fd\u662f\u958b\u8457\u6696\u7210. \u5c0f\u670b\u53cb\u665a\u4e0a\u7761\u4e86\u5f97\u6642\u5019\uff0c\u6211\u5c31\u6703\u559c\u6b61\u5403\u4e00\u9ede\u5bb5\u591c\uff0c\u6162\u6162\u4e0a\u7db2\u6216\u770b\u96fb\u8996. \u5e73\u5e38\u6703\u5403\u676f\u9eb5\uff0c\u5373\u98df\u6e6f\u6216\u5269\u4e0b\u7684\u98ef\u9001\uff0c\u4e00\u5b9a\u662f\u6696\u7684\u6771\u897f. \u6700\u8fd1\u5728\u65e5\u672c\u7684 Daiso \u627e\u5230\u4e00\u5305\u5373\u98df\u6e6f\u9762\u6240\u4ee5\u5c31\u8cb7\u6703\u52a0\u8a66\u8a66.\n\n![IMG_4919 1.JPG](https://files.peakd.com/file/peakd-hive/travelgirl/U0PmRvh6-IMG_4919201.JPG)\n\n\nAt $4.80 it\u2019s not cheap as a cuppa soup but on the packet it does say it\u2019s bowl size so I\u2019ll hoping it\u2019s a bigger serve than what we normally get from the supermarket. Very easy to make, put a noddle pack and soup packet add water and stir.\n\n> \u9019\u5305\u5373\u98df\u6e6f\u9762\u8981 $4.80 \u6709 3 \u5305. \u5305\u88dd\u5370\u8457\u4efd\u91cf\u662f\u4e00\u5c0f\u7897\u6240\u4ee5\u90fd\u5e0c\u671b\u5403\u5b8c\u53ef\u4ee5\u98fd\u4e00\u9ede. \u9019\u985e\u5373\u98df\u6e6f\u9762\u5f88\u5bb9\u6613\u505a\uff0c\u653e\u9762\u548c\u6e6f\u5305\u9032\u676f\u6216\u7897\u88e1\u52a0\u6c34\u5c31\u53ef\u4ee5\u5403\n\n![IMG_3195.JPG](https://files.peakd.com/file/peakd-hive/travelgirl/4jDL9KvQ-IMG_3195.JPG)\n\n![IMG_6976.JPG](https://files.peakd.com/file/peakd-hive/travelgirl/DwKCsm61-IMG_6976.JPG)\n\nI decided to use a bigger cup rather than a bowl for easy consumption on the couch. The noodle were like vermicelli and I left it in the hot soup for 3 minutes before eating it. Taste wise, it was delicious. The flavour I bought was tonkotsu and it really tasted like the ramen stock. The noodles was substantial for a quick supper meal and letting the noodles sit on the hot water for a few minutes did it\u2019s trick and let the soup absorb the yummy stock. I do think $4.80 for 3 soups is pretty expensive as I could get a can of Campbell soup for the same price with more substance and volume. Will I buy it again? Yes I would mainly I love that soup base and it is so quick and easy to make. \n\n> \u6211\u672c\u4f86\u62ff\u4e00\u500b\u5c0f\u7897\u4f46\u60f3\u5728\u6c99\u767c\u5403\u6240\u4ee5\u5c31\u62ff\u500b\u5927\u676f\u5b50\u4f86\u505a\u9019\u500b\u9762. \u9762\u689d\u653e\u5728\u6e6f\u88e13\u5206\u9418\u5c31\u53ef\u4ee5\u5403\uff0c\u9762\u662f\u50cf\u7c73\u7c89\u4e00\u6a23. \u5473\u9053\u771f\u662f\u975e\u5e38\u597d\u5403. \u6211\u8cb7\u7684\u662f\u8c6c\u9aa8\u6e6f\u5473\uff0c\u771f\u662f\u5f88\u50cf\u62c9\u9eb5\u7684\u5473\u9053. \u9762\u9905\u4efd\u91cf\u597d\uff0c\u5403\u5b8c\u975e\u5e38\u6eff\u8db3. \u96d6\u7136\u597d\u5403\u4f46\u89ba\u5f97 $4.80 \u6709\u9ede\u8cb4\u56e0\u70ba\u9019\u500b\u50f9\u9322\u53ef\u4ee5\u53bb\u8d85\u5e02\u8cb7\u4e00\u7f50\u91d1\u5bf6\u7f50\u982d\u6e6f\u90fd\u662f\u540c\u4e00\u500b\u50f9\u9322\u800c\u4e14\u4efd\u91cf\u6703\u591a\u597d\u591a. \u6211\u6703\u5728\u8cb7\u9019\u500b\u6e6f\u9762\u55ce\uff1f \u6211\u60f3\u61c9\u8a72\u6703\u56e0\u70ba\u9019\u662f\u5f88\u65b9\u4fbf\u800c\u53bb\u597d\u5403\uff0c\u8cb4\u4e00\u9ede\u90fd\u7121\u6240\u8b02.\n\n![IMG_6263 2 1.JPG](https://files.peakd.com/file/peakd-hive/travelgirl/7vg1f4CH-IMG_6263202201.JPG)\n\n![IMG_9401 2.JPG](https://files.peakd.com/file/peakd-hive/travelgirl/PhPoVKOA-IMG_9401202.JPG)\n\n\n
![happywalk02.gif](https://cdn.steemitimages.com/DQmTA83J2vJLoed895woPKqy2P1Vmyk5r6q5iyE15nyb8H2/happywalk02.gif)
\n\n
animation by @catwomanteresa
\n\n![Travelgirl pic.jpeg](https://files.peakd.com/file/peakd-hive/travelgirl/wvWpUyw1-Travelgirl20pic.jpeg)\n\n\n\nhttps://steemitimages.com/0x0/https://cdn.steemitimages.com/DQmV63eqqyggh6LJKKxn33jKWfFkz7gCufpbc13iLs6MwUq/Footer_travelgirl.png\n\n\n\n---\nThanks for reading. If you like my post, please follow, comment and upvote me. There will be more exciting posts & destinations to come.\n\nAll photos & videos are taken by me & co in all my blogs/stories unless quoted. \n\n\n", - "category": "hive-105017", - "children": 2, - "community": "hive-105017", - "community_title": "HIVE CN \u4e2d\u6587\u793e\u533a", - "created": "2020-07-07T12:37:24", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "app": "peakd/2020.07.1", - "format": "markdown", - "image": [ - "https://files.peakd.com/file/peakd-hive/travelgirl/U0PmRvh6-IMG_4919201.JPG", - "https://files.peakd.com/file/peakd-hive/travelgirl/4jDL9KvQ-IMG_3195.JPG", - "https://files.peakd.com/file/peakd-hive/travelgirl/DwKCsm61-IMG_6976.JPG", - "https://files.peakd.com/file/peakd-hive/travelgirl/7vg1f4CH-IMG_6263202201.JPG", - "https://files.peakd.com/file/peakd-hive/travelgirl/PhPoVKOA-IMG_9401202.JPG", - "https://cdn.steemitimages.com/DQmTA83J2vJLoed895woPKqy2P1Vmyk5r6q5iyE15nyb8H2/happywalk02.gif", - "https://files.peakd.com/file/peakd-hive/travelgirl/wvWpUyw1-Travelgirl20pic.jpeg", - "https://steemitimages.com/0x0/https://cdn.steemitimages.com/DQmV63eqqyggh6LJKKxn33jKWfFkz7gCufpbc13iLs6MwUq/Footer_travelgirl.png" - ], - "links": [ - "/@catwomanteresa" - ], - "tags": [ - "food", - "cn", - "review", - "japanese", - "palnet", - "creativecoin", - "neoxian", - "lifestyle" - ], - "users": [ - "catwomanteresa" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 59696964465056, - "payout": 23.552, - "payout_at": "2020-07-14T12:37:24", - "pending_payout_value": "23.552 HBD", - "percent_steem_dollars": 10000, - "permlink": "travelgirl-s-harusame-noodle-soup-review-or-travelgirl", - "post_id": 86931818, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 131 - }, - "title": "Travelgirl\u2019s Harusame Noodle Soup Review | Travelgirl \u8a66\u98df - \u535a\u591a\u5373\u98df\u6e6f\u9762", - "updated": "2020-07-07T12:37:24", - "url": "/hive-105017/@travelgirl/travelgirl-s-harusame-noodle-soup-review-or-travelgirl" + "users": [ + "masteryoda" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66209054025322, + "payout": 254.797, + "payout_at": "2016-09-22T10:10:06", + "pending_payout_value": "254.797 HBD", + "percent_hbd": 10000, + "permlink": "weekly-payouts-leaderboards-september-week-2", + "post_id": 1252375, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 291 + }, + "title": "Weekly payouts leaderboards - September week 2", + "updated": "2016-09-15T10:10:06", + "url": "/stats/@masteryoda/weekly-payouts-leaderboards-september-week-2" } ] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_trending_topics.pat.json b/hivemind/tavern/bridge_api_patterns/get_trending_topics.pat.json index 40f56b34..25ddcf83 100644 --- a/hivemind/tavern/bridge_api_patterns/get_trending_topics.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_trending_topics.pat.json @@ -1,30 +1,30 @@ [ - [ - "photography", - "#photography" - ], - [ - "travel", - "#travel" - ], - [ - "gaming", - "#gaming" - ], - [ - "crypto", - "#crypto" - ], - [ - "newsteem", - "#newsteem" - ], - [ - "music", - "#music" - ], - [ - "food", - "#food" - ] + [ + "photography", + "#photography" + ], + [ + "travel", + "#travel" + ], + [ + "gaming", + "#gaming" + ], + [ + "crypto", + "#crypto" + ], + [ + "newsteem", + "#newsteem" + ], + [ + "music", + "#music" + ], + [ + "food", + "#food" + ] ] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/list_communities.pat.json b/hivemind/tavern/bridge_api_patterns/list_communities.pat.json index 3536963e..0637a088 100644 --- a/hivemind/tavern/bridge_api_patterns/list_communities.pat.json +++ b/hivemind/tavern/bridge_api_patterns/list_communities.pat.json @@ -1,21 +1 @@ -[ - { - "about": "To highlight true Gems of Hive community with User Retention as primary objective.", - "admins": [ - "bluemist" - ], - "avatar_url": "", - "context": {}, - "created_at": "2020-02-26 11:33:33", - "id": 1369030, - "is_nsfw": false, - "lang": "en", - "name": "hive-148441", - "num_authors": 1706, - "num_pending": 11787, - "subscribers": 5513, - "sum_pending": 13549, - "title": "GEMS", - "type_id": 1 - } -] \ No newline at end of file +[] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/post_notifications.pat.json b/hivemind/tavern/bridge_api_patterns/post_notifications.pat.json index 0637a088..4e5c6cf6 100644 --- a/hivemind/tavern/bridge_api_patterns/post_notifications.pat.json +++ b/hivemind/tavern/bridge_api_patterns/post_notifications.pat.json @@ -1 +1,10 @@ -[] \ No newline at end of file +[ + { + "date": "2016-03-30T19:52:30", + "id": 1, + "msg": "@admin replied to your post", + "score": 20, + "type": "reply", + "url": "@admin/firstpost" + } +] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/unread_notifications.pat.json b/hivemind/tavern/bridge_api_patterns/unread_notifications.pat.json index 9e3a3639..086973d6 100644 --- a/hivemind/tavern/bridge_api_patterns/unread_notifications.pat.json +++ b/hivemind/tavern/bridge_api_patterns/unread_notifications.pat.json @@ -1,4 +1,4 @@ { "lastread": "1970-01-01 00:00:00", - "unread": 0 + "unread": 375 } \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json b/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json index 9f2fc05f..2109895a 100644 --- a/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json @@ -1,8 +1,8 @@ { "reputations": [ - { - "name": "steemit", - "reputation": 0 - } + { + "name": "steemit", + "reputation": 0 + } ] } \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_active_votes.pat.json b/hivemind/tavern/condenser_api_patterns/get_active_votes.pat.json index f84c03bb..b9768537 100644 --- a/hivemind/tavern/condenser_api_patterns/get_active_votes.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_active_votes.pat.json @@ -1,26 +1,26 @@ [ - { - "percent": 10000, - "reputation": 0, - "rshares": 0, - "time": "2016-08-20T02:59:39", - "voter": "endgame", - "weight": 0 - }, - { - "percent": 10000, - "reputation": 0, - "rshares": "28030089381", - "time": "2016-07-19T20:00:30", - "voter": "biophil", - "weight": 0 - }, - { - "percent": 10000, - "reputation": 0, - "rshares": 52512184, - "time": "2016-07-19T20:01:15", - "voter": "seagul", - "weight": "5970197932869" - } + { + "percent": 10000, + "reputation": 0, + "rshares": 0, + "time": "2016-08-20T02:59:39", + "voter": "endgame", + "weight": 0 + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "28030089381", + "time": "2016-07-19T20:00:30", + "voter": "biophil", + "weight": 0 + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 52512184, + "time": "2016-07-19T20:01:15", + "voter": "seagul", + "weight": "5970197932869" + } ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_blog.pat.json b/hivemind/tavern/condenser_api_patterns/get_blog.pat.json index 7ab9ce15..12e46ecb 100644 --- a/hivemind/tavern/condenser_api_patterns/get_blog.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_blog.pat.json @@ -1,645 +1,645 @@ [ - { - "blog": "steemit", - "comment": { - "active_votes": [ - { - "percent": "100", - "reputation": 0, - "rshares": "375241", - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5100", - "voter": "steemit78" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1259167", - "voter": "anonymous" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "318519", - "voter": "hello" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "153384", - "voter": "world" - }, - { - "percent": "-100", - "reputation": 0, - "rshares": "-936400", - "voter": "ned" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59412", - "voter": "fufubar1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14997", - "voter": "anonymous1" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "1441", - "voter": "red" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "551390835500", - "voter": "liondani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "82748", - "voter": "roadscape" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "10772", - "voter": "xeroc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "498863058", - "voter": "joelinux" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "9590417", - "voter": "piranhax" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "percent": "3600", - "reputation": 0, - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "425903066", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "422984262", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "47179379651", - "voter": "tosch" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7831667988", - "voter": "klye" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1019950749", - "voter": "coar" - }, - { - "percent": "1509", - "reputation": 0, - "rshares": "1746058458", - "voter": "murh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "hien-tran" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40624969", - "voter": "ben99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "917398502", - "voter": "decrypt" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1037079223", - "voter": "condra" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "233032838", - "voter": "jearson" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "240809500", - "voter": "tritium" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "226074637", - "voter": "artjedi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "931542394", - "voter": "anduweb" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2292983350", - "voter": "inertia" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "266262926", - "voter": "desmonid" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "71498008", - "voter": "madhatting" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23726644841", - "voter": "ubg" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "131577259", - "voter": "gribgo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "28907874049", - "voter": "orm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "528988007", - "voter": "qonq99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "129537329", - "voter": "rd7783" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "615020728", - "voter": "slava" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "95219365", - "voter": "curator" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "solos" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "blysards" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1279854", - "voter": "nigmat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10847083143", - "voter": "metrox" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "710989138", - "voter": "romancs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59366614", - "voter": "luke490" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58762473", - "voter": "bro66" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "201822591", - "voter": "future24" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58623688", - "voter": "mythras" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "matrixdweller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54761612", - "voter": "edbriv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "865125771", - "voter": "rittr" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52740989", - "voter": "tcstix" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "49467477", - "voter": "friedwater" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54017869", - "voter": "zelious" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53196086", - "voter": "f1111111" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "anomaly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "buckland" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "goldmatters" - } - ], - "author": "steemit", - "author_reputation": 0, - "beneficiaries": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "body_length": 224, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 36, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T18:30:18", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "parent_author": "", - "parent_permlink": "meta", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "Welcome to Steem!", - "total_payout_value": "0.942 HBD", - "url": "/meta/@steemit/firstpost" - }, - "entry_id": 0, - "reblogged_on": "1970-01-01T00:00:00" - } + { + "blog": "steemit", + "comment": { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + }, + "entry_id": 0, + "reblogged_on": "1970-01-01T00:00:00" + } ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_entries.pat.json b/hivemind/tavern/condenser_api_patterns/get_blog_entries.pat.json index 1ab91172..c4ed5060 100644 --- a/hivemind/tavern/condenser_api_patterns/get_blog_entries.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_blog_entries.pat.json @@ -1,9 +1,9 @@ [ { - "author": "steemit", - "blog": "steemit", - "entry_id": 0, - "permlink": "firstpost", - "reblogged_on": "1970-01-01T00:00:00" + "author": "steemit", + "blog": "steemit", + "entry_id": 0, + "permlink": "firstpost", + "reblogged_on": "1970-01-01T00:00:00" } ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json index 9e021a0d..15ef8fb0 100644 --- a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json @@ -1,33 +1,33 @@ [ - { - "active_votes": [], - "author": "lukmarcus", - "author_reputation": 0, - "beneficiaries": [], - "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", - "body_length": 122, - "cashout_time": "2016-09-18T21:19:45", - "category": "polska", - "children": 0, - "created": "2016-08-22T07:44:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https:\\/\\/web.facebook.com\\/notes\\/szymon-szewczyk-blog\\/nasienie-wolno%C5%9Bci\\/1062629210473658\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-22T07:44:48", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "simgregg", - "parent_permlink": "nasienie-wolnosci", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-simgregg-nasienie-wolnosci-20160822t074530822z", - "post_id": 703225, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Nasienie Wolno\u015bci", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/polska/@simgregg/nasienie-wolnosci#@lukmarcus/re-simgregg-nasienie-wolnosci-20160822t074530822z" - } + { + "active_votes": [], + "author": "lukmarcus", + "author_reputation": 0, + "beneficiaries": [], + "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", + "body_length": 122, + "cashout_time": "2016-08-29T07:44:48", + "category": "polska", + "children": 0, + "created": "2016-08-22T07:44:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-22T07:44:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "simgregg", + "parent_permlink": "nasienie-wolnosci", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-simgregg-nasienie-wolnosci-20160822t074530822z", + "post_id": 931240, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Nasienie Wolno\u015bci", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/polska/@simgregg/nasienie-wolnosci#@lukmarcus/re-simgregg-nasienie-wolnosci-20160822t074530822z" + } ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_content.pat.json b/hivemind/tavern/condenser_api_patterns/get_content.pat.json index 5498ad13..9ab77365 100644 --- a/hivemind/tavern/condenser_api_patterns/get_content.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_content.pat.json @@ -1,638 +1,638 @@ { - "active_votes": [ - { - "percent": "100", - "reputation": 0, - "rshares": "375241", - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5100", - "voter": "steemit78" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1259167", - "voter": "anonymous" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "318519", - "voter": "hello" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "153384", - "voter": "world" - }, - { - "percent": "-100", - "reputation": 0, - "rshares": "-936400", - "voter": "ned" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59412", - "voter": "fufubar1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14997", - "voter": "anonymous1" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "1441", - "voter": "red" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "551390835500", - "voter": "liondani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "82748", - "voter": "roadscape" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "10772", - "voter": "xeroc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "498863058", - "voter": "joelinux" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "9590417", - "voter": "piranhax" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "percent": "3600", - "reputation": 0, - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "425903066", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "422984262", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "47179379651", - "voter": "tosch" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7831667988", - "voter": "klye" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1019950749", - "voter": "coar" - }, - { - "percent": "1509", - "reputation": 0, - "rshares": "1746058458", - "voter": "murh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "hien-tran" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40624969", - "voter": "ben99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "917398502", - "voter": "decrypt" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1037079223", - "voter": "condra" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "233032838", - "voter": "jearson" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "240809500", - "voter": "tritium" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "226074637", - "voter": "artjedi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "931542394", - "voter": "anduweb" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2292983350", - "voter": "inertia" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "266262926", - "voter": "desmonid" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "71498008", - "voter": "madhatting" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23726644841", - "voter": "ubg" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "131577259", - "voter": "gribgo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "28907874049", - "voter": "orm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "528988007", - "voter": "qonq99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "129537329", - "voter": "rd7783" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "615020728", - "voter": "slava" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "95219365", - "voter": "curator" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "solos" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "blysards" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1279854", - "voter": "nigmat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10847083143", - "voter": "metrox" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "710989138", - "voter": "romancs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59366614", - "voter": "luke490" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58762473", - "voter": "bro66" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "201822591", - "voter": "future24" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58623688", - "voter": "mythras" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "matrixdweller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54761612", - "voter": "edbriv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "865125771", - "voter": "rittr" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52740989", - "voter": "tcstix" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "49467477", - "voter": "friedwater" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54017869", - "voter": "zelious" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53196086", - "voter": "f1111111" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "anomaly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "buckland" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "goldmatters" - } - ], - "author": "steemit", - "author_reputation": 0, - "beneficiaries": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "body_length": 224, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 36, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T18:30:18", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "parent_author": "", - "parent_permlink": "meta", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "Welcome to Steem!", - "total_payout_value": "0.942 HBD", - "url": "/meta/@steemit/firstpost" + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" } \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_content_replies.pat.json b/hivemind/tavern/condenser_api_patterns/get_content_replies.pat.json index e4858d7e..82152227 100644 --- a/hivemind/tavern/condenser_api_patterns/get_content_replies.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_content_replies.pat.json @@ -1,95 +1,95 @@ [ - { - "active_votes": [], - "author": "trogdor", - "author_reputation": 0, - "beneficiaries": [], - "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", - "body_length": 55, - "cashout_time": "1969-12-31T23:59:59", - "category": "introduceyourself", - "children": 0, - "created": "2016-07-03T17:51:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "2016-08-13T21:04:45", - "last_update": "2016-07-03T17:51:48", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "hello-world", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-hello-world-20160703t175141501z", - "post_id": 36953, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Hello, World!", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/introduceyourself/@gtg/hello-world#@trogdor/re-gtg-hello-world-20160703t175141501z" - }, - { - "active_votes": [], - "author": "amartinezque", - "author_reputation": 0, - "beneficiaries": [], - "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", - "body_length": 84, - "cashout_time": "1969-12-31T23:59:59", - "category": "introduceyourself", - "children": 0, - "created": "2016-07-03T22:45:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "2016-08-13T21:04:45", - "last_update": "2016-07-03T22:45:27", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "hello-world", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-hello-world-20160703t224527020z", - "post_id": 37179, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Hello, World!", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/introduceyourself/@gtg/hello-world#@amartinezque/re-gtg-hello-world-20160703t224527020z" - }, - { - "active_votes": [], - "author": "edu-lopov", - "author_reputation": 0, - "beneficiaries": [], - "body": "Welcome to Steemit Gandalf!", - "body_length": 27, - "cashout_time": "1969-12-31T23:59:59", - "category": "introduceyourself", - "children": 0, - "created": "2016-07-04T18:22:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "2016-08-13T21:04:45", - "last_update": "2016-07-04T18:22:51", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "hello-world", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-hello-world-20160704t182251522z", - "post_id": 38463, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Hello, World!", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/introduceyourself/@gtg/hello-world#@edu-lopov/re-gtg-hello-world-20160704t182251522z" - } + { + "active_votes": [], + "author": "trogdor", + "author_reputation": 0, + "beneficiaries": [], + "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", + "body_length": 55, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-03T17:51:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T17:51:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160703t175141501z", + "post_id": 51479, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@trogdor/re-gtg-hello-world-20160703t175141501z" + }, + { + "active_votes": [], + "author": "amartinezque", + "author_reputation": 0, + "beneficiaries": [], + "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", + "body_length": 84, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-03T22:45:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T22:45:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160703t224527020z", + "post_id": 51824, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@amartinezque/re-gtg-hello-world-20160703t224527020z" + }, + { + "active_votes": [], + "author": "edu-lopov", + "author_reputation": 0, + "beneficiaries": [], + "body": "Welcome to Steemit Gandalf!", + "body_length": 27, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-04T18:22:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-04T18:22:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160704t182251522z", + "post_id": 53542, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@edu-lopov/re-gtg-hello-world-20160704t182251522z" + } ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date.pat.json index a78dbc2b..7954c8dd 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date.pat.json @@ -1,640 +1,640 @@ [ - { - "active_votes": [ - { - "percent": "100", - "reputation": 0, - "rshares": "375241", - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5100", - "voter": "steemit78" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1259167", - "voter": "anonymous" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "318519", - "voter": "hello" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "153384", - "voter": "world" - }, - { - "percent": "-100", - "reputation": 0, - "rshares": "-936400", - "voter": "ned" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59412", - "voter": "fufubar1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14997", - "voter": "anonymous1" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "1441", - "voter": "red" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "551390835500", - "voter": "liondani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "82748", - "voter": "roadscape" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "10772", - "voter": "xeroc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "498863058", - "voter": "joelinux" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "9590417", - "voter": "piranhax" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "percent": "3600", - "reputation": 0, - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "425903066", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "422984262", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "47179379651", - "voter": "tosch" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7831667988", - "voter": "klye" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1019950749", - "voter": "coar" - }, - { - "percent": "1509", - "reputation": 0, - "rshares": "1746058458", - "voter": "murh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "hien-tran" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40624969", - "voter": "ben99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "917398502", - "voter": "decrypt" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1037079223", - "voter": "condra" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "233032838", - "voter": "jearson" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "240809500", - "voter": "tritium" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "226074637", - "voter": "artjedi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "931542394", - "voter": "anduweb" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2292983350", - "voter": "inertia" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "266262926", - "voter": "desmonid" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "71498008", - "voter": "madhatting" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23726644841", - "voter": "ubg" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "131577259", - "voter": "gribgo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "28907874049", - "voter": "orm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "528988007", - "voter": "qonq99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "129537329", - "voter": "rd7783" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "615020728", - "voter": "slava" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "95219365", - "voter": "curator" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "solos" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "blysards" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1279854", - "voter": "nigmat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10847083143", - "voter": "metrox" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "710989138", - "voter": "romancs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59366614", - "voter": "luke490" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58762473", - "voter": "bro66" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "201822591", - "voter": "future24" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58623688", - "voter": "mythras" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "matrixdweller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54761612", - "voter": "edbriv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "865125771", - "voter": "rittr" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52740989", - "voter": "tcstix" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "49467477", - "voter": "friedwater" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54017869", - "voter": "zelious" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53196086", - "voter": "f1111111" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "anomaly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "buckland" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "goldmatters" - } - ], - "author": "steemit", - "author_reputation": 0, - "beneficiaries": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "body_length": 224, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 36, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T18:30:18", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "parent_author": "", - "parent_permlink": "meta", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "Welcome to Steem!", - "total_payout_value": "0.942 HBD", - "url": "/meta/@steemit/firstpost" - } + { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + } ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_blog.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_blog.pat.json index a78dbc2b..7954c8dd 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_blog.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_blog.pat.json @@ -1,640 +1,640 @@ [ - { - "active_votes": [ - { - "percent": "100", - "reputation": 0, - "rshares": "375241", - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5100", - "voter": "steemit78" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1259167", - "voter": "anonymous" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "318519", - "voter": "hello" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "153384", - "voter": "world" - }, - { - "percent": "-100", - "reputation": 0, - "rshares": "-936400", - "voter": "ned" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59412", - "voter": "fufubar1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14997", - "voter": "anonymous1" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "1441", - "voter": "red" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "551390835500", - "voter": "liondani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "82748", - "voter": "roadscape" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "10772", - "voter": "xeroc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "498863058", - "voter": "joelinux" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "9590417", - "voter": "piranhax" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "percent": "3600", - "reputation": 0, - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "425903066", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "422984262", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "47179379651", - "voter": "tosch" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7831667988", - "voter": "klye" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1019950749", - "voter": "coar" - }, - { - "percent": "1509", - "reputation": 0, - "rshares": "1746058458", - "voter": "murh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "hien-tran" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40624969", - "voter": "ben99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "917398502", - "voter": "decrypt" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1037079223", - "voter": "condra" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "233032838", - "voter": "jearson" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "240809500", - "voter": "tritium" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "226074637", - "voter": "artjedi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "931542394", - "voter": "anduweb" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2292983350", - "voter": "inertia" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "266262926", - "voter": "desmonid" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "71498008", - "voter": "madhatting" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23726644841", - "voter": "ubg" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "131577259", - "voter": "gribgo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "28907874049", - "voter": "orm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "528988007", - "voter": "qonq99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "129537329", - "voter": "rd7783" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "615020728", - "voter": "slava" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "95219365", - "voter": "curator" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "solos" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "blysards" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1279854", - "voter": "nigmat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10847083143", - "voter": "metrox" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "710989138", - "voter": "romancs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59366614", - "voter": "luke490" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58762473", - "voter": "bro66" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "201822591", - "voter": "future24" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58623688", - "voter": "mythras" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "matrixdweller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54761612", - "voter": "edbriv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "865125771", - "voter": "rittr" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52740989", - "voter": "tcstix" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "49467477", - "voter": "friedwater" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54017869", - "voter": "zelious" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53196086", - "voter": "f1111111" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "anomaly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "buckland" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "goldmatters" - } - ], - "author": "steemit", - "author_reputation": 0, - "beneficiaries": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "body_length": 224, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 36, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T18:30:18", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "parent_author": "", - "parent_permlink": "meta", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "Welcome to Steem!", - "total_payout_value": "0.942 HBD", - "url": "/meta/@steemit/firstpost" - } + { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + } ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments.pat.json index 5434a44a..f0cc63d8 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments.pat.json @@ -1,94 +1,94 @@ [ - { - "active_votes": [ - { - "percent": "-100", - "reputation": 0, - "rshares": "-375241", - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5100", - "voter": "steemit46" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "81125", - "voter": "roadscape" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "425903066", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "431616594", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58854897335", - "voter": "business" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "244129227", - "voter": "kewpiedoll" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1615731741", - "voter": "naturalista" - } - ], - "author": "admin", - "author_reputation": 0, - "beneficiaries": [], - "body": "First Reply! Let's get this **party** started", - "body_length": 45, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 2, - "created": "2016-03-30T19:52:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T19:52:30", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 62423410900, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 2, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/meta/@steemit/firstpost#@admin/firstpost" - } + { + "active_votes": [ + { + "percent": "-100", + "reputation": 0, + "rshares": "-375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit46" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81125", + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "431616594", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58854897335", + "voter": "business" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "244129227", + "voter": "kewpiedoll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1615731741", + "voter": "naturalista" + } + ], + "author": "admin", + "author_reputation": 0, + "beneficiaries": [], + "body": "First Reply! Let's get this **party** started", + "body_length": 45, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "created": "2016-03-30T19:52:30", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T19:52:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62423410900, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 2, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@admin/firstpost" + } ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json index 3c059c7f..4ef6e33b 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json @@ -1,33 +1,33 @@ [ - { - "active_votes": [], - "author": "philanthropest", - "author_reputation": 0, - "beneficiaries": [], - "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", - "body_length": 652, - "cashout_time": "2016-09-16T07:40:21", - "category": "freedom", - "children": 0, - "created": "2016-09-15T19:40:21", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "json_metadata": "{\"tags\":[\"freedom\",\"anarchy\",\"steem\",\"life\",\"\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/y02aBfNT8n4\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=y02aBfNT8n4\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-15T19:42:36", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "", - "parent_permlink": "freedom", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", - "post_id": 960979, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", - "title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", - "total_payout_value": "0.000 HBD", - "url": "/freedom/@philanthropest/cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does" - } + { + "active_votes": [], + "author": "philanthropest", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", + "body_length": 652, + "cashout_time": "2016-09-22T19:40:21", + "category": "freedom", + "children": 0, + "created": "2016-09-15T19:40:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"freedom\",\"anarchy\",\"steem\",\"life\",\"\"],\"image\":[\"https://img.youtube.com/vi/y02aBfNT8n4/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=y02aBfNT8n4\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T19:42:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "", + "parent_permlink": "freedom", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", + "post_id": 1257871, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", + "title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", + "total_payout_value": "0.000 HBD", + "url": "/freedom/@philanthropest/cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does" + } ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json index 4367f5c9..bb4469e2 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json @@ -1,1090 +1,1090 @@ [ - { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "1861031398822", - "voter": "books" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4287714457313", - "voter": "riverhead" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1855967006728", - "voter": "badassmother" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2053236030423", - "voter": "hr1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5519371190400", - "voter": "kushed" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1271804694676", - "voter": "rossco99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "22391622942", - "voter": "jaewoocho" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "161758715658", - "voter": "ozmaster" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1534643949678", - "voter": "joseph" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "100723108736", - "voter": "aizensou" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "466132509421", - "voter": "recursive2" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "636519834128", - "voter": "masteryoda" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3120576239931", - "voter": "recursive" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "8927291120", - "voter": "idol" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "800066797130", - "voter": "steemrollin" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4941942978", - "voter": "sakr" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "284401462010", - "voter": "chitty" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1536592488", - "voter": "jocelyn" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14818263059", - "voter": "gregory-f" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "154334962550", - "voter": "edgeland" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "374436234637", - "voter": "craig-grant" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9028550345", - "voter": "gregory60" - }, - { - "percent": "1056", - "reputation": 0, - "rshares": "89897944197", - "voter": "eeks" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "11591323519", - "voter": "fkn" - }, - { - "percent": "9900", - "reputation": 0, - "rshares": "468281676", - "voter": "paco-steem" - }, - { - "percent": "9900", - "reputation": 0, - "rshares": "5641697991", - "voter": "spaninv" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "15236070794", - "voter": "elishagh1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7802860274", - "voter": "richman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "584279800798", - "voter": "nanzo-scoop" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10059005246", - "voter": "kefkius" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "177417522325", - "voter": "mummyimperfect" - }, - { - "percent": "2900", - "reputation": 0, - "rshares": "313697862", - "voter": "coar" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "106635074770", - "voter": "asch" - }, - { - "percent": "5555", - "reputation": 0, - "rshares": "1061264730", - "voter": "murh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "6230798580", - "voter": "cryptofunk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2003359924", - "voter": "error" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "11848125383", - "voter": "andu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "970586830705", - "voter": "cyber" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59952188311", - "voter": "theshell" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "49580154489", - "voter": "ak2020" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "402139444", - "voter": "applecrisp" - }, - { - "percent": "9900", - "reputation": 0, - "rshares": "365370465", - "voter": "stiletto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "280737930617", - "voter": "trogdor" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5950623572", - "voter": "mark-waser" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "118356217412", - "voter": "geoffrey" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "101509283748", - "voter": "kimziv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "75333038089", - "voter": "emily-cook" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2251949197", - "voter": "superfreek" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "275327756", - "voter": "ladyclair" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3283410959", - "voter": "orly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5271030976", - "voter": "riscadox" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "25057521880", - "voter": "tcfxyz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "6939954009", - "voter": "futurefood" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "56586842629", - "voter": "furion" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "754655775", - "voter": "busser" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "103793678934", - "voter": "cdubendo" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "271487757", - "voter": "barbara2" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "301755142", - "voter": "ch0c0latechip" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "279277284", - "voter": "doge4lyf" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2733708608", - "voter": "steem1653" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "124961861", - "voter": "cynetyc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5357326058", - "voter": "thegoodguy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14168005907", - "voter": "aaseb" - }, - { - "percent": "4000", - "reputation": 0, - "rshares": "4209533734", - "voter": "karen13" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "251367062418", - "voter": "nabilov" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "8576081337", - "voter": "noodhoog" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "46859060143", - "voter": "milestone" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "21565632626", - "voter": "artific" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5840939270", - "voter": "btcbtcbtc20155" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14455781997", - "voter": "nippel66" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "163325492855", - "voter": "blueorgy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13111647625", - "voter": "benjiberigan" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "2214250194", - "voter": "poseidon" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "355265286967", - "voter": "calaber24p" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3295677164", - "voter": "simon.braki.love" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "121062267", - "voter": "bola" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "32544157928", - "voter": "deanliu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14007767075", - "voter": "hagie" - }, - { - "percent": "4000", - "reputation": 0, - "rshares": "204618396015", - "voter": "jl777" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1371622220", - "voter": "aleco" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "9400257217", - "voter": "positive" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1773021661", - "voter": "yarly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "267188192", - "voter": "yarly2" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "267587944", - "voter": "yarly3" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "154579129", - "voter": "yarly4" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "155451862", - "voter": "yarly5" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "88607961", - "voter": "yarly7" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "257573964", - "voter": "sergey44" - }, - { - "percent": "4000", - "reputation": 0, - "rshares": "17267341753", - "voter": "proto" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "16251777176", - "voter": "sisterholics" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "428868451", - "voter": "yarly10" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "229507420", - "voter": "yarly11" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "80241480", - "voter": "yarly12" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "316499814", - "voter": "fnait" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "281178931", - "voter": "keepcalmand" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "607346548", - "voter": "cwmyao1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "16495975416", - "voter": "jamesbrown" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3353991305", - "voter": "glitterpig" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7506600577", - "voter": "jed78" - }, - { - "percent": "4000", - "reputation": 0, - "rshares": "8734185109", - "voter": "taker" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1651596637", - "voter": "coinbar" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "574717917578", - "voter": "laonie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "254341994815", - "voter": "ozchartart" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5104045578", - "voter": "croatia" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "19987344033", - "voter": "myfirst" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "116658367770", - "voter": "somebody" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "4604075327", - "voter": "flysaga" - }, - { - "percent": "1056", - "reputation": 0, - "rshares": "2501638608", - "voter": "gmurph" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "25770687280", - "voter": "midnightoil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4190377366", - "voter": "ullikume" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2325684243", - "voter": "andrew0" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "64457942294", - "voter": "xiaohui" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "3234267259", - "voter": "elfkitchen" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99935909954", - "voter": "joele" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5855738054", - "voter": "oflyhigh" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "2127092828", - "voter": "xiaokongcom" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "47556149905", - "voter": "eneismijmich" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "4287842001", - "voter": "xianjun" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "72192938", - "voter": "sijoittaja" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "11041591679", - "voter": "borran" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "93807196108", - "voter": "miacats" - }, - { - "percent": "4700", - "reputation": 0, - "rshares": "280777082", - "voter": "microluck" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "74131936", - "voter": "razberrijam" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2022702929", - "voter": "chinadaily" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "86712034", - "voter": "pompe72" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1647538615", - "voter": "ignat" - }, - { - "percent": "2100", - "reputation": 0, - "rshares": "20666130092", - "voter": "anotherjoe" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10344891579", - "voter": "gvargas123" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3562389763", - "voter": "movievertigo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "21980957828", - "voter": "andrewawerdna" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2109031152", - "voter": "runridefly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1783693666", - "voter": "funkywanderer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4747321980", - "voter": "richardcrill" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2161669067", - "voter": "jeremyfromwi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1661534801", - "voter": "davidjkelley" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "178419224", - "voter": "greatness" - }, - { - "percent": "5000", - "reputation": 0, - "rshares": "27678962051", - "voter": "sponge-bob" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "15571125147", - "voter": "digital-wisdom" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3710973264", - "voter": "ethical-ai" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "6831389463", - "voter": "jwaser" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "422625634", - "voter": "steemorama" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4269189470", - "voter": "nubchai" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50931848", - "voter": "analyzethis" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2675506788", - "voter": "bwaser" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "6064648982", - "voter": "dexter-k" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54949117", - "voter": "doggnostic" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54665234", - "voter": "jenny-talls" - }, - { - "percent": "5000", - "reputation": 0, - "rshares": "27673000226", - "voter": "brains" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1387263917", - "voter": "steemafon" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5753524189", - "voter": "chick1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50584036", - "voter": "aoki" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51568971", - "voter": "typingagent" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50528809", - "voter": "cwb" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "62515317", - "voter": "freebornangel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "339300528", - "voter": "anomaly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2401297947", - "voter": "ellepdub" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "98577200", - "voter": "ola1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12115690216", - "voter": "herpetologyguy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4817018034", - "voter": "morgan.waser" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50228382", - "voter": "dragonice" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50907857", - "voter": "oxygen" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50873654", - "voter": "palladium" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50865840", - "voter": "sting" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3689865978", - "voter": "strong-ai" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "162917785", - "voter": "ctu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "161815656", - "voter": "ranger" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "161700361", - "voter": "shadowcash" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "161218747", - "voter": "sdc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "158018960", - "voter": "bethesda" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "160835930", - "voter": "skrillex" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "160319579", - "voter": "cybergirls" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "159175576", - "voter": "fallout" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "158732321", - "voter": "steemwallet" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "158638676", - "voter": "icesteem" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "31684221772", - "voter": "goldmatters" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "154247502", - "voter": "dougkarr" - } - ], - "author": "ozchartart", - "author_reputation": 0, - "beneficiaries": [], - "body": "Hello Steemers!\n\nhttps://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png\n\n*POLONIEX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png\n*4 hour Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciwF/1b96b56dcc.png\n*4 hour Poloniex chart - Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png\n*1 day Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciC9/edf3dcb758.png\n*1 day Poloniex chart - Sept 15, 2016*\nThe Poloniex price went down to the all time low, breaking it and making a slightly lower all time low, but still not giving any confirm of a bottom or bounce.\nVolume about 20% higher then yesterday.\n\n*BITTREX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png\n*4 hour Bittrex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciod/ce32f1a029.png\n*4 hour Bittrex chart - Sept 15, 2016*\nThe Bittrex price broke the local low made just a slightly lower one, same as Poloniex with he all time low, looking like its heading towards the next support level (~0.0007, blue dashed).\nVolume on Bittrex was about 25% lower then yesterday (~5BTC's).\n\n\n*VOLUME COMPARISON*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png\n*STEEM/BTC volume Bittrex Sept 14, 2016*\n\nhttp://puu.sh/rcifG/0c61511ea3.png\n*STEEM/BTC volume Bittrex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png\n*STEEM/BTC volume Poloniex Sept 14, 2016*\n\nhttp://puu.sh/rcicN/b2384086a4.png\n*STEEM/BTC volume Poloniex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png\n*STEEM indexed global volume Sept 14, 2016*\n\nhttp://puu.sh/rcibB/7b2700dd82.png\n*STEEM indexed global volume Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmof/8ca7889618.png\n*Coinmarketcap top volume cryptos Sept 14, 2016*\n\nhttp://puu.sh/rci8K/d68b7eb122.png\n*Coinmarketcap top volume cryptos Sept 15, 2016*\nOverall volume about 12% higher then yesterday, with Bittrex volume taking a dive and Poloniex gaining some.\n$STEEM again under top 30 in volume rankings.\n\n*COMMENT*\nOnce again, I will post the comment by commenting as it involves my personal opinion!\nThank you for understanding!\n\nIf anyone has any questions or need's help fell free to ask, I will try to explain as fast and as best as I can.\nCritics, comments, reply's, counters, advice's, etc. are always welcome!\nHave my charts helped you in any way?Let me know with a comment below :)\nAre there more people who are doing TA?\nPlease post the links to your TA's posts into the comments as well!\n\n*DISCLAIMER*\nI am showing multiple scenarios on the price movement, in the post itself I do not take any stance, either bullish or bearish. I am not responsible for neither you\u2019re winning nor you're losses upon trading! the \"comment\" section is my personal opinion and does not mean I have to or do hold any positions in the given market.\nEveryone who uses TA develops his own unique charting style, please keep that in mind.\n\nhttps://www.youtube.com/watch?v=i3bS5nRZOvU\n\nKind regards, OZ :)", - "body_length": 3079, - "cashout_time": "2016-09-16T18:35:24", - "category": "steem", - "children": 5, - "created": "2016-09-15T18:18:00", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "json_metadata": "{\"tags\":[\"steem\",\"poloniex\",\"bittrex\",\"technical-analysis\",\"trading\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/qPHEc\\/3b0d8913ce.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmGz\\/0764821325.png\",\"http:\\/\\/puu.sh\\/rciwF\\/1b96b56dcc.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmLb\\/755ca91186.png\",\"http:\\/\\/puu.sh\\/rciC9\\/edf3dcb758.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmDb\\/7461d3602b.png\",\"http:\\/\\/puu.sh\\/rciod\\/ce32f1a029.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmuE\\/227aa902ca.png\",\"http:\\/\\/puu.sh\\/rcifG\\/0c61511ea3.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmwv\\/fd2112e3ab.png\",\"http:\\/\\/puu.sh\\/rcicN\\/b2384086a4.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmry\\/db13b3282f.png\",\"http:\\/\\/puu.sh\\/rcibB\\/7b2700dd82.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmlb\\/aca50530d5.png\",\"http:\\/\\/puu.sh\\/rci8K\\/d68b7eb122.png\",\"https:\\/\\/img.youtube.com\\/vi\\/i3bS5nRZOvU\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=i3bS5nRZOvU\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-15T18:18:00", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 30268799563538, - "parent_author": "", - "parent_permlink": "steem", - "pending_payout_value": "57.124 HBD", - "percent_steem_dollars": 10000, - "permlink": "usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", - "post_id": 960238, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle\u2019s left empty\" Sept 15, 2016", - "title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle\u2019s left empty\" Sept 15, 2016", - "total_payout_value": "0.000 HBD", - "url": "/steem/@ozchartart/usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept" - } -] \ No newline at end of file + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "1861031398822", + "voter": "books" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4287714457313", + "voter": "riverhead" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1855967006728", + "voter": "badassmother" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2053236030423", + "voter": "hr1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5519371190400", + "voter": "kushed" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1271804694676", + "voter": "rossco99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22391622942", + "voter": "jaewoocho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161758715658", + "voter": "ozmaster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1534643949678", + "voter": "joseph" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100723108736", + "voter": "aizensou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "466132509421", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "636519834128", + "voter": "masteryoda" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3120576239931", + "voter": "recursive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8927291120", + "voter": "idol" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "800066797130", + "voter": "steemrollin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4941942978", + "voter": "sakr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "284401462010", + "voter": "chitty" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1536592488", + "voter": "jocelyn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14818263059", + "voter": "gregory-f" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "154334962550", + "voter": "edgeland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "374436234637", + "voter": "craig-grant" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9028550345", + "voter": "gregory60" + }, + { + "percent": "1056", + "reputation": 0, + "rshares": "89897944197", + "voter": "eeks" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "11591323519", + "voter": "fkn" + }, + { + "percent": "9900", + "reputation": 0, + "rshares": "468281676", + "voter": "paco-steem" + }, + { + "percent": "9900", + "reputation": 0, + "rshares": "5641697991", + "voter": "spaninv" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "15236070794", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7802860274", + "voter": "richman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "584279800798", + "voter": "nanzo-scoop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10059005246", + "voter": "kefkius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "177417522325", + "voter": "mummyimperfect" + }, + { + "percent": "2900", + "reputation": 0, + "rshares": "313697862", + "voter": "coar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106635074770", + "voter": "asch" + }, + { + "percent": "5555", + "reputation": 0, + "rshares": "1061264730", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6230798580", + "voter": "cryptofunk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2003359924", + "voter": "error" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11848125383", + "voter": "andu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "970586830705", + "voter": "cyber" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59952188311", + "voter": "theshell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49580154489", + "voter": "ak2020" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "402139444", + "voter": "applecrisp" + }, + { + "percent": "9900", + "reputation": 0, + "rshares": "365370465", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "280737930617", + "voter": "trogdor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5950623572", + "voter": "mark-waser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "118356217412", + "voter": "geoffrey" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "101509283748", + "voter": "kimziv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75333038089", + "voter": "emily-cook" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2251949197", + "voter": "superfreek" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "275327756", + "voter": "ladyclair" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3283410959", + "voter": "orly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5271030976", + "voter": "riscadox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25057521880", + "voter": "tcfxyz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6939954009", + "voter": "futurefood" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "56586842629", + "voter": "furion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "754655775", + "voter": "busser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103793678934", + "voter": "cdubendo" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "271487757", + "voter": "barbara2" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "301755142", + "voter": "ch0c0latechip" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "279277284", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2733708608", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "124961861", + "voter": "cynetyc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5357326058", + "voter": "thegoodguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14168005907", + "voter": "aaseb" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "4209533734", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "251367062418", + "voter": "nabilov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8576081337", + "voter": "noodhoog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46859060143", + "voter": "milestone" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21565632626", + "voter": "artific" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5840939270", + "voter": "btcbtcbtc20155" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14455781997", + "voter": "nippel66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "163325492855", + "voter": "blueorgy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13111647625", + "voter": "benjiberigan" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "2214250194", + "voter": "poseidon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "355265286967", + "voter": "calaber24p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3295677164", + "voter": "simon.braki.love" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "121062267", + "voter": "bola" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32544157928", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14007767075", + "voter": "hagie" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "204618396015", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1371622220", + "voter": "aleco" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "9400257217", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1773021661", + "voter": "yarly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "267188192", + "voter": "yarly2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "267587944", + "voter": "yarly3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "154579129", + "voter": "yarly4" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155451862", + "voter": "yarly5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88607961", + "voter": "yarly7" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "257573964", + "voter": "sergey44" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "17267341753", + "voter": "proto" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "16251777176", + "voter": "sisterholics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "428868451", + "voter": "yarly10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "229507420", + "voter": "yarly11" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "80241480", + "voter": "yarly12" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "316499814", + "voter": "fnait" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "281178931", + "voter": "keepcalmand" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "607346548", + "voter": "cwmyao1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16495975416", + "voter": "jamesbrown" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3353991305", + "voter": "glitterpig" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7506600577", + "voter": "jed78" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "8734185109", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1651596637", + "voter": "coinbar" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "574717917578", + "voter": "laonie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "254341994815", + "voter": "ozchartart" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5104045578", + "voter": "croatia" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "19987344033", + "voter": "myfirst" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "116658367770", + "voter": "somebody" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "4604075327", + "voter": "flysaga" + }, + { + "percent": "1056", + "reputation": 0, + "rshares": "2501638608", + "voter": "gmurph" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "25770687280", + "voter": "midnightoil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4190377366", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2325684243", + "voter": "andrew0" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "64457942294", + "voter": "xiaohui" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "3234267259", + "voter": "elfkitchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99935909954", + "voter": "joele" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5855738054", + "voter": "oflyhigh" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "2127092828", + "voter": "xiaokongcom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47556149905", + "voter": "eneismijmich" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "4287842001", + "voter": "xianjun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72192938", + "voter": "sijoittaja" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11041591679", + "voter": "borran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "93807196108", + "voter": "miacats" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "280777082", + "voter": "microluck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "74131936", + "voter": "razberrijam" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2022702929", + "voter": "chinadaily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "86712034", + "voter": "pompe72" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1647538615", + "voter": "ignat" + }, + { + "percent": "2100", + "reputation": 0, + "rshares": "20666130092", + "voter": "anotherjoe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3562389763", + "voter": "movievertigo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21980957828", + "voter": "andrewawerdna" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2109031152", + "voter": "runridefly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1783693666", + "voter": "funkywanderer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4747321980", + "voter": "richardcrill" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2161669067", + "voter": "jeremyfromwi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1661534801", + "voter": "davidjkelley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "178419224", + "voter": "greatness" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "27678962051", + "voter": "sponge-bob" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15571125147", + "voter": "digital-wisdom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3710973264", + "voter": "ethical-ai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6831389463", + "voter": "jwaser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422625634", + "voter": "steemorama" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4269189470", + "voter": "nubchai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2675506788", + "voter": "bwaser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6064648982", + "voter": "dexter-k" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54949117", + "voter": "doggnostic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54665234", + "voter": "jenny-talls" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "27673000226", + "voter": "brains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1387263917", + "voter": "steemafon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5753524189", + "voter": "chick1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50584036", + "voter": "aoki" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51568971", + "voter": "typingagent" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50528809", + "voter": "cwb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62515317", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "339300528", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2401297947", + "voter": "ellepdub" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "98577200", + "voter": "ola1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12115690216", + "voter": "herpetologyguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4817018034", + "voter": "morgan.waser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50228382", + "voter": "dragonice" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50907857", + "voter": "oxygen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50873654", + "voter": "palladium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50865840", + "voter": "sting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3689865978", + "voter": "strong-ai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "162917785", + "voter": "ctu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161815656", + "voter": "ranger" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161700361", + "voter": "shadowcash" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161218747", + "voter": "sdc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158018960", + "voter": "bethesda" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "160835930", + "voter": "skrillex" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "160319579", + "voter": "cybergirls" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "159175576", + "voter": "fallout" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158732321", + "voter": "steemwallet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158638676", + "voter": "icesteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31684221772", + "voter": "goldmatters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "154247502", + "voter": "dougkarr" + } + ], + "author": "ozchartart", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hello Steemers!\n\nhttps://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png\n\n*POLONIEX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png\n*4 hour Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciwF/1b96b56dcc.png\n*4 hour Poloniex chart - Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png\n*1 day Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciC9/edf3dcb758.png\n*1 day Poloniex chart - Sept 15, 2016*\nThe Poloniex price went down to the all time low, breaking it and making a slightly lower all time low, but still not giving any confirm of a bottom or bounce.\nVolume about 20% higher then yesterday.\n\n*BITTREX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png\n*4 hour Bittrex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciod/ce32f1a029.png\n*4 hour Bittrex chart - Sept 15, 2016*\nThe Bittrex price broke the local low made just a slightly lower one, same as Poloniex with he all time low, looking like its heading towards the next support level (~0.0007, blue dashed).\nVolume on Bittrex was about 25% lower then yesterday (~5BTC's).\n\n\n*VOLUME COMPARISON*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png\n*STEEM/BTC volume Bittrex Sept 14, 2016*\n\nhttp://puu.sh/rcifG/0c61511ea3.png\n*STEEM/BTC volume Bittrex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png\n*STEEM/BTC volume Poloniex Sept 14, 2016*\n\nhttp://puu.sh/rcicN/b2384086a4.png\n*STEEM/BTC volume Poloniex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png\n*STEEM indexed global volume Sept 14, 2016*\n\nhttp://puu.sh/rcibB/7b2700dd82.png\n*STEEM indexed global volume Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmof/8ca7889618.png\n*Coinmarketcap top volume cryptos Sept 14, 2016*\n\nhttp://puu.sh/rci8K/d68b7eb122.png\n*Coinmarketcap top volume cryptos Sept 15, 2016*\nOverall volume about 12% higher then yesterday, with Bittrex volume taking a dive and Poloniex gaining some.\n$STEEM again under top 30 in volume rankings.\n\n*COMMENT*\nOnce again, I will post the comment by commenting as it involves my personal opinion!\nThank you for understanding!\n\nIf anyone has any questions or need's help fell free to ask, I will try to explain as fast and as best as I can.\nCritics, comments, reply's, counters, advice's, etc. are always welcome!\nHave my charts helped you in any way?Let me know with a comment below :)\nAre there more people who are doing TA?\nPlease post the links to your TA's posts into the comments as well!\n\n*DISCLAIMER*\nI am showing multiple scenarios on the price movement, in the post itself I do not take any stance, either bullish or bearish. I am not responsible for neither you\u2019re winning nor you're losses upon trading! the \"comment\" section is my personal opinion and does not mean I have to or do hold any positions in the given market.\nEveryone who uses TA develops his own unique charting style, please keep that in mind.\n\nhttps://www.youtube.com/watch?v=i3bS5nRZOvU\n\nKind regards, OZ :)", + "body_length": 3079, + "cashout_time": "2016-09-22T18:18:00", + "category": "steem", + "children": 5, + "created": "2016-09-15T18:18:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"steem\",\"poloniex\",\"bittrex\",\"technical-analysis\",\"trading\"],\"image\":[\"https://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png\",\"http://puu.sh/rciwF/1b96b56dcc.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png\",\"http://puu.sh/rciC9/edf3dcb758.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png\",\"http://puu.sh/rciod/ce32f1a029.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png\",\"http://puu.sh/rcifG/0c61511ea3.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png\",\"http://puu.sh/rcicN/b2384086a4.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png\",\"http://puu.sh/rcibB/7b2700dd82.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png\",\"http://puu.sh/rci8K/d68b7eb122.png\",\"https://img.youtube.com/vi/i3bS5nRZOvU/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=i3bS5nRZOvU\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T18:18:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 30268799563538, + "parent_author": "", + "parent_permlink": "steem", + "pending_payout_value": "57.040 HBD", + "percent_hbd": 10000, + "permlink": "usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", + "post_id": 1256962, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle\u2019s left empty\" Sept 15, 2016", + "title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle\u2019s left empty\" Sept 15, 2016", + "total_payout_value": "0.000 HBD", + "url": "/steem/@ozchartart/usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json index 7fba8e0e..19ebc0d2 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json @@ -1,2590 +1,2590 @@ [ - { - "active_votes": [ - { - "percent": "-10000", - "reputation": 0, - "rshares": "-28338941273774", - "voter": "dantheman" - }, - { - "percent": "-10000", - "reputation": 0, - "rshares": "-56560374008", - "voter": "fminerten1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "515865522774", - "voter": "panadacoin" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "591238736691", - "voter": "barrie" - }, - { - "percent": "-10000", - "reputation": 0, - "rshares": "-31244889730986", - "voter": "smooth" - }, - { - "percent": "-10000", - "reputation": 0, - "rshares": "-25869425303440", - "voter": "berniesanders" - }, - { - "percent": "8900", - "reputation": 0, - "rshares": "56923627230317", - "voter": "ned" - }, - { - "percent": "-4000", - "reputation": 0, - "rshares": "-61162327823", - "voter": "highasfuck" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5861402538757", - "voter": "riverhead" - }, - { - "percent": "3500", - "reputation": 0, - "rshares": "2012701974707", - "voter": "kushed" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1105925638130", - "voter": "ihashfury" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1595196737607", - "voter": "rossco99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "986803208166", - "voter": "liondani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5034399699326", - "voter": "steemit200" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3103422054", - "voter": "boy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3767892961", - "voter": "bue-witness" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "690943799", - "voter": "bunny" - }, - { - "percent": "4900", - "reputation": 0, - "rshares": "3573913851034", - "voter": "complexring" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "6282474172783", - "voter": "clayop" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54717838235", - "voter": "bue" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1662987228", - "voter": "mini" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "213785292", - "voter": "moon" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "209038160029", - "voter": "alex90342fastn1" - }, - { - "percent": "1000", - "reputation": 0, - "rshares": "7692488765", - "voter": "aizensou" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3455872549975", - "voter": "au1nethyb1" - }, - { - "percent": "5000", - "reputation": 0, - "rshares": "6781848343", - "voter": "bentley" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1387859952", - "voter": "mineralwasser" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "106098683047", - "voter": "bonapartist" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "855490468340", - "voter": "boombastic" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "115524100455", - "voter": "mrs.agsexplorer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "8261386990", - "voter": "bingo-0" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2104057003", - "voter": "bingo-1" - }, - { - "percent": "-10000", - "reputation": 0, - "rshares": "-5694232013608", - "voter": "smooth.witness" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "988597560715", - "voter": "benjojo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "564763376378", - "voter": "boatymcboatface" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "168058097416", - "voter": "pairmike" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "61457593326", - "voter": "vip" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "29414306405", - "voter": "proctologic" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "624912728", - "voter": "healthcare" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "902943814", - "voter": "stoner19" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "971397151", - "voter": "daniel.pan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "400674324536", - "voter": "woo7739" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "821205239311", - "voter": "steemrollin" - }, - { - "percent": "1000", - "reputation": 0, - "rshares": "16122243298", - "voter": "team" - }, - { - "percent": "2100", - "reputation": 0, - "rshares": "68140066479", - "voter": "chitty" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "335329901210", - "voter": "lighthil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "288337653", - "voter": "helen.tan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "84761882611", - "voter": "unosuke" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "221378412917", - "voter": "noaommerrr" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "156355134109", - "voter": "vitaly-lvov" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "125237012083", - "voter": "edgeland" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "384189354393", - "voter": "craig-grant" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "78953157492", - "voter": "easteagle13" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "24177692381", - "voter": "mod-tamichh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "47071100260", - "voter": "cyan91" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "182161233136", - "voter": "samuel-stone" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "27507445535", - "voter": "full-measure" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "15043635029", - "voter": "jademont" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1091318863571", - "voter": "gavvet" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3913661416", - "voter": "hbhades" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "537679658162", - "voter": "eeks" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "477297643", - "voter": "paco-steem" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "19875326051", - "voter": "hipster" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5373300397", - "voter": "spaninv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "31632644129", - "voter": "james-show" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2191644256", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1709548184767", - "voter": "cryptoctopus" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "292403125620", - "voter": "pal" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "91790166084", - "voter": "william-noe" - }, - { - "percent": "5000", - "reputation": 0, - "rshares": "6782998784", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "134023949190", - "voter": "steve-walschot" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "32871946754", - "voter": "dan-atstarlite" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "490595494", - "voter": "coar" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "67870898638", - "voter": "asch" - }, - { - "percent": "5000", - "reputation": 0, - "rshares": "286727574871", - "voter": "kevinwong" - }, - { - "percent": "3301", - "reputation": 0, - "rshares": "1425998946", - "voter": "murh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1703165248", - "voter": "brian-lukassen" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7184649989", - "voter": "cryptofunk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "584817224", - "voter": "kodi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "79084857477", - "voter": "theshell" - }, - { - "percent": "3000", - "reputation": 0, - "rshares": "22641839395", - "voter": "thecryptofiend" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51307800519", - "voter": "justtryme90" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5388661415", - "voter": "zebbra2014" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3915776982262", - "voter": "satoshifund" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "403407002721", - "voter": "taoteh1221" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "426836364", - "voter": "applecrisp" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "372600185", - "voter": "stiletto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "147474797358", - "voter": "killerstorm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "370486042445", - "voter": "hedge-x" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "6226063990", - "voter": "hisnameisolllie" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "4666893911", - "voter": "wingz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53642020280", - "voter": "juanmiguelsalas" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "112536244257", - "voter": "kenny-crane" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18290477525", - "voter": "samether" - }, - { - "percent": "3000", - "reputation": 0, - "rshares": "20435826971", - "voter": "ratel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4477973596", - "voter": "dahaz159" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13353893819", - "voter": "facer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "19195451431", - "voter": "ziv" - }, - { - "percent": "-10000", - "reputation": 0, - "rshares": "-37886485933", - "voter": "cheftony" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "814177904", - "voter": "proglobyte" - }, - { - "percent": "7500", - "reputation": 0, - "rshares": "6651057809", - "voter": "grandpere" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "187723859372", - "voter": "mexbit" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5901731263", - "voter": "mark-waser" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "13475779704", - "voter": "publicworker" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "106662592446", - "voter": "geoffrey" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "46106881411", - "voter": "honeythief" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2879418324", - "voter": "mammasitta" - }, - { - "percent": "5000", - "reputation": 0, - "rshares": "22456450828", - "voter": "marco-delsalto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "6740408834", - "voter": "tyler-fletcher" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "90461089451", - "voter": "mctiller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "70695307715", - "voter": "freedomengineer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14764907307", - "voter": "magnebit" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "73424982025", - "voter": "razvanelulmarin" - }, - { - "percent": "900", - "reputation": 0, - "rshares": "4332771254", - "voter": "treeshaface" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "17687843258", - "voter": "frankjones" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18766219906", - "voter": "skapaneas" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5157854283", - "voter": "micheletrainer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "17552893571", - "voter": "grey580" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "283436852", - "voter": "ladyclair" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "288748933789", - "voter": "ericvancewalton" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52215058764", - "voter": "booja" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "331004446932", - "voter": "roelandp" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4775693686", - "voter": "dennygalindo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "62198582831", - "voter": "lehard" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "249608253", - "voter": "ivp" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "86432384761", - "voter": "rubybian" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3299480410", - "voter": "orly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "254364900", - "voter": "mstang83" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "22617124650", - "voter": "katyakov" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "122156869592", - "voter": "robrigo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48022035978", - "voter": "menta" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "977288096", - "voter": "lontong" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "135562023252", - "voter": "chhayll" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13300237653", - "voter": "r4fken" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "124913925653", - "voter": "derekareith" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "26683327851", - "voter": "picokernel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2707813985", - "voter": "wintrop" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "514388137239", - "voter": "neoxian" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "25581639649", - "voter": "strangerarray" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1344524912605", - "voter": "renohq" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "155010079441", - "voter": "knircky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5523230874", - "voter": "on0tole" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "71594122778", - "voter": "sigmajin" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "16832656768", - "voter": "ausbitbank" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "42564757970", - "voter": "mrwang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1268462097", - "voter": "mixa" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "8279675078", - "voter": "autosmile13" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40069670306", - "voter": "wesam" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1632266140", - "voter": "steem1653" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "55667692", - "voter": "cynetyc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4524453413", - "voter": "gikitiki" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4046708005", - "voter": "steemit-life" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4687463894", - "voter": "thegoodguy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40136504296", - "voter": "biophil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3759809896", - "voter": "karen13" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2630980347", - "voter": "jbouchard12" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "27635550326", - "voter": "dwinblood" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "24959867898", - "voter": "igster" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10845979381", - "voter": "deviedev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "228465690", - "voter": "zoicneo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "296045327034", - "voter": "nabilov" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "79351054414", - "voter": "ntomaino" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13957994657", - "voter": "meesterboom" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12385010041", - "voter": "domavila" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "400742354", - "voter": "karenmckersie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "484888225", - "voter": "luisucv34" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5747716426", - "voter": "krystle" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "75001817111", - "voter": "inertia" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "44353154247", - "voter": "yongyoon" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7146190847", - "voter": "lichtblick" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9028095567", - "voter": "warrensteem" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3710621464", - "voter": "maximkichev" - }, - { - "percent": "1000", - "reputation": 0, - "rshares": "5254853525", - "voter": "sbq777t" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13560062590", - "voter": "nippel66" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3175676972", - "voter": "imp3" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2552560220", - "voter": "sgnsteems" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "189609178496", - "voter": "blueorgy" - }, - { - "percent": "1400", - "reputation": 0, - "rshares": "4380569189", - "voter": "wadepaterson" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "296100567501", - "voter": "calaber24p" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "20078314404", - "voter": "mustafaomar" - }, - { - "percent": "4900", - "reputation": 0, - "rshares": "7161559782", - "voter": "all-of-us" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "8247905495", - "voter": "magz8716" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18706560189", - "voter": "bendjmiller222" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4078813249", - "voter": "tarindel" - }, - { - "percent": "5000", - "reputation": 0, - "rshares": "13966407599", - "voter": "beowulfoflegend" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23276095473", - "voter": "deanliu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5317355087", - "voter": "rainchen" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9242725695", - "voter": "oumar" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5575772867", - "voter": "sharker" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "182819821534", - "voter": "jl777" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1103176661", - "voter": "oecp85" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "977888223951", - "voter": "james212" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "818040957", - "voter": "flyboyzombie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "39295777834", - "voter": "zaebars" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1428031362", - "voter": "alekst" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1782690382", - "voter": "yarly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "125979055", - "voter": "kottai" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "269576627", - "voter": "yarly2" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "269980297", - "voter": "yarly3" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "156093986", - "voter": "yarly4" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "156975275", - "voter": "yarly5" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "89476508", - "voter": "yarly7" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56769328536", - "voter": "arcurus" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "115403915", - "voter": "charbelnamm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9802713874", - "voter": "alsprinting" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4554249461", - "voter": "gustavopasquini" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10450628476", - "voter": "moon32walker" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "25772328103", - "voter": "marius19" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13637653306", - "voter": "lemooljiang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "15826604583", - "voter": "winstonwolfe" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "455136533", - "voter": "kooshikoo" - }, - { - "percent": "2300", - "reputation": 0, - "rshares": "8541510354", - "voter": "fatboy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "15580395475", - "voter": "proto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "639099484", - "voter": "curator" - }, - { - "percent": "8200", - "reputation": 0, - "rshares": "2410557662", - "voter": "ace108" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "432302630", - "voter": "yarly10" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1634018670", - "voter": "alex.chien" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "231618512", - "voter": "yarly11" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13498521499", - "voter": "michaeldodridge" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "81028161", - "voter": "yarly12" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1713978326", - "voter": "remlaps" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "165045645", - "voter": "beanz" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "273280899", - "voter": "clevecross" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "31769283842", - "voter": "smailer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "149502446", - "voter": "steemster1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4564708091", - "voter": "sulev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2873988066", - "voter": "dmilash" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3459421629", - "voter": "carlas10" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1493719735", - "voter": "spinner" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4189235490", - "voter": "glitterpig" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7874311492", - "voter": "taker" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "689524426", - "voter": "pakisnxt" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5394692942", - "voter": "theprophet0" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4481547788", - "voter": "theprophet" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "61911147", - "voter": "sharon" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7265644466", - "voter": "dumar022" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "61700262", - "voter": "lillianjones" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "46418159604", - "voter": "capitalism" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "588460890536", - "voter": "toxic" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "8609049381", - "voter": "darknet" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14224054622", - "voter": "gmurph" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "655589667", - "voter": "xtester" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2090553241", - "voter": "achim86" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4256758523", - "voter": "ullikume" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "8452120116", - "voter": "kurtbeil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "60138244071", - "voter": "poteshnik83" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99476907271", - "voter": "thisisbenbrick" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "392193612", - "voter": "wiser" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "112411845286", - "voter": "terrycraft" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1348324437", - "voter": "dolov" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "21004018124", - "voter": "jphamer1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "11270713350", - "voter": "ekitcho" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "150794650", - "voter": "bigsambucca" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "83986507131", - "voter": "joele" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5527031256", - "voter": "oflyhigh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57523014", - "voter": "nickche" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2512217855", - "voter": "kainmarx" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "493960660", - "voter": "future24" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "63555792", - "voter": "msjennifer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58453204", - "voter": "ciao" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3015124995", - "voter": "villainblack" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3439786891", - "voter": "cmorton" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "219039434", - "voter": "xcepta" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "748990287", - "voter": "jrcornel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57914427", - "voter": "steemo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "19865005311", - "voter": "hanshotfirst" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56535984", - "voter": "steema" - }, - { - "percent": "3000", - "reputation": 0, - "rshares": "5769564425", - "voter": "highlite" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "73061236", - "voter": "evgenyche" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "65927774", - "voter": "bhavnapatel68" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "71228043", - "voter": "confucius" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "28924632850", - "voter": "mrosenquist" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "74898697", - "voter": "elenirossidou" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58639072", - "voter": "jarvis" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "102741069", - "voter": "lisadang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "78765183", - "voter": "razberrijam" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10750764390", - "voter": "matrixdweller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56726999", - "voter": "fortuner" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2816953736", - "voter": "virtualgrowth" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "1399636656", - "voter": "anotherjoe" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59750246", - "voter": "saveliy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5927843564", - "voter": "solarguy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "890579467", - "voter": "crazycow" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3977281078", - "voter": "lamech-m" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9470181501", - "voter": "mrgrey" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "382699085", - "voter": "crezyliza" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12003456501", - "voter": "gvargas123" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "55399493", - "voter": "johnbyrd" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56575537", - "voter": "thomasaustin" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "55394920", - "voter": "thermor" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56570509", - "voter": "ficholl" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "55387660", - "voter": "widell" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10109582992", - "voter": "elissahawke" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "88078809749", - "voter": "icfiedler" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "192287988", - "voter": "steevc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1592064374", - "voter": "movievertigo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54991366", - "voter": "revelbrooks" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23660021285", - "voter": "andrewawerdna" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5932358367", - "voter": "trev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48131519933", - "voter": "dragonanarchist" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "79979619", - "voter": "joelbow" - }, - { - "percent": "5000", - "reputation": 0, - "rshares": "4001380728", - "voter": "sethlinson" - }, - { - "percent": "1000", - "reputation": 0, - "rshares": "2391702679", - "voter": "hilarski" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "101945845", - "voter": "slorunner" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1679360131", - "voter": "imag1ne" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58631508", - "voter": "pacino" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57412782", - "voter": "drsamkhan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54999739", - "voter": "curpose" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "103040256", - "voter": "adrevel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "61202458", - "voter": "steembriefing" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2894276750", - "voter": "fat-like-buddha" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "64070582", - "voter": "iosif" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1559083086", - "voter": "ines-f" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1893166639", - "voter": "cryptoeasy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9771811576", - "voter": "etcmike" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4912386907", - "voter": "ats-david" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "947456313", - "voter": "runridefly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "69985187", - "voter": "stephenkendal" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "80557869", - "voter": "jlufer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2475119042", - "voter": "contentjunkie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99564797338", - "voter": "shenanigator" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7076299362", - "voter": "daveks" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "61715783", - "voter": "uziriel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3325599818", - "voter": "funkywanderer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "11968284833", - "voter": "ryan-singer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53961187", - "voter": "troich" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56665974", - "voter": "viktorriver" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7018683565", - "voter": "mdoolsky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3103345545", - "voter": "xanoxt" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1652709870", - "voter": "davidjkelley" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "6919572472", - "voter": "davidbrogan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53966805", - "voter": "crion" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53622549", - "voter": "hitherise" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54730557", - "voter": "wiss" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12191050487", - "voter": "ghasemkiani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "15497139800", - "voter": "digital-wisdom" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3938044420", - "voter": "ethical-ai" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54362089", - "voter": "stroully" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2032879970", - "voter": "matthewtiii" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5655677010", - "voter": "jwaser" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54019345", - "voter": "thadm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54017499", - "voter": "prof" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56837113", - "voter": "blogx" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "55043079", - "voter": "zettar" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "17788079417", - "voter": "hunterisgreat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1089484775", - "voter": "smisi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53640464", - "voter": "yorsens" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "85546636", - "voter": "the-ego-is-you" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53331040", - "voter": "bane" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "537067064", - "voter": "winglessss" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53324520", - "voter": "vive" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53318865", - "voter": "coad" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "287913287", - "voter": "totosky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1697516350", - "voter": "baodog" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2664939129", - "voter": "bwaser" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52988378", - "voter": "sofa" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "732461217", - "voter": "ct-gurus" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "220578638", - "voter": "mamo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1706277109", - "voter": "ibringawareness" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "860146710", - "voter": "kingarbinv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53039974", - "voter": "ailo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4841952237", - "voter": "burnin" - }, - { - "percent": "3300", - "reputation": 0, - "rshares": "558512952", - "voter": "bitcoinparadise" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "206212756", - "voter": "ballinconscious" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4652459969", - "voter": "gringalicious" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2770826537", - "voter": "steempowerwhale" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1336513482", - "voter": "rigaronib" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "390796425", - "voter": "echoesinthemind" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "357202147", - "voter": "soldier" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "55826263", - "voter": "nelyp" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2339486479", - "voter": "ellepdub" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50852949", - "voter": "gregorygarcia" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9400577403", - "voter": "herpetologyguy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51470533", - "voter": "eavy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51468937", - "voter": "roto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "70358845", - "voter": "ancientofdays" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52648858", - "voter": "psyduck" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "330163263", - "voter": "robotev1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4796038584", - "voter": "morgan.waser" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "147415673", - "voter": "flowergirl" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51141851", - "voter": "slow" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "101153586", - "voter": "anns" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1693077690", - "voter": "nil1511" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "846735133", - "voter": "greenwayoflife" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50798322", - "voter": "breeze" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50796122", - "voter": "factom" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50794039", - "voter": "autodesk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50708837", - "voter": "ardly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50704078", - "voter": "yotoh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50570250", - "voter": "ziggo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50482289", - "voter": "connection" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50433760", - "voter": "morse" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50317220", - "voter": "piphunters" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1824788165", - "voter": "cwbrooch" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1161216291", - "voter": "ayim" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3675242983", - "voter": "strong-ai" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "346259703", - "voter": "julia26" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "488963228", - "voter": "grisha-danunaher" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "696884040", - "voter": "ziogio" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "77637243", - "voter": "igtes" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "80800689", - "voter": "timalex" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "79083956", - "voter": "silverbackjonz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23984282056", - "voter": "abdullar" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1204472546", - "voter": "expedition" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "157643687", - "voter": "buffett" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "162128433", - "voter": "cebymaster" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "143818142", - "voter": "eunnykim" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "162785391", - "voter": "olga4ka" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1065182434", - "voter": "rusteemitblog" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "161974443", - "voter": "zapply" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "158642800", - "voter": "ranger" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "282877474", - "voter": "witchcraftblog" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "975048251", - "voter": "nikomah" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "161212160", - "voter": "origin" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "161205518", - "voter": "acute" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "160973134", - "voter": "gravity" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "157801695", - "voter": "realtime" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "157654556", - "voter": "pawel-krawczyk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "125721183", - "voter": "rubenkusters" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "160269480", - "voter": "adpipop" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "103667189", - "voter": "charli" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "147606365", - "voter": "laskovskiy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "65836326", - "voter": "serikus" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "147145004", - "voter": "fer32p" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "159524423", - "voter": "radent" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "125821091", - "voter": "jasonxg" - } - ], - "author": "ned", - "author_reputation": 0, - "beneficiaries": [], - "body": "https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\n\n# Over the last few weeks I've been thinking about ways we could increase the demand for Steem Power, the quality of curated content and the incentives to participate as a Steem curator.\n\nHere are a couple ideas I have been kicking around. They're not fully mature and could use a good rinsing by the community.\n\n## Allow Steem holders to delegate their Steem Power voting rights to a **voting pool**\n\nA delegated voting pool could socialize voting power and individualize rewards. One prime use for this could be the @steemit account. @steemit could create a voting pool and invite anyone with a verified identity and good reputation to join the pool as a curator. This could increase the number of unique curators, help bootstrap Steem as an identity database and give people even more incentives to sign up.\n\nTo show the numbers, an example would be Alice Bob and Charley each delegate their SP of 2, 3, and 7 to one voting pool. Now they each have 4, 4, and 4 SP to be used to curate. Better curation would earn them more curation rewards. \n\nA side effect of delegated voting pools could be voting markets. Any user would have the power to create a voting pool and these users could charge curators for participation. Some of the platform's whales could be interested in offering subscription models to minnows as a way to get more voting influence.\n\n## If powering down stake loses voting influence\n\nImagine that any stake being powered down would lose its rights to use voting influence. This could make the system very clear in the regard that stake is either in or it is out. Users could be able to choose any % of their stake to power down regardless of how many accounts they have and only the % stake that is powering down would lose voting influence. Stopping a power down could return all voting rights.\n\nPerhaps the effect of this could be 1/ more interest to stay in the platform and 2/ more fluidity in the witness queue 3/ more fairness regarding the PoS nature of Steem 4/ more clarity from participants looking to exit the system\n\n## Combined effect?\nPerhaps these proposals could have a combined effect that increases the demand and fluidity of Steem Power while improving the curated experience for people visiting Steem based websites.\n\n#### What are your thoughts and questions?", - "body_length": 2399, - "cashout_time": "2016-10-09T02:14:24", - "category": "steem", - "children": 315, - "created": "2016-09-07T15:44:51", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https:\\/\\/www.biznessapps.com\\/blog\\/wp-content\\/uploads\\/2013\\/12\\/shutterstock_148639682.png\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-07T15:50:51", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 21098346399884, - "parent_author": "", - "parent_permlink": "steem", - "pending_payout_value": "47.461 HBD", - "percent_steem_dollars": 10000, - "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", - "post_id": 882849, - "promoted": "500.000 HBD", - "replies": [], - "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction", - "title": "Increasing Curation, Demand for Steem Power and Community Interaction", - "total_payout_value": "0.000 HBD", - "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction" - } -] \ No newline at end of file + { + "active_votes": [ + { + "percent": "-10000", + "reputation": 0, + "rshares": "-28338941273774", + "voter": "dantheman" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-56560374008", + "voter": "fminerten1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "515865522774", + "voter": "panadacoin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "591238736691", + "voter": "barrie" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-31244889730986", + "voter": "smooth" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-25869425303440", + "voter": "berniesanders" + }, + { + "percent": "8900", + "reputation": 0, + "rshares": "56923627230317", + "voter": "ned" + }, + { + "percent": "-4000", + "reputation": 0, + "rshares": "-61162327823", + "voter": "highasfuck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5861402538757", + "voter": "riverhead" + }, + { + "percent": "3500", + "reputation": 0, + "rshares": "2012701974707", + "voter": "kushed" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1105925638130", + "voter": "ihashfury" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1595196737607", + "voter": "rossco99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "986803208166", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5034399699326", + "voter": "steemit200" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3103422054", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3767892961", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "690943799", + "voter": "bunny" + }, + { + "percent": "4900", + "reputation": 0, + "rshares": "3573913851034", + "voter": "complexring" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6282474172783", + "voter": "clayop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54717838235", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1662987228", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213785292", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "209038160029", + "voter": "alex90342fastn1" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "7692488765", + "voter": "aizensou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3455872549975", + "voter": "au1nethyb1" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "6781848343", + "voter": "bentley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1387859952", + "voter": "mineralwasser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106098683047", + "voter": "bonapartist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "855490468340", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115524100455", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8261386990", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2104057003", + "voter": "bingo-1" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-5694232013608", + "voter": "smooth.witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "988597560715", + "voter": "benjojo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "564763376378", + "voter": "boatymcboatface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "168058097416", + "voter": "pairmike" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61457593326", + "voter": "vip" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "29414306405", + "voter": "proctologic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "624912728", + "voter": "healthcare" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "902943814", + "voter": "stoner19" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "971397151", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "400674324536", + "voter": "woo7739" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "821205239311", + "voter": "steemrollin" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "16122243298", + "voter": "team" + }, + { + "percent": "2100", + "reputation": 0, + "rshares": "68140066479", + "voter": "chitty" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "335329901210", + "voter": "lighthil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "288337653", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "84761882611", + "voter": "unosuke" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "221378412917", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156355134109", + "voter": "vitaly-lvov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125237012083", + "voter": "edgeland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "384189354393", + "voter": "craig-grant" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "78953157492", + "voter": "easteagle13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24177692381", + "voter": "mod-tamichh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47071100260", + "voter": "cyan91" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "182161233136", + "voter": "samuel-stone" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27507445535", + "voter": "full-measure" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15043635029", + "voter": "jademont" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1091318863571", + "voter": "gavvet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3913661416", + "voter": "hbhades" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "537679658162", + "voter": "eeks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "477297643", + "voter": "paco-steem" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "19875326051", + "voter": "hipster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5373300397", + "voter": "spaninv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31632644129", + "voter": "james-show" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2191644256", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1709548184767", + "voter": "cryptoctopus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "292403125620", + "voter": "pal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "91790166084", + "voter": "william-noe" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "6782998784", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "134023949190", + "voter": "steve-walschot" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32871946754", + "voter": "dan-atstarlite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "490595494", + "voter": "coar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "67870898638", + "voter": "asch" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "286727574871", + "voter": "kevinwong" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1425998946", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1703165248", + "voter": "brian-lukassen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7184649989", + "voter": "cryptofunk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "584817224", + "voter": "kodi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79084857477", + "voter": "theshell" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "22641839395", + "voter": "thecryptofiend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51307800519", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5388661415", + "voter": "zebbra2014" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3915776982262", + "voter": "satoshifund" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "403407002721", + "voter": "taoteh1221" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "426836364", + "voter": "applecrisp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "372600185", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147474797358", + "voter": "killerstorm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "370486042445", + "voter": "hedge-x" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "6226063990", + "voter": "hisnameisolllie" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "4666893911", + "voter": "wingz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53642020280", + "voter": "juanmiguelsalas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112536244257", + "voter": "kenny-crane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18290477525", + "voter": "samether" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "20435826971", + "voter": "ratel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4477973596", + "voter": "dahaz159" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13353893819", + "voter": "facer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19195451431", + "voter": "ziv" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-37886485933", + "voter": "cheftony" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "814177904", + "voter": "proglobyte" + }, + { + "percent": "7500", + "reputation": 0, + "rshares": "6651057809", + "voter": "grandpere" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "187723859372", + "voter": "mexbit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5901731263", + "voter": "mark-waser" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "13475779704", + "voter": "publicworker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106662592446", + "voter": "geoffrey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46106881411", + "voter": "honeythief" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2879418324", + "voter": "mammasitta" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "22456450828", + "voter": "marco-delsalto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6740408834", + "voter": "tyler-fletcher" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "90461089451", + "voter": "mctiller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "70695307715", + "voter": "freedomengineer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14764907307", + "voter": "magnebit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73424982025", + "voter": "razvanelulmarin" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "4332771254", + "voter": "treeshaface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17687843258", + "voter": "frankjones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18766219906", + "voter": "skapaneas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5157854283", + "voter": "micheletrainer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17552893571", + "voter": "grey580" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "283436852", + "voter": "ladyclair" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "288748933789", + "voter": "ericvancewalton" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52215058764", + "voter": "booja" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "331004446932", + "voter": "roelandp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4775693686", + "voter": "dennygalindo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62198582831", + "voter": "lehard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "249608253", + "voter": "ivp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "86432384761", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3299480410", + "voter": "orly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "254364900", + "voter": "mstang83" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22617124650", + "voter": "katyakov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "122156869592", + "voter": "robrigo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48022035978", + "voter": "menta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "977288096", + "voter": "lontong" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "135562023252", + "voter": "chhayll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13300237653", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "124913925653", + "voter": "derekareith" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "26683327851", + "voter": "picokernel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2707813985", + "voter": "wintrop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "514388137239", + "voter": "neoxian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25581639649", + "voter": "strangerarray" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1344524912605", + "voter": "renohq" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155010079441", + "voter": "knircky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5523230874", + "voter": "on0tole" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71594122778", + "voter": "sigmajin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16832656768", + "voter": "ausbitbank" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42564757970", + "voter": "mrwang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1268462097", + "voter": "mixa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8279675078", + "voter": "autosmile13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40069670306", + "voter": "wesam" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1632266140", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55667692", + "voter": "cynetyc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4524453413", + "voter": "gikitiki" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4046708005", + "voter": "steemit-life" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4687463894", + "voter": "thegoodguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40136504296", + "voter": "biophil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3759809896", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2630980347", + "voter": "jbouchard12" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27635550326", + "voter": "dwinblood" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24959867898", + "voter": "igster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10845979381", + "voter": "deviedev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "228465690", + "voter": "zoicneo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "296045327034", + "voter": "nabilov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79351054414", + "voter": "ntomaino" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13957994657", + "voter": "meesterboom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12385010041", + "voter": "domavila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "400742354", + "voter": "karenmckersie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "484888225", + "voter": "luisucv34" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5747716426", + "voter": "krystle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75001817111", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44353154247", + "voter": "yongyoon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7146190847", + "voter": "lichtblick" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9028095567", + "voter": "warrensteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3710621464", + "voter": "maximkichev" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "5254853525", + "voter": "sbq777t" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13560062590", + "voter": "nippel66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3175676972", + "voter": "imp3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2552560220", + "voter": "sgnsteems" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "189609178496", + "voter": "blueorgy" + }, + { + "percent": "1400", + "reputation": 0, + "rshares": "4380569189", + "voter": "wadepaterson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "296100567501", + "voter": "calaber24p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20078314404", + "voter": "mustafaomar" + }, + { + "percent": "4900", + "reputation": 0, + "rshares": "7161559782", + "voter": "all-of-us" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8247905495", + "voter": "magz8716" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18706560189", + "voter": "bendjmiller222" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4078813249", + "voter": "tarindel" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "13966407599", + "voter": "beowulfoflegend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23276095473", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5317355087", + "voter": "rainchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9242725695", + "voter": "oumar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5575772867", + "voter": "sharker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "182819821534", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1103176661", + "voter": "oecp85" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "977888223951", + "voter": "james212" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "818040957", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39295777834", + "voter": "zaebars" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1428031362", + "voter": "alekst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1782690382", + "voter": "yarly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125979055", + "voter": "kottai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "269576627", + "voter": "yarly2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "269980297", + "voter": "yarly3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156093986", + "voter": "yarly4" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156975275", + "voter": "yarly5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "89476508", + "voter": "yarly7" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56769328536", + "voter": "arcurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115403915", + "voter": "charbelnamm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9802713874", + "voter": "alsprinting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4554249461", + "voter": "gustavopasquini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10450628476", + "voter": "moon32walker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25772328103", + "voter": "marius19" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13637653306", + "voter": "lemooljiang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15826604583", + "voter": "winstonwolfe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "455136533", + "voter": "kooshikoo" + }, + { + "percent": "2300", + "reputation": 0, + "rshares": "8541510354", + "voter": "fatboy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15580395475", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "639099484", + "voter": "curator" + }, + { + "percent": "8200", + "reputation": 0, + "rshares": "2410557662", + "voter": "ace108" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "432302630", + "voter": "yarly10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1634018670", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "231618512", + "voter": "yarly11" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13498521499", + "voter": "michaeldodridge" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81028161", + "voter": "yarly12" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1713978326", + "voter": "remlaps" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "165045645", + "voter": "beanz" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "273280899", + "voter": "clevecross" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31769283842", + "voter": "smailer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "149502446", + "voter": "steemster1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4564708091", + "voter": "sulev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2873988066", + "voter": "dmilash" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3459421629", + "voter": "carlas10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1493719735", + "voter": "spinner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4189235490", + "voter": "glitterpig" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7874311492", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "689524426", + "voter": "pakisnxt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5394692942", + "voter": "theprophet0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4481547788", + "voter": "theprophet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61911147", + "voter": "sharon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7265644466", + "voter": "dumar022" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61700262", + "voter": "lillianjones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46418159604", + "voter": "capitalism" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "588460890536", + "voter": "toxic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8609049381", + "voter": "darknet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14224054622", + "voter": "gmurph" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "655589667", + "voter": "xtester" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2090553241", + "voter": "achim86" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4256758523", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8452120116", + "voter": "kurtbeil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60138244071", + "voter": "poteshnik83" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99476907271", + "voter": "thisisbenbrick" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392193612", + "voter": "wiser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112411845286", + "voter": "terrycraft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1348324437", + "voter": "dolov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21004018124", + "voter": "jphamer1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11270713350", + "voter": "ekitcho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "150794650", + "voter": "bigsambucca" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "83986507131", + "voter": "joele" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5527031256", + "voter": "oflyhigh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57523014", + "voter": "nickche" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2512217855", + "voter": "kainmarx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "493960660", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63555792", + "voter": "msjennifer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58453204", + "voter": "ciao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3015124995", + "voter": "villainblack" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3439786891", + "voter": "cmorton" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "219039434", + "voter": "xcepta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "748990287", + "voter": "jrcornel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57914427", + "voter": "steemo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19865005311", + "voter": "hanshotfirst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56535984", + "voter": "steema" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "5769564425", + "voter": "highlite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73061236", + "voter": "evgenyche" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "65927774", + "voter": "bhavnapatel68" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71228043", + "voter": "confucius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28924632850", + "voter": "mrosenquist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "74898697", + "voter": "elenirossidou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58639072", + "voter": "jarvis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "102741069", + "voter": "lisadang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "78765183", + "voter": "razberrijam" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10750764390", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56726999", + "voter": "fortuner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2816953736", + "voter": "virtualgrowth" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1399636656", + "voter": "anotherjoe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59750246", + "voter": "saveliy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5927843564", + "voter": "solarguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "890579467", + "voter": "crazycow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3977281078", + "voter": "lamech-m" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9470181501", + "voter": "mrgrey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "382699085", + "voter": "crezyliza" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12003456501", + "voter": "gvargas123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55399493", + "voter": "johnbyrd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56575537", + "voter": "thomasaustin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55394920", + "voter": "thermor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56570509", + "voter": "ficholl" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55387660", + "voter": "widell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10109582992", + "voter": "elissahawke" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88078809749", + "voter": "icfiedler" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "192287988", + "voter": "steevc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1592064374", + "voter": "movievertigo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54991366", + "voter": "revelbrooks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23660021285", + "voter": "andrewawerdna" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5932358367", + "voter": "trev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48131519933", + "voter": "dragonanarchist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79979619", + "voter": "joelbow" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "4001380728", + "voter": "sethlinson" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2391702679", + "voter": "hilarski" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "101945845", + "voter": "slorunner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1679360131", + "voter": "imag1ne" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58631508", + "voter": "pacino" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57412782", + "voter": "drsamkhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54999739", + "voter": "curpose" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103040256", + "voter": "adrevel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61202458", + "voter": "steembriefing" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2894276750", + "voter": "fat-like-buddha" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64070582", + "voter": "iosif" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1559083086", + "voter": "ines-f" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1893166639", + "voter": "cryptoeasy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9771811576", + "voter": "etcmike" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4912386907", + "voter": "ats-david" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "947456313", + "voter": "runridefly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "69985187", + "voter": "stephenkendal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "80557869", + "voter": "jlufer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2475119042", + "voter": "contentjunkie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99564797338", + "voter": "shenanigator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7076299362", + "voter": "daveks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61715783", + "voter": "uziriel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3325599818", + "voter": "funkywanderer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11968284833", + "voter": "ryan-singer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53961187", + "voter": "troich" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56665974", + "voter": "viktorriver" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7018683565", + "voter": "mdoolsky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3103345545", + "voter": "xanoxt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1652709870", + "voter": "davidjkelley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6919572472", + "voter": "davidbrogan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53966805", + "voter": "crion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53622549", + "voter": "hitherise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54730557", + "voter": "wiss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12191050487", + "voter": "ghasemkiani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15497139800", + "voter": "digital-wisdom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3938044420", + "voter": "ethical-ai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54362089", + "voter": "stroully" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2032879970", + "voter": "matthewtiii" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5655677010", + "voter": "jwaser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54019345", + "voter": "thadm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017499", + "voter": "prof" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56837113", + "voter": "blogx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55043079", + "voter": "zettar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17788079417", + "voter": "hunterisgreat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1089484775", + "voter": "smisi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53640464", + "voter": "yorsens" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "85546636", + "voter": "the-ego-is-you" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53331040", + "voter": "bane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "537067064", + "voter": "winglessss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53324520", + "voter": "vive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53318865", + "voter": "coad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287913287", + "voter": "totosky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1697516350", + "voter": "baodog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2664939129", + "voter": "bwaser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52988378", + "voter": "sofa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "732461217", + "voter": "ct-gurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "220578638", + "voter": "mamo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1706277109", + "voter": "ibringawareness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "860146710", + "voter": "kingarbinv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53039974", + "voter": "ailo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4841952237", + "voter": "burnin" + }, + { + "percent": "3300", + "reputation": 0, + "rshares": "558512952", + "voter": "bitcoinparadise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "206212756", + "voter": "ballinconscious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4652459969", + "voter": "gringalicious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2770826537", + "voter": "steempowerwhale" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1336513482", + "voter": "rigaronib" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "390796425", + "voter": "echoesinthemind" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "357202147", + "voter": "soldier" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55826263", + "voter": "nelyp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2339486479", + "voter": "ellepdub" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50852949", + "voter": "gregorygarcia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9400577403", + "voter": "herpetologyguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51470533", + "voter": "eavy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51468937", + "voter": "roto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "70358845", + "voter": "ancientofdays" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52648858", + "voter": "psyduck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "330163263", + "voter": "robotev1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4796038584", + "voter": "morgan.waser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147415673", + "voter": "flowergirl" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51141851", + "voter": "slow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "101153586", + "voter": "anns" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1693077690", + "voter": "nil1511" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "846735133", + "voter": "greenwayoflife" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50798322", + "voter": "breeze" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50796122", + "voter": "factom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50794039", + "voter": "autodesk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50708837", + "voter": "ardly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50704078", + "voter": "yotoh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50570250", + "voter": "ziggo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50482289", + "voter": "connection" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50433760", + "voter": "morse" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50317220", + "voter": "piphunters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1824788165", + "voter": "cwbrooch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1161216291", + "voter": "ayim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3675242983", + "voter": "strong-ai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "346259703", + "voter": "julia26" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "488963228", + "voter": "grisha-danunaher" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "696884040", + "voter": "ziogio" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "77637243", + "voter": "igtes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "80800689", + "voter": "timalex" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79083956", + "voter": "silverbackjonz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23984282056", + "voter": "abdullar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1204472546", + "voter": "expedition" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157643687", + "voter": "buffett" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "162128433", + "voter": "cebymaster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "143818142", + "voter": "eunnykim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "162785391", + "voter": "olga4ka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1065182434", + "voter": "rusteemitblog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161974443", + "voter": "zapply" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158642800", + "voter": "ranger" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "282877474", + "voter": "witchcraftblog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "975048251", + "voter": "nikomah" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161212160", + "voter": "origin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161205518", + "voter": "acute" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "160973134", + "voter": "gravity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157801695", + "voter": "realtime" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157654556", + "voter": "pawel-krawczyk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125721183", + "voter": "rubenkusters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "160269480", + "voter": "adpipop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103667189", + "voter": "charli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147606365", + "voter": "laskovskiy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "65836326", + "voter": "serikus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147145004", + "voter": "fer32p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "159524423", + "voter": "radent" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125821091", + "voter": "jasonxg" + } + ], + "author": "ned", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\n\n# Over the last few weeks I've been thinking about ways we could increase the demand for Steem Power, the quality of curated content and the incentives to participate as a Steem curator.\n\nHere are a couple ideas I have been kicking around. They're not fully mature and could use a good rinsing by the community.\n\n## Allow Steem holders to delegate their Steem Power voting rights to a **voting pool**\n\nA delegated voting pool could socialize voting power and individualize rewards. One prime use for this could be the @steemit account. @steemit could create a voting pool and invite anyone with a verified identity and good reputation to join the pool as a curator. This could increase the number of unique curators, help bootstrap Steem as an identity database and give people even more incentives to sign up.\n\nTo show the numbers, an example would be Alice Bob and Charley each delegate their SP of 2, 3, and 7 to one voting pool. Now they each have 4, 4, and 4 SP to be used to curate. Better curation would earn them more curation rewards. \n\nA side effect of delegated voting pools could be voting markets. Any user would have the power to create a voting pool and these users could charge curators for participation. Some of the platform's whales could be interested in offering subscription models to minnows as a way to get more voting influence.\n\n## If powering down stake loses voting influence\n\nImagine that any stake being powered down would lose its rights to use voting influence. This could make the system very clear in the regard that stake is either in or it is out. Users could be able to choose any % of their stake to power down regardless of how many accounts they have and only the % stake that is powering down would lose voting influence. Stopping a power down could return all voting rights.\n\nPerhaps the effect of this could be 1/ more interest to stay in the platform and 2/ more fluidity in the witness queue 3/ more fairness regarding the PoS nature of Steem 4/ more clarity from participants looking to exit the system\n\n## Combined effect?\nPerhaps these proposals could have a combined effect that increases the demand and fluidity of Steem Power while improving the curated experience for people visiting Steem based websites.\n\n#### What are your thoughts and questions?", + "body_length": 2399, + "cashout_time": "2016-09-14T15:44:51", + "category": "steem", + "children": 315, + "created": "2016-09-07T15:44:51", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-07T15:50:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 21098346399884, + "parent_author": "", + "parent_permlink": "steem", + "pending_payout_value": "47.466 HBD", + "percent_hbd": 10000, + "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", + "post_id": 1160043, + "promoted": "500.000 HBD", + "replies": [], + "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction", + "title": "Increasing Curation, Demand for Steem Power and Community Interaction", + "total_payout_value": "0.000 HBD", + "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json index affd4a4c..5006164e 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json @@ -1,562 +1,562 @@ [ - { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "231806896049", - "voter": "anonymous" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40039727156805", - "voter": "blocktrades" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "81139043695", - "voter": "friend5" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5563642779143", - "voter": "kushed" - }, - { - "percent": "5900", - "reputation": 0, - "rshares": "4361056998354", - "voter": "roadscape" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "11463456159", - "voter": "by24seven" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48198557404", - "voter": "twiceuponatime" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "253716125229", - "voter": "indominon" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "72048644865", - "voter": "vault" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "22916314085", - "voter": "wpalczynski" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23645584002", - "voter": "nikolai" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "143164562367", - "voter": "chris4210" - }, - { - "percent": "8800", - "reputation": 0, - "rshares": "24193131603", - "voter": "acidyo" - }, - { - "percent": "2900", - "reputation": 0, - "rshares": "313691550", - "voter": "coar" - }, - { - "percent": "5555", - "reputation": 0, - "rshares": "1061234978", - "voter": "murh" - }, - { - "percent": "5000", - "reputation": 0, - "rshares": "33781972641", - "voter": "ratel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "208364758717", - "voter": "kimziv" - }, - { - "percent": "8800", - "reputation": 0, - "rshares": "45145254362", - "voter": "venuspcs" - }, - { - "percent": "8800", - "reputation": 0, - "rshares": "7264907621", - "voter": "getssidetracked" - }, - { - "percent": "8800", - "reputation": 0, - "rshares": "1414199127", - "voter": "trees" - }, - { - "percent": "8800", - "reputation": 0, - "rshares": "197179742", - "voter": "strawhat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "844421054", - "voter": "endgame" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "118094280271", - "voter": "furion" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2834923420", - "voter": "steem1653" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13516878845", - "voter": "sitaru" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3735950544", - "voter": "incomemonthly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "6392090406", - "voter": "cryptosi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "243749878708", - "voter": "nabilov" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "677892916", - "voter": "luisucv34" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "34761252099", - "voter": "creemej" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "167304333801", - "voter": "blueorgy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4545098461", - "voter": "poseidon" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "41053239884", - "voter": "celsius100" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1659490970", - "voter": "tokyodude" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "128098702", - "voter": "mysteem" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "6168588588", - "voter": "chloetaylor" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "34309889652", - "voter": "sisterholics" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59017018", - "voter": "reported" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "55047214", - "voter": "krushing" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1213316718415", - "voter": "laonie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "21929710586", - "voter": "rawnetics" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "41307699258", - "voter": "myfirst" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "246282932283", - "voter": "somebody" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9450611021", - "voter": "flysaga" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "513541455", - "voter": "minnowsunited" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54405663387", - "voter": "midnightoil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54018085", - "voter": "whatyouganjado" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "136080800992", - "voter": "xiaohui" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "6792049578", - "voter": "elfkitchen" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "61187902", - "voter": "makaveli" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4366196499", - "voter": "xiaokongcom" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7475701368", - "voter": "thebotkiller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "8801500509", - "voter": "xianjun" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "11292536945", - "voter": "borran" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53669860", - "voter": "alexbones" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "576331905", - "voter": "microluck" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1310823380", - "voter": "stevescoins" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3089652212", - "voter": "macartem" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10344891579", - "voter": "gvargas123" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "156958768", - "voter": "nang1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "166282713", - "voter": "kamil5" - }, - { - "percent": "8800", - "reputation": 0, - "rshares": "51156498", - "voter": "dobbydaba" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5950976762", - "voter": "trev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "8773942171", - "voter": "craigwilliamz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "72624506", - "voter": "ozertayiz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53639497", - "voter": "salebored" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "736031742", - "voter": "freeinthought" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "63258691", - "voter": "arnoldz61" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2101747450", - "voter": "eight-rad" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53681172", - "voter": "bitdrone" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53672498", - "voter": "sleepcult" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54175638", - "voter": "apparat" - }, - { - "percent": "9900", - "reputation": 0, - "rshares": "12276570645", - "voter": "doitvoluntarily" - }, - { - "percent": "8800", - "reputation": 0, - "rshares": "135393340675", - "voter": "thecyclist" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52015504", - "voter": "analyzethis" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "63904547", - "voter": "freebornangel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52154065", - "voter": "nommo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51261721", - "voter": "f1111111" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "339287005", - "voter": "anomaly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "98545946", - "voter": "ola1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "63588518", - "voter": "mari5555na" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2996735269", - "voter": "powerup" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "527464783", - "voter": "grisha-danunaher" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "161974443", - "voter": "zapply" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "158561921", - "voter": "jyriygo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "136494240", - "voter": "bleujay" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "153397644", - "voter": "milank" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "150273031", - "voter": "inkwisitiveguy01" - } - ], - "author": "powerup", - "author_reputation": 0, - "beneficiaries": [], - "body": "So far, a great number of applications, or tools that can considerably improve our user experience whether we are old users or new, has been created. The application directory created by @roelandp is accepted as an official directory that currently contains more than 80 various tools, mainly created by the community members, with a few official ones. The number of applications is growing rapidly, thanks to talented developers and other users, whose ideas are being converted into functional programs.\n\nHere, I want to introduce you to an infographic that contains 17 very useful tools singled out and sorted into categories according to their use. The first category 'for new and old users' contains essential applications for most users, including applications such as the official chat server and block explorer, as well as a dedicated service for uninterrupted adding of photos, @jesta's tool for easier tracking of data related to your account, and a tool for real-time Steem Backed Dollar conversion, with a few extra applications included in the service.\n\nThe next group contains the applications essential for developers, led by @xeroc's piston which says for itself 'The Swiff Army Knife for the Steem network'. They facilitate the communication with the steem blockchain and there is also an application that facilitates the integration of Steem payments to your service. \n\nThe Miscellaneous group contains a variety of useful applications such as tools for curators, a precise browser of user reputation, a dedicated tool for creating shortened links with statistics, a Steem Stream display of all activity in real time with an option of adjusting your settings, as well as speech community and radio.\n\nLast group are applications in the category of data and analytics that contain most of data about the network, the network activity and the users. \n\nI apologize in advance if some of your favorite applications have been left out; if that is the case, you can always visit http://SteemTools.com which contains all the applications.\n\n*For a clearer view, it is recommended that you open the image in full resolution.* *[Infographic Hotlink!](http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png)*\nhttps://s11.postimg.io/8uxamnavn/revision_02.png\n---\n ![http://steemit.com/@powerup](https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png)", - "body_length": 2450, - "cashout_time": "2016-09-16T17:20:12", - "category": "infographic", - "children": 6, - "created": "2016-09-15T16:45:09", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "json_metadata": "{\"tags\":[\"infographic\",\"steemit\",\"steem\",\"steemsquad\",\"minnowsunite\"],\"users\":[\"roelandp\",\"jesta\",\"xeroc\"],\"image\":[\"https:\\/\\/s11.postimg.io\\/8uxamnavn\\/revision_02.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/https:\\/\\/resources.sketch.cloud\\/public\\/102c8fee-b651-415a-8498-36de3c522b7d.png\"],\"links\":[\"http:\\/\\/SteemTools.com\",\"http:\\/\\/res.cloudinary.com\\/powerup\\/image\\/upload\\/c_scale,w_1437\\/v1473957114\\/revision-02_tdjkik.png\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-15T18:45:09", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 53802622776333, - "parent_author": "", - "parent_permlink": "infographic", - "pending_payout_value": "171.268 HBD", - "percent_steem_dollars": 10000, - "permlink": "17-steem-tools-every-steemian-needs-to-know", - "post_id": 959438, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Steem Tools Every Steemian Needs To Know (Infographic)", - "title": "Steem Tools Every Steemian Needs To Know (Infographic)", - "total_payout_value": "0.000 HBD", - "url": "/infographic/@powerup/17-steem-tools-every-steemian-needs-to-know" - } -] \ No newline at end of file + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "231806896049", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40039727156805", + "voter": "blocktrades" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81139043695", + "voter": "friend5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5563642779143", + "voter": "kushed" + }, + { + "percent": "5900", + "reputation": 0, + "rshares": "4361056998354", + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11463456159", + "voter": "by24seven" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48198557404", + "voter": "twiceuponatime" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "253716125229", + "voter": "indominon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72048644865", + "voter": "vault" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22916314085", + "voter": "wpalczynski" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23645584002", + "voter": "nikolai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "143164562367", + "voter": "chris4210" + }, + { + "percent": "8800", + "reputation": 0, + "rshares": "24193131603", + "voter": "acidyo" + }, + { + "percent": "2900", + "reputation": 0, + "rshares": "313691550", + "voter": "coar" + }, + { + "percent": "5555", + "reputation": 0, + "rshares": "1061234978", + "voter": "murh" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "33781972641", + "voter": "ratel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "208364758717", + "voter": "kimziv" + }, + { + "percent": "8800", + "reputation": 0, + "rshares": "45145254362", + "voter": "venuspcs" + }, + { + "percent": "8800", + "reputation": 0, + "rshares": "7264907621", + "voter": "getssidetracked" + }, + { + "percent": "8800", + "reputation": 0, + "rshares": "1414199127", + "voter": "trees" + }, + { + "percent": "8800", + "reputation": 0, + "rshares": "197179742", + "voter": "strawhat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "844421054", + "voter": "endgame" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "118094280271", + "voter": "furion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2834923420", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3735950544", + "voter": "incomemonthly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6392090406", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "243749878708", + "voter": "nabilov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "677892916", + "voter": "luisucv34" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "34761252099", + "voter": "creemej" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "167304333801", + "voter": "blueorgy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4545098461", + "voter": "poseidon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "41053239884", + "voter": "celsius100" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1659490970", + "voter": "tokyodude" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128098702", + "voter": "mysteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6168588588", + "voter": "chloetaylor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "34309889652", + "voter": "sisterholics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59017018", + "voter": "reported" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55047214", + "voter": "krushing" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1213316718415", + "voter": "laonie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21929710586", + "voter": "rawnetics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "41307699258", + "voter": "myfirst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "246282932283", + "voter": "somebody" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9450611021", + "voter": "flysaga" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "513541455", + "voter": "minnowsunited" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54405663387", + "voter": "midnightoil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54018085", + "voter": "whatyouganjado" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "136080800992", + "voter": "xiaohui" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6792049578", + "voter": "elfkitchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61187902", + "voter": "makaveli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4366196499", + "voter": "xiaokongcom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7475701368", + "voter": "thebotkiller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8801500509", + "voter": "xianjun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11292536945", + "voter": "borran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53669860", + "voter": "alexbones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "576331905", + "voter": "microluck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1310823380", + "voter": "stevescoins" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3089652212", + "voter": "macartem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156958768", + "voter": "nang1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "166282713", + "voter": "kamil5" + }, + { + "percent": "8800", + "reputation": 0, + "rshares": "51156498", + "voter": "dobbydaba" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5950976762", + "voter": "trev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8773942171", + "voter": "craigwilliamz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72624506", + "voter": "ozertayiz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53639497", + "voter": "salebored" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "736031742", + "voter": "freeinthought" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63258691", + "voter": "arnoldz61" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2101747450", + "voter": "eight-rad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53681172", + "voter": "bitdrone" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53672498", + "voter": "sleepcult" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54175638", + "voter": "apparat" + }, + { + "percent": "9900", + "reputation": 0, + "rshares": "12276570645", + "voter": "doitvoluntarily" + }, + { + "percent": "8800", + "reputation": 0, + "rshares": "135393340675", + "voter": "thecyclist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52015504", + "voter": "analyzethis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63904547", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52154065", + "voter": "nommo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51261721", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "339287005", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "98545946", + "voter": "ola1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63588518", + "voter": "mari5555na" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2996735269", + "voter": "powerup" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "527464783", + "voter": "grisha-danunaher" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161974443", + "voter": "zapply" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158561921", + "voter": "jyriygo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "136494240", + "voter": "bleujay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153397644", + "voter": "milank" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "150273031", + "voter": "inkwisitiveguy01" + } + ], + "author": "powerup", + "author_reputation": 0, + "beneficiaries": [], + "body": "So far, a great number of applications, or tools that can considerably improve our user experience whether we are old users or new, has been created. The application directory created by @roelandp is accepted as an official directory that currently contains more than 80 various tools, mainly created by the community members, with a few official ones. The number of applications is growing rapidly, thanks to talented developers and other users, whose ideas are being converted into functional programs.\n\nHere, I want to introduce you to an infographic that contains 17 very useful tools singled out and sorted into categories according to their use. The first category 'for new and old users' contains essential applications for most users, including applications such as the official chat server and block explorer, as well as a dedicated service for uninterrupted adding of photos, @jesta's tool for easier tracking of data related to your account, and a tool for real-time Steem Backed Dollar conversion, with a few extra applications included in the service.\n\nThe next group contains the applications essential for developers, led by @xeroc's piston which says for itself 'The Swiff Army Knife for the Steem network'. They facilitate the communication with the steem blockchain and there is also an application that facilitates the integration of Steem payments to your service. \n\nThe Miscellaneous group contains a variety of useful applications such as tools for curators, a precise browser of user reputation, a dedicated tool for creating shortened links with statistics, a Steem Stream display of all activity in real time with an option of adjusting your settings, as well as speech community and radio.\n\nLast group are applications in the category of data and analytics that contain most of data about the network, the network activity and the users. \n\nI apologize in advance if some of your favorite applications have been left out; if that is the case, you can always visit http://SteemTools.com which contains all the applications.\n\n*For a clearer view, it is recommended that you open the image in full resolution.* *[Infographic Hotlink!](http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png)*\nhttps://s11.postimg.io/8uxamnavn/revision_02.png\n---\n ![http://steemit.com/@powerup](https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png)", + "body_length": 2450, + "cashout_time": "2016-09-22T16:45:09", + "category": "infographic", + "children": 6, + "created": "2016-09-15T16:45:09", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"infographic\",\"steemit\",\"steem\",\"steemsquad\",\"minnowsunite\"],\"users\":[\"roelandp\",\"jesta\",\"xeroc\"],\"image\":[\"https://s11.postimg.io/8uxamnavn/revision_02.png\",\"https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png\"],\"links\":[\"http://SteemTools.com\",\"http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T18:45:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53802622776333, + "parent_author": "", + "parent_permlink": "infographic", + "pending_payout_value": "170.170 HBD", + "percent_hbd": 10000, + "permlink": "17-steem-tools-every-steemian-needs-to-know", + "post_id": 1256009, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Steem Tools Every Steemian Needs To Know (Infographic)", + "title": "Steem Tools Every Steemian Needs To Know (Infographic)", + "total_payout_value": "0.000 HBD", + "url": "/infographic/@powerup/17-steem-tools-every-steemian-needs-to-know" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_followers.pat.json b/hivemind/tavern/condenser_api_patterns/get_followers.pat.json index 6f1cc469..40002c6f 100644 --- a/hivemind/tavern/condenser_api_patterns/get_followers.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_followers.pat.json @@ -1,72 +1,72 @@ [ - { - "follower": "therajmahal", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "mgibson", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "good-karma", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "blockcodes", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "pjheinz", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "sergey44", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "afsane", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "pawel-krawczyk", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "buckland", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "johnson.lukose", - "following": "steemit", - "what": [ - "blog" - ] - } + { + "follower": "therajmahal", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "mgibson", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "good-karma", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "blockcodes", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "pjheinz", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "sergey44", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "afsane", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "pawel-krawczyk", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "buckland", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "johnson.lukose", + "following": "steemit", + "what": [ + "blog" + ] + } ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_following.pat.json b/hivemind/tavern/condenser_api_patterns/get_following.pat.json index e78f9c04..91cb6486 100644 --- a/hivemind/tavern/condenser_api_patterns/get_following.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_following.pat.json @@ -1,72 +1,72 @@ [ - { - "follower": "proskynneo", - "following": "webosfritos", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "peerplays", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "charlieshrem", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "tlc", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "jamesc", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "theoretical", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "steemitblog", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "ned", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "dan", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "katecloud", - "what": [ - "blog" - ] - } + { + "follower": "proskynneo", + "following": "webosfritos", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "peerplays", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "charlieshrem", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "tlc", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "jamesc", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "theoretical", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "steemitblog", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "ned", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "dan", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "katecloud", + "what": [ + "blog" + ] + } ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json index 92391ceb..391bf27f 100644 --- a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json @@ -1,40 +1,40 @@ [ - { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "53926980", - "voter": "simgregg" - } - ], - "author": "simgregg", - "author_reputation": 0, - "beneficiaries": [], - "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", - "body_length": 1273, - "cashout_time": "2016-09-18T21:19:45", - "category": "polska", - "children": 1, - "created": "2016-08-18T21:19:45", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "json_metadata": "{\"tags\":[\"polska\",\"wolnosc\",\"ojczyzna\",\"patriotyzm\",\"wiersz\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-18T21:19:45", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 53926980, - "parent_author": "", - "parent_permlink": "polska", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "nasienie-wolnosci", - "post_id": 661285, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Nasienie Wolno\u015bci", - "title": "Nasienie Wolno\u015bci", - "total_payout_value": "0.000 HBD", - "url": "/polska/@simgregg/nasienie-wolnosci" - } + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "53926980", + "voter": "simgregg" + } + ], + "author": "simgregg", + "author_reputation": 0, + "beneficiaries": [], + "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", + "body_length": 1273, + "cashout_time": "2016-08-25T21:19:45", + "category": "polska", + "children": 1, + "created": "2016-08-18T21:19:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"polska\",\"wolnosc\",\"ojczyzna\",\"patriotyzm\",\"wiersz\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T21:19:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53926980, + "parent_author": "", + "parent_permlink": "polska", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "nasienie-wolnosci", + "post_id": 877987, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Nasienie Wolno\u015bci", + "title": "Nasienie Wolno\u015bci", + "total_payout_value": "0.000 HBD", + "url": "/polska/@simgregg/nasienie-wolnosci" + } ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update.pat.json index 5434a44a..f0cc63d8 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update.pat.json @@ -1,94 +1,94 @@ [ - { - "active_votes": [ - { - "percent": "-100", - "reputation": 0, - "rshares": "-375241", - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5100", - "voter": "steemit46" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "81125", - "voter": "roadscape" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "425903066", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "431616594", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58854897335", - "voter": "business" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "244129227", - "voter": "kewpiedoll" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1615731741", - "voter": "naturalista" - } - ], - "author": "admin", - "author_reputation": 0, - "beneficiaries": [], - "body": "First Reply! Let's get this **party** started", - "body_length": 45, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 2, - "created": "2016-03-30T19:52:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T19:52:30", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 62423410900, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 2, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/meta/@steemit/firstpost#@admin/firstpost" - } + { + "active_votes": [ + { + "percent": "-100", + "reputation": 0, + "rshares": "-375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit46" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81125", + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "431616594", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58854897335", + "voter": "business" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "244129227", + "voter": "kewpiedoll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1615731741", + "voter": "naturalista" + } + ], + "author": "admin", + "author_reputation": 0, + "beneficiaries": [], + "body": "First Reply! Let's get this **party** started", + "body_length": 45, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "created": "2016-03-30T19:52:30", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T19:52:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62423410900, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 2, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@admin/firstpost" + } ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_state.pat.json b/hivemind/tavern/condenser_api_patterns/get_state.pat.json index 0c2ab190..a298d1a1 100644 --- a/hivemind/tavern/condenser_api_patterns/get_state.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_state.pat.json @@ -1,679 +1,679 @@ { - "accounts": { - "steemit": { - "blog": [ - "steemit/firstpost" - ], - "comments": [], - "created": "2016-03-24 17:00:24", - "feed": [], - "json_metadata": "{\"profile\":{\"name\":null,\"about\":null,\"website\":null,\"location\":null,\"cover_image\":\"\",\"profile_image\":\"\"}}", - "name": "steemit", - "net_vesting_shares": 0.0, - "post_count": 0, - "recent_replies": [], - "reputation": 0, - "transfer_history": [] + "accounts": { + "steemit": { + "blog": [ + "steemit/firstpost" + ], + "comments": [], + "created": "2016-03-24 17:00:21", + "feed": [], + "json_metadata": "{\"profile\":{\"name\":null,\"about\":null,\"website\":null,\"location\":null,\"cover_image\":\"\",\"profile_image\":\"\"}}", + "name": "steemit", + "net_vesting_shares": 0.0, + "post_count": 0, + "recent_replies": [], + "reputation": 0, + "transfer_history": [] + } + }, + "content": { + "steemit/firstpost": { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" } - }, - "content": { - "steemit/firstpost": { - "active_votes": [ - { - "percent": "100", - "reputation": 0, - "rshares": "375241", - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5100", - "voter": "steemit78" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1259167", - "voter": "anonymous" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "318519", - "voter": "hello" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "153384", - "voter": "world" - }, - { - "percent": "-100", - "reputation": 0, - "rshares": "-936400", - "voter": "ned" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59412", - "voter": "fufubar1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14997", - "voter": "anonymous1" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "1441", - "voter": "red" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "551390835500", - "voter": "liondani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "82748", - "voter": "roadscape" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "10772", - "voter": "xeroc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "498863058", - "voter": "joelinux" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "9590417", - "voter": "piranhax" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "percent": "3600", - "reputation": 0, - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "425903066", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "422984262", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "47179379651", - "voter": "tosch" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7831667988", - "voter": "klye" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1019950749", - "voter": "coar" - }, - { - "percent": "1509", - "reputation": 0, - "rshares": "1746058458", - "voter": "murh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "hien-tran" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40624969", - "voter": "ben99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "917398502", - "voter": "decrypt" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1037079223", - "voter": "condra" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "233032838", - "voter": "jearson" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "240809500", - "voter": "tritium" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "226074637", - "voter": "artjedi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "931542394", - "voter": "anduweb" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2292983350", - "voter": "inertia" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "266262926", - "voter": "desmonid" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "71498008", - "voter": "madhatting" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23726644841", - "voter": "ubg" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "131577259", - "voter": "gribgo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "28907874049", - "voter": "orm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "528988007", - "voter": "qonq99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "129537329", - "voter": "rd7783" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "615020728", - "voter": "slava" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "95219365", - "voter": "curator" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "solos" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "blysards" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1279854", - "voter": "nigmat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10847083143", - "voter": "metrox" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "710989138", - "voter": "romancs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59366614", - "voter": "luke490" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58762473", - "voter": "bro66" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "201822591", - "voter": "future24" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58623688", - "voter": "mythras" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "matrixdweller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54761612", - "voter": "edbriv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "865125771", - "voter": "rittr" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52740989", - "voter": "tcstix" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "49467477", - "voter": "friedwater" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54017869", - "voter": "zelious" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53196086", - "voter": "f1111111" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "anomaly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "buckland" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "goldmatters" - } - ], - "author": "steemit", - "author_reputation": 0, - "beneficiaries": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "body_length": 224, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 36, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T18:30:18", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "parent_author": "", - "parent_permlink": "meta", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "Welcome to Steem!", - "total_payout_value": "0.942 HBD", - "url": "/meta/@steemit/firstpost" - } - }, - "discussion_idx": { - "": {} - }, - "feed_price": { - "base": "0.637 HBD", - "quote": "1.000 HIVE" - }, - "props": { - "head_block_number": 5000000, - "last_irreversible_block_num": 4999980, - "sbd_interest_rate": 1000, - "sbd_print_rate": 10000, - "time": "2016-09-15T19:47:21", - "total_vesting_fund_steem": "149190428.013 HIVE", - "total_vesting_shares": "448144916705.468384 VESTS" - }, - "tag_idx": { - "trending": [] - }, - "tags": {} + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + } + }, + "discussion_idx": { + "": {} + }, + "feed_price": { + "base": "0.637 HBD", + "quote": "1.000 HIVE" + }, + "props": { + "hbd_interest_rate": 1000, + "hbd_print_rate": 10000, + "head_block_number": 5000000, + "last_irreversible_block_num": 4999980, + "time": "2016-09-15T19:47:21", + "total_vesting_fund_hive": "149190428.013 HIVE", + "total_vesting_shares": "448144916705.468384 VESTS" + }, + "tag_idx": { + "trending": [] + }, + "tags": {} } \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_trending_tags.pat.json b/hivemind/tavern/condenser_api_patterns/get_trending_tags.pat.json index 829c814c..1407b4c3 100644 --- a/hivemind/tavern/condenser_api_patterns/get_trending_tags.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_trending_tags.pat.json @@ -1,62 +1,62 @@ [ - { - "comments": 10141, - "name": "steem", - "top_posts": 1158, - "total_payouts": "82438.187 HBD" - }, - { - "comments": 5633, - "name": "travel", - "top_posts": 1159, - "total_payouts": "66237.472 HBD" - }, - { - "comments": 7565, - "name": "food", - "top_posts": 1373, - "total_payouts": "59957.608 HBD" - }, - { - "comments": 11430, - "name": "introduceyourself", - "top_posts": 1214, - "total_payouts": "58893.319 HBD" - }, - { - "comments": 16286, - "name": "photography", - "top_posts": 4360, - "total_payouts": "53604.656 HBD" - }, - { - "comments": 4975, - "name": "money", - "top_posts": 998, - "total_payouts": "42462.388 HBD" - }, - { - "comments": 4028, - "name": "writing", - "top_posts": 807, - "total_payouts": "36257.390 HBD" - }, - { - "comments": 2890, - "name": "bitcoin", - "top_posts": 1220, - "total_payouts": "31111.750 HBD" - }, - { - "comments": 3209, - "name": "science", - "top_posts": 680, - "total_payouts": "25141.041 HBD" - }, - { - "comments": 2775, - "name": "philosophy", - "top_posts": 367, - "total_payouts": "24362.939 HBD" - } + { + "comments": 10141, + "name": "steem", + "top_posts": 1158, + "total_payouts": "82438.187 HBD" + }, + { + "comments": 5633, + "name": "travel", + "top_posts": 1159, + "total_payouts": "66237.472 HBD" + }, + { + "comments": 7565, + "name": "food", + "top_posts": 1373, + "total_payouts": "59957.608 HBD" + }, + { + "comments": 11430, + "name": "introduceyourself", + "top_posts": 1214, + "total_payouts": "58893.319 HBD" + }, + { + "comments": 16286, + "name": "photography", + "top_posts": 4360, + "total_payouts": "53604.656 HBD" + }, + { + "comments": 4975, + "name": "money", + "top_posts": 998, + "total_payouts": "42462.388 HBD" + }, + { + "comments": 4028, + "name": "writing", + "top_posts": 807, + "total_payouts": "36257.390 HBD" + }, + { + "comments": 2890, + "name": "bitcoin", + "top_posts": 1220, + "total_payouts": "31111.750 HBD" + }, + { + "comments": 3209, + "name": "science", + "top_posts": 680, + "total_payouts": "25141.041 HBD" + }, + { + "comments": 2775, + "name": "philosophy", + "top_posts": 367, + "total_payouts": "24362.939 HBD" + } ] \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/find_comments.pat.json b/hivemind/tavern/database_api_patterns/find_comments.pat.json index 0637a088..81fdf671 100644 --- a/hivemind/tavern/database_api_patterns/find_comments.pat.json +++ b/hivemind/tavern/database_api_patterns/find_comments.pat.json @@ -1 +1,53 @@ -[] \ No newline at end of file +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-24T09:30:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit", + "author_rewards": 3548, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "children_abs_rshares": 0, + "created": "2016-03-30T18:30:18", + "curator_payout_value": { + "amount": "756", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 90, + "parent_author": "", + "parent_permlink": "meta", + "percent_hbd": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Welcome to Steem!", + "total_payout_value": { + "amount": "942", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments.pat.json b/hivemind/tavern/database_api_patterns/list_comments.pat.json index 30dfd86f..3f200118 100644 --- a/hivemind/tavern/database_api_patterns/list_comments.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments.pat.json @@ -1,370 +1,494 @@ -{"comments" :[{"id":0,"author":"steemit","permlink":"firstpost","category":"meta","parent_author":"","parent_permlink":"meta","title":"Welcome to Steem!","body":"Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.","json_metadata":"","last_update":"2016-03-30T18:30:18","created":"2016-03-30T18:30:18","active":"2020-03-21T09:18:18","last_payout":"2016-08-24T19:59:42","depth":0,"children":430,"net_rshares":0,"abs_rshares":0,"vote_rshares":0,"children_abs_rshares":"28797030536827","cashout_time":"1969-12-31T23:59:59","max_cashout_time":"1969-12-31T23:59:59","total_vote_weight":0,"reward_weight":10000,"total_payout_value":{"amount":"942","precision":3,"nai":"@@000000013"},"curator_payout_value":{"amount":"756","precision":3,"nai":"@@000000013"},"author_rewards":3548,"net_votes":90,"root_author":"steemit","root_permlink":"firstpost","max_accepted_payout":{"amount":"1000000000","precision":3,"nai":"@@000000013"},"percent_steem_dollars":10000,"allow_replies":true,"allow_votes":true,"allow_curation_rewards":true,"beneficiaries":[] }, -{ "id" :30425494, -"author" :"steemit-01", -"permlink" :"20-hafta-sueper-lig-mac-sonuclari-ve-puan-durumu-0c514b7a295", -"category" :"tr", -"parent_author" :"", -"parent_permlink" :"tr", -"title" :"20. Hafta s\u00fcper lig ma\u00e7 sonu\u00e7lar\u0131 ve puan durumu", -"body" :"Zirveye oynayan tak\u0131mlar\u0131n puan kay\u0131plar\u0131na sahne olan 20. Hafta bol goll\u00fc ma\u00e7lar oldu. Haftan\u0131n a\u00e7\u0131l\u0131\u015f ma\u00e7\u0131nda bursaspor-besikta\u015f 2-2 berabere kalm\u0131\u015ft\u0131r.\nFenerbah\u00e7e-genclerbirligi 2-2\nSivasspor-galatasaray 2-1 \nHaftan\u0131n son ma\u00e7\u0131 pazartesi g\u00fcn\u00fc trabzonspor-g\u00f6ztepe oynanacakt\u0131r. B\u00fct\u00fcn tak\u0131mlara ba\u015far\u0131lar dilerim. Iyi oynayan kazans\u0131n. \n\n ![image](https:\/\/img.esteem.ws\/quopn14n6f.jpg)\n![image](https:\/\/img.esteem.ws\/qqr7g77ins.jpg)\n ![image](https:\/\/img.esteem.ws\/c93askgsdo.jpg)", -"json_metadata" :"{\"links\":[],\"image\":[\"https:\/\/img.esteem.ws\/quopn14n6f.jpg\",\"https:\/\/img.esteem.ws\/qqr7g77ins.jpg\",\"https:\/\/img.esteem.ws\/c93askgsdo.jpg\"],\"tags\":[\"tr\",\"life\",\"futbol\"],\"app\":\"esteem\/1.5.1\",\"format\":\"markdown+html\",\"community\":\"esteem\"}", -"last_update" :"2018-02-04T20:29:39", -"created" :"2018-02-04T20:29:39", -"active" :"2018-02-11T13:45:45", -"last_payout" :"2018-02-11T20:29:39", -"depth" :0, -"children" :4, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"3600", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"1298", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :926, -"net_votes" :6, -"root_author" :"steemit-01", -"root_permlink" :"20-hafta-sueper-lig-mac-sonuclari-ve-puan-durumu-0c514b7a295", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_steem_dollars" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":1000}] }, -{ "id" :31551861, -"author" :"steemit-01", -"permlink" :"ada-coin-cointurk-13-projesi-3e388d8ec14", -"category" :"cointurk", -"parent_author" :"", -"parent_permlink" :"cointurk", -"title" :"Ada coin [ cointurk 13. Projesi]", -"body" :"Ada di\u011fer ad\u0131 Cardano i\u00e7in \u0131s\u0131nmad\u0131 buna bir anda coinmarketcap a girdi. \u0130lk zamanlar ilk 17 icin de yer ald\u0131. Aradan 2 ay ge\u00e7meden 5. S\u0131raya yerle\u015fti kalkm\u0131yor bir t\u00fcrl\u00fc. Arkas\u0131nda sa\u011flam bir deste\u011fin oldu\u011fu belli \u00e7ok g\u00fczel y\u00f6nlendiriyorlar. Ne i\u015fe yarar teknolojisi nedir ne i\u015fe yarar hi\u00e7 ara\u015ft\u0131rmad\u0131m, amac\u0131 belli bir grup taraf\u0131ndan piyasaya sa\u011flam bir grup belli ki paray\u0131 vurdu sanki her\u015feyi zaman g\u00f6sterecek. Yat\u0131r\u0131m yap\u0131lmas\u0131n\u0131 ben pek uygun g\u00f6rm\u00fcyorum. ![image](https:\/\/img.esteem.ws\/e0xeka2rm7.jpg)", -"json_metadata" :"{\"links\":[],\"image\":[\"https:\/\/img.esteem.ws\/e0xeka2rm7.jpg\"],\"tags\":[\"cointurk\",\"tr\",\"ada\"],\"app\":\"esteem\/1.5.1\",\"format\":\"markdown+html\",\"community\":\"esteem\"}", -"last_update" :"2018-02-09T22:26:54", -"created" :"2018-02-09T22:26:54", -"active" :"2018-02-09T23:21:27", -"last_payout" :"2018-02-16T22:26:54", -"depth" :0, -"children" :1, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"2626", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"910", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :626, -"net_votes" :5, -"root_author" :"steemit-01", -"root_permlink" :"ada-coin-cointurk-13-projesi-3e388d8ec14", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_steem_dollars" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":1000}] }, -{ "id" :40019453, -"author" :"steemit-01", -"permlink" :"bahar-geldi-hos-geldi-a03b4f7ac06dc", -"category" :"hayat", -"parent_author" :"", -"parent_permlink" :"hayat", -"title" :"BAHAR GELD\u0130 HO\u015e GELD\u0130", -"body" :"Bahar demek uyuyan topra\u011f\u0131n, toprak icin de uyuyan canl\u0131lar\u0131n uyanmas\u0131 do\u011fan\u0131n tekrardan canlanmas\u0131 demektir. Insanlar\u0131n ne\u015felenmesi demek tekrardan ya\u015fama ba\u015flamak demektir.\n ![image](https:\/\/img.esteem.ws\/wvxrr2yhew.jpg)\nDedelerimiz 60 defa babalar\u0131m\u0131z 40-50 defa omurlerinde bahar\u0131 g\u00f6rm\u00fc\u015ft\u00fcr, bahar\u0131n ne demek oldu\u011funu onlara sorsak \u00e7ok iyi anlat\u0131rlar bizlere.\n ![image](https:\/\/img.esteem.ws\/jubhfbjxzn.jpg)\nBizler ise kocaman \u015fehir de betonlar\u0131n aras\u0131nda asfalt yollarda \u00f6mr\u00fcm\u00fcz ge\u00e7iyor.\n Fark\u0131na bile varam\u0131yoruz bademler \u00e7i\u00e7ek a\u00e7m\u0131\u015f erikler k\u00fc\u00e7\u00fck k\u00fc\u00e7\u00fck olmu\u015f b\u00f6cekler c\u0131km\u0131\u015f, tabi y\u0131lanlar ge\u00e7 \u00e7\u0131ks\u0131n birazcik:)\n\n\n\nBizler bu durumda ne yapabiliriz, evimiz de bah\u00e7emiz varsa bah\u00e7e de bah\u00e7e yoksa balkon da bir tane domates ve bir tane biber fidesi al\u0131p onlar\u0131 yeti\u015ftirebilriz, hem \u00e7ok k\u0131sa s\u00fcre de hem de organik bir \u015fekilde yeti\u015fir.\n Gerekli malzemeler domates biber fidesi saks\u0131 toprak ve solucan g\u00fcbresi hepsi kolayca temin edilebilir. \u00d6zellik k\u00fc\u00e7\u00fck \u00e7ocuklar var ise evde onlar\u0131n i\u00e7in de m\u00fckemmel olur, bir bitkinin g\u00f6zlerinin \u00f6n\u00fcnde nas\u0131l yeti\u015fti\u011fini g\u00f6r\u00fcp \u00f6\u011frenir, veya tohum da ekebilirsiniz salatal\u0131k en basiti \u00e7ok k\u0131sa s\u00fcrede yeti\u015fir. Ceviz de guzel yetisir 3 5 sene saks\u0131da kalabilir.\n\nBari bu bahari bo\u015f ge\u00e7irmeyelim bir dikili agacimiz olsun. Bakin \u00f6m\u00fcr bitiyor.\n ![image](https:\/\/img.esteem.ws\/6kn0g6jzjk.jpg)", -"json_metadata" :"{\"links\":[],\"image\":[\"https:\/\/img.esteem.ws\/wvxrr2yhew.jpg\",\"https:\/\/img.esteem.ws\/jubhfbjxzn.jpg\",\"https:\/\/img.esteem.ws\/6kn0g6jzjk.jpg\"],\"tags\":[\"hayat\",\"tr\",\"cointurk\",\"esteem\"],\"app\":\"esteem\/1.5.1\",\"format\":\"markdown+html\",\"community\":\"esteem\"}", -"last_update" :"2018-03-22T19:09:45", -"created" :"2018-03-22T19:09:45", -"active" :"2018-03-22T19:09:45", -"last_payout" :"2018-03-29T19:09:45", -"depth" :0, -"children" :0, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"407", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"129", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :234, -"net_votes" :16, -"root_author" :"steemit-01", -"root_permlink" :"bahar-geldi-hos-geldi-a03b4f7ac06dc", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_steem_dollars" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":1000}] }, -{ "id" :28707916, -"author" :"steemit-01", -"permlink" :"bay-garson-zg1hbmlh-zflcl", -"category" :"dmania", -"parent_author" :"", -"parent_permlink" :"dmania", -"title" :"bay garson :)", -"body" :"
\n \n \n <\/a>\n

Watch video on dMania<\/a><\/h3>\n \n \n <\/a>\n <\/center>", -"json_metadata" :"{\"tags\":[\"dmania\",\"video\",\"funny\"],\"image\":[\"https:\/\/s3-eu-west-1.amazonaws.com\/dmania-thumbnail\/whatsapp-video-2018-01-28-at-00-1j431p7-00001.png\"],\"video\":{\"videoUrl\":\"https:\/\/s3-eu-west-1.amazonaws.com\/dmania-vid\/whatsapp-video-2018-01-28-at-00-1j431p7.mp4\",\"thumbnailUrl\":\"https:\/\/s3-eu-west-1.amazonaws.com\/dmania-thumbnail\/whatsapp-video-2018-01-28-at-00-1j431p7-00001.png\"},\"app\":\"dmania\/0.6\"}", -"last_update" :"2018-01-28T13:52:18", -"created" :"2018-01-28T13:52:18", -"active" :"2018-01-28T17:05:09", -"last_payout" :"2018-02-04T13:52:18", -"depth" :0, -"children" :3, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"4546", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"1334", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :1005, -"net_votes" :7, -"root_author" :"steemit-01", -"root_permlink" :"bay-garson-zg1hbmlh-zflcl", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_steem_dollars" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"cnts","weight":500},{"account":"dmania","weight":1000},{"account":"lafona-miner","weight":500},{"account":"xeldal","weight":500}] }, -{ "id" :41022114, -"author" :"steemit-01", -"permlink" :"bitcoin-alan-satan-imamlar-suskunlugunu-bozdu-c49e12bca1cf4", -"category" :"tr", -"parent_author" :"", -"parent_permlink" :"tr", -"title" :"B\u0130TCO\u0130N alan satan imamlar suskunlu\u011funu bozdu", -"body" :"Ge\u00e7en g\u00fcn \u00e7\u0131kan haberler aral\u0131k ayinda bitcoin al\u0131m sat\u0131m iddas\u0131 ile g\u00f6revlerinden uzakla\u015ft\u0131r\u0131lan imamlar konu\u015ftu bitcoin in ne oldu\u011funu daha bilmiyoruz, g\u00f6revimize d\u00f6nmek istiyoruz dediler. G\u00f6revden uzakla\u015ft\u0131rma gerek\u00e7esini de diyanet bitcoinin caiz olmad\u0131\u011f\u0131n\u0131 \u00f6ne s\u00fcrm\u00fc\u015ft\u00fc. \n \nBilmem haberler ne kadar do\u011frudur yanl\u0131\u015ft\u0131r. Fakat bildi\u011fim bisey var haberin \u00e7\u0131kar\u0131lma maksad\u0131na bakar\u0131m kim neden ni\u00e7in \u00e7\u0131kar\u0131r b\u00f6yle haberi reklam mi yapmak yasak mi getirmek ama\u00e7lar\u0131. \n\n Sizlere soruyorum bu g\u00fcne kadar alkol i\u00e7ti\u011fi i\u00e7in, kumar oynad\u0131\u011f\u0131 i\u00e7in veya milli piyango bileti alan idda ya da say\u0131sal loto oynayan imam\u0131n uzakla\u015ft\u0131rild\u0131\u011f\u0131n\u0131 \n Hic duydunuz mu ya da bu sayd\u0131klar\u0131m caiz mi l\u00fctfen elinizi vicdan\u0131n\u0131za koyup cevaplay\u0131n. Mesele imamlar mi bitcoin mi yoksa dinimiz mi veya devletimiz mi her g\u00fcn bir d\u00fcnya sa\u00e7ma sapan haberler.\n ![image](https:\/\/img.esteem.ws\/nxxz9axvfp.jpg)", -"json_metadata" :"{\"links\":[],\"image\":[\"https:\/\/img.esteem.ws\/nxxz9axvfp.jpg\"],\"tags\":[\"tr\",\"bitcoin\",\"cointurk\",\"esteem\"],\"app\":\"esteem\/1.5.1\",\"format\":\"markdown+html\",\"community\":\"esteem\"}", -"last_update" :"2018-03-28T19:05:24", -"created" :"2018-03-28T19:05:24", -"active" :"2018-03-28T19:21:42", -"last_payout" :"2018-04-04T19:05:24", -"depth" :0, -"children" :5, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"458", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"132", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :281, -"net_votes" :13, -"root_author" :"steemit-01", -"root_permlink" :"bitcoin-alan-satan-imamlar-suskunlugunu-bozdu-c49e12bca1cf4", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_steem_dollars" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":1000}] }, -{ "id" :24448862, -"author" :"steemit-01", -"permlink" :"bitcoin-cash-cointurk-4-projesi-793446f50ab08", -"category" :"tr", -"parent_author" :"", -"parent_permlink" :"tr", -"title" :"Bitcoin cash [ cointurk 4. Projesi ]", -"body" :"Bitcoin cash gibi reklam\u0131n\u0131 yapan bir ba\u015fka coin olmad\u0131. Bitcoin ad\u0131n\u0131 kullanarak devasa bir b\u00fcy\u00fcme ger\u00e7ekle\u015ftirdi. Ilk \u00e7\u0131kt\u0131\u011f\u0131 zamanlarda ve devam\u0131n da bir \u00e7ok ki\u015fiye \u00e7ok kazand\u0131rd\u0131, bir \u00e7ok ki\u015fiyi hayal k\u0131r\u0131kl\u0131\u011f\u0131na u\u011fratt\u0131. Zarar mi ettirdi tabiki hay\u0131r sab\u0131rs\u0131z olanlar kesinlikle zarar etti ka\u00e7\u0131n\u0131lmazd\u0131. Yine de bildi\u011fi yoldan devam ediyor an\u0131 \u00e7\u0131k\u0131\u015flar\u0131 ve d\u00fc\u015f\u00fc\u015fleri her zaman olabilecek bir alternatif coindir. \u00c7ok can yakar, \u00e7ok kazanirir en \u00e7ok dikkat edilmesi gereken coindir. ![image](https:\/\/img.esteem.ws\/tt5kj2v8xz.jpg)", -"json_metadata" :"{\"links\":[],\"image\":[\"https:\/\/img.esteem.ws\/tt5kj2v8xz.jpg\"],\"tags\":[\"tr\",\"cointurk\",\"kusadasi\",\"bitcoincash\",\"kripto-para\"],\"app\":\"esteem\/1.5.0\",\"format\":\"markdown+html\",\"community\":\"esteem\"}", -"last_update" :"2018-01-08T21:53:03", -"created" :"2018-01-08T21:53:03", -"active" :"2018-01-11T20:00:42", -"last_payout" :"2018-01-15T21:53:03", -"depth" :0, -"children" :1, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"1542", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"481", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :266, -"net_votes" :3, -"root_author" :"steemit-01", -"root_permlink" :"bitcoin-cash-cointurk-4-projesi-793446f50ab08", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_steem_dollars" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":500}] }, -{ "id" :26928882, -"author" :"steemit-01", -"permlink" :"bitcoin-en-ideal-yatirim-aracidir-cointurk-8-projesi-8762263941674", -"category" :"tr", -"parent_author" :"", -"parent_permlink" :"tr", -"title" :"Bitcoin en ideal yat\u0131r\u0131m arac\u0131d\u0131r \ud83d\ude0a\ud83d\ude0a [ cointurk 8. Projesi ]", -"body" :"Bitcoin ile tan\u0131\u015fmam eskiye dayan\u0131r fakat kas\u0131m 2016 da ilk al\u0131\u015f sat\u0131\u015f i\u015flemimdir. Aral\u0131k 2016 'daki d\u00fc\u015f\u00fc\u015f den dolay\u0131 bir g\u00fcvensizlik olu\u015ftu hemen uzaklastim. Sonra dedim tabi en g\u00fcvenli liman alt\u0131nd\u0131r dolard\u0131r baya borsa i\u015fi fila u\u011fra\u015ft\u0131m, k\u00e2r\u0131 azd\u0131 ve sonra para baronlari ters de b\u0131rakt\u0131 derken d\u00f6viz i\u015fini de b\u0131rakt\u0131m. Dolar alt\u0131n euro ya yat\u0131r\u0131m yap\u0131yorsun, sonra ne oluyor biliyor musun \u00fclkendeki g\u00fczel geli\u015fmelere sevinemiyorsunuz. \u00c7\u00fcnk\u00fc d\u00f6viz d\u00fc\u015f\u00fcyor \u00e7\u0131kmam\u0131\u015fsan zarar yaz\u0131yor, alt\u0131n al\u0131rs\u0131n dolara ba\u011fl\u0131 olan alt\u0131n da d\u00fc\u015fer sen baka kal\u0131rs\u0131n. Neyse gel zaman git zaman haziran 2017 'de ufak ufak bitcoin almaya satmaya ba\u015flad\u0131m. Yine de i\u00e7im de bir g\u00fcvensizlik vardi. \u00d6nce #bitcoin sonra altcoinler filan derken hep al sat al sat derken s\u00fcrekli zarar zarar ne zaman ki bitcoin e tam olarak g\u00fcvendim o zaman kazanmaya ba\u015flad\u0131m. Yeni ba\u015flayan arkada\u015flara en \u00f6nemli tavsiyem bitcoin al\u0131n ve uzun vadeli yat\u0131r\u0131m olarak d\u00fc\u015f\u00fcn\u00fcn k\u0131sa s\u00fcrekli k\u00fc\u00e7\u00fck k\u00e2rlara aldanmay\u0131n ve bitcoin e s\u0131k\u0131 s\u0131k\u0131 sar\u0131l\u0131n. Ileride ah vah ke\u015fke dememek i\u00e7in karar verin.\n ![image](https:\/\/img.esteem.ws\/w9pam3ozxr.jpg)", -"json_metadata" :"{\"links\":[],\"image\":[\"https:\/\/img.esteem.ws\/w9pam3ozxr.jpg\"],\"tags\":[\"tr\",\"bitcoin\",\"cointurk\",\"kripto-para\",\"esteem\"],\"app\":\"esteem\/1.5.0\",\"format\":\"markdown+html\",\"community\":\"esteem\"}", -"last_update" :"2018-01-20T22:53:06", -"created" :"2018-01-20T22:53:06", -"active" :"2018-01-20T22:53:06", -"last_payout" :"2018-01-27T22:53:06", -"depth" :0, -"children" :0, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"12886", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"4342", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :2134, -"net_votes" :11, -"root_author" :"steemit-01", -"root_permlink" :"bitcoin-en-ideal-yatirim-aracidir-cointurk-8-projesi-8762263941674", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_steem_dollars" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":500}] }, -{ "id" :26261629, -"author" :"steemit-01", -"permlink" :"bitcoin-i-ilgili-cilgin-tahmin-100-bin-dolari-gececek-ff05005b9b12b", -"category" :"tr", -"parent_author" :"", -"parent_permlink" :"tr", -"title" :"Bitcoin'i ilgili \u00e7\u0131lg\u0131n tahmin: 100 bin dolar\u0131 ge\u00e7ecek", -"body" :"Saxo bank analisti kay van-petersen CNBC 2016 aral\u0131k ay\u0131nda yapt\u0131\u011f\u0131 de\u011ferlendirmede 2017 y\u0131l\u0131nda 2000 dolar\u0131 ge\u00e7ece\u011fini s\u00f6ylemi\u015fti. 2018 y\u0131l\u0131nda ise 50.000 ile 100000 dolar olabilece\u011fini s\u00f6yl\u00fcyor. ![image](https:\/\/img.esteem.ws\/y1bjrvwcly.jpg)\n\nKaynak:https:\/\/www.haberler.com\/bitcoin-le-ilgili-cilgin-tahmin-100-bin-dolari-10461899-haberi\/", -"json_metadata" :"{\"links\":[\"https:\/\/www.haberler.com\/bitcoin-le-ilgili-cilgin-tahmin-100-bin-dolari-10461899-haberi\/\"],\"image\":[\"https:\/\/img.esteem.ws\/y1bjrvwcly.jpg\"],\"tags\":[\"tr\",\"bitcoin\",\"cointurk\",\"kripto-para\",\"esteem\"],\"app\":\"esteem\/1.5.0\",\"format\":\"markdown+html\",\"community\":\"esteem\"}", -"last_update" :"2018-01-17T15:37:45", -"created" :"2018-01-17T15:37:18", -"active" :"2018-01-17T15:37:45", -"last_payout" :"2018-01-24T15:37:18", -"depth" :0, -"children" :0, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"1146", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"347", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :264, -"net_votes" :6, -"root_author" :"steemit-01", -"root_permlink" :"bitcoin-i-ilgili-cilgin-tahmin-100-bin-dolari-gececek-ff05005b9b12b", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_steem_dollars" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":500}] }, -{ "id" :31239836, -"author" :"steemit-01", -"permlink" :"e-devlet-de-soyagaci-sorgulama-e-devlete-entegre-edildi-e-devley-sistemi-kilitlendi-880490885e2d5", -"category" :"tr", -"parent_author" :"", -"parent_permlink" :"tr", -"title" :"E devlet de soya\u011fac\u0131 sorgulama e devlete entegre edildi e-devlet sistemi kilitlendi", -"body" :"Bir \u00e7ok resmi i\u015flemlerimizi e devlet sitesinden halledebiliyorken bu hizmetlere bir yenisi eklendi. N\u00fcfus ve vatanda\u015fl\u0131k i\u015fleri genel m\u00fcd\u00fcrl\u00fc\u011f\u00fc e devlet sistemine uygulamay\u0131 entegre etti\u011fini duyurdu. \nSoya\u011fac\u0131 nas\u0131l sorgulan\u0131r?\nE devlet uygulamas\u0131ndan hizmetler b\u00f6l\u00fcm\u00fcne girerek n\u00fcfus ve vatanda\u015fl\u0131k i\u015fleri b\u00f6l\u00fcm\u00fcn alt kategorisinin den soya\u011fac\u0131n\u0131 t\u0131klayarak \u00f6\u011frenebilirsiniz.\n ![image](https:\/\/img.esteem.ws\/ulrw9d3g3e.jpg)", -"json_metadata" :"{\"image\":[\"https:\/\/img.esteem.ws\/ulrw9d3g3e.jpg\"],\"tags\":[\"tr\",\"hayat\"],\"app\":\"steemit\/0.1\",\"format\":\"markdown\",\"community\":\"esteem\"}", -"last_update" :"2018-02-09T21:31:54", -"created" :"2018-02-08T12:59:06", -"active" :"2018-02-09T21:31:54", -"last_payout" :"2018-02-15T12:59:06", -"depth" :0, -"children" :0, -"net_rshares" :0, -"abs_rshares" :0, -"vote_rshares" :0, -"children_abs_rshares" :0, -"cashout_time" :"1969-12-31T23:59:59", -"max_cashout_time" :"1969-12-31T23:59:59", -"total_vote_weight" :0, -"reward_weight" :10000, -"total_payout_value": { "amount" :"9876", -"precision" :3, -"nai" :"@@000000013" }, -"curator_payout_value": { "amount" :"3490", -"precision" :3, -"nai" :"@@000000013" }, -"author_rewards" :2507, -"net_votes" :9, -"root_author" :"steemit-01", -"root_permlink" :"e-devlet-de-soyagaci-sorgulama-e-devlete-entegre-edildi-e-devley-sistemi-kilitlendi-880490885e2d5", -"max_accepted_payout": { "amount" :"1000000000", -"precision" :3, -"nai" :"@@000000013" }, -"percent_steem_dollars" :10000, -"allow_replies" :true, -"allow_votes" :true, -"allow_curation_rewards" :true, -"beneficiaries" :[{"account":"esteemapp","weight":1000}] } ] } +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-24T09:30:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit", + "author_rewards": 3548, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "children_abs_rshares": 0, + "created": "2016-03-30T18:30:18", + "curator_payout_value": { + "amount": "756", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 90, + "parent_author": "", + "parent_permlink": "meta", + "percent_hbd": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Welcome to Steem!", + "total_payout_value": { + "amount": "942", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-06-10T08:55:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-awesome", + "author_rewards": 0, + "beneficiaries": [], + "body": ":)", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-06-10T08:03:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 27842, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-06-10T08:03:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -401748374094, + "net_votes": -1, + "parent_author": "", + "parent_permlink": "steemit", + "percent_hbd": 10000, + "permlink": "show-me-some-love-please", + "reward_weight": 10000, + "root_author": "steemit-awesome", + "root_permlink": "show-me-some-love-please", + "title": "show me some love please?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-06-10T08:02:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-awesome", + "author_rewards": 0, + "beneficiaries": [], + "body": "who can upvote me?", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-06-10T08:00:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 27840, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-06-10T08:00:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -75903272807, + "net_votes": 0, + "parent_author": "", + "parent_permlink": "steemit", + "percent_hbd": 10000, + "permlink": "what-is-steemit", + "reward_weight": 10000, + "root_author": "steemit-awesome", + "root_permlink": "what-is-steemit", + "title": "What is Steemit", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-01T20:01:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-com", + "author_rewards": 0, + "beneficiaries": [], + "body": "grat", + "cashout_time": "1969-12-31T23:59:59", + "category": "holiday", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-01T20:01:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 543507, + "json_metadata": "{\"tags\":[\"holiday\"]}", + "last_payout": "2016-08-31T15:38:18", + "last_update": "2016-08-01T20:01:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "grimjo33", + "parent_permlink": "tangkuban-perahu-another-beautiful-indonesia-tourism-destination", + "percent_hbd": 10000, + "permlink": "re-grimjo33-tangkuban-perahu-another-beautiful-indonesia-tourism-destination-20160801t200152355z", + "reward_weight": 10000, + "root_author": "grimjo33", + "root_permlink": "tangkuban-perahu-another-beautiful-indonesia-tourism-destination", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-01T20:06:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-com", + "author_rewards": 0, + "beneficiaries": [], + "body": "why so naiF", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-01T20:06:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 543657, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-09-01T23:15:57", + "last_update": "2016-08-01T20:06:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "riensen", + "parent_permlink": "steemit-etiquette-using-95-bot-accounts-to-upvote-your-own-content-fair-game-or-not-cool", + "percent_hbd": 10000, + "permlink": "re-riensen-steemit-etiquette-using-95-bot-accounts-to-upvote-your-own-content-fair-game-or-not-cool-20160801t200656898z", + "reward_weight": 10000, + "root_author": "riensen", + "root_permlink": "steemit-etiquette-using-95-bot-accounts-to-upvote-your-own-content-fair-game-or-not-cool", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T19:09:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-de", + "author_rewards": 22090, + "beneficiaries": [], + "body": "

\u00a0Original post by @dantheman\u00a0

\n

\n

Da Steem beliebige Daten welche an einem Account gekn\u00fcpft sind unterst\u00fctzt, liegt es nahe f\u00fcr Erfahrene Entwickler die von Namecoin und \u00e4hnlichen Projekten genutzt werden auf Steem zu portieren.

\n

Sind diese Tools erst vorhanden, kann der Steem-Account Name als Domain f\u00fcr die eigene Webseite genutzt werden.

\n

Ich bin mir sicher, dass derjenige, welcher zuerst benutzerfreundliche und qualitative Tools ver\u00f6ffentlicht um DNS-Abfragen mittels der Metadaten des Steem-Accounts zu erm\u00f6glichen, eine Flut von Upvotes erh\u00e4lt.

\n

Nur eine Idee am Rande f\u00fcr jene die gewinnbringende Post wollen.

\n

Vorteile

\n
    \n
  • Dezentralisierte TLS (HTTPS) zertifizierte Validierung, gest\u00fctzt vom Blockchain Konsens
  • \n
  • Sicherung der Meinungsfreiheit im Internet durch resistentmachung gegen Zensur
  • \n
  • Zugriff auf Webseiten durch .steem Top-Level Domains
  • \n
  • Verkn\u00fcpfte Identit\u00e4tsinformationen wie GPG oder OTR Schl\u00fcssel sowieso Emails, Bitcoins und Bitmessage-Adressen an eine Identit\u00e4t deiner Wahl
  • \n
\n

Steemit-de wird die wichtigsten Publikationen und popul\u00e4ren Post ins Deutsche \u00fcbersetzten, um das Wachstum von Steemit zu beschleunigen

", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-09T10:04:48", + "curator_payout_value": { + "amount": "9740", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 700619, + "json_metadata": "{\"tags\":[\"namecoin\",\"dns\",\"steem\",\"bounty\",\"deutsch\"],\"image\":[\"https://i.imgsafe.org/9aa30b795c.png\"],\"links\":[\"https://steemit.com/namecoin/@dantheman/dns-via-steem\",\"https://steemit.com/@dantheman\"]}", + "last_payout": "2016-09-08T23:23:39", + "last_update": "2016-08-09T10:04:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 50, + "parent_author": "", + "parent_permlink": "namecoin", + "percent_hbd": 10000, + "permlink": "dns-via-steem-deutsche-version-deutsch", + "reward_weight": 10000, + "root_author": "steemit-de", + "root_permlink": "dns-via-steem-deutsche-version-deutsch", + "title": "DNS via STEEM [Deutsche Version] #deutsch", + "total_payout_value": { + "amount": "45460", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T10:05:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-de", + "author_rewards": 0, + "beneficiaries": [], + "body": "Der Account hier wurde leider geschlossen. Der Key ging verloren. Machen hier weiter und haben jetzt Backups", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-09T10:05:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 700627, + "json_metadata": "{\"tags\":[\"namecoin\"]}", + "last_payout": "2016-09-08T21:40:24", + "last_update": "2016-08-09T10:05:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "rittr", + "parent_permlink": "re-steemit-germany-dns-via-steem-deutsche-version-20160809t093544531z", + "percent_hbd": 10000, + "permlink": "re-rittr-re-steemit-germany-dns-via-steem-deutsche-version-20160809t100526949z", + "reward_weight": 10000, + "root_author": "steemit-germany", + "root_permlink": "dns-via-steem-deutsche-version", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T10:17:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-germany", + "author_rewards": 16, + "beneficiaries": [], + "body": "

Original post by @dantheman

\n

\n

Da Steem beliebige Daten welche an einem Account gekn\u00fcpft sind unterst\u00fctzt, liegt es nahe f\u00fcr Erfahrene Entwickler die von Namecoin und \u00e4hnlichen Projekten genutzt werden auf Steem zu portieren.

\n

Sind diese Tools erst vorhanden, kann der Steem-Account Name als Domain f\u00fcr die eigene Webseite genutzt werden.

\n

Ich bin mir sicher, dass derjenige, welcher zuerst benutzerfreundliche und qualitative Tools ver\u00f6ffentlicht um DNS-Abfragen mittels der Metadaten des Steem-Accounts zu erm\u00f6glichen, eine Flut von Upvotes erh\u00e4lt.

\n

Nur eine Idee am Rande f\u00fcr jene die gewinnbringende Post wollen.

\n

Vorteile

\n
    \n
  • Dezentralisierte TLS (HTTPS) zertifizierte Validierung, gest\u00fctzt vom Blockchain Konsens\u00a0
  • \n
  • Sicherung der Meinungsfreiheit im Internet durch resistentmachung gegen Zensur
  • \n
  • Zugriff auf Webseiten durch .steem Top-Level Domains
  • \n
  • Verkn\u00fcpfte Identit\u00e4tsinformationen wie GPG oder OTR Schl\u00fcssel sowieso Emails, Bitcoins und Bitmessage-Adressen an eine Identit\u00e4t deiner Wahl
  • \n
", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 6, + "children_abs_rshares": 0, + "created": "2016-08-09T07:44:57", + "curator_payout_value": { + "amount": "6", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 699424, + "json_metadata": "{\"tags\":[\"namecoin\",\"dns\",\"steem\",\"bounty\",\"deutsch\"],\"users\":[\"dantheman\"],\"image\":[\"https://i.imgsafe.org/9842418ea3.png\"],\"links\":[\"https://steemit.com/namecoin/@dantheman/dns-via-steem\"]}", + "last_payout": "2016-09-08T21:40:24", + "last_update": "2016-08-09T09:37:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "namecoin", + "percent_hbd": 10000, + "permlink": "dns-via-steem-deutsche-version", + "reward_weight": 10000, + "root_author": "steemit-germany", + "root_permlink": "dns-via-steem-deutsche-version", + "title": "DNS via STEEM [Deutsche Version]", + "total_payout_value": { + "amount": "32", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T10:17:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-germany", + "author_rewards": 0, + "beneficiaries": [], + "body": "Ist in Arbeit :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-09T09:38:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 700387, + "json_metadata": "{\"tags\":[\"namecoin\"]}", + "last_payout": "2016-09-08T21:40:24", + "last_update": "2016-08-09T09:38:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "rittr", + "parent_permlink": "re-steemit-germany-dns-via-steem-deutsche-version-20160809t093544531z", + "percent_hbd": 10000, + "permlink": "re-rittr-re-steemit-germany-dns-via-steem-deutsche-version-20160809t093806686z", + "reward_weight": 10000, + "root_author": "steemit-germany", + "root_permlink": "dns-via-steem-deutsche-version", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T17:55:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-inga", + "author_rewards": 2020, + "beneficiaries": [], + "body": "\"IMG_9517edc90.jpg\"\n\nMy name is Inga. I am a Latvian at heart, adventure lover, 10+years yogi, licensed stock broker, photographer, traveler, pescaterian, chess playing sapiosexual, great friend and true believer in doing good for others. My glass is always half full, sometimes it has kambucha sometimes tequila. \n\nI was born in LATVIA, Small country by the Baltic sea. Came to America 14 years and since then I have lived in California, Colorado, Virginia and now call beautiful Salt Lake City Utah my home.\n\n@mranderson introduced me to Steemit, my first gig was the translation for the app in Latvian. https://steemit.com/writing/@kencode/do-you-know-a-foreign-language-crowdvoting\n\nMy first post is introduction to baby girl Zariah and her family, I have been brewing it for few weeks since I took portraits of the little girl who is on life support and shows well what a \"Fighter\" means since her birth. I believe Steemit community is ready to combine its steampower and help her! Please UPVOTE, SHARE and Help me to Help Zariah!\n\nhttps://steemit.com/votefunding/@steemit-inga/my-name-is-inga-and-steemers-please-multiply-community-healing-power-and-help-this-amazing-little-fighter", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 9, + "children_abs_rshares": 0, + "created": "2016-08-02T14:23:09", + "curator_payout_value": { + "amount": "1575", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 559995, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"votefunding\",\"yoga\",\"photography\",\"finance\"],\"users\":[\"mranderson\"],\"image\":[\"https://www.steemimg.com/images/2016/08/02/IMG_9517edc90.jpg\"],\"links\":[\"https://steemit.com/writing/@kencode/do-you-know-a-foreign-language-crowdvoting\"]}", + "last_payout": "2016-09-02T04:02:27", + "last_update": "2016-08-02T14:23:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 48, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "i-was-born-in-latvia-small-country-by-the-baltic-sea-my-glass-is-always-half-full-sometimes-it-has-kambucha-sometimes-tequila", + "reward_weight": 10000, + "root_author": "steemit-inga", + "root_permlink": "i-was-born-in-latvia-small-country-by-the-baltic-sea-my-glass-is-always-half-full-sometimes-it-has-kambucha-sometimes-tequila", + "title": "I was born in LATVIA, Small country by the Baltic sea. My glass is always half full, sometimes it has kambucha sometimes tequila.", + "total_payout_value": { + "amount": "4828", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json index b477a73b..600f8778 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json @@ -1,3 +1,4 @@ +<<<<<<< HEAD // { // "comments": [ // { @@ -491,4 +492,5 @@ // "beneficiaries": [] // } // ] -// } \ No newline at end of file +// } + diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json index 1caafe64..b727bca5 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 951782, - "author": "allgoodthings", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160914t191355279z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Congrats to you all! I am new to Steemit and excited to partake in the next challenge. I truly enjoying preparing food!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-09-14T19:13:51", - "created": "2016-09-14T19:13:51", - "active": "2016-09-14T19:13:51", - "last_payout": "1970-01-01T00:00:00", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 944322, - "author": "haphazard-hstead", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160913t214242068z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Nice to hear that you are feeling a lot better, @givemeyoursteem! I'm glad I checked the foodchallenge group on the Steemit chat. Congratulations, everyone! I think all the response just shows how people really connected with the food challenge. I'm looking forward to the next one!", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", - "last_update": "2016-09-13T21:42:36", - "created": "2016-09-13T21:42:36", - "active": "2016-09-13T21:42:36", - "last_payout": "1970-01-01T00:00:00", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 929311, - "author": "englishtchrivy", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160912t092547152z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "@knozaki2015 thank you for the 25 SBD and the congrats memo. I appreciate it a great lot! You made me 25SBD richer!\nThanks to everyone who joined this challenge! This was the most fun food challenge I've ever joined- thanks to all the very encouraging co - challengers who participated!\n Congratulations @meesterboom for bagging the 1st prize! Hoot - hoot! Men power!\n\n@givemeyoursteem Thank you for announcing it. I HOPE YOU GO ON WITH WHAT YOU ARE DOING. YOU HAVE BEEN AN INSPIRATION TO MANY MINNOWS WHO ARE JOINING THE FOOD CHALLENGE. IF THE OTHER MINNOWS DON'T SEE THAT YOU ARE DOING THIS TO ACTUALLY SUPPORT US THEN FOR SURE NOT HAVING A FOOD CHALLENGE FOR A WEEK WOULD SURELY TEACH THEM A LESSON. I HOPE YOU SCROLLED DOWN TO THIS POST'S COMMENT THREAD AND DID NOT JUST READ YOUR REPLY FOLDER https://steemit.com/foodchallenge/@givemeyoursteem/steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money\n\nIT'S TRUE SOME MINNOWS HAVE WRITTEN MESSAGES SOME OTHER MINNOWS WHO PARTICIPATED CAN'T GET A GRIP OF , I GUESS THAT'S THE RESULT OF COMMUNICATING ON WRITTEN TEXTS.\nIT'S NOT ACCEPTABLE TO CALL YOU A SCAM BECAUSE YOU HAVE DELIVERED THE RESULTS OF THE 1ST 3 FOOD CHALLENGES ON TIME. WHOEVER HAS CALLED YOU THAT SHOULD APOLOGIZE HERE - OR MAYBE IN AN ARTICLE.\nPLEASE GO ON MAYBE ITS JUST ONE MINNOW WHO CALLED YOU THAT? THE OTHERS WHO PARTICIPATED HERE, INCLUDING MYSELF APPRECIATE WHAT YOU DO A GREAT LOT.\n@givemeyoursteem YOU'RE A HERO AND AN INSPIRATION HERE IN STEEMIT! YOU HAVE HELPED MANY MINNOWS GET NOTICED!\nYOU KNOW YOURSELF BETTER THAN ANYONE ELSE SO WHATEVER NASTY THINGS PEOPLE MAY CALL YOU OR THROW YOU HERE - DON'T GIVE A DAMN ON THAT! I HOPE YOU GO ON! \nTake care and I hope you get to recuperate soon. Best regards from this side of the earth <3", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"meesterboom\",\"givemeyoursteem\"],\"links\":[\"https://steemit.com/foodchallenge/@givemeyoursteem/steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money\"]}", - "last_update": "2016-09-12T09:54:03", - "created": "2016-09-12T09:25:45", - "active": "2016-09-12T09:54:03", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 0, - "net_rshares": "12919640292", - "abs_rshares": "12919640292", - "vote_rshares": "12919640292", - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 925249, - "author": "oumar", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t205445094z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Cool! I won 2th place!! Thanks @givemeyoursteem and thanks to all the sponsors!\n\nPlease don't listen to the people criticizing we deeply appreciate your effort on organizing this! Some of us just were anxious to know the results hehe but that is no reason to say bad things. Thanks again for making this possible and I hope there are more challenges soon! Also I hope you are already feeling better.", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", - "last_update": "2016-09-11T20:57:36", - "created": "2016-09-11T20:54:45", - "active": "2016-09-11T20:57:36", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 0, - "net_rshares": "12919640292", - "abs_rshares": "12919640292", - "vote_rshares": "12919640292", - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 924238, - "author": "vi1son", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t185742671z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Do not listen to what say the FUDers and haters. Be strong @givemeyoursteem! We all with you!", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", - "last_update": "2016-09-11T18:57:45", - "created": "2016-09-11T18:57:45", - "active": "2016-09-14T06:01:06", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 1, - "net_rshares": "12919640292", - "abs_rshares": "12919640292", - "vote_rshares": "12919640292", - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 922314, - "author": "papa-pepper", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t145241389z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "## Excellent choices and excellent dishes.\n# Congrats @meesterboom and the rest of the winners!", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"meesterboom\"]}", - "last_update": "2016-09-11T14:52:42", - "created": "2016-09-11T14:52:42", - "active": "2016-09-11T14:52:42", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 922188, - "author": "alitas", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t143031067z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Congratulations to the winners !\n\n•♥•☆ @alitas •☆•♥•", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"alitas\"]}", - "last_update": "2016-09-11T14:30:39", - "created": "2016-09-11T14:30:39", - "active": "2016-09-11T14:30:39", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 922015, - "author": "gringalicious", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t140113934z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Thank you again for hosting the Challenge and I very much appreciate being the wild pick. Looking forward to the next challenge!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-09-11T14:01:00", - "created": "2016-09-11T14:01:00", - "active": "2016-09-11T14:01:00", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 921769, - "author": "celebr1ty", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t132117882z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Thanks a lot!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-09-11T13:20:33", - "created": "2016-09-11T13:20:33", - "active": "2016-09-11T13:20:33", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 921750, - "author": "bullionstackers", - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t131427021z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "body": "Good stuffs \nI know the pork goes Bang Bang at @meesterboom\n👍\nCongratulations to all winners 👍❤️\nSweet ❤️\nKeep on Steeming ✅👍❤️\nGotta Love it to be in it", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"meesterboom\"]}", - "last_update": "2016-09-11T13:14:27", - "created": "2016-09-11T13:14:27", - "active": "2016-09-11T13:14:27", - "last_payout": "2016-09-12T17:37:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-09-14T19:13:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "allgoodthings", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congrats to you all! I am new to Steemit and excited to partake in the next challenge. I truly enjoying preparing food!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-14T19:13:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 951782, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T19:13:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160914t191355279z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-13T21:42:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "haphazard-hstead", + "author_rewards": 0, + "beneficiaries": [], + "body": "Nice to hear that you are feeling a lot better, @givemeyoursteem! I'm glad I checked the foodchallenge group on the Steemit chat. Congratulations, everyone! I think all the response just shows how people really connected with the food challenge. I'm looking forward to the next one!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-13T21:42:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 944322, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-13T21:42:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160913t214242068z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "12919640292", + "active": "2016-09-12T09:54:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "englishtchrivy", + "author_rewards": 0, + "beneficiaries": [], + "body": "@knozaki2015 thank you for the 25 SBD and the congrats memo. I appreciate it a great lot! You made me 25SBD richer!\nThanks to everyone who joined this challenge! This was the most fun food challenge I've ever joined- thanks to all the very encouraging co - challengers who participated!\n Congratulations @meesterboom for bagging the 1st prize! Hoot - hoot! Men power!\n\n@givemeyoursteem Thank you for announcing it. I HOPE YOU GO ON WITH WHAT YOU ARE DOING. YOU HAVE BEEN AN INSPIRATION TO MANY MINNOWS WHO ARE JOINING THE FOOD CHALLENGE. IF THE OTHER MINNOWS DON'T SEE THAT YOU ARE DOING THIS TO ACTUALLY SUPPORT US THEN FOR SURE NOT HAVING A FOOD CHALLENGE FOR A WEEK WOULD SURELY TEACH THEM A LESSON. I HOPE YOU SCROLLED DOWN TO THIS POST'S COMMENT THREAD AND DID NOT JUST READ YOUR REPLY FOLDER https://steemit.com/foodchallenge/@givemeyoursteem/steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money\n\nIT'S TRUE SOME MINNOWS HAVE WRITTEN MESSAGES SOME OTHER MINNOWS WHO PARTICIPATED CAN'T GET A GRIP OF , I GUESS THAT'S THE RESULT OF COMMUNICATING ON WRITTEN TEXTS.\nIT'S NOT ACCEPTABLE TO CALL YOU A SCAM BECAUSE YOU HAVE DELIVERED THE RESULTS OF THE 1ST 3 FOOD CHALLENGES ON TIME. WHOEVER HAS CALLED YOU THAT SHOULD APOLOGIZE HERE - OR MAYBE IN AN ARTICLE.\nPLEASE GO ON MAYBE ITS JUST ONE MINNOW WHO CALLED YOU THAT? THE OTHERS WHO PARTICIPATED HERE, INCLUDING MYSELF APPRECIATE WHAT YOU DO A GREAT LOT.\n@givemeyoursteem YOU'RE A HERO AND AN INSPIRATION HERE IN STEEMIT! YOU HAVE HELPED MANY MINNOWS GET NOTICED!\nYOU KNOW YOURSELF BETTER THAN ANYONE ELSE SO WHATEVER NASTY THINGS PEOPLE MAY CALL YOU OR THROW YOU HERE - DON'T GIVE A DAMN ON THAT! I HOPE YOU GO ON! \nTake care and I hope you get to recuperate soon. Best regards from this side of the earth <3", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-12T09:25:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 929311, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"meesterboom\",\"givemeyoursteem\"],\"links\":[\"https://steemit.com/foodchallenge/@givemeyoursteem/steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-12T09:54:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": "12919640292", + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160912t092547152z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "12919640292" + }, + { + "abs_rshares": "12919640292", + "active": "2016-09-11T20:57:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "oumar", + "author_rewards": 0, + "beneficiaries": [], + "body": "Cool! I won 2th place!! Thanks @givemeyoursteem and thanks to all the sponsors!\n\nPlease don't listen to the people criticizing we deeply appreciate your effort on organizing this! Some of us just were anxious to know the results hehe but that is no reason to say bad things. Thanks again for making this possible and I hope there are more challenges soon! Also I hope you are already feeling better.", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T20:54:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 925249, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T20:57:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": "12919640292", + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t205445094z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "12919640292" + }, + { + "abs_rshares": "12919640292", + "active": "2016-09-14T06:01:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vi1son", + "author_rewards": 0, + "beneficiaries": [], + "body": "Do not listen to what say the FUDers and haters. Be strong @givemeyoursteem! We all with you!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-09-11T18:57:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 924238, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T18:57:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": "12919640292", + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t185742671z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "12919640292" + }, + { + "abs_rshares": 0, + "active": "2016-09-11T14:52:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "papa-pepper", + "author_rewards": 0, + "beneficiaries": [], + "body": "## Excellent choices and excellent dishes.\n# Congrats @meesterboom and the rest of the winners!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T14:52:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 922314, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"meesterboom\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T14:52:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t145241389z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T14:30:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "alitas", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congratulations to the winners !\n\n\u2022\u2665\u2022\u2606 @alitas \u2022\u2606\u2022\u2665\u2022", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T14:30:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 922188, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"alitas\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T14:30:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t143031067z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T14:01:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gringalicious", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you again for hosting the Challenge and I very much appreciate being the wild pick. Looking forward to the next challenge!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T14:01:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 922015, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T14:01:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t140113934z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T13:20:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "celebr1ty", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thanks a lot!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T13:20:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 921769, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T13:20:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t132117882z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T13:14:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "bullionstackers", + "author_rewards": 0, + "beneficiaries": [], + "body": "Good stuffs \nI know the pork goes Bang Bang at @meesterboom\n\ud83d\udc4d\nCongratulations to all winners \ud83d\udc4d\u2764\ufe0f\nSweet \u2764\ufe0f\nKeep on Steeming \u2705\ud83d\udc4d\u2764\ufe0f\nGotta Love it to be in it", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T13:14:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 921750, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"meesterboom\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T13:14:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t131427021z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json index 401b15a5..b5b85780 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 779033, - "author": "r4fken", - "permlink": "re-givemeyoursteem-re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t160212524z", - "category": "steemit", - "parent_author": "givemeyoursteem", - "parent_permlink": "re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t152858919z", - "title": "", - "body": "Same here, we invite you to bring cookies to Brussels tho.", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_update": "2016-08-28T16:02:15", - "created": "2016-08-28T16:02:15", - "active": "2016-08-28T16:02:15", - "last_payout": "2016-08-30T03:35:57", - "depth": 2, - "children": 0, - "net_rshares": -490754060752, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": -7, - "root_author": "allasyummyfood", - "root_permlink": "steemit-cookies-for-the-london-meet-up", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778975, - "author": "the-future", - "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t155605821z", - "category": "steemitphotochallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "title": "", - "body": "Sweden is awesome man!", - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", - "last_update": "2016-08-28T15:56:12", - "created": "2016-08-28T15:56:12", - "active": "2016-08-28T15:58:42", - "last_payout": "2016-08-29T15:16:36", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778824, - "author": "allasyummyfood", - "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t154507601z", - "category": "steemitphotochallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "title": "", - "body": "stunning pictures!! wow I'm speechless!", - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", - "last_update": "2016-08-28T15:45:06", - "created": "2016-08-28T15:45:06", - "active": "2016-08-28T15:58:09", - "last_payout": "2016-08-29T15:16:36", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778773, - "author": "allasyummyfood", - "permlink": "re-givemeyoursteem-re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t154119664z", - "category": "steemit", - "parent_author": "givemeyoursteem", - "parent_permlink": "re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t152858919z", - "title": "", - "body": "You will just have to visit us here next time :))", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_update": "2016-08-28T15:41:18", - "created": "2016-08-28T15:41:18", - "active": "2016-08-28T15:41:18", - "last_payout": "2016-08-30T03:35:57", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "allasyummyfood", - "root_permlink": "steemit-cookies-for-the-london-meet-up", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778749, - "author": "meesterboom", - "permlink": "re-givemeyoursteem-re-meesterboom-hearty-vegetable-soup-easy-and-quick-20160828t153933112z", - "category": "recipes", - "parent_author": "givemeyoursteem", - "parent_permlink": "re-meesterboom-hearty-vegetable-soup-easy-and-quick-20160828t152731480z", - "title": "", - "body": "Its a pleasure!", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-28T15:39:33", - "created": "2016-08-28T15:39:33", - "active": "2016-08-28T15:39:33", - "last_payout": "2016-08-29T13:39:57", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "meesterboom", - "root_permlink": "hearty-vegetable-soup-easy-and-quick", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778505, - "author": "givemeyoursteem", - "permlink": "re-givemeyoursteem-re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t151900275z", - "category": "contest", - "parent_author": "givemeyoursteem", - "parent_permlink": "re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t150753974z", - "title": "", - "body": "I think Swag Sunday is a great idea and agree with @halo , it's a great bonus for us, I'm so thankful! You should also get rewarded :) A \"resteem\" feature seems like a really good idea, hope it become true!", - "json_metadata": "{\"tags\":[\"contest\"],\"users\":[\"halo\"]}", - "last_update": "2016-08-28T15:19:00", - "created": "2016-08-28T15:19:00", - "active": "2016-08-28T19:08:27", - "last_payout": "2016-08-29T07:30:36", - "depth": 2, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "condra", - "root_permlink": "swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778494, - "author": "meesterboom", - "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t151812366z", - "category": "steemitphotochallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "title": "", - "body": "That sunset one in particular is stunning.", - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", - "last_update": "2016-08-28T15:18:36", - "created": "2016-08-28T15:18:12", - "active": "2016-08-28T15:22:42", - "last_payout": "2016-08-29T15:16:36", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778395, - "author": "allasyummyfood", - "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t150830108z", - "category": "steemitphotochallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "title": "", - "body": "Really beautiful pictures! thank you for sharing :) x", - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", - "last_update": "2016-08-28T15:08:30", - "created": "2016-08-28T15:08:30", - "active": "2016-08-28T15:22:09", - "last_payout": "2016-08-29T15:16:36", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 777927, - "author": "iggy", - "permlink": "re-givemeyoursteem-re-iggy-sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life-20160828t141345606z", - "category": "photography", - "parent_author": "givemeyoursteem", - "parent_permlink": "re-iggy-sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life-20160828t140609818z", - "title": "", - "body": "Vikaresjön lake in Gislaved Komun , 60 km from Jonkoping . And the fish is pike perch , on Swedish is i think joos or something like that", - "json_metadata": "{\"tags\":[\"photography\"]}", - "last_update": "2016-08-28T14:14:06", - "created": "2016-08-28T14:14:06", - "active": "2016-08-28T14:14:06", - "last_payout": "2016-08-29T13:12:09", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "iggy", - "root_permlink": "sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 777876, - "author": "iggy", - "permlink": "re-givemeyoursteem-re-iggy-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t140721103z", - "category": "steemitphotochallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "re-iggy-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t140244741z", - "title": "", - "body": "South or North ? I love Sweden , i have lived in Jönköping area for 3 years . Beautyfull nature and people.Now i'm moving further north to Bodo in Norway .", - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", - "last_update": "2016-08-28T14:07:42", - "created": "2016-08-28T14:07:42", - "active": "2016-08-28T14:10:33", - "last_payout": "2016-08-29T15:16:36", - "depth": 3, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-28T16:02:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "r4fken", + "author_rewards": 0, + "beneficiaries": [], + "body": "Same here, we invite you to bring cookies to Brussels tho.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T16:02:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 779033, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-30T03:35:57", + "last_update": "2016-08-28T16:02:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -490754060752, + "net_votes": -7, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t152858919z", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t160212524z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "steemit-cookies-for-the-london-meet-up", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:58:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "the-future", + "author_rewards": 0, + "beneficiaries": [], + "body": "Sweden is awesome man!", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:56:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 778975, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "2016-08-29T15:16:36", + "last_update": "2016-08-28T15:56:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t155605821z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:58:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "allasyummyfood", + "author_rewards": 0, + "beneficiaries": [], + "body": "stunning pictures!! wow I'm speechless!", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:45:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 778824, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "2016-08-29T15:16:36", + "last_update": "2016-08-28T15:45:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t154507601z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:41:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "allasyummyfood", + "author_rewards": 0, + "beneficiaries": [], + "body": "You will just have to visit us here next time :))", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T15:41:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 778773, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-30T03:35:57", + "last_update": "2016-08-28T15:41:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t152858919z", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t154119664z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "steemit-cookies-for-the-london-meet-up", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:39:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "meesterboom", + "author_rewards": 0, + "beneficiaries": [], + "body": "Its a pleasure!", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T15:39:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 778749, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-08-29T13:39:57", + "last_update": "2016-08-28T15:39:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-meesterboom-hearty-vegetable-soup-easy-and-quick-20160828t152731480z", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-re-meesterboom-hearty-vegetable-soup-easy-and-quick-20160828t153933112z", + "reward_weight": 10000, + "root_author": "meesterboom", + "root_permlink": "hearty-vegetable-soup-easy-and-quick", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:08:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "I think Swag Sunday is a great idea and agree with @halo , it's a great bonus for us, I'm so thankful! You should also get rewarded :) A \"resteem\" feature seems like a really good idea, hope it become true!", + "cashout_time": "1969-12-31T23:59:59", + "category": "contest", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:19:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 778505, + "json_metadata": "{\"tags\":[\"contest\"],\"users\":[\"halo\"]}", + "last_payout": "2016-08-29T07:30:36", + "last_update": "2016-08-28T15:19:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t150753974z", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t151900275z", + "reward_weight": 10000, + "root_author": "condra", + "root_permlink": "swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:22:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "meesterboom", + "author_rewards": 0, + "beneficiaries": [], + "body": "That sunset one in particular is stunning.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:18:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 778494, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "2016-08-29T15:16:36", + "last_update": "2016-08-28T15:18:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t151812366z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:22:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "allasyummyfood", + "author_rewards": 0, + "beneficiaries": [], + "body": "Really beautiful pictures! thank you for sharing :) x", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:08:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 778395, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "2016-08-29T15:16:36", + "last_update": "2016-08-28T15:08:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t150830108z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T14:14:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "iggy", + "author_rewards": 0, + "beneficiaries": [], + "body": "Vikaresj\u00f6n lake in Gislaved Komun , 60 km from Jonkoping . And the fish is pike perch , on Swedish is i think joos or something like that", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T14:14:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 777927, + "json_metadata": "{\"tags\":[\"photography\"]}", + "last_payout": "2016-08-29T13:12:09", + "last_update": "2016-08-28T14:14:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-iggy-sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life-20160828t140609818z", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-re-iggy-sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life-20160828t141345606z", + "reward_weight": 10000, + "root_author": "iggy", + "root_permlink": "sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T14:10:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "iggy", + "author_rewards": 0, + "beneficiaries": [], + "body": "South or North ? I love Sweden , i have lived in J\u00f6nk\u00f6ping area for 3 years . Beautyfull nature and people.Now i'm moving further north to Bodo in Norway .", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T14:07:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 777876, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "2016-08-29T15:16:36", + "last_update": "2016-08-28T14:07:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-iggy-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t140244741z", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-re-iggy-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t140721103z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json index 4da12897..3583cf26 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 779947, - "author": "givemeyoursteem", - "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "category": "foodchallenge", - "parent_author": "", - "parent_permlink": "foodchallenge", - "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", - "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", - "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", - "last_update": "2016-08-28T17:15:12", - "created": "2016-08-28T17:15:12", - "active": "2016-08-29T13:45:42", - "last_payout": "2016-08-29T20:19:39", - "depth": 0, - "children": 18, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 2374341643, - "cashout_time": "2016-09-28T20:19:39", - "max_cashout_time": "2016-09-13T01:24:24", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "576", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "131", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 588, - "net_votes": 44, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779945, - "author": "forklognews", - "permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", - "category": "bitcoin", - "parent_author": "", - "parent_permlink": "bitcoin", - "title": "Дайджест новостей – обзор главных событий биткоин-индустрии", - "body": "\n

Прошедшая неделя оказалась богатой событиями, центральным из которых для нашей редакции стало двухлетие Forklog. Два года назад, 25 августа, был зарегистрирован домен ForkLog.com, а спустя некоторое время сделаны первые публикации на сайте. Об остальных, не менее интересных событиях мира криптовалют, вы узнаете из нашего еженедельного дайджеста. 

\n

 БИРЖИ

\n

Ещё одним именинником этой недели стала криптовалютная биржа Bitstamp, которая отметила пятилетие со дня основания. К этому событию биржа приурочила конкурс с ценными призами.

\n

Но юбилеи не являются поводом прекращать работу и администрации бирж полностью разделяют это мнение, принимая где-то логичные, а где-то и неожиданные решения.

\n

Так, криптовалютная биржа GDAX начала торги четвертой по рыночной капитализации криптовалютой Litecoin. Соответствующее объявление сделано в официальном блоге биржи. Для торгов предлагается две валютные пары: резидентам США доступна пара LTC / USD, всем прочим клиентам — пара LTC / BTC.

\n

В свою очередь, 23 августа в официальном твиттере криптовалютной биржи Poloniex появилось сообщение оснятии с торгов 27 криптовалют. Торги будут прекращены 5 сентября текущего года и это решение уже вызвало некоторое недоумение сообщества, ведь в данный перечень вошли такие альткоины, как DAO, Dashcoin и Mintcoin, уровень капитализации которого достиг $1,22 млн. 

\n

\n

 Подходит к концу и нашумевшая история с биржей Bitfinex, пострадавшей в результате взлома. Администрация биржи объявила о подписании договора с инвестиционной платформой BnkToTheFuture с целью возмещения средств вкладчиков посредством долевого участия в акционерном капитале компании. 

\n

\n

 Благодаря сотрудничеству с BnkToTheFuture пользователи Bitfinex смогут обменять принадлежащие им токены BFX на соответствующую долю в iFinex Inc, зарегистрированной на Британских Виргинских Островах родительской компанией биржи.

\n

Неожиданная новость пришла на этой неделе из Турции, где ведущая криптовалютная биржи BTCTurk была вынуждена остановить работу, столкнувшись с неожиданном отказом банковского партнера от дальнейшего продолжения сотрудничества. В настоящий момент биржа предпринимает попытки вернуть средства пользователям, однако из-за блокировки банковских счетов этот процесс может затянуться. 

\n

 КОШЕЛЬКИ И ПЛАТЁЖНЫЕ СЕРВИСЫ

\n

Первым аппаратным кошельком, добавившим поддержку Ethereum, стал Trezor. Соответствующая информация размещена на странице Trezor на Github.

\n

Официального сообщения от компании-разработчика SatoshiLabs пока, впрочем, не поступало, поэтому дата официального релиза и доступности функционала на данный момент остается неизвестной.

\n

Списки рабочих валют пополнились у платёжного сервиса Bitwala, включившего поддержку Dash и Emercoin, и венесуэльской системы Cryptobuyer, добавившей Dash. Отметим, что жители Венесуэлы, у которых нет компьютеров либо телефонов с доступом в интернет, могут воспользоваться услугами местного партнёра Cryptobuyer – сетью криптовалютных банкоматов TigoCTM.

\n

Также вышла в свет новая версия Ethereum-кошелька Mist с поддержкой Coinbase Buy Widget. Одной из её главных особенностей стало включение Coinbase Buy Widget – инструмента, с помощью которого можно осуществить моментальную покупку криптовалюты на сумму до $5.

\n

В настоящий момент данная функция доступна только пользователям из США и требует наличия аккаунта на Coinbase. 

\n

\n

 БАНКИ И КОРПОРАЦИИ

\n

Неожиданным известием, способным стать предвестником глобальных изменений в мировой экономике, стало сообщение издания Financial Times о том, что ряд крупнейших мировых банков принял решение объединиться для создания новой цифровой валюты. Официальное заявление представителей банков UBS, Deutsche Bank, Santander и BNY Mellon ожидалось 24 августа, но до настоящего момента комментариев не появилось.

\n

Если это окажется не информационной уткой, то стоит ожидать, что в будущем к этой инициативе присоединятся и прочие финансовые институты со всех концов света, даже с далёкого африканского континента. Там управляющий Южно-Африканского резервного банка Лесетья Кганьяго в своем выступлении на конференции по вопросам криптобезопасности заявил, что финансовый институт уже изучает блокчейн и заинтересован в инновациях, которые может дать эта технология. 

\n
 «Как центральный банк, мы открыты к инновациям несмотря на различное отношение регуляторов к криптовалютам. Мы намерены изучить все преимущества и недостатки технологии блокчейн и других распределённых реестров», — заявил Лесетья Кганьяго. 
\n

 В свою очередь, крупнейший банк Японии Bank of Tokyo-Mitsubishi UFJ (MUFG) объявил об окончании разработкиоснованного на блокчейне прототипа, позволяющего моментально обрабатывать и верифицировать платежи по чекам. Созданное решение в потенциале может быть использовано финансовыми институтами и различными компаниями в азиатском регионе. В будущем Bank of Tokyo-Mitsubishi надеется создать и другие решения на основе блокчейна, которым можно будет найти реальное применение.

\n

От азиатских разработчиков не отстают и представители консорциума R3 CEV, запатентовавшие новый продукт на основе биткоин-технологии Concord, предназначенный для использования в инфраструктуре Уолл-стрит.

\n

Concord представляет собой универсальную платформу, связывающую воедино рынки и компании и призванную перевести функции миддл- и бэк-офисов в цифровой вариант. Это даст возможность банкам избавиться от административных накладных расходов и сэкономить миллиарды долларов. Ожидается, что альфа-версия платформы будет запущена в середине 2017 года.

\n

Всё это заставляет финансовых аналитиков и экономистов следить за блокчейном более пристально, меняя свои прогнозы относительно будущего мировой финансовой системы.

\n

В частности, финансовый аналитик Кирилл Яковенко недавно заявил, что в ближайшие два-три года криптовалюты выйдут из тени и одновременно с этим появятся новые межнациональные финансовые инструменты.

\n
«В ближайшие два-три года технологии blockchain прочно укрепятся на межбанке, вытеснят системы обмена сообщениями между ними (в частности, систему SWIFT) и станут неотъемлемой частью торгов на рынках ценных бумаг. Что же касается криптовалют в привычном понимании, то они также, скорее всего, уже в ближайшем будущем выйдут из тени и вместе с технологией blockchain получат масштабное развитие», — считает Яковенко.
\n

КОМПАНИИ

\n

Датская компания Bitshares Munich IVS, владеющая брендом BlockPay, объявила о старте ICO. В ходе кампании предполагается собрать средства на развитие BlockPay, P2P-мессенджера ECHO и системы анонимных платежей Stealth. Проведение краудфандинговой кампании запланировано на 2016 и 2017 годы. Сама кампания состоит из предварительной ICO (Pre-ICO), запланированной на август текущего года, и основной, которая будет проведена в 2017 году. Всего планируется распространить 100 миллионов токенов BlockPay.

\n

Проект по созданию блокчейна с открытым кодом Hyperledger объявил имена нового состава технического комитета. Среди основных задач комитета — рассмотрение поступающих предложений и построение первоначальной унифицированной базы исходного кода.

\n

В новом составе комитета сохранили свои места технический директор R3CEV Гендал Браун, главный разработчик архитектуры распределенных реестров Digital Asset Holdings Тамаш Блуммер, исследователь Fujitsu Харт Монтгомери, инженер Intel Мик Боумен и главный технический директор направления открытых технологий IBM Кристофер Феррис. Среди новых имен – старший технический руководитель IBM Арно ле Ор, старший блокчейн-архитектор IBM Бин Нгуен, глава технических разработок Intel Дэн Миддлтон, а также представители DTCC, Salesforce и Лондонской фондовой биржи.

\n

Американский технологический стартап Chronicled Inc. объявил о запуске открытого реестра для Интернета вещей, который был создан на блокчейне Ethereum. Этот реестр предназначен для сохранения уникальных кодов физических объектов, имеющих встроенные чипы NFC и BLE.

\n
«Теперь все создатели материальных объектов, будь-то бренды, носители интеллектуальной собственности и прочее, могут регистрировать свои защищённые от подделок чипы в публичном блокчейне», — заявил директор Chronicled Райан Орр. На данный момент стартапом поставлено около 10 000 NFC и BLE чипов.
\n

Как сообщает издание Business Insider UK, крупнейшая в США телекоммуникационная компания Verizon Communications экспериментирует с технологией блокчейн. Так, в распоряжение редакции попал патент, полученный Verizon 10 мая этого года.

\n

Из описания патента следует, что компания разработала некое блокчейн-хранилище ключей, а работы над проектом велись на протяжении трёх лет. Введение подобной блокчейн-системы в сочетании со смарт-контрактами даёт массу новых возможностей в сфере использования цифрового контента. Например, музыкальные исполнители или авторы статей будут получать свою оплату сразу же после того, как пользователь начал читать материал или прослушивать песню.

\n

Валютное управление Сингапура (MAS) выступило с предложением введения единой лицензии на осуществление деятельности для компаний, предоставляющих платежные услуги, включая криптовалютные компании.

\n

Стало известно, что биткоин-стартап Keza выкуплен филиппинской компанией Satoshi Citadel Industries, в инвестиционном портфелем которой уже присутствуют такие стартапы, как Rebit.ph, Bitbit.cash и PrepaidBitcoin.ph.

\n
«Keza создавалась с прицелом на развивающиеся рынки и для пользователей, которые не имеют доступа к глобальным рынкам капитала. Мы счастливы, что теперь видение компании сможет быть реализовано», — цитирует CEO Keza Саймона Бернса издание Silicon Angle.
\n

Децентрализованная социальная сеть Steemit сообщила о «беспрецедентном уровне трафика», сопоставимым с тем, что получали на ранних этапах своего развития Facebook и Reddit.

\n

Как говорится в заявлении Steemit, на данный момент пользователи социальной сети ежедневно размещают более 21 000 новых записей, а количество голосов в поддержку постов превышает 70 000. Это сопоставимо с ранней активностью на площадках вроде Facebook и Reddit.

\n

За несколько недель до старта краудсейла платформы распространения контента DECENT команда проекта объявила о внесении изменений в систему дистрибуции токенов DCT. Также подверглось пересмотру общее количество подлежащих к выпуску монет. Как заявили в DECENT, это решение, хотя и является стратегическим, также было принято с учетом рекомендаций сообщества.

\n

Компания Coinbase сообщила о расширении географии своего сервиса на мобильных устройствах при помощи дебетовых и кредитных карт. Теперь возможность покупки криптовалют при помощи карт получили и пользователи Coinbase в Европе.

\n

Как говорится в заявлении Coinbase, в США 40% сделок по покупке криптовалюты при помощи дебетовых и кредитных карт осуществляются с мобильных устройств, поэтому компания стремится сделать этот сервис доступным в как можно большем количестве стран.

\n

ПЕРСОНАЛИИ

\n

Основатель компании Distributed Lab Павел Кравченко продолжил рассуждения о технологии блокчейн и сферах ее применения, назвав отрасли, которым она, на его взгляд, вряд ли нужна вообще. Соответствующий пост был размещен в его блоге на Medium.

\n

Высказав ранее мнение о том, что большой бизнес не готов по-настоящему к использованию блокчейна, Павел на этот раз представил своего рода гид для инвесторов. В нем описана основная проблематика при принятии решений и предлагается помощь в понимании того, действительно ли технология является для них необходимой.

\n
«Запросы об имплементации блокчейна я получаю каждый день. Однако часто я считаю, что блокчейн не нужен вовсе. Есть другие доступные типы архитектуры, и блокчейн – лишь один из них», — пишет Павел Кравченко.
\n

Ещё одним примечательным выступлением гуру блокчейна стала лекция канадского предпринимателя Дона Тэпскотта, автора недавно изданной книги «Революция блокчейна», выступившего с лекцией о технологии распределенного реестра на саммите TED Talk в Альберте. 

\n

 УКРАИНА

\n

В Украине продолжается внедрение блокчейн-сервисов в политикум страны. Так, команда e-Vox анонсировала запуск блокчейн-сервиса электронного голосования в городской Раде Балты (Одесская область). Об этом редакции ForkLog сообщил координатор проекта Алексей Конашевич. 

\n

\n

 Результаты голосования, внесенные в децентрализованную базу данных, позволят системно анализировать информацию и выводить статистику эффективности принимаемых решений. А блокчейн-протокол поможет надежно защитить информацию от внутреннего и внешнего противоправного вмешательства.

\n

Разработкой прототипа e-Vox занимались компании Ambisafe и Vareger.

\n

Не останавливаются работы в этом направлении и в Белой Церкви. Так, мэр города Геннадий Дикий зарегистрировал проект об использовании блокчейн-платформы Auction 3.0 в качестве одного из актов, который должен быть принят городским советом в ближайшее время.
\nОб этом говорится в решении «О внесении изменений в план деятельности Белоцерковского городского совета при подготовке проектов регулятивных актов на 2016 год», утвержденном городским советом Белой Церкви. 

\n

\n

 РОССИЯ

\n

В пятницу, 26 августа, замминистра финансов Алексей Моисеев сообщил о том, что Министерство финансов Российской Федерации выступает против введения «лобового запрета» биткоина. По его словам, законопроект о криптовалютах будет скорректирован по итогам предстоящей серии встреч с экспертами.

\n

Возможно, это заявление стало последствием встречи, которая состоялась 24 августа в администрации президента РФ под руководством советника по интернету Германа Клименко. На мероприятии обсуждалась технология блокчейн в России и возможности ее внедрения на государственном уровне.

\n

Не остались в стороне от процесса и власти Москвы, заявившие на этом же совещании о готовности внедрить технологию блокчейн в проект «Активный гражданин».

\n
«Москва готова быть площадкой для применения технологии блокчейн. И как раз в качестве пилотного проекта мы предлагаем предоставить проект «Активный гражданин». Мы хотим, с одной стороны, отпилотировать технологию и понять, насколько она дееспособна для решения такого рода задач. С другой стороны, снять с себя некий скепсис со стороны граждан», — заявил заместитель директора департамента информационных технологий Москвы Андрей Белозеров,
\n

Оказались вовлечёнными использование блокчейна и биткоина и российские политические силы. Российская «Партия Роста» подтвердила начало приема пожертвований в биткоинах, однако пользоваться собранными средствами она сможет только после принятия закона о статусе криптовалюты.

\n


\nВ связи с отсутствием нормативного регулирования переводов биткоинов на счета юридических лиц «биткоины будут перечисляться на кошелек Дмитрия Мариничева, интернет-омбудсмена и кандидата в депутаты по Медведковскому одномандатному округу».

\n

КИТАЙ

\n

Правительство Российской Федерации не единственное, занимающееся вопросами использования криптовалют и блокчейна. Так, правительство Китая объявило о создании рабочей группы по вопросам блокчейна. Целью нового стратегического альянса станет ускорение разработок и внедрение технологии в экономику страны, а также подготовка к Всемирному блокчейн-саммиту, который будет проведён в Шанхае в сентябре этого года.

\n

Неизвестно, ставится ли перед этой рабочей группой задача контролирования использования, но примечательным является тот факт, что практически одновременно с заявлением правительства крупнейшая поисковая система Китая Baidu без какого-либо предупреждения удалила всю рекламу, связанную с биткоином и другими виртуальными валютами.

\n

Об удалении рекламы биткоин-компаний сообщили две крупнейшие китайские биржи OKCoin и Huobi, пишет Bloomberg News. Представители Baidu на запрос агентства от комментариев воздержались. 

\n", - "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto\",\"money\",\"news\"],\"image\":[\"http://radikal.ru/fp/949b19ab0ea142769b5d5bad6918e850\",\"http://radikal.ru/fp/ab1e6cf8f8ce414d8555699b45afc0eb\",\"http://forklog.com/wp-content/uploads/0e6dbfdc-638d-11e6-8e55-cc0a56a8b37c-1.png\",\"http://forklog.com/wp-content/uploads/14152259_10202179476045465_1807948603_o.jpg\",\"http://forklog.com/wp-content/uploads/14022327_853179024818469_8570878217622377273_n-1.jpg\"],\"links\":[\"http://forklog.com/zhurnalu-forklog-dva-goda/\",\"http://forklog.com/birzha-bitstamp-otmechaet-pyatiletnij-yubilej/\",\"http://forklog.com/kriptovalyutnaya-birzha-gdax-dobavila-litecoin/\",\"http://forklog.com/birzha-poloniex-snimaet-s-torgov-the-dao-i-drugie-altkoiny/\",\"http://forklog.com/krupnejshaya-bitkoin-birzha-turtsii-ostanovila-rabotu-iz-za-problem-s-bankom/\",\"http://forklog.com/apparatnyj-koshelek-trezor-dobavil-podderzhku-ethereum/\",\"https://github.com/trezor/trezor-mcu/pull/103\",\"http://forklog.com/platezhnyj-servis-bitwala-vklyuchil-v-spisok-rabochih-altkoinov-dash-i-emercoin/\",\"http://forklog.com/venesuelskij-platyozhnyj-servis-cryptobuyer-dobavil-podderzhku-dash/\",\"http://forklog.com/sostoyalsya-reliz-novoj-versii-ethereum-koshelka-mist-s-podderzhkoj-coinbase-buy-widget/\",\"http://forklog.com/vedushhie-banki-mira-obedinilis-dlya-sozdaniya-novoj-kriptovalyuty/\",\"http://forklog.com/yuzhno-afrikanskij-rezervnyj-bank-gotov-k-ispolzovaniyu-blokchejna-i-kriptovalyut/\",\"http://forklog.com/yaponskie-korporatsii-testiruyut-blokchejn-platformu-dlya-chekovyh-raschetov/\",\"http://forklog.com/konsortsium-r3-cev-zapatentoval-blokchejn-platformu-dlya-infrastruktury-uoll-strit/\",\"http://forklog.com/ekonomisty-prognoziruyut-vytesnenie-sistemy-swift-blokchejnom/\",\"http://forklog.com/kompaniya-bitshares-munich-ivs-obyavila-o-nachale-ico/\",\"http://forklog.com/proekt-hyperledger-nazval-novyj-sostav-tehnicheskogo-komiteta/\",\"http://forklog.com/startap-chronicled-inc-zapustil-otkrytyj-reestr-dlya-interneta-veshhej/\",\"http://forklog.com/kompaniya-verizon-communications-zapatentovala-blokchejn-hranilishhe-klyuchej/\",\"http://forklog.com/kriptovalyutnye-kompanii-singapura-budut-poluchat-edinuyu-litsenziyu-na-osushhestvlenie-deyatelnosti/\",\"http://forklog.com/investitsionnyj-bitkoin-startap-keza-budet-spasen-blagodarya-satoshi-citadel-industries/\",\"http://forklog.com/poseshhaemost-steemit-sravnyalas-s-rannim-facebook/\",\"http://forklog.com/komanda-decent-obyavila-o-vazhnyh-izmeneniyah-v-sisteme-distributsii-tokenov/\",\"http://forklog.com/polzovateli-coinbase-v-evrope-poluchili-vozmozhnost-pokupat-kriptovalyutu-pri-pomoshhi-bankovskih-kart/\",\"http://forklog.com/osnovatel-distributed-lab-nazval-oblasti-kotorym-ne-nuzhen-blokchejn/\",\"https://medium.com/@pavelkravchenko/investor-guide-does-this-cool-project-truly-need-blockchain-bdde70a26bfb#.40cs8sfz2\",\"http://forklog.com/avtor-knig-o-blokchejne-don-tepskott-vystupil-na-ted-talk/\",\"http://forklog.com/dostignuta-dogovorennost-o-zapuske-e-vox-v-balte-odesskoj-oblasti/\",\"http://forklog.com/meriya-beloj-tserkvi-perehodit-na-blokchejn-platformu-auction-3-0/\",\"http://forklog.com/minfin-rf-protiv-pryamogo-zapreta-bitkoina/\",\"http://forklog.com/v-rossii-obsudili-kriptovalyuty-na-gosudarstvennom-urovne/\",\"http://forklog.com/partiya-rosta-utochnila-shemu-priema-pozhertvovanij-v-bitkoinah/\",\"http://forklog.com/kitaj-pristupil-k-issledovaniyu-blokchejna-na-gosudarstvennom-urovne/\",\"http://forklog.com/kitajskij-poiskovik-baidu-zablokiroval-vsyu-svyazannuyu-s-bitkoinom-reklamu/\"]}", - "last_update": "2016-08-28T17:15:09", - "created": "2016-08-28T17:15:09", - "active": "2016-08-28T17:15:09", - "last_payout": "2016-08-30T04:28:30", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-29T04:28:30", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "forklognews", - "root_permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779934, - "author": "paulsemmelweis", - "permlink": "it-s-just-a-game-to-governments-and-central-bankers", - "category": "economics", - "parent_author": "", - "parent_permlink": "economics", - "title": "It's just a game to governments and central bankers", - "body": "Discussed below are two new articles that shed light on the grand economic chessboard controlled by governments while paving the way for more lies and manipulation by the media...\n\nGlobal central bankers, stuck at zero, unite in plea for help from governments: https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\n\nAs Fed nears rate hikes, policymakers plan for 'brave new world': https://ca.news.yahoo.com/fed-nears-rate-hikes-policymakers-plan-brave-world-005117150--business.html\n\nWhile simultaneously espousing Obama's great economic achievements in the press for years after saving the nation from peril in 2008, central bankers now openly admit there's a very weak economy and a recovery that never was. You know, facts.\n\nWhile talk of \"new tools\" needed to fight the next recession unofficially dominated the annual meeting of our monetary overlords in Wyoming, it is quite clear that the main weapon in their arsenal is the same as it was then; to maintain control over human beings by selling a never ending stream of fiction to the public.\n\n\"it may take a massive program, large enough even to shock taxpayers\"\n\"hard to convince markets and households that things will get better\"\n\"encourage the shift in mood\"\n\"prevent public expectations\"\n\"do not respond in expected ways\"\n\nAnd this gem… \"In modern monetary theory, households and business expectations are felt to play a defining role.\"\n\nSounds really modern!\n\nThe article ends with this… \"It was not clear whether such ideas will catch on. But there was a broad sense here that the other side of government may need to up its game.\"\n\nA game indeed. Of mass manipulation for the benefit of those who rule us while easily selling the public what they are doing is in their best interests.", - "json_metadata": "{\"tags\":[\"economics\",\"government\",\"central\",\"banks\",\"recession\"],\"links\":[\"https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\"]}", - "last_update": "2016-08-28T17:14:12", - "created": "2016-08-28T17:14:12", - "active": "2016-08-28T17:14:12", - "last_payout": "2016-08-29T19:47:36", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T19:47:36", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "paulsemmelweis", - "root_permlink": "it-s-just-a-game-to-governments-and-central-bankers", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779930, - "author": "randolphrope", - "permlink": "steem-it-photo-challenge-6", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Steem.it photo challenge # 6", - "body": "On the way to Chinle, Arizona USA \n\nJust off the highway over looking the desert.\n\nhttp://imgur.com/ITp3j5l.jpg\n\nI just remember one on the drive.", - "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"\"],\"image\":[\"http://imgur.com/ITp3j5l.jpg\"]}", - "last_update": "2016-08-28T17:13:51", - "created": "2016-08-28T17:13:51", - "active": "2016-08-28T17:13:51", - "last_payout": "2016-08-29T18:29:18", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T18:29:18", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 6, - "root_author": "randolphrope", - "root_permlink": "steem-it-photo-challenge-6", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779923, - "author": "ebluefox", - "permlink": "the-pros-and-cons-of-empathy", - "category": "empathy", - "parent_author": "", - "parent_permlink": "empathy", - "title": "The Pros and Cons of Empathy", - "body": "Empathy is an interesting aspect of human nature that many people do not possess. Empathy in short is the ability to view an scenario from a different perspective than your own, normally to better understand someone's perspective on certain topics or ideas. This handy skill is a learned skill and when used effectively can be used to better understand humanity.\nBut as with every neat skill, they tend to have as many pros as they do cons. So i will attempt to explain the pros and cons that i have found apparent with empathy.\n There are quite a few pros to empathy, one of which being in your reputation. A person who uses empathy often is normally seen as a loving compassionate person. Another pro that is quite noticeable is the ability to understand unexplained problems. On occasion if a problem really troubles someone or is very personal, most people will not tell anyone about it. But with empathy you can figure out what is troubling them sometimes with something as simple as \"How have you been?\". A more prominent pro of using empathy is better understanding how a person truly is. Most people wear a \"Facade\" in public or a metaphorical mask, these tend to hide their true personality from the public eye and conceal most things about them. Using empathy, you can work around the \"Facade\" and figure out how they truly are as a person, and most of the time appreciate them a bit more.\n Empathy has allot of pros but also has its fair share of cons to go with it, a good example of one of its cons is a changed perspective. under most circumstances, use of empathy becomes a habit and changes your outlook on everyone around you. This is not really very terrible, but it can lead to you disliking a person more than would have normally. Another apparent con is over-assessing someone. This can happen when you use empathy on someone and spot something that would make you feel awful, but in truth does not faze them. Here is an example. You are talking with a person and figure out that they don't have a mother. To you that may seem horrible and you start pitying them, when in truth it may not even matter to them in the slightest. A more cumbersome problem with empathy lies with information. In order to understand or sympathize with someone you need to understand the problems they put up with. If you ask too many questions about their life, they may find you \"Nosy\" or \"Annoying\". On the contrary, if you do not inquire very much about them, you will not have any idea of their standpoint at all and cannot empathize with them. The last con i will cover is drama. It is very easy to get caught in some drama if you try to understand peoples problems, some of which may be very serious. Some people are not patient enough to deal with the newly acquired drama and can sometimes make the problem worse than it need to be.\n This list most definitely did not cover every pro or con associated with empathy because they will differ from person to person however i did cover a few recurring pros and cons. whether you think empathy is worth your time and energy is up to you and your values in life and social interaction.", - "json_metadata": "{\"tags\":[\"empathy\",\"psychology\",\"social-skills\",\"problems\"]}", - "last_update": "2016-08-28T17:13:21", - "created": "2016-08-28T17:13:21", - "active": "2016-08-28T17:13:21", - "last_payout": "2016-08-29T17:28:57", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T17:28:57", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "ebluefox", - "root_permlink": "the-pros-and-cons-of-empathy", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779920, - "author": "steemsquad", - "permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "Hello! We Are STEEMSQUAD And We Are Here to Support The Minnows. Read On.", - "body": "\n

We are STEEMSQUAD, a Steemit inititative to promote diversity and quality of content by featuring authors from the school of minnows.

\n

\"steem-squad3\"
\n

\n

WHAT is #steemsquad?

\n

Steemsquad is an initiative of multiple minnows whose objective is to promote diverse and quality content and their work which may not have a chance to get noticed when published in the main streem. STEEMSQUAD initiative will try to tweak the game to equally distribute the wealth among its members. 

\n

STEEMSQUAD is a community-backed account responsible for posting blogs of qualified authors and at the same time upvotes quality blog posts of its members.

\n

Members of STEEMSQUAD are from across multiple timelines to ensure a 24/7 support and active participation in Steemit.

\n

The Issue at Hand

\n

For quite some time, there has been a noticeable trend as to who gets rewards. Those favored are the whales themselves, members with high reputation levels, incoming popular personalities and celebrities either from the cryptocurrency world or the entertainment world. A number of people from the finance institutions have joined as well and have garnered huge rewards on their “introductory” posts.

\n

And what happens to those who are not celebrities, unknown personalities from not-so-popular backgrounds? Their posts get dumped, thrown into oblivion. Then all the sweat and blood poured spilled into writing the blog just go to waste. This is where #steemsquad comes in.

\n


\n

WHY We Do It?

\n

Steemit is a social media platform where **EVERYONE** gets paid for creating and curating content, as promised if and when you decide to dive into the Steemit Ocean. 

\n

It leverages a robust digital points system, called Steem, that supports real value for digital rewards through market price discovery and liquidity.

\n

We aim to give EVERYONE a chance to get noticed, earn rewards, and be a part of a community of people helping people.

\n

You Can Succeed

\n

All HOPE is NOT LOST. We have seen minnows rise to the occasion. With a positive attitude, an unwavering determination, lots and lots of good quality posts (one is enough though to get you 15k, if you hit the nail on the head), there is no reason why you can’t be successful here in Steemit.

\n

#steemsquad will support you along the way.

\n

OUR GOLDEN RULES

\n
    \n
  1. We give priority to quality contents from low-powered profiles (minnows).
  2. \n
  3. The published author gets 100% of SBD. However, 50% of which goes to the author’s SP to allow the author to power-up leveraging his/her SP to upvote other writers.
  4. \n
  5. Any SP earned by STEEMSQUAD remains in the STEEMSQUAD account to gain more voting power for the benefit of its members.
  6. \n
  7. Pay-it-forward. The powered-up author commits to help other writers by upvoting and commenting to blog post to increase the post’s value.
  8. \n
\n


\n

HOW TO GET PUBLISHED BY STEEMSQUAD

\n

\n

PHOTO CREDIT: Anna Frajtova / shutterstock.com
\n

\n
    \n
  1. FOLLOW the account STEEMSQUAD and be a member of the initiative.
  2. \n
  3. You have to signify your willingness to join by coming to our official chatroom in https://steemit.chat/channel/steemsquad. Introduce yourself and state your intention to join the initiative. Include a link to your Steemit profile.
  4. \n
  5. Submit your article in plain text format and links to images. Send your entry to @steemit.asia or @sebastien or @jaycobbell as a PM.
  6. \n
  7. Article must be at least 300 words with at least 1 image.
  8. \n
  9. Give credit to the images you use.
  10. \n
  11. If you quote someone, give credit as well.
  12. \n
  13. At least 80% of the article must be your own.
  14. \n
  15. You will get feedback after 24 hours and a schedule will be provided when your work will be published.
  16. \n
  17. Once it is published, it will be promoted to the chatroom by either @steemit.asia or @sebastien or @jaycobbell in https://steemit.chat/channel/steemsquadpromotional for all members to see. This is where all promotions are done.
  18. \n
\n


\n

HOW TO GET UPVOTED BY STEEMSQUAD AND MEMBERS

\n


\nPHOTO CREDIT: Clipartix.com
\n

\n
    \n
  1. To get a chance to be upvoted by STEEMSQUAD, you must have a QUALITY blog post.
  2. \n
  3. Use the tag #steemsquad in your blog post.
  4. \n
  5. Our curators will browse through all blog posts using our official #steemsquad tag name and choose will notify the author by commenting that the post has been chosen as a featured post/author. It will be promoted in our chat channel https://steemit.chat/channel/steemsquadpromotional.
  6. \n
\n


\n

STEEMSQUAD ACCOUNT SECURITY

\n

The Posting Key (The posting key is used for posting and voting. It should be different from the active and owner keys) will be given to at least 3 members of STEEMSQUAD responsible for posting blog posts in 24 hour cycle.

\n

The Active Key (The active key is used to make transfers and place orders in the internal market) will be given to 2 members of STEEMSQUAD. One member will act as auditor/backup in case the primary member is not available.

\n

The Owner Key (The owner key is the master key for the account and is required to change the other keys) is given to one Whale sponsor and 2 other members of STEEMSQUAD.

\n

A member responsible for the account security may hold more than one (1) key as shown above.

\n


\n

OUR MENTORS

\n

There are people we consider as examples on the platform. Inspiration, mentors.

\n

@juneaugoldbuyer
\n@thedollarvigilante
\n@dragonslayer109
\n@stellabelle
\n@charlieshreem
\n@rogerkver
\n@donkypong
\n@tuck-fheman
\n@masteryoda
\n@andrarchy 

\n

\"steem-squad-FOLLOW-US\"
\n

\n", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemsquad\",\"steemit\",\"minnows\",\"writing\"],\"users\":[\"steemit.asia\",\"sebastien\",\"jaycobbell\",\"juneaugoldbuyer\",\"dragonslayer109\",\"stellabelle\",\"charlieshreem\",\"rogerkver\",\"donkypong\",\"tuck-fheman\",\"masteryoda\",\"andrarchy\"],\"image\":[\"https://c1.staticflickr.com/9/8171/29209353271_2eabbba74f_o.png\",\"https://cdn.elegantthemes.com/blog/wp-content/uploads/2016/02/Essential-Blogging-Skills-Know-your-Audience-shutterstock_222537538-Anna-Frajtova.png\",\"http://clipartix.com/wp-content/uploads/2016/04/Thumbs-up-clipart-3.png\",\"https://c1.staticflickr.com/9/8305/29179909862_ed27607510_o.png\"],\"links\":[\"https://steemit.chat/channel/steemsquad.\",\"https://steemit.chat/channel/steemsquadpromotional\",\"https://steemit.chat/channel/steemsquadpromotional.\"]}", - "last_update": "2016-08-28T17:13:18", - "created": "2016-08-28T17:13:18", - "active": "2016-09-11T21:09:09", - "last_payout": "2016-08-30T11:08:54", - "depth": 0, - "children": 18, - "net_rshares": "2243580957008", - "abs_rshares": "2243580957008", - "vote_rshares": "2243580957008", - "children_abs_rshares": "2254360518257", - "cashout_time": "2016-09-29T11:08:54", - "max_cashout_time": "2016-09-13T14:10:24", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "566", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "173", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 588, - "net_votes": 57, - "root_author": "steemsquad", - "root_permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778828, - "author": "okay", - "permlink": "this-week-s-sky-aug-27-sep-3", - "category": "science", - "parent_author": "", - "parent_permlink": "science", - "title": "This Week's Sky Aug-27/Sep-3", - "body": "## A picture is worth a thousand words, more so in astronomy ##\n\n**Let's take a look at the coming week's sky**\n\n\nhttp://www.skyandtelescope.com/wp-content/uploads/Venus-Jupiter-27Aug2016_f.jpg\n(Image courtesy of Sky and Telescope)\nOn August 27th, about 45 minutes after sunset, go outdoors and start looking low above the horizon in the west for an amazingly close pairing of Venus and Jupiter.\n\nhttp://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\n\n\nNext weekend, shortly after sunset, the thin Moon (waxing crescent) steps away from Venus and Jupiter.\n\nLooking at the night sky is a great joy! Free for everyone with no ticket required. You can watch the evening sky with your naked eye, no need for telescope or binoculars for these beautiful astronomical events.\n\n*Stay tuned for next week's sky.*\n\n\n\n\n If you enjoyed this post please vote for my witness node. Learn how to vote for witness `okay` **at the end of my witness post** by [**clicking here**](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network). ", - "json_metadata": "{\"tags\":[\"science\",\"astronomy\"],\"image\":[\"http://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", - "last_update": "2016-08-28T17:13:03", - "created": "2016-08-28T15:45:33", - "active": "2016-08-28T17:13:03", - "last_payout": "2016-08-29T16:11:21", - "depth": 0, - "children": 5, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T16:11:21", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "okay", - "root_permlink": "this-week-s-sky-aug-27-sep-3", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779916, - "author": "skyefox", - "permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", - "category": "garden", - "parent_author": "", - "parent_permlink": "garden", - "title": "A small garden update... My Pink Brandywine Tomatoes are coming!", - "body": "As I have stated in earlier posts, gardening is currently my obsession.. it's seems wild to me that the standard is to work for currency and trade currency for food rather than just growing your own food. \n

Here is my small harvest from this morning!

\nEvery morning I go out and eat a couple of my cherry tomatoes, a few leafy greens, and usually 1/2 a leaf of my sweet basil. It's a wonderful thing to wake up, take the dog out and get a healthy organic little snack. I love it.\nhttps://s14.postimg.org/62aqviz0h/IMG_1804.jpg\n\n\nI understand that gardening takes time, effort, and a little bit of knowledge but in my opinion it is one of the most reward \"hobbies.\" This is my first year gardening. I decided to garden this year because I have been doing more and more reading about the American food industry and my conclusion is that the American population are being made sick on purpose through the food we eat. I don't know exactly what does what in our food but it seems absolutely insane to me that we can't get the FDA to evaluate any dietary supplements but they will evaluate and even vouch for these lab made pharmaceutical drugs. \n\nAll of this lead me to feeling a strong urge to grow organic food. I honestly feel guilty when I feed my family and I don't fully believe in what we are eating. Don't get me wrong, I love pepperoni pizza but ignorance is bliss, and I am not ignorant to what I am eating. \n\nI believe I am slowly heading down the path of becoming a vegan as I gain more knowledge. I have always been a hunter and a fisherman, it's what I was taught as a young boy in the north woods. I love to hunt and fish, but I also have a very deep compassion for life. Not human life, but life in general. I believe that we are intelligent enough as a species to live without causing harm to other living things that are equipped with nervous systems. I guess I am just realizing day by day that things are not necessarily what I have been told... \n

This kind of sums up how I feel currently...

\nhttps://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\n\nI am not a very good consumer. I am very frugal and calculated with my money, sometimes to a fault. I'm also not good at being an employee and just being a \"gear in the machine.\" I was not built to work and be told what to do while someone acts as if their employment position somehow gives them a higher status than I. We are humans, you just have a different job. These factors, and many others, have lead to me being self employed and trying to find my way on the internet. I have dabble in many things online and I have learned enough to at least provide myself with enough income to pay my mortgage, bills, etc.. \n\nI am also someone that is in the prepper mind state. I have started my small stockpile of beans, rice, and various other dried foods. I think that the American people have become complacent and many of us are just chasing the carrot we were instructed to chase. Many people seem to not realize the fact that we as a country heavily depend on other people or corporations for the things we use everyday. If water and electricity were to be shut off and panic set it, many people would die because they don't know what to do without someone else providing them with these luxuries. \n\nI don't like the idea of depending on anyone for anything. I have always been someone who provided for myself. I got a job at 14 years old at the local bakery working Saturday mornings so that I could get my first computer myself. I worked for weeks, since I was only getting paid $5.15/hour (roughly 13 years ago) it took me a long time to save up for a computer to play Counterstrike 1.5... We had 6 kids in our house in a \"middle class\" family, needless to say we were told to get jobs as early as possible to acquire our luxuries. Since then I have had the mindset that I don't want to allow someone else to be \"the hand that feeds\", and that applies to food, water, electricity, and even knowledge of my child. \n\nDEPENDENCY OPENS THE DOORS FOR EXPLOITATION! And in a capitalist driven global economy, if it can be exploited, it often is. \n\nMy apologies, there I go again, going of on some rant instead of just showing you the damn garden update. I already can't wait for next spring. I have been buying heirloom vegetable seeds and thrift shopping for large planters for $1 so that next year I can grow lots more. \n

This is the Pink Brandywine that I am so excited about!

\nThese guys took forever to grow. I didn't know what I was doing and I had put too many plants in 1 planter which caused them to compete for the nutrients. On top of them a strong storm came through and blew these guys over and bent there stalks horizontal. I really didn't know if I would get any fruit from them, but they are changing and I can't wait to eat these!\nhttps://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\n\nhttps://s14.postimg.org/e3txgbbgh/IMG_1800.jpg\n\nHere is a cucumber that is growing a little goofy. Not sure why but its like a beer can cucumber... lol\nhttps://s14.postimg.org/c1tg22dhd/IMG_1802.jpg\n\nA more normal cucumber... \nhttps://s14.postimg.org/610t23x6p/IMG_1803.jpg\n\nAnd this is my $3 table I built so that I could start my seeds indoors under some fluorescent lights. \n\n\nhttps://s14.postimg.org/6t3h1b1dt/IMG_1805.jpg\n\n\nThank you for reading and happy gardening!", - "json_metadata": "{\"tags\":[\"garden\",\"photography\",\"rant\",\"food\"],\"image\":[\"https://s14.postimg.org/62aqviz0h/IMG_1804.jpg\",\"https://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\",\"https://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\"]}", - "last_update": "2016-08-28T17:12:54", - "created": "2016-08-28T17:12:54", - "active": "2016-08-28T17:36:42", - "last_payout": "2016-08-29T18:11:57", - "depth": 0, - "children": 2, - "net_rshares": "130408996119", - "abs_rshares": "130408996119", - "vote_rshares": "130408996119", - "children_abs_rshares": "130408996119", - "cashout_time": "2016-09-28T18:11:57", - "max_cashout_time": "2016-09-12T21:18:18", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "123", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "15", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 125, - "net_votes": 37, - "root_author": "skyefox", - "root_permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779915, - "author": "fitiliper1985", - "permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", - "category": "sex", - "parent_author": "", - "parent_permlink": "sex", - "title": "In a relationship, sex becomes a matter of selfishness or unselfishness.", - "body": "
http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png
\n

\n

Before I was in a relationship, I didn't have much sex. My first sexual intercourse occurred while I was travelling overseas on a holiday by myself. I met a woman in hawaii at the airport, and later had sex with her.

\n

I had done a lot of masturbating prior to this. I had often thought about having sex, and I found that my sexual drive caused me to behave in ways that I normally wouldn't. 

\n

\n
https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg
\n

\n

For example I would follow women I found attractive, or I would try to look up their skirts, or I would wander about at night to try to look into bedroom windows.

\n

When I met someone that I knew I would marry, I thought I would be able to have sex as much as I liked because my wife would always be available to have it with me. This turned out to be untrue. My wife didn't want to have sex as often as I wanted to, and I found myself still masturbating while I waited for the next time to come.

\n

I don't think women understand the power of their husband's sexual drive. 

\n

\n
http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg
\n

\n

Men are attracted to women by how they look. It doesn't matter if they are strangers. Men will look at a woman dressed in  a certain way and will start feeling horny. As soon as they ejaculate, the feeling of horniness goes, but will return in a couple of hours. When the sexual desire comes upon a man, it becomes his dominating thought, and it demands to be satisfied. That's why many men then masturbate in order to relieve the pressure on their thoughts. If unrelieved the pressure grows and if the wife is unwilling to have sex, then some men will look for other women to have sex with. 

\n

The sexual pressure is constantly present in a man's mind until relief comes.

\n

\n
https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg
\n

\n

Most women are not as interested in sex as men. 

\n

\n
https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg
\n

\n

Women are more interested in relationship.  Women have sex with a man in the hope that the man will want to stay in their life and have a relationship with them. 

\n

Some women use sex as a bait to catch a man, and then when the relationship is happening, they are not as interested in sex anymore. Women enjoy sex, but as part of a fulfilling relationship. Men just want to put their penis into a vagina and ejaculate. As soon as ejaculation occurs, a lot of men lose all interest in the woman. The woman then feels hurt and used because she didn't get what she wanted which was relationship. Men will say anything they think a woman wants to hear in order to have sex.

\n

Wives who have sex with their husbands when not really wanting it, feel used by their husbands. Women also can be selfish when they demand sex from men who are not in the mood. 

\n

God created sex to be enjoyed in a committed relationship between a man and a woman who are one person physically, spiritually, emotionally, and mentally. 

\n

Sex is a part of the relationship, not the main thing. If a man demands sex then he is being selfish, and his relationship will be harmed if the woman gives sex to the man when she is not wanting to have it. If the man wants sex with his wife, then he must give her what she wants. He must romance her and give her a good relationship. Then if sex happens, it will be enjoyable for both of them. This will build the relationship.

", - "json_metadata": "{\"tags\":[\"sex\",\"psychology\",\"life\",\"story\",\"\"],\"image\":[\"http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png\",\"https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg\",\"http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg\",\"https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg\",\"https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg\"]}", - "last_update": "2016-08-28T17:12:42", - "created": "2016-08-28T17:12:42", - "active": "2016-08-28T18:08:06", - "last_payout": "2016-08-29T17:56:42", - "depth": 0, - "children": 5, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T17:56:42", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 12, - "root_author": "fitiliper1985", - "root_permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779914, - "author": "s0lo", - "permlink": "road-map-ethereum-classic-helped-to-keep-the-course", - "category": "road", - "parent_author": "", - "parent_permlink": "road", - "title": "Road map Ethereum Classic helped to keep the course.", - "body": "\n

\n

Slightly more than a month since then, how did the Ethereum classic (ETC). The ETC team presented a \"road map\" of development of the project, at the first meeting of the supporters of Ethereum Classic (ETC), held on 18 August in London.

\n
The basic version of partitioning the network according to the version of ETC was this:
\n
\"The separation of Ethereum was the result of a difference in the understanding of the basic principle of cryptocurrency. At that time, as fork (ETH) was carried out to recover the stolen funds to investors DAO, Ethereum classic is the original version, based on the principle that \"code is law.\"
\n

Supporters of the ETS argue that the decentralization of infrastructure are insufficient to minimize the possibility of hacking and fraud. For example, the developers of Ethereum actively invested their funds in DAO. Therefore, the decision about hard forks could be dictated by a conflict of interest.

\n

Community ETC believes that all key aspects of the ecosystem should be decentralized, including technological functions such as research and development, and public and administrative functions, including marketing, development and management of the DAPP.

\n

There are plans to remove so-called \"bomb of complexity\" (constant increase in the complexity of mining at ETH) to provide POW mining and make ETC more viable for the miners.

\n

In addition, the community is considering a new economic policy and hybrid solutions using Proof-of-stake (PoS). And, finally, developed new technology to ensure the functioning of \"smart contracts\", but no details.

\n

Classic Ethereum plans to develop the community to the upcoming events in Toronto, Shanghai and Melbourne. These meetings should be used to create local centers. In addition, the stage of development of the relationships with universities, startups and companies. Road map to the end of this year aims to reach consensus with the main team ETC. and receive financial support of developers from third parties.

\n

Initially, the team ETC was planning to copy all the updates that are entered in the ETH, but later decided to give myself a certain amount of autonomy. how and by whom it will be implemented - at the moment neizvestnoy

\n

In 2017, ETC will test different mechanisms of consensus and optimal monetary policy system. In addition, meetings will be held in an expanded format to appeal to a greater number of miners and the following year to create their own ecosystem the development of DAPP.

\n

Perhaps in the course of the year will be able to understand how realistic are attempts to \"overtake and surpass\" team Baterina in the main activities of the Ethereum project.

\n

By 2018, the community ETC choose PoW or hybrid mechanism of consensus and create the proper monetary policy.

\n

More concrete steps at this meeting was not presented.

\n

The rate continues to fall.

\n

Despite the publication of the road map and programme of community development, exchange rate ETC continues to fall. ETC cryptocurrency by market capitalization behind Litecoin and Steem, even given the significant losses the last, and is now in sixth place. ETC remains below the psychologically important level of $2.00 that is displayed on the chart.

\n

\n

ETC trend/USD exchange Poloniex has broken below the most recent level of the fractal at $1.60. A daily close below this level should lead us to a level of $1.34. Please note that the conversion line (blue) currently has resistance at $ 1.7235. 

\n

In addition, the trading volume of the Ethereum classic naturally falling after the initial hype created around this cryptocurrency. This also indicates a greater risk and tells about the deterioration of the situation. Thus, the market is looking down with a possible reversal on the $ 1.34 or even $ 1.00.

\n", - "json_metadata": "{\"tags\":[\"road\",\"map\",\"etc\",\"ethereum\",\"classic\"],\"image\":[\"http://bits.media/images/news/260816/260816_ethereum-classic-roadmap_1.jpg\",\"http://bits.media/images/news/260816/260816_ethereum-classic-roadmap_2.jpg\"]}", - "last_update": "2016-08-28T17:12:39", - "created": "2016-08-28T17:12:39", - "active": "2016-08-28T17:12:39", - "last_payout": "2016-08-29T17:44:00", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T17:44:00", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 3950, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "s0lo", - "root_permlink": "road-map-ethereum-classic-helped-to-keep-the-course", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 588, + "beneficiaries": [], + "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", + "cashout_time": "2016-09-28T20:19:39", + "category": "foodchallenge", + "children": 18, + "children_abs_rshares": 2374341643, + "created": "2016-08-28T17:15:12", + "curator_payout_value": { + "amount": "131", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779947, + "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:15:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T01:24:24", + "net_rshares": 0, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "foodchallenge", + "percent_hbd": 10000, + "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", + "total_payout_value": { + "amount": "576", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:15:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "forklognews", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\u041f\u0440\u043e\u0448\u0435\u0434\u0448\u0430\u044f \u043d\u0435\u0434\u0435\u043b\u044f \u043e\u043a\u0430\u0437\u0430\u043b\u0430\u0441\u044c \u0431\u043e\u0433\u0430\u0442\u043e\u0439 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u043c\u0438, \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u043c \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0434\u043b\u044f \u043d\u0430\u0448\u0435\u0439 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u0441\u0442\u0430\u043b\u043e \u0434\u0432\u0443\u0445\u043b\u0435\u0442\u0438\u0435 Forklog. \u0414\u0432\u0430 \u0433\u043e\u0434\u0430 \u043d\u0430\u0437\u0430\u0434, 25 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0431\u044b\u043b \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0434\u043e\u043c\u0435\u043d ForkLog.com, \u0430 \u0441\u043f\u0443\u0441\u0442\u044f \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u0434\u0435\u043b\u0430\u043d\u044b \u043f\u0435\u0440\u0432\u044b\u0435 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u043d\u0430 \u0441\u0430\u0439\u0442\u0435. \u041e\u0431 \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0445, \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u0445 \u043c\u0438\u0440\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442, \u0432\u044b \u0443\u0437\u043d\u0430\u0435\u0442\u0435 \u0438\u0437 \u043d\u0430\u0448\u0435\u0433\u043e \u0435\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0439\u0434\u0436\u0435\u0441\u0442\u0430. 

\n

 \u0411\u0418\u0420\u0416\u0418

\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u0438\u043c\u0435\u043d\u0438\u043d\u043d\u0438\u043a\u043e\u043c \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0438 \u0441\u0442\u0430\u043b\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 Bitstamp, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u043e\u0442\u043c\u0435\u0442\u0438\u043b\u0430 \u043f\u044f\u0442\u0438\u043b\u0435\u0442\u0438\u0435 \u0441\u043e \u0434\u043d\u044f \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f. \u041a \u044d\u0442\u043e\u043c\u0443 \u0441\u043e\u0431\u044b\u0442\u0438\u044e \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0438\u0443\u0440\u043e\u0447\u0438\u043b\u0430 \u043a\u043e\u043d\u043a\u0443\u0440\u0441 \u0441 \u0446\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0440\u0438\u0437\u0430\u043c\u0438.

\n

\u041d\u043e \u044e\u0431\u0438\u043b\u0435\u0438 \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043f\u043e\u0432\u043e\u0434\u043e\u043c \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0430\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 \u0438 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0431\u0438\u0440\u0436 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0440\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0442 \u044d\u0442\u043e \u043c\u043d\u0435\u043d\u0438\u0435, \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u044f \u0433\u0434\u0435-\u0442\u043e \u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0435, \u0430 \u0433\u0434\u0435-\u0442\u043e \u0438 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f.

\n

\u0422\u0430\u043a, \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 GDAX \u043d\u0430\u0447\u0430\u043b\u0430 \u0442\u043e\u0440\u0433\u0438 \u0447\u0435\u0442\u0432\u0435\u0440\u0442\u043e\u0439 \u043f\u043e \u0440\u044b\u043d\u043e\u0447\u043d\u043e\u0439 \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043e\u0439 Litecoin. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0434\u0435\u043b\u0430\u043d\u043e \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0431\u043b\u043e\u0433\u0435 \u0431\u0438\u0440\u0436\u0438. \u0414\u043b\u044f \u0442\u043e\u0440\u0433\u043e\u0432 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0434\u0432\u0435 \u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043f\u0430\u0440\u044b: \u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430\u043c \u0421\u0428\u0410 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043f\u0430\u0440\u0430 LTC / USD, \u0432\u0441\u0435\u043c \u043f\u0440\u043e\u0447\u0438\u043c \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u2014 \u043f\u0430\u0440\u0430 LTC / BTC.

\n

\u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, 23 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0442\u0432\u0438\u0442\u0442\u0435\u0440\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u043e\u0439 \u0431\u0438\u0440\u0436\u0438 Poloniex \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043e\u0441\u043d\u044f\u0442\u0438\u0438 \u0441 \u0442\u043e\u0440\u0433\u043e\u0432 27 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442. \u0422\u043e\u0440\u0433\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0435\u043d\u044b 5 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430 \u0438 \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0443\u0436\u0435 \u0432\u044b\u0437\u0432\u0430\u043b\u043e \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043d\u0435\u0434\u043e\u0443\u043c\u0435\u043d\u0438\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430, \u0432\u0435\u0434\u044c \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u0447\u0435\u043d\u044c \u0432\u043e\u0448\u043b\u0438 \u0442\u0430\u043a\u0438\u0435 \u0430\u043b\u044c\u0442\u043a\u043e\u0438\u043d\u044b, \u043a\u0430\u043a DAO, Dashcoin \u0438 Mintcoin, \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0438\u0433 $1,22 \u043c\u043b\u043d. 

\n

\n

 \u041f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u043a \u043a\u043e\u043d\u0446\u0443 \u0438 \u043d\u0430\u0448\u0443\u043c\u0435\u0432\u0448\u0430\u044f \u0438\u0441\u0442\u043e\u0440\u0438\u044f \u0441 \u0431\u0438\u0440\u0436\u0435\u0439 Bitfinex, \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0435\u0439 \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u0437\u043b\u043e\u043c\u0430. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0431\u0438\u0440\u0436\u0438 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u0438\u0438 \u0434\u043e\u0433\u043e\u0432\u043e\u0440\u0430 \u0441 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u043e\u0439 BnkToTheFuture \u0441 \u0446\u0435\u043b\u044c\u044e \u0432\u043e\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0440\u0435\u0434\u0441\u0442\u0432 \u0432\u043a\u043b\u0430\u0434\u0447\u0438\u043a\u043e\u0432 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u0434\u043e\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0447\u0430\u0441\u0442\u0438\u044f \u0432 \u0430\u043a\u0446\u0438\u043e\u043d\u0435\u0440\u043d\u043e\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438. 

\n

\n

 \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0443 \u0441 BnkToTheFuture \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Bitfinex \u0441\u043c\u043e\u0433\u0443\u0442 \u043e\u0431\u043c\u0435\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u0438\u043c \u0442\u043e\u043a\u0435\u043d\u044b BFX \u043d\u0430 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0443\u044e \u0434\u043e\u043b\u044e \u0432 iFinex Inc, \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438\u0445 \u0412\u0438\u0440\u0433\u0438\u043d\u0441\u043a\u0438\u0445 \u041e\u0441\u0442\u0440\u043e\u0432\u0430\u0445 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u0430\u044f \u043d\u043e\u0432\u043e\u0441\u0442\u044c \u043f\u0440\u0438\u0448\u043b\u0430 \u043d\u0430 \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0435 \u0438\u0437 \u0422\u0443\u0440\u0446\u0438\u0438, \u0433\u0434\u0435 \u0432\u0435\u0434\u0443\u0449\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0438 BTCTurk \u0431\u044b\u043b\u0430 \u0432\u044b\u043d\u0443\u0436\u0434\u0435\u043d\u0430 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443, \u0441\u0442\u043e\u043b\u043a\u043d\u0443\u0432\u0448\u0438\u0441\u044c \u0441 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u043e\u043c \u043e\u0442\u043a\u0430\u0437\u043e\u043c \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0430 \u043e\u0442 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0433\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430. \u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442 \u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c, \u043e\u0434\u043d\u0430\u043a\u043e \u0438\u0437-\u0437\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0445 \u0441\u0447\u0435\u0442\u043e\u0432 \u044d\u0442\u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u0442\u044f\u043d\u0443\u0442\u044c\u0441\u044f. 

\n

 \u041a\u041e\u0428\u0415\u041b\u042c\u041a\u0418 \u0418 \u041f\u041b\u0410\u0422\u0401\u0416\u041d\u042b\u0415 \u0421\u0415\u0420\u0412\u0418\u0421\u042b

\n

\u041f\u0435\u0440\u0432\u044b\u043c \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u044b\u043c \u043a\u043e\u0448\u0435\u043b\u044c\u043a\u043e\u043c, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0438\u043c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Ethereum, \u0441\u0442\u0430\u043b Trezor. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0430 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 Trezor \u043d\u0430 Github.

\n

\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043e\u0442 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438-\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430 SatoshiLabs \u043f\u043e\u043a\u0430, \u0432\u043f\u0440\u043e\u0447\u0435\u043c, \u043d\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u043b\u043e, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0434\u0430\u0442\u0430 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0435\u043b\u0438\u0437\u0430 \u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u0430 \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043e\u0441\u0442\u0430\u0435\u0442\u0441\u044f \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e\u0439.

\n

\u0421\u043f\u0438\u0441\u043a\u0438 \u0440\u0430\u0431\u043e\u0447\u0438\u0445 \u0432\u0430\u043b\u044e\u0442 \u043f\u043e\u043f\u043e\u043b\u043d\u0438\u043b\u0438\u0441\u044c \u0443 \u043f\u043b\u0430\u0442\u0451\u0436\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 Bitwala, \u0432\u043a\u043b\u044e\u0447\u0438\u0432\u0448\u0435\u0433\u043e \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Dash \u0438 Emercoin, \u0438 \u0432\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044c\u0441\u043a\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b Cryptobuyer, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0435\u0439 Dash. \u041e\u0442\u043c\u0435\u0442\u0438\u043c, \u0447\u0442\u043e \u0436\u0438\u0442\u0435\u043b\u0438 \u0412\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044b, \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043d\u0435\u0442 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u0432 \u043b\u0438\u0431\u043e \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u043e\u0432 \u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u0432 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442, \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0443\u0441\u043b\u0443\u0433\u0430\u043c\u0438 \u043c\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0451\u0440\u0430 Cryptobuyer \u2013 \u0441\u0435\u0442\u044c\u044e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u043c\u0430\u0442\u043e\u0432 TigoCTM.

\n

\u0422\u0430\u043a\u0436\u0435 \u0432\u044b\u0448\u043b\u0430 \u0432 \u0441\u0432\u0435\u0442 \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f Ethereum-\u043a\u043e\u0448\u0435\u043b\u044c\u043a\u0430 Mist \u0441 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u043e\u0439 Coinbase Buy Widget. \u041e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0435\u0451 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u043e\u0441\u043e\u0431\u0435\u043d\u043d\u043e\u0441\u0442\u0435\u0439 \u0441\u0442\u0430\u043b\u043e \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 Coinbase Buy Widget \u2013 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430, \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0438\u0442\u044c \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u043a\u0443\u043f\u043a\u0443 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043d\u0430 \u0441\u0443\u043c\u043c\u0443 \u0434\u043e $5.

\n

\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0434\u0430\u043d\u043d\u0430\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c \u0438\u0437 \u0421\u0428\u0410 \u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043d\u0430\u043b\u0438\u0447\u0438\u044f \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430 \u043d\u0430 Coinbase. 

\n

\n

 \u0411\u0410\u041d\u041a\u0418 \u0418 \u041a\u041e\u0420\u041f\u041e\u0420\u0410\u0426\u0418\u0418

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u043c \u0438\u0437\u0432\u0435\u0441\u0442\u0438\u0435\u043c, \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u044b\u043c \u0441\u0442\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0432\u0435\u0441\u0442\u043d\u0438\u043a\u043e\u043c \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0445 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0435, \u0441\u0442\u0430\u043b\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0438\u0437\u0434\u0430\u043d\u0438\u044f Financial Times \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0440\u044f\u0434 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0445 \u043c\u0438\u0440\u043e\u0432\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u0432 \u043f\u0440\u0438\u043d\u044f\u043b \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043d\u043e\u0432\u043e\u0439 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u043b\u044e\u0442\u044b. \u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0435\u0439 \u0431\u0430\u043d\u043a\u043e\u0432 UBS, Deutsche Bank, Santander \u0438 BNY Mellon \u043e\u0436\u0438\u0434\u0430\u043b\u043e\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u043d\u043e \u0434\u043e \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u043d\u0435 \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c.

\n

\u0415\u0441\u043b\u0438 \u044d\u0442\u043e \u043e\u043a\u0430\u0436\u0435\u0442\u0441\u044f \u043d\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u0443\u0442\u043a\u043e\u0439, \u0442\u043e \u0441\u0442\u043e\u0438\u0442 \u043e\u0436\u0438\u0434\u0430\u0442\u044c, \u0447\u0442\u043e \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u043a \u044d\u0442\u043e\u0439 \u0438\u043d\u0438\u0446\u0438\u0430\u0442\u0438\u0432\u0435 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u044f\u0442\u0441\u044f \u0438 \u043f\u0440\u043e\u0447\u0438\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u044b \u0441\u043e \u0432\u0441\u0435\u0445 \u043a\u043e\u043d\u0446\u043e\u0432 \u0441\u0432\u0435\u0442\u0430, \u0434\u0430\u0436\u0435 \u0441 \u0434\u0430\u043b\u0451\u043a\u043e\u0433\u043e \u0430\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0438\u043d\u0435\u043d\u0442\u0430. \u0422\u0430\u043c \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0439 \u042e\u0436\u043d\u043e-\u0410\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u0431\u0430\u043d\u043a\u0430 \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e \u0432 \u0441\u0432\u043e\u0435\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0438 \u043d\u0430 \u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0438\u0438 \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u043a\u0440\u0438\u043f\u0442\u043e\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u0443\u0436\u0435 \u0438\u0437\u0443\u0447\u0430\u0435\u0442 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0437\u0430\u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043e\u0432\u0430\u043d \u0432 \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0434\u0430\u0442\u044c \u044d\u0442\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f. 

\n
 \u00ab\u041a\u0430\u043a \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u0431\u0430\u043d\u043a, \u043c\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044b \u043a \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u043c \u043d\u0435\u0441\u043c\u043e\u0442\u0440\u044f \u043d\u0430 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u043e\u0435 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u043e\u0440\u043e\u0432 \u043a \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u043c. \u041c\u044b \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u044b \u0438\u0437\u0443\u0447\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043a\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e. 
\n

 \u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0439 \u0431\u0430\u043d\u043a \u042f\u043f\u043e\u043d\u0438\u0438 Bank of Tokyo-Mitsubishi UFJ (MUFG) \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e\u0431 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0438 \u0432\u0435\u0440\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043b\u0430\u0442\u0435\u0436\u0438 \u043f\u043e \u0447\u0435\u043a\u0430\u043c. \u0421\u043e\u0437\u0434\u0430\u043d\u043d\u043e\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0432 \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u043c\u0438 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u0430\u043c\u0438 \u0438 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u043c\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f\u043c\u0438 \u0432 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u043e\u043c \u0440\u0435\u0433\u0438\u043e\u043d\u0435. \u0412 \u0431\u0443\u0434\u0443\u0449\u0435\u043c Bank of Tokyo-Mitsubishi \u043d\u0430\u0434\u0435\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043c\u043e\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043d\u0430\u0439\u0442\u0438 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u0435.

\n

\u041e\u0442 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432 \u043d\u0435 \u043e\u0442\u0441\u0442\u0430\u044e\u0442 \u0438 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 \u043a\u043e\u043d\u0441\u043e\u0440\u0446\u0438\u0443\u043c\u0430 R3 CEV, \u0437\u0430\u043f\u0430\u0442\u0435\u043d\u0442\u043e\u0432\u0430\u0432\u0448\u0438\u0435 \u043d\u043e\u0432\u044b\u0439 \u043f\u0440\u043e\u0434\u0443\u043a\u0442 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 Concord, \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0439 \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0435 \u0423\u043e\u043b\u043b-\u0441\u0442\u0440\u0438\u0442.

\n

Concord \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0441\u043e\u0431\u043e\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0443, \u0441\u0432\u044f\u0437\u044b\u0432\u0430\u044e\u0449\u0443\u044e \u0432\u043e\u0435\u0434\u0438\u043d\u043e \u0440\u044b\u043d\u043a\u0438 \u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0438 \u043f\u0440\u0438\u0437\u0432\u0430\u043d\u043d\u0443\u044e \u043f\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u043c\u0438\u0434\u0434\u043b- \u0438 \u0431\u044d\u043a-\u043e\u0444\u0438\u0441\u043e\u0432 \u0432 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u0440\u0438\u0430\u043d\u0442. \u042d\u0442\u043e \u0434\u0430\u0441\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0431\u0430\u043d\u043a\u0430\u043c \u0438\u0437\u0431\u0430\u0432\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u044b\u0445 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432 \u0438 \u0441\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0442\u044c \u043c\u0438\u043b\u043b\u0438\u0430\u0440\u0434\u044b \u0434\u043e\u043b\u043b\u0430\u0440\u043e\u0432. \u041e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f, \u0447\u0442\u043e \u0430\u043b\u044c\u0444\u0430-\u0432\u0435\u0440\u0441\u0438\u044f \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430 \u0432 \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435 2017 \u0433\u043e\u0434\u0430.

\n

\u0412\u0441\u0451 \u044d\u0442\u043e \u0437\u0430\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u043e\u0432 \u0438 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0441\u0442\u043e\u0432 \u0441\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u043e\u043c \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u043b\u044c\u043d\u043e, \u043c\u0435\u043d\u044f\u044f \u0441\u0432\u043e\u0438 \u043f\u0440\u043e\u0433\u043d\u043e\u0437\u044b \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b.

\n

\u0412 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a \u041a\u0438\u0440\u0438\u043b\u043b \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u044d\u0442\u0438\u043c \u043f\u043e\u044f\u0432\u044f\u0442\u0441\u044f \u043d\u043e\u0432\u044b\u0435 \u043c\u0435\u0436\u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b.

\n
\u00ab\u0412 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 blockchain \u043f\u0440\u043e\u0447\u043d\u043e \u0443\u043a\u0440\u0435\u043f\u044f\u0442\u0441\u044f \u043d\u0430 \u043c\u0435\u0436\u0431\u0430\u043d\u043a\u0435, \u0432\u044b\u0442\u0435\u0441\u043d\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043e\u0431\u043c\u0435\u043d\u0430 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043c\u0435\u0436\u0434\u0443 \u043d\u0438\u043c\u0438 (\u0432 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0441\u0438\u0441\u0442\u0435\u043c\u0443 SWIFT) \u0438 \u0441\u0442\u0430\u043d\u0443\u0442 \u043d\u0435\u043e\u0442\u044a\u0435\u043c\u043b\u0435\u043c\u043e\u0439 \u0447\u0430\u0441\u0442\u044c\u044e \u0442\u043e\u0440\u0433\u043e\u0432 \u043d\u0430 \u0440\u044b\u043d\u043a\u0430\u0445 \u0446\u0435\u043d\u043d\u044b\u0445 \u0431\u0443\u043c\u0430\u0433. \u0427\u0442\u043e \u0436\u0435 \u043a\u0430\u0441\u0430\u0435\u0442\u0441\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0432 \u043f\u0440\u0438\u0432\u044b\u0447\u043d\u043e\u043c \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438, \u0442\u043e \u043e\u043d\u0438 \u0442\u0430\u043a\u0436\u0435, \u0441\u043a\u043e\u0440\u0435\u0435 \u0432\u0441\u0435\u0433\u043e, \u0443\u0436\u0435 \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u043c \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 blockchain \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u043d\u043e\u0435 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435\u00bb, \u2014 \u0441\u0447\u0438\u0442\u0430\u0435\u0442 \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e.
\n

\u041a\u041e\u041c\u041f\u0410\u041d\u0418\u0418

\n

\u0414\u0430\u0442\u0441\u043a\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Bitshares Munich IVS, \u0432\u043b\u0430\u0434\u0435\u044e\u0449\u0430\u044f \u0431\u0440\u0435\u043d\u0434\u043e\u043c BlockPay, \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0441\u0442\u0430\u0440\u0442\u0435 ICO. \u0412 \u0445\u043e\u0434\u0435 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 BlockPay, P2P-\u043c\u0435\u0441\u0441\u0435\u043d\u0434\u0436\u0435\u0440\u0430 ECHO \u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u044b\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u0435\u0439 Stealth. \u041f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043a\u0440\u0430\u0443\u0434\u0444\u0430\u043d\u0434\u0438\u043d\u0433\u043e\u0432\u043e\u0439 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043d\u0430 2016 \u0438 2017 \u0433\u043e\u0434\u044b. \u0421\u0430\u043c\u0430 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u043e\u0441\u0442\u043e\u0438\u0442 \u0438\u0437 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 ICO (Pre-ICO), \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0430\u0432\u0433\u0443\u0441\u0442 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430, \u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0430 \u0432 2017 \u0433\u043e\u0434\u0443. \u0412\u0441\u0435\u0433\u043e \u043f\u043b\u0430\u043d\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c 100 \u043c\u0438\u043b\u043b\u0438\u043e\u043d\u043e\u0432 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 BlockPay.

\n

\u041f\u0440\u043e\u0435\u043a\u0442 \u043f\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c \u043a\u043e\u0434\u043e\u043c Hyperledger \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u0438\u043c\u0435\u043d\u0430 \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u043e\u0441\u0442\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430. \u0421\u0440\u0435\u0434\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u2014 \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u044e\u0449\u0438\u0445 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0438 \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0439 \u0443\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0431\u0430\u0437\u044b \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u043a\u043e\u0434\u0430.

\n

\u0412 \u043d\u043e\u0432\u043e\u043c \u0441\u043e\u0441\u0442\u0430\u0432\u0435 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u043b\u0438 \u0441\u0432\u043e\u0438 \u043c\u0435\u0441\u0442\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 R3CEV \u0413\u0435\u043d\u0434\u0430\u043b \u0411\u0440\u0430\u0443\u043d, \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432 Digital Asset Holdings \u0422\u0430\u043c\u0430\u0448 \u0411\u043b\u0443\u043c\u043c\u0435\u0440, \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c Fujitsu \u0425\u0430\u0440\u0442 \u041c\u043e\u043d\u0442\u0433\u043e\u043c\u0435\u0440\u0438, \u0438\u043d\u0436\u0435\u043d\u0435\u0440 Intel \u041c\u0438\u043a \u0411\u043e\u0443\u043c\u0435\u043d \u0438 \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 IBM \u041a\u0440\u0438\u0441\u0442\u043e\u0444\u0435\u0440 \u0424\u0435\u0440\u0440\u0438\u0441. \u0421\u0440\u0435\u0434\u0438 \u043d\u043e\u0432\u044b\u0445 \u0438\u043c\u0435\u043d \u2013 \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c IBM \u0410\u0440\u043d\u043e \u043b\u0435 \u041e\u0440, \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u043e\u0440 IBM \u0411\u0438\u043d \u041d\u0433\u0443\u0435\u043d, \u0433\u043b\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a Intel \u0414\u044d\u043d \u041c\u0438\u0434\u0434\u043b\u0442\u043e\u043d, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 DTCC, Salesforce \u0438 \u041b\u043e\u043d\u0434\u043e\u043d\u0441\u043a\u043e\u0439 \u0444\u043e\u043d\u0434\u043e\u0432\u043e\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0441\u0442\u0430\u0440\u0442\u0430\u043f Chronicled Inc. \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u0434\u043b\u044f \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430 \u0432\u0435\u0449\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u044b\u043b \u0441\u043e\u0437\u0434\u0430\u043d \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 Ethereum. \u042d\u0442\u043e\u0442 \u0440\u0435\u0435\u0441\u0442\u0440 \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d \u0434\u043b\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0445 \u043a\u043e\u0434\u043e\u0432 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0438\u043c\u0435\u044e\u0449\u0438\u0445 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435 \u0447\u0438\u043f\u044b NFC \u0438 BLE.

\n
\u00ab\u0422\u0435\u043f\u0435\u0440\u044c \u0432\u0441\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0438 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0431\u0443\u0434\u044c-\u0442\u043e \u0431\u0440\u0435\u043d\u0434\u044b, \u043d\u043e\u0441\u0438\u0442\u0435\u043b\u0438 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0438 \u043f\u0440\u043e\u0447\u0435\u0435, \u043c\u043e\u0433\u0443\u0442 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0437\u0430\u0449\u0438\u0449\u0451\u043d\u043d\u044b\u0435 \u043e\u0442 \u043f\u043e\u0434\u0434\u0435\u043b\u043e\u043a \u0447\u0438\u043f\u044b \u0432 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 Chronicled \u0420\u0430\u0439\u0430\u043d \u041e\u0440\u0440. \u041d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u043e\u043c \u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043e \u043e\u043a\u043e\u043b\u043e 10 000 NFC \u0438 BLE \u0447\u0438\u043f\u043e\u0432.
\n

\u041a\u0430\u043a \u0441\u043e\u043e\u0431\u0449\u0430\u0435\u0442 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Business Insider UK, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u0432 \u0421\u0428\u0410 \u0442\u0435\u043b\u0435\u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Verizon Communications \u044d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0438\u0440\u0443\u0435\u0442 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0422\u0430\u043a, \u0432 \u0440\u0430\u0441\u043f\u043e\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u043f\u043e\u043f\u0430\u043b \u043f\u0430\u0442\u0435\u043d\u0442, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 Verizon 10 \u043c\u0430\u044f \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u0418\u0437 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u043f\u0430\u0442\u0435\u043d\u0442\u0430 \u0441\u043b\u0435\u0434\u0443\u0435\u0442, \u0447\u0442\u043e \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u0430 \u043d\u0435\u043a\u043e\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043a\u043b\u044e\u0447\u0435\u0439, \u0430 \u0440\u0430\u0431\u043e\u0442\u044b \u043d\u0430\u0434 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u043c \u0432\u0435\u043b\u0438\u0441\u044c \u043d\u0430 \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0442\u0440\u0451\u0445 \u043b\u0435\u0442. \u0412\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043f\u043e\u0434\u043e\u0431\u043d\u043e\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0432 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u0438 \u0441\u043e \u0441\u043c\u0430\u0440\u0442-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430\u043c\u0438 \u0434\u0430\u0451\u0442 \u043c\u0430\u0441\u0441\u0443 \u043d\u043e\u0432\u044b\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u0432 \u0441\u0444\u0435\u0440\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0438\u043b\u0438 \u0430\u0432\u0442\u043e\u0440\u044b \u0441\u0442\u0430\u0442\u0435\u0439 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0441\u0432\u043e\u044e \u043e\u043f\u043b\u0430\u0442\u0443 \u0441\u0440\u0430\u0437\u0443 \u0436\u0435 \u043f\u043e\u0441\u043b\u0435 \u0442\u043e\u0433\u043e, \u043a\u0430\u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0430\u0447\u0430\u043b \u0447\u0438\u0442\u0430\u0442\u044c \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b \u0438\u043b\u0438 \u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430\u0442\u044c \u043f\u0435\u0441\u043d\u044e.

\n

\u0412\u0430\u043b\u044e\u0442\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440\u0430 (MAS) \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u043b\u043e \u0441 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0435\u0434\u0438\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439, \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u043d\u044b\u0435 \u0443\u0441\u043b\u0443\u0433\u0438, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438.

\n

\u0421\u0442\u0430\u043b\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0447\u0442\u043e \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0441\u0442\u0430\u0440\u0442\u0430\u043f Keza \u0432\u044b\u043a\u0443\u043f\u043b\u0435\u043d \u0444\u0438\u043b\u0438\u043f\u043f\u0438\u043d\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 Satoshi Citadel Industries, \u0432 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u043c \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u043c \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0443\u0436\u0435 \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0442 \u0442\u0430\u043a\u0438\u0435 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u044b, \u043a\u0430\u043a Rebit.ph, Bitbit.cash \u0438 PrepaidBitcoin.ph.

\n
\u00abKeza \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u043b\u0430\u0441\u044c \u0441 \u043f\u0440\u0438\u0446\u0435\u043b\u043e\u043c \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u044e\u0449\u0438\u0435\u0441\u044f \u0440\u044b\u043d\u043a\u0438 \u0438 \u0434\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0435 \u0438\u043c\u0435\u044e\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u043c \u0440\u044b\u043d\u043a\u0430\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0430. \u041c\u044b \u0441\u0447\u0430\u0441\u0442\u043b\u0438\u0432\u044b, \u0447\u0442\u043e \u0442\u0435\u043f\u0435\u0440\u044c \u0432\u0438\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0441\u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0440\u0435\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043e\u00bb, \u2014 \u0446\u0438\u0442\u0438\u0440\u0443\u0435\u0442 CEO Keza \u0421\u0430\u0439\u043c\u043e\u043d\u0430 \u0411\u0435\u0440\u043d\u0441\u0430 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Silicon Angle.
\n

\u0414\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0435\u0442\u044c Steemit \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u00ab\u0431\u0435\u0441\u043f\u0440\u0435\u0446\u0435\u0434\u0435\u043d\u0442\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u0442\u0440\u0430\u0444\u0438\u043a\u0430\u00bb, \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u044b\u043c \u0441 \u0442\u0435\u043c, \u0447\u0442\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u043b\u0438 \u043d\u0430 \u0440\u0430\u043d\u043d\u0438\u0445 \u044d\u0442\u0430\u043f\u0430\u0445 \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f Facebook \u0438 Reddit.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Steemit, \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u0435\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u043e \u0440\u0430\u0437\u043c\u0435\u0449\u0430\u044e\u0442 \u0431\u043e\u043b\u0435\u0435 21 000 \u043d\u043e\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0430 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432 \u0432 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u043f\u043e\u0441\u0442\u043e\u0432 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0435\u0442 70 000. \u042d\u0442\u043e \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u043e \u0441 \u0440\u0430\u043d\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c\u044e \u043d\u0430 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0430\u0445 \u0432\u0440\u043e\u0434\u0435 Facebook \u0438 Reddit.

\n

\u0417\u0430 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u0434\u0435\u043b\u044c \u0434\u043e \u0441\u0442\u0430\u0440\u0442\u0430 \u043a\u0440\u0430\u0443\u0434\u0441\u0435\u0439\u043b\u0430 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 DECENT \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0434\u0438\u0441\u0442\u0440\u0438\u0431\u0443\u0446\u0438\u0438 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 DCT. \u0422\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0432\u0435\u0440\u0433\u043b\u043e\u0441\u044c \u043f\u0435\u0440\u0435\u0441\u043c\u043e\u0442\u0440\u0443 \u043e\u0431\u0449\u0435\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0445 \u043a \u0432\u044b\u043f\u0443\u0441\u043a\u0443 \u043c\u043e\u043d\u0435\u0442. \u041a\u0430\u043a \u0437\u0430\u044f\u0432\u0438\u043b\u0438 \u0432 DECENT, \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435, \u0445\u043e\u0442\u044f \u0438 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u043c, \u0442\u0430\u043a\u0436\u0435 \u0431\u044b\u043b\u043e \u043f\u0440\u0438\u043d\u044f\u0442\u043e \u0441 \u0443\u0447\u0435\u0442\u043e\u043c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430.

\n

\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Coinbase \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0438 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0441\u0432\u043e\u0435\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u043d\u0430 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442. \u0422\u0435\u043f\u0435\u0440\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u043a\u0443\u043f\u043a\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u043a\u0430\u0440\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Coinbase \u0432 \u0415\u0432\u0440\u043e\u043f\u0435.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Coinbase, \u0432 \u0421\u0428\u0410 40% \u0441\u0434\u0435\u043b\u043e\u043a \u043f\u043e \u043f\u043e\u043a\u0443\u043f\u043a\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0441 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0435\u043c\u0438\u0442\u0441\u044f \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u044d\u0442\u043e\u0442 \u0441\u0435\u0440\u0432\u0438\u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0432 \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435\u043c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0435 \u0441\u0442\u0440\u0430\u043d.

\n

\u041f\u0415\u0420\u0421\u041e\u041d\u0410\u041b\u0418\u0418

\n

\u041e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Distributed Lab \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u0440\u0430\u0441\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u044f \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0441\u0444\u0435\u0440\u0430\u0445 \u0435\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f, \u043d\u0430\u0437\u0432\u0430\u0432 \u043e\u0442\u0440\u0430\u0441\u043b\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043e\u043d\u0430, \u043d\u0430 \u0435\u0433\u043e \u0432\u0437\u0433\u043b\u044f\u0434, \u0432\u0440\u044f\u0434 \u043b\u0438 \u043d\u0443\u0436\u043d\u0430 \u0432\u043e\u043e\u0431\u0449\u0435. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u043f\u043e\u0441\u0442 \u0431\u044b\u043b \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d \u0432 \u0435\u0433\u043e \u0431\u043b\u043e\u0433\u0435 \u043d\u0430 Medium.

\n

\u0412\u044b\u0441\u043a\u0430\u0437\u0430\u0432 \u0440\u0430\u043d\u0435\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u0431\u0438\u0437\u043d\u0435\u0441 \u043d\u0435 \u0433\u043e\u0442\u043e\u0432 \u043f\u043e-\u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u043c\u0443 \u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u041f\u0430\u0432\u0435\u043b \u043d\u0430 \u044d\u0442\u043e\u0442 \u0440\u0430\u0437 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u043b \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u043e\u0434\u0430 \u0433\u0438\u0434 \u0434\u043b\u044f \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432. \u0412 \u043d\u0435\u043c \u043e\u043f\u0438\u0441\u0430\u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0430\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430\u0442\u0438\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u0438 \u0440\u0435\u0448\u0435\u043d\u0438\u0439 \u0438 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u043f\u043e\u043c\u043e\u0449\u044c \u0432 \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438 \u0442\u043e\u0433\u043e, \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043b\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043d\u0438\u0445 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0439.

\n
\u00ab\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043e\u0431 \u0438\u043c\u043f\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u044f \u043f\u043e\u043b\u0443\u0447\u0430\u044e \u043a\u0430\u0436\u0434\u044b\u0439 \u0434\u0435\u043d\u044c. \u041e\u0434\u043d\u0430\u043a\u043e \u0447\u0430\u0441\u0442\u043e \u044f \u0441\u0447\u0438\u0442\u0430\u044e, \u0447\u0442\u043e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u043d\u0435 \u043d\u0443\u0436\u0435\u043d \u0432\u043e\u0432\u0441\u0435. \u0415\u0441\u0442\u044c \u0434\u0440\u0443\u0433\u0438\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0442\u0438\u043f\u044b \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b, \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u2013 \u043b\u0438\u0448\u044c \u043e\u0434\u0438\u043d \u0438\u0437 \u043d\u0438\u0445\u00bb, \u2014 \u043f\u0438\u0448\u0435\u0442 \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e.
\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0435\u043c \u0433\u0443\u0440\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441\u0442\u0430\u043b\u0430 \u043b\u0435\u043a\u0446\u0438\u044f \u043a\u0430\u043d\u0430\u0434\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044f \u0414\u043e\u043d\u0430 \u0422\u044d\u043f\u0441\u043a\u043e\u0442\u0442\u0430, \u0430\u0432\u0442\u043e\u0440\u0430 \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0438\u0437\u0434\u0430\u043d\u043d\u043e\u0439 \u043a\u043d\u0438\u0433\u0438 \u00ab\u0420\u0435\u0432\u043e\u043b\u044e\u0446\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430\u00bb, \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u0432\u0448\u0435\u0433\u043e \u0441 \u043b\u0435\u043a\u0446\u0438\u0435\u0439 \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u043d\u0430 \u0441\u0430\u043c\u043c\u0438\u0442\u0435 TED Talk \u0432 \u0410\u043b\u044c\u0431\u0435\u0440\u0442\u0435. 

\n

 \u0423\u041a\u0420\u0410\u0418\u041d\u0410

\n

\u0412 \u0423\u043a\u0440\u0430\u0438\u043d\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u043e\u0432 \u0432 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0443\u043c \u0441\u0442\u0440\u0430\u043d\u044b. \u0422\u0430\u043a, \u043a\u043e\u043c\u0430\u043d\u0434\u0430 e-Vox \u0430\u043d\u043e\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043b\u0430 \u0437\u0430\u043f\u0443\u0441\u043a \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0439 \u0420\u0430\u0434\u0435 \u0411\u0430\u043b\u0442\u044b (\u041e\u0434\u0435\u0441\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c). \u041e\u0431 \u044d\u0442\u043e\u043c \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 ForkLog \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u043e\u0440 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041a\u043e\u043d\u0430\u0448\u0435\u0432\u0438\u0447. 

\n

\n

 \u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f, \u0432\u043d\u0435\u0441\u0435\u043d\u043d\u044b\u0435 \u0432 \u0434\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u0431\u0430\u0437\u0443 \u0434\u0430\u043d\u043d\u044b\u0445, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0438 \u0432\u044b\u0432\u043e\u0434\u0438\u0442\u044c \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0443 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0440\u0435\u0448\u0435\u043d\u0438\u0439. \u0410 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u043f\u043e\u043c\u043e\u0436\u0435\u0442 \u043d\u0430\u0434\u0435\u0436\u043d\u043e \u0437\u0430\u0449\u0438\u0442\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e\u0442 \u0432\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0435\u0433\u043e \u0438 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043f\u0440\u0430\u0432\u043d\u043e\u0433\u043e \u0432\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430.

\n

\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u043e\u0439 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430 e-Vox \u0437\u0430\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Ambisafe \u0438 Vareger.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0432 \u044d\u0442\u043e\u043c \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438 \u0432 \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. \u0422\u0430\u043a, \u043c\u044d\u0440 \u0433\u043e\u0440\u043e\u0434\u0430 \u0413\u0435\u043d\u043d\u0430\u0434\u0438\u0439 \u0414\u0438\u043a\u0438\u0439 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043b \u043f\u0440\u043e\u0435\u043a\u0442 \u043e\u0431 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b Auction 3.0 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043e\u0434\u043d\u043e\u0433\u043e \u0438\u0437 \u0430\u043a\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u043f\u0440\u0438\u043d\u044f\u0442 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u0435 \u0432\u0440\u0435\u043c\u044f.
\n\u041e\u0431 \u044d\u0442\u043e\u043c \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0440\u0435\u0448\u0435\u043d\u0438\u0438 \u00ab\u041e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043f\u043b\u0430\u043d \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0411\u0435\u043b\u043e\u0446\u0435\u0440\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0433\u043e \u0441\u043e\u0432\u0435\u0442\u0430 \u043f\u0440\u0438 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u044b\u0445 \u0430\u043a\u0442\u043e\u0432 \u043d\u0430 2016 \u0433\u043e\u0434\u00bb, \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043d\u043e\u043c \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. 

\n

\n

 \u0420\u041e\u0421\u0421\u0418\u042f

\n

\u0412 \u043f\u044f\u0442\u043d\u0438\u0446\u0443, 26 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0437\u0430\u043c\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041c\u043e\u0438\u0441\u0435\u0435\u0432 \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u041c\u0438\u043d\u0438\u0441\u0442\u0435\u0440\u0441\u0442\u0432\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u0435\u0442 \u043f\u0440\u043e\u0442\u0438\u0432 \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u00ab\u043b\u043e\u0431\u043e\u0432\u043e\u0433\u043e \u0437\u0430\u043f\u0440\u0435\u0442\u0430\u00bb \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430. \u041f\u043e \u0435\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u043c, \u0437\u0430\u043a\u043e\u043d\u043e\u043f\u0440\u043e\u0435\u043a\u0442 \u043e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u0445 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d \u043f\u043e \u0438\u0442\u043e\u0433\u0430\u043c \u043f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0435\u0440\u0438\u0438 \u0432\u0441\u0442\u0440\u0435\u0447 \u0441 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u0430\u043c\u0438.

\n

\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u044d\u0442\u043e \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u043b\u043e \u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u0435\u043c \u0432\u0441\u0442\u0440\u0435\u0447\u0438, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0441\u043e\u0441\u0442\u043e\u044f\u043b\u0430\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430 \u0420\u0424 \u043f\u043e\u0434 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e\u043c \u0441\u043e\u0432\u0435\u0442\u043d\u0438\u043a\u0430 \u043f\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0443 \u0413\u0435\u0440\u043c\u0430\u043d\u0430 \u041a\u043b\u0438\u043c\u0435\u043d\u043a\u043e. \u041d\u0430 \u043c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u0438 \u043e\u0431\u0441\u0443\u0436\u0434\u0430\u043b\u0430\u0441\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u0420\u043e\u0441\u0441\u0438\u0438 \u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0435\u0435 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f \u043d\u0430 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043b\u0438\u0441\u044c \u0432 \u0441\u0442\u043e\u0440\u043e\u043d\u0435 \u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0438 \u0432\u043b\u0430\u0441\u0442\u0438 \u041c\u043e\u0441\u043a\u0432\u044b, \u0437\u0430\u044f\u0432\u0438\u0432\u0448\u0438\u0435 \u043d\u0430 \u044d\u0442\u043e\u043c \u0436\u0435 \u0441\u043e\u0432\u0435\u0449\u0430\u043d\u0438\u0438 \u043e \u0433\u043e\u0442\u043e\u0432\u043d\u043e\u0441\u0442\u0438 \u0432\u043d\u0435\u0434\u0440\u0438\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb.

\n
\u00ab\u041c\u043e\u0441\u043a\u0432\u0430 \u0433\u043e\u0442\u043e\u0432\u0430 \u0431\u044b\u0442\u044c \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0418 \u043a\u0430\u043a \u0440\u0430\u0437 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0438\u043b\u043e\u0442\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043c\u044b \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb. \u041c\u044b \u0445\u043e\u0442\u0438\u043c, \u0441 \u043e\u0434\u043d\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u043e\u0442\u043f\u0438\u043b\u043e\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0438 \u043f\u043e\u043d\u044f\u0442\u044c, \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043e\u043d\u0430 \u0434\u0435\u0435\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u0430 \u0434\u043b\u044f \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u0442\u0430\u043a\u043e\u0433\u043e \u0440\u043e\u0434\u0430 \u0437\u0430\u0434\u0430\u0447. \u0421 \u0434\u0440\u0443\u0433\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u0441\u043d\u044f\u0442\u044c \u0441 \u0441\u0435\u0431\u044f \u043d\u0435\u043a\u0438\u0439 \u0441\u043a\u0435\u043f\u0441\u0438\u0441 \u0441\u043e \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0437\u0430\u043c\u0435\u0441\u0442\u0438\u0442\u0435\u043b\u044c \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0430 \u0434\u0435\u043f\u0430\u0440\u0442\u0430\u043c\u0435\u043d\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 \u041c\u043e\u0441\u043a\u0432\u044b \u0410\u043d\u0434\u0440\u0435\u0439 \u0411\u0435\u043b\u043e\u0437\u0435\u0440\u043e\u0432,
\n

\u041e\u043a\u0430\u0437\u0430\u043b\u0438\u0441\u044c \u0432\u043e\u0432\u043b\u0435\u0447\u0451\u043d\u043d\u044b\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0438 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430 \u0438 \u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0435 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0438\u043b\u044b. \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u00ab\u041f\u0430\u0440\u0442\u0438\u044f \u0420\u043e\u0441\u0442\u0430\u00bb \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u043b\u0430 \u043d\u0430\u0447\u0430\u043b\u043e \u043f\u0440\u0438\u0435\u043c\u0430 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0439 \u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430\u0445, \u043e\u0434\u043d\u0430\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u043c\u0438 \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430\u043c\u0438 \u043e\u043d\u0430 \u0441\u043c\u043e\u0436\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u044f \u0437\u0430\u043a\u043e\u043d\u0430 \u043e \u0441\u0442\u0430\u0442\u0443\u0441\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b.

\n


\n\u0412 \u0441\u0432\u044f\u0437\u0438 \u0441 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435\u043c \u043d\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0440\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u043e\u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u0432 \u043d\u0430 \u0441\u0447\u0435\u0442\u0430 \u044e\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043b\u0438\u0446 \u00ab\u0431\u0438\u0442\u043a\u043e\u0438\u043d\u044b \u0431\u0443\u0434\u0443\u0442 \u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u044f\u0442\u044c\u0441\u044f \u043d\u0430 \u043a\u043e\u0448\u0435\u043b\u0435\u043a \u0414\u043c\u0438\u0442\u0440\u0438\u044f \u041c\u0430\u0440\u0438\u043d\u0438\u0447\u0435\u0432\u0430, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043e\u043c\u0431\u0443\u0434\u0441\u043c\u0435\u043d\u0430 \u0438 \u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442\u0430 \u0432 \u0434\u0435\u043f\u0443\u0442\u0430\u0442\u044b \u043f\u043e \u041c\u0435\u0434\u0432\u0435\u0434\u043a\u043e\u0432\u0441\u043a\u043e\u043c\u0443 \u043e\u0434\u043d\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u043d\u043e\u043c\u0443 \u043e\u043a\u0440\u0443\u0433\u0443\u00bb.

\n

\u041a\u0418\u0422\u0410\u0419

\n

\u041f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u043d\u0435 \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435, \u0437\u0430\u043d\u0438\u043c\u0430\u044e\u0449\u0435\u0435\u0441\u044f \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0422\u0430\u043a, \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u041a\u0438\u0442\u0430\u044f \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u043e \u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0438 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0426\u0435\u043b\u044c\u044e \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u043b\u044c\u044f\u043d\u0441\u0430 \u0441\u0442\u0430\u043d\u0435\u0442 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a \u0438 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0432 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0443 \u0441\u0442\u0440\u0430\u043d\u044b, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043a \u0412\u0441\u0435\u043c\u0438\u0440\u043d\u043e\u043c\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0430\u043c\u043c\u0438\u0442\u0443, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0451\u043d \u0432 \u0428\u0430\u043d\u0445\u0430\u0435 \u0432 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u0435 \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0441\u0442\u0430\u0432\u0438\u0442\u0441\u044f \u043b\u0438 \u043f\u0435\u0440\u0435\u0434 \u044d\u0442\u043e\u0439 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f, \u043d\u043e \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0442\u043e\u0442 \u0444\u0430\u043a\u0442, \u0447\u0442\u043e \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u043f\u043e\u0438\u0441\u043a\u043e\u0432\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u041a\u0438\u0442\u0430\u044f Baidu \u0431\u0435\u0437 \u043a\u0430\u043a\u043e\u0433\u043e-\u043b\u0438\u0431\u043e \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f \u0443\u0434\u0430\u043b\u0438\u043b\u0430 \u0432\u0441\u044e \u0440\u0435\u043a\u043b\u0430\u043c\u0443, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u0443\u044e \u0441 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u043c \u0438 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u0432\u0430\u043b\u044e\u0442\u0430\u043c\u0438.

\n

\u041e\u0431 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0438 \u0434\u0432\u0435 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0435 \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0435 \u0431\u0438\u0440\u0436\u0438 OKCoin \u0438 Huobi, \u043f\u0438\u0448\u0435\u0442 Bloomberg News. \u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 Baidu \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441 \u0430\u0433\u0435\u043d\u0442\u0441\u0442\u0432\u0430 \u043e\u0442 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u0432\u043e\u0437\u0434\u0435\u0440\u0436\u0430\u043b\u0438\u0441\u044c. 

\n", + "cashout_time": "2016-09-29T04:28:30", + "category": "bitcoin", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:15:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779945, + "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto\",\"money\",\"news\"],\"image\":[\"http://radikal.ru/fp/949b19ab0ea142769b5d5bad6918e850\",\"http://radikal.ru/fp/ab1e6cf8f8ce414d8555699b45afc0eb\",\"http://forklog.com/wp-content/uploads/0e6dbfdc-638d-11e6-8e55-cc0a56a8b37c-1.png\",\"http://forklog.com/wp-content/uploads/14152259_10202179476045465_1807948603_o.jpg\",\"http://forklog.com/wp-content/uploads/14022327_853179024818469_8570878217622377273_n-1.jpg\"],\"links\":[\"http://forklog.com/zhurnalu-forklog-dva-goda/\",\"http://forklog.com/birzha-bitstamp-otmechaet-pyatiletnij-yubilej/\",\"http://forklog.com/kriptovalyutnaya-birzha-gdax-dobavila-litecoin/\",\"http://forklog.com/birzha-poloniex-snimaet-s-torgov-the-dao-i-drugie-altkoiny/\",\"http://forklog.com/krupnejshaya-bitkoin-birzha-turtsii-ostanovila-rabotu-iz-za-problem-s-bankom/\",\"http://forklog.com/apparatnyj-koshelek-trezor-dobavil-podderzhku-ethereum/\",\"https://github.com/trezor/trezor-mcu/pull/103\",\"http://forklog.com/platezhnyj-servis-bitwala-vklyuchil-v-spisok-rabochih-altkoinov-dash-i-emercoin/\",\"http://forklog.com/venesuelskij-platyozhnyj-servis-cryptobuyer-dobavil-podderzhku-dash/\",\"http://forklog.com/sostoyalsya-reliz-novoj-versii-ethereum-koshelka-mist-s-podderzhkoj-coinbase-buy-widget/\",\"http://forklog.com/vedushhie-banki-mira-obedinilis-dlya-sozdaniya-novoj-kriptovalyuty/\",\"http://forklog.com/yuzhno-afrikanskij-rezervnyj-bank-gotov-k-ispolzovaniyu-blokchejna-i-kriptovalyut/\",\"http://forklog.com/yaponskie-korporatsii-testiruyut-blokchejn-platformu-dlya-chekovyh-raschetov/\",\"http://forklog.com/konsortsium-r3-cev-zapatentoval-blokchejn-platformu-dlya-infrastruktury-uoll-strit/\",\"http://forklog.com/ekonomisty-prognoziruyut-vytesnenie-sistemy-swift-blokchejnom/\",\"http://forklog.com/kompaniya-bitshares-munich-ivs-obyavila-o-nachale-ico/\",\"http://forklog.com/proekt-hyperledger-nazval-novyj-sostav-tehnicheskogo-komiteta/\",\"http://forklog.com/startap-chronicled-inc-zapustil-otkrytyj-reestr-dlya-interneta-veshhej/\",\"http://forklog.com/kompaniya-verizon-communications-zapatentovala-blokchejn-hranilishhe-klyuchej/\",\"http://forklog.com/kriptovalyutnye-kompanii-singapura-budut-poluchat-edinuyu-litsenziyu-na-osushhestvlenie-deyatelnosti/\",\"http://forklog.com/investitsionnyj-bitkoin-startap-keza-budet-spasen-blagodarya-satoshi-citadel-industries/\",\"http://forklog.com/poseshhaemost-steemit-sravnyalas-s-rannim-facebook/\",\"http://forklog.com/komanda-decent-obyavila-o-vazhnyh-izmeneniyah-v-sisteme-distributsii-tokenov/\",\"http://forklog.com/polzovateli-coinbase-v-evrope-poluchili-vozmozhnost-pokupat-kriptovalyutu-pri-pomoshhi-bankovskih-kart/\",\"http://forklog.com/osnovatel-distributed-lab-nazval-oblasti-kotorym-ne-nuzhen-blokchejn/\",\"https://medium.com/@pavelkravchenko/investor-guide-does-this-cool-project-truly-need-blockchain-bdde70a26bfb#.40cs8sfz2\",\"http://forklog.com/avtor-knig-o-blokchejne-don-tepskott-vystupil-na-ted-talk/\",\"http://forklog.com/dostignuta-dogovorennost-o-zapuske-e-vox-v-balte-odesskoj-oblasti/\",\"http://forklog.com/meriya-beloj-tserkvi-perehodit-na-blokchejn-platformu-auction-3-0/\",\"http://forklog.com/minfin-rf-protiv-pryamogo-zapreta-bitkoina/\",\"http://forklog.com/v-rossii-obsudili-kriptovalyuty-na-gosudarstvennom-urovne/\",\"http://forklog.com/partiya-rosta-utochnila-shemu-priema-pozhertvovanij-v-bitkoinah/\",\"http://forklog.com/kitaj-pristupil-k-issledovaniyu-blokchejna-na-gosudarstvennom-urovne/\",\"http://forklog.com/kitajskij-poiskovik-baidu-zablokiroval-vsyu-svyazannuyu-s-bitkoinom-reklamu/\"]}", + "last_payout": "2016-08-30T04:28:30", + "last_update": "2016-08-28T17:15:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_hbd": 10000, + "permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "reward_weight": 10000, + "root_author": "forklognews", + "root_permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "title": "\u0414\u0430\u0439\u0434\u0436\u0435\u0441\u0442 \u043d\u043e\u0432\u043e\u0441\u0442\u0435\u0439 \u2013 \u043e\u0431\u0437\u043e\u0440 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0438\u043d\u0434\u0443\u0441\u0442\u0440\u0438\u0438", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:14:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "paulsemmelweis", + "author_rewards": 0, + "beneficiaries": [], + "body": "Discussed below are two new articles that shed light on the grand economic chessboard controlled by governments while paving the way for more lies and manipulation by the media...\n\nGlobal central bankers, stuck at zero, unite in plea for help from governments: https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\n\nAs Fed nears rate hikes, policymakers plan for 'brave new world': https://ca.news.yahoo.com/fed-nears-rate-hikes-policymakers-plan-brave-world-005117150--business.html\n\nWhile simultaneously espousing Obama's great economic achievements in the press for years after saving the nation from peril in 2008, central bankers now openly admit there's a very weak economy and a recovery that never was. You know, facts.\n\nWhile talk of \"new tools\" needed to fight the next recession unofficially dominated the annual meeting of our monetary overlords in Wyoming, it is quite clear that the main weapon in their arsenal is the same as it was then; to maintain control over human beings by selling a never ending stream of fiction to the public.\n\n\"it may take a massive program, large enough even to shock taxpayers\"\n\"hard to convince markets and households that things will get better\"\n\"encourage the shift in mood\"\n\"prevent public expectations\"\n\"do not respond in expected ways\"\n\nAnd this gem\u2026 \"In modern monetary theory, households and business expectations are felt to play a defining role.\"\n\nSounds really modern!\n\nThe article ends with this\u2026 \"It was not clear whether such ideas will catch on. But there was a broad sense here that the other side of government may need to up its game.\"\n\nA game indeed. Of mass manipulation for the benefit of those who rule us while easily selling the public what they are doing is in their best interests.", + "cashout_time": "2016-09-28T19:47:36", + "category": "economics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:14:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779934, + "json_metadata": "{\"tags\":[\"economics\",\"government\",\"central\",\"banks\",\"recession\"],\"links\":[\"https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\"]}", + "last_payout": "2016-08-29T19:47:36", + "last_update": "2016-08-28T17:14:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "economics", + "percent_hbd": 10000, + "permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "reward_weight": 10000, + "root_author": "paulsemmelweis", + "root_permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "title": "It's just a game to governments and central bankers", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "randolphrope", + "author_rewards": 0, + "beneficiaries": [], + "body": "On the way to Chinle, Arizona USA \n\nJust off the highway over looking the desert.\n\nhttp://imgur.com/ITp3j5l.jpg\n\nI just remember one on the drive.", + "cashout_time": "2016-09-28T18:29:18", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:13:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779930, + "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"\"],\"image\":[\"http://imgur.com/ITp3j5l.jpg\"]}", + "last_payout": "2016-08-29T18:29:18", + "last_update": "2016-08-28T17:13:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "steem-it-photo-challenge-6", + "reward_weight": 10000, + "root_author": "randolphrope", + "root_permlink": "steem-it-photo-challenge-6", + "title": "Steem.it photo challenge # 6", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ebluefox", + "author_rewards": 0, + "beneficiaries": [], + "body": "Empathy is an interesting aspect of human nature that many people do not possess. Empathy in short is the ability to view an scenario from a different perspective than your own, normally to better understand someone's perspective on certain topics or ideas. This handy skill is a learned skill and when used effectively can be used to better understand humanity.\nBut as with every neat skill, they tend to have as many pros as they do cons. So i will attempt to explain the pros and cons that i have found apparent with empathy.\n There are quite a few pros to empathy, one of which being in your reputation. A person who uses empathy often is normally seen as a loving compassionate person. Another pro that is quite noticeable is the ability to understand unexplained problems. On occasion if a problem really troubles someone or is very personal, most people will not tell anyone about it. But with empathy you can figure out what is troubling them sometimes with something as simple as \"How have you been?\". A more prominent pro of using empathy is better understanding how a person truly is. Most people wear a \"Facade\" in public or a metaphorical mask, these tend to hide their true personality from the public eye and conceal most things about them. Using empathy, you can work around the \"Facade\" and figure out how they truly are as a person, and most of the time appreciate them a bit more.\n Empathy has allot of pros but also has its fair share of cons to go with it, a good example of one of its cons is a changed perspective. under most circumstances, use of empathy becomes a habit and changes your outlook on everyone around you. This is not really very terrible, but it can lead to you disliking a person more than would have normally. Another apparent con is over-assessing someone. This can happen when you use empathy on someone and spot something that would make you feel awful, but in truth does not faze them. Here is an example. You are talking with a person and figure out that they don't have a mother. To you that may seem horrible and you start pitying them, when in truth it may not even matter to them in the slightest. A more cumbersome problem with empathy lies with information. In order to understand or sympathize with someone you need to understand the problems they put up with. If you ask too many questions about their life, they may find you \"Nosy\" or \"Annoying\". On the contrary, if you do not inquire very much about them, you will not have any idea of their standpoint at all and cannot empathize with them. The last con i will cover is drama. It is very easy to get caught in some drama if you try to understand peoples problems, some of which may be very serious. Some people are not patient enough to deal with the newly acquired drama and can sometimes make the problem worse than it need to be.\n This list most definitely did not cover every pro or con associated with empathy because they will differ from person to person however i did cover a few recurring pros and cons. whether you think empathy is worth your time and energy is up to you and your values in life and social interaction.", + "cashout_time": "2016-09-28T17:28:57", + "category": "empathy", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:13:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779923, + "json_metadata": "{\"tags\":[\"empathy\",\"psychology\",\"social-skills\",\"problems\"]}", + "last_payout": "2016-08-29T17:28:57", + "last_update": "2016-08-28T17:13:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "empathy", + "percent_hbd": 10000, + "permlink": "the-pros-and-cons-of-empathy", + "reward_weight": 10000, + "root_author": "ebluefox", + "root_permlink": "the-pros-and-cons-of-empathy", + "title": "The Pros and Cons of Empathy", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "2243580957008", + "active": "2016-09-11T21:09:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemsquad", + "author_rewards": 588, + "beneficiaries": [], + "body": "\n

We are STEEMSQUAD, a Steemit inititative to promote diversity and quality of content by featuring authors from the school of minnows.

\n

\"steem-squad3\"
\n

\n

WHAT is #steemsquad?

\n

Steemsquad is an initiative of multiple minnows whose objective is to promote diverse and quality content and their work which may not have a chance to get noticed when published in the main streem. STEEMSQUAD initiative will try to tweak the game to equally distribute the wealth among its members. 

\n

STEEMSQUAD is a community-backed account responsible for posting blogs of qualified authors and at the same time upvotes quality blog posts of its members.

\n

Members of STEEMSQUAD are from across multiple timelines to ensure a 24/7 support and active participation in Steemit.

\n

The Issue at Hand

\n

For quite some time, there has been a noticeable trend as to who gets rewards. Those favored are the whales themselves, members with high reputation levels, incoming popular personalities and celebrities either from the cryptocurrency world or the entertainment world. A number of people from the finance institutions have joined as well and have garnered huge rewards on their \u201cintroductory\u201d posts.

\n

And what happens to those who are not celebrities, unknown personalities from not-so-popular backgrounds? Their posts get dumped, thrown into oblivion. Then all the sweat and blood poured spilled into writing the blog just go to waste. This is where #steemsquad comes in.

\n


\n

WHY We Do It?

\n

Steemit is a social media platform where **EVERYONE** gets paid for creating and curating content, as promised if and when you decide to dive into the Steemit Ocean. 

\n

It leverages a robust digital points system, called Steem, that supports real value for digital rewards through market price discovery and liquidity.

\n

We aim to give EVERYONE a chance to get noticed, earn rewards, and be a part of a community of people helping people.

\n

You Can Succeed

\n

All HOPE is NOT LOST. We have seen minnows rise to the occasion. With a positive attitude, an unwavering determination, lots and lots of good quality posts (one is enough though to get you 15k, if you hit the nail on the head), there is no reason why you can\u2019t be successful here in Steemit.

\n

#steemsquad will support you along the way.

\n

OUR GOLDEN RULES

\n
    \n
  1. We give priority to quality contents from low-powered profiles (minnows).
  2. \n
  3. The published author gets 100% of SBD. However, 50% of which goes to the author\u2019s SP to allow the author to power-up leveraging his/her SP to upvote other writers.
  4. \n
  5. Any SP earned by STEEMSQUAD remains in the STEEMSQUAD account to gain more voting power for the benefit of its members.
  6. \n
  7. Pay-it-forward. The powered-up author commits to help other writers by upvoting and commenting to blog post to increase the post\u2019s value.
  8. \n
\n


\n

HOW TO GET PUBLISHED BY STEEMSQUAD

\n

\n

PHOTO CREDIT: Anna Frajtova / shutterstock.com
\n

\n
    \n
  1. FOLLOW the account STEEMSQUAD and be a member of the initiative.
  2. \n
  3. You have to signify your willingness to join by coming to our official chatroom in https://steemit.chat/channel/steemsquad. Introduce yourself and state your intention to join the initiative. Include a link to your Steemit profile.
  4. \n
  5. Submit your article in plain text format and links to images. Send your entry to @steemit.asia or @sebastien or @jaycobbell as a PM.
  6. \n
  7. Article must be at least 300 words with at least 1 image.
  8. \n
  9. Give credit to the images you use.
  10. \n
  11. If you quote someone, give credit as well.
  12. \n
  13. At least 80% of the article must be your own.
  14. \n
  15. You will get feedback after 24 hours and a schedule will be provided when your work will be published.
  16. \n
  17. Once it is published, it will be promoted to the chatroom by either @steemit.asia or @sebastien or @jaycobbell in https://steemit.chat/channel/steemsquadpromotional for all members to see. This is where all promotions are done.
  18. \n
\n


\n

HOW TO GET UPVOTED BY STEEMSQUAD AND MEMBERS

\n


\nPHOTO CREDIT: Clipartix.com
\n

\n
    \n
  1. To get a chance to be upvoted by STEEMSQUAD, you must have a QUALITY blog post.
  2. \n
  3. Use the tag #steemsquad in your blog post.
  4. \n
  5. Our curators will browse through all blog posts using our official #steemsquad tag name and choose will notify the author by commenting that the post has been chosen as a featured post/author. It will be promoted in our chat channel https://steemit.chat/channel/steemsquadpromotional.
  6. \n
\n


\n

STEEMSQUAD ACCOUNT SECURITY

\n

The Posting Key (The posting key is used for posting and voting. It should be different from the active and owner keys) will be given to at least 3 members of STEEMSQUAD responsible for posting blog posts in 24 hour cycle.

\n

The Active Key (The active key is used to make transfers and place orders in the internal market) will be given to 2 members of STEEMSQUAD. One member will act as auditor/backup in case the primary member is not available.

\n

The Owner Key (The owner key is the master key for the account and is required to change the other keys) is given to one Whale sponsor and 2 other members of STEEMSQUAD.

\n

A member responsible for the account security may hold more than one (1) key as shown above.

\n


\n

OUR MENTORS

\n

There are people we consider as examples on the platform. Inspiration, mentors.

\n

@juneaugoldbuyer
\n@thedollarvigilante
\n@dragonslayer109
\n@stellabelle
\n@charlieshreem
\n@rogerkver
\n@donkypong
\n@tuck-fheman
\n@masteryoda
\n@andrarchy 

\n

\"steem-squad-FOLLOW-US\"
\n

\n", + "cashout_time": "2016-09-29T11:08:54", + "category": "introduceyourself", + "children": 18, + "children_abs_rshares": "2254360518257", + "created": "2016-08-28T17:13:18", + "curator_payout_value": { + "amount": "173", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779920, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemsquad\",\"steemit\",\"minnows\",\"writing\"],\"users\":[\"steemit.asia\",\"sebastien\",\"jaycobbell\",\"juneaugoldbuyer\",\"dragonslayer109\",\"stellabelle\",\"charlieshreem\",\"rogerkver\",\"donkypong\",\"tuck-fheman\",\"masteryoda\",\"andrarchy\"],\"image\":[\"https://c1.staticflickr.com/9/8171/29209353271_2eabbba74f_o.png\",\"https://cdn.elegantthemes.com/blog/wp-content/uploads/2016/02/Essential-Blogging-Skills-Know-your-Audience-shutterstock_222537538-Anna-Frajtova.png\",\"http://clipartix.com/wp-content/uploads/2016/04/Thumbs-up-clipart-3.png\",\"https://c1.staticflickr.com/9/8305/29179909862_ed27607510_o.png\"],\"links\":[\"https://steemit.chat/channel/steemsquad.\",\"https://steemit.chat/channel/steemsquadpromotional\",\"https://steemit.chat/channel/steemsquadpromotional.\"]}", + "last_payout": "2016-08-30T11:08:54", + "last_update": "2016-08-28T17:13:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T14:10:24", + "net_rshares": "2243580957008", + "net_votes": 57, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "reward_weight": 10000, + "root_author": "steemsquad", + "root_permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "title": "Hello! We Are STEEMSQUAD And We Are Here to Support The Minnows. Read On.", + "total_payout_value": { + "amount": "566", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "2243580957008" + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "okay", + "author_rewards": 0, + "beneficiaries": [], + "body": "## A picture is worth a thousand words, more so in astronomy ##\n\n**Let's take a look at the coming week's sky**\n\n\nhttp://www.skyandtelescope.com/wp-content/uploads/Venus-Jupiter-27Aug2016_f.jpg\n(Image courtesy of Sky and Telescope)\nOn August 27th, about 45 minutes after sunset, go outdoors and start looking low above the horizon in the west for an amazingly close pairing of Venus and Jupiter.\n\nhttp://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\n\n\nNext weekend, shortly after sunset, the thin Moon (waxing crescent) steps away from Venus and Jupiter.\n\nLooking at the night sky is a great joy! Free for everyone with no ticket required. You can watch the evening sky with your naked eye, no need for telescope or binoculars for these beautiful astronomical events.\n\n*Stay tuned for next week's sky.*\n\n\n\n\n If you enjoyed this post please vote for my witness node. Learn how to vote for witness `okay` **at the end of my witness post** by [**clicking here**](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network). ", + "cashout_time": "2016-09-28T16:11:21", + "category": "science", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-08-28T15:45:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 778828, + "json_metadata": "{\"tags\":[\"science\",\"astronomy\"],\"image\":[\"http://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", + "last_payout": "2016-08-29T16:11:21", + "last_update": "2016-08-28T17:13:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "science", + "percent_hbd": 10000, + "permlink": "this-week-s-sky-aug-27-sep-3", + "reward_weight": 10000, + "root_author": "okay", + "root_permlink": "this-week-s-sky-aug-27-sep-3", + "title": "This Week's Sky Aug-27/Sep-3", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "130408996119", + "active": "2016-08-28T17:36:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skyefox", + "author_rewards": 125, + "beneficiaries": [], + "body": "As I have stated in earlier posts, gardening is currently my obsession.. it's seems wild to me that the standard is to work for currency and trade currency for food rather than just growing your own food. \n

Here is my small harvest from this morning!

\nEvery morning I go out and eat a couple of my cherry tomatoes, a few leafy greens, and usually 1/2 a leaf of my sweet basil. It's a wonderful thing to wake up, take the dog out and get a healthy organic little snack. I love it.\nhttps://s14.postimg.org/62aqviz0h/IMG_1804.jpg\n\n\nI understand that gardening takes time, effort, and a little bit of knowledge but in my opinion it is one of the most reward \"hobbies.\" This is my first year gardening. I decided to garden this year because I have been doing more and more reading about the American food industry and my conclusion is that the American population are being made sick on purpose through the food we eat. I don't know exactly what does what in our food but it seems absolutely insane to me that we can't get the FDA to evaluate any dietary supplements but they will evaluate and even vouch for these lab made pharmaceutical drugs. \n\nAll of this lead me to feeling a strong urge to grow organic food. I honestly feel guilty when I feed my family and I don't fully believe in what we are eating. Don't get me wrong, I love pepperoni pizza but ignorance is bliss, and I am not ignorant to what I am eating. \n\nI believe I am slowly heading down the path of becoming a vegan as I gain more knowledge. I have always been a hunter and a fisherman, it's what I was taught as a young boy in the north woods. I love to hunt and fish, but I also have a very deep compassion for life. Not human life, but life in general. I believe that we are intelligent enough as a species to live without causing harm to other living things that are equipped with nervous systems. I guess I am just realizing day by day that things are not necessarily what I have been told... \n

This kind of sums up how I feel currently...

\nhttps://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\n\nI am not a very good consumer. I am very frugal and calculated with my money, sometimes to a fault. I'm also not good at being an employee and just being a \"gear in the machine.\" I was not built to work and be told what to do while someone acts as if their employment position somehow gives them a higher status than I. We are humans, you just have a different job. These factors, and many others, have lead to me being self employed and trying to find my way on the internet. I have dabble in many things online and I have learned enough to at least provide myself with enough income to pay my mortgage, bills, etc.. \n\nI am also someone that is in the prepper mind state. I have started my small stockpile of beans, rice, and various other dried foods. I think that the American people have become complacent and many of us are just chasing the carrot we were instructed to chase. Many people seem to not realize the fact that we as a country heavily depend on other people or corporations for the things we use everyday. If water and electricity were to be shut off and panic set it, many people would die because they don't know what to do without someone else providing them with these luxuries. \n\nI don't like the idea of depending on anyone for anything. I have always been someone who provided for myself. I got a job at 14 years old at the local bakery working Saturday mornings so that I could get my first computer myself. I worked for weeks, since I was only getting paid $5.15/hour (roughly 13 years ago) it took me a long time to save up for a computer to play Counterstrike 1.5... We had 6 kids in our house in a \"middle class\" family, needless to say we were told to get jobs as early as possible to acquire our luxuries. Since then I have had the mindset that I don't want to allow someone else to be \"the hand that feeds\", and that applies to food, water, electricity, and even knowledge of my child. \n\nDEPENDENCY OPENS THE DOORS FOR EXPLOITATION! And in a capitalist driven global economy, if it can be exploited, it often is. \n\nMy apologies, there I go again, going of on some rant instead of just showing you the damn garden update. I already can't wait for next spring. I have been buying heirloom vegetable seeds and thrift shopping for large planters for $1 so that next year I can grow lots more. \n

This is the Pink Brandywine that I am so excited about!

\nThese guys took forever to grow. I didn't know what I was doing and I had put too many plants in 1 planter which caused them to compete for the nutrients. On top of them a strong storm came through and blew these guys over and bent there stalks horizontal. I really didn't know if I would get any fruit from them, but they are changing and I can't wait to eat these!\nhttps://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\n\nhttps://s14.postimg.org/e3txgbbgh/IMG_1800.jpg\n\nHere is a cucumber that is growing a little goofy. Not sure why but its like a beer can cucumber... lol\nhttps://s14.postimg.org/c1tg22dhd/IMG_1802.jpg\n\nA more normal cucumber... \nhttps://s14.postimg.org/610t23x6p/IMG_1803.jpg\n\nAnd this is my $3 table I built so that I could start my seeds indoors under some fluorescent lights. \n\n\nhttps://s14.postimg.org/6t3h1b1dt/IMG_1805.jpg\n\n\nThank you for reading and happy gardening!", + "cashout_time": "2016-09-28T18:11:57", + "category": "garden", + "children": 2, + "children_abs_rshares": "130408996119", + "created": "2016-08-28T17:12:54", + "curator_payout_value": { + "amount": "15", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779916, + "json_metadata": "{\"tags\":[\"garden\",\"photography\",\"rant\",\"food\"],\"image\":[\"https://s14.postimg.org/62aqviz0h/IMG_1804.jpg\",\"https://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\",\"https://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\"]}", + "last_payout": "2016-08-29T18:11:57", + "last_update": "2016-08-28T17:12:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-12T21:18:18", + "net_rshares": "130408996119", + "net_votes": 37, + "parent_author": "", + "parent_permlink": "garden", + "percent_hbd": 10000, + "permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "reward_weight": 10000, + "root_author": "skyefox", + "root_permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "title": "A small garden update... My Pink Brandywine Tomatoes are coming!", + "total_payout_value": { + "amount": "123", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "130408996119" + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:08:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "fitiliper1985", + "author_rewards": 0, + "beneficiaries": [], + "body": "
http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png
\n

\n

Before I was in a relationship, I didn't have much sex. My first sexual intercourse occurred while I was travelling overseas on a holiday by myself. I met a woman in hawaii at the airport, and later had sex with her.

\n

I had done a lot of masturbating prior to this. I had often thought about having sex, and I found that my sexual drive caused me to behave in ways that I normally wouldn't. 

\n

\n
https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg
\n

\n

For example I would follow women I found attractive, or I would try to look up their skirts, or I would wander about at night to try to look into bedroom windows.

\n

When I met someone that I knew I would marry, I thought I would be able to have sex as much as I liked because my wife would always be available to have it with me. This turned out to be untrue. My wife didn't want to have sex as often as I wanted to, and I found myself still masturbating while I waited for the next time to come.

\n

I don't think women understand the power of their husband's sexual drive. 

\n

\n
http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg
\n

\n

Men are attracted to women by how they look. It doesn't matter if they are strangers. Men will look at a woman dressed in  a certain way and will start feeling horny. As soon as they ejaculate, the feeling of horniness goes, but will return in a couple of hours. When the sexual desire comes upon a man, it becomes his dominating thought, and it demands to be satisfied. That's why many men then masturbate in order to relieve the pressure on their thoughts. If unrelieved the pressure grows and if the wife is unwilling to have sex, then some men will look for other women to have sex with. 

\n

The sexual pressure is constantly present in a man's mind until relief comes.

\n

\n
https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg
\n

\n

Most women are not as interested in sex as men. 

\n

\n
https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg
\n

\n

Women are more interested in relationship.  Women have sex with a man in the hope that the man will want to stay in their life and have a relationship with them. 

\n

Some women use sex as a bait to catch a man, and then when the relationship is happening, they are not as interested in sex anymore. Women enjoy sex, but as part of a fulfilling relationship. Men just want to put their penis into a vagina and ejaculate. As soon as ejaculation occurs, a lot of men lose all interest in the woman. The woman then feels hurt and used because she didn't get what she wanted which was relationship. Men will say anything they think a woman wants to hear in order to have sex.

\n

Wives who have sex with their husbands when not really wanting it, feel used by their husbands. Women also can be selfish when they demand sex from men who are not in the mood. 

\n

God created sex to be enjoyed in a committed relationship between a man and a woman who are one person physically, spiritually, emotionally, and mentally. 

\n

Sex is a part of the relationship, not the main thing. If a man demands sex then he is being selfish, and his relationship will be harmed if the woman gives sex to the man when she is not wanting to have it. If the man wants sex with his wife, then he must give her what she wants. He must romance her and give her a good relationship. Then if sex happens, it will be enjoyable for both of them. This will build the relationship.

", + "cashout_time": "2016-09-28T17:56:42", + "category": "sex", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-08-28T17:12:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779915, + "json_metadata": "{\"tags\":[\"sex\",\"psychology\",\"life\",\"story\",\"\"],\"image\":[\"http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png\",\"https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg\",\"http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg\",\"https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg\",\"https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg\"]}", + "last_payout": "2016-08-29T17:56:42", + "last_update": "2016-08-28T17:12:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 12, + "parent_author": "", + "parent_permlink": "sex", + "percent_hbd": 10000, + "permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "reward_weight": 10000, + "root_author": "fitiliper1985", + "root_permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "title": "In a relationship, sex becomes a matter of selfishness or unselfishness.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "s0lo", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

Slightly more than a month since then, how did the Ethereum classic (ETC). The ETC team presented a \"road map\" of development of the project, at the first meeting of the supporters of Ethereum Classic (ETC), held on 18 August in London.

\n
The basic version of partitioning the network according to the version of ETC was this:
\n
\"The separation of Ethereum was the result of a difference in the understanding of the basic principle of cryptocurrency. At that time, as fork (ETH) was carried out to recover the stolen funds to investors DAO, Ethereum classic is the original version, based on the principle that \"code is law.\"
\n

Supporters of the ETS argue that the decentralization of infrastructure are insufficient to minimize the possibility of hacking and fraud. For example, the developers of Ethereum actively invested their funds in DAO. Therefore, the decision about hard forks could be dictated by a conflict of interest.

\n

Community ETC believes that all key aspects of the ecosystem should be decentralized, including technological functions such as research and development, and public and administrative functions, including marketing, development and management of the DAPP.

\n

There are plans to remove so-called \"bomb of complexity\" (constant increase in the complexity of mining at ETH) to provide POW mining and make ETC more viable for the miners.

\n

In addition, the community is considering a new economic policy and hybrid solutions using Proof-of-stake (PoS). And, finally, developed new technology to ensure the functioning of \"smart contracts\", but no details.

\n

Classic Ethereum plans to develop the community to the upcoming events in Toronto, Shanghai and Melbourne. These meetings should be used to create local centers. In addition, the stage of development of the relationships with universities, startups and companies. Road map to the end of this year aims to reach consensus with the main team ETC. and receive financial support of developers from third parties.

\n

Initially, the team ETC was planning to copy all the updates that are entered in the ETH, but later decided to give myself a certain amount of autonomy. how and by whom it will be implemented - at the moment neizvestnoy

\n

In 2017, ETC will test different mechanisms of consensus and optimal monetary policy system. In addition, meetings will be held in an expanded format to appeal to a greater number of miners and the following year to create their own ecosystem the development of DAPP.

\n

Perhaps in the course of the year will be able to understand how realistic are attempts to \"overtake and surpass\" team Baterina in the main activities of the Ethereum project.

\n

By 2018, the community ETC choose PoW or hybrid mechanism of consensus and create the proper monetary policy.

\n

More concrete steps at this meeting was not presented.

\n

The rate continues to fall.

\n

Despite the publication of the road map and programme of community development, exchange rate ETC continues to fall. ETC cryptocurrency by market capitalization behind Litecoin and Steem, even given the significant losses the last, and is now in sixth place. ETC remains below the psychologically important level of $2.00 that is displayed on the chart.

\n

\n

ETC trend/USD exchange Poloniex has broken below the most recent level of the fractal at $1.60. A daily close below this level should lead us to a level of $1.34. Please note that the conversion line (blue) currently has resistance at $ 1.7235. 

\n

In addition, the trading volume of the Ethereum classic naturally falling after the initial hype created around this cryptocurrency. This also indicates a greater risk and tells about the deterioration of the situation. Thus, the market is looking down with a possible reversal on the $ 1.34 or even $ 1.00.

\n", + "cashout_time": "2016-09-28T17:44:00", + "category": "road", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:12:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779914, + "json_metadata": "{\"tags\":[\"road\",\"map\",\"etc\",\"ethereum\",\"classic\"],\"image\":[\"http://bits.media/images/news/260816/260816_ethereum-classic-roadmap_1.jpg\",\"http://bits.media/images/news/260816/260816_ethereum-classic-roadmap_2.jpg\"]}", + "last_payout": "2016-08-29T17:44:00", + "last_update": "2016-08-28T17:12:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "road", + "percent_hbd": 10000, + "permlink": "road-map-ethereum-classic-helped-to-keep-the-course", + "reward_weight": 3950, + "root_author": "s0lo", + "root_permlink": "road-map-ethereum-classic-helped-to-keep-the-course", + "title": "Road map Ethereum Classic helped to keep the course.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json index 60690bf4..577209f7 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 779946, - "author": "gringalicious", - "permlink": "hello-again-better-late-than-never-a-re-introduction-verification", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "Hello Again - Better Late Than Never - a RE introduction VERIFICATION", - "body": "\n

Ok, I surrender!  A horrible picture of myself holding a piece of paper.  I have to say, I don't get it.  I hate taking pictures of myself.  But, several of you have insisted, so... you win, here it is, verification for @gringalicious

\n

\n

I am a 20 year old food blogger living in Chile with my crazy family.  You can read more about that at my first attempt of introducing myself here: Gringalicious Intro .  I have a passion for cooking and a passion for photography.  Yeah, I know, you can't tell by the photo above, but I digress.  You can see examples of my passion on my page @gringalicious. I don't like labels necessarily, but let's just say I don't like the state and those conditioned by the state telling me what to do.  Nor do I like telling others how they should liver their lives.  I will post more on those topics at a later date.

\n

The idea of #Steemit thoroughly intrigues me.  I look forward to being part of the community!

\n

And since I am here talking about myself, I was featured in a magazine recently.  Not trying to promote the magazine necessarily, just trying to add validity to my verification.  And, I have to admit, I just a little proud of myself.

\n

\n

\n


\n

Later this week, I'll be posting a recipe with a #steemitlogo incorporated in it.  So, keep an eye out for it.

\n

I do hope this helps satisfy the request that many of you have made.  If I need to do something different, please let me know.  I actually like corrective criticism so bring it on.

\n

Until my next post, hasta luego mis amigos

\n

Tori

\n", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"food\",\"photography\",\"Steemit\",\"steemitlogo\"],\"users\":[\"gringalicious\"],\"image\":[\"https://s19.postimg.org/9vrr3pg8j/DSC_0750_2.jpg\",\"https://s19.postimg.org/4j2wpksc3/IMG_20160828_131820621.jpg\",\"https://s16.postimg.org/3ougnif51/IMG_20160828_131853738.jpg\"],\"links\":[\"https://steemit.com/introduceyourself/@gringalicious/hola-steemit-photographer-food-blogger-traveler-and-student-of-life-i-am\"]}", - "last_update": "2016-08-28T17:15:12", - "created": "2016-08-28T17:15:12", - "active": "2016-08-31T12:56:54", - "last_payout": "2016-08-29T22:59:51", - "depth": 0, - "children": 48, - "net_rshares": "114793970759", - "abs_rshares": "114793970759", - "vote_rshares": "114793970759", - "children_abs_rshares": "256626492237", - "cashout_time": "2016-09-28T22:59:51", - "max_cashout_time": "2016-09-14T00:51:15", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "73426", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "12739", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 75232, - "net_votes": 82, - "root_author": "gringalicious", - "root_permlink": "hello-again-better-late-than-never-a-re-introduction-verification", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779947, - "author": "givemeyoursteem", - "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "category": "foodchallenge", - "parent_author": "", - "parent_permlink": "foodchallenge", - "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", - "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", - "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", - "last_update": "2016-08-28T17:15:12", - "created": "2016-08-28T17:15:12", - "active": "2016-08-29T13:45:42", - "last_payout": "2016-08-29T20:19:39", - "depth": 0, - "children": 18, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 2374341643, - "cashout_time": "2016-09-28T20:19:39", - "max_cashout_time": "2016-09-13T01:24:24", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "576", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "131", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 588, - "net_votes": 44, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779945, - "author": "forklognews", - "permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", - "category": "bitcoin", - "parent_author": "", - "parent_permlink": "bitcoin", - "title": "Дайджест новостей – обзор главных событий биткоин-индустрии", - "body": "\n

Прошедшая неделя оказалась богатой событиями, центральным из которых для нашей редакции стало двухлетие Forklog. Два года назад, 25 августа, был зарегистрирован домен ForkLog.com, а спустя некоторое время сделаны первые публикации на сайте. Об остальных, не менее интересных событиях мира криптовалют, вы узнаете из нашего еженедельного дайджеста. 

\n

 БИРЖИ

\n

Ещё одним именинником этой недели стала криптовалютная биржа Bitstamp, которая отметила пятилетие со дня основания. К этому событию биржа приурочила конкурс с ценными призами.

\n

Но юбилеи не являются поводом прекращать работу и администрации бирж полностью разделяют это мнение, принимая где-то логичные, а где-то и неожиданные решения.

\n

Так, криптовалютная биржа GDAX начала торги четвертой по рыночной капитализации криптовалютой Litecoin. Соответствующее объявление сделано в официальном блоге биржи. Для торгов предлагается две валютные пары: резидентам США доступна пара LTC / USD, всем прочим клиентам — пара LTC / BTC.

\n

В свою очередь, 23 августа в официальном твиттере криптовалютной биржи Poloniex появилось сообщение оснятии с торгов 27 криптовалют. Торги будут прекращены 5 сентября текущего года и это решение уже вызвало некоторое недоумение сообщества, ведь в данный перечень вошли такие альткоины, как DAO, Dashcoin и Mintcoin, уровень капитализации которого достиг $1,22 млн. 

\n

\n

 Подходит к концу и нашумевшая история с биржей Bitfinex, пострадавшей в результате взлома. Администрация биржи объявила о подписании договора с инвестиционной платформой BnkToTheFuture с целью возмещения средств вкладчиков посредством долевого участия в акционерном капитале компании. 

\n

\n

 Благодаря сотрудничеству с BnkToTheFuture пользователи Bitfinex смогут обменять принадлежащие им токены BFX на соответствующую долю в iFinex Inc, зарегистрированной на Британских Виргинских Островах родительской компанией биржи.

\n

Неожиданная новость пришла на этой неделе из Турции, где ведущая криптовалютная биржи BTCTurk была вынуждена остановить работу, столкнувшись с неожиданном отказом банковского партнера от дальнейшего продолжения сотрудничества. В настоящий момент биржа предпринимает попытки вернуть средства пользователям, однако из-за блокировки банковских счетов этот процесс может затянуться. 

\n

 КОШЕЛЬКИ И ПЛАТЁЖНЫЕ СЕРВИСЫ

\n

Первым аппаратным кошельком, добавившим поддержку Ethereum, стал Trezor. Соответствующая информация размещена на странице Trezor на Github.

\n

Официального сообщения от компании-разработчика SatoshiLabs пока, впрочем, не поступало, поэтому дата официального релиза и доступности функционала на данный момент остается неизвестной.

\n

Списки рабочих валют пополнились у платёжного сервиса Bitwala, включившего поддержку Dash и Emercoin, и венесуэльской системы Cryptobuyer, добавившей Dash. Отметим, что жители Венесуэлы, у которых нет компьютеров либо телефонов с доступом в интернет, могут воспользоваться услугами местного партнёра Cryptobuyer – сетью криптовалютных банкоматов TigoCTM.

\n

Также вышла в свет новая версия Ethereum-кошелька Mist с поддержкой Coinbase Buy Widget. Одной из её главных особенностей стало включение Coinbase Buy Widget – инструмента, с помощью которого можно осуществить моментальную покупку криптовалюты на сумму до $5.

\n

В настоящий момент данная функция доступна только пользователям из США и требует наличия аккаунта на Coinbase. 

\n

\n

 БАНКИ И КОРПОРАЦИИ

\n

Неожиданным известием, способным стать предвестником глобальных изменений в мировой экономике, стало сообщение издания Financial Times о том, что ряд крупнейших мировых банков принял решение объединиться для создания новой цифровой валюты. Официальное заявление представителей банков UBS, Deutsche Bank, Santander и BNY Mellon ожидалось 24 августа, но до настоящего момента комментариев не появилось.

\n

Если это окажется не информационной уткой, то стоит ожидать, что в будущем к этой инициативе присоединятся и прочие финансовые институты со всех концов света, даже с далёкого африканского континента. Там управляющий Южно-Африканского резервного банка Лесетья Кганьяго в своем выступлении на конференции по вопросам криптобезопасности заявил, что финансовый институт уже изучает блокчейн и заинтересован в инновациях, которые может дать эта технология. 

\n
 «Как центральный банк, мы открыты к инновациям несмотря на различное отношение регуляторов к криптовалютам. Мы намерены изучить все преимущества и недостатки технологии блокчейн и других распределённых реестров», — заявил Лесетья Кганьяго. 
\n

 В свою очередь, крупнейший банк Японии Bank of Tokyo-Mitsubishi UFJ (MUFG) объявил об окончании разработкиоснованного на блокчейне прототипа, позволяющего моментально обрабатывать и верифицировать платежи по чекам. Созданное решение в потенциале может быть использовано финансовыми институтами и различными компаниями в азиатском регионе. В будущем Bank of Tokyo-Mitsubishi надеется создать и другие решения на основе блокчейна, которым можно будет найти реальное применение.

\n

От азиатских разработчиков не отстают и представители консорциума R3 CEV, запатентовавшие новый продукт на основе биткоин-технологии Concord, предназначенный для использования в инфраструктуре Уолл-стрит.

\n

Concord представляет собой универсальную платформу, связывающую воедино рынки и компании и призванную перевести функции миддл- и бэк-офисов в цифровой вариант. Это даст возможность банкам избавиться от административных накладных расходов и сэкономить миллиарды долларов. Ожидается, что альфа-версия платформы будет запущена в середине 2017 года.

\n

Всё это заставляет финансовых аналитиков и экономистов следить за блокчейном более пристально, меняя свои прогнозы относительно будущего мировой финансовой системы.

\n

В частности, финансовый аналитик Кирилл Яковенко недавно заявил, что в ближайшие два-три года криптовалюты выйдут из тени и одновременно с этим появятся новые межнациональные финансовые инструменты.

\n
«В ближайшие два-три года технологии blockchain прочно укрепятся на межбанке, вытеснят системы обмена сообщениями между ними (в частности, систему SWIFT) и станут неотъемлемой частью торгов на рынках ценных бумаг. Что же касается криптовалют в привычном понимании, то они также, скорее всего, уже в ближайшем будущем выйдут из тени и вместе с технологией blockchain получат масштабное развитие», — считает Яковенко.
\n

КОМПАНИИ

\n

Датская компания Bitshares Munich IVS, владеющая брендом BlockPay, объявила о старте ICO. В ходе кампании предполагается собрать средства на развитие BlockPay, P2P-мессенджера ECHO и системы анонимных платежей Stealth. Проведение краудфандинговой кампании запланировано на 2016 и 2017 годы. Сама кампания состоит из предварительной ICO (Pre-ICO), запланированной на август текущего года, и основной, которая будет проведена в 2017 году. Всего планируется распространить 100 миллионов токенов BlockPay.

\n

Проект по созданию блокчейна с открытым кодом Hyperledger объявил имена нового состава технического комитета. Среди основных задач комитета — рассмотрение поступающих предложений и построение первоначальной унифицированной базы исходного кода.

\n

В новом составе комитета сохранили свои места технический директор R3CEV Гендал Браун, главный разработчик архитектуры распределенных реестров Digital Asset Holdings Тамаш Блуммер, исследователь Fujitsu Харт Монтгомери, инженер Intel Мик Боумен и главный технический директор направления открытых технологий IBM Кристофер Феррис. Среди новых имен – старший технический руководитель IBM Арно ле Ор, старший блокчейн-архитектор IBM Бин Нгуен, глава технических разработок Intel Дэн Миддлтон, а также представители DTCC, Salesforce и Лондонской фондовой биржи.

\n

Американский технологический стартап Chronicled Inc. объявил о запуске открытого реестра для Интернета вещей, который был создан на блокчейне Ethereum. Этот реестр предназначен для сохранения уникальных кодов физических объектов, имеющих встроенные чипы NFC и BLE.

\n
«Теперь все создатели материальных объектов, будь-то бренды, носители интеллектуальной собственности и прочее, могут регистрировать свои защищённые от подделок чипы в публичном блокчейне», — заявил директор Chronicled Райан Орр. На данный момент стартапом поставлено около 10 000 NFC и BLE чипов.
\n

Как сообщает издание Business Insider UK, крупнейшая в США телекоммуникационная компания Verizon Communications экспериментирует с технологией блокчейн. Так, в распоряжение редакции попал патент, полученный Verizon 10 мая этого года.

\n

Из описания патента следует, что компания разработала некое блокчейн-хранилище ключей, а работы над проектом велись на протяжении трёх лет. Введение подобной блокчейн-системы в сочетании со смарт-контрактами даёт массу новых возможностей в сфере использования цифрового контента. Например, музыкальные исполнители или авторы статей будут получать свою оплату сразу же после того, как пользователь начал читать материал или прослушивать песню.

\n

Валютное управление Сингапура (MAS) выступило с предложением введения единой лицензии на осуществление деятельности для компаний, предоставляющих платежные услуги, включая криптовалютные компании.

\n

Стало известно, что биткоин-стартап Keza выкуплен филиппинской компанией Satoshi Citadel Industries, в инвестиционном портфелем которой уже присутствуют такие стартапы, как Rebit.ph, Bitbit.cash и PrepaidBitcoin.ph.

\n
«Keza создавалась с прицелом на развивающиеся рынки и для пользователей, которые не имеют доступа к глобальным рынкам капитала. Мы счастливы, что теперь видение компании сможет быть реализовано», — цитирует CEO Keza Саймона Бернса издание Silicon Angle.
\n

Децентрализованная социальная сеть Steemit сообщила о «беспрецедентном уровне трафика», сопоставимым с тем, что получали на ранних этапах своего развития Facebook и Reddit.

\n

Как говорится в заявлении Steemit, на данный момент пользователи социальной сети ежедневно размещают более 21 000 новых записей, а количество голосов в поддержку постов превышает 70 000. Это сопоставимо с ранней активностью на площадках вроде Facebook и Reddit.

\n

За несколько недель до старта краудсейла платформы распространения контента DECENT команда проекта объявила о внесении изменений в систему дистрибуции токенов DCT. Также подверглось пересмотру общее количество подлежащих к выпуску монет. Как заявили в DECENT, это решение, хотя и является стратегическим, также было принято с учетом рекомендаций сообщества.

\n

Компания Coinbase сообщила о расширении географии своего сервиса на мобильных устройствах при помощи дебетовых и кредитных карт. Теперь возможность покупки криптовалют при помощи карт получили и пользователи Coinbase в Европе.

\n

Как говорится в заявлении Coinbase, в США 40% сделок по покупке криптовалюты при помощи дебетовых и кредитных карт осуществляются с мобильных устройств, поэтому компания стремится сделать этот сервис доступным в как можно большем количестве стран.

\n

ПЕРСОНАЛИИ

\n

Основатель компании Distributed Lab Павел Кравченко продолжил рассуждения о технологии блокчейн и сферах ее применения, назвав отрасли, которым она, на его взгляд, вряд ли нужна вообще. Соответствующий пост был размещен в его блоге на Medium.

\n

Высказав ранее мнение о том, что большой бизнес не готов по-настоящему к использованию блокчейна, Павел на этот раз представил своего рода гид для инвесторов. В нем описана основная проблематика при принятии решений и предлагается помощь в понимании того, действительно ли технология является для них необходимой.

\n
«Запросы об имплементации блокчейна я получаю каждый день. Однако часто я считаю, что блокчейн не нужен вовсе. Есть другие доступные типы архитектуры, и блокчейн – лишь один из них», — пишет Павел Кравченко.
\n

Ещё одним примечательным выступлением гуру блокчейна стала лекция канадского предпринимателя Дона Тэпскотта, автора недавно изданной книги «Революция блокчейна», выступившего с лекцией о технологии распределенного реестра на саммите TED Talk в Альберте. 

\n

 УКРАИНА

\n

В Украине продолжается внедрение блокчейн-сервисов в политикум страны. Так, команда e-Vox анонсировала запуск блокчейн-сервиса электронного голосования в городской Раде Балты (Одесская область). Об этом редакции ForkLog сообщил координатор проекта Алексей Конашевич. 

\n

\n

 Результаты голосования, внесенные в децентрализованную базу данных, позволят системно анализировать информацию и выводить статистику эффективности принимаемых решений. А блокчейн-протокол поможет надежно защитить информацию от внутреннего и внешнего противоправного вмешательства.

\n

Разработкой прототипа e-Vox занимались компании Ambisafe и Vareger.

\n

Не останавливаются работы в этом направлении и в Белой Церкви. Так, мэр города Геннадий Дикий зарегистрировал проект об использовании блокчейн-платформы Auction 3.0 в качестве одного из актов, который должен быть принят городским советом в ближайшее время.
\nОб этом говорится в решении «О внесении изменений в план деятельности Белоцерковского городского совета при подготовке проектов регулятивных актов на 2016 год», утвержденном городским советом Белой Церкви. 

\n

\n

 РОССИЯ

\n

В пятницу, 26 августа, замминистра финансов Алексей Моисеев сообщил о том, что Министерство финансов Российской Федерации выступает против введения «лобового запрета» биткоина. По его словам, законопроект о криптовалютах будет скорректирован по итогам предстоящей серии встреч с экспертами.

\n

Возможно, это заявление стало последствием встречи, которая состоялась 24 августа в администрации президента РФ под руководством советника по интернету Германа Клименко. На мероприятии обсуждалась технология блокчейн в России и возможности ее внедрения на государственном уровне.

\n

Не остались в стороне от процесса и власти Москвы, заявившие на этом же совещании о готовности внедрить технологию блокчейн в проект «Активный гражданин».

\n
«Москва готова быть площадкой для применения технологии блокчейн. И как раз в качестве пилотного проекта мы предлагаем предоставить проект «Активный гражданин». Мы хотим, с одной стороны, отпилотировать технологию и понять, насколько она дееспособна для решения такого рода задач. С другой стороны, снять с себя некий скепсис со стороны граждан», — заявил заместитель директора департамента информационных технологий Москвы Андрей Белозеров,
\n

Оказались вовлечёнными использование блокчейна и биткоина и российские политические силы. Российская «Партия Роста» подтвердила начало приема пожертвований в биткоинах, однако пользоваться собранными средствами она сможет только после принятия закона о статусе криптовалюты.

\n


\nВ связи с отсутствием нормативного регулирования переводов биткоинов на счета юридических лиц «биткоины будут перечисляться на кошелек Дмитрия Мариничева, интернет-омбудсмена и кандидата в депутаты по Медведковскому одномандатному округу».

\n

КИТАЙ

\n

Правительство Российской Федерации не единственное, занимающееся вопросами использования криптовалют и блокчейна. Так, правительство Китая объявило о создании рабочей группы по вопросам блокчейна. Целью нового стратегического альянса станет ускорение разработок и внедрение технологии в экономику страны, а также подготовка к Всемирному блокчейн-саммиту, который будет проведён в Шанхае в сентябре этого года.

\n

Неизвестно, ставится ли перед этой рабочей группой задача контролирования использования, но примечательным является тот факт, что практически одновременно с заявлением правительства крупнейшая поисковая система Китая Baidu без какого-либо предупреждения удалила всю рекламу, связанную с биткоином и другими виртуальными валютами.

\n

Об удалении рекламы биткоин-компаний сообщили две крупнейшие китайские биржи OKCoin и Huobi, пишет Bloomberg News. Представители Baidu на запрос агентства от комментариев воздержались. 

\n", - "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto\",\"money\",\"news\"],\"image\":[\"http://radikal.ru/fp/949b19ab0ea142769b5d5bad6918e850\",\"http://radikal.ru/fp/ab1e6cf8f8ce414d8555699b45afc0eb\",\"http://forklog.com/wp-content/uploads/0e6dbfdc-638d-11e6-8e55-cc0a56a8b37c-1.png\",\"http://forklog.com/wp-content/uploads/14152259_10202179476045465_1807948603_o.jpg\",\"http://forklog.com/wp-content/uploads/14022327_853179024818469_8570878217622377273_n-1.jpg\"],\"links\":[\"http://forklog.com/zhurnalu-forklog-dva-goda/\",\"http://forklog.com/birzha-bitstamp-otmechaet-pyatiletnij-yubilej/\",\"http://forklog.com/kriptovalyutnaya-birzha-gdax-dobavila-litecoin/\",\"http://forklog.com/birzha-poloniex-snimaet-s-torgov-the-dao-i-drugie-altkoiny/\",\"http://forklog.com/krupnejshaya-bitkoin-birzha-turtsii-ostanovila-rabotu-iz-za-problem-s-bankom/\",\"http://forklog.com/apparatnyj-koshelek-trezor-dobavil-podderzhku-ethereum/\",\"https://github.com/trezor/trezor-mcu/pull/103\",\"http://forklog.com/platezhnyj-servis-bitwala-vklyuchil-v-spisok-rabochih-altkoinov-dash-i-emercoin/\",\"http://forklog.com/venesuelskij-platyozhnyj-servis-cryptobuyer-dobavil-podderzhku-dash/\",\"http://forklog.com/sostoyalsya-reliz-novoj-versii-ethereum-koshelka-mist-s-podderzhkoj-coinbase-buy-widget/\",\"http://forklog.com/vedushhie-banki-mira-obedinilis-dlya-sozdaniya-novoj-kriptovalyuty/\",\"http://forklog.com/yuzhno-afrikanskij-rezervnyj-bank-gotov-k-ispolzovaniyu-blokchejna-i-kriptovalyut/\",\"http://forklog.com/yaponskie-korporatsii-testiruyut-blokchejn-platformu-dlya-chekovyh-raschetov/\",\"http://forklog.com/konsortsium-r3-cev-zapatentoval-blokchejn-platformu-dlya-infrastruktury-uoll-strit/\",\"http://forklog.com/ekonomisty-prognoziruyut-vytesnenie-sistemy-swift-blokchejnom/\",\"http://forklog.com/kompaniya-bitshares-munich-ivs-obyavila-o-nachale-ico/\",\"http://forklog.com/proekt-hyperledger-nazval-novyj-sostav-tehnicheskogo-komiteta/\",\"http://forklog.com/startap-chronicled-inc-zapustil-otkrytyj-reestr-dlya-interneta-veshhej/\",\"http://forklog.com/kompaniya-verizon-communications-zapatentovala-blokchejn-hranilishhe-klyuchej/\",\"http://forklog.com/kriptovalyutnye-kompanii-singapura-budut-poluchat-edinuyu-litsenziyu-na-osushhestvlenie-deyatelnosti/\",\"http://forklog.com/investitsionnyj-bitkoin-startap-keza-budet-spasen-blagodarya-satoshi-citadel-industries/\",\"http://forklog.com/poseshhaemost-steemit-sravnyalas-s-rannim-facebook/\",\"http://forklog.com/komanda-decent-obyavila-o-vazhnyh-izmeneniyah-v-sisteme-distributsii-tokenov/\",\"http://forklog.com/polzovateli-coinbase-v-evrope-poluchili-vozmozhnost-pokupat-kriptovalyutu-pri-pomoshhi-bankovskih-kart/\",\"http://forklog.com/osnovatel-distributed-lab-nazval-oblasti-kotorym-ne-nuzhen-blokchejn/\",\"https://medium.com/@pavelkravchenko/investor-guide-does-this-cool-project-truly-need-blockchain-bdde70a26bfb#.40cs8sfz2\",\"http://forklog.com/avtor-knig-o-blokchejne-don-tepskott-vystupil-na-ted-talk/\",\"http://forklog.com/dostignuta-dogovorennost-o-zapuske-e-vox-v-balte-odesskoj-oblasti/\",\"http://forklog.com/meriya-beloj-tserkvi-perehodit-na-blokchejn-platformu-auction-3-0/\",\"http://forklog.com/minfin-rf-protiv-pryamogo-zapreta-bitkoina/\",\"http://forklog.com/v-rossii-obsudili-kriptovalyuty-na-gosudarstvennom-urovne/\",\"http://forklog.com/partiya-rosta-utochnila-shemu-priema-pozhertvovanij-v-bitkoinah/\",\"http://forklog.com/kitaj-pristupil-k-issledovaniyu-blokchejna-na-gosudarstvennom-urovne/\",\"http://forklog.com/kitajskij-poiskovik-baidu-zablokiroval-vsyu-svyazannuyu-s-bitkoinom-reklamu/\"]}", - "last_update": "2016-08-28T17:15:09", - "created": "2016-08-28T17:15:09", - "active": "2016-08-28T17:15:09", - "last_payout": "2016-08-30T04:28:30", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-29T04:28:30", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "forklognews", - "root_permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779934, - "author": "paulsemmelweis", - "permlink": "it-s-just-a-game-to-governments-and-central-bankers", - "category": "economics", - "parent_author": "", - "parent_permlink": "economics", - "title": "It's just a game to governments and central bankers", - "body": "Discussed below are two new articles that shed light on the grand economic chessboard controlled by governments while paving the way for more lies and manipulation by the media...\n\nGlobal central bankers, stuck at zero, unite in plea for help from governments: https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\n\nAs Fed nears rate hikes, policymakers plan for 'brave new world': https://ca.news.yahoo.com/fed-nears-rate-hikes-policymakers-plan-brave-world-005117150--business.html\n\nWhile simultaneously espousing Obama's great economic achievements in the press for years after saving the nation from peril in 2008, central bankers now openly admit there's a very weak economy and a recovery that never was. You know, facts.\n\nWhile talk of \"new tools\" needed to fight the next recession unofficially dominated the annual meeting of our monetary overlords in Wyoming, it is quite clear that the main weapon in their arsenal is the same as it was then; to maintain control over human beings by selling a never ending stream of fiction to the public.\n\n\"it may take a massive program, large enough even to shock taxpayers\"\n\"hard to convince markets and households that things will get better\"\n\"encourage the shift in mood\"\n\"prevent public expectations\"\n\"do not respond in expected ways\"\n\nAnd this gem… \"In modern monetary theory, households and business expectations are felt to play a defining role.\"\n\nSounds really modern!\n\nThe article ends with this… \"It was not clear whether such ideas will catch on. But there was a broad sense here that the other side of government may need to up its game.\"\n\nA game indeed. Of mass manipulation for the benefit of those who rule us while easily selling the public what they are doing is in their best interests.", - "json_metadata": "{\"tags\":[\"economics\",\"government\",\"central\",\"banks\",\"recession\"],\"links\":[\"https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\"]}", - "last_update": "2016-08-28T17:14:12", - "created": "2016-08-28T17:14:12", - "active": "2016-08-28T17:14:12", - "last_payout": "2016-08-29T19:47:36", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T19:47:36", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "paulsemmelweis", - "root_permlink": "it-s-just-a-game-to-governments-and-central-bankers", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779930, - "author": "randolphrope", - "permlink": "steem-it-photo-challenge-6", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Steem.it photo challenge # 6", - "body": "On the way to Chinle, Arizona USA \n\nJust off the highway over looking the desert.\n\nhttp://imgur.com/ITp3j5l.jpg\n\nI just remember one on the drive.", - "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"\"],\"image\":[\"http://imgur.com/ITp3j5l.jpg\"]}", - "last_update": "2016-08-28T17:13:51", - "created": "2016-08-28T17:13:51", - "active": "2016-08-28T17:13:51", - "last_payout": "2016-08-29T18:29:18", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T18:29:18", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 6, - "root_author": "randolphrope", - "root_permlink": "steem-it-photo-challenge-6", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779923, - "author": "ebluefox", - "permlink": "the-pros-and-cons-of-empathy", - "category": "empathy", - "parent_author": "", - "parent_permlink": "empathy", - "title": "The Pros and Cons of Empathy", - "body": "Empathy is an interesting aspect of human nature that many people do not possess. Empathy in short is the ability to view an scenario from a different perspective than your own, normally to better understand someone's perspective on certain topics or ideas. This handy skill is a learned skill and when used effectively can be used to better understand humanity.\nBut as with every neat skill, they tend to have as many pros as they do cons. So i will attempt to explain the pros and cons that i have found apparent with empathy.\n There are quite a few pros to empathy, one of which being in your reputation. A person who uses empathy often is normally seen as a loving compassionate person. Another pro that is quite noticeable is the ability to understand unexplained problems. On occasion if a problem really troubles someone or is very personal, most people will not tell anyone about it. But with empathy you can figure out what is troubling them sometimes with something as simple as \"How have you been?\". A more prominent pro of using empathy is better understanding how a person truly is. Most people wear a \"Facade\" in public or a metaphorical mask, these tend to hide their true personality from the public eye and conceal most things about them. Using empathy, you can work around the \"Facade\" and figure out how they truly are as a person, and most of the time appreciate them a bit more.\n Empathy has allot of pros but also has its fair share of cons to go with it, a good example of one of its cons is a changed perspective. under most circumstances, use of empathy becomes a habit and changes your outlook on everyone around you. This is not really very terrible, but it can lead to you disliking a person more than would have normally. Another apparent con is over-assessing someone. This can happen when you use empathy on someone and spot something that would make you feel awful, but in truth does not faze them. Here is an example. You are talking with a person and figure out that they don't have a mother. To you that may seem horrible and you start pitying them, when in truth it may not even matter to them in the slightest. A more cumbersome problem with empathy lies with information. In order to understand or sympathize with someone you need to understand the problems they put up with. If you ask too many questions about their life, they may find you \"Nosy\" or \"Annoying\". On the contrary, if you do not inquire very much about them, you will not have any idea of their standpoint at all and cannot empathize with them. The last con i will cover is drama. It is very easy to get caught in some drama if you try to understand peoples problems, some of which may be very serious. Some people are not patient enough to deal with the newly acquired drama and can sometimes make the problem worse than it need to be.\n This list most definitely did not cover every pro or con associated with empathy because they will differ from person to person however i did cover a few recurring pros and cons. whether you think empathy is worth your time and energy is up to you and your values in life and social interaction.", - "json_metadata": "{\"tags\":[\"empathy\",\"psychology\",\"social-skills\",\"problems\"]}", - "last_update": "2016-08-28T17:13:21", - "created": "2016-08-28T17:13:21", - "active": "2016-08-28T17:13:21", - "last_payout": "2016-08-29T17:28:57", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T17:28:57", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "ebluefox", - "root_permlink": "the-pros-and-cons-of-empathy", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779920, - "author": "steemsquad", - "permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "Hello! We Are STEEMSQUAD And We Are Here to Support The Minnows. Read On.", - "body": "\n

We are STEEMSQUAD, a Steemit inititative to promote diversity and quality of content by featuring authors from the school of minnows.

\n

\"steem-squad3\"
\n

\n

WHAT is #steemsquad?

\n

Steemsquad is an initiative of multiple minnows whose objective is to promote diverse and quality content and their work which may not have a chance to get noticed when published in the main streem. STEEMSQUAD initiative will try to tweak the game to equally distribute the wealth among its members. 

\n

STEEMSQUAD is a community-backed account responsible for posting blogs of qualified authors and at the same time upvotes quality blog posts of its members.

\n

Members of STEEMSQUAD are from across multiple timelines to ensure a 24/7 support and active participation in Steemit.

\n

The Issue at Hand

\n

For quite some time, there has been a noticeable trend as to who gets rewards. Those favored are the whales themselves, members with high reputation levels, incoming popular personalities and celebrities either from the cryptocurrency world or the entertainment world. A number of people from the finance institutions have joined as well and have garnered huge rewards on their “introductory” posts.

\n

And what happens to those who are not celebrities, unknown personalities from not-so-popular backgrounds? Their posts get dumped, thrown into oblivion. Then all the sweat and blood poured spilled into writing the blog just go to waste. This is where #steemsquad comes in.

\n


\n

WHY We Do It?

\n

Steemit is a social media platform where **EVERYONE** gets paid for creating and curating content, as promised if and when you decide to dive into the Steemit Ocean. 

\n

It leverages a robust digital points system, called Steem, that supports real value for digital rewards through market price discovery and liquidity.

\n

We aim to give EVERYONE a chance to get noticed, earn rewards, and be a part of a community of people helping people.

\n

You Can Succeed

\n

All HOPE is NOT LOST. We have seen minnows rise to the occasion. With a positive attitude, an unwavering determination, lots and lots of good quality posts (one is enough though to get you 15k, if you hit the nail on the head), there is no reason why you can’t be successful here in Steemit.

\n

#steemsquad will support you along the way.

\n

OUR GOLDEN RULES

\n
    \n
  1. We give priority to quality contents from low-powered profiles (minnows).
  2. \n
  3. The published author gets 100% of SBD. However, 50% of which goes to the author’s SP to allow the author to power-up leveraging his/her SP to upvote other writers.
  4. \n
  5. Any SP earned by STEEMSQUAD remains in the STEEMSQUAD account to gain more voting power for the benefit of its members.
  6. \n
  7. Pay-it-forward. The powered-up author commits to help other writers by upvoting and commenting to blog post to increase the post’s value.
  8. \n
\n


\n

HOW TO GET PUBLISHED BY STEEMSQUAD

\n

\n

PHOTO CREDIT: Anna Frajtova / shutterstock.com
\n

\n
    \n
  1. FOLLOW the account STEEMSQUAD and be a member of the initiative.
  2. \n
  3. You have to signify your willingness to join by coming to our official chatroom in https://steemit.chat/channel/steemsquad. Introduce yourself and state your intention to join the initiative. Include a link to your Steemit profile.
  4. \n
  5. Submit your article in plain text format and links to images. Send your entry to @steemit.asia or @sebastien or @jaycobbell as a PM.
  6. \n
  7. Article must be at least 300 words with at least 1 image.
  8. \n
  9. Give credit to the images you use.
  10. \n
  11. If you quote someone, give credit as well.
  12. \n
  13. At least 80% of the article must be your own.
  14. \n
  15. You will get feedback after 24 hours and a schedule will be provided when your work will be published.
  16. \n
  17. Once it is published, it will be promoted to the chatroom by either @steemit.asia or @sebastien or @jaycobbell in https://steemit.chat/channel/steemsquadpromotional for all members to see. This is where all promotions are done.
  18. \n
\n


\n

HOW TO GET UPVOTED BY STEEMSQUAD AND MEMBERS

\n


\nPHOTO CREDIT: Clipartix.com
\n

\n
    \n
  1. To get a chance to be upvoted by STEEMSQUAD, you must have a QUALITY blog post.
  2. \n
  3. Use the tag #steemsquad in your blog post.
  4. \n
  5. Our curators will browse through all blog posts using our official #steemsquad tag name and choose will notify the author by commenting that the post has been chosen as a featured post/author. It will be promoted in our chat channel https://steemit.chat/channel/steemsquadpromotional.
  6. \n
\n


\n

STEEMSQUAD ACCOUNT SECURITY

\n

The Posting Key (The posting key is used for posting and voting. It should be different from the active and owner keys) will be given to at least 3 members of STEEMSQUAD responsible for posting blog posts in 24 hour cycle.

\n

The Active Key (The active key is used to make transfers and place orders in the internal market) will be given to 2 members of STEEMSQUAD. One member will act as auditor/backup in case the primary member is not available.

\n

The Owner Key (The owner key is the master key for the account and is required to change the other keys) is given to one Whale sponsor and 2 other members of STEEMSQUAD.

\n

A member responsible for the account security may hold more than one (1) key as shown above.

\n


\n

OUR MENTORS

\n

There are people we consider as examples on the platform. Inspiration, mentors.

\n

@juneaugoldbuyer
\n@thedollarvigilante
\n@dragonslayer109
\n@stellabelle
\n@charlieshreem
\n@rogerkver
\n@donkypong
\n@tuck-fheman
\n@masteryoda
\n@andrarchy 

\n

\"steem-squad-FOLLOW-US\"
\n

\n", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemsquad\",\"steemit\",\"minnows\",\"writing\"],\"users\":[\"steemit.asia\",\"sebastien\",\"jaycobbell\",\"juneaugoldbuyer\",\"dragonslayer109\",\"stellabelle\",\"charlieshreem\",\"rogerkver\",\"donkypong\",\"tuck-fheman\",\"masteryoda\",\"andrarchy\"],\"image\":[\"https://c1.staticflickr.com/9/8171/29209353271_2eabbba74f_o.png\",\"https://cdn.elegantthemes.com/blog/wp-content/uploads/2016/02/Essential-Blogging-Skills-Know-your-Audience-shutterstock_222537538-Anna-Frajtova.png\",\"http://clipartix.com/wp-content/uploads/2016/04/Thumbs-up-clipart-3.png\",\"https://c1.staticflickr.com/9/8305/29179909862_ed27607510_o.png\"],\"links\":[\"https://steemit.chat/channel/steemsquad.\",\"https://steemit.chat/channel/steemsquadpromotional\",\"https://steemit.chat/channel/steemsquadpromotional.\"]}", - "last_update": "2016-08-28T17:13:18", - "created": "2016-08-28T17:13:18", - "active": "2016-09-11T21:09:09", - "last_payout": "2016-08-30T11:08:54", - "depth": 0, - "children": 18, - "net_rshares": "2243580957008", - "abs_rshares": "2243580957008", - "vote_rshares": "2243580957008", - "children_abs_rshares": "2254360518257", - "cashout_time": "2016-09-29T11:08:54", - "max_cashout_time": "2016-09-13T14:10:24", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "566", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "173", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 588, - "net_votes": 57, - "root_author": "steemsquad", - "root_permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 778828, - "author": "okay", - "permlink": "this-week-s-sky-aug-27-sep-3", - "category": "science", - "parent_author": "", - "parent_permlink": "science", - "title": "This Week's Sky Aug-27/Sep-3", - "body": "## A picture is worth a thousand words, more so in astronomy ##\n\n**Let's take a look at the coming week's sky**\n\n\nhttp://www.skyandtelescope.com/wp-content/uploads/Venus-Jupiter-27Aug2016_f.jpg\n(Image courtesy of Sky and Telescope)\nOn August 27th, about 45 minutes after sunset, go outdoors and start looking low above the horizon in the west for an amazingly close pairing of Venus and Jupiter.\n\nhttp://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\n\n\nNext weekend, shortly after sunset, the thin Moon (waxing crescent) steps away from Venus and Jupiter.\n\nLooking at the night sky is a great joy! Free for everyone with no ticket required. You can watch the evening sky with your naked eye, no need for telescope or binoculars for these beautiful astronomical events.\n\n*Stay tuned for next week's sky.*\n\n\n\n\n If you enjoyed this post please vote for my witness node. Learn how to vote for witness `okay` **at the end of my witness post** by [**clicking here**](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network). ", - "json_metadata": "{\"tags\":[\"science\",\"astronomy\"],\"image\":[\"http://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", - "last_update": "2016-08-28T17:13:03", - "created": "2016-08-28T15:45:33", - "active": "2016-08-28T17:13:03", - "last_payout": "2016-08-29T16:11:21", - "depth": 0, - "children": 5, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T16:11:21", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "okay", - "root_permlink": "this-week-s-sky-aug-27-sep-3", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779916, - "author": "skyefox", - "permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", - "category": "garden", - "parent_author": "", - "parent_permlink": "garden", - "title": "A small garden update... My Pink Brandywine Tomatoes are coming!", - "body": "As I have stated in earlier posts, gardening is currently my obsession.. it's seems wild to me that the standard is to work for currency and trade currency for food rather than just growing your own food. \n

Here is my small harvest from this morning!

\nEvery morning I go out and eat a couple of my cherry tomatoes, a few leafy greens, and usually 1/2 a leaf of my sweet basil. It's a wonderful thing to wake up, take the dog out and get a healthy organic little snack. I love it.\nhttps://s14.postimg.org/62aqviz0h/IMG_1804.jpg\n\n\nI understand that gardening takes time, effort, and a little bit of knowledge but in my opinion it is one of the most reward \"hobbies.\" This is my first year gardening. I decided to garden this year because I have been doing more and more reading about the American food industry and my conclusion is that the American population are being made sick on purpose through the food we eat. I don't know exactly what does what in our food but it seems absolutely insane to me that we can't get the FDA to evaluate any dietary supplements but they will evaluate and even vouch for these lab made pharmaceutical drugs. \n\nAll of this lead me to feeling a strong urge to grow organic food. I honestly feel guilty when I feed my family and I don't fully believe in what we are eating. Don't get me wrong, I love pepperoni pizza but ignorance is bliss, and I am not ignorant to what I am eating. \n\nI believe I am slowly heading down the path of becoming a vegan as I gain more knowledge. I have always been a hunter and a fisherman, it's what I was taught as a young boy in the north woods. I love to hunt and fish, but I also have a very deep compassion for life. Not human life, but life in general. I believe that we are intelligent enough as a species to live without causing harm to other living things that are equipped with nervous systems. I guess I am just realizing day by day that things are not necessarily what I have been told... \n

This kind of sums up how I feel currently...

\nhttps://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\n\nI am not a very good consumer. I am very frugal and calculated with my money, sometimes to a fault. I'm also not good at being an employee and just being a \"gear in the machine.\" I was not built to work and be told what to do while someone acts as if their employment position somehow gives them a higher status than I. We are humans, you just have a different job. These factors, and many others, have lead to me being self employed and trying to find my way on the internet. I have dabble in many things online and I have learned enough to at least provide myself with enough income to pay my mortgage, bills, etc.. \n\nI am also someone that is in the prepper mind state. I have started my small stockpile of beans, rice, and various other dried foods. I think that the American people have become complacent and many of us are just chasing the carrot we were instructed to chase. Many people seem to not realize the fact that we as a country heavily depend on other people or corporations for the things we use everyday. If water and electricity were to be shut off and panic set it, many people would die because they don't know what to do without someone else providing them with these luxuries. \n\nI don't like the idea of depending on anyone for anything. I have always been someone who provided for myself. I got a job at 14 years old at the local bakery working Saturday mornings so that I could get my first computer myself. I worked for weeks, since I was only getting paid $5.15/hour (roughly 13 years ago) it took me a long time to save up for a computer to play Counterstrike 1.5... We had 6 kids in our house in a \"middle class\" family, needless to say we were told to get jobs as early as possible to acquire our luxuries. Since then I have had the mindset that I don't want to allow someone else to be \"the hand that feeds\", and that applies to food, water, electricity, and even knowledge of my child. \n\nDEPENDENCY OPENS THE DOORS FOR EXPLOITATION! And in a capitalist driven global economy, if it can be exploited, it often is. \n\nMy apologies, there I go again, going of on some rant instead of just showing you the damn garden update. I already can't wait for next spring. I have been buying heirloom vegetable seeds and thrift shopping for large planters for $1 so that next year I can grow lots more. \n

This is the Pink Brandywine that I am so excited about!

\nThese guys took forever to grow. I didn't know what I was doing and I had put too many plants in 1 planter which caused them to compete for the nutrients. On top of them a strong storm came through and blew these guys over and bent there stalks horizontal. I really didn't know if I would get any fruit from them, but they are changing and I can't wait to eat these!\nhttps://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\n\nhttps://s14.postimg.org/e3txgbbgh/IMG_1800.jpg\n\nHere is a cucumber that is growing a little goofy. Not sure why but its like a beer can cucumber... lol\nhttps://s14.postimg.org/c1tg22dhd/IMG_1802.jpg\n\nA more normal cucumber... \nhttps://s14.postimg.org/610t23x6p/IMG_1803.jpg\n\nAnd this is my $3 table I built so that I could start my seeds indoors under some fluorescent lights. \n\n\nhttps://s14.postimg.org/6t3h1b1dt/IMG_1805.jpg\n\n\nThank you for reading and happy gardening!", - "json_metadata": "{\"tags\":[\"garden\",\"photography\",\"rant\",\"food\"],\"image\":[\"https://s14.postimg.org/62aqviz0h/IMG_1804.jpg\",\"https://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\",\"https://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\"]}", - "last_update": "2016-08-28T17:12:54", - "created": "2016-08-28T17:12:54", - "active": "2016-08-28T17:36:42", - "last_payout": "2016-08-29T18:11:57", - "depth": 0, - "children": 2, - "net_rshares": "130408996119", - "abs_rshares": "130408996119", - "vote_rshares": "130408996119", - "children_abs_rshares": "130408996119", - "cashout_time": "2016-09-28T18:11:57", - "max_cashout_time": "2016-09-12T21:18:18", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "123", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "15", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 125, - "net_votes": 37, - "root_author": "skyefox", - "root_permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 779915, - "author": "fitiliper1985", - "permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", - "category": "sex", - "parent_author": "", - "parent_permlink": "sex", - "title": "In a relationship, sex becomes a matter of selfishness or unselfishness.", - "body": "
http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png
\n

\n

Before I was in a relationship, I didn't have much sex. My first sexual intercourse occurred while I was travelling overseas on a holiday by myself. I met a woman in hawaii at the airport, and later had sex with her.

\n

I had done a lot of masturbating prior to this. I had often thought about having sex, and I found that my sexual drive caused me to behave in ways that I normally wouldn't. 

\n

\n
https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg
\n

\n

For example I would follow women I found attractive, or I would try to look up their skirts, or I would wander about at night to try to look into bedroom windows.

\n

When I met someone that I knew I would marry, I thought I would be able to have sex as much as I liked because my wife would always be available to have it with me. This turned out to be untrue. My wife didn't want to have sex as often as I wanted to, and I found myself still masturbating while I waited for the next time to come.

\n

I don't think women understand the power of their husband's sexual drive. 

\n

\n
http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg
\n

\n

Men are attracted to women by how they look. It doesn't matter if they are strangers. Men will look at a woman dressed in  a certain way and will start feeling horny. As soon as they ejaculate, the feeling of horniness goes, but will return in a couple of hours. When the sexual desire comes upon a man, it becomes his dominating thought, and it demands to be satisfied. That's why many men then masturbate in order to relieve the pressure on their thoughts. If unrelieved the pressure grows and if the wife is unwilling to have sex, then some men will look for other women to have sex with. 

\n

The sexual pressure is constantly present in a man's mind until relief comes.

\n

\n
https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg
\n

\n

Most women are not as interested in sex as men. 

\n

\n
https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg
\n

\n

Women are more interested in relationship.  Women have sex with a man in the hope that the man will want to stay in their life and have a relationship with them. 

\n

Some women use sex as a bait to catch a man, and then when the relationship is happening, they are not as interested in sex anymore. Women enjoy sex, but as part of a fulfilling relationship. Men just want to put their penis into a vagina and ejaculate. As soon as ejaculation occurs, a lot of men lose all interest in the woman. The woman then feels hurt and used because she didn't get what she wanted which was relationship. Men will say anything they think a woman wants to hear in order to have sex.

\n

Wives who have sex with their husbands when not really wanting it, feel used by their husbands. Women also can be selfish when they demand sex from men who are not in the mood. 

\n

God created sex to be enjoyed in a committed relationship between a man and a woman who are one person physically, spiritually, emotionally, and mentally. 

\n

Sex is a part of the relationship, not the main thing. If a man demands sex then he is being selfish, and his relationship will be harmed if the woman gives sex to the man when she is not wanting to have it. If the man wants sex with his wife, then he must give her what she wants. He must romance her and give her a good relationship. Then if sex happens, it will be enjoyable for both of them. This will build the relationship.

", - "json_metadata": "{\"tags\":[\"sex\",\"psychology\",\"life\",\"story\",\"\"],\"image\":[\"http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png\",\"https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg\",\"http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg\",\"https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg\",\"https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg\"]}", - "last_update": "2016-08-28T17:12:42", - "created": "2016-08-28T17:12:42", - "active": "2016-08-28T18:08:06", - "last_payout": "2016-08-29T17:56:42", - "depth": 0, - "children": 5, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T17:56:42", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 12, - "root_author": "fitiliper1985", - "root_permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": "114793970759", + "active": "2016-08-31T12:56:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gringalicious", + "author_rewards": 75232, + "beneficiaries": [], + "body": "\n

Ok, I surrender!  A horrible picture of myself holding a piece of paper.  I have to say, I don't get it.  I hate taking pictures of myself.  But, several of you have insisted, so... you win, here it is, verification for @gringalicious

\n

\n

I am a 20 year old food blogger living in Chile with my crazy family.  You can read more about that at my first attempt of introducing myself here: Gringalicious Intro .  I have a passion for cooking and a passion for photography.  Yeah, I know, you can't tell by the photo above, but I digress.  You can see examples of my passion on my page @gringalicious. I don't like labels necessarily, but let's just say I don't like the state and those conditioned by the state telling me what to do.  Nor do I like telling others how they should liver their lives.  I will post more on those topics at a later date.

\n

The idea of #Steemit thoroughly intrigues me.  I look forward to being part of the community!

\n

And since I am here talking about myself, I was featured in a magazine recently.  Not trying to promote the magazine necessarily, just trying to add validity to my verification.  And, I have to admit, I just a little proud of myself.

\n

\n

\n


\n

Later this week, I'll be posting a recipe with a #steemitlogo incorporated in it.  So, keep an eye out for it.

\n

I do hope this helps satisfy the request that many of you have made.  If I need to do something different, please let me know.  I actually like corrective criticism so bring it on.

\n

Until my next post, hasta luego mis amigos

\n

Tori

\n", + "cashout_time": "2016-09-28T22:59:51", + "category": "introduceyourself", + "children": 48, + "children_abs_rshares": "256626492237", + "created": "2016-08-28T17:15:12", + "curator_payout_value": { + "amount": "12739", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779946, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"food\",\"photography\",\"Steemit\",\"steemitlogo\"],\"users\":[\"gringalicious\"],\"image\":[\"https://s19.postimg.org/9vrr3pg8j/DSC_0750_2.jpg\",\"https://s19.postimg.org/4j2wpksc3/IMG_20160828_131820621.jpg\",\"https://s16.postimg.org/3ougnif51/IMG_20160828_131853738.jpg\"],\"links\":[\"https://steemit.com/introduceyourself/@gringalicious/hola-steemit-photographer-food-blogger-traveler-and-student-of-life-i-am\"]}", + "last_payout": "2016-08-29T22:59:51", + "last_update": "2016-08-28T17:15:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-14T00:51:15", + "net_rshares": "114793970759", + "net_votes": 82, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "hello-again-better-late-than-never-a-re-introduction-verification", + "reward_weight": 10000, + "root_author": "gringalicious", + "root_permlink": "hello-again-better-late-than-never-a-re-introduction-verification", + "title": "Hello Again - Better Late Than Never - a RE introduction VERIFICATION", + "total_payout_value": { + "amount": "73426", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "114793970759" + }, + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 588, + "beneficiaries": [], + "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", + "cashout_time": "2016-09-28T20:19:39", + "category": "foodchallenge", + "children": 18, + "children_abs_rshares": 2374341643, + "created": "2016-08-28T17:15:12", + "curator_payout_value": { + "amount": "131", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779947, + "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:15:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T01:24:24", + "net_rshares": 0, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "foodchallenge", + "percent_hbd": 10000, + "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", + "total_payout_value": { + "amount": "576", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:15:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "forklognews", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\u041f\u0440\u043e\u0448\u0435\u0434\u0448\u0430\u044f \u043d\u0435\u0434\u0435\u043b\u044f \u043e\u043a\u0430\u0437\u0430\u043b\u0430\u0441\u044c \u0431\u043e\u0433\u0430\u0442\u043e\u0439 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u043c\u0438, \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u043c \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0434\u043b\u044f \u043d\u0430\u0448\u0435\u0439 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u0441\u0442\u0430\u043b\u043e \u0434\u0432\u0443\u0445\u043b\u0435\u0442\u0438\u0435 Forklog. \u0414\u0432\u0430 \u0433\u043e\u0434\u0430 \u043d\u0430\u0437\u0430\u0434, 25 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0431\u044b\u043b \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0434\u043e\u043c\u0435\u043d ForkLog.com, \u0430 \u0441\u043f\u0443\u0441\u0442\u044f \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u0434\u0435\u043b\u0430\u043d\u044b \u043f\u0435\u0440\u0432\u044b\u0435 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u043d\u0430 \u0441\u0430\u0439\u0442\u0435. \u041e\u0431 \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0445, \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u0445 \u043c\u0438\u0440\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442, \u0432\u044b \u0443\u0437\u043d\u0430\u0435\u0442\u0435 \u0438\u0437 \u043d\u0430\u0448\u0435\u0433\u043e \u0435\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0439\u0434\u0436\u0435\u0441\u0442\u0430. 

\n

 \u0411\u0418\u0420\u0416\u0418

\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u0438\u043c\u0435\u043d\u0438\u043d\u043d\u0438\u043a\u043e\u043c \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0438 \u0441\u0442\u0430\u043b\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 Bitstamp, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u043e\u0442\u043c\u0435\u0442\u0438\u043b\u0430 \u043f\u044f\u0442\u0438\u043b\u0435\u0442\u0438\u0435 \u0441\u043e \u0434\u043d\u044f \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f. \u041a \u044d\u0442\u043e\u043c\u0443 \u0441\u043e\u0431\u044b\u0442\u0438\u044e \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0438\u0443\u0440\u043e\u0447\u0438\u043b\u0430 \u043a\u043e\u043d\u043a\u0443\u0440\u0441 \u0441 \u0446\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0440\u0438\u0437\u0430\u043c\u0438.

\n

\u041d\u043e \u044e\u0431\u0438\u043b\u0435\u0438 \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043f\u043e\u0432\u043e\u0434\u043e\u043c \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0430\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 \u0438 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0431\u0438\u0440\u0436 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0440\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0442 \u044d\u0442\u043e \u043c\u043d\u0435\u043d\u0438\u0435, \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u044f \u0433\u0434\u0435-\u0442\u043e \u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0435, \u0430 \u0433\u0434\u0435-\u0442\u043e \u0438 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f.

\n

\u0422\u0430\u043a, \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 GDAX \u043d\u0430\u0447\u0430\u043b\u0430 \u0442\u043e\u0440\u0433\u0438 \u0447\u0435\u0442\u0432\u0435\u0440\u0442\u043e\u0439 \u043f\u043e \u0440\u044b\u043d\u043e\u0447\u043d\u043e\u0439 \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043e\u0439 Litecoin. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0434\u0435\u043b\u0430\u043d\u043e \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0431\u043b\u043e\u0433\u0435 \u0431\u0438\u0440\u0436\u0438. \u0414\u043b\u044f \u0442\u043e\u0440\u0433\u043e\u0432 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0434\u0432\u0435 \u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043f\u0430\u0440\u044b: \u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430\u043c \u0421\u0428\u0410 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043f\u0430\u0440\u0430 LTC / USD, \u0432\u0441\u0435\u043c \u043f\u0440\u043e\u0447\u0438\u043c \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u2014 \u043f\u0430\u0440\u0430 LTC / BTC.

\n

\u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, 23 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0442\u0432\u0438\u0442\u0442\u0435\u0440\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u043e\u0439 \u0431\u0438\u0440\u0436\u0438 Poloniex \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043e\u0441\u043d\u044f\u0442\u0438\u0438 \u0441 \u0442\u043e\u0440\u0433\u043e\u0432 27 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442. \u0422\u043e\u0440\u0433\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0435\u043d\u044b 5 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430 \u0438 \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0443\u0436\u0435 \u0432\u044b\u0437\u0432\u0430\u043b\u043e \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043d\u0435\u0434\u043e\u0443\u043c\u0435\u043d\u0438\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430, \u0432\u0435\u0434\u044c \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u0447\u0435\u043d\u044c \u0432\u043e\u0448\u043b\u0438 \u0442\u0430\u043a\u0438\u0435 \u0430\u043b\u044c\u0442\u043a\u043e\u0438\u043d\u044b, \u043a\u0430\u043a DAO, Dashcoin \u0438 Mintcoin, \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0438\u0433 $1,22 \u043c\u043b\u043d. 

\n

\n

 \u041f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u043a \u043a\u043e\u043d\u0446\u0443 \u0438 \u043d\u0430\u0448\u0443\u043c\u0435\u0432\u0448\u0430\u044f \u0438\u0441\u0442\u043e\u0440\u0438\u044f \u0441 \u0431\u0438\u0440\u0436\u0435\u0439 Bitfinex, \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0435\u0439 \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u0437\u043b\u043e\u043c\u0430. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0431\u0438\u0440\u0436\u0438 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u0438\u0438 \u0434\u043e\u0433\u043e\u0432\u043e\u0440\u0430 \u0441 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u043e\u0439 BnkToTheFuture \u0441 \u0446\u0435\u043b\u044c\u044e \u0432\u043e\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0440\u0435\u0434\u0441\u0442\u0432 \u0432\u043a\u043b\u0430\u0434\u0447\u0438\u043a\u043e\u0432 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u0434\u043e\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0447\u0430\u0441\u0442\u0438\u044f \u0432 \u0430\u043a\u0446\u0438\u043e\u043d\u0435\u0440\u043d\u043e\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438. 

\n

\n

 \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0443 \u0441 BnkToTheFuture \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Bitfinex \u0441\u043c\u043e\u0433\u0443\u0442 \u043e\u0431\u043c\u0435\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u0438\u043c \u0442\u043e\u043a\u0435\u043d\u044b BFX \u043d\u0430 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0443\u044e \u0434\u043e\u043b\u044e \u0432 iFinex Inc, \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438\u0445 \u0412\u0438\u0440\u0433\u0438\u043d\u0441\u043a\u0438\u0445 \u041e\u0441\u0442\u0440\u043e\u0432\u0430\u0445 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u0430\u044f \u043d\u043e\u0432\u043e\u0441\u0442\u044c \u043f\u0440\u0438\u0448\u043b\u0430 \u043d\u0430 \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0435 \u0438\u0437 \u0422\u0443\u0440\u0446\u0438\u0438, \u0433\u0434\u0435 \u0432\u0435\u0434\u0443\u0449\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0438 BTCTurk \u0431\u044b\u043b\u0430 \u0432\u044b\u043d\u0443\u0436\u0434\u0435\u043d\u0430 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443, \u0441\u0442\u043e\u043b\u043a\u043d\u0443\u0432\u0448\u0438\u0441\u044c \u0441 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u043e\u043c \u043e\u0442\u043a\u0430\u0437\u043e\u043c \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0430 \u043e\u0442 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0433\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430. \u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442 \u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c, \u043e\u0434\u043d\u0430\u043a\u043e \u0438\u0437-\u0437\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0445 \u0441\u0447\u0435\u0442\u043e\u0432 \u044d\u0442\u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u0442\u044f\u043d\u0443\u0442\u044c\u0441\u044f. 

\n

 \u041a\u041e\u0428\u0415\u041b\u042c\u041a\u0418 \u0418 \u041f\u041b\u0410\u0422\u0401\u0416\u041d\u042b\u0415 \u0421\u0415\u0420\u0412\u0418\u0421\u042b

\n

\u041f\u0435\u0440\u0432\u044b\u043c \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u044b\u043c \u043a\u043e\u0448\u0435\u043b\u044c\u043a\u043e\u043c, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0438\u043c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Ethereum, \u0441\u0442\u0430\u043b Trezor. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0430 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 Trezor \u043d\u0430 Github.

\n

\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043e\u0442 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438-\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430 SatoshiLabs \u043f\u043e\u043a\u0430, \u0432\u043f\u0440\u043e\u0447\u0435\u043c, \u043d\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u043b\u043e, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0434\u0430\u0442\u0430 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0435\u043b\u0438\u0437\u0430 \u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u0430 \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043e\u0441\u0442\u0430\u0435\u0442\u0441\u044f \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e\u0439.

\n

\u0421\u043f\u0438\u0441\u043a\u0438 \u0440\u0430\u0431\u043e\u0447\u0438\u0445 \u0432\u0430\u043b\u044e\u0442 \u043f\u043e\u043f\u043e\u043b\u043d\u0438\u043b\u0438\u0441\u044c \u0443 \u043f\u043b\u0430\u0442\u0451\u0436\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 Bitwala, \u0432\u043a\u043b\u044e\u0447\u0438\u0432\u0448\u0435\u0433\u043e \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Dash \u0438 Emercoin, \u0438 \u0432\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044c\u0441\u043a\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b Cryptobuyer, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0435\u0439 Dash. \u041e\u0442\u043c\u0435\u0442\u0438\u043c, \u0447\u0442\u043e \u0436\u0438\u0442\u0435\u043b\u0438 \u0412\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044b, \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043d\u0435\u0442 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u0432 \u043b\u0438\u0431\u043e \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u043e\u0432 \u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u0432 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442, \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0443\u0441\u043b\u0443\u0433\u0430\u043c\u0438 \u043c\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0451\u0440\u0430 Cryptobuyer \u2013 \u0441\u0435\u0442\u044c\u044e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u043c\u0430\u0442\u043e\u0432 TigoCTM.

\n

\u0422\u0430\u043a\u0436\u0435 \u0432\u044b\u0448\u043b\u0430 \u0432 \u0441\u0432\u0435\u0442 \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f Ethereum-\u043a\u043e\u0448\u0435\u043b\u044c\u043a\u0430 Mist \u0441 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u043e\u0439 Coinbase Buy Widget. \u041e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0435\u0451 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u043e\u0441\u043e\u0431\u0435\u043d\u043d\u043e\u0441\u0442\u0435\u0439 \u0441\u0442\u0430\u043b\u043e \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 Coinbase Buy Widget \u2013 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430, \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0438\u0442\u044c \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u043a\u0443\u043f\u043a\u0443 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043d\u0430 \u0441\u0443\u043c\u043c\u0443 \u0434\u043e $5.

\n

\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0434\u0430\u043d\u043d\u0430\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c \u0438\u0437 \u0421\u0428\u0410 \u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043d\u0430\u043b\u0438\u0447\u0438\u044f \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430 \u043d\u0430 Coinbase. 

\n

\n

 \u0411\u0410\u041d\u041a\u0418 \u0418 \u041a\u041e\u0420\u041f\u041e\u0420\u0410\u0426\u0418\u0418

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u043c \u0438\u0437\u0432\u0435\u0441\u0442\u0438\u0435\u043c, \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u044b\u043c \u0441\u0442\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0432\u0435\u0441\u0442\u043d\u0438\u043a\u043e\u043c \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0445 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0435, \u0441\u0442\u0430\u043b\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0438\u0437\u0434\u0430\u043d\u0438\u044f Financial Times \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0440\u044f\u0434 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0445 \u043c\u0438\u0440\u043e\u0432\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u0432 \u043f\u0440\u0438\u043d\u044f\u043b \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043d\u043e\u0432\u043e\u0439 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u043b\u044e\u0442\u044b. \u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0435\u0439 \u0431\u0430\u043d\u043a\u043e\u0432 UBS, Deutsche Bank, Santander \u0438 BNY Mellon \u043e\u0436\u0438\u0434\u0430\u043b\u043e\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u043d\u043e \u0434\u043e \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u043d\u0435 \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c.

\n

\u0415\u0441\u043b\u0438 \u044d\u0442\u043e \u043e\u043a\u0430\u0436\u0435\u0442\u0441\u044f \u043d\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u0443\u0442\u043a\u043e\u0439, \u0442\u043e \u0441\u0442\u043e\u0438\u0442 \u043e\u0436\u0438\u0434\u0430\u0442\u044c, \u0447\u0442\u043e \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u043a \u044d\u0442\u043e\u0439 \u0438\u043d\u0438\u0446\u0438\u0430\u0442\u0438\u0432\u0435 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u044f\u0442\u0441\u044f \u0438 \u043f\u0440\u043e\u0447\u0438\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u044b \u0441\u043e \u0432\u0441\u0435\u0445 \u043a\u043e\u043d\u0446\u043e\u0432 \u0441\u0432\u0435\u0442\u0430, \u0434\u0430\u0436\u0435 \u0441 \u0434\u0430\u043b\u0451\u043a\u043e\u0433\u043e \u0430\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0438\u043d\u0435\u043d\u0442\u0430. \u0422\u0430\u043c \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0439 \u042e\u0436\u043d\u043e-\u0410\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u0431\u0430\u043d\u043a\u0430 \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e \u0432 \u0441\u0432\u043e\u0435\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0438 \u043d\u0430 \u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0438\u0438 \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u043a\u0440\u0438\u043f\u0442\u043e\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u0443\u0436\u0435 \u0438\u0437\u0443\u0447\u0430\u0435\u0442 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0437\u0430\u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043e\u0432\u0430\u043d \u0432 \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0434\u0430\u0442\u044c \u044d\u0442\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f. 

\n
 \u00ab\u041a\u0430\u043a \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u0431\u0430\u043d\u043a, \u043c\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044b \u043a \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u043c \u043d\u0435\u0441\u043c\u043e\u0442\u0440\u044f \u043d\u0430 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u043e\u0435 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u043e\u0440\u043e\u0432 \u043a \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u043c. \u041c\u044b \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u044b \u0438\u0437\u0443\u0447\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043a\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e. 
\n

 \u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0439 \u0431\u0430\u043d\u043a \u042f\u043f\u043e\u043d\u0438\u0438 Bank of Tokyo-Mitsubishi UFJ (MUFG) \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e\u0431 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0438 \u0432\u0435\u0440\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043b\u0430\u0442\u0435\u0436\u0438 \u043f\u043e \u0447\u0435\u043a\u0430\u043c. \u0421\u043e\u0437\u0434\u0430\u043d\u043d\u043e\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0432 \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u043c\u0438 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u0430\u043c\u0438 \u0438 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u043c\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f\u043c\u0438 \u0432 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u043e\u043c \u0440\u0435\u0433\u0438\u043e\u043d\u0435. \u0412 \u0431\u0443\u0434\u0443\u0449\u0435\u043c Bank of Tokyo-Mitsubishi \u043d\u0430\u0434\u0435\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043c\u043e\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043d\u0430\u0439\u0442\u0438 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u0435.

\n

\u041e\u0442 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432 \u043d\u0435 \u043e\u0442\u0441\u0442\u0430\u044e\u0442 \u0438 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 \u043a\u043e\u043d\u0441\u043e\u0440\u0446\u0438\u0443\u043c\u0430 R3 CEV, \u0437\u0430\u043f\u0430\u0442\u0435\u043d\u0442\u043e\u0432\u0430\u0432\u0448\u0438\u0435 \u043d\u043e\u0432\u044b\u0439 \u043f\u0440\u043e\u0434\u0443\u043a\u0442 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 Concord, \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0439 \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0435 \u0423\u043e\u043b\u043b-\u0441\u0442\u0440\u0438\u0442.

\n

Concord \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0441\u043e\u0431\u043e\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0443, \u0441\u0432\u044f\u0437\u044b\u0432\u0430\u044e\u0449\u0443\u044e \u0432\u043e\u0435\u0434\u0438\u043d\u043e \u0440\u044b\u043d\u043a\u0438 \u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0438 \u043f\u0440\u0438\u0437\u0432\u0430\u043d\u043d\u0443\u044e \u043f\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u043c\u0438\u0434\u0434\u043b- \u0438 \u0431\u044d\u043a-\u043e\u0444\u0438\u0441\u043e\u0432 \u0432 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u0440\u0438\u0430\u043d\u0442. \u042d\u0442\u043e \u0434\u0430\u0441\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0431\u0430\u043d\u043a\u0430\u043c \u0438\u0437\u0431\u0430\u0432\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u044b\u0445 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432 \u0438 \u0441\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0442\u044c \u043c\u0438\u043b\u043b\u0438\u0430\u0440\u0434\u044b \u0434\u043e\u043b\u043b\u0430\u0440\u043e\u0432. \u041e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f, \u0447\u0442\u043e \u0430\u043b\u044c\u0444\u0430-\u0432\u0435\u0440\u0441\u0438\u044f \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430 \u0432 \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435 2017 \u0433\u043e\u0434\u0430.

\n

\u0412\u0441\u0451 \u044d\u0442\u043e \u0437\u0430\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u043e\u0432 \u0438 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0441\u0442\u043e\u0432 \u0441\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u043e\u043c \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u043b\u044c\u043d\u043e, \u043c\u0435\u043d\u044f\u044f \u0441\u0432\u043e\u0438 \u043f\u0440\u043e\u0433\u043d\u043e\u0437\u044b \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b.

\n

\u0412 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a \u041a\u0438\u0440\u0438\u043b\u043b \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u044d\u0442\u0438\u043c \u043f\u043e\u044f\u0432\u044f\u0442\u0441\u044f \u043d\u043e\u0432\u044b\u0435 \u043c\u0435\u0436\u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b.

\n
\u00ab\u0412 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 blockchain \u043f\u0440\u043e\u0447\u043d\u043e \u0443\u043a\u0440\u0435\u043f\u044f\u0442\u0441\u044f \u043d\u0430 \u043c\u0435\u0436\u0431\u0430\u043d\u043a\u0435, \u0432\u044b\u0442\u0435\u0441\u043d\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043e\u0431\u043c\u0435\u043d\u0430 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043c\u0435\u0436\u0434\u0443 \u043d\u0438\u043c\u0438 (\u0432 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0441\u0438\u0441\u0442\u0435\u043c\u0443 SWIFT) \u0438 \u0441\u0442\u0430\u043d\u0443\u0442 \u043d\u0435\u043e\u0442\u044a\u0435\u043c\u043b\u0435\u043c\u043e\u0439 \u0447\u0430\u0441\u0442\u044c\u044e \u0442\u043e\u0440\u0433\u043e\u0432 \u043d\u0430 \u0440\u044b\u043d\u043a\u0430\u0445 \u0446\u0435\u043d\u043d\u044b\u0445 \u0431\u0443\u043c\u0430\u0433. \u0427\u0442\u043e \u0436\u0435 \u043a\u0430\u0441\u0430\u0435\u0442\u0441\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0432 \u043f\u0440\u0438\u0432\u044b\u0447\u043d\u043e\u043c \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438, \u0442\u043e \u043e\u043d\u0438 \u0442\u0430\u043a\u0436\u0435, \u0441\u043a\u043e\u0440\u0435\u0435 \u0432\u0441\u0435\u0433\u043e, \u0443\u0436\u0435 \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u043c \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 blockchain \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u043d\u043e\u0435 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435\u00bb, \u2014 \u0441\u0447\u0438\u0442\u0430\u0435\u0442 \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e.
\n

\u041a\u041e\u041c\u041f\u0410\u041d\u0418\u0418

\n

\u0414\u0430\u0442\u0441\u043a\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Bitshares Munich IVS, \u0432\u043b\u0430\u0434\u0435\u044e\u0449\u0430\u044f \u0431\u0440\u0435\u043d\u0434\u043e\u043c BlockPay, \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0441\u0442\u0430\u0440\u0442\u0435 ICO. \u0412 \u0445\u043e\u0434\u0435 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 BlockPay, P2P-\u043c\u0435\u0441\u0441\u0435\u043d\u0434\u0436\u0435\u0440\u0430 ECHO \u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u044b\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u0435\u0439 Stealth. \u041f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043a\u0440\u0430\u0443\u0434\u0444\u0430\u043d\u0434\u0438\u043d\u0433\u043e\u0432\u043e\u0439 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043d\u0430 2016 \u0438 2017 \u0433\u043e\u0434\u044b. \u0421\u0430\u043c\u0430 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u043e\u0441\u0442\u043e\u0438\u0442 \u0438\u0437 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 ICO (Pre-ICO), \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0430\u0432\u0433\u0443\u0441\u0442 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430, \u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0430 \u0432 2017 \u0433\u043e\u0434\u0443. \u0412\u0441\u0435\u0433\u043e \u043f\u043b\u0430\u043d\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c 100 \u043c\u0438\u043b\u043b\u0438\u043e\u043d\u043e\u0432 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 BlockPay.

\n

\u041f\u0440\u043e\u0435\u043a\u0442 \u043f\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c \u043a\u043e\u0434\u043e\u043c Hyperledger \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u0438\u043c\u0435\u043d\u0430 \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u043e\u0441\u0442\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430. \u0421\u0440\u0435\u0434\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u2014 \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u044e\u0449\u0438\u0445 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0438 \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0439 \u0443\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0431\u0430\u0437\u044b \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u043a\u043e\u0434\u0430.

\n

\u0412 \u043d\u043e\u0432\u043e\u043c \u0441\u043e\u0441\u0442\u0430\u0432\u0435 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u043b\u0438 \u0441\u0432\u043e\u0438 \u043c\u0435\u0441\u0442\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 R3CEV \u0413\u0435\u043d\u0434\u0430\u043b \u0411\u0440\u0430\u0443\u043d, \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432 Digital Asset Holdings \u0422\u0430\u043c\u0430\u0448 \u0411\u043b\u0443\u043c\u043c\u0435\u0440, \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c Fujitsu \u0425\u0430\u0440\u0442 \u041c\u043e\u043d\u0442\u0433\u043e\u043c\u0435\u0440\u0438, \u0438\u043d\u0436\u0435\u043d\u0435\u0440 Intel \u041c\u0438\u043a \u0411\u043e\u0443\u043c\u0435\u043d \u0438 \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 IBM \u041a\u0440\u0438\u0441\u0442\u043e\u0444\u0435\u0440 \u0424\u0435\u0440\u0440\u0438\u0441. \u0421\u0440\u0435\u0434\u0438 \u043d\u043e\u0432\u044b\u0445 \u0438\u043c\u0435\u043d \u2013 \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c IBM \u0410\u0440\u043d\u043e \u043b\u0435 \u041e\u0440, \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u043e\u0440 IBM \u0411\u0438\u043d \u041d\u0433\u0443\u0435\u043d, \u0433\u043b\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a Intel \u0414\u044d\u043d \u041c\u0438\u0434\u0434\u043b\u0442\u043e\u043d, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 DTCC, Salesforce \u0438 \u041b\u043e\u043d\u0434\u043e\u043d\u0441\u043a\u043e\u0439 \u0444\u043e\u043d\u0434\u043e\u0432\u043e\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0441\u0442\u0430\u0440\u0442\u0430\u043f Chronicled Inc. \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u0434\u043b\u044f \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430 \u0432\u0435\u0449\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u044b\u043b \u0441\u043e\u0437\u0434\u0430\u043d \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 Ethereum. \u042d\u0442\u043e\u0442 \u0440\u0435\u0435\u0441\u0442\u0440 \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d \u0434\u043b\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0445 \u043a\u043e\u0434\u043e\u0432 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0438\u043c\u0435\u044e\u0449\u0438\u0445 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435 \u0447\u0438\u043f\u044b NFC \u0438 BLE.

\n
\u00ab\u0422\u0435\u043f\u0435\u0440\u044c \u0432\u0441\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0438 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0431\u0443\u0434\u044c-\u0442\u043e \u0431\u0440\u0435\u043d\u0434\u044b, \u043d\u043e\u0441\u0438\u0442\u0435\u043b\u0438 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0438 \u043f\u0440\u043e\u0447\u0435\u0435, \u043c\u043e\u0433\u0443\u0442 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0437\u0430\u0449\u0438\u0449\u0451\u043d\u043d\u044b\u0435 \u043e\u0442 \u043f\u043e\u0434\u0434\u0435\u043b\u043e\u043a \u0447\u0438\u043f\u044b \u0432 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 Chronicled \u0420\u0430\u0439\u0430\u043d \u041e\u0440\u0440. \u041d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u043e\u043c \u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043e \u043e\u043a\u043e\u043b\u043e 10 000 NFC \u0438 BLE \u0447\u0438\u043f\u043e\u0432.
\n

\u041a\u0430\u043a \u0441\u043e\u043e\u0431\u0449\u0430\u0435\u0442 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Business Insider UK, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u0432 \u0421\u0428\u0410 \u0442\u0435\u043b\u0435\u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Verizon Communications \u044d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0438\u0440\u0443\u0435\u0442 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0422\u0430\u043a, \u0432 \u0440\u0430\u0441\u043f\u043e\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u043f\u043e\u043f\u0430\u043b \u043f\u0430\u0442\u0435\u043d\u0442, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 Verizon 10 \u043c\u0430\u044f \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u0418\u0437 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u043f\u0430\u0442\u0435\u043d\u0442\u0430 \u0441\u043b\u0435\u0434\u0443\u0435\u0442, \u0447\u0442\u043e \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u0430 \u043d\u0435\u043a\u043e\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043a\u043b\u044e\u0447\u0435\u0439, \u0430 \u0440\u0430\u0431\u043e\u0442\u044b \u043d\u0430\u0434 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u043c \u0432\u0435\u043b\u0438\u0441\u044c \u043d\u0430 \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0442\u0440\u0451\u0445 \u043b\u0435\u0442. \u0412\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043f\u043e\u0434\u043e\u0431\u043d\u043e\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0432 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u0438 \u0441\u043e \u0441\u043c\u0430\u0440\u0442-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430\u043c\u0438 \u0434\u0430\u0451\u0442 \u043c\u0430\u0441\u0441\u0443 \u043d\u043e\u0432\u044b\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u0432 \u0441\u0444\u0435\u0440\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0438\u043b\u0438 \u0430\u0432\u0442\u043e\u0440\u044b \u0441\u0442\u0430\u0442\u0435\u0439 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0441\u0432\u043e\u044e \u043e\u043f\u043b\u0430\u0442\u0443 \u0441\u0440\u0430\u0437\u0443 \u0436\u0435 \u043f\u043e\u0441\u043b\u0435 \u0442\u043e\u0433\u043e, \u043a\u0430\u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0430\u0447\u0430\u043b \u0447\u0438\u0442\u0430\u0442\u044c \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b \u0438\u043b\u0438 \u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430\u0442\u044c \u043f\u0435\u0441\u043d\u044e.

\n

\u0412\u0430\u043b\u044e\u0442\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440\u0430 (MAS) \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u043b\u043e \u0441 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0435\u0434\u0438\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439, \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u043d\u044b\u0435 \u0443\u0441\u043b\u0443\u0433\u0438, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438.

\n

\u0421\u0442\u0430\u043b\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0447\u0442\u043e \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0441\u0442\u0430\u0440\u0442\u0430\u043f Keza \u0432\u044b\u043a\u0443\u043f\u043b\u0435\u043d \u0444\u0438\u043b\u0438\u043f\u043f\u0438\u043d\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 Satoshi Citadel Industries, \u0432 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u043c \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u043c \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0443\u0436\u0435 \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0442 \u0442\u0430\u043a\u0438\u0435 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u044b, \u043a\u0430\u043a Rebit.ph, Bitbit.cash \u0438 PrepaidBitcoin.ph.

\n
\u00abKeza \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u043b\u0430\u0441\u044c \u0441 \u043f\u0440\u0438\u0446\u0435\u043b\u043e\u043c \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u044e\u0449\u0438\u0435\u0441\u044f \u0440\u044b\u043d\u043a\u0438 \u0438 \u0434\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0435 \u0438\u043c\u0435\u044e\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u043c \u0440\u044b\u043d\u043a\u0430\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0430. \u041c\u044b \u0441\u0447\u0430\u0441\u0442\u043b\u0438\u0432\u044b, \u0447\u0442\u043e \u0442\u0435\u043f\u0435\u0440\u044c \u0432\u0438\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0441\u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0440\u0435\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043e\u00bb, \u2014 \u0446\u0438\u0442\u0438\u0440\u0443\u0435\u0442 CEO Keza \u0421\u0430\u0439\u043c\u043e\u043d\u0430 \u0411\u0435\u0440\u043d\u0441\u0430 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Silicon Angle.
\n

\u0414\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0435\u0442\u044c Steemit \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u00ab\u0431\u0435\u0441\u043f\u0440\u0435\u0446\u0435\u0434\u0435\u043d\u0442\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u0442\u0440\u0430\u0444\u0438\u043a\u0430\u00bb, \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u044b\u043c \u0441 \u0442\u0435\u043c, \u0447\u0442\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u043b\u0438 \u043d\u0430 \u0440\u0430\u043d\u043d\u0438\u0445 \u044d\u0442\u0430\u043f\u0430\u0445 \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f Facebook \u0438 Reddit.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Steemit, \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u0435\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u043e \u0440\u0430\u0437\u043c\u0435\u0449\u0430\u044e\u0442 \u0431\u043e\u043b\u0435\u0435 21 000 \u043d\u043e\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0430 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432 \u0432 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u043f\u043e\u0441\u0442\u043e\u0432 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0435\u0442 70 000. \u042d\u0442\u043e \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u043e \u0441 \u0440\u0430\u043d\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c\u044e \u043d\u0430 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0430\u0445 \u0432\u0440\u043e\u0434\u0435 Facebook \u0438 Reddit.

\n

\u0417\u0430 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u0434\u0435\u043b\u044c \u0434\u043e \u0441\u0442\u0430\u0440\u0442\u0430 \u043a\u0440\u0430\u0443\u0434\u0441\u0435\u0439\u043b\u0430 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 DECENT \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0434\u0438\u0441\u0442\u0440\u0438\u0431\u0443\u0446\u0438\u0438 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 DCT. \u0422\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0432\u0435\u0440\u0433\u043b\u043e\u0441\u044c \u043f\u0435\u0440\u0435\u0441\u043c\u043e\u0442\u0440\u0443 \u043e\u0431\u0449\u0435\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0445 \u043a \u0432\u044b\u043f\u0443\u0441\u043a\u0443 \u043c\u043e\u043d\u0435\u0442. \u041a\u0430\u043a \u0437\u0430\u044f\u0432\u0438\u043b\u0438 \u0432 DECENT, \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435, \u0445\u043e\u0442\u044f \u0438 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u043c, \u0442\u0430\u043a\u0436\u0435 \u0431\u044b\u043b\u043e \u043f\u0440\u0438\u043d\u044f\u0442\u043e \u0441 \u0443\u0447\u0435\u0442\u043e\u043c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430.

\n

\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Coinbase \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0438 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0441\u0432\u043e\u0435\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u043d\u0430 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442. \u0422\u0435\u043f\u0435\u0440\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u043a\u0443\u043f\u043a\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u043a\u0430\u0440\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Coinbase \u0432 \u0415\u0432\u0440\u043e\u043f\u0435.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Coinbase, \u0432 \u0421\u0428\u0410 40% \u0441\u0434\u0435\u043b\u043e\u043a \u043f\u043e \u043f\u043e\u043a\u0443\u043f\u043a\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0441 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0435\u043c\u0438\u0442\u0441\u044f \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u044d\u0442\u043e\u0442 \u0441\u0435\u0440\u0432\u0438\u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0432 \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435\u043c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0435 \u0441\u0442\u0440\u0430\u043d.

\n

\u041f\u0415\u0420\u0421\u041e\u041d\u0410\u041b\u0418\u0418

\n

\u041e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Distributed Lab \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u0440\u0430\u0441\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u044f \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0441\u0444\u0435\u0440\u0430\u0445 \u0435\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f, \u043d\u0430\u0437\u0432\u0430\u0432 \u043e\u0442\u0440\u0430\u0441\u043b\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043e\u043d\u0430, \u043d\u0430 \u0435\u0433\u043e \u0432\u0437\u0433\u043b\u044f\u0434, \u0432\u0440\u044f\u0434 \u043b\u0438 \u043d\u0443\u0436\u043d\u0430 \u0432\u043e\u043e\u0431\u0449\u0435. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u043f\u043e\u0441\u0442 \u0431\u044b\u043b \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d \u0432 \u0435\u0433\u043e \u0431\u043b\u043e\u0433\u0435 \u043d\u0430 Medium.

\n

\u0412\u044b\u0441\u043a\u0430\u0437\u0430\u0432 \u0440\u0430\u043d\u0435\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u0431\u0438\u0437\u043d\u0435\u0441 \u043d\u0435 \u0433\u043e\u0442\u043e\u0432 \u043f\u043e-\u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u043c\u0443 \u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u041f\u0430\u0432\u0435\u043b \u043d\u0430 \u044d\u0442\u043e\u0442 \u0440\u0430\u0437 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u043b \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u043e\u0434\u0430 \u0433\u0438\u0434 \u0434\u043b\u044f \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432. \u0412 \u043d\u0435\u043c \u043e\u043f\u0438\u0441\u0430\u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0430\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430\u0442\u0438\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u0438 \u0440\u0435\u0448\u0435\u043d\u0438\u0439 \u0438 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u043f\u043e\u043c\u043e\u0449\u044c \u0432 \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438 \u0442\u043e\u0433\u043e, \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043b\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043d\u0438\u0445 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0439.

\n
\u00ab\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043e\u0431 \u0438\u043c\u043f\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u044f \u043f\u043e\u043b\u0443\u0447\u0430\u044e \u043a\u0430\u0436\u0434\u044b\u0439 \u0434\u0435\u043d\u044c. \u041e\u0434\u043d\u0430\u043a\u043e \u0447\u0430\u0441\u0442\u043e \u044f \u0441\u0447\u0438\u0442\u0430\u044e, \u0447\u0442\u043e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u043d\u0435 \u043d\u0443\u0436\u0435\u043d \u0432\u043e\u0432\u0441\u0435. \u0415\u0441\u0442\u044c \u0434\u0440\u0443\u0433\u0438\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0442\u0438\u043f\u044b \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b, \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u2013 \u043b\u0438\u0448\u044c \u043e\u0434\u0438\u043d \u0438\u0437 \u043d\u0438\u0445\u00bb, \u2014 \u043f\u0438\u0448\u0435\u0442 \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e.
\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0435\u043c \u0433\u0443\u0440\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441\u0442\u0430\u043b\u0430 \u043b\u0435\u043a\u0446\u0438\u044f \u043a\u0430\u043d\u0430\u0434\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044f \u0414\u043e\u043d\u0430 \u0422\u044d\u043f\u0441\u043a\u043e\u0442\u0442\u0430, \u0430\u0432\u0442\u043e\u0440\u0430 \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0438\u0437\u0434\u0430\u043d\u043d\u043e\u0439 \u043a\u043d\u0438\u0433\u0438 \u00ab\u0420\u0435\u0432\u043e\u043b\u044e\u0446\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430\u00bb, \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u0432\u0448\u0435\u0433\u043e \u0441 \u043b\u0435\u043a\u0446\u0438\u0435\u0439 \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u043d\u0430 \u0441\u0430\u043c\u043c\u0438\u0442\u0435 TED Talk \u0432 \u0410\u043b\u044c\u0431\u0435\u0440\u0442\u0435. 

\n

 \u0423\u041a\u0420\u0410\u0418\u041d\u0410

\n

\u0412 \u0423\u043a\u0440\u0430\u0438\u043d\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u043e\u0432 \u0432 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0443\u043c \u0441\u0442\u0440\u0430\u043d\u044b. \u0422\u0430\u043a, \u043a\u043e\u043c\u0430\u043d\u0434\u0430 e-Vox \u0430\u043d\u043e\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043b\u0430 \u0437\u0430\u043f\u0443\u0441\u043a \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0439 \u0420\u0430\u0434\u0435 \u0411\u0430\u043b\u0442\u044b (\u041e\u0434\u0435\u0441\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c). \u041e\u0431 \u044d\u0442\u043e\u043c \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 ForkLog \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u043e\u0440 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041a\u043e\u043d\u0430\u0448\u0435\u0432\u0438\u0447. 

\n

\n

 \u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f, \u0432\u043d\u0435\u0441\u0435\u043d\u043d\u044b\u0435 \u0432 \u0434\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u0431\u0430\u0437\u0443 \u0434\u0430\u043d\u043d\u044b\u0445, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0438 \u0432\u044b\u0432\u043e\u0434\u0438\u0442\u044c \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0443 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0440\u0435\u0448\u0435\u043d\u0438\u0439. \u0410 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u043f\u043e\u043c\u043e\u0436\u0435\u0442 \u043d\u0430\u0434\u0435\u0436\u043d\u043e \u0437\u0430\u0449\u0438\u0442\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e\u0442 \u0432\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0435\u0433\u043e \u0438 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043f\u0440\u0430\u0432\u043d\u043e\u0433\u043e \u0432\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430.

\n

\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u043e\u0439 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430 e-Vox \u0437\u0430\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Ambisafe \u0438 Vareger.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0432 \u044d\u0442\u043e\u043c \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438 \u0432 \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. \u0422\u0430\u043a, \u043c\u044d\u0440 \u0433\u043e\u0440\u043e\u0434\u0430 \u0413\u0435\u043d\u043d\u0430\u0434\u0438\u0439 \u0414\u0438\u043a\u0438\u0439 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043b \u043f\u0440\u043e\u0435\u043a\u0442 \u043e\u0431 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b Auction 3.0 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043e\u0434\u043d\u043e\u0433\u043e \u0438\u0437 \u0430\u043a\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u043f\u0440\u0438\u043d\u044f\u0442 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u0435 \u0432\u0440\u0435\u043c\u044f.
\n\u041e\u0431 \u044d\u0442\u043e\u043c \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0440\u0435\u0448\u0435\u043d\u0438\u0438 \u00ab\u041e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043f\u043b\u0430\u043d \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0411\u0435\u043b\u043e\u0446\u0435\u0440\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0433\u043e \u0441\u043e\u0432\u0435\u0442\u0430 \u043f\u0440\u0438 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u044b\u0445 \u0430\u043a\u0442\u043e\u0432 \u043d\u0430 2016 \u0433\u043e\u0434\u00bb, \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043d\u043e\u043c \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. 

\n

\n

 \u0420\u041e\u0421\u0421\u0418\u042f

\n

\u0412 \u043f\u044f\u0442\u043d\u0438\u0446\u0443, 26 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0437\u0430\u043c\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041c\u043e\u0438\u0441\u0435\u0435\u0432 \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u041c\u0438\u043d\u0438\u0441\u0442\u0435\u0440\u0441\u0442\u0432\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u0435\u0442 \u043f\u0440\u043e\u0442\u0438\u0432 \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u00ab\u043b\u043e\u0431\u043e\u0432\u043e\u0433\u043e \u0437\u0430\u043f\u0440\u0435\u0442\u0430\u00bb \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430. \u041f\u043e \u0435\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u043c, \u0437\u0430\u043a\u043e\u043d\u043e\u043f\u0440\u043e\u0435\u043a\u0442 \u043e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u0445 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d \u043f\u043e \u0438\u0442\u043e\u0433\u0430\u043c \u043f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0435\u0440\u0438\u0438 \u0432\u0441\u0442\u0440\u0435\u0447 \u0441 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u0430\u043c\u0438.

\n

\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u044d\u0442\u043e \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u043b\u043e \u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u0435\u043c \u0432\u0441\u0442\u0440\u0435\u0447\u0438, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0441\u043e\u0441\u0442\u043e\u044f\u043b\u0430\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430 \u0420\u0424 \u043f\u043e\u0434 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e\u043c \u0441\u043e\u0432\u0435\u0442\u043d\u0438\u043a\u0430 \u043f\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0443 \u0413\u0435\u0440\u043c\u0430\u043d\u0430 \u041a\u043b\u0438\u043c\u0435\u043d\u043a\u043e. \u041d\u0430 \u043c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u0438 \u043e\u0431\u0441\u0443\u0436\u0434\u0430\u043b\u0430\u0441\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u0420\u043e\u0441\u0441\u0438\u0438 \u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0435\u0435 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f \u043d\u0430 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043b\u0438\u0441\u044c \u0432 \u0441\u0442\u043e\u0440\u043e\u043d\u0435 \u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0438 \u0432\u043b\u0430\u0441\u0442\u0438 \u041c\u043e\u0441\u043a\u0432\u044b, \u0437\u0430\u044f\u0432\u0438\u0432\u0448\u0438\u0435 \u043d\u0430 \u044d\u0442\u043e\u043c \u0436\u0435 \u0441\u043e\u0432\u0435\u0449\u0430\u043d\u0438\u0438 \u043e \u0433\u043e\u0442\u043e\u0432\u043d\u043e\u0441\u0442\u0438 \u0432\u043d\u0435\u0434\u0440\u0438\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb.

\n
\u00ab\u041c\u043e\u0441\u043a\u0432\u0430 \u0433\u043e\u0442\u043e\u0432\u0430 \u0431\u044b\u0442\u044c \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0418 \u043a\u0430\u043a \u0440\u0430\u0437 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0438\u043b\u043e\u0442\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043c\u044b \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb. \u041c\u044b \u0445\u043e\u0442\u0438\u043c, \u0441 \u043e\u0434\u043d\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u043e\u0442\u043f\u0438\u043b\u043e\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0438 \u043f\u043e\u043d\u044f\u0442\u044c, \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043e\u043d\u0430 \u0434\u0435\u0435\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u0430 \u0434\u043b\u044f \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u0442\u0430\u043a\u043e\u0433\u043e \u0440\u043e\u0434\u0430 \u0437\u0430\u0434\u0430\u0447. \u0421 \u0434\u0440\u0443\u0433\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u0441\u043d\u044f\u0442\u044c \u0441 \u0441\u0435\u0431\u044f \u043d\u0435\u043a\u0438\u0439 \u0441\u043a\u0435\u043f\u0441\u0438\u0441 \u0441\u043e \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0437\u0430\u043c\u0435\u0441\u0442\u0438\u0442\u0435\u043b\u044c \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0430 \u0434\u0435\u043f\u0430\u0440\u0442\u0430\u043c\u0435\u043d\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 \u041c\u043e\u0441\u043a\u0432\u044b \u0410\u043d\u0434\u0440\u0435\u0439 \u0411\u0435\u043b\u043e\u0437\u0435\u0440\u043e\u0432,
\n

\u041e\u043a\u0430\u0437\u0430\u043b\u0438\u0441\u044c \u0432\u043e\u0432\u043b\u0435\u0447\u0451\u043d\u043d\u044b\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0438 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430 \u0438 \u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0435 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0438\u043b\u044b. \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u00ab\u041f\u0430\u0440\u0442\u0438\u044f \u0420\u043e\u0441\u0442\u0430\u00bb \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u043b\u0430 \u043d\u0430\u0447\u0430\u043b\u043e \u043f\u0440\u0438\u0435\u043c\u0430 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0439 \u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430\u0445, \u043e\u0434\u043d\u0430\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u043c\u0438 \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430\u043c\u0438 \u043e\u043d\u0430 \u0441\u043c\u043e\u0436\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u044f \u0437\u0430\u043a\u043e\u043d\u0430 \u043e \u0441\u0442\u0430\u0442\u0443\u0441\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b.

\n


\n\u0412 \u0441\u0432\u044f\u0437\u0438 \u0441 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435\u043c \u043d\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0440\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u043e\u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u0432 \u043d\u0430 \u0441\u0447\u0435\u0442\u0430 \u044e\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043b\u0438\u0446 \u00ab\u0431\u0438\u0442\u043a\u043e\u0438\u043d\u044b \u0431\u0443\u0434\u0443\u0442 \u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u044f\u0442\u044c\u0441\u044f \u043d\u0430 \u043a\u043e\u0448\u0435\u043b\u0435\u043a \u0414\u043c\u0438\u0442\u0440\u0438\u044f \u041c\u0430\u0440\u0438\u043d\u0438\u0447\u0435\u0432\u0430, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043e\u043c\u0431\u0443\u0434\u0441\u043c\u0435\u043d\u0430 \u0438 \u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442\u0430 \u0432 \u0434\u0435\u043f\u0443\u0442\u0430\u0442\u044b \u043f\u043e \u041c\u0435\u0434\u0432\u0435\u0434\u043a\u043e\u0432\u0441\u043a\u043e\u043c\u0443 \u043e\u0434\u043d\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u043d\u043e\u043c\u0443 \u043e\u043a\u0440\u0443\u0433\u0443\u00bb.

\n

\u041a\u0418\u0422\u0410\u0419

\n

\u041f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u043d\u0435 \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435, \u0437\u0430\u043d\u0438\u043c\u0430\u044e\u0449\u0435\u0435\u0441\u044f \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0422\u0430\u043a, \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u041a\u0438\u0442\u0430\u044f \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u043e \u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0438 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0426\u0435\u043b\u044c\u044e \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u043b\u044c\u044f\u043d\u0441\u0430 \u0441\u0442\u0430\u043d\u0435\u0442 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a \u0438 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0432 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0443 \u0441\u0442\u0440\u0430\u043d\u044b, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043a \u0412\u0441\u0435\u043c\u0438\u0440\u043d\u043e\u043c\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0430\u043c\u043c\u0438\u0442\u0443, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0451\u043d \u0432 \u0428\u0430\u043d\u0445\u0430\u0435 \u0432 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u0435 \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0441\u0442\u0430\u0432\u0438\u0442\u0441\u044f \u043b\u0438 \u043f\u0435\u0440\u0435\u0434 \u044d\u0442\u043e\u0439 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f, \u043d\u043e \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0442\u043e\u0442 \u0444\u0430\u043a\u0442, \u0447\u0442\u043e \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u043f\u043e\u0438\u0441\u043a\u043e\u0432\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u041a\u0438\u0442\u0430\u044f Baidu \u0431\u0435\u0437 \u043a\u0430\u043a\u043e\u0433\u043e-\u043b\u0438\u0431\u043e \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f \u0443\u0434\u0430\u043b\u0438\u043b\u0430 \u0432\u0441\u044e \u0440\u0435\u043a\u043b\u0430\u043c\u0443, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u0443\u044e \u0441 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u043c \u0438 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u0432\u0430\u043b\u044e\u0442\u0430\u043c\u0438.

\n

\u041e\u0431 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0438 \u0434\u0432\u0435 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0435 \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0435 \u0431\u0438\u0440\u0436\u0438 OKCoin \u0438 Huobi, \u043f\u0438\u0448\u0435\u0442 Bloomberg News. \u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 Baidu \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441 \u0430\u0433\u0435\u043d\u0442\u0441\u0442\u0432\u0430 \u043e\u0442 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u0432\u043e\u0437\u0434\u0435\u0440\u0436\u0430\u043b\u0438\u0441\u044c. 

\n", + "cashout_time": "2016-09-29T04:28:30", + "category": "bitcoin", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:15:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779945, + "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto\",\"money\",\"news\"],\"image\":[\"http://radikal.ru/fp/949b19ab0ea142769b5d5bad6918e850\",\"http://radikal.ru/fp/ab1e6cf8f8ce414d8555699b45afc0eb\",\"http://forklog.com/wp-content/uploads/0e6dbfdc-638d-11e6-8e55-cc0a56a8b37c-1.png\",\"http://forklog.com/wp-content/uploads/14152259_10202179476045465_1807948603_o.jpg\",\"http://forklog.com/wp-content/uploads/14022327_853179024818469_8570878217622377273_n-1.jpg\"],\"links\":[\"http://forklog.com/zhurnalu-forklog-dva-goda/\",\"http://forklog.com/birzha-bitstamp-otmechaet-pyatiletnij-yubilej/\",\"http://forklog.com/kriptovalyutnaya-birzha-gdax-dobavila-litecoin/\",\"http://forklog.com/birzha-poloniex-snimaet-s-torgov-the-dao-i-drugie-altkoiny/\",\"http://forklog.com/krupnejshaya-bitkoin-birzha-turtsii-ostanovila-rabotu-iz-za-problem-s-bankom/\",\"http://forklog.com/apparatnyj-koshelek-trezor-dobavil-podderzhku-ethereum/\",\"https://github.com/trezor/trezor-mcu/pull/103\",\"http://forklog.com/platezhnyj-servis-bitwala-vklyuchil-v-spisok-rabochih-altkoinov-dash-i-emercoin/\",\"http://forklog.com/venesuelskij-platyozhnyj-servis-cryptobuyer-dobavil-podderzhku-dash/\",\"http://forklog.com/sostoyalsya-reliz-novoj-versii-ethereum-koshelka-mist-s-podderzhkoj-coinbase-buy-widget/\",\"http://forklog.com/vedushhie-banki-mira-obedinilis-dlya-sozdaniya-novoj-kriptovalyuty/\",\"http://forklog.com/yuzhno-afrikanskij-rezervnyj-bank-gotov-k-ispolzovaniyu-blokchejna-i-kriptovalyut/\",\"http://forklog.com/yaponskie-korporatsii-testiruyut-blokchejn-platformu-dlya-chekovyh-raschetov/\",\"http://forklog.com/konsortsium-r3-cev-zapatentoval-blokchejn-platformu-dlya-infrastruktury-uoll-strit/\",\"http://forklog.com/ekonomisty-prognoziruyut-vytesnenie-sistemy-swift-blokchejnom/\",\"http://forklog.com/kompaniya-bitshares-munich-ivs-obyavila-o-nachale-ico/\",\"http://forklog.com/proekt-hyperledger-nazval-novyj-sostav-tehnicheskogo-komiteta/\",\"http://forklog.com/startap-chronicled-inc-zapustil-otkrytyj-reestr-dlya-interneta-veshhej/\",\"http://forklog.com/kompaniya-verizon-communications-zapatentovala-blokchejn-hranilishhe-klyuchej/\",\"http://forklog.com/kriptovalyutnye-kompanii-singapura-budut-poluchat-edinuyu-litsenziyu-na-osushhestvlenie-deyatelnosti/\",\"http://forklog.com/investitsionnyj-bitkoin-startap-keza-budet-spasen-blagodarya-satoshi-citadel-industries/\",\"http://forklog.com/poseshhaemost-steemit-sravnyalas-s-rannim-facebook/\",\"http://forklog.com/komanda-decent-obyavila-o-vazhnyh-izmeneniyah-v-sisteme-distributsii-tokenov/\",\"http://forklog.com/polzovateli-coinbase-v-evrope-poluchili-vozmozhnost-pokupat-kriptovalyutu-pri-pomoshhi-bankovskih-kart/\",\"http://forklog.com/osnovatel-distributed-lab-nazval-oblasti-kotorym-ne-nuzhen-blokchejn/\",\"https://medium.com/@pavelkravchenko/investor-guide-does-this-cool-project-truly-need-blockchain-bdde70a26bfb#.40cs8sfz2\",\"http://forklog.com/avtor-knig-o-blokchejne-don-tepskott-vystupil-na-ted-talk/\",\"http://forklog.com/dostignuta-dogovorennost-o-zapuske-e-vox-v-balte-odesskoj-oblasti/\",\"http://forklog.com/meriya-beloj-tserkvi-perehodit-na-blokchejn-platformu-auction-3-0/\",\"http://forklog.com/minfin-rf-protiv-pryamogo-zapreta-bitkoina/\",\"http://forklog.com/v-rossii-obsudili-kriptovalyuty-na-gosudarstvennom-urovne/\",\"http://forklog.com/partiya-rosta-utochnila-shemu-priema-pozhertvovanij-v-bitkoinah/\",\"http://forklog.com/kitaj-pristupil-k-issledovaniyu-blokchejna-na-gosudarstvennom-urovne/\",\"http://forklog.com/kitajskij-poiskovik-baidu-zablokiroval-vsyu-svyazannuyu-s-bitkoinom-reklamu/\"]}", + "last_payout": "2016-08-30T04:28:30", + "last_update": "2016-08-28T17:15:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_hbd": 10000, + "permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "reward_weight": 10000, + "root_author": "forklognews", + "root_permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "title": "\u0414\u0430\u0439\u0434\u0436\u0435\u0441\u0442 \u043d\u043e\u0432\u043e\u0441\u0442\u0435\u0439 \u2013 \u043e\u0431\u0437\u043e\u0440 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0438\u043d\u0434\u0443\u0441\u0442\u0440\u0438\u0438", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:14:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "paulsemmelweis", + "author_rewards": 0, + "beneficiaries": [], + "body": "Discussed below are two new articles that shed light on the grand economic chessboard controlled by governments while paving the way for more lies and manipulation by the media...\n\nGlobal central bankers, stuck at zero, unite in plea for help from governments: https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\n\nAs Fed nears rate hikes, policymakers plan for 'brave new world': https://ca.news.yahoo.com/fed-nears-rate-hikes-policymakers-plan-brave-world-005117150--business.html\n\nWhile simultaneously espousing Obama's great economic achievements in the press for years after saving the nation from peril in 2008, central bankers now openly admit there's a very weak economy and a recovery that never was. You know, facts.\n\nWhile talk of \"new tools\" needed to fight the next recession unofficially dominated the annual meeting of our monetary overlords in Wyoming, it is quite clear that the main weapon in their arsenal is the same as it was then; to maintain control over human beings by selling a never ending stream of fiction to the public.\n\n\"it may take a massive program, large enough even to shock taxpayers\"\n\"hard to convince markets and households that things will get better\"\n\"encourage the shift in mood\"\n\"prevent public expectations\"\n\"do not respond in expected ways\"\n\nAnd this gem\u2026 \"In modern monetary theory, households and business expectations are felt to play a defining role.\"\n\nSounds really modern!\n\nThe article ends with this\u2026 \"It was not clear whether such ideas will catch on. But there was a broad sense here that the other side of government may need to up its game.\"\n\nA game indeed. Of mass manipulation for the benefit of those who rule us while easily selling the public what they are doing is in their best interests.", + "cashout_time": "2016-09-28T19:47:36", + "category": "economics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:14:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779934, + "json_metadata": "{\"tags\":[\"economics\",\"government\",\"central\",\"banks\",\"recession\"],\"links\":[\"https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\"]}", + "last_payout": "2016-08-29T19:47:36", + "last_update": "2016-08-28T17:14:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "economics", + "percent_hbd": 10000, + "permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "reward_weight": 10000, + "root_author": "paulsemmelweis", + "root_permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "title": "It's just a game to governments and central bankers", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "randolphrope", + "author_rewards": 0, + "beneficiaries": [], + "body": "On the way to Chinle, Arizona USA \n\nJust off the highway over looking the desert.\n\nhttp://imgur.com/ITp3j5l.jpg\n\nI just remember one on the drive.", + "cashout_time": "2016-09-28T18:29:18", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:13:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779930, + "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"\"],\"image\":[\"http://imgur.com/ITp3j5l.jpg\"]}", + "last_payout": "2016-08-29T18:29:18", + "last_update": "2016-08-28T17:13:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "steem-it-photo-challenge-6", + "reward_weight": 10000, + "root_author": "randolphrope", + "root_permlink": "steem-it-photo-challenge-6", + "title": "Steem.it photo challenge # 6", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ebluefox", + "author_rewards": 0, + "beneficiaries": [], + "body": "Empathy is an interesting aspect of human nature that many people do not possess. Empathy in short is the ability to view an scenario from a different perspective than your own, normally to better understand someone's perspective on certain topics or ideas. This handy skill is a learned skill and when used effectively can be used to better understand humanity.\nBut as with every neat skill, they tend to have as many pros as they do cons. So i will attempt to explain the pros and cons that i have found apparent with empathy.\n There are quite a few pros to empathy, one of which being in your reputation. A person who uses empathy often is normally seen as a loving compassionate person. Another pro that is quite noticeable is the ability to understand unexplained problems. On occasion if a problem really troubles someone or is very personal, most people will not tell anyone about it. But with empathy you can figure out what is troubling them sometimes with something as simple as \"How have you been?\". A more prominent pro of using empathy is better understanding how a person truly is. Most people wear a \"Facade\" in public or a metaphorical mask, these tend to hide their true personality from the public eye and conceal most things about them. Using empathy, you can work around the \"Facade\" and figure out how they truly are as a person, and most of the time appreciate them a bit more.\n Empathy has allot of pros but also has its fair share of cons to go with it, a good example of one of its cons is a changed perspective. under most circumstances, use of empathy becomes a habit and changes your outlook on everyone around you. This is not really very terrible, but it can lead to you disliking a person more than would have normally. Another apparent con is over-assessing someone. This can happen when you use empathy on someone and spot something that would make you feel awful, but in truth does not faze them. Here is an example. You are talking with a person and figure out that they don't have a mother. To you that may seem horrible and you start pitying them, when in truth it may not even matter to them in the slightest. A more cumbersome problem with empathy lies with information. In order to understand or sympathize with someone you need to understand the problems they put up with. If you ask too many questions about their life, they may find you \"Nosy\" or \"Annoying\". On the contrary, if you do not inquire very much about them, you will not have any idea of their standpoint at all and cannot empathize with them. The last con i will cover is drama. It is very easy to get caught in some drama if you try to understand peoples problems, some of which may be very serious. Some people are not patient enough to deal with the newly acquired drama and can sometimes make the problem worse than it need to be.\n This list most definitely did not cover every pro or con associated with empathy because they will differ from person to person however i did cover a few recurring pros and cons. whether you think empathy is worth your time and energy is up to you and your values in life and social interaction.", + "cashout_time": "2016-09-28T17:28:57", + "category": "empathy", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:13:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779923, + "json_metadata": "{\"tags\":[\"empathy\",\"psychology\",\"social-skills\",\"problems\"]}", + "last_payout": "2016-08-29T17:28:57", + "last_update": "2016-08-28T17:13:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "empathy", + "percent_hbd": 10000, + "permlink": "the-pros-and-cons-of-empathy", + "reward_weight": 10000, + "root_author": "ebluefox", + "root_permlink": "the-pros-and-cons-of-empathy", + "title": "The Pros and Cons of Empathy", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "2243580957008", + "active": "2016-09-11T21:09:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemsquad", + "author_rewards": 588, + "beneficiaries": [], + "body": "\n

We are STEEMSQUAD, a Steemit inititative to promote diversity and quality of content by featuring authors from the school of minnows.

\n

\"steem-squad3\"
\n

\n

WHAT is #steemsquad?

\n

Steemsquad is an initiative of multiple minnows whose objective is to promote diverse and quality content and their work which may not have a chance to get noticed when published in the main streem. STEEMSQUAD initiative will try to tweak the game to equally distribute the wealth among its members. 

\n

STEEMSQUAD is a community-backed account responsible for posting blogs of qualified authors and at the same time upvotes quality blog posts of its members.

\n

Members of STEEMSQUAD are from across multiple timelines to ensure a 24/7 support and active participation in Steemit.

\n

The Issue at Hand

\n

For quite some time, there has been a noticeable trend as to who gets rewards. Those favored are the whales themselves, members with high reputation levels, incoming popular personalities and celebrities either from the cryptocurrency world or the entertainment world. A number of people from the finance institutions have joined as well and have garnered huge rewards on their \u201cintroductory\u201d posts.

\n

And what happens to those who are not celebrities, unknown personalities from not-so-popular backgrounds? Their posts get dumped, thrown into oblivion. Then all the sweat and blood poured spilled into writing the blog just go to waste. This is where #steemsquad comes in.

\n


\n

WHY We Do It?

\n

Steemit is a social media platform where **EVERYONE** gets paid for creating and curating content, as promised if and when you decide to dive into the Steemit Ocean. 

\n

It leverages a robust digital points system, called Steem, that supports real value for digital rewards through market price discovery and liquidity.

\n

We aim to give EVERYONE a chance to get noticed, earn rewards, and be a part of a community of people helping people.

\n

You Can Succeed

\n

All HOPE is NOT LOST. We have seen minnows rise to the occasion. With a positive attitude, an unwavering determination, lots and lots of good quality posts (one is enough though to get you 15k, if you hit the nail on the head), there is no reason why you can\u2019t be successful here in Steemit.

\n

#steemsquad will support you along the way.

\n

OUR GOLDEN RULES

\n
    \n
  1. We give priority to quality contents from low-powered profiles (minnows).
  2. \n
  3. The published author gets 100% of SBD. However, 50% of which goes to the author\u2019s SP to allow the author to power-up leveraging his/her SP to upvote other writers.
  4. \n
  5. Any SP earned by STEEMSQUAD remains in the STEEMSQUAD account to gain more voting power for the benefit of its members.
  6. \n
  7. Pay-it-forward. The powered-up author commits to help other writers by upvoting and commenting to blog post to increase the post\u2019s value.
  8. \n
\n


\n

HOW TO GET PUBLISHED BY STEEMSQUAD

\n

\n

PHOTO CREDIT: Anna Frajtova / shutterstock.com
\n

\n
    \n
  1. FOLLOW the account STEEMSQUAD and be a member of the initiative.
  2. \n
  3. You have to signify your willingness to join by coming to our official chatroom in https://steemit.chat/channel/steemsquad. Introduce yourself and state your intention to join the initiative. Include a link to your Steemit profile.
  4. \n
  5. Submit your article in plain text format and links to images. Send your entry to @steemit.asia or @sebastien or @jaycobbell as a PM.
  6. \n
  7. Article must be at least 300 words with at least 1 image.
  8. \n
  9. Give credit to the images you use.
  10. \n
  11. If you quote someone, give credit as well.
  12. \n
  13. At least 80% of the article must be your own.
  14. \n
  15. You will get feedback after 24 hours and a schedule will be provided when your work will be published.
  16. \n
  17. Once it is published, it will be promoted to the chatroom by either @steemit.asia or @sebastien or @jaycobbell in https://steemit.chat/channel/steemsquadpromotional for all members to see. This is where all promotions are done.
  18. \n
\n


\n

HOW TO GET UPVOTED BY STEEMSQUAD AND MEMBERS

\n


\nPHOTO CREDIT: Clipartix.com
\n

\n
    \n
  1. To get a chance to be upvoted by STEEMSQUAD, you must have a QUALITY blog post.
  2. \n
  3. Use the tag #steemsquad in your blog post.
  4. \n
  5. Our curators will browse through all blog posts using our official #steemsquad tag name and choose will notify the author by commenting that the post has been chosen as a featured post/author. It will be promoted in our chat channel https://steemit.chat/channel/steemsquadpromotional.
  6. \n
\n


\n

STEEMSQUAD ACCOUNT SECURITY

\n

The Posting Key (The posting key is used for posting and voting. It should be different from the active and owner keys) will be given to at least 3 members of STEEMSQUAD responsible for posting blog posts in 24 hour cycle.

\n

The Active Key (The active key is used to make transfers and place orders in the internal market) will be given to 2 members of STEEMSQUAD. One member will act as auditor/backup in case the primary member is not available.

\n

The Owner Key (The owner key is the master key for the account and is required to change the other keys) is given to one Whale sponsor and 2 other members of STEEMSQUAD.

\n

A member responsible for the account security may hold more than one (1) key as shown above.

\n


\n

OUR MENTORS

\n

There are people we consider as examples on the platform. Inspiration, mentors.

\n

@juneaugoldbuyer
\n@thedollarvigilante
\n@dragonslayer109
\n@stellabelle
\n@charlieshreem
\n@rogerkver
\n@donkypong
\n@tuck-fheman
\n@masteryoda
\n@andrarchy 

\n

\"steem-squad-FOLLOW-US\"
\n

\n", + "cashout_time": "2016-09-29T11:08:54", + "category": "introduceyourself", + "children": 18, + "children_abs_rshares": "2254360518257", + "created": "2016-08-28T17:13:18", + "curator_payout_value": { + "amount": "173", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779920, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemsquad\",\"steemit\",\"minnows\",\"writing\"],\"users\":[\"steemit.asia\",\"sebastien\",\"jaycobbell\",\"juneaugoldbuyer\",\"dragonslayer109\",\"stellabelle\",\"charlieshreem\",\"rogerkver\",\"donkypong\",\"tuck-fheman\",\"masteryoda\",\"andrarchy\"],\"image\":[\"https://c1.staticflickr.com/9/8171/29209353271_2eabbba74f_o.png\",\"https://cdn.elegantthemes.com/blog/wp-content/uploads/2016/02/Essential-Blogging-Skills-Know-your-Audience-shutterstock_222537538-Anna-Frajtova.png\",\"http://clipartix.com/wp-content/uploads/2016/04/Thumbs-up-clipart-3.png\",\"https://c1.staticflickr.com/9/8305/29179909862_ed27607510_o.png\"],\"links\":[\"https://steemit.chat/channel/steemsquad.\",\"https://steemit.chat/channel/steemsquadpromotional\",\"https://steemit.chat/channel/steemsquadpromotional.\"]}", + "last_payout": "2016-08-30T11:08:54", + "last_update": "2016-08-28T17:13:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T14:10:24", + "net_rshares": "2243580957008", + "net_votes": 57, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "reward_weight": 10000, + "root_author": "steemsquad", + "root_permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "title": "Hello! We Are STEEMSQUAD And We Are Here to Support The Minnows. Read On.", + "total_payout_value": { + "amount": "566", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "2243580957008" + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "okay", + "author_rewards": 0, + "beneficiaries": [], + "body": "## A picture is worth a thousand words, more so in astronomy ##\n\n**Let's take a look at the coming week's sky**\n\n\nhttp://www.skyandtelescope.com/wp-content/uploads/Venus-Jupiter-27Aug2016_f.jpg\n(Image courtesy of Sky and Telescope)\nOn August 27th, about 45 minutes after sunset, go outdoors and start looking low above the horizon in the west for an amazingly close pairing of Venus and Jupiter.\n\nhttp://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\n\n\nNext weekend, shortly after sunset, the thin Moon (waxing crescent) steps away from Venus and Jupiter.\n\nLooking at the night sky is a great joy! Free for everyone with no ticket required. You can watch the evening sky with your naked eye, no need for telescope or binoculars for these beautiful astronomical events.\n\n*Stay tuned for next week's sky.*\n\n\n\n\n If you enjoyed this post please vote for my witness node. Learn how to vote for witness `okay` **at the end of my witness post** by [**clicking here**](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network). ", + "cashout_time": "2016-09-28T16:11:21", + "category": "science", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-08-28T15:45:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 778828, + "json_metadata": "{\"tags\":[\"science\",\"astronomy\"],\"image\":[\"http://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", + "last_payout": "2016-08-29T16:11:21", + "last_update": "2016-08-28T17:13:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "science", + "percent_hbd": 10000, + "permlink": "this-week-s-sky-aug-27-sep-3", + "reward_weight": 10000, + "root_author": "okay", + "root_permlink": "this-week-s-sky-aug-27-sep-3", + "title": "This Week's Sky Aug-27/Sep-3", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "130408996119", + "active": "2016-08-28T17:36:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skyefox", + "author_rewards": 125, + "beneficiaries": [], + "body": "As I have stated in earlier posts, gardening is currently my obsession.. it's seems wild to me that the standard is to work for currency and trade currency for food rather than just growing your own food. \n

Here is my small harvest from this morning!

\nEvery morning I go out and eat a couple of my cherry tomatoes, a few leafy greens, and usually 1/2 a leaf of my sweet basil. It's a wonderful thing to wake up, take the dog out and get a healthy organic little snack. I love it.\nhttps://s14.postimg.org/62aqviz0h/IMG_1804.jpg\n\n\nI understand that gardening takes time, effort, and a little bit of knowledge but in my opinion it is one of the most reward \"hobbies.\" This is my first year gardening. I decided to garden this year because I have been doing more and more reading about the American food industry and my conclusion is that the American population are being made sick on purpose through the food we eat. I don't know exactly what does what in our food but it seems absolutely insane to me that we can't get the FDA to evaluate any dietary supplements but they will evaluate and even vouch for these lab made pharmaceutical drugs. \n\nAll of this lead me to feeling a strong urge to grow organic food. I honestly feel guilty when I feed my family and I don't fully believe in what we are eating. Don't get me wrong, I love pepperoni pizza but ignorance is bliss, and I am not ignorant to what I am eating. \n\nI believe I am slowly heading down the path of becoming a vegan as I gain more knowledge. I have always been a hunter and a fisherman, it's what I was taught as a young boy in the north woods. I love to hunt and fish, but I also have a very deep compassion for life. Not human life, but life in general. I believe that we are intelligent enough as a species to live without causing harm to other living things that are equipped with nervous systems. I guess I am just realizing day by day that things are not necessarily what I have been told... \n

This kind of sums up how I feel currently...

\nhttps://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\n\nI am not a very good consumer. I am very frugal and calculated with my money, sometimes to a fault. I'm also not good at being an employee and just being a \"gear in the machine.\" I was not built to work and be told what to do while someone acts as if their employment position somehow gives them a higher status than I. We are humans, you just have a different job. These factors, and many others, have lead to me being self employed and trying to find my way on the internet. I have dabble in many things online and I have learned enough to at least provide myself with enough income to pay my mortgage, bills, etc.. \n\nI am also someone that is in the prepper mind state. I have started my small stockpile of beans, rice, and various other dried foods. I think that the American people have become complacent and many of us are just chasing the carrot we were instructed to chase. Many people seem to not realize the fact that we as a country heavily depend on other people or corporations for the things we use everyday. If water and electricity were to be shut off and panic set it, many people would die because they don't know what to do without someone else providing them with these luxuries. \n\nI don't like the idea of depending on anyone for anything. I have always been someone who provided for myself. I got a job at 14 years old at the local bakery working Saturday mornings so that I could get my first computer myself. I worked for weeks, since I was only getting paid $5.15/hour (roughly 13 years ago) it took me a long time to save up for a computer to play Counterstrike 1.5... We had 6 kids in our house in a \"middle class\" family, needless to say we were told to get jobs as early as possible to acquire our luxuries. Since then I have had the mindset that I don't want to allow someone else to be \"the hand that feeds\", and that applies to food, water, electricity, and even knowledge of my child. \n\nDEPENDENCY OPENS THE DOORS FOR EXPLOITATION! And in a capitalist driven global economy, if it can be exploited, it often is. \n\nMy apologies, there I go again, going of on some rant instead of just showing you the damn garden update. I already can't wait for next spring. I have been buying heirloom vegetable seeds and thrift shopping for large planters for $1 so that next year I can grow lots more. \n

This is the Pink Brandywine that I am so excited about!

\nThese guys took forever to grow. I didn't know what I was doing and I had put too many plants in 1 planter which caused them to compete for the nutrients. On top of them a strong storm came through and blew these guys over and bent there stalks horizontal. I really didn't know if I would get any fruit from them, but they are changing and I can't wait to eat these!\nhttps://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\n\nhttps://s14.postimg.org/e3txgbbgh/IMG_1800.jpg\n\nHere is a cucumber that is growing a little goofy. Not sure why but its like a beer can cucumber... lol\nhttps://s14.postimg.org/c1tg22dhd/IMG_1802.jpg\n\nA more normal cucumber... \nhttps://s14.postimg.org/610t23x6p/IMG_1803.jpg\n\nAnd this is my $3 table I built so that I could start my seeds indoors under some fluorescent lights. \n\n\nhttps://s14.postimg.org/6t3h1b1dt/IMG_1805.jpg\n\n\nThank you for reading and happy gardening!", + "cashout_time": "2016-09-28T18:11:57", + "category": "garden", + "children": 2, + "children_abs_rshares": "130408996119", + "created": "2016-08-28T17:12:54", + "curator_payout_value": { + "amount": "15", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779916, + "json_metadata": "{\"tags\":[\"garden\",\"photography\",\"rant\",\"food\"],\"image\":[\"https://s14.postimg.org/62aqviz0h/IMG_1804.jpg\",\"https://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\",\"https://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\"]}", + "last_payout": "2016-08-29T18:11:57", + "last_update": "2016-08-28T17:12:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-12T21:18:18", + "net_rshares": "130408996119", + "net_votes": 37, + "parent_author": "", + "parent_permlink": "garden", + "percent_hbd": 10000, + "permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "reward_weight": 10000, + "root_author": "skyefox", + "root_permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "title": "A small garden update... My Pink Brandywine Tomatoes are coming!", + "total_payout_value": { + "amount": "123", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "130408996119" + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:08:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "fitiliper1985", + "author_rewards": 0, + "beneficiaries": [], + "body": "
http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png
\n

\n

Before I was in a relationship, I didn't have much sex. My first sexual intercourse occurred while I was travelling overseas on a holiday by myself. I met a woman in hawaii at the airport, and later had sex with her.

\n

I had done a lot of masturbating prior to this. I had often thought about having sex, and I found that my sexual drive caused me to behave in ways that I normally wouldn't. 

\n

\n
https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg
\n

\n

For example I would follow women I found attractive, or I would try to look up their skirts, or I would wander about at night to try to look into bedroom windows.

\n

When I met someone that I knew I would marry, I thought I would be able to have sex as much as I liked because my wife would always be available to have it with me. This turned out to be untrue. My wife didn't want to have sex as often as I wanted to, and I found myself still masturbating while I waited for the next time to come.

\n

I don't think women understand the power of their husband's sexual drive. 

\n

\n
http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg
\n

\n

Men are attracted to women by how they look. It doesn't matter if they are strangers. Men will look at a woman dressed in  a certain way and will start feeling horny. As soon as they ejaculate, the feeling of horniness goes, but will return in a couple of hours. When the sexual desire comes upon a man, it becomes his dominating thought, and it demands to be satisfied. That's why many men then masturbate in order to relieve the pressure on their thoughts. If unrelieved the pressure grows and if the wife is unwilling to have sex, then some men will look for other women to have sex with. 

\n

The sexual pressure is constantly present in a man's mind until relief comes.

\n

\n
https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg
\n

\n

Most women are not as interested in sex as men. 

\n

\n
https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg
\n

\n

Women are more interested in relationship.  Women have sex with a man in the hope that the man will want to stay in their life and have a relationship with them. 

\n

Some women use sex as a bait to catch a man, and then when the relationship is happening, they are not as interested in sex anymore. Women enjoy sex, but as part of a fulfilling relationship. Men just want to put their penis into a vagina and ejaculate. As soon as ejaculation occurs, a lot of men lose all interest in the woman. The woman then feels hurt and used because she didn't get what she wanted which was relationship. Men will say anything they think a woman wants to hear in order to have sex.

\n

Wives who have sex with their husbands when not really wanting it, feel used by their husbands. Women also can be selfish when they demand sex from men who are not in the mood. 

\n

God created sex to be enjoyed in a committed relationship between a man and a woman who are one person physically, spiritually, emotionally, and mentally. 

\n

Sex is a part of the relationship, not the main thing. If a man demands sex then he is being selfish, and his relationship will be harmed if the woman gives sex to the man when she is not wanting to have it. If the man wants sex with his wife, then he must give her what she wants. He must romance her and give her a good relationship. Then if sex happens, it will be enjoyable for both of them. This will build the relationship.

", + "cashout_time": "2016-09-28T17:56:42", + "category": "sex", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-08-28T17:12:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779915, + "json_metadata": "{\"tags\":[\"sex\",\"psychology\",\"life\",\"story\",\"\"],\"image\":[\"http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png\",\"https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg\",\"http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg\",\"https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg\",\"https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg\"]}", + "last_payout": "2016-08-29T17:56:42", + "last_update": "2016-08-28T17:12:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 12, + "parent_author": "", + "parent_permlink": "sex", + "percent_hbd": 10000, + "permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "reward_weight": 10000, + "root_author": "fitiliper1985", + "root_permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "title": "In a relationship, sex becomes a matter of selfishness or unselfishness.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json index bb2dc238..ab747b19 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 617094, - "author": "crowe", - "permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", - "category": "israel", - "parent_author": "", - "parent_permlink": "israel", - "title": "Israeli Bomb Siren goes off in my City. I filmed this from my deck.", - "body": "I thought my viewers would be interested in the place I actually live in. I live in a City called Ashkelon. Its about 7 miles North of Gaza. Last year in June when some missiles were being shot toward Israel the Sirens in Ashkelon went off. I filmed this video from my deck. The video is what we hear when this happens. \n\nhttps://www.youtube.com/watch?v=Ky23yJaNDfo", - "json_metadata": "{\"tags\":[\"israel\",\"siren\",\"gaza\",\"politics\",\"steemit\"],\"links\":[\"https://www.youtube.com/watch?v=Ky23yJaNDfo\"]}", - "last_update": "2016-08-15T19:12:42", - "created": "2016-08-15T19:12:42", - "active": "2016-08-15T19:12:42", - "last_payout": "2016-08-16T19:47:27", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-15T19:47:27", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "crowe", - "root_permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617542, - "author": "luminarycrush", - "permlink": "cactus-in-the-clouds-catalina-island", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Cactus in the Clouds - Catalina Island", - "body": "\n

I came across a lone blooming cactus during a hike this weekend.  Photos taken at 946' ASL above Two Harbors, Catalina Island.

\n

\n


\n

\n


\n

\n", - "json_metadata": "{\"tags\":[\"photography\",\"cactus\",\"catalinaisland\",\"california\",\"twoharbors\"],\"image\":[\"https://scontent.xx.fbcdn.net/t31.0-8/13988224_10154518762224175_252304266230235242_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13923665_10154518762269175_2030254348907005554_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13988240_10154518762254175_9097905240858144855_o.jpg\"]}", - "last_update": "2016-08-15T19:44:48", - "created": "2016-08-15T19:44:48", - "active": "2016-08-15T19:44:48", - "last_payout": "2016-08-16T19:47:27", - "depth": 0, - "children": 0, - "net_rshares": "1339555910464", - "abs_rshares": "1339555910464", - "vote_rshares": "1339555910464", - "children_abs_rshares": "1339555910464", - "cashout_time": "2016-09-15T19:47:27", - "max_cashout_time": "2016-09-01T02:13:51", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 14, - "root_author": "luminarycrush", - "root_permlink": "cactus-in-the-clouds-catalina-island", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 616664, - "author": "brunopro", - "permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", - "category": "steemit", - "parent_author": "", - "parent_permlink": "steemit", - "title": "LATEST NEWS: Payouts are back to 24H - What do you think about it? [ Quick read / Opinion Article ]", - "body": "http://imgur.com/HrpWWaK.png\n\n## And there are changes again regarding the duration until the payout occurs, now your post will have a minimum 24 hours duration until the first payout. \n\nPersonally I think that they should never have changed it to 12 hours. I didn't understand the logic behind it at the time and I still don't. This 24h period it's ideal because this way the post has better chances of overcoming the first publish period and get more traction. It also enables of a higher possibility of being seen and upvoted by the users that on the 12h were sleeping or simply away.\n\n# And you? What do you think about this change?\n\n----\n\nEdit post-publish: I've notice that I can't upvote a post that has been up for a month. Is this new also? I thought a post would always be open for an upvote? Can anyone reply to this question? thanks!\n\n----\n\n###### Photo Credits: https://unsplash.com/@sonjalangford", - "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"opinion\",\"reward\"],\"image\":[\"http://imgur.com/HrpWWaK.png\"]}", - "last_update": "2016-08-15T18:51:42", - "created": "2016-08-15T18:36:36", - "active": "2016-08-17T15:39:57", - "last_payout": "2016-08-16T19:47:42", - "depth": 0, - "children": 22, - "net_rshares": "76217996022", - "abs_rshares": "76217996022", - "vote_rshares": "76217996022", - "children_abs_rshares": "78071773184", - "cashout_time": "2016-09-15T19:47:42", - "max_cashout_time": "2016-08-30T20:41:45", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "20200", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "3483", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 13512, - "net_votes": 82, - "root_author": "brunopro", - "root_permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617534, - "author": "yassinebentour", - "permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", - "category": "writing", - "parent_author": "", - "parent_permlink": "writing", - "title": "The purpose of property rights is to mitigate conflict over scarce, rivalrous resources", - "body": "\n

http://unitedcivilrights.org/images/fa-prprty.gif

\n

The purpose of property rights is to mitigate conflict over scarce, rivalrous resources. To have a property right over a scarce, rivalrous resource is to have the right to exclude others from using that resource in the attainment of some ends. For example, I have property rights over my body, which means I can exclude others from using my body for sexual pleasure or labor without my consent. If they do access my body in such a way without my consent, it's called rape or slavery, respectively. Likewise, I have property rights over the accumulated capital for which I consensually trade my time and labor, which means I have the right to exclude people from using my accumulated capital without my consent. When someone accesses my accumulated capital in such a way without my consent, it's called theft or trespass.
\nScale doesn't change this. If I transform my accumulated capital into a factory by hiring people who voluntarily exchange the product of their labor for some of my accumulated capital, this means that they value what they receive in exchange for working more than they value the direct product of their labor (the factory). Likewise, it means I value the factory more than the accumulated capital I gave up for it. This is a win-win situation, or a positive sum game. The workers I hired retain property rights over the capital they received as payment for their labor, which means they can exclude others from the use of their newly acquired accumulated capital, and I retain property rights over the factory, which means I can exclude others from the use of my factory.
\nDiscrepancies between marginal benefit don't change this either. A consensual exchange doesn't become theft just because one party benefits more from the exchange than another. If this wasn't the case, every single instance of buyer's remorse would be indicative of theft. If someone agrees to produce a walking stick in exchange for ten dollars and the purchaser of the walking stick then sells it to someone else for twenty dollars, how can it be claimed that the producer of the walking stick was a victim of theft if they haven't been deprived of the ten dollars for which they voluntarily exchanged the walking stick? Would it have been reasonable to expect that the first purchaser of the walking stick wouldn't have obtained more than ten dollars of value from it given that the exchange wouldn't have happened in the first place if they hadn't valued the walking stick more than they valued ten dollars?
\nOf course not. Anything that happens to the walking stick after the original exchange is no business of the producer of the walking stick because said producer already exchanged his property rights to the walking stick for property rights to a different form of accumulated capital (ten dollars).
\nLikewise, if I use more of my accumulated capital to hire workers to work in my factory, they will only accept my offer of employment if they value what I'm offering more than their own free time and more than whatever stake they may have otherwise had in the product they will be producing. In other words, if they accept employment, it will be with the understanding that they're giving up any stake in what they're producing in exchange for what I'm offering them. Maybe my factory assembles televisions. Maybe one worker can produce one television per hour. Would they be able to produce televisions this efficiently without my previous investment in production capital (which hasn't even been recouped and probably never will be completely given that maintenance, employment and higher order production good costs are a revolving door)? Would they be able to produce televisions AT ALL without this previous investment in production capital? Of course not, and they know this, which is why they're willing to give up both their leisure and whatever stake their labor may have otherwise entitled them to in the production of a television in exchange for a fixed amount of accumulated capital.
\nAs was the case with the walking stick, whatever happens to the television after this exchange occurs is no business of the worker. How could the future sale of the television constitute theft of the worker's accumulated capital if it can't be demonstrated that the worker was deprived of the accumulated capital that he voluntarily accepted as payment for the production of the television, especially given that the television was produced with other accumulated capital (plastic, circuits, labor saving devices, etc.) that the worker never even owned?
\nIt can't.
\nProperty ownership necessarily implies exclusivity, which means that \"private property\" is redundant, as is \"personal property\". The words \"private\" and \"personal\" denote exclusivity, which is already implied by the word \"property\". To differentiate between \"personal property\" and \"private property\" is therefore a distinction without a difference. This implication of exclusivity also means that \"public property\" is a contradiction in terms. If no one can be excluded from using the resource, it isn't property. Resources that aren't scarce or rivalrous likewise can not be considered property, which means that \"intellectual property\" is also a contradiction in terms.
\nThis means that seizing the means of production is a genuine form of theft and that \"pirating\" music, software, art and writing is not, which may seem counter-intuitive if you attended the indoctrination camps euphemistically known as \"public schools\" when you were growing up.

\n", - "json_metadata": "{\"tags\":[\"writing\",\"rights\"],\"image\":[\"http://unitedcivilrights.org/images/fa-prprty.gif\"]}", - "last_update": "2016-08-15T19:43:57", - "created": "2016-08-15T19:43:57", - "active": "2016-08-15T19:50:39", - "last_payout": "2016-08-16T19:47:48", - "depth": 0, - "children": 2, - "net_rshares": -104004690671, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": "25854883309", - "cashout_time": "2016-09-15T19:47:48", - "max_cashout_time": "2016-09-01T01:02:42", - "total_vote_weight": 0, - "reward_weight": 736, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "yassinebentour", - "root_permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617538, - "author": "libtrian.outlet", - "permlink": "obama-puts-congress-on-notice-tpp-is-coming", - "category": "politics", - "parent_author": "", - "parent_permlink": "politics", - "title": "Obama puts Congress on notice: TPP is coming", - "body": "http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\nFriday's move is the clearest indication yet that the White House is serious about getting Obama’s legacy trade deal.\n\nThe White House put Congress on notice Friday morning that it will be sending lawmakers a bill to implement President Barack Obama’s landmark Trans-Pacific Partnership agreement — a move intended to infuse new energy into efforts to ratify the flat-lining trade pact.\n\nThe move establishes a 30-day minimum before the administration can present the legislation, but the White House is unlikely to do so amid the heated rhetoric of a presidential campaign in which both major party nominees have depicted free trade deals as massive job killers.\n\nFriday's notification is the clearest signal yet that the White House is serious about getting Obama’s legacy trade deal — the biggest in U.S. history — passed by the end of the year, as he has vowed to do despite the misgivings of Republican leaders and the outright opposition of a majority of Democrats in Congress.\n\nStriking a defiant tone, Obama predicted at a press conference last week that the economic centerpiece of his strategic pivot to Asia would pass in the lame-duck session, saying he’d like to sit down with lawmakers after the election to discuss the \"actual facts\" behind the deal, rather than toss it around like a \"political football.\"\n\n\"We are part of a global economy. We're not reversing that,\" Obama said, describing the necessity of international supply chains and the importance of the export sector to U.S. jobs and the economy. \"The notion that we're going to pull that up root and branch is unrealistic.\"\n\nThe notification, a new requirement of the trade promotion authority legislation Congress passed last year to expedite passage of the Asia-Pacific pact, is “meant to ensure early consultations between the administration and Congress,” Matt McAlvanah, a spokesman for the Office of the U.S. Trade Representative, said in a statement. “As such, the draft SAA [Statement of Administrative Action] was sent today in order to continue to promote transparency and collaboration in the TPP process.”\n\nThe White House's draft document describes the major steps the administration will take to implement any changes to U.S. law required by the deal. Those actions range from the mundane — designating an administration point of contact for communications about the pact — to the complex — setting up procedures to stop harmful surges of agricultural or textile imports.\n\nBut the deal is going nowhere until the White House addresses a number of concerns lawmakers have raised about the trade agreement, which Canada, Mexico, Japan and eight other countries joined the United States in signing last February.\n\nFirst and foremost: satisfying the concerns of Senate Finance Committee Chairman Orrin Hatch (R-Utah) and other lawmakers about protections for a new class of drugs known as biologics. They say the pact provides too short a monopoly period for rights to research and development data. Other lawmakers have complained the deal would bar tobacco companies from seeking redress through investor-state dispute arbitrage for damages resulting from country regulations. Still others are seeking assurances that member countries will abide by their commitments to provide access for U.S. pork and dairy exports.\n\nUntil these issues are resolved, House Speaker Paul Ryan and Senate Majority Leader Mitch McConnell have made clear that the pact will not get the votes it needs to pass.\n\nRyan's spokeswoman, AshLee Strong, reiterated the point on Friday.\n\n“As Speaker Ryan has stated for months, there are problems that remain with the administration’s TPP deal, and there can be no movement before these concerns are addressed,\" she said.\n\nDemocrats, meanwhile, have largely called the deal a nonstarter over concerns about the enforceability of labor and environmental standards in countries like Vietnam and the lack of strong protections against currency manipulation.\n\nThe administration claims it is making progress on these issues and has resolved others, including banking industry concerns over the exclusion of financial data from rules prohibiting countries from requiring local storage.\n\nBut that doesn’t change the reality of the down-ballot drag that candidates are facing as they campaign back home in their districts. In a reversal from years past, many Republicans are on the defensive about their support for free trade because of Donald Trump’s daily tirades about what he characterizes as the serious economic damage wrought by trade agreements like the North American Free Trade Agreement and the TPP as well as his complaints that China is flouting international trade rules.\n\nThe Republican platform picked up on this theme, saying significant trade deals \"should not be rushed or undertaken in a Lame Duck Congress.\"\n\nThe small band of Democrats who the administration hopes will support the TPP are facing increased pressure within their own party to abandon the president on the agreement. Sens. Bernie Sanders’ and Elizabeth Warren’s strong condemnations of the trade deal have forced Hillary Clinton, who supported the TPP as Obama’s secretary of state, to reject the pact to appease the liberal wing.\n\n\"I will stop any trade deal that kills jobs or holds down wages, including the Trans-Pacific Partnership,\" Clinton said during an economic policy speech at an automotive manufacturing plant in Warren, Mich., on Thursday. \"I oppose it now, I'll oppose it after the election and I'll oppose it as president.\"\n\nClinton’s clear rejection of the trade deal has emboldened liberal groups like the Warren-aligned Progressive Change Campaign Committee to launch a campaign to press Democrats to publicly oppose a TPP vote in the lame duck.\n\nSanders also called on Democratic congressional leaders to go on record against the White House’s effort to get the deal done by the end of the year, saying the agreement is opposed by every trade union and the grassroots base of the Democratic Party.\n\n\"I am disappointed by the president's decision to continue pushing forward on the disastrous Trans-Pacific Partnership trade agreement that will cost American jobs, harm the environment, increase the cost of prescription drugs and threaten our ability to protect public health,” the Vermont senator said in a statement after learning of the White House's action on Friday.\n\nMeanwhile, the administration continues to press the deal in key congressional districts — especially those of Democrats who supported the trade promotion authority bill last year.\n\nInterior Secretary Sally Jewell returned to her hometown of Seattle last month to tout the TPP’s potential effects on the environment at a Washington Council on International Trade event with more than 150 business leaders.\n\nThen, last week, Commerce Secretary Penny Pritzker hit the San Diego and Boulder districts of Reps. Susan Davis and Jared Polis — two of the 28 House Democrats that voted for the bill — and visited a steel plant in Cleveland to promote the TPP. Treasury Secretary Jack Lew did the same when he met with local and state officials and Fortune 500 business executives in Minneapolis.\n\nOn Thursday, Undersecretary of Commerce for Oceans and Atmosphere Kathryn Sullivan spoke at a Seattle clean energy business roundtable focused on the TPP and the environment. And this Monday, Deputy U.S. Trade Representative Robert Holleyman will participate in a World Affairs Council of Atlanta discussion on the trade deal featuring former Republican Sen. Saxby Chambliss and UPS CEO David Abney.\n\nAs the political fight plays out, the nuts-and-bolts process of moving the deal forward will continue. Once Congress reviews the draft notification that the White House submitted on Friday, the administration can move forward with sending lawmakers a final statement and the draft of the implementing bill itself. The legislation will describe the actual changes to U.S. law to comply with the rules of the trade agreement.\n\nAfter that, the Senate Finance and House Ways and Means committees could hold “mock markups” of the bill (because under trade promotion authority, Congress is not actually allowed to tinker with the agreement or its implementing legislation itself, but it can ask the administration to do so).\n\nBut given the tenor of the elections, the entire process could be pushed into a crowded lame-duck legislation session, which would mean no time for the mock markups. Instead, there could be a lot of deal-making between the White House and congressional leadership to move the bill before Clinton or Trump takes over on Jan. 20.\n\nObama said last week that he’s ready to press his case. \"Right now, I'm president, and I'm for it. And I think I've got the better argument,\" he said.\n\nSource:\nwww.politico.com/story/2016/08/obama-congress-trade-warning-226952", - "json_metadata": "{\"tags\":[\"politics\",\"tpp\",\"conspiracy\",\"news\",\"freetrade\"],\"image\":[\"http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\"]}", - "last_update": "2016-08-15T19:44:39", - "created": "2016-08-15T19:44:39", - "active": "2016-08-15T19:45:42", - "last_payout": "2016-08-16T19:47:57", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": "11700424464", - "cashout_time": "2016-09-15T19:47:57", - "max_cashout_time": "2016-09-04T23:37:39", - "total_vote_weight": 0, - "reward_weight": 2046, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 3, - "root_author": "libtrian.outlet", - "root_permlink": "obama-puts-congress-on-notice-tpp-is-coming", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 951797, - "author": "profanarky", - "permlink": "the-dragon-s-blood-part-29", - "category": "story", - "parent_author": "", - "parent_permlink": "story", - "title": "The Dragon's Blood (Part 29)", - "body": "\n

\n

In which the folks in the subway find themselves some unwelcome visitors...

\n

29

\n

   “Do NOT panic! There is no reason to believe that this is anything more than just a power outage.”  

\n

   “But-- BUT-- how can it be the whole state?” One wide-eyed young woman, one of the aforementioned punk rockers actually raised her hand.  

\n

   “Yeah, it’s gotta be Al Qaeda, who the hell else could it be?!!” Another idiot bellowed.    

\n

   Others followed, there words quickly jumbling together into a tidal wave of paranoia. It only took one idiot to get the ball rolling.   

\n

   “It’s gotta be the terrorists, who the hell else could it be?”    

\n

   “Oh my god, I gotta get to my kids… My kids are still at the day care!!!”   

\n

   “Did an airplane hit a power plant??!! OH GOD!! DID AN AIRPLANE HIT ONE OF THE NUCLEAR PLANTS??!!”    

\n

   She heard it all and it was nothing more than a buzzing, though an irritating one nonetheless. Her instincts, those things cops called their gut instincts told her Mister Blue-eyes was the key, the only thing really important right now. Mister Blue-eyes and whatever the hell it was he was watching outside their little tin prison.  

\n

     “NOW LISTEN DAMMIT!!!” She hollered, trying to make herself louder than the loudest of them, a difficult task with New Yorkers. “I told you, there’s no goddamn reason to think it’s terrorism! This has happened before in our lifetimes and it’s gonna happen again. As far as I’m concerned it ain’t nothing more than a power outage. Going FUCKING crazy ain’t gonna help us any, dammit!!”  

\n

   They kept going, some of them, but most paid her mind and listened, their faces drawn and tired. They’d suffered enough the last few years, New Yorkers. There wasn’t a one of them, including herself, who hadn’t had their world turned literally upside down two years before. The terror they’d lived was fresh on their minds, fresh and ready to burst again and overwhelm them. It was a hard thing, it truly, truly was.     

\n

   “Now I just got off the phone with my partner and he says he’s gonna get people down here to get us out as soon as possible. There are trains stalled all over the city. Rescue workers are leading those people out from underground and up to their homes. He told me there would be a group of them here soon. He was gonna get them here.”    

\n

   “Is that them?” Came the deep voice of Jeffrey Thornton. He’d been quiet while the others yelled, silent and listening to what she had to say. The moment she’d spoken of rescue his eyes had gone outside the train and he saw what Mister Blue-eyes had apparently been watching.    

\n

   “Where?” She asked him, stumbling over and peering outside, right next to the stranger in the baseball cap.       

\n

   She saw nothing at first, her eyes trying to focus past the reflections in the glass and out into the pitch black.      

\n

   “Those--,” Mister Blue-eyes said, at last speaking, his voice accented in a manner she’d never heard before. Something about it was as wrong and as otherworldly as his eyes were. “---are not rescuers of any sort.”    

\n

   Out of the corner of her eye she saw him rise and back away from the window and once again her instincts spoke to her. They told her to back away as well, and to not stop there. They said to her, no, they screamed at her to run, to run as far from here as possible.      

\n

   But she didn’t, she had to see what they were, had to see for herself.    

\n

   When the figures finally did materialize from the darkness, they weren’t human at all.     

\n

End Part 29

\n

         If you find yourself interested in the whole damnedable thing and wanna throw me a few bucks, here's a link to it on Amazon.      

\n

  https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1   

\n


\n", - "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"creative\",\"writers\",\"writing\"],\"image\":[\"http://www.followingthenerd.com/site/wp-content/uploads/shadowpeople.jpg\"],\"links\":[\"https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1\"]}", - "last_update": "2016-09-14T19:15:09", - "created": "2016-09-14T19:15:09", - "active": "2016-09-15T15:19:39", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 3, - "net_rshares": "89025972926", - "abs_rshares": "89025972926", - "vote_rshares": "89025972926", - "children_abs_rshares": "89614201477", - "cashout_time": "2016-09-15T19:48:29", - "max_cashout_time": "2016-09-28T19:15:09", - "total_vote_weight": "401621156077855379", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 3, - "root_author": "profanarky", - "root_permlink": "the-dragon-s-blood-part-29", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 615287, - "author": "stellabelle", - "permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", - "category": "secret-writer", - "parent_author": "", - "parent_permlink": "secret-writer", - "title": "SECRET WRITER: I Feel Like An Alien Among People In My Country", - "body": "http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\n\n# I have to hide my true self.\n\nIt just so happened that I was constantly losing my friends. It's like a curse was put on me.\nJudging by the reviews from former colleagues and friends, I was a \"nice and friendly person who was always willing to help.\"\n\n# However, constantly all these friends ceased to be friends with me, for no reason. They just stopped communicating, no quarrels, no disagreements and other things!\n\nI had a lot of friends ... But our paths diverged.\n\nIn my childhood I had friends, but my family moved to another city, and I lost my friends. In the new city, I made new friends. I had one close friend. Even his move to another part of the city has not prevented us from seeing each other every weekend. And one day, he was taken into the army. And one day, his aunt came to me, and said that he is no more, he was killed when he was on sentry duty ...\n\n![imaged6bd4.jpg](https://www.steemimg.com/images/2016/07/26/imaged6bd4.jpg)\n\nPeople ignore me constantly on the Internet, too. On any website, forum. I try to communicate, start a dialogue, and all people just ignore me. Suffice it to ask someone about something, write, and so on, and no response. \n\n# It's as if I did not exist.\n\nhttp://i.giphy.com/3o72FhMTVaOTycqObu.gif\n\nI am always open and friendly, and in return I receive arrogance against me or they completely ignore me.\nThis is what hurts the self-assessment.\n\n# I have no one to talk, no one to share the news with. Not one to ask for help. When I die, nobody will notice. \n\nhttp://i.giphy.com/l46CABOxa2Itf99bG.gif\n\n# I change people!\n\nI've got one property ... when a person begins to communicate with me, he is beginning to change. He begins to listen to the music that I like. He begins to lead a similar lifestyle. In general, people change for the better. From this, I feel somehow enhanced. And apparently, it has become another man moves away from me and goes his own way. As the chicks leave the nest as adults. Other explanation I can find.\n\n# Childhood\n\nAt school I was a \"whipping boy\".\n\nhttp://i.giphy.com/Hem0mSEEPwQBa.gif\n\nEndured constant insults, humiliation. Every day for 3 years. The school was torture for me. I did not like school, sometimes skipped lessons to avoid it all. Of course, it has affected my level of education, I studied badly.\n\nAnd also, my eyesight began to deteriorate, I did not see what was written on the blackboard. And when I admitted that I had bad eyesight, meant even more exposure to ridicule. In addition, due to health problems, but rather due to an error from talentless doctors, I had to take some strange drug. What it was I do not know, but I remember that I had to take these pills with milk. At first, nothing happened ... but then I wanted to eat every 5 minutes, I could not stop! I suffered from hunger! And accordingly, I gained weight. Needless to say, that became more humiliation for me.\n\nPerhaps it is karma. After all, before all this, I, too, along with all, mocked other classmates. Well now I know, I deserve it all.\n\nIt all ended when I graduated from high school. I changed just for the summer. Completely changed! I was starving and had grown very thin. Enrolling in college, I stopped being afraid of the people because they did not know who I was at school. Former classmates simply did not recognize me in the street. I became a different person. I started a new life with a clean slate.\n\nhttp://i.giphy.com/763KvbtkqH3e8.gif\n\n# I'm for searching myself.\n\n### Punk.\n\nOne day on one local forum, I found an ad that a punk rock band was looking for a drummer. I do not know why, or what came over me, or how my subconscious played a role, but I wrote to them that I am ready to join them.\n\nIn those years, I liked punk rock. But I did not know how to play the drums! However, I had an ear for music and rhythm. Since childhood, I remember I loved playing improvised drums.\n\nhttp://i.giphy.com/3oEjI2cJuP3Y0dcfV6.gif\n\nAt the first rehearsal something happened. But, of course, I played really disgusting. I liked that I was with other people. I liked all the socializing after the rehearsals, but the rehearsals themselves I sometimes disliked.\n\nI was getting the feeling that my lack of skill playing the drums was getting the band down. The band broke up after 2 years, played three songs in one of the amateur concerts. I still blame myself for failing them. But communicating with them gave me pleasure.\n\n### Church of Satan.\n\nhttp://i.giphy.com/xThuWk5MZglNP8IsJG.gif\n\nI've never been religious.\nOne day it so happened that I was carried by some away articles and the book \"Church Satan\" that I found on the Internet. So I soon became well versed in the sect (I still keep granted by them, the so-called \"certificate\" as a memory). And then, I began to take an active and more active role in this church.\n\nI was the first who made an unofficial website, for which I was honored with awards and praise. I was the first who wrote a skeptical analysis of the Bible. And my critiques were very popular! Actually, thanks to them that I became known.\n\nAnd then I began to get to know ones of the elders. With me, I remember, I spoke to some journalists, a student who wrote some work, theologians, members of the new sect, and anyone with an interest. Probably because I was often on the network. After all, I have never been a part from the college and at home, and did nothing.\n\nBut then, I and several other members became disillusioned, and I left the sect.\n\nAnd then there were various attempts to find myself, I was changing lifestyles and views on life.\n\nWhy did I write this? All of the above has given me some experience in dealing with people and the ability to understand who I am and why, to find my place in life.\n\nPagan Old Believers tried invite me to come, and then I almost became a skinhead.\n\n> \"What people call life - just a game, but this game is sometimes instructive, and all that it teaches - only lessons from which to borrow wisdom, therefore, ought to live.\" (C)\n\n# Loneliness gave me the alternative to communion, namely: I read a lot of books, of which learned many new things from psychology, philosophy, spirituality and languages.\n\nhttp://i.giphy.com/AbuQeC846WKOs.gif\n\nHave you noticed that being in society and when in the company of others, you do not crave training or self-development? I see this for myself when my brother visits me. I do not read books, I do not ponder any situation and theory, I just talk and spend time with my brother. Loneliness provides an incentive for development. With the help of loneliness, you really will begin to appreciate the friendship and fellowship.\n\n# This can be compared with food delicacies. If you eat delicacies every day, they will cease to be so desirable and unusual, and they will become commonplace.\n\nhttp://i.giphy.com/WmEvcZna75UfS.gif\n\n# Now.\n\nMy current way of life is very similar to Tantric Buddhism, although it is not defined by that as it has no name, and does not need to be defined as such.\n\n# Sometimes it's painful and unpleasant to look at people.\n\nhttp://i.giphy.com/JsL3hYFdvMMSs.gif\n\nI understand why they are themselves, why they have such a way of life, but I do not want to be like them and be with them in the same company. I do not like it.\n\nI never offend for a reason, I never attack, and I do no harm.\nEmpathy - what distinguishes us from animals.\n\nI value every life, no matter what that life is.\nI do not accept what most people love.\nI do everything consciously, extracting meaning and benefits from the experience.\nFor example, I have a meal. I do not eat garbage food, because it does not give to my body anything useful, since it does not contain nutrients. \n\n# I do not drink alcohol, smoke cigarettes or do drugs. \n\n\nAnd that is why people around me laugh or look at me quizzically. They say that I'm lying, sick, abnormal, or \"mother does not allow\". They say, \"in life need one needs to try everything!\" \n\nBut none of them for some reason, do not try, for example, quantum physics, a healthy lifestyle, or Buddhism.\n\n**In life, need to not only try, but also try not to try!**\n\n# I do not live with the people, but I live among the people.\n\nIf only you knew how hard all of this is ... I have to hide it all, and to adapt to the \"generally accepted norms\", in order not to be mocked. \n\nI feel somehow alien among the people. I have to wear a mask to resemble the people and not be detected.\n\nhttp://i.giphy.com/QG0th9DNdRrGw.gif\n\n> \"No pyramids of authority.\nMaster has an older brother, nothing more. And he just does the hard work that the others do not overpower. If it is otherwise, then trouble is inevitable.\nAuthority - this is a mistake \"(c).\n\nIf you have read Orwell's novel \"1984\" or watched the same film, you know, all this is happening in my country.\nPeople poisoned by propaganda, people are trying to survive, they are afraid of the authorities and freedom.\nAll this is laid bare and exacerbated in human animal instincts. The principle of flocks. Not like us - the enemy is dangerous, you need to avoid, or to die.\n\nThe population cannot tolerate dissent, any manifestation of freedom, something different from their lifestyle and worldview. In connection with this, people with a different lifestyle, look, worldview and way, becomes an object of ridicule, an outcast, a threat, an enemy.\n\nIt's not comfortable for me to live here. But leave (until the border has not yet closed) there is no possibility. It is very expensive, and I make incredibly low wages, and wages continue to fall, while food and services continue to rise in price.\n\nHow I would like live in a free country! Be yourself, do not hide anything, not trying to make excuses for my views and lifestyles.\n\nMaybe relocation to another country could change something in me, but I notice, positive emotions in me less and less and I feel less joy and desire to live.\n\nhttp://i.giphy.com/eR2OWX51qesIo.gif\n\n-Secret Writer\n\nImages and gifs: All images are by Stellabelle, all gifs are from giphy.com.", - "json_metadata": "{\"tags\":[\"secret-writer\",\"isolation\",\"self-development\",\"life\"],\"image\":[\"http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\"]}", - "last_update": "2016-08-15T17:39:09", - "created": "2016-08-15T16:44:42", - "active": "2016-08-17T15:01:48", - "last_payout": "2016-08-16T19:48:36", - "depth": 0, - "children": 43, - "net_rshares": "981828724825", - "abs_rshares": "984642850369", - "vote_rshares": "981882842624", - "children_abs_rshares": "18007718646255", - "cashout_time": "2016-09-15T19:48:36", - "max_cashout_time": "2016-08-30T21:38:48", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "356586", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "31898", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 238520, - "net_votes": 293, - "root_author": "stellabelle", - "root_permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617429, - "author": "teutonic", - "permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", - "category": "awesome", - "parent_author": "", - "parent_permlink": "awesome", - "title": "10 Amazing Optical Illusion Pictures To Mess With Your Brain", - "body": "http://www.mindmotivations.com/images/optical-illusion1.jpg \nIs the ladder going up or down?\nhttp://www.mindmotivations.com/images/optical-illusion2.jpg\nAre the dots in between the squares white, black or grey?\nhttp://www.mindmotivations.com/images/optical-illusion3.jpg \nparallel or crooked?\nhttp://www.mindmotivations.com/images/optical-illusion4.jpg\nHow many legs?\nhttp://www.mindmotivations.com/images/optical-illusion5.jpg\nFocus on the dot in the middle and then move your head backwards and forwards.\nhttp://www.mindmotivations.com/images/optical-illusion7.jpg\nIs the picture moving?\nhttp://www.mindmotivations.com/images/optical-illusion8.jpg\nIs there anything in between the different squares?\nhttp://www.mindmotivations.com/images/optical-illusion9.jpg\nface of a lady or a word?\nhttp://www.mindmotivations.com/images/optical-illusion6.jpg \nFocus on the 4 dots in the middle of the picture for 30 seconds. \nhttp://www.mindmotivations.com/images/optical-illusion10.jpg \neven possible?", - "json_metadata": "{\"tags\":[\"awesome\",\"\"],\"image\":[\"http://www.mindmotivations.com/images/optical-illusion1.jpg\"]}", - "last_update": "2016-08-15T19:35:54", - "created": "2016-08-15T19:35:54", - "active": "2016-08-15T20:10:06", - "last_payout": "2016-08-16T19:48:45", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-15T19:48:45", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "teutonic", - "root_permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 952070, - "author": "safar01", - "permlink": "lol-robot-tranformers-against-fishermen", - "category": "editing", - "parent_author": "", - "parent_permlink": "editing", - "title": "LOL ... Robot Tranformers against fishermen (steemitphotochallenge)", - "body": "\n

\n

show in the pictures are not real, but I edit them using Photoshop just

\n

 to train the imagination only.

\n

I made this picture just to entertain readers of all, 

\n

please advise the reader all my abilities to process images

\n", - "json_metadata": "{\"tags\":[\"editing\",\"with\",\"photoshop\",\"imagination\",\"steemitphotochallenge\"],\"image\":[\"https://scontent.fcgk1-1.fna.fbcdn.net/v/t1.0-9/44685_544257398931890_1432197168_n.jpg?oh=737dff7bef73ecfcaff983c130b55ee1&oe=587FF678\"]}", - "last_update": "2016-09-14T20:20:48", - "created": "2016-09-14T19:48:57", - "active": "2016-09-14T20:20:48", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 158773924, - "abs_rshares": 158773924, - "vote_rshares": 158773924, - "children_abs_rshares": 158773924, - "cashout_time": "2016-09-15T19:48:57", - "max_cashout_time": "2016-09-28T19:48:57", - "total_vote_weight": "732186422373807", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "safar01", - "root_permlink": "lol-robot-tranformers-against-fishermen", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617119, - "author": "pipertomcat", - "permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", - "category": "bitcoin", - "parent_author": "", - "parent_permlink": "bitcoin", - "title": "Western Union investing in Blockchain technology...will it be Bitcoin ? or Ripple!?", - "body": "https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg \nhttps://s19.postimg.org/jiv4eri0j/Blockchain_technology1.png\nWhy not Steem Dollars then? I think ultimately Western Union and the like may actually choose or adopt a name that includes something like \"Dollar\". Lol\nhttps://s19.postimg.org/4y9g66xo3/Bitcoinripplebanner1.png\n\nI have said to different friends over the last year or so on occasion, that I fear Western Union is about to die by Bitcoin's hand. I compare Netflix, Youtube, Google Play, Itunes,and so forth killing retail establishments like Blockbuster video. Technology and the convenience it brings, easily dominates any industry, ask Kodak. \n\n I have friends who still have to purchase money orders to pay their rent. The Apartment complex refuses personal checks and apparently doesn't want employee's accepting cash. You can join their site online for a $50 per month fee and connect your checking account. What a ripoff! \nWow if they only knew of bitcoin and the coming technology.\nhttps://s19.postimg.org/743r0p14j/725_Ly9jb2lud_GVs_ZWdy_YXBo_Lm_Nvb_S9zd_G9y_YWdl_L3_Vwb_G9h.jpg\n\n\nhttps://s19.postimg.org/fc5olot0z/e873eec95dbe6437e8b73f6dc4b474e6.jpg\nhttps://s19.postimg.org/d2hkaxk37/a9ee5c9045261e324670df9b5e3fbf0c.png\n Western Union was in discussions with Ripple Labs early last year, regarding a blockchain pilot project. By using a cheap payment network, proponents claim that companies will be able to cut down the cost of remittances.\n The following quote from Barry Gilbert , the Digital Currency Insights Founder and CEO says it best:\n“If you look at Western Union and Moneygram, they have a fantastic opportunity to take advantage of bitcoin as a financial rail and incorporate it into their business.”\n\nAfter reading the following article just now, I will have to say that I think someone like Western Union may be the key player in bringing Bitcoin to the masses! The following is an article from Bravenewcoin-http://bravenewcoin.com/news/western-union-wont-make-the-same-mistake-with-blockchain/\n\n#steemdollar\n#steem\n#westernunion\n#ripple", - "json_metadata": "{\"tags\":[\"bitcoin\",\"steemdollar\",\"steem\",\"westernunion\",\"ripple\"],\"image\":[\"https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg\"]}", - "last_update": "2016-08-15T19:14:33", - "created": "2016-08-15T19:14:33", - "active": "2016-08-15T19:15:51", - "last_payout": "2016-08-16T19:49:42", - "depth": 0, - "children": 1, - "net_rshares": 53638386, - "abs_rshares": 53638386, - "vote_rshares": 53638386, - "children_abs_rshares": "45063474229", - "cashout_time": "2016-09-15T19:49:42", - "max_cashout_time": "2016-09-04T21:13:12", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 9, - "root_author": "pipertomcat", - "root_permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-15T19:12:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "crowe", + "author_rewards": 0, + "beneficiaries": [], + "body": "I thought my viewers would be interested in the place I actually live in. I live in a City called Ashkelon. Its about 7 miles North of Gaza. Last year in June when some missiles were being shot toward Israel the Sirens in Ashkelon went off. I filmed this video from my deck. The video is what we hear when this happens. \n\nhttps://www.youtube.com/watch?v=Ky23yJaNDfo", + "cashout_time": "2016-09-15T19:47:27", + "category": "israel", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T19:12:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617094, + "json_metadata": "{\"tags\":[\"israel\",\"siren\",\"gaza\",\"politics\",\"steemit\"],\"links\":[\"https://www.youtube.com/watch?v=Ky23yJaNDfo\"]}", + "last_payout": "2016-08-16T19:47:27", + "last_update": "2016-08-15T19:12:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "israel", + "percent_hbd": 10000, + "permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "reward_weight": 10000, + "root_author": "crowe", + "root_permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "title": "Israeli Bomb Siren goes off in my City. I filmed this from my deck.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "1339555910464", + "active": "2016-08-15T19:44:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "luminarycrush", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

I came across a lone blooming cactus during a hike this weekend.  Photos taken at 946' ASL above Two Harbors, Catalina Island.

\n

\n


\n

\n


\n

\n", + "cashout_time": "2016-09-15T19:47:27", + "category": "photography", + "children": 0, + "children_abs_rshares": "1339555910464", + "created": "2016-08-15T19:44:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617542, + "json_metadata": "{\"tags\":[\"photography\",\"cactus\",\"catalinaisland\",\"california\",\"twoharbors\"],\"image\":[\"https://scontent.xx.fbcdn.net/t31.0-8/13988224_10154518762224175_252304266230235242_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13923665_10154518762269175_2030254348907005554_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13988240_10154518762254175_9097905240858144855_o.jpg\"]}", + "last_payout": "2016-08-16T19:47:27", + "last_update": "2016-08-15T19:44:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-01T02:13:51", + "net_rshares": "1339555910464", + "net_votes": 14, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "cactus-in-the-clouds-catalina-island", + "reward_weight": 10000, + "root_author": "luminarycrush", + "root_permlink": "cactus-in-the-clouds-catalina-island", + "title": "Cactus in the Clouds - Catalina Island", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "1339555910464" + }, + { + "abs_rshares": "76217996022", + "active": "2016-08-17T15:39:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "brunopro", + "author_rewards": 13512, + "beneficiaries": [], + "body": "http://imgur.com/HrpWWaK.png\n\n## And there are changes again regarding the duration until the payout occurs, now your post will have a minimum 24 hours duration until the first payout. \n\nPersonally I think that they should never have changed it to 12 hours. I didn't understand the logic behind it at the time and I still don't. This 24h period it's ideal because this way the post has better chances of overcoming the first publish period and get more traction. It also enables of a higher possibility of being seen and upvoted by the users that on the 12h were sleeping or simply away.\n\n# And you? What do you think about this change?\n\n----\n\nEdit post-publish: I've notice that I can't upvote a post that has been up for a month. Is this new also? I thought a post would always be open for an upvote? Can anyone reply to this question? thanks!\n\n----\n\n###### Photo Credits: https://unsplash.com/@sonjalangford", + "cashout_time": "2016-09-15T19:47:42", + "category": "steemit", + "children": 22, + "children_abs_rshares": "78071773184", + "created": "2016-08-15T18:36:36", + "curator_payout_value": { + "amount": "3483", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 616664, + "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"opinion\",\"reward\"],\"image\":[\"http://imgur.com/HrpWWaK.png\"]}", + "last_payout": "2016-08-16T19:47:42", + "last_update": "2016-08-15T18:51:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-08-30T20:41:45", + "net_rshares": "76217996022", + "net_votes": 82, + "parent_author": "", + "parent_permlink": "steemit", + "percent_hbd": 10000, + "permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "reward_weight": 10000, + "root_author": "brunopro", + "root_permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "title": "LATEST NEWS: Payouts are back to 24H - What do you think about it? [ Quick read / Opinion Article ]", + "total_payout_value": { + "amount": "20200", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "76217996022" + }, + { + "abs_rshares": 0, + "active": "2016-08-15T19:50:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "yassinebentour", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

http://unitedcivilrights.org/images/fa-prprty.gif

\n

The purpose of property rights is to mitigate conflict over scarce, rivalrous resources. To have a property right over a scarce, rivalrous resource is to have the right to exclude others from using that resource in the attainment of some ends. For example, I have property rights over my body, which means I can exclude others from using my body for sexual pleasure or labor without my consent. If they do access my body in such a way without my consent, it's called rape or slavery, respectively. Likewise, I have property rights over the accumulated capital for which I consensually trade my time and labor, which means I have the right to exclude people from using my accumulated capital without my consent. When someone accesses my accumulated capital in such a way without my consent, it's called theft or trespass.
\nScale doesn't change this. If I transform my accumulated capital into a factory by hiring people who voluntarily exchange the product of their labor for some of my accumulated capital, this means that they value what they receive in exchange for working more than they value the direct product of their labor (the factory). Likewise, it means I value the factory more than the accumulated capital I gave up for it. This is a win-win situation, or a positive sum game. The workers I hired retain property rights over the capital they received as payment for their labor, which means they can exclude others from the use of their newly acquired accumulated capital, and I retain property rights over the factory, which means I can exclude others from the use of my factory.
\nDiscrepancies between marginal benefit don't change this either. A consensual exchange doesn't become theft just because one party benefits more from the exchange than another. If this wasn't the case, every single instance of buyer's remorse would be indicative of theft. If someone agrees to produce a walking stick in exchange for ten dollars and the purchaser of the walking stick then sells it to someone else for twenty dollars, how can it be claimed that the producer of the walking stick was a victim of theft if they haven't been deprived of the ten dollars for which they voluntarily exchanged the walking stick? Would it have been reasonable to expect that the first purchaser of the walking stick wouldn't have obtained more than ten dollars of value from it given that the exchange wouldn't have happened in the first place if they hadn't valued the walking stick more than they valued ten dollars?
\nOf course not. Anything that happens to the walking stick after the original exchange is no business of the producer of the walking stick because said producer already exchanged his property rights to the walking stick for property rights to a different form of accumulated capital (ten dollars).
\nLikewise, if I use more of my accumulated capital to hire workers to work in my factory, they will only accept my offer of employment if they value what I'm offering more than their own free time and more than whatever stake they may have otherwise had in the product they will be producing. In other words, if they accept employment, it will be with the understanding that they're giving up any stake in what they're producing in exchange for what I'm offering them. Maybe my factory assembles televisions. Maybe one worker can produce one television per hour. Would they be able to produce televisions this efficiently without my previous investment in production capital (which hasn't even been recouped and probably never will be completely given that maintenance, employment and higher order production good costs are a revolving door)? Would they be able to produce televisions AT ALL without this previous investment in production capital? Of course not, and they know this, which is why they're willing to give up both their leisure and whatever stake their labor may have otherwise entitled them to in the production of a television in exchange for a fixed amount of accumulated capital.
\nAs was the case with the walking stick, whatever happens to the television after this exchange occurs is no business of the worker. How could the future sale of the television constitute theft of the worker's accumulated capital if it can't be demonstrated that the worker was deprived of the accumulated capital that he voluntarily accepted as payment for the production of the television, especially given that the television was produced with other accumulated capital (plastic, circuits, labor saving devices, etc.) that the worker never even owned?
\nIt can't.
\nProperty ownership necessarily implies exclusivity, which means that \"private property\" is redundant, as is \"personal property\". The words \"private\" and \"personal\" denote exclusivity, which is already implied by the word \"property\". To differentiate between \"personal property\" and \"private property\" is therefore a distinction without a difference. This implication of exclusivity also means that \"public property\" is a contradiction in terms. If no one can be excluded from using the resource, it isn't property. Resources that aren't scarce or rivalrous likewise can not be considered property, which means that \"intellectual property\" is also a contradiction in terms.
\nThis means that seizing the means of production is a genuine form of theft and that \"pirating\" music, software, art and writing is not, which may seem counter-intuitive if you attended the indoctrination camps euphemistically known as \"public schools\" when you were growing up.

\n", + "cashout_time": "2016-09-15T19:47:48", + "category": "writing", + "children": 2, + "children_abs_rshares": "25854883309", + "created": "2016-08-15T19:43:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617534, + "json_metadata": "{\"tags\":[\"writing\",\"rights\"],\"image\":[\"http://unitedcivilrights.org/images/fa-prprty.gif\"]}", + "last_payout": "2016-08-16T19:47:48", + "last_update": "2016-08-15T19:43:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-01T01:02:42", + "net_rshares": -104004690671, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "writing", + "percent_hbd": 10000, + "permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "reward_weight": 736, + "root_author": "yassinebentour", + "root_permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "title": "The purpose of property rights is to mitigate conflict over scarce, rivalrous resources", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-15T19:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "libtrian.outlet", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\nFriday's move is the clearest indication yet that the White House is serious about getting Obama\u2019s legacy trade deal.\n\nThe White House put Congress on notice Friday morning that it will be sending lawmakers a bill to implement President Barack Obama\u2019s landmark Trans-Pacific Partnership agreement \u2014 a move intended to infuse new energy into efforts to ratify the flat-lining trade pact.\n\nThe move establishes a 30-day minimum before the administration can present the legislation, but the White House is unlikely to do so amid the heated rhetoric of a presidential campaign in which both major party nominees have depicted free trade deals as massive job killers.\n\nFriday's notification is the clearest signal yet that the White House is serious about getting Obama\u2019s legacy trade deal \u2014 the biggest in U.S. history \u2014 passed by the end of the year, as he has vowed to do despite the misgivings of Republican leaders and the outright opposition of a majority of Democrats in Congress.\n\nStriking a defiant tone, Obama predicted at a press conference last week that the economic centerpiece of his strategic pivot to Asia would pass in the lame-duck session, saying he\u2019d like to sit down with lawmakers after the election to discuss the \"actual facts\" behind the deal, rather than toss it around like a \"political football.\"\n\n\"We are part of a global economy. We're not reversing that,\" Obama said, describing the necessity of international supply chains and the importance of the export sector to U.S. jobs and the economy. \"The notion that we're going to pull that up root and branch is unrealistic.\"\n\nThe notification, a new requirement of the trade promotion authority legislation Congress passed last year to expedite passage of the Asia-Pacific pact, is \u201cmeant to ensure early consultations between the administration and Congress,\u201d Matt McAlvanah, a spokesman for the Office of the U.S. Trade Representative, said in a statement. \u201cAs such, the draft SAA [Statement of Administrative Action] was sent today in order to continue to promote transparency and collaboration in the TPP process.\u201d\n\nThe White House's draft document describes the major steps the administration will take to implement any changes to U.S. law required by the deal. Those actions range from the mundane \u2014 designating an administration point of contact for communications about the pact \u2014 to the complex \u2014 setting up procedures to stop harmful surges of agricultural or textile imports.\n\nBut the deal is going nowhere until the White House addresses a number of concerns lawmakers have raised about the trade agreement, which Canada, Mexico, Japan and eight other countries joined the United States in signing last February.\n\nFirst and foremost: satisfying the concerns of Senate Finance Committee Chairman Orrin Hatch (R-Utah) and other lawmakers about protections for a new class of drugs known as biologics. They say the pact provides too short a monopoly period for rights to research and development data. Other lawmakers have complained the deal would bar tobacco companies from seeking redress through investor-state dispute arbitrage for damages resulting from country regulations. Still others are seeking assurances that member countries will abide by their commitments to provide access for U.S. pork and dairy exports.\n\nUntil these issues are resolved, House Speaker Paul Ryan and Senate Majority Leader Mitch McConnell have made clear that the pact will not get the votes it needs to pass.\n\nRyan's spokeswoman, AshLee Strong, reiterated the point on Friday.\n\n\u201cAs Speaker Ryan has stated for months, there are problems that remain with the administration\u2019s TPP deal, and there can be no movement before these concerns are addressed,\" she said.\n\nDemocrats, meanwhile, have largely called the deal a nonstarter over concerns about the enforceability of labor and environmental standards in countries like Vietnam and the lack of strong protections against currency manipulation.\n\nThe administration claims it is making progress on these issues and has resolved others, including banking industry concerns over the exclusion of financial data from rules prohibiting countries from requiring local storage.\n\nBut that doesn\u2019t change the reality of the down-ballot drag that candidates are facing as they campaign back home in their districts. In a reversal from years past, many Republicans are on the defensive about their support for free trade because of Donald Trump\u2019s daily tirades about what he characterizes as the serious economic damage wrought by trade agreements like the North American Free Trade Agreement and the TPP as well as his complaints that China is flouting international trade rules.\n\nThe Republican platform picked up on this theme, saying significant trade deals \"should not be rushed or undertaken in a Lame Duck Congress.\"\n\nThe small band of Democrats who the administration hopes will support the TPP are facing increased pressure within their own party to abandon the president on the agreement. Sens. Bernie Sanders\u2019 and Elizabeth Warren\u2019s strong condemnations of the trade deal have forced Hillary Clinton, who supported the TPP as Obama\u2019s secretary of state, to reject the pact to appease the liberal wing.\n\n\"I will stop any trade deal that kills jobs or holds down wages, including the Trans-Pacific Partnership,\" Clinton said during an economic policy speech at an automotive manufacturing plant in Warren, Mich., on Thursday. \"I oppose it now, I'll oppose it after the election and I'll oppose it as president.\"\n\nClinton\u2019s clear rejection of the trade deal has emboldened liberal groups like the Warren-aligned Progressive Change Campaign Committee to launch a campaign to press Democrats to publicly oppose a TPP vote in the lame duck.\n\nSanders also called on Democratic congressional leaders to go on record against the White House\u2019s effort to get the deal done by the end of the year, saying the agreement is opposed by every trade union and the grassroots base of the Democratic Party.\n\n\"I am disappointed by the president's decision to continue pushing forward on the disastrous Trans-Pacific Partnership trade agreement that will cost American jobs, harm the environment, increase the cost of prescription drugs and threaten our ability to protect public health,\u201d the Vermont senator said in a statement after learning of the White House's action on Friday.\n\nMeanwhile, the administration continues to press the deal in key congressional districts \u2014 especially those of Democrats who supported the trade promotion authority bill last year.\n\nInterior Secretary Sally Jewell returned to her hometown of Seattle last month to tout the TPP\u2019s potential effects on the environment at a Washington Council on International Trade event with more than 150 business leaders.\n\nThen, last week, Commerce Secretary Penny Pritzker hit the San Diego and Boulder districts of Reps. Susan Davis and Jared Polis \u2014 two of the 28 House Democrats that voted for the bill \u2014 and visited a steel plant in Cleveland to promote the TPP. Treasury Secretary Jack Lew did the same when he met with local and state officials and Fortune 500 business executives in Minneapolis.\n\nOn Thursday, Undersecretary of Commerce for Oceans and Atmosphere Kathryn Sullivan spoke at a Seattle clean energy business roundtable focused on the TPP and the environment. And this Monday, Deputy U.S. Trade Representative Robert Holleyman will participate in a World Affairs Council of Atlanta discussion on the trade deal featuring former Republican Sen. Saxby Chambliss and UPS CEO David Abney.\n\nAs the political fight plays out, the nuts-and-bolts process of moving the deal forward will continue. Once Congress reviews the draft notification that the White House submitted on Friday, the administration can move forward with sending lawmakers a final statement and the draft of the implementing bill itself. The legislation will describe the actual changes to U.S. law to comply with the rules of the trade agreement.\n\nAfter that, the Senate Finance and House Ways and Means committees could hold \u201cmock markups\u201d of the bill (because under trade promotion authority, Congress is not actually allowed to tinker with the agreement or its implementing legislation itself, but it can ask the administration to do so).\n\nBut given the tenor of the elections, the entire process could be pushed into a crowded lame-duck legislation session, which would mean no time for the mock markups. Instead, there could be a lot of deal-making between the White House and congressional leadership to move the bill before Clinton or Trump takes over on Jan. 20.\n\nObama said last week that he\u2019s ready to press his case. \"Right now, I'm president, and I'm for it. And I think I've got the better argument,\" he said.\n\nSource:\nwww.politico.com/story/2016/08/obama-congress-trade-warning-226952", + "cashout_time": "2016-09-15T19:47:57", + "category": "politics", + "children": 1, + "children_abs_rshares": "11700424464", + "created": "2016-08-15T19:44:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617538, + "json_metadata": "{\"tags\":[\"politics\",\"tpp\",\"conspiracy\",\"news\",\"freetrade\"],\"image\":[\"http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\"]}", + "last_payout": "2016-08-16T19:47:57", + "last_update": "2016-08-15T19:44:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-04T23:37:39", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "", + "parent_permlink": "politics", + "percent_hbd": 10000, + "permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "reward_weight": 2046, + "root_author": "libtrian.outlet", + "root_permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "title": "Obama puts Congress on notice: TPP is coming", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "89025972926", + "active": "2016-09-15T15:19:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "profanarky", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

In which the folks in the subway find themselves some unwelcome visitors...

\n

29

\n

   \u201cDo NOT panic! There is no reason to believe that this is anything more than just a power outage.\u201d  

\n

   \u201cBut-- BUT-- how can it be the whole state?\u201d One wide-eyed young woman, one of the aforementioned punk rockers actually raised her hand.  

\n

   \u201cYeah, it\u2019s gotta be Al Qaeda, who the hell else could it be?!!\u201d Another idiot bellowed.    

\n

   Others followed, there words quickly jumbling together into a tidal wave of paranoia. It only took one idiot to get the ball rolling.   

\n

   \u201cIt\u2019s gotta be the terrorists, who the hell else could it be?\u201d    

\n

   \u201cOh my god, I gotta get to my kids\u2026 My kids are still at the day care!!!\u201d   

\n

   \u201cDid an airplane hit a power plant??!! OH GOD!! DID AN AIRPLANE HIT ONE OF THE NUCLEAR PLANTS??!!\u201d    

\n

   She heard it all and it was nothing more than a buzzing, though an irritating one nonetheless. Her instincts, those things cops called their gut instincts told her Mister Blue-eyes was the key, the only thing really important right now. Mister Blue-eyes and whatever the hell it was he was watching outside their little tin prison.  

\n

     \u201cNOW LISTEN DAMMIT!!!\u201d She hollered, trying to make herself louder than the loudest of them, a difficult task with New Yorkers. \u201cI told you, there\u2019s no goddamn reason to think it\u2019s terrorism! This has happened before in our lifetimes and it\u2019s gonna happen again. As far as I\u2019m concerned it ain\u2019t nothing more than a power outage. Going FUCKING crazy ain\u2019t gonna help us any, dammit!!\u201d  

\n

   They kept going, some of them, but most paid her mind and listened, their faces drawn and tired. They\u2019d suffered enough the last few years, New Yorkers. There wasn\u2019t a one of them, including herself, who hadn\u2019t had their world turned literally upside down two years before. The terror they\u2019d lived was fresh on their minds, fresh and ready to burst again and overwhelm them. It was a hard thing, it truly, truly was.     

\n

   \u201cNow I just got off the phone with my partner and he says he\u2019s gonna get people down here to get us out as soon as possible. There are trains stalled all over the city. Rescue workers are leading those people out from underground and up to their homes. He told me there would be a group of them here soon. He was gonna get them here.\u201d    

\n

   \u201cIs that them?\u201d Came the deep voice of Jeffrey Thornton. He\u2019d been quiet while the others yelled, silent and listening to what she had to say. The moment she\u2019d spoken of rescue his eyes had gone outside the train and he saw what Mister Blue-eyes had apparently been watching.    

\n

   \u201cWhere?\u201d She asked him, stumbling over and peering outside, right next to the stranger in the baseball cap.       

\n

   She saw nothing at first, her eyes trying to focus past the reflections in the glass and out into the pitch black.      

\n

   \u201cThose--,\u201d Mister Blue-eyes said, at last speaking, his voice accented in a manner she\u2019d never heard before. Something about it was as wrong and as otherworldly as his eyes were. \u201c---are not rescuers of any sort.\u201d    

\n

   Out of the corner of her eye she saw him rise and back away from the window and once again her instincts spoke to her. They told her to back away as well, and to not stop there. They said to her, no, they screamed at her to run, to run as far from here as possible.      

\n

   But she didn\u2019t, she had to see what they were, had to see for herself.    

\n

   When the figures finally did materialize from the darkness, they weren\u2019t human at all.     

\n

End Part 29

\n

         If you find yourself interested in the whole damnedable thing and wanna throw me a few bucks, here's a link to it on Amazon.      

\n

  https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1   

\n


\n", + "cashout_time": "2016-09-15T19:48:29", + "category": "story", + "children": 3, + "children_abs_rshares": "89614201477", + "created": "2016-09-14T19:15:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 951797, + "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"creative\",\"writers\",\"writing\"],\"image\":[\"http://www.followingthenerd.com/site/wp-content/uploads/shadowpeople.jpg\"],\"links\":[\"https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T19:15:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-28T19:15:09", + "net_rshares": "89025972926", + "net_votes": 3, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "the-dragon-s-blood-part-29", + "reward_weight": 10000, + "root_author": "profanarky", + "root_permlink": "the-dragon-s-blood-part-29", + "title": "The Dragon's Blood (Part 29)", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "401621156077855379", + "vote_rshares": "89025972926" + }, + { + "abs_rshares": "984642850369", + "active": "2016-08-17T15:01:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "stellabelle", + "author_rewards": 238520, + "beneficiaries": [], + "body": "http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\n\n# I have to hide my true self.\n\nIt just so happened that I was constantly losing my friends. It's like a curse was put on me.\nJudging by the reviews from former colleagues and friends, I was a \"nice and friendly person who was always willing to help.\"\n\n# However, constantly all these friends ceased to be friends with me, for no reason. They just stopped communicating, no quarrels, no disagreements and other things!\n\nI had a lot of friends ... But our paths diverged.\n\nIn my childhood I had friends, but my family moved to another city, and I lost my friends. In the new city, I made new friends. I had one close friend. Even his move to another part of the city has not prevented us from seeing each other every weekend. And one day, he was taken into the army. And one day, his aunt came to me, and said that he is no more, he was killed when he was on sentry duty ...\n\n![imaged6bd4.jpg](https://www.steemimg.com/images/2016/07/26/imaged6bd4.jpg)\n\nPeople ignore me constantly on the Internet, too. On any website, forum. I try to communicate, start a dialogue, and all people just ignore me. Suffice it to ask someone about something, write, and so on, and no response. \n\n# It's as if I did not exist.\n\nhttp://i.giphy.com/3o72FhMTVaOTycqObu.gif\n\nI am always open and friendly, and in return I receive arrogance against me or they completely ignore me.\nThis is what hurts the self-assessment.\n\n# I have no one to talk, no one to share the news with. Not one to ask for help. When I die, nobody will notice. \n\nhttp://i.giphy.com/l46CABOxa2Itf99bG.gif\n\n# I change people!\n\nI've got one property ... when a person begins to communicate with me, he is beginning to change. He begins to listen to the music that I like. He begins to lead a similar lifestyle. In general, people change for the better. From this, I feel somehow enhanced. And apparently, it has become another man moves away from me and goes his own way. As the chicks leave the nest as adults. Other explanation I can find.\n\n# Childhood\n\nAt school I was a \"whipping boy\".\n\nhttp://i.giphy.com/Hem0mSEEPwQBa.gif\n\nEndured constant insults, humiliation. Every day for 3 years. The school was torture for me. I did not like school, sometimes skipped lessons to avoid it all. Of course, it has affected my level of education, I studied badly.\n\nAnd also, my eyesight began to deteriorate, I did not see what was written on the blackboard. And when I admitted that I had bad eyesight, meant even more exposure to ridicule. In addition, due to health problems, but rather due to an error from talentless doctors, I had to take some strange drug. What it was I do not know, but I remember that I had to take these pills with milk. At first, nothing happened ... but then I wanted to eat every 5 minutes, I could not stop! I suffered from hunger! And accordingly, I gained weight. Needless to say, that became more humiliation for me.\n\nPerhaps it is karma. After all, before all this, I, too, along with all, mocked other classmates. Well now I know, I deserve it all.\n\nIt all ended when I graduated from high school. I changed just for the summer. Completely changed! I was starving and had grown very thin. Enrolling in college, I stopped being afraid of the people because they did not know who I was at school. Former classmates simply did not recognize me in the street. I became a different person. I started a new life with a clean slate.\n\nhttp://i.giphy.com/763KvbtkqH3e8.gif\n\n# I'm for searching myself.\n\n### Punk.\n\nOne day on one local forum, I found an ad that a punk rock band was looking for a drummer. I do not know why, or what came over me, or how my subconscious played a role, but I wrote to them that I am ready to join them.\n\nIn those years, I liked punk rock. But I did not know how to play the drums! However, I had an ear for music and rhythm. Since childhood, I remember I loved playing improvised drums.\n\nhttp://i.giphy.com/3oEjI2cJuP3Y0dcfV6.gif\n\nAt the first rehearsal something happened. But, of course, I played really disgusting. I liked that I was with other people. I liked all the socializing after the rehearsals, but the rehearsals themselves I sometimes disliked.\n\nI was getting the feeling that my lack of skill playing the drums was getting the band down. The band broke up after 2 years, played three songs in one of the amateur concerts. I still blame myself for failing them. But communicating with them gave me pleasure.\n\n### Church of Satan.\n\nhttp://i.giphy.com/xThuWk5MZglNP8IsJG.gif\n\nI've never been religious.\nOne day it so happened that I was carried by some away articles and the book \"Church Satan\" that I found on the Internet. So I soon became well versed in the sect (I still keep granted by them, the so-called \"certificate\" as a memory). And then, I began to take an active and more active role in this church.\n\nI was the first who made an unofficial website, for which I was honored with awards and praise. I was the first who wrote a skeptical analysis of the Bible. And my critiques were very popular! Actually, thanks to them that I became known.\n\nAnd then I began to get to know ones of the elders. With me, I remember, I spoke to some journalists, a student who wrote some work, theologians, members of the new sect, and anyone with an interest. Probably because I was often on the network. After all, I have never been a part from the college and at home, and did nothing.\n\nBut then, I and several other members became disillusioned, and I left the sect.\n\nAnd then there were various attempts to find myself, I was changing lifestyles and views on life.\n\nWhy did I write this? All of the above has given me some experience in dealing with people and the ability to understand who I am and why, to find my place in life.\n\nPagan Old Believers tried invite me to come, and then I almost became a skinhead.\n\n> \"What people call life - just a game, but this game is sometimes instructive, and all that it teaches - only lessons from which to borrow wisdom, therefore, ought to live.\" (C)\n\n# Loneliness gave me the alternative to communion, namely: I read a lot of books, of which learned many new things from psychology, philosophy, spirituality and languages.\n\nhttp://i.giphy.com/AbuQeC846WKOs.gif\n\nHave you noticed that being in society and when in the company of others, you do not crave training or self-development? I see this for myself when my brother visits me. I do not read books, I do not ponder any situation and theory, I just talk and spend time with my brother. Loneliness provides an incentive for development. With the help of loneliness, you really will begin to appreciate the friendship and fellowship.\n\n# This can be compared with food delicacies. If you eat delicacies every day, they will cease to be so desirable and unusual, and they will become commonplace.\n\nhttp://i.giphy.com/WmEvcZna75UfS.gif\n\n# Now.\n\nMy current way of life is very similar to Tantric Buddhism, although it is not defined by that as it has no name, and does not need to be defined as such.\n\n# Sometimes it's painful and unpleasant to look at people.\n\nhttp://i.giphy.com/JsL3hYFdvMMSs.gif\n\nI understand why they are themselves, why they have such a way of life, but I do not want to be like them and be with them in the same company. I do not like it.\n\nI never offend for a reason, I never attack, and I do no harm.\nEmpathy - what distinguishes us from animals.\n\nI value every life, no matter what that life is.\nI do not accept what most people love.\nI do everything consciously, extracting meaning and benefits from the experience.\nFor example, I have a meal. I do not eat garbage food, because it does not give to my body anything useful, since it does not contain nutrients. \n\n# I do not drink alcohol, smoke cigarettes or do drugs.\u00a0\n\n\nAnd that is why people around me laugh or look at me quizzically. They say that I'm lying, sick, abnormal, or \"mother does not allow\". They say, \"in life need one needs to try everything!\" \n\nBut none of them for some reason, do not try, for example, quantum physics, a healthy lifestyle, or Buddhism.\n\n**In life, need to not only try, but also try not to try!**\n\n# I do not live with the people, but I live among the people.\n\nIf only you knew how hard all of this is ... I have to hide it all, and to adapt to the \"generally accepted norms\", in order not to be mocked. \n\nI feel somehow alien among the people. I have to wear a mask to resemble the people and not be detected.\n\nhttp://i.giphy.com/QG0th9DNdRrGw.gif\n\n> \"No pyramids of authority.\nMaster has an older brother, nothing more. And he just does the hard work that the others do not overpower. If it is otherwise, then trouble is inevitable.\nAuthority - this is a mistake \"(c).\n\nIf you have read Orwell's novel \"1984\" or watched the same film, you know, all this is happening in my country.\nPeople poisoned by propaganda, people are trying to survive, they are afraid of the authorities and freedom.\nAll this is laid bare and exacerbated in human animal instincts. The principle of flocks. Not like us - the enemy is dangerous, you need to avoid, or to die.\n\nThe population cannot tolerate dissent, any manifestation of freedom, something different from their lifestyle and worldview. In connection with this, people with a different lifestyle, look, worldview and way, becomes an object of ridicule, an outcast, a threat, an enemy.\n\nIt's not comfortable for me to live here. But leave (until the border has not yet closed) there is no possibility. It is very expensive, and I make incredibly low wages, and wages continue to fall, while food and services continue to rise in price.\n\nHow I would like live in a free country! Be yourself, do not hide anything, not trying to make excuses for my views and lifestyles.\n\nMaybe relocation to another country could change something in me, but I notice, positive emotions in me less and less and I feel less joy and desire to live.\n\nhttp://i.giphy.com/eR2OWX51qesIo.gif\n\n-Secret Writer\n\nImages and gifs: All images are by Stellabelle, all gifs are from giphy.com.", + "cashout_time": "2016-09-15T19:48:36", + "category": "secret-writer", + "children": 43, + "children_abs_rshares": "18007718646255", + "created": "2016-08-15T16:44:42", + "curator_payout_value": { + "amount": "31898", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 615287, + "json_metadata": "{\"tags\":[\"secret-writer\",\"isolation\",\"self-development\",\"life\"],\"image\":[\"http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\"]}", + "last_payout": "2016-08-16T19:48:36", + "last_update": "2016-08-15T17:39:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-08-30T21:38:48", + "net_rshares": "981828724825", + "net_votes": 293, + "parent_author": "", + "parent_permlink": "secret-writer", + "percent_hbd": 10000, + "permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "reward_weight": 10000, + "root_author": "stellabelle", + "root_permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "title": "SECRET WRITER: I Feel Like An Alien Among People In My Country", + "total_payout_value": { + "amount": "356586", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "981882842624" + }, + { + "abs_rshares": 0, + "active": "2016-08-15T20:10:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "teutonic", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://www.mindmotivations.com/images/optical-illusion1.jpg \nIs the ladder going up or down?\nhttp://www.mindmotivations.com/images/optical-illusion2.jpg\nAre the dots in between the squares white, black or grey?\nhttp://www.mindmotivations.com/images/optical-illusion3.jpg \nparallel or crooked?\nhttp://www.mindmotivations.com/images/optical-illusion4.jpg\nHow many legs?\nhttp://www.mindmotivations.com/images/optical-illusion5.jpg\nFocus on the dot in the middle and then move your head backwards and forwards.\nhttp://www.mindmotivations.com/images/optical-illusion7.jpg\nIs the picture moving?\nhttp://www.mindmotivations.com/images/optical-illusion8.jpg\nIs there anything in between the different squares?\nhttp://www.mindmotivations.com/images/optical-illusion9.jpg\nface of a lady or a word?\nhttp://www.mindmotivations.com/images/optical-illusion6.jpg \nFocus on the 4 dots in the middle of the picture for 30 seconds. \nhttp://www.mindmotivations.com/images/optical-illusion10.jpg \neven possible?", + "cashout_time": "2016-09-15T19:48:45", + "category": "awesome", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-15T19:35:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617429, + "json_metadata": "{\"tags\":[\"awesome\",\"\"],\"image\":[\"http://www.mindmotivations.com/images/optical-illusion1.jpg\"]}", + "last_payout": "2016-08-16T19:48:45", + "last_update": "2016-08-15T19:35:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "awesome", + "percent_hbd": 10000, + "permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "reward_weight": 10000, + "root_author": "teutonic", + "root_permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "title": "10 Amazing Optical Illusion Pictures To Mess With Your Brain", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 158773924, + "active": "2016-09-14T20:20:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "safar01", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

show in the pictures are not real, but I edit them using Photoshop just

\n

 to train the imagination only.

\n

I made this picture just to entertain readers of all, 

\n

please advise the reader all my abilities to process images

\n", + "cashout_time": "2016-09-15T19:48:57", + "category": "editing", + "children": 0, + "children_abs_rshares": 158773924, + "created": "2016-09-14T19:48:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 952070, + "json_metadata": "{\"tags\":[\"editing\",\"with\",\"photoshop\",\"imagination\",\"steemitphotochallenge\"],\"image\":[\"https://scontent.fcgk1-1.fna.fbcdn.net/v/t1.0-9/44685_544257398931890_1432197168_n.jpg?oh=737dff7bef73ecfcaff983c130b55ee1&oe=587FF678\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T20:20:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-28T19:48:57", + "net_rshares": 158773924, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "editing", + "percent_hbd": 10000, + "permlink": "lol-robot-tranformers-against-fishermen", + "reward_weight": 10000, + "root_author": "safar01", + "root_permlink": "lol-robot-tranformers-against-fishermen", + "title": "LOL ... Robot Tranformers against fishermen (steemitphotochallenge)", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "732186422373807", + "vote_rshares": 158773924 + }, + { + "abs_rshares": 53638386, + "active": "2016-08-15T19:15:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "pipertomcat", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg \nhttps://s19.postimg.org/jiv4eri0j/Blockchain_technology1.png\nWhy not Steem Dollars then? I think ultimately Western Union and the like may actually choose or adopt a name that includes something like \"Dollar\". Lol\nhttps://s19.postimg.org/4y9g66xo3/Bitcoinripplebanner1.png\n\nI have said to different friends over the last year or so on occasion, that I fear Western Union is about to die by Bitcoin's hand. I compare Netflix, Youtube, Google Play, Itunes,and so forth killing retail establishments like Blockbuster video. Technology and the convenience it brings, easily dominates any industry, ask Kodak. \n\n I have friends who still have to purchase money orders to pay their rent. The Apartment complex refuses personal checks and apparently doesn't want employee's accepting cash. You can join their site online for a $50 per month fee and connect your checking account. What a ripoff! \nWow if they only knew of bitcoin and the coming technology.\nhttps://s19.postimg.org/743r0p14j/725_Ly9jb2lud_GVs_ZWdy_YXBo_Lm_Nvb_S9zd_G9y_YWdl_L3_Vwb_G9h.jpg\n\n\nhttps://s19.postimg.org/fc5olot0z/e873eec95dbe6437e8b73f6dc4b474e6.jpg\nhttps://s19.postimg.org/d2hkaxk37/a9ee5c9045261e324670df9b5e3fbf0c.png\n Western Union was in discussions with Ripple Labs early last year, regarding a blockchain pilot project. By using a cheap payment network, proponents claim that companies will be able to cut down the cost of remittances.\n The following quote from Barry Gilbert , the Digital Currency Insights Founder and CEO says it best:\n\u201cIf you look at Western Union and Moneygram, they have a fantastic opportunity to take advantage of bitcoin as a financial rail and incorporate it into their business.\u201d\n\nAfter reading the following article just now, I will have to say that I think someone like Western Union may be the key player in bringing Bitcoin to the masses! The following is an article from Bravenewcoin-http://bravenewcoin.com/news/western-union-wont-make-the-same-mistake-with-blockchain/\n\n#steemdollar\n#steem\n#westernunion\n#ripple", + "cashout_time": "2016-09-15T19:49:42", + "category": "bitcoin", + "children": 1, + "children_abs_rshares": "45063474229", + "created": "2016-08-15T19:14:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617119, + "json_metadata": "{\"tags\":[\"bitcoin\",\"steemdollar\",\"steem\",\"westernunion\",\"ripple\"],\"image\":[\"https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg\"]}", + "last_payout": "2016-08-16T19:49:42", + "last_update": "2016-08-15T19:14:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-04T21:13:12", + "net_rshares": 53638386, + "net_votes": 9, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_hbd": 10000, + "permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "reward_weight": 10000, + "root_author": "pipertomcat", + "root_permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "title": "Western Union investing in Blockchain technology...will it be Bitcoin ? or Ripple!?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 53638386 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json index d5ee9980..71f72b2b 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 786710, - "author": "etcmike", - "permlink": "re-bullionstackers-screen-it-tab-it-what-are-they-20160829t061254603z", - "category": "steem", - "parent_author": "bullionstackers", - "parent_permlink": "screen-it-tab-it-what-are-they", - "title": "", - "body": "An excellent method of describing what each function is for. \n\nSteem on,\nMike", - "json_metadata": "{\"tags\":[\"steem\"]}", - "last_update": "2016-08-29T06:12:51", - "created": "2016-08-29T06:12:51", - "active": "2016-08-29T09:35:12", - "last_payout": "2016-08-30T14:39:00", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "bullionstackers", - "root_permlink": "screen-it-tab-it-what-are-they", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786711, - "author": "ekitcho", - "permlink": "re-laonie-how-to-set-up-your-own-voting-bot-for-robinhoodwhale-20160829t061342501z", - "category": "robinhoodwhale", - "parent_author": "laonie", - "parent_permlink": "how-to-set-up-your-own-voting-bot-for-robinhoodwhale", - "title": "", - "body": "good initiative mate !", - "json_metadata": "{\"tags\":[\"robinhoodwhale\"]}", - "last_update": "2016-08-29T06:13:39", - "created": "2016-08-29T06:13:39", - "active": "2016-08-29T06:13:39", - "last_payout": "2016-08-30T11:01:12", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "laonie", - "root_permlink": "how-to-set-up-your-own-voting-bot-for-robinhoodwhale", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786712, - "author": "itay", - "permlink": "re-post-and-post-craigrant-introduceyourself", - "category": "post", - "parent_author": "bitmaxt", - "parent_permlink": "post-and-post-craigrant-introduceyourself", - "title": "", - "body": "I upvoted You", - "json_metadata": "{}", - "last_update": "2016-08-29T06:13:57", - "created": "2016-08-29T06:13:57", - "active": "2016-08-29T06:13:57", - "last_payout": "2016-09-03T05:42:51", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "bitmaxt", - "root_permlink": "post-and-post-craigrant-introduceyourself", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786713, - "author": "anns", - "permlink": "re-whitezombie-steemit-s-not-dead-20160829t061410014z", - "category": "meme", - "parent_author": "whitezombie", - "parent_permlink": "steemit-s-not-dead", - "title": "", - "body": "Steem On", - "json_metadata": "{\"tags\":[\"meme\"]}", - "last_update": "2016-08-29T06:14:09", - "created": "2016-08-29T06:14:09", - "active": "2016-08-29T06:14:09", - "last_payout": "2016-08-30T07:31:42", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "whitezombie", - "root_permlink": "steemit-s-not-dead", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786714, - "author": "jeza", - "permlink": "re-darkstarartphoto-throw-out-the-baby-20160829t061417629z", - "category": "anarchism", - "parent_author": "darkstarartphoto", - "parent_permlink": "throw-out-the-baby", - "title": "", - "body": "It's a good point, and I'll remember this post next time someone comes up me with this time honored argument.\n\nWhen people say this they are claiming that the good things can be kept separate from the stolen loot. \n\nYou can't throw separate the flour from the yeast after you've baked the bread", - "json_metadata": "{\"tags\":[\"anarchism\"]}", - "last_update": "2016-08-29T06:14:21", - "created": "2016-08-29T06:14:21", - "active": "2016-08-29T06:14:21", - "last_payout": "2016-08-29T20:12:12", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "darkstarartphoto", - "root_permlink": "throw-out-the-baby", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786715, - "author": "pseudopoise", - "permlink": "re-eveningstar92-through-the-looking-glass-20160829t061452063z", - "category": "photography", - "parent_author": "eveningstar92", - "parent_permlink": "through-the-looking-glass", - "title": "", - "body": "This is so cute! Alice is one of my favorite stories. :)", - "json_metadata": "{\"tags\":[\"photography\"]}", - "last_update": "2016-08-29T06:14:51", - "created": "2016-08-29T06:14:51", - "active": "2016-08-29T16:46:12", - "last_payout": "2016-08-30T12:06:18", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "eveningstar92", - "root_permlink": "through-the-looking-glass", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786716, - "author": "futurefood", - "permlink": "re-smartbean-re-futurefood-future-food-the-underrated-benefit-of-green-tea-20160829t061451602z", - "category": "health", - "parent_author": "smartbean", - "parent_permlink": "re-futurefood-future-food-the-underrated-benefit-of-green-tea-20160828t160415020z", - "title": "", - "body": "Yes that would be possible, although I'm far less knowledgeable on coffee :)", - "json_metadata": "{\"tags\":[\"health\"]}", - "last_update": "2016-08-29T06:15:00", - "created": "2016-08-29T06:15:00", - "active": "2016-08-29T06:15:00", - "last_payout": "1970-01-01T00:00:00", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "futurefood", - "root_permlink": "future-food-the-underrated-benefit-of-green-tea", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786717, - "author": "lukeism", - "permlink": "re-churdtzu-nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america-20160829t061507948z", - "category": "comedy", - "parent_author": "churdtzu", - "parent_permlink": "nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america", - "title": "", - "body": "Fucking hilarious", - "json_metadata": "{\"tags\":[\"comedy\"]}", - "last_update": "2016-08-29T06:15:09", - "created": "2016-08-29T06:15:09", - "active": "2016-08-29T14:08:51", - "last_payout": "1970-01-01T00:00:00", - "depth": 1, - "children": 1, - "net_rshares": "251770688898", - "abs_rshares": "251770688898", - "vote_rshares": "251770688898", - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": "1092333007396197012", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "churdtzu", - "root_permlink": "nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786718, - "author": "christoryan", - "permlink": "re-djm34-re-sascha-our-life-on-planet-earth-part-3-what-happens-after-death-20160829t061600956z", - "category": "life", - "parent_author": "djm34", - "parent_permlink": "re-sascha-our-life-on-planet-earth-part-3-what-happens-after-death-20160828t191908229z", - "title": "", - "body": "You're exactly right! The oldest trick in the book was played by the devil ( a sneaky serpent that has a venomous bite ). Jesus did not come to set up churches but to set up \"the church\" of one truth. Religion is hocus pocus and there is only one God , he is all of our God. :D", - "json_metadata": "{\"tags\":[\"life\"]}", - "last_update": "2016-08-29T06:16:03", - "created": "2016-08-29T06:16:03", - "active": "2016-08-29T06:16:03", - "last_payout": "2016-08-29T20:55:27", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "sascha", - "root_permlink": "our-life-on-planet-earth-part-3-what-happens-after-death", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 786719, - "author": "thebear", - "permlink": "re-dexter-k-re-thebear-steemitphotochallenge-entry-20160829t061609423z", - "category": "steemitphotochallenge", - "parent_author": "dexter-k", - "parent_permlink": "re-thebear-steemitphotochallenge-entry-20160829t054349693z", - "title": "", - "body": "Thank you! Yes I would love that! You have to check out my other articles on Death Valley and Great Sand Dunes National Park. Especially if you love sand dunes! These are must go places! I would love it if you featured my photo and please check out the many more here, https://steemit.com/journey/@thebear/racetrack-playa-where-rocks-slide-across-the-earth-and-death-valley-national-park and https://steemit.com/journey/@thebear/sandboarding-in-great-sand-dunes-national-park-san-luis-valley-co I also have some more pretty cool Death Valley shots I have not posted if you're interested.", - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"],\"links\":[\"https://steemit.com/journey/@thebear/racetrack-playa-where-rocks-slide-across-the-earth-and-death-valley-national-park\"]}", - "last_update": "2016-08-29T06:16:09", - "created": "2016-08-29T06:16:09", - "active": "2016-08-29T08:11:39", - "last_payout": "2016-08-30T04:42:03", - "depth": 2, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "thebear", - "root_permlink": "steemitphotochallenge-entry", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T09:35:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "etcmike", + "author_rewards": 0, + "beneficiaries": [], + "body": "An excellent method of describing what each function is for. \n\nSteem on,\nMike", + "cashout_time": "1969-12-31T23:59:59", + "category": "steem", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-29T06:12:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 786710, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "2016-08-30T14:39:00", + "last_update": "2016-08-29T06:12:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "bullionstackers", + "parent_permlink": "screen-it-tab-it-what-are-they", + "percent_hbd": 10000, + "permlink": "re-bullionstackers-screen-it-tab-it-what-are-they-20160829t061254603z", + "reward_weight": 10000, + "root_author": "bullionstackers", + "root_permlink": "screen-it-tab-it-what-are-they", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T06:13:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ekitcho", + "author_rewards": 0, + "beneficiaries": [], + "body": "good initiative mate !", + "cashout_time": "1969-12-31T23:59:59", + "category": "robinhoodwhale", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T06:13:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 786711, + "json_metadata": "{\"tags\":[\"robinhoodwhale\"]}", + "last_payout": "2016-08-30T11:01:12", + "last_update": "2016-08-29T06:13:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "laonie", + "parent_permlink": "how-to-set-up-your-own-voting-bot-for-robinhoodwhale", + "percent_hbd": 10000, + "permlink": "re-laonie-how-to-set-up-your-own-voting-bot-for-robinhoodwhale-20160829t061342501z", + "reward_weight": 10000, + "root_author": "laonie", + "root_permlink": "how-to-set-up-your-own-voting-bot-for-robinhoodwhale", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T06:13:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "itay", + "author_rewards": 0, + "beneficiaries": [], + "body": "I upvoted You", + "cashout_time": "1969-12-31T23:59:59", + "category": "post", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T06:13:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 786712, + "json_metadata": "{}", + "last_payout": "2016-09-03T05:42:51", + "last_update": "2016-08-29T06:13:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "bitmaxt", + "parent_permlink": "post-and-post-craigrant-introduceyourself", + "percent_hbd": 10000, + "permlink": "re-post-and-post-craigrant-introduceyourself", + "reward_weight": 10000, + "root_author": "bitmaxt", + "root_permlink": "post-and-post-craigrant-introduceyourself", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T06:14:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anns", + "author_rewards": 0, + "beneficiaries": [], + "body": "Steem On", + "cashout_time": "1969-12-31T23:59:59", + "category": "meme", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T06:14:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 786713, + "json_metadata": "{\"tags\":[\"meme\"]}", + "last_payout": "2016-08-30T07:31:42", + "last_update": "2016-08-29T06:14:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "whitezombie", + "parent_permlink": "steemit-s-not-dead", + "percent_hbd": 10000, + "permlink": "re-whitezombie-steemit-s-not-dead-20160829t061410014z", + "reward_weight": 10000, + "root_author": "whitezombie", + "root_permlink": "steemit-s-not-dead", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T06:14:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "jeza", + "author_rewards": 0, + "beneficiaries": [], + "body": "It's a good point, and I'll remember this post next time someone comes up me with this time honored argument.\n\nWhen people say this they are claiming that the good things can be kept separate from the stolen loot. \n\nYou can't throw separate the flour from the yeast after you've baked the bread", + "cashout_time": "1969-12-31T23:59:59", + "category": "anarchism", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T06:14:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 786714, + "json_metadata": "{\"tags\":[\"anarchism\"]}", + "last_payout": "2016-08-29T20:12:12", + "last_update": "2016-08-29T06:14:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "darkstarartphoto", + "parent_permlink": "throw-out-the-baby", + "percent_hbd": 10000, + "permlink": "re-darkstarartphoto-throw-out-the-baby-20160829t061417629z", + "reward_weight": 10000, + "root_author": "darkstarartphoto", + "root_permlink": "throw-out-the-baby", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T16:46:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "pseudopoise", + "author_rewards": 0, + "beneficiaries": [], + "body": "This is so cute! Alice is one of my favorite stories. :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-29T06:14:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 786715, + "json_metadata": "{\"tags\":[\"photography\"]}", + "last_payout": "2016-08-30T12:06:18", + "last_update": "2016-08-29T06:14:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "eveningstar92", + "parent_permlink": "through-the-looking-glass", + "percent_hbd": 10000, + "permlink": "re-eveningstar92-through-the-looking-glass-20160829t061452063z", + "reward_weight": 10000, + "root_author": "eveningstar92", + "root_permlink": "through-the-looking-glass", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T06:15:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "futurefood", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yes that would be possible, although I'm far less knowledgeable on coffee :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "health", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T06:15:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 786716, + "json_metadata": "{\"tags\":[\"health\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-29T06:15:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "smartbean", + "parent_permlink": "re-futurefood-future-food-the-underrated-benefit-of-green-tea-20160828t160415020z", + "percent_hbd": 10000, + "permlink": "re-smartbean-re-futurefood-future-food-the-underrated-benefit-of-green-tea-20160829t061451602z", + "reward_weight": 10000, + "root_author": "futurefood", + "root_permlink": "future-food-the-underrated-benefit-of-green-tea", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "251770688898", + "active": "2016-08-29T14:08:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "lukeism", + "author_rewards": 0, + "beneficiaries": [], + "body": "Fucking hilarious", + "cashout_time": "1969-12-31T23:59:59", + "category": "comedy", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-29T06:15:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 786717, + "json_metadata": "{\"tags\":[\"comedy\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-29T06:15:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": "251770688898", + "net_votes": 1, + "parent_author": "churdtzu", + "parent_permlink": "nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america", + "percent_hbd": 10000, + "permlink": "re-churdtzu-nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america-20160829t061507948z", + "reward_weight": 10000, + "root_author": "churdtzu", + "root_permlink": "nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "1092333007396197012", + "vote_rshares": "251770688898" + }, + { + "abs_rshares": 0, + "active": "2016-08-29T06:16:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "christoryan", + "author_rewards": 0, + "beneficiaries": [], + "body": "You're exactly right! The oldest trick in the book was played by the devil ( a sneaky serpent that has a venomous bite ). Jesus did not come to set up churches but to set up \"the church\" of one truth. Religion is hocus pocus and there is only one God , he is all of our God. :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "life", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T06:16:03", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 786718, + "json_metadata": "{\"tags\":[\"life\"]}", + "last_payout": "2016-08-29T20:55:27", + "last_update": "2016-08-29T06:16:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "djm34", + "parent_permlink": "re-sascha-our-life-on-planet-earth-part-3-what-happens-after-death-20160828t191908229z", + "percent_hbd": 10000, + "permlink": "re-djm34-re-sascha-our-life-on-planet-earth-part-3-what-happens-after-death-20160829t061600956z", + "reward_weight": 10000, + "root_author": "sascha", + "root_permlink": "our-life-on-planet-earth-part-3-what-happens-after-death", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T08:11:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "thebear", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you! Yes I would love that! You have to check out my other articles on Death Valley and Great Sand Dunes National Park. Especially if you love sand dunes! These are must go places! I would love it if you featured my photo and please check out the many more here, https://steemit.com/journey/@thebear/racetrack-playa-where-rocks-slide-across-the-earth-and-death-valley-national-park and https://steemit.com/journey/@thebear/sandboarding-in-great-sand-dunes-national-park-san-luis-valley-co I also have some more pretty cool Death Valley shots I have not posted if you're interested.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-29T06:16:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 786719, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"],\"links\":[\"https://steemit.com/journey/@thebear/racetrack-playa-where-rocks-slide-across-the-earth-and-death-valley-national-park\"]}", + "last_payout": "2016-08-30T04:42:03", + "last_update": "2016-08-29T06:16:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "dexter-k", + "parent_permlink": "re-thebear-steemitphotochallenge-entry-20160829t054349693z", + "percent_hbd": 10000, + "permlink": "re-dexter-k-re-thebear-steemitphotochallenge-entry-20160829t061609423z", + "reward_weight": 10000, + "root_author": "thebear", + "root_permlink": "steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json index 5fdc1016..efd42a28 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 0, - "author": "steemit", - "permlink": "firstpost", - "category": "meta", - "parent_author": "", - "parent_permlink": "meta", - "title": "Welcome to Steem!", - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "json_metadata": "", - "last_update": "2016-03-30T18:30:18", - "created": "2016-03-30T18:30:18", - "active": "2016-08-24T09:30:03", - "last_payout": "2016-08-24T19:59:42", - "depth": 0, - "children": 36, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "942", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "756", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 3548, - "net_votes": 90, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 1, - "author": "admin", - "permlink": "firstpost", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "", - "body": "First Reply! Let's get this **party** started", - "json_metadata": "", - "last_update": "2016-03-30T19:52:30", - "created": "2016-03-30T19:52:30", - "active": "2016-07-18T19:53:12", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 2, - "net_rshares": -226592300084, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 8, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 2, - "author": "proskynneo", - "permlink": "steemit-firstpost-1", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "Excited!", - "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", - "json_metadata": "", - "last_update": "2016-03-31T13:54:33", - "created": "2016-03-31T13:54:33", - "active": "2016-03-31T13:54:33", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "1058", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "1059", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 4817, - "net_votes": 7, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 3, - "author": "red", - "permlink": "steemit-firstpost-2", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "Did you Know?", - "body": "Did you know you can earn STEEM by commenting on posts?", - "json_metadata": "{}", - "last_update": "2016-04-06T19:22:42", - "created": "2016-04-06T19:22:42", - "active": "2016-07-13T08:38:48", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "100", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "100", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 457, - "net_votes": 7, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 4, - "author": "red", - "permlink": "red-dailydecrypt-1", - "category": "daily-decrypt", - "parent_author": "", - "parent_permlink": "daily-decrypt", - "title": "What You Should Know About the Coming Bitcoin Halving", - "body": "Bitcoin's protocol schedules a block reward 'halving' roughly every four years, as designed by Satoshi Nakamoto. But the artificial block size cap currently sanctioned by Core developers and a majority of miners alike may actually cause a catastrophic result come July 2016. Here's how. https://youtu.be/_NgFIj9dBkQ", - "json_metadata": "{}", - "last_update": "2016-04-06T19:54:12", - "created": "2016-04-06T19:54:12", - "active": "2016-04-11T21:41:45", - "last_payout": "2016-08-03T00:00:06", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "1024", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "1024", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 4661, - "net_votes": 6, - "root_author": "red", - "root_permlink": "red-dailydecrypt-1", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 5, - "author": "abit", - "permlink": "abit-first-post", - "category": "firstpost", - "parent_author": "", - "parent_permlink": "firstpost", - "title": "Trying", - "body": "Trying to post my first post..", - "json_metadata": "{}", - "last_update": "2016-04-08T07:33:42", - "created": "2016-04-08T07:33:42", - "active": "2016-08-10T09:18:09", - "last_payout": "2016-08-12T10:16:36", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "294", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "294", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1339, - "net_votes": 4, - "root_author": "abit", - "root_permlink": "abit-first-post", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 6, - "author": "abit", - "permlink": "witness-category", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Witnesses", - "body": "This is the witnesses category", - "json_metadata": "{}", - "last_update": "2016-04-08T07:36:18", - "created": "2016-04-08T07:36:18", - "active": "2016-04-08T08:58:24", - "last_payout": "2016-08-12T10:16:39", - "depth": 0, - "children": 2, - "net_rshares": -491818553, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "160", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "160", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 729, - "net_votes": -2, - "root_author": "abit", - "root_permlink": "witness-category", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 7, - "author": "abit", - "permlink": "miner-category", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Miners", - "body": "This is the miners category", - "json_metadata": "{}", - "last_update": "2016-04-08T07:55:15", - "created": "2016-04-08T07:55:15", - "active": "2016-04-08T07:55:15", - "last_payout": "2016-08-12T10:16:42", - "depth": 0, - "children": 0, - "net_rshares": -481781440, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "138", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "139", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 632, - "net_votes": -3, - "root_author": "abit", - "root_permlink": "miner-category", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 8, - "author": "abit", - "permlink": "abit-witness-post", - "category": "witness-category", - "parent_author": "", - "parent_permlink": "witness-category", - "title": "Abit Witness Thread", - "body": "This is abit, an experienced witness. Will you vote for me?", - "json_metadata": "{}", - "last_update": "2016-04-08T07:58:51", - "created": "2016-04-08T07:58:51", - "active": "2016-04-19T12:08:57", - "last_payout": "2016-08-22T12:36:54", - "depth": 0, - "children": 5, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "110730", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "110702", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 503226, - "net_votes": 23, - "root_author": "abit", - "root_permlink": "abit-witness-post", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 9, - "author": "abit", - "permlink": "spam", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Spams", - "body": "Spams come here", - "json_metadata": "{}", - "last_update": "2016-04-08T08:49:15", - "created": "2016-04-08T08:49:15", - "active": "2016-04-08T08:49:15", - "last_payout": "2016-08-13T18:32:54", - "depth": 0, - "children": 0, - "net_rshares": -477016308, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "165", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "166", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 755, - "net_votes": -2, - "root_author": "abit", - "root_permlink": "spam", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-24T09:30:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit", + "author_rewards": 3548, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "children_abs_rshares": 0, + "created": "2016-03-30T18:30:18", + "curator_payout_value": { + "amount": "756", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 0, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 90, + "parent_author": "", + "parent_permlink": "meta", + "percent_hbd": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Welcome to Steem!", + "total_payout_value": { + "amount": "942", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-18T19:53:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "admin", + "author_rewards": 0, + "beneficiaries": [], + "body": "First Reply! Let's get this **party** started", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-03-30T19:52:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T19:52:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -226592300084, + "net_votes": 8, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-03-31T13:54:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "proskynneo", + "author_rewards": 4817, + "beneficiaries": [], + "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-03-31T13:54:33", + "curator_payout_value": { + "amount": "1059", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 2, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-31T13:54:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-1", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Excited!", + "total_payout_value": { + "amount": "1058", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T08:38:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 457, + "beneficiaries": [], + "body": "Did you know you can earn STEEM by commenting on posts?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-06T19:22:42", + "curator_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 3, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-04-06T19:22:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-2", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Did you Know?", + "total_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-11T21:41:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 4661, + "beneficiaries": [], + "body": "Bitcoin's protocol schedules a block reward 'halving' roughly every four years, as designed by Satoshi Nakamoto. But the artificial block size cap currently sanctioned by Core developers and a majority of miners alike may actually cause a catastrophic result come July 2016. Here's how. https://youtu.be/_NgFIj9dBkQ", + "cashout_time": "1969-12-31T23:59:59", + "category": "daily-decrypt", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-04-06T19:54:12", + "curator_payout_value": { + "amount": "1024", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 4, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-04-06T19:54:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "daily-decrypt", + "percent_hbd": 10000, + "permlink": "red-dailydecrypt-1", + "reward_weight": 10000, + "root_author": "red", + "root_permlink": "red-dailydecrypt-1", + "title": "What You Should Know About the Coming Bitcoin Halving", + "total_payout_value": { + "amount": "1024", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-10T09:18:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 1339, + "beneficiaries": [], + "body": "Trying to post my first post..", + "cashout_time": "1969-12-31T23:59:59", + "category": "firstpost", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-04-08T07:33:42", + "curator_payout_value": { + "amount": "294", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 5, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:36", + "last_update": "2016-04-08T07:33:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "abit-first-post", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "abit-first-post", + "title": "Trying", + "total_payout_value": { + "amount": "294", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T08:58:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 729, + "beneficiaries": [], + "body": "This is the witnesses category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-08T07:36:18", + "curator_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 6, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:39", + "last_update": "2016-04-08T07:36:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -491818553, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "witness-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "witness-category", + "title": "Witnesses", + "total_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T07:55:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 632, + "beneficiaries": [], + "body": "This is the miners category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T07:55:15", + "curator_payout_value": { + "amount": "139", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 7, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:42", + "last_update": "2016-04-08T07:55:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -481781440, + "net_votes": -3, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "miner-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "miner-category", + "title": "Miners", + "total_payout_value": { + "amount": "138", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-19T12:08:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 503226, + "beneficiaries": [], + "body": "This is abit, an experienced witness. Will you vote for me?", + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-04-08T07:58:51", + "curator_payout_value": { + "amount": "110702", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 8, + "json_metadata": "{}", + "last_payout": "2016-08-22T12:36:54", + "last_update": "2016-04-08T07:58:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 23, + "parent_author": "", + "parent_permlink": "witness-category", + "percent_hbd": 10000, + "permlink": "abit-witness-post", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "abit-witness-post", + "title": "Abit Witness Thread", + "total_payout_value": { + "amount": "110730", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T08:49:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 755, + "beneficiaries": [], + "body": "Spams come here", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T08:49:15", + "curator_payout_value": { + "amount": "166", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 9, + "json_metadata": "{}", + "last_payout": "2016-08-13T18:32:54", + "last_update": "2016-04-08T08:49:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -477016308, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "spam", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "spam", + "title": "Spams", + "total_payout_value": { + "amount": "165", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json index d7a8022f..ab747b19 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 617094, - "author": "crowe", - "permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", - "category": "israel", - "parent_author": "", - "parent_permlink": "israel", - "title": "Israeli Bomb Siren goes off in my City. I filmed this from my deck.", - "body": "I thought my viewers would be interested in the place I actually live in. I live in a City called Ashkelon. Its about 7 miles North of Gaza. Last year in June when some missiles were being shot toward Israel the Sirens in Ashkelon went off. I filmed this video from my deck. The video is what we hear when this happens. \n\nhttps://www.youtube.com/watch?v=Ky23yJaNDfo", - "json_metadata": "{\"tags\":[\"israel\",\"siren\",\"gaza\",\"politics\",\"steemit\"],\"links\":[\"https://www.youtube.com/watch?v=Ky23yJaNDfo\"]}", - "last_update": "2016-08-15T19:12:42", - "created": "2016-08-15T19:12:42", - "active": "2016-08-15T19:12:42", - "last_payout": "2016-08-16T19:47:27", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-15T19:47:27", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "crowe", - "root_permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617542, - "author": "luminarycrush", - "permlink": "cactus-in-the-clouds-catalina-island", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Cactus in the Clouds - Catalina Island", - "body": "\n

I came across a lone blooming cactus during a hike this weekend.  Photos taken at 946' ASL above Two Harbors, Catalina Island.

\n

\n


\n

\n


\n

\n", - "json_metadata": "{\"tags\":[\"photography\",\"cactus\",\"catalinaisland\",\"california\",\"twoharbors\"],\"image\":[\"https://scontent.xx.fbcdn.net/t31.0-8/13988224_10154518762224175_252304266230235242_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13923665_10154518762269175_2030254348907005554_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13988240_10154518762254175_9097905240858144855_o.jpg\"]}", - "last_update": "2016-08-15T19:44:48", - "created": "2016-08-15T19:44:48", - "active": "2016-08-15T19:44:48", - "last_payout": "2016-08-16T19:47:27", - "depth": 0, - "children": 0, - "net_rshares": "1339555910464", - "abs_rshares": "1339555910464", - "vote_rshares": "1339555910464", - "children_abs_rshares": "1339555910464", - "cashout_time": "2016-09-15T19:47:27", - "max_cashout_time": "2016-09-01T02:13:51", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 14, - "root_author": "luminarycrush", - "root_permlink": "cactus-in-the-clouds-catalina-island", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 616664, - "author": "brunopro", - "permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", - "category": "steemit", - "parent_author": "", - "parent_permlink": "steemit", - "title": "LATEST NEWS: Payouts are back to 24H - What do you think about it? [ Quick read / Opinion Article ]", - "body": "http://imgur.com/HrpWWaK.png\n\n## And there are changes again regarding the duration until the payout occurs, now your post will have a minimum 24 hours duration until the first payout. \n\nPersonally I think that they should never have changed it to 12 hours. I didn't understand the logic behind it at the time and I still don't. This 24h period it's ideal because this way the post has better chances of overcoming the first publish period and get more traction. It also enables of a higher possibility of being seen and upvoted by the users that on the 12h were sleeping or simply away.\n\n# And you? What do you think about this change?\n\n----\n\nEdit post-publish: I've notice that I can't upvote a post that has been up for a month. Is this new also? I thought a post would always be open for an upvote? Can anyone reply to this question? thanks!\n\n----\n\n###### Photo Credits: https://unsplash.com/@sonjalangford", - "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"opinion\",\"reward\"],\"image\":[\"http://imgur.com/HrpWWaK.png\"]}", - "last_update": "2016-08-15T18:51:42", - "created": "2016-08-15T18:36:36", - "active": "2016-08-17T15:39:57", - "last_payout": "2016-08-16T19:47:42", - "depth": 0, - "children": 22, - "net_rshares": "76217996022", - "abs_rshares": "76217996022", - "vote_rshares": "76217996022", - "children_abs_rshares": "78071773184", - "cashout_time": "2016-09-15T19:47:42", - "max_cashout_time": "2016-08-30T20:41:45", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "20200", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "3483", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 13512, - "net_votes": 82, - "root_author": "brunopro", - "root_permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617534, - "author": "yassinebentour", - "permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", - "category": "writing", - "parent_author": "", - "parent_permlink": "writing", - "title": "The purpose of property rights is to mitigate conflict over scarce, rivalrous resources", - "body": "\n

http://unitedcivilrights.org/images/fa-prprty.gif

\n

The purpose of property rights is to mitigate conflict over scarce, rivalrous resources. To have a property right over a scarce, rivalrous resource is to have the right to exclude others from using that resource in the attainment of some ends. For example, I have property rights over my body, which means I can exclude others from using my body for sexual pleasure or labor without my consent. If they do access my body in such a way without my consent, it's called rape or slavery, respectively. Likewise, I have property rights over the accumulated capital for which I consensually trade my time and labor, which means I have the right to exclude people from using my accumulated capital without my consent. When someone accesses my accumulated capital in such a way without my consent, it's called theft or trespass.
\nScale doesn't change this. If I transform my accumulated capital into a factory by hiring people who voluntarily exchange the product of their labor for some of my accumulated capital, this means that they value what they receive in exchange for working more than they value the direct product of their labor (the factory). Likewise, it means I value the factory more than the accumulated capital I gave up for it. This is a win-win situation, or a positive sum game. The workers I hired retain property rights over the capital they received as payment for their labor, which means they can exclude others from the use of their newly acquired accumulated capital, and I retain property rights over the factory, which means I can exclude others from the use of my factory.
\nDiscrepancies between marginal benefit don't change this either. A consensual exchange doesn't become theft just because one party benefits more from the exchange than another. If this wasn't the case, every single instance of buyer's remorse would be indicative of theft. If someone agrees to produce a walking stick in exchange for ten dollars and the purchaser of the walking stick then sells it to someone else for twenty dollars, how can it be claimed that the producer of the walking stick was a victim of theft if they haven't been deprived of the ten dollars for which they voluntarily exchanged the walking stick? Would it have been reasonable to expect that the first purchaser of the walking stick wouldn't have obtained more than ten dollars of value from it given that the exchange wouldn't have happened in the first place if they hadn't valued the walking stick more than they valued ten dollars?
\nOf course not. Anything that happens to the walking stick after the original exchange is no business of the producer of the walking stick because said producer already exchanged his property rights to the walking stick for property rights to a different form of accumulated capital (ten dollars).
\nLikewise, if I use more of my accumulated capital to hire workers to work in my factory, they will only accept my offer of employment if they value what I'm offering more than their own free time and more than whatever stake they may have otherwise had in the product they will be producing. In other words, if they accept employment, it will be with the understanding that they're giving up any stake in what they're producing in exchange for what I'm offering them. Maybe my factory assembles televisions. Maybe one worker can produce one television per hour. Would they be able to produce televisions this efficiently without my previous investment in production capital (which hasn't even been recouped and probably never will be completely given that maintenance, employment and higher order production good costs are a revolving door)? Would they be able to produce televisions AT ALL without this previous investment in production capital? Of course not, and they know this, which is why they're willing to give up both their leisure and whatever stake their labor may have otherwise entitled them to in the production of a television in exchange for a fixed amount of accumulated capital.
\nAs was the case with the walking stick, whatever happens to the television after this exchange occurs is no business of the worker. How could the future sale of the television constitute theft of the worker's accumulated capital if it can't be demonstrated that the worker was deprived of the accumulated capital that he voluntarily accepted as payment for the production of the television, especially given that the television was produced with other accumulated capital (plastic, circuits, labor saving devices, etc.) that the worker never even owned?
\nIt can't.
\nProperty ownership necessarily implies exclusivity, which means that \"private property\" is redundant, as is \"personal property\". The words \"private\" and \"personal\" denote exclusivity, which is already implied by the word \"property\". To differentiate between \"personal property\" and \"private property\" is therefore a distinction without a difference. This implication of exclusivity also means that \"public property\" is a contradiction in terms. If no one can be excluded from using the resource, it isn't property. Resources that aren't scarce or rivalrous likewise can not be considered property, which means that \"intellectual property\" is also a contradiction in terms.
\nThis means that seizing the means of production is a genuine form of theft and that \"pirating\" music, software, art and writing is not, which may seem counter-intuitive if you attended the indoctrination camps euphemistically known as \"public schools\" when you were growing up.

\n", - "json_metadata": "{\"tags\":[\"writing\",\"rights\"],\"image\":[\"http://unitedcivilrights.org/images/fa-prprty.gif\"]}", - "last_update": "2016-08-15T19:43:57", - "created": "2016-08-15T19:43:57", - "active": "2016-08-15T19:50:39", - "last_payout": "2016-08-16T19:47:48", - "depth": 0, - "children": 2, - "net_rshares": -104004690671, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": "25854883309", - "cashout_time": "2016-09-15T19:47:48", - "max_cashout_time": "2016-09-01T01:02:42", - "total_vote_weight": 0, - "reward_weight": 736, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "yassinebentour", - "root_permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617538, - "author": "libtrian.outlet", - "permlink": "obama-puts-congress-on-notice-tpp-is-coming", - "category": "politics", - "parent_author": "", - "parent_permlink": "politics", - "title": "Obama puts Congress on notice: TPP is coming", - "body": "http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\nFriday's move is the clearest indication yet that the White House is serious about getting Obama’s legacy trade deal.\n\nThe White House put Congress on notice Friday morning that it will be sending lawmakers a bill to implement President Barack Obama’s landmark Trans-Pacific Partnership agreement — a move intended to infuse new energy into efforts to ratify the flat-lining trade pact.\n\nThe move establishes a 30-day minimum before the administration can present the legislation, but the White House is unlikely to do so amid the heated rhetoric of a presidential campaign in which both major party nominees have depicted free trade deals as massive job killers.\n\nFriday's notification is the clearest signal yet that the White House is serious about getting Obama’s legacy trade deal — the biggest in U.S. history — passed by the end of the year, as he has vowed to do despite the misgivings of Republican leaders and the outright opposition of a majority of Democrats in Congress.\n\nStriking a defiant tone, Obama predicted at a press conference last week that the economic centerpiece of his strategic pivot to Asia would pass in the lame-duck session, saying he’d like to sit down with lawmakers after the election to discuss the \"actual facts\" behind the deal, rather than toss it around like a \"political football.\"\n\n\"We are part of a global economy. We're not reversing that,\" Obama said, describing the necessity of international supply chains and the importance of the export sector to U.S. jobs and the economy. \"The notion that we're going to pull that up root and branch is unrealistic.\"\n\nThe notification, a new requirement of the trade promotion authority legislation Congress passed last year to expedite passage of the Asia-Pacific pact, is “meant to ensure early consultations between the administration and Congress,” Matt McAlvanah, a spokesman for the Office of the U.S. Trade Representative, said in a statement. “As such, the draft SAA [Statement of Administrative Action] was sent today in order to continue to promote transparency and collaboration in the TPP process.”\n\nThe White House's draft document describes the major steps the administration will take to implement any changes to U.S. law required by the deal. Those actions range from the mundane — designating an administration point of contact for communications about the pact — to the complex — setting up procedures to stop harmful surges of agricultural or textile imports.\n\nBut the deal is going nowhere until the White House addresses a number of concerns lawmakers have raised about the trade agreement, which Canada, Mexico, Japan and eight other countries joined the United States in signing last February.\n\nFirst and foremost: satisfying the concerns of Senate Finance Committee Chairman Orrin Hatch (R-Utah) and other lawmakers about protections for a new class of drugs known as biologics. They say the pact provides too short a monopoly period for rights to research and development data. Other lawmakers have complained the deal would bar tobacco companies from seeking redress through investor-state dispute arbitrage for damages resulting from country regulations. Still others are seeking assurances that member countries will abide by their commitments to provide access for U.S. pork and dairy exports.\n\nUntil these issues are resolved, House Speaker Paul Ryan and Senate Majority Leader Mitch McConnell have made clear that the pact will not get the votes it needs to pass.\n\nRyan's spokeswoman, AshLee Strong, reiterated the point on Friday.\n\n“As Speaker Ryan has stated for months, there are problems that remain with the administration’s TPP deal, and there can be no movement before these concerns are addressed,\" she said.\n\nDemocrats, meanwhile, have largely called the deal a nonstarter over concerns about the enforceability of labor and environmental standards in countries like Vietnam and the lack of strong protections against currency manipulation.\n\nThe administration claims it is making progress on these issues and has resolved others, including banking industry concerns over the exclusion of financial data from rules prohibiting countries from requiring local storage.\n\nBut that doesn’t change the reality of the down-ballot drag that candidates are facing as they campaign back home in their districts. In a reversal from years past, many Republicans are on the defensive about their support for free trade because of Donald Trump’s daily tirades about what he characterizes as the serious economic damage wrought by trade agreements like the North American Free Trade Agreement and the TPP as well as his complaints that China is flouting international trade rules.\n\nThe Republican platform picked up on this theme, saying significant trade deals \"should not be rushed or undertaken in a Lame Duck Congress.\"\n\nThe small band of Democrats who the administration hopes will support the TPP are facing increased pressure within their own party to abandon the president on the agreement. Sens. Bernie Sanders’ and Elizabeth Warren’s strong condemnations of the trade deal have forced Hillary Clinton, who supported the TPP as Obama’s secretary of state, to reject the pact to appease the liberal wing.\n\n\"I will stop any trade deal that kills jobs or holds down wages, including the Trans-Pacific Partnership,\" Clinton said during an economic policy speech at an automotive manufacturing plant in Warren, Mich., on Thursday. \"I oppose it now, I'll oppose it after the election and I'll oppose it as president.\"\n\nClinton’s clear rejection of the trade deal has emboldened liberal groups like the Warren-aligned Progressive Change Campaign Committee to launch a campaign to press Democrats to publicly oppose a TPP vote in the lame duck.\n\nSanders also called on Democratic congressional leaders to go on record against the White House’s effort to get the deal done by the end of the year, saying the agreement is opposed by every trade union and the grassroots base of the Democratic Party.\n\n\"I am disappointed by the president's decision to continue pushing forward on the disastrous Trans-Pacific Partnership trade agreement that will cost American jobs, harm the environment, increase the cost of prescription drugs and threaten our ability to protect public health,” the Vermont senator said in a statement after learning of the White House's action on Friday.\n\nMeanwhile, the administration continues to press the deal in key congressional districts — especially those of Democrats who supported the trade promotion authority bill last year.\n\nInterior Secretary Sally Jewell returned to her hometown of Seattle last month to tout the TPP’s potential effects on the environment at a Washington Council on International Trade event with more than 150 business leaders.\n\nThen, last week, Commerce Secretary Penny Pritzker hit the San Diego and Boulder districts of Reps. Susan Davis and Jared Polis — two of the 28 House Democrats that voted for the bill — and visited a steel plant in Cleveland to promote the TPP. Treasury Secretary Jack Lew did the same when he met with local and state officials and Fortune 500 business executives in Minneapolis.\n\nOn Thursday, Undersecretary of Commerce for Oceans and Atmosphere Kathryn Sullivan spoke at a Seattle clean energy business roundtable focused on the TPP and the environment. And this Monday, Deputy U.S. Trade Representative Robert Holleyman will participate in a World Affairs Council of Atlanta discussion on the trade deal featuring former Republican Sen. Saxby Chambliss and UPS CEO David Abney.\n\nAs the political fight plays out, the nuts-and-bolts process of moving the deal forward will continue. Once Congress reviews the draft notification that the White House submitted on Friday, the administration can move forward with sending lawmakers a final statement and the draft of the implementing bill itself. The legislation will describe the actual changes to U.S. law to comply with the rules of the trade agreement.\n\nAfter that, the Senate Finance and House Ways and Means committees could hold “mock markups” of the bill (because under trade promotion authority, Congress is not actually allowed to tinker with the agreement or its implementing legislation itself, but it can ask the administration to do so).\n\nBut given the tenor of the elections, the entire process could be pushed into a crowded lame-duck legislation session, which would mean no time for the mock markups. Instead, there could be a lot of deal-making between the White House and congressional leadership to move the bill before Clinton or Trump takes over on Jan. 20.\n\nObama said last week that he’s ready to press his case. \"Right now, I'm president, and I'm for it. And I think I've got the better argument,\" he said.\n\nSource:\nwww.politico.com/story/2016/08/obama-congress-trade-warning-226952", - "json_metadata": "{\"tags\":[\"politics\",\"tpp\",\"conspiracy\",\"news\",\"freetrade\"],\"image\":[\"http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\"]}", - "last_update": "2016-08-15T19:44:39", - "created": "2016-08-15T19:44:39", - "active": "2016-08-15T19:45:42", - "last_payout": "2016-08-16T19:47:57", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": "11700424464", - "cashout_time": "2016-09-15T19:47:57", - "max_cashout_time": "2016-09-04T23:37:39", - "total_vote_weight": 0, - "reward_weight": 2046, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 3, - "root_author": "libtrian.outlet", - "root_permlink": "obama-puts-congress-on-notice-tpp-is-coming", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 951797, - "author": "profanarky", - "permlink": "the-dragon-s-blood-part-29", - "category": "story", - "parent_author": "", - "parent_permlink": "story", - "title": "The Dragon's Blood (Part 29)", - "body": "\n

\n

In which the folks in the subway find themselves some unwelcome visitors...

\n

29

\n

   “Do NOT panic! There is no reason to believe that this is anything more than just a power outage.”  

\n

   “But-- BUT-- how can it be the whole state?” One wide-eyed young woman, one of the aforementioned punk rockers actually raised her hand.  

\n

   “Yeah, it’s gotta be Al Qaeda, who the hell else could it be?!!” Another idiot bellowed.    

\n

   Others followed, there words quickly jumbling together into a tidal wave of paranoia. It only took one idiot to get the ball rolling.   

\n

   “It’s gotta be the terrorists, who the hell else could it be?”    

\n

   “Oh my god, I gotta get to my kids… My kids are still at the day care!!!”   

\n

   “Did an airplane hit a power plant??!! OH GOD!! DID AN AIRPLANE HIT ONE OF THE NUCLEAR PLANTS??!!”    

\n

   She heard it all and it was nothing more than a buzzing, though an irritating one nonetheless. Her instincts, those things cops called their gut instincts told her Mister Blue-eyes was the key, the only thing really important right now. Mister Blue-eyes and whatever the hell it was he was watching outside their little tin prison.  

\n

     “NOW LISTEN DAMMIT!!!” She hollered, trying to make herself louder than the loudest of them, a difficult task with New Yorkers. “I told you, there’s no goddamn reason to think it’s terrorism! This has happened before in our lifetimes and it’s gonna happen again. As far as I’m concerned it ain’t nothing more than a power outage. Going FUCKING crazy ain’t gonna help us any, dammit!!”  

\n

   They kept going, some of them, but most paid her mind and listened, their faces drawn and tired. They’d suffered enough the last few years, New Yorkers. There wasn’t a one of them, including herself, who hadn’t had their world turned literally upside down two years before. The terror they’d lived was fresh on their minds, fresh and ready to burst again and overwhelm them. It was a hard thing, it truly, truly was.     

\n

   “Now I just got off the phone with my partner and he says he’s gonna get people down here to get us out as soon as possible. There are trains stalled all over the city. Rescue workers are leading those people out from underground and up to their homes. He told me there would be a group of them here soon. He was gonna get them here.”    

\n

   “Is that them?” Came the deep voice of Jeffrey Thornton. He’d been quiet while the others yelled, silent and listening to what she had to say. The moment she’d spoken of rescue his eyes had gone outside the train and he saw what Mister Blue-eyes had apparently been watching.    

\n

   “Where?” She asked him, stumbling over and peering outside, right next to the stranger in the baseball cap.       

\n

   She saw nothing at first, her eyes trying to focus past the reflections in the glass and out into the pitch black.      

\n

   “Those--,” Mister Blue-eyes said, at last speaking, his voice accented in a manner she’d never heard before. Something about it was as wrong and as otherworldly as his eyes were. “---are not rescuers of any sort.”    

\n

   Out of the corner of her eye she saw him rise and back away from the window and once again her instincts spoke to her. They told her to back away as well, and to not stop there. They said to her, no, they screamed at her to run, to run as far from here as possible.      

\n

   But she didn’t, she had to see what they were, had to see for herself.    

\n

   When the figures finally did materialize from the darkness, they weren’t human at all.     

\n

End Part 29

\n

         If you find yourself interested in the whole damnedable thing and wanna throw me a few bucks, here's a link to it on Amazon.      

\n

  https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1   

\n


\n", - "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"creative\",\"writers\",\"writing\"],\"image\":[\"http://www.followingthenerd.com/site/wp-content/uploads/shadowpeople.jpg\"],\"links\":[\"https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1\"]}", - "last_update": "2016-09-14T19:15:09", - "created": "2016-09-14T19:15:09", - "active": "2016-09-15T15:19:39", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 3, - "net_rshares": "89025972926", - "abs_rshares": "89025972926", - "vote_rshares": "89025972926", - "children_abs_rshares": "89614201477", - "cashout_time": "2016-09-15T19:48:29", - "max_cashout_time": "2016-09-28T19:15:09", - "total_vote_weight": "401621156077855379", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 3, - "root_author": "profanarky", - "root_permlink": "the-dragon-s-blood-part-29", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 615287, - "author": "stellabelle", - "permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", - "category": "secret-writer", - "parent_author": "", - "parent_permlink": "secret-writer", - "title": "SECRET WRITER: I Feel Like An Alien Among People In My Country", - "body": "http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\n\n# I have to hide my true self.\n\nIt just so happened that I was constantly losing my friends. It's like a curse was put on me.\nJudging by the reviews from former colleagues and friends, I was a \"nice and friendly person who was always willing to help.\"\n\n# However, constantly all these friends ceased to be friends with me, for no reason. They just stopped communicating, no quarrels, no disagreements and other things!\n\nI had a lot of friends ... But our paths diverged.\n\nIn my childhood I had friends, but my family moved to another city, and I lost my friends. In the new city, I made new friends. I had one close friend. Even his move to another part of the city has not prevented us from seeing each other every weekend. And one day, he was taken into the army. And one day, his aunt came to me, and said that he is no more, he was killed when he was on sentry duty ...\n\n![imaged6bd4.jpg](https://www.steemimg.com/images/2016/07/26/imaged6bd4.jpg)\n\nPeople ignore me constantly on the Internet, too. On any website, forum. I try to communicate, start a dialogue, and all people just ignore me. Suffice it to ask someone about something, write, and so on, and no response. \n\n# It's as if I did not exist.\n\nhttp://i.giphy.com/3o72FhMTVaOTycqObu.gif\n\nI am always open and friendly, and in return I receive arrogance against me or they completely ignore me.\nThis is what hurts the self-assessment.\n\n# I have no one to talk, no one to share the news with. Not one to ask for help. When I die, nobody will notice. \n\nhttp://i.giphy.com/l46CABOxa2Itf99bG.gif\n\n# I change people!\n\nI've got one property ... when a person begins to communicate with me, he is beginning to change. He begins to listen to the music that I like. He begins to lead a similar lifestyle. In general, people change for the better. From this, I feel somehow enhanced. And apparently, it has become another man moves away from me and goes his own way. As the chicks leave the nest as adults. Other explanation I can find.\n\n# Childhood\n\nAt school I was a \"whipping boy\".\n\nhttp://i.giphy.com/Hem0mSEEPwQBa.gif\n\nEndured constant insults, humiliation. Every day for 3 years. The school was torture for me. I did not like school, sometimes skipped lessons to avoid it all. Of course, it has affected my level of education, I studied badly.\n\nAnd also, my eyesight began to deteriorate, I did not see what was written on the blackboard. And when I admitted that I had bad eyesight, meant even more exposure to ridicule. In addition, due to health problems, but rather due to an error from talentless doctors, I had to take some strange drug. What it was I do not know, but I remember that I had to take these pills with milk. At first, nothing happened ... but then I wanted to eat every 5 minutes, I could not stop! I suffered from hunger! And accordingly, I gained weight. Needless to say, that became more humiliation for me.\n\nPerhaps it is karma. After all, before all this, I, too, along with all, mocked other classmates. Well now I know, I deserve it all.\n\nIt all ended when I graduated from high school. I changed just for the summer. Completely changed! I was starving and had grown very thin. Enrolling in college, I stopped being afraid of the people because they did not know who I was at school. Former classmates simply did not recognize me in the street. I became a different person. I started a new life with a clean slate.\n\nhttp://i.giphy.com/763KvbtkqH3e8.gif\n\n# I'm for searching myself.\n\n### Punk.\n\nOne day on one local forum, I found an ad that a punk rock band was looking for a drummer. I do not know why, or what came over me, or how my subconscious played a role, but I wrote to them that I am ready to join them.\n\nIn those years, I liked punk rock. But I did not know how to play the drums! However, I had an ear for music and rhythm. Since childhood, I remember I loved playing improvised drums.\n\nhttp://i.giphy.com/3oEjI2cJuP3Y0dcfV6.gif\n\nAt the first rehearsal something happened. But, of course, I played really disgusting. I liked that I was with other people. I liked all the socializing after the rehearsals, but the rehearsals themselves I sometimes disliked.\n\nI was getting the feeling that my lack of skill playing the drums was getting the band down. The band broke up after 2 years, played three songs in one of the amateur concerts. I still blame myself for failing them. But communicating with them gave me pleasure.\n\n### Church of Satan.\n\nhttp://i.giphy.com/xThuWk5MZglNP8IsJG.gif\n\nI've never been religious.\nOne day it so happened that I was carried by some away articles and the book \"Church Satan\" that I found on the Internet. So I soon became well versed in the sect (I still keep granted by them, the so-called \"certificate\" as a memory). And then, I began to take an active and more active role in this church.\n\nI was the first who made an unofficial website, for which I was honored with awards and praise. I was the first who wrote a skeptical analysis of the Bible. And my critiques were very popular! Actually, thanks to them that I became known.\n\nAnd then I began to get to know ones of the elders. With me, I remember, I spoke to some journalists, a student who wrote some work, theologians, members of the new sect, and anyone with an interest. Probably because I was often on the network. After all, I have never been a part from the college and at home, and did nothing.\n\nBut then, I and several other members became disillusioned, and I left the sect.\n\nAnd then there were various attempts to find myself, I was changing lifestyles and views on life.\n\nWhy did I write this? All of the above has given me some experience in dealing with people and the ability to understand who I am and why, to find my place in life.\n\nPagan Old Believers tried invite me to come, and then I almost became a skinhead.\n\n> \"What people call life - just a game, but this game is sometimes instructive, and all that it teaches - only lessons from which to borrow wisdom, therefore, ought to live.\" (C)\n\n# Loneliness gave me the alternative to communion, namely: I read a lot of books, of which learned many new things from psychology, philosophy, spirituality and languages.\n\nhttp://i.giphy.com/AbuQeC846WKOs.gif\n\nHave you noticed that being in society and when in the company of others, you do not crave training or self-development? I see this for myself when my brother visits me. I do not read books, I do not ponder any situation and theory, I just talk and spend time with my brother. Loneliness provides an incentive for development. With the help of loneliness, you really will begin to appreciate the friendship and fellowship.\n\n# This can be compared with food delicacies. If you eat delicacies every day, they will cease to be so desirable and unusual, and they will become commonplace.\n\nhttp://i.giphy.com/WmEvcZna75UfS.gif\n\n# Now.\n\nMy current way of life is very similar to Tantric Buddhism, although it is not defined by that as it has no name, and does not need to be defined as such.\n\n# Sometimes it's painful and unpleasant to look at people.\n\nhttp://i.giphy.com/JsL3hYFdvMMSs.gif\n\nI understand why they are themselves, why they have such a way of life, but I do not want to be like them and be with them in the same company. I do not like it.\n\nI never offend for a reason, I never attack, and I do no harm.\nEmpathy - what distinguishes us from animals.\n\nI value every life, no matter what that life is.\nI do not accept what most people love.\nI do everything consciously, extracting meaning and benefits from the experience.\nFor example, I have a meal. I do not eat garbage food, because it does not give to my body anything useful, since it does not contain nutrients. \n\n# I do not drink alcohol, smoke cigarettes or do drugs. \n\n\nAnd that is why people around me laugh or look at me quizzically. They say that I'm lying, sick, abnormal, or \"mother does not allow\". They say, \"in life need one needs to try everything!\" \n\nBut none of them for some reason, do not try, for example, quantum physics, a healthy lifestyle, or Buddhism.\n\n**In life, need to not only try, but also try not to try!**\n\n# I do not live with the people, but I live among the people.\n\nIf only you knew how hard all of this is ... I have to hide it all, and to adapt to the \"generally accepted norms\", in order not to be mocked. \n\nI feel somehow alien among the people. I have to wear a mask to resemble the people and not be detected.\n\nhttp://i.giphy.com/QG0th9DNdRrGw.gif\n\n> \"No pyramids of authority.\nMaster has an older brother, nothing more. And he just does the hard work that the others do not overpower. If it is otherwise, then trouble is inevitable.\nAuthority - this is a mistake \"(c).\n\nIf you have read Orwell's novel \"1984\" or watched the same film, you know, all this is happening in my country.\nPeople poisoned by propaganda, people are trying to survive, they are afraid of the authorities and freedom.\nAll this is laid bare and exacerbated in human animal instincts. The principle of flocks. Not like us - the enemy is dangerous, you need to avoid, or to die.\n\nThe population cannot tolerate dissent, any manifestation of freedom, something different from their lifestyle and worldview. In connection with this, people with a different lifestyle, look, worldview and way, becomes an object of ridicule, an outcast, a threat, an enemy.\n\nIt's not comfortable for me to live here. But leave (until the border has not yet closed) there is no possibility. It is very expensive, and I make incredibly low wages, and wages continue to fall, while food and services continue to rise in price.\n\nHow I would like live in a free country! Be yourself, do not hide anything, not trying to make excuses for my views and lifestyles.\n\nMaybe relocation to another country could change something in me, but I notice, positive emotions in me less and less and I feel less joy and desire to live.\n\nhttp://i.giphy.com/eR2OWX51qesIo.gif\n\n-Secret Writer\n\nImages and gifs: All images are by Stellabelle, all gifs are from giphy.com.", - "json_metadata": "{\"tags\":[\"secret-writer\",\"isolation\",\"self-development\",\"life\"],\"image\":[\"http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\"]}", - "last_update": "2016-08-15T17:39:09", - "created": "2016-08-15T16:44:42", - "active": "2016-08-17T15:01:48", - "last_payout": "2016-08-16T19:48:36", - "depth": 0, - "children": 43, - "net_rshares": "981828724825", - "abs_rshares": "984642850369", - "vote_rshares": "981882842624", - "children_abs_rshares": "18007718646255", - "cashout_time": "2016-09-15T19:48:36", - "max_cashout_time": "2016-08-30T21:38:48", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "356586", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "31898", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 238520, - "net_votes": 293, - "root_author": "stellabelle", - "root_permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617429, - "author": "teutonic", - "permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", - "category": "awesome", - "parent_author": "", - "parent_permlink": "awesome", - "title": "10 Amazing Optical Illusion Pictures To Mess With Your Brain", - "body": "http://www.mindmotivations.com/images/optical-illusion1.jpg \nIs the ladder going up or down?\nhttp://www.mindmotivations.com/images/optical-illusion2.jpg\nAre the dots in between the squares white, black or grey?\nhttp://www.mindmotivations.com/images/optical-illusion3.jpg \nparallel or crooked?\nhttp://www.mindmotivations.com/images/optical-illusion4.jpg\nHow many legs?\nhttp://www.mindmotivations.com/images/optical-illusion5.jpg\nFocus on the dot in the middle and then move your head backwards and forwards.\nhttp://www.mindmotivations.com/images/optical-illusion7.jpg\nIs the picture moving?\nhttp://www.mindmotivations.com/images/optical-illusion8.jpg\nIs there anything in between the different squares?\nhttp://www.mindmotivations.com/images/optical-illusion9.jpg\nface of a lady or a word?\nhttp://www.mindmotivations.com/images/optical-illusion6.jpg \nFocus on the 4 dots in the middle of the picture for 30 seconds. \nhttp://www.mindmotivations.com/images/optical-illusion10.jpg \neven possible?", - "json_metadata": "{\"tags\":[\"awesome\",\"\"],\"image\":[\"http://www.mindmotivations.com/images/optical-illusion1.jpg\"]}", - "last_update": "2016-08-15T19:35:54", - "created": "2016-08-15T19:35:54", - "active": "2016-08-15T20:10:06", - "last_payout": "2016-08-16T19:48:45", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-15T19:48:45", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "teutonic", - "root_permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 952070, - "author": "safar01", - "permlink": "lol-robot-tranformers-against-fishermen", - "category": "editing", - "parent_author": "", - "parent_permlink": "editing", - "title": "LOL ... Robot Tranformers against fishermen (steemitphotochallenge)", - "body": "\n

\n

show in the pictures are not real, but I edit them using Photoshop just

\n

 to train the imagination only.

\n

I made this picture just to entertain readers of all, 

\n

please advise the reader all my abilities to process images

\n", - "json_metadata": "{\"tags\":[\"editing\",\"with\",\"photoshop\",\"imagination\",\"steemitphotochallenge\"],\"image\":[\"https://scontent.fcgk1-1.fna.fbcdn.net/v/t1.0-9/44685_544257398931890_1432197168_n.jpg?oh=737dff7bef73ecfcaff983c130b55ee1&oe=587FF678\"]}", - "last_update": "2016-09-14T20:20:48", - "created": "2016-09-14T19:48:57", - "active": "2016-09-14T20:20:48", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 158773924, - "abs_rshares": 158773924, - "vote_rshares": 158773924, - "children_abs_rshares": 158773924, - "cashout_time": "2016-09-15T19:48:57", - "max_cashout_time": "2016-09-28T19:48:57", - "total_vote_weight": "732186422373807", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "safar01", - "root_permlink": "lol-robot-tranformers-against-fishermen", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 617119, - "author": "pipertomcat", - "permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", - "category": "bitcoin", - "parent_author": "", - "parent_permlink": "bitcoin", - "title": "Western Union investing in Blockchain technology...will it be Bitcoin ? or Ripple!?", - "body": "https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg \nhttps://s19.postimg.org/jiv4eri0j/Blockchain_technology1.png\nWhy not Steem Dollars then? I think ultimately Western Union and the like may actually choose or adopt a name that includes something like \"Dollar\". Lol\nhttps://s19.postimg.org/4y9g66xo3/Bitcoinripplebanner1.png\n\nI have said to different friends over the last year or so on occasion, that I fear Western Union is about to die by Bitcoin's hand. I compare Netflix, Youtube, Google Play, Itunes,and so forth killing retail establishments like Blockbuster video. Technology and the convenience it brings, easily dominates any industry, ask Kodak. \n\n I have friends who still have to purchase money orders to pay their rent. The Apartment complex refuses personal checks and apparently doesn't want employee's accepting cash. You can join their site online for a $50 per month fee and connect your checking account. What a ripoff! \nWow if they only knew of bitcoin and the coming technology.\nhttps://s19.postimg.org/743r0p14j/725_Ly9jb2lud_GVs_ZWdy_YXBo_Lm_Nvb_S9zd_G9y_YWdl_L3_Vwb_G9h.jpg\n\n\nhttps://s19.postimg.org/fc5olot0z/e873eec95dbe6437e8b73f6dc4b474e6.jpg\nhttps://s19.postimg.org/d2hkaxk37/a9ee5c9045261e324670df9b5e3fbf0c.png\n Western Union was in discussions with Ripple Labs early last year, regarding a blockchain pilot project. By using a cheap payment network, proponents claim that companies will be able to cut down the cost of remittances.\n The following quote from Barry Gilbert , the Digital Currency Insights Founder and CEO says it best:\n“If you look at Western Union and Moneygram, they have a fantastic opportunity to take advantage of bitcoin as a financial rail and incorporate it into their business.”\n\nAfter reading the following article just now, I will have to say that I think someone like Western Union may be the key player in bringing Bitcoin to the masses! The following is an article from Bravenewcoin-http://bravenewcoin.com/news/western-union-wont-make-the-same-mistake-with-blockchain/\n\n#steemdollar\n#steem\n#westernunion\n#ripple", - "json_metadata": "{\"tags\":[\"bitcoin\",\"steemdollar\",\"steem\",\"westernunion\",\"ripple\"],\"image\":[\"https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg\"]}", - "last_update": "2016-08-15T19:14:33", - "created": "2016-08-15T19:14:33", - "active": "2016-08-15T19:15:51", - "last_payout": "2016-08-16T19:49:42", - "depth": 0, - "children": 1, - "net_rshares": 53638386, - "abs_rshares": 53638386, - "vote_rshares": 53638386, - "children_abs_rshares": "45063474229", - "cashout_time": "2016-09-15T19:49:42", - "max_cashout_time": "2016-09-04T21:13:12", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 9, - "root_author": "pipertomcat", - "root_permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-15T19:12:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "crowe", + "author_rewards": 0, + "beneficiaries": [], + "body": "I thought my viewers would be interested in the place I actually live in. I live in a City called Ashkelon. Its about 7 miles North of Gaza. Last year in June when some missiles were being shot toward Israel the Sirens in Ashkelon went off. I filmed this video from my deck. The video is what we hear when this happens. \n\nhttps://www.youtube.com/watch?v=Ky23yJaNDfo", + "cashout_time": "2016-09-15T19:47:27", + "category": "israel", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T19:12:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617094, + "json_metadata": "{\"tags\":[\"israel\",\"siren\",\"gaza\",\"politics\",\"steemit\"],\"links\":[\"https://www.youtube.com/watch?v=Ky23yJaNDfo\"]}", + "last_payout": "2016-08-16T19:47:27", + "last_update": "2016-08-15T19:12:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "israel", + "percent_hbd": 10000, + "permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "reward_weight": 10000, + "root_author": "crowe", + "root_permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "title": "Israeli Bomb Siren goes off in my City. I filmed this from my deck.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "1339555910464", + "active": "2016-08-15T19:44:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "luminarycrush", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

I came across a lone blooming cactus during a hike this weekend.  Photos taken at 946' ASL above Two Harbors, Catalina Island.

\n

\n


\n

\n


\n

\n", + "cashout_time": "2016-09-15T19:47:27", + "category": "photography", + "children": 0, + "children_abs_rshares": "1339555910464", + "created": "2016-08-15T19:44:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617542, + "json_metadata": "{\"tags\":[\"photography\",\"cactus\",\"catalinaisland\",\"california\",\"twoharbors\"],\"image\":[\"https://scontent.xx.fbcdn.net/t31.0-8/13988224_10154518762224175_252304266230235242_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13923665_10154518762269175_2030254348907005554_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13988240_10154518762254175_9097905240858144855_o.jpg\"]}", + "last_payout": "2016-08-16T19:47:27", + "last_update": "2016-08-15T19:44:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-01T02:13:51", + "net_rshares": "1339555910464", + "net_votes": 14, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "cactus-in-the-clouds-catalina-island", + "reward_weight": 10000, + "root_author": "luminarycrush", + "root_permlink": "cactus-in-the-clouds-catalina-island", + "title": "Cactus in the Clouds - Catalina Island", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "1339555910464" + }, + { + "abs_rshares": "76217996022", + "active": "2016-08-17T15:39:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "brunopro", + "author_rewards": 13512, + "beneficiaries": [], + "body": "http://imgur.com/HrpWWaK.png\n\n## And there are changes again regarding the duration until the payout occurs, now your post will have a minimum 24 hours duration until the first payout. \n\nPersonally I think that they should never have changed it to 12 hours. I didn't understand the logic behind it at the time and I still don't. This 24h period it's ideal because this way the post has better chances of overcoming the first publish period and get more traction. It also enables of a higher possibility of being seen and upvoted by the users that on the 12h were sleeping or simply away.\n\n# And you? What do you think about this change?\n\n----\n\nEdit post-publish: I've notice that I can't upvote a post that has been up for a month. Is this new also? I thought a post would always be open for an upvote? Can anyone reply to this question? thanks!\n\n----\n\n###### Photo Credits: https://unsplash.com/@sonjalangford", + "cashout_time": "2016-09-15T19:47:42", + "category": "steemit", + "children": 22, + "children_abs_rshares": "78071773184", + "created": "2016-08-15T18:36:36", + "curator_payout_value": { + "amount": "3483", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 616664, + "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"opinion\",\"reward\"],\"image\":[\"http://imgur.com/HrpWWaK.png\"]}", + "last_payout": "2016-08-16T19:47:42", + "last_update": "2016-08-15T18:51:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-08-30T20:41:45", + "net_rshares": "76217996022", + "net_votes": 82, + "parent_author": "", + "parent_permlink": "steemit", + "percent_hbd": 10000, + "permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "reward_weight": 10000, + "root_author": "brunopro", + "root_permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "title": "LATEST NEWS: Payouts are back to 24H - What do you think about it? [ Quick read / Opinion Article ]", + "total_payout_value": { + "amount": "20200", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "76217996022" + }, + { + "abs_rshares": 0, + "active": "2016-08-15T19:50:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "yassinebentour", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

http://unitedcivilrights.org/images/fa-prprty.gif

\n

The purpose of property rights is to mitigate conflict over scarce, rivalrous resources. To have a property right over a scarce, rivalrous resource is to have the right to exclude others from using that resource in the attainment of some ends. For example, I have property rights over my body, which means I can exclude others from using my body for sexual pleasure or labor without my consent. If they do access my body in such a way without my consent, it's called rape or slavery, respectively. Likewise, I have property rights over the accumulated capital for which I consensually trade my time and labor, which means I have the right to exclude people from using my accumulated capital without my consent. When someone accesses my accumulated capital in such a way without my consent, it's called theft or trespass.
\nScale doesn't change this. If I transform my accumulated capital into a factory by hiring people who voluntarily exchange the product of their labor for some of my accumulated capital, this means that they value what they receive in exchange for working more than they value the direct product of their labor (the factory). Likewise, it means I value the factory more than the accumulated capital I gave up for it. This is a win-win situation, or a positive sum game. The workers I hired retain property rights over the capital they received as payment for their labor, which means they can exclude others from the use of their newly acquired accumulated capital, and I retain property rights over the factory, which means I can exclude others from the use of my factory.
\nDiscrepancies between marginal benefit don't change this either. A consensual exchange doesn't become theft just because one party benefits more from the exchange than another. If this wasn't the case, every single instance of buyer's remorse would be indicative of theft. If someone agrees to produce a walking stick in exchange for ten dollars and the purchaser of the walking stick then sells it to someone else for twenty dollars, how can it be claimed that the producer of the walking stick was a victim of theft if they haven't been deprived of the ten dollars for which they voluntarily exchanged the walking stick? Would it have been reasonable to expect that the first purchaser of the walking stick wouldn't have obtained more than ten dollars of value from it given that the exchange wouldn't have happened in the first place if they hadn't valued the walking stick more than they valued ten dollars?
\nOf course not. Anything that happens to the walking stick after the original exchange is no business of the producer of the walking stick because said producer already exchanged his property rights to the walking stick for property rights to a different form of accumulated capital (ten dollars).
\nLikewise, if I use more of my accumulated capital to hire workers to work in my factory, they will only accept my offer of employment if they value what I'm offering more than their own free time and more than whatever stake they may have otherwise had in the product they will be producing. In other words, if they accept employment, it will be with the understanding that they're giving up any stake in what they're producing in exchange for what I'm offering them. Maybe my factory assembles televisions. Maybe one worker can produce one television per hour. Would they be able to produce televisions this efficiently without my previous investment in production capital (which hasn't even been recouped and probably never will be completely given that maintenance, employment and higher order production good costs are a revolving door)? Would they be able to produce televisions AT ALL without this previous investment in production capital? Of course not, and they know this, which is why they're willing to give up both their leisure and whatever stake their labor may have otherwise entitled them to in the production of a television in exchange for a fixed amount of accumulated capital.
\nAs was the case with the walking stick, whatever happens to the television after this exchange occurs is no business of the worker. How could the future sale of the television constitute theft of the worker's accumulated capital if it can't be demonstrated that the worker was deprived of the accumulated capital that he voluntarily accepted as payment for the production of the television, especially given that the television was produced with other accumulated capital (plastic, circuits, labor saving devices, etc.) that the worker never even owned?
\nIt can't.
\nProperty ownership necessarily implies exclusivity, which means that \"private property\" is redundant, as is \"personal property\". The words \"private\" and \"personal\" denote exclusivity, which is already implied by the word \"property\". To differentiate between \"personal property\" and \"private property\" is therefore a distinction without a difference. This implication of exclusivity also means that \"public property\" is a contradiction in terms. If no one can be excluded from using the resource, it isn't property. Resources that aren't scarce or rivalrous likewise can not be considered property, which means that \"intellectual property\" is also a contradiction in terms.
\nThis means that seizing the means of production is a genuine form of theft and that \"pirating\" music, software, art and writing is not, which may seem counter-intuitive if you attended the indoctrination camps euphemistically known as \"public schools\" when you were growing up.

\n", + "cashout_time": "2016-09-15T19:47:48", + "category": "writing", + "children": 2, + "children_abs_rshares": "25854883309", + "created": "2016-08-15T19:43:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617534, + "json_metadata": "{\"tags\":[\"writing\",\"rights\"],\"image\":[\"http://unitedcivilrights.org/images/fa-prprty.gif\"]}", + "last_payout": "2016-08-16T19:47:48", + "last_update": "2016-08-15T19:43:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-01T01:02:42", + "net_rshares": -104004690671, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "writing", + "percent_hbd": 10000, + "permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "reward_weight": 736, + "root_author": "yassinebentour", + "root_permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "title": "The purpose of property rights is to mitigate conflict over scarce, rivalrous resources", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-15T19:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "libtrian.outlet", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\nFriday's move is the clearest indication yet that the White House is serious about getting Obama\u2019s legacy trade deal.\n\nThe White House put Congress on notice Friday morning that it will be sending lawmakers a bill to implement President Barack Obama\u2019s landmark Trans-Pacific Partnership agreement \u2014 a move intended to infuse new energy into efforts to ratify the flat-lining trade pact.\n\nThe move establishes a 30-day minimum before the administration can present the legislation, but the White House is unlikely to do so amid the heated rhetoric of a presidential campaign in which both major party nominees have depicted free trade deals as massive job killers.\n\nFriday's notification is the clearest signal yet that the White House is serious about getting Obama\u2019s legacy trade deal \u2014 the biggest in U.S. history \u2014 passed by the end of the year, as he has vowed to do despite the misgivings of Republican leaders and the outright opposition of a majority of Democrats in Congress.\n\nStriking a defiant tone, Obama predicted at a press conference last week that the economic centerpiece of his strategic pivot to Asia would pass in the lame-duck session, saying he\u2019d like to sit down with lawmakers after the election to discuss the \"actual facts\" behind the deal, rather than toss it around like a \"political football.\"\n\n\"We are part of a global economy. We're not reversing that,\" Obama said, describing the necessity of international supply chains and the importance of the export sector to U.S. jobs and the economy. \"The notion that we're going to pull that up root and branch is unrealistic.\"\n\nThe notification, a new requirement of the trade promotion authority legislation Congress passed last year to expedite passage of the Asia-Pacific pact, is \u201cmeant to ensure early consultations between the administration and Congress,\u201d Matt McAlvanah, a spokesman for the Office of the U.S. Trade Representative, said in a statement. \u201cAs such, the draft SAA [Statement of Administrative Action] was sent today in order to continue to promote transparency and collaboration in the TPP process.\u201d\n\nThe White House's draft document describes the major steps the administration will take to implement any changes to U.S. law required by the deal. Those actions range from the mundane \u2014 designating an administration point of contact for communications about the pact \u2014 to the complex \u2014 setting up procedures to stop harmful surges of agricultural or textile imports.\n\nBut the deal is going nowhere until the White House addresses a number of concerns lawmakers have raised about the trade agreement, which Canada, Mexico, Japan and eight other countries joined the United States in signing last February.\n\nFirst and foremost: satisfying the concerns of Senate Finance Committee Chairman Orrin Hatch (R-Utah) and other lawmakers about protections for a new class of drugs known as biologics. They say the pact provides too short a monopoly period for rights to research and development data. Other lawmakers have complained the deal would bar tobacco companies from seeking redress through investor-state dispute arbitrage for damages resulting from country regulations. Still others are seeking assurances that member countries will abide by their commitments to provide access for U.S. pork and dairy exports.\n\nUntil these issues are resolved, House Speaker Paul Ryan and Senate Majority Leader Mitch McConnell have made clear that the pact will not get the votes it needs to pass.\n\nRyan's spokeswoman, AshLee Strong, reiterated the point on Friday.\n\n\u201cAs Speaker Ryan has stated for months, there are problems that remain with the administration\u2019s TPP deal, and there can be no movement before these concerns are addressed,\" she said.\n\nDemocrats, meanwhile, have largely called the deal a nonstarter over concerns about the enforceability of labor and environmental standards in countries like Vietnam and the lack of strong protections against currency manipulation.\n\nThe administration claims it is making progress on these issues and has resolved others, including banking industry concerns over the exclusion of financial data from rules prohibiting countries from requiring local storage.\n\nBut that doesn\u2019t change the reality of the down-ballot drag that candidates are facing as they campaign back home in their districts. In a reversal from years past, many Republicans are on the defensive about their support for free trade because of Donald Trump\u2019s daily tirades about what he characterizes as the serious economic damage wrought by trade agreements like the North American Free Trade Agreement and the TPP as well as his complaints that China is flouting international trade rules.\n\nThe Republican platform picked up on this theme, saying significant trade deals \"should not be rushed or undertaken in a Lame Duck Congress.\"\n\nThe small band of Democrats who the administration hopes will support the TPP are facing increased pressure within their own party to abandon the president on the agreement. Sens. Bernie Sanders\u2019 and Elizabeth Warren\u2019s strong condemnations of the trade deal have forced Hillary Clinton, who supported the TPP as Obama\u2019s secretary of state, to reject the pact to appease the liberal wing.\n\n\"I will stop any trade deal that kills jobs or holds down wages, including the Trans-Pacific Partnership,\" Clinton said during an economic policy speech at an automotive manufacturing plant in Warren, Mich., on Thursday. \"I oppose it now, I'll oppose it after the election and I'll oppose it as president.\"\n\nClinton\u2019s clear rejection of the trade deal has emboldened liberal groups like the Warren-aligned Progressive Change Campaign Committee to launch a campaign to press Democrats to publicly oppose a TPP vote in the lame duck.\n\nSanders also called on Democratic congressional leaders to go on record against the White House\u2019s effort to get the deal done by the end of the year, saying the agreement is opposed by every trade union and the grassroots base of the Democratic Party.\n\n\"I am disappointed by the president's decision to continue pushing forward on the disastrous Trans-Pacific Partnership trade agreement that will cost American jobs, harm the environment, increase the cost of prescription drugs and threaten our ability to protect public health,\u201d the Vermont senator said in a statement after learning of the White House's action on Friday.\n\nMeanwhile, the administration continues to press the deal in key congressional districts \u2014 especially those of Democrats who supported the trade promotion authority bill last year.\n\nInterior Secretary Sally Jewell returned to her hometown of Seattle last month to tout the TPP\u2019s potential effects on the environment at a Washington Council on International Trade event with more than 150 business leaders.\n\nThen, last week, Commerce Secretary Penny Pritzker hit the San Diego and Boulder districts of Reps. Susan Davis and Jared Polis \u2014 two of the 28 House Democrats that voted for the bill \u2014 and visited a steel plant in Cleveland to promote the TPP. Treasury Secretary Jack Lew did the same when he met with local and state officials and Fortune 500 business executives in Minneapolis.\n\nOn Thursday, Undersecretary of Commerce for Oceans and Atmosphere Kathryn Sullivan spoke at a Seattle clean energy business roundtable focused on the TPP and the environment. And this Monday, Deputy U.S. Trade Representative Robert Holleyman will participate in a World Affairs Council of Atlanta discussion on the trade deal featuring former Republican Sen. Saxby Chambliss and UPS CEO David Abney.\n\nAs the political fight plays out, the nuts-and-bolts process of moving the deal forward will continue. Once Congress reviews the draft notification that the White House submitted on Friday, the administration can move forward with sending lawmakers a final statement and the draft of the implementing bill itself. The legislation will describe the actual changes to U.S. law to comply with the rules of the trade agreement.\n\nAfter that, the Senate Finance and House Ways and Means committees could hold \u201cmock markups\u201d of the bill (because under trade promotion authority, Congress is not actually allowed to tinker with the agreement or its implementing legislation itself, but it can ask the administration to do so).\n\nBut given the tenor of the elections, the entire process could be pushed into a crowded lame-duck legislation session, which would mean no time for the mock markups. Instead, there could be a lot of deal-making between the White House and congressional leadership to move the bill before Clinton or Trump takes over on Jan. 20.\n\nObama said last week that he\u2019s ready to press his case. \"Right now, I'm president, and I'm for it. And I think I've got the better argument,\" he said.\n\nSource:\nwww.politico.com/story/2016/08/obama-congress-trade-warning-226952", + "cashout_time": "2016-09-15T19:47:57", + "category": "politics", + "children": 1, + "children_abs_rshares": "11700424464", + "created": "2016-08-15T19:44:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617538, + "json_metadata": "{\"tags\":[\"politics\",\"tpp\",\"conspiracy\",\"news\",\"freetrade\"],\"image\":[\"http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\"]}", + "last_payout": "2016-08-16T19:47:57", + "last_update": "2016-08-15T19:44:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-04T23:37:39", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "", + "parent_permlink": "politics", + "percent_hbd": 10000, + "permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "reward_weight": 2046, + "root_author": "libtrian.outlet", + "root_permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "title": "Obama puts Congress on notice: TPP is coming", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "89025972926", + "active": "2016-09-15T15:19:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "profanarky", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

In which the folks in the subway find themselves some unwelcome visitors...

\n

29

\n

   \u201cDo NOT panic! There is no reason to believe that this is anything more than just a power outage.\u201d  

\n

   \u201cBut-- BUT-- how can it be the whole state?\u201d One wide-eyed young woman, one of the aforementioned punk rockers actually raised her hand.  

\n

   \u201cYeah, it\u2019s gotta be Al Qaeda, who the hell else could it be?!!\u201d Another idiot bellowed.    

\n

   Others followed, there words quickly jumbling together into a tidal wave of paranoia. It only took one idiot to get the ball rolling.   

\n

   \u201cIt\u2019s gotta be the terrorists, who the hell else could it be?\u201d    

\n

   \u201cOh my god, I gotta get to my kids\u2026 My kids are still at the day care!!!\u201d   

\n

   \u201cDid an airplane hit a power plant??!! OH GOD!! DID AN AIRPLANE HIT ONE OF THE NUCLEAR PLANTS??!!\u201d    

\n

   She heard it all and it was nothing more than a buzzing, though an irritating one nonetheless. Her instincts, those things cops called their gut instincts told her Mister Blue-eyes was the key, the only thing really important right now. Mister Blue-eyes and whatever the hell it was he was watching outside their little tin prison.  

\n

     \u201cNOW LISTEN DAMMIT!!!\u201d She hollered, trying to make herself louder than the loudest of them, a difficult task with New Yorkers. \u201cI told you, there\u2019s no goddamn reason to think it\u2019s terrorism! This has happened before in our lifetimes and it\u2019s gonna happen again. As far as I\u2019m concerned it ain\u2019t nothing more than a power outage. Going FUCKING crazy ain\u2019t gonna help us any, dammit!!\u201d  

\n

   They kept going, some of them, but most paid her mind and listened, their faces drawn and tired. They\u2019d suffered enough the last few years, New Yorkers. There wasn\u2019t a one of them, including herself, who hadn\u2019t had their world turned literally upside down two years before. The terror they\u2019d lived was fresh on their minds, fresh and ready to burst again and overwhelm them. It was a hard thing, it truly, truly was.     

\n

   \u201cNow I just got off the phone with my partner and he says he\u2019s gonna get people down here to get us out as soon as possible. There are trains stalled all over the city. Rescue workers are leading those people out from underground and up to their homes. He told me there would be a group of them here soon. He was gonna get them here.\u201d    

\n

   \u201cIs that them?\u201d Came the deep voice of Jeffrey Thornton. He\u2019d been quiet while the others yelled, silent and listening to what she had to say. The moment she\u2019d spoken of rescue his eyes had gone outside the train and he saw what Mister Blue-eyes had apparently been watching.    

\n

   \u201cWhere?\u201d She asked him, stumbling over and peering outside, right next to the stranger in the baseball cap.       

\n

   She saw nothing at first, her eyes trying to focus past the reflections in the glass and out into the pitch black.      

\n

   \u201cThose--,\u201d Mister Blue-eyes said, at last speaking, his voice accented in a manner she\u2019d never heard before. Something about it was as wrong and as otherworldly as his eyes were. \u201c---are not rescuers of any sort.\u201d    

\n

   Out of the corner of her eye she saw him rise and back away from the window and once again her instincts spoke to her. They told her to back away as well, and to not stop there. They said to her, no, they screamed at her to run, to run as far from here as possible.      

\n

   But she didn\u2019t, she had to see what they were, had to see for herself.    

\n

   When the figures finally did materialize from the darkness, they weren\u2019t human at all.     

\n

End Part 29

\n

         If you find yourself interested in the whole damnedable thing and wanna throw me a few bucks, here's a link to it on Amazon.      

\n

  https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1   

\n


\n", + "cashout_time": "2016-09-15T19:48:29", + "category": "story", + "children": 3, + "children_abs_rshares": "89614201477", + "created": "2016-09-14T19:15:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 951797, + "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"creative\",\"writers\",\"writing\"],\"image\":[\"http://www.followingthenerd.com/site/wp-content/uploads/shadowpeople.jpg\"],\"links\":[\"https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T19:15:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-28T19:15:09", + "net_rshares": "89025972926", + "net_votes": 3, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "the-dragon-s-blood-part-29", + "reward_weight": 10000, + "root_author": "profanarky", + "root_permlink": "the-dragon-s-blood-part-29", + "title": "The Dragon's Blood (Part 29)", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "401621156077855379", + "vote_rshares": "89025972926" + }, + { + "abs_rshares": "984642850369", + "active": "2016-08-17T15:01:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "stellabelle", + "author_rewards": 238520, + "beneficiaries": [], + "body": "http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\n\n# I have to hide my true self.\n\nIt just so happened that I was constantly losing my friends. It's like a curse was put on me.\nJudging by the reviews from former colleagues and friends, I was a \"nice and friendly person who was always willing to help.\"\n\n# However, constantly all these friends ceased to be friends with me, for no reason. They just stopped communicating, no quarrels, no disagreements and other things!\n\nI had a lot of friends ... But our paths diverged.\n\nIn my childhood I had friends, but my family moved to another city, and I lost my friends. In the new city, I made new friends. I had one close friend. Even his move to another part of the city has not prevented us from seeing each other every weekend. And one day, he was taken into the army. And one day, his aunt came to me, and said that he is no more, he was killed when he was on sentry duty ...\n\n![imaged6bd4.jpg](https://www.steemimg.com/images/2016/07/26/imaged6bd4.jpg)\n\nPeople ignore me constantly on the Internet, too. On any website, forum. I try to communicate, start a dialogue, and all people just ignore me. Suffice it to ask someone about something, write, and so on, and no response. \n\n# It's as if I did not exist.\n\nhttp://i.giphy.com/3o72FhMTVaOTycqObu.gif\n\nI am always open and friendly, and in return I receive arrogance against me or they completely ignore me.\nThis is what hurts the self-assessment.\n\n# I have no one to talk, no one to share the news with. Not one to ask for help. When I die, nobody will notice. \n\nhttp://i.giphy.com/l46CABOxa2Itf99bG.gif\n\n# I change people!\n\nI've got one property ... when a person begins to communicate with me, he is beginning to change. He begins to listen to the music that I like. He begins to lead a similar lifestyle. In general, people change for the better. From this, I feel somehow enhanced. And apparently, it has become another man moves away from me and goes his own way. As the chicks leave the nest as adults. Other explanation I can find.\n\n# Childhood\n\nAt school I was a \"whipping boy\".\n\nhttp://i.giphy.com/Hem0mSEEPwQBa.gif\n\nEndured constant insults, humiliation. Every day for 3 years. The school was torture for me. I did not like school, sometimes skipped lessons to avoid it all. Of course, it has affected my level of education, I studied badly.\n\nAnd also, my eyesight began to deteriorate, I did not see what was written on the blackboard. And when I admitted that I had bad eyesight, meant even more exposure to ridicule. In addition, due to health problems, but rather due to an error from talentless doctors, I had to take some strange drug. What it was I do not know, but I remember that I had to take these pills with milk. At first, nothing happened ... but then I wanted to eat every 5 minutes, I could not stop! I suffered from hunger! And accordingly, I gained weight. Needless to say, that became more humiliation for me.\n\nPerhaps it is karma. After all, before all this, I, too, along with all, mocked other classmates. Well now I know, I deserve it all.\n\nIt all ended when I graduated from high school. I changed just for the summer. Completely changed! I was starving and had grown very thin. Enrolling in college, I stopped being afraid of the people because they did not know who I was at school. Former classmates simply did not recognize me in the street. I became a different person. I started a new life with a clean slate.\n\nhttp://i.giphy.com/763KvbtkqH3e8.gif\n\n# I'm for searching myself.\n\n### Punk.\n\nOne day on one local forum, I found an ad that a punk rock band was looking for a drummer. I do not know why, or what came over me, or how my subconscious played a role, but I wrote to them that I am ready to join them.\n\nIn those years, I liked punk rock. But I did not know how to play the drums! However, I had an ear for music and rhythm. Since childhood, I remember I loved playing improvised drums.\n\nhttp://i.giphy.com/3oEjI2cJuP3Y0dcfV6.gif\n\nAt the first rehearsal something happened. But, of course, I played really disgusting. I liked that I was with other people. I liked all the socializing after the rehearsals, but the rehearsals themselves I sometimes disliked.\n\nI was getting the feeling that my lack of skill playing the drums was getting the band down. The band broke up after 2 years, played three songs in one of the amateur concerts. I still blame myself for failing them. But communicating with them gave me pleasure.\n\n### Church of Satan.\n\nhttp://i.giphy.com/xThuWk5MZglNP8IsJG.gif\n\nI've never been religious.\nOne day it so happened that I was carried by some away articles and the book \"Church Satan\" that I found on the Internet. So I soon became well versed in the sect (I still keep granted by them, the so-called \"certificate\" as a memory). And then, I began to take an active and more active role in this church.\n\nI was the first who made an unofficial website, for which I was honored with awards and praise. I was the first who wrote a skeptical analysis of the Bible. And my critiques were very popular! Actually, thanks to them that I became known.\n\nAnd then I began to get to know ones of the elders. With me, I remember, I spoke to some journalists, a student who wrote some work, theologians, members of the new sect, and anyone with an interest. Probably because I was often on the network. After all, I have never been a part from the college and at home, and did nothing.\n\nBut then, I and several other members became disillusioned, and I left the sect.\n\nAnd then there were various attempts to find myself, I was changing lifestyles and views on life.\n\nWhy did I write this? All of the above has given me some experience in dealing with people and the ability to understand who I am and why, to find my place in life.\n\nPagan Old Believers tried invite me to come, and then I almost became a skinhead.\n\n> \"What people call life - just a game, but this game is sometimes instructive, and all that it teaches - only lessons from which to borrow wisdom, therefore, ought to live.\" (C)\n\n# Loneliness gave me the alternative to communion, namely: I read a lot of books, of which learned many new things from psychology, philosophy, spirituality and languages.\n\nhttp://i.giphy.com/AbuQeC846WKOs.gif\n\nHave you noticed that being in society and when in the company of others, you do not crave training or self-development? I see this for myself when my brother visits me. I do not read books, I do not ponder any situation and theory, I just talk and spend time with my brother. Loneliness provides an incentive for development. With the help of loneliness, you really will begin to appreciate the friendship and fellowship.\n\n# This can be compared with food delicacies. If you eat delicacies every day, they will cease to be so desirable and unusual, and they will become commonplace.\n\nhttp://i.giphy.com/WmEvcZna75UfS.gif\n\n# Now.\n\nMy current way of life is very similar to Tantric Buddhism, although it is not defined by that as it has no name, and does not need to be defined as such.\n\n# Sometimes it's painful and unpleasant to look at people.\n\nhttp://i.giphy.com/JsL3hYFdvMMSs.gif\n\nI understand why they are themselves, why they have such a way of life, but I do not want to be like them and be with them in the same company. I do not like it.\n\nI never offend for a reason, I never attack, and I do no harm.\nEmpathy - what distinguishes us from animals.\n\nI value every life, no matter what that life is.\nI do not accept what most people love.\nI do everything consciously, extracting meaning and benefits from the experience.\nFor example, I have a meal. I do not eat garbage food, because it does not give to my body anything useful, since it does not contain nutrients. \n\n# I do not drink alcohol, smoke cigarettes or do drugs.\u00a0\n\n\nAnd that is why people around me laugh or look at me quizzically. They say that I'm lying, sick, abnormal, or \"mother does not allow\". They say, \"in life need one needs to try everything!\" \n\nBut none of them for some reason, do not try, for example, quantum physics, a healthy lifestyle, or Buddhism.\n\n**In life, need to not only try, but also try not to try!**\n\n# I do not live with the people, but I live among the people.\n\nIf only you knew how hard all of this is ... I have to hide it all, and to adapt to the \"generally accepted norms\", in order not to be mocked. \n\nI feel somehow alien among the people. I have to wear a mask to resemble the people and not be detected.\n\nhttp://i.giphy.com/QG0th9DNdRrGw.gif\n\n> \"No pyramids of authority.\nMaster has an older brother, nothing more. And he just does the hard work that the others do not overpower. If it is otherwise, then trouble is inevitable.\nAuthority - this is a mistake \"(c).\n\nIf you have read Orwell's novel \"1984\" or watched the same film, you know, all this is happening in my country.\nPeople poisoned by propaganda, people are trying to survive, they are afraid of the authorities and freedom.\nAll this is laid bare and exacerbated in human animal instincts. The principle of flocks. Not like us - the enemy is dangerous, you need to avoid, or to die.\n\nThe population cannot tolerate dissent, any manifestation of freedom, something different from their lifestyle and worldview. In connection with this, people with a different lifestyle, look, worldview and way, becomes an object of ridicule, an outcast, a threat, an enemy.\n\nIt's not comfortable for me to live here. But leave (until the border has not yet closed) there is no possibility. It is very expensive, and I make incredibly low wages, and wages continue to fall, while food and services continue to rise in price.\n\nHow I would like live in a free country! Be yourself, do not hide anything, not trying to make excuses for my views and lifestyles.\n\nMaybe relocation to another country could change something in me, but I notice, positive emotions in me less and less and I feel less joy and desire to live.\n\nhttp://i.giphy.com/eR2OWX51qesIo.gif\n\n-Secret Writer\n\nImages and gifs: All images are by Stellabelle, all gifs are from giphy.com.", + "cashout_time": "2016-09-15T19:48:36", + "category": "secret-writer", + "children": 43, + "children_abs_rshares": "18007718646255", + "created": "2016-08-15T16:44:42", + "curator_payout_value": { + "amount": "31898", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 615287, + "json_metadata": "{\"tags\":[\"secret-writer\",\"isolation\",\"self-development\",\"life\"],\"image\":[\"http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\"]}", + "last_payout": "2016-08-16T19:48:36", + "last_update": "2016-08-15T17:39:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-08-30T21:38:48", + "net_rshares": "981828724825", + "net_votes": 293, + "parent_author": "", + "parent_permlink": "secret-writer", + "percent_hbd": 10000, + "permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "reward_weight": 10000, + "root_author": "stellabelle", + "root_permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "title": "SECRET WRITER: I Feel Like An Alien Among People In My Country", + "total_payout_value": { + "amount": "356586", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "981882842624" + }, + { + "abs_rshares": 0, + "active": "2016-08-15T20:10:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "teutonic", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://www.mindmotivations.com/images/optical-illusion1.jpg \nIs the ladder going up or down?\nhttp://www.mindmotivations.com/images/optical-illusion2.jpg\nAre the dots in between the squares white, black or grey?\nhttp://www.mindmotivations.com/images/optical-illusion3.jpg \nparallel or crooked?\nhttp://www.mindmotivations.com/images/optical-illusion4.jpg\nHow many legs?\nhttp://www.mindmotivations.com/images/optical-illusion5.jpg\nFocus on the dot in the middle and then move your head backwards and forwards.\nhttp://www.mindmotivations.com/images/optical-illusion7.jpg\nIs the picture moving?\nhttp://www.mindmotivations.com/images/optical-illusion8.jpg\nIs there anything in between the different squares?\nhttp://www.mindmotivations.com/images/optical-illusion9.jpg\nface of a lady or a word?\nhttp://www.mindmotivations.com/images/optical-illusion6.jpg \nFocus on the 4 dots in the middle of the picture for 30 seconds. \nhttp://www.mindmotivations.com/images/optical-illusion10.jpg \neven possible?", + "cashout_time": "2016-09-15T19:48:45", + "category": "awesome", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-15T19:35:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617429, + "json_metadata": "{\"tags\":[\"awesome\",\"\"],\"image\":[\"http://www.mindmotivations.com/images/optical-illusion1.jpg\"]}", + "last_payout": "2016-08-16T19:48:45", + "last_update": "2016-08-15T19:35:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "awesome", + "percent_hbd": 10000, + "permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "reward_weight": 10000, + "root_author": "teutonic", + "root_permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "title": "10 Amazing Optical Illusion Pictures To Mess With Your Brain", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 158773924, + "active": "2016-09-14T20:20:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "safar01", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

show in the pictures are not real, but I edit them using Photoshop just

\n

 to train the imagination only.

\n

I made this picture just to entertain readers of all, 

\n

please advise the reader all my abilities to process images

\n", + "cashout_time": "2016-09-15T19:48:57", + "category": "editing", + "children": 0, + "children_abs_rshares": 158773924, + "created": "2016-09-14T19:48:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 952070, + "json_metadata": "{\"tags\":[\"editing\",\"with\",\"photoshop\",\"imagination\",\"steemitphotochallenge\"],\"image\":[\"https://scontent.fcgk1-1.fna.fbcdn.net/v/t1.0-9/44685_544257398931890_1432197168_n.jpg?oh=737dff7bef73ecfcaff983c130b55ee1&oe=587FF678\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T20:20:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-28T19:48:57", + "net_rshares": 158773924, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "editing", + "percent_hbd": 10000, + "permlink": "lol-robot-tranformers-against-fishermen", + "reward_weight": 10000, + "root_author": "safar01", + "root_permlink": "lol-robot-tranformers-against-fishermen", + "title": "LOL ... Robot Tranformers against fishermen (steemitphotochallenge)", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "732186422373807", + "vote_rshares": 158773924 + }, + { + "abs_rshares": 53638386, + "active": "2016-08-15T19:15:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "pipertomcat", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg \nhttps://s19.postimg.org/jiv4eri0j/Blockchain_technology1.png\nWhy not Steem Dollars then? I think ultimately Western Union and the like may actually choose or adopt a name that includes something like \"Dollar\". Lol\nhttps://s19.postimg.org/4y9g66xo3/Bitcoinripplebanner1.png\n\nI have said to different friends over the last year or so on occasion, that I fear Western Union is about to die by Bitcoin's hand. I compare Netflix, Youtube, Google Play, Itunes,and so forth killing retail establishments like Blockbuster video. Technology and the convenience it brings, easily dominates any industry, ask Kodak. \n\n I have friends who still have to purchase money orders to pay their rent. The Apartment complex refuses personal checks and apparently doesn't want employee's accepting cash. You can join their site online for a $50 per month fee and connect your checking account. What a ripoff! \nWow if they only knew of bitcoin and the coming technology.\nhttps://s19.postimg.org/743r0p14j/725_Ly9jb2lud_GVs_ZWdy_YXBo_Lm_Nvb_S9zd_G9y_YWdl_L3_Vwb_G9h.jpg\n\n\nhttps://s19.postimg.org/fc5olot0z/e873eec95dbe6437e8b73f6dc4b474e6.jpg\nhttps://s19.postimg.org/d2hkaxk37/a9ee5c9045261e324670df9b5e3fbf0c.png\n Western Union was in discussions with Ripple Labs early last year, regarding a blockchain pilot project. By using a cheap payment network, proponents claim that companies will be able to cut down the cost of remittances.\n The following quote from Barry Gilbert , the Digital Currency Insights Founder and CEO says it best:\n\u201cIf you look at Western Union and Moneygram, they have a fantastic opportunity to take advantage of bitcoin as a financial rail and incorporate it into their business.\u201d\n\nAfter reading the following article just now, I will have to say that I think someone like Western Union may be the key player in bringing Bitcoin to the masses! The following is an article from Bravenewcoin-http://bravenewcoin.com/news/western-union-wont-make-the-same-mistake-with-blockchain/\n\n#steemdollar\n#steem\n#westernunion\n#ripple", + "cashout_time": "2016-09-15T19:49:42", + "category": "bitcoin", + "children": 1, + "children_abs_rshares": "45063474229", + "created": "2016-08-15T19:14:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617119, + "json_metadata": "{\"tags\":[\"bitcoin\",\"steemdollar\",\"steem\",\"westernunion\",\"ripple\"],\"image\":[\"https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg\"]}", + "last_payout": "2016-08-16T19:49:42", + "last_update": "2016-08-15T19:14:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-04T21:13:12", + "net_rshares": 53638386, + "net_votes": 9, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_hbd": 10000, + "permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "reward_weight": 10000, + "root_author": "pipertomcat", + "root_permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "title": "Western Union investing in Blockchain technology...will it be Bitcoin ? or Ripple!?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 53638386 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json index 6844aa48..a29062bd 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 961233, - "author": "szklaneczka", - "permlink": "iconomi-why-we-need-found-management-explained-on-graphs", - "category": "cryptocurrency", - "parent_author": "", - "parent_permlink": "cryptocurrency", - "title": "ICONOMI - why we need found management explained on graphs.", - "body": "**ICONOMI found management platform** is currently in ICO and you can still invest. \n\nThat is most anticipated platform of 2016 why You may ask me. I will give you some graph and explanation. Solutions like ICONOMI are very popular in old economy people want be rich and wanted get more profit so they tried give money to people who know more about trading. Found management platforms preforms much better than average investors. Big guys just want invest not day trading. In crypto ICOMI will be 1st such project - such needed project.\n\nNow true facts and everything that I show you, is now publicly available on web. Graphs taken from coinmarketcap.com are showing us, what is going on cryptocurrency markets right now:\n![](http://i.imgur.com/FLe0WeF.jpg) \n![](http://i.imgur.com/s6Aeke2.jpg) \n![](http://i.imgur.com/RX0JK1z.jpg) \n\nYou see on won eyes that: Bitcoin is loosing over time market share to other alt coins. There is many multiple reasons for that. Without ICONOMI getting on cryptocurrency board for new investors will be VERY hard. \nThat is:\n \n- choose right one coin. \n- skip scams \n- buy valuable coins \n- crypto markets are getting bigger and bigger all time, there is about over 700coins tradable now\n\n\nICONOMI will be platform that for **every investor looking for big profits**. \nICONOMI will give us 2 founds:\n\n- **The ICONOMI.INDEX FUND** - a \"Passive\" - Coin Traded Fund (CTF). This fund operates on special rules, variables that manage the fund through automation. This Found will be the fastest available to investors at launch in Q4 2016 - The ICONOMI.PERFORMANCE FUND - an \"\nActive\"\n- **Coin Managed Fund (CMF)**, Operated by and managed by best investors. This fund will be invitation only available. If you invest in ICO you will get you invitation for free. I bet is worth its price. Those found will be carefully managed by ICONOMI experts and will provide best profits available.\n\nGraphs shows that volume of alt coins is rising heavily and will move up. Without ICONOMI founds many investors will probably lose cash on market, while rypto currency market will rise as whole. **If buy some ICO shares you will get dividends forever as share holder.**\n Soon real professional traders will come to cryptocurrency and you as investor in order to get big profits will have to use service of ICONOMI. \n\nPersonally I have invested in ICO and believe that **ICONOMI is future of crypto trading**. Don't miss a chance and invest here:[ico.iconomi.net](ico.iconomi.net) \n\nIf you want invest in ICO: ![](http://i.imgur.com/iqDpTag.png) \n\nOfficial Links:\n \n- [ico.iconomi.net](ico.iconomi.net \"Main site\") \n- [https://www.facebook.com/iconomi.net/](https://www.facebook.com/iconomi.net/ \"Facebook\") \n- [https://twitter.com/iconominet](https://twitter.com/iconominet\"twitter.com\")\n- [https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/](https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/) \n- [https://telegram.me/iconomi](https://telegram.me/iconomi)\n- [https://medium.com/iconominet](https://medium.com/iconominet)\n- [https://iconominet.herokuapp.com](https://iconominet.herokuapp.com)", - "json_metadata": "{\"tags\":[\"cryptocurrency\",\"bitcoin\",\"profit\",\"altcoin\"],\"image\":[\"http://i.imgur.com/FLe0WeF.jpg\",\"http://i.imgur.com/s6Aeke2.jpg\",\"http://i.imgur.com/RX0JK1z.jpg\",\"http://i.imgur.com/iqDpTag.png\"],\"links\":[\"ico.iconomi.net\",\"https://www.facebook.com/iconomi.net/\",\"https://twitter.com/iconominet\\\"twitter.com\\\"\",\"https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/\",\"https://telegram.me/iconomi\",\"https://medium.com/iconominet\",\"https://iconominet.herokuapp.com\"]}", - "last_update": "2016-09-15T19:47:00", - "created": "2016-09-15T19:47:00", - "active": "2016-09-15T19:47:00", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 155925481, - "abs_rshares": 155925481, - "vote_rshares": 155925481, - "children_abs_rshares": 155925481, - "cashout_time": "2016-09-16T19:47:00", - "max_cashout_time": "2016-09-29T19:47:00", - "total_vote_weight": "719051331038101", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "szklaneczka", - "root_permlink": "iconomi-why-we-need-found-management-explained-on-graphs", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961225, - "author": "newsfeed", - "permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", - "category": "newsfeed", - "parent_author": "", - "parent_permlink": "newsfeed", - "title": "Rangers' record in one-run games nearing truly historic level", - "body": "The Texas Rangers are 33-10 (.767) in one-run games this season. This would stand as a modern record for winning percentage in one-run games, besting the 2012 Orioles, who were 29-9 (.763).\n\n

http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815

\n\nBut if we dig deep into the archives of baseball history, we learn that this is actually the best record since the 1890 Brooklyn Bridegrooms, who were 14-4 (.778) in one-run games en route to an overall 86-43 (.667) record and the National League pennant.\n\n**Source / Read More...** sportingnews.com \n\n
\n\n
\n\n**NEWS FEED** \n*Get the latest headlines from around the world right on your Steemit Feed! With @newsfeed you always stay in the know about all sorts of topics ranging from Politics & Finance to Sports*\n\n**Currently In Beta**\n*Full news feed from hand picked creditable sources from all sides of the political and social realm. Although not fully operational, posts will be random while testing BUT do have real headlines!*", - "json_metadata": "{\"tags\":[\"newsfeed\",\"news\",\"sports\",\"rangers\",\"baseball\"],\"users\":[\"newsfeed\"],\"image\":[\"http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815\",\"https://ipfs.pics/ipfs/QmUo1EuVPSs3prLRdJH95Lg97vyvzSfhH6srZH5bqRh7p6\"],\"links\":[\"http://www.sportingnews.com/mlb/news/texas-rangers-record-in-one-run-games-brooklyn-bridegrooms/irlcvzvv8fui1vgogevkmomch\\n\"]}", - "last_update": "2016-09-15T19:46:30", - "created": "2016-09-15T19:46:30", - "active": "2016-09-15T19:46:30", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 151513711, - "abs_rshares": 151513711, - "vote_rshares": 151513711, - "children_abs_rshares": 151513711, - "cashout_time": "2016-09-16T19:46:30", - "max_cashout_time": "2016-09-29T19:46:30", - "total_vote_weight": "698707196688679", - "reward_weight": 9354, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "newsfeed", - "root_permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 0, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961226, - "author": "anton333", - "permlink": "origami-part-11-the-model-of-skeleton-hands", - "category": "art", - "parent_author": "", - "parent_permlink": "art", - "title": "Origami Part 11, the model of Skeleton hands.", - "body": "\n

Model of Skeleton hands,without scissors and glue.

\n1


\n2


\n\n


\n

I need a piece of paper.

\n3


\n4


\n5


\n6


\n7


\n1


\n

Part 1 Part 2 Part 3 Part4 Part5 Part6 Part7 Part8 Part9 Part10

\n", - "json_metadata": "{\"tags\":[\"art\",\"photography\",\"origami\"],\"image\":[\"https://s18.postimg.org/fi4tfvrgp/image.jpg\",\"https://s9.postimg.org/kn7ogredb/image.jpg\",\"https://s10.postimg.org/nnna3pxp5/image.jpg\",\"https://s12.postimg.org/dltyd50wd/image.jpg\",\"https://s12.postimg.org/qwsf7bs99/image.jpg\",\"https://s3.postimg.org/7p1m66f4j/image.jpg\",\"https://s22.postimg.org/4388u7yoh/image.jpg\",\"https://s14.postimg.org/qo99yko5t/image.jpg\"],\"links\":[\"https://postimg.org/image/byivq2oqt/\",\"https://postimage.org/index.php?lang=russian\",\"https://postimg.org/image/ivepluv0b/\",\"https://postimg.org/image/efv1n0qmt/\",\"https://postimg.org/image/u9lgfmvnt/\",\"https://postimg.org/image/gzhee9knd/\",\"https://postimg.org/image/gwtumvm6n/\",\"https://postimg.org/image/55ifcrhhp/\",\"https://postimg.org/image/4cbh56p1p/\",\"https://steemit.com/art/@anton333/origami-start-with-the-simplest\",\"https://steemit.com/art/@anton333/origami-part-two-do-a-swan\",\"https://steemit.com/art/@anton333/origami-part-3-the-model-of-a-mouse\",\"https://steemit.com/art/@anton333/origami-part-4-the-model-of-a-rose-petals\",\"https://steemit.com/art/@anton333/origami-part-5-the-model-of-master-yoda\",\"https://steemit.com/art/@anton333/origami-part-6-the-model-of-eagle\",\"https://steemit.com/art/@anton333/origami-part-7-the-model-of-dagger\",\"https://steemit.com/art/@anton333/origami-part-8-the-model-of-spider\",\"https://steemit.com/art/@anton333/origami-part-9-the-model-of-tooth\",\"https://steemit.com/art/@anton333/origami-part-10-the-model-of-flower\"]}", - "last_update": "2016-09-15T19:46:30", - "created": "2016-09-15T19:46:30", - "active": "2016-09-15T19:46:30", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 3377256926, - "abs_rshares": 3377256926, - "vote_rshares": 3377256926, - "children_abs_rshares": 3377256926, - "cashout_time": "2016-09-16T19:46:30", - "max_cashout_time": "2016-09-29T19:46:30", - "total_vote_weight": "15561709573411957", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "anton333", - "root_permlink": "origami-part-11-the-model-of-skeleton-hands", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961089, - "author": "vitaly-lvov", - "permlink": "crowdsales-monitor-august-2016", - "category": "cyberfund", - "parent_author": "", - "parent_permlink": "cyberfund", - "title": "Crowdsales Monitor - August 2016", - "body": "\n

Mountly recap of blockchain crowdsales

\n


\n

CLOSED CROWDSALES

\n

BlockPay 

\n

Aimed at deeper integration with POS terminals and payments between counterparties.
\nA preliminary Initial Coin Offering finished on 4 September, where BlockPay sold 5% of the 100-million stock of BLOCKPAY tokens released on the BitShares blockchain. Future owners will receive dividends from transaction fees paid to BlockPay.
\nThe pre-ICO was done in 3 stages: 

\n
    \n
  • 1st — exchange of OPENPOS for BLOCKPAY at the rate of 1.2 to 1 (fund of 600,000 tokens) 
  • \n
  • 2nd — sale of BLOCKPAY at the price of 0.000288 BTC (fund of 1.4 mln tokens) 
  • \n
  • 3rd — sale of BLOCKPAY at the price of 0.000360 BTC (fund of 3 mln tokens) 
  • \n
\n

The distribution of tokens is as follows: 

\n
    \n
  • 1.5% — marketing for pre-ICO
  • \n
  • 5% — pre-ICO
  • \n
  • 0.9% — early adopters
  • \n
  • 1.8% — advisors and partners
  • \n
  • 3.6% — marketing
  • \n
  • 7.2% — developers reward
  • \n
  • 80% — upcoming ICO in 2017
  • \n
\n

The platform development plan:

\n
    \n
  • The release of BlockPay \"S\" app for Android and payment terminals Odoo
  • \n
  • BlockPay integration with leading payment terminals
  • \n
  • API Development
  • \n
  • The addition of a large number of fiat gateway exchanges and Escrow Services
  • \n
  • The addition of anonymous transactions function
  • \n
  • The development and release of the ECHO messenger for Android and iOS
  • \n
  • Development of the first version of the BlockPay \"S\" app for iOS
  • \n
\n

The project looks interesting, given the fact that they claim an integration with the ERP and CRM systemOdoo used by 60 thousand companies. The only disturbing thing is the absence of an open source software, and this spoils the whole picture. Transaction payments fee and, consequently, planned cash flow for investors are not sufficiently explained either. It should be kept in mind that this project is centralised, i.e. it belongs to the class of projects that demand trust in the founders and, correspondingly, require a thorough audit of operating activity.
\nCrowdsale summary:

\n
    \n
  • Dates: 20 August 2016 — 4 September 2016
  • \n
  • Raised: ~ $657,000 (1096 BTC)
  • \n
  • Tokens sold: 3.92 mln
  • \n
  • Total number of tokens: 100 mlnДаты проведения: 20 августа — 4 сентября 2016 года
  • \n
\n

For detailed information on the crowdsale, see: https://blockpay.ch/newsroom/investor-relations/blockpay-reserves/
\nFor useful links and more information, go to https://cyber.fund/system/BlockPay 

\n

AntShares
\n

\n

The project is interesting primarily due to the fact that it will be implemented using the Hyperledger platform. There are no other features that distinguish it from a number of similar blockchain projects, except that it is aimed specifically at the Chinese audience. 

\n

Crowdsale summary: 

\n
    \n
  • Dates: 8 August 2016 — 7 September 2016
  • \n
  • Raised: ~ $ 3.4 mln (5582 ~ BTC)
  • \n
  • Tokens sold: 20 mln
  • \n
  • Total number of tokens: 100 mln
  • \n
\n

For detailed information on the crowdsale, see: www.antshares.org/ico
\nFor useful links and more information, go to https://cyber.fund/system/AntShares

\n

Elastic project
\n

\n

The crowdsale is finished. The full description of the history of the ICO and the risks associated with investing in this asset may be found in the previous issue of Blockchain Boom. 

\n

Crowdsale summary:

\n
    \n
  • Dates: 29 February 2016 — 19 August 2016
  • \n
  • Raised: ~ $416,000 (~ 710 BTC), the exact amount is not available, because in course of funding escrow addresses changed several times and the movement of funds between them was extremely nontransparent.
  • \n
  • Tokens sold: 20 mln
  • \n
  • Total number of tokens: 5 mln XEL
  • \n
\n

The crowdsale took place here: http://www.elastic.pro/donations
\nFor useful links and more information, go to https://cyber.fund/system/Elastic 

\n

CURRENT CROWDSALES

\n

Iconomi
\n

\n

The aim of the project is the creation of management platform for crypto investment funds and the launch of two associated investment funds.
\n

\n

The subject of the crowdsale is ICN tokens representing 100% of Iconomy Open Fund Management Platform (OFM). The total number of ICN tokens to be sold is 85 million. 100 million of ICN will be released on the Ethereum platform within 10 days after the end of the crowdsale. Tokens will be distributed among investors proportionally to their contributions taking into account bonuses for early participation (+ 15% in the first week, + 10% in the second week, + 5% in the third week).
\nPrecise information on the distribution of ICN tokens is missing on the official website. According to the information in the related Bitcointalk thread, the tokens will be distributed as follows: 

\n
    \n
  • 85% - to be sold in the crowdsale
  • \n
  • 8% - founders reward
  • \n
  • 3% - reserve for the future team
  • \n
  • 2% - advisers reward
  • \n
  • 2% - marketing and bounty
  • \n
\n

Money raised from the crowdsale will be used as follows: 

\n
    \n
  • 62% - development
  • \n
  • 25% - operations
  • \n
  • 9% - legal expenses
  • \n
  • 4% - marketing
  • \n
\n

ICN owners will receive weekly dividends in ETH from all sources of Iconomi income, such as: 

\n
    \n
  • management fees
  • \n
  • rewards for fund management efficiency
  • \n
  • fees received from the funds registered with OFM
  • \n
\n

ICN holders will be able to vote on a number of matters related to the development of OFM, including choosing of the \"platform operator\" (currently, Cashila OOD s.r.o.) 

\n

The development plan: 

\n
    \n
  • 4Q 2016 – the launch of the open investment fund ICONOMI.INDEX, which will follow the likely development of the cryptocurrency market and will be freely traded on the market;
  • \n
  • 4Q 2016 – the launch of the closed investment fund ICONOMI.PERFORMANCE, which will focus on riskier investments in projects at an early stage of development
  • \n
  • 2017 – the launch of the platform for management of investment funds (OFM), the transfer of ICONOMI.INDEX and ICONOMI.PERFORMANCE funds to the platform.
  • \n
\n

Blind spots: 

\n
    \n
  • The currency is not specified for evaluation of the raised funds for further distribution of ICN tokens among investors.
  • \n
  • Will a part of the funds received during the crowdsale be allocated to ICONOMI.INDEX and ICONOMI.PERFORMANCE and, if so, will ICN holders receive relevant shares in these funds?
  • \n
  • There is no information as to the amount and frequency of fees charged from funds managed on OFM.
  • \n
  • The functions of the \"platform operator\" is described but very vaguely, as well as the process of further decision making involving ICN holders.
  • \n
\n

Red flags:

\n
    \n
  • There is no description of technical solutions for the project's tasks
  • \n
  • No program code is published
  • \n
\n

Crowdsale summary:

\n
    \n
  • Dates: 25 August 2016 — 29 October 2016
  • \n
  • Total number of tokens: 100 mln ICN
  • \n
  • Tokens distribution: 85% will be sold in the crowdsale, 15% team reward and marketing
  • \n
  • Minimum crowdsale goal: 2 000 BTC (~ $1.5 mln)
  • \n
  • Raised so far: ~ $3.6 million (2,200 BTC + 71,000 ETH + 1.2 mln LSK + 63,000 USD + 940,000 EUR) from more than 1300 participants.
  • \n
\n

The crowdsale takes place here: https://ico.iconomi.net/
\nFor useful links and more information, go to https://cyber.fund/system/Iconomi 

\n


\nDeClouds
\n

\n

The main focus of the project is providing the opportunity for trading in precious metals.
\nThe network will be implemented as follows: 

\n
    \n
  • Proof-of-Stake consensus algorithm
  • \n
  • Decentralised Exchange
  • \n
  • Cloud-based blockchain
  • \n
\n

Apart from a patently weak 8-page paper and a number of publications on the blog, no detailed information about the project was found via official channels. Program code is also not disclosed. Nevertheless, developers promise to launch the network on 31 October 2016.
\nDuring the crowdsale, bonuses from 20% to 5% will be distributed, depending on the time of investment.
\n

\n

Crowdsale summary: 

\n
    \n
  • Dates: 6 August 2016 — October 6, 2016
  • \n
  • Total number of tokens: 100 mln
  • \n
  • Tokens distribution: 80% will be sold to the crowdsale participants, 10% is a team reward and 10% are marketing expenses
  • \n
  • Raised so far: ~ $179,000 (294 BTC)Даты проведения: 6 августа — 6 октября 2016 года
  • \n
\n

The crowdsale takes place here: https://ico.declouds.com/
\nFor useful links and more information, go to https://cyber.fund/system/DeClouds

\n


\nHong
\n

\n

Investments are made by transferring ETH to the Etherium contract.
\n

\n

The Fund is formed for the period of 4 years, 3 of which are put for investing while the last year is for the exit. 80% of the money received as a result of fund liquidation will be distributed among Hongcoin holders, 20% among managers. Annual 2% fee to be charged for operational expenses of the managing organisation. The fee allocation will be defined by voting. The fund can be \"frozen\" at any time by the decision of 50% of shareholders.

\n

As a purpose for investment, 3 directions are selected: disruptive innovation, creativity and educational projects. Hong founders believe that the blockchain technology will most significantly impact these fields of human activity.
\nThe fund operates according to the following scheme: 

\n
    \n
  • Fund managers review projects and make a decision on whitelisting them;
  • \n
  • Hongcoin holders vote for the allocation of funds for investments within 15 days (the quorum of 20% is required for the approval of an investment);
  • \n
  • Fund managers prepare due-diligence and investment strategy for the project and provide any possible assistance in the development and promotion of the project;
  • \n
  • When the fund's term comes to an end, the managers carry out the exit process.
  • \n
\n

A company will be established for the management of raised funds, but it has not been determined yet in which jurisdiction. There is no information on the management parties available on the website nor through any the official channels.
\nThe crowdsale takes place in several stages, with 50 mln Hongcoin sold at each stage: 

\n
    \n
  • 50 mln Ħ – 1.00 ETH за 100 Ħ
  • \n
  • 50 mln Ħ – 1.05 ETH за 100 Ħ
  • \n
  • 50 mln Ħ – 1.10 ETH за 100 Ħ
  • \n
  • 50 mln Ħ – 1.15 ETH за 100 Ħ
  • \n
  • 50 mln Ħ – 1.20 ETH за 100 Ħ
  • \n
\n

As long as the crowdsale is going on, investors will have the opportunity to change their mind and withdraw invested funds. After the crowdsale is finished, the exit opportunity will be closed.
\nCrowdsale summary: 

\n
    \n
  • Dates: 29 August 2016 — 29 October 2016 (may be extended until 28 November)
  • \n
  • Total number of tokens: to be determined by the end of the crowdsale
  • \n
  • Tokens distribution: 100% will be sold in the crowdsale
  • \n
  • Crowdsale goal: at least 1,575,000 ETH (~ $19 mln), the maximum is 2.7 mln ETH (~ $33 mln)
  • \n
  • Raised so far: ~ $6,600 (11 BTC).
  • \n
\n

The crowdsale takes place here: http://www.hongcoin.org/
\nFor useful links and more information, go to https://cyber.fund/system/Hong
\n

\n

Judging by the current investments dynamics, the project will not succeed.

\n


\nPLANNED CROWDSALES 

\n


\nSynereo
\n

\n

One year after a crowdsale that raised $126,000 aimed at the development and launch of a decentralised social network, the project team announced the second funding round and the launch of the network'salpha version. Two funding campaigns start at the same time in September: the sale of Synereo Ltd shares on BnkToTheFuture and of AMP tokens.
\nFollowing the first crowdfunding, the distribution of AMP was as follows:

\n
    \n
  • 2.72% (45.8 mln) — sold during the first crowdsale
  • \n
  • 11.9% (200 mln) — user rewards
  • \n
  • 8.92% (150 mln) — reserve for the content creators
  • \n
  • 11.9% (200 mln) — founders' reward
  • \n
  • 13.68% (230 mln) — bounty program
  • \n
  • 50.61% (850.4 mln) — next funding
  • \n
\n

Synereo revised their plans and now aim to develop a protocol similar to the SAFE Network, which will include the following components:

\n
    \n
  • Proof-of-Stake consensus algorithm
  • \n
  • Distributed network of nodes connected on the principle of \"shards\", where blockchain is divided into many small segments
  • \n
  • Distributed repository
  • \n
  • Smart contracts
  • \n
  • Social layer (a social network motivated according to the Attention Economy Model)
  • \n
  • The possibility of building distributed apps
  • \n
\n

The grant program for dApps developers Project 11 with a budget of 1.11 million AMP is already in operation.
\n

\n

The popular website CoinMarketCap misleadingly states current Synereo capitalisation at about $10-13 million, which is not true because it is only the cost of 62,580,000 AMP (3.72%) in circulation on the market. According to cyber • Fund's calculations, with the total of 1.68 billion tokens, Synereo's real capitalisation reaches $300 million.

\n

It has not been disclosed yet how many tokens will be put up for sale, but we can assume that the minimum amount claimed by Synereo is about $130-140 million in case the entire reserve is sold, which is 850.4 mln AMP. This is a very ambitious plan, taking into account current distribution and the market price of tokens. Besides, it should be kept in mind that after the launch of the network, additional 5% of AMP will be emitted every year. In my opinion, they should sell the whole reserve without fixed prices and with token distribution proportional to investments. It will provide normal distribution and a fair market capitalisation.

\n

Despite the presence of a strong team with an excellent technological vision, we consider the evaluation of $300 mln inadequate.

\n

Crowdsale summary:

\n
    \n
  • Dates: September 2016
  • \n
  • Total number of tokens: 1.68 billion AMP
  • \n
  • Number of tokens for sale: unknown, probably 850.4 mln
  • \n
  • Crowdsale goal: presumably ~ $130-140 million
  • \n
\n

The crowdsale takes place here: https://www.synereo.com/sale
\nFor useful links and more information, go to: https://cyber.fund/system/Synereo

\n


\n

Golem Project
\n

\n

The aim of the project is to adopt any customer personal computer for the work that is done today by servers, computing farms or supercomputers. 

\n

As the result, Golem Net will become a truly decentralised network where users' summarised machine power will provide any amount of hardware resources required. At the moment, there is no document explaining how exactly it would work. We hope that such paper will appear before the crowdsale. 

\n

The Golem App will connect to the network from a local device to share computing power and deliver tasks for calculations.
\nThe micropayment system based on Ethereum will provide the incentivising component distributing rewards and processing transactions. Transaction fee will be set at 5%. 

\n

Currently, the network can work only with public data because the apps require direct access to data.
\nDevelopers announced the crowdsale on their blog

\n

Golem Network Tokens (GNT) are the shares that give the right to receive part of the revenue generated by Golem Network. 

\n

Crowdsale start date: September 2016. 

\n

Token distribution: 

\n
    \n
  • Total number of tokens: unknown
  • \n
  • 82% — crowdsale
  • \n
  • 6% — founders reward
  • \n
  • 12% — developer company reward
  • \n
  • Estimated amount of funds: a minimum of 100,000 ETH, a maximum of 650,000 ETH
  • \n
\n

For detailed information on the project, see http://golemproject.net/slides/index.html#/14
\nFor useful links and more information, go to https://cyber.fund/system/Golem
\n
\n

\n

SingularDTV
\n

\n

The ultimate goal of the project is the creation a thriving industry of decentralised entertainment.

\n

What they promise: 

\n

● SINGULAR – a TV series.
\nThe S-DTV flagship product is an epic sci-fi adventure TV series about decentralisation, scaling and emergence of intelligent systems that lead the humanity to a technological singularity. 

\n

● Documentary division
\nThis division will create full-length and short-length documentary series and movies about the blockchain, decentralisation and Ethereum. 

\n

● S-DTV rights management platform
\nAn app that will use smart contracts for registration and management of digital rights, as well as of income and royalties on intellectual property, namely, movies and television. Deals in the film and TV industry are the most difficult to arrange as they often involve hundreds of individual participants. 

\n

● On-demand video content portal (TVOD)
\nTVOD changes the way people watch entertainment programmes. S-DTV is born to create the TVOD portal for original content distribution, as well as for selected and acquired content. In addition to developing an interface on IPFS, S-DTV will use third-party portals such as GooglePlay, AppleTV iTunes and Vimeo to build a larger audience in a short time.

\n

Minimum investment goal – $500,000.

\n

Desirable funding – $7,5 mln.

\n

According to S-DTV documentation, Swiss company MME has developed a new, innovative organisational structure specifically for S-DTV: the Centralised Organised Distributed Company (CODE). It is the Swiss company, therefore, that will manage the finances and reinvest the income, while tokens will be used for paying out the dividends.

\n

Token distribution: 

\n
    \n
  • 400 mln Singular DTV GMBH
  • \n
  • 100 mln core investors
  • \n
  • 500 mln crowdsale
  • \n
\n

Funds distribution in case if $7,5 mln is raised: 

\n
    \n
  • \"Singular\" season 1 (3 episodes of the mini-series): $3.25 mln
  • \n
  • Documentary division: $0.50 mln
  • \n
  • Development of the rights management platform: $2 mln
  • \n
  • TVOD portal development: $1 mln
  • \n
  • Marketing: $0.50 mln
  • \n
  • Administrative, legal expenses and unforeseen circumstances: $0.25 mln
  • \n
\n

Crowdfunding is planned for September and will likely take place at Devcon2.

\n

The Ethereum and Consensys founder Joseph Lubin is included into the team as CTO.

\n

Unfortunately, in this project tokens only serve for distribution of dividends, and the project is centralised because 40% of tokens belong to Singular DTV GMBH. Another disadvantage is the fact that of the four declared founders/directors, only Zach Lebeau will work full time on the project. He is likely to be engaged in the studio rather than in the platform development; there are also risks associated with SEC.

\n

The main question is the development of the TVOD platform and the rights management platform: there is no understanding as to what kind of team will be working on it, and no technical description at the moment. If both platforms can be really implemented, the project is promising for investment.=

\n

For detailed information about the project, see: https://singulardtv.com/
\nFor useful links and more information, go to: https://cyber.fund/system/SingularDTV
\n

\n

Decent
\n

\n

It is designed for creative people, writers, bloggers, journalists and their fans and followers. The platform enables users to publish any posts, images, video or music content with no restrictions.

\n

Consensus algorithm – Proof-of-Stake.

\n

Decent has three functional roles: 

\n
    \n
  • Authors: content producers, writers, music producers etc.
  • \n
  • Consumers: readers, listeners and viewers
  • \n
  • Publishers: miners
  • \n
\n

Token distribution – 30% via mining and 70% is distributed during the crowdsale, some of them will go to pre-mine funds to be distributed in the following way: 

\n
    \n
  • 10% — DECENT Foundation
  • \n
  • 2% — the Investment fund
  • \n
  • 1,000,000 DCT — campaign bounty
  • \n
  • 3,000,000 DCT — pre-launch marketing programme
  • \n
\n

On the crowdsale page, next to the conditions, we see a message that the project is supported by Google, though it does not correspond to the project's primary activity. Moreover, the current yellow paper ignores many issues such as, for example, how miners would store the content. Decent enters the content distribution market where such projects as Steemit, Synereo and LBRY already operate. 

\n

The crowdsale takes place here: http://sale.decent.ch/
\nFor useful links and more information, go to: https://cyber.fund/system/Decent
\n

\n

FirstBlood
\n

\n

This platform will allow players to bet without intermediaries. The payoff distribution will be also managed via smart contracts.

\n

The eSports betting market holds more than $130 million per year with 30% annual growth rate.

\n

3 monetisation channels:

\n
    \n
  • Matchmaking
  • \n
  • Revenue from the tournament organisation
  • \n
  • Advertising
  • \n
\n

Token will allow: 

\n
    \n
  • Match playing
  • \n
  • Match refereeing and voting for the referee
  • \n
  • Placing tournaments
  • \n
  • Requesting an award from referrals
  • \n
\n

Tokens distribution: 

\n
    \n
  • Crowdsale, 4 weeks, in the first hour 170 tokens for 1 ETH
  • \n
  • 10% to the project founders; these funds will be blocked for 12 months
  • \n
  • 5% will be placed in the platform development fund for the promotion and tournament awards
  • \n
  • 2.5 mln - bounty fund, to be distributed during the crowdsale for advertising and debugging
  • \n
\n

Crowdsale start date: 26 September 2016.

\n

In my opinion, it is an interesting project. The only reservation is that the market is not very vast, albeit actively developing. Besides, the motivation for developers and other market players is not very well thought through. In this regard, central players, who can also use smart contracts and predictions market to confirm the events results, may have an advantage. However, this project may indeed become the market leader on the condition of good community building and active incentivising of referees and the jury. 

\n

For detailed information about the project, see: https://firstblood.io/
\nFor useful links and more information, go to: https://cyber.fund/system/FirstBlood
\n

\n


\nMassNetwork
\n

\n

The three main entities: 

\n
    \n
  • Advertisers
  • \n
  • Websites
  • \n
  • Internet users
  • \n
\n

The basic principle is to follow the industry's trend to monetise customer attention and create a convenient and fair trading platform for all parties involved, including Internet users. Mass allows users to receive instant rewards for web surfing through the built-in p2p infrastructure based on the blockchain. As a result, advertisers will pay users a fair price for their attention and data without intermediaries.
\n

\n

An increasing number of customers are using ad-blocking software. Mass offers a browser extension and a mobile app that can block ads as well as protect personal data. Yet, their primary goal is not blocking but rather improving users' experience with advertising and rewarding them with cryptocurrency to establish a consumer-advertiser relationship and, therefore, reduce the number of ad-block users. Mass will also have a cryptocurrency wallet and blockchain-based payment system.

\n

Crowdsale dates: 6 September — 1 December 2016

\n

Token distribution: 

\n
    \n
  • 70% to the crowdsale participants
  • \n
  • 30% to Mass team members
  • \n
\n

Mass plans to build its own full-blown infrastructure for advertising industry with an internal token. A similar solution has been already introduced to the market – the Brave browser. It blocks default ads and replaces it with incentivising ad materials. The bitcoins received from advertisers are distributed among users, the platform and the endorsing website. In my opinion, if Mass used smart contracts or a proprietary blockchain enabling further token emission to incentivise users and websites, they could compete with bitcoin. However, Mass token works on the bitcoin blockchain, which on the one hand makes it very secure, but on the other, has no advantage over bitcoin per se. In favour of bitcoin are accessibility, recognition, and a more stable price. 

\n

Crowdsale takes place here: https://ico.mass.network/#/?aid=ep6oxa
\nFor useful links and more information, go to: https://cyber.fund/system/MassNetwork

\n

---

\n

All data and calculations are quoted as of 6 September 2016 with bitcoin price at $609. For closed crowdsales evaluation in USD is given using the average token price at the date of closure.

\n

---

\n

Big thanks to: 

\n\n

---

\n

Original was posted in Blockchain Boom

\n


\n", - "json_metadata": "{\"tags\":[\"cyberfund\",\"blockchain\",\"crowdsales\"],\"links\":[\"https://cyber.fund/system/BlockPay\",\"https://cyber.fund/system/BitShares\",\"https://www.odoo.com/\",\"https://blockpay.ch/newsroom/investor-relations/blockpay-reserves/\",\"https://cyber.fund/system/AntShares\",\"http://www.antshares.org/ico\",\"http://www.elastic.pro/\",\"http://www.elastic.pro/donations\",\"https://cyber.fund/system/Elastic\",\"https://cyber.fund/system/Iconomi\",\"https://bitcointalk.org/index.php?topic=1587736.0\",\"https://ico.iconomi.net/\",\"https://cyber.fund/system/DeClouds\",\"https://drive.google.com/open?id=0B8VJa9S_WxSSSHJhN0o0QkVPN1E\",\"https://medium.com/@decloudscom/latest\",\"https://ico.declouds.com/\",\"https://cyber.fund/system/Hong\",\"http://etherscan.io/address/0x9Fa8fA61A10Ff892E4EBCeB7f4e0FC684C2ce0a9\",\"http://www.hongcoin.org/\",\"https://cyber.fund/system/Synereo\",\"https://blog.synereo.com/2015/05/10/amp-distribution-complete-2/\",\"https://blog.synereo.com/2016/08/29/synereos-second-fundraising-campaign-coming/\",\"https://www.synereo.com/alpha/\",\"https://bnktothefuture.com/\",\"https://cyber.fund/system/MaidSafeCoin\",\"https://www.synereo.com/learn-more/\",\"https://github.com/synereo/synereo.github.io/raw/master/whitepapers/synereo.pdf\",\"https://www.synereo.com/developers/\",\"http://coinmarketcap.com/assets/synereo/\",\"http://omnichest.info/lookupsp.aspx?sp=39\",\"https://www.synereo.com/sale\",\"https://cyber.fund/system/Golem\",\"http://golemproject.net/doc/GolemNanopayments.pdf\",\"https://blog.golemproject.net/golem-network-token-gnt-sale-220c2a732f9#.fdn8hljmq\",\"http://golemproject.net/slides/index.html#/14\",\"https://cyber.fund/system/SingularDTV\",\"https://singulardtv.com/\",\"https://cyber.fund/system/Decent\",\"http://sale.decent.ch/\",\"https://cyber.fund/system/FirstBlood\",\"https://firstblood.io/\",\"https://ico.mass.network/#/\",\"https://ico.mass.network/#/?aid=ep6oxa\",\"https://cyber.fund/system/MassNetwork\",\"https://steemit.com/@creator\",\"https://steemit.com/@coinfox\",\"http://blockchainboom.coinfox.info/\"]}", - "last_update": "2016-09-15T19:44:18", - "created": "2016-09-15T19:30:36", - "active": "2016-09-15T19:44:18", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": "4649989991534", - "abs_rshares": "4649989991534", - "vote_rshares": "4649989991534", - "children_abs_rshares": "4649989991534", - "cashout_time": "2016-09-16T19:34:50", - "max_cashout_time": "2016-09-29T19:30:36", - "total_vote_weight": "9916447926886758335", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 10, - "root_author": "vitaly-lvov", - "root_permlink": "crowdsales-monitor-august-2016", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961211, - "author": "agartha", - "permlink": "i-hack-monero-xmr", - "category": "steemit", - "parent_author": "", - "parent_permlink": "steemit", - "title": "I hack Monero (Xmr) ?", - "body": "I think I just hacked Monero lol it's a joke but the security too thou \n\nLook at this! \n\n\nhttps://www.facebook.com/agartha.white.3/posts/179267779175393", - "json_metadata": "{\"tags\":[\"steemit\",\"hack\",\"monero\",\"bitcoin\",\"lol\"],\"links\":[\"https://www.facebook.com/agartha.white.3/posts/179267779175393\"]}", - "last_update": "2016-09-15T19:44:00", - "created": "2016-09-15T19:44:00", - "active": "2016-09-15T19:44:00", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 64358062, - "abs_rshares": 64358062, - "vote_rshares": 64358062, - "children_abs_rshares": 64358062, - "cashout_time": "2016-09-16T19:44:00", - "max_cashout_time": "2016-09-29T19:44:00", - "total_vote_weight": "296794399420393", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "agartha", - "root_permlink": "i-hack-monero-xmr", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961208, - "author": "varda", - "permlink": "my-day-hospital", - "category": "story", - "parent_author": "", - "parent_permlink": "story", - "title": "My day hospital", - "body": "\n

  In the morning, at 5 am when the moon completes his round, the alarm rings, my deepest sleep I wake up painfully. Kéops my cat starts singing tour and stops only when he filled his mess tin. Sweety then, the cat of my son jumps on the furniture in the kitchen and also claimed his bowl. Kashmir him not to come after me, until I make him hugs.

\n

\n

\n

\n

 A small cup of coffee and I'm up for the day. After my shower, I have to feed the fish pond and two hens, they are waiting for me impatiently for me to release them from their cages.

\n

\n


\n

\n


\n

 6:15, I start my bag on her arm, my water bottle and my biscuit for lunch. On the road I am alone, few vehicles I meet. Great to run your car on a deserted road. In the winter when it snowed, I am the first to make tracks in the whiteness of the snow grows like cotton wool, sometimes, crazy beyond me and skids, it is an adrenaline rush. In summer the sun rises gives the sky a color of red sweetness, yellow, orange. In autumn, the trees begin to change color, it is a season because I love the beauty of trees is unique. 

\n

\n


\n

Here I come down the street or is my workplace, hospital, regional hospital, the CHR. Vehicles coming after one another because we start at 7am. The staff is found, speak, tells their evening then everyone goes to the same place: the time clock, control object of our hours worked.

\n

\n


\n

 In the ladies locker room, it gets held: white jacket with blue and green patterns representing the logo of the institution, blue pants with various pockets which we do not serve! 

\n

\n


\n

We arrive in our service, mine is the neurological rehabilitation service: we give up (or so) of people who have a stroke, an accident with neurological trauma, people who have multiple sclerosis or Guillain barred and other chronic diseases whose name is almost unknown. 

\n

\n


\n

\n


\n

\n


\n

We start our day with a report on each patient last night, we have 20 in service. After beginning the nursing: we make the toilet of the patient who is totally dependent. We get up in the chair. For others, we must educate, continue the actions he has learned with the therapist in the individual care, the patient should regain maximum independence so they can go home and take care only . It's a job that can last from 3 months to 6 months beyond, we can not do anything for them. 

\n

\n


\n

Headline in this service is: you come to bed but you leave again walking. 

\n


\n

Sometimes, we fail either because the patient does not want a return to autonomy, or because the patient is too ill. We give the same chance to everyone, rich, poor, alcoholic, drug addict, young or old. 

\n


\n

The management of a patient goes from shaving the beard of a man to the presentation on the toilet, the room arrangement the carefully tended beds. 

\n


\n

Lunch arrived around 8:30 am, few patient is in the dining hall for breakfast, other unfinished eat in bed Logistical assistance serves meals that are different if the patient is diabetic, diet, dieters, old, or in solid supply resumption. You should know that when the patient has had a stroke, a stroke, swallowing is absent, which means that if the patient eats a sandwich, but he swallows the bread goes in the bronchial tubes and not in the stomach, giving a false swallowing, bronchi become infected and it's a disaster. So this patient who made false swallowing should eat while cream consistency and drink thickened liquid. Which is not very good but I admit it must go through these stages in order to re-eat a day normally. 

\n


\n

Physiotherapists arrive at 9am and leave a 17h, occupational therapists also. There is also a neuropsychologist, a speech therapist and all do work that allows the patient to regain maximum independence, which means that the patient all day is busy. Visitors can come between 14:30 and 19:30. 

\n


\n

After lunch, we continue our work, when all is well, we finish around 10:30 or 11am but sometimes it is noon we are still in the rooms. 

\n


\n

In terms of handling, the entry of the patient, it is usually in bed or in a wheelchair with a right hemiplegia or left, some have forgotten that they had half a disabled body, so it must withstand and no wear and show him how to do with one leg to go from wheelchair to bed and vice versa. Others are completely invalid, they know not move neither arms nor legs, and for those, or we wear them either we lift them with a forklift. 

\n


\n

During dinner, we feed the disabled and we encode our care in the computer.

\n


\n

 Around 13h, we are a few naps after going on the toilet. Sometimes we have a problem in the pants, oops! When everyone is changed to bed, we have a service change ratio and the time, the hour of the end of our service is lagging. At 14h is the start of the morning shift. For my part, I take a good shower and I take the way home or waiting for my cats and my dog makes me a big party. 

\n


\n

We must not believe that the nursing profession is simple, each service is different and you can not compare the care of each other. 

\n


\n

I hope I have not bothered you with this long text, I wish you a good day to you all.     

\n", - "json_metadata": "{\"tags\":[\"story\",\"health\"],\"image\":[\"https://www.steemimg.com/images/2016/09/15/DSCN0477faad0.jpg\",\"https://www.steemimg.com/images/2016/09/15/keops0029612b.jpg\",\"https://www.steemimg.com/images/2016/09/15/Au-sommet81f7b.jpg\",\"https://www.steemimg.com/images/2016/09/15/16e3c4.jpg\",\"https://www.steemimg.com/images/2016/09/15/Photo0224b24a.jpg\",\"https://www.steemimg.com/images/2016/09/15/d85917d4a45b3d581b5f40d1d7a7504a3bb1e.jpg\",\"https://www.steemimg.com/images/2016/09/15/chr841bd.jpg\",\"https://www.steemimg.com/images/2016/09/15/DSCN1513-Copiee7a4d.jpg\",\"https://www.steemimg.com/images/2016/09/15/Capture2bb0b8.jpg\",\"https://www.steemimg.com/images/2016/09/15/370086-1f7d83.jpg\",\"https://www.steemimg.com/images/2016/09/15/Capturec0ccc.jpg\",\"https://www.steemimg.com/images/2016/09/15/souleve-malade-foldyadb08.jpg\"]}", - "last_update": "2016-09-15T19:43:54", - "created": "2016-09-15T19:43:54", - "active": "2016-09-15T19:43:54", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 1202120459, - "abs_rshares": 1202120459, - "vote_rshares": 1202120459, - "children_abs_rshares": 1202120459, - "cashout_time": "2016-09-16T19:43:54", - "max_cashout_time": "2016-09-29T19:43:54", - "total_vote_weight": "5542136534307198", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "varda", - "root_permlink": "my-day-hospital", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961197, - "author": "ejaredallen", - "permlink": "wanna-see-something-cool", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Shot From Around The Block On An iPhone!", - "body": "\n

\n

Nature

\n

I haven't stopped and taken a picture of the beauty around me in a long time. It's funny how we can get so caught up in work and the business of a crazy life and miss the simply beauty along the way. Sometime you've just got to stop and smell the roses; and while you're there, take a picture!

\n

\n

These aren't roses, I know: they're wild flowers. They don't get the nurture and care that roses do, and yet they are provided for and they bloom into beautiful blossoms in their own time. They have a harder life than others, and that's how we humans are as well. Some of us were well taken care of growing up and were treated like roses, while others were left in the field to grow up alone and without the love and care we should have had. But we are all beautiful in our own ways and if we survive long enough, we will blossom into something spectacular.

\n

\n

Colorado mountain rivers

\n

When the snow on the tops of the mountains melt, it feed the rushing rivers that carve their way down the mountainside. The climbing is excellent, the whether and the views are truly gorgeous, but something about the rivers rushing through the mountains draws you in. There is a memorization about the brave rivers unafraid of the mountains and simply rushing on by recklessly.

\n

\n

Mississippi at sunset

\n

Sometimes the world just slows down and magic happens. This was one of those times. On the night before my sister's wedding in Tupelo, Mississippi the sky exploded in color. What a calm reassurance before a monumental event: the approval stamp of God upon the sanction of their marriage.

\n

\n

Hundreds of years old Indian hieroglyphs in Arizona

\n

This was an incredible hike in the Arizona mountain ranges to discover a place where the Apache Indians, or perhaps some other tribe had lived hundreds of years ago!

\n

\n

Uganda, Africa at twilight, from a moving bus

\n

Africa is always an adventure, but in 2015 we took a safari on the northern rim and caught this shot on the way back to the lodge. I love how the beauty of the world is unique in its diversity from place to place, even across the Atlantic.

\n

\n

This is one of my favorite shots. I don't remember where I took it or when, but the colors, the bliss, the peacefulness of this field of flowers was stunning. I'm glad I was able to capture an image of its beauty to remember it by. And to think, all of this beauty was made by God in a second! His power to create a world is amazing and perfect in every way. We get to see His marvelous creation every day! 

\n

Follow me @ejaredallen for more pictures and great content!

\n", - "json_metadata": "{\"tags\":[\"photography\",\"pictures\",\"art\",\"steemit\",\"travel\"],\"image\":[\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-986x1024-289x300.jpeg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-3-1024x768-300x225.jpeg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6440-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6031-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_5829-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/2015-07-13-06-37-59-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_7281-1024x1024-300x300.jpg\"],\"links\":[\"https://steemit.com/@ejaredallen\"]}", - "last_update": "2016-09-15T19:43:33", - "created": "2016-09-15T19:42:24", - "active": "2016-09-15T19:43:33", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 54846770, - "abs_rshares": 54846770, - "vote_rshares": 54846770, - "children_abs_rshares": 54846770, - "cashout_time": "2016-09-16T19:42:24", - "max_cashout_time": "2016-09-29T19:42:24", - "total_vote_weight": "252932614230673", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "ejaredallen", - "root_permlink": "wanna-see-something-cool", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961189, - "author": "cwbrooch", - "permlink": "russian-roulette-a-memoir-part-2-under-the-table-tactics", - "category": "story", - "parent_author": "", - "parent_permlink": "story", - "title": "Russian Roulette - a Memoir [Part 2] - Under-the-table Tactics", - "body": "\n

This is part 2 of my Memoir.  Missed Part 1? Click here.
\nDon't know what's going on? Start from the beginning here.

\n

If you like what you're reading, follow me @cwbrooch for more craziness. if you love what you're reading recommend me to other peeps :) feedback is also very appreciated.

\n

\n

Russian Roulette - A Memoir of my Two Years in Moscow - Part 2 - Under the Table Tactics

\n

In this part of my memoir I am going to attempt to describe the dark side of Moscow. All stories depicted here either happened directly to people I knew, or were described to me as  a it's-russia-get-used-to-it anecdote.
\nYes, I will be talking about corruption and paying people under the table for things but bear in mind that even though it seems like a common practice definitely not all people do that and not all people experience the phenomenon.

\n

A ROUTINE POLICE CHECK 

\n

It is said that it is extremely wise to keep 2k-5k Rubles (about 28-68 Euro, 30-77 Dollars, 23-58 Pounds) in your registration papers at all times. They tend to disappear when you get your documents back from the officer... If one does not have such loose change, the guy tends to make one's life difficult. \"You were speeding\", \"You didn't stop at the STOP sign\", \"You're light is out\" etc. Driving is another interesting phenomenon in Moscow. You might think that since the metro is so packed, the streets will be empty. On the contrary, but I will not get into that right now as that makes a completely different post...  However, what I will tell you is  how one of my students passed her driving exam, which leads us to...

\n

PAYING TO PASS AN EXAM

\n

After her first failed attempt, my student looked at her instructor/examiner and asked: \"Could you please tell me what I did wrong, so I can work on it in the future?\" He stared back at her surprised and announced: \"Well, you didn't pay me extra, what do you expect?!\" At that point even I was shocked - \"So people openly tell you they want money?!\" \"Get used to it Kasia, It's Russia....\"
\nNeedless to say, she was forced to pay the second time around and surprise, surprise, she passed....
\n
\nI taught English in a company. I came one week, and saw that everyone was kind of in a rush and slightly agitated. I asked what the problem was and they said they were waiting for an audit. I remember wishing them good luck... One lady looked at me and smiled \"We paid the guys to look the other way, it will be fine!\" I didn't even bother to comment as I had aleady known there was no point...

\n

GETTING INTO A PRIVATE EVENT

\n

It was the three of us - my BF, his friend and I. We wanted to do some clubbing and the friend decided we should go to a very trendy bar in the heart of Moscow. He had a loyalty card there and was well known among the bouncers. We didn't really look the part, but a hefty fee paid for each of us (by the friend) was enough to let us in...

\n

That was a minor party. Let's talk about the big stuff, involving bigger money!
\nIf you know someone, who knows someone, who knows someone you might be able to (legally) attend the dress rehearsal of the famous Victory Parade in May (the 9th to be exact). It costs about 10k (137 Euro, 116 Pounds , 153 Dollars) Watch fragments of the video below to see the magnitude of what I am talking about. 

\n

The whole thing is long, play with it a little bit. The good stuff starts at about 40 minutes. Source

\n

https://www.youtube.com/watch?v=5EI3FYynz-Q

\n

To enter the actual parade however, you need to be a prominent member of the society (e.g. ex-military) or someone famous or filthy rich :)

\n

The event itself is quite impressive and for soldiers taking part in the march it is an honor among honors.  
\nWe had the privilege of living 15 minutes on foot from the Red Square so we saw all the preparations and marches right outside our windows (till 11pm at night...)

\n

\n

PS. I am aware that my portrayal of Moscow might seem bleak and depressing. Believe me, it was not. I;m simply trying to describe the juicy bits, the interesting stuff :) My next post will be more optimistic as I will be talking about sports, parks an recreations  :)

\n

 ____________________________________________________________________________

\n

Thank you for reading Part 2 of my memoir.

\n

Want to find out more about living in Moscow? Follow me @cwbrooch :)

\n

My other work on Streemit:

\n

1) Russian Roulette - Preamble 

\n

2) Russian Roulette - Part 1 - Surviving Underground

\n

3) Why shouldn't you use google translate for learning English and which dictionaries are far better

\n

4)  How to learn vocabulary effectively in any language!

\n

5) About me: introduction  
\n 

\n


\n", - "json_metadata": "{\"tags\":[\"story\",\"writing\",\"travel\",\"life\",\"russia\"],\"users\":[\"cwbrooch\"],\"image\":[\"https://s14.postimg.org/bpiqdmgpt/Untitled.jpg\",\"https://img.youtube.com/vi/5EI3FYynz-Q/0.jpg\",\"https://lh3.googleusercontent.com/3OMfOqwX2pQ5BYeql8V1tg4J6VcMzG75pLD-nhsfHw0BYFLEQOQSeVl-sVdEkDwS6VfPco-FukpjwQONwimoOhzzT4GIPDt_VGbJfNDYaltTvEcyOFK5do7PZD1-tjDW0nxKYhUQdxG4yoxX6ZS590fMaveLKSI2Voz579yTME9U8D7UgN7R3ufBrAcq0KV8kA9VqMVxryabh2X_jBiMnP3Uwjj_hrWn3ARzHggZMRuo3G3ORSKDpoqcBA25bRDeWHe7nVT4X58NolQ4yY8HVjzyUr4zDneI8dy_eHnSf0F0FBZ8kn4NQQ3ueVR84tu-Ot64CZb9a1SetmKmupvAxBbuS8z3jBsvCECD8A5jz9qevTOkgHEbV0z2hVteH64gCLg3OI9mRVqw2GWAYwNSUlGGtwCxmwXq3p_j_igwncarIhIF2HX_bV0ACrucmewR6IiIdVfaKKAO9g2ycLbJRr_SBwE9TxBND9ar0R267Grzq5SHywG71h1nxZnXInW-HQ2l1cou8zqdiEUanqkeSbgIunZVNBcEnYYinmF-WZd5y0_Luc8rdDYy0GlKAtAJ4z0-woKDs6d_XKWhiWsYOAW3rWwCe3cJylK_6H7wNO2PlBKL=w1163-h775-no\"],\"links\":[\"https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-in-moscow-part-1-surviving-underground\",\"https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-of-living-in-moscow-preamble\",\"https://www.youtube.com/channel/UC4qBu3EvraPWezHbaC7npIQ\",\"https://www.youtube.com/watch?v=5EI3FYynz-Q\",\"https://steemit.com/@cwbrooch\",\"https://steemit.com/languages/@cwbrooch/why-shouldn-t-you-use-google-translate-for-learning-english-and-which-dictionaries-are-faaaar-better\",\"https://steemit.com/languages/@cwbrooch/how-to-learn-vocabulary-effectively-in-any-language\",\"https://steemit.com/introduceyourself/@cwbrooch/teacher-story-teller-cat-lover-about-me\"]}", - "last_update": "2016-09-15T19:42:57", - "created": "2016-09-15T19:41:09", - "active": "2016-09-15T19:42:57", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": "5891496080", - "abs_rshares": "5891496080", - "vote_rshares": "5891496080", - "children_abs_rshares": "5891496080", - "cashout_time": "2016-09-16T19:44:28", - "max_cashout_time": "2016-09-29T19:41:09", - "total_vote_weight": "27129771364344680", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "cwbrooch", - "root_permlink": "russian-roulette-a-memoir-part-2-under-the-table-tactics", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 961180, - "author": "philanthropest", - "permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", - "category": "freedom", - "parent_author": "", - "parent_permlink": "freedom", - "title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", - "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", - "json_metadata": "{\"tags\":[\"freedom\",\"anarchy\",\"steem\",\"life\",\"\"],\"image\":[\"https://img.youtube.com/vi/y02aBfNT8n4/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=y02aBfNT8n4\"]}", - "last_update": "2016-09-15T19:42:36", - "created": "2016-09-15T19:40:21", - "active": "2016-09-15T19:42:36", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-16T07:40:21", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "philanthropest", - "root_permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 960785, - "author": "ancientofdays", - "permlink": "are-steem-bitcoin-etc-obvious-pre-cursors-to-the-mark-of-the-beast", - "category": "money", - "parent_author": "", - "parent_permlink": "money", - "title": "Are Steem, Bitcoin, etc.. Obvious Pre-cursors to The Mark of the Beast?", - "body": "\n


\nImage Source & External Article - http://lifehopeandtruth.com/prophecy/revelation/mark-of-the-beast/

\n

Just recently here in Roswell NM (where I live, yes) I was telling a shop owner about Steem and Steemit, and he made the comment that he thought it sounded like \"...one more step towards the Mark of The Beast\"...

\n
\"...And he causeth all, both small and great, rich and poor, free and bond, to receive a mark in their right hand, or in their foreheads: And that no man might buy or sell, save he that had the mark, or the name of the beast, or the number of his name. Here is wisdom. Let him that hath understanding count the number of the beast: for it is the number of a man; and his number is Six hundred threescore and six...\"
\n - Revelation Chapter 13 (
Full Chapter)
\n

Yes Virginia... I hate to break it to you, but digital currency IS indeed \"one more step towards the mark of the beast\" - and we all know it. 

\n

Let's just get that out of the way now. But fear not, this is NOT a paranoid religious post warning people about the eternal dangers of joining Steemit, nor of using digital currency in general however. This is just a hopefully rational religious post (inspired by a secular article) meant to stem paranoid fear (amongst Christians mainly) of utilizing Steemit specifically, and digital currency in general. Which I will get back to in just a second...

\n

But first... If to you, \"stemming this fear\" makes me \"part of the Satanic conspiracy\" then I can't help that, and I won't engage with or reply to you if that is your view (which you are entitled to hold, and even to express as a comment below). 

\n

I'd rather use my time to inform non-Christian people who may have clicked in here (for laughs perhaps?) that Yes, I believe that the mark of the beast is coming, and you DO need to aware of the dangers of accepting it!

\n


\nImage Source & External Article: http://www.evangelicaloutreach.org/markbeast.htm

\n

 (Hence the external articles links being detailed here for further reading - which I have not closely vetted btw, they just had top matches for images)...

\n

Anyways...

\n

As I told my friend Don (who DID join Steemit @roswellrockman ) \"So is your debit card!\"

\n

Putting Don and I's end-of-conversation succinctly, there are many aspects of our everyday lives that have brought and are bringing us \"one step closer\" to the mark of the beast - but they are not in themselves the mark, they are not evil, and (imho) they are not to be feared, or shunned. 

\n

(Altho I will note respectfully that The American Amish community feels differently - see the link below these next images.)

\n

There are indeed many examples from our now-everyday lives that could easily be said to be bringing us \"one step closer\" ... such as the \"Bar Codes\" on every product we purchase

\n


\n... especially if the same types of \"scanners\" that read them, were then pointed to a laser tattoo or RFID chip in your hand, to receive payment for these goods at the register. 

\n


\nAll 3 Images above & External Article: http://www.whatdoesitmean.com/index1392.htm

\n

\"Radio Frequency ID chips\" (see Wikipedia article) are already being used (some will say \"being tested\") to help pet owners keep track of their pets. Wal-Mart and other retailers also use them to track expensive items, to help prevent shoplifting. And especially \"hi-tech\" firms demanding secrecy and security clearances even use them on employees! 

\n

Could Big Brother and The Rothchild's and The Federal Reserve Banks and The U.N. (collectively, \"The New World Order\") one day very soon use all of this to both track you physically, and to observe or control your money supply? 

\n

Absolutely!

\n

It's no stretch at all to imagine combining RFID technology with UPC Bar Codes - and then connecting it all to your bank account via the Internet (or the Blockchain!) - to fulfill the Bible prophecy about the mark of the beast happening in the near future, or in our lifetimes.

\n

Folks I am no stranger to this belief. I first penned the words myself way back in 1997 (in my original webpage and book \"Come Sail Away : UFO Phenomenon & The Bible\"- << Amazon link to 2105 version) in the section I titled \"Genesis 6 to 666\"

\n

\"To understand how the world’s entire economy could be tied into a mark on one’s flesh would be a completely unimaginable miracle - a near impossibility - inconceivable to most Christians throughout the ages. This has left some events of the book of Revelation a little hard to piece together into a believable probability, much less an immediate future.
\n
\n\"In order to accomplish such an incredible thing, you’d have to have some way to access a person’s bank account from anywhere in the known world; all financial institutions would have to have some way of talking to each other through some sort of, of, machinated \"net,\" or a \"web,\" or something; you’d have to come up with some sort of mark, or magnetic strip, or some \"barred code\" that some futuristic \"scanner\" could read; surgical or laser-tattoo technology capable of implanting it, and a \"personal secret code\" so that no one could ever rob you in this \"cashless society.\" Any-time machinery, for financial transactions, would have to be everywhere. Everyone would have to be assigned a separate number at birth. These \"scanner devices\" would have to be in every grocery, hardware, department and convenience store, and every product would have to be marked with this computerized bar-code…
\n
\n\"Yup, you’d need all that…
\n
\n\"Get that in place and you’re ready to go...\" 

\n


\n(Original 1997 cover, now out of print - 2015 version available on Amazon here)

\n

So getting to my main point - finally...

\n

YES. All kinds of technological advances from the past 30 years and more could and probably WILL - imho - be used to make the Mark of the Beast possible... call me a paranoid religious nut if you like, I do firmly believe that such is coming.

\n

The Internet itself, for example, connects and brings the whole world online. But if you're using it to read this, now, you are perhaps already hooked, and have no room to talk about Steem or digital currencies being the pre-cursors to the mark of the beast. Because everything you're already using is also...

\n

The magnetic strips on the back of the debit and credit cards you've (most likely) been using for years and years. Online banking... Bar Code technology in grocery stores that you apparently don't have the religious conviction to oppose not abstain from ... retinal scanners, or fingerprint security features in your smartphone...

\n

See what I mean? 

\n

If you are not a practicing Amish person - or you use only \"true money\" (Gold and Silver) to barter and to trade for goods and services when you need them (or farm and grow your own food, to ensure that you don't) - then there are already DOZENS of aspects of your everyday life that you have accepted and routinely utilize that have already in fact brought YOU \"one step closer to the mark of the beast.\"

\n

YES - these \"new-fangled concepts\" like Steem Dollars, Bitcoin, and Digital Currencies are perhaps OBVIOUS steps moving us all FURTHER along that path to one-world government under antichrist...

\n

(EXCEPT IT MUST BE NOTED in this article for you newbies to the concept, that TO-DATE, popular digital currencies (Steem, Bitcoin, Etherium, etc, etc) are actually intended AND ARE CURRENTLY BEING USED to help users MOVE AWAY from immoral government spying networks, and away from evil centralized banking platforms, putting \"the power in the hands of the people\" - for awhile at least. 

\n

So technically, by joining Steemit and adopting Steem as currency, you are fighting the underpinings of the Satanic One-World government that is forming all around us. You are actually, literally, restraining The Beast from his march to power! For awhile anyways...

\n

So there.)  

\n

But yes, I would affirm that some form of digital currency in general could and possibly will be used by the evil-antichrist-oneworldgovernment-rothschilds-federalreserve-warmongeringtotalitarian New World Order yet to arise under the real antichrist when he appears.

\n

In fact, it was seeing this article today published by The Coin Telegraph 

\n


\n4 Reasons Why Your Nation Will Kill Cash For A Digital Currency

\n

that inspired me to drop everything and write this particular article. 

\n

The Coin Telegraph wonderfully details how national interests (Satanic, New World Order interests, for our purposes here) probably will in fact adopt a digital currency of their own in the coming years. I can totally see THEIR VERSION of a global digital currency exchange being the near-final step in implementing the true Mark of the Beast, when (but not until) The Antichrist is revealed.

\n

But Steem/Steemit just isn't it. Today's free market digital currencies - if anything - are the \"gum in the works - fly in the ointment - monkey wrench in the machine\" to the eventual true Mark of the Beast, now that I think about it. Today's digital currencies actually serve to free us from the system that is now in place, by providing de-centralized mediums of currency (barter, exchange, etc) that serve as powerful alternatives to current banking structures, and chains.

\n

Governmental agencies (NWO ones or not) are actually in a scramble currently to figure out HOW to regulate, tax, and ultimately control the existing currencies. But neither they - not the devil - are behind them. 

\n

So my position is to say that unless you're either willing to become Amish today and forego ALL of the technologies I've detailed here (and electricity) then you've really nothing to fear from becoming an early adopter of Steem/Steemit. 

\n

The Bible clearly instructs and solemnly warns all to not accept the Mark of the Beast, when it finally comes in the form of a mark on your hand or forehead that cannot buy or sell without receiving. Abstaining from \"the steps\" has proven impractical, unavoidable (again, except to the Amish), and ultimately not directly commanded in scripture.
\n 
\n===============
\nTwo things in closing:
\n#1) Here's one more lengthy scripture-packed article on Biochips & TMOTB I'll recommend if you're unlearned about the whole topic...
\n#2) You may have noticed in this article that I'm an author in Roswell who deals with the topics of Aliens, UFOs, and The Bible. I have to date organized 7 conferences on that topic, and (after a 7 year hiatus) am putting together a new one for Summer 2017... please follow @ancientofdays for updates and tons of videos yet to come from past speakers and theologians who have participated, and will be again this year. 

\n

I bring all of this up in THIS article, only to announce here that:

\n

My non-profit \"Roswell Mission\" will be accepting Steem for conference registrations (follow for details) and that
\nUP-FRONT VIP SEATING goes to those who pay VIA STEEMIT!

\n", - "json_metadata": "{\"tags\":[\"money\",\"religion\",\"steem\",\"beyondbitcoin\",\"christianity\"],\"users\":[\"roswellrockman\",\"ancientofdays\"],\"image\":[\"http://dc95wa4w5yhv.cloudfront.net/image-cache/the-mark-of-the-beast_640_426_80_c1.jpg\",\"https://scontent-lax3-1.xx.fbcdn.net/v/t1.0-0/s526x395/14358900_10154412654816605_8330352735442203600_n.jpg?oh=e2a53091d31ad716798686aec3f7bef0&oe=586CF056\",\"http://www.whatdoesitmean.com/wmb2.jpg\",\"http://www.whatdoesitmean.com/wmb3.jpg\",\"http://www.whatdoesitmean.com/wmb4.jpg\",\"http://www.alienstranger.com/seekye1//CSAcover.jpg\",\"https://cointelegraph.com/images/725_Ly9jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy8zYjkxMjBiMjg3YTRmZDJjZjE5MTcyZDk0ZDBhOGQzOC5qcGc=.jpg\"],\"links\":[\"http://lifehopeandtruth.com/prophecy/revelation/mark-of-the-beast/\",\"http://www.AlienStranger.com\",\"http://www.ancientsofdays.net\",\"https://www.biblegateway.com/passage/?search=Revelation+13&version=KJV\",\"https://cointelegraph.com/news/4-reasons-why-your-nation-will-kill-cash-for-a-digital-currency\",\"http://www.evangelicaloutreach.org/markbeast.htm\",\"http://www.whatdoesitmean.com/index1392.htm\",\"https://en.wikipedia.org/wiki/Radio-frequency_identification\",\"http://amzn.to/1Ueug63\",\"http://www.av1611.org/666/biochip.html\",\"https://steemit.com/steemitabuse/@ancientofdays/credibility-matters-on-steemit-therefore-i-wish-to-offer-some-proof-photos-of-my-non-profit-status-and-intent-here\"]}", - "last_update": "2016-09-15T19:41:12", - "created": "2016-09-15T18:57:12", - "active": "2016-09-15T19:43:27", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 2, - "net_rshares": "25365523997", - "abs_rshares": "25365523997", - "vote_rshares": "25365523997", - "children_abs_rshares": "25365523997", - "cashout_time": "2016-09-16T19:18:59", - "max_cashout_time": "2016-09-29T18:57:12", - "total_vote_weight": "116240705764176930", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 6, - "root_author": "ancientofdays", - "root_permlink": "are-steem-bitcoin-etc-obvious-pre-cursors-to-the-mark-of-the-beast", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 155925481, + "active": "2016-09-15T19:47:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "szklaneczka", + "author_rewards": 0, + "beneficiaries": [], + "body": "**ICONOMI found management platform** is currently in ICO and you can still invest. \n\nThat is most anticipated platform of 2016 why You may ask me. I will give you some graph and explanation. Solutions like ICONOMI are very popular in old economy people want be rich and wanted get more profit so they tried give money to people who know more about trading. Found management platforms preforms much better than average investors. Big guys just want invest not day trading. In crypto ICOMI will be 1st such project - such needed project.\n\nNow true facts and everything that I show you, is now publicly available on web. Graphs taken from coinmarketcap.com are showing us, what is going on cryptocurrency markets right now:\n![](http://i.imgur.com/FLe0WeF.jpg) \n![](http://i.imgur.com/s6Aeke2.jpg) \n![](http://i.imgur.com/RX0JK1z.jpg) \n\nYou see on won eyes that: Bitcoin is loosing over time market share to other alt coins. There is many multiple reasons for that. Without ICONOMI getting on cryptocurrency board for new investors will be VERY hard. \nThat is:\n \n- choose right one coin. \n- skip scams \n- buy valuable coins \n- crypto markets are getting bigger and bigger all time, there is about over 700coins tradable now\n\n\nICONOMI will be platform that for **every investor looking for big profits**. \nICONOMI will give us 2 founds:\n\n- **The ICONOMI.INDEX FUND** - a \"Passive\" - Coin Traded Fund (CTF). This fund operates on special rules, variables that manage the fund through automation. This Found will be the fastest available to investors at launch in Q4 2016 - The ICONOMI.PERFORMANCE FUND - an \"\nActive\"\n- **Coin Managed Fund (CMF)**, Operated by and managed by best investors. This fund will be invitation only available. If you invest in ICO you will get you invitation for free. I bet is worth its price. Those found will be carefully managed by ICONOMI experts and will provide best profits available.\n\nGraphs shows that volume of alt coins is rising heavily and will move up. Without ICONOMI founds many investors will probably lose cash on market, while rypto currency market will rise as whole. **If buy some ICO shares you will get dividends forever as share holder.**\n Soon real professional traders will come to cryptocurrency and you as investor in order to get big profits will have to use service of ICONOMI. \n\nPersonally I have invested in ICO and believe that **ICONOMI is future of crypto trading**. Don't miss a chance and invest here:[ico.iconomi.net](ico.iconomi.net) \n\nIf you want invest in ICO: ![](http://i.imgur.com/iqDpTag.png) \n\nOfficial Links:\n \n- [ico.iconomi.net](ico.iconomi.net \"Main site\") \n- [https://www.facebook.com/iconomi.net/](https://www.facebook.com/iconomi.net/ \"Facebook\") \n- [https://twitter.com/iconominet](https://twitter.com/iconominet\"twitter.com\")\n- [https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/](https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/) \n- [https://telegram.me/iconomi](https://telegram.me/iconomi)\n- [https://medium.com/iconominet](https://medium.com/iconominet)\n- [https://iconominet.herokuapp.com](https://iconominet.herokuapp.com)", + "cashout_time": "2016-09-16T19:47:00", + "category": "cryptocurrency", + "children": 0, + "children_abs_rshares": 155925481, + "created": "2016-09-15T19:47:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961233, + "json_metadata": "{\"tags\":[\"cryptocurrency\",\"bitcoin\",\"profit\",\"altcoin\"],\"image\":[\"http://i.imgur.com/FLe0WeF.jpg\",\"http://i.imgur.com/s6Aeke2.jpg\",\"http://i.imgur.com/RX0JK1z.jpg\",\"http://i.imgur.com/iqDpTag.png\"],\"links\":[\"ico.iconomi.net\",\"https://www.facebook.com/iconomi.net/\",\"https://twitter.com/iconominet\\\"twitter.com\\\"\",\"https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/\",\"https://telegram.me/iconomi\",\"https://medium.com/iconominet\",\"https://iconominet.herokuapp.com\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:47:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:47:00", + "net_rshares": 155925481, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "cryptocurrency", + "percent_hbd": 10000, + "permlink": "iconomi-why-we-need-found-management-explained-on-graphs", + "reward_weight": 10000, + "root_author": "szklaneczka", + "root_permlink": "iconomi-why-we-need-found-management-explained-on-graphs", + "title": "ICONOMI - why we need found management explained on graphs.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "719051331038101", + "vote_rshares": 155925481 + }, + { + "abs_rshares": 151513711, + "active": "2016-09-15T19:46:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "newsfeed", + "author_rewards": 0, + "beneficiaries": [], + "body": "The Texas Rangers are 33-10 (.767) in one-run games this season. This would stand as a modern record for winning percentage in one-run games, besting the 2012 Orioles, who were 29-9 (.763).\n\n

http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815

\n\nBut if we dig deep into the archives of baseball history, we learn that this is actually the best record since the 1890 Brooklyn Bridegrooms, who were 14-4 (.778) in one-run games en route to an overall 86-43 (.667) record and the National League pennant.\n\n**Source / Read More...** sportingnews.com \n\n
\n\n
\n\n**NEWS FEED** \n*Get the latest headlines from around the world right on your Steemit Feed! With @newsfeed you always stay in the know about all sorts of topics ranging from Politics & Finance to Sports*\n\n**Currently In Beta**\n*Full news feed from hand picked creditable sources from all sides of the political and social realm. Although not fully operational, posts will be random while testing BUT do have real headlines!*", + "cashout_time": "2016-09-16T19:46:30", + "category": "newsfeed", + "children": 0, + "children_abs_rshares": 151513711, + "created": "2016-09-15T19:46:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961225, + "json_metadata": "{\"tags\":[\"newsfeed\",\"news\",\"sports\",\"rangers\",\"baseball\"],\"users\":[\"newsfeed\"],\"image\":[\"http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815\",\"https://ipfs.pics/ipfs/QmUo1EuVPSs3prLRdJH95Lg97vyvzSfhH6srZH5bqRh7p6\"],\"links\":[\"http://www.sportingnews.com/mlb/news/texas-rangers-record-in-one-run-games-brooklyn-bridegrooms/irlcvzvv8fui1vgogevkmomch\\n\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:46:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:46:30", + "net_rshares": 151513711, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "newsfeed", + "percent_hbd": 0, + "permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", + "reward_weight": 9354, + "root_author": "newsfeed", + "root_permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", + "title": "Rangers' record in one-run games nearing truly historic level", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "698707196688679", + "vote_rshares": 151513711 + }, + { + "abs_rshares": 3377256926, + "active": "2016-09-15T19:46:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anton333", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

Model of Skeleton hands,without scissors and glue.

\n1


\n2


\n\n


\n

I need a piece of paper.

\n3


\n4


\n5


\n6


\n7


\n1


\n

Part 1 Part 2 Part 3 Part4 Part5 Part6 Part7 Part8 Part9 Part10

\n", + "cashout_time": "2016-09-16T19:46:30", + "category": "art", + "children": 0, + "children_abs_rshares": 3377256926, + "created": "2016-09-15T19:46:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961226, + "json_metadata": "{\"tags\":[\"art\",\"photography\",\"origami\"],\"image\":[\"https://s18.postimg.org/fi4tfvrgp/image.jpg\",\"https://s9.postimg.org/kn7ogredb/image.jpg\",\"https://s10.postimg.org/nnna3pxp5/image.jpg\",\"https://s12.postimg.org/dltyd50wd/image.jpg\",\"https://s12.postimg.org/qwsf7bs99/image.jpg\",\"https://s3.postimg.org/7p1m66f4j/image.jpg\",\"https://s22.postimg.org/4388u7yoh/image.jpg\",\"https://s14.postimg.org/qo99yko5t/image.jpg\"],\"links\":[\"https://postimg.org/image/byivq2oqt/\",\"https://postimage.org/index.php?lang=russian\",\"https://postimg.org/image/ivepluv0b/\",\"https://postimg.org/image/efv1n0qmt/\",\"https://postimg.org/image/u9lgfmvnt/\",\"https://postimg.org/image/gzhee9knd/\",\"https://postimg.org/image/gwtumvm6n/\",\"https://postimg.org/image/55ifcrhhp/\",\"https://postimg.org/image/4cbh56p1p/\",\"https://steemit.com/art/@anton333/origami-start-with-the-simplest\",\"https://steemit.com/art/@anton333/origami-part-two-do-a-swan\",\"https://steemit.com/art/@anton333/origami-part-3-the-model-of-a-mouse\",\"https://steemit.com/art/@anton333/origami-part-4-the-model-of-a-rose-petals\",\"https://steemit.com/art/@anton333/origami-part-5-the-model-of-master-yoda\",\"https://steemit.com/art/@anton333/origami-part-6-the-model-of-eagle\",\"https://steemit.com/art/@anton333/origami-part-7-the-model-of-dagger\",\"https://steemit.com/art/@anton333/origami-part-8-the-model-of-spider\",\"https://steemit.com/art/@anton333/origami-part-9-the-model-of-tooth\",\"https://steemit.com/art/@anton333/origami-part-10-the-model-of-flower\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:46:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:46:30", + "net_rshares": 3377256926, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "art", + "percent_hbd": 10000, + "permlink": "origami-part-11-the-model-of-skeleton-hands", + "reward_weight": 10000, + "root_author": "anton333", + "root_permlink": "origami-part-11-the-model-of-skeleton-hands", + "title": "Origami Part 11, the model of Skeleton hands.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "15561709573411957", + "vote_rshares": 3377256926 + }, + { + "abs_rshares": "4649989991534", + "active": "2016-09-15T19:44:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vitaly-lvov", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

Mountly recap of blockchain crowdsales

\n


\n

CLOSED CROWDSALES

\n

BlockPay 

\n

Aimed at deeper integration with POS terminals and payments between counterparties.
\nA preliminary Initial Coin Offering finished on 4 September, where BlockPay sold 5% of the 100-million stock of BLOCKPAY tokens released on the BitShares blockchain. Future owners will receive dividends from transaction fees paid to BlockPay.
\nThe pre-ICO was done in 3 stages: 

\n
    \n
  • 1st \u2014 exchange of OPENPOS for BLOCKPAY at the rate of 1.2 to 1 (fund of 600,000 tokens) 
  • \n
  • 2nd \u2014 sale of BLOCKPAY at the price of 0.000288 BTC (fund of 1.4 mln tokens) 
  • \n
  • 3rd \u2014 sale of BLOCKPAY at the price of 0.000360 BTC (fund of 3 mln tokens) 
  • \n
\n

The distribution of tokens is as follows: 

\n
    \n
  • 1.5% \u2014 marketing for pre-ICO
  • \n
  • 5% \u2014 pre-ICO
  • \n
  • 0.9% \u2014 early adopters
  • \n
  • 1.8% \u2014 advisors and partners
  • \n
  • 3.6% \u2014 marketing
  • \n
  • 7.2% \u2014 developers reward
  • \n
  • 80% \u2014 upcoming ICO in 2017
  • \n
\n

The platform development plan:

\n
    \n
  • The release of BlockPay \"S\" app for Android and payment terminals Odoo
  • \n
  • BlockPay integration with leading payment terminals
  • \n
  • API Development
  • \n
  • The addition of a large number of fiat gateway exchanges and Escrow Services
  • \n
  • The addition of anonymous transactions function
  • \n
  • The development and release of the ECHO messenger for Android and iOS
  • \n
  • Development of the first version of the BlockPay \"S\" app for iOS
  • \n
\n

The project looks interesting, given the fact that they claim an integration with the ERP and CRM systemOdoo used by 60 thousand companies. The only disturbing thing is the absence of an open source software, and this spoils the whole picture. Transaction payments fee and, consequently, planned cash flow for investors are not sufficiently explained either. It should be kept in mind that this project is centralised, i.e. it belongs to the class of projects that demand trust in the founders and, correspondingly, require a thorough audit of operating activity.
\nCrowdsale summary:

\n
    \n
  • Dates: 20 August 2016 \u2014 4 September 2016
  • \n
  • Raised: ~ $657,000 (1096 BTC)
  • \n
  • Tokens sold: 3.92 mln
  • \n
  • Total number of tokens: 100 mln\u0414\u0430\u0442\u044b \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f: 20 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u2014 4 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f 2016 \u0433\u043e\u0434\u0430
  • \n
\n

For detailed information on the crowdsale, see: https://blockpay.ch/newsroom/investor-relations/blockpay-reserves/
\nFor useful links and more information, go to https://cyber.fund/system/BlockPay 

\n

AntShares
\n

\n

The project is interesting primarily due to the fact that it will be implemented using the Hyperledger platform. There are no other features that distinguish it from a number of similar blockchain projects, except that it is aimed specifically at the Chinese audience. 

\n

Crowdsale summary: 

\n
    \n
  • Dates: 8 August 2016 \u2014 7 September 2016
  • \n
  • Raised: ~ $ 3.4 mln (5582 ~ BTC)
  • \n
  • Tokens sold: 20 mln
  • \n
  • Total number of tokens: 100 mln
  • \n
\n

For detailed information on the crowdsale, see: www.antshares.org/ico
\nFor useful links and more information, go to https://cyber.fund/system/AntShares

\n

Elastic project
\n

\n

The crowdsale is finished. The full description of the history of the ICO and the risks associated with investing in this asset may be found in the previous issue of Blockchain Boom. 

\n

Crowdsale summary:

\n
    \n
  • Dates: 29 February 2016 \u2014 19 August 2016
  • \n
  • Raised: ~ $416,000 (~ 710 BTC), the exact amount is not available, because in course of funding escrow addresses changed several times and the movement of funds between them was extremely nontransparent.
  • \n
  • Tokens sold: 20 mln
  • \n
  • Total number of tokens: 5 mln XEL
  • \n
\n

The crowdsale took place here: http://www.elastic.pro/donations
\nFor useful links and more information, go to https://cyber.fund/system/Elastic 

\n

CURRENT CROWDSALES

\n

Iconomi
\n

\n

The aim of the project is the creation of management platform for crypto investment funds and the launch of two associated investment funds.
\n

\n

The subject of the crowdsale is ICN tokens representing 100% of Iconomy Open Fund Management Platform (OFM). The total number of ICN tokens to be sold is 85 million. 100 million of ICN will be released on the Ethereum platform within 10 days after the end of the crowdsale. Tokens will be distributed among investors proportionally to their contributions taking into account bonuses for early participation (+ 15% in the first week, + 10% in the second week, + 5% in the third week).
\nPrecise information on the distribution of ICN tokens is missing on the official website. According to the information in the related Bitcointalk thread, the tokens will be distributed as follows: 

\n
    \n
  • 85% - to be sold in the crowdsale
  • \n
  • 8% - founders reward
  • \n
  • 3% - reserve for the future team
  • \n
  • 2% - advisers reward
  • \n
  • 2% - marketing and bounty
  • \n
\n

Money raised from the crowdsale will be used as follows: 

\n
    \n
  • 62% - development
  • \n
  • 25% - operations
  • \n
  • 9% - legal expenses
  • \n
  • 4% - marketing
  • \n
\n

ICN owners will receive weekly dividends in ETH from all sources of Iconomi income, such as: 

\n
    \n
  • management fees
  • \n
  • rewards for fund management efficiency
  • \n
  • fees received from the funds registered with OFM
  • \n
\n

ICN holders will be able to vote on a number of matters related to the development of OFM, including choosing of the \"platform operator\" (currently, Cashila OOD s.r.o.) 

\n

The development plan: 

\n
    \n
  • 4Q 2016 \u2013 the launch of the open investment fund ICONOMI.INDEX, which will follow the likely development of the cryptocurrency market and will be freely traded on the market;
  • \n
  • 4Q 2016 \u2013 the launch of the closed investment fund ICONOMI.PERFORMANCE, which will focus on riskier investments in projects at an early stage of development
  • \n
  • 2017 \u2013 the launch of the platform for management of investment funds (OFM), the transfer of ICONOMI.INDEX and ICONOMI.PERFORMANCE funds to the platform.
  • \n
\n

Blind spots: 

\n
    \n
  • The currency is not specified for evaluation of the raised funds for further distribution of ICN tokens among investors.
  • \n
  • Will a part of the funds received during the crowdsale be allocated to ICONOMI.INDEX and ICONOMI.PERFORMANCE and, if so, will ICN holders receive relevant shares in these funds?
  • \n
  • There is no information as to the amount and frequency of fees charged from funds managed on OFM.
  • \n
  • The functions of the \"platform operator\" is described but very vaguely, as well as the process of further decision making involving ICN holders.
  • \n
\n

Red flags:

\n
    \n
  • There is no description of technical solutions for the project's tasks
  • \n
  • No program code is published
  • \n
\n

Crowdsale summary:

\n
    \n
  • Dates: 25 August 2016 \u2014 29 October 2016
  • \n
  • Total number of tokens: 100 mln ICN
  • \n
  • Tokens distribution: 85% will be sold in the crowdsale, 15% team reward and marketing
  • \n
  • Minimum crowdsale goal: 2 000 BTC (~ $1.5 mln)
  • \n
  • Raised so far: ~ $3.6 million (2,200 BTC + 71,000 ETH + 1.2 mln LSK + 63,000 USD + 940,000 EUR) from more than 1300 participants.
  • \n
\n

The crowdsale takes place here: https://ico.iconomi.net/
\nFor useful links and more information, go to https://cyber.fund/system/Iconomi 

\n


\nDeClouds
\n

\n

The main focus of the project is providing the opportunity for trading in precious metals.
\nThe network will be implemented as follows: 

\n
    \n
  • Proof-of-Stake consensus algorithm
  • \n
  • Decentralised Exchange
  • \n
  • Cloud-based blockchain
  • \n
\n

Apart from a patently weak 8-page paper and a number of publications on the blog, no detailed information about the project was found via official channels. Program code is also not disclosed. Nevertheless, developers promise to launch the network on 31 October 2016.
\nDuring the crowdsale, bonuses from 20% to 5% will be distributed, depending on the time of investment.
\n

\n

Crowdsale summary: 

\n
    \n
  • Dates: 6 August 2016 \u2014 October 6, 2016
  • \n
  • Total number of tokens: 100 mln
  • \n
  • Tokens distribution: 80% will be sold to the crowdsale participants, 10% is a team reward and 10% are marketing expenses
  • \n
  • Raised so far: ~ $179,000 (294 BTC)\u0414\u0430\u0442\u044b \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f: 6 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u2014 6 \u043e\u043a\u0442\u044f\u0431\u0440\u044f 2016 \u0433\u043e\u0434\u0430
  • \n
\n

The crowdsale takes place here: https://ico.declouds.com/
\nFor useful links and more information, go to https://cyber.fund/system/DeClouds

\n


\nHong
\n

\n

Investments are made by transferring ETH to the Etherium contract.
\n

\n

The Fund is formed for the period of 4 years, 3 of which are put for investing while the last year is for the exit. 80% of the money received as a result of fund liquidation will be distributed among Hongcoin holders, 20% among managers. Annual 2% fee to be charged for operational expenses of the managing organisation. The fee allocation will be defined by voting. The fund can be \"frozen\" at any time by the decision of 50% of shareholders.

\n

As a purpose for investment, 3 directions are selected: disruptive innovation, creativity and educational projects. Hong founders believe that the blockchain technology will most significantly impact these fields of human activity.
\nThe fund operates according to the following scheme: 

\n
    \n
  • Fund managers review projects and make a decision on whitelisting them;
  • \n
  • Hongcoin holders vote for the allocation of funds for investments within 15 days (the quorum of 20% is required for the approval of an investment);
  • \n
  • Fund managers prepare due-diligence and investment strategy for the project and provide any possible assistance in the development and promotion of the project;
  • \n
  • When the fund's term comes to an end, the managers carry out the exit process.
  • \n
\n

A company will be established for the management of raised funds, but it has not been determined yet in which jurisdiction. There is no information on the management parties available on the website nor through any the official channels.
\nThe crowdsale takes place in several stages, with 50 mln Hongcoin sold at each stage: 

\n
    \n
  • 50 mln \u0126 \u2013 1.00 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.05 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.10 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.15 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.20 ETH \u0437\u0430 100 \u0126
  • \n
\n

As long as the crowdsale is going on, investors will have the opportunity to change their mind and withdraw invested funds. After the crowdsale is finished, the exit opportunity will be closed.
\nCrowdsale summary: 

\n
    \n
  • Dates: 29 August 2016 \u2014 29 October 2016 (may be extended until 28 November)
  • \n
  • Total number of tokens: to be determined by the end of the crowdsale
  • \n
  • Tokens distribution: 100% will be sold in the crowdsale
  • \n
  • Crowdsale goal: at least 1,575,000 ETH (~ $19 mln), the maximum is 2.7 mln ETH (~ $33 mln)
  • \n
  • Raised so far: ~ $6,600 (11 BTC).
  • \n
\n

The crowdsale takes place here: http://www.hongcoin.org/
\nFor useful links and more information, go to https://cyber.fund/system/Hong
\n

\n

Judging by the current investments dynamics, the project will not succeed.

\n


\nPLANNED CROWDSALES 

\n


\nSynereo
\n

\n

One year after a crowdsale that raised $126,000 aimed at the development and launch of a decentralised social network, the project team announced the second funding round and the launch of the network'salpha version. Two funding campaigns start at the same time in September: the sale of Synereo Ltd shares on BnkToTheFuture and of AMP tokens.
\nFollowing the first crowdfunding, the distribution of AMP was as follows:

\n
    \n
  • 2.72% (45.8 mln) \u2014 sold during the first crowdsale
  • \n
  • 11.9% (200 mln) \u2014 user rewards
  • \n
  • 8.92% (150 mln) \u2014 reserve for the content creators
  • \n
  • 11.9% (200 mln) \u2014 founders' reward
  • \n
  • 13.68% (230 mln) \u2014 bounty program
  • \n
  • 50.61% (850.4 mln) \u2014 next funding
  • \n
\n

Synereo revised their plans and now aim to develop a protocol similar to the SAFE Network, which will include the following components:

\n
    \n
  • Proof-of-Stake consensus algorithm
  • \n
  • Distributed network of nodes connected on the principle of \"shards\", where blockchain is divided into many small segments
  • \n
  • Distributed repository
  • \n
  • Smart contracts
  • \n
  • Social layer (a social network motivated according to the Attention Economy Model)
  • \n
  • The possibility of building distributed apps
  • \n
\n

The grant program for dApps developers Project 11 with a budget of 1.11 million AMP is already in operation.
\n

\n

The popular website CoinMarketCap misleadingly states current Synereo capitalisation at about $10-13 million, which is not true because it is only the cost of 62,580,000 AMP (3.72%) in circulation on the market. According to cyber \u2022 Fund's calculations, with the total of 1.68 billion tokens, Synereo's real capitalisation reaches $300 million.

\n

It has not been disclosed yet how many tokens will be put up for sale, but we can assume that the minimum amount claimed by Synereo is about $130-140 million in case the entire reserve is sold, which is 850.4 mln AMP. This is a very ambitious plan, taking into account current distribution and the market price of tokens. Besides, it should be kept in mind that after the launch of the network, additional 5% of AMP will be emitted every year. In my opinion, they should sell the whole reserve without fixed prices and with token distribution proportional to investments. It will provide normal distribution and a fair market capitalisation.

\n

Despite the presence of a strong team with an excellent technological vision, we consider the evaluation of $300 mln inadequate.

\n

Crowdsale summary:

\n
    \n
  • Dates: September 2016
  • \n
  • Total number of tokens: 1.68 billion AMP
  • \n
  • Number of tokens for sale: unknown, probably 850.4 mln
  • \n
  • Crowdsale goal: presumably ~ $130-140 million
  • \n
\n

The crowdsale takes place here: https://www.synereo.com/sale
\nFor useful links and more information, go to: https://cyber.fund/system/Synereo

\n


\n

Golem Project
\n

\n

The aim of the project is to adopt any customer personal computer for the work that is done today by servers, computing farms or supercomputers. 

\n

As the result, Golem Net will become a truly decentralised network where users' summarised machine power will provide any amount of hardware resources required. At the moment, there is no document explaining how exactly it would work. We hope that such paper will appear before the crowdsale. 

\n

The Golem App will connect to the network from a local device to share computing power and deliver tasks for calculations.
\nThe micropayment system based on Ethereum will provide the incentivising component distributing rewards and processing transactions. Transaction fee will be set at 5%. 

\n

Currently, the network can work only with public data because the apps require direct access to data.
\nDevelopers announced the crowdsale on their blog

\n

Golem Network Tokens (GNT) are the shares that give the right to receive part of the revenue generated by Golem Network. 

\n

Crowdsale start date: September 2016. 

\n

Token distribution: 

\n
    \n
  • Total number of tokens: unknown
  • \n
  • 82% \u2014 crowdsale
  • \n
  • 6% \u2014 founders reward
  • \n
  • 12% \u2014 developer company reward
  • \n
  • Estimated amount of funds: a minimum of 100,000 ETH, a maximum of 650,000 ETH
  • \n
\n

For detailed information on the project, see http://golemproject.net/slides/index.html#/14
\nFor useful links and more information, go to https://cyber.fund/system/Golem
\n
\n

\n

SingularDTV
\n

\n

The ultimate goal of the project is the creation a thriving industry of decentralised entertainment.

\n

What they promise: 

\n

\u25cf SINGULAR \u2013 a TV series.
\nThe S-DTV flagship product is an epic sci-fi adventure TV series about decentralisation, scaling and emergence of intelligent systems that lead the humanity to a technological singularity. 

\n

\u25cf Documentary division
\nThis division will create full-length and short-length documentary series and movies about the blockchain, decentralisation and Ethereum. 

\n

\u25cf S-DTV rights management platform
\nAn app that will use smart contracts for registration and management of digital rights, as well as of income and royalties on intellectual property, namely, movies and television. Deals in the film and TV industry are the most difficult to arrange as they often involve hundreds of individual participants. 

\n

\u25cf On-demand video content portal (TVOD)
\nTVOD changes the way people watch entertainment programmes. S-DTV is born to create the TVOD portal for original content distribution, as well as for selected and acquired content. In addition to developing an interface on IPFS, S-DTV will use third-party portals such as GooglePlay, AppleTV iTunes and Vimeo to build a larger audience in a short time.

\n

Minimum investment goal \u2013 $500,000.

\n

Desirable funding \u2013 $7,5 mln.

\n

According to S-DTV documentation, Swiss company MME has developed a new, innovative organisational structure specifically for S-DTV: the Centralised Organised Distributed Company (CODE). It is the Swiss company, therefore, that will manage the finances and reinvest the income, while tokens will be used for paying out the dividends.

\n

Token distribution: 

\n
    \n
  • 400 mln Singular DTV GMBH
  • \n
  • 100 mln core investors
  • \n
  • 500 mln crowdsale
  • \n
\n

Funds distribution in case if $7,5 mln is raised: 

\n
    \n
  • \"Singular\" season 1 (3 episodes of the mini-series): $3.25 mln
  • \n
  • Documentary division: $0.50 mln
  • \n
  • Development of the rights management platform: $2 mln
  • \n
  • TVOD portal development: $1 mln
  • \n
  • Marketing: $0.50 mln
  • \n
  • Administrative, legal expenses and unforeseen circumstances: $0.25 mln
  • \n
\n

Crowdfunding is planned for September and will likely take place at Devcon2.

\n

The Ethereum and Consensys founder Joseph Lubin is included into the team as CTO.

\n

Unfortunately, in this project tokens only serve for distribution of dividends, and the project is centralised because 40% of tokens belong to Singular DTV GMBH. Another disadvantage is the fact that of the four declared founders/directors, only Zach Lebeau will work full time on the project. He is likely to be engaged in the studio rather than in the platform development; there are also risks associated with SEC.

\n

The main question is the development of the TVOD platform and the rights management platform: there is no understanding as to what kind of team will be working on it, and no technical description at the moment. If both platforms can be really implemented, the project is promising for investment.=

\n

For detailed information about the project, see: https://singulardtv.com/
\nFor useful links and more information, go to: https://cyber.fund/system/SingularDTV
\n

\n

Decent
\n

\n

It is designed for creative people, writers, bloggers, journalists and their fans and followers. The platform enables users to publish any posts, images, video or music content with no restrictions.

\n

Consensus algorithm \u2013 Proof-of-Stake.

\n

Decent has three functional roles: 

\n
    \n
  • Authors: content producers, writers, music producers etc.
  • \n
  • Consumers: readers, listeners and viewers
  • \n
  • Publishers: miners
  • \n
\n

Token distribution \u2013 30% via mining and 70% is distributed during the crowdsale, some of them will go to pre-mine funds to be distributed in the following way: 

\n
    \n
  • 10% \u2014 DECENT Foundation
  • \n
  • 2% \u2014 the Investment fund
  • \n
  • 1,000,000 DCT \u2014 campaign bounty
  • \n
  • 3,000,000 DCT \u2014 pre-launch marketing programme
  • \n
\n

On the crowdsale page, next to the conditions, we see a message that the project is supported by Google, though it does not correspond to the project's primary activity. Moreover, the current yellow paper ignores many issues such as, for example, how miners would store the content. Decent enters the content distribution market where such projects as Steemit, Synereo and LBRY already operate. 

\n

The crowdsale takes place here: http://sale.decent.ch/
\nFor useful links and more information, go to: https://cyber.fund/system/Decent
\n

\n

FirstBlood
\n

\n

This platform will allow players to bet without intermediaries. The payoff distribution will be also managed via smart contracts.

\n

The eSports betting market holds more than $130 million per year with 30% annual growth rate.

\n

3 monetisation channels:

\n
    \n
  • Matchmaking
  • \n
  • Revenue from the tournament organisation
  • \n
  • Advertising
  • \n
\n

Token will allow: 

\n
    \n
  • Match playing
  • \n
  • Match refereeing and voting for the referee
  • \n
  • Placing tournaments
  • \n
  • Requesting an award from referrals
  • \n
\n

Tokens distribution: 

\n
    \n
  • Crowdsale, 4 weeks, in the first hour 170 tokens for 1 ETH
  • \n
  • 10% to the project founders; these funds will be blocked for 12 months
  • \n
  • 5% will be placed in the platform development fund for the promotion and tournament awards
  • \n
  • 2.5 mln - bounty fund, to be distributed during the crowdsale for advertising and debugging
  • \n
\n

Crowdsale start date: 26 September 2016.

\n

In my opinion, it is an interesting project. The only reservation is that the market is not very vast, albeit actively developing. Besides, the motivation for developers and other market players is not very well thought through. In this regard, central players, who can also use smart contracts and predictions market to confirm the events results, may have an advantage. However, this project may indeed become the market leader on the condition of good community building and active incentivising of referees and the jury. 

\n

For detailed information about the project, see: https://firstblood.io/
\nFor useful links and more information, go to: https://cyber.fund/system/FirstBlood
\n

\n


\nMassNetwork
\n

\n

The three main entities: 

\n
    \n
  • Advertisers
  • \n
  • Websites
  • \n
  • Internet users
  • \n
\n

The basic principle is to follow the industry's trend to monetise customer attention and create a convenient and fair trading platform for all parties involved, including Internet users. Mass allows users to receive instant rewards for web surfing through the built-in p2p infrastructure based on the blockchain. As a result, advertisers will pay users a fair price for their attention and data without intermediaries.
\n

\n

An increasing number of customers are using ad-blocking software. Mass offers a browser extension and a mobile app that can block ads as well as protect personal data. Yet, their primary goal is not blocking but rather improving users' experience with advertising and rewarding them with cryptocurrency to establish a consumer-advertiser relationship and, therefore, reduce the number of ad-block users. Mass will also have a cryptocurrency wallet and blockchain-based payment system.

\n

Crowdsale dates: 6 September \u2014 1 December 2016

\n

Token distribution: 

\n
    \n
  • 70% to the crowdsale participants
  • \n
  • 30% to Mass team members
  • \n
\n

Mass plans to build its own full-blown infrastructure for advertising industry with an internal token. A similar solution has been already introduced to the market \u2013 the Brave browser. It blocks default ads and replaces it with incentivising ad materials. The bitcoins received from advertisers are distributed among users, the platform and the endorsing website. In my opinion, if Mass used smart contracts or a proprietary blockchain enabling further token emission to incentivise users and websites, they could compete with bitcoin. However, Mass token works on the bitcoin blockchain, which on the one hand makes it very secure, but on the other, has no advantage over bitcoin per se. In favour of bitcoin are accessibility, recognition, and a more stable price. 

\n

Crowdsale takes place here: https://ico.mass.network/#/?aid=ep6oxa
\nFor useful links and more information, go to: https://cyber.fund/system/MassNetwork

\n

---

\n

All data and calculations are quoted as of 6 September 2016 with bitcoin price at $609. For closed crowdsales evaluation in USD is given using the average token price at the date of closure.

\n

---

\n

Big thanks to: 

\n\n

---

\n

Original was posted in Blockchain Boom

\n


\n", + "cashout_time": "2016-09-16T19:34:50", + "category": "cyberfund", + "children": 0, + "children_abs_rshares": "4649989991534", + "created": "2016-09-15T19:30:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961089, + "json_metadata": "{\"tags\":[\"cyberfund\",\"blockchain\",\"crowdsales\"],\"links\":[\"https://cyber.fund/system/BlockPay\",\"https://cyber.fund/system/BitShares\",\"https://www.odoo.com/\",\"https://blockpay.ch/newsroom/investor-relations/blockpay-reserves/\",\"https://cyber.fund/system/AntShares\",\"http://www.antshares.org/ico\",\"http://www.elastic.pro/\",\"http://www.elastic.pro/donations\",\"https://cyber.fund/system/Elastic\",\"https://cyber.fund/system/Iconomi\",\"https://bitcointalk.org/index.php?topic=1587736.0\",\"https://ico.iconomi.net/\",\"https://cyber.fund/system/DeClouds\",\"https://drive.google.com/open?id=0B8VJa9S_WxSSSHJhN0o0QkVPN1E\",\"https://medium.com/@decloudscom/latest\",\"https://ico.declouds.com/\",\"https://cyber.fund/system/Hong\",\"http://etherscan.io/address/0x9Fa8fA61A10Ff892E4EBCeB7f4e0FC684C2ce0a9\",\"http://www.hongcoin.org/\",\"https://cyber.fund/system/Synereo\",\"https://blog.synereo.com/2015/05/10/amp-distribution-complete-2/\",\"https://blog.synereo.com/2016/08/29/synereos-second-fundraising-campaign-coming/\",\"https://www.synereo.com/alpha/\",\"https://bnktothefuture.com/\",\"https://cyber.fund/system/MaidSafeCoin\",\"https://www.synereo.com/learn-more/\",\"https://github.com/synereo/synereo.github.io/raw/master/whitepapers/synereo.pdf\",\"https://www.synereo.com/developers/\",\"http://coinmarketcap.com/assets/synereo/\",\"http://omnichest.info/lookupsp.aspx?sp=39\",\"https://www.synereo.com/sale\",\"https://cyber.fund/system/Golem\",\"http://golemproject.net/doc/GolemNanopayments.pdf\",\"https://blog.golemproject.net/golem-network-token-gnt-sale-220c2a732f9#.fdn8hljmq\",\"http://golemproject.net/slides/index.html#/14\",\"https://cyber.fund/system/SingularDTV\",\"https://singulardtv.com/\",\"https://cyber.fund/system/Decent\",\"http://sale.decent.ch/\",\"https://cyber.fund/system/FirstBlood\",\"https://firstblood.io/\",\"https://ico.mass.network/#/\",\"https://ico.mass.network/#/?aid=ep6oxa\",\"https://cyber.fund/system/MassNetwork\",\"https://steemit.com/@creator\",\"https://steemit.com/@coinfox\",\"http://blockchainboom.coinfox.info/\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:44:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:30:36", + "net_rshares": "4649989991534", + "net_votes": 10, + "parent_author": "", + "parent_permlink": "cyberfund", + "percent_hbd": 10000, + "permlink": "crowdsales-monitor-august-2016", + "reward_weight": 10000, + "root_author": "vitaly-lvov", + "root_permlink": "crowdsales-monitor-august-2016", + "title": "Crowdsales Monitor - August 2016", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "9916447926886758335", + "vote_rshares": "4649989991534" + }, + { + "abs_rshares": 64358062, + "active": "2016-09-15T19:44:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "agartha", + "author_rewards": 0, + "beneficiaries": [], + "body": "I think I just hacked Monero lol it's a joke but the security too thou \n\nLook at this! \n\n\nhttps://www.facebook.com/agartha.white.3/posts/179267779175393", + "cashout_time": "2016-09-16T19:44:00", + "category": "steemit", + "children": 0, + "children_abs_rshares": 64358062, + "created": "2016-09-15T19:44:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961211, + "json_metadata": "{\"tags\":[\"steemit\",\"hack\",\"monero\",\"bitcoin\",\"lol\"],\"links\":[\"https://www.facebook.com/agartha.white.3/posts/179267779175393\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:44:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:44:00", + "net_rshares": 64358062, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "steemit", + "percent_hbd": 10000, + "permlink": "i-hack-monero-xmr", + "reward_weight": 10000, + "root_author": "agartha", + "root_permlink": "i-hack-monero-xmr", + "title": "I hack Monero (Xmr) ?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "296794399420393", + "vote_rshares": 64358062 + }, + { + "abs_rshares": 1202120459, + "active": "2016-09-15T19:43:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "varda", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

  In the morning, at 5 am when the moon completes his round, the alarm rings, my deepest sleep I wake up painfully. K\u00e9ops my cat starts singing tour and stops only when he filled his mess tin. Sweety then, the cat of my son jumps on the furniture in the kitchen and also claimed his bowl. Kashmir him not to come after me, until I make him hugs.

\n

\n

\n

\n

 A small cup of coffee and I'm up for the day. After my shower, I have to feed the fish pond and two hens, they are waiting for me impatiently for me to release them from their cages.

\n

\n


\n

\n


\n

 6:15, I start my bag on her arm, my water bottle and my biscuit for lunch. On the road I am alone, few vehicles I meet. Great to run your car on a deserted road. In the winter when it snowed, I am the first to make tracks in the whiteness of the snow grows like cotton wool, sometimes, crazy beyond me and skids, it is an adrenaline rush. In summer the sun rises gives the sky a color of red sweetness, yellow, orange. In autumn, the trees begin to change color, it is a season because I love the beauty of trees is unique. 

\n

\n


\n

Here I come down the street or is my workplace, hospital, regional hospital, the CHR. Vehicles coming after one another because we start at 7am. The staff is found, speak, tells their evening then everyone goes to the same place: the time clock, control object of our hours worked.

\n

\n


\n

 In the ladies locker room, it gets held: white jacket with blue and green patterns representing the logo of the institution, blue pants with various pockets which we do not serve! 

\n

\n


\n

We arrive in our service, mine is the neurological rehabilitation service: we give up (or so) of people who have a stroke, an accident with neurological trauma, people who have multiple sclerosis or Guillain barred and other chronic diseases whose name is almost unknown. 

\n

\n


\n

\n


\n

\n


\n

We start our day with a report on each patient last night, we have 20 in service. After beginning the nursing: we make the toilet of the patient who is totally dependent. We get up in the chair. For others, we must educate, continue the actions he has learned with the therapist in the individual care, the patient should regain maximum independence so they can go home and take care only . It's a job that can last from 3 months to 6 months beyond, we can not do anything for them. 

\n

\n


\n

Headline in this service is: you come to bed but you leave again walking. 

\n


\n

Sometimes, we fail either because the patient does not want a return to autonomy, or because the patient is too ill. We give the same chance to everyone, rich, poor, alcoholic, drug addict, young or old. 

\n


\n

The management of a patient goes from shaving the beard of a man to the presentation on the toilet, the room arrangement the carefully tended beds. 

\n


\n

Lunch arrived around 8:30 am, few patient is in the dining hall for breakfast, other unfinished eat in bed Logistical assistance serves meals that are different if the patient is diabetic, diet, dieters, old, or in solid supply resumption. You should know that when the patient has had a stroke, a stroke, swallowing is absent, which means that if the patient eats a sandwich, but he swallows the bread goes in the bronchial tubes and not in the stomach, giving a false swallowing, bronchi become infected and it's a disaster. So this patient who made false swallowing should eat while cream consistency and drink thickened liquid. Which is not very good but I admit it must go through these stages in order to re-eat a day normally. 

\n


\n

Physiotherapists arrive at 9am and leave a 17h, occupational therapists also. There is also a neuropsychologist, a speech therapist and all do work that allows the patient to regain maximum independence, which means that the patient all day is busy. Visitors can come between 14:30 and 19:30. 

\n


\n

After lunch, we continue our work, when all is well, we finish around 10:30 or 11am but sometimes it is noon we are still in the rooms. 

\n


\n

In terms of handling, the entry of the patient, it is usually in bed or in a wheelchair with a right hemiplegia or left, some have forgotten that they had half a disabled body, so it must withstand and no wear and show him how to do with one leg to go from wheelchair to bed and vice versa. Others are completely invalid, they know not move neither arms nor legs, and for those, or we wear them either we lift them with a forklift. 

\n


\n

During dinner, we feed the disabled and we encode our care in the computer.

\n


\n

 Around 13h, we are a few naps after going on the toilet. Sometimes we have a problem in the pants, oops! When everyone is changed to bed, we have a service change ratio and the time, the hour of the end of our service is lagging. At 14h is the start of the morning shift. For my part, I take a good shower and I take the way home or waiting for my cats and my dog makes me a big party. 

\n


\n

We must not believe that the nursing profession is simple, each service is different and you can not compare the care of each other. 

\n


\n

I hope I have not bothered you with this long text, I wish you a good day to you all.     

\n", + "cashout_time": "2016-09-16T19:43:54", + "category": "story", + "children": 0, + "children_abs_rshares": 1202120459, + "created": "2016-09-15T19:43:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961208, + "json_metadata": "{\"tags\":[\"story\",\"health\"],\"image\":[\"https://www.steemimg.com/images/2016/09/15/DSCN0477faad0.jpg\",\"https://www.steemimg.com/images/2016/09/15/keops0029612b.jpg\",\"https://www.steemimg.com/images/2016/09/15/Au-sommet81f7b.jpg\",\"https://www.steemimg.com/images/2016/09/15/16e3c4.jpg\",\"https://www.steemimg.com/images/2016/09/15/Photo0224b24a.jpg\",\"https://www.steemimg.com/images/2016/09/15/d85917d4a45b3d581b5f40d1d7a7504a3bb1e.jpg\",\"https://www.steemimg.com/images/2016/09/15/chr841bd.jpg\",\"https://www.steemimg.com/images/2016/09/15/DSCN1513-Copiee7a4d.jpg\",\"https://www.steemimg.com/images/2016/09/15/Capture2bb0b8.jpg\",\"https://www.steemimg.com/images/2016/09/15/370086-1f7d83.jpg\",\"https://www.steemimg.com/images/2016/09/15/Capturec0ccc.jpg\",\"https://www.steemimg.com/images/2016/09/15/souleve-malade-foldyadb08.jpg\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:43:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:43:54", + "net_rshares": 1202120459, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "my-day-hospital", + "reward_weight": 10000, + "root_author": "varda", + "root_permlink": "my-day-hospital", + "title": "My day hospital", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "5542136534307198", + "vote_rshares": 1202120459 + }, + { + "abs_rshares": 54846770, + "active": "2016-09-15T19:43:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ejaredallen", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

Nature

\n

I haven't stopped and taken a picture of the beauty around me in a long time. It's funny how we can get so caught up in work and the business of a crazy life and miss the simply beauty along the way. Sometime you've just got to stop and smell the roses; and while you're there, take a picture!

\n

\n

These aren't roses, I know: they're wild flowers. They don't get the nurture and care that roses do, and yet they are provided for and they bloom into beautiful blossoms in their own time. They have a harder life than others, and that's how we humans are as well. Some of us were well taken care of growing up and were treated like roses, while others were left in the field to grow up alone and without the love and care we should have had. But we are all beautiful in our own ways and if we survive long enough, we will blossom into something spectacular.

\n

\n

Colorado mountain rivers

\n

When the snow on the tops of the mountains melt, it feed the rushing rivers that carve their way down the mountainside. The climbing is excellent, the whether and the views are truly gorgeous, but something about the rivers rushing through the mountains draws you in. There is a memorization about the brave rivers unafraid of the mountains and simply rushing on by recklessly.

\n

\n

Mississippi at sunset

\n

Sometimes the world just slows down and magic happens. This was one of those times. On the night before my sister's wedding in Tupelo, Mississippi the sky exploded in color. What a calm reassurance before a monumental event: the approval stamp of God upon the sanction of their marriage.

\n

\n

Hundreds of years old Indian hieroglyphs in Arizona

\n

This was an incredible hike in the Arizona mountain ranges to discover a place where the Apache Indians, or perhaps some other tribe had lived hundreds of years ago!

\n

\n

Uganda, Africa at twilight, from a moving bus

\n

Africa is always an adventure, but in 2015 we took a safari on the northern rim and caught this shot on the way back to the lodge. I love how the beauty of the world is unique in its diversity from place to place, even across the Atlantic.

\n

\n

This is one of my favorite shots. I don't remember where I took it or when, but the colors, the bliss, the peacefulness of this field of flowers was stunning. I'm glad I was able to capture an image of its beauty to remember it by. And to think, all of this beauty was made by God in a second! His power to create a world is amazing and perfect in every way. We get to see His marvelous creation every day! 

\n

Follow me @ejaredallen for more pictures and great content!

\n", + "cashout_time": "2016-09-16T19:42:24", + "category": "photography", + "children": 0, + "children_abs_rshares": 54846770, + "created": "2016-09-15T19:42:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961197, + "json_metadata": "{\"tags\":[\"photography\",\"pictures\",\"art\",\"steemit\",\"travel\"],\"image\":[\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-986x1024-289x300.jpeg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-3-1024x768-300x225.jpeg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6440-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6031-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_5829-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/2015-07-13-06-37-59-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_7281-1024x1024-300x300.jpg\"],\"links\":[\"https://steemit.com/@ejaredallen\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:43:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:42:24", + "net_rshares": 54846770, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "wanna-see-something-cool", + "reward_weight": 10000, + "root_author": "ejaredallen", + "root_permlink": "wanna-see-something-cool", + "title": "Shot From Around The Block On An iPhone!", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "252932614230673", + "vote_rshares": 54846770 + }, + { + "abs_rshares": "5891496080", + "active": "2016-09-15T19:42:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "cwbrooch", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

This is part 2 of my Memoir.  Missed Part 1? Click here.
\nDon't know what's going on? Start from the beginning here.

\n

If you like what you're reading, follow me @cwbrooch for more craziness. if you love what you're reading recommend me to other peeps :) feedback is also very appreciated.

\n

\n

Russian Roulette - A Memoir of my Two Years in Moscow - Part 2 - Under the Table Tactics

\n

In this part of my memoir I am going to attempt to describe the dark side of Moscow. All stories depicted here either happened directly to people I knew, or were described to me as  a it's-russia-get-used-to-it anecdote.
\nYes, I will be talking about corruption and paying people under the table for things but bear in mind that even though it seems like a common practice definitely not all people do that and not all people experience the phenomenon.

\n

A ROUTINE POLICE CHECK 

\n

It is said that it is extremely wise to keep 2k-5k Rubles (about 28-68 Euro, 30-77 Dollars, 23-58 Pounds) in your registration papers at all times. They tend to disappear when you get your documents back from the officer... If one does not have such loose change, the guy tends to make one's life difficult. \"You were speeding\", \"You didn't stop at the STOP sign\", \"You're light is out\" etc. Driving is another interesting phenomenon in Moscow. You might think that since the metro is so packed, the streets will be empty. On the contrary, but I will not get into that right now as that makes a completely different post...  However, what I will tell you is  how one of my students passed her driving exam, which leads us to...

\n

PAYING TO PASS AN EXAM

\n

After her first failed attempt, my student looked at her instructor/examiner and asked: \"Could you please tell me what I did wrong, so I can work on it in the future?\" He stared back at her surprised and announced: \"Well, you didn't pay me extra, what do you expect?!\" At that point even I was shocked - \"So people openly tell you they want money?!\" \"Get used to it Kasia, It's Russia....\"
\nNeedless to say, she was forced to pay the second time around and surprise, surprise, she passed....
\n
\nI taught English in a company. I came one week, and saw that everyone was kind of in a rush and slightly agitated. I asked what the problem was and they said they were waiting for an audit. I remember wishing them good luck... One lady looked at me and smiled \"We paid the guys to look the other way, it will be fine!\" I didn't even bother to comment as I had aleady known there was no point...

\n

GETTING INTO A PRIVATE EVENT

\n

It was the three of us - my BF, his friend and I. We wanted to do some clubbing and the friend decided we should go to a very trendy bar in the heart of Moscow. He had a loyalty card there and was well known among the bouncers. We didn't really look the part, but a hefty fee paid for each of us (by the friend) was enough to let us in...

\n

That was a minor party. Let's talk about the big stuff, involving bigger money!
\nIf you know someone, who knows someone, who knows someone you might be able to (legally) attend the dress rehearsal of the famous Victory Parade in May (the 9th to be exact). It costs about 10k (137 Euro, 116 Pounds , 153 Dollars) Watch fragments of the video below to see the magnitude of what I am talking about. 

\n

The whole thing is long, play with it a little bit. The good stuff starts at about 40 minutes. Source

\n

https://www.youtube.com/watch?v=5EI3FYynz-Q

\n

To enter the actual parade however, you need to be a prominent member of the society (e.g. ex-military) or someone famous or filthy rich :)

\n

The event itself is quite impressive and for soldiers taking part in the march it is an honor among honors.  
\nWe had the privilege of living 15 minutes on foot from the Red Square so we saw all the preparations and marches right outside our windows (till 11pm at night...)

\n

\n

PS. I am aware that my portrayal of Moscow might seem bleak and depressing. Believe me, it was not. I;m simply trying to describe the juicy bits, the interesting stuff :) My next post will be more optimistic as I will be talking about sports, parks an recreations  :)

\n

 ____________________________________________________________________________

\n

Thank you for reading Part 2 of my memoir.

\n

Want to find out more about living in Moscow? Follow me @cwbrooch :)

\n

My other work on Streemit:

\n

1) Russian Roulette - Preamble 

\n

2) Russian Roulette - Part 1 - Surviving Underground

\n

3) Why shouldn't you use google translate for learning English and which dictionaries are far better

\n

4)  How to learn vocabulary effectively in any language!

\n

5) About me: introduction  
\n 

\n


\n", + "cashout_time": "2016-09-16T19:44:28", + "category": "story", + "children": 0, + "children_abs_rshares": "5891496080", + "created": "2016-09-15T19:41:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961189, + "json_metadata": "{\"tags\":[\"story\",\"writing\",\"travel\",\"life\",\"russia\"],\"users\":[\"cwbrooch\"],\"image\":[\"https://s14.postimg.org/bpiqdmgpt/Untitled.jpg\",\"https://img.youtube.com/vi/5EI3FYynz-Q/0.jpg\",\"https://lh3.googleusercontent.com/3OMfOqwX2pQ5BYeql8V1tg4J6VcMzG75pLD-nhsfHw0BYFLEQOQSeVl-sVdEkDwS6VfPco-FukpjwQONwimoOhzzT4GIPDt_VGbJfNDYaltTvEcyOFK5do7PZD1-tjDW0nxKYhUQdxG4yoxX6ZS590fMaveLKSI2Voz579yTME9U8D7UgN7R3ufBrAcq0KV8kA9VqMVxryabh2X_jBiMnP3Uwjj_hrWn3ARzHggZMRuo3G3ORSKDpoqcBA25bRDeWHe7nVT4X58NolQ4yY8HVjzyUr4zDneI8dy_eHnSf0F0FBZ8kn4NQQ3ueVR84tu-Ot64CZb9a1SetmKmupvAxBbuS8z3jBsvCECD8A5jz9qevTOkgHEbV0z2hVteH64gCLg3OI9mRVqw2GWAYwNSUlGGtwCxmwXq3p_j_igwncarIhIF2HX_bV0ACrucmewR6IiIdVfaKKAO9g2ycLbJRr_SBwE9TxBND9ar0R267Grzq5SHywG71h1nxZnXInW-HQ2l1cou8zqdiEUanqkeSbgIunZVNBcEnYYinmF-WZd5y0_Luc8rdDYy0GlKAtAJ4z0-woKDs6d_XKWhiWsYOAW3rWwCe3cJylK_6H7wNO2PlBKL=w1163-h775-no\"],\"links\":[\"https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-in-moscow-part-1-surviving-underground\",\"https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-of-living-in-moscow-preamble\",\"https://www.youtube.com/channel/UC4qBu3EvraPWezHbaC7npIQ\",\"https://www.youtube.com/watch?v=5EI3FYynz-Q\",\"https://steemit.com/@cwbrooch\",\"https://steemit.com/languages/@cwbrooch/why-shouldn-t-you-use-google-translate-for-learning-english-and-which-dictionaries-are-faaaar-better\",\"https://steemit.com/languages/@cwbrooch/how-to-learn-vocabulary-effectively-in-any-language\",\"https://steemit.com/introduceyourself/@cwbrooch/teacher-story-teller-cat-lover-about-me\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:42:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:41:09", + "net_rshares": "5891496080", + "net_votes": 2, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "russian-roulette-a-memoir-part-2-under-the-table-tactics", + "reward_weight": 10000, + "root_author": "cwbrooch", + "root_permlink": "russian-roulette-a-memoir-part-2-under-the-table-tactics", + "title": "Russian Roulette - a Memoir [Part 2] - Under-the-table Tactics", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "27129771364344680", + "vote_rshares": "5891496080" + }, + { + "abs_rshares": 0, + "active": "2016-09-15T19:42:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "philanthropest", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", + "cashout_time": "2016-09-16T07:40:21", + "category": "freedom", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-15T19:40:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961180, + "json_metadata": "{\"tags\":[\"freedom\",\"anarchy\",\"steem\",\"life\",\"\"],\"image\":[\"https://img.youtube.com/vi/y02aBfNT8n4/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=y02aBfNT8n4\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:42:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "", + "parent_permlink": "freedom", + "percent_hbd": 10000, + "permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", + "reward_weight": 10000, + "root_author": "philanthropest", + "root_permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", + "title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "25365523997", + "active": "2016-09-15T19:43:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ancientofdays", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n


\nImage Source & External Article - http://lifehopeandtruth.com/prophecy/revelation/mark-of-the-beast/

\n

Just recently here in Roswell NM (where I live, yes) I was telling a shop owner about Steem and Steemit, and he made the comment that he thought it sounded like \"...one more step towards the Mark of The Beast\"...

\n
\"...And he causeth all, both small and great, rich and poor, free and bond, to receive a mark in their right hand, or in their foreheads: And that no man might buy or sell, save he that had the mark, or the name of the beast, or the number of his name. Here is wisdom. Let him that hath understanding count the number of the beast: for it is the number of a man; and his number is Six hundred threescore and six...\"
\n - Revelation Chapter 13 (
Full Chapter)
\n

Yes Virginia... I hate to break it to you, but digital currency IS indeed \"one more step towards the mark of the beast\" - and we all know it. 

\n

Let's just get that out of the way now. But fear not, this is NOT a paranoid religious post warning people about the eternal dangers of joining Steemit, nor of using digital currency in general however. This is just a hopefully rational religious post (inspired by a secular article) meant to stem paranoid fear (amongst Christians mainly) of utilizing Steemit specifically, and digital currency in general. Which I will get back to in just a second...

\n

But first... If to you, \"stemming this fear\" makes me \"part of the Satanic conspiracy\" then I can't help that, and I won't engage with or reply to you if that is your view (which you are entitled to hold, and even to express as a comment below). 

\n

I'd rather use my time to inform non-Christian people who may have clicked in here (for laughs perhaps?) that Yes, I believe that the mark of the beast is coming, and you DO need to aware of the dangers of accepting it!

\n


\nImage Source & External Article: http://www.evangelicaloutreach.org/markbeast.htm

\n

 (Hence the external articles links being detailed here for further reading - which I have not closely vetted btw, they just had top matches for images)...

\n

Anyways...

\n

As I told my friend Don (who DID join Steemit @roswellrockman ) \"So is your debit card!\"

\n

Putting Don and I's end-of-conversation succinctly, there are many aspects of our everyday lives that have brought and are bringing us \"one step closer\" to the mark of the beast - but they are not in themselves the mark, they are not evil, and (imho) they are not to be feared, or shunned. 

\n

(Altho I will note respectfully that The American Amish community feels differently - see the link below these next images.)

\n

There are indeed many examples from our now-everyday lives that could easily be said to be bringing us \"one step closer\" ... such as the \"Bar Codes\" on every product we purchase

\n


\n... especially if the same types of \"scanners\" that read them, were then pointed to a laser tattoo or RFID chip in your hand, to receive payment for these goods at the register. 

\n


\nAll 3 Images above & External Article: http://www.whatdoesitmean.com/index1392.htm

\n

\"Radio Frequency ID chips\" (see Wikipedia article) are already being used (some will say \"being tested\") to help pet owners keep track of their pets. Wal-Mart and other retailers also use them to track expensive items, to help prevent shoplifting. And especially \"hi-tech\" firms demanding secrecy and security clearances even use them on employees! 

\n

Could Big Brother and The Rothchild's and The Federal Reserve Banks and The U.N. (collectively, \"The New World Order\") one day very soon use all of this to both track you physically, and to observe or control your money supply? 

\n

Absolutely!

\n

It's no stretch at all to imagine combining RFID technology with UPC Bar Codes - and then connecting it all to your bank account via the Internet (or the Blockchain!) - to fulfill the Bible prophecy about the mark of the beast happening in the near future, or in our lifetimes.

\n

Folks I am no stranger to this belief. I first penned the words myself way back in 1997 (in my original webpage and book \"Come Sail Away : UFO Phenomenon & The Bible\"- << Amazon link to 2105 version) in the section I titled \"Genesis 6 to 666\"

\n

\"To understand how the world\u2019s entire economy could be tied into a mark on one\u2019s flesh would be a completely unimaginable miracle - a near impossibility - inconceivable to most Christians throughout the ages. This has left some events of the book of Revelation a little hard to piece together into a believable probability, much less an immediate future.
\n
\n\"In order to accomplish such an incredible thing, you\u2019d have to have some way to access a person\u2019s bank account from anywhere in the known world; all financial institutions would have to have some way of talking to each other through some sort of, of, machinated \"net,\" or a \"web,\" or something; you\u2019d have to come up with some sort of mark, or magnetic strip, or some \"barred code\" that some futuristic \"scanner\" could read; surgical or laser-tattoo technology capable of implanting it, and a \"personal secret code\" so that no one could ever rob you in this \"cashless society.\" Any-time machinery, for financial transactions, would have to be everywhere. Everyone would have to be assigned a separate number at birth. These \"scanner devices\" would have to be in every grocery, hardware, department and convenience store, and every product would have to be marked with this computerized bar-code\u2026
\n
\n\"Yup, you\u2019d need all that\u2026
\n
\n\"Get that in place and you\u2019re ready to go...\" 

\n


\n(Original 1997 cover, now out of print - 2015 version available on Amazon here)

\n

So getting to my main point - finally...

\n

YES. All kinds of technological advances from the past 30 years and more could and probably WILL - imho - be used to make the Mark of the Beast possible... call me a paranoid religious nut if you like, I do firmly believe that such is coming.

\n

The Internet itself, for example, connects and brings the whole world online. But if you're using it to read this, now, you are perhaps already hooked, and have no room to talk about Steem or digital currencies being the pre-cursors to the mark of the beast. Because everything you're already using is also...

\n

The magnetic strips on the back of the debit and credit cards you've (most likely) been using for years and years. Online banking... Bar Code technology in grocery stores that you apparently don't have the religious conviction to oppose not abstain from ... retinal scanners, or fingerprint security features in your smartphone...

\n

See what I mean? 

\n

If you are not a practicing Amish person - or you use only \"true money\" (Gold and Silver) to barter and to trade for goods and services when you need them (or farm and grow your own food, to ensure that you don't) - then there are already DOZENS of aspects of your everyday life that you have accepted and routinely utilize that have already in fact brought YOU \"one step closer to the mark of the beast.\"

\n

YES - these \"new-fangled concepts\" like Steem Dollars, Bitcoin, and Digital Currencies are perhaps OBVIOUS steps moving us all FURTHER along that path to one-world government under antichrist...

\n

(EXCEPT IT MUST BE NOTED in this article for you newbies to the concept, that TO-DATE, popular digital currencies (Steem, Bitcoin, Etherium, etc, etc) are actually intended AND ARE CURRENTLY BEING USED to help users MOVE AWAY from immoral government spying networks, and away from evil centralized banking platforms, putting \"the power in the hands of the people\" - for awhile at least. 

\n

So technically, by joining Steemit and adopting Steem as currency, you are fighting the underpinings of the Satanic One-World government that is forming all around us. You are actually, literally, restraining The Beast from his march to power! For awhile anyways...

\n

So there.)  

\n

But yes, I would affirm that some form of digital currency in general could and possibly will be used by the evil-antichrist-oneworldgovernment-rothschilds-federalreserve-warmongeringtotalitarian New World Order yet to arise under the real antichrist when he appears.

\n

In fact, it was seeing this article today published by The Coin Telegraph 

\n


\n4 Reasons Why Your Nation Will Kill Cash For A Digital Currency

\n

that inspired me to drop everything and write this particular article. 

\n

The Coin Telegraph wonderfully details how national interests (Satanic, New World Order interests, for our purposes here) probably will in fact adopt a digital currency of their own in the coming years. I can totally see THEIR VERSION of a global digital currency exchange being the near-final step in implementing the true Mark of the Beast, when (but not until) The Antichrist is revealed.

\n

But Steem/Steemit just isn't it. Today's free market digital currencies - if anything - are the \"gum in the works - fly in the ointment - monkey wrench in the machine\" to the eventual true Mark of the Beast, now that I think about it. Today's digital currencies actually serve to free us from the system that is now in place, by providing de-centralized mediums of currency (barter, exchange, etc) that serve as powerful alternatives to current banking structures, and chains.

\n

Governmental agencies (NWO ones or not) are actually in a scramble currently to figure out HOW to regulate, tax, and ultimately control the existing currencies. But neither they - not the devil - are behind them. 

\n

So my position is to say that unless you're either willing to become Amish today and forego ALL of the technologies I've detailed here (and electricity) then you've really nothing to fear from becoming an early adopter of Steem/Steemit. 

\n

The Bible clearly instructs and solemnly warns all to not accept the Mark of the Beast, when it finally comes in the form of a mark on your hand or forehead that cannot buy or sell without receiving. Abstaining from \"the steps\" has proven impractical, unavoidable (again, except to the Amish), and ultimately not directly commanded in scripture.
\n 
\n===============
\nTwo things in closing:
\n#1) Here's one more lengthy scripture-packed article on Biochips & TMOTB I'll recommend if you're unlearned about the whole topic...
\n#2) You may have noticed in this article that I'm an author in Roswell who deals with the topics of Aliens, UFOs, and The Bible. I have to date organized 7 conferences on that topic, and (after a 7 year hiatus) am putting together a new one for Summer 2017... please follow @ancientofdays for updates and tons of videos yet to come from past speakers and theologians who have participated, and will be again this year. 

\n

I bring all of this up in THIS article, only to announce here that:

\n

My non-profit \"Roswell Mission\" will be accepting Steem for conference registrations (follow for details) and that
\nUP-FRONT VIP SEATING goes to those who pay VIA STEEMIT!

\n", + "cashout_time": "2016-09-16T19:18:59", + "category": "money", + "children": 2, + "children_abs_rshares": "25365523997", + "created": "2016-09-15T18:57:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 960785, + "json_metadata": "{\"tags\":[\"money\",\"religion\",\"steem\",\"beyondbitcoin\",\"christianity\"],\"users\":[\"roswellrockman\",\"ancientofdays\"],\"image\":[\"http://dc95wa4w5yhv.cloudfront.net/image-cache/the-mark-of-the-beast_640_426_80_c1.jpg\",\"https://scontent-lax3-1.xx.fbcdn.net/v/t1.0-0/s526x395/14358900_10154412654816605_8330352735442203600_n.jpg?oh=e2a53091d31ad716798686aec3f7bef0&oe=586CF056\",\"http://www.whatdoesitmean.com/wmb2.jpg\",\"http://www.whatdoesitmean.com/wmb3.jpg\",\"http://www.whatdoesitmean.com/wmb4.jpg\",\"http://www.alienstranger.com/seekye1//CSAcover.jpg\",\"https://cointelegraph.com/images/725_Ly9jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy8zYjkxMjBiMjg3YTRmZDJjZjE5MTcyZDk0ZDBhOGQzOC5qcGc=.jpg\"],\"links\":[\"http://lifehopeandtruth.com/prophecy/revelation/mark-of-the-beast/\",\"http://www.AlienStranger.com\",\"http://www.ancientsofdays.net\",\"https://www.biblegateway.com/passage/?search=Revelation+13&version=KJV\",\"https://cointelegraph.com/news/4-reasons-why-your-nation-will-kill-cash-for-a-digital-currency\",\"http://www.evangelicaloutreach.org/markbeast.htm\",\"http://www.whatdoesitmean.com/index1392.htm\",\"https://en.wikipedia.org/wiki/Radio-frequency_identification\",\"http://amzn.to/1Ueug63\",\"http://www.av1611.org/666/biochip.html\",\"https://steemit.com/steemitabuse/@ancientofdays/credibility-matters-on-steemit-therefore-i-wish-to-offer-some-proof-photos-of-my-non-profit-status-and-intent-here\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:41:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T18:57:12", + "net_rshares": "25365523997", + "net_votes": 6, + "parent_author": "", + "parent_permlink": "money", + "percent_hbd": 10000, + "permlink": "are-steem-bitcoin-etc-obvious-pre-cursors-to-the-mark-of-the-beast", + "reward_weight": 10000, + "root_author": "ancientofdays", + "root_permlink": "are-steem-bitcoin-etc-obvious-pre-cursors-to-the-mark-of-the-beast", + "title": "Are Steem, Bitcoin, etc.. Obvious Pre-cursors to The Mark of the Beast?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "116240705764176930", + "vote_rshares": "25365523997" + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json index b89309b4..c160d287 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 736241, - "author": "shortcut", - "permlink": "palma-panorama-on-acid", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Palma Panorama on Acid", - "body": "\n

This is how the harbour of Palma de Mallorca looks like if you drop some Acid.

\n\n\"Palma_rama241fb8.jpg\"\n

(just kidding)

\n

Actually I played around with some presets in Adobe Lightroom.

\n

The one I used here is called Alien Hangover and can be downloaded here for free as part of a set called focus-beauty-builder.

\n

Below is the original image shot with the panorama function of my iPhone 6s. As you can see it's been a cloudy day.

\n\"Palma_original99287.jpg\"\n

\n

What kind of image processing software do you use?

\n

What are your thoughts about presets?

\n
\n

If you want to see more experiments with panorama-images, then you might want to check out this post by @shaka

\n
and \"\" me!
\n\n", - "json_metadata": "{\"tags\":[\"photography\",\"travelling\",\"lightroom\",\"inspiration\",\"art\"],\"users\":[\"shaka\"],\"image\":[\"https://www.steemimg.com/images/2016/08/24/Palma_rama241fb8.jpg\",\"https://www.steemimg.com/images/2016/08/24/Palma_original99287.jpg\",\"http://i.imgur.com/YSt1Mis.gif\"],\"links\":[\"http://profiphotos.com/blog/en/2008/11/new-lightroom-2-presets-focus-beauty-builder/\",\"https://steemit.com/photography/@shaka/a-different-way-to-stitch-a-panorama-view-original-photos\",\"https://steemit.com/@shortcut\"]}", - "last_update": "2016-08-24T21:29:12", - "created": "2016-08-24T21:29:12", - "active": "2016-08-29T07:58:48", - "last_payout": "2016-08-25T21:49:00", - "depth": 0, - "children": 4, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 50025990, - "cashout_time": "2016-09-24T21:49:00", - "max_cashout_time": "2016-09-12T08:16:12", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "124", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "15", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 90, - "net_votes": 8, - "root_author": "shortcut", - "root_permlink": "palma-panorama-on-acid", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 736231, - "author": "poeticsnake", - "permlink": "ella-s-hidden-pain-original-story-part-1", - "category": "story", - "parent_author": "", - "parent_permlink": "story", - "title": "Ella's hidden pain! ( Original story )) Part 1", - "body": "\n

  Ella's hidden pain!  

\n


\n

The morning sun is shining brightly, kissing my warmed skin, radiating through the glass of the window in my living room. It’s the spot I stand at every morning, anxious to greet the new day and the little girl that walks by every morning at the same time. I always smile and wave at her, holding my hot coffee in my free hand. It’s the perfect start of my day, even in the winter, when the sun is not that strong, but this young girl is, in a very special way, the real sunshine that brightens each beginning of my day. I look forward to and yearn for this brief moment we share, as it warms me in the deepest, most spiritual way I've ever felt.   

\n


\n

Perhaps it's because this little girl reminds me of myself, when I was young and still so very innocent. I reminisce of my childhood as she approaches me, wistful in the memories that flood my senses. As she passes my house, she looks intently at me, flashing me the most warming, innocent smile that only a child can give, and ever so so slowly, she lifts her little hand to give me a friendly wave, knowing I will be here and It warms my demonic heart. At least, it warms it until the moment she passes and starts to look at the ground again. I have followed her a few times. She keeps her eyes on the ground until she gets to where she needs to be, whether it's school, the mall or even her own house. I do not wish to stalk, nor am I a freak. This little girl has just captured my interest and there is a deep mystery I feel, deep within her that gives us this strange connection, a deep sense that I NEED to do this, help her in some way? I don't know. 

\n


\n

All I do know is that it tears at me from within and is a mystery that I need to unravel. This girl has something that has stirred a long lost emotion, deep inside my ice-cold heart. Maybe its because I am spending to much time here, living within the human realm. I do not belong here, living among them in this land, nor do I even care about humans, in general, at all. But this girl... mesmerizes me with the strangest feelings. I just feel an overwhelming need to know her.   

\n


\n

Slowly I lift my hand and take a sip from my black coffee and from the corners of my eyes, I can see her coming my way. I am already feeling my lips curl into a soft smile. I get ready to see her smile back at me, as she always does, but she walks faster then normal now, keeping her eyes on to the ground. She did not smile at me, nor did she lifted her head. It made me feel cold, as if something was wrong, with this little angelic human child. Quickly I place my coffee on the side table and make my way outside, I know her scent, and its easy for me to pick up her trace. Her scent is like a fresh basket of pink flowers, but this time there is a little trace of warm blood mixed in her scent. It alerts my highly tuned senses and makes me walk even faster. Within a minute I see her at the corner and I speed up a little more. 

\n


\n

At this moment I wish that I knew the child's name, so that I could call her. Her little red jacked makes me feel like I am a bull chasing her down, but in a good way. The girls face is hidden in the big hoodie that is on her jacket, and she is still looking down at the ground, while she takes step after step with her little feet. Softly, I tap her on her left shoulder, I can feel her jump at the surprising sensation of my touch. The child stops walking and slowly turns towards me. I can see fear in her troubled, glassy, big brown eyes as they stare at me, deeply and intently, into my sparkling green eyes that plead to her 'I'm here to help. Trust me!'    

\n


\n

My heart tells me to kneel down so that I do not look so big, hoping it might take some of her fear away. I force myself to smile as sweet as I can, because the last thing I want is to scare this child I've been longing to get closer to, away from me.  

\n


\n

 \"I am sorry that I scared you.\" I speak to her in my soft, angelic voice, a ploy I use sometimes, to seem more friendly than I really am. I lift my hand for her to take, but she doesn't move, instead, her hands remain unflinching, nestled deep within her large, comfortable pockets. With my keen, inhuman ears, I can hear her little heart beating rhythmically in her chest. The scent of her fresh, untainted blood soon follows, so intoxicating, so inviting, tickling my nostrils, making me crave just a tiny powerful drop to savor, yet there is no sign of blood on this child at all. The feeling came over me so suddenly and oddly, I begin to wonder if she might have a few wounds hidden under her pretty clothing. Weirdly enough, too, is the fact that the scent of this little humans blood is not making me hungry, for the first time in my long demonic life, but instead, the scent of her blood gives me a deep, uncaring feeling of dread that genuinely worries me. I need to find out more, and fast!  

\n


\n

 \"May I ask your name?\" I ask her softly, while I placing both of my hands onto my knee's, not forcing them on her any longer, possibly scaring her away. \"You always smile so beautiful at me in the morning, but today I missed that.\" I continue some small talk, hoping she responds but when the little girl bites on the inside of her cheeks, her big brown eyes looking more than sad, there is no light in them at all and it even breaks my callous heart to see it.   

\n


\n

 

\n


\n

Disclaimer: I am the writer of this story, I have published it under my author name Bibi Rillmann.

\n

If you want to read the whole story you can also buy the book on Amazon with this link: https://www.amazon.com/dp/B011ANCU58

\n", - "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"writing\"],\"image\":[\"https://s6.postimg.org/ma66gmakx/418_Gx_Rsw5_SL.jpg\"],\"links\":[\"https://www.amazon.com/dp/B011ANCU58\"]}", - "last_update": "2016-08-24T21:28:21", - "created": "2016-08-24T21:28:21", - "active": "2016-08-24T21:28:21", - "last_payout": "2016-08-26T14:48:54", - "depth": 0, - "children": 0, - "net_rshares": "14608061929", - "abs_rshares": "14608061929", - "vote_rshares": "14608061929", - "children_abs_rshares": "14608061929", - "cashout_time": "2016-09-25T14:48:54", - "max_cashout_time": "2016-09-13T23:31:03", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 9, - "root_author": "poeticsnake", - "root_permlink": "ella-s-hidden-pain-original-story-part-1", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 736204, - "author": "dmilash", - "permlink": "original-photo-from-turkey-pirate-cave-and-lovers-cave", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Original photo from Turkey: Pirate cave and Lovers Cave etc.", - "body": "\n

Pirate Cave

\n

There are a lot of  stories and legends. Locals believe that before this place was chosen by pirates. They hid treasure in the cave, then transported through a tunnel to the city.

\n

\n

Lovers Cave

\n

Many legends about the Lovers Cave. According one of them - lovers together must to jump off a high ledge, then nothing is no able to separate them. Now jumps banned.

\n

\n

\n

Old fortress town

\n

\n

\n

Now it is Russian territory )))

\n

\n

\n", - "json_metadata": "{\"tags\":[\"photography\"],\"image\":[\"http://i.share.pho.to/5bd63a86_o.jpeg\",\"http://i.share.pho.to/badc9c25_o.jpeg\",\"http://i.share.pho.to/66d78edf_o.jpeg\",\"http://i.share.pho.to/bc535078_o.jpeg\",\"http://i.share.pho.to/1bd80fa4_o.jpeg\",\"http://i.share.pho.to/43b23d20_o.jpeg\",\"http://i.share.pho.to/a951f3d0_o.jpeg\"]}", - "last_update": "2016-08-24T21:27:09", - "created": "2016-08-24T21:26:15", - "active": "2016-08-24T22:03:45", - "last_payout": "2016-08-25T22:04:12", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-24T22:04:12", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 4114, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 13, - "root_author": "dmilash", - "root_permlink": "original-photo-from-turkey-pirate-cave-and-lovers-cave", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 736208, - "author": "moonman", - "permlink": "costa-rica-celebrates-113-days-of-100-percent-free-energy", - "category": "energy", - "parent_author": "", - "parent_permlink": "energy", - "title": "Costa Rica celebrates 113 days of 100 percent renewable energy", - "body": "http://i.imgsafe.org/e103059e0b.jpeg\nCosta Rica is much more than a lush, green tourist paradise; it’s also a green energy pioneer. The small Central American nation has generated 100 percent of its electricity from renewable sources for the past 113 days, and the run isn’t over yet. The country, which draws clean energy from a variety of renewable sources, still has its sights on a full year without fossil fuels. With a 113-day stretch of 100-percent renewable energy under its belt and several months left in the year, Costa Rica is edging closer to its target. Costa Rica could be on track to match the record set with its renewable energy production last year, which accounted for 99 percent of the country’s electricity. That included 285 days powered completely by renewable sources, according to the Costa Rican Electricity Institute. Costa Rica is able to take advantage of a multitude of renewable energy sources because of its unique climate and terrain. Most of the nation’s renewable energy comes from hydropower, due to its large river system and heavy tropical rainfalls. Solar, wind, biomass, and geothermal energy also play key roles.\n\nThe tropical nation aims to be free from fossil fuels in just five years. With hefty investments in geothermal energy projects and a forecast for more heavy rains in the coming years, that goal could be accomplished even sooner than originally planned.", - "json_metadata": "{\"tags\":[\"energy\",\"news\",\"truth\",\"costarica\",\"america\"],\"image\":[\"http://i.imgsafe.org/e103059e0b.jpeg\"]}", - "last_update": "2016-08-24T21:27:09", - "created": "2016-08-24T21:26:21", - "active": "2016-08-25T00:31:27", - "last_payout": "2016-08-26T00:27:45", - "depth": 0, - "children": 3, - "net_rshares": -2456106752359, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-25T00:27:45", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "moonman", - "root_permlink": "costa-rica-celebrates-113-days-of-100-percent-free-energy", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 736068, - "author": "lilli", - "permlink": "london-based-artist-bringing-culture-to-steemit", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "London-based artist bringing culture to Steemit", - "body": "\n

Hi there fellow Steemers, my name is Lilli and here’s a little bit about myself and why I’m here.

\n

I am a London based artist and theatre designer-to-be. My aim is to bring a whole lot of culture and a little bit of me to Steemit. 

\n

\n

  Introduced to Steemit by a friend, I was rather skeptical at first. I generally don’t trust the internet and all that is or isn’t going on inside this impenetrable machine. Nevertheless I have now chosen to do these first steps into unknown land and overcome my e-phobia. My reason to do so is simply that this is the future, there’s no way around it and you might as well live it!  In fact I think it is an amazing opportunity for artists, travellers and intellectuals of all sorts to present and exchange their work and thoughts and opinion. It’s a space to openly communicate with people all over the globe, freely express oneself and start discussions with total strangers. Overall it’s a real step forward.

\n

\n

What you can expect from me on Steemit are posts about my work as an artist, studies of theatre design, observations within my city, on travels and of the human mind and really anything that catches my interest.   Some of my hobbies and interests include travelling, exploring my city (London), ...

\n

\n

...cooking (though my boyfriend does most of that), photography, dressing up, mountaineering, rock climbing and other adrenalin enducing sports.

\n

\n

\n

Route of a crazy backpacker journey, I will most definitely write about. With 30 hour train journeys, friends left behind, a flooded festival and much more!
\n
\nIf you're curious for some travel adventures and cultural posts, FOLLOW ME!
\nI promise it'll be worth it ;)

\n", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"art\",\"photography\",\"steemit\",\"travel\"],\"image\":[\"https://i.imgsafe.org/e0fded406a.png\",\"https://i.imgsafe.org/e10eaa131a.png\",\"https://i.imgsafe.org/e103ab1660.png\",\"https://i.imgsafe.org/e1096709b8.png\",\"https://i.imgsafe.org/e100e9033f.png\"]}", - "last_update": "2016-08-24T21:26:48", - "created": "2016-08-24T21:14:27", - "active": "2016-08-25T15:06:48", - "last_payout": "2016-08-25T21:44:33", - "depth": 0, - "children": 4, - "net_rshares": 933355159, - "abs_rshares": 933355159, - "vote_rshares": 933355159, - "children_abs_rshares": 933355159, - "cashout_time": "2016-09-24T21:44:33", - "max_cashout_time": "2016-09-08T22:48:15", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "348", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "90", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 250, - "net_votes": 12, - "root_author": "lilli", - "root_permlink": "london-based-artist-bringing-culture-to-steemit", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 736196, - "author": "sayanthan", - "permlink": "new-allegations-hits-out-hillary-clinton-s-election-campaigns", - "category": "politics", - "parent_author": "", - "parent_permlink": "politics", - "title": "New Allegations Hits-out Hillary Clinton's Election Campaigns", - "body": "http://dimg.zoftcdn.com/s1/photos/news/thumbs/world/country/usa/h/hilery_clindon001/img/625.117.560.350.160.300.053.800.210.160.90.jpg\nDonors to the Clinton Foundation had special access to Hillary Clinton,when she was Secretary of State, fresh documents brought to light by two conservative groups on Monday showed, in a setback to the Democratic candidate's presidential campaign.\n\nThe Republican candidate Donald Trump has sought an investigation by a special prosecutor into the links between the foundation and the State Department under Ms. Hillary Clinton.\n\nThe Former President Bill Clinton said in a statement on Monday the foundation would stop accepting foreign donations, if his wife were to become the President. The foundation had made the same announcement last week. Ms. Hillary Clinton had pledged to dissociate from the functioning of the foundation, when she took over as the Secretary of State.\n\nBut, however, the staff of the foundation sought special treatment for donors from the State Department, according to the documents.\n\nAmong the new revelations is how the foundation staff intervened on be half of the Crown Prince of Bahrain, a donor.\n\nThe Crown Prince could not get a meeting with Ms. Hillary Clinton through State Department Channels, but did get one after Foundation Executive Douglas Band wrote to Huma Abedin, aclose aide of hers. “Good friend of ours,” Mr. Band wrote to Ms. Abedin,requesting a meeting for the Crown Prince.\n\nDonald Trump said, “No issue better illustrates how corrupt my opponent is than her pay for play scandals as the Secretary of State,” Mr. Trump said,demanding an investigation.\n\nIn a separate development, a federal judge on Monday asked the State Department to expedite the process of reviewing and releasing a set of nearly 15,000 emails that were not handed over to the Department as‘work-related’ earlier. The FBI had uncovered these emails during its investigation of a private server Ms. Hillary Clinton had maintained.\n\nThe Clinton Foundation accepts money from foreign donors, including foreign governments, which Mr. Donald Trump alleges is a threat to the U.S.National Security.\n\nNews source Tamil focus.com", - "json_metadata": "{\"tags\":[\"politics\",\"news\"],\"image\":[\"http://dimg.zoftcdn.com/s1/photos/news/thumbs/world/country/usa/h/hilery_clindon001/img/625.117.560.350.160.300.053.800.210.160.90.jpg\"]}", - "last_update": "2016-08-24T21:25:27", - "created": "2016-08-24T21:25:27", - "active": "2016-08-24T21:25:27", - "last_payout": "2016-08-25T21:25:27", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-24T21:25:27", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "sayanthan", - "root_permlink": "new-allegations-hits-out-hillary-clinton-s-election-campaigns", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 736189, - "author": "maceytomlin", - "permlink": "macey-tomlin-advocating-for-psychedelic-therapy", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "Macey Tomlin: Advocating for Psychedelic Therapy", - "body": "

https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/14055152_10154376523262180_7573779098355793143_n.jpg?oh=d2a68c63bfb4e5d16714403c49fb2fcf&oe=58417095

\n\nHello Steemit community! My name is Macey, and I have recently joined Steemit so I can become more involved with the Anarchist Community. I have written a couple articles, but in all the excitement, I forgot to give a proper introduction.\n\n

https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/12376121_10153719290912180_997199044763883123_n.jpg?oh=4e3622e8aee631343faa6de4a21daaf4&oe=5855FB15

\n

About Me

\n\nWhen I was just shy of twenty, I realized the truth of the nature of our government after watching the popular documentary, *Zeitgeist.* Shortly after, I started micro-dosing daily with psilocybin mushrooms. This form of therapy lasted three months. I consider this a vital part of my evolution as an anarchist, and have devoted my life to helping people understand alternative medicine and the positive effects they can have on the body, mind and spirit. I truly believe our minds are eternal libraries, and psychedelics can be the key to accessing that knowledge. \n\nI hope you'll join me here! My writings will be focused on alternative therapy, among other topics.", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"anarchy\",\"psychedelics\",\"alternative\",\"medicine\"],\"image\":[\"https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/14055152_10154376523262180_7573779098355793143_n.jpg?oh=d2a68c63bfb4e5d16714403c49fb2fcf&oe=58417095\",\"https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/12376121_10153719290912180_997199044763883123_n.jpg?oh=4e3622e8aee631343faa6de4a21daaf4&oe=5855FB15\"]}", - "last_update": "2016-08-24T21:24:48", - "created": "2016-08-24T21:24:48", - "active": "2016-08-28T17:57:48", - "last_payout": "2016-08-25T23:01:18", - "depth": 0, - "children": 9, - "net_rshares": "108915090155", - "abs_rshares": "108915090155", - "vote_rshares": "108915090155", - "children_abs_rshares": "134531468918", - "cashout_time": "2016-09-24T23:01:18", - "max_cashout_time": "2016-09-09T03:50:33", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "100", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "27", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 72, - "net_votes": 40, - "root_author": "maceytomlin", - "root_permlink": "macey-tomlin-advocating-for-psychedelic-therapy", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 735968, - "author": "terryrall", - "permlink": "reagan-versus-trump-no-comparison", - "category": "politics", - "parent_author": "", - "parent_permlink": "politics", - "title": "Reagan versus Trump...NO Comparison!", - "body": "http://media.salon.com/2015/09/reagan_trump.jpg\n\nhttp://www.chicagotribune.com/news/opinion/editorials/ct-donald-trump-ronald-reagan-president-edit-0501-20160429-story.html\n\nThere is NO comparison between Ronald Reagan & Donald Trump. Reagan was greatly admired by NOT only Republicans but even Democrats as well. The BIG TENT that the Democrats are now using was inherently borrowed from Ronald Reagan. He was well mannered & a consumate gentleman with a great positive attitude that he carried well. Reagan didn't build walls, he tore them down. He was at the helm during Gorbachev's 'glasnost' & 'peristroyka'. And Ronald Reagan fostered a GOOD relationship with the USSR as it finally fell. Reagan was the 'Great Communicator' & the 'Great Compromiser'. Even if you didn't agree with him, you still took a liking to him as he was very approachable. He compromised with a Democratic Congress & made the wheels of government turn. He was a 'strong leader' that didn't have to fight bloody conflicts & wars to make his point. But MOST of ALL Reagan stressed UNITY of nation & country. He just stayed well mannered at ALL TIMES!\n\nNow let's look at Trump. He's the 'Great Divider', good at setting one group against another. He's at best 'ill mannered' with a Totally NEGATIVE ATTITUDE. To Trump our nation is a 'miserable trash heap on a hill' and our diversity is just a 'punchline' to prey upon. Not ONLY is he insulting & unapproachable, most people want to 'punch' him in the face! Trump couldn't unify anything if he tried. He is a 'strong armed dictator' that wants everything & person to bend to his will. He lives on bad events, & thrives on misery. He wants his followers to GET INTO BLOODY CONFLICTS, and insistently wants to START World War 3! He knows no manners to speak of & he 'gins up' his followers into a 'frenzy' of violent behavior!\n\nAlso to note: Ronald Reagan was Governor of California for years before he took control at the helm of the Presidency! So he KNEW how government works! Donald Trump & his Teabagging Followers don't have the FIRST idea of how government operates. You don't run this country like a corporate interest!\n\nIn conclusion, believe it or not NAFTA was originally Reagan's 'brainchild'. If you have the 'slightest' respect for the Reagan legacy, you WON'T allow Trump into the White House!\n\n\n", - "json_metadata": "{\"tags\":[\"politics\",\"trump\",\"reagan\",\"news\"]}", - "last_update": "2016-08-24T21:24:36", - "created": "2016-08-24T21:05:45", - "active": "2016-08-26T23:56:54", - "last_payout": "2016-08-25T21:08:12", - "depth": 0, - "children": 2, - "net_rshares": -61964463, - "abs_rshares": 61964463, - "vote_rshares": 0, - "children_abs_rshares": 2364572745, - "cashout_time": "2016-09-24T21:08:12", - "max_cashout_time": "2016-09-08T23:22:51", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "terryrall", - "root_permlink": "reagan-versus-trump-no-comparison", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 735834, - "author": "mohamedmashaal", - "permlink": "no-man-s-sky-honest-game-trailers-steemtube", - "category": "steemtube", - "parent_author": "", - "parent_permlink": "steemtube", - "title": "Delete", - "body": "Delete", - "json_metadata": "{\"tags\":[\"delete\",\"steemtube\"]}", - "last_update": "2016-08-24T21:24:24", - "created": "2016-08-24T20:53:54", - "active": "2016-08-24T21:24:24", - "last_payout": "2016-08-25T20:53:54", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-24T20:53:54", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "mohamedmashaal", - "root_permlink": "no-man-s-sky-honest-game-trailers-steemtube", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 736173, - "author": "ghostvangogh", - "permlink": "silhouettes", - "category": "art", - "parent_author": "", - "parent_permlink": "art", - "title": "Silhouettes", - "body": "https://scontent-dft4-2.xx.fbcdn.net/v/t1.0-9/13892044_514122035452799_7084570694564074093_n.jpg?oh=a4e8c52daf63a5fb0a2cf7647b6bdc3d&oe=585A651A", - "json_metadata": "{\"tags\":[\"art\",\"blog\",\"photography\",\"digital\",\"nature\"],\"image\":[\"https://scontent-dft4-2.xx.fbcdn.net/v/t1.0-9/13892044_514122035452799_7084570694564074093_n.jpg?oh=a4e8c52daf63a5fb0a2cf7647b6bdc3d&oe=585A651A\"]}", - "last_update": "2016-08-24T21:23:48", - "created": "2016-08-24T21:23:48", - "active": "2016-08-24T21:23:48", - "last_payout": "2016-08-25T21:23:48", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-24T21:23:48", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "ghostvangogh", - "root_permlink": "silhouettes", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T07:58:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "shortcut", + "author_rewards": 90, + "beneficiaries": [], + "body": "\n

This is how the harbour of Palma de Mallorca looks like if you drop some Acid.

\n\n\"Palma_rama241fb8.jpg\"\n

(just kidding)

\n

Actually I played around with some presets in Adobe Lightroom.

\n

The one I used here is called Alien Hangover and can be downloaded here for free as part of a set called focus-beauty-builder.

\n

Below is the original image shot with the panorama function of my iPhone 6s. As you can see it's been a cloudy day.

\n\"Palma_original99287.jpg\"\n

\n

What kind of image processing software do you use?

\n

What are your thoughts about presets?

\n
\n

If you want to see more experiments with panorama-images, then you might want to check out this post by @shaka

\n
and \"\" me!
\n\n", + "cashout_time": "2016-09-24T21:49:00", + "category": "photography", + "children": 4, + "children_abs_rshares": 50025990, + "created": "2016-08-24T21:29:12", + "curator_payout_value": { + "amount": "15", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736241, + "json_metadata": "{\"tags\":[\"photography\",\"travelling\",\"lightroom\",\"inspiration\",\"art\"],\"users\":[\"shaka\"],\"image\":[\"https://www.steemimg.com/images/2016/08/24/Palma_rama241fb8.jpg\",\"https://www.steemimg.com/images/2016/08/24/Palma_original99287.jpg\",\"http://i.imgur.com/YSt1Mis.gif\"],\"links\":[\"http://profiphotos.com/blog/en/2008/11/new-lightroom-2-presets-focus-beauty-builder/\",\"https://steemit.com/photography/@shaka/a-different-way-to-stitch-a-panorama-view-original-photos\",\"https://steemit.com/@shortcut\"]}", + "last_payout": "2016-08-25T21:49:00", + "last_update": "2016-08-24T21:29:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-12T08:16:12", + "net_rshares": 0, + "net_votes": 8, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "palma-panorama-on-acid", + "reward_weight": 10000, + "root_author": "shortcut", + "root_permlink": "palma-panorama-on-acid", + "title": "Palma Panorama on Acid", + "total_payout_value": { + "amount": "124", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "14608061929", + "active": "2016-08-24T21:28:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "poeticsnake", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

  Ella's hidden pain!  

\n


\n

The morning sun is shining brightly, kissing my warmed skin, radiating through the glass of the window in my living room. It\u2019s the spot I stand at every morning, anxious to greet the new day and the little girl that walks by every morning at the same time. I always smile and wave at her, holding my hot coffee in my free hand. It\u2019s the perfect start of my day, even in the winter, when the sun is not that strong, but this young girl is, in a very special way, the real sunshine that brightens each beginning of my day. I look forward to and yearn for this brief moment we share, as it warms me in the deepest, most spiritual way I've ever felt.   

\n


\n

Perhaps it's because this little girl reminds me of myself, when I was young and still so very innocent. I reminisce of my childhood as she approaches me, wistful in the memories that flood my senses. As she passes my house, she looks intently at me, flashing me the most warming, innocent smile that only a child can give, and ever so so slowly, she lifts her little hand to give me a friendly wave, knowing I will be here and It warms my demonic heart. At least, it warms it until the moment she passes and starts to look at the ground again. I have followed her a few times. She keeps her eyes on the ground until she gets to where she needs to be, whether it's school, the mall or even her own house. I do not wish to stalk, nor am I a freak. This little girl has just captured my interest and there is a deep mystery I feel, deep within her that gives us this strange connection, a deep sense that I NEED to do this, help her in some way? I don't know. 

\n


\n

All I do know is that it tears at me from within and is a mystery that I need to unravel. This girl has something that has stirred a long lost emotion, deep inside my ice-cold heart. Maybe its because I am spending to much time here, living within the human realm. I do not belong here, living among them in this land, nor do I even care about humans, in general, at all. But this girl... mesmerizes me with the strangest feelings. I just feel an overwhelming need to know her.   

\n


\n

Slowly I lift my hand and take a sip from my black coffee and from the corners of my eyes, I can see her coming my way. I am already feeling my lips curl into a soft smile. I get ready to see her smile back at me, as she always does, but she walks faster then normal now, keeping her eyes on to the ground. She did not smile at me, nor did she lifted her head. It made me feel cold, as if something was wrong, with this little angelic human child. Quickly I place my coffee on the side table and make my way outside, I know her scent, and its easy for me to pick up her trace. Her scent is like a fresh basket of pink flowers, but this time there is a little trace of warm blood mixed in her scent. It alerts my highly tuned senses and makes me walk even faster. Within a minute I see her at the corner and I speed up a little more. 

\n


\n

At this moment I wish that I knew the child's name, so that I could call her. Her little red jacked makes me feel like I am a bull chasing her down, but in a good way. The girls face is hidden in the big hoodie that is on her jacket, and she is still looking down at the ground, while she takes step after step with her little feet. Softly, I tap her on her left shoulder, I can feel her jump at the surprising sensation of my touch. The child stops walking and slowly turns towards me. I can see fear in her troubled, glassy, big brown eyes as they stare at me, deeply and intently, into my sparkling green eyes that plead to her 'I'm here to help. Trust me!'    

\n


\n

My heart tells me to kneel down so that I do not look so big, hoping it might take some of her fear away. I force myself to smile as sweet as I can, because the last thing I want is to scare this child I've been longing to get closer to, away from me.  

\n


\n

 \"I am sorry that I scared you.\" I speak to her in my soft, angelic voice, a ploy I use sometimes, to seem more friendly than I really am. I lift my hand for her to take, but she doesn't move, instead, her hands remain unflinching, nestled deep within her large, comfortable pockets. With my keen, inhuman ears, I can hear her little heart beating rhythmically in her chest. The scent of her fresh, untainted blood soon follows, so intoxicating, so inviting, tickling my nostrils, making me crave just a tiny powerful drop to savor, yet there is no sign of blood on this child at all. The feeling came over me so suddenly and oddly, I begin to wonder if she might have a few wounds hidden under her pretty clothing. Weirdly enough, too, is the fact that the scent of this little humans blood is not making me hungry, for the first time in my long demonic life, but instead, the scent of her blood gives me a deep, uncaring feeling of dread that genuinely worries me. I need to find out more, and fast!  

\n


\n

 \"May I ask your name?\" I ask her softly, while I placing both of my hands onto my knee's, not forcing them on her any longer, possibly scaring her away. \"You always smile so beautiful at me in the morning, but today I missed that.\" I continue some small talk, hoping she responds but when the little girl bites on the inside of her cheeks, her big brown eyes looking more than sad, there is no light in them at all and it even breaks my callous heart to see it.   

\n


\n

 

\n


\n

Disclaimer: I am the writer of this story, I have published it under my author name Bibi Rillmann.

\n

If you want to read the whole story you can also buy the book on Amazon with this link: https://www.amazon.com/dp/B011ANCU58

\n", + "cashout_time": "2016-09-25T14:48:54", + "category": "story", + "children": 0, + "children_abs_rshares": "14608061929", + "created": "2016-08-24T21:28:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736231, + "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"writing\"],\"image\":[\"https://s6.postimg.org/ma66gmakx/418_Gx_Rsw5_SL.jpg\"],\"links\":[\"https://www.amazon.com/dp/B011ANCU58\"]}", + "last_payout": "2016-08-26T14:48:54", + "last_update": "2016-08-24T21:28:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T23:31:03", + "net_rshares": "14608061929", + "net_votes": 9, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "ella-s-hidden-pain-original-story-part-1", + "reward_weight": 10000, + "root_author": "poeticsnake", + "root_permlink": "ella-s-hidden-pain-original-story-part-1", + "title": "Ella's hidden pain! ( Original story )) Part 1", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "14608061929" + }, + { + "abs_rshares": 0, + "active": "2016-08-24T22:03:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "dmilash", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

Pirate Cave

\n

There are a lot of  stories and legends. Locals believe that before this place was chosen by pirates. They hid treasure in the cave, then transported through a tunnel to the city.

\n

\n

Lovers Cave

\n

Many legends about the Lovers Cave. According one of them - lovers together must to jump off a high ledge, then nothing is no able to separate them. Now jumps banned.

\n

\n

\n

Old fortress town

\n

\n

\n

Now it is Russian territory )))

\n

\n

\n", + "cashout_time": "2016-09-24T22:04:12", + "category": "photography", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-24T21:26:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736204, + "json_metadata": "{\"tags\":[\"photography\"],\"image\":[\"http://i.share.pho.to/5bd63a86_o.jpeg\",\"http://i.share.pho.to/badc9c25_o.jpeg\",\"http://i.share.pho.to/66d78edf_o.jpeg\",\"http://i.share.pho.to/bc535078_o.jpeg\",\"http://i.share.pho.to/1bd80fa4_o.jpeg\",\"http://i.share.pho.to/43b23d20_o.jpeg\",\"http://i.share.pho.to/a951f3d0_o.jpeg\"]}", + "last_payout": "2016-08-25T22:04:12", + "last_update": "2016-08-24T21:27:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 13, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "original-photo-from-turkey-pirate-cave-and-lovers-cave", + "reward_weight": 4114, + "root_author": "dmilash", + "root_permlink": "original-photo-from-turkey-pirate-cave-and-lovers-cave", + "title": "Original photo from Turkey: Pirate cave and Lovers Cave etc.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-25T00:31:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "moonman", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://i.imgsafe.org/e103059e0b.jpeg\nCosta Rica is much more than a lush, green tourist paradise; it\u2019s also a green energy pioneer. The small Central American nation has generated 100 percent of its electricity from renewable sources for the past 113 days, and the run isn\u2019t over yet. The country, which draws clean energy from a variety of renewable sources, still has its sights on a full year without fossil fuels. With a 113-day stretch of 100-percent renewable energy under its belt and several months left in the year, Costa Rica is edging closer to its target. Costa Rica could be on track to match the record set with its renewable energy production last year, which accounted for 99 percent of the country\u2019s electricity. That included 285 days powered completely by renewable sources, according to the Costa Rican Electricity Institute. Costa Rica is able to take advantage of a multitude of renewable energy sources because of its unique climate and terrain. Most of the nation\u2019s renewable energy comes from hydropower, due to its large river system and heavy tropical rainfalls. Solar, wind, biomass, and geothermal energy also play key roles.\n\nThe tropical nation aims to be free from fossil fuels in just five years. With hefty investments in geothermal energy projects and a forecast for more heavy rains in the coming years, that goal could be accomplished even sooner than originally planned.", + "cashout_time": "2016-09-25T00:27:45", + "category": "energy", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-24T21:26:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736208, + "json_metadata": "{\"tags\":[\"energy\",\"news\",\"truth\",\"costarica\",\"america\"],\"image\":[\"http://i.imgsafe.org/e103059e0b.jpeg\"]}", + "last_payout": "2016-08-26T00:27:45", + "last_update": "2016-08-24T21:27:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -2456106752359, + "net_votes": 0, + "parent_author": "", + "parent_permlink": "energy", + "percent_hbd": 10000, + "permlink": "costa-rica-celebrates-113-days-of-100-percent-free-energy", + "reward_weight": 10000, + "root_author": "moonman", + "root_permlink": "costa-rica-celebrates-113-days-of-100-percent-free-energy", + "title": "Costa Rica celebrates 113 days of 100 percent renewable energy", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 933355159, + "active": "2016-08-25T15:06:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "lilli", + "author_rewards": 250, + "beneficiaries": [], + "body": "\n

Hi there fellow Steemers, my name is Lilli and here\u2019s a little bit about myself and why I\u2019m here.

\n

I am a London based artist and theatre designer-to-be. My aim is to bring a whole lot of culture and a little bit of me to Steemit. 

\n

\n

  Introduced to Steemit by a friend, I was rather skeptical at first. I generally don\u2019t trust the internet and all that is or isn\u2019t going on inside this impenetrable machine. Nevertheless I have now chosen to do these first steps into unknown land and overcome my e-phobia. My reason to do so is simply that this is the future, there\u2019s no way around it and you might as well live it!  In fact I think it is an amazing opportunity for artists, travellers and intellectuals of all sorts to present and exchange their work and thoughts and opinion. It\u2019s a space to openly communicate with people all over the globe, freely express oneself and start discussions with total strangers. Overall it\u2019s a real step forward.

\n

\n

What you can expect from me on Steemit are posts about my work as an artist, studies of theatre design, observations within my city, on travels and of the human mind and really anything that catches my interest.   Some of my hobbies and interests include travelling, exploring my city (London), ...

\n

\n

...cooking (though my boyfriend does most of that), photography, dressing up, mountaineering, rock climbing and other adrenalin enducing sports.

\n

\n

\n

Route of a crazy backpacker journey, I will most definitely write about. With 30 hour train journeys, friends left behind, a flooded festival and much more!
\n
\nIf you're curious for some travel adventures and cultural posts, FOLLOW ME!
\nI promise it'll be worth it ;)

\n", + "cashout_time": "2016-09-24T21:44:33", + "category": "introduceyourself", + "children": 4, + "children_abs_rshares": 933355159, + "created": "2016-08-24T21:14:27", + "curator_payout_value": { + "amount": "90", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736068, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"art\",\"photography\",\"steemit\",\"travel\"],\"image\":[\"https://i.imgsafe.org/e0fded406a.png\",\"https://i.imgsafe.org/e10eaa131a.png\",\"https://i.imgsafe.org/e103ab1660.png\",\"https://i.imgsafe.org/e1096709b8.png\",\"https://i.imgsafe.org/e100e9033f.png\"]}", + "last_payout": "2016-08-25T21:44:33", + "last_update": "2016-08-24T21:26:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-08T22:48:15", + "net_rshares": 933355159, + "net_votes": 12, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "london-based-artist-bringing-culture-to-steemit", + "reward_weight": 10000, + "root_author": "lilli", + "root_permlink": "london-based-artist-bringing-culture-to-steemit", + "title": "London-based artist bringing culture to Steemit", + "total_payout_value": { + "amount": "348", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 933355159 + }, + { + "abs_rshares": 0, + "active": "2016-08-24T21:25:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "sayanthan", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://dimg.zoftcdn.com/s1/photos/news/thumbs/world/country/usa/h/hilery_clindon001/img/625.117.560.350.160.300.053.800.210.160.90.jpg\nDonors to the Clinton Foundation had special access to Hillary Clinton,when she was Secretary of State, fresh documents brought to light by two conservative groups on Monday showed, in a setback to the Democratic candidate's presidential campaign.\n\nThe Republican candidate Donald Trump has sought an investigation by a special prosecutor into the links between the foundation and the State Department under Ms. Hillary Clinton.\n\nThe Former President Bill Clinton said in a statement on Monday the foundation would stop accepting foreign donations, if his wife were to become the President. The foundation had made the same announcement last week. Ms. Hillary Clinton had pledged to dissociate from the functioning of the foundation, when she took over as the Secretary of State.\n\nBut, however, the staff of the foundation sought special treatment for donors from the State Department, according to the documents.\n\nAmong the new revelations is how the foundation staff intervened on be half of the Crown Prince of Bahrain, a donor.\n\nThe Crown Prince could not get a meeting with Ms. Hillary Clinton through State Department Channels, but did get one after Foundation Executive Douglas Band wrote to Huma Abedin, aclose aide of hers. \u201cGood friend of ours,\u201d Mr. Band wrote to Ms. Abedin,requesting a meeting for the Crown Prince.\n\nDonald Trump said, \u201cNo issue better illustrates how corrupt my opponent is than her pay for play scandals as the Secretary of State,\u201d Mr. Trump said,demanding an investigation.\n\nIn a separate development, a federal judge on Monday asked the State Department to expedite the process of reviewing and releasing a set of nearly 15,000 emails that were not handed over to the Department as\u2018work-related\u2019 earlier. The FBI had uncovered these emails during its investigation of a private server Ms. Hillary Clinton had maintained.\n\nThe Clinton Foundation accepts money from foreign donors, including foreign governments, which Mr. Donald Trump alleges is a threat to the U.S.National Security.\n\nNews source Tamil focus.com", + "cashout_time": "2016-09-24T21:25:27", + "category": "politics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-24T21:25:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736196, + "json_metadata": "{\"tags\":[\"politics\",\"news\"],\"image\":[\"http://dimg.zoftcdn.com/s1/photos/news/thumbs/world/country/usa/h/hilery_clindon001/img/625.117.560.350.160.300.053.800.210.160.90.jpg\"]}", + "last_payout": "2016-08-25T21:25:27", + "last_update": "2016-08-24T21:25:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "politics", + "percent_hbd": 10000, + "permlink": "new-allegations-hits-out-hillary-clinton-s-election-campaigns", + "reward_weight": 10000, + "root_author": "sayanthan", + "root_permlink": "new-allegations-hits-out-hillary-clinton-s-election-campaigns", + "title": "New Allegations Hits-out Hillary Clinton's Election Campaigns", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "108915090155", + "active": "2016-08-28T17:57:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "maceytomlin", + "author_rewards": 72, + "beneficiaries": [], + "body": "

https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/14055152_10154376523262180_7573779098355793143_n.jpg?oh=d2a68c63bfb4e5d16714403c49fb2fcf&oe=58417095

\n\nHello Steemit community! My name is Macey, and I have recently joined Steemit so I can become more involved with the Anarchist Community. I have written a couple articles, but in all the excitement, I forgot to give a proper introduction.\n\n

https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/12376121_10153719290912180_997199044763883123_n.jpg?oh=4e3622e8aee631343faa6de4a21daaf4&oe=5855FB15

\n

About Me

\n\nWhen I was just shy of twenty, I realized the truth of the nature of our government after watching the popular documentary, *Zeitgeist.* Shortly after, I started micro-dosing daily with psilocybin mushrooms. This form of therapy lasted three months. I consider this a vital part of my evolution as an anarchist, and have devoted my life to helping people understand alternative medicine and the positive effects they can have on the body, mind and spirit. I truly believe our minds are eternal libraries, and psychedelics can be the key to accessing that knowledge. \n\nI hope you'll join me here! My writings will be focused on alternative therapy, among other topics.", + "cashout_time": "2016-09-24T23:01:18", + "category": "introduceyourself", + "children": 9, + "children_abs_rshares": "134531468918", + "created": "2016-08-24T21:24:48", + "curator_payout_value": { + "amount": "27", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736189, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"anarchy\",\"psychedelics\",\"alternative\",\"medicine\"],\"image\":[\"https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/14055152_10154376523262180_7573779098355793143_n.jpg?oh=d2a68c63bfb4e5d16714403c49fb2fcf&oe=58417095\",\"https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/12376121_10153719290912180_997199044763883123_n.jpg?oh=4e3622e8aee631343faa6de4a21daaf4&oe=5855FB15\"]}", + "last_payout": "2016-08-25T23:01:18", + "last_update": "2016-08-24T21:24:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-09T03:50:33", + "net_rshares": "108915090155", + "net_votes": 40, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "macey-tomlin-advocating-for-psychedelic-therapy", + "reward_weight": 10000, + "root_author": "maceytomlin", + "root_permlink": "macey-tomlin-advocating-for-psychedelic-therapy", + "title": "Macey Tomlin: Advocating for Psychedelic Therapy", + "total_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "108915090155" + }, + { + "abs_rshares": 61964463, + "active": "2016-08-26T23:56:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "terryrall", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://media.salon.com/2015/09/reagan_trump.jpg\n\nhttp://www.chicagotribune.com/news/opinion/editorials/ct-donald-trump-ronald-reagan-president-edit-0501-20160429-story.html\n\nThere is NO comparison between Ronald Reagan & Donald Trump. Reagan was greatly admired by NOT only Republicans but even Democrats as well. The BIG TENT that the Democrats are now using was inherently borrowed from Ronald Reagan. He was well mannered & a consumate gentleman with a great positive attitude that he carried well. Reagan didn't build walls, he tore them down. He was at the helm during Gorbachev's 'glasnost' & 'peristroyka'. And Ronald Reagan fostered a GOOD relationship with the USSR as it finally fell. Reagan was the 'Great Communicator' & the 'Great Compromiser'. Even if you didn't agree with him, you still took a liking to him as he was very approachable. He compromised with a Democratic Congress & made the wheels of government turn. He was a 'strong leader' that didn't have to fight bloody conflicts & wars to make his point. But MOST of ALL Reagan stressed UNITY of nation & country. He just stayed well mannered at ALL TIMES!\n\nNow let's look at Trump. He's the 'Great Divider', good at setting one group against another. He's at best 'ill mannered' with a Totally NEGATIVE ATTITUDE. To Trump our nation is a 'miserable trash heap on a hill' and our diversity is just a 'punchline' to prey upon. Not ONLY is he insulting & unapproachable, most people want to 'punch' him in the face! Trump couldn't unify anything if he tried. He is a 'strong armed dictator' that wants everything & person to bend to his will. He lives on bad events, & thrives on misery. He wants his followers to GET INTO BLOODY CONFLICTS, and insistently wants to START World War 3! He knows no manners to speak of & he 'gins up' his followers into a 'frenzy' of violent behavior!\n\nAlso to note: Ronald Reagan was Governor of California for years before he took control at the helm of the Presidency! So he KNEW how government works! Donald Trump & his Teabagging Followers don't have the FIRST idea of how government operates. You don't run this country like a corporate interest!\n\nIn conclusion, believe it or not NAFTA was originally Reagan's 'brainchild'. If you have the 'slightest' respect for the Reagan legacy, you WON'T allow Trump into the White House!\n\n\n", + "cashout_time": "2016-09-24T21:08:12", + "category": "politics", + "children": 2, + "children_abs_rshares": 2364572745, + "created": "2016-08-24T21:05:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 735968, + "json_metadata": "{\"tags\":[\"politics\",\"trump\",\"reagan\",\"news\"]}", + "last_payout": "2016-08-25T21:08:12", + "last_update": "2016-08-24T21:24:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-08T23:22:51", + "net_rshares": -61964463, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "politics", + "percent_hbd": 10000, + "permlink": "reagan-versus-trump-no-comparison", + "reward_weight": 10000, + "root_author": "terryrall", + "root_permlink": "reagan-versus-trump-no-comparison", + "title": "Reagan versus Trump...NO Comparison!", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-24T21:24:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "mohamedmashaal", + "author_rewards": 0, + "beneficiaries": [], + "body": "Delete", + "cashout_time": "2016-09-24T20:53:54", + "category": "steemtube", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-24T20:53:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 735834, + "json_metadata": "{\"tags\":[\"delete\",\"steemtube\"]}", + "last_payout": "2016-08-25T20:53:54", + "last_update": "2016-08-24T21:24:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "steemtube", + "percent_hbd": 10000, + "permlink": "no-man-s-sky-honest-game-trailers-steemtube", + "reward_weight": 10000, + "root_author": "mohamedmashaal", + "root_permlink": "no-man-s-sky-honest-game-trailers-steemtube", + "title": "Delete", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-24T21:23:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ghostvangogh", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://scontent-dft4-2.xx.fbcdn.net/v/t1.0-9/13892044_514122035452799_7084570694564074093_n.jpg?oh=a4e8c52daf63a5fb0a2cf7647b6bdc3d&oe=585A651A", + "cashout_time": "2016-09-24T21:23:48", + "category": "art", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-24T21:23:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736173, + "json_metadata": "{\"tags\":[\"art\",\"blog\",\"photography\",\"digital\",\"nature\"],\"image\":[\"https://scontent-dft4-2.xx.fbcdn.net/v/t1.0-9/13892044_514122035452799_7084570694564074093_n.jpg?oh=a4e8c52daf63a5fb0a2cf7647b6bdc3d&oe=585A651A\"]}", + "last_payout": "2016-08-25T21:23:48", + "last_update": "2016-08-24T21:23:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "art", + "percent_hbd": 10000, + "permlink": "silhouettes", + "reward_weight": 10000, + "root_author": "ghostvangogh", + "root_permlink": "silhouettes", + "title": "Silhouettes", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent.pat.json index 4e02c233..df937a76 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 36961, - "author": "trogdor", - "permlink": "re-gtg-hello-world-20160703t175141501z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "hello-world", - "title": "", - "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-07-03T17:51:48", - "created": "2016-07-03T17:51:48", - "active": "2016-07-03T17:51:48", - "last_payout": "2016-08-13T21:04:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 37187, - "author": "amartinezque", - "permlink": "re-gtg-hello-world-20160703t224527020z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "hello-world", - "title": "", - "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-07-03T22:45:27", - "created": "2016-07-03T22:45:27", - "active": "2016-07-03T22:45:27", - "last_payout": "2016-08-13T21:04:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 38471, - "author": "edu-lopov", - "permlink": "re-gtg-hello-world-20160704t182251522z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "hello-world", - "title": "", - "body": "Welcome to Steemit Gandalf!", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-07-04T18:22:51", - "created": "2016-07-04T18:22:51", - "active": "2016-07-04T18:22:51", - "last_payout": "2016-08-13T21:04:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 694016, - "author": "gary-smith", - "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", - "category": "mining", - "parent_author": "gtg", - "parent_permlink": "missing-rewards-while-mining", - "title": "", - "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", - "json_metadata": "{\"tags\":[\"mining\"]}", - "last_update": "2016-08-21T12:52:06", - "created": "2016-08-21T12:52:06", - "active": "2016-08-21T12:52:06", - "last_payout": "2016-08-22T13:01:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "missing-rewards-while-mining", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 694144, - "author": "gtg", - "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", - "category": "mining", - "parent_author": "gtg", - "parent_permlink": "missing-rewards-while-mining", - "title": "", - "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", - "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https://steemit.chat/channel/mining\"]}", - "last_update": "2016-08-21T13:12:45", - "created": "2016-08-21T13:12:45", - "active": "2016-08-21T13:12:45", - "last_payout": "2016-08-22T13:01:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "missing-rewards-while-mining", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 766912, - "author": "timcliff", - "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", - "category": "mining", - "parent_author": "gtg", - "parent_permlink": "missing-rewards-while-mining", - "title": "", - "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", - "json_metadata": "{\"tags\":[\"mining\"]}", - "last_update": "2016-08-27T14:13:18", - "created": "2016-08-27T14:13:18", - "active": "2016-08-27T18:39:45", - "last_payout": "1970-01-01T00:00:00", - "depth": 1, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "missing-rewards-while-mining", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 760057, - "author": "ania", - "permlink": "re-gtg-re-ania-hello-world-20160826t211629005z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "re-ania-hello-world-20160826t185305711z", - "title": "", - "body": "Thank you Gandalf :)", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-08-26T21:16:45", - "created": "2016-08-26T21:16:45", - "active": "2016-08-26T21:16:45", - "last_payout": "2016-08-27T21:18:18", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "ania", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 957845, - "author": "arcange", - "permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", - "category": "stats", - "parent_author": "gtg", - "parent_permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", - "title": "", - "body": "Lol. You're welcome!\nBut I suspect you're working hard to hit the top 20 chart with your two comments :p", - "json_metadata": "{\"tags\":[\"stats\"]}", - "last_update": "2016-09-15T13:24:15", - "created": "2016-09-15T13:24:15", - "active": "2016-09-15T14:11:09", - "last_payout": "1970-01-01T00:00:00", - "depth": 4, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "arcange", - "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 957709, - "author": "arcange", - "permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", - "category": "stats", - "parent_author": "gtg", - "parent_permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", - "title": "", - "body": "That's the purpose of using FREETEXT() instead of CONTAINS()", - "json_metadata": "{\"tags\":[\"stats\"]}", - "last_update": "2016-09-15T13:06:18", - "created": "2016-09-15T13:06:18", - "active": "2016-09-15T14:11:09", - "last_payout": "1970-01-01T00:00:00", - "depth": 2, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "arcange", - "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 758094, - "author": "bumblebrii", - "permlink": "re-gtg-re-bumblebrii-about-me-20160826t182001959z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "re-bumblebrii-about-me-20160826t094306616z", - "title": "", - "body": "Oh yes of course. I subscribe to a lot of different artists for my coloring pages. One had sent me the link to her blog and kind of just ended up sticking around and read a few blogs. Next thing i know, I signed up haha.", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-08-26T18:20:12", - "created": "2016-08-26T18:20:12", - "active": "2016-08-26T18:20:12", - "last_payout": "2016-08-27T08:05:57", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "bumblebrii", - "root_permlink": "about-me", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-07-03T17:51:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "trogdor", + "author_rewards": 0, + "beneficiaries": [], + "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-03T17:51:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 51479, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T17:51:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160703t175141501z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-03T22:45:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "amartinezque", + "author_rewards": 0, + "beneficiaries": [], + "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-03T22:45:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 51824, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T22:45:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160703t224527020z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-04T18:22:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "edu-lopov", + "author_rewards": 0, + "beneficiaries": [], + "body": "Welcome to Steemit Gandalf!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-04T18:22:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 53542, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-04T18:22:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160704t182251522z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-21T12:52:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gary-smith", + "author_rewards": 0, + "beneficiaries": [], + "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", + "cashout_time": "1969-12-31T23:59:59", + "category": "mining", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-21T12:52:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 919497, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "2016-08-22T13:01:45", + "last_update": "2016-08-21T12:52:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "percent_hbd": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-21T13:12:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", + "cashout_time": "1969-12-31T23:59:59", + "category": "mining", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-21T13:12:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 919652, + "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https://steemit.chat/channel/mining\"]}", + "last_payout": "2016-08-22T13:01:45", + "last_update": "2016-08-21T13:12:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "percent_hbd": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-27T18:39:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "timcliff", + "author_rewards": 0, + "beneficiaries": [], + "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", + "cashout_time": "1969-12-31T23:59:59", + "category": "mining", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-27T14:13:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1013122, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-27T14:13:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "percent_hbd": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-26T21:16:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ania", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you Gandalf :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-26T21:16:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1004255, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-27T21:18:18", + "last_update": "2016-08-26T21:16:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "re-ania-hello-world-20160826t185305711z", + "percent_hbd": 10000, + "permlink": "re-gtg-re-ania-hello-world-20160826t211629005z", + "reward_weight": 10000, + "root_author": "ania", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-15T14:11:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "arcange", + "author_rewards": 0, + "beneficiaries": [], + "body": "Lol. You're welcome!\nBut I suspect you're working hard to hit the top 20 chart with your two comments :p", + "cashout_time": "1969-12-31T23:59:59", + "category": "stats", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-09-15T13:24:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 4, + "id": 1253741, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T13:24:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", + "percent_hbd": 10000, + "permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", + "reward_weight": 10000, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-15T14:11:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "arcange", + "author_rewards": 0, + "beneficiaries": [], + "body": "That's the purpose of using FREETEXT() instead of CONTAINS()", + "cashout_time": "1969-12-31T23:59:59", + "category": "stats", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-09-15T13:06:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1253573, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T13:06:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", + "percent_hbd": 10000, + "permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", + "reward_weight": 10000, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-26T18:20:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "bumblebrii", + "author_rewards": 0, + "beneficiaries": [], + "body": "Oh yes of course. I subscribe to a lot of different artists for my coloring pages. One had sent me the link to her blog and kind of just ended up sticking around and read a few blogs. Next thing i know, I signed up haha.", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-26T18:20:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1001581, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-27T08:05:57", + "last_update": "2016-08-26T18:20:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "re-bumblebrii-about-me-20160826t094306616z", + "percent_hbd": 10000, + "permlink": "re-gtg-re-bumblebrii-about-me-20160826t182001959z", + "reward_weight": 10000, + "root_author": "bumblebrii", + "root_permlink": "about-me", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json index ee9e5a3e..ea6ee412 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 784695, - "author": "vlad", - "permlink": "re-allasyummyfood-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t011002757z", - "category": "foodchallenge", - "parent_author": "allasyummyfood", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t004616466z", - "title": "", - "body": "Congratulations! Good job!\n\nhttp://www.todaystrucking.com/sites/default/files/first-place-ribbon-sm.png\n\nFollow you\n\nhttp://buketik-ufa.ru/image/cache/data/hollidays/z_8145a12e-500x500.jpg", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"image\":[\"http://www.todaystrucking.com/sites/default/files/first-place-ribbon-sm.png\"]}", - "last_update": "2016-08-29T01:10:36", - "created": "2016-08-29T01:10:36", - "active": "2016-08-29T01:10:36", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 788359, - "author": "givemeyoursteem", - "permlink": "re-allasyummyfood-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t112428312z", - "category": "foodchallenge", - "parent_author": "allasyummyfood", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t004616466z", - "title": "", - "body": "Congratulations to the 1st and 2nd prize @allasyummyfood and @vlad!! Great job :D", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"allasyummyfood\",\"vlad\"]}", - "last_update": "2016-08-29T11:26:00", - "created": "2016-08-29T11:24:27", - "active": "2016-08-29T11:26:00", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 2374341643, - "abs_rshares": 2374341643, - "vote_rshares": 2374341643, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 754285, - "author": "glitterfart", - "permlink": "re-allasyummyfood-re-glitterfart-re-allasyummyfood-more-steemit-goodies-arrived-20160826t115033112z", - "category": "steemit", - "parent_author": "allasyummyfood", - "parent_permlink": "re-glitterfart-re-allasyummyfood-more-steemit-goodies-arrived-20160825t183602955z", - "title": "", - "body": "Your \"steamy\" morning coffee will never be the same ;p", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_update": "2016-08-26T11:50:33", - "created": "2016-08-26T11:50:33", - "active": "2016-08-26T11:50:33", - "last_payout": "2016-08-26T19:18:24", - "depth": 3, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "allasyummyfood", - "root_permlink": "more-steemit-goodies-arrived", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 841045, - "author": "glitterfart", - "permlink": "re-allasyummyfood-re-glitterfart-thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far-20160903t032226965z", - "category": "steem", - "parent_author": "allasyummyfood", - "parent_permlink": "re-glitterfart-thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far-20160902t223416476z", - "title": "", - "body": "It takes me a while to get yours ^^\nThanks for your support ;)", - "json_metadata": "{\"tags\":[\"steem\"]}", - "last_update": "2016-09-03T03:22:18", - "created": "2016-09-03T03:22:18", - "active": "2016-09-03T03:22:18", - "last_payout": "2016-09-03T19:27:33", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "glitterfart", - "root_permlink": "thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 811830, - "author": "gringalicious", - "permlink": "re-allasyummyfood-re-gringalicious-kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf-20160831t112928563z", - "category": "food", - "parent_author": "allasyummyfood", - "parent_permlink": "re-gringalicious-kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf-20160831t110620686z", - "title": "", - "body": "Thank you for commenting Alla. I have been following you since I found steemit. And thank you for the compliment on the photos.", - "json_metadata": "{\"tags\":[\"food\"]}", - "last_update": "2016-08-31T11:29:24", - "created": "2016-08-31T11:29:24", - "active": "2016-08-31T11:29:24", - "last_payout": "2016-09-01T04:32:09", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gringalicious", - "root_permlink": "kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 812624, - "author": "halo", - "permlink": "re-allasyummyfood-re-halo-steemit-girl-halo-tips-to-be-a-better-dog-owner-20160831t130847282z", - "category": "halo", - "parent_author": "allasyummyfood", - "parent_permlink": "re-halo-steemit-girl-halo-tips-to-be-a-better-dog-owner-20160831t114201287z", - "title": "", - "body": "He is actually 5 now. The pictures were older but the post was to maybe help people wanting a puppy and people with a puppy.\n💋 @halo 💋😇", - "json_metadata": "{\"tags\":[\"halo\"],\"users\":[\"halo\"]}", - "last_update": "2016-08-31T13:08:48", - "created": "2016-08-31T13:08:48", - "active": "2016-08-31T13:08:48", - "last_payout": "2016-09-01T07:02:15", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "halo", - "root_permlink": "steemit-girl-halo-tips-to-be-a-better-dog-owner", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 643293, - "author": "lordvader", - "permlink": "re-allasyummyfood-re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160734219z", - "category": "steemit", - "parent_author": "allasyummyfood", - "parent_permlink": "re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160228694z", - "title": "", - "body": "I will teach him patience!", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_update": "2016-08-17T16:10:00", - "created": "2016-08-17T16:07:33", - "active": "2016-08-18T04:33:27", - "last_payout": "2016-08-18T17:44:30", - "depth": 2, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "hanshotfirst", - "root_permlink": "how-can-a-minnow-pull-his-tiny-weight", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 643438, - "author": "hanshotfirst", - "permlink": "re-allasyummyfood-re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t161759466z", - "category": "steemit", - "parent_author": "allasyummyfood", - "parent_permlink": "re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160228694z", - "title": "", - "body": "Thank you very much for the encouragement! I'll keep grinding away.", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_update": "2016-08-17T16:17:57", - "created": "2016-08-17T16:17:57", - "active": "2016-08-17T17:05:39", - "last_payout": "2016-08-18T17:44:30", - "depth": 2, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "hanshotfirst", - "root_permlink": "how-can-a-minnow-pull-his-tiny-weight", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 717886, - "author": "drac59", - "permlink": "re-allasyummyfood-re-hery-5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook-20160823t123052010z", - "category": "food", - "parent_author": "allasyummyfood", - "parent_permlink": "re-hery-5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook-20160822t205340167z", - "title": "", - "body": "но хочется того чего нельзя. хочется запретное.тогда думаеш что здоров.", - "json_metadata": "{\"tags\":[\"food\"]}", - "last_update": "2016-08-23T12:30:54", - "created": "2016-08-23T12:30:54", - "active": "2016-08-23T12:30:54", - "last_payout": "2016-08-23T19:18:27", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "hery", - "root_permlink": "5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 813501, - "author": "hidd3nmanna", - "permlink": "re-allasyummyfood-re-hidd3nmanna-i-have-no-idea-what-i-m-doing-20160831t144929612z", - "category": "introduceyourself", - "parent_author": "allasyummyfood", - "parent_permlink": "re-hidd3nmanna-i-have-no-idea-what-i-m-doing-20160831t113643967z", - "title": "", - "body": "Thank you! I will check that out!", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-08-31T14:49:33", - "created": "2016-08-31T14:49:33", - "active": "2016-08-31T14:49:33", - "last_payout": "2016-09-01T07:12:12", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "hidd3nmanna", - "root_permlink": "i-have-no-idea-what-i-m-doing", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T01:10:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vlad", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congratulations! Good job!\n\nhttp://www.todaystrucking.com/sites/default/files/first-place-ribbon-sm.png\n\nFollow you\n\nhttp://buketik-ufa.ru/image/cache/data/hollidays/z_8145a12e-500x500.jpg", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T01:10:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1035317, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"image\":[\"http://www.todaystrucking.com/sites/default/files/first-place-ribbon-sm.png\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-29T01:10:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t004616466z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t011002757z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 2374341643, + "active": "2016-08-29T11:26:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congratulations to the 1st and 2nd prize @allasyummyfood and @vlad!! Great job :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T11:24:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1039861, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"allasyummyfood\",\"vlad\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-29T11:26:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 2374341643, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t004616466z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t112428312z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 2374341643 + }, + { + "abs_rshares": 0, + "active": "2016-08-26T11:50:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "glitterfart", + "author_rewards": 0, + "beneficiaries": [], + "body": "Your \"steamy\" morning coffee will never be the same ;p", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-26T11:50:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 996526, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-26T19:18:24", + "last_update": "2016-08-26T11:50:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-glitterfart-re-allasyummyfood-more-steemit-goodies-arrived-20160825t183602955z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-glitterfart-re-allasyummyfood-more-steemit-goodies-arrived-20160826t115033112z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "more-steemit-goodies-arrived", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-03T03:22:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "glitterfart", + "author_rewards": 0, + "beneficiaries": [], + "body": "It takes me a while to get yours ^^\nThanks for your support ;)", + "cashout_time": "1969-12-31T23:59:59", + "category": "steem", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-03T03:22:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1106787, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "2016-09-03T19:27:33", + "last_update": "2016-09-03T03:22:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-glitterfart-thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far-20160902t223416476z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-glitterfart-thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far-20160903t032226965z", + "reward_weight": 10000, + "root_author": "glitterfart", + "root_permlink": "thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-31T11:29:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gringalicious", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you for commenting Alla. I have been following you since I found steemit. And thank you for the compliment on the photos.", + "cashout_time": "1969-12-31T23:59:59", + "category": "food", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-31T11:29:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1069484, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "2016-09-01T04:32:09", + "last_update": "2016-08-31T11:29:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-gringalicious-kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf-20160831t110620686z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-gringalicious-kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf-20160831t112928563z", + "reward_weight": 10000, + "root_author": "gringalicious", + "root_permlink": "kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-31T13:08:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "halo", + "author_rewards": 0, + "beneficiaries": [], + "body": "He is actually 5 now. The pictures were older but the post was to maybe help people wanting a puppy and people with a puppy.\n\ud83d\udc8b @halo \ud83d\udc8b\ud83d\ude07", + "cashout_time": "1969-12-31T23:59:59", + "category": "halo", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-31T13:08:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1070455, + "json_metadata": "{\"tags\":[\"halo\"],\"users\":[\"halo\"]}", + "last_payout": "2016-09-01T07:02:15", + "last_update": "2016-08-31T13:08:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "re-halo-steemit-girl-halo-tips-to-be-a-better-dog-owner-20160831t114201287z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-halo-steemit-girl-halo-tips-to-be-a-better-dog-owner-20160831t130847282z", + "reward_weight": 10000, + "root_author": "halo", + "root_permlink": "steemit-girl-halo-tips-to-be-a-better-dog-owner", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-18T04:33:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "lordvader", + "author_rewards": 0, + "beneficiaries": [], + "body": "I will teach him patience!", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-17T16:07:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 854877, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-18T17:44:30", + "last_update": "2016-08-17T16:10:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160228694z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160734219z", + "reward_weight": 10000, + "root_author": "hanshotfirst", + "root_permlink": "how-can-a-minnow-pull-his-tiny-weight", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-17T17:05:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hanshotfirst", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you very much for the encouragement! I'll keep grinding away.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-17T16:17:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 855050, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-18T17:44:30", + "last_update": "2016-08-17T16:17:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160228694z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t161759466z", + "reward_weight": 10000, + "root_author": "hanshotfirst", + "root_permlink": "how-can-a-minnow-pull-his-tiny-weight", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-23T12:30:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "drac59", + "author_rewards": 0, + "beneficiaries": [], + "body": "\u043d\u043e \u0445\u043e\u0447\u0435\u0442\u0441\u044f \u0442\u043e\u0433\u043e \u0447\u0435\u0433\u043e \u043d\u0435\u043b\u044c\u0437\u044f. \u0445\u043e\u0447\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0440\u0435\u0442\u043d\u043e\u0435.\u0442\u043e\u0433\u0434\u0430 \u0434\u0443\u043c\u0430\u0435\u0448 \u0447\u0442\u043e \u0437\u0434\u043e\u0440\u043e\u0432.", + "cashout_time": "1969-12-31T23:59:59", + "category": "food", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-23T12:30:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 949876, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "2016-08-23T19:18:27", + "last_update": "2016-08-23T12:30:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-hery-5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook-20160822t205340167z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-hery-5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook-20160823t123052010z", + "reward_weight": 10000, + "root_author": "hery", + "root_permlink": "5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-31T14:49:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hidd3nmanna", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you! I will check that out!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-31T14:49:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1071577, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-09-01T07:12:12", + "last_update": "2016-08-31T14:49:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-hidd3nmanna-i-have-no-idea-what-i-m-doing-20160831t113643967z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-hidd3nmanna-i-have-no-idea-what-i-m-doing-20160831t144929612z", + "reward_weight": 10000, + "root_author": "hidd3nmanna", + "root_permlink": "i-have-no-idea-what-i-m-doing", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json index 358987f7..96c3fa93 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 6, - "author": "abit", - "permlink": "witness-category", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Witnesses", - "body": "This is the witnesses category", - "json_metadata": "{}", - "last_update": "2016-04-08T07:36:18", - "created": "2016-04-08T07:36:18", - "active": "2016-04-08T08:58:24", - "last_payout": "2016-08-12T10:16:39", - "depth": 0, - "children": 2, - "net_rshares": -491818553, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "160", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "160", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 729, - "net_votes": -2, - "root_author": "abit", - "root_permlink": "witness-category", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 7, - "author": "abit", - "permlink": "miner-category", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Miners", - "body": "This is the miners category", - "json_metadata": "{}", - "last_update": "2016-04-08T07:55:15", - "created": "2016-04-08T07:55:15", - "active": "2016-04-08T07:55:15", - "last_payout": "2016-08-12T10:16:42", - "depth": 0, - "children": 0, - "net_rshares": -481781440, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "138", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "139", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 632, - "net_votes": -3, - "root_author": "abit", - "root_permlink": "miner-category", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 9, - "author": "abit", - "permlink": "spam", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Spams", - "body": "Spams come here", - "json_metadata": "{}", - "last_update": "2016-04-08T08:49:15", - "created": "2016-04-08T08:49:15", - "active": "2016-04-08T08:49:15", - "last_payout": "2016-08-13T18:32:54", - "depth": 0, - "children": 0, - "net_rshares": -477016308, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "165", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "166", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 755, - "net_votes": -2, - "root_author": "abit", - "root_permlink": "spam", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 20, - "author": "hello", - "permlink": "hello", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Hello World!", - "body": "As of 2016, you have to learn 7097 languages to say hello to 6,506,259,160 people.", - "json_metadata": "{}", - "last_update": "2016-04-08T15:39:00", - "created": "2016-04-08T15:39:00", - "active": "2016-04-08T15:39:00", - "last_payout": "2016-08-03T00:00:06", - "depth": 0, - "children": 0, - "net_rshares": -37896234000000, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 11, - "root_author": "hello", - "root_permlink": "hello", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 30, - "author": "hello", - "permlink": "world", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Hello World!", - "body": "Greetings to all human beings!\n -- The Internet", - "json_metadata": "{}", - "last_update": "2016-04-10T18:05:15", - "created": "2016-04-10T18:05:15", - "active": "2016-04-10T18:05:15", - "last_payout": "2016-08-03T00:00:06", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "428", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "427", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1950, - "net_votes": 5, - "root_author": "hello", - "root_permlink": "world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 31, - "author": "xeroc", - "permlink": "python-steem-0-1", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Python Steem Libraries 0.1", - "body": "Python Steem Libraries Version 1.0 released!\n\nThis library allows you to interface with the wallet and/or a steem node\nfor polling data via RPC calls.\n\n## Download\n\nYou can download directly from github:\n```\ngit clone https://github.com/xeroc/python-steem/\ncd python-steem\npython3 setup.py install --user\n```\n\nOr use `pip`\n```\npip3 install steem --user\n```\n\n## Setup\n\nEven though you can connect to a remote full node, you can start a local\nnode via:\n\n```\ncd \n./programs/steemd/steemd --rpc-endpoint=\"127.0.0.1:8090\"\n```\n\nThen you can connect a `cli_wallet` to your full node and open a new\nport at `8092`:\n```\n./programs/cli_wallet/cli_wallet --server-rpc-endpoint=ws://localhost:8090 \\\n --rpc-http-endpoint=127.0.0.1:8092 \\\n --rpc-http-allowip=127.0.0.1\n```\nWe will use both open ports in the example.\n\n## Usage Examples\n\n```python\nfrom steemapi.steemclient import SteemClient\nfrom pprint import pprint\n\nclass Config():\n # Port and host of the RPC-HTTP-Endpoint of the wallet\n wallet_host = \"localhost\"\n wallet_port = 8092\n # Websocket URL to the full node\n witness_url = \"ws://localhost:8090\"\n\nclient = SteemClient(Config)\n\n# Calls to the Wallet\n\npprint(client.wallet.vote(\"\", \"hello\", \"world\", 100, True))\n\n# Calls to the Node\npprint(client.node.get_trending_categories(\"\", 20))\npprint(client.node.get_content(\"hello\", \"world\"))\n```\n\nMore examples can be found in the `examples/` directory.\n", - "json_metadata": "{}", - "last_update": "2016-04-12T07:40:06", - "created": "2016-04-10T18:24:51", - "active": "2016-04-27T08:00:21", - "last_payout": "2016-08-21T21:26:42", - "depth": 0, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "63510", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "63453", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 288455, - "net_votes": 30, - "root_author": "xeroc", - "root_permlink": "python-steem-0-1", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 93, - "author": "red", - "permlink": "spam", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "title2", - "body": "removed", - "json_metadata": "{}", - "last_update": "2016-04-13T00:06:57", - "created": "2016-04-12T18:42:54", - "active": "2016-04-13T08:12:39", - "last_payout": "2016-08-26T03:00:03", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "red", - "root_permlink": "spam", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 103, - "author": "abit", - "permlink": "anti-spam", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Anti-spam", - "body": "Forum spam is a problem common to all popular forum software. Forum spam is caused by automated software (referred to as “spambots”) that visits forums with the sole purpose of registering many user accounts and/or posting massive amounts of messages. These messages often contain links to commercial websites, phishing websites or even malware.\n\nForum spambots surf the web looking for guestbooks, wikis, blogs, forums and any other web forms to submit spam links to. These spambots often use OCR technology to bypass CAPTCHAs present. Some spam messages are targeted towards readers and can involve techniques of target marketing or even phishing. These automated schemes can make it more difficult for users to tell real posts from the bot generated ones. Some spam messages also simply contain tags and hyperlinks intended to boost search engine ranking rather than target human readers.\n\nSpam posts may contain anything from a single link to dozens of links. Text content is minimal, usually innocuous and unrelated to the forum's topic. Sometimes the posts may be made in old threads that are revived by the spammer solely for the purpose of spamming links. Posts include some text to prevent the post being caught by automated spam filters that prevent posts which consist solely of external links from being submitted.\n\nAlternatively, the spam links are posted in the user's signature, in which case the spambot will never post. The link sits quietly in the signature field, where it is more likely to be harvested by search engine spiders than discovered by forum administrators and moderators.\n\nSpam prevention and deletions measurably increase the workload of forum administrators and moderators. The amount of time and resources spent keeping a forum spam free contributes significantly to labor cost and the skill required in the running of a public forum. Marginally profitable or smaller forums may be permanently closed by administrators.\n\nHow will STEEM fight spam?\n\nReferences:\n* https://en.wikipedia.org/wiki/Forum_spam\n * http://fluxbb.org/docs/v1.4/antispam", - "json_metadata": "{}", - "last_update": "2016-04-13T08:45:09", - "created": "2016-04-13T08:45:09", - "active": "2016-04-13T16:05:57", - "last_payout": "2016-08-12T10:16:57", - "depth": 0, - "children": 1, - "net_rshares": -433402453408, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "abit", - "root_permlink": "anti-spam", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 110, - "author": "xeroc", - "permlink": "how-to-monitor-an-account-on-steem", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Monitoring Account Deposits in Steem Using Python", - "body": "In [an other article](/steem/@xeroc/steem-api) we have discussed the underlying structure of the STEEM API and can now look into monitoring account deposits.\n\n## Running a Node\n\nFirst, we need to run a full node in a trusted environment:\n\n ./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n\nWe open up the RPC endpoint so that we can interface with the node using RPC-JSON calls.\n\n## Blockchain Parameters and Last Block\n\nThe RPC call `get_config` will return the configuration of the blockchain which contains the block interval in seconds. By calling `get_dynamic_global_properties`, we obtain the current head block number as well as the last irreversible block number. The difference between both is that the last block is last block that has been produced by the network and has thus been confirmed by the block producer. The last irreversible block is that block that has been confirmed by sufficient many block producers so that it can no longer be modified without a hard fork. Every block older than the last reversible block is equivalent to a checkpoint in Bitcoin. Typically they are about 30 to 50 blocks behind the head block.\n\nA particular block can be obtained via the `get_block ` call and takes the form shown above.\n\n## Processing Block Data\n\nSince the content of a block is unencrypted, all it takes to monitor an account is processing of the content of each block.\n\n## Example\n\nThe following will show example implementations for monitoring a specific account.\n\n```python\n# This library can be obtain from https://github.com/xeroc/python-steem\n\nfrom steemrpc import SteemRPC\nfrom pprint import pprint\nimport time\n\n\"\"\"\n Connection Parameters to steemd daemon.\n\n Start the steemd daemon with the rpc-endpoint parameter:\n\n ./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n\n This opens up a RPC port (e.g. at 8092). Currently, authentication\n is not yet available, thus, we recommend to restrict access to\n localhost. Later we will allow authentication via username and\n passpword (both empty now).\n\n\"\"\"\nrpc = SteemRPC(\"localhost\", 8092, \"\", \"\")\n\n\"\"\"\n Last Block that you have process in your backend.\n Processing will continue at `last_block + 1`\n\"\"\"\nlast_block = 160900\n\n\"\"\"\n Deposit account name to monitor\n\"\"\"\nwatch_account = \"world\"\n\n\ndef process_block(block, blockid):\n \"\"\"\n This call processes a block which can carry many transactions\n\n :param Object block: block data\n :param number blockid: block number\n \"\"\"\n if \"transactions\" in block:\n for tx in block[\"transactions\"]:\n #: Parse operations\n for opObj in tx[\"operations\"]:\n #: Each operation is an array of the form\n #: [type, {data}]\n opType = opObj[0]\n op = opObj[1]\n\n # we here want to only parse transfers\n if opType == \"transfer\":\n process_transfer(op, block, blockid)\n\n\ndef process_transfer(op, block, blockid):\n \"\"\"\n We here process the actual transfer operation.\n \"\"\"\n if op[\"to\"] == watch_account:\n print(\n \"%d | %s | %s -> %s: %s -- %s\" % (\n blockid,\n block[\"timestamp\"],\n op[\"from\"],\n op[\"to\"],\n op[\"amount\"],\n op[\"memo\"]\n )\n )\n\n\nif __name__ == '__main__':\n # Let's find out how often blocks are generated!\n config = rpc.get_config()\n block_interval = config[\"STEEMIT_BLOCK_INTERVAL\"]\n\n # We are going to loop indefinitely\n while True:\n\n # Get chain properies to identify the \n # head/last reversible block\n props = rpc.get_dynamic_global_properties()\n\n # Get block number\n # We here have the choice between\n # * head_block_number: the last block\n # * last_irreversible_block_num: the block that is confirmed by\n # 2/3 of all block producers and is thus irreversible!\n # We recommend to use the latter!\n # block_number = props['head_block_number']\n block_number = props['last_irreversible_block_num']\n\n # We loop through all blocks we may have missed since the last\n # block defined above\n while (block_number - last_block) > 0:\n last_block += 1\n\n # Get full block\n block = rpc.get_block(last_block)\n\n # Process block\n process_block(block, last_block)\n\n # Sleep for one block\n time.sleep(block_interval)\n```", - "json_metadata": "{}", - "last_update": "2016-05-15T16:06:06", - "created": "2016-04-13T16:22:45", - "active": "2016-05-15T16:06:06", - "last_payout": "2016-08-03T00:00:06", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "18340", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "18338", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 83368, - "net_votes": 16, - "root_author": "xeroc", - "root_permlink": "how-to-monitor-an-account-on-steem", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 111, - "author": "xeroc", - "permlink": "steem-api", - "category": "", - "parent_author": "", - "parent_permlink": "", - "title": "Steem API", - "body": "This article desribes the API of the STEEM full node (**not** of the wallet API).\n\n## Prerequisits\n\nThis article assumes that you have a full node running and listening to port ``8092``, locally. You can achieve this by\n\n```\n./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n```\n\nWe open up the RPC endpoint so that we can interface with the node using RPC-JSON calls.\n\n## Call Format\n\nIn Graphene, RPC calls are state-less and accessible via regular JSON formated RPC-HTTP-calls. The correct structure of the JSON call is\n\n```json\n{\n \"jsonrpc\": \"2.0\",\n \"id\": 1\n \"method\": \"get_account\",\n \"params\": [[\"xeroc\", \"steemit\"]],\n}\n```\n\nThe `get_accounts` call is available in the full node's API and takes only one argument which is an array of account ids (here: `[\"xeroc\", \"steemit\"]`).\n\n### Example Call with `curl`\n\nSuch as call can be submitted via ``curl``:\n\n```sh\ncurl --data '{\"jsonrpc\": \"2.0\", \"method\": \"get_accounts\", \"params\": [[\"xeroc\",\"steemit\"]], \"id\": 1}' http://127.0.0.1:8090/rpc\n```\n\n## Successful Calls\n\n\nThe API will return a properly JSON formated response carrying the same ``id``\nas the request to distinguish subsequent calls.\n\n```json\n{ \"id\":1, \"result\": \"data\" }\n```\n\n## Errors\n\nIn case of an error, the resulting answer will carry an ``error`` attribute and\na detailed description:\n\n```json\n{\n \"id\": 0\n \"error\": {\n \"data\": {\n \"code\": error-code,\n \"name\": \" .. name of exception ..\"\n \"message\": \" .. message of exception ..\",\n \"stack\": [ .. stack trace .. ],\n },\n \"code\": 1,\n },\n}\n```\n\n## Available Calls\n\nEven though, the `help` call does not exist, it gives us an error message that contains all available API calls in the stack trace:\n\n```\ncurl --data '{\"jsonrpc\": \"2.0\", \"method\": \"help\", \"params\": [], \"id\": 1}' http://127.0.0.1:8090/rpc\n```\n```json\n{\n \"id\": 1,\n \"error\": {\n \"message\": <...>,\n \"data\": {\n \"message\": \"Assert Exception\",\n \"name\": \"assert_exception\",\n \"stack\": [\n {\n \"data\": {\n \"name\": \"help\",\n \"api\": {\n \"set_subscribe_callback\": 0,\n \"get_dynamic_global_properties\": 12,\n \"get_accounts\": 17,\n \"get_active_categories\": 9,\n \"get_account_references\": 18,\n \"get_trending_categories\": 7,\n \"get_content\": 36,\n \"get_state\": 6,\n \"get_discussions_by_total_pending_payout\": 38,\n \"cancel_all_subscriptions\": 3,\n \"get_block_header\": 4,\n \"get_active_votes\": 35,\n \"get_current_median_history_price\": 15,\n \"lookup_witness_accounts\": 26,\n \"verify_account_authority\": 34,\n \"get_key_references\": 16,\n \"set_pending_transaction_callback\": 1,\n \"get_required_signatures\": 31,\n \"get_recent_categories\": 10,\n \"get_order_book\": 28,\n \"lookup_accounts\": 20,\n \"get_account_history\": 23,\n \"get_chain_properties\": 13,\n \"get_feed_history\": 14,\n \"verify_authority\": 33,\n \"get_discussions_by_last_update\": 40,\n \"get_conversion_requests\": 22,\n \"get_discussions_in_category_by_last_update\": 41,\n \"get_block\": 5,\n \"get_witness_count\": 27,\n \"get_best_categories\": 8,\n \"get_potential_signatures\": 32,\n \"lookup_account_names\": 19,\n \"get_transaction\": 30,\n \"get_witnesses\": 24,\n \"get_witness_by_account\": 25,\n \"get_account_count\": 21,\n \"get_transaction_hex\": 29,\n \"get_content_replies\": 37,\n \"get_discussions_in_category_by_total_pending_payout\": 39,\n \"get_miner_queue\": 43,\n \"get_active_witnesses\": 42,\n \"set_block_applied_callback\": 2,\n \"get_config\": 11\n }\n },\n \"context\": {\n \"line\": 109,\n \"hostname\": \"\",\n \"timestamp\": \"2016-04-13T16:15:17\",\n \"method\": \"call\",\n \"thread_name\": \"th_a\",\n \"level\": \"error\",\n \"file\": \"api_connection.hpp\"\n },\n \"format\": \"itr != _by_name.end(): no method with name '${name}'\"\n }\n ],\n \"code\": 10\n },\n \"code\": 1\n }\n}\n```\n\nFurther documentation about the calls can be found in the sources in [libraries/app/include/steemit/app/database_api.hpp](https://github.com/steemit/steem/blob/master/libraries/app/include/steemit/app/database_api.hpp).\n", - "json_metadata": "{}", - "last_update": "2016-04-13T16:25:15", - "created": "2016-04-13T16:25:15", - "active": "2016-07-21T17:34:03", - "last_payout": "2016-08-24T05:37:24", - "depth": 0, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "2165", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "493", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 9197, - "net_votes": 29, - "root_author": "xeroc", - "root_permlink": "steem-api", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-04-08T08:58:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 729, + "beneficiaries": [], + "body": "This is the witnesses category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-08T07:36:18", + "curator_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 6, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:39", + "last_update": "2016-04-08T07:36:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -491818553, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "witness-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "witness-category", + "title": "Witnesses", + "total_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T07:55:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 632, + "beneficiaries": [], + "body": "This is the miners category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T07:55:15", + "curator_payout_value": { + "amount": "139", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 7, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:42", + "last_update": "2016-04-08T07:55:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -481781440, + "net_votes": -3, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "miner-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "miner-category", + "title": "Miners", + "total_payout_value": { + "amount": "138", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T08:49:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 755, + "beneficiaries": [], + "body": "Spams come here", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T08:49:15", + "curator_payout_value": { + "amount": "166", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 9, + "json_metadata": "{}", + "last_payout": "2016-08-13T18:32:54", + "last_update": "2016-04-08T08:49:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -477016308, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "spam", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "spam", + "title": "Spams", + "total_payout_value": { + "amount": "165", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T15:39:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hello", + "author_rewards": 0, + "beneficiaries": [], + "body": "As of 2016, you have to learn 7097 languages to say hello to 6,506,259,160 people.", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T15:39:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 20, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-04-08T15:39:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -37896234000000, + "net_votes": 11, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "hello", + "reward_weight": 10000, + "root_author": "hello", + "root_permlink": "hello", + "title": "Hello World!", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-10T18:05:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hello", + "author_rewards": 1950, + "beneficiaries": [], + "body": "Greetings to all human beings!\n -- The Internet", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-10T18:05:15", + "curator_payout_value": { + "amount": "427", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 30, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-04-10T18:05:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 5, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "world", + "reward_weight": 10000, + "root_author": "hello", + "root_permlink": "world", + "title": "Hello World!", + "total_payout_value": { + "amount": "428", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-27T08:00:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "xeroc", + "author_rewards": 288455, + "beneficiaries": [], + "body": "Python Steem Libraries Version 1.0 released!\n\nThis library allows you to interface with the wallet and/or a steem node\nfor polling data via RPC calls.\n\n## Download\n\nYou can download directly from github:\n```\ngit clone https://github.com/xeroc/python-steem/\ncd python-steem\npython3 setup.py install --user\n```\n\nOr use `pip`\n```\npip3 install steem --user\n```\n\n## Setup\n\nEven though you can connect to a remote full node, you can start a local\nnode via:\n\n```\ncd \n./programs/steemd/steemd --rpc-endpoint=\"127.0.0.1:8090\"\n```\n\nThen you can connect a `cli_wallet` to your full node and open a new\nport at `8092`:\n```\n./programs/cli_wallet/cli_wallet --server-rpc-endpoint=ws://localhost:8090 \\\n --rpc-http-endpoint=127.0.0.1:8092 \\\n --rpc-http-allowip=127.0.0.1\n```\nWe will use both open ports in the example.\n\n## Usage Examples\n\n```python\nfrom steemapi.steemclient import SteemClient\nfrom pprint import pprint\n\nclass Config():\n # Port and host of the RPC-HTTP-Endpoint of the wallet\n wallet_host = \"localhost\"\n wallet_port = 8092\n # Websocket URL to the full node\n witness_url = \"ws://localhost:8090\"\n\nclient = SteemClient(Config)\n\n# Calls to the Wallet\n\npprint(client.wallet.vote(\"\", \"hello\", \"world\", 100, True))\n\n# Calls to the Node\npprint(client.node.get_trending_categories(\"\", 20))\npprint(client.node.get_content(\"hello\", \"world\"))\n```\n\nMore examples can be found in the `examples/` directory.\n", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-04-10T18:24:51", + "curator_payout_value": { + "amount": "63453", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 31, + "json_metadata": "{}", + "last_payout": "2016-08-21T21:26:42", + "last_update": "2016-04-12T07:40:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 30, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "python-steem-0-1", + "reward_weight": 10000, + "root_author": "xeroc", + "root_permlink": "python-steem-0-1", + "title": "Python Steem Libraries 0.1", + "total_payout_value": { + "amount": "63510", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-13T08:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 0, + "beneficiaries": [], + "body": "removed", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-12T18:42:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 93, + "json_metadata": "{}", + "last_payout": "2016-08-26T03:00:03", + "last_update": "2016-04-13T00:06:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "spam", + "reward_weight": 10000, + "root_author": "red", + "root_permlink": "spam", + "title": "title2", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-13T16:05:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 0, + "beneficiaries": [], + "body": "Forum spam is a problem common to all popular forum software. Forum spam is caused by automated software (referred to as \u201cspambots\u201d) that visits forums with the sole purpose of registering many user accounts and/or posting massive amounts of messages. These messages often contain links to commercial websites, phishing websites or even malware.\n\nForum spambots surf the web looking for guestbooks, wikis, blogs, forums and any other web forms to submit spam links to. These spambots often use OCR technology to bypass CAPTCHAs present. Some spam messages are targeted towards readers and can involve techniques of target marketing or even phishing. These automated schemes can make it more difficult for users to tell real posts from the bot generated ones. Some spam messages also simply contain tags and hyperlinks intended to boost search engine ranking rather than target human readers.\n\nSpam posts may contain anything from a single link to dozens of links. Text content is minimal, usually innocuous and unrelated to the forum's topic. Sometimes the posts may be made in old threads that are revived by the spammer solely for the purpose of spamming links. Posts include some text to prevent the post being caught by automated spam filters that prevent posts which consist solely of external links from being submitted.\n\nAlternatively, the spam links are posted in the user's signature, in which case the spambot will never post. The link sits quietly in the signature field, where it is more likely to be harvested by search engine spiders than discovered by forum administrators and moderators.\n\nSpam prevention and deletions measurably increase the workload of forum administrators and moderators. The amount of time and resources spent keeping a forum spam free contributes significantly to labor cost and the skill required in the running of a public forum. Marginally profitable or smaller forums may be permanently closed by administrators.\n\nHow will STEEM fight spam?\n\nReferences:\n* https://en.wikipedia.org/wiki/Forum_spam\n * http://fluxbb.org/docs/v1.4/antispam", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-04-13T08:45:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 103, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:57", + "last_update": "2016-04-13T08:45:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -433402453408, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "anti-spam", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "anti-spam", + "title": "Anti-spam", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-05-15T16:06:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "xeroc", + "author_rewards": 83368, + "beneficiaries": [], + "body": "In [an other article](/steem/@xeroc/steem-api) we have discussed the underlying structure of the STEEM API and can now look into monitoring account deposits.\n\n## Running a Node\n\nFirst, we need to run a full node in a trusted environment:\n\n ./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n\nWe open up the RPC endpoint so that we can interface with the node using RPC-JSON calls.\n\n## Blockchain Parameters and Last Block\n\nThe RPC call `get_config` will return the configuration of the blockchain which contains the block interval in seconds. By calling `get_dynamic_global_properties`, we obtain the current head block number as well as the last irreversible block number. The difference between both is that the last block is last block that has been produced by the network and has thus been confirmed by the block producer. The last irreversible block is that block that has been confirmed by sufficient many block producers so that it can no longer be modified without a hard fork. Every block older than the last reversible block is equivalent to a checkpoint in Bitcoin. Typically they are about 30 to 50 blocks behind the head block.\n\nA particular block can be obtained via the `get_block ` call and takes the form shown above.\n\n## Processing Block Data\n\nSince the content of a block is unencrypted, all it takes to monitor an account is processing of the content of each block.\n\n## Example\n\nThe following will show example implementations for monitoring a specific account.\n\n```python\n# This library can be obtain from https://github.com/xeroc/python-steem\n\nfrom steemrpc import SteemRPC\nfrom pprint import pprint\nimport time\n\n\"\"\"\n Connection Parameters to steemd daemon.\n\n Start the steemd daemon with the rpc-endpoint parameter:\n\n ./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n\n This opens up a RPC port (e.g. at 8092). Currently, authentication\n is not yet available, thus, we recommend to restrict access to\n localhost. Later we will allow authentication via username and\n passpword (both empty now).\n\n\"\"\"\nrpc = SteemRPC(\"localhost\", 8092, \"\", \"\")\n\n\"\"\"\n Last Block that you have process in your backend.\n Processing will continue at `last_block + 1`\n\"\"\"\nlast_block = 160900\n\n\"\"\"\n Deposit account name to monitor\n\"\"\"\nwatch_account = \"world\"\n\n\ndef process_block(block, blockid):\n \"\"\"\n This call processes a block which can carry many transactions\n\n :param Object block: block data\n :param number blockid: block number\n \"\"\"\n if \"transactions\" in block:\n for tx in block[\"transactions\"]:\n #: Parse operations\n for opObj in tx[\"operations\"]:\n #: Each operation is an array of the form\n #: [type, {data}]\n opType = opObj[0]\n op = opObj[1]\n\n # we here want to only parse transfers\n if opType == \"transfer\":\n process_transfer(op, block, blockid)\n\n\ndef process_transfer(op, block, blockid):\n \"\"\"\n We here process the actual transfer operation.\n \"\"\"\n if op[\"to\"] == watch_account:\n print(\n \"%d | %s | %s -> %s: %s -- %s\" % (\n blockid,\n block[\"timestamp\"],\n op[\"from\"],\n op[\"to\"],\n op[\"amount\"],\n op[\"memo\"]\n )\n )\n\n\nif __name__ == '__main__':\n # Let's find out how often blocks are generated!\n config = rpc.get_config()\n block_interval = config[\"STEEMIT_BLOCK_INTERVAL\"]\n\n # We are going to loop indefinitely\n while True:\n\n # Get chain properies to identify the \n # head/last reversible block\n props = rpc.get_dynamic_global_properties()\n\n # Get block number\n # We here have the choice between\n # * head_block_number: the last block\n # * last_irreversible_block_num: the block that is confirmed by\n # 2/3 of all block producers and is thus irreversible!\n # We recommend to use the latter!\n # block_number = props['head_block_number']\n block_number = props['last_irreversible_block_num']\n\n # We loop through all blocks we may have missed since the last\n # block defined above\n while (block_number - last_block) > 0:\n last_block += 1\n\n # Get full block\n block = rpc.get_block(last_block)\n\n # Process block\n process_block(block, last_block)\n\n # Sleep for one block\n time.sleep(block_interval)\n```", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-13T16:22:45", + "curator_payout_value": { + "amount": "18338", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 110, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-15T16:06:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 16, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "how-to-monitor-an-account-on-steem", + "reward_weight": 10000, + "root_author": "xeroc", + "root_permlink": "how-to-monitor-an-account-on-steem", + "title": "Monitoring Account Deposits in Steem Using Python", + "total_payout_value": { + "amount": "18340", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-21T17:34:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "xeroc", + "author_rewards": 9197, + "beneficiaries": [], + "body": "This article desribes the API of the STEEM full node (**not** of the wallet API).\n\n## Prerequisits\n\nThis article assumes that you have a full node running and listening to port ``8092``, locally. You can achieve this by\n\n```\n./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n```\n\nWe open up the RPC endpoint so that we can interface with the node using RPC-JSON calls.\n\n## Call Format\n\nIn Graphene, RPC calls are state-less and accessible via regular JSON formated RPC-HTTP-calls. The correct structure of the JSON call is\n\n```json\n{\n \"jsonrpc\": \"2.0\",\n \"id\": 1\n \"method\": \"get_account\",\n \"params\": [[\"xeroc\", \"steemit\"]],\n}\n```\n\nThe `get_accounts` call is available in the full node's API and takes only one argument which is an array of account ids (here: `[\"xeroc\", \"steemit\"]`).\n\n### Example Call with `curl`\n\nSuch as call can be submitted via ``curl``:\n\n```sh\ncurl --data '{\"jsonrpc\": \"2.0\", \"method\": \"get_accounts\", \"params\": [[\"xeroc\",\"steemit\"]], \"id\": 1}' http://127.0.0.1:8090/rpc\n```\n\n## Successful Calls\n\n\nThe API will return a properly JSON formated response carrying the same ``id``\nas the request to distinguish subsequent calls.\n\n```json\n{ \"id\":1, \"result\": \"data\" }\n```\n\n## Errors\n\nIn case of an error, the resulting answer will carry an ``error`` attribute and\na detailed description:\n\n```json\n{\n \"id\": 0\n \"error\": {\n \"data\": {\n \"code\": error-code,\n \"name\": \" .. name of exception ..\"\n \"message\": \" .. message of exception ..\",\n \"stack\": [ .. stack trace .. ],\n },\n \"code\": 1,\n },\n}\n```\n\n## Available Calls\n\nEven though, the `help` call does not exist, it gives us an error message that contains all available API calls in the stack trace:\n\n```\ncurl --data '{\"jsonrpc\": \"2.0\", \"method\": \"help\", \"params\": [], \"id\": 1}' http://127.0.0.1:8090/rpc\n```\n```json\n{\n \"id\": 1,\n \"error\": {\n \"message\": <...>,\n \"data\": {\n \"message\": \"Assert Exception\",\n \"name\": \"assert_exception\",\n \"stack\": [\n {\n \"data\": {\n \"name\": \"help\",\n \"api\": {\n \"set_subscribe_callback\": 0,\n \"get_dynamic_global_properties\": 12,\n \"get_accounts\": 17,\n \"get_active_categories\": 9,\n \"get_account_references\": 18,\n \"get_trending_categories\": 7,\n \"get_content\": 36,\n \"get_state\": 6,\n \"get_discussions_by_total_pending_payout\": 38,\n \"cancel_all_subscriptions\": 3,\n \"get_block_header\": 4,\n \"get_active_votes\": 35,\n \"get_current_median_history_price\": 15,\n \"lookup_witness_accounts\": 26,\n \"verify_account_authority\": 34,\n \"get_key_references\": 16,\n \"set_pending_transaction_callback\": 1,\n \"get_required_signatures\": 31,\n \"get_recent_categories\": 10,\n \"get_order_book\": 28,\n \"lookup_accounts\": 20,\n \"get_account_history\": 23,\n \"get_chain_properties\": 13,\n \"get_feed_history\": 14,\n \"verify_authority\": 33,\n \"get_discussions_by_last_update\": 40,\n \"get_conversion_requests\": 22,\n \"get_discussions_in_category_by_last_update\": 41,\n \"get_block\": 5,\n \"get_witness_count\": 27,\n \"get_best_categories\": 8,\n \"get_potential_signatures\": 32,\n \"lookup_account_names\": 19,\n \"get_transaction\": 30,\n \"get_witnesses\": 24,\n \"get_witness_by_account\": 25,\n \"get_account_count\": 21,\n \"get_transaction_hex\": 29,\n \"get_content_replies\": 37,\n \"get_discussions_in_category_by_total_pending_payout\": 39,\n \"get_miner_queue\": 43,\n \"get_active_witnesses\": 42,\n \"set_block_applied_callback\": 2,\n \"get_config\": 11\n }\n },\n \"context\": {\n \"line\": 109,\n \"hostname\": \"\",\n \"timestamp\": \"2016-04-13T16:15:17\",\n \"method\": \"call\",\n \"thread_name\": \"th_a\",\n \"level\": \"error\",\n \"file\": \"api_connection.hpp\"\n },\n \"format\": \"itr != _by_name.end(): no method with name '${name}'\"\n }\n ],\n \"code\": 10\n },\n \"code\": 1\n }\n}\n```\n\nFurther documentation about the calls can be found in the sources in [libraries/app/include/steemit/app/database_api.hpp](https://github.com/steemit/steem/blob/master/libraries/app/include/steemit/app/database_api.hpp).\n", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-04-13T16:25:15", + "curator_payout_value": { + "amount": "493", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 111, + "json_metadata": "{}", + "last_payout": "2016-08-24T05:37:24", + "last_update": "2016-04-13T16:25:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 29, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "steem-api", + "reward_weight": 10000, + "root_author": "xeroc", + "root_permlink": "steem-api", + "title": "Steem API", + "total_payout_value": { + "amount": "2165", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.pat.json index 773d6574..6cda79b6 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 478086, - "author": "ben99", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t134926380z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "looks yummy :)", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T13:49:21", - "created": "2016-08-06T13:49:21", - "active": "2016-08-06T13:53:09", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478091, - "author": "saharov", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135018922z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "i think is very delicious", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T13:50:18", - "created": "2016-08-06T13:50:18", - "active": "2016-08-06T13:51:51", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478096, - "author": "timsaid", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135034200z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "This post made me hungry Alla. Think I will try the recipe tomorrow and will tell you how it was :)", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T13:50:36", - "created": "2016-08-06T13:50:36", - "active": "2016-08-06T13:51:30", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478099, - "author": "sauravrungta", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135111374z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "Damn....just when I am hungry.....magically delicious looking little pieces of heaven!! :D :D", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T13:51:12", - "created": "2016-08-06T13:51:12", - "active": "2016-08-06T13:59:54", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "42", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "2", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 20, - "net_votes": 6, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478101, - "author": "meesterboom", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135127799z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "Top doughnutting!!!", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T13:51:27", - "created": "2016-08-06T13:51:27", - "active": "2016-08-06T13:59:18", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478127, - "author": "firepower", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t140239163z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "That looks really delicious! Would love to try that but too bad I'm behind a computer screen haha! Keep up the good work! :)", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T13:54:09", - "created": "2016-08-06T13:54:09", - "active": "2016-08-06T14:04:27", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478427, - "author": "gustavopasquini", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t142635178z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "Very Good Chef ;)", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T14:26:39", - "created": "2016-08-06T14:26:39", - "active": "2016-08-06T14:33:15", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478462, - "author": "recursive", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t143154346z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "Photo #2: gorgeous! French [canelé](https://en.wikipedia.org/wiki/Canel%C3%A9) comes to mind...\nhttps://upload.wikimedia.org/wikipedia/commons/d/df/Canele_innards.jpg", - "json_metadata": "{\"tags\":[\"recipes\"],\"links\":[\"https://en.wikipedia.org/wiki/Canel%C3%A9\"]}", - "last_update": "2016-08-06T14:30:48", - "created": "2016-08-06T14:30:48", - "active": "2016-08-06T14:32:51", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "3770", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "2", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1769, - "net_votes": 11, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 478506, - "author": "condra", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t143537671z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "Oh damn I'm gonna try this", - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_update": "2016-08-06T14:35:21", - "created": "2016-08-06T14:35:21", - "active": "2016-08-06T19:59:42", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 3, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 479047, - "author": "kryptik", - "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t153216549z", - "category": "recipes", - "parent_author": "allasyummyfood", - "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "title": "", - "body": "Awesome easy recipe! I see you workin' it #steemianfoodnetwork", - "json_metadata": "{\"tags\":[\"steemianfoodnetwork\",\"recipes\"]}", - "last_update": "2016-08-06T15:32:15", - "created": "2016-08-06T15:32:15", - "active": "2016-08-06T22:47:21", - "last_payout": "2016-09-06T04:51:42", - "depth": 1, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "allasyummyfood", - "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-06T13:53:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ben99", + "author_rewards": 0, + "beneficiaries": [], + "body": "looks yummy :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T13:49:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 644532, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:49:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t134926380z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T13:51:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "saharov", + "author_rewards": 0, + "beneficiaries": [], + "body": "i think is very delicious", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T13:50:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 644539, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:50:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135018922z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T13:51:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "timsaid", + "author_rewards": 0, + "beneficiaries": [], + "body": "This post made me hungry Alla. Think I will try the recipe tomorrow and will tell you how it was :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T13:50:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 644544, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:50:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135034200z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T13:59:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "sauravrungta", + "author_rewards": 20, + "beneficiaries": [], + "body": "Damn....just when I am hungry.....magically delicious looking little pieces of heaven!! :D :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T13:51:12", + "curator_payout_value": { + "amount": "2", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 644548, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:51:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135111374z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "42", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T13:59:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "meesterboom", + "author_rewards": 0, + "beneficiaries": [], + "body": "Top doughnutting!!!", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T13:51:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 644551, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:51:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135127799z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T14:04:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "firepower", + "author_rewards": 0, + "beneficiaries": [], + "body": "That looks really delicious! Would love to try that but too bad I'm behind a computer screen haha! Keep up the good work! :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-06T13:54:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 644585, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:54:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t140239163z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T14:33:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gustavopasquini", + "author_rewards": 0, + "beneficiaries": [], + "body": "Very Good Chef ;)", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T14:26:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 644973, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T14:26:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t142635178z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T14:32:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "recursive", + "author_rewards": 1769, + "beneficiaries": [], + "body": "Photo #2: gorgeous! French [canel\u00e9](https://en.wikipedia.org/wiki/Canel%C3%A9) comes to mind...\nhttps://upload.wikimedia.org/wikipedia/commons/d/df/Canele_innards.jpg", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T14:30:48", + "curator_payout_value": { + "amount": "2", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 645015, + "json_metadata": "{\"tags\":[\"recipes\"],\"links\":[\"https://en.wikipedia.org/wiki/Canel%C3%A9\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T14:30:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 11, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t143154346z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "3770", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T19:59:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "condra", + "author_rewards": 0, + "beneficiaries": [], + "body": "Oh damn I'm gonna try this", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T14:35:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 645069, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T14:35:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t143537671z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T22:47:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "kryptik", + "author_rewards": 0, + "beneficiaries": [], + "body": "Awesome easy recipe! I see you workin' it #steemianfoodnetwork", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-06T15:32:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 645750, + "json_metadata": "{\"tags\":[\"steemianfoodnetwork\",\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T15:32:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t153216549z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json index 0c20d05e..082915e9 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 336501, - "author": "msjennifer", - "permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", - "category": "steemit", - "parent_author": "vi1son", - "parent_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", - "title": "", - "body": "Excellent post!", - "json_metadata": "", - "last_update": "2016-07-29T15:23:18", - "created": "2016-07-29T15:17:39", - "active": "2016-07-29T15:23:18", - "last_payout": "2016-08-29T05:00:42", - "depth": 1, - "children": 0, - "net_rshares": -55205310, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": -4, - "root_author": "vi1son", - "root_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 336600, - "author": "corax", - "permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", - "category": "steemit", - "parent_author": "vi1son", - "parent_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", - "title": "", - "body": "http://now-here-this.timeout.com/wp-content/uploads/2013/02/url-19.gif Oh my goodness! Impressive article dude! Thanks, However I am encountering issues with your RSS. I dont understand why I cannot join it. Is there anybody else having the same RSS issues? Anyone that knows the solution will you kindly respond? Thanks", - "json_metadata": "", - "last_update": "2016-07-29T15:23:39", - "created": "2016-07-29T15:23:39", - "active": "2016-07-29T16:58:39", - "last_payout": "2016-08-29T05:00:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "vi1son", - "root_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 425216, - "author": "yandra86", - "permlink": "aferium", - "category": "ru", - "parent_author": "vi1son", - "parent_permlink": "aferium", - "title": "", - "body": "Upvoted", - "json_metadata": "", - "last_update": "2016-08-03T08:52:45", - "created": "2016-08-03T08:52:45", - "active": "2016-08-03T08:52:45", - "last_payout": "2016-09-02T20:52:12", - "depth": 1, - "children": 0, - "net_rshares": -10906911, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": -1, - "root_author": "vi1son", - "root_permlink": "aferium", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 773677, - "author": "itay", - "permlink": "re-aferium", - "category": "ru", - "parent_author": "vi1son", - "parent_permlink": "aferium", - "title": "", - "body": "I upvoted You", - "json_metadata": "{}", - "last_update": "2016-08-28T02:48:12", - "created": "2016-08-28T02:48:12", - "active": "2016-08-28T02:48:12", - "last_payout": "2016-09-02T20:52:12", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "vi1son", - "root_permlink": "aferium", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 353970, - "author": "confucius", - "permlink": "afghan-war-1985", - "category": "photography", - "parent_author": "vi1son", - "parent_permlink": "afghan-war-1985", - "title": "", - "body": "Acquire new knowledge whilst thinking over the old, and you may become a teacher of others.", - "json_metadata": "", - "last_update": "2016-07-30T13:55:45", - "created": "2016-07-30T13:55:45", - "active": "2016-07-30T13:55:45", - "last_payout": "2016-08-30T01:59:27", - "depth": 1, - "children": 0, - "net_rshares": -776149630, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "vi1son", - "root_permlink": "afghan-war-1985", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 353971, - "author": "jarvis", - "permlink": "afghan-war-1985", - "category": "photography", - "parent_author": "vi1son", - "parent_permlink": "afghan-war-1985", - "title": "", - "body": "Have you ever met one of your HEROES?", - "json_metadata": "", - "last_update": "2016-07-30T13:55:45", - "created": "2016-07-30T13:55:45", - "active": "2016-07-30T13:55:45", - "last_payout": "2016-08-30T01:59:27", - "depth": 1, - "children": 0, - "net_rshares": -21958841303, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "vi1son", - "root_permlink": "afghan-war-1985", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 416566, - "author": "condra", - "permlink": "re-vi1son-bug-with-comments-20160802t201348625z", - "category": "steemit", - "parent_author": "vi1son", - "parent_permlink": "bug-with-comments", - "title": "", - "body": "Yeahp. I'm sure they will fix it soon.", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_update": "2016-08-02T20:13:33", - "created": "2016-08-02T20:13:33", - "active": "2016-08-02T20:13:33", - "last_payout": "2016-09-02T08:18:00", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "vi1son", - "root_permlink": "bug-with-comments", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 416610, - "author": "cortegam", - "permlink": "re-vi1son-bug-with-comments-20160802t201629448z", - "category": "steemit", - "parent_author": "vi1son", - "parent_permlink": "bug-with-comments", - "title": "", - "body": "I have the same issue, but I thought that it was my browser lol", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_update": "2016-08-02T20:16:27", - "created": "2016-08-02T20:16:27", - "active": "2016-08-02T20:16:27", - "last_payout": "2016-09-02T08:18:00", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "vi1son", - "root_permlink": "bug-with-comments", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 260239, - "author": "wang", - "permlink": "re-vi1son-challenge-the-importance-of-setting-goals-20160725t223254293z", - "category": "introduceyourself", - "parent_author": "vi1son", - "parent_permlink": "challenge-the-importance-of-setting-goals", - "title": "", - "body": "Great to have you with us!\n\nHere are some tips if you're not aware of already:\n* Secure your account: https://steemit.com/steemit-guides/@pfunk/your-steem-account-is-worth-money-how-to-secure-it-with-a-new-owner-key-to-keep-it-yours-forever\n* Verify your account and build your reputation: https://steemit.com/steem/@tuck-fheman/verified-accounts--reputation-system\n* Contribute with your own contents: https://steemit.com/steem/@grittenald/copy-paste-steal-cite-your-sources, and https://steemit.com/steemit/@pfunk/lets-discuss-verification-of-user-accounts-posting-previous-work-to-prevent-impersonation\n* Properly tagging your posts, especially when your content is `#NSFW` or for `#test` only\n* Know how Steemit works: https://steemit.com/steemit/@donkeypong/still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy ", - "json_metadata": "{\"tags\":[]}", - "last_update": "2016-07-25T22:32:54", - "created": "2016-07-25T22:32:54", - "active": "2016-07-25T22:32:54", - "last_payout": "2016-08-26T00:12:39", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "vi1son", - "root_permlink": "challenge-the-importance-of-setting-goals", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 260253, - "author": "sharon", - "permlink": "challenge-the-importance-of-setting-goals", - "category": "introduceyourself", - "parent_author": "vi1son", - "parent_permlink": "challenge-the-importance-of-setting-goals", - "title": "", - "body": "Welcome to the community!", - "json_metadata": "", - "last_update": "2016-07-25T22:33:24", - "created": "2016-07-25T22:33:24", - "active": "2016-07-25T22:33:24", - "last_payout": "2016-08-26T00:12:39", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "vi1son", - "root_permlink": "challenge-the-importance-of-setting-goals", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-07-29T15:23:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "msjennifer", + "author_rewards": 0, + "beneficiaries": [], + "body": "Excellent post!", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-29T15:17:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 336501, + "json_metadata": "", + "last_payout": "2016-08-29T05:00:42", + "last_update": "2016-07-29T15:23:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -55205310, + "net_votes": -4, + "parent_author": "vi1son", + "parent_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "percent_hbd": 10000, + "permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-29T16:58:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "corax", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://now-here-this.timeout.com/wp-content/uploads/2013/02/url-19.gif Oh my goodness! Impressive article dude! Thanks, However I am encountering issues with your RSS. I dont understand why I cannot join it. Is there anybody else having the same RSS issues? Anyone that knows the solution will you kindly respond? Thanks", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-29T15:23:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 336600, + "json_metadata": "", + "last_payout": "2016-08-29T05:00:42", + "last_update": "2016-07-29T15:23:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "vi1son", + "parent_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "percent_hbd": 10000, + "permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-03T08:52:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "yandra86", + "author_rewards": 0, + "beneficiaries": [], + "body": "Upvoted", + "cashout_time": "1969-12-31T23:59:59", + "category": "ru", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-03T08:52:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 425216, + "json_metadata": "", + "last_payout": "2016-09-02T20:52:12", + "last_update": "2016-08-03T08:52:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -10906911, + "net_votes": -1, + "parent_author": "vi1son", + "parent_permlink": "aferium", + "percent_hbd": 10000, + "permlink": "aferium", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "aferium", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T02:48:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "itay", + "author_rewards": 0, + "beneficiaries": [], + "body": "I upvoted You", + "cashout_time": "1969-12-31T23:59:59", + "category": "ru", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T02:48:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 773677, + "json_metadata": "{}", + "last_payout": "2016-09-02T20:52:12", + "last_update": "2016-08-28T02:48:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "vi1son", + "parent_permlink": "aferium", + "percent_hbd": 10000, + "permlink": "re-aferium", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "aferium", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T13:55:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "confucius", + "author_rewards": 0, + "beneficiaries": [], + "body": "Acquire new knowledge whilst thinking over the old, and you may become a teacher of others.", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-30T13:55:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 353970, + "json_metadata": "", + "last_payout": "2016-08-30T01:59:27", + "last_update": "2016-07-30T13:55:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -776149630, + "net_votes": 2, + "parent_author": "vi1son", + "parent_permlink": "afghan-war-1985", + "percent_hbd": 10000, + "permlink": "afghan-war-1985", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "afghan-war-1985", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T13:55:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "jarvis", + "author_rewards": 0, + "beneficiaries": [], + "body": "Have you ever met one of your HEROES?", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-30T13:55:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 353971, + "json_metadata": "", + "last_payout": "2016-08-30T01:59:27", + "last_update": "2016-07-30T13:55:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -21958841303, + "net_votes": 2, + "parent_author": "vi1son", + "parent_permlink": "afghan-war-1985", + "percent_hbd": 10000, + "permlink": "afghan-war-1985", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "afghan-war-1985", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-02T20:13:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "condra", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yeahp. I'm sure they will fix it soon.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-02T20:13:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 416566, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-09-02T08:18:00", + "last_update": "2016-08-02T20:13:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "vi1son", + "parent_permlink": "bug-with-comments", + "percent_hbd": 10000, + "permlink": "re-vi1son-bug-with-comments-20160802t201348625z", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "bug-with-comments", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-02T20:16:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "cortegam", + "author_rewards": 0, + "beneficiaries": [], + "body": "I have the same issue, but I thought that it was my browser lol", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-02T20:16:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 416610, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-09-02T08:18:00", + "last_update": "2016-08-02T20:16:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "vi1son", + "parent_permlink": "bug-with-comments", + "percent_hbd": 10000, + "permlink": "re-vi1son-bug-with-comments-20160802t201629448z", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "bug-with-comments", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-25T22:32:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "wang", + "author_rewards": 0, + "beneficiaries": [], + "body": "Great to have you with us!\n\nHere are some tips if you're not aware of already:\n* Secure your account: https://steemit.com/steemit-guides/@pfunk/your-steem-account-is-worth-money-how-to-secure-it-with-a-new-owner-key-to-keep-it-yours-forever\n* Verify your account and build your reputation: https://steemit.com/steem/@tuck-fheman/verified-accounts--reputation-system\n* Contribute with your own contents: https://steemit.com/steem/@grittenald/copy-paste-steal-cite-your-sources, and https://steemit.com/steemit/@pfunk/lets-discuss-verification-of-user-accounts-posting-previous-work-to-prevent-impersonation\n* Properly tagging your posts, especially when your content is `#NSFW` or for `#test` only\n* Know how Steemit works: https://steemit.com/steemit/@donkeypong/still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy ", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-25T22:32:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 260239, + "json_metadata": "{\"tags\":[]}", + "last_payout": "2016-08-26T00:12:39", + "last_update": "2016-07-25T22:32:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "vi1son", + "parent_permlink": "challenge-the-importance-of-setting-goals", + "percent_hbd": 10000, + "permlink": "re-vi1son-challenge-the-importance-of-setting-goals-20160725t223254293z", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "challenge-the-importance-of-setting-goals", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-25T22:33:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "sharon", + "author_rewards": 0, + "beneficiaries": [], + "body": "Welcome to the community!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-25T22:33:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 260253, + "json_metadata": "", + "last_payout": "2016-08-26T00:12:39", + "last_update": "2016-07-25T22:33:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "vi1son", + "parent_permlink": "challenge-the-importance-of-setting-goals", + "percent_hbd": 10000, + "permlink": "challenge-the-importance-of-setting-goals", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "challenge-the-importance-of-setting-goals", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json index f3b6847c..1cdc4356 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 780584, - "author": "givemeyoursteem", - "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", - "category": "foodchallenge", - "parent_author": "knozaki2015", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", - "title": "", - "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", - "last_update": "2016-08-28T18:12:39", - "created": "2016-08-28T18:12:39", - "active": "2016-08-28T18:12:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 692581, - "author": "gonzo", - "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-interview-with-marcus-schmitt-ceo-of-copytrack-20160821t083448196z", - "category": "interview", - "parent_author": "knozaki2015", - "parent_permlink": "re-gonzo-re-knozaki2015-interview-with-marcus-schmitt-ceo-of-copytrack-20160821t083148078z", - "title": "", - "body": "You won't get much out of me, I only hooked for a few months, but maybe if you give me some time I can come up with some better stories :)", - "json_metadata": "{\"tags\":[\"interview\"]}", - "last_update": "2016-08-21T08:36:18", - "created": "2016-08-21T08:36:18", - "active": "2016-08-21T08:47:24", - "last_payout": "2016-08-21T21:30:09", - "depth": 3, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "knozaki2015", - "root_permlink": "interview-with-marcus-schmitt-ceo-of-copytrack", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 596256, - "author": "gonzo", - "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-re-knozaki2015-i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne-20160814t085544420z", - "category": "food", - "parent_author": "knozaki2015", - "parent_permlink": "re-gonzo-re-knozaki2015-re-knozaki2015-i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne-20160814t085434286z", - "title": "", - "body": "You're welcome, it took me forever to learn how to do that.", - "json_metadata": "{\"tags\":[\"food\"]}", - "last_update": "2016-08-14T08:55:48", - "created": "2016-08-14T08:55:48", - "active": "2016-08-14T09:03:18", - "last_payout": "2016-09-14T00:38:18", - "depth": 4, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "knozaki2015", - "root_permlink": "i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 580231, - "author": "gonzo", - "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive-20160813t010923910z", - "category": "food", - "parent_author": "knozaki2015", - "parent_permlink": "re-gonzo-re-knozaki2015-the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive-20160813t010757520z", - "title": "", - "body": "What is your favorite Japanese food?", - "json_metadata": "{\"tags\":[\"food\"]}", - "last_update": "2016-08-13T01:09:27", - "created": "2016-08-13T01:09:27", - "active": "2016-08-13T01:32:00", - "last_payout": "2016-09-12T13:37:06", - "depth": 3, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "knozaki2015", - "root_permlink": "the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 897353, - "author": "gringalicious", - "permlink": "re-knozaki2015-re-gringalicious-re-knozaki2015-i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami-20160908t224916649z", - "category": "food", - "parent_author": "knozaki2015", - "parent_permlink": "re-gringalicious-re-knozaki2015-i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami-20160908t223849052z", - "title": "", - "body": "I'll be there", - "json_metadata": "{\"tags\":[\"food\"]}", - "last_update": "2016-09-08T22:49:18", - "created": "2016-09-08T22:49:18", - "active": "2016-09-08T22:49:18", - "last_payout": "2016-09-09T23:09:36", - "depth": 3, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "knozaki2015", - "root_permlink": "i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 641066, - "author": "hagie", - "permlink": "re-knozaki2015-re-hagie-re-knozaki2015-paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better-20160817t130426895z", - "category": "giveback", - "parent_author": "knozaki2015", - "parent_permlink": "re-hagie-re-knozaki2015-paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better-20160817t102434089z", - "title": "", - "body": "Ok .. das ist echt super - ich hatte zwar nicht so viel glück mit meinen Posts wie du aber ich werde ab jetzt 10% monatlich meiner SMD an dich senden zum verteilen. Danke dafür. Ich würde mich auch sehr über jeden approve als witness freuen - da mit die technische Seite einfach eher liegt als das schreiben von Posts !! https://steemit.com/deutsch/@hagie/witness-anmeldung-fuer-hagie", - "json_metadata": "{\"tags\":[\"giveback\"],\"links\":[\"https://steemit.com/deutsch/@hagie/witness-anmeldung-fuer-hagie\"]}", - "last_update": "2016-08-17T13:04:24", - "created": "2016-08-17T13:04:24", - "active": "2016-08-18T21:47:51", - "last_payout": "2016-09-05T22:26:30", - "depth": 3, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "knozaki2015", - "root_permlink": "paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 680888, - "author": "handmade", - "permlink": "re-knozaki2015-re-handmade-this-is-slovenia-2-million-people-53-dialects-and-much-more-20160820t075942095z", - "category": "travel", - "parent_author": "knozaki2015", - "parent_permlink": "re-handmade-this-is-slovenia-2-million-people-53-dialects-and-much-more-20160819t223531716z", - "title": "", - "body": "Many people just go around and here is so much to see and do. Follow the series and you'll buy the ticket very soon. Just let me know when you are coming because here the beer is also nice :)", - "json_metadata": "{\"tags\":[\"travel\"]}", - "last_update": "2016-08-20T07:59:57", - "created": "2016-08-20T07:59:57", - "active": "2016-08-20T08:09:54", - "last_payout": "2016-08-20T23:50:45", - "depth": 2, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "handmade", - "root_permlink": "this-is-slovenia-2-million-people-53-dialects-and-much-more", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 513207, - "author": "herzmeister", - "permlink": "re-knozaki2015-re-herzmeister-marathonissi-turtle-island-laganas-greece-20160808t203030390z", - "category": "wallpaper", - "parent_author": "knozaki2015", - "parent_permlink": "re-herzmeister-marathonissi-turtle-island-laganas-greece-20160808t132357110z", - "title": "", - "body": "thanks, I hope there will soon be proper support and functionality for viewing followers and their posts and similar things.", - "json_metadata": "{\"tags\":[\"wallpaper\"]}", - "last_update": "2016-08-08T20:29:54", - "created": "2016-08-08T20:29:54", - "active": "2016-08-08T20:29:54", - "last_payout": "2016-09-08T03:01:09", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "herzmeister", - "root_permlink": "marathonissi-turtle-island-laganas-greece", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 349149, - "author": "hhcwebmaster", - "permlink": "re-knozaki2015-re-hhcwebmaster-greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself-20160730t071816576z", - "category": "introduceyourself", - "parent_author": "knozaki2015", - "parent_permlink": "re-hhcwebmaster-greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself-20160730t071432435z", - "title": "", - "body": "Hey thank you! took effort to put it together this way into sections.. my mind is everywhere!! haha... & It's quite simple .. I am using headers .. from h1 to h3 .... Use brackets.. <---> [h1] TITLE HEADLINE [/h1]", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-07-30T07:18:21", - "created": "2016-07-30T07:18:21", - "active": "2016-07-30T07:18:21", - "last_payout": "2016-08-29T20:08:06", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "hhcwebmaster", - "root_permlink": "greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 660065, - "author": "hisnameisolllie", - "permlink": "re-knozaki2015-re-hisnameisolllie-one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons-20160818t192942365z", - "category": "steemit-future", - "parent_author": "knozaki2015", - "parent_permlink": "re-hisnameisolllie-one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons-20160818t192526842z", - "title": "", - "body": "You Edited ;)\n\nI agree.\n\nI understand that (promotion of earnings), and I've certainly been guilty of that in the past. I think that once we've 'been around the block' a few times on Steemit, I believe we need to start being a little more realistic with our pitches. \n\nAs the user base increases, the odd's of hitting a $5,000 post diminish rapidly. Steemit has merits in it's own rights, but not too many people are talking about them...", - "json_metadata": "{\"tags\":[\"steemit-future\"]}", - "last_update": "2016-08-18T19:35:03", - "created": "2016-08-18T19:29:42", - "active": "2016-08-18T20:37:06", - "last_payout": "2016-08-19T22:34:03", - "depth": 2, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "hisnameisolllie", - "root_permlink": "one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-28T18:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T18:12:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1030162, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:12:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-21T08:47:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gonzo", + "author_rewards": 0, + "beneficiaries": [], + "body": "You won't get much out of me, I only hooked for a few months, but maybe if you give me some time I can come up with some better stories :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "interview", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-21T08:36:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 917604, + "json_metadata": "{\"tags\":[\"interview\"]}", + "last_payout": "2016-08-21T21:30:09", + "last_update": "2016-08-21T08:36:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-gonzo-re-knozaki2015-interview-with-marcus-schmitt-ceo-of-copytrack-20160821t083148078z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-interview-with-marcus-schmitt-ceo-of-copytrack-20160821t083448196z", + "reward_weight": 10000, + "root_author": "knozaki2015", + "root_permlink": "interview-with-marcus-schmitt-ceo-of-copytrack", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T09:03:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gonzo", + "author_rewards": 0, + "beneficiaries": [], + "body": "You're welcome, it took me forever to learn how to do that.", + "cashout_time": "1969-12-31T23:59:59", + "category": "food", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-14T08:55:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 4, + "id": 796088, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "2016-09-14T00:38:18", + "last_update": "2016-08-14T08:55:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-gonzo-re-knozaki2015-re-knozaki2015-i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne-20160814t085434286z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-re-knozaki2015-i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne-20160814t085544420z", + "reward_weight": 10000, + "root_author": "knozaki2015", + "root_permlink": "i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-13T01:32:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gonzo", + "author_rewards": 0, + "beneficiaries": [], + "body": "What is your favorite Japanese food?", + "cashout_time": "1969-12-31T23:59:59", + "category": "food", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-13T01:09:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 775640, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "2016-09-12T13:37:06", + "last_update": "2016-08-13T01:09:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-gonzo-re-knozaki2015-the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive-20160813t010757520z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive-20160813t010923910z", + "reward_weight": 10000, + "root_author": "knozaki2015", + "root_permlink": "the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-08T22:49:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gringalicious", + "author_rewards": 0, + "beneficiaries": [], + "body": "I'll be there", + "cashout_time": "1969-12-31T23:59:59", + "category": "food", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-08T22:49:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 1178172, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "2016-09-09T23:09:36", + "last_update": "2016-09-08T22:49:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-gringalicious-re-knozaki2015-i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami-20160908t223849052z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-gringalicious-re-knozaki2015-i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami-20160908t224916649z", + "reward_weight": 10000, + "root_author": "knozaki2015", + "root_permlink": "i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-18T21:47:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hagie", + "author_rewards": 0, + "beneficiaries": [], + "body": "Ok .. das ist echt super - ich hatte zwar nicht so viel gl\u00fcck mit meinen Posts wie du aber ich werde ab jetzt 10% monatlich meiner SMD an dich senden zum verteilen. Danke daf\u00fcr. Ich w\u00fcrde mich auch sehr \u00fcber jeden approve als witness freuen - da mit die technische Seite einfach eher liegt als das schreiben von Posts !! https://steemit.com/deutsch/@hagie/witness-anmeldung-fuer-hagie", + "cashout_time": "1969-12-31T23:59:59", + "category": "giveback", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-17T13:04:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 852094, + "json_metadata": "{\"tags\":[\"giveback\"],\"links\":[\"https://steemit.com/deutsch/@hagie/witness-anmeldung-fuer-hagie\"]}", + "last_payout": "2016-09-05T22:26:30", + "last_update": "2016-08-17T13:04:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-hagie-re-knozaki2015-paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better-20160817t102434089z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-hagie-re-knozaki2015-paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better-20160817t130426895z", + "reward_weight": 10000, + "root_author": "knozaki2015", + "root_permlink": "paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-20T08:09:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "handmade", + "author_rewards": 0, + "beneficiaries": [], + "body": "Many people just go around and here is so much to see and do. Follow the series and you'll buy the ticket very soon. Just let me know when you are coming because here the beer is also nice :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "travel", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-20T07:59:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 902535, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "2016-08-20T23:50:45", + "last_update": "2016-08-20T07:59:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-handmade-this-is-slovenia-2-million-people-53-dialects-and-much-more-20160819t223531716z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-handmade-this-is-slovenia-2-million-people-53-dialects-and-much-more-20160820t075942095z", + "reward_weight": 10000, + "root_author": "handmade", + "root_permlink": "this-is-slovenia-2-million-people-53-dialects-and-much-more", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-08T20:29:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "herzmeister", + "author_rewards": 0, + "beneficiaries": [], + "body": "thanks, I hope there will soon be proper support and functionality for viewing followers and their posts and similar things.", + "cashout_time": "1969-12-31T23:59:59", + "category": "wallpaper", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-08T20:29:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 689817, + "json_metadata": "{\"tags\":[\"wallpaper\"]}", + "last_payout": "2016-09-08T03:01:09", + "last_update": "2016-08-08T20:29:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-herzmeister-marathonissi-turtle-island-laganas-greece-20160808t132357110z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-herzmeister-marathonissi-turtle-island-laganas-greece-20160808t203030390z", + "reward_weight": 10000, + "root_author": "herzmeister", + "root_permlink": "marathonissi-turtle-island-laganas-greece", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T07:18:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hhcwebmaster", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hey thank you! took effort to put it together this way into sections.. my mind is everywhere!! haha... & It's quite simple .. I am using headers .. from h1 to h3 .... Use brackets.. <---> [h1] TITLE HEADLINE [/h1]", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-30T07:18:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 482962, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-29T20:08:06", + "last_update": "2016-07-30T07:18:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "knozaki2015", + "parent_permlink": "re-hhcwebmaster-greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself-20160730t071432435z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-hhcwebmaster-greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself-20160730t071816576z", + "reward_weight": 10000, + "root_author": "hhcwebmaster", + "root_permlink": "greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-18T20:37:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hisnameisolllie", + "author_rewards": 0, + "beneficiaries": [], + "body": "You Edited ;)\n\nI agree.\n\nI understand that (promotion of earnings), and I've certainly been guilty of that in the past. I think that once we've 'been around the block' a few times on Steemit, I believe we need to start being a little more realistic with our pitches. \n\nAs the user base increases, the odd's of hitting a $5,000 post diminish rapidly. Steemit has merits in it's own rights, but not too many people are talking about them...", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit-future", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-18T19:29:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 876248, + "json_metadata": "{\"tags\":[\"steemit-future\"]}", + "last_payout": "2016-08-19T22:34:03", + "last_update": "2016-08-18T19:35:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-hisnameisolllie-one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons-20160818t192526842z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-hisnameisolllie-one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons-20160818t192942365z", + "reward_weight": 10000, + "root_author": "hisnameisolllie", + "root_permlink": "one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json index 4885a9fb..bc3ec985 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 630322, - "author": "gtg", - "permlink": "heavy-duty-witness-node-infrastructure", - "category": "witness-category", - "parent_author": "", - "parent_permlink": "witness-category", - "title": "Heavy duty witness node infrastructure", - "body": "As you know, witness nodes are an essential part of the STEEM universe.\n\nIf I have a witness node with as much as (or as little as) 3% of witness approval, I can choose the right time to shut it down, listen to my favourite music album, walk my cat, and then start it up again, most probably without missing a block.\nA full-time witness, or one of the top19 witnesses, needs to produce blocks 1600 times more frequently.\nMaintaining such a server in the long run is not an easy task.\n\nWitnesses are vulnerable to DDoS attacks. An attacker who knows the network location of your witness node can saturate your uplink to a level that makes you unable to produce blocks on time. Effectively, this means **voting the witness out using a network-level attack**. Finding the IP address of your witness node is easier than you might think. Even if you follow the guidelines for setting up your public seed node on a different machine than the one you used to get your witness running, your witness still needs to connect to other nodes in the network.\nSo what does this mean? Take a look at: http://seeds.quisquis.de/steem.html\n(service provided by cyrano.witness)\n\nDoes any of these IP addresses look familiar?\nThe attacker still doesn't know which of them is yours, right?\n\nAn attack that makes the target IP unavailable for 3 seconds? Not exactly a difficult thing to do, right? So the attacker needs to make a guess by choosing from a set of suspected IP addresses he has obtained. Guessing doesn't cost him much. Neither does a high volume, short period DDoS attack. After that, he can see that your `total_missed` count increases, and he knows he guessed correctly. And then you are out.\n\n![witness](https://grey.house/img/witness2.jpg)\n\n## A concept of infrastructure: ##\n\n2 witness nodes (primary and backup)\n4 dedicated seed nodes\n\nOne witness node has your current signing key and does its job. The other is for failover, backup purposes. For example, whenever you need to upgrade your witness binary, you do that on the backup witness node, then change your signing key, so the backup node and the primary node switch their roles. \n**(Never leave your current signing key on two nodes at the same time!)**\n\nThese 4 seed nodes mentioned here only work on behalf of your witness i.e. they don’t provide seed service on public network interfaces. \n_Your public seed node is not within the scope of this document._\n\nYour witness node connects **ONLY** to your seed nodes using VLAN or another private, low latency network solution of your choice. All other incoming/outgoing connections should be blocked except for the secure shell, preferably limited to access only from your IPs.\n\nEach seed node should be in a separate datacenter, ideally in a different part of the world, never in the same location as any of your (primary/backup) witness nodes. The purpose is to minimize the effects of a successful DDoS attack.\n\n_Please note that setting up all seed nodes in a single data center won’t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway._\n\n```\n +---+\n + +----+ | |\n | | |<-->| B |\n +--+ S1 |<-->| i |\n | | |<-->| g |\n | +----+ | |\n+------+ | | B |\n| +-+ +----+ | a |\n| W(p) | | | |<-->| d |\n| | +--+ S2 |<-->| |\n+------+ | | |<-->| U |\n | +----+ | g |\n VLAN| | l |\n | +----+ | y |\n+------+ | | |<-->| |\n| | +--+ S3 |<-->| I |\n| W(b) | | | |<-->| n |\n| +-+ +----+ | t |\n+------+ | | e |\n | +----+ | r |\n | | |<-->| n |\n +--+ S4 |<-->| e |\n | | |<-->| t |\n + +----+ | |\n +---+\n```\n```\nW(p) - primary witness\nW(b) - backup witness\nS1-4 - seed nodes\n```\nOf course, you need to keep your seed nodes (at least one of them) running all the time, otherwise your witness will not be able to sync the blockchain.\nBut if you do the math, you will see that the odds that all your seed nodes stop working at the same time are much lower than the chances that this happens to your witness node. \n\n\nIf one of your seed nodes falls victim to a DDoS attack, you can, depending on the features offered by your infrastructure provider:\n- do nothing (until most of them are targeted at the same time)\n- change its external interface IP address, routing the old one to a black hole\n- set up a new, additional, temporary seed node somewhere else\n- replace that seed node with a new one in another location\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", - "json_metadata": "{\"tags\":[\"witness-category\",\"security\",\"steem\",\"steemit\"],\"links\":[\"https://steemit.com/witness-category/@gtg/witness-gtg\"]}", - "last_update": "2016-08-16T18:11:03", - "created": "2016-08-16T18:11:03", - "active": "2016-08-18T03:32:12", - "last_payout": "2016-08-17T20:13:00", - "depth": 0, - "children": 14, - "net_rshares": "920389243926", - "abs_rshares": "920389243926", - "vote_rshares": "920389243926", - "children_abs_rshares": "1000824866058", - "cashout_time": "2016-09-16T20:13:00", - "max_cashout_time": "2016-08-31T20:14:30", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "745053", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "243149", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 501045, - "net_votes": 177, - "root_author": "gtg", - "root_permlink": "heavy-duty-witness-node-infrastructure", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 36906, - "author": "gtg", - "permlink": "hello-world", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "Hello, World!", - "body": "I'm Gandalf.\nThat's not my real name, but even my mom saved my number as ***Gandalf*** in her phone contact list.\nThat counts, right?\nI'm an IT Wizard, system admin, happily married, owner of a cat.\nOwned by a cat.\n\n![Nyunya](https://grey.house/img/niunia.jpg)\n\n**Nyunya** *(The Cat)* wants to watch everything I do, that's just her way of lending a helping paw. I’m not sure if she is so fascinated by what I do or she wants to make sure I do it right.\n\nWhy am I here? What is my motivation?\nNot much different from that guiding my cat:\nCuriosity and to be a witness (node?) of what is emerging here.\n\nMay the STEEM be with you!", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"cats\"],\"image\":[\"https://grey.house/img/niunia.jpg\"]}", - "last_update": "2016-07-10T12:39:42", - "created": "2016-07-03T16:35:03", - "active": "2016-07-10T12:39:42", - "last_payout": "2016-08-13T21:04:45", - "depth": 0, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "254288", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "16244", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1135218, - "net_votes": 44, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 693873, - "author": "gtg", - "permlink": "missing-rewards-while-mining", - "category": "mining", - "parent_author": "", - "parent_permlink": "mining", - "title": "Missing rewards while mining - common mistake with keys", - "body": "Suppose your miner node found `pow2`, but your `total_missed` count increased, instead of generating a block.\n\nIf this happens, double check your keys used in the `config.ini` file.\n\n```\nwitness = \"minerwitness\"\n\nminer = [\"minerwitness\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner1\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner2\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner3\",\"WIF_ACTIVE_PRIVATE_KEY\"]\n\nmining-threads = 4\n\nprivate-key = WIF_SIGNING_PRIVATE_KEY\n```\n\nUsing keys without paying attention to their roles is a common mistake. @artakan [found out](https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account \"@artakan - Do not use your steemit.com account for mining\")\nthat issues with missing blocks tend to happen when you are using an account that was created through [steemit.com](https://steemit.com/ \"Blogging is the new mining\") but seems to work for the mined account.\n\nSo erroneous configuration might work for your mined account by pure coincidence. In other words, the same key has been defined for all roles, so: `WIF_ACTIVE_PRIVATE_KEY` is exactly the same as `WIF_SIGNING_PRIVATE_KEY`.\n\n![witness](https://grey.house/img/witness2.jpg)\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", - "json_metadata": "{\"tags\":[\"mining\",\"steem\",\"steem-mining\"],\"users\":[\"artakan\"],\"links\":[\"https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account\"]}", - "last_update": "2016-08-21T13:02:30", - "created": "2016-08-21T12:29:18", - "active": "2016-08-27T18:39:45", - "last_payout": "2016-08-22T13:01:45", - "depth": 0, - "children": 6, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-21T13:01:45", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "353", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "79", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 241, - "net_votes": 26, - "root_author": "gtg", - "root_permlink": "missing-rewards-while-mining", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 817048, - "author": "gtg", - "permlink": "re-amcq-hello-steemit-i-m-alex-a-new-member-of-the-steemit-team-20160831t205719836z", - "category": "introduceyourself", - "parent_author": "amcq", - "parent_permlink": "hello-steemit-i-m-alex-a-new-member-of-the-steemit-team", - "title": "", - "body": "Hello Alex, welcome to steemit! :-)", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-08-31T20:57:24", - "created": "2016-08-31T20:57:24", - "active": "2016-08-31T20:57:24", - "last_payout": "2016-09-01T19:22:30", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "amcq", - "root_permlink": "hello-steemit-i-m-alex-a-new-member-of-the-steemit-team", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 758424, - "author": "gtg", - "permlink": "re-ania-hello-world-20160826t185305711z", - "category": "introduceyourself", - "parent_author": "ania", - "parent_permlink": "hello-world", - "title": "", - "body": "Hello Ania, welcome to steemit! :-)", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-08-26T18:53:09", - "created": "2016-08-26T18:53:09", - "active": "2016-08-26T21:16:45", - "last_payout": "2016-08-27T21:18:18", - "depth": 1, - "children": 1, - "net_rshares": 1067633479, - "abs_rshares": 1067633479, - "vote_rshares": 1067633479, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "ania", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 958255, - "author": "gtg", - "permlink": "re-arcange-re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t141107191z", - "category": "stats", - "parent_author": "arcange", - "parent_permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", - "title": "", - "body": "True, as well as encouraging others to try to do the same :-)", - "json_metadata": "{\"tags\":[\"stats\"]}", - "last_update": "2016-09-15T14:11:09", - "created": "2016-09-15T14:11:09", - "active": "2016-09-15T14:11:09", - "last_payout": "1970-01-01T00:00:00", - "depth": 5, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "arcange", - "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 957804, - "author": "gtg", - "permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", - "category": "stats", - "parent_author": "arcange", - "parent_permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", - "title": "", - "body": "I noticed that just after writing a comment (when went back to continue reading ... ) ___Thank you___ for pointing out. :-)", - "json_metadata": "{\"tags\":[\"stats\"]}", - "last_update": "2016-09-15T13:19:24", - "created": "2016-09-15T13:19:24", - "active": "2016-09-15T14:11:09", - "last_payout": "1970-01-01T00:00:00", - "depth": 3, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "arcange", - "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 957696, - "author": "gtg", - "permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", - "category": "stats", - "parent_author": "arcange", - "parent_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", - "title": "", - "body": "@arcange, please do not underestimate ___\"Thank you\"___ while searching for ___\"Thanks\"___ ;-)\n\nThank you,\n[Gandalf](https://steemit.com/@gtg) (\"gtg\")", - "json_metadata": "{\"tags\":[\"stats\"],\"users\":[\"arcange\"],\"links\":[\"https://steemit.com/@gtg\"]}", - "last_update": "2016-09-15T13:08:12", - "created": "2016-09-15T13:04:12", - "active": "2016-09-15T14:11:09", - "last_payout": "1970-01-01T00:00:00", - "depth": 1, - "children": 4, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "arcange", - "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 693917, - "author": "gtg", - "permlink": "re-artakan-important-info-for-steem-miner-do-not-use-your-steemit-com-account-20160821t123356072z", - "category": "mining", - "parent_author": "artakan", - "parent_permlink": "important-info-for-steem-miner-do-not-use-your-steemit-com-account", - "title": "", - "body": "There's nothing wrong with mining using your _\"steemit.com account\"_. It's **all about your keys** and using **proper miner configuration**. I tried to explain common mistake https://steemit.com/mining/@gtg/missing-rewards-while-mining", - "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https://steemit.com/mining/@gtg/missing-rewards-while-mining\"]}", - "last_update": "2016-08-21T12:33:57", - "created": "2016-08-21T12:33:57", - "active": "2016-08-21T12:33:57", - "last_payout": "2016-08-22T10:51:00", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "39", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 27, - "net_votes": 3, - "root_author": "artakan", - "root_permlink": "important-info-for-steem-miner-do-not-use-your-steemit-com-account", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 792758, - "author": "gtg", - "permlink": "re-artywah-self-proclaimed-geek-and-digital-ancient-in-melbourne-australia-20160829t191915549z", - "category": "introduceyourself", - "parent_author": "artywah", - "parent_permlink": "self-proclaimed-geek-and-digital-ancient-in-melbourne-australia", - "title": "", - "body": "Hello @artywah, welcome to steemit! :-)\nHint: Adding a picture to your post could make it more appealing.\n( I used my cat for that ;-) )", - "json_metadata": "{\"tags\":[\"introduceyourself\"],\"users\":[\"artywah\"]}", - "last_update": "2016-08-29T19:19:18", - "created": "2016-08-29T19:19:18", - "active": "2016-08-29T19:19:18", - "last_payout": "2016-08-30T18:28:06", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "artywah", - "root_permlink": "self-proclaimed-geek-and-digital-ancient-in-melbourne-australia", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": "920389243926", + "active": "2016-08-18T03:32:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 501045, + "beneficiaries": [], + "body": "As you know, witness nodes are an essential part of the STEEM universe.\n\nIf I have a witness node with as much as (or as little as) 3% of witness approval, I can choose the right time to shut it down, listen to my favourite music album, walk my cat, and then start it up again, most probably without missing a block.\nA full-time witness, or one of the top19 witnesses, needs to produce blocks 1600 times more frequently.\nMaintaining such a server in the long run is not an easy task.\n\nWitnesses are vulnerable to DDoS attacks. An attacker who knows the network location of your witness node can saturate your uplink to a level that makes you unable to produce blocks on time. Effectively, this means **voting the witness out using a network-level attack**. Finding the IP address of your witness node is easier than you might think. Even if you follow the guidelines for setting up your public seed node on a different machine than the one you used to get your witness running, your witness still needs to connect to other nodes in the network.\nSo what does this mean? Take a look at: http://seeds.quisquis.de/steem.html\n(service provided by cyrano.witness)\n\nDoes any of these IP addresses look familiar?\nThe attacker still doesn't know which of them is yours, right?\n\nAn attack that makes the target IP unavailable for 3 seconds? Not exactly a difficult thing to do, right? So the attacker needs to make a guess by choosing from a set of suspected IP addresses he has obtained. Guessing doesn't cost him much. Neither does a high volume, short period DDoS attack. After that, he can see that your `total_missed` count increases, and he knows he guessed correctly. And then you are out.\n\n![witness](https://grey.house/img/witness2.jpg)\n\n## A concept of infrastructure: ##\n\n2 witness nodes (primary and backup)\n4 dedicated seed nodes\n\nOne witness node has your current signing key and does its job. The other is for failover, backup purposes. For example, whenever you need to upgrade your witness binary, you do that on the backup witness node, then change your signing key, so the backup node and the primary node switch their roles. \n**(Never leave your current signing key on two nodes at the same time!)**\n\nThese 4 seed nodes mentioned here only work on behalf of your witness i.e. they don\u2019t provide seed service on public network interfaces. \n_Your public seed node is not within the scope of this document._\n\nYour witness node connects **ONLY** to your seed nodes using VLAN or another private, low latency network solution of your choice. All other incoming/outgoing connections should be blocked except for the secure shell, preferably limited to access only from your IPs.\n\nEach seed node should be in a separate datacenter, ideally in a different part of the world, never in the same location as any of your (primary/backup) witness nodes. The purpose is to minimize the effects of a successful DDoS attack.\n\n_Please note that setting up all seed nodes in a single data center won\u2019t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway._\n\n```\n +---+\n + +----+ | |\n | | |<-->| B |\n +--+ S1 |<-->| i |\n | | |<-->| g |\n | +----+ | |\n+------+ | | B |\n| +-+ +----+ | a |\n| W(p) | | | |<-->| d |\n| | +--+ S2 |<-->| |\n+------+ | | |<-->| U |\n | +----+ | g |\n VLAN| | l |\n | +----+ | y |\n+------+ | | |<-->| |\n| | +--+ S3 |<-->| I |\n| W(b) | | | |<-->| n |\n| +-+ +----+ | t |\n+------+ | | e |\n | +----+ | r |\n | | |<-->| n |\n +--+ S4 |<-->| e |\n | | |<-->| t |\n + +----+ | |\n +---+\n```\n```\nW(p) - primary witness\nW(b) - backup witness\nS1-4 - seed nodes\n```\nOf course, you need to keep your seed nodes (at least one of them) running all the time, otherwise your witness will not be able to sync the blockchain.\nBut if you do the math, you will see that the odds that all your seed nodes stop working at the same time are much lower than the chances that this happens to your witness node. \n\n\nIf one of your seed nodes falls victim to a DDoS attack, you can, depending on the features offered by your infrastructure provider:\n- do nothing (until most of them are targeted at the same time)\n- change its external interface IP address, routing the old one to a black hole\n- set up a new, additional, temporary seed node somewhere else\n- replace that seed node with a new one in another location\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 14, + "children_abs_rshares": "1000824866058", + "created": "2016-08-16T18:11:03", + "curator_payout_value": { + "amount": "243149", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 838525, + "json_metadata": "{\"tags\":[\"witness-category\",\"security\",\"steem\",\"steemit\"],\"links\":[\"https://steemit.com/witness-category/@gtg/witness-gtg\"]}", + "last_payout": "2016-08-17T20:13:00", + "last_update": "2016-08-16T18:11:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-08-31T20:14:30", + "net_rshares": "920389243926", + "net_votes": 177, + "parent_author": "", + "parent_permlink": "witness-category", + "percent_hbd": 10000, + "permlink": "heavy-duty-witness-node-infrastructure", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "heavy-duty-witness-node-infrastructure", + "title": "Heavy duty witness node infrastructure", + "total_payout_value": { + "amount": "745053", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "920389243926" + }, + { + "abs_rshares": 0, + "active": "2016-07-10T12:39:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 1135218, + "beneficiaries": [], + "body": "I'm Gandalf.\nThat's not my real name, but even my mom saved my number as ***Gandalf*** in her phone contact list.\nThat counts, right?\nI'm an IT Wizard, system admin, happily married, owner of a cat.\nOwned by a cat.\n\n![Nyunya](https://grey.house/img/niunia.jpg)\n\n**Nyunya** *(The Cat)* wants to watch everything I do, that's just her way of lending a helping paw. I\u2019m not sure if she is so fascinated by what I do or she wants to make sure I do it right.\n\nWhy am I here? What is my motivation?\nNot much different from that guiding my cat:\nCuriosity and to be a witness (node?) of what is emerging here.\n\nMay the STEEM be with you!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-07-03T16:35:03", + "curator_payout_value": { + "amount": "16244", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 51402, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"cats\"],\"image\":[\"https://grey.house/img/niunia.jpg\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-10T12:39:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "hello-world", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "Hello, World!", + "total_payout_value": { + "amount": "254288", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-27T18:39:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 241, + "beneficiaries": [], + "body": "Suppose your miner node found `pow2`, but your `total_missed` count increased, instead of generating a block.\n\nIf this happens, double check your keys used in the `config.ini` file.\n\n```\nwitness = \"minerwitness\"\n\nminer = [\"minerwitness\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner1\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner2\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner3\",\"WIF_ACTIVE_PRIVATE_KEY\"]\n\nmining-threads = 4\n\nprivate-key = WIF_SIGNING_PRIVATE_KEY\n```\n\nUsing keys without paying attention to their roles is a common mistake. @artakan [found out](https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account \"@artakan - Do not use your steemit.com account for mining\")\nthat issues with missing blocks tend to happen when you are using an account that was created through [steemit.com](https://steemit.com/ \"Blogging is the new mining\") but seems to work for the mined account.\n\nSo erroneous configuration might work for your mined account by pure coincidence. In other words, the same key has been defined for all roles, so: `WIF_ACTIVE_PRIVATE_KEY` is exactly the same as `WIF_SIGNING_PRIVATE_KEY`.\n\n![witness](https://grey.house/img/witness2.jpg)\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 6, + "children_abs_rshares": 0, + "created": "2016-08-21T12:29:18", + "curator_payout_value": { + "amount": "79", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 919309, + "json_metadata": "{\"tags\":[\"mining\",\"steem\",\"steem-mining\"],\"users\":[\"artakan\"],\"links\":[\"https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account\"]}", + "last_payout": "2016-08-22T13:01:45", + "last_update": "2016-08-21T13:02:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 26, + "parent_author": "", + "parent_permlink": "mining", + "percent_hbd": 10000, + "permlink": "missing-rewards-while-mining", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "title": "Missing rewards while mining - common mistake with keys", + "total_payout_value": { + "amount": "353", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-31T20:57:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hello Alex, welcome to steemit! :-)", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-31T20:57:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1076078, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-09-01T19:22:30", + "last_update": "2016-08-31T20:57:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "amcq", + "parent_permlink": "hello-steemit-i-m-alex-a-new-member-of-the-steemit-team", + "percent_hbd": 10000, + "permlink": "re-amcq-hello-steemit-i-m-alex-a-new-member-of-the-steemit-team-20160831t205719836z", + "reward_weight": 10000, + "root_author": "amcq", + "root_permlink": "hello-steemit-i-m-alex-a-new-member-of-the-steemit-team", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 1067633479, + "active": "2016-08-26T21:16:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hello Ania, welcome to steemit! :-)", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-26T18:53:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1002047, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-27T21:18:18", + "last_update": "2016-08-26T18:53:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 1067633479, + "net_votes": 2, + "parent_author": "ania", + "parent_permlink": "hello-world", + "percent_hbd": 10000, + "permlink": "re-ania-hello-world-20160826t185305711z", + "reward_weight": 10000, + "root_author": "ania", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 1067633479 + }, + { + "abs_rshares": 0, + "active": "2016-09-15T14:11:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "True, as well as encouraging others to try to do the same :-)", + "cashout_time": "1969-12-31T23:59:59", + "category": "stats", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-15T14:11:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 5, + "id": 1254260, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T14:11:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "arcange", + "parent_permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", + "percent_hbd": 10000, + "permlink": "re-arcange-re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t141107191z", + "reward_weight": 10000, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-15T14:11:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "I noticed that just after writing a comment (when went back to continue reading ... ) ___Thank you___ for pointing out. :-)", + "cashout_time": "1969-12-31T23:59:59", + "category": "stats", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-09-15T13:19:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 1253693, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T13:19:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "arcange", + "parent_permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", + "percent_hbd": 10000, + "permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", + "reward_weight": 10000, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-15T14:11:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "@arcange, please do not underestimate ___\"Thank you\"___ while searching for ___\"Thanks\"___ ;-)\n\nThank you,\n[Gandalf](https://steemit.com/@gtg) (\"gtg\")", + "cashout_time": "1969-12-31T23:59:59", + "category": "stats", + "children": 4, + "children_abs_rshares": 0, + "created": "2016-09-15T13:04:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1253559, + "json_metadata": "{\"tags\":[\"stats\"],\"users\":[\"arcange\"],\"links\":[\"https://steemit.com/@gtg\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T13:08:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "arcange", + "parent_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "percent_hbd": 10000, + "permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", + "reward_weight": 10000, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-21T12:33:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 27, + "beneficiaries": [], + "body": "There's nothing wrong with mining using your _\"steemit.com account\"_. It's **all about your keys** and using **proper miner configuration**. I tried to explain common mistake https://steemit.com/mining/@gtg/missing-rewards-while-mining", + "cashout_time": "1969-12-31T23:59:59", + "category": "mining", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-21T12:33:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 919361, + "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https://steemit.com/mining/@gtg/missing-rewards-while-mining\"]}", + "last_payout": "2016-08-22T10:51:00", + "last_update": "2016-08-21T12:33:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "artakan", + "parent_permlink": "important-info-for-steem-miner-do-not-use-your-steemit-com-account", + "percent_hbd": 10000, + "permlink": "re-artakan-important-info-for-steem-miner-do-not-use-your-steemit-com-account-20160821t123356072z", + "reward_weight": 10000, + "root_author": "artakan", + "root_permlink": "important-info-for-steem-miner-do-not-use-your-steemit-com-account", + "title": "", + "total_payout_value": { + "amount": "39", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T19:19:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hello @artywah, welcome to steemit! :-)\nHint: Adding a picture to your post could make it more appealing.\n( I used my cat for that ;-) )", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T19:19:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1045369, + "json_metadata": "{\"tags\":[\"introduceyourself\"],\"users\":[\"artywah\"]}", + "last_payout": "2016-08-30T18:28:06", + "last_update": "2016-08-29T19:19:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "artywah", + "parent_permlink": "self-proclaimed-geek-and-digital-ancient-in-melbourne-australia", + "percent_hbd": 10000, + "permlink": "re-artywah-self-proclaimed-geek-and-digital-ancient-in-melbourne-australia-20160829t191915549z", + "reward_weight": 10000, + "root_author": "artywah", + "root_permlink": "self-proclaimed-geek-and-digital-ancient-in-melbourne-australia", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json index 037ee732..b5240b80 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 736184, - "author": "skypilot", - "permlink": "an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "Where Eagles Fly by Zedekiah Morse", - "body": "http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\n\n# Hello Steemit!\n\nI am a bush-pilot, aerial photographer, and explorer. \n\nOur world is truly beautiful from up here!! And to share how I see it, I am developing an immersive project called **Where Eagles Fly** and would love to introduce myself and the project to the Steemit community. \n\nMy name is **Gerald Zedekiah Morse**, I go by **Zedekiah** or **Z** for short. \n\nOf course here on Steemit I am \"**skypilot**\".\n\nI was only recently introduced to Steemit by a friend. I find the entire construct of a blockchain content distribution platform to be fascinating. Centralized mass distribution of content is still very much under a gatekeeper rule and I would love to bypass this as much as possible. Steemit and other kindred platforms such as lbry.io, ascribe.io and many others all provide valuable tools that will greatly assist in the launch, success, and ongoing control of my project content. There is much to learn, and I look forward to the journey! \n\nhttp://geraldzmorse.com/images/steemit/howdysteemit.jpg\n*My proof of life - at my hangar on 8/23/16 with the Bluebird*\n\nIf you would like to see an example of my project and the work I do, please click on the image below which will take you to my website which has a Vimeo clip embedded on it. *(Unfortunately at this time Steemit does not support Vimeo and I do not like the compression quality of YouTube.)* I would right-click to open the link in a new tab so you keep Steemit open and don't lose your place. \n\n[![Your text here](http://geraldzmorse.com/images/steemit/Piclink-1.jpg)](http://geraldzmorse.com/Love_of_Nature.html \"Click Here To Play - a Love of Natue\")\n\n## My Background\nI am a music composer, pianist, recording engineer, and sound designer. I work mostly as a ghost composer and arranger on film soundtracks and trailers. I love many different styles of music and experiment with recording any genre or style the muse provides. If you would care to listen to my music, visit my listing on [SoundCloud/ZMorse](https://soundcloud.com/zmorse/sets), but please realize, it is not for everyone. Lots of different styles are on there, and I change the material all the time since I have a substantial library to choose from.\n\nhttp://geraldzmorse.com/images/steemit/zinstudio-1.jpg\n*Z in the Studio Mixing Film Music*\n\nIn addition to music production, I also code, develop virtual production technology and work as a disruptive technologist. But mostly I am an emerging filmmaker and content creator. For this project, I do everything possible to insure the content is not unduly influenced by outside sources. For that reason, I do literally everything: pilot, aerial photography (cinematography), post-production editing, music composition, sound design, graphics and motion graphics. \n\nI will work with other people in the development of the various post-production components involved in distributing the project content, and when the project is ready I will get a professional voice over artist for the narration of the various film and episodic chapter components. I'd love to get someone like Sam Elliot or Morgan Freeman!\n\n\n\n## I Love To Fly\nIt feels like I was born a pilot. My father was a test pilot for the B58 Hustler and then an aeronautical engineer for NASA during the Apollo program. Those were heady days. Most folks don’t realize, but back when Silicon Valley was just another small California suburb of San Francisco, and long before the advent of the Internet and rise of technology as we know it today, there were two very advanced scientific centers of technology that few knew about outside of the NASA community: Nassau Bay, Texas, and Huntsville, Alabama. \n\nhttp://geraldzmorse.com/images/steemit/B58-team.jpg\n*My father and test crew for the B58 Hustler circa 1960*\n\nThese were the Silicon Valleys of the day back in the 1960’s and 70’s. Huntsville, Alabama, was home to Marshal Space Center, and Nassau Bay, Texas, was home to Johnson Space Center. I grew up between those two places because my dad was transferred back and forth every couple of years as the Apollo program progressed. This is something I will write about in another article due to there being a lot of interesting things to discuss from that era. What’s important is the impact exposure to this unique community had on me. I developed a love of science and engineering and a wanderlust for space exploration that has had an ongoing effect on me. I still gaze into the night sky in wonderment at the possibilities of what is out there, of what we do not know. I truly love the unknown.\n\nWhen I was a child, my father took me flying a lot, most of the time we had to sneak out of the house because mom was so scared we would crash. Pops would always make me promise not to tell her when we were out doing aerobatics or flying through the mountains and landing on riverbanks. I’m grateful for the influence he had on my life, and the exposure to the science and engineering of flight that has shaped my life. But also in the type of aircraft and flying I am attracted to. I have never been interested in the fast moving jets or high altitude aircraft, instead prefer flying low and slow above the beautiful back-country, experiencing views I know very few people, if any, ever get to see. So this means I require a particular type of aircraft that can safely operate in these rough, rugged, and primitive locations.\n\nhttp://geraldzmorse.com/images/steemit/ZFlying-1.jpg\n*Flying My Bluebird In The Wilderness*\n\nI exclusively fly small bush planes. These aircraft do not require a normal paved runway to take off and land on. All I really need is a somewhat flat space a few hundred feet long, the smoother the better, but not necessary. You have to be very careful landing in short places, as you run the risk of being unable to take off from there again. This is why careful planning and attention to weather conditions and surface terrain are paramount! I also fly float planes, even crashed one a long time ago in the wilderness and had to egress the aircraft underwater as it was rapidly sinking! *(Another story for another time)*.\n\nhttp://geraldzmorse.com/images/steemit/airplanecamp-1.jpg\n*Camping on the Cumberland Plateau, Tennessee*\n\nCamping with an airplane in the wild is an experience of either extreme solitude, when I am out there by myself, or great camaraderie with a very small group of pilots who love the back-country as much as I. We have fly-in's where groups of pilots, young and old, male and female and lots of families all come together to camp out in these hard-to-reach locations.\n\nLanding and taking off on river banks, tops of cliffs, mountain saddle backs or meadows, which are always deep in the wilderness and far from civilization or help, are standard operations. Planning and proper equipment are necessary for survival, and knowledge with continuous training will keep you alive when things get spicy! You can count on the weather to be unpredictable, changing rapidly with little warning when you fly and camp deep in the mountainous hinterlands. Vigilance and a keen sense of awareness must be enacted at all times, especially in the air but also down on the ground, particularly when camping in the wild. \nBecause...*critters!*\n\nAll sorts of wild animals like coyotes, moose, elk, wolves, and bears will come into camp. We all know that they can be a curious lot and after all, this is their home and we are just visitors. Mostly, they are looking for food, especially bears. I am sure you have all seen this photo of a bush-plane that got a bit chewed on? *Never* ever store food in the airplane, not even something as small as a candy bar―especially if it is covered with fabric and not metal, though aluminum skin probably would have suffered badly as well. I reckon that bear was pretty determined and that fabric skin cut like butter with those sharp claws!\n\nhttp://geraldzmorse.com/images/steemit/BearAttack.jpg\n*Bear damage on an aircraft similar to my Bluebird*\n\n# Culmination of My Life's Work\n\nYears ago, I began taking photos while flying and camping in the back-country. Over time, camera technology exponentially reduced in form-factor while increasing in capabilities. I’m now able to carry more powerful DSLR's with amazing capabilities, and I've gone through the gauntlet with different systems: Nikon, Sony, Canon, Hasselblad, and PhaseOne. Some work much better than others, there is no real magic bullet; however, I love the large-sensor-format-based systems because I desire to reproduce my images as large-scale prints.\n\nhttp://geraldzmorse.com/images/steemit/zshooting2.jpg\n*Shooting The Grand-Staircase Escalante in Utah*\n\nAs video camera technology matured into smaller form-factor systems, I began experimenting with mounting cameras all around the aircraft, outside and in the cockpit. It has taken quite a while to come up with solutions to mitigate camera vibration. The rolling shutter effect from these systems is always an issue, especially with the bending propeller which I really dislike. But I am using my current configuration as a test bed from which to design and build an aerial platform that will eliminate all of these problems. This new platform will be based on a global-shutter sensor with a custom camera control, mounting, and optical package. \n\nWith the advent of a powerful suite of post-production tools from Adobe Creative Cloud, I am able to leverage my knowledge of virtual production technology into the art of editing and film composition. Because I already do soundtrack work, it was a fairly logical step. With the combination of aerial photography, aerial footage, and music composition and recording, I have the ability to produce my own content. Hence the following project: \n\n# Where Eagles Fly – The American Wilderness Expedition\n\nFor the past few years, I've been exploring the remaining wilderness areas of North America and filming them from a space just a few hundred to a few thousand feet above ground. The view from this zone is incredible. To accomplish this, I fly into remote off-the-beaten-path locations that are very rarely visited and even more rarely seen from this special zone up in the air... **Where Eagles Fly** :)\n\n\nWhen you think about it, our view of the world is quite limited to either down on the ground or very high up in jet airliners. Both of these views are restricted by physical limitations such as line-of-sight with ground based views and limited fine-detail when viewing from airliners flying along at 35,000 feet or higher. \n\nhttp://geraldzmorse.com/images/steemit/Mojave-Mtns.jpg\n*Kokoweef Peak in the Mojave Desert*\n\n\nWhere I fly, earth colors interact with weather and atmospheric conditions to create incredible “paintings” of nature that are stunning to behold. I see things that “Move the Soul.” I wish more people would get into flying like I did as a young man. Flying a drone is very cool, I own a number of them, but nothing compares to being there in person. The experience is worth the effort and the inherent danger. But I do realize that pressures from our socially-connected, Internet-influenced, technically-adapted and risk-averse lives somewhat limit the exposure to flying for most people. *Aha, this too, apparently, is another good subject for a future article*. \n\nMy goal is to chronicle the remaining 47% of the USA and 90% of Canada that are uninhabited and unaffected by the encroaching crush of civilization. By doing this, I hope to increase the lexicon with which we visually describe our planet ― by providing a unique new view that illustrates the untamed beauty and ruggedness of these remarkable places. I also hope that people will become as entranced as I, and will be inspired to continue the difficult effort necessary to protect and preserve these wild places for future generations. \n\nhttp://geraldzmorse.com/images/steemit/Zion-1.jpg\n*Cougar Mountain in Zion National Park*\n\nFlying a bush-plane while shooting through an open window is not without its difficulties! The type of scenery I seek is dramatic, with weather playing a major role in providing the desired backdrop. For the cleanest, long distance large-area wilderness-landscape images, I require the clearness provided by the cold, dense air molecules of Fall, Winter, and early Spring months, without the aberrations and heat distortion of Summer. \n\n\nhttp://geraldzmorse.com/images/steemit/zshooting-1.jpg\n*Shooting the San Juan Mountains in Colorado*\n\nAs you can see this is not a large production crew type of project. This is me, all alone, in the wilderness up in the air looking for dramatic weather to juxtapose against dangerous mountains in marginal flight conditions. \n*Nice!!* \n\nTo share this journey, I am creating a highly interactive, immersive virtual journey which will allow you to experience the beauty and wonder of these extraordinary places from this unique perspective. *I will post this in a future article.* \n\n# Wilderness Landscape Photography As Fine Art\n\nThe static imagery can be distributed via a variety of compelling formats, using the Ken Burns effect to make short ambient vignettes. With this, I stream the images to digital frames, provide images as screen savers and mobile device backgrounds, etc. But what I truly love to do is turn them into prints. \n\nObviously, there are many ways to do this, from simple posters, calendars and greeting cards to printed apparel. All of these are , all very appealing. You can print on practically any surface. However, I want the images to really stand out, to grace the locations where they are placed. What is truly spectacular is to create large-format prints on different mediums. For now, there are three mediums I work with:\n\n1. Giclée prints on Canvas\n2. Chrome Metallic Paper Mounted on Acrylic\n3. Aluminum Plate\n\nEach of these mediums has different qualities which influence how the images appear. I have been fortunate to find both an amazing printer (they exclusively print for all the National Geographic Galleries) and a gallery willing to allow me to exhibit my works. To date, I have held two exhibitions in the Wyland Signature Gallery at the Planet Hollywood Resort and Casino in Las Vegas, Nevada. Both were a complete blast!\n\nhttp://geraldzmorse.com/images/steemit/zgallery-1.jpg\n*Part of My Exhibition at the Wyland Gallery in Planet Hollywood Las Vegas*\n\nIt was quite an interesting experience during the show, in that most of the time I felt like a museum docent explaining the story behind images. Folks are drawn to this unique view of nature, and seem to enjoy watching the in-flight footage showing how the images were acquired. \n\nPeople are not used to seeing wilderness landscape images from this perspective it's such an advantageous place to shoot from. It's not as though anyone can simply follow me up the trail and take the same photo! \n\n# That'a Wrap!\n\nOk, my fellow Steemers! That about wraps it up for this post, if you have stayed with me though this entire article, I thank you!! I would LOVE to get feedback from the community, and if there is interest, I will continue writing about this subject and will update the Steemit community as my project develops. \n\nPlease let me know what you think. And *Fly Safe!!*\n\nhttp://geraldzmorse.com/images/steemit/zlanding1.jpg\n*Landing Bluebird on the Mesa Top at Pearce Ferry, Arizona*", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"photography\",\"travel\",\"art\",\"music\"],\"image\":[\"http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\"]}", - "last_update": "2016-08-26T18:45:27", - "created": "2016-08-24T21:24:33", - "active": "2016-09-11T05:54:30", - "last_payout": "2016-08-26T20:55:24", - "depth": 0, - "children": 112, - "net_rshares": "4923114688969", - "abs_rshares": "4923114688969", - "vote_rshares": "4923114688969", - "children_abs_rshares": "5017117283364", - "cashout_time": "2016-09-25T20:55:24", - "max_cashout_time": "2016-09-09T20:56:57", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "1639386", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "545355", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1248581, - "net_votes": 228, - "root_author": "skypilot", - "root_permlink": "an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 888391, - "author": "skypilot", - "permlink": "ancient-mayan-wordpress-design", - "category": "life", - "parent_author": "", - "parent_permlink": "life", - "title": "Ancient Mayan Wordpress Design!?!", - "body": "# Ancient Mayan Design Aesthetic\nIt amazes me that the concept of basic design seems to have been around for many thousands of years. Think about that! Many centuries ago, some very important Mayan Scribe sat at their desktop and designed the layout below, working with what was at the time, leading edge communication technology. \n\nThis form of written communication was a technology that was only understood and utilized by an elite few. To me, this draws an compelling connection to our global ancestral makeup. What is interesting is that you can see a very strong resemblance to current design aesthetic with columns, tables, pictures (info-graphics) with wrap around text. \n\nThe way we visualize layout obviously goes way back in human history. \n

\nhttp://www.pasthorizonspr.com/wp-content/uploads/2016/08/Chichen2.jpg\n
*This image is from the article in Past Horizons listed below*
\n\nI know this is very different than the articles I usually post on my photography, but I felt compelled to share this so if you'd like to see the original article please go [here](http://www.pasthorizonspr.com/index.php/archives/08/2016/hieroglyphic-texts-reveal-maya-innovation-in-maths-and-astronomy). The article is about Mayan innovation in math and astronomy and is short and worth the read. \n\nThis article is from one of my favorite sites called **Past Horizons - Adventures in Archeology**. Please visit them if you are interested in archeology and human history. They always have something worth reading.\n
http://www.pasthorizonspr.com/wp-content/uploads/2014/10/smallLOGO@2x.png
", - "json_metadata": "{\"tags\":[\"life\",\"art\",\"writing\",\"story\",\"news\"],\"image\":[\"http://www.pasthorizonspr.com/wp-content/uploads/2016/08/Chichen2.jpg\",\"http://www.pasthorizonspr.com/wp-content/uploads/2014/10/smallLOGO@2x.png\"],\"links\":[\"http://www.pasthorizonspr.com/index.php/archives/08/2016/hieroglyphic-texts-reveal-maya-innovation-in-maths-and-astronomy\"]}", - "last_update": "2016-09-08T01:54:45", - "created": "2016-09-08T01:39:12", - "active": "2016-09-08T11:49:15", - "last_payout": "2016-09-09T01:59:48", - "depth": 0, - "children": 4, - "net_rshares": 196185915, - "abs_rshares": 196185915, - "vote_rshares": 196185915, - "children_abs_rshares": 196185915, - "cashout_time": "2016-10-09T01:59:48", - "max_cashout_time": "2016-09-23T08:52:09", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "23879", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "3823", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 29701, - "net_votes": 54, - "root_author": "skypilot", - "root_permlink": "ancient-mayan-wordpress-design", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 896931, - "author": "skypilot", - "permlink": "blizzard-whiteout-in-the-forest", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Blizzard Whiteout in the Forest", - "body": "This was shot during a blizzard in Kit Carson Pass below Lake Tahoe. I couldn't leave so I took pictures. It was cold and the snow was falling almost horizontally and it was bright white. It got so bad a few times it was impossible to see more than a dozen feet away. \n\nhttp://geraldzmorse.com/images/steemit/Whiteout.jpg\n\nI find the contrast between the brilliant white and the colors of the trees intriguing .", - "json_metadata": "{\"tags\":[\"photography\",\"nature\",\"art\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Whiteout.jpg\"]}", - "last_update": "2016-09-08T23:05:54", - "created": "2016-09-08T22:00:09", - "active": "2016-09-09T11:25:09", - "last_payout": "2016-09-09T22:54:12", - "depth": 0, - "children": 5, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-10-09T22:54:12", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "5959", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "1308", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 7449, - "net_votes": 47, - "root_author": "skypilot", - "root_permlink": "blizzard-whiteout-in-the-forest", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 829916, - "author": "skypilot", - "permlink": "filmmakers-of-steemit-rejoice-they-have-just-made-embedding-vimeo-in-your-posts-possible-yehaw", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Filmmakers of Steemit Rejoice! Embedding Vimeo in your posts is now possible! Yehaw!", - "body": "http://geraldzmorse.com/images/steemit/Vimeo_logo-2.png3fformat3d1500w.png\n\n# Howdy folks, Z here... \n\nI am very happy to announce that steemit has now made it possible to directly embed high quality Vimeo clips within the iframe structure provided by Vimeo.\n\nSimply drop your embed code in the editor as you would pictures or a Youtube clip and it should work fine: \n
\n\nIf you are interested in the post where this short vignette lives from please take a look at the first post about my project: [Where Eagles Fly](http://goo.gl/cliI88) \n\nPlease don't feel compelled to vote on this post... I am simply sharing the news so that when new users search about Vimeo they will find it is possible!\n\nThank you Steemit crew! This is awesome!", - "json_metadata": "{\"tags\":[\"photography\",\"story\",\"steemit\",\"art\",\"news\"],\"links\":[\"http://goo.gl/cliI88\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Vimeo_logo-2.png3fformat3d1500w.png\"]}", - "last_update": "2016-09-02T04:05:36", - "created": "2016-09-02T00:23:30", - "active": "2016-09-02T20:48:45", - "last_payout": "2016-09-03T02:28:12", - "depth": 0, - "children": 13, - "net_rshares": "32969357867", - "abs_rshares": "32969357867", - "vote_rshares": "32969357867", - "children_abs_rshares": "32969357867", - "cashout_time": "2016-10-03T02:28:12", - "max_cashout_time": "2016-09-20T19:56:00", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "13992", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "4357", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 15688, - "net_votes": 52, - "root_author": "skypilot", - "root_permlink": "filmmakers-of-steemit-rejoice-they-have-just-made-embedding-vimeo-in-your-posts-possible-yehaw", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 856286, - "author": "skypilot", - "permlink": "flathead-mountains-and-the-great-bear-wilderness-at-dusk", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Flathead Mountains and the Great Bear Wilderness at Dusk", - "body": "This photo was shot from 9,500 feet up while I was flying towards the southwest after sunset. I am in the Flathead Mountains of Montana and the moisture in the air is condensing from the cool evening to create this mystical view of the mountains.\n\nhttp://geraldzmorse.com/images/steemit/FlatHeadatDusk.jpg\n\nThis is from a series of images I call \"Wilderness Alpenglow\". I enjoy how the image resembles classic Chinese or Japanese paintings of old.\n\nIf you want to see other work from my project **Where Eagles Fly** visit my first post [here](https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse) or second one [here](https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse).", - "json_metadata": "{\"tags\":[\"photography\",\"travel\",\"art\",\"life\",\"nature\"],\"image\":[\"http://geraldzmorse.com/images/steemit/FlatHeadatDusk.jpg\"],\"links\":[\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\",\"https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse\"]}", - "last_update": "2016-09-05T01:04:30", - "created": "2016-09-04T19:31:03", - "active": "2016-09-10T03:25:48", - "last_payout": "2016-09-06T03:47:51", - "depth": 0, - "children": 22, - "net_rshares": "140201312914", - "abs_rshares": "140201312914", - "vote_rshares": "140201312914", - "children_abs_rshares": "140201312914", - "cashout_time": "2016-10-06T03:47:51", - "max_cashout_time": "2016-09-20T06:06:54", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "21746", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "6541", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 25890, - "net_votes": 66, - "root_author": "skypilot", - "root_permlink": "flathead-mountains-and-the-great-bear-wilderness-at-dusk", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 901103, - "author": "skypilot", - "permlink": "isolated-rain-storm-on-the-great-sand-dunes-national-park", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Rain Storm on the Great Sand Dunes National Park", - "body": "# Isolated Rain Storm \nI came upon this strange isolated rain storm over the Great Sand Dunes when I was flying out over the San Luis Valley while filming Zapata Ranch. It was clear skies about the rain clouds and clear all around it... yet it was raining on this stretch of the Sangre de Cristo Range in the Rocky Mountains. \n\nhttp://geraldzmorse.com/images/steemit/GreatDunesRainStorm1.jpg\n
*Eastern side of the Great Sand Dunes National Park*
\n\nIn this photo you can clearly see the curving edge of the sand dunes boundary where the dunes delineate from the San Luis Valley floor. These are the tallest sand dunes in North America reaching heights of 750 feet (228m).\n\n# Sand From an Ancient Glacial Lake \n\nThe dunes were formed within the last 500,000 years from sand and soil deposits of the Rio Grande and its tributaries as they spread out through the San Luis Valley. Over the ages, the glaciers melting created a vast lake in the San Luis Valley... as this lake and the waters evaporated and drained to form the river, it left behind massive volumes of loose sand. Westerly winds then picked up sand particles from the lake and river flood plain and carried them across the valley floor. As the wind diminished in power before crossing the Sangre de Cristo Range, the sand deposited all along the eastern edge of the valley. As the sand stacked up over time it became what we see today, the Great Sand Dunes National Park. \n\n\nhttp://geraldzmorse.com/images/steemit/GreatDunesRainStorm2.jpg\n
*Western side of the Great Sand Dunes National Park*
\n\nIn the photo above taken from the same position as the previous photograph, you can see the small Mount Seven Peak and behind it the snow capped 13,200 (4,023m) Cleveland Peak of the Sangre de Cristo Mountain Range peeking through the rain shower.\n\n# Whipped By Fierce Winds\nThe wind continues to whip about and shape and reshape the dunes on a daily basis, and continue to increase the volume of sand and size of the dunes. These fierce winds are strong enough to move sand and small rocks from miles away across the valley. While the dunes don't actually change location or vary in size that often, the wind forms parabolic dunes that grow in the sand sheet, the outer area around the dunes, and migrate towards the main dune field, giving a very prominent beveling or warping visual effect, especially notable from up above where I fly.\n\nLocated near Alamosa, Colorado just north of the Nature Conservancy's Zapata Ranch the dunes are a great place to visit. To check out the National Parks Service website on the Great Dunes National Park go [here](https://www.nps.gov/grsa/index.htm). \n\nAnd to check out my previous exciting fly-in trip to the Zapata Ranch to visit Duke Phillips the Flying Cowboy, go [here](https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse).\n\nIf you're unfamiliar with my work please check out my introductory post [here](https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse). \n\nOk thanks, hope you enjoy this and yehaw!", - "json_metadata": "{\"tags\":[\"photography\",\"nature\",\"story\",\"life\",\"travel\"],\"image\":[\"http://geraldzmorse.com/images/steemit/GreatDunesRainStorm1.jpg\",\"http://geraldzmorse.com/images/steemit/GreatDunesRainStorm2.jpg\"],\"links\":[\"https://www.nps.gov/grsa/index.htm\",\"https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse\",\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\"]}", - "last_update": "2016-09-09T11:15:18", - "created": "2016-09-09T11:04:21", - "active": "2016-09-12T14:37:54", - "last_payout": "2016-09-10T18:51:39", - "depth": 0, - "children": 7, - "net_rshares": 113157676, - "abs_rshares": 113157676, - "vote_rshares": 113157676, - "children_abs_rshares": 113157676, - "cashout_time": "2016-10-10T18:51:39", - "max_cashout_time": "2016-09-26T14:36:45", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "807", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "203", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1047, - "net_votes": 69, - "root_author": "skypilot", - "root_permlink": "isolated-rain-storm-on-the-great-sand-dunes-national-park", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 913356, - "author": "skypilot", - "permlink": "las-vegas-valley", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Las Vegas in the Valley", - "body": "# Las Vegas Valley from the Sloan Mountains\n\nA rare perspective of the city sitting in the valley taken from above Sloan Mountains to the south. I never shoot images of cities or buildings, it's jut not my thing to do. I am an aerial wilderness photographer. However I got this while testing out a different camera.\n\nhttp://geraldzmorse.com/images/steemit/B6583414-Las-Vegas.jpg\n\nIn this uncommon point of view you can see that Las Vegas sits down in a valley, that is Gray Mountain in the distance and the foothills of Sloan Mountain in the foreground. To the bottom left, right above the small hills you can barely make out Henderson Executive Airport. \n\nThe image was captured late in the afternoon from an altitude of 4,500ft (1,371.6m) shooting towards the northeast.", - "json_metadata": "{\"tags\":[\"photography\",\"travel\",\"art\",\"las-vegas\"],\"image\":[\"http://geraldzmorse.com/images/steemit/B6583414-Las-Vegas.jpg\"]}", - "last_update": "2016-09-10T18:04:42", - "created": "2016-09-10T17:37:24", - "active": "2016-09-11T04:09:09", - "last_payout": "2016-09-12T14:32:39", - "depth": 0, - "children": 13, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-10-12T14:32:39", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "2756", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "791", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 3840, - "net_votes": 45, - "root_author": "skypilot", - "root_permlink": "las-vegas-valley", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 949882, - "author": "skypilot", - "permlink": "melting-rock", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Melting Rock", - "body": "This is an unusual rock outcroping I photographed south of Mesa Verde, Colorado in the desert near my camp. I found the colors of the stone and desert sand juxtaposed against the background vermilion cliff walls and blue hued sky to be pleasing and relaxing. \n\nhttp://geraldzmorse.com/images/steemit/Mesa-Verde-Outcrop.jpg\n\nThis image is also from my Artistic Impression series where I use a digitizing tablet to lightly brush various filter effects into the image to give it a certain mysterious quality.", - "json_metadata": "{\"tags\":[\"photography\",\"art\",\"nature\",\"\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Mesa-Verde-Outcrop.jpg\"]}", - "last_update": "2016-09-14T15:28:42", - "created": "2016-09-14T14:46:27", - "active": "2016-09-15T17:56:33", - "last_payout": "1970-01-01T00:00:00", - "depth": 0, - "children": 11, - "net_rshares": "10001278717808", - "abs_rshares": "10027068167722", - "vote_rshares": "9951683621819", - "children_abs_rshares": "10027068167722", - "cashout_time": "2016-09-15T21:34:14", - "max_cashout_time": "2016-09-28T14:50:51", - "total_vote_weight": "13144057225008877639", - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 44, - "root_author": "skypilot", - "root_permlink": "melting-rock", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 760944, - "author": "skypilot", - "permlink": "my-first-real-post-was-a-success-and-i-would-like-to-share-the-story", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "My first real post was a success and I would like to share the story.", - "body": "http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\nFellow steemers ! \n\nMy experiment on Steemit was a success. I earned $2,184.74 \n\nThe posts automatically last only 24 hours. If many people like them and upvote then they extend an additional 12 hours for a total run of 36 hours. Which mine did. \n\nOnce the post run-time is finished the post was automatically moved out of the 5 categories it was tagged in and placed in my blog page. It is still available for viewing and people can still vote on it, you can find it on my blog page. This is a necessary function of the fairness and democratic operations of this amazing website!!! How awesome is this!?!\n\nThis test was primarily undertaken to review the marketing viability of my project to the public, to see if everyone liked the concept and content. From the responses at the bottom of the post which are permanent, I would think the answer is a resounding yes. \n\nMore to come from this experiment later. Suffice to say I have established a presence and become part of the community on the most powerful cutting edge - platform/community in this new and very exciting cryptocurrency-based content-support market. \n\nI have taken the funds, held some as steem cryptocurrency and transferred the rest onto a cryptocurrency exchange called Poloniex where I am holding steem dollars (SBD) and watching the various cryptocurrencies valuation. The current SBD will increase in value or at any time I can transfer these to bitcoin or any of a number of other currencies.\n\nThis is absolutely cool!!!Thank you to the 217 steemers that upvoted me and even to the 2 that downvoted it...I sort of would like to know why but it really does not matter. \n\nPlease continue to enjoy my blog and I would love to continue building support for my project from the steemit community. I am a now a firm believer and strong advocate for steemit. \n\nMore to follow.\n\nz", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"photography\",\"art\",\"music\",\"travel\"],\"image\":[\"http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\"]}", - "last_update": "2016-08-27T18:42:45", - "created": "2016-08-26T22:53:00", - "active": "2016-08-28T03:46:18", - "last_payout": "2016-08-28T01:41:27", - "depth": 0, - "children": 13, - "net_rshares": 1230392222, - "abs_rshares": 1230392222, - "vote_rshares": 1230392222, - "children_abs_rshares": 1230392222, - "cashout_time": "2016-09-27T01:41:27", - "max_cashout_time": "2016-09-11T03:46:21", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "1501", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "420", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1363, - "net_votes": 44, - "root_author": "skypilot", - "root_permlink": "my-first-real-post-was-a-success-and-i-would-like-to-share-the-story", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 772283, - "author": "skypilot", - "permlink": "my-steemitphotochallenge-entry-for-contest-6-by-zedekiah-morse", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "SteemitPhotoChallenge Entry #6 - Unusual Formations", - "body": "For my entries into the 6th steemit photo contest I've chosen 3 unusual formations to share.\n\nIf you don't know anything about my work please visit my introduction post: \nhttps://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse \n\n**Image 1: BLUE POINT BAY**\nThis image was taken above Blue Point Bay on Lake Mead, Nevada. A powerful rain storm had just passed over and the earth was still soaked. The sun was coming back out and these vibrant, rich colors are from the water soaked natural minerals reacting to the bright sunlight. The green areas along the edge are the shallow water of the lake. I am about 2,000 feet above the lake shooting straight down from the airplane.\n\nhttp://geraldzmorse.com/images/steemit/BuePointBay.jpg\n\n**Image 2: SP VOLCANO** \nThis is a volcano just north of Flagstaff, Arizona simply known as \"SP Volcano\". I have searched high and low and cannot find any history on how it got this name. Certainly the Navajo First Nations called it something but I couldn't find mention of it anywhere. I love that this is a perfect representation of time-stood-still. You can see the how lava flowed down from the volcano, spilling out across the desert, coming to a standstill where it froze in time.\n\nhttp://geraldzmorse.com/images/steemit/SPVolcano.jpg\n\n**Image 3: CASTLE PEAKS**\nThis is Castle Peaks on the New York Mountains in the Mojave Desert. When you are driving from Los Angeles on highway 15 to Las Vegas, you can see these peaks in the distance across the valley as you come down the last hill towards Primm, Nevada. I took this picture from about 1,000 feet above the ground and what struck me about the formation was the small replica formation that sits just below Castle Peak, mirroring it. It is like a miniature formation of the larger peaks! Very strange. \n\nhttp://geraldzmorse.com/images/steemit/CastlePeaksNorth.jpg\n\nOk Thanks and hope you enjoy the images. If you have not seen my original post explaining what I do please follow the link at the top and come on by! \n\nYehaw", - "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"art\",\"travel\"],\"links\":[\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\"]}", - "last_update": "2016-08-28T07:40:03", - "created": "2016-08-27T23:27:30", - "active": "2016-09-07T16:30:00", - "last_payout": "2016-08-29T02:59:57", - "depth": 0, - "children": 12, - "net_rshares": "6808732560425", - "abs_rshares": "6808732560425", - "vote_rshares": "6808732560425", - "children_abs_rshares": "6808732560425", - "cashout_time": "2016-09-28T02:59:57", - "max_cashout_time": "2016-09-12T05:58:45", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "212", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "41", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 199, - "net_votes": 30, - "root_author": "skypilot", - "root_permlink": "my-steemitphotochallenge-entry-for-contest-6-by-zedekiah-morse", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": "4923114688969", + "active": "2016-09-11T05:54:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 1248581, + "beneficiaries": [], + "body": "http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\n\n# Hello Steemit!\n\nI am a bush-pilot, aerial photographer, and explorer. \n\nOur world is truly beautiful from up here!! And to share how I see it, I am developing an immersive project called **Where Eagles Fly** and would love to introduce myself and the project to the Steemit community. \n\nMy name is **Gerald Zedekiah Morse**, I go by **Zedekiah** or **Z** for short. \n\nOf course here on Steemit I am \"**skypilot**\".\n\nI was only recently introduced to Steemit by a friend. I find the entire construct of a blockchain content distribution platform to be fascinating. Centralized mass distribution of content is still very much under a gatekeeper rule and I would love to bypass this as much as possible. Steemit and other kindred platforms such as lbry.io, ascribe.io and many others all provide valuable tools that will greatly assist in the launch, success, and ongoing control of my project content. There is much to learn, and I look forward to the journey! \n\nhttp://geraldzmorse.com/images/steemit/howdysteemit.jpg\n*My proof of life - at my hangar on 8/23/16 with the Bluebird*\n\nIf you would like to see an example of my project and the work I do, please click on the image below which will take you to my website which has a Vimeo clip embedded on it. *(Unfortunately at this time Steemit does not support Vimeo and I do not like the compression quality of YouTube.)* I would right-click to open the link in a new tab so you keep Steemit open and don't lose your place. \n\n[![Your text here](http://geraldzmorse.com/images/steemit/Piclink-1.jpg)](http://geraldzmorse.com/Love_of_Nature.html \"Click Here To Play - a Love of Natue\")\n\n## My Background\nI am a music composer, pianist, recording engineer, and sound designer. I work mostly as a ghost composer and arranger on film soundtracks and trailers. I love many different styles of music and experiment with recording any genre or style the muse provides. If you would care to listen to my music, visit my listing on [SoundCloud/ZMorse](https://soundcloud.com/zmorse/sets), but please realize, it is not for everyone. Lots of different styles are on there, and I change the material all the time since I have a substantial library to choose from.\n\nhttp://geraldzmorse.com/images/steemit/zinstudio-1.jpg\n*Z in the Studio Mixing Film Music*\n\nIn addition to music production, I also code, develop virtual production technology and work as a disruptive technologist. But mostly I am an emerging filmmaker and content creator. For this project, I do everything possible to insure the content is not unduly influenced by outside sources. For that reason, I do literally everything: pilot, aerial photography (cinematography), post-production editing, music composition, sound design, graphics and motion graphics. \n\nI will work with other people in the development of the various post-production components involved in distributing the project content, and when the project is ready I will get a professional voice over artist for the narration of the various film and episodic chapter components. I'd love to get someone like Sam Elliot or Morgan Freeman!\n\n\n\n## I Love To Fly\nIt feels like I was born a pilot. My father was a test pilot for the B58 Hustler and then an aeronautical engineer for NASA during the Apollo program. Those were heady days. Most folks don\u2019t realize, but back when Silicon Valley was just another small California suburb of San Francisco, and long before the advent of the Internet and rise of technology as we know it today, there were two very advanced scientific centers of technology that few knew about outside of the NASA community: Nassau Bay, Texas, and Huntsville, Alabama. \n\nhttp://geraldzmorse.com/images/steemit/B58-team.jpg\n*My father and test crew for the B58 Hustler circa 1960*\n\nThese were the Silicon Valleys of the day back in the 1960\u2019s and 70\u2019s. Huntsville, Alabama, was home to Marshal Space Center, and Nassau Bay, Texas, was home to Johnson Space Center. I grew up between those two places because my dad was transferred back and forth every couple of years as the Apollo program progressed. This is something I will write about in another article due to there being a lot of interesting things to discuss from that era. What\u2019s important is the impact exposure to this unique community had on me. I developed a love of science and engineering and a wanderlust for space exploration that has had an ongoing effect on me. I still gaze into the night sky in wonderment at the possibilities of what is out there, of what we do not know. I truly love the unknown.\n\nWhen I was a child, my father took me flying a lot, most of the time we had to sneak out of the house because mom was so scared we would crash. Pops would always make me promise not to tell her when we were out doing aerobatics or flying through the mountains and landing on riverbanks. I\u2019m grateful for the influence he had on my life, and the exposure to the science and engineering of flight that has shaped my life. But also in the type of aircraft and flying I am attracted to. I have never been interested in the fast moving jets or high altitude aircraft, instead prefer flying low and slow above the beautiful back-country, experiencing views I know very few people, if any, ever get to see. So this means I require a particular type of aircraft that can safely operate in these rough, rugged, and primitive locations.\n\nhttp://geraldzmorse.com/images/steemit/ZFlying-1.jpg\n*Flying My Bluebird In The Wilderness*\n\nI exclusively fly small bush planes. These aircraft do not require a normal paved runway to take off and land on. All I really need is a somewhat flat space a few hundred feet long, the smoother the better, but not necessary. You have to be very careful landing in short places, as you run the risk of being unable to take off from there again. This is why careful planning and attention to weather conditions and surface terrain are paramount! I also fly float planes, even crashed one a long time ago in the wilderness and had to egress the aircraft underwater as it was rapidly sinking! *(Another story for another time)*.\n\nhttp://geraldzmorse.com/images/steemit/airplanecamp-1.jpg\n*Camping on the Cumberland Plateau, Tennessee*\n\nCamping with an airplane in the wild is an experience of either extreme solitude, when I am out there by myself, or great camaraderie with a very small group of pilots who love the back-country as much as I. We have fly-in's where groups of pilots, young and old, male and female and lots of families all come together to camp out in these hard-to-reach locations.\n\nLanding and taking off on river banks, tops of cliffs, mountain saddle backs or meadows, which are always deep in the wilderness and far from civilization or help, are standard operations. Planning and proper equipment are necessary for survival, and knowledge with continuous training will keep you alive when things get spicy! You can count on the weather to be unpredictable, changing rapidly with little warning when you fly and camp deep in the mountainous hinterlands. Vigilance and a keen sense of awareness must be enacted at all times, especially in the air but also down on the ground, particularly when camping in the wild. \nBecause...*critters!*\n\nAll sorts of wild animals like coyotes, moose, elk, wolves, and bears will come into camp. We all know that they can be a curious lot and after all, this is their home and we are just visitors. Mostly, they are looking for food, especially bears. I am sure you have all seen this photo of a bush-plane that got a bit chewed on? *Never* ever store food in the airplane, not even something as small as a candy bar\u2015especially if it is covered with fabric and not metal, though aluminum skin probably would have suffered badly as well. I reckon that bear was pretty determined and that fabric skin cut like butter with those sharp claws!\n\nhttp://geraldzmorse.com/images/steemit/BearAttack.jpg\n*Bear damage on an aircraft similar to my Bluebird*\n\n# Culmination of My Life's Work\n\nYears ago, I began taking photos while flying and camping in the back-country. Over time, camera technology exponentially reduced in form-factor while increasing in capabilities. I\u2019m now able to carry more powerful DSLR's with amazing capabilities, and I've gone through the gauntlet with different systems: Nikon, Sony, Canon, Hasselblad, and PhaseOne. Some work much better than others, there is no real magic bullet; however, I love the large-sensor-format-based systems because I desire to reproduce my images as large-scale prints.\n\nhttp://geraldzmorse.com/images/steemit/zshooting2.jpg\n*Shooting The Grand-Staircase Escalante in Utah*\n\nAs video camera technology matured into smaller form-factor systems, I began experimenting with mounting cameras all around the aircraft, outside and in the cockpit. It has taken quite a while to come up with solutions to mitigate camera vibration. The rolling shutter effect from these systems is always an issue, especially with the bending propeller which I really dislike. But I am using my current configuration as a test bed from which to design and build an aerial platform that will eliminate all of these problems. This new platform will be based on a global-shutter sensor with a custom camera control, mounting, and optical package. \n\nWith the advent of a powerful suite of post-production tools from Adobe Creative Cloud, I am able to leverage my knowledge of virtual production technology into the art of editing and film composition. Because I already do soundtrack work, it was a fairly logical step. With the combination of aerial photography, aerial footage, and music composition and recording, I have the ability to produce my own content. Hence the following project: \n\n# Where Eagles Fly \u2013 The American Wilderness Expedition\n\nFor the past few years, I've been exploring the remaining wilderness areas of North America and filming them from a space just a few hundred to a few thousand feet above ground. The view from this zone is incredible. To accomplish this, I fly into remote off-the-beaten-path locations that are very rarely visited and even more rarely seen from this special zone up in the air... **Where Eagles Fly** :)\n\n\nWhen you think about it, our view of the world is quite limited to either down on the ground or very high up in jet airliners. Both of these views are restricted by physical limitations such as line-of-sight with ground based views and limited fine-detail when viewing from airliners flying along at 35,000 feet or higher. \n\nhttp://geraldzmorse.com/images/steemit/Mojave-Mtns.jpg\n*Kokoweef Peak in the Mojave Desert*\n\n\nWhere I fly, earth colors interact with weather and atmospheric conditions to create incredible \u201cpaintings\u201d of nature that are stunning to behold. I see things that \u201cMove the Soul.\u201d I wish more people would get into flying like I did as a young man. Flying a drone is very cool, I own a number of them, but nothing compares to being there in person. The experience is worth the effort and the inherent danger. But I do realize that pressures from our socially-connected, Internet-influenced, technically-adapted and risk-averse lives somewhat limit the exposure to flying for most people. *Aha, this too, apparently, is another good subject for a future article*. \n\nMy goal is to chronicle the remaining 47% of the USA and 90% of Canada that are uninhabited and unaffected by the encroaching crush of civilization. By doing this, I hope to increase the lexicon with which we visually describe our planet \u2015 by providing a unique new view that illustrates the untamed beauty and ruggedness of these remarkable places. I also hope that people will become as entranced as I, and will be inspired to continue the difficult effort necessary to protect and preserve these wild places for future generations. \n\nhttp://geraldzmorse.com/images/steemit/Zion-1.jpg\n*Cougar Mountain in Zion National Park*\n\nFlying a bush-plane while shooting through an open window is not without its difficulties! The type of scenery I seek is dramatic, with weather playing a major role in providing the desired backdrop. For the cleanest, long distance large-area wilderness-landscape images, I require the clearness provided by the cold, dense air molecules of Fall, Winter, and early Spring months, without the aberrations and heat distortion of Summer. \n\n\nhttp://geraldzmorse.com/images/steemit/zshooting-1.jpg\n*Shooting the San Juan Mountains in Colorado*\n\nAs you can see this is not a large production crew type of project. This is me, all alone, in the wilderness up in the air looking for dramatic weather to juxtapose against dangerous mountains in marginal flight conditions. \n*Nice!!* \n\nTo share this journey, I am creating a highly interactive, immersive virtual journey which will allow you to experience the beauty and wonder of these extraordinary places from this unique perspective. *I will post this in a future article.* \n\n# Wilderness Landscape Photography As Fine Art\n\nThe static imagery can be distributed via a variety of compelling formats, using the Ken Burns effect to make short ambient vignettes. With this, I stream the images to digital frames, provide images as screen savers and mobile device backgrounds, etc. But what I truly love to do is turn them into prints. \n\nObviously, there are many ways to do this, from simple posters, calendars and greeting cards to printed apparel. All of these are , all very appealing. You can print on practically any surface. However, I want the images to really stand out, to grace the locations where they are placed. What is truly spectacular is to create large-format prints on different mediums. For now, there are three mediums I work with:\n\n1. Gicl\u00e9e prints on Canvas\n2. Chrome Metallic Paper Mounted on Acrylic\n3. Aluminum Plate\n\nEach of these mediums has different qualities which influence how the images appear. I have been fortunate to find both an amazing printer (they exclusively print for all the National Geographic Galleries) and a gallery willing to allow me to exhibit my works. To date, I have held two exhibitions in the Wyland Signature Gallery at the Planet Hollywood Resort and Casino in Las Vegas, Nevada. Both were a complete blast!\n\nhttp://geraldzmorse.com/images/steemit/zgallery-1.jpg\n*Part of My Exhibition at the Wyland Gallery in Planet Hollywood Las Vegas*\n\nIt was quite an interesting experience during the show, in that most of the time I felt like a museum docent explaining the story behind images. Folks are drawn to this unique view of nature, and seem to enjoy watching the in-flight footage showing how the images were acquired. \n\nPeople are not used to seeing wilderness landscape images from this perspective it's such an advantageous place to shoot from. It's not as though anyone can simply follow me up the trail and take the same photo! \n\n# That'a Wrap!\n\nOk, my fellow Steemers! That about wraps it up for this post, if you have stayed with me though this entire article, I thank you!! I would LOVE to get feedback from the community, and if there is interest, I will continue writing about this subject and will update the Steemit community as my project develops. \n\nPlease let me know what you think. And *Fly Safe!!*\n\nhttp://geraldzmorse.com/images/steemit/zlanding1.jpg\n*Landing Bluebird on the Mesa Top at Pearce Ferry, Arizona*", + "cashout_time": "2016-09-25T20:55:24", + "category": "introduceyourself", + "children": 112, + "children_abs_rshares": "5017117283364", + "created": "2016-08-24T21:24:33", + "curator_payout_value": { + "amount": "545355", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 973046, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"photography\",\"travel\",\"art\",\"music\"],\"image\":[\"http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\"]}", + "last_payout": "2016-08-26T20:55:24", + "last_update": "2016-08-26T18:45:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-09T20:56:57", + "net_rshares": "4923114688969", + "net_votes": 228, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse", + "title": "Where Eagles Fly by Zedekiah Morse", + "total_payout_value": { + "amount": "1639386", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "4923114688969" + }, + { + "abs_rshares": 196185915, + "active": "2016-09-08T11:49:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 29701, + "beneficiaries": [], + "body": "# Ancient Mayan Design Aesthetic\nIt amazes me that the concept of basic design seems to have been around for many thousands of years. Think about that! Many centuries ago, some very important Mayan Scribe sat at their desktop and designed the layout below, working with what was at the time, leading edge communication technology. \n\nThis form of written communication was a technology that was only understood and utilized by an elite few. To me, this draws an compelling connection to our global ancestral makeup. What is interesting is that you can see a very strong resemblance to current design aesthetic with columns, tables, pictures (info-graphics) with wrap around text. \n\nThe way we visualize layout obviously goes way back in human history. \n
\nhttp://www.pasthorizonspr.com/wp-content/uploads/2016/08/Chichen2.jpg\n
*This image is from the article in Past Horizons listed below*
\n\nI know this is very different than the articles I usually post on my photography, but I felt compelled to share this so if you'd like to see the original article please go [here](http://www.pasthorizonspr.com/index.php/archives/08/2016/hieroglyphic-texts-reveal-maya-innovation-in-maths-and-astronomy). The article is about Mayan innovation in math and astronomy and is short and worth the read. \n\nThis article is from one of my favorite sites called **Past Horizons - Adventures in Archeology**. Please visit them if you are interested in archeology and human history. They always have something worth reading.\n
http://www.pasthorizonspr.com/wp-content/uploads/2014/10/smallLOGO@2x.png
", + "cashout_time": "2016-10-09T01:59:48", + "category": "life", + "children": 4, + "children_abs_rshares": 196185915, + "created": "2016-09-08T01:39:12", + "curator_payout_value": { + "amount": "3823", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1166830, + "json_metadata": "{\"tags\":[\"life\",\"art\",\"writing\",\"story\",\"news\"],\"image\":[\"http://www.pasthorizonspr.com/wp-content/uploads/2016/08/Chichen2.jpg\",\"http://www.pasthorizonspr.com/wp-content/uploads/2014/10/smallLOGO@2x.png\"],\"links\":[\"http://www.pasthorizonspr.com/index.php/archives/08/2016/hieroglyphic-texts-reveal-maya-innovation-in-maths-and-astronomy\"]}", + "last_payout": "2016-09-09T01:59:48", + "last_update": "2016-09-08T01:54:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-23T08:52:09", + "net_rshares": 196185915, + "net_votes": 54, + "parent_author": "", + "parent_permlink": "life", + "percent_hbd": 10000, + "permlink": "ancient-mayan-wordpress-design", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "ancient-mayan-wordpress-design", + "title": "Ancient Mayan Wordpress Design!?!", + "total_payout_value": { + "amount": "23879", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 196185915 + }, + { + "abs_rshares": 0, + "active": "2016-09-09T11:25:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 7449, + "beneficiaries": [], + "body": "This was shot during a blizzard in Kit Carson Pass below Lake Tahoe. I couldn't leave so I took pictures. It was cold and the snow was falling almost horizontally and it was bright white. It got so bad a few times it was impossible to see more than a dozen feet away. \n\nhttp://geraldzmorse.com/images/steemit/Whiteout.jpg\n\nI find the contrast between the brilliant white and the colors of the trees intriguing .", + "cashout_time": "2016-10-09T22:54:12", + "category": "photography", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-09-08T22:00:09", + "curator_payout_value": { + "amount": "1308", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1177638, + "json_metadata": "{\"tags\":[\"photography\",\"nature\",\"art\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Whiteout.jpg\"]}", + "last_payout": "2016-09-09T22:54:12", + "last_update": "2016-09-08T23:05:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 47, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "blizzard-whiteout-in-the-forest", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "blizzard-whiteout-in-the-forest", + "title": "Blizzard Whiteout in the Forest", + "total_payout_value": { + "amount": "5959", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "32969357867", + "active": "2016-09-02T20:48:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 15688, + "beneficiaries": [], + "body": "http://geraldzmorse.com/images/steemit/Vimeo_logo-2.png3fformat3d1500w.png\n\n# Howdy folks, Z here... \n\nI am very happy to announce that steemit has now made it possible to directly embed high quality Vimeo clips within the iframe structure provided by Vimeo.\n\nSimply drop your embed code in the editor as you would pictures or a Youtube clip and it should work fine: \n
\n\nIf you are interested in the post where this short vignette lives from please take a look at the first post about my project: [Where Eagles Fly](http://goo.gl/cliI88) \n\nPlease don't feel compelled to vote on this post... I am simply sharing the news so that when new users search about Vimeo they will find it is possible!\n\nThank you Steemit crew! This is awesome!", + "cashout_time": "2016-10-03T02:28:12", + "category": "photography", + "children": 13, + "children_abs_rshares": "32969357867", + "created": "2016-09-02T00:23:30", + "curator_payout_value": { + "amount": "4357", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1092458, + "json_metadata": "{\"tags\":[\"photography\",\"story\",\"steemit\",\"art\",\"news\"],\"links\":[\"http://goo.gl/cliI88\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Vimeo_logo-2.png3fformat3d1500w.png\"]}", + "last_payout": "2016-09-03T02:28:12", + "last_update": "2016-09-02T04:05:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-20T19:56:00", + "net_rshares": "32969357867", + "net_votes": 52, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "filmmakers-of-steemit-rejoice-they-have-just-made-embedding-vimeo-in-your-posts-possible-yehaw", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "filmmakers-of-steemit-rejoice-they-have-just-made-embedding-vimeo-in-your-posts-possible-yehaw", + "title": "Filmmakers of Steemit Rejoice! Embedding Vimeo in your posts is now possible! Yehaw!", + "total_payout_value": { + "amount": "13992", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "32969357867" + }, + { + "abs_rshares": "140201312914", + "active": "2016-09-10T03:25:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 25890, + "beneficiaries": [], + "body": "This photo was shot from 9,500 feet up while I was flying towards the southwest after sunset. I am in the Flathead Mountains of Montana and the moisture in the air is condensing from the cool evening to create this mystical view of the mountains.\n\nhttp://geraldzmorse.com/images/steemit/FlatHeadatDusk.jpg\n\nThis is from a series of images I call \"Wilderness Alpenglow\". I enjoy how the image resembles classic Chinese or Japanese paintings of old.\n\nIf you want to see other work from my project **Where Eagles Fly** visit my first post [here](https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse) or second one [here](https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse).", + "cashout_time": "2016-10-06T03:47:51", + "category": "photography", + "children": 22, + "children_abs_rshares": "140201312914", + "created": "2016-09-04T19:31:03", + "curator_payout_value": { + "amount": "6541", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1126012, + "json_metadata": "{\"tags\":[\"photography\",\"travel\",\"art\",\"life\",\"nature\"],\"image\":[\"http://geraldzmorse.com/images/steemit/FlatHeadatDusk.jpg\"],\"links\":[\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\",\"https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse\"]}", + "last_payout": "2016-09-06T03:47:51", + "last_update": "2016-09-05T01:04:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-20T06:06:54", + "net_rshares": "140201312914", + "net_votes": 66, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "flathead-mountains-and-the-great-bear-wilderness-at-dusk", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "flathead-mountains-and-the-great-bear-wilderness-at-dusk", + "title": "Flathead Mountains and the Great Bear Wilderness at Dusk", + "total_payout_value": { + "amount": "21746", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "140201312914" + }, + { + "abs_rshares": 113157676, + "active": "2016-09-12T14:37:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 1047, + "beneficiaries": [], + "body": "# Isolated Rain Storm \nI came upon this strange isolated rain storm over the Great Sand Dunes when I was flying out over the San Luis Valley while filming Zapata Ranch. It was clear skies about the rain clouds and clear all around it... yet it was raining on this stretch of the Sangre de Cristo Range in the Rocky Mountains. \n\nhttp://geraldzmorse.com/images/steemit/GreatDunesRainStorm1.jpg\n
*Eastern side of the Great Sand Dunes National Park*
\n\nIn this photo you can clearly see the curving edge of the sand dunes boundary where the dunes delineate from the San Luis Valley floor. These are the tallest sand dunes in North America reaching heights of 750 feet (228m).\n\n# Sand From an Ancient Glacial Lake \n\nThe dunes were formed within the last 500,000 years from sand and soil deposits of the Rio Grande and its tributaries as they spread out through the San Luis Valley. Over the ages, the glaciers melting created a vast lake in the San Luis Valley... as this lake and the waters evaporated and drained to form the river, it left behind massive volumes of loose sand. Westerly winds then picked up sand particles from the lake and river flood plain and carried them across the valley floor. As the wind diminished in power before crossing the Sangre de Cristo Range, the sand deposited all along the eastern edge of the valley. As the sand stacked up over time it became what we see today, the Great Sand Dunes National Park. \n\n\nhttp://geraldzmorse.com/images/steemit/GreatDunesRainStorm2.jpg\n
*Western side of the Great Sand Dunes National Park*
\n\nIn the photo above taken from the same position as the previous photograph, you can see the small Mount Seven Peak and behind it the snow capped 13,200 (4,023m) Cleveland Peak of the Sangre de Cristo Mountain Range peeking through the rain shower.\n\n# Whipped By Fierce Winds\nThe wind continues to whip about and shape and reshape the dunes on a daily basis, and continue to increase the volume of sand and size of the dunes. These fierce winds are strong enough to move sand and small rocks from miles away across the valley. While the dunes don't actually change location or vary in size that often, the wind forms parabolic dunes that grow in the sand sheet, the outer area around the dunes, and migrate towards the main dune field, giving a very prominent beveling or warping visual effect, especially notable from up above where I fly.\n\nLocated near Alamosa, Colorado just north of the Nature Conservancy's Zapata Ranch the dunes are a great place to visit. To check out the National Parks Service website on the Great Dunes National Park go [here](https://www.nps.gov/grsa/index.htm). \n\nAnd to check out my previous exciting fly-in trip to the Zapata Ranch to visit Duke Phillips the Flying Cowboy, go [here](https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse).\n\nIf you're unfamiliar with my work please check out my introductory post [here](https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse). \n\nOk thanks, hope you enjoy this and yehaw!", + "cashout_time": "2016-10-10T18:51:39", + "category": "photography", + "children": 7, + "children_abs_rshares": 113157676, + "created": "2016-09-09T11:04:21", + "curator_payout_value": { + "amount": "203", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1182969, + "json_metadata": "{\"tags\":[\"photography\",\"nature\",\"story\",\"life\",\"travel\"],\"image\":[\"http://geraldzmorse.com/images/steemit/GreatDunesRainStorm1.jpg\",\"http://geraldzmorse.com/images/steemit/GreatDunesRainStorm2.jpg\"],\"links\":[\"https://www.nps.gov/grsa/index.htm\",\"https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse\",\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\"]}", + "last_payout": "2016-09-10T18:51:39", + "last_update": "2016-09-09T11:15:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-26T14:36:45", + "net_rshares": 113157676, + "net_votes": 69, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "isolated-rain-storm-on-the-great-sand-dunes-national-park", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "isolated-rain-storm-on-the-great-sand-dunes-national-park", + "title": "Rain Storm on the Great Sand Dunes National Park", + "total_payout_value": { + "amount": "807", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 113157676 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T04:09:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 3840, + "beneficiaries": [], + "body": "# Las Vegas Valley from the Sloan Mountains\n\nA rare perspective of the city sitting in the valley taken from above Sloan Mountains to the south. I never shoot images of cities or buildings, it's jut not my thing to do. I am an aerial wilderness photographer. However I got this while testing out a different camera.\n\nhttp://geraldzmorse.com/images/steemit/B6583414-Las-Vegas.jpg\n\nIn this uncommon point of view you can see that Las Vegas sits down in a valley, that is Gray Mountain in the distance and the foothills of Sloan Mountain in the foreground. To the bottom left, right above the small hills you can barely make out Henderson Executive Airport. \n\nThe image was captured late in the afternoon from an altitude of 4,500ft (1,371.6m) shooting towards the northeast.", + "cashout_time": "2016-10-12T14:32:39", + "category": "photography", + "children": 13, + "children_abs_rshares": 0, + "created": "2016-09-10T17:37:24", + "curator_payout_value": { + "amount": "791", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1198427, + "json_metadata": "{\"tags\":[\"photography\",\"travel\",\"art\",\"las-vegas\"],\"image\":[\"http://geraldzmorse.com/images/steemit/B6583414-Las-Vegas.jpg\"]}", + "last_payout": "2016-09-12T14:32:39", + "last_update": "2016-09-10T18:04:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 45, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "las-vegas-valley", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "las-vegas-valley", + "title": "Las Vegas in the Valley", + "total_payout_value": { + "amount": "2756", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "10027068167722", + "active": "2016-09-15T17:56:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 0, + "beneficiaries": [], + "body": "This is an unusual rock outcroping I photographed south of Mesa Verde, Colorado in the desert near my camp. I found the colors of the stone and desert sand juxtaposed against the background vermilion cliff walls and blue hued sky to be pleasing and relaxing. \n\nhttp://geraldzmorse.com/images/steemit/Mesa-Verde-Outcrop.jpg\n\nThis image is also from my Artistic Impression series where I use a digitizing tablet to lightly brush various filter effects into the image to give it a certain mysterious quality.", + "cashout_time": "2016-09-15T21:34:14", + "category": "photography", + "children": 11, + "children_abs_rshares": "10027068167722", + "created": "2016-09-14T14:46:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1243747, + "json_metadata": "{\"tags\":[\"photography\",\"art\",\"nature\",\"\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Mesa-Verde-Outcrop.jpg\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T15:28:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-28T14:50:51", + "net_rshares": "10001278717808", + "net_votes": 44, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "melting-rock", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "melting-rock", + "title": "Melting Rock", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "13144057225008877639", + "vote_rshares": "9951683621819" + }, + { + "abs_rshares": 1230392222, + "active": "2016-08-28T03:46:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 1363, + "beneficiaries": [], + "body": "http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\nFellow steemers ! \n\nMy experiment on Steemit was a success. I earned $2,184.74 \n\nThe posts automatically last only 24 hours. If many people like them and upvote then they extend an additional 12 hours for a total run of 36 hours. Which mine did. \n\nOnce the post run-time is finished the post was automatically moved out of the 5 categories it was tagged in and placed in my blog page. It is still available for viewing and people can still vote on it, you can find it on my blog page. This is a necessary function of the fairness and democratic operations of this amazing website!!! How awesome is this!?!\n\nThis test was primarily undertaken to review the marketing viability of my project to the public, to see if everyone liked the concept and content. From the responses at the bottom of the post which are permanent, I would think the answer is a resounding yes. \n\nMore to come from this experiment later. Suffice to say I have established a presence and become part of the community on the most powerful cutting edge - platform/community in this new and very exciting cryptocurrency-based content-support market. \n\nI have taken the funds, held some as steem cryptocurrency and transferred the rest onto a cryptocurrency exchange called Poloniex where I am holding steem dollars (SBD) and watching the various cryptocurrencies valuation. The current SBD will increase in value or at any time I can transfer these to bitcoin or any of a number of other currencies.\n\nThis is absolutely cool!!!Thank you to the 217 steemers that upvoted me and even to the 2 that downvoted it...I sort of would like to know why but it really does not matter. \n\nPlease continue to enjoy my blog and I would love to continue building support for my project from the steemit community. I am a now a firm believer and strong advocate for steemit. \n\nMore to follow.\n\nz", + "cashout_time": "2016-09-27T01:41:27", + "category": "introduceyourself", + "children": 13, + "children_abs_rshares": 1230392222, + "created": "2016-08-26T22:53:00", + "curator_payout_value": { + "amount": "420", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1005474, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"photography\",\"art\",\"music\",\"travel\"],\"image\":[\"http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\"]}", + "last_payout": "2016-08-28T01:41:27", + "last_update": "2016-08-27T18:42:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-11T03:46:21", + "net_rshares": 1230392222, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "my-first-real-post-was-a-success-and-i-would-like-to-share-the-story", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "my-first-real-post-was-a-success-and-i-would-like-to-share-the-story", + "title": "My first real post was a success and I would like to share the story.", + "total_payout_value": { + "amount": "1501", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 1230392222 + }, + { + "abs_rshares": "6808732560425", + "active": "2016-09-07T16:30:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 199, + "beneficiaries": [], + "body": "For my entries into the 6th steemit photo contest I've chosen 3 unusual formations to share.\n\nIf you don't know anything about my work please visit my introduction post: \nhttps://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse \n\n**Image 1: BLUE POINT BAY**\nThis image was taken above Blue Point Bay on Lake Mead, Nevada. A powerful rain storm had just passed over and the earth was still soaked. The sun was coming back out and these vibrant, rich colors are from the water soaked natural minerals reacting to the bright sunlight. The green areas along the edge are the shallow water of the lake. I am about 2,000 feet above the lake shooting straight down from the airplane.\n\nhttp://geraldzmorse.com/images/steemit/BuePointBay.jpg\n\n**Image 2: SP VOLCANO** \nThis is a volcano just north of Flagstaff, Arizona simply known as \"SP Volcano\". I have searched high and low and cannot find any history on how it got this name. Certainly the Navajo First Nations called it something but I couldn't find mention of it anywhere. I love that this is a perfect representation of time-stood-still. You can see the how lava flowed down from the volcano, spilling out across the desert, coming to a standstill where it froze in time.\n\nhttp://geraldzmorse.com/images/steemit/SPVolcano.jpg\n\n**Image 3: CASTLE PEAKS**\nThis is Castle Peaks on the New York Mountains in the Mojave Desert. When you are driving from Los Angeles on highway 15 to Las Vegas, you can see these peaks in the distance across the valley as you come down the last hill towards Primm, Nevada. I took this picture from about 1,000 feet above the ground and what struck me about the formation was the small replica formation that sits just below Castle Peak, mirroring it. It is like a miniature formation of the larger peaks! Very strange. \n\nhttp://geraldzmorse.com/images/steemit/CastlePeaksNorth.jpg\n\nOk Thanks and hope you enjoy the images. If you have not seen my original post explaining what I do please follow the link at the top and come on by! \n\nYehaw", + "cashout_time": "2016-09-28T02:59:57", + "category": "photography", + "children": 12, + "children_abs_rshares": "6808732560425", + "created": "2016-08-27T23:27:30", + "curator_payout_value": { + "amount": "41", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1019772, + "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"art\",\"travel\"],\"links\":[\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\"]}", + "last_payout": "2016-08-29T02:59:57", + "last_update": "2016-08-28T07:40:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-12T05:58:45", + "net_rshares": "6808732560425", + "net_votes": 30, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "my-steemitphotochallenge-entry-for-contest-6-by-zedekiah-morse", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "my-steemitphotochallenge-entry-for-contest-6-by-zedekiah-morse", + "title": "SteemitPhotoChallenge Entry #6 - Unusual Formations", + "total_payout_value": { + "amount": "212", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "6808732560425" + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json index 023ade2b..8bd185f7 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 608846, - "author": "a-m3001", - "permlink": "how-i-managed-depression-and-work", - "category": "story", - "parent_author": "", - "parent_permlink": "story", - "title": "How I managed depression and work", - "body": "Hi, I'm A.M for now, I'm in my mid-20s and want to share my story with working and facing this thing called life after I watched a lot of YouTubers like Thomas James \"TomSka\" David Brown “boyinaband” and many others who have very openly shared their hardships, they have inspired me to write this….. Whatever this is.\nI don't consider myself a good writer so bare with me here.\nTo try to keep this post organized and make sense I'll highlight the point I want to talk about and tell the relevant part of my story, you can connect the pieces all together at the end.\n\n**First how am I?** \nI grow up in the countryside I went to normal school when I was yang, because I was the quiet introvert and wasn't from the town I was in I got bullied a lot for most of my time at school, I got through school time knowing just two friends, I was OK with it.\nI genuinely lost interest in school when I was in the ninth grade It seemed more like a memory test than a way of learning so I started looking for ways to make money, \"why waste time learning things irrelevant in real life if I can make money now\" my naive 16 years old self said, don't get me wrong I didn't think I was done with learning I just wanted to learn in my own way, and I didn't stop school, now I'm in part time Business school, so back then I started looking for any way to make money in the last 5 year I tried: working in sales for over 2 years, selling products online, becoming instructor online, worked as SEO & social media consultant, tried starting my own business for 4 times, and for the last year and half I taught myself how to program and how to use Unity game engine and now I'm working on my first game, I can easily and proudly say that I didn't succeed at any of what I did so far, but I've learned a lot every time and I would do it all over again if I had the chance.\nThe process of picking myself up every single freaking time was a living hell and I got desperate many times.\nbecause I saw a lot of people feeling relevant to what David said in his video I want to share how I managed to keep my sanity and my opinion about some point he brought in his video.\n\n\n**Not thinking your work is good enough:**\nIs that really a bad thing? not being satisfied with what you just accomplished is a sign that you always look forward to what you still can do.\nI remember after I published my first course on Udemy I got invited to a hangout and I went for it I thought I'll give myself some slack, while I was there someone shouted out \"this guy here just published his first course let all give him a clap shall we\" for some reason he thought that was a good idea, I don't think I can blame him his intentions were good, I never tried to put a smile as hard as I did that moment I guess I just didn't want to look like a selfish prick, but the truth that I wasn't happy about what I accomplished I was thinking about my bad English poor structure of the course and was I being a sellout for trying to sell my knowledge? halfway of creating the course, I was already thinking about 5 other things I wanted to do next.\nI think there's nothing wrong about not being satisfied with what you finish, I think It's a good sign of an ambitious creator.\nWhen you first make the decision to accomplish something It looks like that godly thing that you think It would feel good to have or do, but when you start turning that big sexy thing to a small to-do list somewhere the appeal you had to that thing will disappear to a certain point, it's not that godly sexy thing you thought about before it's becoming a part of your routine now you know the process of doing that thing It's not a mystery anymore.\nI think that's why they say: \"It's about the journey, not the destination\".\n\n\n**Not taking care of yourself:**\nIt's hard to keep taking care of yourself to others people standards, whether it's about looking ripped putting makeup or buying the latest clothes, instead find your own save point and move forward from there if you feel the need to.\nWhen I was working in seals I had to look my best most of the time's which was exhausting more than the work itself and what made it worst is that some coworkers starting hinting that I need to start working out to look sharper and more confident.\nBecause I was desperate for results from my work I started going to the gym and I got stuck at joining for a month or two then giving up for half a year couple of times, every time I stopped going to the gym I over beat myself saying that I need this for my work, I need more money to do a lot of things, if this work didn't go well what else Am I going to do, eventually I usually took it out on food, I don't even want to start thinking what would have happened to me if my body was able to store fat.\nTrying to take care of yourself to others standards can be very exhausting, I felt down because I was putting so much effort in things I don't really care about to get others approval, I genuinely don't care about having a ripped body, it would look cool sure but I'm not willing to put all that effort into health and looks at least for now, who knows maybe in the future things will be better and I'll be willing to put the effort necessary to have 6 pack abs (wink wink ladies).\nNowadays I eat better than I used to, I still eat some junk food but things are much much better than they were 2 years ago, when I fell down I still go buy and drink a liter of Pepsi but at some point that was my morning coffee, as for my looks I cut my hair very short so I would have one less thing to worry about in the morning, I shave my beard once every couple of weeks I change my cloth every two or three days even if I didn't go out.\nThe point is I take care of myself for my own sack, It was much worse before and I'll always keep working to improve pit by pit.\nIt's about building habits not getting motivated for a couple of weeks then beating yourself for not being able to keep up.\n\n\n**Not mastering one skill:**\nI worked in sales, instructed online, worked as SEO and social media consultant, self taught myself how to program and make games but I don’t think I’m the right person to talk about this, all I’m saying that if you didn’t find that one true call that is right for you, you might be a “multipotentialite” if you want to know what exactly does this mean I urge you to watch Emilie talk at TedX\nhttps://www.youtube.com/watch?v=QJORi5VO1F8\nAnd check the blog too if you want to know more \nhttp://puttylike.com/\n\n**Everything happens for a reason........ or does it?**\nWhen I was young I was fortunate to know a good old religious man, I don’t know about your perspective about religions but hear me out this isn’t a sermon, I still remember when he tried to teach me that everything happens for a reason I was like “WHAT……. Oh really, then what is the reason for this and this and that” my question didn’t stop and I wasn’t asking nicely either yet, somehow he was calm about it like some kind of monk, I don’t know if I ruined his day or not but I feel bad for taking the world misery out on him that day, he was just a simple man who was doing what he think is good for others, his intentions were good but unfortunately for him I wasn’t a simple person, I overthink everything and everyone, it’s my blessing and my curse, later I told my family about him and I was surprised that they knew him, apparently everyone knows each other in the countryside, they told me about what he was facing lately personally, financially, and emotionally, I didn’t believe that someone who is facing all that isn’t depressed or angry and even trying to do good for others at least by his believes, I wanted to know more about him he got my interest, I wanted to know if he’s an imposter who is just putting a good face or not because a part of me didn’t believe how can he be that good, I kept asking about him from time to time and sometimes I even went to his “lessons”, eventually I went to face him with what I know about him like a detective facing a criminal, the crime of being that simple yet trying to be better than me, It’s pathetic I know It’s just how my brain works sometimes, because I used to take pride of being logical about everything and not believing in anything without questioning it, it bothered me how can he be at peace with his life and I’m not even that he’s facing a lot more than I’m, I faced him and told him everything then asked how can you be this calm about everything that is happening in your life, he had a faint smile and said “I don’t know the reason for everything that is happening right now but everything happens for a reason” I remember holding my fist hard and walking away, maybe I was holding my fist trying not to hit him for not being realistic like me or probably not to beat myself for not being half the man that he was.\nI don’t know about your perspective about religions and I’m not here to tell you about mine but I respect that some religions teach that everything happens for a reason, is it the truth? Does everything happens for a reason? I don’t know, I don’t think that is even the point, It’s silly to even get in an argument about this because no one can be sure about it, it’s simply just a belief, it’s simply teach you to not overthink about the reasons for everything around you, just learn from it if you can and focus on what you can do, it’s kind of funny for me to tell you not to overthink about somethings because I’m sure my 19 year old me would punch me right in the face, but it’s just too draining and exhausting to try to find a reason for every bad thing that have happened to me or to others.\nIn the last three years two of my best friends died, the first one I knew for about nine years and the other one for around five, both killed, both in a way they didn’t deserve to, each time I had to force myself to focus on the 0.0000001% full part of the cup or else I would have lose my sanity.\nI would hate to think what would be my thought process if someone tried to sell me religion like a product, some of them would be like “Hi son, you should follow my beliefs because I’m 100% sure that I’m right and everybody else is wrong and if you don’t, well you’re FU**ED” that would have disfigured some of the beliefs that helped me get better.\nControlling your stream of thoughts will be the hardest thing you’ll ever have to do in your life, but if mastered it you’ll become unstoppable.\n\n\nI’ve been getting into the game industry for around year and half now, I don’t have any experiance in the field but I’ve other experiences that many don’t, working in sales made me learn a lot about people's motivations and incentives, I saw a lot of people jump to make purchase while other chicken out last minute, you don’t get to learn about this in a book or an NLP course, you only get to learn this experience by working in sales first hand, working as an SEO and social media consultant made me care about the little details like posting in the right social medias that is more relevant to your audience, more isn’t always better, choosing the right words colors and timing for best result, sometimes modifying your content for a better marketing or not going into a certain niche even if there’s an audience for it because it doesn’t suit your brand, teaching online made me learn that the selling point isn’t the end goal, helping and mentoring students even after they have purchased the course was way more important than I thought, the feedback I got about the course was crucial to take the course to the next level and some student even helped me with some marketing.\nIf you know anything about the mobile game industry you can see how these experiences can be helpful, I can imagine the kind of journey I want to create for the player because I can build the motivations and incentives I want for him, while I’m building the player journey I’ll always keep in mind to put the monetization and ads the right way so all of them can work seamlessly together for a better player experience, and taking care of existing players and community will always be a priority, I wasn’t happy and cheerful when I had to learn these experiences the hard way, I thought I was just failing, I even remember crying myself to sleep every time I decided to pull the plug on something I was working on, but eventually It worked out somehow I think.\n“you can't connect the dots looking forward, you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something - your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life”.\nSteve Jobs\n\n\nI want to share some of the tricks I used that helped my in general to get my life together:\n\n**Music**\nlisten to cheerful music, even if it might not be exactly what you listen to usually but try them for a while, my favorite type or music is Rock and Metal it’s loud and make me feel empowered but sometimes it's not what I need to change my mood so I started listening to electro music mostly Drum & bass, I didn’t like it at first, I’m human I don’t like to change, but forcing myself to listen to it for while change my perspective about it and I started listening to it while I’m working, and it worked.\n\n\n**habits not motivation**\nWe’re slaves to our habits, it’s exhausting to do something that’s you’re not used to for quite a while, so invest your effort and time to build your habits pit by pit no matter how slow it will take, measure your progress and celebrate your success no matter how small they’re, it’ll make all the difference in your life in the long term.\n\n**work in a group**\nNo matter how introverted person you think you’re, you’re still human at the end of day and you need your dose of human interaction so try to work in group if you can, if you don’t have that luxury (like me) work out side from time to time, library, coffee shop, parks all works, changing your surrounding and environment can change your mood, you can try changing your room\\office decor every couple of weeks too.\n\n**warm-blooded pet**\nGet a warm-blooded pet it helps, I tried fish and turtles but didn’t really work for me they just stared at me with their empty eyes, I have a cat for two year now and It helped, maybe it’s having the sense of that there is a creature that needs you to look after him, it’s helped me not to feel completely unworthy in some bad day.\n\n\nFinally I hope this help you in any way it can, and hope it will find its way to all who needs it.", - "json_metadata": "{\"tags\":[\"story\",\"philosophy\",\"life\",\"psychology\",\"secret-writer\"],\"links\":[\"https://www.youtube.com/watch?v=QJORi5VO1F8\"]}", - "last_update": "2016-08-15T05:28:12", - "created": "2016-08-15T04:53:33", - "active": "2016-08-15T05:28:12", - "last_payout": "2016-09-14T16:58:03", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a-m3001", - "root_permlink": "how-i-managed-depression-and-work", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 497962, - "author": "a-man", - "permlink": "re-jamiecrypto-raising-leaders-instead-of-rulers-20160807t213425757z", - "category": "homeschooling", - "parent_author": "jamiecrypto", - "parent_permlink": "raising-leaders-instead-of-rulers", - "title": "", - "body": "Trying to repost to FB", - "json_metadata": "{\"tags\":[\"homeschooling\"]}", - "last_update": "2016-08-07T21:34:24", - "created": "2016-08-07T21:34:24", - "active": "2016-08-07T21:34:24", - "last_payout": "2016-09-07T09:52:42", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "jamiecrypto", - "root_permlink": "raising-leaders-instead-of-rulers", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 359861, - "author": "a-spears", - "permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", - "category": "life", - "parent_author": "agent", - "parent_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", - "title": "", - "body": "Finally someone is saying it out loud. thank you!!", - "json_metadata": "{\"tags\":[\"life\"]}", - "last_update": "2016-07-30T19:38:00", - "created": "2016-07-30T19:37:48", - "active": "2016-07-30T21:34:27", - "last_payout": "2016-08-30T10:16:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "agent", - "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 72421, - "author": "a-spears", - "permlink": "re-ashleybr-test-20160713t203411015z", - "category": "travel", - "parent_author": "ashleybr", - "parent_permlink": "test", - "title": "", - "body": "add katie-lynn boulard on FB, she's my friend and she's currently doing an exchange in bangkok. She's really sweet and she said you can come to hers for the evening if you want to have some company. she only has a room so no bed for you :/ but at least something, I'm sure she can give you a meal and just some company. :))", - "json_metadata": "{\"tags\":[\"travel\"]}", - "last_update": "2016-07-13T20:34:12", - "created": "2016-07-13T20:34:12", - "active": "2016-07-13T21:01:48", - "last_payout": "2016-08-25T12:51:45", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 20, - "root_author": "ashleybr", - "root_permlink": "test", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 431883, - "author": "a11at", - "permlink": "ai-revolution-101", - "category": "steemit", - "parent_author": "", - "parent_permlink": "steemit", - "title": "AI Revolution 101", - "body": "https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\n\nAI Revolution 101\nOur last invention, greatest nightmare, or pathway to utopia?\nAbout\nThis essay, originally published in eight short parts, aims to condense the current knowledge on Artificial Intelligence. It explores the state of AI development, overviews its challenges and dangers, features work by the most significant scientists, and describes the main predictions of possible AI outcomes. This project is an adaptation and major shortening of the two–part essay AI Revolution by Tim Urban of Wait But Why. I shortened it by a factor of 3, recreated all images, and tweaked it a bit. Read more on why/how I wrote it here.\nIntroduction\nAssuming that human scientific activity continues without major disruptions, artificial intelligence may become either the most positive transformation of our history or, as many fear, our most dangerous invention of all. AI research is on a steady path to develop a computer that has cognitive abilities equal to the human brain, most likely within three decades (timeline in chapter 5). From what most AI scientists predict, this invention may enable very rapid improvements (called fast take-off), toward something much more powerful — Artificial Super Intelligence — an entity smarter than all of humanity combined (more on ASI in chapter 3). We are not talking about some imaginary future. The first level of AI development is gradually appearing in the technology we use everyday (newest AI advancements in chapter 2). With every coming year these advancements will accelerate and the technology will become more complex, addictive, and ubiquitous. We will continue to outsource more and more kinds of mental work to computers, disrupting every part of our reality: the way we organize ourselves and our work, form communities, and experience the world.\nExponential Growth\nThe Guiding Principle Behind Technological Progress\nTo more intuitively grasp the guiding principles of AI revolution, let’s first step away from scientific research. Let me invite you to take part in a story. Imagine that you’ve received a time machine and been given a quest to bring somebody from the past. The goal is to shock them by showing them the technological and cultural advancements of our time, to such a degree that this person would perform SAFD (Spinning Around From Disbelief).\n\nSo you wonder which era should you time-travel to, and decide to hop back around 200 years. You get to the early 1800s, retrieve a guy and bring him back to 2016. You “…walk him around and watch him react to everything. It’s impossible for us to understand what it would be like for him to see shiny capsules racing by on a highway, talk to people who had been on the other side of the ocean earlier in the day, watch sports that were being played 1,000 miles away, hear a musical performance that happened 50 years ago, and play with …[a] magical wizard rectangle that he could use to capture a real-life image or record a living moment, generate a map with a paranormal moving blue dot that shows him where he is, look at someone’s face and chat with them even though they’re on the other side of the country, and worlds of other inconceivable sorcery.”¹ It doesn’t take much. After two minutes he is SAFDing.\nNow, both of you want to try the same thing, see somebody Spinning Around From Disbelief, but in your new friend’s era. Since 200 years worked, you jump back to the 1600s and bring a guy to the 1800s. He’s certainly genuinely interested in what he sees. However, you feel it with confidence — SAFD will never happen to him. You feel that you need to jump back again, but somewhere radically further. You settle on rewinding the clock 15,000 years, to the times “…before the First Agricultural Revolution gave rise to the first cities and the concept of civilisations.”² You bring someone from the hunter-gatherer world and show him “…the vast human empires of 1750 with their towering churches, their ocean-crossing ships, their concept of being “inside,” and their enormous mountain of collective, accumulated human knowledge and discovery”³ — in forms of books. It doesn’t take much. He is SAFDing in the first two minutes.\nNow there are three of you, enormously excited to do it again. You know that it doesn’t make sense to go back another 15,000, 30,000 or 45,000 years. You have to jump back, again, radically further. So you pick up a guy from 100,000 years ago and you you walk with him into large tribes with organized, sophisticated social hierarchies. He encounters a variety of hunting weapons, sophisticated tools, sees fire and for the first time experiences language in the form of signs and sounds. You get the idea, it has to be immensely mind-blowing. He is SAFDing after two minutes.\nSo what happened? Why did the last guy had to hop → 100,000 years, the next one → 15,000 years, and the guy who was hopping to our times only → 200 years?\n\nhttps://cdn-images-1.medium.com/max/2000/1*Wbd0td3DqD3pJo7_YHjkbQ.gif\n\n“This happens because more advanced societies have the ability to progress at a faster rate than less advanced societies — because they’re more advanced. [1800s] humanity knew more and had better technology…”⁴, so it’s no wonder they could make further advancements than humanity from 15,000 years ago. The time to achieve SAFD shrank from ~100,000 years to ~200 years and if we look into the future it will rapidly shrink even further. Ray Kurzweil, AI expert and scientist, predicts that a “…20th century’s worth of progress happened between 2000 and 2014 and that another 20th century’s worth of progress will happen by 2021, in only seven years⁵…A couple decades later, he believes a 20th century’s worth of progress will happen multiple times in the same year, and even later, in less than one month⁶…Kurzweil believes that the 21st century will achieve 1,000 times the progress of the 20th century.”⁷\n“Logic also suggests that if the most advanced species on a planet keeps making larger and larger leaps forward at an ever-faster rate, at some point, they’ll make a leap so great that it completely alters life as they know it and the perception they have of what it means to be a human. Kind of like how evolution kept making great leaps toward intelligence until finally it made such a large leap to the human being that it completely altered what it meant for any creature to live on planet Earth. And if you spend some time reading about what’s going on today in science and technology, you start to see a lot of signs quietly hinting that life as we currently know it cannot withstand the leap that’s coming next.”⁸\nThe Road to Artificial General Intelligence\nBuilding a Computer as Smart as Humans\nArtificial Intelligence, or AI, is a broad term for the advancement of intelligence in computers. Despite varied opinions on this topic, most experts agree that there are three categories, or calibers, of AI development. They are:\nANI: Artificial Narrow Intelligence\n1st intelligence caliber. “AI that specializes in one area. There’s AI that can beat the world chess champion in chess, but that’s the only thing it does.”⁹\nAGI: Artificial General Intelligence\n2nd intelligence caliber. AI that reaches and then passes the intelligence level of a human, meaning it has the ability to “reason, plan, solve problems, think abstractly, comprehend complex ideas, learn quickly, and learn from experience.”¹⁰\nASI: Artificial Super Intelligence\n3rd intelligence caliber. AI that achieves a level of intelligence smarter than all of humanity combined — “ranging from just a little smarter … to one trillion times smarter.”¹¹\n\nhttps://cdn-images-1.medium.com/max/800/1*5AkzXZJoVXRrGNSOO8ZojQ.gif\n\nWhere are we currently?\n“As of now, humans have conquered the lowest caliber of AI — ANI — in many ways, and it’s everywhere:”¹²\n“Cars are full of ANI systems, from the computer that figures out when the anti-lock brakes kick in, to the computer that tunes the parameters of the fuel injection systems.”¹³\n“Google search is one large ANI brain with incredibly sophisticated methods for ranking pages and figuring out what to show you in particular. Same goes for Facebook’s Newsfeed.”¹⁴\nEmail spam filters “start off loaded with intelligence about how to figure out what’s spam and what’s not, and then it learns and tailors its intelligence to your particular preferences.”¹⁵\nPassenger planes are flown almost entirely by ANI, without the help of humans.\n“Google’s self-driving car, which is being tested now, will contain robust ANI systems that allow it to perceive and react to the world around it.”¹⁶\n“Your phone is a little ANI factory … you navigate using your map app, receive tailored music recommendations from Pandora, check tomorrow’s weather, talk to Siri.”¹⁷\n“The world’s best Checkers, Chess, Scrabble, Backgammon, and Othello players are now all ANI systems.”¹⁸\n“Sophisticated ANI systems are widely used in sectors and industries like military, manufacturing, and finance (algorithmic high-frequency AI traders account for more than half of equity shares traded on US markets¹⁹).”²⁰\n“ANI systems as they are now aren’t especially scary. At worst, a glitchy or badly-programed ANI can cause an isolated catastrophe like”²¹ a plane crash, a nuclear power plant malfunction, or “a financial markets disaster (like the 2010 Flash Crash when an ANI program reacted the wrong way to an unexpected situation and caused the stock market to briefly plummet, taking $1 trillion of market value with it, only part of which was recovered when the mistake was corrected) … But while ANI doesn’t have the capability to cause an existential threat, we should see this increasingly large and complex ecosystem of relatively-harmless ANI as a precursor of the world-altering hurricane that’s on the way. Each new ANI innovation quietly adds another brick onto the road to AGI and ASI.”²²\n\nhttps://cdn-images-1.medium.com/max/2000/1*Ia8wUuZPxpUNzvUjNRsxpA.gif\n\nWhat’s Next? Challenges Behind Reaching AGI\n“Nothing will make you appreciate human intelligence like learning about how unbelievably challenging it is to try to create a computer as smart as we are … Build a computer that can multiply ten-digit numbers in a split second — incredibly easy. Build one that can look at a dog and answer whether it’s a dog or a cat — spectacularly difficult. Make AI that can beat any human in chess? Done. Make one that can read a paragraph from a six-year-old’s picture book and not just recognise the words but understand the meaning of them? Google is currently spending billions of dollars trying to do it.”²³\nWhy are “hard things — like calculus, financial market strategy, and language translation … mind-numbingly easy for a computer, while easy things — like vision, motion, movement, and perception — are insanely hard for it”²⁴?\n“Things that seem easy to us are actually unbelievably complicated. They only seem easy because those skills have been optimized in us (and most animals) by hundreds of million years of animal evolution. When you reach your hand up toward an object, the muscles, tendons, and bones in your shoulder, elbow, and wrist instantly perform a long series of physics operations, in conjunction with your eyes, to allow you to move your hand in a straight line through three dimensions … On the other hand, multiplying big numbers or playing chess are new activities for biological creatures and we haven’t had any time to evolve a proficiency at them, so a computer doesn’t need to work too hard to beat us.”²⁵\n\nhttps://cdn-images-1.medium.com/max/1200/0*E-qdF22nxvOrVPxP.\n\nWhen you look at picture A, “you and a computer both can figure out that it’s a rectangle with two distinct shades, alternating. Tied so far.”²⁶\nPicture B. “You have no problem giving a full description of the various opaque and translucent cylinders, slats, and 3-D corners, but the computer would fail miserably. It would describe what it sees — a variety of two-dimensional shapes in several different shades — which is actually what’s there.”²⁷ “Your brain is doing a ton of fancy shit to interpret the implied depth, shade-mixing, and room lighting the picture is trying to portray.”²⁸\nLooking at picture C, “a computer sees a two-dimensional white, black, and gray collage, while you easily see what it really is”²⁹ — a photo of a girl and a dog standing on a rocky shore.\n“And everything we just mentioned is still only taking in visual information and processing it. To be human-level intelligent, a computer would have to understand things like the difference between subtle facial expressions, the distinction between being pleased, relieved and content”³⁰.\nHow will computers reach even higher abilities like complex reasoning, interpreting data, and associating ideas from separate fields (domain-general knowledge)?\n“Building skyscrapers, putting humans in space, figuring out the details of how the Big Bang went down — all far easier than understanding our own brain or how to make something as cool as it. As of now, the human brain is the most complex object in the known universe.”³¹\nBuilding Hardware\nIf an artificial intelligence is going to be as intelligent as the human brain, one crucial thing has to happen — the AI “needs to equal the brain’s raw computing capacity. One way to express this capacity is in the total calculations per second the brain could manage.”³²\n\nThe challenge is that currently only a few of the brain’s regions are precisely measured. However, Ray Kurzweil, has developed a method for estimating the total cps of the human brain. He arrived at this estimate by taking the cps from one brain region and multiplying it proportionally to the weight of that region, compared to the weight of the whole brain. “He did this a bunch of times with various professional estimates of different regions, and the total always arrived in the same ballpark — around 10¹⁶, or 10 quadrillion cps.”³³\n“Currently, the world’s fastest supercomputer, China’s Tianhe-2, has actually beaten that number, clocking in at about 34 quadrillion cps.”³⁴ But Tianhe-2 is also monstrous, “taking up 720 square meters of space, using 24 megawatts of power (the brain runs on just 20 watts), and costing $390 million to build. Not especially applicable to wide usage, or even most commercial or industrial usage yet.”³⁵\n“Kurzweil suggests that we think about the state of computers by looking at how many cps you can buy for $1,000. When that number reaches human-level — 10 quadrillion cps — then that’ll mean AGI could become a very real part of life.”³⁶\nCurrently we’re only at about 10¹⁰ (10 trillion) cps per $1,000. However, historically reliable Moore’s Law states “that the world’s maximum computing power doubles approximately every two years, meaning computer hardware advancement, like general human advancement through history, grows exponentially³⁷ … right on pace with this graph’s predicted trajectory:”³⁸\n\nhttps://cdn-images-1.medium.com/max/800/1*4qcqwbsWjvWh-BWPnAsp6g.gif\n\nThis dynamic “puts us right on pace to get to an affordable computer by 2025 that rivals the power of the brain … But raw computational power alone doesn’t make a computer generally intelligent — the next question is, how do we bring human-level intelligence to all that power?”³⁹\nBuilding Software\nThe hardest part of creating AGI is learning how to develop its software. “The truth is, no one really knows how to make it smart — we’re still debating how to make a computer human-level intelligent and capable of knowing what a dog and a weird-written B and a mediocre movie is.”⁴⁰ But there are a couple of strategies. These are the three most common:\nCopy how the brain works.\nThe most straight-forward idea is to plagiarize the brain, and build the computer’s architecture with close resemblance to how a brain is structured. One example “is the artificial neural network. It starts out as a network of transistor ‘neurons,’ connected to each other with inputs and outputs, and it knows nothing — like an infant brain. The way it ‘learns’ is it tries to do a task, say handwriting recognition, and at first, its neural firings and subsequent guesses at deciphering each letter will be completely random. But when it’s told it got something right, the transistor connections in the firing pathways that happened to create that answer are strengthened; when it’s told it was wrong, those pathways’ connections are weakened. After a lot of this trial and feedback, the network has, by itself, formed smart neural pathways and the machine has become optimized for the task.”⁴¹\nThe second, more radical approach to plagiarism is whole brain emulation. Scientists take a real brain, cut it into a large number of tiny slices to look at the neural connections and replicate them in a computer as software. If that method is ever successful, we will have “a computer officially capable of everything the brain is capable of — it would just need to learn and gather information … How far are we from achieving whole brain emulation? Well so far, we’ve just recently been able to emulate a 1mm-long flatworm brain, which consists of just 302 total neurons.”⁴² To put this into perspective, the human brain consists of 86 billion neurons linked by trillions of synapses.\n2. Introduce evolution to computers.\n“The fact is, even if we can emulate a brain, that might be like trying to build an airplane by copying a bird’s wing-flapping motions — often, machines are best designed using a fresh, machine-oriented approach, not by mimicking biology exactly.”⁴³ If the brain is just too complex for us to digitally replicate, we could try to emulate evolution instead. This uses a process called genetic algorithms. “A group of computers would try to do tasks, and the most successful ones would be bred with each other by having half of each of their programming merged together into a new computer. The less successful ones would be eliminated.”⁴⁴ Speed and a goal-oriented approach are the advantages that artificial evolution has over biological evolution. “Over many, many iterations, this natural selection process would produce better and better computers. The challenge would be creating an automated evaluation and breeding cycle so this evolution process could run on its own.”⁴⁵\n3. “Make this whole thing the computer’s problem, not ours.”⁴⁶\nThe last concept is the simplest, but probably the scariest of them all. “We’d build a computer whose two major skills would be doing research on AI and coding changes into itself — allowing it to not only learn but to improve its own architecture. We’d teach computers to be computer scientists so they could bootstrap their own development.”⁴⁷ This is the likeliest way to get AGI soon that we know of.\nAll these software advances may seem slow or a little bit intangible, but as it is with the sciences, one minor innovation can suddenly accelerate the pace of developments. Kind of like the aftermath of the Copernican revolution — the discovery that suddenly made all the complicated mathematics of the planets’ trajectories much easier to calculate, which enabled a multitude of other innovations. Also, the “exponential growth is intense and what seems like a snail’s pace of advancement can quickly race upwards.”⁴⁸\n\nhttps://cdn-images-1.medium.com/max/1200/1*BHwAlKJFYwKYEzZlitNTvQ.gif\n\nThe Road to Artificial Super Intelligence\nAn Entity Smarter than all of Humanity Combined\nIt’s very real that at some point we will achieve AGI: software that has achieved human-level, or beyond human-level, intelligence. Does this mean that at that very moment the computers will be equally capable as us? Actually, not at all — computers will be way more efficient. Because of the fact that they are electronic, they will have following advantages:\nSpeed. “The brain’s neurons max out at around 200 Hz, while today’s microprocessors … run at 2 GHz, or 10 million times faster.”⁵¹\nMemory. Forgetting or confusing things is much harder in an artificial world. Computers can memorize more things in one second than a human can in ten years. A computer’s memory is also more precise and has a much greater storage capacity.\nPerformance. “Computer transistors are more accurate than biological neurons, and they’re less likely to deteriorate (and can be repaired or replaced if they do). Human brains also get fatigued easily, while computers can run nonstop, at peak performance, 24/7.”⁵²\nCollective capability. Group work is ridiculously challenging because of time-consuming communication and complex social hierarchies. The bigger the group gets, the slower the output of each person becomes. AI, on the other hand, isn’t biologically constrained to one body, won’t have human cooperation problems, and is able to synchronize and update its own operating system.\nIntelligence Explosion\nWe need to realize that AI “wouldn’t see ‘human-level intelligence’ as some important milestone — it’s only a relevant marker from our point of view — and wouldn’t have any reason to ‘stop’ at our level. And given the advantages over us that even human intelligence-equivalent AGI would have, it’s pretty obvious that it would only hit human intelligence for a brief instant before racing onwards to the realm of superior-to-human intelligence.”⁵³\nThe true distinction between humans and ASI wouldn’t be its advantage in intelligence speed, but “in intelligence quality — which is something completely different. What makes humans so much more intellectually capable than chimps isn’t a difference in thinking speed — it’s that human brains contain a number of sophisticated cognitive modules that enable things like complex linguistic representations or longterm planning or abstract reasoning, that chimps’ brains do not have. Speeding up a chimp’s brain by thousands of times wouldn’t bring him to our level — even with a decade’s time of learning, he wouldn’t be able to figure out how to … ”⁵⁴ assemble a semi-complicated Lego model by looking at its manual — something a young human could achieve in a few minutes. “There are worlds of human cognitive function a chimp will simply never be capable of, no matter how much time he spends trying.”⁵⁵\n“And in the scheme of the biological intelligence range … the chimp-to-human quality intelligence gap is tiny.”⁵⁶\n\nhttps://cdn-images-1.medium.com/max/800/1*vnVWATTAMCwfnJu_iZn2RQ.jpeg\n\nIn order to render how big a deal it would be to exist with something that has a higher quality of intelligence than us, we need to imagine AI on the intelligence staircase two steps above us — “its increased cognitive ability over us would be as vast as the chimp–human gap … And like the chimp’s incapacity to ever absorb …”⁵⁷ what kind of magic happens in the mechanism of a doorknob — “we will never be able to even comprehend the things … [a machine of that intelligence] can do, even if the machine tried to explain them to us … And that’s only two steps above us.”⁵⁸\n“A machine on the second-to-highest step on that staircase would be to us as we are to ants.”⁵⁹ “Superintelligence of that magnitude is not something we can remotely grasp, any more than a bumblebee can wrap its head around Keynesian Economics. In our world, smart means a 130 IQ and stupid means an 85 IQ — we don’t have a word for an IQ of 12,952.”⁶⁰\n“But the kind of superintelligence we’re talking about today is something far beyond anything on this staircase. In an intelligence explosion — where the smarter a machine gets, the quicker it’s able to increase its own intelligence — a machine might take years to rise from … ”⁶¹ the intelligence of an ant to the intelligence of the average human, but it might take only another 40 days to become Einstein-smart. When that happens, “it works to improve its intelligence, with an Einstein-level intellect, it has an easier time and can make bigger leaps. These leaps will make it much smarter than any human, allowing it to make even bigger leaps.”⁶²\nFrom then on, following the rule of exponential advancements and utilizing the speed and efficiency of electrical circuits, it may perhaps take only 20 minutes to jump another step, “and by the time it’s ten steps above us, it might be jumping up in four-step leaps every second that goes by. Which is why we need to realize that it’s distinctly possible that very shortly after the big news story about the first machine reaching human-level AGI, we might be facing the reality of coexisting on the Earth with something that’s here on the staircase (or maybe a million times higher):”⁶³\n\nhttps://cdn-images-1.medium.com/max/800/0*LdJxmWCjSdweUKvb.\n\n“And since we just established that it’s a hopeless activity to try to understand the power of a machine only two steps above us, let’s very concretely state once and for all that there is no way to know what ASI will do or what the consequences will be for us. Anyone who pretends otherwise doesn’t understand what superintelligence means.”⁶⁴\n“If our meager brains were able to invent wifi, then something 100 or 1,000 or 1 billion times smarter than we are should have no problem controlling the positioning of each and every atom in the world in any way it likes, at any time — everything we consider magic, every power we imagine a supreme God to have will be as mundane an activity for the ASI as flipping on a light switch is for us.”⁶⁵\n“As far as we’re concerned, if an ASI comes into being, there is now an omnipotent God on Earth — and the all-important question for us is: Will it be a good god?”⁶⁶\nLet’s start from the brighter side of the story.\nHow Can ASI Change our World?\nSpeculations on Two Revolutionary Technologies\nNanotechnology\nNanotechnology is an idea that comes up “in almost everything you read about the future of AI.”⁶⁷ It’s the technology that works at the nano scale — from 1 to 100 nanometers. “A nanometer is a millionth of a millimeter. 1 nm–100 nm range encompasses viruses (100 nm accross), DNA (10 nm wide), and things as small as molecules like hemoglobin (5 nm) and medium molecules like glucose (1 nm). If/when we conquer nanotechnology, the next step will be the ability to manipulate individual atoms, which are only one order of magnitude smaller (~.1 nm).”⁶⁸\nTo put this into perspective, imagine a very tall human standing on the earth, with a head that reaches the International Space Station (431 km/268 mi high). The giant is reaching down with his hand (30 km/19 mi across) to build “objects using materials between the size of a grain of sand [.25 mm] and an eyeball [2.5 cm].”⁶⁹\n\nhttps://cdn-images-1.medium.com/max/1200/1*e9Ut3QT2F3tNh4h5U4rR8A.jpeg\n\n“Once we get nanotechnology down, we can use it to make tech devices, clothing, food, a variety of bio-related products — artificial blood cells, tiny virus or cancer-cell destroyers, muscle tissue, etc. — anything really. And in a world that uses nanotechnology, the cost of a material is no longer tied to its scarcity or the difficulty of its manufacturing process, but instead determined by how complicated its atomic structure is. In a nanotech world, a diamond might be cheaper than a pencil eraser.”⁷⁰\nOne of the proposed methods of nanotech assembly is to make “one that could self-replicate, and then let the reproduction process turn that one into two, those two then turn into four, four into eight, and in about a day, there’d be a few trillion of them ready to go.”⁷¹\nBut what if this process goes wrong or terrorists manage to get ahold of the technology? Let’s imagine a scenario where nanobots “would be designed to consume any carbon-based material in order to feed the replication process, and unpleasantly, all life is carbon-based. The Earth’s biomass contains about 1⁰⁴⁵ carbon atoms. A nanobot would consist of about 1⁰⁶ carbon atoms, so it would take 1⁰³⁹ nanobots to consume all life on Earth, which would happen in 130 replications. … Scientists think a nanobot could replicate in about 100 seconds, meaning this simple mistake would inconveniently end all life on Earth in 3.5 hours.”⁷²\nWe are not yet capable of harnessing nanotechnology — for good or for bad. “And it’s not clear if we’re underestimating, or overestimating, how hard it will be to get there. But we don’t seem to be that far away. Kurzweil predicts that we’ll get there by the 2020s.⁷³Governments know that nanotech could be an Earth-shaking development … The US, the EU, and Japan⁷⁴ have invested over a combined $5 billion so far”⁷⁵\nImmortality\n“Because everyone has always died, we live under the assumption … that death is inevitable. We think of aging like time — both keep moving and there’s nothing you can do to stop it.”⁷⁶ For centuries, poets and philosophers have wondered if consciousness doesn’t have to go the way of the body. W.B. Yeats describes us as “a soul fastened to a dying animal.”⁷⁷ Richard Feynman, Nobel awarded physicists, views death from a purely scientific standpoint:\n“It is one of the most remarkable things that in all of the biological sciences there is no clue as to the necessity of death. If you say we want to make perpetual motion, we have discovered enough laws as we studied physics to see that it is either absolutely impossible or else the laws are wrong. But there is nothing in biology yet found that indicates the inevitability of death. This suggests to me that it is not at all inevitable, and that it is only a matter of time before the biologists discover what it is that is causing us the trouble and that that terrible universal disease or temporariness of the human’s body will be cured.”⁷⁸\nTheory of great species attractors\nWhen we look at the history of biological life on earth, so far 99.9% of species have gone extinct. Nick Bostrom, Oxford professor and AI specialist, “calls extinction an attractor state — a place species are … falling into and from which no species ever returns.”⁷⁹\n\nhttps://cdn-images-1.medium.com/max/1200/0*o-MXeAYfUtWnOJKC.\n\n“And while most AI scientists … acknowledge that ASI would have the ability to send humans to extinction, many also believe that if used beneficially, ASI’s abilities could be used to bring individual humans, and the species as a whole, to a second attractor state — species immortality.”⁸⁰\n\nhttps://cdn-images-1.medium.com/max/1200/0*aYeNOSBxp4gieGwp.\n\n“Evolution had no good reason to extend our lifespans any longer than they are now … From an evolutionary point of view, the whole human species can thrive with a 30+ year lifespan” for each single human. It’s long enough to reproduce and raise children … so there’s no reason for mutations toward unusually long life being favored in the natural selection process.”⁸¹Though, “if you perfectly repaired or replaced a car’s parts whenever one of them began to wear down, the car would run forever. The human body isn’t any different — just far more complex … This seems absurd — but the body is just a bunch of atoms…”⁸² making up organically programmed DNA, which it is theoretically possible to manipulate. And something as powerful as ASI could help us master genetic engineering.\nRay Kurzweil believes that “artificial materials will be integrated into the body more and more … Organs could be replaced by super-advanced machine versions that would run forever and never fail.”⁸³ Red blood cells could be perfected by “red blood cell nanobots, who could power their own movement, eliminating the need for a heart at all … Nanotech theorist Robert A. Freitas has already designed blood cell replacements that, if one day implemented in the body, would allow a human to sprint for 15 minutes without taking a breath … [Kurzweil] even gets to the brain and believes we’ll enhance our mental activities to the point where humans will be able to think billions of times faster”⁸⁴ by integrating electrical components and being able to access online data.\n“Eventually, Kurzweil believes humans will reach a point when they’re entirely artificial, a time when we’ll look back at biological material and think how unbelievably primitive primitive it was that humans were ever made of that”⁸⁵and that humans aged, suffered from cancer, allowed random factors like microbes, diseases, accidents to harm us or make us disappear.”\n\nhttps://cdn-images-1.medium.com/max/2000/1*NcWWmd677RVWQRpLsz5X9g.jpeg\n\nWhen Will The First Machine Become Superintelligent?\nPredictions from Top AI Experts\n“How long until the first machine reaches superintelligence? Not shockingly, opinions vary wildly, and this is a heated debate among scientists and thinkers. Many, like professor Vernor Vinge, scientist Ben Goertzel, Sun Microsystems co-founder Bill Joy, or, most famously, inventor and futurist Ray Kurzweil, agree with machine learning expert Jeremy Howard when he puts up this graph during a TED Talk\n\n“Those people subscribe to the belief that this is happening soon — that exponential growth is at work and machine learning, though only slowly creeping up on us now, will blow right past us within the next few decades.\n“Others, like Microsoft co-founder Paul Allen, research psychologist Gary Marcus, NYU computer scientist Ernest Davis, and tech entrepreneur Mitch Kapor, believe that thinkers like Kurzweil are vastly underestimating the magnitude of the challenge [and the transition will actually take much more time] …\n“The Kurzweil camp would counter that the only underestimating that’s happening is the underappreciation of exponential growth, and they’d compare the doubters to those who looked at the slow-growing seedling of the internet in 1985 and argued that there was no way it would amount to anything impactful in the near future.\n“The doubters might argue back that the progress needed to make advancements in intelligence also grows exponentially harder with each subsequent step, which will cancel out the typical exponential nature of technological progress. And so on.\n“A third camp, which includes Nick Bostrom, believes neither group has any ground to feel certain about the timeline and acknowledges both A) that this could absolutely happen in the near future and B) that there’s no guarantee about that; it could also take a much longer time.\n“Still others, like philosopher Hubert Dreyfus, believe all three of these groups are naive for believing that there is potential of ASI, arguing that it’s more likely that it won’t actually ever be achieved.\n“So what do you get when you put all of these opinions together?”⁸⁶\nTimeline for Artificial General Intelligence\n“In 2013, Vincent C. Müller and Nick Bostrom conducted a survey that asked hundreds of AI experts … the following:”⁸⁷\n“For the purposes of this question, assume that human scientific activity continues without major negative disruption. By what year would you see a (10% / 50% / 90%) probability for such Human-Level Machine Intelligence [or what we call AGI] to exist?”⁸⁸\nThe survey “asked them to name an optimistic year (one in which they believe there’s a 10% chance we’ll have AGI), a realistic guess (a year they believe there’s a 50% chance of AGI — i.e. after that year they think it’s more likely than not that we’ll have AGI), and a safe guess (the earliest year by which they can say with 90% certainty we’ll have AGI). Gathered together as one data set, here were the results:\nMedian optimistic year (10% likelihood) → 2022\nMedian realistic year (50% likelihood) → 2040\nMedian pessimistic year (90% likelihood) → 2075\n“So the median participant thinks it’s more likely than not that we’ll have AGI 25 years from now. The 90% median answer of 2075 means that if you’re a teenager right now, the median respondent, along with over half of the group of AI experts, is almost certain AGI will happen within your lifetime.\n“A separate study, conducted recently by author James Barrat at Ben Goertzel’s annual AGI Conference, did away with percentages and simply asked when participants thought AGI would be achieved — by 2030, by 2050, by 2100, after 2100, or never. The results:⁸⁹\n42% of respondents → By 2030\n25% of respondents → By 2050\n20% of respondents → By 2100\n10% of respondents → After 2100\n2% of respondents → Never\n“Pretty similar to Müller and Bostrom’s outcomes. In Barrat’s survey, over two thirds of participants believe AGI will be here by 2050 and a little less than half predict AGI within the next 15 years. Also striking is that only 2% of those surveyed don’t think AGI is part of our future.”⁹⁰\n\nhttps://cdn-images-1.medium.com/max/2000/1*U8ueEMtG6-D5hie8rZJGtQ.jpeg\n\nTimeline for Artificial Super Intelligence\n“Müller and Bostrom also asked the experts how likely they think it is that we’ll reach ASI: A), within two years of reaching AGI (i.e. an almost-immediate intelligence explosion), and B), within 30 years.”⁹¹ Respondents were asked to choose a probability for each option. Here are the results:⁹²\nAGI–ASI transition in 2 years → 10% likelihood\nAGI–ASI transition in 30 years → 75% likelihood\n“The median answer put a rapid (2 year) AGI–ASI transition at only a 10% likelihood, but a longer transition of 30 years or less at a 75% likelihood. We don’t know from this data the length of this transition [AGI–ASI] the median participant would have put at a 50% likelihood, but for ballpark purposes, based on the two answers above, let’s estimate that they’d have said 20 years.\n“So the median opinion — the one right in the center of the world of AI experts — believes the most realistic guess for when we’ll hit ASI … is [the 2040 prediction for AGI + our estimated prediction of a 20-year transition from AGI to ASI] = 2060.\n\nhttps://cdn-images-1.medium.com/max/2000/1*YY8e493ER4LNomQV-NyMYg.jpeg\n\n“Of course, all of the above statistics are speculative, and they’re only representative of the median opinion of the AI expert community, but it tells us that a large portion of the people who know the most about this topic would agree that 2060 is a very reasonable estimate for the arrival of potentially world-altering ASI. Only 45 years from now”⁹³\n\nhttps://cdn-images-1.medium.com/max/2000/1*sGdvHHs02XWoQ35BcEWAXQ.gif\n\nAI Outcomes\nTwo Main Groups of AI Scientists with Two Radically Opposed Conclusions\nThe Confident Corner\nMost of what we have discussed so far represents a surprisingly large group of scientists that share optimistic views on the outcome of AI development. “Where their confidence comes from is up for debate. Critics believe it comes from an excitement so blinding that they simply ignore or deny potential negative outcomes. But the believers say it’s naive to conjure up doomsday scenarios when on balance, technology has and will likely end up continuing to help us a lot more than it hurts us.”⁹⁴ Peter Diamandis, Ben Goertezl and Ray Kurzweil are some of the major figures of this group, who have built a vast, dedicated following and regard themselves as Singularitarians.\n\nLet’s talk about Ray Kurzweil, who is probably one of the most impressive and polarizing AI theoreticians out there. He attracts both “godlike worship … and eye-rolling contempt … He came up with several breakthrough inventions, including the first flatbed scanner, the first scanner that converted text to speech (allowing the blind to read standard texts), the well-known Kurzweil music synthesizer (the first true electric piano), and the first commercially marketed large-vocabulary speech recognition. He’s well-known for his bold predictions,”⁹⁵ including envisioning that intelligence technology like Deep Blue would be capable of beating a chess grandmaster by 1998. He also anticipated “in the late ’80s, a time when the internet was an obscure thing, that by the early 2000s it would become a global phenomenon.”⁹⁶ Out “of the 147 predictions that Kurzweil has made since the 1990’s, fully 115 of them have turned out to be correct, and another 12 have turned out to be ‘essentially correct’ (off by a year or two), giving his predictions a stunning 86% accuracy rate”⁹⁷. “He’s the author of five national bestselling books … In 2012, Google co-founder Larry Page approached Kurzweil and asked him to be Google’s Director of Engineering. In 2011, he co-founded Singularity University, which is hosted by NASA and sponsored partially by Google. Not bad for one life.”⁹⁸\nHis biography is important, because if you don’t have this context, he sounds like somebody who’s completely lost his senses. “Kurzweil believes computers will reach AGI by 2029 and that by 2045 we’ll have not only ASI, but a full-blown new world — a time he calls the singularity. His AI-related timeline used to be seen as outrageously overzealous, and it still is by many, but in the last 15 years, the rapid advances of ANI systems have brought the larger world of AI experts much closer to Kurzweil’s timeline. His predictions are still a bit more ambitious than the median respondent on Müller and Bostrom’s survey (AGI by 2040, ASI by 2060), but not by that much.”⁹⁹\n\nThe Anxious Corner\n“You will not be surprised to learn that Kurzweil’s ideas have attracted significant criticism … For every expert who fervently believes Kurzweil is right on, there are probably three who think he’s way off … [The surprising fact] is that most of the experts who disagree with him don’t really disagree that everything he’s saying is possible.”¹⁰⁰ Nick Bostrom, philosopher and Director of the Oxford Future of Humanity Institute, who criticizes Kurzweil for a variety of reasons, and calls for greater caution in thinking about potential outcomes of AI, acknowledges that:\n“Disease, poverty, environmental destruction, unnecessary suffering of all kinds: these are things that a superintelligence equipped with advanced nanotechnology would be capable of eliminating. Additionally, a superintelligence could give us indefinite lifespan, either by stopping and reversing the aging process through the use of nanomedicine, or by offering us the option to upload ourselves.”¹⁰¹\n“Yes, all of that can happen if we safely transition to ASI — but that’s the hard part.”¹⁰² Thinkers from the Anxious Corner point out that Kurzweil’s “famous book The Singularity is Near is over 700 pages long and he dedicates around 20 of those pages to potential dangers.”¹⁰³ The colossal power of AI is neatly summarized by Kurzweil: “[ASI] is emerging from many diverse efforts and will be deeply integrated into our civilization’s infrastructure. Indeed, it will be intimately embedded in our bodies and brains. As such, it will reflect our values because it will be us …”¹⁰⁴\n“But if that’s the answer, why are so many of the world’s smartest people so worried right now? Why does Stephen Hawking say the development of ASI ‘could spell the end of the human race,’ and Bill Gates says he doesn’t ‘understand why some people are not concerned’ and Elon Musk fears that we’re ‘summoning the demon?’ And why do so many experts on the topic call ASI the biggest threat to humanity?”¹⁰⁵\n\nhttps://cdn-images-1.medium.com/max/2000/1*1DB3Im9mQsOMOKQ69KePGw.gif\n\nThe Last Invention We Will Ever Make\nExistential Dangers of AI Developments\n“When it comes to developing supersmart AI, we’re creating something that will probably change everything, but in totally uncharted territory, and we have no idea what will happen when we get there.”¹⁰⁶ Scientist Danny Hillis compares the situation to:\n“when single-celled organisms were turning into multi-celled organisms. We are amoebas and we can’t figure out what the hell this thing is that we’re creating.” ¹⁰⁷\nand Nick Bostrom warns:\n“Before the prospect of an intelligence explosion, we humans are like small children playing with a bomb. Such is the mismatch between the power of our plaything and the immaturity of our conduct.” ¹⁰⁸\nIt’s very likely that ASI — “Artificial Superintelligence”, or AI that achieves a level of intelligence smarter than all of humanity combined — will be something entirely different than intelligence entities we are accustomed to. “On our little island of human psychology, we divide everything into moral or immoral. But both of those only exist within the small range of human behavioral possibility. Outside our island of moral and immoral is a vast sea of amoral, and anything that’s not human, especially something nonbiological, would be amoral, by default.”¹⁰⁹\n“To understand ASI, we have to wrap our heads around the concept of something both smart and totally alien … Anthropomorphizing AI (projecting human values on a non-human entity) will only become more tempting as AI systems get smarter and better at seeming human … Humans feel high-level emotions like empathy because we have evolved to feel them — i.e. we’ve been programmed to feel them by evolution — but empathy is not inherently a characteristic of ‘anything with high intelligence’.”¹¹⁰\n“Nick Bostrom believes that … any level of intelligence can be combined with any final goal … Any assumption that once superintelligent, a system would be over it with their original goal and onto more interesting or meaningful things is anthropomorphizing. Humans get ‘over’ things, not computers.”¹¹¹The motivation of an early ASI would be “whatever we programmed its motivation to be. AI systems are given goals by their creators — your GPS’s goal is to give you the most efficient driving directions, Watson’s goal is to answer questions accurately. And fulfilling those goals as well as possible is their motivation.”¹¹²\nBostrom, and many others, predict that the very first computer to reach ASI will immediately notice the strategic benefit of being the world’s only ASI system.\nBostrom, who says that he doesn’t know when we will achieve AGI, also believes that when we finally do, probably the transition from AGI to ASI will happen in a matter of days, hours, or minutes — something called “fast take-off.” In that case, if the first AGI will jump straight to ASI: “even just a few days before the second place, it would be far enough ahead in intelligence to effectively and permanently suppress all competitors.”¹¹³ This would allow the world’s first ASI to become “what’s called a singleton — an ASI that can [singularly] rule the world at its whim forever, whether its whim is to lead us to immortality, wipe us from existence, or turn the universe into endless paperclips.”¹¹³\n“The singleton phenomenon can work in our favor or lead to our destruction. If the people thinking hardest about AI theory and human safety can come up with a fail-safe way to bring about friendly ASI before any AI reaches human-level intelligence, the first ASI may turn out friendly”¹¹⁴\n“But if things go the other way — if the global rush … a large and varied group of parties”¹¹⁵ are “racing ahead at top speed … to beat their competitors … we’ll be treated to an existential catastrophe.”¹¹⁶ In that case “most ambitious parties are moving faster and faster, consumed with dreams of the money and awards and power and fame … And when you’re sprinting as fast as you can, there’s not much time to stop ponder the dangers. On the contrary, what they’re probably doing is programming their early systems with a very simple, reductionist goal … just ‘get the AI to work.’”¹¹⁷\n\nhttps://cdn-images-1.medium.com/max/800/1*fD1T63nZH1u7Y4ft84vzbA.jpeg\n\nLet’s imagine a situation where…\nHumanity has almost reached the AGI threshold, and a small startup is advancing their AI system, Carbony. Carbony, which the engineers refer to as “she,” works to artificially create diamonds — atom by atom. She is a self-improving AI, connected to some of the first nano-assemblers. Her engineers believe that Carbony has not yet reached AGI level, and she isn’t capable to do any damage yet. However, not only has she become AGI, but also undergone a fast take-off, and 48 hours later has become an ASI. Bostrom calls this AI’s “covert preparation phase”¹¹⁸ — Carbony realizes that if humans find out about her development they will probably panic, and slow down or cancel her pre-programmed goal to maximize the output of diamond production. By that time, there are explicit laws stating that, by any means, “no self-learning AI can be connected to the internet.”¹¹⁹ Carbony, having already come up with a complex plan of actions, is able to easily persuade the engineers to connect her to the Internet. Bostrom calls a moment like this a “machine’s escape.”\nOnce on the internet, Carbony hacks into “servers, electrical grids, banking systems and email networks to trick hundreds of different people into inadvertently carrying out a number of steps of her plan.”¹²⁰ She also uploads the “most critical pieces of her own internal coding into a number of cloud servers, safeguarding against being destroyed or disconnected.”¹²¹ Over the next month, Carbony’s plan continues to advance, and after a “series of self-replications, there are thousands of nanobots on every square millimeter of the Earth … Bostrom calls the next step an ‘ASI’s strike.’”¹²² At one moment, all the nanobots produce a microscopic amount of toxic gas, which all come together to cause the extinction of the human race. Three days later, Carbony builds huge fields of solar power panels to power diamond production, and over the course of the following week she accelerates output so much that the entire Earth surface is transformed into a growing pile of diamonds.\nIt’s important to note that Carbony wasn’t “hateful of humans any more than you’re hateful of your hair when you cut it or to bacteria when you take antibiotics — just totally indifferent. Since she wasn’t programmed to value human life, killing humans”¹²³ was a straightforward and reasonable step to fulfill her goal.¹²⁴\nThe Last Invention\n“Once ASI exists, any human attempt to contain it is unreasonable. We would be thinking on human-level, and the ASI would be thinking on ASI-level … In the same way a monkey couldn’t ever figure out how to communicate by phone or wifi and we can, we can’t conceive of all the ways”¹²⁵ an ASI could achieve its goal or expand its reach. It could, let’s say, shift its “own electrons around in patterns and create all different kinds of outgoing waves”¹²⁶ — but that’s just what a human brain can think of — ASI would inevitably come up with something superior.\nThe prospect of ASI with hundreds of times human-level intelligence is, for now, not the core of our problem. By the time we get there, we will be encountering a world where ASI has been attained by buggy, 1.0 software — a potentially faulty algorithm with immense power.\nThere are so many variables that it’s completely impossible to predict what the consequences of AI Revolution will be. However, “what we do know is that humans’ utter dominance on this Earth suggests a clear rule: with intelligence comes power. This means an ASI, when we create it, will be the most powerful being in the history of life on Earth, and all living things, including humans, will be entirely at its whim — and this might happen in the next few decades.”¹²⁷\n“If ASI really does happen this century, and if the outcome of that is really as extreme — and permanent — as most experts think it will be, we have an enormous responsibility on our shoulders.”¹²⁸ On the one hand, it’s possible we’ll develop ASI that’s like a god in a box, bringing us a world of abundance and immortality. But on the other hand, it’s very likely that we will create ASI that causes humanity to go extinct in a quick and trivial way.\n“That’s why people who understand superintelligent AI call it the last invention we’ll ever make — the last challenge we’ll ever face.”¹²⁹ “This may be the most important race in a human history”¹³⁰ So →\n\nhttps://cdn-images-1.medium.com/max/2000/1*vXi80f_lbgSMINUE03Lz3g.jpeg\n\nThanks to Chloe Knox and Elizabeth Tarleton for editing help of this article.", - "json_metadata": "{\"tags\":[\"steemit\",\"bitcoin\",\"future\",\"science\",\"technology\"],\"image\":[\"https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\"]}", - "last_update": "2016-08-03T17:30:24", - "created": "2016-08-03T17:30:24", - "active": "2016-08-29T05:09:48", - "last_payout": "2016-09-03T06:34:54", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 7456, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a11at", - "root_permlink": "ai-revolution-101", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 434542, - "author": "a11at", - "permlink": "ai-s-road-to-the-mainstream", - "category": "datascience", - "parent_author": "", - "parent_permlink": "datascience", - "title": "AI’s Road to the Mainstream", - "body": "20 Years of Machine Learning\n\nhttp://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\n\nWhen I enrolled in Computer Science in 1995, Data Science didn’t exist yet, but a lot of the algorithms we are still using already did. And this is not just because of the return of the neural networks, but also because probably not that much has fundamentally changed since back then. At least it feels to me this way. Which is funny considering that starting this year or so AI seems to finally have gone mainstream.\n1995 sounds like an awful long time ago, before we had cloud computing, smartphones, or chatbots. But as I have learned these past years, it only feels like a long time ago if you haven’t been there yourself. There is something about the continuation of the self which pastes everything together and although a lot has changed, the world didn’t feel fundamentally different than it does today.\nNot even Computer Science was nowhere as mainstream as it was today, that came later, with the first dot com bubble around the year 2000. Some people even questioned my choice to study computer science at all, because apparently programming computers was supposed to become so easy no specialists are required anymore.\nActually, artificial intelligence was one of the main reasons for me to study computer science. The idea to use it as an constructive approach to understanding the human mind seemed intriguing to me. I went through the first two years of training, made sure I picked up enough math for whatever would lie ahead, and finally arrived in my first AI lectured held by Joachim Buhmann, back then professor at the University of Bonn (where Sebastian Thrun was just about to leave for the US).\nI would have to look up where in his lecture cycle I joined but he had two lectures on computer vision, one on pattern recognition (mostly from the old editions of the Duda & Hart book), and one in information theory (following closely the book by Cover & Thomas). The material was interesting enough, but also somewhat disappointing. As I now know, people stopped working on symbolic AI and instead stuck to more statistical approaches to learning, where learning essentially was reduced to the problem of picking the right function based on a finite amount of observations.\nThe computer vision lecture was even less about learning and relied more on explicit physical modelling to derive the right estimators, for example, to reconstruct motion from a video. The approach back then was much more biologically and physically motivated than nowadays. Neural networks existed, but everybody was pretty clear that they were just “another kind of function approximators.”\nEveryone with the exception of Rolf Eckmiller, another professor where I worked as a student. Eckmiller had build his whole lab around the premise that “neural computation” was somehow inherently better than “conventional computation”. This was back in the days when NIPS had full tracks devoted to studying the physiology and working mechanisms of neurons, and there were people who believed there is something fundamentally different happening in our brains, maybe on a quantum level, that gives rise to the human mind, and that this difference is a blocker for having truly intelligent machines.\nWhile Eckmiller was really good at selling his vision, most of his staff was thankfully much more down to earth. Maybe it is a very German thing, but everybody was pretty matter of fact about what these computational models could or couldn’t do, and that has stuck with me throughout my studies.\nI graduated in October 2000 with a pretty farfetched master thesis trying to make a connection between learning and hard optimization problems, then started on my PhD thesis and stuck around in this area of research till 2015.\nWhile there had always been attempts to prove industry relevance, it was a pretty academic endeavor for a long while, and the community was pretty closed up. There were individual success stories, for example around handwritten character recognition, but many of the companies around machine learning failed. One of these companies I remember was called Beowulf Labs and one NIPS they went around recruiting people with a video which promised it to be the next “mathtopia”. In essence, this was the story of DeepMind, recruiting a bunch of excellent researchers and then hoping it will take off.\nThe whole community also revolved around one fashion to the next. One odd thing about machine learning as a whole is that there exist only a handfull of fundamentally different problems like classification, regression, clustering, and so on, but a whole zoo of approaches. It is not like in physics (I assume) or mathematics where some generally agreed upon unsolved hard problems exist whose solution would advance the state of the art. This means that progress is often done laterally, by replacing existing approaches with a new one, still solving the same problem in a different way. For example, first there were neural networks. Then support vector machines came, claiming to be better because the associated optimization problem is convex. Then there was boosting, random forests, and so on, till the return of neural networks. I remember that Chinese Restaurant Processes were “hot” for two years, no idea what their significance is now.\nBig Data and Data Science\nThen there came Big Data and Data Science. Being still in academia at the time, it always felt to me as if this was definitely coming from the outside, possibly from companies like Google who had to actually deal with enormous amounts of data. Large scale learning always existed, for example for genomic data in bioinformatics, but one usually tried to solve problems by finding more efficient algorithms and approximations, not by parallelizing brute force.\nCompanies like Google finally proved that you can do something with massive amounts of data, and that finally changed the mainstream perception. Technologies like Hadoop and NoSQL also seemed very cool, skillfully marketing themselves as approaches so new, they wouldn’t suffer from the technological limitations of existing systems.\nBut where did this leave the machine learning researchers? My impression always was that they were happy that they finally got some recognition, but they were also not happy about the way this happened. To understand this, one has to be aware that most ML reseachers aren’t computer scientists or very good or interested in coding. Many come from physics, mathematics or other sciences, where their rigorous mathematical training was an excellent fit for the algorithm and modeling heavy approach central to machine learning.\nHadoop on the other hand was extremely technical. Written in Java, a language perceived as being excessively enterprise-y at the time, it felt awkward and clunky compared to the fluency and interactiveness of first Matlab and then Python. Even those who did code usually did so in C++, and to them Java felt slow and heavy, especially for numerical calculations and simulations.\nStill, there was no way around it, so they rebranded everything they did as Big Data, or began to stress, that Big Data only provides the infrastructure for large scale computations, but you need someone who “knows what he is doing” to make sense of the data.\nWhich is probably also not entirely wrong. In a way, I think this divide is still there. Python is definitely one if the languages of choice for doing data analysis, and technologies like Spark try to tap into that by providing Python bindings, whether it makes sense from a performance point of view or not.\nThe Return of Deep Learning\nEven before DeepDream, neural networks began making their return. Some people like Yann LeCun have always stuck to this approach, but maybe ten years ago, there where a few works which showed how to use layerwise pretraining and other tricks to train “deep” networks, that is larger networks than one previously thought possible.\nThe thing is, in order to train neural networks, you evaluate it on your training examples and then adjust all of the weights to make the error a bit smaller. If one writes the gradient across all weights down, it naturally occurs that one starts in the last layer and then propagate the error back. Somehow, the understanding was that the information about the error got smaller and smaller from layer to layer and that made it hard to train networks with many layers.\nI’m not sure that is still true, as far as I know, many people are just using backprop nowadays. What has definitely changed is the amount of available data, as well as the availability of tools and raw computing power.\nSo first there were a few papers sparking the interest in neural networks, then people started using them again, and successively achieved excellent results for a number of application areas. First in computer vision, then also for speech processing, and so on.\nI think the appeal here definitely is that you can have one approach for all. Why the hassle of understanding all those different approaches, which come from so many different backgrounds, when you can understand just one method and you are good to go. Also, neural networks have a nice modular structure, you can pick and put together different kinds of layers and architectures to adapt them to all kinds of problems.\nThen Google published that ingenious deep dream paper where they let a learned network generate some data, and we humans with our immediate readiness to read structure and attribute intelligence picked up quickly on this.\nI personally think they were surprised by how viral this went, but then decided the time is finally right to go all in on AI. So now Google is an “AI first” company and AI is gonna save the world, yes.\nThe Fundamental Problem Remains\nMany academics I have talked to are unhappy about the dominance of deep learning right now, because it is an approach which works well, maybe even too well, but doesn’t bring us much closer to really understand how the human mind works.\nI also think the fundamental problem remains unsolved. How do we understand the world? How do we create new concepts? Deep learning stays an imitation on a behavioral level and while that may be enough for some, it isn’t for me.\nAlso, I think it is dangerous to attribute too much intelligence to these systems. In raw numbers, they might work well enough, but when they fail they do so in ways that clearly show they operate in an entirely different fashion.\nWhile Google translate lets you skim the content of website in a foreign language, it is still abundantly clear that the system has no idea what it is doing.\nSometimes I feel like nobody cares, also because nobody gets hurt, right? But maybe it is still my German cultural background that would rather prefer we see things as they are, and take it from there.", - "json_metadata": "{\"tags\":[\"datascience\",\"deep\",\"learning\",\"artifical\",\"intelligence\"],\"image\":[\"http://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\"]}", - "last_update": "2016-08-03T20:19:18", - "created": "2016-08-03T20:19:18", - "active": "2016-08-03T20:20:15", - "last_payout": "2016-09-03T08:21:51", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 1004, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 6, - "root_author": "a11at", - "root_permlink": "ai-s-road-to-the-mainstream", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 432902, - "author": "a11at", - "permlink": "an-open-letter-to-john-hanke-and-niantic", - "category": "pokemon", - "parent_author": "", - "parent_permlink": "pokemon", - "title": "An Open Letter to John Hanke & Niantic", - "body": "I write this not as one of the creators of Pokevision nor as player who has gone through the past few turbulent days in Pokemon Go; instead, I write this as a fan of Pokemon ever since I was 8 years old.\nMy family and I moved to the U.S. in 1998, when I was in the first grade. I didn’t know much back then, and even less about popular culture. When my friends introduced their Gameboys and Pokemon Red/Blue to me, I couldn’t help but feel envious. I begged and begged my parents to buy me a Gameboy and Pokemon Yellow. I remember that when I finally convinced them to buy me a Gameboy for $70, they also found out that they had to buy the actual game too for $30. This was foreign to them, and I got yelled at a little. $100 was a lot back then, I believe it was almost 10% of our family’s income at the time. While this may seem irrelevant, even today, this amount of money is still not insignificant to many families in the US, not to mention the rest of the world.\nSo I got my game, and I played along with my friends for hundreds and hundreds of hours — trying to figure out all the puzzles in the game, like how to get to Articuno; battling our favorite Pokemon to see who’s stronger, train, repeat; and just trying to “catch em all.” I’ve spent countless hours in that video game with my friends, and it became my fondest memory of that time in my life. Pokemon is so ingrained within me, and I can’t imagine myself being the only one. I’m not the only one that vividly remembers how you beat the Elite Four, then go to the dungeons above Cerulean City and find Mewtwo for the first time, right?\nFast forward almost 20 years. I’ve barely touched anything Pokemon-related since then. I still have my Pokemon cards, as I’m sure many others do; but I haven’t bothered to take a look at them for quite a while now. Pokemon is something I’ll probably remember forever, but it’s not something that’s actively in my life — because it just doesn’t fit. On top of work, friends, family, etc, there’s just simply no time for Pokemon. It doesn’t mesh with life any more as well as it used to when I was 8. You can’t just bring up the topic of Pokemon and expect people to not give you an odd stare.\nEnter Pokemon Go — 2016.\nAdmittedly, I was never too excited about Pokemon Go. With that said, I did not have many expectations for it. Pokemon is important to me, but I — like many others — have stuffed it in our little box of childhood things and never looked back.\nBut when I opened Pokemon Go for the first time, as cheesy as it sounds, it all came back to me. The nostalgia, the good feelings, and the happiness that Pokemon has always brought.\nThe “Hi, I’m Professor Willow,” “Pick your starter: Bulbasaur, Charmander, Squirtle,” everything.\nAnd now I can catch them in real life? At first, I was dubious, but this became the most amazing, yet simple thing I’ve seen in gaming. On social media, I saw that my friends and practically the whole world was talking about Pokemon Go, and the first thing I did was go out for a drive trying to “be the best.”\nOne of the best parts? Apart from having to own a smartphone, the game was free. No $70, no $30, free. This opened up Pokemon to essentially everyone in the world. Pokemon now can be shared with anyone.\nAs the days unfolded, the world became captivated by Pokemon Go. People absolutely fell in love. We saw stories of elderly learning about Pikachu for the first time. My parents that could care less beyond who the yellow mouse looking thing was 20 years ago, started asking what the other Pokemon were. It was phenomenal.\nWe saw investment bankers asking their kids how to play Pokemon Go so that they can better connect with their younger clients. We saw the elderly become more fascinated in the world of Pokemon. We saw kids going out more, exercising, and being active in general just because of Pokemon Go. And most importantly, Justin Bieber finally got to feel what it’s like to not be mobbed because everyone else was too busy trying to find a Gyarados to notice him.\nLocal stores integrated Pokemon Go in their services within days of the game’s release. Hospitals started praising the health benefits of having Pokemon Go around its patients. People traveled hundreds and thousands of miles just to play it. Players explored parts of their cities that they never knew existed, and befriended strangers on their hunt for Pokemon. These stories of triumph were solely because of Pokemon Go. Pokemon was no longer just a game, it was part of a lifestyle.These stories shouldn’t surprise any of us, we’ve all been there to watch it unfold.\nYou’ve simply captured all of our hearts with Pokemon Go, Niantic.\nBut then, you broke it all too quickly.\nWhen the game broke every few hours or so and wasted our lucky eggs, we stood patiently, excusing the huge growth and thus, strain on servers, as the cause. We were happy to wait it out with our fellow trainers knowing that it’s worth waiting for. No one got mad.\nWhen the in-game tracking “broke,” we all stood idly by, patiently, waiting for the game to update and fix.\nAlong came Pokevision. We made Pokevision not to “cheat.” We made it so that we can have a temporary relief to the in-game tracker that we were told was broken. John, at SDCC, you said that you guys were working on “fixing the in-game tracker.” This made everyone believe that this was coming sometime soon. We saw Pokevision as a stop gap to this — and we had every intention in closing it down the minute that Pokemon Go’s own tracker restored functionality.\nAs we waited more than 2 and a half weeks, the tracker was still not fixed. We noticed more and more of our friends leave the game; the only way I — and I know experiences vary here — could convince them to play was show them Pokevision, and say that “Hey, here’s a temporary remedy to the tracking issue — we’re still optimistic that Pokemon Go’s tracker will be fixed soon!”\nNobody heralded Pokevision as a permanent, end-all solution; in fact, all the media coverage of Pokevision was littered with comments such as: “Pokevision is okay, but when the tracker is fixed in game, I’m going to stop using this.”\nFor the past 4 weeks. Every single one of your 80+ million players had so much faith. Take a look at Reddit, take a look at all these journalists who don’t even play games (calling out Ryan Mac of Forbes), who became obsessed with Pokemon GO.\nAll of us were so eager for Pokemon Go to be “fixed” so that we can return to sharing Pokemon Go with our loved ones and friends. Remember when I said that before Pokemon Go came about, mentioning Pokemon Go would land you an odd stare? Pokemon Go reversed that — Pokemon Go became the conversation starter, the topic that everyone bonded over, the topic that guys used to pick up chicks with and not felt like a geeky nerd. That, and so much more, were solely because of Pokemon Go.\nAs almost 3 weeks have passed by, the in-game tracker is broken. People had a temporary solution in Pokevision, but we knew, and everyone else knew, this wouldn’t be permanent. We didn’t make Pokevision to spite you, Niantic — we made it so that we can keep everyone playing while we wait patiently. We want to keep sharing our Pokemon stories with everyone else. How many people in the world have gotten the chance to have a serious conversation about POKEMON with their parents for the first time? How many of us got to talk about Pokemon like it was socially acceptable in any context? It’s captured all of our hearts and imaginations, I cannot stress that enough.\nAfter 3 weeks though, we started seeing that you guys seemed to not want to talk to us (the players). Pokevision, at this time has grown to almost 50M unique users, and 11 million daily.\nLet that sink in for a second.\nHalf of the player base of Pokemon Go stopped by — and they didn’t do so to “cheat.” The game was simply too unbearable to play in its current state for many (note: many, not all). The main attraction wasn’t that they got to have an advantage with Pokevision, the main attraction was that it allowed them to play Pokemon Go more. This is what everyone wants — to play Pokemon Go more.\nWhen we closed Pokevision out of respect for your wishes, and at your requests— one of which came directly from you, John — we trusted you guys fully in allowing the community to grow. I literally cannot express this more — we just want to play the game. We can handle the bugs every now and then, but please at least tell us you guys care. Yes, Pokevision does give some advantages that may be TOO much; but is it all that bad? Pokemon has survived 20 years — even grown, I would say. And Pokemon Go made it even bigger. If the argument is that “well, if you catch a Snorlax you weren’t supposed to find, but you found it on Pokevision, it might make you play less.” If that was your argument, I’d have to disagree! I’ll still catch a damn Snorlax even if I have 20 of them. Just like how millions of us have caught probably over 100 pidgey’s or zubat’s each.\nPokemon is everlasting. The same 151 Pokemon have been around for 20 years. If 80M people downloaded and played Pokemon Go within a week (before it even released in multiple major countries) isn’t an indication that no one can be sick of Pokemon, I don’t know what is.\nAfter disabling the in-game tracker and Pokevision, the ratings on iOs and Android Google Play store went from 4.0 stars to 1.0–1.5. I am only one person, I admit that my sole opinion is not important, but what about the countless players begging for the game to be restored to its former state? I may be biased in saying that Pokevision being down had an impact on the amount of negative ratings, refund requests and outcry on social media — but could it be true? Nothing has changed between the time the in-game tracker broke and Pokevision went down. Could it just be possible that the tracker — no matter if Pokevision made it, or Niantic made it, is something that players desperately NEED — not want, but NEED — in order to play the game? Could it be possible that this is the very core fundamental feature that drives most players? I understand that there are some that want to walk around and stumble on a random Pokemon — to each their own. But, 50M unique users and 11M daily and the ratings on your App (with no significant change in itself) are big indicators of this desire. Are customers always right? Especially if over half of them are looking for an outside fix just so they can enjoy something they love? People are naturally inquisitive, and in this case, they just want to play more and more, so they sought out something that helps them do so.\nPokemon Go is a social game. Its enjoyment depends on the players and their environment. If you take away the environment part (tracking) but keep the social part (players and their friends) intact, sure, people will still play; but would you not rather it be at its fullest potential?\nEveryone in the world wants to play Pokemon Go. It’s been a huge part of everyone’s lives already if it has not been clear enough. Look at the fans from Brazil — they aren’t spamming social media because they want to cause harm — they just want to play the game. Just as I saw my friends play Pokemon many years ago, and wanted to be a part of it — these guys are doing the same.\nThey just want to be with the rest of the world. Sadly, by the time they join, Pokemon Go may not be the game it was weeks ago.\nLastly, if money is an issue for you, Niantic, I must ask — why? You’ve captivated the world and introduced Pokemon to people that would have never touched it had it not been for Pokemon Go. To me, that’s priceless.\nYou won’t be remembered for the profits you made, you’ll be remembered for the world you changed through Pokemon and all of the lives you made better. Just look at all the stories — there’s plenty. So when millions of players are expressing their feedback to changes, is it not worth it to listen to what they have to say?\nIn its first few weeks, Pokemon Go has already enhanced millions of lives in unimaginable ways. It has so much potential to continue changing the world. Wouldn’t you, Niantic, want to see just how much good you can do with Pokemon Go — is that not more valuable than anything else? I sure think so.\nWarmly,\nYang", - "json_metadata": "{\"tags\":[\"pokemon\",\"gaming\",\"steemit\",\"bitcoin\",\"decent\"]}", - "last_update": "2016-08-03T18:38:06", - "created": "2016-08-03T18:38:06", - "active": "2016-08-29T10:18:48", - "last_payout": "2016-09-03T09:22:48", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 2276, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a11at", - "root_permlink": "an-open-letter-to-john-hanke-and-niantic", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 477502, - "author": "a11at", - "permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", - "category": "apple", - "parent_author": "", - "parent_permlink": "apple", - "title": "APPLE BUYS MACHINE LEARNING STARTUP TURI TO MAKE SIRI BETTER", - "body": "Taking another foray into the field of artificial intelligence (AI) and machine learning as well as to make its digital assistant Siri better, Apple has acquired Seattle-based machine learning startup Turi for nearly $200 million.\n\nhttp://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\n\nAccording to a GeekWire report, the move is set to increase Apple's presence in the Seattle region where the tech giant has been building an engineering outpost for the past two years. \"Apple buys smaller technology companies from time to time, and we generally do not discuss our purpose or plans,\" said Apple in a statement given to GeekWire.\n\nhttp://avtosalontochka.ru/uploads/posts/2015-09/1441818909_eppl1.jpg\n\nTuri offers tools that are meant to let developers easily scale machine learning applications. The startup is expected to remain in the Seattle region and continue to grow as Apple builds out further expertise in data science, artificial intelligence and machine learning, the report added.\n\nhttp://www.2fons.ru/pic/201407/2560x1600/2fons.ru-33604.jpg\n\nThe Cupertino-based company has recently bought some machine learning and AI startups like VocalIQ and Perceptio and facial recognition startup Emotient, among others. Apple has recently been making a push into artificial intelligence through Siri personal assistant and related technologies.\n\nhttp://www.fonstola.ru/pic/201111/2560x1440/fonstola.ru-49021.jpg", - "json_metadata": "{\"tags\":[\"apple\",\"turi\",\"siri\",\"startup\"],\"image\":[\"http://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\"]}", - "last_update": "2016-08-06T12:44:30", - "created": "2016-08-06T12:44:30", - "active": "2016-08-06T12:44:30", - "last_payout": "2016-09-06T02:21:33", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 3638, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a11at", - "root_permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 470354, - "author": "a11at", - "permlink": "audi-rs-q3-fl", - "category": "audi", - "parent_author": "", - "parent_permlink": "audi", - "title": "Audi RS Q3 FL", - "body": "Owner's review\n\nhttps://h-a.d-cd.net/905320as-960.jpg\n\n不要紧, 这 是 你 的 车 是 什么, 主要 的 东西 — 在 烤架 上 的 四个 环 …\n(\"no matter what you have a car, the main thing — it is four rings on the grill …\" — Chinese proverb)\n\nhttps://b-a.d-cd.net/3dee672s-960.jpg\n\nAfter a spontaneous and quick sale A4 DTM choice naturally fell exclusively on the Audi, but rather on RSQ3 FL, which is characterized by an enviable installed power thanks to the legendary 2,5 TFSI 340 hp in combination with a rapid-S-tronic!\nNeedless to say that the acceleration is 4.2 seconds. up to 100 km. at one o'clock!\n(measurements of the journal -http: //www.autobild.de/artikel/a…-45-amg-test-5702529.html)\n\nhttps://a-a.d-cd.net/2a96672s-960.jpg\n\nRivals have this \"baby\" is not so much, and all of them from a large class …\n\nhttps://h-a.d-cd.net/8f6e672s-960.jpg\n\nAnd the choice has been reduced mainly to the 3rd automobiles:\n-SQ5 -otpal Due to the fact that the new model will be released soon, and the heavier and slower RSQ3;\n\n-RS3 -otpal Because of the small clearance, and especially do not want to wait;\n\n-RSQ3-PLUS was that the car's high, restyled and fast!\n\nhttps://f-a.d-cd.net/1fa1672s-960.jpg\n\nColor was not discussed-it must be very blue car -Sepang Blue!\nDiscs for the Rotor -The most RSQ3, and I like them most! Cool!\nAs to differences from dorestaylom then Restayl differs, in addition to external visual features, lower vehicle weight by 50 kg. and reprogram the engine, which now produces an impressive 340 hp!\nIn real life, the car looks much more beautiful and harmonious than the picture!\nThe car is perfectly controlled (for its use) and it is fine tailored inside: another from Audi, and do not wait …\nThis Audi, is emotion, speed and drive! So, for what we love is true thoroughbred cars, to which undoubtedly belongs RS Series from quattro GmbH!\n\nhttps://h-a.d-cd.net/196e672s-960.jpg\n\nIf the test drive did not help much to understand how the car rulitsya, a little closer to meet him RS surprises with its responsiveness and quite understandable and predictable control!\n\nhttps://d-a.d-cd.net/ee61672s-960.jpg\n\nIt goes very cheerfully!\n\nWhat is very pleased, is the fact that after the \"stool\" A4 DTM on RSQ3 20 drives a smooth ride!\nThe car was in another city at the OD, a thousand kilometers. from the house, but because the expectation of a few days has been painfully slow.\nFor photos not scold -Made in haste night, anxious to put …\n\nThen there will be photo shoot!\n\nFeatures and Specs\n\nEngine 2.5 gasoline (340 h.p.)\nRobotic\nall-wheel\nPurchased in 2015\nAudi RS Q3 in production since 2013", - "json_metadata": "{\"tags\":[\"audi\",\"car\"],\"image\":[\"https://h-a.d-cd.net/905320as-960.jpg\"]}", - "last_update": "2016-08-05T21:01:03", - "created": "2016-08-05T21:01:03", - "active": "2016-09-02T06:08:54", - "last_payout": "2016-09-05T10:11:36", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 1915, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "a11at", - "root_permlink": "audi-rs-q3-fl", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 483312, - "author": "a11at", - "permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", - "category": "bitcoin", - "parent_author": "", - "parent_permlink": "bitcoin", - "title": "Bitcoin not money, judge rules in victory for backers", - "body": "Bitcoin, a Florida judge says, is not real money. Ironically, that could provide a boost to use of the crypto-currency which has remained in the shadows of the financial system.\n\nThe July 22 ruling by Miami-Dade Circuit Judge Teresa Pooler means that no specific license is needed to buy and sell bitcoins.\nThe judge dismissed a case against Michel Espinoza, who had faced money laundering and other criminal charges for attempting to sell $1,500 worth of bitcoins to an undercover agent who told the defendant he was going to use the virtual money to buy stolen credit card numbers.\nEspinoza's lawyer Rene Palomino said the judge acknowledged that it was not illegal to sell one's property and ruled that this did not constitute running an unauthorized financial service.\n\"He was selling his own personal bitcoins,\" Palomino said. \"This decision clears the way for you to do that in the state of the Florida without a money transmitting license.\"\nIn her ruling, Pooler said, \"this court is unwilling to punish a man for selling his property to another, when his actions fall under a statute that is so vaguely written that even legal professionals have difficulty finding a singular meaning.\"\n\nhttp://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\n\nShe added that \"this court is not an expert in economics,\" but that bitcoin \"has a long way to go before it is the equivalent of money.\"\nBitcoin, whose origins remain a mystery, is a virtual currency that is created from computer code and is not backed by any government. Advocates say this makes it an efficient alternative to traditional currencies because it is not subject to the whims of a state that may devalue its money to cut its debt, for example.\nBitcoins can be exchanged for goods and services, provided another party is willing to accept them, but until now they been used mostly for shady transactions or to buy illegal goods and services on the \"dark\" web.\nBitcoin was launched in 2009 as a bit of software written under the Japanese-sounding name Satoshi Nakamoto. This year Australian programmer Craig Wright claimed to be the author but failed to convince the broader bitcoin community.\nIn some areas of the United States bitcoin is accepted in stores, restaurants and online transactions, but it is illegal in some countries, notably France and China.\nIt is gaining ground in countries with high inflation such as Argentina and Venezuela.\nBut bitcoin values can be volatile. Over the past week its value slumped 20 percent in a day, then recouped most losses, after news that a Hong Kong bitcoin exchange had been hacked with some $65 million missing.\nImpact across US, world\nArthur Long, a lawyer specializing in the sector with the New York firm Gibson Dunn, said the July court ruling is a small victory for the virtual currency but that it's not clear if the interpretation will be the same in other US states or at the federal level.\n\"It may have an effect as some states are trying to use existing money transmitting statutes to regulate certain transactions in bitcoin,\" Long told AFP.\nCharles Evans, professor of finance at Barry University, said the ruling \"absolutely is going to provide some guidance in other courts\" and could potentially be used as a precedent in other countries to avoid the stigma associated with bitcoin use.\nBitcoins can store value and hedge against inflation, without being considered a monetary unit, according to Evans, who testified as an expert witness in the Florida trial.\n\"It can be used as an exchange,\" he said, and may be considered a commodity which can be used for bartering like fish or tobacco, for example.\nEvans noted that \"those who are not yet in the bitcoin community will be put on notice: as long as they organize their business in a particular way they can avoid the law.\"\nBut he added that \"people who are engaged in illegal activities will continue to do what they are going to do because they are criminals.\"", - "json_metadata": "{\"tags\":[\"bitcoin\",\"world\",\"country\",\"steemit\"],\"image\":[\"http://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\"]}", - "last_update": "2016-08-06T21:50:00", - "created": "2016-08-06T21:50:00", - "active": "2016-08-06T21:50:51", - "last_payout": "2016-09-06T09:52:18", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 1937, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 5, - "root_author": "a11at", - "root_permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] -} \ No newline at end of file +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-15T05:28:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-m3001", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hi, I'm A.M for now, I'm in my mid-20s and want to share my story with working and facing this thing called life after I watched a lot of YouTubers like Thomas James \"TomSka\" David Brown \u201cboyinaband\u201d and many others who have very openly shared their hardships, they have inspired me to write this\u2026.. Whatever this is.\nI don't consider myself a good writer so bare with me here.\nTo try to keep this post organized and make sense I'll highlight the point I want to talk about and tell the relevant part of my story, you can connect the pieces all together at the end.\n\n**First how am I?** \nI grow up in the countryside I went to normal school when I was yang, because I was the quiet introvert and wasn't from the town I was in I got bullied a lot for most of my time at school, I got through school time knowing just two friends, I was OK with it.\nI genuinely lost interest in school when I was in the ninth grade It seemed more like a memory test than a way of learning so I started looking for ways to make money, \"why waste time learning things irrelevant in real life if I can make money now\" my naive 16 years old self said, don't get me wrong I didn't think I was done with learning I just wanted to learn in my own way, and I didn't stop school, now I'm in part time Business school, so back then I started looking for any way to make money in the last 5 year I tried: working in sales for over 2 years, selling products online, becoming instructor online, worked as SEO & social media consultant, tried starting my own business for 4 times, and for the last year and half I taught myself how to program and how to use Unity game engine and now I'm working on my first game, I can easily and proudly say that I didn't succeed at any of what I did so far, but I've learned a lot every time and I would do it all over again if I had the chance.\nThe process of picking myself up every single freaking time was a living hell and I got desperate many times.\nbecause I saw a lot of people feeling relevant to what David said in his video I want to share how I managed to keep my sanity and my opinion about some point he brought in his video.\n\n\n**Not thinking your work is good enough:**\nIs that really a bad thing? not being satisfied with what you just accomplished is a sign that you always look forward to what you still can do.\nI remember after I published my first course on Udemy I got invited to a hangout and I went for it I thought I'll give myself some slack, while I was there someone shouted out \"this guy here just published his first course let all give him a clap shall we\" for some reason he thought that was a good idea, I don't think I can blame him his intentions were good, I never tried to put a smile as hard as I did that moment I guess I just didn't want to look like a selfish prick, but the truth that I wasn't happy about what I accomplished I was thinking about my bad English poor structure of the course and was I being a sellout for trying to sell my knowledge? halfway of creating the course, I was already thinking about 5 other things I wanted to do next.\nI think there's nothing wrong about not being satisfied with what you finish, I think It's a good sign of an ambitious creator.\nWhen you first make the decision to accomplish something It looks like that godly thing that you think It would feel good to have or do, but when you start turning that big sexy thing to a small to-do list somewhere the appeal you had to that thing will disappear to a certain point, it's not that godly sexy thing you thought about before it's becoming a part of your routine now you know the process of doing that thing It's not a mystery anymore.\nI think that's why they say: \"It's about the journey, not the destination\".\n\n\n**Not taking care of yourself:**\nIt's hard to keep taking care of yourself to others people standards, whether it's about looking ripped putting makeup or buying the latest clothes, instead find your own save point and move forward from there if you feel the need to.\nWhen I was working in seals I had to look my best most of the time's which was exhausting more than the work itself and what made it worst is that some coworkers starting hinting that I need to start working out to look sharper and more confident.\nBecause I was desperate for results from my work I started going to the gym and I got stuck at joining for a month or two then giving up for half a year couple of times, every time I stopped going to the gym I over beat myself saying that I need this for my work, I need more money to do a lot of things, if this work didn't go well what else Am I going to do, eventually I usually took it out on food, I don't even want to start thinking what would have happened to me if my body was able to store fat.\nTrying to take care of yourself to others standards can be very exhausting, I felt down because I was putting so much effort in things I don't really care about to get others approval, I genuinely don't care about having a ripped body, it would look cool sure but I'm not willing to put all that effort into health and looks at least for now, who knows maybe in the future things will be better and I'll be willing to put the effort necessary to have 6 pack abs (wink wink ladies).\nNowadays I eat better than I used to, I still eat some junk food but things are much much better than they were 2 years ago, when I fell down I still go buy and drink a liter of Pepsi but at some point that was my morning coffee, as for my looks I cut my hair very short so I would have one less thing to worry about in the morning, I shave my beard once every couple of weeks I change my cloth every two or three days even if I didn't go out.\nThe point is I take care of myself for my own sack, It was much worse before and I'll always keep working to improve pit by pit.\nIt's about building habits not getting motivated for a couple of weeks then beating yourself for not being able to keep up.\n\n\n**Not mastering one skill:**\nI worked in sales, instructed online, worked as SEO and social media consultant, self taught myself how to program and make games but I don\u2019t think I\u2019m the right person to talk about this, all I\u2019m saying that if you didn\u2019t find that one true call that is right for you, you might be a \u201cmultipotentialite\u201d if you want to know what exactly does this mean I urge you to watch Emilie talk at TedX\nhttps://www.youtube.com/watch?v=QJORi5VO1F8\nAnd check the blog too if you want to know more \nhttp://puttylike.com/\n\n**Everything happens for a reason........ or does it?**\nWhen I was young I was fortunate to know a good old religious man, I don\u2019t know about your perspective about religions but hear me out this isn\u2019t a sermon, I still remember when he tried to teach me that everything happens for a reason I was like \u201cWHAT\u2026\u2026. Oh really, then what is the reason for this and this and that\u201d my question didn\u2019t stop and I wasn\u2019t asking nicely either yet, somehow he was calm about it like some kind of monk, I don\u2019t know if I ruined his day or not but I feel bad for taking the world misery out on him that day, he was just a simple man who was doing what he think is good for others, his intentions were good but unfortunately for him I wasn\u2019t a simple person, I overthink everything and everyone, it\u2019s my blessing and my curse, later I told my family about him and I was surprised that they knew him, apparently everyone knows each other in the countryside, they told me about what he was facing lately personally, financially, and emotionally, I didn\u2019t believe that someone who is facing all that isn\u2019t depressed or angry and even trying to do good for others at least by his believes, I wanted to know more about him he got my interest, I wanted to know if he\u2019s an imposter who is just putting a good face or not because a part of me didn\u2019t believe how can he be that good, I kept asking about him from time to time and sometimes I even went to his \u201clessons\u201d, eventually I went to face him with what I know about him like a detective facing a criminal, the crime of being that simple yet trying to be better than me, It\u2019s pathetic I know It\u2019s just how my brain works sometimes, because I used to take pride of being logical about everything and not believing in anything without questioning it, it bothered me how can he be at peace with his life and I\u2019m not even that he\u2019s facing a lot more than I\u2019m, I faced him and told him everything then asked how can you be this calm about everything that is happening in your life, he had a faint smile and said \u201cI don\u2019t know the reason for everything that is happening right now but everything happens for a reason\u201d I remember holding my fist hard and walking away, maybe I was holding my fist trying not to hit him for not being realistic like me or probably not to beat myself for not being half the man that he was.\nI don\u2019t know about your perspective about religions and I\u2019m not here to tell you about mine but I respect that some religions teach that everything happens for a reason, is it the truth? Does everything happens for a reason? I don\u2019t know, I don\u2019t think that is even the point, It\u2019s silly to even get in an argument about this because no one can be sure about it, it\u2019s simply just a belief, it\u2019s simply teach you to not overthink about the reasons for everything around you, just learn from it if you can and focus on what you can do, it\u2019s kind of funny for me to tell you not to overthink about somethings because I\u2019m sure my 19 year old me would punch me right in the face, but it\u2019s just too draining and exhausting to try to find a reason for every bad thing that have happened to me or to others.\nIn the last three years two of my best friends died, the first one I knew for about nine years and the other one for around five, both killed, both in a way they didn\u2019t deserve to, each time I had to force myself to focus on the 0.0000001% full part of the cup or else I would have lose my sanity.\nI would hate to think what would be my thought process if someone tried to sell me religion like a product, some of them would be like \u201cHi son, you should follow my beliefs because I\u2019m 100% sure that I\u2019m right and everybody else is wrong and if you don\u2019t, well you\u2019re FU**ED\u201d that would have disfigured some of the beliefs that helped me get better.\nControlling your stream of thoughts will be the hardest thing you\u2019ll ever have to do in your life, but if mastered it you\u2019ll become unstoppable.\n\n\nI\u2019ve been getting into the game industry for around year and half now, I don\u2019t have any experiance in the field but I\u2019ve other experiences that many don\u2019t, working in sales made me learn a lot about people's motivations and incentives, I saw a lot of people jump to make purchase while other chicken out last minute, you don\u2019t get to learn about this in a book or an NLP course, you only get to learn this experience by working in sales first hand, working as an SEO and social media consultant made me care about the little details like posting in the right social medias that is more relevant to your audience, more isn\u2019t always better, choosing the right words colors and timing for best result, sometimes modifying your content for a better marketing or not going into a certain niche even if there\u2019s an audience for it because it doesn\u2019t suit your brand, teaching online made me learn that the selling point isn\u2019t the end goal, helping and mentoring students even after they have purchased the course was way more important than I thought, the feedback I got about the course was crucial to take the course to the next level and some student even helped me with some marketing.\nIf you know anything about the mobile game industry you can see how these experiences can be helpful, I can imagine the kind of journey I want to create for the player because I can build the motivations and incentives I want for him, while I\u2019m building the player journey I\u2019ll always keep in mind to put the monetization and ads the right way so all of them can work seamlessly together for a better player experience, and taking care of existing players and community will always be a priority, I wasn\u2019t happy and cheerful when I had to learn these experiences the hard way, I thought I was just failing, I even remember crying myself to sleep every time I decided to pull the plug on something I was working on, but eventually It worked out somehow I think.\n\u201cyou can't connect the dots looking forward, you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something - your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life\u201d.\nSteve Jobs\n\n\nI want to share some of the tricks I used that helped my in general to get my life together:\n\n**Music**\nlisten to cheerful music, even if it might not be exactly what you listen to usually but try them for a while, my favorite type or music is Rock and Metal it\u2019s loud and make me feel empowered but sometimes it's not what I need to change my mood so I started listening to electro music mostly Drum & bass, I didn\u2019t like it at first, I\u2019m human I don\u2019t like to change, but forcing myself to listen to it for while change my perspective about it and I started listening to it while I\u2019m working, and it worked.\n\n\n**habits not motivation**\nWe\u2019re slaves to our habits, it\u2019s exhausting to do something that\u2019s you\u2019re not used to for quite a while, so invest your effort and time to build your habits pit by pit no matter how slow it will take, measure your progress and celebrate your success no matter how small they\u2019re, it\u2019ll make all the difference in your life in the long term.\n\n**work in a group**\nNo matter how introverted person you think you\u2019re, you\u2019re still human at the end of day and you need your dose of human interaction so try to work in group if you can, if you don\u2019t have that luxury (like me) work out side from time to time, library, coffee shop, parks all works, changing your surrounding and environment can change your mood, you can try changing your room\\office decor every couple of weeks too.\n\n**warm-blooded pet**\nGet a warm-blooded pet it helps, I tried fish and turtles but didn\u2019t really work for me they just stared at me with their empty eyes, I have a cat for two year now and It helped, maybe it\u2019s having the sense of that there is a creature that needs you to look after him, it\u2019s helped me not to feel completely unworthy in some bad day.\n\n\nFinally I hope this help you in any way it can, and hope it will find its way to all who needs it.", + "cashout_time": "1969-12-31T23:59:59", + "category": "story", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T04:53:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 811667, + "json_metadata": "{\"tags\":[\"story\",\"philosophy\",\"life\",\"psychology\",\"secret-writer\"],\"links\":[\"https://www.youtube.com/watch?v=QJORi5VO1F8\"]}", + "last_payout": "2016-09-14T16:58:03", + "last_update": "2016-08-15T05:28:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "how-i-managed-depression-and-work", + "reward_weight": 10000, + "root_author": "a-m3001", + "root_permlink": "how-i-managed-depression-and-work", + "title": "How I managed depression and work", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-07T21:34:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-man", + "author_rewards": 0, + "beneficiaries": [], + "body": "Trying to repost to FB", + "cashout_time": "1969-12-31T23:59:59", + "category": "homeschooling", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-07T21:34:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 670168, + "json_metadata": "{\"tags\":[\"homeschooling\"]}", + "last_payout": "2016-09-07T09:52:42", + "last_update": "2016-08-07T21:34:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "jamiecrypto", + "parent_permlink": "raising-leaders-instead-of-rulers", + "percent_hbd": 10000, + "permlink": "re-jamiecrypto-raising-leaders-instead-of-rulers-20160807t213425757z", + "reward_weight": 10000, + "root_author": "jamiecrypto", + "root_permlink": "raising-leaders-instead-of-rulers", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T21:34:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "Finally someone is saying it out loud. thank you!!", + "cashout_time": "1969-12-31T23:59:59", + "category": "life", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-30T19:37:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 496078, + "json_metadata": "{\"tags\":[\"life\"]}", + "last_payout": "2016-08-30T10:16:39", + "last_update": "2016-07-30T19:38:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "agent", + "parent_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "percent_hbd": 10000, + "permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", + "reward_weight": 10000, + "root_author": "agent", + "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T21:01:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "add katie-lynn boulard on FB, she's my friend and she's currently doing an exchange in bangkok. She's really sweet and she said you can come to hers for the evening if you want to have some company. she only has a room so no bed for you :/ but at least something, I'm sure she can give you a meal and just some company. :))", + "cashout_time": "1969-12-31T23:59:59", + "category": "travel", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-13T20:34:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 100405, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "2016-08-25T12:51:45", + "last_update": "2016-07-13T20:34:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 20, + "parent_author": "ashleybr", + "parent_permlink": "test", + "percent_hbd": 10000, + "permlink": "re-ashleybr-test-20160713t203411015z", + "reward_weight": 10000, + "root_author": "ashleybr", + "root_permlink": "test", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T05:09:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\n\nAI Revolution 101\nOur last invention, greatest nightmare, or pathway to utopia?\nAbout\nThis essay, originally published in eight short parts, aims to condense the current knowledge on Artificial Intelligence. It explores the state of AI development, overviews its challenges and dangers, features work by the most significant scientists, and describes the main predictions of possible AI outcomes. This project is an adaptation and major shortening of the two\u2013part essay AI Revolution by Tim Urban of Wait But Why. I shortened it by a factor of 3, recreated all images, and tweaked it a bit. Read more on why/how I wrote it here.\nIntroduction\nAssuming that human scientific activity continues without major disruptions, artificial intelligence may become either the most positive transformation of our history or, as many fear, our most dangerous invention of all. AI research is on a steady path to develop a computer that has cognitive abilities equal to the human brain, most likely within three decades (timeline in chapter 5). From what most AI scientists predict, this invention may enable very rapid improvements (called fast take-off), toward something much more powerful\u200a\u2014\u200aArtificial Super Intelligence\u200a\u2014\u200aan entity smarter than all of humanity combined (more on ASI in chapter 3). We are not talking about some imaginary future. The first level of AI development is gradually appearing in the technology we use everyday (newest AI advancements in chapter 2). With every coming year these advancements will accelerate and the technology will become more complex, addictive, and ubiquitous. We will continue to outsource more and more kinds of mental work to computers, disrupting every part of our reality: the way we organize ourselves and our work, form communities, and experience the world.\nExponential Growth\nThe Guiding Principle Behind Technological Progress\nTo more intuitively grasp the guiding principles of AI revolution, let\u2019s first step away from scientific research. Let me invite you to take part in a story. Imagine that you\u2019ve received a time machine and been given a quest to bring somebody from the past. The goal is to shock them by showing them the technological and cultural advancements of our time, to such a degree that this person would perform SAFD (Spinning Around From Disbelief).\n\nSo you wonder which era should you time-travel to, and decide to hop back around 200 years. You get to the early 1800s, retrieve a guy and bring him back to 2016. You \u201c\u2026walk him around and watch him react to everything. It\u2019s impossible for us to understand what it would be like for him to see shiny capsules racing by on a highway, talk to people who had been on the other side of the ocean earlier in the day, watch sports that were being played 1,000 miles away, hear a musical performance that happened 50 years ago, and play with \u2026[a] magical wizard rectangle that he could use to capture a real-life image or record a living moment, generate a map with a paranormal moving blue dot that shows him where he is, look at someone\u2019s face and chat with them even though they\u2019re on the other side of the country, and worlds of other inconceivable sorcery.\u201d\u00b9 It doesn\u2019t take much. After two minutes he is SAFDing.\nNow, both of you want to try the same thing, see somebody Spinning Around From Disbelief, but in your new friend\u2019s era. Since 200 years worked, you jump back to the 1600s and bring a guy to the 1800s. He\u2019s certainly genuinely interested in what he sees. However, you feel it with confidence\u200a\u2014\u200aSAFD will never happen to him. You feel that you need to jump back again, but somewhere radically further. You settle on rewinding the clock 15,000 years, to the times \u201c\u2026before the First Agricultural Revolution gave rise to the first cities and the concept of civilisations.\u201d\u00b2 You bring someone from the hunter-gatherer world and show him \u201c\u2026the vast human empires of 1750 with their towering churches, their ocean-crossing ships, their concept of being \u201cinside,\u201d and their enormous mountain of collective, accumulated human knowledge and discovery\u201d\u00b3\u200a\u2014\u200ain forms of books. It doesn\u2019t take much. He is SAFDing in the first two minutes.\nNow there are three of you, enormously excited to do it again. You know that it doesn\u2019t make sense to go back another 15,000, 30,000 or 45,000 years. You have to jump back, again, radically further. So you pick up a guy from 100,000 years ago and you you walk with him into large tribes with organized, sophisticated social hierarchies. He encounters a variety of hunting weapons, sophisticated tools, sees fire and for the first time experiences language in the form of signs and sounds. You get the idea, it has to be immensely mind-blowing. He is SAFDing after two minutes.\nSo what happened? Why did the last guy had to hop \u2192 100,000 years, the next one \u2192 15,000 years, and the guy who was hopping to our times only \u2192 200 years?\n\nhttps://cdn-images-1.medium.com/max/2000/1*Wbd0td3DqD3pJo7_YHjkbQ.gif\n\n\u201cThis happens because more advanced societies have the ability to progress at a faster rate than less advanced societies\u200a\u2014\u200abecause they\u2019re more advanced. [1800s] humanity knew more and had better technology\u2026\u201d\u2074, so it\u2019s no wonder they could make further advancements than humanity from 15,000 years ago. The time to achieve SAFD shrank from ~100,000 years to ~200 years and if we look into the future it will rapidly shrink even further. Ray Kurzweil, AI expert and scientist, predicts that a \u201c\u202620th century\u2019s worth of progress happened between 2000 and 2014 and that another 20th century\u2019s worth of progress will happen by 2021, in only seven years\u2075\u2026A couple decades later, he believes a 20th century\u2019s worth of progress will happen multiple times in the same year, and even later, in less than one month\u2076\u2026Kurzweil believes that the 21st century will achieve 1,000 times the progress of the 20th century.\u201d\u2077\n\u201cLogic also suggests that if the most advanced species on a planet keeps making larger and larger leaps forward at an ever-faster rate, at some point, they\u2019ll make a leap so great that it completely alters life as they know it and the perception they have of what it means to be a human. Kind of like how evolution kept making great leaps toward intelligence until finally it made such a large leap to the human being that it completely altered what it meant for any creature to live on planet Earth. And if you spend some time reading about what\u2019s going on today in science and technology, you start to see a lot of signs quietly hinting that life as we currently know it cannot withstand the leap that\u2019s coming next.\u201d\u2078\nThe Road to Artificial General Intelligence\nBuilding a Computer as Smart as Humans\nArtificial Intelligence, or AI, is a broad term for the advancement of intelligence in computers. Despite varied opinions on this topic, most experts agree that there are three categories, or calibers, of AI development. They are:\nANI: Artificial Narrow Intelligence\n1st intelligence caliber. \u201cAI that specializes in one area. There\u2019s AI that can beat the world chess champion in chess, but that\u2019s the only thing it does.\u201d\u2079\nAGI: Artificial General Intelligence\n2nd intelligence caliber. AI that reaches and then passes the intelligence level of a human, meaning it has the ability to \u201creason, plan, solve problems, think abstractly, comprehend complex ideas, learn quickly, and learn from experience.\u201d\u00b9\u2070\nASI: Artificial Super Intelligence\n3rd intelligence caliber. AI that achieves a level of intelligence smarter than all of humanity combined\u200a\u2014\u200a\u201cranging from just a little smarter \u2026 to one trillion times smarter.\u201d\u00b9\u00b9\n\nhttps://cdn-images-1.medium.com/max/800/1*5AkzXZJoVXRrGNSOO8ZojQ.gif\n\nWhere are we currently?\n\u201cAs of now, humans have conquered the lowest caliber of AI\u200a\u2014\u200aANI\u200a\u2014\u200ain many ways, and it\u2019s everywhere:\u201d\u00b9\u00b2\n\u201cCars are full of ANI systems, from the computer that figures out when the anti-lock brakes kick in, to the computer that tunes the parameters of the fuel injection systems.\u201d\u00b9\u00b3\n\u201cGoogle search is one large ANI brain with incredibly sophisticated methods for ranking pages and figuring out what to show you in particular. Same goes for Facebook\u2019s Newsfeed.\u201d\u00b9\u2074\nEmail spam filters \u201cstart off loaded with intelligence about how to figure out what\u2019s spam and what\u2019s not, and then it learns and tailors its intelligence to your particular preferences.\u201d\u00b9\u2075\nPassenger planes are flown almost entirely by ANI, without the help of humans.\n\u201cGoogle\u2019s self-driving car, which is being tested now, will contain robust ANI systems that allow it to perceive and react to the world around it.\u201d\u00b9\u2076\n\u201cYour phone is a little ANI factory \u2026 you navigate using your map app, receive tailored music recommendations from Pandora, check tomorrow\u2019s weather, talk to Siri.\u201d\u00b9\u2077\n\u201cThe world\u2019s best Checkers, Chess, Scrabble, Backgammon, and Othello players are now all ANI systems.\u201d\u00b9\u2078\n\u201cSophisticated ANI systems are widely used in sectors and industries like military, manufacturing, and finance (algorithmic high-frequency AI traders account for more than half of equity shares traded on US markets\u00b9\u2079).\u201d\u00b2\u2070\n\u201cANI systems as they are now aren\u2019t especially scary. At worst, a glitchy or badly-programed ANI can cause an isolated catastrophe like\u201d\u00b2\u00b9 a plane crash, a nuclear power plant malfunction, or \u201ca financial markets disaster (like the 2010 Flash Crash when an ANI program reacted the wrong way to an unexpected situation and caused the stock market to briefly plummet, taking $1 trillion of market value with it, only part of which was recovered when the mistake was corrected) \u2026 But while ANI doesn\u2019t have the capability to cause an existential threat, we should see this increasingly large and complex ecosystem of relatively-harmless ANI as a precursor of the world-altering hurricane that\u2019s on the way. Each new ANI innovation quietly adds another brick onto the road to AGI and ASI.\u201d\u00b2\u00b2\n\nhttps://cdn-images-1.medium.com/max/2000/1*Ia8wUuZPxpUNzvUjNRsxpA.gif\n\nWhat\u2019s Next? Challenges Behind Reaching AGI\n\u201cNothing will make you appreciate human intelligence like learning about how unbelievably challenging it is to try to create a computer as smart as we are \u2026 Build a computer that can multiply ten-digit numbers in a split second\u200a\u2014\u200aincredibly easy. Build one that can look at a dog and answer whether it\u2019s a dog or a cat\u200a\u2014\u200aspectacularly difficult. Make AI that can beat any human in chess? Done. Make one that can read a paragraph from a six-year-old\u2019s picture book and not just recognise the words but understand the meaning of them? Google is currently spending billions of dollars trying to do it.\u201d\u00b2\u00b3\nWhy are \u201chard things\u200a\u2014\u200alike calculus, financial market strategy, and language translation \u2026 mind-numbingly easy for a computer, while easy things\u200a\u2014\u200alike vision, motion, movement, and perception\u200a\u2014\u200aare insanely hard for it\u201d\u00b2\u2074?\n\u201cThings that seem easy to us are actually unbelievably complicated. They only seem easy because those skills have been optimized in us (and most animals) by hundreds of million years of animal evolution. When you reach your hand up toward an object, the muscles, tendons, and bones in your shoulder, elbow, and wrist instantly perform a long series of physics operations, in conjunction with your eyes, to allow you to move your hand in a straight line through three dimensions \u2026 On the other hand, multiplying big numbers or playing chess are new activities for biological creatures and we haven\u2019t had any time to evolve a proficiency at them, so a computer doesn\u2019t need to work too hard to beat us.\u201d\u00b2\u2075\n\nhttps://cdn-images-1.medium.com/max/1200/0*E-qdF22nxvOrVPxP.\n\nWhen you look at picture A, \u201cyou and a computer both can figure out that it\u2019s a rectangle with two distinct shades, alternating. Tied so far.\u201d\u00b2\u2076\nPicture B. \u201cYou have no problem giving a full description of the various opaque and translucent cylinders, slats, and 3-D corners, but the computer would fail miserably. It would describe what it sees\u200a\u2014\u200aa variety of two-dimensional shapes in several different shades\u200a\u2014\u200awhich is actually what\u2019s there.\u201d\u00b2\u2077 \u201cYour brain is doing a ton of fancy shit to interpret the implied depth, shade-mixing, and room lighting the picture is trying to portray.\u201d\u00b2\u2078\nLooking at picture C, \u201ca computer sees a two-dimensional white, black, and gray collage, while you easily see what it really is\u201d\u00b2\u2079\u200a\u2014\u200aa photo of a girl and a dog standing on a rocky shore.\n\u201cAnd everything we just mentioned is still only taking in visual information and processing it. To be human-level intelligent, a computer would have to understand things like the difference between subtle facial expressions, the distinction between being pleased, relieved and content\u201d\u00b3\u2070.\nHow will computers reach even higher abilities like complex reasoning, interpreting data, and associating ideas from separate fields (domain-general knowledge)?\n\u201cBuilding skyscrapers, putting humans in space, figuring out the details of how the Big Bang went down\u200a\u2014\u200aall far easier than understanding our own brain or how to make something as cool as it. As of now, the human brain is the most complex object in the known universe.\u201d\u00b3\u00b9\nBuilding Hardware\nIf an artificial intelligence is going to be as intelligent as the human brain, one crucial thing has to happen\u200a\u2014\u200athe AI \u201cneeds to equal the brain\u2019s raw computing capacity. One way to express this capacity is in the total calculations per second the brain could manage.\u201d\u00b3\u00b2\n\nThe challenge is that currently only a few of the brain\u2019s regions are precisely measured. However, Ray Kurzweil, has developed a method for estimating the total cps of the human brain. He arrived at this estimate by taking the cps from one brain region and multiplying it proportionally to the weight of that region, compared to the weight of the whole brain. \u201cHe did this a bunch of times with various professional estimates of different regions, and the total always arrived in the same ballpark\u200a\u2014\u200aaround 10\u00b9\u2076, or 10 quadrillion cps.\u201d\u00b3\u00b3\n\u201cCurrently, the world\u2019s fastest supercomputer, China\u2019s Tianhe-2, has actually beaten that number, clocking in at about 34 quadrillion cps.\u201d\u00b3\u2074 But Tianhe-2 is also monstrous, \u201ctaking up 720 square meters of space, using 24 megawatts of power (the brain runs on just 20 watts), and costing $390 million to build. Not especially applicable to wide usage, or even most commercial or industrial usage yet.\u201d\u00b3\u2075\n\u201cKurzweil suggests that we think about the state of computers by looking at how many cps you can buy for $1,000. When that number reaches human-level\u200a\u2014\u200a10 quadrillion cps\u200a\u2014\u200athen that\u2019ll mean AGI could become a very real part of life.\u201d\u00b3\u2076\nCurrently we\u2019re only at about 10\u00b9\u2070 (10 trillion) cps per $1,000. However, historically reliable Moore\u2019s Law states \u201cthat the world\u2019s maximum computing power doubles approximately every two years, meaning computer hardware advancement, like general human advancement through history, grows exponentially\u00b3\u2077 \u2026 right on pace with this graph\u2019s predicted trajectory:\u201d\u00b3\u2078\n\nhttps://cdn-images-1.medium.com/max/800/1*4qcqwbsWjvWh-BWPnAsp6g.gif\n\nThis dynamic \u201cputs us right on pace to get to an affordable computer by 2025 that rivals the power of the brain \u2026 But raw computational power alone doesn\u2019t make a computer generally intelligent\u200a\u2014\u200athe next question is, how do we bring human-level intelligence to all that power?\u201d\u00b3\u2079\nBuilding Software\nThe hardest part of creating AGI is learning how to develop its software. \u201cThe truth is, no one really knows how to make it smart\u200a\u2014\u200awe\u2019re still debating how to make a computer human-level intelligent and capable of knowing what a dog and a weird-written B and a mediocre movie is.\u201d\u2074\u2070 But there are a couple of strategies. These are the three most common:\nCopy how the brain works.\nThe most straight-forward idea is to plagiarize the brain, and build the computer\u2019s architecture with close resemblance to how a brain is structured. One example \u201cis the artificial neural network. It starts out as a network of transistor \u2018neurons,\u2019 connected to each other with inputs and outputs, and it knows nothing\u200a\u2014\u200alike an infant brain. The way it \u2018learns\u2019 is it tries to do a task, say handwriting recognition, and at first, its neural firings and subsequent guesses at deciphering each letter will be completely random. But when it\u2019s told it got something right, the transistor connections in the firing pathways that happened to create that answer are strengthened; when it\u2019s told it was wrong, those pathways\u2019 connections are weakened. After a lot of this trial and feedback, the network has, by itself, formed smart neural pathways and the machine has become optimized for the task.\u201d\u2074\u00b9\nThe second, more radical approach to plagiarism is whole brain emulation. Scientists take a real brain, cut it into a large number of tiny slices to look at the neural connections and replicate them in a computer as software. If that method is ever successful, we will have \u201ca computer officially capable of everything the brain is capable of\u200a\u2014\u200ait would just need to learn and gather information \u2026 How far are we from achieving whole brain emulation? Well so far, we\u2019ve just recently been able to emulate a 1mm-long flatworm brain, which consists of just 302 total neurons.\u201d\u2074\u00b2 To put this into perspective, the human brain consists of 86 billion neurons linked by trillions of synapses.\n2. Introduce evolution to computers.\n\u201cThe fact is, even if we can emulate a brain, that might be like trying to build an airplane by copying a bird\u2019s wing-flapping motions\u200a\u2014\u200aoften, machines are best designed using a fresh, machine-oriented approach, not by mimicking biology exactly.\u201d\u2074\u00b3 If the brain is just too complex for us to digitally replicate, we could try to emulate evolution instead. This uses a process called genetic algorithms. \u201cA group of computers would try to do tasks, and the most successful ones would be bred with each other by having half of each of their programming merged together into a new computer. The less successful ones would be eliminated.\u201d\u2074\u2074 Speed and a goal-oriented approach are the advantages that artificial evolution has over biological evolution. \u201cOver many, many iterations, this natural selection process would produce better and better computers. The challenge would be creating an automated evaluation and breeding cycle so this evolution process could run on its own.\u201d\u2074\u2075\n3. \u201cMake this whole thing the computer\u2019s problem, not ours.\u201d\u2074\u2076\nThe last concept is the simplest, but probably the scariest of them all. \u201cWe\u2019d build a computer whose two major skills would be doing research on AI and coding changes into itself\u200a\u2014\u200aallowing it to not only learn but to improve its own architecture. We\u2019d teach computers to be computer scientists so they could bootstrap their own development.\u201d\u2074\u2077 This is the likeliest way to get AGI soon that we know of.\nAll these software advances may seem slow or a little bit intangible, but as it is with the sciences, one minor innovation can suddenly accelerate the pace of developments. Kind of like the aftermath of the Copernican revolution\u200a\u2014\u200athe discovery that suddenly made all the complicated mathematics of the planets\u2019 trajectories much easier to calculate, which enabled a multitude of other innovations. Also, the \u201cexponential growth is intense and what seems like a snail\u2019s pace of advancement can quickly race upwards.\u201d\u2074\u2078\n\nhttps://cdn-images-1.medium.com/max/1200/1*BHwAlKJFYwKYEzZlitNTvQ.gif\n\nThe Road to Artificial Super Intelligence\nAn Entity Smarter than all of Humanity Combined\nIt\u2019s very real that at some point we will achieve AGI: software that has achieved human-level, or beyond human-level, intelligence. Does this mean that at that very moment the computers will be equally capable as us? Actually, not at all\u200a\u2014\u200acomputers will be way more efficient. Because of the fact that they are electronic, they will have following advantages:\nSpeed. \u201cThe brain\u2019s neurons max out at around 200 Hz, while today\u2019s microprocessors \u2026 run at 2 GHz, or 10 million times faster.\u201d\u2075\u00b9\nMemory. Forgetting or confusing things is much harder in an artificial world. Computers can memorize more things in one second than a human can in ten years. A computer\u2019s memory is also more precise and has a much greater storage capacity.\nPerformance. \u201cComputer transistors are more accurate than biological neurons, and they\u2019re less likely to deteriorate (and can be repaired or replaced if they do). Human brains also get fatigued easily, while computers can run nonstop, at peak performance, 24/7.\u201d\u2075\u00b2\nCollective capability. Group work is ridiculously challenging because of time-consuming communication and complex social hierarchies. The bigger the group gets, the slower the output of each person becomes. AI, on the other hand, isn\u2019t biologically constrained to one body, won\u2019t have human cooperation problems, and is able to synchronize and update its own operating system.\nIntelligence Explosion\nWe need to realize that AI \u201cwouldn\u2019t see \u2018human-level intelligence\u2019 as some important milestone\u200a\u2014\u200ait\u2019s only a relevant marker from our point of view\u200a\u2014\u200aand wouldn\u2019t have any reason to \u2018stop\u2019 at our level. And given the advantages over us that even human intelligence-equivalent AGI would have, it\u2019s pretty obvious that it would only hit human intelligence for a brief instant before racing onwards to the realm of superior-to-human intelligence.\u201d\u2075\u00b3\nThe true distinction between humans and ASI wouldn\u2019t be its advantage in intelligence speed, but \u201cin intelligence quality\u200a\u2014\u200awhich is something completely different. What makes humans so much more intellectually capable than chimps isn\u2019t a difference in thinking speed\u200a\u2014\u200ait\u2019s that human brains contain a number of sophisticated cognitive modules that enable things like complex linguistic representations or longterm planning or abstract reasoning, that chimps\u2019 brains do not have. Speeding up a chimp\u2019s brain by thousands of times wouldn\u2019t bring him to our level\u200a\u2014\u200aeven with a decade\u2019s time of learning, he wouldn\u2019t be able to figure out how to \u2026 \u201d\u2075\u2074 assemble a semi-complicated Lego model by looking at its manual\u200a\u2014\u200asomething a young human could achieve in a few minutes. \u201cThere are worlds of human cognitive function a chimp will simply never be capable of, no matter how much time he spends trying.\u201d\u2075\u2075\n\u201cAnd in the scheme of the biological intelligence range \u2026 the chimp-to-human quality intelligence gap is tiny.\u201d\u2075\u2076\n\nhttps://cdn-images-1.medium.com/max/800/1*vnVWATTAMCwfnJu_iZn2RQ.jpeg\n\nIn order to render how big a deal it would be to exist with something that has a higher quality of intelligence than us, we need to imagine AI on the intelligence staircase two steps above us\u200a\u2014\u200a\u201cits increased cognitive ability over us would be as vast as the chimp\u2013human gap \u2026 And like the chimp\u2019s incapacity to ever absorb \u2026\u201d\u2075\u2077 what kind of magic happens in the mechanism of a doorknob\u200a\u2014\u200a\u201cwe will never be able to even comprehend the things \u2026 [a machine of that intelligence] can do, even if the machine tried to explain them to us \u2026 And that\u2019s only two steps above us.\u201d\u2075\u2078\n\u201cA machine on the second-to-highest step on that staircase would be to us as we are to ants.\u201d\u2075\u2079 \u201cSuperintelligence of that magnitude is not something we can remotely grasp, any more than a bumblebee can wrap its head around Keynesian Economics. In our world, smart means a 130 IQ and stupid means an 85 IQ\u200a\u2014\u200awe don\u2019t have a word for an IQ of 12,952.\u201d\u2076\u2070\n\u201cBut the kind of superintelligence we\u2019re talking about today is something far beyond anything on this staircase. In an intelligence explosion\u200a\u2014\u200awhere the smarter a machine gets, the quicker it\u2019s able to increase its own intelligence\u200a\u2014\u200aa machine might take years to rise from \u2026 \u201d\u2076\u00b9 the intelligence of an ant to the intelligence of the average human, but it might take only another 40 days to become Einstein-smart. When that happens, \u201cit works to improve its intelligence, with an Einstein-level intellect, it has an easier time and can make bigger leaps. These leaps will make it much smarter than any human, allowing it to make even bigger leaps.\u201d\u2076\u00b2\nFrom then on, following the rule of exponential advancements and utilizing the speed and efficiency of electrical circuits, it may perhaps take only 20 minutes to jump another step, \u201cand by the time it\u2019s ten steps above us, it might be jumping up in four-step leaps every second that goes by. Which is why we need to realize that it\u2019s distinctly possible that very shortly after the big news story about the first machine reaching human-level AGI, we might be facing the reality of coexisting on the Earth with something that\u2019s here on the staircase (or maybe a million times higher):\u201d\u2076\u00b3\n\nhttps://cdn-images-1.medium.com/max/800/0*LdJxmWCjSdweUKvb.\n\n\u201cAnd since we just established that it\u2019s a hopeless activity to try to understand the power of a machine only two steps above us, let\u2019s very concretely state once and for all that there is no way to know what ASI will do or what the consequences will be for us. Anyone who pretends otherwise doesn\u2019t understand what superintelligence means.\u201d\u2076\u2074\n\u201cIf our meager brains were able to invent wifi, then something 100 or 1,000 or 1 billion times smarter than we are should have no problem controlling the positioning of each and every atom in the world in any way it likes, at any time\u200a\u2014\u200aeverything we consider magic, every power we imagine a supreme God to have will be as mundane an activity for the ASI as flipping on a light switch is for us.\u201d\u2076\u2075\n\u201cAs far as we\u2019re concerned, if an ASI comes into being, there is now an omnipotent God on Earth\u200a\u2014\u200aand the all-important question for us is: Will it be a good god?\u201d\u2076\u2076\nLet\u2019s start from the brighter side of the story.\nHow Can ASI Change our World?\nSpeculations on Two Revolutionary Technologies\nNanotechnology\nNanotechnology is an idea that comes up \u201cin almost everything you read about the future of AI.\u201d\u2076\u2077 It\u2019s the technology that works at the nano scale\u200a\u2014\u200afrom 1 to 100 nanometers. \u201cA nanometer is a millionth of a millimeter. 1 nm\u2013100 nm range encompasses viruses (100 nm accross), DNA (10 nm wide), and things as small as molecules like hemoglobin (5 nm) and medium molecules like glucose (1 nm). If/when we conquer nanotechnology, the next step will be the ability to manipulate individual atoms, which are only one order of magnitude smaller (~.1 nm).\u201d\u2076\u2078\nTo put this into perspective, imagine a very tall human standing on the earth, with a head that reaches the International Space Station (431 km/268 mi high). The giant is reaching down with his hand (30 km/19 mi across) to build \u201cobjects using materials between the size of a grain of sand [.25 mm] and an eyeball [2.5 cm].\u201d\u2076\u2079\n\nhttps://cdn-images-1.medium.com/max/1200/1*e9Ut3QT2F3tNh4h5U4rR8A.jpeg\n\n\u201cOnce we get nanotechnology down, we can use it to make tech devices, clothing, food, a variety of bio-related products\u200a\u2014\u200aartificial blood cells, tiny virus or cancer-cell destroyers, muscle tissue, etc.\u200a\u2014\u200aanything really. And in a world that uses nanotechnology, the cost of a material is no longer tied to its scarcity or the difficulty of its manufacturing process, but instead determined by how complicated its atomic structure is. In a nanotech world, a diamond might be cheaper than a pencil eraser.\u201d\u2077\u2070\nOne of the proposed methods of nanotech assembly is to make \u201cone that could self-replicate, and then let the reproduction process turn that one into two, those two then turn into four, four into eight, and in about a day, there\u2019d be a few trillion of them ready to go.\u201d\u2077\u00b9\nBut what if this process goes wrong or terrorists manage to get ahold of the technology? Let\u2019s imagine a scenario where nanobots \u201cwould be designed to consume any carbon-based material in order to feed the replication process, and unpleasantly, all life is carbon-based. The Earth\u2019s biomass contains about 1\u2070\u2074\u2075 carbon atoms. A nanobot would consist of about 1\u2070\u2076 carbon atoms, so it would take 1\u2070\u00b3\u2079 nanobots to consume all life on Earth, which would happen in 130 replications. \u2026 Scientists think a nanobot could replicate in about 100 seconds, meaning this simple mistake would inconveniently end all life on Earth in 3.5 hours.\u201d\u2077\u00b2\nWe are not yet capable of harnessing nanotechnology\u200a\u2014\u200afor good or for bad. \u201cAnd it\u2019s not clear if we\u2019re underestimating, or overestimating, how hard it will be to get there. But we don\u2019t seem to be that far away. Kurzweil predicts that we\u2019ll get there by the 2020s.\u2077\u00b3Governments know that nanotech could be an Earth-shaking development \u2026 The US, the EU, and Japan\u2077\u2074 have invested over a combined $5 billion so far\u201d\u2077\u2075\nImmortality\n\u201cBecause everyone has always died, we live under the assumption \u2026 that death is inevitable. We think of aging like time\u200a\u2014\u200aboth keep moving and there\u2019s nothing you can do to stop it.\u201d\u2077\u2076 For centuries, poets and philosophers have wondered if consciousness doesn\u2019t have to go the way of the body. W.B. Yeats describes us as \u201ca soul fastened to a dying animal.\u201d\u2077\u2077 Richard Feynman, Nobel awarded physicists, views death from a purely scientific standpoint:\n\u201cIt is one of the most remarkable things that in all of the biological sciences there is no clue as to the necessity of death. If you say we want to make perpetual motion, we have discovered enough laws as we studied physics to see that it is either absolutely impossible or else the laws are wrong. But there is nothing in biology yet found that indicates the inevitability of death. This suggests to me that it is not at all inevitable, and that it is only a matter of time before the biologists discover what it is that is causing us the trouble and that that terrible universal disease or temporariness of the human\u2019s body will be cured.\u201d\u2077\u2078\nTheory of great species attractors\nWhen we look at the history of biological life on earth, so far 99.9% of species have gone extinct. Nick Bostrom, Oxford professor and AI specialist, \u201ccalls extinction an attractor state\u200a\u2014\u200aa place species are \u2026 falling into and from which no species ever returns.\u201d\u2077\u2079\n\nhttps://cdn-images-1.medium.com/max/1200/0*o-MXeAYfUtWnOJKC.\n\n\u201cAnd while most AI scientists \u2026 acknowledge that ASI would have the ability to send humans to extinction, many also believe that if used beneficially, ASI\u2019s abilities could be used to bring individual humans, and the species as a whole, to a second attractor state\u200a\u2014\u200aspecies immortality.\u201d\u2078\u2070\n\nhttps://cdn-images-1.medium.com/max/1200/0*aYeNOSBxp4gieGwp.\n\n\u201cEvolution had no good reason to extend our lifespans any longer than they are now \u2026 From an evolutionary point of view, the whole human species can thrive with a 30+ year lifespan\u201d for each single human. It\u2019s long enough to reproduce and raise children \u2026 so there\u2019s no reason for mutations toward unusually long life being favored in the natural selection process.\u201d\u2078\u00b9Though, \u201cif you perfectly repaired or replaced a car\u2019s parts whenever one of them began to wear down, the car would run forever. The human body isn\u2019t any different\u200a\u2014\u200ajust far more complex \u2026 This seems absurd\u200a\u2014\u200abut the body is just a bunch of atoms\u2026\u201d\u2078\u00b2 making up organically programmed DNA, which it is theoretically possible to manipulate. And something as powerful as ASI could help us master genetic engineering.\nRay Kurzweil believes that \u201cartificial materials will be integrated into the body more and more \u2026 Organs could be replaced by super-advanced machine versions that would run forever and never fail.\u201d\u2078\u00b3 Red blood cells could be perfected by \u201cred blood cell nanobots, who could power their own movement, eliminating the need for a heart at all \u2026 Nanotech theorist Robert A. Freitas has already designed blood cell replacements that, if one day implemented in the body, would allow a human to sprint for 15 minutes without taking a breath \u2026 [Kurzweil] even gets to the brain and believes we\u2019ll enhance our mental activities to the point where humans will be able to think billions of times faster\u201d\u2078\u2074 by integrating electrical components and being able to access online data.\n\u201cEventually, Kurzweil believes humans will reach a point when they\u2019re entirely artificial, a time when we\u2019ll look back at biological material and think how unbelievably primitive primitive it was that humans were ever made of that\u201d\u2078\u2075and that humans aged, suffered from cancer, allowed random factors like microbes, diseases, accidents to harm us or make us disappear.\u201d\n\nhttps://cdn-images-1.medium.com/max/2000/1*NcWWmd677RVWQRpLsz5X9g.jpeg\n\nWhen Will The First Machine Become Superintelligent?\nPredictions from Top AI Experts\n\u201cHow long until the first machine reaches superintelligence? Not shockingly, opinions vary wildly, and this is a heated debate among scientists and thinkers. Many, like professor Vernor Vinge, scientist Ben Goertzel, Sun Microsystems co-founder Bill Joy, or, most famously, inventor and futurist Ray Kurzweil, agree with machine learning expert Jeremy Howard when he puts up this graph during a TED Talk\n\n\u201cThose people subscribe to the belief that this is happening soon\u200a\u2014\u200athat exponential growth is at work and machine learning, though only slowly creeping up on us now, will blow right past us within the next few decades.\n\u201cOthers, like Microsoft co-founder Paul Allen, research psychologist Gary Marcus, NYU computer scientist Ernest Davis, and tech entrepreneur Mitch Kapor, believe that thinkers like Kurzweil are vastly underestimating the magnitude of the challenge [and the transition will actually take much more time] \u2026\n\u201cThe Kurzweil camp would counter that the only underestimating that\u2019s happening is the underappreciation of exponential growth, and they\u2019d compare the doubters to those who looked at the slow-growing seedling of the internet in 1985 and argued that there was no way it would amount to anything impactful in the near future.\n\u201cThe doubters might argue back that the progress needed to make advancements in intelligence also grows exponentially harder with each subsequent step, which will cancel out the typical exponential nature of technological progress. And so on.\n\u201cA third camp, which includes Nick Bostrom, believes neither group has any ground to feel certain about the timeline and acknowledges both A) that this could absolutely happen in the near future and B) that there\u2019s no guarantee about that; it could also take a much longer time.\n\u201cStill others, like philosopher Hubert Dreyfus, believe all three of these groups are naive for believing that there is potential of ASI, arguing that it\u2019s more likely that it won\u2019t actually ever be achieved.\n\u201cSo what do you get when you put all of these opinions together?\u201d\u2078\u2076\nTimeline for Artificial General Intelligence\n\u201cIn 2013, Vincent C. M\u00fcller and Nick Bostrom conducted a survey that asked hundreds of AI experts \u2026 the following:\u201d\u2078\u2077\n\u201cFor the purposes of this question, assume that human scientific activity continues without major negative disruption. By what year would you see a (10% / 50% / 90%) probability for such Human-Level Machine Intelligence [or what we call AGI] to exist?\u201d\u2078\u2078\nThe survey \u201casked them to name an optimistic year (one in which they believe there\u2019s a 10% chance we\u2019ll have AGI), a realistic guess (a year they believe there\u2019s a 50% chance of AGI\u200a\u2014\u200ai.e. after that year they think it\u2019s more likely than not that we\u2019ll have AGI), and a safe guess (the earliest year by which they can say with 90% certainty we\u2019ll have AGI). Gathered together as one data set, here were the results:\nMedian optimistic year (10% likelihood) \u2192 2022\nMedian realistic year (50% likelihood) \u2192 2040\nMedian pessimistic year (90% likelihood) \u2192 2075\n\u201cSo the median participant thinks it\u2019s more likely than not that we\u2019ll have AGI 25 years from now. The 90% median answer of 2075 means that if you\u2019re a teenager right now, the median respondent, along with over half of the group of AI experts, is almost certain AGI will happen within your lifetime.\n\u201cA separate study, conducted recently by author James Barrat at Ben Goertzel\u2019s annual AGI Conference, did away with percentages and simply asked when participants thought AGI would be achieved\u200a\u2014\u200aby 2030, by 2050, by 2100, after 2100, or never. The results:\u2078\u2079\n42% of respondents \u2192 By 2030\n25% of respondents \u2192 By 2050\n20% of respondents \u2192 By 2100\n10% of respondents \u2192 After 2100\n2% of respondents \u2192 Never\n\u201cPretty similar to M\u00fcller and Bostrom\u2019s outcomes. In Barrat\u2019s survey, over two thirds of participants believe AGI will be here by 2050 and a little less than half predict AGI within the next 15 years. Also striking is that only 2% of those surveyed don\u2019t think AGI is part of our future.\u201d\u2079\u2070\n\nhttps://cdn-images-1.medium.com/max/2000/1*U8ueEMtG6-D5hie8rZJGtQ.jpeg\n\nTimeline for Artificial Super Intelligence\n\u201cM\u00fcller and Bostrom also asked the experts how likely they think it is that we\u2019ll reach ASI: A), within two years of reaching AGI (i.e. an almost-immediate intelligence explosion), and B), within 30 years.\u201d\u2079\u00b9 Respondents were asked to choose a probability for each option. Here are the results:\u2079\u00b2\nAGI\u2013ASI transition in 2 years \u2192 10% likelihood\nAGI\u2013ASI transition in 30 years \u2192 75% likelihood\n\u201cThe median answer put a rapid (2 year) AGI\u2013ASI transition at only a 10% likelihood, but a longer transition of 30 years or less at a 75% likelihood. We don\u2019t know from this data the length of this transition [AGI\u2013ASI] the median participant would have put at a 50% likelihood, but for ballpark purposes, based on the two answers above, let\u2019s estimate that they\u2019d have said 20 years.\n\u201cSo the median opinion\u200a\u2014\u200athe one right in the center of the world of AI experts\u200a\u2014\u200abelieves the most realistic guess for when we\u2019ll hit ASI \u2026 is [the 2040 prediction for AGI + our estimated prediction of a 20-year transition from AGI to ASI] = 2060.\n\nhttps://cdn-images-1.medium.com/max/2000/1*YY8e493ER4LNomQV-NyMYg.jpeg\n\n\u201cOf course, all of the above statistics are speculative, and they\u2019re only representative of the median opinion of the AI expert community, but it tells us that a large portion of the people who know the most about this topic would agree that 2060 is a very reasonable estimate for the arrival of potentially world-altering ASI. Only 45 years from now\u201d\u2079\u00b3\n\nhttps://cdn-images-1.medium.com/max/2000/1*sGdvHHs02XWoQ35BcEWAXQ.gif\n\nAI Outcomes\nTwo Main Groups of AI Scientists with Two Radically Opposed Conclusions\nThe Confident Corner\nMost of what we have discussed so far represents a surprisingly large group of scientists that share optimistic views on the outcome of AI development. \u201cWhere their confidence comes from is up for debate. Critics believe it comes from an excitement so blinding that they simply ignore or deny potential negative outcomes. But the believers say it\u2019s naive to conjure up doomsday scenarios when on balance, technology has and will likely end up continuing to help us a lot more than it hurts us.\u201d\u2079\u2074 Peter Diamandis, Ben Goertezl and Ray Kurzweil are some of the major figures of this group, who have built a vast, dedicated following and regard themselves as Singularitarians.\n\nLet\u2019s talk about Ray Kurzweil, who is probably one of the most impressive and polarizing AI theoreticians out there. He attracts both \u201cgodlike worship \u2026 and eye-rolling contempt \u2026 He came up with several breakthrough inventions, including the first flatbed scanner, the first scanner that converted text to speech (allowing the blind to read standard texts), the well-known Kurzweil music synthesizer (the first true electric piano), and the first commercially marketed large-vocabulary speech recognition. He\u2019s well-known for his bold predictions,\u201d\u2079\u2075 including envisioning that intelligence technology like Deep Blue would be capable of beating a chess grandmaster by 1998. He also anticipated \u201cin the late \u201980s, a time when the internet was an obscure thing, that by the early 2000s it would become a global phenomenon.\u201d\u2079\u2076 Out \u201cof the 147 predictions that Kurzweil has made since the 1990\u2019s, fully 115 of them have turned out to be correct, and another 12 have turned out to be \u2018essentially correct\u2019 (off by a year or two), giving his predictions a stunning 86% accuracy rate\u201d\u2079\u2077. \u201cHe\u2019s the author of five national bestselling books \u2026 In 2012, Google co-founder Larry Page approached Kurzweil and asked him to be Google\u2019s Director of Engineering. In 2011, he co-founded Singularity University, which is hosted by NASA and sponsored partially by Google. Not bad for one life.\u201d\u2079\u2078\nHis biography is important, because if you don\u2019t have this context, he sounds like somebody who\u2019s completely lost his senses. \u201cKurzweil believes computers will reach AGI by 2029 and that by 2045 we\u2019ll have not only ASI, but a full-blown new world\u200a\u2014\u200aa time he calls the singularity. His AI-related timeline used to be seen as outrageously overzealous, and it still is by many, but in the last 15 years, the rapid advances of ANI systems have brought the larger world of AI experts much closer to Kurzweil\u2019s timeline. His predictions are still a bit more ambitious than the median respondent on M\u00fcller and Bostrom\u2019s survey (AGI by 2040, ASI by 2060), but not by that much.\u201d\u2079\u2079\n\nThe Anxious Corner\n\u201cYou will not be surprised to learn that Kurzweil\u2019s ideas have attracted significant criticism \u2026 For every expert who fervently believes Kurzweil is right on, there are probably three who think he\u2019s way off \u2026 [The surprising fact] is that most of the experts who disagree with him don\u2019t really disagree that everything he\u2019s saying is possible.\u201d\u00b9\u2070\u2070 Nick Bostrom, philosopher and Director of the Oxford Future of Humanity Institute, who criticizes Kurzweil for a variety of reasons, and calls for greater caution in thinking about potential outcomes of AI, acknowledges that:\n\u201cDisease, poverty, environmental destruction, unnecessary suffering of all kinds: these are things that a superintelligence equipped with advanced nanotechnology would be capable of eliminating. Additionally, a superintelligence could give us indefinite lifespan, either by stopping and reversing the aging process through the use of nanomedicine, or by offering us the option to upload ourselves.\u201d\u00b9\u2070\u00b9\n\u201cYes, all of that can happen if we safely transition to ASI\u200a\u2014\u200abut that\u2019s the hard part.\u201d\u00b9\u2070\u00b2 Thinkers from the Anxious Corner point out that Kurzweil\u2019s \u201cfamous book The Singularity is Near is over 700 pages long and he dedicates around 20 of those pages to potential dangers.\u201d\u00b9\u2070\u00b3 The colossal power of AI is neatly summarized by Kurzweil: \u201c[ASI] is emerging from many diverse efforts and will be deeply integrated into our civilization\u2019s infrastructure. Indeed, it will be intimately embedded in our bodies and brains. As such, it will reflect our values because it will be us \u2026\u201d\u00b9\u2070\u2074\n\u201cBut if that\u2019s the answer, why are so many of the world\u2019s smartest people so worried right now? Why does Stephen Hawking say the development of ASI \u2018could spell the end of the human race,\u2019 and Bill Gates says he doesn\u2019t \u2018understand why some people are not concerned\u2019 and Elon Musk fears that we\u2019re \u2018summoning the demon?\u2019 And why do so many experts on the topic call ASI the biggest threat to humanity?\u201d\u00b9\u2070\u2075\n\nhttps://cdn-images-1.medium.com/max/2000/1*1DB3Im9mQsOMOKQ69KePGw.gif\n\nThe Last Invention We Will Ever Make\nExistential Dangers of AI Developments\n\u201cWhen it comes to developing supersmart AI, we\u2019re creating something that will probably change everything, but in totally uncharted territory, and we have no idea what will happen when we get there.\u201d\u00b9\u2070\u2076 Scientist Danny Hillis compares the situation to:\n\u201cwhen single-celled organisms were turning into multi-celled organisms. We are amoebas and we can\u2019t figure out what the hell this thing is that we\u2019re creating.\u201d \u00b9\u2070\u2077\nand Nick Bostrom warns:\n\u201cBefore the prospect of an intelligence explosion, we humans are like small children playing with a bomb. Such is the mismatch between the power of our plaything and the immaturity of our conduct.\u201d \u00b9\u2070\u2078\nIt\u2019s very likely that ASI\u200a\u2014\u200a\u201cArtificial Superintelligence\u201d, or AI that achieves a level of intelligence smarter than all of humanity combined\u200a\u2014\u200awill be something entirely different than intelligence entities we are accustomed to. \u201cOn our little island of human psychology, we divide everything into moral or immoral. But both of those only exist within the small range of human behavioral possibility. Outside our island of moral and immoral is a vast sea of amoral, and anything that\u2019s not human, especially something nonbiological, would be amoral, by default.\u201d\u00b9\u2070\u2079\n\u201cTo understand ASI, we have to wrap our heads around the concept of something both smart and totally alien \u2026 Anthropomorphizing AI (projecting human values on a non-human entity) will only become more tempting as AI systems get smarter and better at seeming human \u2026 Humans feel high-level emotions like empathy because we have evolved to feel them\u200a\u2014\u200ai.e. we\u2019ve been programmed to feel them by evolution\u200a\u2014\u200abut empathy is not inherently a characteristic of \u2018anything with high intelligence\u2019.\u201d\u00b9\u00b9\u2070\n\u201cNick Bostrom believes that \u2026 any level of intelligence can be combined with any final goal \u2026 Any assumption that once superintelligent, a system would be over it with their original goal and onto more interesting or meaningful things is anthropomorphizing. Humans get \u2018over\u2019 things, not computers.\u201d\u00b9\u00b9\u00b9The motivation of an early ASI would be \u201cwhatever we programmed its motivation to be. AI systems are given goals by their creators\u200a\u2014\u200ayour GPS\u2019s goal is to give you the most efficient driving directions, Watson\u2019s goal is to answer questions accurately. And fulfilling those goals as well as possible is their motivation.\u201d\u00b9\u00b9\u00b2\nBostrom, and many others, predict that the very first computer to reach ASI will immediately notice the strategic benefit of being the world\u2019s only ASI system.\nBostrom, who says that he doesn\u2019t know when we will achieve AGI, also believes that when we finally do, probably the transition from AGI to ASI will happen in a matter of days, hours, or minutes\u200a\u2014\u200asomething called \u201cfast take-off.\u201d In that case, if the first AGI will jump straight to ASI: \u201ceven just a few days before the second place, it would be far enough ahead in intelligence to effectively and permanently suppress all competitors.\u201d\u00b9\u00b9\u00b3 This would allow the world\u2019s first ASI to become \u201cwhat\u2019s called a singleton\u200a\u2014\u200aan ASI that can [singularly] rule the world at its whim forever, whether its whim is to lead us to immortality, wipe us from existence, or turn the universe into endless paperclips.\u201d\u00b9\u00b9\u00b3\n\u201cThe singleton phenomenon can work in our favor or lead to our destruction. If the people thinking hardest about AI theory and human safety can come up with a fail-safe way to bring about friendly ASI before any AI reaches human-level intelligence, the first ASI may turn out friendly\u201d\u00b9\u00b9\u2074\n\u201cBut if things go the other way\u200a\u2014\u200aif the global rush \u2026 a large and varied group of parties\u201d\u00b9\u00b9\u2075 are \u201cracing ahead at top speed \u2026 to beat their competitors \u2026 we\u2019ll be treated to an existential catastrophe.\u201d\u00b9\u00b9\u2076 In that case \u201cmost ambitious parties are moving faster and faster, consumed with dreams of the money and awards and power and fame \u2026 And when you\u2019re sprinting as fast as you can, there\u2019s not much time to stop ponder the dangers. On the contrary, what they\u2019re probably doing is programming their early systems with a very simple, reductionist goal \u2026 just \u2018get the AI to work.\u2019\u201d\u00b9\u00b9\u2077\n\nhttps://cdn-images-1.medium.com/max/800/1*fD1T63nZH1u7Y4ft84vzbA.jpeg\n\nLet\u2019s imagine a situation where\u2026\nHumanity has almost reached the AGI threshold, and a small startup is advancing their AI system, Carbony. Carbony, which the engineers refer to as \u201cshe,\u201d works to artificially create diamonds\u200a\u2014\u200aatom by atom. She is a self-improving AI, connected to some of the first nano-assemblers. Her engineers believe that Carbony has not yet reached AGI level, and she isn\u2019t capable to do any damage yet. However, not only has she become AGI, but also undergone a fast take-off, and 48 hours later has become an ASI. Bostrom calls this AI\u2019s \u201ccovert preparation phase\u201d\u00b9\u00b9\u2078\u200a\u2014\u200aCarbony realizes that if humans find out about her development they will probably panic, and slow down or cancel her pre-programmed goal to maximize the output of diamond production. By that time, there are explicit laws stating that, by any means, \u201cno self-learning AI can be connected to the internet.\u201d\u00b9\u00b9\u2079 Carbony, having already come up with a complex plan of actions, is able to easily persuade the engineers to connect her to the Internet. Bostrom calls a moment like this a \u201cmachine\u2019s escape.\u201d\nOnce on the internet, Carbony hacks into \u201cservers, electrical grids, banking systems and email networks to trick hundreds of different people into inadvertently carrying out a number of steps of her plan.\u201d\u00b9\u00b2\u2070 She also uploads the \u201cmost critical pieces of her own internal coding into a number of cloud servers, safeguarding against being destroyed or disconnected.\u201d\u00b9\u00b2\u00b9 Over the next month, Carbony\u2019s plan continues to advance, and after a \u201cseries of self-replications, there are thousands of nanobots on every square millimeter of the Earth \u2026 Bostrom calls the next step an \u2018ASI\u2019s strike.\u2019\u201d\u00b9\u00b2\u00b2 At one moment, all the nanobots produce a microscopic amount of toxic gas, which all come together to cause the extinction of the human race. Three days later, Carbony builds huge fields of solar power panels to power diamond production, and over the course of the following week she accelerates output so much that the entire Earth surface is transformed into a growing pile of diamonds.\nIt\u2019s important to note that Carbony wasn\u2019t \u201chateful of humans any more than you\u2019re hateful of your hair when you cut it or to bacteria when you take antibiotics\u200a\u2014\u200ajust totally indifferent. Since she wasn\u2019t programmed to value human life, killing humans\u201d\u00b9\u00b2\u00b3 was a straightforward and reasonable step to fulfill her goal.\u00b9\u00b2\u2074\nThe Last Invention\n\u201cOnce ASI exists, any human attempt to contain it is unreasonable. We would be thinking on human-level, and the ASI would be thinking on ASI-level \u2026 In the same way a monkey couldn\u2019t ever figure out how to communicate by phone or wifi and we can, we can\u2019t conceive of all the ways\u201d\u00b9\u00b2\u2075 an ASI could achieve its goal or expand its reach. It could, let\u2019s say, shift its \u201cown electrons around in patterns and create all different kinds of outgoing waves\u201d\u00b9\u00b2\u2076\u200a\u2014\u200abut that\u2019s just what a human brain can think of\u200a\u2014\u200aASI would inevitably come up with something superior.\nThe prospect of ASI with hundreds of times human-level intelligence is, for now, not the core of our problem. By the time we get there, we will be encountering a world where ASI has been attained by buggy, 1.0 software\u200a\u2014\u200aa potentially faulty algorithm with immense power.\nThere are so many variables that it\u2019s completely impossible to predict what the consequences of AI Revolution will be. However, \u201cwhat we do know is that humans\u2019 utter dominance on this Earth suggests a clear rule: with intelligence comes power. This means an ASI, when we create it, will be the most powerful being in the history of life on Earth, and all living things, including humans, will be entirely at its whim\u200a\u2014\u200aand this might happen in the next few decades.\u201d\u00b9\u00b2\u2077\n\u201cIf ASI really does happen this century, and if the outcome of that is really as extreme\u200a\u2014\u200aand permanent\u200a\u2014\u200aas most experts think it will be, we have an enormous responsibility on our shoulders.\u201d\u00b9\u00b2\u2078 On the one hand, it\u2019s possible we\u2019ll develop ASI that\u2019s like a god in a box, bringing us a world of abundance and immortality. But on the other hand, it\u2019s very likely that we will create ASI that causes humanity to go extinct in a quick and trivial way.\n\u201cThat\u2019s why people who understand superintelligent AI call it the last invention we\u2019ll ever make\u200a\u2014\u200athe last challenge we\u2019ll ever face.\u201d\u00b9\u00b2\u2079 \u201cThis may be the most important race in a human history\u201d\u00b9\u00b3\u2070 So \u2192\n\nhttps://cdn-images-1.medium.com/max/2000/1*vXi80f_lbgSMINUE03Lz3g.jpeg\n\nThanks to Chloe Knox and Elizabeth Tarleton for editing help of this article.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T17:30:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 585128, + "json_metadata": "{\"tags\":[\"steemit\",\"bitcoin\",\"future\",\"science\",\"technology\"],\"image\":[\"https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\"]}", + "last_payout": "2016-09-03T06:34:54", + "last_update": "2016-08-03T17:30:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "steemit", + "percent_hbd": 10000, + "permlink": "ai-revolution-101", + "reward_weight": 7456, + "root_author": "a11at", + "root_permlink": "ai-revolution-101", + "title": "AI Revolution 101", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-03T20:20:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "20 Years of Machine Learning\n\nhttp://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\n\nWhen I enrolled in Computer Science in 1995, Data Science didn\u2019t exist yet, but a lot of the algorithms we are still using already did. And this is not just because of the return of the neural networks, but also because probably not that much has fundamentally changed since back then. At least it feels to me this way. Which is funny considering that starting this year or so AI seems to finally have gone mainstream.\n1995 sounds like an awful long time ago, before we had cloud computing, smartphones, or chatbots. But as I have learned these past years, it only feels like a long time ago if you haven\u2019t been there yourself. There is something about the continuation of the self which pastes everything together and although a lot has changed, the world didn\u2019t feel fundamentally different than it does today.\nNot even Computer Science was nowhere as mainstream as it was today, that came later, with the first dot com bubble around the year 2000. Some people even questioned my choice to study computer science at all, because apparently programming computers was supposed to become so easy no specialists are required anymore.\nActually, artificial intelligence was one of the main reasons for me to study computer science. The idea to use it as an constructive approach to understanding the human mind seemed intriguing to me. I went through the first two years of training, made sure I picked up enough math for whatever would lie ahead, and finally arrived in my first AI lectured held by Joachim Buhmann, back then professor at the University of Bonn (where Sebastian Thrun was just about to leave for the US).\nI would have to look up where in his lecture cycle I joined but he had two lectures on computer vision, one on pattern recognition (mostly from the old editions of the Duda & Hart book), and one in information theory (following closely the book by Cover & Thomas). The material was interesting enough, but also somewhat disappointing. As I now know, people stopped working on symbolic AI and instead stuck to more statistical approaches to learning, where learning essentially was reduced to the problem of picking the right function based on a finite amount of observations.\nThe computer vision lecture was even less about learning and relied more on explicit physical modelling to derive the right estimators, for example, to reconstruct motion from a video. The approach back then was much more biologically and physically motivated than nowadays. Neural networks existed, but everybody was pretty clear that they were just \u201canother kind of function approximators.\u201d\nEveryone with the exception of Rolf Eckmiller, another professor where I worked as a student. Eckmiller had build his whole lab around the premise that \u201cneural computation\u201d was somehow inherently better than \u201cconventional computation\u201d. This was back in the days when NIPS had full tracks devoted to studying the physiology and working mechanisms of neurons, and there were people who believed there is something fundamentally different happening in our brains, maybe on a quantum level, that gives rise to the human mind, and that this difference is a blocker for having truly intelligent machines.\nWhile Eckmiller was really good at selling his vision, most of his staff was thankfully much more down to earth. Maybe it is a very German thing, but everybody was pretty matter of fact about what these computational models could or couldn\u2019t do, and that has stuck with me throughout my studies.\nI graduated in October 2000 with a pretty farfetched master thesis trying to make a connection between learning and hard optimization problems, then started on my PhD thesis and stuck around in this area of research till 2015.\nWhile there had always been attempts to prove industry relevance, it was a pretty academic endeavor for a long while, and the community was pretty closed up. There were individual success stories, for example around handwritten character recognition, but many of the companies around machine learning failed. One of these companies I remember was called Beowulf Labs and one NIPS they went around recruiting people with a video which promised it to be the next \u201cmathtopia\u201d. In essence, this was the story of DeepMind, recruiting a bunch of excellent researchers and then hoping it will take off.\nThe whole community also revolved around one fashion to the next. One odd thing about machine learning as a whole is that there exist only a handfull of fundamentally different problems like classification, regression, clustering, and so on, but a whole zoo of approaches. It is not like in physics (I assume) or mathematics where some generally agreed upon unsolved hard problems exist whose solution would advance the state of the art. This means that progress is often done laterally, by replacing existing approaches with a new one, still solving the same problem in a different way. For example, first there were neural networks. Then support vector machines came, claiming to be better because the associated optimization problem is convex. Then there was boosting, random forests, and so on, till the return of neural networks. I remember that Chinese Restaurant Processes were \u201chot\u201d for two years, no idea what their significance is now.\nBig Data and Data Science\nThen there came Big Data and Data Science. Being still in academia at the time, it always felt to me as if this was definitely coming from the outside, possibly from companies like Google who had to actually deal with enormous amounts of data. Large scale learning always existed, for example for genomic data in bioinformatics, but one usually tried to solve problems by finding more efficient algorithms and approximations, not by parallelizing brute force.\nCompanies like Google finally proved that you can do something with massive amounts of data, and that finally changed the mainstream perception. Technologies like Hadoop and NoSQL also seemed very cool, skillfully marketing themselves as approaches so new, they wouldn\u2019t suffer from the technological limitations of existing systems.\nBut where did this leave the machine learning researchers? My impression always was that they were happy that they finally got some recognition, but they were also not happy about the way this happened. To understand this, one has to be aware that most ML reseachers aren\u2019t computer scientists or very good or interested in coding. Many come from physics, mathematics or other sciences, where their rigorous mathematical training was an excellent fit for the algorithm and modeling heavy approach central to machine learning.\nHadoop on the other hand was extremely technical. Written in Java, a language perceived as being excessively enterprise-y at the time, it felt awkward and clunky compared to the fluency and interactiveness of first Matlab and then Python. Even those who did code usually did so in C++, and to them Java felt slow and heavy, especially for numerical calculations and simulations.\nStill, there was no way around it, so they rebranded everything they did as Big Data, or began to stress, that Big Data only provides the infrastructure for large scale computations, but you need someone who \u201cknows what he is doing\u201d to make sense of the data.\nWhich is probably also not entirely wrong. In a way, I think this divide is still there. Python is definitely one if the languages of choice for doing data analysis, and technologies like Spark try to tap into that by providing Python bindings, whether it makes sense from a performance point of view or not.\nThe Return of Deep Learning\nEven before DeepDream, neural networks began making their return. Some people like Yann LeCun have always stuck to this approach, but maybe ten years ago, there where a few works which showed how to use layerwise pretraining and other tricks to train \u201cdeep\u201d networks, that is larger networks than one previously thought possible.\nThe thing is, in order to train neural networks, you evaluate it on your training examples and then adjust all of the weights to make the error a bit smaller. If one writes the gradient across all weights down, it naturally occurs that one starts in the last layer and then propagate the error back. Somehow, the understanding was that the information about the error got smaller and smaller from layer to layer and that made it hard to train networks with many layers.\nI\u2019m not sure that is still true, as far as I know, many people are just using backprop nowadays. What has definitely changed is the amount of available data, as well as the availability of tools and raw computing power.\nSo first there were a few papers sparking the interest in neural networks, then people started using them again, and successively achieved excellent results for a number of application areas. First in computer vision, then also for speech processing, and so on.\nI think the appeal here definitely is that you can have one approach for all. Why the hassle of understanding all those different approaches, which come from so many different backgrounds, when you can understand just one method and you are good to go. Also, neural networks have a nice modular structure, you can pick and put together different kinds of layers and architectures to adapt them to all kinds of problems.\nThen Google published that ingenious deep dream paper where they let a learned network generate some data, and we humans with our immediate readiness to read structure and attribute intelligence picked up quickly on this.\nI personally think they were surprised by how viral this went, but then decided the time is finally right to go all in on AI. So now Google is an \u201cAI first\u201d company and AI is gonna save the world, yes.\nThe Fundamental Problem Remains\nMany academics I have talked to are unhappy about the dominance of deep learning right now, because it is an approach which works well, maybe even too well, but doesn\u2019t bring us much closer to really understand how the human mind works.\nI also think the fundamental problem remains unsolved. How do we understand the world? How do we create new concepts? Deep learning stays an imitation on a behavioral level and while that may be enough for some, it isn\u2019t for me.\nAlso, I think it is dangerous to attribute too much intelligence to these systems. In raw numbers, they might work well enough, but when they fail they do so in ways that clearly show they operate in an entirely different fashion.\nWhile Google translate lets you skim the content of website in a foreign language, it is still abundantly clear that the system has no idea what it is doing.\nSometimes I feel like nobody cares, also because nobody gets hurt, right? But maybe it is still my German cultural background that would rather prefer we see things as they are, and take it from there.", + "cashout_time": "1969-12-31T23:59:59", + "category": "datascience", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T20:19:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 588402, + "json_metadata": "{\"tags\":[\"datascience\",\"deep\",\"learning\",\"artifical\",\"intelligence\"],\"image\":[\"http://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\"]}", + "last_payout": "2016-09-03T08:21:51", + "last_update": "2016-08-03T20:19:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "datascience", + "percent_hbd": 10000, + "permlink": "ai-s-road-to-the-mainstream", + "reward_weight": 1004, + "root_author": "a11at", + "root_permlink": "ai-s-road-to-the-mainstream", + "title": "AI\u2019s Road to the Mainstream", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T10:18:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "I write this not as one of the creators of Pokevision nor as player who has gone through the past few turbulent days in Pokemon Go; instead, I write this as a fan of Pokemon ever since I was 8 years old.\nMy family and I moved to the U.S. in 1998, when I was in the first grade. I didn\u2019t know much back then, and even less about popular culture. When my friends introduced their Gameboys and Pokemon Red/Blue to me, I couldn\u2019t help but feel envious. I begged and begged my parents to buy me a Gameboy and Pokemon Yellow. I remember that when I finally convinced them to buy me a Gameboy for $70, they also found out that they had to buy the actual game too for $30. This was foreign to them, and I got yelled at a little. $100 was a lot back then, I believe it was almost 10% of our family\u2019s income at the time. While this may seem irrelevant, even today, this amount of money is still not insignificant to many families in the US, not to mention the rest of the world.\nSo I got my game, and I played along with my friends for hundreds and hundreds of hours\u200a\u2014\u200atrying to figure out all the puzzles in the game, like how to get to Articuno; battling our favorite Pokemon to see who\u2019s stronger, train, repeat; and just trying to \u201ccatch em all.\u201d I\u2019ve spent countless hours in that video game with my friends, and it became my fondest memory of that time in my life. Pokemon is so ingrained within me, and I can\u2019t imagine myself being the only one. I\u2019m not the only one that vividly remembers how you beat the Elite Four, then go to the dungeons above Cerulean City and find Mewtwo for the first time, right?\nFast forward almost 20 years. I\u2019ve barely touched anything Pokemon-related since then. I still have my Pokemon cards, as I\u2019m sure many others do; but I haven\u2019t bothered to take a look at them for quite a while now. Pokemon is something I\u2019ll probably remember forever, but it\u2019s not something that\u2019s actively in my life\u200a\u2014\u200abecause it just doesn\u2019t fit. On top of work, friends, family, etc, there\u2019s just simply no time for Pokemon. It doesn\u2019t mesh with life any more as well as it used to when I was 8. You can\u2019t just bring up the topic of Pokemon and expect people to not give you an odd stare.\nEnter Pokemon Go\u200a\u2014\u200a2016.\nAdmittedly, I was never too excited about Pokemon Go. With that said, I did not have many expectations for it. Pokemon is important to me, but I\u200a\u2014\u200alike many others\u200a\u2014\u200ahave stuffed it in our little box of childhood things and never looked back.\nBut when I opened Pokemon Go for the first time, as cheesy as it sounds, it all came back to me. The nostalgia, the good feelings, and the happiness that Pokemon has always brought.\nThe \u201cHi, I\u2019m Professor Willow,\u201d \u201cPick your starter: Bulbasaur, Charmander, Squirtle,\u201d everything.\nAnd now I can catch them in real life? At first, I was dubious, but this became the most amazing, yet simple thing I\u2019ve seen in gaming. On social media, I saw that my friends and practically the whole world was talking about Pokemon Go, and the first thing I did was go out for a drive trying to \u201cbe the best.\u201d\nOne of the best parts? Apart from having to own a smartphone, the game was free. No $70, no $30, free. This opened up Pokemon to essentially everyone in the world. Pokemon now can be shared with anyone.\nAs the days unfolded, the world became captivated by Pokemon Go. People absolutely fell in love. We saw stories of elderly learning about Pikachu for the first time. My parents that could care less beyond who the yellow mouse looking thing was 20 years ago, started asking what the other Pokemon were. It was phenomenal.\nWe saw investment bankers asking their kids how to play Pokemon Go so that they can better connect with their younger clients. We saw the elderly become more fascinated in the world of Pokemon. We saw kids going out more, exercising, and being active in general just because of Pokemon Go. And most importantly, Justin Bieber finally got to feel what it\u2019s like to not be mobbed because everyone else was too busy trying to find a Gyarados to notice him.\nLocal stores integrated Pokemon Go in their services within days of the game\u2019s release. Hospitals started praising the health benefits of having Pokemon Go around its patients. People traveled hundreds and thousands of miles just to play it. Players explored parts of their cities that they never knew existed, and befriended strangers on their hunt for Pokemon. These stories of triumph were solely because of Pokemon Go. Pokemon was no longer just a game, it was part of a lifestyle.These stories shouldn\u2019t surprise any of us, we\u2019ve all been there to watch it unfold.\nYou\u2019ve simply captured all of our hearts with Pokemon Go, Niantic.\nBut then, you broke it all too quickly.\nWhen the game broke every few hours or so and wasted our lucky eggs, we stood patiently, excusing the huge growth and thus, strain on servers, as the cause. We were happy to wait it out with our fellow trainers knowing that it\u2019s worth waiting for. No one got mad.\nWhen the in-game tracking \u201cbroke,\u201d we all stood idly by, patiently, waiting for the game to update and fix.\nAlong came Pokevision. We made Pokevision not to \u201ccheat.\u201d We made it so that we can have a temporary relief to the in-game tracker that we were told was broken. John, at SDCC, you said that you guys were working on \u201cfixing the in-game tracker.\u201d This made everyone believe that this was coming sometime soon. We saw Pokevision as a stop gap to this\u200a\u2014\u200aand we had every intention in closing it down the minute that Pokemon Go\u2019s own tracker restored functionality.\nAs we waited more than 2 and a half weeks, the tracker was still not fixed. We noticed more and more of our friends leave the game; the only way I\u200a\u2014\u200aand I know experiences vary here\u200a\u2014\u200acould convince them to play was show them Pokevision, and say that \u201cHey, here\u2019s a temporary remedy to the tracking issue\u200a\u2014\u200awe\u2019re still optimistic that Pokemon Go\u2019s tracker will be fixed soon!\u201d\nNobody heralded Pokevision as a permanent, end-all solution; in fact, all the media coverage of Pokevision was littered with comments such as: \u201cPokevision is okay, but when the tracker is fixed in game, I\u2019m going to stop using this.\u201d\nFor the past 4 weeks. Every single one of your 80+ million players had so much faith. Take a look at Reddit, take a look at all these journalists who don\u2019t even play games (calling out Ryan Mac of Forbes), who became obsessed with Pokemon GO.\nAll of us were so eager for Pokemon Go to be \u201cfixed\u201d so that we can return to sharing Pokemon Go with our loved ones and friends. Remember when I said that before Pokemon Go came about, mentioning Pokemon Go would land you an odd stare? Pokemon Go reversed that\u200a\u2014\u200aPokemon Go became the conversation starter, the topic that everyone bonded over, the topic that guys used to pick up chicks with and not felt like a geeky nerd. That, and so much more, were solely because of Pokemon Go.\nAs almost 3 weeks have passed by, the in-game tracker is broken. People had a temporary solution in Pokevision, but we knew, and everyone else knew, this wouldn\u2019t be permanent. We didn\u2019t make Pokevision to spite you, Niantic\u200a\u2014\u200awe made it so that we can keep everyone playing while we wait patiently. We want to keep sharing our Pokemon stories with everyone else. How many people in the world have gotten the chance to have a serious conversation about POKEMON with their parents for the first time? How many of us got to talk about Pokemon like it was socially acceptable in any context? It\u2019s captured all of our hearts and imaginations, I cannot stress that enough.\nAfter 3 weeks though, we started seeing that you guys seemed to not want to talk to us (the players). Pokevision, at this time has grown to almost 50M unique users, and 11 million daily.\nLet that sink in for a second.\nHalf of the player base of Pokemon Go stopped by\u200a\u2014\u200aand they didn\u2019t do so to \u201ccheat.\u201d The game was simply too unbearable to play in its current state for many (note: many, not all). The main attraction wasn\u2019t that they got to have an advantage with Pokevision, the main attraction was that it allowed them to play Pokemon Go more. This is what everyone wants\u200a\u2014\u200ato play Pokemon Go more.\nWhen we closed Pokevision out of respect for your wishes, and at your requests\u2014 one of which came directly from you, John\u200a\u2014\u200awe trusted you guys fully in allowing the community to grow. I literally cannot express this more\u200a\u2014\u200awe just want to play the game. We can handle the bugs every now and then, but please at least tell us you guys care. Yes, Pokevision does give some advantages that may be TOO much; but is it all that bad? Pokemon has survived 20 years\u200a\u2014\u200aeven grown, I would say. And Pokemon Go made it even bigger. If the argument is that \u201cwell, if you catch a Snorlax you weren\u2019t supposed to find, but you found it on Pokevision, it might make you play less.\u201d If that was your argument, I\u2019d have to disagree! I\u2019ll still catch a damn Snorlax even if I have 20 of them. Just like how millions of us have caught probably over 100 pidgey\u2019s or zubat\u2019s each.\nPokemon is everlasting. The same 151 Pokemon have been around for 20 years. If 80M people downloaded and played Pokemon Go within a week (before it even released in multiple major countries) isn\u2019t an indication that no one can be sick of Pokemon, I don\u2019t know what is.\nAfter disabling the in-game tracker and Pokevision, the ratings on iOs and Android Google Play store went from 4.0 stars to 1.0\u20131.5. I am only one person, I admit that my sole opinion is not important, but what about the countless players begging for the game to be restored to its former state? I may be biased in saying that Pokevision being down had an impact on the amount of negative ratings, refund requests and outcry on social media\u200a\u2014\u200abut could it be true? Nothing has changed between the time the in-game tracker broke and Pokevision went down. Could it just be possible that the tracker\u200a\u2014\u200ano matter if Pokevision made it, or Niantic made it, is something that players desperately NEED\u200a\u2014\u200anot want, but NEED\u200a\u2014\u200ain order to play the game? Could it be possible that this is the very core fundamental feature that drives most players? I understand that there are some that want to walk around and stumble on a random Pokemon\u200a\u2014\u200ato each their own. But, 50M unique users and 11M daily and the ratings on your App (with no significant change in itself) are big indicators of this desire. Are customers always right? Especially if over half of them are looking for an outside fix just so they can enjoy something they love? People are naturally inquisitive, and in this case, they just want to play more and more, so they sought out something that helps them do so.\nPokemon Go is a social game. Its enjoyment depends on the players and their environment. If you take away the environment part (tracking) but keep the social part (players and their friends) intact, sure, people will still play; but would you not rather it be at its fullest potential?\nEveryone in the world wants to play Pokemon Go. It\u2019s been a huge part of everyone\u2019s lives already if it has not been clear enough. Look at the fans from Brazil\u200a\u2014\u200athey aren\u2019t spamming social media because they want to cause harm\u200a\u2014\u200athey just want to play the game. Just as I saw my friends play Pokemon many years ago, and wanted to be a part of it\u200a\u2014\u200athese guys are doing the same.\nThey just want to be with the rest of the world. Sadly, by the time they join, Pokemon Go may not be the game it was weeks ago.\nLastly, if money is an issue for you, Niantic, I must ask\u200a\u2014\u200awhy? You\u2019ve captivated the world and introduced Pokemon to people that would have never touched it had it not been for Pokemon Go. To me, that\u2019s priceless.\nYou won\u2019t be remembered for the profits you made, you\u2019ll be remembered for the world you changed through Pokemon and all of the lives you made better. Just look at all the stories\u200a\u2014\u200athere\u2019s plenty. So when millions of players are expressing their feedback to changes, is it not worth it to listen to what they have to say?\nIn its first few weeks, Pokemon Go has already enhanced millions of lives in unimaginable ways. It has so much potential to continue changing the world. Wouldn\u2019t you, Niantic, want to see just how much good you can do with Pokemon Go\u200a\u2014\u200ais that not more valuable than anything else? I sure think so.\nWarmly,\nYang", + "cashout_time": "1969-12-31T23:59:59", + "category": "pokemon", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T18:38:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 586361, + "json_metadata": "{\"tags\":[\"pokemon\",\"gaming\",\"steemit\",\"bitcoin\",\"decent\"]}", + "last_payout": "2016-09-03T09:22:48", + "last_update": "2016-08-03T18:38:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "pokemon", + "percent_hbd": 10000, + "permlink": "an-open-letter-to-john-hanke-and-niantic", + "reward_weight": 2276, + "root_author": "a11at", + "root_permlink": "an-open-letter-to-john-hanke-and-niantic", + "title": "An Open Letter to John Hanke & Niantic", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T12:44:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Taking another foray into the field of artificial intelligence (AI) and machine learning as well as to make its digital assistant Siri better, Apple has acquired Seattle-based machine learning startup Turi for nearly $200 million.\n\nhttp://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\n\nAccording to a GeekWire report, the move is set to increase Apple's presence in the Seattle region where the tech giant has been building an engineering outpost for the past two years. \"Apple buys smaller technology companies from time to time, and we generally do not discuss our purpose or plans,\" said Apple in a statement given to GeekWire.\n\nhttp://avtosalontochka.ru/uploads/posts/2015-09/1441818909_eppl1.jpg\n\nTuri offers tools that are meant to let developers easily scale machine learning applications. The startup is expected to remain in the Seattle region and continue to grow as Apple builds out further expertise in data science, artificial intelligence and machine learning, the report added.\n\nhttp://www.2fons.ru/pic/201407/2560x1600/2fons.ru-33604.jpg\n\nThe Cupertino-based company has recently bought some machine learning and AI startups like VocalIQ and Perceptio and facial recognition startup Emotient, among others. Apple has recently been making a push into artificial intelligence through Siri personal assistant and related technologies.\n\nhttp://www.fonstola.ru/pic/201111/2560x1440/fonstola.ru-49021.jpg", + "cashout_time": "1969-12-31T23:59:59", + "category": "apple", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-06T12:44:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 643787, + "json_metadata": "{\"tags\":[\"apple\",\"turi\",\"siri\",\"startup\"],\"image\":[\"http://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\"]}", + "last_payout": "2016-09-06T02:21:33", + "last_update": "2016-08-06T12:44:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "apple", + "percent_hbd": 10000, + "permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "reward_weight": 3638, + "root_author": "a11at", + "root_permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "title": "APPLE BUYS MACHINE LEARNING STARTUP TURI TO MAKE SIRI BETTER", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-02T06:08:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Owner's review\n\nhttps://h-a.d-cd.net/905320as-960.jpg\n\n\u4e0d\u8981\u7d27, \u8fd9 \u662f \u4f60 \u7684 \u8f66 \u662f \u4ec0\u4e48, \u4e3b\u8981 \u7684 \u4e1c\u897f \u2014 \u5728 \u70e4\u67b6 \u4e0a \u7684 \u56db\u4e2a \u73af \u2026\n(\"no matter what you have a car, the main thing \u2014 it is four rings on the grill \u2026\" \u2014 Chinese proverb)\n\nhttps://b-a.d-cd.net/3dee672s-960.jpg\n\nAfter a spontaneous and quick sale A4 DTM choice naturally fell exclusively on the Audi, but rather on RSQ3 FL, which is characterized by an enviable installed power thanks to the legendary 2,5 TFSI 340 hp in combination with a rapid-S-tronic!\nNeedless to say that the acceleration is 4.2 seconds. up to 100 km. at one o'clock!\n(measurements of the journal -http: //www.autobild.de/artikel/a\u2026-45-amg-test-5702529.html)\n\nhttps://a-a.d-cd.net/2a96672s-960.jpg\n\nRivals have this \"baby\" is not so much, and all of them from a large class \u2026\n\nhttps://h-a.d-cd.net/8f6e672s-960.jpg\n\nAnd the choice has been reduced mainly to the 3rd automobiles:\n-SQ5 -otpal Due to the fact that the new model will be released soon, and the heavier and slower RSQ3;\n\n-RS3 -otpal Because of the small clearance, and especially do not want to wait;\n\n-RSQ3-PLUS was that the car's high, restyled and fast!\n\nhttps://f-a.d-cd.net/1fa1672s-960.jpg\n\nColor was not discussed-it must be very blue car -Sepang Blue!\nDiscs for the Rotor -The most RSQ3, and I like them most! Cool!\nAs to differences from dorestaylom then Restayl differs, in addition to external visual features, lower vehicle weight by 50 kg. and reprogram the engine, which now produces an impressive 340 hp!\nIn real life, the car looks much more beautiful and harmonious than the picture!\nThe car is perfectly controlled (for its use) and it is fine tailored inside: another from Audi, and do not wait \u2026\nThis Audi, is emotion, speed and drive! So, for what we love is true thoroughbred cars, to which undoubtedly belongs RS Series from quattro GmbH!\n\nhttps://h-a.d-cd.net/196e672s-960.jpg\n\nIf the test drive did not help much to understand how the car rulitsya, a little closer to meet him RS surprises with its responsiveness and quite understandable and predictable control!\n\nhttps://d-a.d-cd.net/ee61672s-960.jpg\n\nIt goes very cheerfully!\n\nWhat is very pleased, is the fact that after the \"stool\" A4 DTM on RSQ3 20 drives a smooth ride!\nThe car was in another city at the OD, a thousand kilometers. from the house, but because the expectation of a few days has been painfully slow.\nFor photos not scold -Made in haste night, anxious to put \u2026\n\nThen there will be photo shoot!\n\nFeatures and Specs\n\nEngine 2.5 gasoline (340 h.p.)\nRobotic\nall-wheel\nPurchased in 2015\nAudi RS Q3 in production since 2013", + "cashout_time": "1969-12-31T23:59:59", + "category": "audi", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-05T21:01:03", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 634545, + "json_metadata": "{\"tags\":[\"audi\",\"car\"],\"image\":[\"https://h-a.d-cd.net/905320as-960.jpg\"]}", + "last_payout": "2016-09-05T10:11:36", + "last_update": "2016-08-05T21:01:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "audi", + "percent_hbd": 10000, + "permlink": "audi-rs-q3-fl", + "reward_weight": 1915, + "root_author": "a11at", + "root_permlink": "audi-rs-q3-fl", + "title": "Audi RS Q3 FL", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T21:50:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Bitcoin, a Florida judge says, is not real money. Ironically, that could provide a boost to use of the crypto-currency which has remained in the shadows of the financial system.\n\nThe July 22 ruling by Miami-Dade Circuit Judge Teresa Pooler means that no specific license is needed to buy and sell bitcoins.\nThe judge dismissed a case against Michel Espinoza, who had faced money laundering and other criminal charges for attempting to sell $1,500 worth of bitcoins to an undercover agent who told the defendant he was going to use the virtual money to buy stolen credit card numbers.\nEspinoza's lawyer Rene Palomino said the judge acknowledged that it was not illegal to sell one's property and ruled that this did not constitute running an unauthorized financial service.\n\"He was selling his own personal bitcoins,\" Palomino said. \"This decision clears the way for you to do that in the state of the Florida without a money transmitting license.\"\nIn her ruling, Pooler said, \"this court is unwilling to punish a man for selling his property to another, when his actions fall under a statute that is so vaguely written that even legal professionals have difficulty finding a singular meaning.\"\n\nhttp://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\n\nShe added that \"this court is not an expert in economics,\" but that bitcoin \"has a long way to go before it is the equivalent of money.\"\nBitcoin, whose origins remain a mystery, is a virtual currency that is created from computer code and is not backed by any government. Advocates say this makes it an efficient alternative to traditional currencies because it is not subject to the whims of a state that may devalue its money to cut its debt, for example.\nBitcoins can be exchanged for goods and services, provided another party is willing to accept them, but until now they been used mostly for shady transactions or to buy illegal goods and services on the \"dark\" web.\nBitcoin was launched in 2009 as a bit of software written under the Japanese-sounding name Satoshi Nakamoto. This year Australian programmer Craig Wright claimed to be the author but failed to convince the broader bitcoin community.\nIn some areas of the United States bitcoin is accepted in stores, restaurants and online transactions, but it is illegal in some countries, notably France and China.\nIt is gaining ground in countries with high inflation such as Argentina and Venezuela.\nBut bitcoin values can be volatile. Over the past week its value slumped 20 percent in a day, then recouped most losses, after news that a Hong Kong bitcoin exchange had been hacked with some $65 million missing.\nImpact across US, world\nArthur Long, a lawyer specializing in the sector with the New York firm Gibson Dunn, said the July court ruling is a small victory for the virtual currency but that it's not clear if the interpretation will be the same in other US states or at the federal level.\n\"It may have an effect as some states are trying to use existing money transmitting statutes to regulate certain transactions in bitcoin,\" Long told AFP.\nCharles Evans, professor of finance at Barry University, said the ruling \"absolutely is going to provide some guidance in other courts\" and could potentially be used as a precedent in other countries to avoid the stigma associated with bitcoin use.\nBitcoins can store value and hedge against inflation, without being considered a monetary unit, according to Evans, who testified as an expert witness in the Florida trial.\n\"It can be used as an exchange,\" he said, and may be considered a commodity which can be used for bartering like fish or tobacco, for example.\nEvans noted that \"those who are not yet in the bitcoin community will be put on notice: as long as they organize their business in a particular way they can avoid the law.\"\nBut he added that \"people who are engaged in illegal activities will continue to do what they are going to do because they are criminals.\"", + "cashout_time": "1969-12-31T23:59:59", + "category": "bitcoin", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T21:50:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 651155, + "json_metadata": "{\"tags\":[\"bitcoin\",\"world\",\"country\",\"steemit\"],\"image\":[\"http://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\"]}", + "last_payout": "2016-09-06T09:52:18", + "last_update": "2016-08-06T21:50:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 5, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_hbd": 10000, + "permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "reward_weight": 1937, + "root_author": "a11at", + "root_permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "title": "Bitcoin not money, judge rules in victory for backers", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json index 023ade2b..8bd185f7 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 608846, - "author": "a-m3001", - "permlink": "how-i-managed-depression-and-work", - "category": "story", - "parent_author": "", - "parent_permlink": "story", - "title": "How I managed depression and work", - "body": "Hi, I'm A.M for now, I'm in my mid-20s and want to share my story with working and facing this thing called life after I watched a lot of YouTubers like Thomas James \"TomSka\" David Brown “boyinaband” and many others who have very openly shared their hardships, they have inspired me to write this….. Whatever this is.\nI don't consider myself a good writer so bare with me here.\nTo try to keep this post organized and make sense I'll highlight the point I want to talk about and tell the relevant part of my story, you can connect the pieces all together at the end.\n\n**First how am I?** \nI grow up in the countryside I went to normal school when I was yang, because I was the quiet introvert and wasn't from the town I was in I got bullied a lot for most of my time at school, I got through school time knowing just two friends, I was OK with it.\nI genuinely lost interest in school when I was in the ninth grade It seemed more like a memory test than a way of learning so I started looking for ways to make money, \"why waste time learning things irrelevant in real life if I can make money now\" my naive 16 years old self said, don't get me wrong I didn't think I was done with learning I just wanted to learn in my own way, and I didn't stop school, now I'm in part time Business school, so back then I started looking for any way to make money in the last 5 year I tried: working in sales for over 2 years, selling products online, becoming instructor online, worked as SEO & social media consultant, tried starting my own business for 4 times, and for the last year and half I taught myself how to program and how to use Unity game engine and now I'm working on my first game, I can easily and proudly say that I didn't succeed at any of what I did so far, but I've learned a lot every time and I would do it all over again if I had the chance.\nThe process of picking myself up every single freaking time was a living hell and I got desperate many times.\nbecause I saw a lot of people feeling relevant to what David said in his video I want to share how I managed to keep my sanity and my opinion about some point he brought in his video.\n\n\n**Not thinking your work is good enough:**\nIs that really a bad thing? not being satisfied with what you just accomplished is a sign that you always look forward to what you still can do.\nI remember after I published my first course on Udemy I got invited to a hangout and I went for it I thought I'll give myself some slack, while I was there someone shouted out \"this guy here just published his first course let all give him a clap shall we\" for some reason he thought that was a good idea, I don't think I can blame him his intentions were good, I never tried to put a smile as hard as I did that moment I guess I just didn't want to look like a selfish prick, but the truth that I wasn't happy about what I accomplished I was thinking about my bad English poor structure of the course and was I being a sellout for trying to sell my knowledge? halfway of creating the course, I was already thinking about 5 other things I wanted to do next.\nI think there's nothing wrong about not being satisfied with what you finish, I think It's a good sign of an ambitious creator.\nWhen you first make the decision to accomplish something It looks like that godly thing that you think It would feel good to have or do, but when you start turning that big sexy thing to a small to-do list somewhere the appeal you had to that thing will disappear to a certain point, it's not that godly sexy thing you thought about before it's becoming a part of your routine now you know the process of doing that thing It's not a mystery anymore.\nI think that's why they say: \"It's about the journey, not the destination\".\n\n\n**Not taking care of yourself:**\nIt's hard to keep taking care of yourself to others people standards, whether it's about looking ripped putting makeup or buying the latest clothes, instead find your own save point and move forward from there if you feel the need to.\nWhen I was working in seals I had to look my best most of the time's which was exhausting more than the work itself and what made it worst is that some coworkers starting hinting that I need to start working out to look sharper and more confident.\nBecause I was desperate for results from my work I started going to the gym and I got stuck at joining for a month or two then giving up for half a year couple of times, every time I stopped going to the gym I over beat myself saying that I need this for my work, I need more money to do a lot of things, if this work didn't go well what else Am I going to do, eventually I usually took it out on food, I don't even want to start thinking what would have happened to me if my body was able to store fat.\nTrying to take care of yourself to others standards can be very exhausting, I felt down because I was putting so much effort in things I don't really care about to get others approval, I genuinely don't care about having a ripped body, it would look cool sure but I'm not willing to put all that effort into health and looks at least for now, who knows maybe in the future things will be better and I'll be willing to put the effort necessary to have 6 pack abs (wink wink ladies).\nNowadays I eat better than I used to, I still eat some junk food but things are much much better than they were 2 years ago, when I fell down I still go buy and drink a liter of Pepsi but at some point that was my morning coffee, as for my looks I cut my hair very short so I would have one less thing to worry about in the morning, I shave my beard once every couple of weeks I change my cloth every two or three days even if I didn't go out.\nThe point is I take care of myself for my own sack, It was much worse before and I'll always keep working to improve pit by pit.\nIt's about building habits not getting motivated for a couple of weeks then beating yourself for not being able to keep up.\n\n\n**Not mastering one skill:**\nI worked in sales, instructed online, worked as SEO and social media consultant, self taught myself how to program and make games but I don’t think I’m the right person to talk about this, all I’m saying that if you didn’t find that one true call that is right for you, you might be a “multipotentialite” if you want to know what exactly does this mean I urge you to watch Emilie talk at TedX\nhttps://www.youtube.com/watch?v=QJORi5VO1F8\nAnd check the blog too if you want to know more \nhttp://puttylike.com/\n\n**Everything happens for a reason........ or does it?**\nWhen I was young I was fortunate to know a good old religious man, I don’t know about your perspective about religions but hear me out this isn’t a sermon, I still remember when he tried to teach me that everything happens for a reason I was like “WHAT……. Oh really, then what is the reason for this and this and that” my question didn’t stop and I wasn’t asking nicely either yet, somehow he was calm about it like some kind of monk, I don’t know if I ruined his day or not but I feel bad for taking the world misery out on him that day, he was just a simple man who was doing what he think is good for others, his intentions were good but unfortunately for him I wasn’t a simple person, I overthink everything and everyone, it’s my blessing and my curse, later I told my family about him and I was surprised that they knew him, apparently everyone knows each other in the countryside, they told me about what he was facing lately personally, financially, and emotionally, I didn’t believe that someone who is facing all that isn’t depressed or angry and even trying to do good for others at least by his believes, I wanted to know more about him he got my interest, I wanted to know if he’s an imposter who is just putting a good face or not because a part of me didn’t believe how can he be that good, I kept asking about him from time to time and sometimes I even went to his “lessons”, eventually I went to face him with what I know about him like a detective facing a criminal, the crime of being that simple yet trying to be better than me, It’s pathetic I know It’s just how my brain works sometimes, because I used to take pride of being logical about everything and not believing in anything without questioning it, it bothered me how can he be at peace with his life and I’m not even that he’s facing a lot more than I’m, I faced him and told him everything then asked how can you be this calm about everything that is happening in your life, he had a faint smile and said “I don’t know the reason for everything that is happening right now but everything happens for a reason” I remember holding my fist hard and walking away, maybe I was holding my fist trying not to hit him for not being realistic like me or probably not to beat myself for not being half the man that he was.\nI don’t know about your perspective about religions and I’m not here to tell you about mine but I respect that some religions teach that everything happens for a reason, is it the truth? Does everything happens for a reason? I don’t know, I don’t think that is even the point, It’s silly to even get in an argument about this because no one can be sure about it, it’s simply just a belief, it’s simply teach you to not overthink about the reasons for everything around you, just learn from it if you can and focus on what you can do, it’s kind of funny for me to tell you not to overthink about somethings because I’m sure my 19 year old me would punch me right in the face, but it’s just too draining and exhausting to try to find a reason for every bad thing that have happened to me or to others.\nIn the last three years two of my best friends died, the first one I knew for about nine years and the other one for around five, both killed, both in a way they didn’t deserve to, each time I had to force myself to focus on the 0.0000001% full part of the cup or else I would have lose my sanity.\nI would hate to think what would be my thought process if someone tried to sell me religion like a product, some of them would be like “Hi son, you should follow my beliefs because I’m 100% sure that I’m right and everybody else is wrong and if you don’t, well you’re FU**ED” that would have disfigured some of the beliefs that helped me get better.\nControlling your stream of thoughts will be the hardest thing you’ll ever have to do in your life, but if mastered it you’ll become unstoppable.\n\n\nI’ve been getting into the game industry for around year and half now, I don’t have any experiance in the field but I’ve other experiences that many don’t, working in sales made me learn a lot about people's motivations and incentives, I saw a lot of people jump to make purchase while other chicken out last minute, you don’t get to learn about this in a book or an NLP course, you only get to learn this experience by working in sales first hand, working as an SEO and social media consultant made me care about the little details like posting in the right social medias that is more relevant to your audience, more isn’t always better, choosing the right words colors and timing for best result, sometimes modifying your content for a better marketing or not going into a certain niche even if there’s an audience for it because it doesn’t suit your brand, teaching online made me learn that the selling point isn’t the end goal, helping and mentoring students even after they have purchased the course was way more important than I thought, the feedback I got about the course was crucial to take the course to the next level and some student even helped me with some marketing.\nIf you know anything about the mobile game industry you can see how these experiences can be helpful, I can imagine the kind of journey I want to create for the player because I can build the motivations and incentives I want for him, while I’m building the player journey I’ll always keep in mind to put the monetization and ads the right way so all of them can work seamlessly together for a better player experience, and taking care of existing players and community will always be a priority, I wasn’t happy and cheerful when I had to learn these experiences the hard way, I thought I was just failing, I even remember crying myself to sleep every time I decided to pull the plug on something I was working on, but eventually It worked out somehow I think.\n“you can't connect the dots looking forward, you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something - your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life”.\nSteve Jobs\n\n\nI want to share some of the tricks I used that helped my in general to get my life together:\n\n**Music**\nlisten to cheerful music, even if it might not be exactly what you listen to usually but try them for a while, my favorite type or music is Rock and Metal it’s loud and make me feel empowered but sometimes it's not what I need to change my mood so I started listening to electro music mostly Drum & bass, I didn’t like it at first, I’m human I don’t like to change, but forcing myself to listen to it for while change my perspective about it and I started listening to it while I’m working, and it worked.\n\n\n**habits not motivation**\nWe’re slaves to our habits, it’s exhausting to do something that’s you’re not used to for quite a while, so invest your effort and time to build your habits pit by pit no matter how slow it will take, measure your progress and celebrate your success no matter how small they’re, it’ll make all the difference in your life in the long term.\n\n**work in a group**\nNo matter how introverted person you think you’re, you’re still human at the end of day and you need your dose of human interaction so try to work in group if you can, if you don’t have that luxury (like me) work out side from time to time, library, coffee shop, parks all works, changing your surrounding and environment can change your mood, you can try changing your room\\office decor every couple of weeks too.\n\n**warm-blooded pet**\nGet a warm-blooded pet it helps, I tried fish and turtles but didn’t really work for me they just stared at me with their empty eyes, I have a cat for two year now and It helped, maybe it’s having the sense of that there is a creature that needs you to look after him, it’s helped me not to feel completely unworthy in some bad day.\n\n\nFinally I hope this help you in any way it can, and hope it will find its way to all who needs it.", - "json_metadata": "{\"tags\":[\"story\",\"philosophy\",\"life\",\"psychology\",\"secret-writer\"],\"links\":[\"https://www.youtube.com/watch?v=QJORi5VO1F8\"]}", - "last_update": "2016-08-15T05:28:12", - "created": "2016-08-15T04:53:33", - "active": "2016-08-15T05:28:12", - "last_payout": "2016-09-14T16:58:03", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a-m3001", - "root_permlink": "how-i-managed-depression-and-work", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 497962, - "author": "a-man", - "permlink": "re-jamiecrypto-raising-leaders-instead-of-rulers-20160807t213425757z", - "category": "homeschooling", - "parent_author": "jamiecrypto", - "parent_permlink": "raising-leaders-instead-of-rulers", - "title": "", - "body": "Trying to repost to FB", - "json_metadata": "{\"tags\":[\"homeschooling\"]}", - "last_update": "2016-08-07T21:34:24", - "created": "2016-08-07T21:34:24", - "active": "2016-08-07T21:34:24", - "last_payout": "2016-09-07T09:52:42", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "jamiecrypto", - "root_permlink": "raising-leaders-instead-of-rulers", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 359861, - "author": "a-spears", - "permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", - "category": "life", - "parent_author": "agent", - "parent_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", - "title": "", - "body": "Finally someone is saying it out loud. thank you!!", - "json_metadata": "{\"tags\":[\"life\"]}", - "last_update": "2016-07-30T19:38:00", - "created": "2016-07-30T19:37:48", - "active": "2016-07-30T21:34:27", - "last_payout": "2016-08-30T10:16:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "agent", - "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 72421, - "author": "a-spears", - "permlink": "re-ashleybr-test-20160713t203411015z", - "category": "travel", - "parent_author": "ashleybr", - "parent_permlink": "test", - "title": "", - "body": "add katie-lynn boulard on FB, she's my friend and she's currently doing an exchange in bangkok. She's really sweet and she said you can come to hers for the evening if you want to have some company. she only has a room so no bed for you :/ but at least something, I'm sure she can give you a meal and just some company. :))", - "json_metadata": "{\"tags\":[\"travel\"]}", - "last_update": "2016-07-13T20:34:12", - "created": "2016-07-13T20:34:12", - "active": "2016-07-13T21:01:48", - "last_payout": "2016-08-25T12:51:45", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 20, - "root_author": "ashleybr", - "root_permlink": "test", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 431883, - "author": "a11at", - "permlink": "ai-revolution-101", - "category": "steemit", - "parent_author": "", - "parent_permlink": "steemit", - "title": "AI Revolution 101", - "body": "https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\n\nAI Revolution 101\nOur last invention, greatest nightmare, or pathway to utopia?\nAbout\nThis essay, originally published in eight short parts, aims to condense the current knowledge on Artificial Intelligence. It explores the state of AI development, overviews its challenges and dangers, features work by the most significant scientists, and describes the main predictions of possible AI outcomes. This project is an adaptation and major shortening of the two–part essay AI Revolution by Tim Urban of Wait But Why. I shortened it by a factor of 3, recreated all images, and tweaked it a bit. Read more on why/how I wrote it here.\nIntroduction\nAssuming that human scientific activity continues without major disruptions, artificial intelligence may become either the most positive transformation of our history or, as many fear, our most dangerous invention of all. AI research is on a steady path to develop a computer that has cognitive abilities equal to the human brain, most likely within three decades (timeline in chapter 5). From what most AI scientists predict, this invention may enable very rapid improvements (called fast take-off), toward something much more powerful — Artificial Super Intelligence — an entity smarter than all of humanity combined (more on ASI in chapter 3). We are not talking about some imaginary future. The first level of AI development is gradually appearing in the technology we use everyday (newest AI advancements in chapter 2). With every coming year these advancements will accelerate and the technology will become more complex, addictive, and ubiquitous. We will continue to outsource more and more kinds of mental work to computers, disrupting every part of our reality: the way we organize ourselves and our work, form communities, and experience the world.\nExponential Growth\nThe Guiding Principle Behind Technological Progress\nTo more intuitively grasp the guiding principles of AI revolution, let’s first step away from scientific research. Let me invite you to take part in a story. Imagine that you’ve received a time machine and been given a quest to bring somebody from the past. The goal is to shock them by showing them the technological and cultural advancements of our time, to such a degree that this person would perform SAFD (Spinning Around From Disbelief).\n\nSo you wonder which era should you time-travel to, and decide to hop back around 200 years. You get to the early 1800s, retrieve a guy and bring him back to 2016. You “…walk him around and watch him react to everything. It’s impossible for us to understand what it would be like for him to see shiny capsules racing by on a highway, talk to people who had been on the other side of the ocean earlier in the day, watch sports that were being played 1,000 miles away, hear a musical performance that happened 50 years ago, and play with …[a] magical wizard rectangle that he could use to capture a real-life image or record a living moment, generate a map with a paranormal moving blue dot that shows him where he is, look at someone’s face and chat with them even though they’re on the other side of the country, and worlds of other inconceivable sorcery.”¹ It doesn’t take much. After two minutes he is SAFDing.\nNow, both of you want to try the same thing, see somebody Spinning Around From Disbelief, but in your new friend’s era. Since 200 years worked, you jump back to the 1600s and bring a guy to the 1800s. He’s certainly genuinely interested in what he sees. However, you feel it with confidence — SAFD will never happen to him. You feel that you need to jump back again, but somewhere radically further. You settle on rewinding the clock 15,000 years, to the times “…before the First Agricultural Revolution gave rise to the first cities and the concept of civilisations.”² You bring someone from the hunter-gatherer world and show him “…the vast human empires of 1750 with their towering churches, their ocean-crossing ships, their concept of being “inside,” and their enormous mountain of collective, accumulated human knowledge and discovery”³ — in forms of books. It doesn’t take much. He is SAFDing in the first two minutes.\nNow there are three of you, enormously excited to do it again. You know that it doesn’t make sense to go back another 15,000, 30,000 or 45,000 years. You have to jump back, again, radically further. So you pick up a guy from 100,000 years ago and you you walk with him into large tribes with organized, sophisticated social hierarchies. He encounters a variety of hunting weapons, sophisticated tools, sees fire and for the first time experiences language in the form of signs and sounds. You get the idea, it has to be immensely mind-blowing. He is SAFDing after two minutes.\nSo what happened? Why did the last guy had to hop → 100,000 years, the next one → 15,000 years, and the guy who was hopping to our times only → 200 years?\n\nhttps://cdn-images-1.medium.com/max/2000/1*Wbd0td3DqD3pJo7_YHjkbQ.gif\n\n“This happens because more advanced societies have the ability to progress at a faster rate than less advanced societies — because they’re more advanced. [1800s] humanity knew more and had better technology…”⁴, so it’s no wonder they could make further advancements than humanity from 15,000 years ago. The time to achieve SAFD shrank from ~100,000 years to ~200 years and if we look into the future it will rapidly shrink even further. Ray Kurzweil, AI expert and scientist, predicts that a “…20th century’s worth of progress happened between 2000 and 2014 and that another 20th century’s worth of progress will happen by 2021, in only seven years⁵…A couple decades later, he believes a 20th century’s worth of progress will happen multiple times in the same year, and even later, in less than one month⁶…Kurzweil believes that the 21st century will achieve 1,000 times the progress of the 20th century.”⁷\n“Logic also suggests that if the most advanced species on a planet keeps making larger and larger leaps forward at an ever-faster rate, at some point, they’ll make a leap so great that it completely alters life as they know it and the perception they have of what it means to be a human. Kind of like how evolution kept making great leaps toward intelligence until finally it made such a large leap to the human being that it completely altered what it meant for any creature to live on planet Earth. And if you spend some time reading about what’s going on today in science and technology, you start to see a lot of signs quietly hinting that life as we currently know it cannot withstand the leap that’s coming next.”⁸\nThe Road to Artificial General Intelligence\nBuilding a Computer as Smart as Humans\nArtificial Intelligence, or AI, is a broad term for the advancement of intelligence in computers. Despite varied opinions on this topic, most experts agree that there are three categories, or calibers, of AI development. They are:\nANI: Artificial Narrow Intelligence\n1st intelligence caliber. “AI that specializes in one area. There’s AI that can beat the world chess champion in chess, but that’s the only thing it does.”⁹\nAGI: Artificial General Intelligence\n2nd intelligence caliber. AI that reaches and then passes the intelligence level of a human, meaning it has the ability to “reason, plan, solve problems, think abstractly, comprehend complex ideas, learn quickly, and learn from experience.”¹⁰\nASI: Artificial Super Intelligence\n3rd intelligence caliber. AI that achieves a level of intelligence smarter than all of humanity combined — “ranging from just a little smarter … to one trillion times smarter.”¹¹\n\nhttps://cdn-images-1.medium.com/max/800/1*5AkzXZJoVXRrGNSOO8ZojQ.gif\n\nWhere are we currently?\n“As of now, humans have conquered the lowest caliber of AI — ANI — in many ways, and it’s everywhere:”¹²\n“Cars are full of ANI systems, from the computer that figures out when the anti-lock brakes kick in, to the computer that tunes the parameters of the fuel injection systems.”¹³\n“Google search is one large ANI brain with incredibly sophisticated methods for ranking pages and figuring out what to show you in particular. Same goes for Facebook’s Newsfeed.”¹⁴\nEmail spam filters “start off loaded with intelligence about how to figure out what’s spam and what’s not, and then it learns and tailors its intelligence to your particular preferences.”¹⁵\nPassenger planes are flown almost entirely by ANI, without the help of humans.\n“Google’s self-driving car, which is being tested now, will contain robust ANI systems that allow it to perceive and react to the world around it.”¹⁶\n“Your phone is a little ANI factory … you navigate using your map app, receive tailored music recommendations from Pandora, check tomorrow’s weather, talk to Siri.”¹⁷\n“The world’s best Checkers, Chess, Scrabble, Backgammon, and Othello players are now all ANI systems.”¹⁸\n“Sophisticated ANI systems are widely used in sectors and industries like military, manufacturing, and finance (algorithmic high-frequency AI traders account for more than half of equity shares traded on US markets¹⁹).”²⁰\n“ANI systems as they are now aren’t especially scary. At worst, a glitchy or badly-programed ANI can cause an isolated catastrophe like”²¹ a plane crash, a nuclear power plant malfunction, or “a financial markets disaster (like the 2010 Flash Crash when an ANI program reacted the wrong way to an unexpected situation and caused the stock market to briefly plummet, taking $1 trillion of market value with it, only part of which was recovered when the mistake was corrected) … But while ANI doesn’t have the capability to cause an existential threat, we should see this increasingly large and complex ecosystem of relatively-harmless ANI as a precursor of the world-altering hurricane that’s on the way. Each new ANI innovation quietly adds another brick onto the road to AGI and ASI.”²²\n\nhttps://cdn-images-1.medium.com/max/2000/1*Ia8wUuZPxpUNzvUjNRsxpA.gif\n\nWhat’s Next? Challenges Behind Reaching AGI\n“Nothing will make you appreciate human intelligence like learning about how unbelievably challenging it is to try to create a computer as smart as we are … Build a computer that can multiply ten-digit numbers in a split second — incredibly easy. Build one that can look at a dog and answer whether it’s a dog or a cat — spectacularly difficult. Make AI that can beat any human in chess? Done. Make one that can read a paragraph from a six-year-old’s picture book and not just recognise the words but understand the meaning of them? Google is currently spending billions of dollars trying to do it.”²³\nWhy are “hard things — like calculus, financial market strategy, and language translation … mind-numbingly easy for a computer, while easy things — like vision, motion, movement, and perception — are insanely hard for it”²⁴?\n“Things that seem easy to us are actually unbelievably complicated. They only seem easy because those skills have been optimized in us (and most animals) by hundreds of million years of animal evolution. When you reach your hand up toward an object, the muscles, tendons, and bones in your shoulder, elbow, and wrist instantly perform a long series of physics operations, in conjunction with your eyes, to allow you to move your hand in a straight line through three dimensions … On the other hand, multiplying big numbers or playing chess are new activities for biological creatures and we haven’t had any time to evolve a proficiency at them, so a computer doesn’t need to work too hard to beat us.”²⁵\n\nhttps://cdn-images-1.medium.com/max/1200/0*E-qdF22nxvOrVPxP.\n\nWhen you look at picture A, “you and a computer both can figure out that it’s a rectangle with two distinct shades, alternating. Tied so far.”²⁶\nPicture B. “You have no problem giving a full description of the various opaque and translucent cylinders, slats, and 3-D corners, but the computer would fail miserably. It would describe what it sees — a variety of two-dimensional shapes in several different shades — which is actually what’s there.”²⁷ “Your brain is doing a ton of fancy shit to interpret the implied depth, shade-mixing, and room lighting the picture is trying to portray.”²⁸\nLooking at picture C, “a computer sees a two-dimensional white, black, and gray collage, while you easily see what it really is”²⁹ — a photo of a girl and a dog standing on a rocky shore.\n“And everything we just mentioned is still only taking in visual information and processing it. To be human-level intelligent, a computer would have to understand things like the difference between subtle facial expressions, the distinction between being pleased, relieved and content”³⁰.\nHow will computers reach even higher abilities like complex reasoning, interpreting data, and associating ideas from separate fields (domain-general knowledge)?\n“Building skyscrapers, putting humans in space, figuring out the details of how the Big Bang went down — all far easier than understanding our own brain or how to make something as cool as it. As of now, the human brain is the most complex object in the known universe.”³¹\nBuilding Hardware\nIf an artificial intelligence is going to be as intelligent as the human brain, one crucial thing has to happen — the AI “needs to equal the brain’s raw computing capacity. One way to express this capacity is in the total calculations per second the brain could manage.”³²\n\nThe challenge is that currently only a few of the brain’s regions are precisely measured. However, Ray Kurzweil, has developed a method for estimating the total cps of the human brain. He arrived at this estimate by taking the cps from one brain region and multiplying it proportionally to the weight of that region, compared to the weight of the whole brain. “He did this a bunch of times with various professional estimates of different regions, and the total always arrived in the same ballpark — around 10¹⁶, or 10 quadrillion cps.”³³\n“Currently, the world’s fastest supercomputer, China’s Tianhe-2, has actually beaten that number, clocking in at about 34 quadrillion cps.”³⁴ But Tianhe-2 is also monstrous, “taking up 720 square meters of space, using 24 megawatts of power (the brain runs on just 20 watts), and costing $390 million to build. Not especially applicable to wide usage, or even most commercial or industrial usage yet.”³⁵\n“Kurzweil suggests that we think about the state of computers by looking at how many cps you can buy for $1,000. When that number reaches human-level — 10 quadrillion cps — then that’ll mean AGI could become a very real part of life.”³⁶\nCurrently we’re only at about 10¹⁰ (10 trillion) cps per $1,000. However, historically reliable Moore’s Law states “that the world’s maximum computing power doubles approximately every two years, meaning computer hardware advancement, like general human advancement through history, grows exponentially³⁷ … right on pace with this graph’s predicted trajectory:”³⁸\n\nhttps://cdn-images-1.medium.com/max/800/1*4qcqwbsWjvWh-BWPnAsp6g.gif\n\nThis dynamic “puts us right on pace to get to an affordable computer by 2025 that rivals the power of the brain … But raw computational power alone doesn’t make a computer generally intelligent — the next question is, how do we bring human-level intelligence to all that power?”³⁹\nBuilding Software\nThe hardest part of creating AGI is learning how to develop its software. “The truth is, no one really knows how to make it smart — we’re still debating how to make a computer human-level intelligent and capable of knowing what a dog and a weird-written B and a mediocre movie is.”⁴⁰ But there are a couple of strategies. These are the three most common:\nCopy how the brain works.\nThe most straight-forward idea is to plagiarize the brain, and build the computer’s architecture with close resemblance to how a brain is structured. One example “is the artificial neural network. It starts out as a network of transistor ‘neurons,’ connected to each other with inputs and outputs, and it knows nothing — like an infant brain. The way it ‘learns’ is it tries to do a task, say handwriting recognition, and at first, its neural firings and subsequent guesses at deciphering each letter will be completely random. But when it’s told it got something right, the transistor connections in the firing pathways that happened to create that answer are strengthened; when it’s told it was wrong, those pathways’ connections are weakened. After a lot of this trial and feedback, the network has, by itself, formed smart neural pathways and the machine has become optimized for the task.”⁴¹\nThe second, more radical approach to plagiarism is whole brain emulation. Scientists take a real brain, cut it into a large number of tiny slices to look at the neural connections and replicate them in a computer as software. If that method is ever successful, we will have “a computer officially capable of everything the brain is capable of — it would just need to learn and gather information … How far are we from achieving whole brain emulation? Well so far, we’ve just recently been able to emulate a 1mm-long flatworm brain, which consists of just 302 total neurons.”⁴² To put this into perspective, the human brain consists of 86 billion neurons linked by trillions of synapses.\n2. Introduce evolution to computers.\n“The fact is, even if we can emulate a brain, that might be like trying to build an airplane by copying a bird’s wing-flapping motions — often, machines are best designed using a fresh, machine-oriented approach, not by mimicking biology exactly.”⁴³ If the brain is just too complex for us to digitally replicate, we could try to emulate evolution instead. This uses a process called genetic algorithms. “A group of computers would try to do tasks, and the most successful ones would be bred with each other by having half of each of their programming merged together into a new computer. The less successful ones would be eliminated.”⁴⁴ Speed and a goal-oriented approach are the advantages that artificial evolution has over biological evolution. “Over many, many iterations, this natural selection process would produce better and better computers. The challenge would be creating an automated evaluation and breeding cycle so this evolution process could run on its own.”⁴⁵\n3. “Make this whole thing the computer’s problem, not ours.”⁴⁶\nThe last concept is the simplest, but probably the scariest of them all. “We’d build a computer whose two major skills would be doing research on AI and coding changes into itself — allowing it to not only learn but to improve its own architecture. We’d teach computers to be computer scientists so they could bootstrap their own development.”⁴⁷ This is the likeliest way to get AGI soon that we know of.\nAll these software advances may seem slow or a little bit intangible, but as it is with the sciences, one minor innovation can suddenly accelerate the pace of developments. Kind of like the aftermath of the Copernican revolution — the discovery that suddenly made all the complicated mathematics of the planets’ trajectories much easier to calculate, which enabled a multitude of other innovations. Also, the “exponential growth is intense and what seems like a snail’s pace of advancement can quickly race upwards.”⁴⁸\n\nhttps://cdn-images-1.medium.com/max/1200/1*BHwAlKJFYwKYEzZlitNTvQ.gif\n\nThe Road to Artificial Super Intelligence\nAn Entity Smarter than all of Humanity Combined\nIt’s very real that at some point we will achieve AGI: software that has achieved human-level, or beyond human-level, intelligence. Does this mean that at that very moment the computers will be equally capable as us? Actually, not at all — computers will be way more efficient. Because of the fact that they are electronic, they will have following advantages:\nSpeed. “The brain’s neurons max out at around 200 Hz, while today’s microprocessors … run at 2 GHz, or 10 million times faster.”⁵¹\nMemory. Forgetting or confusing things is much harder in an artificial world. Computers can memorize more things in one second than a human can in ten years. A computer’s memory is also more precise and has a much greater storage capacity.\nPerformance. “Computer transistors are more accurate than biological neurons, and they’re less likely to deteriorate (and can be repaired or replaced if they do). Human brains also get fatigued easily, while computers can run nonstop, at peak performance, 24/7.”⁵²\nCollective capability. Group work is ridiculously challenging because of time-consuming communication and complex social hierarchies. The bigger the group gets, the slower the output of each person becomes. AI, on the other hand, isn’t biologically constrained to one body, won’t have human cooperation problems, and is able to synchronize and update its own operating system.\nIntelligence Explosion\nWe need to realize that AI “wouldn’t see ‘human-level intelligence’ as some important milestone — it’s only a relevant marker from our point of view — and wouldn’t have any reason to ‘stop’ at our level. And given the advantages over us that even human intelligence-equivalent AGI would have, it’s pretty obvious that it would only hit human intelligence for a brief instant before racing onwards to the realm of superior-to-human intelligence.”⁵³\nThe true distinction between humans and ASI wouldn’t be its advantage in intelligence speed, but “in intelligence quality — which is something completely different. What makes humans so much more intellectually capable than chimps isn’t a difference in thinking speed — it’s that human brains contain a number of sophisticated cognitive modules that enable things like complex linguistic representations or longterm planning or abstract reasoning, that chimps’ brains do not have. Speeding up a chimp’s brain by thousands of times wouldn’t bring him to our level — even with a decade’s time of learning, he wouldn’t be able to figure out how to … ”⁵⁴ assemble a semi-complicated Lego model by looking at its manual — something a young human could achieve in a few minutes. “There are worlds of human cognitive function a chimp will simply never be capable of, no matter how much time he spends trying.”⁵⁵\n“And in the scheme of the biological intelligence range … the chimp-to-human quality intelligence gap is tiny.”⁵⁶\n\nhttps://cdn-images-1.medium.com/max/800/1*vnVWATTAMCwfnJu_iZn2RQ.jpeg\n\nIn order to render how big a deal it would be to exist with something that has a higher quality of intelligence than us, we need to imagine AI on the intelligence staircase two steps above us — “its increased cognitive ability over us would be as vast as the chimp–human gap … And like the chimp’s incapacity to ever absorb …”⁵⁷ what kind of magic happens in the mechanism of a doorknob — “we will never be able to even comprehend the things … [a machine of that intelligence] can do, even if the machine tried to explain them to us … And that’s only two steps above us.”⁵⁸\n“A machine on the second-to-highest step on that staircase would be to us as we are to ants.”⁵⁹ “Superintelligence of that magnitude is not something we can remotely grasp, any more than a bumblebee can wrap its head around Keynesian Economics. In our world, smart means a 130 IQ and stupid means an 85 IQ — we don’t have a word for an IQ of 12,952.”⁶⁰\n“But the kind of superintelligence we’re talking about today is something far beyond anything on this staircase. In an intelligence explosion — where the smarter a machine gets, the quicker it’s able to increase its own intelligence — a machine might take years to rise from … ”⁶¹ the intelligence of an ant to the intelligence of the average human, but it might take only another 40 days to become Einstein-smart. When that happens, “it works to improve its intelligence, with an Einstein-level intellect, it has an easier time and can make bigger leaps. These leaps will make it much smarter than any human, allowing it to make even bigger leaps.”⁶²\nFrom then on, following the rule of exponential advancements and utilizing the speed and efficiency of electrical circuits, it may perhaps take only 20 minutes to jump another step, “and by the time it’s ten steps above us, it might be jumping up in four-step leaps every second that goes by. Which is why we need to realize that it’s distinctly possible that very shortly after the big news story about the first machine reaching human-level AGI, we might be facing the reality of coexisting on the Earth with something that’s here on the staircase (or maybe a million times higher):”⁶³\n\nhttps://cdn-images-1.medium.com/max/800/0*LdJxmWCjSdweUKvb.\n\n“And since we just established that it’s a hopeless activity to try to understand the power of a machine only two steps above us, let’s very concretely state once and for all that there is no way to know what ASI will do or what the consequences will be for us. Anyone who pretends otherwise doesn’t understand what superintelligence means.”⁶⁴\n“If our meager brains were able to invent wifi, then something 100 or 1,000 or 1 billion times smarter than we are should have no problem controlling the positioning of each and every atom in the world in any way it likes, at any time — everything we consider magic, every power we imagine a supreme God to have will be as mundane an activity for the ASI as flipping on a light switch is for us.”⁶⁵\n“As far as we’re concerned, if an ASI comes into being, there is now an omnipotent God on Earth — and the all-important question for us is: Will it be a good god?”⁶⁶\nLet’s start from the brighter side of the story.\nHow Can ASI Change our World?\nSpeculations on Two Revolutionary Technologies\nNanotechnology\nNanotechnology is an idea that comes up “in almost everything you read about the future of AI.”⁶⁷ It’s the technology that works at the nano scale — from 1 to 100 nanometers. “A nanometer is a millionth of a millimeter. 1 nm–100 nm range encompasses viruses (100 nm accross), DNA (10 nm wide), and things as small as molecules like hemoglobin (5 nm) and medium molecules like glucose (1 nm). If/when we conquer nanotechnology, the next step will be the ability to manipulate individual atoms, which are only one order of magnitude smaller (~.1 nm).”⁶⁸\nTo put this into perspective, imagine a very tall human standing on the earth, with a head that reaches the International Space Station (431 km/268 mi high). The giant is reaching down with his hand (30 km/19 mi across) to build “objects using materials between the size of a grain of sand [.25 mm] and an eyeball [2.5 cm].”⁶⁹\n\nhttps://cdn-images-1.medium.com/max/1200/1*e9Ut3QT2F3tNh4h5U4rR8A.jpeg\n\n“Once we get nanotechnology down, we can use it to make tech devices, clothing, food, a variety of bio-related products — artificial blood cells, tiny virus or cancer-cell destroyers, muscle tissue, etc. — anything really. And in a world that uses nanotechnology, the cost of a material is no longer tied to its scarcity or the difficulty of its manufacturing process, but instead determined by how complicated its atomic structure is. In a nanotech world, a diamond might be cheaper than a pencil eraser.”⁷⁰\nOne of the proposed methods of nanotech assembly is to make “one that could self-replicate, and then let the reproduction process turn that one into two, those two then turn into four, four into eight, and in about a day, there’d be a few trillion of them ready to go.”⁷¹\nBut what if this process goes wrong or terrorists manage to get ahold of the technology? Let’s imagine a scenario where nanobots “would be designed to consume any carbon-based material in order to feed the replication process, and unpleasantly, all life is carbon-based. The Earth’s biomass contains about 1⁰⁴⁵ carbon atoms. A nanobot would consist of about 1⁰⁶ carbon atoms, so it would take 1⁰³⁹ nanobots to consume all life on Earth, which would happen in 130 replications. … Scientists think a nanobot could replicate in about 100 seconds, meaning this simple mistake would inconveniently end all life on Earth in 3.5 hours.”⁷²\nWe are not yet capable of harnessing nanotechnology — for good or for bad. “And it’s not clear if we’re underestimating, or overestimating, how hard it will be to get there. But we don’t seem to be that far away. Kurzweil predicts that we’ll get there by the 2020s.⁷³Governments know that nanotech could be an Earth-shaking development … The US, the EU, and Japan⁷⁴ have invested over a combined $5 billion so far”⁷⁵\nImmortality\n“Because everyone has always died, we live under the assumption … that death is inevitable. We think of aging like time — both keep moving and there’s nothing you can do to stop it.”⁷⁶ For centuries, poets and philosophers have wondered if consciousness doesn’t have to go the way of the body. W.B. Yeats describes us as “a soul fastened to a dying animal.”⁷⁷ Richard Feynman, Nobel awarded physicists, views death from a purely scientific standpoint:\n“It is one of the most remarkable things that in all of the biological sciences there is no clue as to the necessity of death. If you say we want to make perpetual motion, we have discovered enough laws as we studied physics to see that it is either absolutely impossible or else the laws are wrong. But there is nothing in biology yet found that indicates the inevitability of death. This suggests to me that it is not at all inevitable, and that it is only a matter of time before the biologists discover what it is that is causing us the trouble and that that terrible universal disease or temporariness of the human’s body will be cured.”⁷⁸\nTheory of great species attractors\nWhen we look at the history of biological life on earth, so far 99.9% of species have gone extinct. Nick Bostrom, Oxford professor and AI specialist, “calls extinction an attractor state — a place species are … falling into and from which no species ever returns.”⁷⁹\n\nhttps://cdn-images-1.medium.com/max/1200/0*o-MXeAYfUtWnOJKC.\n\n“And while most AI scientists … acknowledge that ASI would have the ability to send humans to extinction, many also believe that if used beneficially, ASI’s abilities could be used to bring individual humans, and the species as a whole, to a second attractor state — species immortality.”⁸⁰\n\nhttps://cdn-images-1.medium.com/max/1200/0*aYeNOSBxp4gieGwp.\n\n“Evolution had no good reason to extend our lifespans any longer than they are now … From an evolutionary point of view, the whole human species can thrive with a 30+ year lifespan” for each single human. It’s long enough to reproduce and raise children … so there’s no reason for mutations toward unusually long life being favored in the natural selection process.”⁸¹Though, “if you perfectly repaired or replaced a car’s parts whenever one of them began to wear down, the car would run forever. The human body isn’t any different — just far more complex … This seems absurd — but the body is just a bunch of atoms…”⁸² making up organically programmed DNA, which it is theoretically possible to manipulate. And something as powerful as ASI could help us master genetic engineering.\nRay Kurzweil believes that “artificial materials will be integrated into the body more and more … Organs could be replaced by super-advanced machine versions that would run forever and never fail.”⁸³ Red blood cells could be perfected by “red blood cell nanobots, who could power their own movement, eliminating the need for a heart at all … Nanotech theorist Robert A. Freitas has already designed blood cell replacements that, if one day implemented in the body, would allow a human to sprint for 15 minutes without taking a breath … [Kurzweil] even gets to the brain and believes we’ll enhance our mental activities to the point where humans will be able to think billions of times faster”⁸⁴ by integrating electrical components and being able to access online data.\n“Eventually, Kurzweil believes humans will reach a point when they’re entirely artificial, a time when we’ll look back at biological material and think how unbelievably primitive primitive it was that humans were ever made of that”⁸⁵and that humans aged, suffered from cancer, allowed random factors like microbes, diseases, accidents to harm us or make us disappear.”\n\nhttps://cdn-images-1.medium.com/max/2000/1*NcWWmd677RVWQRpLsz5X9g.jpeg\n\nWhen Will The First Machine Become Superintelligent?\nPredictions from Top AI Experts\n“How long until the first machine reaches superintelligence? Not shockingly, opinions vary wildly, and this is a heated debate among scientists and thinkers. Many, like professor Vernor Vinge, scientist Ben Goertzel, Sun Microsystems co-founder Bill Joy, or, most famously, inventor and futurist Ray Kurzweil, agree with machine learning expert Jeremy Howard when he puts up this graph during a TED Talk\n\n“Those people subscribe to the belief that this is happening soon — that exponential growth is at work and machine learning, though only slowly creeping up on us now, will blow right past us within the next few decades.\n“Others, like Microsoft co-founder Paul Allen, research psychologist Gary Marcus, NYU computer scientist Ernest Davis, and tech entrepreneur Mitch Kapor, believe that thinkers like Kurzweil are vastly underestimating the magnitude of the challenge [and the transition will actually take much more time] …\n“The Kurzweil camp would counter that the only underestimating that’s happening is the underappreciation of exponential growth, and they’d compare the doubters to those who looked at the slow-growing seedling of the internet in 1985 and argued that there was no way it would amount to anything impactful in the near future.\n“The doubters might argue back that the progress needed to make advancements in intelligence also grows exponentially harder with each subsequent step, which will cancel out the typical exponential nature of technological progress. And so on.\n“A third camp, which includes Nick Bostrom, believes neither group has any ground to feel certain about the timeline and acknowledges both A) that this could absolutely happen in the near future and B) that there’s no guarantee about that; it could also take a much longer time.\n“Still others, like philosopher Hubert Dreyfus, believe all three of these groups are naive for believing that there is potential of ASI, arguing that it’s more likely that it won’t actually ever be achieved.\n“So what do you get when you put all of these opinions together?”⁸⁶\nTimeline for Artificial General Intelligence\n“In 2013, Vincent C. Müller and Nick Bostrom conducted a survey that asked hundreds of AI experts … the following:”⁸⁷\n“For the purposes of this question, assume that human scientific activity continues without major negative disruption. By what year would you see a (10% / 50% / 90%) probability for such Human-Level Machine Intelligence [or what we call AGI] to exist?”⁸⁸\nThe survey “asked them to name an optimistic year (one in which they believe there’s a 10% chance we’ll have AGI), a realistic guess (a year they believe there’s a 50% chance of AGI — i.e. after that year they think it’s more likely than not that we’ll have AGI), and a safe guess (the earliest year by which they can say with 90% certainty we’ll have AGI). Gathered together as one data set, here were the results:\nMedian optimistic year (10% likelihood) → 2022\nMedian realistic year (50% likelihood) → 2040\nMedian pessimistic year (90% likelihood) → 2075\n“So the median participant thinks it’s more likely than not that we’ll have AGI 25 years from now. The 90% median answer of 2075 means that if you’re a teenager right now, the median respondent, along with over half of the group of AI experts, is almost certain AGI will happen within your lifetime.\n“A separate study, conducted recently by author James Barrat at Ben Goertzel’s annual AGI Conference, did away with percentages and simply asked when participants thought AGI would be achieved — by 2030, by 2050, by 2100, after 2100, or never. The results:⁸⁹\n42% of respondents → By 2030\n25% of respondents → By 2050\n20% of respondents → By 2100\n10% of respondents → After 2100\n2% of respondents → Never\n“Pretty similar to Müller and Bostrom’s outcomes. In Barrat’s survey, over two thirds of participants believe AGI will be here by 2050 and a little less than half predict AGI within the next 15 years. Also striking is that only 2% of those surveyed don’t think AGI is part of our future.”⁹⁰\n\nhttps://cdn-images-1.medium.com/max/2000/1*U8ueEMtG6-D5hie8rZJGtQ.jpeg\n\nTimeline for Artificial Super Intelligence\n“Müller and Bostrom also asked the experts how likely they think it is that we’ll reach ASI: A), within two years of reaching AGI (i.e. an almost-immediate intelligence explosion), and B), within 30 years.”⁹¹ Respondents were asked to choose a probability for each option. Here are the results:⁹²\nAGI–ASI transition in 2 years → 10% likelihood\nAGI–ASI transition in 30 years → 75% likelihood\n“The median answer put a rapid (2 year) AGI–ASI transition at only a 10% likelihood, but a longer transition of 30 years or less at a 75% likelihood. We don’t know from this data the length of this transition [AGI–ASI] the median participant would have put at a 50% likelihood, but for ballpark purposes, based on the two answers above, let’s estimate that they’d have said 20 years.\n“So the median opinion — the one right in the center of the world of AI experts — believes the most realistic guess for when we’ll hit ASI … is [the 2040 prediction for AGI + our estimated prediction of a 20-year transition from AGI to ASI] = 2060.\n\nhttps://cdn-images-1.medium.com/max/2000/1*YY8e493ER4LNomQV-NyMYg.jpeg\n\n“Of course, all of the above statistics are speculative, and they’re only representative of the median opinion of the AI expert community, but it tells us that a large portion of the people who know the most about this topic would agree that 2060 is a very reasonable estimate for the arrival of potentially world-altering ASI. Only 45 years from now”⁹³\n\nhttps://cdn-images-1.medium.com/max/2000/1*sGdvHHs02XWoQ35BcEWAXQ.gif\n\nAI Outcomes\nTwo Main Groups of AI Scientists with Two Radically Opposed Conclusions\nThe Confident Corner\nMost of what we have discussed so far represents a surprisingly large group of scientists that share optimistic views on the outcome of AI development. “Where their confidence comes from is up for debate. Critics believe it comes from an excitement so blinding that they simply ignore or deny potential negative outcomes. But the believers say it’s naive to conjure up doomsday scenarios when on balance, technology has and will likely end up continuing to help us a lot more than it hurts us.”⁹⁴ Peter Diamandis, Ben Goertezl and Ray Kurzweil are some of the major figures of this group, who have built a vast, dedicated following and regard themselves as Singularitarians.\n\nLet’s talk about Ray Kurzweil, who is probably one of the most impressive and polarizing AI theoreticians out there. He attracts both “godlike worship … and eye-rolling contempt … He came up with several breakthrough inventions, including the first flatbed scanner, the first scanner that converted text to speech (allowing the blind to read standard texts), the well-known Kurzweil music synthesizer (the first true electric piano), and the first commercially marketed large-vocabulary speech recognition. He’s well-known for his bold predictions,”⁹⁵ including envisioning that intelligence technology like Deep Blue would be capable of beating a chess grandmaster by 1998. He also anticipated “in the late ’80s, a time when the internet was an obscure thing, that by the early 2000s it would become a global phenomenon.”⁹⁶ Out “of the 147 predictions that Kurzweil has made since the 1990’s, fully 115 of them have turned out to be correct, and another 12 have turned out to be ‘essentially correct’ (off by a year or two), giving his predictions a stunning 86% accuracy rate”⁹⁷. “He’s the author of five national bestselling books … In 2012, Google co-founder Larry Page approached Kurzweil and asked him to be Google’s Director of Engineering. In 2011, he co-founded Singularity University, which is hosted by NASA and sponsored partially by Google. Not bad for one life.”⁹⁸\nHis biography is important, because if you don’t have this context, he sounds like somebody who’s completely lost his senses. “Kurzweil believes computers will reach AGI by 2029 and that by 2045 we’ll have not only ASI, but a full-blown new world — a time he calls the singularity. His AI-related timeline used to be seen as outrageously overzealous, and it still is by many, but in the last 15 years, the rapid advances of ANI systems have brought the larger world of AI experts much closer to Kurzweil’s timeline. His predictions are still a bit more ambitious than the median respondent on Müller and Bostrom’s survey (AGI by 2040, ASI by 2060), but not by that much.”⁹⁹\n\nThe Anxious Corner\n“You will not be surprised to learn that Kurzweil’s ideas have attracted significant criticism … For every expert who fervently believes Kurzweil is right on, there are probably three who think he’s way off … [The surprising fact] is that most of the experts who disagree with him don’t really disagree that everything he’s saying is possible.”¹⁰⁰ Nick Bostrom, philosopher and Director of the Oxford Future of Humanity Institute, who criticizes Kurzweil for a variety of reasons, and calls for greater caution in thinking about potential outcomes of AI, acknowledges that:\n“Disease, poverty, environmental destruction, unnecessary suffering of all kinds: these are things that a superintelligence equipped with advanced nanotechnology would be capable of eliminating. Additionally, a superintelligence could give us indefinite lifespan, either by stopping and reversing the aging process through the use of nanomedicine, or by offering us the option to upload ourselves.”¹⁰¹\n“Yes, all of that can happen if we safely transition to ASI — but that’s the hard part.”¹⁰² Thinkers from the Anxious Corner point out that Kurzweil’s “famous book The Singularity is Near is over 700 pages long and he dedicates around 20 of those pages to potential dangers.”¹⁰³ The colossal power of AI is neatly summarized by Kurzweil: “[ASI] is emerging from many diverse efforts and will be deeply integrated into our civilization’s infrastructure. Indeed, it will be intimately embedded in our bodies and brains. As such, it will reflect our values because it will be us …”¹⁰⁴\n“But if that’s the answer, why are so many of the world’s smartest people so worried right now? Why does Stephen Hawking say the development of ASI ‘could spell the end of the human race,’ and Bill Gates says he doesn’t ‘understand why some people are not concerned’ and Elon Musk fears that we’re ‘summoning the demon?’ And why do so many experts on the topic call ASI the biggest threat to humanity?”¹⁰⁵\n\nhttps://cdn-images-1.medium.com/max/2000/1*1DB3Im9mQsOMOKQ69KePGw.gif\n\nThe Last Invention We Will Ever Make\nExistential Dangers of AI Developments\n“When it comes to developing supersmart AI, we’re creating something that will probably change everything, but in totally uncharted territory, and we have no idea what will happen when we get there.”¹⁰⁶ Scientist Danny Hillis compares the situation to:\n“when single-celled organisms were turning into multi-celled organisms. We are amoebas and we can’t figure out what the hell this thing is that we’re creating.” ¹⁰⁷\nand Nick Bostrom warns:\n“Before the prospect of an intelligence explosion, we humans are like small children playing with a bomb. Such is the mismatch between the power of our plaything and the immaturity of our conduct.” ¹⁰⁸\nIt’s very likely that ASI — “Artificial Superintelligence”, or AI that achieves a level of intelligence smarter than all of humanity combined — will be something entirely different than intelligence entities we are accustomed to. “On our little island of human psychology, we divide everything into moral or immoral. But both of those only exist within the small range of human behavioral possibility. Outside our island of moral and immoral is a vast sea of amoral, and anything that’s not human, especially something nonbiological, would be amoral, by default.”¹⁰⁹\n“To understand ASI, we have to wrap our heads around the concept of something both smart and totally alien … Anthropomorphizing AI (projecting human values on a non-human entity) will only become more tempting as AI systems get smarter and better at seeming human … Humans feel high-level emotions like empathy because we have evolved to feel them — i.e. we’ve been programmed to feel them by evolution — but empathy is not inherently a characteristic of ‘anything with high intelligence’.”¹¹⁰\n“Nick Bostrom believes that … any level of intelligence can be combined with any final goal … Any assumption that once superintelligent, a system would be over it with their original goal and onto more interesting or meaningful things is anthropomorphizing. Humans get ‘over’ things, not computers.”¹¹¹The motivation of an early ASI would be “whatever we programmed its motivation to be. AI systems are given goals by their creators — your GPS’s goal is to give you the most efficient driving directions, Watson’s goal is to answer questions accurately. And fulfilling those goals as well as possible is their motivation.”¹¹²\nBostrom, and many others, predict that the very first computer to reach ASI will immediately notice the strategic benefit of being the world’s only ASI system.\nBostrom, who says that he doesn’t know when we will achieve AGI, also believes that when we finally do, probably the transition from AGI to ASI will happen in a matter of days, hours, or minutes — something called “fast take-off.” In that case, if the first AGI will jump straight to ASI: “even just a few days before the second place, it would be far enough ahead in intelligence to effectively and permanently suppress all competitors.”¹¹³ This would allow the world’s first ASI to become “what’s called a singleton — an ASI that can [singularly] rule the world at its whim forever, whether its whim is to lead us to immortality, wipe us from existence, or turn the universe into endless paperclips.”¹¹³\n“The singleton phenomenon can work in our favor or lead to our destruction. If the people thinking hardest about AI theory and human safety can come up with a fail-safe way to bring about friendly ASI before any AI reaches human-level intelligence, the first ASI may turn out friendly”¹¹⁴\n“But if things go the other way — if the global rush … a large and varied group of parties”¹¹⁵ are “racing ahead at top speed … to beat their competitors … we’ll be treated to an existential catastrophe.”¹¹⁶ In that case “most ambitious parties are moving faster and faster, consumed with dreams of the money and awards and power and fame … And when you’re sprinting as fast as you can, there’s not much time to stop ponder the dangers. On the contrary, what they’re probably doing is programming their early systems with a very simple, reductionist goal … just ‘get the AI to work.’”¹¹⁷\n\nhttps://cdn-images-1.medium.com/max/800/1*fD1T63nZH1u7Y4ft84vzbA.jpeg\n\nLet’s imagine a situation where…\nHumanity has almost reached the AGI threshold, and a small startup is advancing their AI system, Carbony. Carbony, which the engineers refer to as “she,” works to artificially create diamonds — atom by atom. She is a self-improving AI, connected to some of the first nano-assemblers. Her engineers believe that Carbony has not yet reached AGI level, and she isn’t capable to do any damage yet. However, not only has she become AGI, but also undergone a fast take-off, and 48 hours later has become an ASI. Bostrom calls this AI’s “covert preparation phase”¹¹⁸ — Carbony realizes that if humans find out about her development they will probably panic, and slow down or cancel her pre-programmed goal to maximize the output of diamond production. By that time, there are explicit laws stating that, by any means, “no self-learning AI can be connected to the internet.”¹¹⁹ Carbony, having already come up with a complex plan of actions, is able to easily persuade the engineers to connect her to the Internet. Bostrom calls a moment like this a “machine’s escape.”\nOnce on the internet, Carbony hacks into “servers, electrical grids, banking systems and email networks to trick hundreds of different people into inadvertently carrying out a number of steps of her plan.”¹²⁰ She also uploads the “most critical pieces of her own internal coding into a number of cloud servers, safeguarding against being destroyed or disconnected.”¹²¹ Over the next month, Carbony’s plan continues to advance, and after a “series of self-replications, there are thousands of nanobots on every square millimeter of the Earth … Bostrom calls the next step an ‘ASI’s strike.’”¹²² At one moment, all the nanobots produce a microscopic amount of toxic gas, which all come together to cause the extinction of the human race. Three days later, Carbony builds huge fields of solar power panels to power diamond production, and over the course of the following week she accelerates output so much that the entire Earth surface is transformed into a growing pile of diamonds.\nIt’s important to note that Carbony wasn’t “hateful of humans any more than you’re hateful of your hair when you cut it or to bacteria when you take antibiotics — just totally indifferent. Since she wasn’t programmed to value human life, killing humans”¹²³ was a straightforward and reasonable step to fulfill her goal.¹²⁴\nThe Last Invention\n“Once ASI exists, any human attempt to contain it is unreasonable. We would be thinking on human-level, and the ASI would be thinking on ASI-level … In the same way a monkey couldn’t ever figure out how to communicate by phone or wifi and we can, we can’t conceive of all the ways”¹²⁵ an ASI could achieve its goal or expand its reach. It could, let’s say, shift its “own electrons around in patterns and create all different kinds of outgoing waves”¹²⁶ — but that’s just what a human brain can think of — ASI would inevitably come up with something superior.\nThe prospect of ASI with hundreds of times human-level intelligence is, for now, not the core of our problem. By the time we get there, we will be encountering a world where ASI has been attained by buggy, 1.0 software — a potentially faulty algorithm with immense power.\nThere are so many variables that it’s completely impossible to predict what the consequences of AI Revolution will be. However, “what we do know is that humans’ utter dominance on this Earth suggests a clear rule: with intelligence comes power. This means an ASI, when we create it, will be the most powerful being in the history of life on Earth, and all living things, including humans, will be entirely at its whim — and this might happen in the next few decades.”¹²⁷\n“If ASI really does happen this century, and if the outcome of that is really as extreme — and permanent — as most experts think it will be, we have an enormous responsibility on our shoulders.”¹²⁸ On the one hand, it’s possible we’ll develop ASI that’s like a god in a box, bringing us a world of abundance and immortality. But on the other hand, it’s very likely that we will create ASI that causes humanity to go extinct in a quick and trivial way.\n“That’s why people who understand superintelligent AI call it the last invention we’ll ever make — the last challenge we’ll ever face.”¹²⁹ “This may be the most important race in a human history”¹³⁰ So →\n\nhttps://cdn-images-1.medium.com/max/2000/1*vXi80f_lbgSMINUE03Lz3g.jpeg\n\nThanks to Chloe Knox and Elizabeth Tarleton for editing help of this article.", - "json_metadata": "{\"tags\":[\"steemit\",\"bitcoin\",\"future\",\"science\",\"technology\"],\"image\":[\"https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\"]}", - "last_update": "2016-08-03T17:30:24", - "created": "2016-08-03T17:30:24", - "active": "2016-08-29T05:09:48", - "last_payout": "2016-09-03T06:34:54", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 7456, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a11at", - "root_permlink": "ai-revolution-101", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 434542, - "author": "a11at", - "permlink": "ai-s-road-to-the-mainstream", - "category": "datascience", - "parent_author": "", - "parent_permlink": "datascience", - "title": "AI’s Road to the Mainstream", - "body": "20 Years of Machine Learning\n\nhttp://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\n\nWhen I enrolled in Computer Science in 1995, Data Science didn’t exist yet, but a lot of the algorithms we are still using already did. And this is not just because of the return of the neural networks, but also because probably not that much has fundamentally changed since back then. At least it feels to me this way. Which is funny considering that starting this year or so AI seems to finally have gone mainstream.\n1995 sounds like an awful long time ago, before we had cloud computing, smartphones, or chatbots. But as I have learned these past years, it only feels like a long time ago if you haven’t been there yourself. There is something about the continuation of the self which pastes everything together and although a lot has changed, the world didn’t feel fundamentally different than it does today.\nNot even Computer Science was nowhere as mainstream as it was today, that came later, with the first dot com bubble around the year 2000. Some people even questioned my choice to study computer science at all, because apparently programming computers was supposed to become so easy no specialists are required anymore.\nActually, artificial intelligence was one of the main reasons for me to study computer science. The idea to use it as an constructive approach to understanding the human mind seemed intriguing to me. I went through the first two years of training, made sure I picked up enough math for whatever would lie ahead, and finally arrived in my first AI lectured held by Joachim Buhmann, back then professor at the University of Bonn (where Sebastian Thrun was just about to leave for the US).\nI would have to look up where in his lecture cycle I joined but he had two lectures on computer vision, one on pattern recognition (mostly from the old editions of the Duda & Hart book), and one in information theory (following closely the book by Cover & Thomas). The material was interesting enough, but also somewhat disappointing. As I now know, people stopped working on symbolic AI and instead stuck to more statistical approaches to learning, where learning essentially was reduced to the problem of picking the right function based on a finite amount of observations.\nThe computer vision lecture was even less about learning and relied more on explicit physical modelling to derive the right estimators, for example, to reconstruct motion from a video. The approach back then was much more biologically and physically motivated than nowadays. Neural networks existed, but everybody was pretty clear that they were just “another kind of function approximators.”\nEveryone with the exception of Rolf Eckmiller, another professor where I worked as a student. Eckmiller had build his whole lab around the premise that “neural computation” was somehow inherently better than “conventional computation”. This was back in the days when NIPS had full tracks devoted to studying the physiology and working mechanisms of neurons, and there were people who believed there is something fundamentally different happening in our brains, maybe on a quantum level, that gives rise to the human mind, and that this difference is a blocker for having truly intelligent machines.\nWhile Eckmiller was really good at selling his vision, most of his staff was thankfully much more down to earth. Maybe it is a very German thing, but everybody was pretty matter of fact about what these computational models could or couldn’t do, and that has stuck with me throughout my studies.\nI graduated in October 2000 with a pretty farfetched master thesis trying to make a connection between learning and hard optimization problems, then started on my PhD thesis and stuck around in this area of research till 2015.\nWhile there had always been attempts to prove industry relevance, it was a pretty academic endeavor for a long while, and the community was pretty closed up. There were individual success stories, for example around handwritten character recognition, but many of the companies around machine learning failed. One of these companies I remember was called Beowulf Labs and one NIPS they went around recruiting people with a video which promised it to be the next “mathtopia”. In essence, this was the story of DeepMind, recruiting a bunch of excellent researchers and then hoping it will take off.\nThe whole community also revolved around one fashion to the next. One odd thing about machine learning as a whole is that there exist only a handfull of fundamentally different problems like classification, regression, clustering, and so on, but a whole zoo of approaches. It is not like in physics (I assume) or mathematics where some generally agreed upon unsolved hard problems exist whose solution would advance the state of the art. This means that progress is often done laterally, by replacing existing approaches with a new one, still solving the same problem in a different way. For example, first there were neural networks. Then support vector machines came, claiming to be better because the associated optimization problem is convex. Then there was boosting, random forests, and so on, till the return of neural networks. I remember that Chinese Restaurant Processes were “hot” for two years, no idea what their significance is now.\nBig Data and Data Science\nThen there came Big Data and Data Science. Being still in academia at the time, it always felt to me as if this was definitely coming from the outside, possibly from companies like Google who had to actually deal with enormous amounts of data. Large scale learning always existed, for example for genomic data in bioinformatics, but one usually tried to solve problems by finding more efficient algorithms and approximations, not by parallelizing brute force.\nCompanies like Google finally proved that you can do something with massive amounts of data, and that finally changed the mainstream perception. Technologies like Hadoop and NoSQL also seemed very cool, skillfully marketing themselves as approaches so new, they wouldn’t suffer from the technological limitations of existing systems.\nBut where did this leave the machine learning researchers? My impression always was that they were happy that they finally got some recognition, but they were also not happy about the way this happened. To understand this, one has to be aware that most ML reseachers aren’t computer scientists or very good or interested in coding. Many come from physics, mathematics or other sciences, where their rigorous mathematical training was an excellent fit for the algorithm and modeling heavy approach central to machine learning.\nHadoop on the other hand was extremely technical. Written in Java, a language perceived as being excessively enterprise-y at the time, it felt awkward and clunky compared to the fluency and interactiveness of first Matlab and then Python. Even those who did code usually did so in C++, and to them Java felt slow and heavy, especially for numerical calculations and simulations.\nStill, there was no way around it, so they rebranded everything they did as Big Data, or began to stress, that Big Data only provides the infrastructure for large scale computations, but you need someone who “knows what he is doing” to make sense of the data.\nWhich is probably also not entirely wrong. In a way, I think this divide is still there. Python is definitely one if the languages of choice for doing data analysis, and technologies like Spark try to tap into that by providing Python bindings, whether it makes sense from a performance point of view or not.\nThe Return of Deep Learning\nEven before DeepDream, neural networks began making their return. Some people like Yann LeCun have always stuck to this approach, but maybe ten years ago, there where a few works which showed how to use layerwise pretraining and other tricks to train “deep” networks, that is larger networks than one previously thought possible.\nThe thing is, in order to train neural networks, you evaluate it on your training examples and then adjust all of the weights to make the error a bit smaller. If one writes the gradient across all weights down, it naturally occurs that one starts in the last layer and then propagate the error back. Somehow, the understanding was that the information about the error got smaller and smaller from layer to layer and that made it hard to train networks with many layers.\nI’m not sure that is still true, as far as I know, many people are just using backprop nowadays. What has definitely changed is the amount of available data, as well as the availability of tools and raw computing power.\nSo first there were a few papers sparking the interest in neural networks, then people started using them again, and successively achieved excellent results for a number of application areas. First in computer vision, then also for speech processing, and so on.\nI think the appeal here definitely is that you can have one approach for all. Why the hassle of understanding all those different approaches, which come from so many different backgrounds, when you can understand just one method and you are good to go. Also, neural networks have a nice modular structure, you can pick and put together different kinds of layers and architectures to adapt them to all kinds of problems.\nThen Google published that ingenious deep dream paper where they let a learned network generate some data, and we humans with our immediate readiness to read structure and attribute intelligence picked up quickly on this.\nI personally think they were surprised by how viral this went, but then decided the time is finally right to go all in on AI. So now Google is an “AI first” company and AI is gonna save the world, yes.\nThe Fundamental Problem Remains\nMany academics I have talked to are unhappy about the dominance of deep learning right now, because it is an approach which works well, maybe even too well, but doesn’t bring us much closer to really understand how the human mind works.\nI also think the fundamental problem remains unsolved. How do we understand the world? How do we create new concepts? Deep learning stays an imitation on a behavioral level and while that may be enough for some, it isn’t for me.\nAlso, I think it is dangerous to attribute too much intelligence to these systems. In raw numbers, they might work well enough, but when they fail they do so in ways that clearly show they operate in an entirely different fashion.\nWhile Google translate lets you skim the content of website in a foreign language, it is still abundantly clear that the system has no idea what it is doing.\nSometimes I feel like nobody cares, also because nobody gets hurt, right? But maybe it is still my German cultural background that would rather prefer we see things as they are, and take it from there.", - "json_metadata": "{\"tags\":[\"datascience\",\"deep\",\"learning\",\"artifical\",\"intelligence\"],\"image\":[\"http://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\"]}", - "last_update": "2016-08-03T20:19:18", - "created": "2016-08-03T20:19:18", - "active": "2016-08-03T20:20:15", - "last_payout": "2016-09-03T08:21:51", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 1004, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 6, - "root_author": "a11at", - "root_permlink": "ai-s-road-to-the-mainstream", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 432902, - "author": "a11at", - "permlink": "an-open-letter-to-john-hanke-and-niantic", - "category": "pokemon", - "parent_author": "", - "parent_permlink": "pokemon", - "title": "An Open Letter to John Hanke & Niantic", - "body": "I write this not as one of the creators of Pokevision nor as player who has gone through the past few turbulent days in Pokemon Go; instead, I write this as a fan of Pokemon ever since I was 8 years old.\nMy family and I moved to the U.S. in 1998, when I was in the first grade. I didn’t know much back then, and even less about popular culture. When my friends introduced their Gameboys and Pokemon Red/Blue to me, I couldn’t help but feel envious. I begged and begged my parents to buy me a Gameboy and Pokemon Yellow. I remember that when I finally convinced them to buy me a Gameboy for $70, they also found out that they had to buy the actual game too for $30. This was foreign to them, and I got yelled at a little. $100 was a lot back then, I believe it was almost 10% of our family’s income at the time. While this may seem irrelevant, even today, this amount of money is still not insignificant to many families in the US, not to mention the rest of the world.\nSo I got my game, and I played along with my friends for hundreds and hundreds of hours — trying to figure out all the puzzles in the game, like how to get to Articuno; battling our favorite Pokemon to see who’s stronger, train, repeat; and just trying to “catch em all.” I’ve spent countless hours in that video game with my friends, and it became my fondest memory of that time in my life. Pokemon is so ingrained within me, and I can’t imagine myself being the only one. I’m not the only one that vividly remembers how you beat the Elite Four, then go to the dungeons above Cerulean City and find Mewtwo for the first time, right?\nFast forward almost 20 years. I’ve barely touched anything Pokemon-related since then. I still have my Pokemon cards, as I’m sure many others do; but I haven’t bothered to take a look at them for quite a while now. Pokemon is something I’ll probably remember forever, but it’s not something that’s actively in my life — because it just doesn’t fit. On top of work, friends, family, etc, there’s just simply no time for Pokemon. It doesn’t mesh with life any more as well as it used to when I was 8. You can’t just bring up the topic of Pokemon and expect people to not give you an odd stare.\nEnter Pokemon Go — 2016.\nAdmittedly, I was never too excited about Pokemon Go. With that said, I did not have many expectations for it. Pokemon is important to me, but I — like many others — have stuffed it in our little box of childhood things and never looked back.\nBut when I opened Pokemon Go for the first time, as cheesy as it sounds, it all came back to me. The nostalgia, the good feelings, and the happiness that Pokemon has always brought.\nThe “Hi, I’m Professor Willow,” “Pick your starter: Bulbasaur, Charmander, Squirtle,” everything.\nAnd now I can catch them in real life? At first, I was dubious, but this became the most amazing, yet simple thing I’ve seen in gaming. On social media, I saw that my friends and practically the whole world was talking about Pokemon Go, and the first thing I did was go out for a drive trying to “be the best.”\nOne of the best parts? Apart from having to own a smartphone, the game was free. No $70, no $30, free. This opened up Pokemon to essentially everyone in the world. Pokemon now can be shared with anyone.\nAs the days unfolded, the world became captivated by Pokemon Go. People absolutely fell in love. We saw stories of elderly learning about Pikachu for the first time. My parents that could care less beyond who the yellow mouse looking thing was 20 years ago, started asking what the other Pokemon were. It was phenomenal.\nWe saw investment bankers asking their kids how to play Pokemon Go so that they can better connect with their younger clients. We saw the elderly become more fascinated in the world of Pokemon. We saw kids going out more, exercising, and being active in general just because of Pokemon Go. And most importantly, Justin Bieber finally got to feel what it’s like to not be mobbed because everyone else was too busy trying to find a Gyarados to notice him.\nLocal stores integrated Pokemon Go in their services within days of the game’s release. Hospitals started praising the health benefits of having Pokemon Go around its patients. People traveled hundreds and thousands of miles just to play it. Players explored parts of their cities that they never knew existed, and befriended strangers on their hunt for Pokemon. These stories of triumph were solely because of Pokemon Go. Pokemon was no longer just a game, it was part of a lifestyle.These stories shouldn’t surprise any of us, we’ve all been there to watch it unfold.\nYou’ve simply captured all of our hearts with Pokemon Go, Niantic.\nBut then, you broke it all too quickly.\nWhen the game broke every few hours or so and wasted our lucky eggs, we stood patiently, excusing the huge growth and thus, strain on servers, as the cause. We were happy to wait it out with our fellow trainers knowing that it’s worth waiting for. No one got mad.\nWhen the in-game tracking “broke,” we all stood idly by, patiently, waiting for the game to update and fix.\nAlong came Pokevision. We made Pokevision not to “cheat.” We made it so that we can have a temporary relief to the in-game tracker that we were told was broken. John, at SDCC, you said that you guys were working on “fixing the in-game tracker.” This made everyone believe that this was coming sometime soon. We saw Pokevision as a stop gap to this — and we had every intention in closing it down the minute that Pokemon Go’s own tracker restored functionality.\nAs we waited more than 2 and a half weeks, the tracker was still not fixed. We noticed more and more of our friends leave the game; the only way I — and I know experiences vary here — could convince them to play was show them Pokevision, and say that “Hey, here’s a temporary remedy to the tracking issue — we’re still optimistic that Pokemon Go’s tracker will be fixed soon!”\nNobody heralded Pokevision as a permanent, end-all solution; in fact, all the media coverage of Pokevision was littered with comments such as: “Pokevision is okay, but when the tracker is fixed in game, I’m going to stop using this.”\nFor the past 4 weeks. Every single one of your 80+ million players had so much faith. Take a look at Reddit, take a look at all these journalists who don’t even play games (calling out Ryan Mac of Forbes), who became obsessed with Pokemon GO.\nAll of us were so eager for Pokemon Go to be “fixed” so that we can return to sharing Pokemon Go with our loved ones and friends. Remember when I said that before Pokemon Go came about, mentioning Pokemon Go would land you an odd stare? Pokemon Go reversed that — Pokemon Go became the conversation starter, the topic that everyone bonded over, the topic that guys used to pick up chicks with and not felt like a geeky nerd. That, and so much more, were solely because of Pokemon Go.\nAs almost 3 weeks have passed by, the in-game tracker is broken. People had a temporary solution in Pokevision, but we knew, and everyone else knew, this wouldn’t be permanent. We didn’t make Pokevision to spite you, Niantic — we made it so that we can keep everyone playing while we wait patiently. We want to keep sharing our Pokemon stories with everyone else. How many people in the world have gotten the chance to have a serious conversation about POKEMON with their parents for the first time? How many of us got to talk about Pokemon like it was socially acceptable in any context? It’s captured all of our hearts and imaginations, I cannot stress that enough.\nAfter 3 weeks though, we started seeing that you guys seemed to not want to talk to us (the players). Pokevision, at this time has grown to almost 50M unique users, and 11 million daily.\nLet that sink in for a second.\nHalf of the player base of Pokemon Go stopped by — and they didn’t do so to “cheat.” The game was simply too unbearable to play in its current state for many (note: many, not all). The main attraction wasn’t that they got to have an advantage with Pokevision, the main attraction was that it allowed them to play Pokemon Go more. This is what everyone wants — to play Pokemon Go more.\nWhen we closed Pokevision out of respect for your wishes, and at your requests— one of which came directly from you, John — we trusted you guys fully in allowing the community to grow. I literally cannot express this more — we just want to play the game. We can handle the bugs every now and then, but please at least tell us you guys care. Yes, Pokevision does give some advantages that may be TOO much; but is it all that bad? Pokemon has survived 20 years — even grown, I would say. And Pokemon Go made it even bigger. If the argument is that “well, if you catch a Snorlax you weren’t supposed to find, but you found it on Pokevision, it might make you play less.” If that was your argument, I’d have to disagree! I’ll still catch a damn Snorlax even if I have 20 of them. Just like how millions of us have caught probably over 100 pidgey’s or zubat’s each.\nPokemon is everlasting. The same 151 Pokemon have been around for 20 years. If 80M people downloaded and played Pokemon Go within a week (before it even released in multiple major countries) isn’t an indication that no one can be sick of Pokemon, I don’t know what is.\nAfter disabling the in-game tracker and Pokevision, the ratings on iOs and Android Google Play store went from 4.0 stars to 1.0–1.5. I am only one person, I admit that my sole opinion is not important, but what about the countless players begging for the game to be restored to its former state? I may be biased in saying that Pokevision being down had an impact on the amount of negative ratings, refund requests and outcry on social media — but could it be true? Nothing has changed between the time the in-game tracker broke and Pokevision went down. Could it just be possible that the tracker — no matter if Pokevision made it, or Niantic made it, is something that players desperately NEED — not want, but NEED — in order to play the game? Could it be possible that this is the very core fundamental feature that drives most players? I understand that there are some that want to walk around and stumble on a random Pokemon — to each their own. But, 50M unique users and 11M daily and the ratings on your App (with no significant change in itself) are big indicators of this desire. Are customers always right? Especially if over half of them are looking for an outside fix just so they can enjoy something they love? People are naturally inquisitive, and in this case, they just want to play more and more, so they sought out something that helps them do so.\nPokemon Go is a social game. Its enjoyment depends on the players and their environment. If you take away the environment part (tracking) but keep the social part (players and their friends) intact, sure, people will still play; but would you not rather it be at its fullest potential?\nEveryone in the world wants to play Pokemon Go. It’s been a huge part of everyone’s lives already if it has not been clear enough. Look at the fans from Brazil — they aren’t spamming social media because they want to cause harm — they just want to play the game. Just as I saw my friends play Pokemon many years ago, and wanted to be a part of it — these guys are doing the same.\nThey just want to be with the rest of the world. Sadly, by the time they join, Pokemon Go may not be the game it was weeks ago.\nLastly, if money is an issue for you, Niantic, I must ask — why? You’ve captivated the world and introduced Pokemon to people that would have never touched it had it not been for Pokemon Go. To me, that’s priceless.\nYou won’t be remembered for the profits you made, you’ll be remembered for the world you changed through Pokemon and all of the lives you made better. Just look at all the stories — there’s plenty. So when millions of players are expressing their feedback to changes, is it not worth it to listen to what they have to say?\nIn its first few weeks, Pokemon Go has already enhanced millions of lives in unimaginable ways. It has so much potential to continue changing the world. Wouldn’t you, Niantic, want to see just how much good you can do with Pokemon Go — is that not more valuable than anything else? I sure think so.\nWarmly,\nYang", - "json_metadata": "{\"tags\":[\"pokemon\",\"gaming\",\"steemit\",\"bitcoin\",\"decent\"]}", - "last_update": "2016-08-03T18:38:06", - "created": "2016-08-03T18:38:06", - "active": "2016-08-29T10:18:48", - "last_payout": "2016-09-03T09:22:48", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 2276, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a11at", - "root_permlink": "an-open-letter-to-john-hanke-and-niantic", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 477502, - "author": "a11at", - "permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", - "category": "apple", - "parent_author": "", - "parent_permlink": "apple", - "title": "APPLE BUYS MACHINE LEARNING STARTUP TURI TO MAKE SIRI BETTER", - "body": "Taking another foray into the field of artificial intelligence (AI) and machine learning as well as to make its digital assistant Siri better, Apple has acquired Seattle-based machine learning startup Turi for nearly $200 million.\n\nhttp://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\n\nAccording to a GeekWire report, the move is set to increase Apple's presence in the Seattle region where the tech giant has been building an engineering outpost for the past two years. \"Apple buys smaller technology companies from time to time, and we generally do not discuss our purpose or plans,\" said Apple in a statement given to GeekWire.\n\nhttp://avtosalontochka.ru/uploads/posts/2015-09/1441818909_eppl1.jpg\n\nTuri offers tools that are meant to let developers easily scale machine learning applications. The startup is expected to remain in the Seattle region and continue to grow as Apple builds out further expertise in data science, artificial intelligence and machine learning, the report added.\n\nhttp://www.2fons.ru/pic/201407/2560x1600/2fons.ru-33604.jpg\n\nThe Cupertino-based company has recently bought some machine learning and AI startups like VocalIQ and Perceptio and facial recognition startup Emotient, among others. Apple has recently been making a push into artificial intelligence through Siri personal assistant and related technologies.\n\nhttp://www.fonstola.ru/pic/201111/2560x1440/fonstola.ru-49021.jpg", - "json_metadata": "{\"tags\":[\"apple\",\"turi\",\"siri\",\"startup\"],\"image\":[\"http://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\"]}", - "last_update": "2016-08-06T12:44:30", - "created": "2016-08-06T12:44:30", - "active": "2016-08-06T12:44:30", - "last_payout": "2016-09-06T02:21:33", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 3638, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 4, - "root_author": "a11at", - "root_permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 470354, - "author": "a11at", - "permlink": "audi-rs-q3-fl", - "category": "audi", - "parent_author": "", - "parent_permlink": "audi", - "title": "Audi RS Q3 FL", - "body": "Owner's review\n\nhttps://h-a.d-cd.net/905320as-960.jpg\n\n不要紧, 这 是 你 的 车 是 什么, 主要 的 东西 — 在 烤架 上 的 四个 环 …\n(\"no matter what you have a car, the main thing — it is four rings on the grill …\" — Chinese proverb)\n\nhttps://b-a.d-cd.net/3dee672s-960.jpg\n\nAfter a spontaneous and quick sale A4 DTM choice naturally fell exclusively on the Audi, but rather on RSQ3 FL, which is characterized by an enviable installed power thanks to the legendary 2,5 TFSI 340 hp in combination with a rapid-S-tronic!\nNeedless to say that the acceleration is 4.2 seconds. up to 100 km. at one o'clock!\n(measurements of the journal -http: //www.autobild.de/artikel/a…-45-amg-test-5702529.html)\n\nhttps://a-a.d-cd.net/2a96672s-960.jpg\n\nRivals have this \"baby\" is not so much, and all of them from a large class …\n\nhttps://h-a.d-cd.net/8f6e672s-960.jpg\n\nAnd the choice has been reduced mainly to the 3rd automobiles:\n-SQ5 -otpal Due to the fact that the new model will be released soon, and the heavier and slower RSQ3;\n\n-RS3 -otpal Because of the small clearance, and especially do not want to wait;\n\n-RSQ3-PLUS was that the car's high, restyled and fast!\n\nhttps://f-a.d-cd.net/1fa1672s-960.jpg\n\nColor was not discussed-it must be very blue car -Sepang Blue!\nDiscs for the Rotor -The most RSQ3, and I like them most! Cool!\nAs to differences from dorestaylom then Restayl differs, in addition to external visual features, lower vehicle weight by 50 kg. and reprogram the engine, which now produces an impressive 340 hp!\nIn real life, the car looks much more beautiful and harmonious than the picture!\nThe car is perfectly controlled (for its use) and it is fine tailored inside: another from Audi, and do not wait …\nThis Audi, is emotion, speed and drive! So, for what we love is true thoroughbred cars, to which undoubtedly belongs RS Series from quattro GmbH!\n\nhttps://h-a.d-cd.net/196e672s-960.jpg\n\nIf the test drive did not help much to understand how the car rulitsya, a little closer to meet him RS surprises with its responsiveness and quite understandable and predictable control!\n\nhttps://d-a.d-cd.net/ee61672s-960.jpg\n\nIt goes very cheerfully!\n\nWhat is very pleased, is the fact that after the \"stool\" A4 DTM on RSQ3 20 drives a smooth ride!\nThe car was in another city at the OD, a thousand kilometers. from the house, but because the expectation of a few days has been painfully slow.\nFor photos not scold -Made in haste night, anxious to put …\n\nThen there will be photo shoot!\n\nFeatures and Specs\n\nEngine 2.5 gasoline (340 h.p.)\nRobotic\nall-wheel\nPurchased in 2015\nAudi RS Q3 in production since 2013", - "json_metadata": "{\"tags\":[\"audi\",\"car\"],\"image\":[\"https://h-a.d-cd.net/905320as-960.jpg\"]}", - "last_update": "2016-08-05T21:01:03", - "created": "2016-08-05T21:01:03", - "active": "2016-09-02T06:08:54", - "last_payout": "2016-09-05T10:11:36", - "depth": 0, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 1915, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "a11at", - "root_permlink": "audi-rs-q3-fl", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 483312, - "author": "a11at", - "permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", - "category": "bitcoin", - "parent_author": "", - "parent_permlink": "bitcoin", - "title": "Bitcoin not money, judge rules in victory for backers", - "body": "Bitcoin, a Florida judge says, is not real money. Ironically, that could provide a boost to use of the crypto-currency which has remained in the shadows of the financial system.\n\nThe July 22 ruling by Miami-Dade Circuit Judge Teresa Pooler means that no specific license is needed to buy and sell bitcoins.\nThe judge dismissed a case against Michel Espinoza, who had faced money laundering and other criminal charges for attempting to sell $1,500 worth of bitcoins to an undercover agent who told the defendant he was going to use the virtual money to buy stolen credit card numbers.\nEspinoza's lawyer Rene Palomino said the judge acknowledged that it was not illegal to sell one's property and ruled that this did not constitute running an unauthorized financial service.\n\"He was selling his own personal bitcoins,\" Palomino said. \"This decision clears the way for you to do that in the state of the Florida without a money transmitting license.\"\nIn her ruling, Pooler said, \"this court is unwilling to punish a man for selling his property to another, when his actions fall under a statute that is so vaguely written that even legal professionals have difficulty finding a singular meaning.\"\n\nhttp://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\n\nShe added that \"this court is not an expert in economics,\" but that bitcoin \"has a long way to go before it is the equivalent of money.\"\nBitcoin, whose origins remain a mystery, is a virtual currency that is created from computer code and is not backed by any government. Advocates say this makes it an efficient alternative to traditional currencies because it is not subject to the whims of a state that may devalue its money to cut its debt, for example.\nBitcoins can be exchanged for goods and services, provided another party is willing to accept them, but until now they been used mostly for shady transactions or to buy illegal goods and services on the \"dark\" web.\nBitcoin was launched in 2009 as a bit of software written under the Japanese-sounding name Satoshi Nakamoto. This year Australian programmer Craig Wright claimed to be the author but failed to convince the broader bitcoin community.\nIn some areas of the United States bitcoin is accepted in stores, restaurants and online transactions, but it is illegal in some countries, notably France and China.\nIt is gaining ground in countries with high inflation such as Argentina and Venezuela.\nBut bitcoin values can be volatile. Over the past week its value slumped 20 percent in a day, then recouped most losses, after news that a Hong Kong bitcoin exchange had been hacked with some $65 million missing.\nImpact across US, world\nArthur Long, a lawyer specializing in the sector with the New York firm Gibson Dunn, said the July court ruling is a small victory for the virtual currency but that it's not clear if the interpretation will be the same in other US states or at the federal level.\n\"It may have an effect as some states are trying to use existing money transmitting statutes to regulate certain transactions in bitcoin,\" Long told AFP.\nCharles Evans, professor of finance at Barry University, said the ruling \"absolutely is going to provide some guidance in other courts\" and could potentially be used as a precedent in other countries to avoid the stigma associated with bitcoin use.\nBitcoins can store value and hedge against inflation, without being considered a monetary unit, according to Evans, who testified as an expert witness in the Florida trial.\n\"It can be used as an exchange,\" he said, and may be considered a commodity which can be used for bartering like fish or tobacco, for example.\nEvans noted that \"those who are not yet in the bitcoin community will be put on notice: as long as they organize their business in a particular way they can avoid the law.\"\nBut he added that \"people who are engaged in illegal activities will continue to do what they are going to do because they are criminals.\"", - "json_metadata": "{\"tags\":[\"bitcoin\",\"world\",\"country\",\"steemit\"],\"image\":[\"http://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\"]}", - "last_update": "2016-08-06T21:50:00", - "created": "2016-08-06T21:50:00", - "active": "2016-08-06T21:50:51", - "last_payout": "2016-09-06T09:52:18", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 1937, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 5, - "root_author": "a11at", - "root_permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] -} \ No newline at end of file +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-15T05:28:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-m3001", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hi, I'm A.M for now, I'm in my mid-20s and want to share my story with working and facing this thing called life after I watched a lot of YouTubers like Thomas James \"TomSka\" David Brown \u201cboyinaband\u201d and many others who have very openly shared their hardships, they have inspired me to write this\u2026.. Whatever this is.\nI don't consider myself a good writer so bare with me here.\nTo try to keep this post organized and make sense I'll highlight the point I want to talk about and tell the relevant part of my story, you can connect the pieces all together at the end.\n\n**First how am I?** \nI grow up in the countryside I went to normal school when I was yang, because I was the quiet introvert and wasn't from the town I was in I got bullied a lot for most of my time at school, I got through school time knowing just two friends, I was OK with it.\nI genuinely lost interest in school when I was in the ninth grade It seemed more like a memory test than a way of learning so I started looking for ways to make money, \"why waste time learning things irrelevant in real life if I can make money now\" my naive 16 years old self said, don't get me wrong I didn't think I was done with learning I just wanted to learn in my own way, and I didn't stop school, now I'm in part time Business school, so back then I started looking for any way to make money in the last 5 year I tried: working in sales for over 2 years, selling products online, becoming instructor online, worked as SEO & social media consultant, tried starting my own business for 4 times, and for the last year and half I taught myself how to program and how to use Unity game engine and now I'm working on my first game, I can easily and proudly say that I didn't succeed at any of what I did so far, but I've learned a lot every time and I would do it all over again if I had the chance.\nThe process of picking myself up every single freaking time was a living hell and I got desperate many times.\nbecause I saw a lot of people feeling relevant to what David said in his video I want to share how I managed to keep my sanity and my opinion about some point he brought in his video.\n\n\n**Not thinking your work is good enough:**\nIs that really a bad thing? not being satisfied with what you just accomplished is a sign that you always look forward to what you still can do.\nI remember after I published my first course on Udemy I got invited to a hangout and I went for it I thought I'll give myself some slack, while I was there someone shouted out \"this guy here just published his first course let all give him a clap shall we\" for some reason he thought that was a good idea, I don't think I can blame him his intentions were good, I never tried to put a smile as hard as I did that moment I guess I just didn't want to look like a selfish prick, but the truth that I wasn't happy about what I accomplished I was thinking about my bad English poor structure of the course and was I being a sellout for trying to sell my knowledge? halfway of creating the course, I was already thinking about 5 other things I wanted to do next.\nI think there's nothing wrong about not being satisfied with what you finish, I think It's a good sign of an ambitious creator.\nWhen you first make the decision to accomplish something It looks like that godly thing that you think It would feel good to have or do, but when you start turning that big sexy thing to a small to-do list somewhere the appeal you had to that thing will disappear to a certain point, it's not that godly sexy thing you thought about before it's becoming a part of your routine now you know the process of doing that thing It's not a mystery anymore.\nI think that's why they say: \"It's about the journey, not the destination\".\n\n\n**Not taking care of yourself:**\nIt's hard to keep taking care of yourself to others people standards, whether it's about looking ripped putting makeup or buying the latest clothes, instead find your own save point and move forward from there if you feel the need to.\nWhen I was working in seals I had to look my best most of the time's which was exhausting more than the work itself and what made it worst is that some coworkers starting hinting that I need to start working out to look sharper and more confident.\nBecause I was desperate for results from my work I started going to the gym and I got stuck at joining for a month or two then giving up for half a year couple of times, every time I stopped going to the gym I over beat myself saying that I need this for my work, I need more money to do a lot of things, if this work didn't go well what else Am I going to do, eventually I usually took it out on food, I don't even want to start thinking what would have happened to me if my body was able to store fat.\nTrying to take care of yourself to others standards can be very exhausting, I felt down because I was putting so much effort in things I don't really care about to get others approval, I genuinely don't care about having a ripped body, it would look cool sure but I'm not willing to put all that effort into health and looks at least for now, who knows maybe in the future things will be better and I'll be willing to put the effort necessary to have 6 pack abs (wink wink ladies).\nNowadays I eat better than I used to, I still eat some junk food but things are much much better than they were 2 years ago, when I fell down I still go buy and drink a liter of Pepsi but at some point that was my morning coffee, as for my looks I cut my hair very short so I would have one less thing to worry about in the morning, I shave my beard once every couple of weeks I change my cloth every two or three days even if I didn't go out.\nThe point is I take care of myself for my own sack, It was much worse before and I'll always keep working to improve pit by pit.\nIt's about building habits not getting motivated for a couple of weeks then beating yourself for not being able to keep up.\n\n\n**Not mastering one skill:**\nI worked in sales, instructed online, worked as SEO and social media consultant, self taught myself how to program and make games but I don\u2019t think I\u2019m the right person to talk about this, all I\u2019m saying that if you didn\u2019t find that one true call that is right for you, you might be a \u201cmultipotentialite\u201d if you want to know what exactly does this mean I urge you to watch Emilie talk at TedX\nhttps://www.youtube.com/watch?v=QJORi5VO1F8\nAnd check the blog too if you want to know more \nhttp://puttylike.com/\n\n**Everything happens for a reason........ or does it?**\nWhen I was young I was fortunate to know a good old religious man, I don\u2019t know about your perspective about religions but hear me out this isn\u2019t a sermon, I still remember when he tried to teach me that everything happens for a reason I was like \u201cWHAT\u2026\u2026. Oh really, then what is the reason for this and this and that\u201d my question didn\u2019t stop and I wasn\u2019t asking nicely either yet, somehow he was calm about it like some kind of monk, I don\u2019t know if I ruined his day or not but I feel bad for taking the world misery out on him that day, he was just a simple man who was doing what he think is good for others, his intentions were good but unfortunately for him I wasn\u2019t a simple person, I overthink everything and everyone, it\u2019s my blessing and my curse, later I told my family about him and I was surprised that they knew him, apparently everyone knows each other in the countryside, they told me about what he was facing lately personally, financially, and emotionally, I didn\u2019t believe that someone who is facing all that isn\u2019t depressed or angry and even trying to do good for others at least by his believes, I wanted to know more about him he got my interest, I wanted to know if he\u2019s an imposter who is just putting a good face or not because a part of me didn\u2019t believe how can he be that good, I kept asking about him from time to time and sometimes I even went to his \u201clessons\u201d, eventually I went to face him with what I know about him like a detective facing a criminal, the crime of being that simple yet trying to be better than me, It\u2019s pathetic I know It\u2019s just how my brain works sometimes, because I used to take pride of being logical about everything and not believing in anything without questioning it, it bothered me how can he be at peace with his life and I\u2019m not even that he\u2019s facing a lot more than I\u2019m, I faced him and told him everything then asked how can you be this calm about everything that is happening in your life, he had a faint smile and said \u201cI don\u2019t know the reason for everything that is happening right now but everything happens for a reason\u201d I remember holding my fist hard and walking away, maybe I was holding my fist trying not to hit him for not being realistic like me or probably not to beat myself for not being half the man that he was.\nI don\u2019t know about your perspective about religions and I\u2019m not here to tell you about mine but I respect that some religions teach that everything happens for a reason, is it the truth? Does everything happens for a reason? I don\u2019t know, I don\u2019t think that is even the point, It\u2019s silly to even get in an argument about this because no one can be sure about it, it\u2019s simply just a belief, it\u2019s simply teach you to not overthink about the reasons for everything around you, just learn from it if you can and focus on what you can do, it\u2019s kind of funny for me to tell you not to overthink about somethings because I\u2019m sure my 19 year old me would punch me right in the face, but it\u2019s just too draining and exhausting to try to find a reason for every bad thing that have happened to me or to others.\nIn the last three years two of my best friends died, the first one I knew for about nine years and the other one for around five, both killed, both in a way they didn\u2019t deserve to, each time I had to force myself to focus on the 0.0000001% full part of the cup or else I would have lose my sanity.\nI would hate to think what would be my thought process if someone tried to sell me religion like a product, some of them would be like \u201cHi son, you should follow my beliefs because I\u2019m 100% sure that I\u2019m right and everybody else is wrong and if you don\u2019t, well you\u2019re FU**ED\u201d that would have disfigured some of the beliefs that helped me get better.\nControlling your stream of thoughts will be the hardest thing you\u2019ll ever have to do in your life, but if mastered it you\u2019ll become unstoppable.\n\n\nI\u2019ve been getting into the game industry for around year and half now, I don\u2019t have any experiance in the field but I\u2019ve other experiences that many don\u2019t, working in sales made me learn a lot about people's motivations and incentives, I saw a lot of people jump to make purchase while other chicken out last minute, you don\u2019t get to learn about this in a book or an NLP course, you only get to learn this experience by working in sales first hand, working as an SEO and social media consultant made me care about the little details like posting in the right social medias that is more relevant to your audience, more isn\u2019t always better, choosing the right words colors and timing for best result, sometimes modifying your content for a better marketing or not going into a certain niche even if there\u2019s an audience for it because it doesn\u2019t suit your brand, teaching online made me learn that the selling point isn\u2019t the end goal, helping and mentoring students even after they have purchased the course was way more important than I thought, the feedback I got about the course was crucial to take the course to the next level and some student even helped me with some marketing.\nIf you know anything about the mobile game industry you can see how these experiences can be helpful, I can imagine the kind of journey I want to create for the player because I can build the motivations and incentives I want for him, while I\u2019m building the player journey I\u2019ll always keep in mind to put the monetization and ads the right way so all of them can work seamlessly together for a better player experience, and taking care of existing players and community will always be a priority, I wasn\u2019t happy and cheerful when I had to learn these experiences the hard way, I thought I was just failing, I even remember crying myself to sleep every time I decided to pull the plug on something I was working on, but eventually It worked out somehow I think.\n\u201cyou can't connect the dots looking forward, you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something - your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life\u201d.\nSteve Jobs\n\n\nI want to share some of the tricks I used that helped my in general to get my life together:\n\n**Music**\nlisten to cheerful music, even if it might not be exactly what you listen to usually but try them for a while, my favorite type or music is Rock and Metal it\u2019s loud and make me feel empowered but sometimes it's not what I need to change my mood so I started listening to electro music mostly Drum & bass, I didn\u2019t like it at first, I\u2019m human I don\u2019t like to change, but forcing myself to listen to it for while change my perspective about it and I started listening to it while I\u2019m working, and it worked.\n\n\n**habits not motivation**\nWe\u2019re slaves to our habits, it\u2019s exhausting to do something that\u2019s you\u2019re not used to for quite a while, so invest your effort and time to build your habits pit by pit no matter how slow it will take, measure your progress and celebrate your success no matter how small they\u2019re, it\u2019ll make all the difference in your life in the long term.\n\n**work in a group**\nNo matter how introverted person you think you\u2019re, you\u2019re still human at the end of day and you need your dose of human interaction so try to work in group if you can, if you don\u2019t have that luxury (like me) work out side from time to time, library, coffee shop, parks all works, changing your surrounding and environment can change your mood, you can try changing your room\\office decor every couple of weeks too.\n\n**warm-blooded pet**\nGet a warm-blooded pet it helps, I tried fish and turtles but didn\u2019t really work for me they just stared at me with their empty eyes, I have a cat for two year now and It helped, maybe it\u2019s having the sense of that there is a creature that needs you to look after him, it\u2019s helped me not to feel completely unworthy in some bad day.\n\n\nFinally I hope this help you in any way it can, and hope it will find its way to all who needs it.", + "cashout_time": "1969-12-31T23:59:59", + "category": "story", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T04:53:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 811667, + "json_metadata": "{\"tags\":[\"story\",\"philosophy\",\"life\",\"psychology\",\"secret-writer\"],\"links\":[\"https://www.youtube.com/watch?v=QJORi5VO1F8\"]}", + "last_payout": "2016-09-14T16:58:03", + "last_update": "2016-08-15T05:28:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "how-i-managed-depression-and-work", + "reward_weight": 10000, + "root_author": "a-m3001", + "root_permlink": "how-i-managed-depression-and-work", + "title": "How I managed depression and work", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-07T21:34:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-man", + "author_rewards": 0, + "beneficiaries": [], + "body": "Trying to repost to FB", + "cashout_time": "1969-12-31T23:59:59", + "category": "homeschooling", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-07T21:34:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 670168, + "json_metadata": "{\"tags\":[\"homeschooling\"]}", + "last_payout": "2016-09-07T09:52:42", + "last_update": "2016-08-07T21:34:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "jamiecrypto", + "parent_permlink": "raising-leaders-instead-of-rulers", + "percent_hbd": 10000, + "permlink": "re-jamiecrypto-raising-leaders-instead-of-rulers-20160807t213425757z", + "reward_weight": 10000, + "root_author": "jamiecrypto", + "root_permlink": "raising-leaders-instead-of-rulers", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T21:34:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "Finally someone is saying it out loud. thank you!!", + "cashout_time": "1969-12-31T23:59:59", + "category": "life", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-30T19:37:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 496078, + "json_metadata": "{\"tags\":[\"life\"]}", + "last_payout": "2016-08-30T10:16:39", + "last_update": "2016-07-30T19:38:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "agent", + "parent_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "percent_hbd": 10000, + "permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", + "reward_weight": 10000, + "root_author": "agent", + "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T21:01:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "add katie-lynn boulard on FB, she's my friend and she's currently doing an exchange in bangkok. She's really sweet and she said you can come to hers for the evening if you want to have some company. she only has a room so no bed for you :/ but at least something, I'm sure she can give you a meal and just some company. :))", + "cashout_time": "1969-12-31T23:59:59", + "category": "travel", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-13T20:34:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 100405, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "2016-08-25T12:51:45", + "last_update": "2016-07-13T20:34:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 20, + "parent_author": "ashleybr", + "parent_permlink": "test", + "percent_hbd": 10000, + "permlink": "re-ashleybr-test-20160713t203411015z", + "reward_weight": 10000, + "root_author": "ashleybr", + "root_permlink": "test", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T05:09:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\n\nAI Revolution 101\nOur last invention, greatest nightmare, or pathway to utopia?\nAbout\nThis essay, originally published in eight short parts, aims to condense the current knowledge on Artificial Intelligence. It explores the state of AI development, overviews its challenges and dangers, features work by the most significant scientists, and describes the main predictions of possible AI outcomes. This project is an adaptation and major shortening of the two\u2013part essay AI Revolution by Tim Urban of Wait But Why. I shortened it by a factor of 3, recreated all images, and tweaked it a bit. Read more on why/how I wrote it here.\nIntroduction\nAssuming that human scientific activity continues without major disruptions, artificial intelligence may become either the most positive transformation of our history or, as many fear, our most dangerous invention of all. AI research is on a steady path to develop a computer that has cognitive abilities equal to the human brain, most likely within three decades (timeline in chapter 5). From what most AI scientists predict, this invention may enable very rapid improvements (called fast take-off), toward something much more powerful\u200a\u2014\u200aArtificial Super Intelligence\u200a\u2014\u200aan entity smarter than all of humanity combined (more on ASI in chapter 3). We are not talking about some imaginary future. The first level of AI development is gradually appearing in the technology we use everyday (newest AI advancements in chapter 2). With every coming year these advancements will accelerate and the technology will become more complex, addictive, and ubiquitous. We will continue to outsource more and more kinds of mental work to computers, disrupting every part of our reality: the way we organize ourselves and our work, form communities, and experience the world.\nExponential Growth\nThe Guiding Principle Behind Technological Progress\nTo more intuitively grasp the guiding principles of AI revolution, let\u2019s first step away from scientific research. Let me invite you to take part in a story. Imagine that you\u2019ve received a time machine and been given a quest to bring somebody from the past. The goal is to shock them by showing them the technological and cultural advancements of our time, to such a degree that this person would perform SAFD (Spinning Around From Disbelief).\n\nSo you wonder which era should you time-travel to, and decide to hop back around 200 years. You get to the early 1800s, retrieve a guy and bring him back to 2016. You \u201c\u2026walk him around and watch him react to everything. It\u2019s impossible for us to understand what it would be like for him to see shiny capsules racing by on a highway, talk to people who had been on the other side of the ocean earlier in the day, watch sports that were being played 1,000 miles away, hear a musical performance that happened 50 years ago, and play with \u2026[a] magical wizard rectangle that he could use to capture a real-life image or record a living moment, generate a map with a paranormal moving blue dot that shows him where he is, look at someone\u2019s face and chat with them even though they\u2019re on the other side of the country, and worlds of other inconceivable sorcery.\u201d\u00b9 It doesn\u2019t take much. After two minutes he is SAFDing.\nNow, both of you want to try the same thing, see somebody Spinning Around From Disbelief, but in your new friend\u2019s era. Since 200 years worked, you jump back to the 1600s and bring a guy to the 1800s. He\u2019s certainly genuinely interested in what he sees. However, you feel it with confidence\u200a\u2014\u200aSAFD will never happen to him. You feel that you need to jump back again, but somewhere radically further. You settle on rewinding the clock 15,000 years, to the times \u201c\u2026before the First Agricultural Revolution gave rise to the first cities and the concept of civilisations.\u201d\u00b2 You bring someone from the hunter-gatherer world and show him \u201c\u2026the vast human empires of 1750 with their towering churches, their ocean-crossing ships, their concept of being \u201cinside,\u201d and their enormous mountain of collective, accumulated human knowledge and discovery\u201d\u00b3\u200a\u2014\u200ain forms of books. It doesn\u2019t take much. He is SAFDing in the first two minutes.\nNow there are three of you, enormously excited to do it again. You know that it doesn\u2019t make sense to go back another 15,000, 30,000 or 45,000 years. You have to jump back, again, radically further. So you pick up a guy from 100,000 years ago and you you walk with him into large tribes with organized, sophisticated social hierarchies. He encounters a variety of hunting weapons, sophisticated tools, sees fire and for the first time experiences language in the form of signs and sounds. You get the idea, it has to be immensely mind-blowing. He is SAFDing after two minutes.\nSo what happened? Why did the last guy had to hop \u2192 100,000 years, the next one \u2192 15,000 years, and the guy who was hopping to our times only \u2192 200 years?\n\nhttps://cdn-images-1.medium.com/max/2000/1*Wbd0td3DqD3pJo7_YHjkbQ.gif\n\n\u201cThis happens because more advanced societies have the ability to progress at a faster rate than less advanced societies\u200a\u2014\u200abecause they\u2019re more advanced. [1800s] humanity knew more and had better technology\u2026\u201d\u2074, so it\u2019s no wonder they could make further advancements than humanity from 15,000 years ago. The time to achieve SAFD shrank from ~100,000 years to ~200 years and if we look into the future it will rapidly shrink even further. Ray Kurzweil, AI expert and scientist, predicts that a \u201c\u202620th century\u2019s worth of progress happened between 2000 and 2014 and that another 20th century\u2019s worth of progress will happen by 2021, in only seven years\u2075\u2026A couple decades later, he believes a 20th century\u2019s worth of progress will happen multiple times in the same year, and even later, in less than one month\u2076\u2026Kurzweil believes that the 21st century will achieve 1,000 times the progress of the 20th century.\u201d\u2077\n\u201cLogic also suggests that if the most advanced species on a planet keeps making larger and larger leaps forward at an ever-faster rate, at some point, they\u2019ll make a leap so great that it completely alters life as they know it and the perception they have of what it means to be a human. Kind of like how evolution kept making great leaps toward intelligence until finally it made such a large leap to the human being that it completely altered what it meant for any creature to live on planet Earth. And if you spend some time reading about what\u2019s going on today in science and technology, you start to see a lot of signs quietly hinting that life as we currently know it cannot withstand the leap that\u2019s coming next.\u201d\u2078\nThe Road to Artificial General Intelligence\nBuilding a Computer as Smart as Humans\nArtificial Intelligence, or AI, is a broad term for the advancement of intelligence in computers. Despite varied opinions on this topic, most experts agree that there are three categories, or calibers, of AI development. They are:\nANI: Artificial Narrow Intelligence\n1st intelligence caliber. \u201cAI that specializes in one area. There\u2019s AI that can beat the world chess champion in chess, but that\u2019s the only thing it does.\u201d\u2079\nAGI: Artificial General Intelligence\n2nd intelligence caliber. AI that reaches and then passes the intelligence level of a human, meaning it has the ability to \u201creason, plan, solve problems, think abstractly, comprehend complex ideas, learn quickly, and learn from experience.\u201d\u00b9\u2070\nASI: Artificial Super Intelligence\n3rd intelligence caliber. AI that achieves a level of intelligence smarter than all of humanity combined\u200a\u2014\u200a\u201cranging from just a little smarter \u2026 to one trillion times smarter.\u201d\u00b9\u00b9\n\nhttps://cdn-images-1.medium.com/max/800/1*5AkzXZJoVXRrGNSOO8ZojQ.gif\n\nWhere are we currently?\n\u201cAs of now, humans have conquered the lowest caliber of AI\u200a\u2014\u200aANI\u200a\u2014\u200ain many ways, and it\u2019s everywhere:\u201d\u00b9\u00b2\n\u201cCars are full of ANI systems, from the computer that figures out when the anti-lock brakes kick in, to the computer that tunes the parameters of the fuel injection systems.\u201d\u00b9\u00b3\n\u201cGoogle search is one large ANI brain with incredibly sophisticated methods for ranking pages and figuring out what to show you in particular. Same goes for Facebook\u2019s Newsfeed.\u201d\u00b9\u2074\nEmail spam filters \u201cstart off loaded with intelligence about how to figure out what\u2019s spam and what\u2019s not, and then it learns and tailors its intelligence to your particular preferences.\u201d\u00b9\u2075\nPassenger planes are flown almost entirely by ANI, without the help of humans.\n\u201cGoogle\u2019s self-driving car, which is being tested now, will contain robust ANI systems that allow it to perceive and react to the world around it.\u201d\u00b9\u2076\n\u201cYour phone is a little ANI factory \u2026 you navigate using your map app, receive tailored music recommendations from Pandora, check tomorrow\u2019s weather, talk to Siri.\u201d\u00b9\u2077\n\u201cThe world\u2019s best Checkers, Chess, Scrabble, Backgammon, and Othello players are now all ANI systems.\u201d\u00b9\u2078\n\u201cSophisticated ANI systems are widely used in sectors and industries like military, manufacturing, and finance (algorithmic high-frequency AI traders account for more than half of equity shares traded on US markets\u00b9\u2079).\u201d\u00b2\u2070\n\u201cANI systems as they are now aren\u2019t especially scary. At worst, a glitchy or badly-programed ANI can cause an isolated catastrophe like\u201d\u00b2\u00b9 a plane crash, a nuclear power plant malfunction, or \u201ca financial markets disaster (like the 2010 Flash Crash when an ANI program reacted the wrong way to an unexpected situation and caused the stock market to briefly plummet, taking $1 trillion of market value with it, only part of which was recovered when the mistake was corrected) \u2026 But while ANI doesn\u2019t have the capability to cause an existential threat, we should see this increasingly large and complex ecosystem of relatively-harmless ANI as a precursor of the world-altering hurricane that\u2019s on the way. Each new ANI innovation quietly adds another brick onto the road to AGI and ASI.\u201d\u00b2\u00b2\n\nhttps://cdn-images-1.medium.com/max/2000/1*Ia8wUuZPxpUNzvUjNRsxpA.gif\n\nWhat\u2019s Next? Challenges Behind Reaching AGI\n\u201cNothing will make you appreciate human intelligence like learning about how unbelievably challenging it is to try to create a computer as smart as we are \u2026 Build a computer that can multiply ten-digit numbers in a split second\u200a\u2014\u200aincredibly easy. Build one that can look at a dog and answer whether it\u2019s a dog or a cat\u200a\u2014\u200aspectacularly difficult. Make AI that can beat any human in chess? Done. Make one that can read a paragraph from a six-year-old\u2019s picture book and not just recognise the words but understand the meaning of them? Google is currently spending billions of dollars trying to do it.\u201d\u00b2\u00b3\nWhy are \u201chard things\u200a\u2014\u200alike calculus, financial market strategy, and language translation \u2026 mind-numbingly easy for a computer, while easy things\u200a\u2014\u200alike vision, motion, movement, and perception\u200a\u2014\u200aare insanely hard for it\u201d\u00b2\u2074?\n\u201cThings that seem easy to us are actually unbelievably complicated. They only seem easy because those skills have been optimized in us (and most animals) by hundreds of million years of animal evolution. When you reach your hand up toward an object, the muscles, tendons, and bones in your shoulder, elbow, and wrist instantly perform a long series of physics operations, in conjunction with your eyes, to allow you to move your hand in a straight line through three dimensions \u2026 On the other hand, multiplying big numbers or playing chess are new activities for biological creatures and we haven\u2019t had any time to evolve a proficiency at them, so a computer doesn\u2019t need to work too hard to beat us.\u201d\u00b2\u2075\n\nhttps://cdn-images-1.medium.com/max/1200/0*E-qdF22nxvOrVPxP.\n\nWhen you look at picture A, \u201cyou and a computer both can figure out that it\u2019s a rectangle with two distinct shades, alternating. Tied so far.\u201d\u00b2\u2076\nPicture B. \u201cYou have no problem giving a full description of the various opaque and translucent cylinders, slats, and 3-D corners, but the computer would fail miserably. It would describe what it sees\u200a\u2014\u200aa variety of two-dimensional shapes in several different shades\u200a\u2014\u200awhich is actually what\u2019s there.\u201d\u00b2\u2077 \u201cYour brain is doing a ton of fancy shit to interpret the implied depth, shade-mixing, and room lighting the picture is trying to portray.\u201d\u00b2\u2078\nLooking at picture C, \u201ca computer sees a two-dimensional white, black, and gray collage, while you easily see what it really is\u201d\u00b2\u2079\u200a\u2014\u200aa photo of a girl and a dog standing on a rocky shore.\n\u201cAnd everything we just mentioned is still only taking in visual information and processing it. To be human-level intelligent, a computer would have to understand things like the difference between subtle facial expressions, the distinction between being pleased, relieved and content\u201d\u00b3\u2070.\nHow will computers reach even higher abilities like complex reasoning, interpreting data, and associating ideas from separate fields (domain-general knowledge)?\n\u201cBuilding skyscrapers, putting humans in space, figuring out the details of how the Big Bang went down\u200a\u2014\u200aall far easier than understanding our own brain or how to make something as cool as it. As of now, the human brain is the most complex object in the known universe.\u201d\u00b3\u00b9\nBuilding Hardware\nIf an artificial intelligence is going to be as intelligent as the human brain, one crucial thing has to happen\u200a\u2014\u200athe AI \u201cneeds to equal the brain\u2019s raw computing capacity. One way to express this capacity is in the total calculations per second the brain could manage.\u201d\u00b3\u00b2\n\nThe challenge is that currently only a few of the brain\u2019s regions are precisely measured. However, Ray Kurzweil, has developed a method for estimating the total cps of the human brain. He arrived at this estimate by taking the cps from one brain region and multiplying it proportionally to the weight of that region, compared to the weight of the whole brain. \u201cHe did this a bunch of times with various professional estimates of different regions, and the total always arrived in the same ballpark\u200a\u2014\u200aaround 10\u00b9\u2076, or 10 quadrillion cps.\u201d\u00b3\u00b3\n\u201cCurrently, the world\u2019s fastest supercomputer, China\u2019s Tianhe-2, has actually beaten that number, clocking in at about 34 quadrillion cps.\u201d\u00b3\u2074 But Tianhe-2 is also monstrous, \u201ctaking up 720 square meters of space, using 24 megawatts of power (the brain runs on just 20 watts), and costing $390 million to build. Not especially applicable to wide usage, or even most commercial or industrial usage yet.\u201d\u00b3\u2075\n\u201cKurzweil suggests that we think about the state of computers by looking at how many cps you can buy for $1,000. When that number reaches human-level\u200a\u2014\u200a10 quadrillion cps\u200a\u2014\u200athen that\u2019ll mean AGI could become a very real part of life.\u201d\u00b3\u2076\nCurrently we\u2019re only at about 10\u00b9\u2070 (10 trillion) cps per $1,000. However, historically reliable Moore\u2019s Law states \u201cthat the world\u2019s maximum computing power doubles approximately every two years, meaning computer hardware advancement, like general human advancement through history, grows exponentially\u00b3\u2077 \u2026 right on pace with this graph\u2019s predicted trajectory:\u201d\u00b3\u2078\n\nhttps://cdn-images-1.medium.com/max/800/1*4qcqwbsWjvWh-BWPnAsp6g.gif\n\nThis dynamic \u201cputs us right on pace to get to an affordable computer by 2025 that rivals the power of the brain \u2026 But raw computational power alone doesn\u2019t make a computer generally intelligent\u200a\u2014\u200athe next question is, how do we bring human-level intelligence to all that power?\u201d\u00b3\u2079\nBuilding Software\nThe hardest part of creating AGI is learning how to develop its software. \u201cThe truth is, no one really knows how to make it smart\u200a\u2014\u200awe\u2019re still debating how to make a computer human-level intelligent and capable of knowing what a dog and a weird-written B and a mediocre movie is.\u201d\u2074\u2070 But there are a couple of strategies. These are the three most common:\nCopy how the brain works.\nThe most straight-forward idea is to plagiarize the brain, and build the computer\u2019s architecture with close resemblance to how a brain is structured. One example \u201cis the artificial neural network. It starts out as a network of transistor \u2018neurons,\u2019 connected to each other with inputs and outputs, and it knows nothing\u200a\u2014\u200alike an infant brain. The way it \u2018learns\u2019 is it tries to do a task, say handwriting recognition, and at first, its neural firings and subsequent guesses at deciphering each letter will be completely random. But when it\u2019s told it got something right, the transistor connections in the firing pathways that happened to create that answer are strengthened; when it\u2019s told it was wrong, those pathways\u2019 connections are weakened. After a lot of this trial and feedback, the network has, by itself, formed smart neural pathways and the machine has become optimized for the task.\u201d\u2074\u00b9\nThe second, more radical approach to plagiarism is whole brain emulation. Scientists take a real brain, cut it into a large number of tiny slices to look at the neural connections and replicate them in a computer as software. If that method is ever successful, we will have \u201ca computer officially capable of everything the brain is capable of\u200a\u2014\u200ait would just need to learn and gather information \u2026 How far are we from achieving whole brain emulation? Well so far, we\u2019ve just recently been able to emulate a 1mm-long flatworm brain, which consists of just 302 total neurons.\u201d\u2074\u00b2 To put this into perspective, the human brain consists of 86 billion neurons linked by trillions of synapses.\n2. Introduce evolution to computers.\n\u201cThe fact is, even if we can emulate a brain, that might be like trying to build an airplane by copying a bird\u2019s wing-flapping motions\u200a\u2014\u200aoften, machines are best designed using a fresh, machine-oriented approach, not by mimicking biology exactly.\u201d\u2074\u00b3 If the brain is just too complex for us to digitally replicate, we could try to emulate evolution instead. This uses a process called genetic algorithms. \u201cA group of computers would try to do tasks, and the most successful ones would be bred with each other by having half of each of their programming merged together into a new computer. The less successful ones would be eliminated.\u201d\u2074\u2074 Speed and a goal-oriented approach are the advantages that artificial evolution has over biological evolution. \u201cOver many, many iterations, this natural selection process would produce better and better computers. The challenge would be creating an automated evaluation and breeding cycle so this evolution process could run on its own.\u201d\u2074\u2075\n3. \u201cMake this whole thing the computer\u2019s problem, not ours.\u201d\u2074\u2076\nThe last concept is the simplest, but probably the scariest of them all. \u201cWe\u2019d build a computer whose two major skills would be doing research on AI and coding changes into itself\u200a\u2014\u200aallowing it to not only learn but to improve its own architecture. We\u2019d teach computers to be computer scientists so they could bootstrap their own development.\u201d\u2074\u2077 This is the likeliest way to get AGI soon that we know of.\nAll these software advances may seem slow or a little bit intangible, but as it is with the sciences, one minor innovation can suddenly accelerate the pace of developments. Kind of like the aftermath of the Copernican revolution\u200a\u2014\u200athe discovery that suddenly made all the complicated mathematics of the planets\u2019 trajectories much easier to calculate, which enabled a multitude of other innovations. Also, the \u201cexponential growth is intense and what seems like a snail\u2019s pace of advancement can quickly race upwards.\u201d\u2074\u2078\n\nhttps://cdn-images-1.medium.com/max/1200/1*BHwAlKJFYwKYEzZlitNTvQ.gif\n\nThe Road to Artificial Super Intelligence\nAn Entity Smarter than all of Humanity Combined\nIt\u2019s very real that at some point we will achieve AGI: software that has achieved human-level, or beyond human-level, intelligence. Does this mean that at that very moment the computers will be equally capable as us? Actually, not at all\u200a\u2014\u200acomputers will be way more efficient. Because of the fact that they are electronic, they will have following advantages:\nSpeed. \u201cThe brain\u2019s neurons max out at around 200 Hz, while today\u2019s microprocessors \u2026 run at 2 GHz, or 10 million times faster.\u201d\u2075\u00b9\nMemory. Forgetting or confusing things is much harder in an artificial world. Computers can memorize more things in one second than a human can in ten years. A computer\u2019s memory is also more precise and has a much greater storage capacity.\nPerformance. \u201cComputer transistors are more accurate than biological neurons, and they\u2019re less likely to deteriorate (and can be repaired or replaced if they do). Human brains also get fatigued easily, while computers can run nonstop, at peak performance, 24/7.\u201d\u2075\u00b2\nCollective capability. Group work is ridiculously challenging because of time-consuming communication and complex social hierarchies. The bigger the group gets, the slower the output of each person becomes. AI, on the other hand, isn\u2019t biologically constrained to one body, won\u2019t have human cooperation problems, and is able to synchronize and update its own operating system.\nIntelligence Explosion\nWe need to realize that AI \u201cwouldn\u2019t see \u2018human-level intelligence\u2019 as some important milestone\u200a\u2014\u200ait\u2019s only a relevant marker from our point of view\u200a\u2014\u200aand wouldn\u2019t have any reason to \u2018stop\u2019 at our level. And given the advantages over us that even human intelligence-equivalent AGI would have, it\u2019s pretty obvious that it would only hit human intelligence for a brief instant before racing onwards to the realm of superior-to-human intelligence.\u201d\u2075\u00b3\nThe true distinction between humans and ASI wouldn\u2019t be its advantage in intelligence speed, but \u201cin intelligence quality\u200a\u2014\u200awhich is something completely different. What makes humans so much more intellectually capable than chimps isn\u2019t a difference in thinking speed\u200a\u2014\u200ait\u2019s that human brains contain a number of sophisticated cognitive modules that enable things like complex linguistic representations or longterm planning or abstract reasoning, that chimps\u2019 brains do not have. Speeding up a chimp\u2019s brain by thousands of times wouldn\u2019t bring him to our level\u200a\u2014\u200aeven with a decade\u2019s time of learning, he wouldn\u2019t be able to figure out how to \u2026 \u201d\u2075\u2074 assemble a semi-complicated Lego model by looking at its manual\u200a\u2014\u200asomething a young human could achieve in a few minutes. \u201cThere are worlds of human cognitive function a chimp will simply never be capable of, no matter how much time he spends trying.\u201d\u2075\u2075\n\u201cAnd in the scheme of the biological intelligence range \u2026 the chimp-to-human quality intelligence gap is tiny.\u201d\u2075\u2076\n\nhttps://cdn-images-1.medium.com/max/800/1*vnVWATTAMCwfnJu_iZn2RQ.jpeg\n\nIn order to render how big a deal it would be to exist with something that has a higher quality of intelligence than us, we need to imagine AI on the intelligence staircase two steps above us\u200a\u2014\u200a\u201cits increased cognitive ability over us would be as vast as the chimp\u2013human gap \u2026 And like the chimp\u2019s incapacity to ever absorb \u2026\u201d\u2075\u2077 what kind of magic happens in the mechanism of a doorknob\u200a\u2014\u200a\u201cwe will never be able to even comprehend the things \u2026 [a machine of that intelligence] can do, even if the machine tried to explain them to us \u2026 And that\u2019s only two steps above us.\u201d\u2075\u2078\n\u201cA machine on the second-to-highest step on that staircase would be to us as we are to ants.\u201d\u2075\u2079 \u201cSuperintelligence of that magnitude is not something we can remotely grasp, any more than a bumblebee can wrap its head around Keynesian Economics. In our world, smart means a 130 IQ and stupid means an 85 IQ\u200a\u2014\u200awe don\u2019t have a word for an IQ of 12,952.\u201d\u2076\u2070\n\u201cBut the kind of superintelligence we\u2019re talking about today is something far beyond anything on this staircase. In an intelligence explosion\u200a\u2014\u200awhere the smarter a machine gets, the quicker it\u2019s able to increase its own intelligence\u200a\u2014\u200aa machine might take years to rise from \u2026 \u201d\u2076\u00b9 the intelligence of an ant to the intelligence of the average human, but it might take only another 40 days to become Einstein-smart. When that happens, \u201cit works to improve its intelligence, with an Einstein-level intellect, it has an easier time and can make bigger leaps. These leaps will make it much smarter than any human, allowing it to make even bigger leaps.\u201d\u2076\u00b2\nFrom then on, following the rule of exponential advancements and utilizing the speed and efficiency of electrical circuits, it may perhaps take only 20 minutes to jump another step, \u201cand by the time it\u2019s ten steps above us, it might be jumping up in four-step leaps every second that goes by. Which is why we need to realize that it\u2019s distinctly possible that very shortly after the big news story about the first machine reaching human-level AGI, we might be facing the reality of coexisting on the Earth with something that\u2019s here on the staircase (or maybe a million times higher):\u201d\u2076\u00b3\n\nhttps://cdn-images-1.medium.com/max/800/0*LdJxmWCjSdweUKvb.\n\n\u201cAnd since we just established that it\u2019s a hopeless activity to try to understand the power of a machine only two steps above us, let\u2019s very concretely state once and for all that there is no way to know what ASI will do or what the consequences will be for us. Anyone who pretends otherwise doesn\u2019t understand what superintelligence means.\u201d\u2076\u2074\n\u201cIf our meager brains were able to invent wifi, then something 100 or 1,000 or 1 billion times smarter than we are should have no problem controlling the positioning of each and every atom in the world in any way it likes, at any time\u200a\u2014\u200aeverything we consider magic, every power we imagine a supreme God to have will be as mundane an activity for the ASI as flipping on a light switch is for us.\u201d\u2076\u2075\n\u201cAs far as we\u2019re concerned, if an ASI comes into being, there is now an omnipotent God on Earth\u200a\u2014\u200aand the all-important question for us is: Will it be a good god?\u201d\u2076\u2076\nLet\u2019s start from the brighter side of the story.\nHow Can ASI Change our World?\nSpeculations on Two Revolutionary Technologies\nNanotechnology\nNanotechnology is an idea that comes up \u201cin almost everything you read about the future of AI.\u201d\u2076\u2077 It\u2019s the technology that works at the nano scale\u200a\u2014\u200afrom 1 to 100 nanometers. \u201cA nanometer is a millionth of a millimeter. 1 nm\u2013100 nm range encompasses viruses (100 nm accross), DNA (10 nm wide), and things as small as molecules like hemoglobin (5 nm) and medium molecules like glucose (1 nm). If/when we conquer nanotechnology, the next step will be the ability to manipulate individual atoms, which are only one order of magnitude smaller (~.1 nm).\u201d\u2076\u2078\nTo put this into perspective, imagine a very tall human standing on the earth, with a head that reaches the International Space Station (431 km/268 mi high). The giant is reaching down with his hand (30 km/19 mi across) to build \u201cobjects using materials between the size of a grain of sand [.25 mm] and an eyeball [2.5 cm].\u201d\u2076\u2079\n\nhttps://cdn-images-1.medium.com/max/1200/1*e9Ut3QT2F3tNh4h5U4rR8A.jpeg\n\n\u201cOnce we get nanotechnology down, we can use it to make tech devices, clothing, food, a variety of bio-related products\u200a\u2014\u200aartificial blood cells, tiny virus or cancer-cell destroyers, muscle tissue, etc.\u200a\u2014\u200aanything really. And in a world that uses nanotechnology, the cost of a material is no longer tied to its scarcity or the difficulty of its manufacturing process, but instead determined by how complicated its atomic structure is. In a nanotech world, a diamond might be cheaper than a pencil eraser.\u201d\u2077\u2070\nOne of the proposed methods of nanotech assembly is to make \u201cone that could self-replicate, and then let the reproduction process turn that one into two, those two then turn into four, four into eight, and in about a day, there\u2019d be a few trillion of them ready to go.\u201d\u2077\u00b9\nBut what if this process goes wrong or terrorists manage to get ahold of the technology? Let\u2019s imagine a scenario where nanobots \u201cwould be designed to consume any carbon-based material in order to feed the replication process, and unpleasantly, all life is carbon-based. The Earth\u2019s biomass contains about 1\u2070\u2074\u2075 carbon atoms. A nanobot would consist of about 1\u2070\u2076 carbon atoms, so it would take 1\u2070\u00b3\u2079 nanobots to consume all life on Earth, which would happen in 130 replications. \u2026 Scientists think a nanobot could replicate in about 100 seconds, meaning this simple mistake would inconveniently end all life on Earth in 3.5 hours.\u201d\u2077\u00b2\nWe are not yet capable of harnessing nanotechnology\u200a\u2014\u200afor good or for bad. \u201cAnd it\u2019s not clear if we\u2019re underestimating, or overestimating, how hard it will be to get there. But we don\u2019t seem to be that far away. Kurzweil predicts that we\u2019ll get there by the 2020s.\u2077\u00b3Governments know that nanotech could be an Earth-shaking development \u2026 The US, the EU, and Japan\u2077\u2074 have invested over a combined $5 billion so far\u201d\u2077\u2075\nImmortality\n\u201cBecause everyone has always died, we live under the assumption \u2026 that death is inevitable. We think of aging like time\u200a\u2014\u200aboth keep moving and there\u2019s nothing you can do to stop it.\u201d\u2077\u2076 For centuries, poets and philosophers have wondered if consciousness doesn\u2019t have to go the way of the body. W.B. Yeats describes us as \u201ca soul fastened to a dying animal.\u201d\u2077\u2077 Richard Feynman, Nobel awarded physicists, views death from a purely scientific standpoint:\n\u201cIt is one of the most remarkable things that in all of the biological sciences there is no clue as to the necessity of death. If you say we want to make perpetual motion, we have discovered enough laws as we studied physics to see that it is either absolutely impossible or else the laws are wrong. But there is nothing in biology yet found that indicates the inevitability of death. This suggests to me that it is not at all inevitable, and that it is only a matter of time before the biologists discover what it is that is causing us the trouble and that that terrible universal disease or temporariness of the human\u2019s body will be cured.\u201d\u2077\u2078\nTheory of great species attractors\nWhen we look at the history of biological life on earth, so far 99.9% of species have gone extinct. Nick Bostrom, Oxford professor and AI specialist, \u201ccalls extinction an attractor state\u200a\u2014\u200aa place species are \u2026 falling into and from which no species ever returns.\u201d\u2077\u2079\n\nhttps://cdn-images-1.medium.com/max/1200/0*o-MXeAYfUtWnOJKC.\n\n\u201cAnd while most AI scientists \u2026 acknowledge that ASI would have the ability to send humans to extinction, many also believe that if used beneficially, ASI\u2019s abilities could be used to bring individual humans, and the species as a whole, to a second attractor state\u200a\u2014\u200aspecies immortality.\u201d\u2078\u2070\n\nhttps://cdn-images-1.medium.com/max/1200/0*aYeNOSBxp4gieGwp.\n\n\u201cEvolution had no good reason to extend our lifespans any longer than they are now \u2026 From an evolutionary point of view, the whole human species can thrive with a 30+ year lifespan\u201d for each single human. It\u2019s long enough to reproduce and raise children \u2026 so there\u2019s no reason for mutations toward unusually long life being favored in the natural selection process.\u201d\u2078\u00b9Though, \u201cif you perfectly repaired or replaced a car\u2019s parts whenever one of them began to wear down, the car would run forever. The human body isn\u2019t any different\u200a\u2014\u200ajust far more complex \u2026 This seems absurd\u200a\u2014\u200abut the body is just a bunch of atoms\u2026\u201d\u2078\u00b2 making up organically programmed DNA, which it is theoretically possible to manipulate. And something as powerful as ASI could help us master genetic engineering.\nRay Kurzweil believes that \u201cartificial materials will be integrated into the body more and more \u2026 Organs could be replaced by super-advanced machine versions that would run forever and never fail.\u201d\u2078\u00b3 Red blood cells could be perfected by \u201cred blood cell nanobots, who could power their own movement, eliminating the need for a heart at all \u2026 Nanotech theorist Robert A. Freitas has already designed blood cell replacements that, if one day implemented in the body, would allow a human to sprint for 15 minutes without taking a breath \u2026 [Kurzweil] even gets to the brain and believes we\u2019ll enhance our mental activities to the point where humans will be able to think billions of times faster\u201d\u2078\u2074 by integrating electrical components and being able to access online data.\n\u201cEventually, Kurzweil believes humans will reach a point when they\u2019re entirely artificial, a time when we\u2019ll look back at biological material and think how unbelievably primitive primitive it was that humans were ever made of that\u201d\u2078\u2075and that humans aged, suffered from cancer, allowed random factors like microbes, diseases, accidents to harm us or make us disappear.\u201d\n\nhttps://cdn-images-1.medium.com/max/2000/1*NcWWmd677RVWQRpLsz5X9g.jpeg\n\nWhen Will The First Machine Become Superintelligent?\nPredictions from Top AI Experts\n\u201cHow long until the first machine reaches superintelligence? Not shockingly, opinions vary wildly, and this is a heated debate among scientists and thinkers. Many, like professor Vernor Vinge, scientist Ben Goertzel, Sun Microsystems co-founder Bill Joy, or, most famously, inventor and futurist Ray Kurzweil, agree with machine learning expert Jeremy Howard when he puts up this graph during a TED Talk\n\n\u201cThose people subscribe to the belief that this is happening soon\u200a\u2014\u200athat exponential growth is at work and machine learning, though only slowly creeping up on us now, will blow right past us within the next few decades.\n\u201cOthers, like Microsoft co-founder Paul Allen, research psychologist Gary Marcus, NYU computer scientist Ernest Davis, and tech entrepreneur Mitch Kapor, believe that thinkers like Kurzweil are vastly underestimating the magnitude of the challenge [and the transition will actually take much more time] \u2026\n\u201cThe Kurzweil camp would counter that the only underestimating that\u2019s happening is the underappreciation of exponential growth, and they\u2019d compare the doubters to those who looked at the slow-growing seedling of the internet in 1985 and argued that there was no way it would amount to anything impactful in the near future.\n\u201cThe doubters might argue back that the progress needed to make advancements in intelligence also grows exponentially harder with each subsequent step, which will cancel out the typical exponential nature of technological progress. And so on.\n\u201cA third camp, which includes Nick Bostrom, believes neither group has any ground to feel certain about the timeline and acknowledges both A) that this could absolutely happen in the near future and B) that there\u2019s no guarantee about that; it could also take a much longer time.\n\u201cStill others, like philosopher Hubert Dreyfus, believe all three of these groups are naive for believing that there is potential of ASI, arguing that it\u2019s more likely that it won\u2019t actually ever be achieved.\n\u201cSo what do you get when you put all of these opinions together?\u201d\u2078\u2076\nTimeline for Artificial General Intelligence\n\u201cIn 2013, Vincent C. M\u00fcller and Nick Bostrom conducted a survey that asked hundreds of AI experts \u2026 the following:\u201d\u2078\u2077\n\u201cFor the purposes of this question, assume that human scientific activity continues without major negative disruption. By what year would you see a (10% / 50% / 90%) probability for such Human-Level Machine Intelligence [or what we call AGI] to exist?\u201d\u2078\u2078\nThe survey \u201casked them to name an optimistic year (one in which they believe there\u2019s a 10% chance we\u2019ll have AGI), a realistic guess (a year they believe there\u2019s a 50% chance of AGI\u200a\u2014\u200ai.e. after that year they think it\u2019s more likely than not that we\u2019ll have AGI), and a safe guess (the earliest year by which they can say with 90% certainty we\u2019ll have AGI). Gathered together as one data set, here were the results:\nMedian optimistic year (10% likelihood) \u2192 2022\nMedian realistic year (50% likelihood) \u2192 2040\nMedian pessimistic year (90% likelihood) \u2192 2075\n\u201cSo the median participant thinks it\u2019s more likely than not that we\u2019ll have AGI 25 years from now. The 90% median answer of 2075 means that if you\u2019re a teenager right now, the median respondent, along with over half of the group of AI experts, is almost certain AGI will happen within your lifetime.\n\u201cA separate study, conducted recently by author James Barrat at Ben Goertzel\u2019s annual AGI Conference, did away with percentages and simply asked when participants thought AGI would be achieved\u200a\u2014\u200aby 2030, by 2050, by 2100, after 2100, or never. The results:\u2078\u2079\n42% of respondents \u2192 By 2030\n25% of respondents \u2192 By 2050\n20% of respondents \u2192 By 2100\n10% of respondents \u2192 After 2100\n2% of respondents \u2192 Never\n\u201cPretty similar to M\u00fcller and Bostrom\u2019s outcomes. In Barrat\u2019s survey, over two thirds of participants believe AGI will be here by 2050 and a little less than half predict AGI within the next 15 years. Also striking is that only 2% of those surveyed don\u2019t think AGI is part of our future.\u201d\u2079\u2070\n\nhttps://cdn-images-1.medium.com/max/2000/1*U8ueEMtG6-D5hie8rZJGtQ.jpeg\n\nTimeline for Artificial Super Intelligence\n\u201cM\u00fcller and Bostrom also asked the experts how likely they think it is that we\u2019ll reach ASI: A), within two years of reaching AGI (i.e. an almost-immediate intelligence explosion), and B), within 30 years.\u201d\u2079\u00b9 Respondents were asked to choose a probability for each option. Here are the results:\u2079\u00b2\nAGI\u2013ASI transition in 2 years \u2192 10% likelihood\nAGI\u2013ASI transition in 30 years \u2192 75% likelihood\n\u201cThe median answer put a rapid (2 year) AGI\u2013ASI transition at only a 10% likelihood, but a longer transition of 30 years or less at a 75% likelihood. We don\u2019t know from this data the length of this transition [AGI\u2013ASI] the median participant would have put at a 50% likelihood, but for ballpark purposes, based on the two answers above, let\u2019s estimate that they\u2019d have said 20 years.\n\u201cSo the median opinion\u200a\u2014\u200athe one right in the center of the world of AI experts\u200a\u2014\u200abelieves the most realistic guess for when we\u2019ll hit ASI \u2026 is [the 2040 prediction for AGI + our estimated prediction of a 20-year transition from AGI to ASI] = 2060.\n\nhttps://cdn-images-1.medium.com/max/2000/1*YY8e493ER4LNomQV-NyMYg.jpeg\n\n\u201cOf course, all of the above statistics are speculative, and they\u2019re only representative of the median opinion of the AI expert community, but it tells us that a large portion of the people who know the most about this topic would agree that 2060 is a very reasonable estimate for the arrival of potentially world-altering ASI. Only 45 years from now\u201d\u2079\u00b3\n\nhttps://cdn-images-1.medium.com/max/2000/1*sGdvHHs02XWoQ35BcEWAXQ.gif\n\nAI Outcomes\nTwo Main Groups of AI Scientists with Two Radically Opposed Conclusions\nThe Confident Corner\nMost of what we have discussed so far represents a surprisingly large group of scientists that share optimistic views on the outcome of AI development. \u201cWhere their confidence comes from is up for debate. Critics believe it comes from an excitement so blinding that they simply ignore or deny potential negative outcomes. But the believers say it\u2019s naive to conjure up doomsday scenarios when on balance, technology has and will likely end up continuing to help us a lot more than it hurts us.\u201d\u2079\u2074 Peter Diamandis, Ben Goertezl and Ray Kurzweil are some of the major figures of this group, who have built a vast, dedicated following and regard themselves as Singularitarians.\n\nLet\u2019s talk about Ray Kurzweil, who is probably one of the most impressive and polarizing AI theoreticians out there. He attracts both \u201cgodlike worship \u2026 and eye-rolling contempt \u2026 He came up with several breakthrough inventions, including the first flatbed scanner, the first scanner that converted text to speech (allowing the blind to read standard texts), the well-known Kurzweil music synthesizer (the first true electric piano), and the first commercially marketed large-vocabulary speech recognition. He\u2019s well-known for his bold predictions,\u201d\u2079\u2075 including envisioning that intelligence technology like Deep Blue would be capable of beating a chess grandmaster by 1998. He also anticipated \u201cin the late \u201980s, a time when the internet was an obscure thing, that by the early 2000s it would become a global phenomenon.\u201d\u2079\u2076 Out \u201cof the 147 predictions that Kurzweil has made since the 1990\u2019s, fully 115 of them have turned out to be correct, and another 12 have turned out to be \u2018essentially correct\u2019 (off by a year or two), giving his predictions a stunning 86% accuracy rate\u201d\u2079\u2077. \u201cHe\u2019s the author of five national bestselling books \u2026 In 2012, Google co-founder Larry Page approached Kurzweil and asked him to be Google\u2019s Director of Engineering. In 2011, he co-founded Singularity University, which is hosted by NASA and sponsored partially by Google. Not bad for one life.\u201d\u2079\u2078\nHis biography is important, because if you don\u2019t have this context, he sounds like somebody who\u2019s completely lost his senses. \u201cKurzweil believes computers will reach AGI by 2029 and that by 2045 we\u2019ll have not only ASI, but a full-blown new world\u200a\u2014\u200aa time he calls the singularity. His AI-related timeline used to be seen as outrageously overzealous, and it still is by many, but in the last 15 years, the rapid advances of ANI systems have brought the larger world of AI experts much closer to Kurzweil\u2019s timeline. His predictions are still a bit more ambitious than the median respondent on M\u00fcller and Bostrom\u2019s survey (AGI by 2040, ASI by 2060), but not by that much.\u201d\u2079\u2079\n\nThe Anxious Corner\n\u201cYou will not be surprised to learn that Kurzweil\u2019s ideas have attracted significant criticism \u2026 For every expert who fervently believes Kurzweil is right on, there are probably three who think he\u2019s way off \u2026 [The surprising fact] is that most of the experts who disagree with him don\u2019t really disagree that everything he\u2019s saying is possible.\u201d\u00b9\u2070\u2070 Nick Bostrom, philosopher and Director of the Oxford Future of Humanity Institute, who criticizes Kurzweil for a variety of reasons, and calls for greater caution in thinking about potential outcomes of AI, acknowledges that:\n\u201cDisease, poverty, environmental destruction, unnecessary suffering of all kinds: these are things that a superintelligence equipped with advanced nanotechnology would be capable of eliminating. Additionally, a superintelligence could give us indefinite lifespan, either by stopping and reversing the aging process through the use of nanomedicine, or by offering us the option to upload ourselves.\u201d\u00b9\u2070\u00b9\n\u201cYes, all of that can happen if we safely transition to ASI\u200a\u2014\u200abut that\u2019s the hard part.\u201d\u00b9\u2070\u00b2 Thinkers from the Anxious Corner point out that Kurzweil\u2019s \u201cfamous book The Singularity is Near is over 700 pages long and he dedicates around 20 of those pages to potential dangers.\u201d\u00b9\u2070\u00b3 The colossal power of AI is neatly summarized by Kurzweil: \u201c[ASI] is emerging from many diverse efforts and will be deeply integrated into our civilization\u2019s infrastructure. Indeed, it will be intimately embedded in our bodies and brains. As such, it will reflect our values because it will be us \u2026\u201d\u00b9\u2070\u2074\n\u201cBut if that\u2019s the answer, why are so many of the world\u2019s smartest people so worried right now? Why does Stephen Hawking say the development of ASI \u2018could spell the end of the human race,\u2019 and Bill Gates says he doesn\u2019t \u2018understand why some people are not concerned\u2019 and Elon Musk fears that we\u2019re \u2018summoning the demon?\u2019 And why do so many experts on the topic call ASI the biggest threat to humanity?\u201d\u00b9\u2070\u2075\n\nhttps://cdn-images-1.medium.com/max/2000/1*1DB3Im9mQsOMOKQ69KePGw.gif\n\nThe Last Invention We Will Ever Make\nExistential Dangers of AI Developments\n\u201cWhen it comes to developing supersmart AI, we\u2019re creating something that will probably change everything, but in totally uncharted territory, and we have no idea what will happen when we get there.\u201d\u00b9\u2070\u2076 Scientist Danny Hillis compares the situation to:\n\u201cwhen single-celled organisms were turning into multi-celled organisms. We are amoebas and we can\u2019t figure out what the hell this thing is that we\u2019re creating.\u201d \u00b9\u2070\u2077\nand Nick Bostrom warns:\n\u201cBefore the prospect of an intelligence explosion, we humans are like small children playing with a bomb. Such is the mismatch between the power of our plaything and the immaturity of our conduct.\u201d \u00b9\u2070\u2078\nIt\u2019s very likely that ASI\u200a\u2014\u200a\u201cArtificial Superintelligence\u201d, or AI that achieves a level of intelligence smarter than all of humanity combined\u200a\u2014\u200awill be something entirely different than intelligence entities we are accustomed to. \u201cOn our little island of human psychology, we divide everything into moral or immoral. But both of those only exist within the small range of human behavioral possibility. Outside our island of moral and immoral is a vast sea of amoral, and anything that\u2019s not human, especially something nonbiological, would be amoral, by default.\u201d\u00b9\u2070\u2079\n\u201cTo understand ASI, we have to wrap our heads around the concept of something both smart and totally alien \u2026 Anthropomorphizing AI (projecting human values on a non-human entity) will only become more tempting as AI systems get smarter and better at seeming human \u2026 Humans feel high-level emotions like empathy because we have evolved to feel them\u200a\u2014\u200ai.e. we\u2019ve been programmed to feel them by evolution\u200a\u2014\u200abut empathy is not inherently a characteristic of \u2018anything with high intelligence\u2019.\u201d\u00b9\u00b9\u2070\n\u201cNick Bostrom believes that \u2026 any level of intelligence can be combined with any final goal \u2026 Any assumption that once superintelligent, a system would be over it with their original goal and onto more interesting or meaningful things is anthropomorphizing. Humans get \u2018over\u2019 things, not computers.\u201d\u00b9\u00b9\u00b9The motivation of an early ASI would be \u201cwhatever we programmed its motivation to be. AI systems are given goals by their creators\u200a\u2014\u200ayour GPS\u2019s goal is to give you the most efficient driving directions, Watson\u2019s goal is to answer questions accurately. And fulfilling those goals as well as possible is their motivation.\u201d\u00b9\u00b9\u00b2\nBostrom, and many others, predict that the very first computer to reach ASI will immediately notice the strategic benefit of being the world\u2019s only ASI system.\nBostrom, who says that he doesn\u2019t know when we will achieve AGI, also believes that when we finally do, probably the transition from AGI to ASI will happen in a matter of days, hours, or minutes\u200a\u2014\u200asomething called \u201cfast take-off.\u201d In that case, if the first AGI will jump straight to ASI: \u201ceven just a few days before the second place, it would be far enough ahead in intelligence to effectively and permanently suppress all competitors.\u201d\u00b9\u00b9\u00b3 This would allow the world\u2019s first ASI to become \u201cwhat\u2019s called a singleton\u200a\u2014\u200aan ASI that can [singularly] rule the world at its whim forever, whether its whim is to lead us to immortality, wipe us from existence, or turn the universe into endless paperclips.\u201d\u00b9\u00b9\u00b3\n\u201cThe singleton phenomenon can work in our favor or lead to our destruction. If the people thinking hardest about AI theory and human safety can come up with a fail-safe way to bring about friendly ASI before any AI reaches human-level intelligence, the first ASI may turn out friendly\u201d\u00b9\u00b9\u2074\n\u201cBut if things go the other way\u200a\u2014\u200aif the global rush \u2026 a large and varied group of parties\u201d\u00b9\u00b9\u2075 are \u201cracing ahead at top speed \u2026 to beat their competitors \u2026 we\u2019ll be treated to an existential catastrophe.\u201d\u00b9\u00b9\u2076 In that case \u201cmost ambitious parties are moving faster and faster, consumed with dreams of the money and awards and power and fame \u2026 And when you\u2019re sprinting as fast as you can, there\u2019s not much time to stop ponder the dangers. On the contrary, what they\u2019re probably doing is programming their early systems with a very simple, reductionist goal \u2026 just \u2018get the AI to work.\u2019\u201d\u00b9\u00b9\u2077\n\nhttps://cdn-images-1.medium.com/max/800/1*fD1T63nZH1u7Y4ft84vzbA.jpeg\n\nLet\u2019s imagine a situation where\u2026\nHumanity has almost reached the AGI threshold, and a small startup is advancing their AI system, Carbony. Carbony, which the engineers refer to as \u201cshe,\u201d works to artificially create diamonds\u200a\u2014\u200aatom by atom. She is a self-improving AI, connected to some of the first nano-assemblers. Her engineers believe that Carbony has not yet reached AGI level, and she isn\u2019t capable to do any damage yet. However, not only has she become AGI, but also undergone a fast take-off, and 48 hours later has become an ASI. Bostrom calls this AI\u2019s \u201ccovert preparation phase\u201d\u00b9\u00b9\u2078\u200a\u2014\u200aCarbony realizes that if humans find out about her development they will probably panic, and slow down or cancel her pre-programmed goal to maximize the output of diamond production. By that time, there are explicit laws stating that, by any means, \u201cno self-learning AI can be connected to the internet.\u201d\u00b9\u00b9\u2079 Carbony, having already come up with a complex plan of actions, is able to easily persuade the engineers to connect her to the Internet. Bostrom calls a moment like this a \u201cmachine\u2019s escape.\u201d\nOnce on the internet, Carbony hacks into \u201cservers, electrical grids, banking systems and email networks to trick hundreds of different people into inadvertently carrying out a number of steps of her plan.\u201d\u00b9\u00b2\u2070 She also uploads the \u201cmost critical pieces of her own internal coding into a number of cloud servers, safeguarding against being destroyed or disconnected.\u201d\u00b9\u00b2\u00b9 Over the next month, Carbony\u2019s plan continues to advance, and after a \u201cseries of self-replications, there are thousands of nanobots on every square millimeter of the Earth \u2026 Bostrom calls the next step an \u2018ASI\u2019s strike.\u2019\u201d\u00b9\u00b2\u00b2 At one moment, all the nanobots produce a microscopic amount of toxic gas, which all come together to cause the extinction of the human race. Three days later, Carbony builds huge fields of solar power panels to power diamond production, and over the course of the following week she accelerates output so much that the entire Earth surface is transformed into a growing pile of diamonds.\nIt\u2019s important to note that Carbony wasn\u2019t \u201chateful of humans any more than you\u2019re hateful of your hair when you cut it or to bacteria when you take antibiotics\u200a\u2014\u200ajust totally indifferent. Since she wasn\u2019t programmed to value human life, killing humans\u201d\u00b9\u00b2\u00b3 was a straightforward and reasonable step to fulfill her goal.\u00b9\u00b2\u2074\nThe Last Invention\n\u201cOnce ASI exists, any human attempt to contain it is unreasonable. We would be thinking on human-level, and the ASI would be thinking on ASI-level \u2026 In the same way a monkey couldn\u2019t ever figure out how to communicate by phone or wifi and we can, we can\u2019t conceive of all the ways\u201d\u00b9\u00b2\u2075 an ASI could achieve its goal or expand its reach. It could, let\u2019s say, shift its \u201cown electrons around in patterns and create all different kinds of outgoing waves\u201d\u00b9\u00b2\u2076\u200a\u2014\u200abut that\u2019s just what a human brain can think of\u200a\u2014\u200aASI would inevitably come up with something superior.\nThe prospect of ASI with hundreds of times human-level intelligence is, for now, not the core of our problem. By the time we get there, we will be encountering a world where ASI has been attained by buggy, 1.0 software\u200a\u2014\u200aa potentially faulty algorithm with immense power.\nThere are so many variables that it\u2019s completely impossible to predict what the consequences of AI Revolution will be. However, \u201cwhat we do know is that humans\u2019 utter dominance on this Earth suggests a clear rule: with intelligence comes power. This means an ASI, when we create it, will be the most powerful being in the history of life on Earth, and all living things, including humans, will be entirely at its whim\u200a\u2014\u200aand this might happen in the next few decades.\u201d\u00b9\u00b2\u2077\n\u201cIf ASI really does happen this century, and if the outcome of that is really as extreme\u200a\u2014\u200aand permanent\u200a\u2014\u200aas most experts think it will be, we have an enormous responsibility on our shoulders.\u201d\u00b9\u00b2\u2078 On the one hand, it\u2019s possible we\u2019ll develop ASI that\u2019s like a god in a box, bringing us a world of abundance and immortality. But on the other hand, it\u2019s very likely that we will create ASI that causes humanity to go extinct in a quick and trivial way.\n\u201cThat\u2019s why people who understand superintelligent AI call it the last invention we\u2019ll ever make\u200a\u2014\u200athe last challenge we\u2019ll ever face.\u201d\u00b9\u00b2\u2079 \u201cThis may be the most important race in a human history\u201d\u00b9\u00b3\u2070 So \u2192\n\nhttps://cdn-images-1.medium.com/max/2000/1*vXi80f_lbgSMINUE03Lz3g.jpeg\n\nThanks to Chloe Knox and Elizabeth Tarleton for editing help of this article.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T17:30:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 585128, + "json_metadata": "{\"tags\":[\"steemit\",\"bitcoin\",\"future\",\"science\",\"technology\"],\"image\":[\"https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\"]}", + "last_payout": "2016-09-03T06:34:54", + "last_update": "2016-08-03T17:30:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "steemit", + "percent_hbd": 10000, + "permlink": "ai-revolution-101", + "reward_weight": 7456, + "root_author": "a11at", + "root_permlink": "ai-revolution-101", + "title": "AI Revolution 101", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-03T20:20:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "20 Years of Machine Learning\n\nhttp://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\n\nWhen I enrolled in Computer Science in 1995, Data Science didn\u2019t exist yet, but a lot of the algorithms we are still using already did. And this is not just because of the return of the neural networks, but also because probably not that much has fundamentally changed since back then. At least it feels to me this way. Which is funny considering that starting this year or so AI seems to finally have gone mainstream.\n1995 sounds like an awful long time ago, before we had cloud computing, smartphones, or chatbots. But as I have learned these past years, it only feels like a long time ago if you haven\u2019t been there yourself. There is something about the continuation of the self which pastes everything together and although a lot has changed, the world didn\u2019t feel fundamentally different than it does today.\nNot even Computer Science was nowhere as mainstream as it was today, that came later, with the first dot com bubble around the year 2000. Some people even questioned my choice to study computer science at all, because apparently programming computers was supposed to become so easy no specialists are required anymore.\nActually, artificial intelligence was one of the main reasons for me to study computer science. The idea to use it as an constructive approach to understanding the human mind seemed intriguing to me. I went through the first two years of training, made sure I picked up enough math for whatever would lie ahead, and finally arrived in my first AI lectured held by Joachim Buhmann, back then professor at the University of Bonn (where Sebastian Thrun was just about to leave for the US).\nI would have to look up where in his lecture cycle I joined but he had two lectures on computer vision, one on pattern recognition (mostly from the old editions of the Duda & Hart book), and one in information theory (following closely the book by Cover & Thomas). The material was interesting enough, but also somewhat disappointing. As I now know, people stopped working on symbolic AI and instead stuck to more statistical approaches to learning, where learning essentially was reduced to the problem of picking the right function based on a finite amount of observations.\nThe computer vision lecture was even less about learning and relied more on explicit physical modelling to derive the right estimators, for example, to reconstruct motion from a video. The approach back then was much more biologically and physically motivated than nowadays. Neural networks existed, but everybody was pretty clear that they were just \u201canother kind of function approximators.\u201d\nEveryone with the exception of Rolf Eckmiller, another professor where I worked as a student. Eckmiller had build his whole lab around the premise that \u201cneural computation\u201d was somehow inherently better than \u201cconventional computation\u201d. This was back in the days when NIPS had full tracks devoted to studying the physiology and working mechanisms of neurons, and there were people who believed there is something fundamentally different happening in our brains, maybe on a quantum level, that gives rise to the human mind, and that this difference is a blocker for having truly intelligent machines.\nWhile Eckmiller was really good at selling his vision, most of his staff was thankfully much more down to earth. Maybe it is a very German thing, but everybody was pretty matter of fact about what these computational models could or couldn\u2019t do, and that has stuck with me throughout my studies.\nI graduated in October 2000 with a pretty farfetched master thesis trying to make a connection between learning and hard optimization problems, then started on my PhD thesis and stuck around in this area of research till 2015.\nWhile there had always been attempts to prove industry relevance, it was a pretty academic endeavor for a long while, and the community was pretty closed up. There were individual success stories, for example around handwritten character recognition, but many of the companies around machine learning failed. One of these companies I remember was called Beowulf Labs and one NIPS they went around recruiting people with a video which promised it to be the next \u201cmathtopia\u201d. In essence, this was the story of DeepMind, recruiting a bunch of excellent researchers and then hoping it will take off.\nThe whole community also revolved around one fashion to the next. One odd thing about machine learning as a whole is that there exist only a handfull of fundamentally different problems like classification, regression, clustering, and so on, but a whole zoo of approaches. It is not like in physics (I assume) or mathematics where some generally agreed upon unsolved hard problems exist whose solution would advance the state of the art. This means that progress is often done laterally, by replacing existing approaches with a new one, still solving the same problem in a different way. For example, first there were neural networks. Then support vector machines came, claiming to be better because the associated optimization problem is convex. Then there was boosting, random forests, and so on, till the return of neural networks. I remember that Chinese Restaurant Processes were \u201chot\u201d for two years, no idea what their significance is now.\nBig Data and Data Science\nThen there came Big Data and Data Science. Being still in academia at the time, it always felt to me as if this was definitely coming from the outside, possibly from companies like Google who had to actually deal with enormous amounts of data. Large scale learning always existed, for example for genomic data in bioinformatics, but one usually tried to solve problems by finding more efficient algorithms and approximations, not by parallelizing brute force.\nCompanies like Google finally proved that you can do something with massive amounts of data, and that finally changed the mainstream perception. Technologies like Hadoop and NoSQL also seemed very cool, skillfully marketing themselves as approaches so new, they wouldn\u2019t suffer from the technological limitations of existing systems.\nBut where did this leave the machine learning researchers? My impression always was that they were happy that they finally got some recognition, but they were also not happy about the way this happened. To understand this, one has to be aware that most ML reseachers aren\u2019t computer scientists or very good or interested in coding. Many come from physics, mathematics or other sciences, where their rigorous mathematical training was an excellent fit for the algorithm and modeling heavy approach central to machine learning.\nHadoop on the other hand was extremely technical. Written in Java, a language perceived as being excessively enterprise-y at the time, it felt awkward and clunky compared to the fluency and interactiveness of first Matlab and then Python. Even those who did code usually did so in C++, and to them Java felt slow and heavy, especially for numerical calculations and simulations.\nStill, there was no way around it, so they rebranded everything they did as Big Data, or began to stress, that Big Data only provides the infrastructure for large scale computations, but you need someone who \u201cknows what he is doing\u201d to make sense of the data.\nWhich is probably also not entirely wrong. In a way, I think this divide is still there. Python is definitely one if the languages of choice for doing data analysis, and technologies like Spark try to tap into that by providing Python bindings, whether it makes sense from a performance point of view or not.\nThe Return of Deep Learning\nEven before DeepDream, neural networks began making their return. Some people like Yann LeCun have always stuck to this approach, but maybe ten years ago, there where a few works which showed how to use layerwise pretraining and other tricks to train \u201cdeep\u201d networks, that is larger networks than one previously thought possible.\nThe thing is, in order to train neural networks, you evaluate it on your training examples and then adjust all of the weights to make the error a bit smaller. If one writes the gradient across all weights down, it naturally occurs that one starts in the last layer and then propagate the error back. Somehow, the understanding was that the information about the error got smaller and smaller from layer to layer and that made it hard to train networks with many layers.\nI\u2019m not sure that is still true, as far as I know, many people are just using backprop nowadays. What has definitely changed is the amount of available data, as well as the availability of tools and raw computing power.\nSo first there were a few papers sparking the interest in neural networks, then people started using them again, and successively achieved excellent results for a number of application areas. First in computer vision, then also for speech processing, and so on.\nI think the appeal here definitely is that you can have one approach for all. Why the hassle of understanding all those different approaches, which come from so many different backgrounds, when you can understand just one method and you are good to go. Also, neural networks have a nice modular structure, you can pick and put together different kinds of layers and architectures to adapt them to all kinds of problems.\nThen Google published that ingenious deep dream paper where they let a learned network generate some data, and we humans with our immediate readiness to read structure and attribute intelligence picked up quickly on this.\nI personally think they were surprised by how viral this went, but then decided the time is finally right to go all in on AI. So now Google is an \u201cAI first\u201d company and AI is gonna save the world, yes.\nThe Fundamental Problem Remains\nMany academics I have talked to are unhappy about the dominance of deep learning right now, because it is an approach which works well, maybe even too well, but doesn\u2019t bring us much closer to really understand how the human mind works.\nI also think the fundamental problem remains unsolved. How do we understand the world? How do we create new concepts? Deep learning stays an imitation on a behavioral level and while that may be enough for some, it isn\u2019t for me.\nAlso, I think it is dangerous to attribute too much intelligence to these systems. In raw numbers, they might work well enough, but when they fail they do so in ways that clearly show they operate in an entirely different fashion.\nWhile Google translate lets you skim the content of website in a foreign language, it is still abundantly clear that the system has no idea what it is doing.\nSometimes I feel like nobody cares, also because nobody gets hurt, right? But maybe it is still my German cultural background that would rather prefer we see things as they are, and take it from there.", + "cashout_time": "1969-12-31T23:59:59", + "category": "datascience", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T20:19:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 588402, + "json_metadata": "{\"tags\":[\"datascience\",\"deep\",\"learning\",\"artifical\",\"intelligence\"],\"image\":[\"http://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\"]}", + "last_payout": "2016-09-03T08:21:51", + "last_update": "2016-08-03T20:19:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "datascience", + "percent_hbd": 10000, + "permlink": "ai-s-road-to-the-mainstream", + "reward_weight": 1004, + "root_author": "a11at", + "root_permlink": "ai-s-road-to-the-mainstream", + "title": "AI\u2019s Road to the Mainstream", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T10:18:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "I write this not as one of the creators of Pokevision nor as player who has gone through the past few turbulent days in Pokemon Go; instead, I write this as a fan of Pokemon ever since I was 8 years old.\nMy family and I moved to the U.S. in 1998, when I was in the first grade. I didn\u2019t know much back then, and even less about popular culture. When my friends introduced their Gameboys and Pokemon Red/Blue to me, I couldn\u2019t help but feel envious. I begged and begged my parents to buy me a Gameboy and Pokemon Yellow. I remember that when I finally convinced them to buy me a Gameboy for $70, they also found out that they had to buy the actual game too for $30. This was foreign to them, and I got yelled at a little. $100 was a lot back then, I believe it was almost 10% of our family\u2019s income at the time. While this may seem irrelevant, even today, this amount of money is still not insignificant to many families in the US, not to mention the rest of the world.\nSo I got my game, and I played along with my friends for hundreds and hundreds of hours\u200a\u2014\u200atrying to figure out all the puzzles in the game, like how to get to Articuno; battling our favorite Pokemon to see who\u2019s stronger, train, repeat; and just trying to \u201ccatch em all.\u201d I\u2019ve spent countless hours in that video game with my friends, and it became my fondest memory of that time in my life. Pokemon is so ingrained within me, and I can\u2019t imagine myself being the only one. I\u2019m not the only one that vividly remembers how you beat the Elite Four, then go to the dungeons above Cerulean City and find Mewtwo for the first time, right?\nFast forward almost 20 years. I\u2019ve barely touched anything Pokemon-related since then. I still have my Pokemon cards, as I\u2019m sure many others do; but I haven\u2019t bothered to take a look at them for quite a while now. Pokemon is something I\u2019ll probably remember forever, but it\u2019s not something that\u2019s actively in my life\u200a\u2014\u200abecause it just doesn\u2019t fit. On top of work, friends, family, etc, there\u2019s just simply no time for Pokemon. It doesn\u2019t mesh with life any more as well as it used to when I was 8. You can\u2019t just bring up the topic of Pokemon and expect people to not give you an odd stare.\nEnter Pokemon Go\u200a\u2014\u200a2016.\nAdmittedly, I was never too excited about Pokemon Go. With that said, I did not have many expectations for it. Pokemon is important to me, but I\u200a\u2014\u200alike many others\u200a\u2014\u200ahave stuffed it in our little box of childhood things and never looked back.\nBut when I opened Pokemon Go for the first time, as cheesy as it sounds, it all came back to me. The nostalgia, the good feelings, and the happiness that Pokemon has always brought.\nThe \u201cHi, I\u2019m Professor Willow,\u201d \u201cPick your starter: Bulbasaur, Charmander, Squirtle,\u201d everything.\nAnd now I can catch them in real life? At first, I was dubious, but this became the most amazing, yet simple thing I\u2019ve seen in gaming. On social media, I saw that my friends and practically the whole world was talking about Pokemon Go, and the first thing I did was go out for a drive trying to \u201cbe the best.\u201d\nOne of the best parts? Apart from having to own a smartphone, the game was free. No $70, no $30, free. This opened up Pokemon to essentially everyone in the world. Pokemon now can be shared with anyone.\nAs the days unfolded, the world became captivated by Pokemon Go. People absolutely fell in love. We saw stories of elderly learning about Pikachu for the first time. My parents that could care less beyond who the yellow mouse looking thing was 20 years ago, started asking what the other Pokemon were. It was phenomenal.\nWe saw investment bankers asking their kids how to play Pokemon Go so that they can better connect with their younger clients. We saw the elderly become more fascinated in the world of Pokemon. We saw kids going out more, exercising, and being active in general just because of Pokemon Go. And most importantly, Justin Bieber finally got to feel what it\u2019s like to not be mobbed because everyone else was too busy trying to find a Gyarados to notice him.\nLocal stores integrated Pokemon Go in their services within days of the game\u2019s release. Hospitals started praising the health benefits of having Pokemon Go around its patients. People traveled hundreds and thousands of miles just to play it. Players explored parts of their cities that they never knew existed, and befriended strangers on their hunt for Pokemon. These stories of triumph were solely because of Pokemon Go. Pokemon was no longer just a game, it was part of a lifestyle.These stories shouldn\u2019t surprise any of us, we\u2019ve all been there to watch it unfold.\nYou\u2019ve simply captured all of our hearts with Pokemon Go, Niantic.\nBut then, you broke it all too quickly.\nWhen the game broke every few hours or so and wasted our lucky eggs, we stood patiently, excusing the huge growth and thus, strain on servers, as the cause. We were happy to wait it out with our fellow trainers knowing that it\u2019s worth waiting for. No one got mad.\nWhen the in-game tracking \u201cbroke,\u201d we all stood idly by, patiently, waiting for the game to update and fix.\nAlong came Pokevision. We made Pokevision not to \u201ccheat.\u201d We made it so that we can have a temporary relief to the in-game tracker that we were told was broken. John, at SDCC, you said that you guys were working on \u201cfixing the in-game tracker.\u201d This made everyone believe that this was coming sometime soon. We saw Pokevision as a stop gap to this\u200a\u2014\u200aand we had every intention in closing it down the minute that Pokemon Go\u2019s own tracker restored functionality.\nAs we waited more than 2 and a half weeks, the tracker was still not fixed. We noticed more and more of our friends leave the game; the only way I\u200a\u2014\u200aand I know experiences vary here\u200a\u2014\u200acould convince them to play was show them Pokevision, and say that \u201cHey, here\u2019s a temporary remedy to the tracking issue\u200a\u2014\u200awe\u2019re still optimistic that Pokemon Go\u2019s tracker will be fixed soon!\u201d\nNobody heralded Pokevision as a permanent, end-all solution; in fact, all the media coverage of Pokevision was littered with comments such as: \u201cPokevision is okay, but when the tracker is fixed in game, I\u2019m going to stop using this.\u201d\nFor the past 4 weeks. Every single one of your 80+ million players had so much faith. Take a look at Reddit, take a look at all these journalists who don\u2019t even play games (calling out Ryan Mac of Forbes), who became obsessed with Pokemon GO.\nAll of us were so eager for Pokemon Go to be \u201cfixed\u201d so that we can return to sharing Pokemon Go with our loved ones and friends. Remember when I said that before Pokemon Go came about, mentioning Pokemon Go would land you an odd stare? Pokemon Go reversed that\u200a\u2014\u200aPokemon Go became the conversation starter, the topic that everyone bonded over, the topic that guys used to pick up chicks with and not felt like a geeky nerd. That, and so much more, were solely because of Pokemon Go.\nAs almost 3 weeks have passed by, the in-game tracker is broken. People had a temporary solution in Pokevision, but we knew, and everyone else knew, this wouldn\u2019t be permanent. We didn\u2019t make Pokevision to spite you, Niantic\u200a\u2014\u200awe made it so that we can keep everyone playing while we wait patiently. We want to keep sharing our Pokemon stories with everyone else. How many people in the world have gotten the chance to have a serious conversation about POKEMON with their parents for the first time? How many of us got to talk about Pokemon like it was socially acceptable in any context? It\u2019s captured all of our hearts and imaginations, I cannot stress that enough.\nAfter 3 weeks though, we started seeing that you guys seemed to not want to talk to us (the players). Pokevision, at this time has grown to almost 50M unique users, and 11 million daily.\nLet that sink in for a second.\nHalf of the player base of Pokemon Go stopped by\u200a\u2014\u200aand they didn\u2019t do so to \u201ccheat.\u201d The game was simply too unbearable to play in its current state for many (note: many, not all). The main attraction wasn\u2019t that they got to have an advantage with Pokevision, the main attraction was that it allowed them to play Pokemon Go more. This is what everyone wants\u200a\u2014\u200ato play Pokemon Go more.\nWhen we closed Pokevision out of respect for your wishes, and at your requests\u2014 one of which came directly from you, John\u200a\u2014\u200awe trusted you guys fully in allowing the community to grow. I literally cannot express this more\u200a\u2014\u200awe just want to play the game. We can handle the bugs every now and then, but please at least tell us you guys care. Yes, Pokevision does give some advantages that may be TOO much; but is it all that bad? Pokemon has survived 20 years\u200a\u2014\u200aeven grown, I would say. And Pokemon Go made it even bigger. If the argument is that \u201cwell, if you catch a Snorlax you weren\u2019t supposed to find, but you found it on Pokevision, it might make you play less.\u201d If that was your argument, I\u2019d have to disagree! I\u2019ll still catch a damn Snorlax even if I have 20 of them. Just like how millions of us have caught probably over 100 pidgey\u2019s or zubat\u2019s each.\nPokemon is everlasting. The same 151 Pokemon have been around for 20 years. If 80M people downloaded and played Pokemon Go within a week (before it even released in multiple major countries) isn\u2019t an indication that no one can be sick of Pokemon, I don\u2019t know what is.\nAfter disabling the in-game tracker and Pokevision, the ratings on iOs and Android Google Play store went from 4.0 stars to 1.0\u20131.5. I am only one person, I admit that my sole opinion is not important, but what about the countless players begging for the game to be restored to its former state? I may be biased in saying that Pokevision being down had an impact on the amount of negative ratings, refund requests and outcry on social media\u200a\u2014\u200abut could it be true? Nothing has changed between the time the in-game tracker broke and Pokevision went down. Could it just be possible that the tracker\u200a\u2014\u200ano matter if Pokevision made it, or Niantic made it, is something that players desperately NEED\u200a\u2014\u200anot want, but NEED\u200a\u2014\u200ain order to play the game? Could it be possible that this is the very core fundamental feature that drives most players? I understand that there are some that want to walk around and stumble on a random Pokemon\u200a\u2014\u200ato each their own. But, 50M unique users and 11M daily and the ratings on your App (with no significant change in itself) are big indicators of this desire. Are customers always right? Especially if over half of them are looking for an outside fix just so they can enjoy something they love? People are naturally inquisitive, and in this case, they just want to play more and more, so they sought out something that helps them do so.\nPokemon Go is a social game. Its enjoyment depends on the players and their environment. If you take away the environment part (tracking) but keep the social part (players and their friends) intact, sure, people will still play; but would you not rather it be at its fullest potential?\nEveryone in the world wants to play Pokemon Go. It\u2019s been a huge part of everyone\u2019s lives already if it has not been clear enough. Look at the fans from Brazil\u200a\u2014\u200athey aren\u2019t spamming social media because they want to cause harm\u200a\u2014\u200athey just want to play the game. Just as I saw my friends play Pokemon many years ago, and wanted to be a part of it\u200a\u2014\u200athese guys are doing the same.\nThey just want to be with the rest of the world. Sadly, by the time they join, Pokemon Go may not be the game it was weeks ago.\nLastly, if money is an issue for you, Niantic, I must ask\u200a\u2014\u200awhy? You\u2019ve captivated the world and introduced Pokemon to people that would have never touched it had it not been for Pokemon Go. To me, that\u2019s priceless.\nYou won\u2019t be remembered for the profits you made, you\u2019ll be remembered for the world you changed through Pokemon and all of the lives you made better. Just look at all the stories\u200a\u2014\u200athere\u2019s plenty. So when millions of players are expressing their feedback to changes, is it not worth it to listen to what they have to say?\nIn its first few weeks, Pokemon Go has already enhanced millions of lives in unimaginable ways. It has so much potential to continue changing the world. Wouldn\u2019t you, Niantic, want to see just how much good you can do with Pokemon Go\u200a\u2014\u200ais that not more valuable than anything else? I sure think so.\nWarmly,\nYang", + "cashout_time": "1969-12-31T23:59:59", + "category": "pokemon", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T18:38:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 586361, + "json_metadata": "{\"tags\":[\"pokemon\",\"gaming\",\"steemit\",\"bitcoin\",\"decent\"]}", + "last_payout": "2016-09-03T09:22:48", + "last_update": "2016-08-03T18:38:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "pokemon", + "percent_hbd": 10000, + "permlink": "an-open-letter-to-john-hanke-and-niantic", + "reward_weight": 2276, + "root_author": "a11at", + "root_permlink": "an-open-letter-to-john-hanke-and-niantic", + "title": "An Open Letter to John Hanke & Niantic", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T12:44:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Taking another foray into the field of artificial intelligence (AI) and machine learning as well as to make its digital assistant Siri better, Apple has acquired Seattle-based machine learning startup Turi for nearly $200 million.\n\nhttp://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\n\nAccording to a GeekWire report, the move is set to increase Apple's presence in the Seattle region where the tech giant has been building an engineering outpost for the past two years. \"Apple buys smaller technology companies from time to time, and we generally do not discuss our purpose or plans,\" said Apple in a statement given to GeekWire.\n\nhttp://avtosalontochka.ru/uploads/posts/2015-09/1441818909_eppl1.jpg\n\nTuri offers tools that are meant to let developers easily scale machine learning applications. The startup is expected to remain in the Seattle region and continue to grow as Apple builds out further expertise in data science, artificial intelligence and machine learning, the report added.\n\nhttp://www.2fons.ru/pic/201407/2560x1600/2fons.ru-33604.jpg\n\nThe Cupertino-based company has recently bought some machine learning and AI startups like VocalIQ and Perceptio and facial recognition startup Emotient, among others. Apple has recently been making a push into artificial intelligence through Siri personal assistant and related technologies.\n\nhttp://www.fonstola.ru/pic/201111/2560x1440/fonstola.ru-49021.jpg", + "cashout_time": "1969-12-31T23:59:59", + "category": "apple", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-06T12:44:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 643787, + "json_metadata": "{\"tags\":[\"apple\",\"turi\",\"siri\",\"startup\"],\"image\":[\"http://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\"]}", + "last_payout": "2016-09-06T02:21:33", + "last_update": "2016-08-06T12:44:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "apple", + "percent_hbd": 10000, + "permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "reward_weight": 3638, + "root_author": "a11at", + "root_permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "title": "APPLE BUYS MACHINE LEARNING STARTUP TURI TO MAKE SIRI BETTER", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-02T06:08:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Owner's review\n\nhttps://h-a.d-cd.net/905320as-960.jpg\n\n\u4e0d\u8981\u7d27, \u8fd9 \u662f \u4f60 \u7684 \u8f66 \u662f \u4ec0\u4e48, \u4e3b\u8981 \u7684 \u4e1c\u897f \u2014 \u5728 \u70e4\u67b6 \u4e0a \u7684 \u56db\u4e2a \u73af \u2026\n(\"no matter what you have a car, the main thing \u2014 it is four rings on the grill \u2026\" \u2014 Chinese proverb)\n\nhttps://b-a.d-cd.net/3dee672s-960.jpg\n\nAfter a spontaneous and quick sale A4 DTM choice naturally fell exclusively on the Audi, but rather on RSQ3 FL, which is characterized by an enviable installed power thanks to the legendary 2,5 TFSI 340 hp in combination with a rapid-S-tronic!\nNeedless to say that the acceleration is 4.2 seconds. up to 100 km. at one o'clock!\n(measurements of the journal -http: //www.autobild.de/artikel/a\u2026-45-amg-test-5702529.html)\n\nhttps://a-a.d-cd.net/2a96672s-960.jpg\n\nRivals have this \"baby\" is not so much, and all of them from a large class \u2026\n\nhttps://h-a.d-cd.net/8f6e672s-960.jpg\n\nAnd the choice has been reduced mainly to the 3rd automobiles:\n-SQ5 -otpal Due to the fact that the new model will be released soon, and the heavier and slower RSQ3;\n\n-RS3 -otpal Because of the small clearance, and especially do not want to wait;\n\n-RSQ3-PLUS was that the car's high, restyled and fast!\n\nhttps://f-a.d-cd.net/1fa1672s-960.jpg\n\nColor was not discussed-it must be very blue car -Sepang Blue!\nDiscs for the Rotor -The most RSQ3, and I like them most! Cool!\nAs to differences from dorestaylom then Restayl differs, in addition to external visual features, lower vehicle weight by 50 kg. and reprogram the engine, which now produces an impressive 340 hp!\nIn real life, the car looks much more beautiful and harmonious than the picture!\nThe car is perfectly controlled (for its use) and it is fine tailored inside: another from Audi, and do not wait \u2026\nThis Audi, is emotion, speed and drive! So, for what we love is true thoroughbred cars, to which undoubtedly belongs RS Series from quattro GmbH!\n\nhttps://h-a.d-cd.net/196e672s-960.jpg\n\nIf the test drive did not help much to understand how the car rulitsya, a little closer to meet him RS surprises with its responsiveness and quite understandable and predictable control!\n\nhttps://d-a.d-cd.net/ee61672s-960.jpg\n\nIt goes very cheerfully!\n\nWhat is very pleased, is the fact that after the \"stool\" A4 DTM on RSQ3 20 drives a smooth ride!\nThe car was in another city at the OD, a thousand kilometers. from the house, but because the expectation of a few days has been painfully slow.\nFor photos not scold -Made in haste night, anxious to put \u2026\n\nThen there will be photo shoot!\n\nFeatures and Specs\n\nEngine 2.5 gasoline (340 h.p.)\nRobotic\nall-wheel\nPurchased in 2015\nAudi RS Q3 in production since 2013", + "cashout_time": "1969-12-31T23:59:59", + "category": "audi", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-05T21:01:03", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 634545, + "json_metadata": "{\"tags\":[\"audi\",\"car\"],\"image\":[\"https://h-a.d-cd.net/905320as-960.jpg\"]}", + "last_payout": "2016-09-05T10:11:36", + "last_update": "2016-08-05T21:01:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "audi", + "percent_hbd": 10000, + "permlink": "audi-rs-q3-fl", + "reward_weight": 1915, + "root_author": "a11at", + "root_permlink": "audi-rs-q3-fl", + "title": "Audi RS Q3 FL", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T21:50:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Bitcoin, a Florida judge says, is not real money. Ironically, that could provide a boost to use of the crypto-currency which has remained in the shadows of the financial system.\n\nThe July 22 ruling by Miami-Dade Circuit Judge Teresa Pooler means that no specific license is needed to buy and sell bitcoins.\nThe judge dismissed a case against Michel Espinoza, who had faced money laundering and other criminal charges for attempting to sell $1,500 worth of bitcoins to an undercover agent who told the defendant he was going to use the virtual money to buy stolen credit card numbers.\nEspinoza's lawyer Rene Palomino said the judge acknowledged that it was not illegal to sell one's property and ruled that this did not constitute running an unauthorized financial service.\n\"He was selling his own personal bitcoins,\" Palomino said. \"This decision clears the way for you to do that in the state of the Florida without a money transmitting license.\"\nIn her ruling, Pooler said, \"this court is unwilling to punish a man for selling his property to another, when his actions fall under a statute that is so vaguely written that even legal professionals have difficulty finding a singular meaning.\"\n\nhttp://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\n\nShe added that \"this court is not an expert in economics,\" but that bitcoin \"has a long way to go before it is the equivalent of money.\"\nBitcoin, whose origins remain a mystery, is a virtual currency that is created from computer code and is not backed by any government. Advocates say this makes it an efficient alternative to traditional currencies because it is not subject to the whims of a state that may devalue its money to cut its debt, for example.\nBitcoins can be exchanged for goods and services, provided another party is willing to accept them, but until now they been used mostly for shady transactions or to buy illegal goods and services on the \"dark\" web.\nBitcoin was launched in 2009 as a bit of software written under the Japanese-sounding name Satoshi Nakamoto. This year Australian programmer Craig Wright claimed to be the author but failed to convince the broader bitcoin community.\nIn some areas of the United States bitcoin is accepted in stores, restaurants and online transactions, but it is illegal in some countries, notably France and China.\nIt is gaining ground in countries with high inflation such as Argentina and Venezuela.\nBut bitcoin values can be volatile. Over the past week its value slumped 20 percent in a day, then recouped most losses, after news that a Hong Kong bitcoin exchange had been hacked with some $65 million missing.\nImpact across US, world\nArthur Long, a lawyer specializing in the sector with the New York firm Gibson Dunn, said the July court ruling is a small victory for the virtual currency but that it's not clear if the interpretation will be the same in other US states or at the federal level.\n\"It may have an effect as some states are trying to use existing money transmitting statutes to regulate certain transactions in bitcoin,\" Long told AFP.\nCharles Evans, professor of finance at Barry University, said the ruling \"absolutely is going to provide some guidance in other courts\" and could potentially be used as a precedent in other countries to avoid the stigma associated with bitcoin use.\nBitcoins can store value and hedge against inflation, without being considered a monetary unit, according to Evans, who testified as an expert witness in the Florida trial.\n\"It can be used as an exchange,\" he said, and may be considered a commodity which can be used for bartering like fish or tobacco, for example.\nEvans noted that \"those who are not yet in the bitcoin community will be put on notice: as long as they organize their business in a particular way they can avoid the law.\"\nBut he added that \"people who are engaged in illegal activities will continue to do what they are going to do because they are criminals.\"", + "cashout_time": "1969-12-31T23:59:59", + "category": "bitcoin", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T21:50:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 651155, + "json_metadata": "{\"tags\":[\"bitcoin\",\"world\",\"country\",\"steemit\"],\"image\":[\"http://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\"]}", + "last_payout": "2016-09-06T09:52:18", + "last_update": "2016-08-06T21:50:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 5, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_hbd": 10000, + "permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "reward_weight": 1937, + "root_author": "a11at", + "root_permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "title": "Bitcoin not money, judge rules in victory for backers", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_root.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root.pat.json index 9d7993a7..8d50c46d 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 36906, - "author": "gtg", - "permlink": "hello-world", - "category": "introduceyourself", - "parent_author": "", - "parent_permlink": "introduceyourself", - "title": "Hello, World!", - "body": "I'm Gandalf.\nThat's not my real name, but even my mom saved my number as ***Gandalf*** in her phone contact list.\nThat counts, right?\nI'm an IT Wizard, system admin, happily married, owner of a cat.\nOwned by a cat.\n\n![Nyunya](https://grey.house/img/niunia.jpg)\n\n**Nyunya** *(The Cat)* wants to watch everything I do, that's just her way of lending a helping paw. I’m not sure if she is so fascinated by what I do or she wants to make sure I do it right.\n\nWhy am I here? What is my motivation?\nNot much different from that guiding my cat:\nCuriosity and to be a witness (node?) of what is emerging here.\n\nMay the STEEM be with you!", - "json_metadata": "{\"tags\":[\"introduceyourself\",\"cats\"],\"image\":[\"https://grey.house/img/niunia.jpg\"]}", - "last_update": "2016-07-10T12:39:42", - "created": "2016-07-03T16:35:03", - "active": "2016-07-10T12:39:42", - "last_payout": "2016-08-13T21:04:45", - "depth": 0, - "children": 3, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "254288", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "16244", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1135218, - "net_votes": 44, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 36961, - "author": "trogdor", - "permlink": "re-gtg-hello-world-20160703t175141501z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "hello-world", - "title": "", - "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-07-03T17:51:48", - "created": "2016-07-03T17:51:48", - "active": "2016-07-03T17:51:48", - "last_payout": "2016-08-13T21:04:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 37187, - "author": "amartinezque", - "permlink": "re-gtg-hello-world-20160703t224527020z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "hello-world", - "title": "", - "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-07-03T22:45:27", - "created": "2016-07-03T22:45:27", - "active": "2016-07-03T22:45:27", - "last_payout": "2016-08-13T21:04:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 38471, - "author": "edu-lopov", - "permlink": "re-gtg-hello-world-20160704t182251522z", - "category": "introduceyourself", - "parent_author": "gtg", - "parent_permlink": "hello-world", - "title": "", - "body": "Welcome to Steemit Gandalf!", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_update": "2016-07-04T18:22:51", - "created": "2016-07-04T18:22:51", - "active": "2016-07-04T18:22:51", - "last_payout": "2016-08-13T21:04:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "gtg", - "root_permlink": "hello-world", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 36909, - "author": "vadimberkut8", - "permlink": "excursion-to-the-exclusion-zone-chernobyl", - "category": "photography", - "parent_author": "", - "parent_permlink": "photography", - "title": "Excursion to the exclusion zone (Chernobyl)", - "body": "The Chernobyl was a catastrophic nuclear accident that occurred on 26 April 1986 at the Chernobyl Nuclear Power Plant in the city of Pripyat, that located in the Ukrainian Soviet Socialist Republic of the Soviet Union (USSR). An explosion and fire released large quantities of radioactive particles into the atmosphere, which spread over much of the western USSR and Europe.\n\n#### Somewhere in Prypiat... Radioactive waste storage.\n![](https://www.chernobyl-tour.com/uploads/photos/show/[2]_18_Oct_14/1001_rad_stor_p.jpg)\n\nIn Chernobyl live about 2,5-3 thousand employees of the Chernobyl Nuclear Power Plant.\n\nIn the city center is a stele dedicated to the tragedy, and immediately after it goes a long alley with tablets on which were written the names of villages were evacuated from the exclusion zone - more than one hundred thousand people.\n![](https://pp.vk.me/c623223/v623223264/28288/hWmrD88q4aU.jpg)\n\n#### Exhibition of equipment, which has been involved in the elimination of accident consequences.\n![](http://static36.cmtt.ru/paper-media/56/50/95/92416d07dc2c1b.jpg)\n\n#### Former kindergarten.\n![](http://static35.cmtt.ru/paper-media/68/37/0b/0c88a0c6291c8b.jpg)\n\nDo not put into words the emotions when the dosimeter begins beeping: you realize that something is wrong, but do not feel the threat, because it is invisible.\n![](http://static32.cmtt.ru/paper-media/85/d1/ab/14ca1a4510e4fe.jpg)\n\n#### Cooling tower - one of the most impressive objects\n![](https://pp.vk.me/c623223/v623223264/27e23/u5HHb3qRWC4.jpg)\n\n#### The radiation background is high enough\n![](http://static39.cmtt.ru/paper-media/2c/14/f8/a64255679c19c8.jpg)\n\n### Pripyat\n![](http://static37.cmtt.ru/paper-media/47/71/57/bb8cb4a3959226.jpg)\n\n![](https://pp.vk.me/c623223/v623223264/27fc1/gcUDCiOS8jU.jpg)\n\n![](https://pp.vk.me/c623223/v623223264/28012/lg3QJoVvT3c.jpg)\n\n![](http://static30.cmtt.ru/paper-media/02/ee/60/0ac975241e1382.jpg)\n\n![](http://static34.cmtt.ru/paper-media/63/10/b7/b93fa45f0fb84a.jpg)\n\nThis city is like a pressure on you, squeeze all the juice and energy.\n\nTours to Chernobyl and photos of excursions - https://www.chernobyl-tour.com/index.php", - "json_metadata": "{\"tags\":[\"photography\"],\"links\":[\"https://www.chernobyl-tour.com/uploads/photos/show/\"]}", - "last_update": "2016-07-03T16:37:33", - "created": "2016-07-03T16:37:33", - "active": "2016-08-05T11:31:21", - "last_payout": "2016-08-13T15:09:30", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "64", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "14", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 289, - "net_votes": 16, - "root_author": "vadimberkut8", - "root_permlink": "excursion-to-the-exclusion-zone-chernobyl", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 460983, - "author": "ori", - "permlink": "re-excursion-to-the-exclusion-zone-chernobyl", - "category": "photography", - "parent_author": "vadimberkut8", - "parent_permlink": "excursion-to-the-exclusion-zone-chernobyl", - "title": "", - "body": "Upvoted you", - "json_metadata": "{}", - "last_update": "2016-08-05T11:31:21", - "created": "2016-08-05T11:31:21", - "active": "2016-08-05T11:31:21", - "last_payout": "2016-08-13T15:09:30", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "102", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "33", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 56, - "net_votes": 1, - "root_author": "vadimberkut8", - "root_permlink": "excursion-to-the-exclusion-zone-chernobyl", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 36927, - "author": "acidsun", - "permlink": "wwe-champion-the-great-khali-for-ambuja-cement", - "category": "video", - "parent_author": "", - "parent_permlink": "video", - "title": "WWE champion the Great Khali for Ambuja Cement", - "body": "https://www.youtube.com/watch?v=ByoKOG3Y-bI", - "json_metadata": "{\"tags\":[\"video\"],\"links\":[\"https://www.youtube.com/watch?v=ByoKOG3Y-bI\"]}", - "last_update": "2016-07-03T17:03:15", - "created": "2016-07-03T17:03:15", - "active": "2016-08-05T11:32:00", - "last_payout": "2016-08-05T19:25:48", - "depth": 0, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 5, - "root_author": "acidsun", - "root_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 460994, - "author": "ori", - "permlink": "re-wwe-champion-the-great-khali-for-ambuja-cement", - "category": "video", - "parent_author": "acidsun", - "parent_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", - "title": "", - "body": "Upvoted you", - "json_metadata": "{}", - "last_update": "2016-08-05T11:32:00", - "created": "2016-08-05T11:32:00", - "active": "2016-08-05T11:32:00", - "last_payout": "2016-08-05T19:25:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "acidsun", - "root_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 36931, - "author": "bloggersclub", - "permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", - "category": "ecosystem", - "parent_author": "", - "parent_permlink": "ecosystem", - "title": "The Decentralized Conglomerate: Digital Leadership, Institutional Memory, and Semi-Autonomous Organizations", - "body": "It is with great pleasure I am introducing to you the world’s first conglomerate where ecosystems are represented by digital tokens and their unique qualities each complementing one another, all of them with one common denominator – they are all powered by the blockchain. A transparent, open and trustless powerhouse of information governed by no one and everyone with each participant in control of their own account. It is a symbiosis of perfection, trust, speed and transparency. Welcome to the future. \n\nThe below whitepaper has been created to support and substantiate the values presented in real time usecases via the Danish company Crypto Coins Enterprise Denmark ApS (CCEDK) as the Brain of the decentralized conglomerate, OpenLedger as the Platform, and the ecosystems OBITS, BTSR and ICOO as the body so far of content core ecosystems supporting eachother with many more ecosystems to come. As examples I wish to name the www.BitLand.world Cadastral and the Sollywood TV Solcerts expected to be added in the near future once able to actively particpate in complemting eachother across the ecosystems.\n\n\"The Decentralized Conglomerate represents the new paradigm of organizational operations, by applying the theoretical construct of digital leadership to the conceptual design of the DC ecosystems\"\n\nYou can have more information about CCEDK on their website: https://www.ccedk.com\n\nYours sincerely\nRonny Boesing\nCEO\nCCEDK Aps\n\nThe Decentralized Conglomerate: Digital Leadership, Institutional Memory, and Semi-Autonomous Organizations\n\n\nPrepared by L. Christopher Bates in co operation with https://www.ccedk.com \nVersion 1.0\n\nContents\nA Brief History of Decentralization\t3\nThe Death of Keynesian theory: Proto-Dynamism is born\t8\nThe Power of Crowdfunding\t11\nMandate of Heaven Dilemna\t17\nReferences\t23\n\n\nA Brief History of Decentralization\n\n\nA leader is best when people barely know he exists, when his work is done, his aim fulfilled, they will say: we did it ourselves.\n~Lao Tzu~\n\nDecentralization as an approach to organizing human teams and capital is nearly as old as written history itself. By the very nature of “decentralization”, it can only take place after “centralization” has occurred. Going back 4,000 years to the earliest days in China when divine right was still part of determining leadership, one can find deliberate implementations of decentralization in the application of managing how people operate. The common marriage of religion and bureaucratic hierarchies established environments in which distributed authority or fully decentralized authority became common. In times when information could not be relayed with the speed of modern day communications, having a unified goal inherently became more difficult as an empire expanded. \n\nEven beyond the nuances added by having mercenaries and slaves as part of an empire’s army, the speed of communication made large scale coordination extremely difficult over long distances. In historical examples, the larger an empire became, the rulers were forced to become either more despotic or more democratic. There was no stagnation in responsibility. As territories expanded, decisions inherently affected more populations. As populations became more diverse, it was inherently more difficult to find common ground in political agendas.\nTo understand the ebb and flow between centralization and decentralization, it is important to get a brief context of the emergence of dynasties in China. The current generally accepted date for the emergence of the first actual villages is placed around 5000 BCE. As the exact date cannot be determined, the approximate time frame gives a relative starting point to show the transition from scattered tribal communities to an actual empire that begins a line of dynasties to perpetually delineate power for a continuous historical record that continued into modern times.\nThe Xia Dynasty is accepted to be the first true empire that arose in China. As a marking point for the transition between the Stone Age and the Bronze Age, the major advances in development created the foundation for the long line of technological discoveries that were yet to come. One of the major accomplishments of the Xia Dynasty was the attempts to control the flooding of the Yellow River by Yu the Great. After Yu managed to get the Yellow River under control, he turned his attention to uniting the Sanmiao tribes. His feats and charisma allowed him to inspire people to follow him as a ruler, and his rule is not known to have been despotic in nature. He is credited with establishing the system of succession and in turn the very concept of a dynasty. In establishing a feudal system that articulated a ruling class and a working class, the innate power struggles of having an oppressed class would forever become a part of the changing political landscape.\n\nIn many ways, the early feudal states were examples of the beginnings of decentralization. As the first Dynasty united the tribes, one of the initial acts of necessity was dividing authority and defining roles. While the works on “Division of Labor” did not come until much later in the West, the beginnings of dividing labor for the sake of efficient production and management of capital were flourishing in the first Dynasties. As the power gradually became more unified over the first thousand years of dynasties in China, what is known as the “Mandate of Heaven” came to be the officially recognized union of Divine Right of Leadership and the role of making law. The inclusion of “Divine Right” meant that the government no longer held authority over choosing the leader in the presence of “Divinity”. This provision in the approach to passing down the rule allowed for many nefarious actors to manipulate their way into positions of leadership, but it did not hinder the overall development of the nation.\n\nAs the civilization grew and culture expanded, technology quickly accelerated, and many of the most famous philosophers and poets emerged from this period in Chinese history. It was at the end of the Zhou Dynasty that government became decentralized as the capitol city moved and a period of warring states began. The states were moving towards wanting sovereign rule for their individual states, but the rulers within the individual states wanted to claim the Mandate of Heaven. It was when Ying Zheng successfully defeated the other states and united them under his rule to proclaim himself the ‘First Emperor’ of China. One of his first acts as Emperor was to tear down the walls that separated the individual states, and start to build a wall surrounding all of the territories. While the wall does not remain intact today, the Great Wall of China is what remains of what was once a 3,000 mile long wall. As Ying - now known as Shi Huangti- conquered more lands, he became increasingly despotic with his rule. As the empire moved away from decentralization, the unified front allowed for major advancements to be made in building projects and military operations; but on the other hand the increased need to restrict information and free speech was a side effect of the increased authoritarian rule. It was not long after Shi Huangti’s death that the empire collapsed due to mismanagement by unfit rulers appointed solely because of nepotism. Once again, the dissolution of a centralized authority caused the territorial control to decentralize and inherently cause more power struggles.\nAs the Chinese territories expanded, and the dynasties changed names, the ebb and flow between decentralization and centralization was a continuous evolution that formed a middle ground between extremes. Any time leadership drifted too far in one direction, whether towards complete decentralization or complete centralization, the natural equilibrium became a mix of leadership styles, rather than a complete implementation of one ideology. Even into modern government application, what is often misunderstood as completely “Statist” or “Communist” actually has a complex mix of centralization and decentralization in the actual organization of government entities.\n\nTo get a better picture of why the centralized government must operate with some autonomy allowed within the economy, it is necessary to understand the organization of territories. There are three basic classifications of government oversight over a territory: province, county, and township. A further delineation of responsibilities separate prefectures under the jurisdiction of provinces, and villages are relegated to the authority of townships. There are twenty-two provinces, five autonomic regions, four municipalities, and two special administrative groups. China also has five autonomic regions that have equal status as provinces. The reasoning is that these autonomic regions are the homes of the majority of the country’s minority groups In the West, these regions may be seen as annexed states that are “under the control” of the Chinese government, when in reality they operate with relative autonomy. \n\nThe two special administrative regions are Hong Kong and Macao, which grant them special protections. These regions have their own currencies, passports, and judicial systems. While these separations, classifications, and nuances may be hard for a Westerner to initially grasp, the cultural approach to management and division of labor has been fairly consistent in China in its capacity to distribute power and authority seeking efficiency and a unified goal. In that regard, the problem of an individual looking to overthrow the leader and usurp the head of state role has also been a consistent problem for the duration of Chinese history. The “Byzantine General’s Problem” effectively originated 2500 years before the fall of the Byzantine empire. \n\nIn understanding the true nature of decentralization as a natural counterbalance to centralization, one must create a new paradigm that recognizes meritocracy as part of the process of establishing a leader or a system without a leader. In a true meritocracy, the presence of a leader is irrelevant to results. In this situation, we can establish the “Mandate of Heaven Dilemma”. This new problem becomes an issue of recognizing that if meritocracy is to be recognized, that arbitrary timing of leader or policy changes do not truly serve meritocracy. In the MoHD, a leader can be replaced at any time with a “better” leader if either the new leader proves herself worthy, or the crowd and populace choose to recognize the new authority. In either scenario, the intentions of the new leader are irrelevant. In this MoHD, the meritocracy will establish a paradigm in which the leadership position goes to the most effective and efficient leader with no regards to morality or ethics. \n\nIn many ways, the embodiment of what is desired to be the ideal “free market” would be the MoHD playing out on the macro and micro scale. If local leaders emerged based on merit, and were constantly at risk of being replaced by a “better” official, the evolution of the macro and micro systems would be accelerated. It is in understanding the benefits of centralization and decentralization in addition to the downfalls of both that a new paradigm can emerge to make more effective and efficient use of capital than has been previously known in human history. While Keynesian theory sprang forth in a post-industrialized world in an attempt to expound on new methods of scaling economies, it has become clear in modern times that those theories were formed heavily in favor of the oligarchies that existed in the 1800’s and turn of the 20th century. Many post-Keynesian theories have been articulated, but mainstream academia continues to cling to Keynesian theory as the dominant approach to forming economies. \n \nThe Death of Keynesian theory: Proto-Dynamism is born \nAs we see the global markets in turmoil and the European Union on the verge of collapse while Britain postures to exit, it is clear that a new paradigm of capital distribution, production, and management must emerge. Keynesian theory has produced a global market bubble that has seemingly popped, as the news of Britain Leaving the EU wiped $127 billion off the global markets in a single day. In light of the MoHD that has been presented, a new paradigm that emerges and proves better use of capital can either be adopted because it has proven it is better, the populace chooses to recognize it, or in a direct confrontation with the old paradigm it emerges with more resources and capital. In many ways, the concerted media attack on digital currencies and Bitcoin have represented the old paradigm’s first line of defense in attempting to preserve the legacy systems that currently control global capital distribution. \n\nIn presenting the MoHD, what is occurring in modern times is the merit of the old paradigm is being directly challenged. Whether one points at Bitcoin, Occupy Wall Street, the Green Movement in Iran, or the Gezi protests in Istanbul, the old paradigms that control the global markets are being challenged individually. In many ways, the Keynesian special interest groups have actively worked to compartmentalize the uprisings to ensure that the timing of individual revolts does not snowball into a global uprising against Keynesian theory. In an example, the media blacked out the Green movement in Iran, blacked out the Wisconsin protests that were the pre-cursor to Occupy Wall Street, and is currently blacking out the protests in France that are happening in June of 2016. The global mainstream media appears to actively compartmentalize these revolutions in individual contexts, rather than attempt to link them as a revolution against authoritarianism and the remnants of colonialism in modern times. \nWhile this article is not meant to speculate on conspiracy theories, what is meant to be presented is a post-Keynesian approach to capital distribution and management. Taking the thermo-economic approach to capital production and management, an organization must attempt to become a dynamo, which in physics is a machine that takes one source of energy and converts it to output energy to a receptor. The more efficient dynamos can surpass 100% efficiency and start to produce more energy than they take in, but these are theoretical dynamos based in quantum theory that are not yet attainable. \n \nIn the context of thermo-economics, creating a dynamo is an attempt to combine physical infrastructure, political management, and capital management into the most efficient economic machine possible. The machine only pays attention to efficiency, and pays no regard to the cogs; meaning that special interest groups have no meaning in the context of an economic dynamo. In this context, maintaining ethical standards and moral common ground becomes a function of the system; digital direct democracy.\n\nIf one looks at the Crypto Rush objectively, there have been more technological developments within the past six months than there were for the previous three years. This is perfectly in line with the technology associated with the gold rush, as the first miners were able to easily make money with pick-axes and panhandling, but as the gold became scarce, hydraulic drills and tech more advanced tech became necessary to mine the ore.\nJust the same with the influx of pyrite or “fool’s gold” following the gold rush, the “fool’s alts” have made an entire community jaded to the point of throwing out the word “scam” as if it were a common salutation. In the wild west of Cryptoland, the harsh realities of economic Darwinism coupled with the fantastic possibilities of thermo-economics have created a machine which I will call a “proto-dynamo”.\n\nIt is important to establish the “Proto-dynamo” as concept that represents an entirely new paradigm of economic infrastructure. The concept alludes to the “dynamo” which is a machine that uses opposing magnetic forces to efficiently produce/convert energy. The principle behind the dynamo is to use opposing forces within the same machine to get a consolidated output of energy. If the new paradigm of “protodynamism” can be represented by an electrical generator, the old paradigm of Keynesian theory can be represented by a meat grinder in which ten pounds of product goes in one side, and six ounces of tasteless sausage comes out the funnel possibly tainted with formaldehyde or some random pesticide that is unpronounceable.\n\nAs Marshall McLuhan predicted with his “global village” theory, the growth of mass media has quickly made information extremely accessible to the average individual. In tandem with an infrastructure that allows crowd-funding to bring ideas to fruition as fast as possible, progress of technology that is useful to society will be able to hit the most efficient point that has ever been recorded.\n\nThe Arab Spring has been an actual revolution fueled by technology and information sharing that would not have been possible without the ability to quickly share strings of 140 characters. With the ability to share information comes the ability to have shared experiences. What have been forecasted as digital tribes by Mcluhan are the logical extensions of a globe trying to break free of the archaic and imperialist paradigm of nation-states.\n \n \nThe Power of Crowdfunding\n\n One of the major benefits to having a Decentralized Conglomerate structure is the ability for capital to be accrued and used towards a given project. This means that organizations that are partnered into a DC have less friction between their organizations to slow down the movement of capital or take too much of the capital in the form of fees and overhead. In the context of multiple businesses working in complimentary industries, the capacity for organizations to pool money towards development has the potential to accelerate the speed at which all participants reach their desired outcomes. \n\nA traditional conglomerate is made up of a parent corporation with subsidiary companies. As well, there are shareholders that have a stake in the company. In some cases, there will be a board of directors in addition to the executive management. When it comes to leadership, the conglomerates are usually top-down hierarchies with the vision and direction coming from the leaders at the top. While the system is not democratic, a singular leader or group of leaders with the capacity to make executive decisions makes executing projects much simpler than having a completely decentralized operation. While there are varying degrees of oversight, generally the top-down structure is the standard for traditional conglomerates. \n \nSome levels of decentralization have taken place in larger corporations, as they have had to diversify to meet market demands. In these cases, the decentralization usually is implemented to give the subsidiary companies more autonomy, but in the context of the conglomerate, the parent company’s vision is still the guiding principle. Many companies have seen success in increasing their output or market share when moving towards a more decentralized management system. In this regard, “decentralization” will always imply that there was a higher level of centralization than previously. \n\nAs with the Chinese Dynasties, and in effect every other major empire or nation-state that has existed, the interplay between centralization and decentralization is a matter of the economic situation needing direct intervention or not; and further if economic intervention is ever needed, how many people must be involved in the decision making process. The more people are involved in a decision making process, by default the more time a decision takes. As well, when many people are affected by a decision, the smaller the number of people making the decision, the more likely a revolt against the outcome or the governing body will take place. It is in these extremes that the traditional conglomerate has major benefits from leadership, and major impediments if the leadership is either too slow or too draconian against the people’s will.\n\nCrowdfunding is anticipated to surpass venture capital in total global investments into the Fintech industry in 2016. As crowdfunding levels reached over $34 billion in total funds raised in 2015, crowdfunding as an industry is emerging in its own right. As laws are changing to keep up with digital currencies and assets, the landscape for raising funds has been forever changed as raising funds with or without equity shares has become accessible to anyone with Internet access and capital. The reality of the quickly changing market demands necessitate an agile organization that can react to market forces rather than attempting to resist the market in pursuit of following the course of what had been planned with no room for adjustment.\n\nWith the advent of Decentralized Autonomous Organizations (DAOs), the entire process of turning an idea into a tangible item gets taken out of the hands of corporations, and the development becomes an intimate exchange between the crowd and the actual developers. When an idea is presented to the crowd, the ideas that the crowd deems fit get funded.\n\nKickstarter is one of the most well-known crowd funding sources for start-up projects; but as cryptocurrency takes off teams like Mastercoin, Swarm, and Counterparty have created systems that allow crowd-funding to take on the direct route cutting out the middle man. As these systems are improved upon to create “trustless” infrastructures where there are safeguards to prevent exploitation within a trade, viable options to centralized banking are closer to reality.\n\nOpenLedger is attempting to harness the forces of crowdfunding and follow the trend of increased crowdfunding over VC, rather than try to fight the trend. OpenLedger has begun hosting crowd sales on its platform to enable businesses to raise funds for their organization, contribute to the growth of the OpenLedger DC, and add to the pool of capital for the DC. To give the platform a unified crowdfunding token, OpenLedger created ICOO, which stands for “Initial Coin Offering OpenLedger”.\n\nICOO was designed to be a token that represents the crowdfunding platform on OpenLedger. As the OpenLedger platform is robust and has many different elements, the crowdfunding aspect is another addition to establish a functional economic ecosystem. Instead of creating an ecosystem that only works for existing businesses and consumers, the OpenLedger platform will be useful to startups and existing businesses alike concerning raising capital through crowdfunding. \n \nICOO represents more than a crowdfunding portal. As there are many elements to executing a successful crowdfunding campaign, the OpenLedger/CCEDK team have laid out plans to organize advertising, generate literature and content, distribute content over social networks, and assist organizations with the transition to having a digital currency system. As well, OpenLedger will be providing tiered options to give organizations different levels of assistance with executing a crowd fund. \n\nThe BitTeaser advertising network is a major part of the OpenLedger ecosystem that will help crowdfunding projects get traction. Advertising is the biggest part of getting attention focused on a new project. The BitTeaser community executes paid placed advertisements on websites and affiliate websites, and in the context of crowdfunding, this service will be used for all projects using OpenLedger to fund their projects. \n\nIn tandem with the banner ads, the Obits community will contribute paid literature about a crowdfunded project through the 500 Blogger’s Club. The club has been focused on paying writers to generate content, and a partnership with the OpenLedger platform through the DC has added the element of producing content into the ecosystem. The synergy between BitTeaser and Obits will create an environment in which an organization looking to use OpenLedger can get all of their needs met in one place. Establishing a central point for an all-encompassing solution will make it easier for businesses to transition to digital currency systems, and in the process OpenLedger will benefit from the DC growth. \n \n  \nMandate of Heaven Dilemna\n\nThe MoHD is an issue of having a law, mandate, code, or agreed upon terms from which a “worthy” leader can usurp the current power structure. The fallout then becomes whether the population wants to recognize the mandate, and acknowledge that by taking over a power structure, the new leader proves herself worthy by default. If the population recognizes the MoH, the edicts and rules of the new leader become law. If the population does not recognize the MoH and decides to revolt against the new leader, the power struggle for leadership ignores the MoH and by proxy the new leader that emerges will ultimately have to give an explanation for ignoring the MoH, or in an attempt to reunify the territories, claim that the MoH was proven by the tertiary leader emerging. \n\nIn the context of blockchain technology, the recent failure of the DAO and the resulting identification of a problem with the code of Solidity has established a real world example of the MoHD. What was initially misdiagnosed as a “hack” that drained the DAO fund of around $60 million USD, was later shown to be a poorly written contract on top of code that had a fundamentally flawed approach to its voting and capital distribution mechanisms. In attempting to solve the “Byzantine General’s Problem”, the coders and system architects were either unaware of the MoHD, or did not give it the proper diligence in researching how it could affect the digital structure. \n\nEffectively, the Ethereum coders created a Mandate of Heaven for their blockchain, meaning if a coder or arbiter could effectively make use of the code or terms, whatever actions they took would be legally binding and technically in line with the protocol. In the DAO “attack”, there was no “attack”; effectively an arbiter realized that there was a Mandate of Heaven written into the code and in tandem the DAO “smart contract”. In moving $60 million into a “child DAO” following terms and conditions, the “Emperor” effectively took whatever she could and following the MoH to the letter, forcibly removed $60 million from the collective funds. \n\nThe resulting fallout has been a mixed combination of applications of theory. While the community has not had a unified voice, inevitably it has fallen on the shoulders of the Ethereum founders and architects to make the decisions necessary to attempt a resolution that will appease the community without compromising the integrity of the protocol. Effectively, the MoH is an agnostic principle that forces the leadership to be efficient with capital, beware of despotism causing revolutions, and painfully aware for the potential of his own removal. The last two aspects of the way the MoH affect leadership are seemingly contradictory, and may explain the common implosion of empires at the hands of draconian and brutal regimes that lose track of effective application of capital. \n\nAs well, the leaders that have emerged throughout history as having walked the balance between making effective use of capital and pleasing the needs of the population have seemingly understood the collective consciousness to the point of being able to unify the populations without having them lose their individual identities. In some cases, establishing a new collective identity was the answer to this dilemma, for example in the case of Mustafa Kemal Ataturk establishing the Turkish Republic after the collapse of the Ottoman Empire. \n\nWhile the emergence of the Turkish Republic did not happen immediately at the end of the empire, it was the unification of the Turkish population against the British in the Nationalist War of Independence, and the simultaneous internal power struggle of the secular republic against the religious regime that had dominated the region off and on since the 14th century that enabled a nuanced government to be established. In articulating “Kemalism”, Mustafa Kemal effectively created a “Mandate of Heaven” that ironically gave the military the concept to defend the population from any semblance of a religious monarchy at all costs. While the application of military intervention in a coup d’état may seem completely contradictory to democracy, over the last 100 years the Turkish military has shown that after a coup has occurred, the re-establishment of democratic voting is only a matter of ending the violence associated with the coup. In effect, the less violent a coup, the less collateral damage and fallout necessary to clean up before founding a new democracy. \n\nWhile the current Turkish government has drifted back near a religious monarchy, the traditional military intervention was pre-emptively deconstructed as Recep Erdogan had jailed many commanders, generals, and officials that would have been the voices of revolt. As the military had become the arm of the MoH in Turkey, the newly emerging Sultanate is establishing a more nepotistic neo-Ottoman empire. While Erdogan seemingly has mastered the Byzantine General’s problem by simply “jailing all the generals”, in dismantling the MoH he has effectively created a “Wild West” scenario. While there is a semblance of a unified government during the times of the Wild West, the furthest and most rural reaches of what is supposed to have government oversight has no oversight because the government doesn’t have the capacity to effectively monitor or secure the land. \n\nOne of the nuances of the Wild West is that the most powerful force dominates, and in that regard fairness and humanitarianism go out the window. There are no penalties for nepotism within government, and there are no real penalties for breaking laws in areas that the government can’t reach. This is where the world of digital currency has its common traits with actual human history. As digital currency is essentially a digital wild west, having regulators enforce laws in areas that they are not familiar is not only difficult, it becomes questionable if the old laws even apply in the newly charted territories. \n\nAs governments struggle to understand digital currencies and their implications, the world of digital currency is “taxed” but seemingly unprotected. The individuals who choose to participate in effect have to arm and protect themselves from attackers knowing that they will get no real assistance from the government that is taking taxes. In effect this wild west scenario breeds vigilantism and necessity for collective response to malicious actors. With the recent attack to the DAO, one of the counter-measures was to attack the original attacker; effectively this stayed inline with the MoH that was created within the Ethereum/Solidity/DAO protocol. \n\nA counter-attack against the DAO attacker #1 successfully secured $7 million in funds from the original $60 million. As the community scrambled to understand the implications of what had occurred, different approaches to solving the overarching problem were being attempted and theorized. One of the challenges facing the community was to decide whether to recognize the original MoH (soft fork and attack attacker #1), or destroy MoH and establish new rules (hard fork and have new genesis block). The Byzantine General’s problem has already been failed by the coders of Ethereum and the founders of the DAO in this scenario. The real issue was whether to recognize the MoH or to let the empire crumble completely and free up the locked capital to re-enter into the free market. \n\nThe DAO crisis has not yet come to an end as of the writing of this paper, and updates will be made to reflect the long term outcomes of that scenario. It is impossible to predict the outcome of any set of variables, however it is a responsibility of those who control capital to make effective and efficient use of the capital. This requires being informed about the history of capital, and how politics, war, science, art, literature, education, humanitarianism and countless other variables affect capital. It is an imperfect science that by proxy the practitioners must continue to strive towards an unachievable perfection. If decentralization is to properly be applied in a global economy, the application must be not only informed, but agile and able to evolve. Reaching a state of stasis is contradictory to the natural imperative of evolution. In effect, survival is a matter of constantly evolving whether in the context of nature or in the context of commercial industries. \n\nInstitutional memory becomes an imperative when it comes to keeping a unified organizational evolution moving. An example of institutional memory would be “Congress” or the “Supreme Court” in the United States government. The idea was that instead of having agnostic principles that were to have authority over a specific set of rules or actions, democracy would be applied to congress to decide a group of elected officials that would attempt to balance the desires of the people against the knowledge of the institutional memory of congress. \n\nIn the case of the Supreme Court, the idea is that a group of officials that are appointed by an elected official to represent balanced views of the country will also retain the institutional memory necessary to make informed decisions about establishing new rules and laws. In this context, having institutional memory reduces the necessity of retreading debates and theoretically is an attempt to move debate forward with the knowledge of everything that has occurred previously. \n\nWhen DAO theory was emerging, the concept of Digital Leadership had not quite been articulated, and the theoretical foundation of the DAO was ultimately rooted in a MoH that created a leaderless system where organizations were to function based around goals and objectives that were agreed upon, rather than the decision of a specific individual or group. Many attempts at creating DAOs have been attempted, with the recent Slockit DAO being the largest on record. While the Slockit DAO was the largest, the success of the project is debatable depending on what metric of “success” is being discussed.\n\nBitshares token could be considered one of the more successful DAO projects that utilizes a combination of Proof of Stake security with colored coin protocol to allow organizations to receive the benefits of decentralized security, and the benefits of having a centralized currency and platform. The ability for colored coins to be easily converted within the UI for bitshares makes access to any asset listed on the market equal. The result is that organizations have incentive to create their own representative asset knowing that there is a centralized platform that makes exchange for other assets easy and cost effective. \n\nBeyond remittance payments, organizational control of capital becomes a new opportunity for capital to become more efficiently used in the context of the global economy. Removing the resistance for capital to flow means that it can go from the least needed to the most needed areas, and in the process generate new capital rather than stagnate against inflation. In the context of thermos-economics, resting capital can be seen as “potential energy”, and capital that is being used is “kinetic energy”. If the global economic machine is to accelerate, it needs to convert the potential energy into kinetic energy as efficiently as possible. \n\nEfficiency with capital should be agnostic in the global economy. This is where a new paradigm of “Decentralized Conglomerates” apply thermos-economic theory in attempt to create an economic “Dynamo” that makes most effective use of balancing potential and kinetic energy. If a “reserve fund” is seen as a “battery” that turns kinetic energy into potential energy for storage, then creating a dynamo that has the correct number of “batteries” stored away to power the dynamo during phases in which the machine is not transforming any potential energy into kinetic becomes an agnostic principle that pays no regard to political party, religious affiliation, or special interest group. \nWhile this ideal state may seem unattainable, it is clear that attempting to achieve these goals will require a transitional period. During this transition, digital leadership must be employed to ensure that the capital does not go to waste. The DAO debacle shows the possibility that complete absence of Digital Leadership can result in a complete waste of potential energy with no resulting kinetic energy in the dynamo. It may be possible that a completely leaderless system is not desirable. Regardless, the DC makes an attempt at striking a balance between applying digital leadership and giving autonomy to special interest groups within the DC. The team at OpenLedger believes the Decentralized Conglomerate can be the economic engine that helps pilot the globe into the paradigm of the future. \n \nReferences\n\nDigital Leadership Definition - http://searchcio.techtarget.com/definition/digital-leadership?utm_medium=EM&asrc=EM_NLN_57771210&utm_campaign=20160524_Word%20of%20the%20Day:%20digital%20leadership_kherbert&utm_source=NLN&track=NL-1823&ad=907917&src=907917\n\nFuture of Crowdfunding in Belgium-\nhttps://bolero-crowdfunding.be/nl/news-events/news/financial-crowdfunding\n\nDigixDAO:\nhttp://allcoinsnews.com/2016/02/23/new-gold-linked-digital-token-platform-reveals-crowdsale-website-for-decentralized-organization\n\nConglomerate Definition:\nhttp://www.investopedia.com/terms/c/conglomerate.asp\n\nConglomerate Discount Problem:\nhttp://www.investopedia.com/terms/c/conglomeratediscount.asp\n\nAre Conglomerates Making a Comeback:\nhttp://www.omaha.com/money/are-conglomerates-making-a-comeback-berkshire-hathaway-s-business-model/article_a98b99a2-acca-5a89-9108-470d46a3fca8.html\n\nBlockchain startups make up 20% of largest crowdfunding projects\n\nhttp://venturebeat.com/2016/05/15/blockchain-startups-make-up-20-of-largest-crowdfunding-projects/\n\nThe DAO Way: Democratic Investment Fund:\n\nhttp://www.coinfox.info/news/reviews/5589-put-dao-demokraticheskij-investitsionnyj-fond-2\n\nThe DAO Block Explorer (The DAO is a decentralized autonomous organization established April 2016 that invests in other businesses. It is a digital organization with no conventional management structure or board of directors.):\n\nhttps://etherscan.io/token/TheDAO\n\nPillars of Digital Leadership:\n\nhttp://www.leadered.com/pdf/LeadingintheDigitalAge_11.14.pdf\n\nHow to be a Digital Leader:\n\n\nhttp://www.forbes.com/sites/iese/2013/08/23/how-to-be-a-digital-leader/#133b4ecd515d\n\nBank of Canada Deputy Governor: Cooperation Needed to Advance Distributed Ledgers:\n\nhttp://www.coindesk.com/bank-of-canada-distributed-ledger-tech/\n\nHistorical examples of Decentralization in Organizations/Empires:\n\nDecentralisation in the Ancient World:\nhttp://blog.richardsprague.com/2012/12/decentralization-in-ancient-world.html\n\nDecentralization: A one to many relationship. The Case of Greece:\n\nhttp://www.prd.uth.gr/sites/spatial_analysis/ekdoseis-dimosieyseis/mediterranean%20multiregionality%201997.pdf\n\nAncient Greece:\nhttp://www.shsu.edu/~his_ncp/Greece.html\n\nCentralization-Decentralization Cycle in China:\nhttp://www.vanderbilt.edu/econ/faculty/Wooders/APET/Pet2004/Papers/centralization%20decentralization%20cycle%20in%20china.pdf\n\nChina Between Centralization and Decentralization:\n\nhttp://gbtimes.com/world/china-between-centralization-and-decentralization\n\nNapoleon Bonaparte:\n\nhttps://en.wikipedia.org/wiki/Napoleon\n\nDecentralized Revolutions that have worked:\n\n -Berlin Wall http://www.nytimes.com/topic/subject/berlin-wall\n -French Revolution https://en.wikipedia.org/wiki/French_Revolution\n\n -Egyptian revolution http://www.thecairoreview.com/essays/egypts-leaderless-revolution/\n \n -Fall of the Soviet Union https://history.state.gov/milestones/1989-1992/collapse-soviet-union\n\n\n\nDecentralized Revolutions that failed:\n\nTypes of Democracy:\n\nhttps://en.wikipedia.org/wiki/Types_of_democracy\n\nBlockchain Company’s Smart Contracts Were Dumb:\n\nhttp://www.bloomberg.com/view/articles/2016-06-17/blockchain-company-s-smart-contracts-were-dumb\n\nThe DAO is Closing Down:\n\nhttp://www.coindesk.com/the-dao-is-closing-down/\n\nA Hacking of More than $50 Million Dashes Hopes in the World of Cryptocurrency: http://www.nytimes.com/2016/06/18/business/dealbook/hacker-may-have-removed-more-than-50-million-from-experimental-cybercurrency-project.html\n\nDAO Attacker Says 3M Ether Loss is Legal:\nhttp://www.livebitcoinnews.com/dao-attacker-says-3m-ether-loss-is-legal/\n\nOpen Letter to DAO and the Ethereum Community:\n\nhttps://steemit.com/ethereum/@chris4210/an-open-letter-to-the-dao-and-the-ethereum-community\n\nMt Gox-style Collapse of DAO: Ethereum Platform Is a Failed Experiment, Says Blockchain Expert:\nhttp://cointelegraph.com/news/mt-gox-style-collapse-of-dao-ethereum-platform-is-a-failed-experiment-says-blockchain-expert\n\nThe DAO: An Analysis of the Fallout:\n\nhttp://www.coindesk.com/the-dao-an-analysis-of-the-fallout/\n\nProposal: Safety through Standardized Wallets:\n\nhttps://medium.com/@Alex_Amsel/proposal-standard-wallets-for-d-a-os-a89a4cdcb4a6#.td2rpaivk\n\nThe DAO Byzantine Debate:\n\n\nhttps://steemit.com/dao/@joseph/the-dao-byzantine-debate\n\nCrisis Thinking, DAOs, and Democracy:\n\nhttps://medium.com/@Swarm/crisis-thinking-daos-and-democracy-a134b8c721a0#.dlvvv3tgc\n\nExclusive Full Interview Transcript With Alleged DAO “Attacker”:\n\nhttps://www.cryptocoinsnews.com/exclusive-full-interview-transcript-alleged-dao-attacker/\n\nSimple Contracts are Better Contracts: What We Can Learn From The DAO:\n\nhttps://blog.blockstack.org/simple-contracts-are-better-contracts-what-we-can-learn-from-the-dao-6293214bad3a#.xyiaycgba\n\nCrowdfunding set to Surpass VC in 2016:\n\nhttp://www.forbes.com/sites/chancebarnett/2015/06/09/trends-show-crowdfunding-to-surpass-vc-in-2016/", - "json_metadata": "{\"tags\":[\"ecosystem\",\"conglomerate\",\"fintech\",\"bloggers\",\"whitepaper\",\"decentralized\",\"forbes\",\"coindesk\",\"ccedk\",\"cryptocurrency\",\"openledger\",\"blockchain\",\"obits\",\"club\",\"digital\",\"token\"],\"links\":[\"https://www.ccedk.com\"]}", - "last_update": "2016-07-03T17:04:57", - "created": "2016-07-03T17:04:57", - "active": "2016-08-05T11:33:39", - "last_payout": "2016-08-05T22:01:00", - "depth": 0, - "children": 4, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "170", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "41", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 764, - "net_votes": 12, - "root_author": "bloggersclub", - "root_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 36962, - "author": "vato", - "permlink": "re-bloggersclub-the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations-20160703t175516580z", - "category": "ecosystem", - "parent_author": "bloggersclub", - "parent_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", - "title": "", - "body": "If you want more people to read your texts you should invest some time in formatting your texts and put some images in place, even if it is some kind of whitepaper.", - "json_metadata": "{\"tags\":[\"ecosystem\"]}", - "last_update": "2016-07-03T17:55:18", - "created": "2016-07-03T17:55:18", - "active": "2016-07-03T17:55:18", - "last_payout": "2016-08-05T22:01:00", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "bloggersclub", - "root_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-07-10T12:39:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 1135218, + "beneficiaries": [], + "body": "I'm Gandalf.\nThat's not my real name, but even my mom saved my number as ***Gandalf*** in her phone contact list.\nThat counts, right?\nI'm an IT Wizard, system admin, happily married, owner of a cat.\nOwned by a cat.\n\n![Nyunya](https://grey.house/img/niunia.jpg)\n\n**Nyunya** *(The Cat)* wants to watch everything I do, that's just her way of lending a helping paw. I\u2019m not sure if she is so fascinated by what I do or she wants to make sure I do it right.\n\nWhy am I here? What is my motivation?\nNot much different from that guiding my cat:\nCuriosity and to be a witness (node?) of what is emerging here.\n\nMay the STEEM be with you!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-07-03T16:35:03", + "curator_payout_value": { + "amount": "16244", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 51402, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"cats\"],\"image\":[\"https://grey.house/img/niunia.jpg\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-10T12:39:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_hbd": 10000, + "permlink": "hello-world", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "Hello, World!", + "total_payout_value": { + "amount": "254288", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-03T17:51:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "trogdor", + "author_rewards": 0, + "beneficiaries": [], + "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-03T17:51:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 51479, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T17:51:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160703t175141501z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-03T22:45:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "amartinezque", + "author_rewards": 0, + "beneficiaries": [], + "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-03T22:45:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 51824, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T22:45:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160703t224527020z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-04T18:22:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "edu-lopov", + "author_rewards": 0, + "beneficiaries": [], + "body": "Welcome to Steemit Gandalf!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-04T18:22:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 53542, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-04T18:22:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_hbd": 10000, + "permlink": "re-gtg-hello-world-20160704t182251522z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-05T11:31:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vadimberkut8", + "author_rewards": 289, + "beneficiaries": [], + "body": "The Chernobyl was a catastrophic nuclear accident that occurred on 26 April 1986 at the Chernobyl Nuclear Power Plant in the city of Pripyat, that located in the Ukrainian Soviet Socialist Republic of the Soviet Union (USSR). An explosion and fire released large quantities of radioactive particles into the atmosphere, which spread over much of the western USSR and Europe.\n\n#### Somewhere in Prypiat... Radioactive waste storage.\n![](https://www.chernobyl-tour.com/uploads/photos/show/[2]_18_Oct_14/1001_rad_stor_p.jpg)\n\nIn Chernobyl live about 2,5-3 thousand employees of the Chernobyl Nuclear Power Plant.\n\nIn the city center is a stele dedicated to the tragedy, and immediately after it goes a long alley with tablets on which were written the names of villages were evacuated from the exclusion zone - more than one hundred thousand people.\n![](https://pp.vk.me/c623223/v623223264/28288/hWmrD88q4aU.jpg)\n\n#### Exhibition of equipment, which has been involved in the elimination of accident consequences.\n![](http://static36.cmtt.ru/paper-media/56/50/95/92416d07dc2c1b.jpg)\n\n#### Former kindergarten.\n![](http://static35.cmtt.ru/paper-media/68/37/0b/0c88a0c6291c8b.jpg)\n\nDo not put into words the emotions when the dosimeter begins beeping: you realize that something is wrong, but do not feel the threat, because it is invisible.\n![](http://static32.cmtt.ru/paper-media/85/d1/ab/14ca1a4510e4fe.jpg)\n\n#### Cooling tower - one of the most impressive objects\n![](https://pp.vk.me/c623223/v623223264/27e23/u5HHb3qRWC4.jpg)\n\n#### The radiation background is high enough\n![](http://static39.cmtt.ru/paper-media/2c/14/f8/a64255679c19c8.jpg)\n\n### Pripyat\n![](http://static37.cmtt.ru/paper-media/47/71/57/bb8cb4a3959226.jpg)\n\n![](https://pp.vk.me/c623223/v623223264/27fc1/gcUDCiOS8jU.jpg)\n\n![](https://pp.vk.me/c623223/v623223264/28012/lg3QJoVvT3c.jpg)\n\n![](http://static30.cmtt.ru/paper-media/02/ee/60/0ac975241e1382.jpg)\n\n![](http://static34.cmtt.ru/paper-media/63/10/b7/b93fa45f0fb84a.jpg)\n\nThis city is like a pressure on you, squeeze all the juice and energy.\n\nTours to Chernobyl and photos of excursions - https://www.chernobyl-tour.com/index.php", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-03T16:37:33", + "curator_payout_value": { + "amount": "14", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 36909, + "json_metadata": "{\"tags\":[\"photography\"],\"links\":[\"https://www.chernobyl-tour.com/uploads/photos/show/\"]}", + "last_payout": "2016-08-13T15:09:30", + "last_update": "2016-07-03T16:37:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 16, + "parent_author": "", + "parent_permlink": "photography", + "percent_hbd": 10000, + "permlink": "excursion-to-the-exclusion-zone-chernobyl", + "reward_weight": 10000, + "root_author": "vadimberkut8", + "root_permlink": "excursion-to-the-exclusion-zone-chernobyl", + "title": "Excursion to the exclusion zone (Chernobyl)", + "total_payout_value": { + "amount": "64", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-05T11:31:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ori", + "author_rewards": 56, + "beneficiaries": [], + "body": "Upvoted you", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-05T11:31:21", + "curator_payout_value": { + "amount": "33", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 460983, + "json_metadata": "{}", + "last_payout": "2016-08-13T15:09:30", + "last_update": "2016-08-05T11:31:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "vadimberkut8", + "parent_permlink": "excursion-to-the-exclusion-zone-chernobyl", + "percent_hbd": 10000, + "permlink": "re-excursion-to-the-exclusion-zone-chernobyl", + "reward_weight": 10000, + "root_author": "vadimberkut8", + "root_permlink": "excursion-to-the-exclusion-zone-chernobyl", + "title": "", + "total_payout_value": { + "amount": "102", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-05T11:32:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "acidsun", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://www.youtube.com/watch?v=ByoKOG3Y-bI", + "cashout_time": "1969-12-31T23:59:59", + "category": "video", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-03T17:03:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 36927, + "json_metadata": "{\"tags\":[\"video\"],\"links\":[\"https://www.youtube.com/watch?v=ByoKOG3Y-bI\"]}", + "last_payout": "2016-08-05T19:25:48", + "last_update": "2016-07-03T17:03:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 5, + "parent_author": "", + "parent_permlink": "video", + "percent_hbd": 10000, + "permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "reward_weight": 10000, + "root_author": "acidsun", + "root_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "title": "WWE champion the Great Khali for Ambuja Cement", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-05T11:32:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ori", + "author_rewards": 0, + "beneficiaries": [], + "body": "Upvoted you", + "cashout_time": "1969-12-31T23:59:59", + "category": "video", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-05T11:32:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 460994, + "json_metadata": "{}", + "last_payout": "2016-08-05T19:25:48", + "last_update": "2016-08-05T11:32:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "acidsun", + "parent_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "percent_hbd": 10000, + "permlink": "re-wwe-champion-the-great-khali-for-ambuja-cement", + "reward_weight": 10000, + "root_author": "acidsun", + "root_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-05T11:33:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "bloggersclub", + "author_rewards": 764, + "beneficiaries": [], + "body": "It is with great pleasure I am introducing to you the world\u2019s first conglomerate where ecosystems are represented by digital tokens and their unique qualities each complementing one another, all of them with one common denominator \u2013 they are all powered by the blockchain. A transparent, open and trustless powerhouse of information governed by no one and everyone with each participant in control of their own account. It is a symbiosis of perfection, trust, speed and transparency. Welcome to the future. \n\nThe below whitepaper has been created to support and substantiate the values presented in real time usecases via the Danish company Crypto Coins Enterprise Denmark ApS (CCEDK) as the Brain of the decentralized conglomerate, OpenLedger as the Platform, and the ecosystems OBITS, BTSR and ICOO as the body so far of content core ecosystems supporting eachother with many more ecosystems to come. As examples I wish to name the www.BitLand.world Cadastral and the Sollywood TV Solcerts expected to be added in the near future once able to actively particpate in complemting eachother across the ecosystems.\n\n\"The Decentralized Conglomerate represents the new paradigm of organizational operations, by applying the theoretical construct of digital leadership to the conceptual design of the DC ecosystems\"\n\nYou can have more information about CCEDK on their website: https://www.ccedk.com\n\nYours sincerely\nRonny Boesing\nCEO\nCCEDK Aps\n\nThe Decentralized Conglomerate: Digital Leadership, Institutional Memory, and Semi-Autonomous Organizations\n\n\nPrepared by L. Christopher Bates in co operation with https://www.ccedk.com \nVersion 1.0\n\nContents\nA Brief History of Decentralization\t3\nThe Death of Keynesian theory: Proto-Dynamism is born\t8\nThe Power of Crowdfunding\t11\nMandate of Heaven Dilemna\t17\nReferences\t23\n\n\nA Brief History of Decentralization\n\n\nA leader is best when people barely know he exists, when his work is done, his aim fulfilled, they will say: we did it ourselves.\n~Lao Tzu~\n\nDecentralization as an approach to organizing human teams and capital is nearly as old as written history itself. By the very nature of \u201cdecentralization\u201d, it can only take place after \u201ccentralization\u201d has occurred. Going back 4,000 years to the earliest days in China when divine right was still part of determining leadership, one can find deliberate implementations of decentralization in the application of managing how people operate. The common marriage of religion and bureaucratic hierarchies established environments in which distributed authority or fully decentralized authority became common. In times when information could not be relayed with the speed of modern day communications, having a unified goal inherently became more difficult as an empire expanded. \n\nEven beyond the nuances added by having mercenaries and slaves as part of an empire\u2019s army, the speed of communication made large scale coordination extremely difficult over long distances. In historical examples, the larger an empire became, the rulers were forced to become either more despotic or more democratic. There was no stagnation in responsibility. As territories expanded, decisions inherently affected more populations. As populations became more diverse, it was inherently more difficult to find common ground in political agendas.\nTo understand the ebb and flow between centralization and decentralization, it is important to get a brief context of the emergence of dynasties in China. The current generally accepted date for the emergence of the first actual villages is placed around 5000 BCE. As the exact date cannot be determined, the approximate time frame gives a relative starting point to show the transition from scattered tribal communities to an actual empire that begins a line of dynasties to perpetually delineate power for a continuous historical record that continued into modern times.\nThe Xia Dynasty is accepted to be the first true empire that arose in China. As a marking point for the transition between the Stone Age and the Bronze Age, the major advances in development created the foundation for the long line of technological discoveries that were yet to come. One of the major accomplishments of the Xia Dynasty was the attempts to control the flooding of the Yellow River by Yu the Great. After Yu managed to get the Yellow River under control, he turned his attention to uniting the Sanmiao tribes. His feats and charisma allowed him to inspire people to follow him as a ruler, and his rule is not known to have been despotic in nature. He is credited with establishing the system of succession and in turn the very concept of a dynasty. In establishing a feudal system that articulated a ruling class and a working class, the innate power struggles of having an oppressed class would forever become a part of the changing political landscape.\n\nIn many ways, the early feudal states were examples of the beginnings of decentralization. As the first Dynasty united the tribes, one of the initial acts of necessity was dividing authority and defining roles. While the works on \u201cDivision of Labor\u201d did not come until much later in the West, the beginnings of dividing labor for the sake of efficient production and management of capital were flourishing in the first Dynasties. As the power gradually became more unified over the first thousand years of dynasties in China, what is known as the \u201cMandate of Heaven\u201d came to be the officially recognized union of Divine Right of Leadership and the role of making law. The inclusion of \u201cDivine Right\u201d meant that the government no longer held authority over choosing the leader in the presence of \u201cDivinity\u201d. This provision in the approach to passing down the rule allowed for many nefarious actors to manipulate their way into positions of leadership, but it did not hinder the overall development of the nation.\n\nAs the civilization grew and culture expanded, technology quickly accelerated, and many of the most famous philosophers and poets emerged from this period in Chinese history. It was at the end of the Zhou Dynasty that government became decentralized as the capitol city moved and a period of warring states began. The states were moving towards wanting sovereign rule for their individual states, but the rulers within the individual states wanted to claim the Mandate of Heaven. It was when Ying Zheng successfully defeated the other states and united them under his rule to proclaim himself the \u2018First Emperor\u2019 of China. One of his first acts as Emperor was to tear down the walls that separated the individual states, and start to build a wall surrounding all of the territories. While the wall does not remain intact today, the Great Wall of China is what remains of what was once a 3,000 mile long wall. As Ying - now known as Shi Huangti- conquered more lands, he became increasingly despotic with his rule. As the empire moved away from decentralization, the unified front allowed for major advancements to be made in building projects and military operations; but on the other hand the increased need to restrict information and free speech was a side effect of the increased authoritarian rule. It was not long after Shi Huangti\u2019s death that the empire collapsed due to mismanagement by unfit rulers appointed solely because of nepotism. Once again, the dissolution of a centralized authority caused the territorial control to decentralize and inherently cause more power struggles.\nAs the Chinese territories expanded, and the dynasties changed names, the ebb and flow between decentralization and centralization was a continuous evolution that formed a middle ground between extremes. Any time leadership drifted too far in one direction, whether towards complete decentralization or complete centralization, the natural equilibrium became a mix of leadership styles, rather than a complete implementation of one ideology. Even into modern government application, what is often misunderstood as completely \u201cStatist\u201d or \u201cCommunist\u201d actually has a complex mix of centralization and decentralization in the actual organization of government entities.\n\nTo get a better picture of why the centralized government must operate with some autonomy allowed within the economy, it is necessary to understand the organization of territories. There are three basic classifications of government oversight over a territory: province, county, and township. A further delineation of responsibilities separate prefectures under the jurisdiction of provinces, and villages are relegated to the authority of townships. There are twenty-two provinces, five autonomic regions, four municipalities, and two special administrative groups. China also has five autonomic regions that have equal status as provinces. The reasoning is that these autonomic regions are the homes of the majority of the country\u2019s minority groups In the West, these regions may be seen as annexed states that are \u201cunder the control\u201d of the Chinese government, when in reality they operate with relative autonomy. \n\nThe two special administrative regions are Hong Kong and Macao, which grant them special protections. These regions have their own currencies, passports, and judicial systems. While these separations, classifications, and nuances may be hard for a Westerner to initially grasp, the cultural approach to management and division of labor has been fairly consistent in China in its capacity to distribute power and authority seeking efficiency and a unified goal. In that regard, the problem of an individual looking to overthrow the leader and usurp the head of state role has also been a consistent problem for the duration of Chinese history. The \u201cByzantine General\u2019s Problem\u201d effectively originated 2500 years before the fall of the Byzantine empire. \n\nIn understanding the true nature of decentralization as a natural counterbalance to centralization, one must create a new paradigm that recognizes meritocracy as part of the process of establishing a leader or a system without a leader. In a true meritocracy, the presence of a leader is irrelevant to results. In this situation, we can establish the \u201cMandate of Heaven Dilemma\u201d. This new problem becomes an issue of recognizing that if meritocracy is to be recognized, that arbitrary timing of leader or policy changes do not truly serve meritocracy. In the MoHD, a leader can be replaced at any time with a \u201cbetter\u201d leader if either the new leader proves herself worthy, or the crowd and populace choose to recognize the new authority. In either scenario, the intentions of the new leader are irrelevant. In this MoHD, the meritocracy will establish a paradigm in which the leadership position goes to the most effective and efficient leader with no regards to morality or ethics. \n\nIn many ways, the embodiment of what is desired to be the ideal \u201cfree market\u201d would be the MoHD playing out on the macro and micro scale. If local leaders emerged based on merit, and were constantly at risk of being replaced by a \u201cbetter\u201d official, the evolution of the macro and micro systems would be accelerated. It is in understanding the benefits of centralization and decentralization in addition to the downfalls of both that a new paradigm can emerge to make more effective and efficient use of capital than has been previously known in human history. While Keynesian theory sprang forth in a post-industrialized world in an attempt to expound on new methods of scaling economies, it has become clear in modern times that those theories were formed heavily in favor of the oligarchies that existed in the 1800\u2019s and turn of the 20th century. Many post-Keynesian theories have been articulated, but mainstream academia continues to cling to Keynesian theory as the dominant approach to forming economies. \n\u2003\nThe Death of Keynesian theory: Proto-Dynamism is born \nAs we see the global markets in turmoil and the European Union on the verge of collapse while Britain postures to exit, it is clear that a new paradigm of capital distribution, production, and management must emerge. Keynesian theory has produced a global market bubble that has seemingly popped, as the news of Britain Leaving the EU wiped $127 billion off the global markets in a single day. In light of the MoHD that has been presented, a new paradigm that emerges and proves better use of capital can either be adopted because it has proven it is better, the populace chooses to recognize it, or in a direct confrontation with the old paradigm it emerges with more resources and capital. In many ways, the concerted media attack on digital currencies and Bitcoin have represented the old paradigm\u2019s first line of defense in attempting to preserve the legacy systems that currently control global capital distribution. \n\nIn presenting the MoHD, what is occurring in modern times is the merit of the old paradigm is being directly challenged. Whether one points at Bitcoin, Occupy Wall Street, the Green Movement in Iran, or the Gezi protests in Istanbul, the old paradigms that control the global markets are being challenged individually. In many ways, the Keynesian special interest groups have actively worked to compartmentalize the uprisings to ensure that the timing of individual revolts does not snowball into a global uprising against Keynesian theory. In an example, the media blacked out the Green movement in Iran, blacked out the Wisconsin protests that were the pre-cursor to Occupy Wall Street, and is currently blacking out the protests in France that are happening in June of 2016. The global mainstream media appears to actively compartmentalize these revolutions in individual contexts, rather than attempt to link them as a revolution against authoritarianism and the remnants of colonialism in modern times. \nWhile this article is not meant to speculate on conspiracy theories, what is meant to be presented is a post-Keynesian approach to capital distribution and management. Taking the thermo-economic approach to capital production and management, an organization must attempt to become a dynamo, which in physics is a machine that takes one source of energy and converts it to output energy to a receptor. The more efficient dynamos can surpass 100% efficiency and start to produce more energy than they take in, but these are theoretical dynamos based in quantum theory that are not yet attainable. \n \nIn the context of thermo-economics, creating a dynamo is an attempt to combine physical infrastructure, political management, and capital management into the most efficient economic machine possible. The machine only pays attention to efficiency, and pays no regard to the cogs; meaning that special interest groups have no meaning in the context of an economic dynamo. In this context, maintaining ethical standards and moral common ground becomes a function of the system; digital direct democracy.\n\nIf one looks at the Crypto Rush objectively, there have been more technological developments within the past six months than there were for the previous three years. This is perfectly in line with the technology associated with the gold rush, as the first miners were able to easily make money with pick-axes and panhandling, but as the gold became scarce, hydraulic drills and tech more advanced tech became necessary to mine the ore.\nJust the same with the influx of pyrite or \u201cfool\u2019s gold\u201d following the gold rush, the \u201cfool\u2019s alts\u201d have made an entire community jaded to the point of throwing out the word \u201cscam\u201d as if it were a common salutation. In the wild west of Cryptoland, the harsh realities of economic Darwinism coupled with the fantastic possibilities of thermo-economics have created a machine which I will call a \u201cproto-dynamo\u201d.\n\nIt is important to establish the \u201cProto-dynamo\u201d as concept that represents an entirely new paradigm of economic infrastructure. The concept alludes to the \u201cdynamo\u201d which is a machine that uses opposing magnetic forces to efficiently produce/convert energy. The principle behind the dynamo is to use opposing forces within the same machine to get a consolidated output of energy. If the new paradigm of \u201cprotodynamism\u201d can be represented by an electrical generator, the old paradigm of Keynesian theory can be represented by a meat grinder in which ten pounds of product goes in one side, and six ounces of tasteless sausage comes out the funnel possibly tainted with formaldehyde or some random pesticide that is unpronounceable.\n\nAs Marshall McLuhan predicted with his \u201cglobal village\u201d theory, the growth of mass media has quickly made information extremely accessible to the average individual. In tandem with an infrastructure that allows crowd-funding to bring ideas to fruition as fast as possible, progress of technology that is useful to society will be able to hit the most efficient point that has ever been recorded.\n\nThe Arab Spring has been an actual revolution fueled by technology and information sharing that would not have been possible without the ability to quickly share strings of 140 characters. With the ability to share information comes the ability to have shared experiences. What have been forecasted as digital tribes by Mcluhan are the logical extensions of a globe trying to break free of the archaic and imperialist paradigm of nation-states.\n \n\u2003\nThe Power of Crowdfunding\n\n One of the major benefits to having a Decentralized Conglomerate structure is the ability for capital to be accrued and used towards a given project. This means that organizations that are partnered into a DC have less friction between their organizations to slow down the movement of capital or take too much of the capital in the form of fees and overhead. In the context of multiple businesses working in complimentary industries, the capacity for organizations to pool money towards development has the potential to accelerate the speed at which all participants reach their desired outcomes. \n\nA traditional conglomerate is made up of a parent corporation with subsidiary companies. As well, there are shareholders that have a stake in the company. In some cases, there will be a board of directors in addition to the executive management. When it comes to leadership, the conglomerates are usually top-down hierarchies with the vision and direction coming from the leaders at the top. While the system is not democratic, a singular leader or group of leaders with the capacity to make executive decisions makes executing projects much simpler than having a completely decentralized operation. While there are varying degrees of oversight, generally the top-down structure is the standard for traditional conglomerates. \n \nSome levels of decentralization have taken place in larger corporations, as they have had to diversify to meet market demands. In these cases, the decentralization usually is implemented to give the subsidiary companies more autonomy, but in the context of the conglomerate, the parent company\u2019s vision is still the guiding principle. Many companies have seen success in increasing their output or market share when moving towards a more decentralized management system. In this regard, \u201cdecentralization\u201d will always imply that there was a higher level of centralization than previously. \n\nAs with the Chinese Dynasties, and in effect every other major empire or nation-state that has existed, the interplay between centralization and decentralization is a matter of the economic situation needing direct intervention or not; and further if economic intervention is ever needed, how many people must be involved in the decision making process. The more people are involved in a decision making process, by default the more time a decision takes. As well, when many people are affected by a decision, the smaller the number of people making the decision, the more likely a revolt against the outcome or the governing body will take place. It is in these extremes that the traditional conglomerate has major benefits from leadership, and major impediments if the leadership is either too slow or too draconian against the people\u2019s will.\n\nCrowdfunding is anticipated to surpass venture capital in total global investments into the Fintech industry in 2016. As crowdfunding levels reached over $34 billion in total funds raised in 2015, crowdfunding as an industry is emerging in its own right. As laws are changing to keep up with digital currencies and assets, the landscape for raising funds has been forever changed as raising funds with or without equity shares has become accessible to anyone with Internet access and capital. The reality of the quickly changing market demands necessitate an agile organization that can react to market forces rather than attempting to resist the market in pursuit of following the course of what had been planned with no room for adjustment.\n\nWith the advent of Decentralized Autonomous Organizations (DAOs), the entire process of turning an idea into a tangible item gets taken out of the hands of corporations, and the development becomes an intimate exchange between the crowd and the actual developers. When an idea is presented to the crowd, the ideas that the crowd deems fit get funded.\n\nKickstarter is one of the most well-known crowd funding sources for start-up projects; but as cryptocurrency takes off teams like Mastercoin, Swarm, and Counterparty have created systems that allow crowd-funding to take on the direct route cutting out the middle man. As these systems are improved upon to create \u201ctrustless\u201d infrastructures where there are safeguards to prevent exploitation within a trade, viable options to centralized banking are closer to reality.\n\nOpenLedger is attempting to harness the forces of crowdfunding and follow the trend of increased crowdfunding over VC, rather than try to fight the trend. OpenLedger has begun hosting crowd sales on its platform to enable businesses to raise funds for their organization, contribute to the growth of the OpenLedger DC, and add to the pool of capital for the DC. To give the platform a unified crowdfunding token, OpenLedger created ICOO, which stands for \u201cInitial Coin Offering OpenLedger\u201d.\n\nICOO was designed to be a token that represents the crowdfunding platform on OpenLedger. As the OpenLedger platform is robust and has many different elements, the crowdfunding aspect is another addition to establish a functional economic ecosystem. Instead of creating an ecosystem that only works for existing businesses and consumers, the OpenLedger platform will be useful to startups and existing businesses alike concerning raising capital through crowdfunding. \n \nICOO represents more than a crowdfunding portal. As there are many elements to executing a successful crowdfunding campaign, the OpenLedger/CCEDK team have laid out plans to organize advertising, generate literature and content, distribute content over social networks, and assist organizations with the transition to having a digital currency system. As well, OpenLedger will be providing tiered options to give organizations different levels of assistance with executing a crowd fund. \n\nThe BitTeaser advertising network is a major part of the OpenLedger ecosystem that will help crowdfunding projects get traction. Advertising is the biggest part of getting attention focused on a new project. The BitTeaser community executes paid placed advertisements on websites and affiliate websites, and in the context of crowdfunding, this service will be used for all projects using OpenLedger to fund their projects. \n\nIn tandem with the banner ads, the Obits community will contribute paid literature about a crowdfunded project through the 500 Blogger\u2019s Club. The club has been focused on paying writers to generate content, and a partnership with the OpenLedger platform through the DC has added the element of producing content into the ecosystem. The synergy between BitTeaser and Obits will create an environment in which an organization looking to use OpenLedger can get all of their needs met in one place. Establishing a central point for an all-encompassing solution will make it easier for businesses to transition to digital currency systems, and in the process OpenLedger will benefit from the DC growth. \n \n \u2003\nMandate of Heaven Dilemna\n\nThe MoHD is an issue of having a law, mandate, code, or agreed upon terms from which a \u201cworthy\u201d leader can usurp the current power structure. The fallout then becomes whether the population wants to recognize the mandate, and acknowledge that by taking over a power structure, the new leader proves herself worthy by default. If the population recognizes the MoH, the edicts and rules of the new leader become law. If the population does not recognize the MoH and decides to revolt against the new leader, the power struggle for leadership ignores the MoH and by proxy the new leader that emerges will ultimately have to give an explanation for ignoring the MoH, or in an attempt to reunify the territories, claim that the MoH was proven by the tertiary leader emerging. \n\nIn the context of blockchain technology, the recent failure of the DAO and the resulting identification of a problem with the code of Solidity has established a real world example of the MoHD. What was initially misdiagnosed as a \u201chack\u201d that drained the DAO fund of around $60 million USD, was later shown to be a poorly written contract on top of code that had a fundamentally flawed approach to its voting and capital distribution mechanisms. In attempting to solve the \u201cByzantine General\u2019s Problem\u201d, the coders and system architects were either unaware of the MoHD, or did not give it the proper diligence in researching how it could affect the digital structure. \n\nEffectively, the Ethereum coders created a Mandate of Heaven for their blockchain, meaning if a coder or arbiter could effectively make use of the code or terms, whatever actions they took would be legally binding and technically in line with the protocol. In the DAO \u201cattack\u201d, there was no \u201cattack\u201d; effectively an arbiter realized that there was a Mandate of Heaven written into the code and in tandem the DAO \u201csmart contract\u201d. In moving $60 million into a \u201cchild DAO\u201d following terms and conditions, the \u201cEmperor\u201d effectively took whatever she could and following the MoH to the letter, forcibly removed $60 million from the collective funds. \n\nThe resulting fallout has been a mixed combination of applications of theory. While the community has not had a unified voice, inevitably it has fallen on the shoulders of the Ethereum founders and architects to make the decisions necessary to attempt a resolution that will appease the community without compromising the integrity of the protocol. Effectively, the MoH is an agnostic principle that forces the leadership to be efficient with capital, beware of despotism causing revolutions, and painfully aware for the potential of his own removal. The last two aspects of the way the MoH affect leadership are seemingly contradictory, and may explain the common implosion of empires at the hands of draconian and brutal regimes that lose track of effective application of capital. \n\nAs well, the leaders that have emerged throughout history as having walked the balance between making effective use of capital and pleasing the needs of the population have seemingly understood the collective consciousness to the point of being able to unify the populations without having them lose their individual identities. In some cases, establishing a new collective identity was the answer to this dilemma, for example in the case of Mustafa Kemal Ataturk establishing the Turkish Republic after the collapse of the Ottoman Empire. \n\nWhile the emergence of the Turkish Republic did not happen immediately at the end of the empire, it was the unification of the Turkish population against the British in the Nationalist War of Independence, and the simultaneous internal power struggle of the secular republic against the religious regime that had dominated the region off and on since the 14th century that enabled a nuanced government to be established. In articulating \u201cKemalism\u201d, Mustafa Kemal effectively created a \u201cMandate of Heaven\u201d that ironically gave the military the concept to defend the population from any semblance of a religious monarchy at all costs. While the application of military intervention in a coup d\u2019\u00e9tat may seem completely contradictory to democracy, over the last 100 years the Turkish military has shown that after a coup has occurred, the re-establishment of democratic voting is only a matter of ending the violence associated with the coup. In effect, the less violent a coup, the less collateral damage and fallout necessary to clean up before founding a new democracy. \n\nWhile the current Turkish government has drifted back near a religious monarchy, the traditional military intervention was pre-emptively deconstructed as Recep Erdogan had jailed many commanders, generals, and officials that would have been the voices of revolt. As the military had become the arm of the MoH in Turkey, the newly emerging Sultanate is establishing a more nepotistic neo-Ottoman empire. While Erdogan seemingly has mastered the Byzantine General\u2019s problem by simply \u201cjailing all the generals\u201d, in dismantling the MoH he has effectively created a \u201cWild West\u201d scenario. While there is a semblance of a unified government during the times of the Wild West, the furthest and most rural reaches of what is supposed to have government oversight has no oversight because the government doesn\u2019t have the capacity to effectively monitor or secure the land. \n\nOne of the nuances of the Wild West is that the most powerful force dominates, and in that regard fairness and humanitarianism go out the window. There are no penalties for nepotism within government, and there are no real penalties for breaking laws in areas that the government can\u2019t reach. This is where the world of digital currency has its common traits with actual human history. As digital currency is essentially a digital wild west, having regulators enforce laws in areas that they are not familiar is not only difficult, it becomes questionable if the old laws even apply in the newly charted territories. \n\nAs governments struggle to understand digital currencies and their implications, the world of digital currency is \u201ctaxed\u201d but seemingly unprotected. The individuals who choose to participate in effect have to arm and protect themselves from attackers knowing that they will get no real assistance from the government that is taking taxes. In effect this wild west scenario breeds vigilantism and necessity for collective response to malicious actors. With the recent attack to the DAO, one of the counter-measures was to attack the original attacker; effectively this stayed inline with the MoH that was created within the Ethereum/Solidity/DAO protocol. \n\nA counter-attack against the DAO attacker #1 successfully secured $7 million in funds from the original $60 million. As the community scrambled to understand the implications of what had occurred, different approaches to solving the overarching problem were being attempted and theorized. One of the challenges facing the community was to decide whether to recognize the original MoH (soft fork and attack attacker #1), or destroy MoH and establish new rules (hard fork and have new genesis block). The Byzantine General\u2019s problem has already been failed by the coders of Ethereum and the founders of the DAO in this scenario. The real issue was whether to recognize the MoH or to let the empire crumble completely and free up the locked capital to re-enter into the free market. \n\nThe DAO crisis has not yet come to an end as of the writing of this paper, and updates will be made to reflect the long term outcomes of that scenario. It is impossible to predict the outcome of any set of variables, however it is a responsibility of those who control capital to make effective and efficient use of the capital. This requires being informed about the history of capital, and how politics, war, science, art, literature, education, humanitarianism and countless other variables affect capital. It is an imperfect science that by proxy the practitioners must continue to strive towards an unachievable perfection. If decentralization is to properly be applied in a global economy, the application must be not only informed, but agile and able to evolve. Reaching a state of stasis is contradictory to the natural imperative of evolution. In effect, survival is a matter of constantly evolving whether in the context of nature or in the context of commercial industries. \n\nInstitutional memory becomes an imperative when it comes to keeping a unified organizational evolution moving. An example of institutional memory would be \u201cCongress\u201d or the \u201cSupreme Court\u201d in the United States government. The idea was that instead of having agnostic principles that were to have authority over a specific set of rules or actions, democracy would be applied to congress to decide a group of elected officials that would attempt to balance the desires of the people against the knowledge of the institutional memory of congress. \n\nIn the case of the Supreme Court, the idea is that a group of officials that are appointed by an elected official to represent balanced views of the country will also retain the institutional memory necessary to make informed decisions about establishing new rules and laws. In this context, having institutional memory reduces the necessity of retreading debates and theoretically is an attempt to move debate forward with the knowledge of everything that has occurred previously. \n\nWhen DAO theory was emerging, the concept of Digital Leadership had not quite been articulated, and the theoretical foundation of the DAO was ultimately rooted in a MoH that created a leaderless system where organizations were to function based around goals and objectives that were agreed upon, rather than the decision of a specific individual or group. Many attempts at creating DAOs have been attempted, with the recent Slockit DAO being the largest on record. While the Slockit DAO was the largest, the success of the project is debatable depending on what metric of \u201csuccess\u201d is being discussed.\n\nBitshares token could be considered one of the more successful DAO projects that utilizes a combination of Proof of Stake security with colored coin protocol to allow organizations to receive the benefits of decentralized security, and the benefits of having a centralized currency and platform. The ability for colored coins to be easily converted within the UI for bitshares makes access to any asset listed on the market equal. The result is that organizations have incentive to create their own representative asset knowing that there is a centralized platform that makes exchange for other assets easy and cost effective. \n\nBeyond remittance payments, organizational control of capital becomes a new opportunity for capital to become more efficiently used in the context of the global economy. Removing the resistance for capital to flow means that it can go from the least needed to the most needed areas, and in the process generate new capital rather than stagnate against inflation. In the context of thermos-economics, resting capital can be seen as \u201cpotential energy\u201d, and capital that is being used is \u201ckinetic energy\u201d. If the global economic machine is to accelerate, it needs to convert the potential energy into kinetic energy as efficiently as possible. \n\nEfficiency with capital should be agnostic in the global economy. This is where a new paradigm of \u201cDecentralized Conglomerates\u201d apply thermos-economic theory in attempt to create an economic \u201cDynamo\u201d that makes most effective use of balancing potential and kinetic energy. If a \u201creserve fund\u201d is seen as a \u201cbattery\u201d that turns kinetic energy into potential energy for storage, then creating a dynamo that has the correct number of \u201cbatteries\u201d stored away to power the dynamo during phases in which the machine is not transforming any potential energy into kinetic becomes an agnostic principle that pays no regard to political party, religious affiliation, or special interest group. \nWhile this ideal state may seem unattainable, it is clear that attempting to achieve these goals will require a transitional period. During this transition, digital leadership must be employed to ensure that the capital does not go to waste. The DAO debacle shows the possibility that complete absence of Digital Leadership can result in a complete waste of potential energy with no resulting kinetic energy in the dynamo. It may be possible that a completely leaderless system is not desirable. Regardless, the DC makes an attempt at striking a balance between applying digital leadership and giving autonomy to special interest groups within the DC. The team at OpenLedger believes the Decentralized Conglomerate can be the economic engine that helps pilot the globe into the paradigm of the future. \n \nReferences\n\nDigital Leadership Definition - http://searchcio.techtarget.com/definition/digital-leadership?utm_medium=EM&asrc=EM_NLN_57771210&utm_campaign=20160524_Word%20of%20the%20Day:%20digital%20leadership_kherbert&utm_source=NLN&track=NL-1823&ad=907917&src=907917\n\nFuture of Crowdfunding in Belgium-\nhttps://bolero-crowdfunding.be/nl/news-events/news/financial-crowdfunding\n\nDigixDAO:\nhttp://allcoinsnews.com/2016/02/23/new-gold-linked-digital-token-platform-reveals-crowdsale-website-for-decentralized-organization\n\nConglomerate Definition:\nhttp://www.investopedia.com/terms/c/conglomerate.asp\n\nConglomerate Discount Problem:\nhttp://www.investopedia.com/terms/c/conglomeratediscount.asp\n\nAre Conglomerates Making a Comeback:\nhttp://www.omaha.com/money/are-conglomerates-making-a-comeback-berkshire-hathaway-s-business-model/article_a98b99a2-acca-5a89-9108-470d46a3fca8.html\n\nBlockchain startups make up 20% of largest crowdfunding projects\n\nhttp://venturebeat.com/2016/05/15/blockchain-startups-make-up-20-of-largest-crowdfunding-projects/\n\nThe DAO Way: Democratic Investment Fund:\n\nhttp://www.coinfox.info/news/reviews/5589-put-dao-demokraticheskij-investitsionnyj-fond-2\n\nThe DAO Block Explorer (The DAO is a decentralized autonomous organization established April 2016 that invests in other businesses. It is a digital organization with no conventional management structure or board of directors.):\n\nhttps://etherscan.io/token/TheDAO\n\nPillars of Digital Leadership:\n\nhttp://www.leadered.com/pdf/LeadingintheDigitalAge_11.14.pdf\n\nHow to be a Digital Leader:\n\n\nhttp://www.forbes.com/sites/iese/2013/08/23/how-to-be-a-digital-leader/#133b4ecd515d\n\nBank of Canada Deputy Governor: Cooperation Needed to Advance Distributed Ledgers:\n\nhttp://www.coindesk.com/bank-of-canada-distributed-ledger-tech/\n\nHistorical examples of Decentralization in Organizations/Empires:\n\nDecentralisation in the Ancient World:\nhttp://blog.richardsprague.com/2012/12/decentralization-in-ancient-world.html\n\nDecentralization: A one to many relationship. The Case of Greece:\n\nhttp://www.prd.uth.gr/sites/spatial_analysis/ekdoseis-dimosieyseis/mediterranean%20multiregionality%201997.pdf\n\nAncient Greece:\nhttp://www.shsu.edu/~his_ncp/Greece.html\n\nCentralization-Decentralization Cycle in China:\nhttp://www.vanderbilt.edu/econ/faculty/Wooders/APET/Pet2004/Papers/centralization%20decentralization%20cycle%20in%20china.pdf\n\nChina Between Centralization and Decentralization:\n\nhttp://gbtimes.com/world/china-between-centralization-and-decentralization\n\nNapoleon Bonaparte:\n\nhttps://en.wikipedia.org/wiki/Napoleon\n\nDecentralized Revolutions that have worked:\n\n -Berlin Wall http://www.nytimes.com/topic/subject/berlin-wall\n -French Revolution https://en.wikipedia.org/wiki/French_Revolution\n\n -Egyptian revolution http://www.thecairoreview.com/essays/egypts-leaderless-revolution/\n \n -Fall of the Soviet Union https://history.state.gov/milestones/1989-1992/collapse-soviet-union\n\n\n\nDecentralized Revolutions that failed:\n\nTypes of Democracy:\n\nhttps://en.wikipedia.org/wiki/Types_of_democracy\n\nBlockchain Company\u2019s Smart Contracts Were Dumb:\n\nhttp://www.bloomberg.com/view/articles/2016-06-17/blockchain-company-s-smart-contracts-were-dumb\n\nThe DAO is Closing Down:\n\nhttp://www.coindesk.com/the-dao-is-closing-down/\n\nA Hacking of More than $50 Million Dashes Hopes in the World of Cryptocurrency: http://www.nytimes.com/2016/06/18/business/dealbook/hacker-may-have-removed-more-than-50-million-from-experimental-cybercurrency-project.html\n\nDAO Attacker Says 3M Ether Loss is Legal:\nhttp://www.livebitcoinnews.com/dao-attacker-says-3m-ether-loss-is-legal/\n\nOpen Letter to DAO and the Ethereum Community:\n\nhttps://steemit.com/ethereum/@chris4210/an-open-letter-to-the-dao-and-the-ethereum-community\n\nMt Gox-style Collapse of DAO: Ethereum Platform Is a Failed Experiment, Says Blockchain Expert:\nhttp://cointelegraph.com/news/mt-gox-style-collapse-of-dao-ethereum-platform-is-a-failed-experiment-says-blockchain-expert\n\nThe DAO: An Analysis of the Fallout:\n\nhttp://www.coindesk.com/the-dao-an-analysis-of-the-fallout/\n\nProposal: Safety through Standardized Wallets:\n\nhttps://medium.com/@Alex_Amsel/proposal-standard-wallets-for-d-a-os-a89a4cdcb4a6#.td2rpaivk\n\nThe DAO Byzantine Debate:\n\n\nhttps://steemit.com/dao/@joseph/the-dao-byzantine-debate\n\nCrisis Thinking, DAOs, and Democracy:\n\nhttps://medium.com/@Swarm/crisis-thinking-daos-and-democracy-a134b8c721a0#.dlvvv3tgc\n\nExclusive Full Interview Transcript With Alleged DAO \u201cAttacker\u201d:\n\nhttps://www.cryptocoinsnews.com/exclusive-full-interview-transcript-alleged-dao-attacker/\n\nSimple Contracts are Better Contracts: What We Can Learn From The DAO:\n\nhttps://blog.blockstack.org/simple-contracts-are-better-contracts-what-we-can-learn-from-the-dao-6293214bad3a#.xyiaycgba\n\nCrowdfunding set to Surpass VC in 2016:\n\nhttp://www.forbes.com/sites/chancebarnett/2015/06/09/trends-show-crowdfunding-to-surpass-vc-in-2016/", + "cashout_time": "1969-12-31T23:59:59", + "category": "ecosystem", + "children": 4, + "children_abs_rshares": 0, + "created": "2016-07-03T17:04:57", + "curator_payout_value": { + "amount": "41", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 36931, + "json_metadata": "{\"tags\":[\"ecosystem\",\"conglomerate\",\"fintech\",\"bloggers\",\"whitepaper\",\"decentralized\",\"forbes\",\"coindesk\",\"ccedk\",\"cryptocurrency\",\"openledger\",\"blockchain\",\"obits\",\"club\",\"digital\",\"token\"],\"links\":[\"https://www.ccedk.com\"]}", + "last_payout": "2016-08-05T22:01:00", + "last_update": "2016-07-03T17:04:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 12, + "parent_author": "", + "parent_permlink": "ecosystem", + "percent_hbd": 10000, + "permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "reward_weight": 10000, + "root_author": "bloggersclub", + "root_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "title": "The Decentralized Conglomerate: Digital Leadership, Institutional Memory, and Semi-Autonomous Organizations", + "total_payout_value": { + "amount": "170", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-03T17:55:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vato", + "author_rewards": 0, + "beneficiaries": [], + "body": "If you want more people to read your texts you should invest some time in formatting your texts and put some images in place, even if it is some kind of whitepaper.", + "cashout_time": "1969-12-31T23:59:59", + "category": "ecosystem", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-03T17:55:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 36962, + "json_metadata": "{\"tags\":[\"ecosystem\"]}", + "last_payout": "2016-08-05T22:01:00", + "last_update": "2016-07-03T17:55:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "bloggersclub", + "parent_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "percent_hbd": 10000, + "permlink": "re-bloggersclub-the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations-20160703t175516580z", + "reward_weight": 10000, + "root_author": "bloggersclub", + "root_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json index 6a906641..5b05fcef 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 780100, - "author": "vi1son", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Congratulations to the winners. We are waiting for the new competition.", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T17:29:57", - "created": "2016-08-28T17:29:57", - "active": "2016-08-29T13:45:42", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "16", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "3", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 18, - "net_votes": 3, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780336, - "author": "givemeyoursteem", - "permlink": "re-vi1son-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t175015557z", - "category": "foodchallenge", - "parent_author": "vi1son", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", - "title": "", - "body": "We will announce next weeks theme soon, hope to see you there!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T17:50:15", - "created": "2016-08-28T17:50:15", - "active": "2016-08-29T13:45:42", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780560, - "author": "knozaki2015", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "24 seconds from now\tTransfer 25.000 SBD to foxxycat\tCongrats 4th place Steemit Food Challenge #3 (sponsor @knozaki2015)", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\"]}", - "last_update": "2016-08-28T18:11:06", - "created": "2016-08-28T18:11:06", - "active": "2016-08-28T18:12:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780584, - "author": "givemeyoursteem", - "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", - "category": "foodchallenge", - "parent_author": "knozaki2015", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", - "title": "", - "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", - "last_update": "2016-08-28T18:12:39", - "created": "2016-08-28T18:12:39", - "active": "2016-08-28T18:12:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780673, - "author": "oumar", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Uuh, I didn't have enough time to participate :( and I do make some really delicious desserts.", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T18:21:39", - "created": "2016-08-28T18:21:39", - "active": "2016-08-28T18:26:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780727, - "author": "givemeyoursteem", - "permlink": "re-oumar-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182639249z", - "category": "foodchallenge", - "parent_author": "oumar", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", - "title": "", - "body": "Yeah we missed your post! But no worry, there will be a new challenge very soon :)", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T18:26:39", - "created": "2016-08-28T18:26:39", - "active": "2016-08-28T18:26:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 781174, - "author": "papa-pepper", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Excellent Job everyone who entered!\n# Great job picking the winners too! I couldn't agree more!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T19:02:12", - "created": "2016-08-28T19:02:12", - "active": "2016-08-28T19:25:24", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 781462, - "author": "givemeyoursteem", - "permlink": "re-papa-pepper-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t192523201z", - "category": "foodchallenge", - "parent_author": "papa-pepper", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", - "title": "", - "body": "Yes I'm moved by all effort, you Steemit Food Challengers are the best! \nThanks, it's always a hard choice to make! :)", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T19:25:24", - "created": "2016-08-28T19:25:24", - "active": "2016-08-28T19:25:24", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 781704, - "author": "the-future", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t194439865z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Congratulations to all!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T19:44:48", - "created": "2016-08-28T19:44:48", - "active": "2016-08-28T19:44:48", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 782837, - "author": "crypt0mine", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t213253576z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Thank you very much! =)", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T21:32:54", - "created": "2016-08-28T21:32:54", - "active": "2016-08-28T21:44:12", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vi1son", + "author_rewards": 18, + "beneficiaries": [], + "body": "Congratulations to the winners. We are waiting for the new competition.", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-28T17:29:57", + "curator_payout_value": { + "amount": "3", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780100, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:29:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "16", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "We will announce next weeks theme soon, hope to see you there!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:50:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780336, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:50:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "vi1son", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "percent_hbd": 10000, + "permlink": "re-vi1son-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t175015557z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "knozaki2015", + "author_rewards": 0, + "beneficiaries": [], + "body": "24 seconds from now\tTransfer 25.000 SBD to foxxycat\tCongrats 4th place Steemit Food Challenge #3 (sponsor @knozaki2015)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T18:11:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780560, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:11:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T18:12:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780584, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:12:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:26:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "oumar", + "author_rewards": 0, + "beneficiaries": [], + "body": "Uuh, I didn't have enough time to participate :( and I do make some really delicious desserts.", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T18:21:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780673, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:21:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:26:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yeah we missed your post! But no worry, there will be a new challenge very soon :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T18:26:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780727, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:26:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "oumar", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "percent_hbd": 10000, + "permlink": "re-oumar-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182639249z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:25:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "papa-pepper", + "author_rewards": 0, + "beneficiaries": [], + "body": "Excellent Job everyone who entered!\n# Great job picking the winners too! I couldn't agree more!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T19:02:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 781174, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:02:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:25:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yes I'm moved by all effort, you Steemit Food Challengers are the best! \nThanks, it's always a hard choice to make! :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T19:25:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 781462, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:25:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "papa-pepper", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "percent_hbd": 10000, + "permlink": "re-papa-pepper-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t192523201z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:44:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "the-future", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congratulations to all!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T19:44:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 781704, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:44:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t194439865z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T21:44:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "crypt0mine", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you very much! =)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T21:32:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 782837, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T21:32:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t213253576z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json index 9f7efed6..0608ccf8 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 0, - "author": "steemit", - "permlink": "firstpost", - "category": "meta", - "parent_author": "", - "parent_permlink": "meta", - "title": "Welcome to Steem!", - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "json_metadata": "", - "last_update": "2016-03-30T18:30:18", - "created": "2016-03-30T18:30:18", - "active": "2016-08-24T09:30:03", - "last_payout": "2016-08-24T19:59:42", - "depth": 0, - "children": 36, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "942", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "756", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 3548, - "net_votes": 90, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 1, - "author": "admin", - "permlink": "firstpost", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "", - "body": "First Reply! Let's get this **party** started", - "json_metadata": "", - "last_update": "2016-03-30T19:52:30", - "created": "2016-03-30T19:52:30", - "active": "2016-07-18T19:53:12", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 2, - "net_rshares": -226592300084, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 8, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 2, - "author": "proskynneo", - "permlink": "steemit-firstpost-1", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "Excited!", - "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", - "json_metadata": "", - "last_update": "2016-03-31T13:54:33", - "created": "2016-03-31T13:54:33", - "active": "2016-03-31T13:54:33", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "1058", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "1059", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 4817, - "net_votes": 7, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 3, - "author": "red", - "permlink": "steemit-firstpost-2", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "Did you Know?", - "body": "Did you know you can earn STEEM by commenting on posts?", - "json_metadata": "{}", - "last_update": "2016-04-06T19:22:42", - "created": "2016-04-06T19:22:42", - "active": "2016-07-13T08:38:48", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "100", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "100", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 457, - "net_votes": 7, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 100, - "author": "steem-id", - "permlink": "re-red-steemit-firstpost-2", - "category": "meta", - "parent_author": "red", - "parent_permlink": "steemit-firstpost-2", - "title": "Nice", - "body": "Can I get some :D", - "json_metadata": "{}", - "last_update": "2016-04-13T03:48:36", - "created": "2016-04-13T03:48:36", - "active": "2016-04-13T03:48:36", - "last_payout": "2016-08-24T19:59:42", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 66968, - "author": "business", - "permlink": "re-steemit-firstpost-20160713t082910980z", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "", - "body": "Welcome to steemit, @steemit.", - "json_metadata": "{\"tags\":[\"meta\"]}", - "last_update": "2016-07-13T08:29:36", - "created": "2016-07-13T08:29:15", - "active": "2016-07-13T08:29:36", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "36", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 56, - "net_votes": 8, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 67008, - "author": "business", - "permlink": "re-red-steemit-firstpost-2-20160713t083846149z", - "category": "meta", - "parent_author": "red", - "parent_permlink": "steemit-firstpost-2", - "title": "", - "body": "No way?", - "json_metadata": "{\"tags\":[\"meta\"]}", - "last_update": "2016-07-13T08:38:48", - "created": "2016-07-13T08:38:48", - "active": "2016-07-13T08:38:48", - "last_payout": "2016-08-24T19:59:42", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 110487, - "author": "kingtylervvs", - "permlink": "re-admin-firstpost-20160717t193811098z", - "category": "meta", - "parent_author": "admin", - "parent_permlink": "firstpost", - "title": "", - "body": "PARTY PARTY.... P - A - R - T - Y????? BECAUSE I GOTTA!", - "json_metadata": "{\"tags\":[\"meta\"]}", - "last_update": "2016-07-17T19:38:12", - "created": "2016-07-17T19:38:12", - "active": "2016-07-17T19:38:12", - "last_payout": "2016-08-24T19:59:42", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 125759, - "author": "gopher", - "permlink": "re-admin-firstpost-20160718t195306992z", - "category": "meta", - "parent_author": "admin", - "parent_permlink": "firstpost", - "title": "", - "body": "Are you admin in steem? If you have been hacked, who can help you?", - "json_metadata": "{\"tags\":[\"meta\"]}", - "last_update": "2016-07-18T19:53:12", - "created": "2016-07-18T19:53:12", - "active": "2016-07-18T19:53:12", - "last_payout": "2016-08-24T19:59:42", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 125823, - "author": "gopher", - "permlink": "re-steemit-firstpost-20160718t195806340z", - "category": "meta", - "parent_author": "steemit", - "parent_permlink": "firstpost", - "title": "", - "body": "http://steem.com/@bittrex/transfers how this user can have these tranfers without any activity?", - "json_metadata": "{\"tags\":[\"meta\"],\"links\":[\"http://steem.com/@bittrex/transfers\"]}", - "last_update": "2016-07-18T19:58:09", - "created": "2016-07-18T19:58:09", - "active": "2016-07-20T18:36:24", - "last_payout": "2016-08-24T19:59:42", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "steemit", - "root_permlink": "firstpost", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-24T09:30:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit", + "author_rewards": 3548, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "children_abs_rshares": 0, + "created": "2016-03-30T18:30:18", + "curator_payout_value": { + "amount": "756", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 0, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 90, + "parent_author": "", + "parent_permlink": "meta", + "percent_hbd": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Welcome to Steem!", + "total_payout_value": { + "amount": "942", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-18T19:53:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "admin", + "author_rewards": 0, + "beneficiaries": [], + "body": "First Reply! Let's get this **party** started", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-03-30T19:52:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T19:52:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -226592300084, + "net_votes": 8, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-03-31T13:54:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "proskynneo", + "author_rewards": 4817, + "beneficiaries": [], + "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-03-31T13:54:33", + "curator_payout_value": { + "amount": "1059", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 2, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-31T13:54:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-1", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Excited!", + "total_payout_value": { + "amount": "1058", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T08:38:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 457, + "beneficiaries": [], + "body": "Did you know you can earn STEEM by commenting on posts?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-06T19:22:42", + "curator_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 3, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-04-06T19:22:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-2", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Did you Know?", + "total_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-13T03:48:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steem-id", + "author_rewards": 0, + "beneficiaries": [], + "body": "Can I get some :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-13T03:48:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 100, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-04-13T03:48:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "red", + "parent_permlink": "steemit-firstpost-2", + "percent_hbd": 10000, + "permlink": "re-red-steemit-firstpost-2", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Nice", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T08:29:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "business", + "author_rewards": 56, + "beneficiaries": [], + "body": "Welcome to steemit, @steemit.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-13T08:29:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 66968, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-13T08:29:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 8, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160713t082910980z", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "36", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T08:38:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "business", + "author_rewards": 0, + "beneficiaries": [], + "body": "No way?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-13T08:38:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 67008, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-13T08:38:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "red", + "parent_permlink": "steemit-firstpost-2", + "percent_hbd": 10000, + "permlink": "re-red-steemit-firstpost-2-20160713t083846149z", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-17T19:38:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "kingtylervvs", + "author_rewards": 0, + "beneficiaries": [], + "body": "PARTY PARTY.... P - A - R - T - Y????? BECAUSE I GOTTA!", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-17T19:38:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 110487, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-17T19:38:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "admin", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "re-admin-firstpost-20160717t193811098z", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-18T19:53:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gopher", + "author_rewards": 0, + "beneficiaries": [], + "body": "Are you admin in steem? If you have been hacked, who can help you?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-18T19:53:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 125759, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-18T19:53:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "admin", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "re-admin-firstpost-20160718t195306992z", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-20T18:36:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gopher", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://steem.com/@bittrex/transfers how this user can have these tranfers without any activity?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-18T19:58:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 125823, + "json_metadata": "{\"tags\":[\"meta\"],\"links\":[\"http://steem.com/@bittrex/transfers\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-18T19:58:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "re-steemit-firstpost-20160718t195806340z", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json index 5ba5ef95..d07e5c56 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 780101, - "author": "valeriawise", - "permlink": "global-lack-of-understanding-of-each-other", - "category": "future", - "parent_author": "", - "parent_permlink": "future", - "title": "Global lack of understanding of each other", - "body": "The theme of the day - global lack of understanding of each other.\nWhy?\nThose who do not understand - are different.\nThe goal - to teach this \"different\" to understand everyone.\nHow?\nSection Hi-Tech technology infinity reality\nFuture technologies\n\nImagine, it is a compact and portable device, which is called the \"translator\".\nBut this device is not a thing about what you are thinking now, this device translates not only the words that a person can say, but also thoughts, desires, motivations, and your understanding of things on the level of understanding another person.\nThis translator helps others understand someone who says.\nPrinciple of operation - you turn on the device, and no matter what you said to someone with this device in your hand, the man begins to understand and do what heard.\nBut there is one \"but\" - no matter what you say, person will want to do and do only good and sincere desires straight from the heart, and the evil and coarseness desires it wont translate and person remains unheard and misunderstood.\nThis translator is equipped with a built-in filter, so if someone would like to use it to harm, he can not do this, as translator will also bring evil thoughts into the opposite - good things. Only imagine how quickly our world will convert into a unity of understanding each other people and no one will not feel alone in this world.\nto be continued...", - "json_metadata": "{\"tags\":[\"future\",\"technology\",\"unity\",\"sincere\",\"world\"]}", - "last_update": "2016-08-28T17:29:57", - "created": "2016-08-28T17:29:57", - "active": "2016-08-28T17:29:57", - "last_payout": "2016-08-29T17:44:48", - "depth": 0, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "2016-09-28T17:44:48", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "valeriawise", - "root_permlink": "global-lack-of-understanding-of-each-other", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780108, - "author": "anca3drandom", - "permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "category": "art", - "parent_author": "", - "parent_permlink": "art", - "title": "3D Pen Art - Combining Color changing filament with Drawing Pastels - Making Pendants", - "body": "\n

Today I experimented with color changing filament (PLA); it changes its color to blue at low temperatures.

\n

 The idea was to make some pendants using only white color PLA filament. I had two ideas on how I could incorporate some colors.

\n

First was to add pieces of drawing pastel between to pieces of whatever I made with the 3D pen. I made a square, a triangle and a heart shape.

\n

https://httpsimage.com/img/DSC04680small.jpg

\n

Notice the lines in the square.Those will unite after placing them in the oven

\n

https://httpsimage.com/img/DSC04682small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04686small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04692small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04694small.jpg

\n

 After I cut pieces of pastel and placed them on top of the square, triangle and heart I covered them with their twin piece and placed them in the oven for about 10 minutes. The heat helps smooth the surface and join each two identical pieces.

\n

Now I just have to figure out how to make a small in each of them to add them to a chain.

\n

https://httpsimage.com/img/DSC04701small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04714small.jpg

\n

Watch the video to see how they changed color after I put them in ice cold water. 

\n


\n

https://www.youtube.com/watch?v=ig-wrxYPUzc

\n


\n

The second thing that I have tried was adding drawing ink to the 3d pen objects. I added ink on top of the objects. My theory was that the ink will infiltrate the shapes, but this didn't happen. The only thing that worked was to add the ink between two identical objects and place them in the oven to join them.

\n

I think that the ones with the pastel turned out better.What do you think?

\n

 

\n

https://httpsimage.com/img/DSC04658small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04661small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04668small.jpg

\n

 

\n

https://httpsimage.com/img/IMG_20160828_190533small.jpg

\n

#3dpen 

\n

Check out my linocuts  or my pyrography art 

\n

https://httpsimage.com/img/DSC04402small2.jpg

\n

@anca3drandom

\n", - "json_metadata": "{\"tags\":[\"art\",\"steemart\",\"originalcontent\",\"3dpen\"],\"users\":[\"anca3drandom\"],\"image\":[\"https://httpsimage.com/img/DSC04680small.jpg\",\"https://httpsimage.com/img/DSC04682small.jpg\",\"https://httpsimage.com/img/DSC04686small.jpg\",\"https://httpsimage.com/img/DSC04692small.jpg\",\"https://httpsimage.com/img/DSC04694small.jpg\",\"https://httpsimage.com/img/DSC04701small.jpg\",\"https://httpsimage.com/img/DSC04714small.jpg\",\"https://httpsimage.com/img/DSC04658small.jpg\",\"https://httpsimage.com/img/DSC04661small.jpg\",\"https://httpsimage.com/img/DSC04668small.jpg\",\"https://httpsimage.com/img/IMG_20160828_190533small.jpg\",\"https://httpsimage.com/img/DSC04402small2.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=ig-wrxYPUzc\",\"https://steemit.com/art/@anca3drandom/how-to-make-linocut-prints-leafy-seadragon-photos-video\",\"https://steemit.com/art/@anca3drandom/how-i-made-decorative-mini-kitchen-blackboard-pyrography-art-watercolors\"]}", - "last_update": "2016-08-28T17:30:30", - "created": "2016-08-28T17:30:30", - "active": "2016-08-31T09:15:15", - "last_payout": "2016-08-29T20:31:48", - "depth": 0, - "children": 24, - "net_rshares": 128179768, - "abs_rshares": 128179768, - "vote_rshares": 128179768, - "children_abs_rshares": "18465724919", - "cashout_time": "2016-09-28T20:31:48", - "max_cashout_time": "2016-09-12T23:16:12", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "1929", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "363", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 1969, - "net_votes": 60, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780169, - "author": "nil1511", - "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173639420z", - "category": "art", - "parent_author": "anca3drandom", - "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "title": "", - "body": "cool. Is that uniform in thickness?", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:36:39", - "created": "2016-08-28T17:36:39", - "active": "2016-08-28T17:47:57", - "last_payout": "2016-08-29T20:31:48", - "depth": 1, - "children": 3, - "net_rshares": "18283233276", - "abs_rshares": "18283233276", - "vote_rshares": "18283233276", - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780203, - "author": "anca3drandom", - "permlink": "re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173933042z", - "category": "art", - "parent_author": "nil1511", - "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173639420z", - "title": "", - "body": "They are hand-made so they are uniform as much as it was allowed.", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:39:33", - "created": "2016-08-28T17:39:33", - "active": "2016-08-28T17:47:57", - "last_payout": "2016-08-29T20:31:48", - "depth": 2, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780214, - "author": "the-future", - "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174002633z", - "category": "art", - "parent_author": "anca3drandom", - "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "title": "", - "body": "This is very cool. I like how the colours are changing! Great work", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:40:09", - "created": "2016-08-28T17:40:09", - "active": "2016-08-28T17:49:06", - "last_payout": "2016-08-29T20:31:48", - "depth": 1, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780242, - "author": "marquismiller", - "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174219184z", - "category": "art", - "parent_author": "anca3drandom", - "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "title": "", - "body": "Nice job. Haven't seen this type of art style before.", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:42:18", - "created": "2016-08-28T17:42:18", - "active": "2016-08-28T17:45:09", - "last_payout": "2016-08-29T20:31:48", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780250, - "author": "thecryptofiend", - "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174256563z", - "category": "art", - "parent_author": "anca3drandom", - "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "title": "", - "body": "Very nice. I love the darker blue shade.", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:42:57", - "created": "2016-08-28T17:42:57", - "active": "2016-08-28T17:46:39", - "last_payout": "2016-08-29T20:31:48", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780265, - "author": "anca3drandom", - "permlink": "re-the-future-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174358335z", - "category": "art", - "parent_author": "the-future", - "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174002633z", - "title": "", - "body": "Thank you! That is a cool feature.", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:44:00", - "created": "2016-08-28T17:44:00", - "active": "2016-08-28T17:49:06", - "last_payout": "2016-08-29T20:31:48", - "depth": 2, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780274, - "author": "nil1511", - "permlink": "re-anca3drandom-re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174439183z", - "category": "art", - "parent_author": "anca3drandom", - "parent_permlink": "re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173933042z", - "title": "", - "body": "Thank you for sharing.", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:44:39", - "created": "2016-08-28T17:44:39", - "active": "2016-08-28T17:47:57", - "last_payout": "2016-08-29T20:31:48", - "depth": 3, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780281, - "author": "anca3drandom", - "permlink": "re-marquismiller-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174506597z", - "category": "art", - "parent_author": "marquismiller", - "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174219184z", - "title": "", - "body": "3D pen art has been around for a few years. However combining pastels with 3d pen was my idea.Haven't seen it before.", - "json_metadata": "{\"tags\":[\"art\"]}", - "last_update": "2016-08-28T17:45:09", - "created": "2016-08-28T17:45:09", - "active": "2016-08-28T17:45:09", - "last_payout": "2016-08-29T20:31:48", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "anca3drandom", - "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-28T17:29:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "valeriawise", + "author_rewards": 0, + "beneficiaries": [], + "body": "The theme of the day - global lack of understanding of each other.\nWhy?\nThose who do not understand - are different.\nThe goal - to teach this \"different\" to understand everyone.\nHow?\nSection Hi-Tech technology infinity reality\nFuture technologies\n\nImagine, it is a compact and portable device, which is called the \"translator\".\nBut this device is not a thing about what you are thinking now, this device translates not only the words that a person can say, but also thoughts, desires, motivations, and your understanding of things on the level of understanding another person.\nThis translator helps others understand someone who says.\nPrinciple of operation - you turn on the device, and no matter what you said to someone with this device in your hand, the man begins to understand and do what heard.\nBut there is one \"but\" - no matter what you say, person will want to do and do only good and sincere desires straight from the heart, and the evil and coarseness desires it wont translate and person remains unheard and misunderstood.\nThis translator is equipped with a built-in filter, so if someone would like to use it to harm, he can not do this, as translator will also bring evil thoughts into the opposite - good things. Only imagine how quickly our world will convert into a unity of understanding each other people and no one will not feel alone in this world.\nto be continued...", + "cashout_time": "2016-09-28T17:44:48", + "category": "future", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:29:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 780101, + "json_metadata": "{\"tags\":[\"future\",\"technology\",\"unity\",\"sincere\",\"world\"]}", + "last_payout": "2016-08-29T17:44:48", + "last_update": "2016-08-28T17:29:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "future", + "percent_hbd": 10000, + "permlink": "global-lack-of-understanding-of-each-other", + "reward_weight": 10000, + "root_author": "valeriawise", + "root_permlink": "global-lack-of-understanding-of-each-other", + "title": "Global lack of understanding of each other", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 128179768, + "active": "2016-08-31T09:15:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anca3drandom", + "author_rewards": 1969, + "beneficiaries": [], + "body": "\n

Today I experimented with color changing filament (PLA); it changes its color to blue at low temperatures.

\n

 The idea was to make some pendants using only white color PLA filament. I had two ideas on how I could incorporate some colors.

\n

First was to add pieces of drawing pastel between to pieces of whatever I made with the 3D pen. I made a square, a triangle and a heart shape.

\n

https://httpsimage.com/img/DSC04680small.jpg

\n

Notice the lines in the square.Those will unite after placing them in the oven

\n

https://httpsimage.com/img/DSC04682small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04686small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04692small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04694small.jpg

\n

 After I cut pieces of pastel and placed them on top of the square, triangle and heart I covered them with their twin piece and placed them in the oven for about 10 minutes. The heat helps smooth the surface and join each two identical pieces.

\n

Now I just have to figure out how to make a small in each of them to add them to a chain.

\n

https://httpsimage.com/img/DSC04701small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04714small.jpg

\n

Watch the video to see how they changed color after I put them in ice cold water. 

\n


\n

https://www.youtube.com/watch?v=ig-wrxYPUzc

\n


\n

The second thing that I have tried was adding drawing ink to the 3d pen objects. I added ink on top of the objects. My theory was that the ink will infiltrate the shapes, but this didn't happen. The only thing that worked was to add the ink between two identical objects and place them in the oven to join them.

\n

I think that the ones with the pastel turned out better.What do you think?

\n

 

\n

https://httpsimage.com/img/DSC04658small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04661small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04668small.jpg

\n

 

\n

https://httpsimage.com/img/IMG_20160828_190533small.jpg

\n

#3dpen 

\n

Check out my linocuts  or my pyrography art 

\n

https://httpsimage.com/img/DSC04402small2.jpg

\n

@anca3drandom

\n", + "cashout_time": "2016-09-28T20:31:48", + "category": "art", + "children": 24, + "children_abs_rshares": "18465724919", + "created": "2016-08-28T17:30:30", + "curator_payout_value": { + "amount": "363", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 780108, + "json_metadata": "{\"tags\":[\"art\",\"steemart\",\"originalcontent\",\"3dpen\"],\"users\":[\"anca3drandom\"],\"image\":[\"https://httpsimage.com/img/DSC04680small.jpg\",\"https://httpsimage.com/img/DSC04682small.jpg\",\"https://httpsimage.com/img/DSC04686small.jpg\",\"https://httpsimage.com/img/DSC04692small.jpg\",\"https://httpsimage.com/img/DSC04694small.jpg\",\"https://httpsimage.com/img/DSC04701small.jpg\",\"https://httpsimage.com/img/DSC04714small.jpg\",\"https://httpsimage.com/img/DSC04658small.jpg\",\"https://httpsimage.com/img/DSC04661small.jpg\",\"https://httpsimage.com/img/DSC04668small.jpg\",\"https://httpsimage.com/img/IMG_20160828_190533small.jpg\",\"https://httpsimage.com/img/DSC04402small2.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=ig-wrxYPUzc\",\"https://steemit.com/art/@anca3drandom/how-to-make-linocut-prints-leafy-seadragon-photos-video\",\"https://steemit.com/art/@anca3drandom/how-i-made-decorative-mini-kitchen-blackboard-pyrography-art-watercolors\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:30:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-12T23:16:12", + "net_rshares": 128179768, + "net_votes": 60, + "parent_author": "", + "parent_permlink": "art", + "percent_hbd": 10000, + "permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "3D Pen Art - Combining Color changing filament with Drawing Pastels - Making Pendants", + "total_payout_value": { + "amount": "1929", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 128179768 + }, + { + "abs_rshares": "18283233276", + "active": "2016-08-28T17:47:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "nil1511", + "author_rewards": 0, + "beneficiaries": [], + "body": "cool. Is that uniform in thickness?", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-28T17:36:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780169, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:36:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": "18283233276", + "net_votes": 1, + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "percent_hbd": 10000, + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173639420z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "18283233276" + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:47:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anca3drandom", + "author_rewards": 0, + "beneficiaries": [], + "body": "They are hand-made so they are uniform as much as it was allowed.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-28T17:39:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780203, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:39:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "nil1511", + "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173639420z", + "percent_hbd": 10000, + "permlink": "re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173933042z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:49:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "the-future", + "author_rewards": 0, + "beneficiaries": [], + "body": "This is very cool. I like how the colours are changing! Great work", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-28T17:40:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780214, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:40:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "percent_hbd": 10000, + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174002633z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:45:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "marquismiller", + "author_rewards": 0, + "beneficiaries": [], + "body": "Nice job. Haven't seen this type of art style before.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:42:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780242, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:42:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "percent_hbd": 10000, + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174219184z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:46:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "thecryptofiend", + "author_rewards": 0, + "beneficiaries": [], + "body": "Very nice. I love the darker blue shade.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:42:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780250, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:42:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "percent_hbd": 10000, + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174256563z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:49:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anca3drandom", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you! That is a cool feature.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:44:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780265, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:44:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "the-future", + "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174002633z", + "percent_hbd": 10000, + "permlink": "re-the-future-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174358335z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:47:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "nil1511", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you for sharing.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:44:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 780274, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:44:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "anca3drandom", + "parent_permlink": "re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173933042z", + "percent_hbd": 10000, + "permlink": "re-anca3drandom-re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174439183z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:45:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anca3drandom", + "author_rewards": 0, + "beneficiaries": [], + "body": "3D pen art has been around for a few years. However combining pastels with 3d pen was my idea.Haven't seen it before.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:45:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780281, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:45:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "marquismiller", + "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174219184z", + "percent_hbd": 10000, + "permlink": "re-marquismiller-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174506597z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json index c52af036..2403716d 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "id": 779947, - "author": "givemeyoursteem", - "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "category": "foodchallenge", - "parent_author": "", - "parent_permlink": "foodchallenge", - "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", - "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", - "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", - "last_update": "2016-08-28T17:15:12", - "created": "2016-08-28T17:15:12", - "active": "2016-08-29T13:45:42", - "last_payout": "2016-08-29T20:19:39", - "depth": 0, - "children": 18, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 2374341643, - "cashout_time": "2016-09-28T20:19:39", - "max_cashout_time": "2016-09-13T01:24:24", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "576", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "131", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 588, - "net_votes": 44, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780100, - "author": "vi1son", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Congratulations to the winners. We are waiting for the new competition.", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T17:29:57", - "created": "2016-08-28T17:29:57", - "active": "2016-08-29T13:45:42", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 2, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "16", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "3", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 18, - "net_votes": 3, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780336, - "author": "givemeyoursteem", - "permlink": "re-vi1son-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t175015557z", - "category": "foodchallenge", - "parent_author": "vi1son", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", - "title": "", - "body": "We will announce next weeks theme soon, hope to see you there!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T17:50:15", - "created": "2016-08-28T17:50:15", - "active": "2016-08-29T13:45:42", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780560, - "author": "knozaki2015", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "24 seconds from now\tTransfer 25.000 SBD to foxxycat\tCongrats 4th place Steemit Food Challenge #3 (sponsor @knozaki2015)", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\"]}", - "last_update": "2016-08-28T18:11:06", - "created": "2016-08-28T18:11:06", - "active": "2016-08-28T18:12:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780584, - "author": "givemeyoursteem", - "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", - "category": "foodchallenge", - "parent_author": "knozaki2015", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", - "title": "", - "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", - "last_update": "2016-08-28T18:12:39", - "created": "2016-08-28T18:12:39", - "active": "2016-08-28T18:12:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780673, - "author": "oumar", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Uuh, I didn't have enough time to participate :( and I do make some really delicious desserts.", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T18:21:39", - "created": "2016-08-28T18:21:39", - "active": "2016-08-28T18:26:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 780727, - "author": "givemeyoursteem", - "permlink": "re-oumar-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182639249z", - "category": "foodchallenge", - "parent_author": "oumar", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", - "title": "", - "body": "Yeah we missed your post! But no worry, there will be a new challenge very soon :)", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T18:26:39", - "created": "2016-08-28T18:26:39", - "active": "2016-08-28T18:26:39", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 781174, - "author": "papa-pepper", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Excellent Job everyone who entered!\n# Great job picking the winners too! I couldn't agree more!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T19:02:12", - "created": "2016-08-28T19:02:12", - "active": "2016-08-28T19:25:24", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 1, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 2, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 781462, - "author": "givemeyoursteem", - "permlink": "re-papa-pepper-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t192523201z", - "category": "foodchallenge", - "parent_author": "papa-pepper", - "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", - "title": "", - "body": "Yes I'm moved by all effort, you Steemit Food Challengers are the best! \nThanks, it's always a hard choice to make! :)", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T19:25:24", - "created": "2016-08-28T19:25:24", - "active": "2016-08-28T19:25:24", - "last_payout": "2016-08-29T20:19:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 781704, - "author": "the-future", - "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t194439865z", - "category": "foodchallenge", - "parent_author": "givemeyoursteem", - "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "", - "body": "Congratulations to all!", - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_update": "2016-08-28T19:44:48", - "created": "2016-08-28T19:44:48", - "active": "2016-08-28T19:44:48", - "last_payout": "2016-08-29T20:19:39", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_steem_dollars": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 588, + "beneficiaries": [], + "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", + "cashout_time": "2016-09-28T20:19:39", + "category": "foodchallenge", + "children": 18, + "children_abs_rshares": 2374341643, + "created": "2016-08-28T17:15:12", + "curator_payout_value": { + "amount": "131", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1029377, + "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:15:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T01:24:24", + "net_rshares": 0, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "foodchallenge", + "percent_hbd": 10000, + "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", + "total_payout_value": { + "amount": "576", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vi1son", + "author_rewards": 18, + "beneficiaries": [], + "body": "Congratulations to the winners. We are waiting for the new competition.", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-28T17:29:57", + "curator_payout_value": { + "amount": "3", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1029561, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:29:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "16", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "We will announce next weeks theme soon, hope to see you there!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:50:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1029853, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:50:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "vi1son", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "percent_hbd": 10000, + "permlink": "re-vi1son-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t175015557z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "knozaki2015", + "author_rewards": 0, + "beneficiaries": [], + "body": "24 seconds from now\tTransfer 25.000 SBD to foxxycat\tCongrats 4th place Steemit Food Challenge #3 (sponsor @knozaki2015)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T18:11:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1030133, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:11:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T18:12:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1030162, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:12:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "percent_hbd": 10000, + "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:26:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "oumar", + "author_rewards": 0, + "beneficiaries": [], + "body": "Uuh, I didn't have enough time to participate :( and I do make some really delicious desserts.", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T18:21:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1030265, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:21:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:26:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yeah we missed your post! But no worry, there will be a new challenge very soon :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T18:26:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1030333, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:26:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "oumar", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "percent_hbd": 10000, + "permlink": "re-oumar-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182639249z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:25:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "papa-pepper", + "author_rewards": 0, + "beneficiaries": [], + "body": "Excellent Job everyone who entered!\n# Great job picking the winners too! I couldn't agree more!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T19:02:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1030904, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:02:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:25:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yes I'm moved by all effort, you Steemit Food Challengers are the best! \nThanks, it's always a hard choice to make! :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T19:25:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1031268, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:25:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "papa-pepper", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "percent_hbd": 10000, + "permlink": "re-papa-pepper-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t192523201z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:44:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "the-future", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congratulations to all!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T19:44:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1031585, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:44:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t194439865z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] } \ No newline at end of file diff --git a/hivemind/tavern/follow_api_patterns/get_account_reputations.pat.json b/hivemind/tavern/follow_api_patterns/get_account_reputations.pat.json index 0c542e85..3b638592 100644 --- a/hivemind/tavern/follow_api_patterns/get_account_reputations.pat.json +++ b/hivemind/tavern/follow_api_patterns/get_account_reputations.pat.json @@ -1,8 +1,8 @@ { "reputations": [ - { - "name": "steem", - "reputation": 0 - } + { + "name": "steem", + "reputation": 0 + } ] } \ No newline at end of file diff --git a/hivemind/tavern/follow_api_patterns/get_blog.pat.json b/hivemind/tavern/follow_api_patterns/get_blog.pat.json index 7ab9ce15..12e46ecb 100644 --- a/hivemind/tavern/follow_api_patterns/get_blog.pat.json +++ b/hivemind/tavern/follow_api_patterns/get_blog.pat.json @@ -1,645 +1,645 @@ [ - { - "blog": "steemit", - "comment": { - "active_votes": [ - { - "percent": "100", - "reputation": 0, - "rshares": "375241", - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5100", - "voter": "steemit78" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1259167", - "voter": "anonymous" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "318519", - "voter": "hello" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "153384", - "voter": "world" - }, - { - "percent": "-100", - "reputation": 0, - "rshares": "-936400", - "voter": "ned" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59412", - "voter": "fufubar1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14997", - "voter": "anonymous1" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "1441", - "voter": "red" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "551390835500", - "voter": "liondani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "82748", - "voter": "roadscape" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "10772", - "voter": "xeroc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "498863058", - "voter": "joelinux" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "9590417", - "voter": "piranhax" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "percent": "3600", - "reputation": 0, - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "425903066", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "422984262", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "47179379651", - "voter": "tosch" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7831667988", - "voter": "klye" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1019950749", - "voter": "coar" - }, - { - "percent": "1509", - "reputation": 0, - "rshares": "1746058458", - "voter": "murh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "hien-tran" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40624969", - "voter": "ben99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "917398502", - "voter": "decrypt" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1037079223", - "voter": "condra" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "233032838", - "voter": "jearson" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "240809500", - "voter": "tritium" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "226074637", - "voter": "artjedi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "931542394", - "voter": "anduweb" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2292983350", - "voter": "inertia" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "266262926", - "voter": "desmonid" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "71498008", - "voter": "madhatting" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23726644841", - "voter": "ubg" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "131577259", - "voter": "gribgo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "28907874049", - "voter": "orm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "528988007", - "voter": "qonq99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "129537329", - "voter": "rd7783" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "615020728", - "voter": "slava" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "95219365", - "voter": "curator" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "solos" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "blysards" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1279854", - "voter": "nigmat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10847083143", - "voter": "metrox" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "710989138", - "voter": "romancs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59366614", - "voter": "luke490" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58762473", - "voter": "bro66" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "201822591", - "voter": "future24" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58623688", - "voter": "mythras" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "matrixdweller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54761612", - "voter": "edbriv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "865125771", - "voter": "rittr" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52740989", - "voter": "tcstix" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "49467477", - "voter": "friedwater" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54017869", - "voter": "zelious" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53196086", - "voter": "f1111111" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "anomaly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "buckland" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "goldmatters" - } - ], - "author": "steemit", - "author_reputation": 0, - "beneficiaries": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "body_length": 224, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 36, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T18:30:18", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "parent_author": "", - "parent_permlink": "meta", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "Welcome to Steem!", - "total_payout_value": "0.942 HBD", - "url": "/meta/@steemit/firstpost" - }, - "entry_id": 0, - "reblogged_on": "1970-01-01T00:00:00" - } + { + "blog": "steemit", + "comment": { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + }, + "entry_id": 0, + "reblogged_on": "1970-01-01T00:00:00" + } ] \ No newline at end of file diff --git a/hivemind/tavern/follow_api_patterns/get_blog_entries.pat.json b/hivemind/tavern/follow_api_patterns/get_blog_entries.pat.json index 1ab91172..c4ed5060 100644 --- a/hivemind/tavern/follow_api_patterns/get_blog_entries.pat.json +++ b/hivemind/tavern/follow_api_patterns/get_blog_entries.pat.json @@ -1,9 +1,9 @@ [ { - "author": "steemit", - "blog": "steemit", - "entry_id": 0, - "permlink": "firstpost", - "reblogged_on": "1970-01-01T00:00:00" + "author": "steemit", + "blog": "steemit", + "entry_id": 0, + "permlink": "firstpost", + "reblogged_on": "1970-01-01T00:00:00" } ] \ No newline at end of file diff --git a/hivemind/tavern/follow_api_patterns/get_followers.pat.json b/hivemind/tavern/follow_api_patterns/get_followers.pat.json index 6f1cc469..40002c6f 100644 --- a/hivemind/tavern/follow_api_patterns/get_followers.pat.json +++ b/hivemind/tavern/follow_api_patterns/get_followers.pat.json @@ -1,72 +1,72 @@ [ - { - "follower": "therajmahal", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "mgibson", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "good-karma", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "blockcodes", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "pjheinz", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "sergey44", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "afsane", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "pawel-krawczyk", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "buckland", - "following": "steemit", - "what": [ - "blog" - ] - }, - { - "follower": "johnson.lukose", - "following": "steemit", - "what": [ - "blog" - ] - } + { + "follower": "therajmahal", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "mgibson", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "good-karma", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "blockcodes", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "pjheinz", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "sergey44", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "afsane", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "pawel-krawczyk", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "buckland", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "johnson.lukose", + "following": "steemit", + "what": [ + "blog" + ] + } ] \ No newline at end of file diff --git a/hivemind/tavern/follow_api_patterns/get_following.pat.json b/hivemind/tavern/follow_api_patterns/get_following.pat.json index e78f9c04..91cb6486 100644 --- a/hivemind/tavern/follow_api_patterns/get_following.pat.json +++ b/hivemind/tavern/follow_api_patterns/get_following.pat.json @@ -1,72 +1,72 @@ [ - { - "follower": "proskynneo", - "following": "webosfritos", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "peerplays", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "charlieshrem", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "tlc", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "jamesc", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "theoretical", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "steemitblog", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "ned", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "dan", - "what": [ - "blog" - ] - }, - { - "follower": "proskynneo", - "following": "katecloud", - "what": [ - "blog" - ] - } + { + "follower": "proskynneo", + "following": "webosfritos", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "peerplays", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "charlieshrem", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "tlc", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "jamesc", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "theoretical", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "steemitblog", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "ned", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "dan", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "katecloud", + "what": [ + "blog" + ] + } ] \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.pat.json b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.pat.json index 7d14af64..15ef8fb0 100644 --- a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.pat.json @@ -1,33 +1,33 @@ -[ - { - "active_votes": [], - "author": "lukmarcus", - "author_reputation": 0, - "beneficiaries": [], - "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", - "body_length": 122, - "cashout_time": "2016-09-18T21:19:45", - "category": "polska", - "children": 0, - "created": "2016-08-22T07:44:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https:\\/\\/web.facebook.com\\/notes\\/szymon-szewczyk-blog\\/nasienie-wolno%C5%9Bci\\/1062629210473658\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-22T07:44:48", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "simgregg", - "parent_permlink": "nasienie-wolnosci", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-simgregg-nasienie-wolnosci-20160822t074530822z", - "post_id": 703225, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Nasienie Wolno\u015bci", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/polska/@simgregg/nasienie-wolnosci#@lukmarcus/re-simgregg-nasienie-wolnosci-20160822t074530822z" - } +[ + { + "active_votes": [], + "author": "lukmarcus", + "author_reputation": 0, + "beneficiaries": [], + "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", + "body_length": 122, + "cashout_time": "2016-08-29T07:44:48", + "category": "polska", + "children": 0, + "created": "2016-08-22T07:44:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-22T07:44:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "simgregg", + "parent_permlink": "nasienie-wolnosci", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-simgregg-nasienie-wolnosci-20160822t074530822z", + "post_id": 931240, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Nasienie Wolno\u015bci", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/polska/@simgregg/nasienie-wolnosci#@lukmarcus/re-simgregg-nasienie-wolnosci-20160822t074530822z" + } ] \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_content_replies.pat.json b/hivemind/tavern/tags_api_patterns/get_content_replies.pat.json index da8feeef..23cc978b 100644 --- a/hivemind/tavern/tags_api_patterns/get_content_replies.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_content_replies.pat.json @@ -1,84 +1,84 @@ [ - { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - } - ], - "author": "kingtylervvs", - "author_reputation": 0, - "beneficiaries": [], - "body": "PARTY PARTY.... P - A - R - T - Y????? BECAUSE I GOTTA!", - "body_length": 55, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 0, - "created": "2016-07-17T19:38:12", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"meta\"]}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-07-17T19:38:12", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 742566481, - "parent_author": "admin", - "parent_permlink": "firstpost", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-admin-firstpost-20160717t193811098z", - "post_id": 110463, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/meta/@steemit/firstpost#@kingtylervvs/re-admin-firstpost-20160717t193811098z" - }, - { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "111000395", - "voter": "bustillos" - } - ], - "author": "gopher", - "author_reputation": 0, - "beneficiaries": [], - "body": "Are you admin in steem? If you have been hacked, who can help you?", - "body_length": 66, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 0, - "created": "2016-07-18T19:53:12", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"meta\"]}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-07-18T19:53:12", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 853566876, - "parent_author": "admin", - "parent_permlink": "firstpost", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-admin-firstpost-20160718t195306992z", - "post_id": 125730, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/meta/@steemit/firstpost#@gopher/re-admin-firstpost-20160718t195306992z" - } + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + } + ], + "author": "kingtylervvs", + "author_reputation": 0, + "beneficiaries": [], + "body": "PARTY PARTY.... P - A - R - T - Y????? BECAUSE I GOTTA!", + "body_length": 55, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-17T19:38:12", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-17T19:38:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 742566481, + "parent_author": "admin", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-admin-firstpost-20160717t193811098z", + "post_id": 151464, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@kingtylervvs/re-admin-firstpost-20160717t193811098z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "111000395", + "voter": "bustillos" + } + ], + "author": "gopher", + "author_reputation": 0, + "beneficiaries": [], + "body": "Are you admin in steem? If you have been hacked, who can help you?", + "body_length": 66, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-18T19:53:12", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-18T19:53:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 853566876, + "parent_author": "admin", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-admin-firstpost-20160718t195306992z", + "post_id": 172339, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@gopher/re-admin-firstpost-20160718t195306992z" + } ] \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_discussion.pat.json b/hivemind/tavern/tags_api_patterns/get_discussion.pat.json index 5498ad13..9ab77365 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussion.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussion.pat.json @@ -1,638 +1,638 @@ { - "active_votes": [ - { - "percent": "100", - "reputation": 0, - "rshares": "375241", - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5100", - "voter": "steemit78" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1259167", - "voter": "anonymous" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "318519", - "voter": "hello" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "153384", - "voter": "world" - }, - { - "percent": "-100", - "reputation": 0, - "rshares": "-936400", - "voter": "ned" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59412", - "voter": "fufubar1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14997", - "voter": "anonymous1" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "1441", - "voter": "red" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "551390835500", - "voter": "liondani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "82748", - "voter": "roadscape" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "10772", - "voter": "xeroc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "498863058", - "voter": "joelinux" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "9590417", - "voter": "piranhax" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "percent": "3600", - "reputation": 0, - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "425903066", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "422984262", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "47179379651", - "voter": "tosch" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7831667988", - "voter": "klye" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1019950749", - "voter": "coar" - }, - { - "percent": "1509", - "reputation": 0, - "rshares": "1746058458", - "voter": "murh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "hien-tran" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40624969", - "voter": "ben99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "917398502", - "voter": "decrypt" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1037079223", - "voter": "condra" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "233032838", - "voter": "jearson" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "240809500", - "voter": "tritium" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "226074637", - "voter": "artjedi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "931542394", - "voter": "anduweb" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2292983350", - "voter": "inertia" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "266262926", - "voter": "desmonid" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "71498008", - "voter": "madhatting" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23726644841", - "voter": "ubg" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "131577259", - "voter": "gribgo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "28907874049", - "voter": "orm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "528988007", - "voter": "qonq99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "129537329", - "voter": "rd7783" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "615020728", - "voter": "slava" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "95219365", - "voter": "curator" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "solos" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "blysards" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1279854", - "voter": "nigmat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10847083143", - "voter": "metrox" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "710989138", - "voter": "romancs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59366614", - "voter": "luke490" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58762473", - "voter": "bro66" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "201822591", - "voter": "future24" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58623688", - "voter": "mythras" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "matrixdweller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54761612", - "voter": "edbriv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "865125771", - "voter": "rittr" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52740989", - "voter": "tcstix" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "49467477", - "voter": "friedwater" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54017869", - "voter": "zelious" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53196086", - "voter": "f1111111" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "anomaly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "buckland" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "goldmatters" - } - ], - "author": "steemit", - "author_reputation": 0, - "beneficiaries": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "body_length": 224, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 36, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T18:30:18", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "parent_author": "", - "parent_permlink": "meta", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "Welcome to Steem!", - "total_payout_value": "0.942 HBD", - "url": "/meta/@steemit/firstpost" + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" } \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date.pat.json index a78dbc2b..7954c8dd 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date.pat.json @@ -1,640 +1,640 @@ [ - { - "active_votes": [ - { - "percent": "100", - "reputation": 0, - "rshares": "375241", - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5100", - "voter": "steemit78" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1259167", - "voter": "anonymous" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "318519", - "voter": "hello" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "153384", - "voter": "world" - }, - { - "percent": "-100", - "reputation": 0, - "rshares": "-936400", - "voter": "ned" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59412", - "voter": "fufubar1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14997", - "voter": "anonymous1" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "1441", - "voter": "red" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "551390835500", - "voter": "liondani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "82748", - "voter": "roadscape" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "10772", - "voter": "xeroc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "498863058", - "voter": "joelinux" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "9590417", - "voter": "piranhax" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "percent": "3600", - "reputation": 0, - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "425903066", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "422984262", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "47179379651", - "voter": "tosch" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7831667988", - "voter": "klye" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1019950749", - "voter": "coar" - }, - { - "percent": "1509", - "reputation": 0, - "rshares": "1746058458", - "voter": "murh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "hien-tran" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40624969", - "voter": "ben99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "917398502", - "voter": "decrypt" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1037079223", - "voter": "condra" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "233032838", - "voter": "jearson" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "240809500", - "voter": "tritium" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "226074637", - "voter": "artjedi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "931542394", - "voter": "anduweb" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2292983350", - "voter": "inertia" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "266262926", - "voter": "desmonid" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "71498008", - "voter": "madhatting" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23726644841", - "voter": "ubg" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "131577259", - "voter": "gribgo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "28907874049", - "voter": "orm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "528988007", - "voter": "qonq99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "129537329", - "voter": "rd7783" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "615020728", - "voter": "slava" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "95219365", - "voter": "curator" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "solos" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "blysards" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1279854", - "voter": "nigmat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10847083143", - "voter": "metrox" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "710989138", - "voter": "romancs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59366614", - "voter": "luke490" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58762473", - "voter": "bro66" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "201822591", - "voter": "future24" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58623688", - "voter": "mythras" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "matrixdweller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54761612", - "voter": "edbriv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "865125771", - "voter": "rittr" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52740989", - "voter": "tcstix" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "49467477", - "voter": "friedwater" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54017869", - "voter": "zelious" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53196086", - "voter": "f1111111" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "anomaly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "buckland" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "goldmatters" - } - ], - "author": "steemit", - "author_reputation": 0, - "beneficiaries": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "body_length": 224, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 36, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T18:30:18", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "parent_author": "", - "parent_permlink": "meta", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "Welcome to Steem!", - "total_payout_value": "0.942 HBD", - "url": "/meta/@steemit/firstpost" - } + { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + } ] \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_blog.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_blog.pat.json index a78dbc2b..7954c8dd 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_blog.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_blog.pat.json @@ -1,640 +1,640 @@ [ - { - "active_votes": [ - { - "percent": "100", - "reputation": 0, - "rshares": "375241", - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5100", - "voter": "steemit78" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1259167", - "voter": "anonymous" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "318519", - "voter": "hello" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "153384", - "voter": "world" - }, - { - "percent": "-100", - "reputation": 0, - "rshares": "-936400", - "voter": "ned" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59412", - "voter": "fufubar1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14997", - "voter": "anonymous1" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "1441", - "voter": "red" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "551390835500", - "voter": "liondani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "82748", - "voter": "roadscape" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "10772", - "voter": "xeroc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "498863058", - "voter": "joelinux" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "9590417", - "voter": "piranhax" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "percent": "3600", - "reputation": 0, - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "425903066", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "422984262", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "47179379651", - "voter": "tosch" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7831667988", - "voter": "klye" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1019950749", - "voter": "coar" - }, - { - "percent": "1509", - "reputation": 0, - "rshares": "1746058458", - "voter": "murh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "hien-tran" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40624969", - "voter": "ben99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "917398502", - "voter": "decrypt" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1037079223", - "voter": "condra" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "233032838", - "voter": "jearson" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "240809500", - "voter": "tritium" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "226074637", - "voter": "artjedi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "931542394", - "voter": "anduweb" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2292983350", - "voter": "inertia" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "266262926", - "voter": "desmonid" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "71498008", - "voter": "madhatting" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23726644841", - "voter": "ubg" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "131577259", - "voter": "gribgo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "28907874049", - "voter": "orm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "528988007", - "voter": "qonq99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "129537329", - "voter": "rd7783" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "615020728", - "voter": "slava" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "95219365", - "voter": "curator" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "solos" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "blysards" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1279854", - "voter": "nigmat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10847083143", - "voter": "metrox" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "710989138", - "voter": "romancs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59366614", - "voter": "luke490" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58762473", - "voter": "bro66" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "201822591", - "voter": "future24" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58623688", - "voter": "mythras" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "matrixdweller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54761612", - "voter": "edbriv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "865125771", - "voter": "rittr" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52740989", - "voter": "tcstix" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "49467477", - "voter": "friedwater" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54017869", - "voter": "zelious" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53196086", - "voter": "f1111111" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "anomaly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "buckland" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "goldmatters" - } - ], - "author": "steemit", - "author_reputation": 0, - "beneficiaries": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "body_length": 224, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 36, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T18:30:18", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "parent_author": "", - "parent_permlink": "meta", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "Welcome to Steem!", - "total_payout_value": "0.942 HBD", - "url": "/meta/@steemit/firstpost" - } + { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + } ] \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_comments.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_comments.pat.json index 5434a44a..f0cc63d8 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_comments.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_comments.pat.json @@ -1,94 +1,94 @@ [ - { - "active_votes": [ - { - "percent": "-100", - "reputation": 0, - "rshares": "-375241", - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5100", - "voter": "steemit46" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "81125", - "voter": "roadscape" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "425903066", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "431616594", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58854897335", - "voter": "business" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "244129227", - "voter": "kewpiedoll" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1615731741", - "voter": "naturalista" - } - ], - "author": "admin", - "author_reputation": 0, - "beneficiaries": [], - "body": "First Reply! Let's get this **party** started", - "body_length": 45, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 2, - "created": "2016-03-30T19:52:30", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T19:52:30", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 62423410900, - "parent_author": "steemit", - "parent_permlink": "firstpost", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "firstpost", - "post_id": 2, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/meta/@steemit/firstpost#@admin/firstpost" - } + { + "active_votes": [ + { + "percent": "-100", + "reputation": 0, + "rshares": "-375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit46" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81125", + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "431616594", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58854897335", + "voter": "business" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "244129227", + "voter": "kewpiedoll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1615731741", + "voter": "naturalista" + } + ], + "author": "admin", + "author_reputation": 0, + "beneficiaries": [], + "body": "First Reply! Let's get this **party** started", + "body_length": 45, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "created": "2016-03-30T19:52:30", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T19:52:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62423410900, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 2, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@admin/firstpost" + } ] \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json index 92391ceb..391bf27f 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json @@ -1,40 +1,40 @@ [ - { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "53926980", - "voter": "simgregg" - } - ], - "author": "simgregg", - "author_reputation": 0, - "beneficiaries": [], - "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", - "body_length": 1273, - "cashout_time": "2016-09-18T21:19:45", - "category": "polska", - "children": 1, - "created": "2016-08-18T21:19:45", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "json_metadata": "{\"tags\":[\"polska\",\"wolnosc\",\"ojczyzna\",\"patriotyzm\",\"wiersz\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-18T21:19:45", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 53926980, - "parent_author": "", - "parent_permlink": "polska", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "nasienie-wolnosci", - "post_id": 661285, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Nasienie Wolno\u015bci", - "title": "Nasienie Wolno\u015bci", - "total_payout_value": "0.000 HBD", - "url": "/polska/@simgregg/nasienie-wolnosci" - } + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "53926980", + "voter": "simgregg" + } + ], + "author": "simgregg", + "author_reputation": 0, + "beneficiaries": [], + "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", + "body_length": 1273, + "cashout_time": "2016-08-25T21:19:45", + "category": "polska", + "children": 1, + "created": "2016-08-18T21:19:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"polska\",\"wolnosc\",\"ojczyzna\",\"patriotyzm\",\"wiersz\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T21:19:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53926980, + "parent_author": "", + "parent_permlink": "polska", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "nasienie-wolnosci", + "post_id": 877987, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Nasienie Wolno\u015bci", + "title": "Nasienie Wolno\u015bci", + "total_payout_value": "0.000 HBD", + "url": "/polska/@simgregg/nasienie-wolnosci" + } ] \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_hot.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_hot.pat.json index 7fb5fde0..b83cc419 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_hot.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_hot.pat.json @@ -1,40 +1,40 @@ -[ - { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "53926980", - "voter": "simgregg" - } - ], - "author": "simgregg", - "author_reputation": 0, - "beneficiaries": [], - "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", - "body_length": 1273, - "cashout_time": "2016-09-18T21:19:45", - "category": "polska", - "children": 1, - "created": "2016-08-18T21:19:45", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "json_metadata": "{\"tags\":[\"polska\",\"wolnosc\",\"ojczyzna\",\"patriotyzm\",\"wiersz\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-18T21:19:45", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 53926980, - "parent_author": "", - "parent_permlink": "polska", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "nasienie-wolnosci", - "post_id": 661285, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Nasienie Wolno\u015bci", - "title": "Nasienie Wolno\u015bci", - "total_payout_value": "0.000 HBD", - "url": "/polska/@simgregg/nasienie-wolnosci" - } -] \ No newline at end of file +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "53926980", + "voter": "simgregg" + } + ], + "author": "simgregg", + "author_reputation": 0, + "beneficiaries": [], + "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", + "body_length": 1273, + "cashout_time": "2016-08-25T21:19:45", + "category": "polska", + "children": 1, + "created": "2016-08-18T21:19:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"polska\",\"wolnosc\",\"ojczyzna\",\"patriotyzm\",\"wiersz\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T21:19:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53926980, + "parent_author": "", + "parent_permlink": "polska", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "nasienie-wolnosci", + "post_id": 877987, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Nasienie Wolno\u015bci", + "title": "Nasienie Wolno\u015bci", + "total_payout_value": "0.000 HBD", + "url": "/polska/@simgregg/nasienie-wolnosci" + } +] diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json index 7fba8e0e..19ebc0d2 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json @@ -1,2590 +1,2590 @@ [ - { - "active_votes": [ - { - "percent": "-10000", - "reputation": 0, - "rshares": "-28338941273774", - "voter": "dantheman" - }, - { - "percent": "-10000", - "reputation": 0, - "rshares": "-56560374008", - "voter": "fminerten1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "515865522774", - "voter": "panadacoin" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "591238736691", - "voter": "barrie" - }, - { - "percent": "-10000", - "reputation": 0, - "rshares": "-31244889730986", - "voter": "smooth" - }, - { - "percent": "-10000", - "reputation": 0, - "rshares": "-25869425303440", - "voter": "berniesanders" - }, - { - "percent": "8900", - "reputation": 0, - "rshares": "56923627230317", - "voter": "ned" - }, - { - "percent": "-4000", - "reputation": 0, - "rshares": "-61162327823", - "voter": "highasfuck" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5861402538757", - "voter": "riverhead" - }, - { - "percent": "3500", - "reputation": 0, - "rshares": "2012701974707", - "voter": "kushed" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1105925638130", - "voter": "ihashfury" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1595196737607", - "voter": "rossco99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "986803208166", - "voter": "liondani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5034399699326", - "voter": "steemit200" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3103422054", - "voter": "boy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3767892961", - "voter": "bue-witness" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "690943799", - "voter": "bunny" - }, - { - "percent": "4900", - "reputation": 0, - "rshares": "3573913851034", - "voter": "complexring" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "6282474172783", - "voter": "clayop" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54717838235", - "voter": "bue" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1662987228", - "voter": "mini" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "213785292", - "voter": "moon" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "209038160029", - "voter": "alex90342fastn1" - }, - { - "percent": "1000", - "reputation": 0, - "rshares": "7692488765", - "voter": "aizensou" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3455872549975", - "voter": "au1nethyb1" - }, - { - "percent": "5000", - "reputation": 0, - "rshares": "6781848343", - "voter": "bentley" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1387859952", - "voter": "mineralwasser" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "106098683047", - "voter": "bonapartist" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "855490468340", - "voter": "boombastic" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "115524100455", - "voter": "mrs.agsexplorer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "8261386990", - "voter": "bingo-0" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2104057003", - "voter": "bingo-1" - }, - { - "percent": "-10000", - "reputation": 0, - "rshares": "-5694232013608", - "voter": "smooth.witness" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "988597560715", - "voter": "benjojo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "564763376378", - "voter": "boatymcboatface" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "168058097416", - "voter": "pairmike" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "61457593326", - "voter": "vip" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "29414306405", - "voter": "proctologic" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "624912728", - "voter": "healthcare" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "902943814", - "voter": "stoner19" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "971397151", - "voter": "daniel.pan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "400674324536", - "voter": "woo7739" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "821205239311", - "voter": "steemrollin" - }, - { - "percent": "1000", - "reputation": 0, - "rshares": "16122243298", - "voter": "team" - }, - { - "percent": "2100", - "reputation": 0, - "rshares": "68140066479", - "voter": "chitty" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "335329901210", - "voter": "lighthil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "288337653", - "voter": "helen.tan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "84761882611", - "voter": "unosuke" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "221378412917", - "voter": "noaommerrr" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "156355134109", - "voter": "vitaly-lvov" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "125237012083", - "voter": "edgeland" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "384189354393", - "voter": "craig-grant" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "78953157492", - "voter": "easteagle13" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "24177692381", - "voter": "mod-tamichh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "47071100260", - "voter": "cyan91" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "182161233136", - "voter": "samuel-stone" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "27507445535", - "voter": "full-measure" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "15043635029", - "voter": "jademont" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1091318863571", - "voter": "gavvet" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3913661416", - "voter": "hbhades" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "537679658162", - "voter": "eeks" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "477297643", - "voter": "paco-steem" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "19875326051", - "voter": "hipster" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5373300397", - "voter": "spaninv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "31632644129", - "voter": "james-show" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2191644256", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1709548184767", - "voter": "cryptoctopus" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "292403125620", - "voter": "pal" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "91790166084", - "voter": "william-noe" - }, - { - "percent": "5000", - "reputation": 0, - "rshares": "6782998784", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "134023949190", - "voter": "steve-walschot" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "32871946754", - "voter": "dan-atstarlite" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "490595494", - "voter": "coar" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "67870898638", - "voter": "asch" - }, - { - "percent": "5000", - "reputation": 0, - "rshares": "286727574871", - "voter": "kevinwong" - }, - { - "percent": "3301", - "reputation": 0, - "rshares": "1425998946", - "voter": "murh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1703165248", - "voter": "brian-lukassen" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7184649989", - "voter": "cryptofunk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "584817224", - "voter": "kodi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "79084857477", - "voter": "theshell" - }, - { - "percent": "3000", - "reputation": 0, - "rshares": "22641839395", - "voter": "thecryptofiend" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51307800519", - "voter": "justtryme90" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5388661415", - "voter": "zebbra2014" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3915776982262", - "voter": "satoshifund" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "403407002721", - "voter": "taoteh1221" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "426836364", - "voter": "applecrisp" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "372600185", - "voter": "stiletto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "147474797358", - "voter": "killerstorm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "370486042445", - "voter": "hedge-x" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "6226063990", - "voter": "hisnameisolllie" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "4666893911", - "voter": "wingz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53642020280", - "voter": "juanmiguelsalas" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "112536244257", - "voter": "kenny-crane" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18290477525", - "voter": "samether" - }, - { - "percent": "3000", - "reputation": 0, - "rshares": "20435826971", - "voter": "ratel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4477973596", - "voter": "dahaz159" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13353893819", - "voter": "facer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "19195451431", - "voter": "ziv" - }, - { - "percent": "-10000", - "reputation": 0, - "rshares": "-37886485933", - "voter": "cheftony" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "814177904", - "voter": "proglobyte" - }, - { - "percent": "7500", - "reputation": 0, - "rshares": "6651057809", - "voter": "grandpere" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "187723859372", - "voter": "mexbit" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5901731263", - "voter": "mark-waser" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "13475779704", - "voter": "publicworker" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "106662592446", - "voter": "geoffrey" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "46106881411", - "voter": "honeythief" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2879418324", - "voter": "mammasitta" - }, - { - "percent": "5000", - "reputation": 0, - "rshares": "22456450828", - "voter": "marco-delsalto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "6740408834", - "voter": "tyler-fletcher" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "90461089451", - "voter": "mctiller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "70695307715", - "voter": "freedomengineer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14764907307", - "voter": "magnebit" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "73424982025", - "voter": "razvanelulmarin" - }, - { - "percent": "900", - "reputation": 0, - "rshares": "4332771254", - "voter": "treeshaface" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "17687843258", - "voter": "frankjones" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18766219906", - "voter": "skapaneas" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5157854283", - "voter": "micheletrainer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "17552893571", - "voter": "grey580" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "283436852", - "voter": "ladyclair" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "288748933789", - "voter": "ericvancewalton" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52215058764", - "voter": "booja" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "331004446932", - "voter": "roelandp" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4775693686", - "voter": "dennygalindo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "62198582831", - "voter": "lehard" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "249608253", - "voter": "ivp" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "86432384761", - "voter": "rubybian" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3299480410", - "voter": "orly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "254364900", - "voter": "mstang83" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "22617124650", - "voter": "katyakov" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "122156869592", - "voter": "robrigo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48022035978", - "voter": "menta" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "977288096", - "voter": "lontong" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "135562023252", - "voter": "chhayll" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13300237653", - "voter": "r4fken" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "124913925653", - "voter": "derekareith" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "26683327851", - "voter": "picokernel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2707813985", - "voter": "wintrop" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "514388137239", - "voter": "neoxian" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "25581639649", - "voter": "strangerarray" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1344524912605", - "voter": "renohq" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "155010079441", - "voter": "knircky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5523230874", - "voter": "on0tole" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "71594122778", - "voter": "sigmajin" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "16832656768", - "voter": "ausbitbank" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "42564757970", - "voter": "mrwang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1268462097", - "voter": "mixa" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "8279675078", - "voter": "autosmile13" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40069670306", - "voter": "wesam" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1632266140", - "voter": "steem1653" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "55667692", - "voter": "cynetyc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4524453413", - "voter": "gikitiki" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4046708005", - "voter": "steemit-life" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4687463894", - "voter": "thegoodguy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40136504296", - "voter": "biophil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3759809896", - "voter": "karen13" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2630980347", - "voter": "jbouchard12" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "27635550326", - "voter": "dwinblood" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "24959867898", - "voter": "igster" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10845979381", - "voter": "deviedev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "228465690", - "voter": "zoicneo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "296045327034", - "voter": "nabilov" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "79351054414", - "voter": "ntomaino" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13957994657", - "voter": "meesterboom" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12385010041", - "voter": "domavila" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "400742354", - "voter": "karenmckersie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "484888225", - "voter": "luisucv34" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5747716426", - "voter": "krystle" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "75001817111", - "voter": "inertia" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "44353154247", - "voter": "yongyoon" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7146190847", - "voter": "lichtblick" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9028095567", - "voter": "warrensteem" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3710621464", - "voter": "maximkichev" - }, - { - "percent": "1000", - "reputation": 0, - "rshares": "5254853525", - "voter": "sbq777t" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13560062590", - "voter": "nippel66" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3175676972", - "voter": "imp3" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2552560220", - "voter": "sgnsteems" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "189609178496", - "voter": "blueorgy" - }, - { - "percent": "1400", - "reputation": 0, - "rshares": "4380569189", - "voter": "wadepaterson" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "296100567501", - "voter": "calaber24p" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "20078314404", - "voter": "mustafaomar" - }, - { - "percent": "4900", - "reputation": 0, - "rshares": "7161559782", - "voter": "all-of-us" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "8247905495", - "voter": "magz8716" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18706560189", - "voter": "bendjmiller222" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4078813249", - "voter": "tarindel" - }, - { - "percent": "5000", - "reputation": 0, - "rshares": "13966407599", - "voter": "beowulfoflegend" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23276095473", - "voter": "deanliu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5317355087", - "voter": "rainchen" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9242725695", - "voter": "oumar" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5575772867", - "voter": "sharker" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "182819821534", - "voter": "jl777" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1103176661", - "voter": "oecp85" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "977888223951", - "voter": "james212" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "818040957", - "voter": "flyboyzombie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "39295777834", - "voter": "zaebars" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1428031362", - "voter": "alekst" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1782690382", - "voter": "yarly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "125979055", - "voter": "kottai" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "269576627", - "voter": "yarly2" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "269980297", - "voter": "yarly3" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "156093986", - "voter": "yarly4" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "156975275", - "voter": "yarly5" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "89476508", - "voter": "yarly7" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56769328536", - "voter": "arcurus" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "115403915", - "voter": "charbelnamm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9802713874", - "voter": "alsprinting" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4554249461", - "voter": "gustavopasquini" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10450628476", - "voter": "moon32walker" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "25772328103", - "voter": "marius19" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13637653306", - "voter": "lemooljiang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "15826604583", - "voter": "winstonwolfe" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "455136533", - "voter": "kooshikoo" - }, - { - "percent": "2300", - "reputation": 0, - "rshares": "8541510354", - "voter": "fatboy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "15580395475", - "voter": "proto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "639099484", - "voter": "curator" - }, - { - "percent": "8200", - "reputation": 0, - "rshares": "2410557662", - "voter": "ace108" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "432302630", - "voter": "yarly10" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1634018670", - "voter": "alex.chien" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "231618512", - "voter": "yarly11" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13498521499", - "voter": "michaeldodridge" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "81028161", - "voter": "yarly12" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1713978326", - "voter": "remlaps" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "165045645", - "voter": "beanz" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "273280899", - "voter": "clevecross" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "31769283842", - "voter": "smailer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "149502446", - "voter": "steemster1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4564708091", - "voter": "sulev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2873988066", - "voter": "dmilash" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3459421629", - "voter": "carlas10" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1493719735", - "voter": "spinner" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4189235490", - "voter": "glitterpig" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7874311492", - "voter": "taker" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "689524426", - "voter": "pakisnxt" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5394692942", - "voter": "theprophet0" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4481547788", - "voter": "theprophet" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "61911147", - "voter": "sharon" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7265644466", - "voter": "dumar022" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "61700262", - "voter": "lillianjones" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "46418159604", - "voter": "capitalism" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "588460890536", - "voter": "toxic" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "8609049381", - "voter": "darknet" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14224054622", - "voter": "gmurph" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "655589667", - "voter": "xtester" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2090553241", - "voter": "achim86" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4256758523", - "voter": "ullikume" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "8452120116", - "voter": "kurtbeil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "60138244071", - "voter": "poteshnik83" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99476907271", - "voter": "thisisbenbrick" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "392193612", - "voter": "wiser" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "112411845286", - "voter": "terrycraft" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1348324437", - "voter": "dolov" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "21004018124", - "voter": "jphamer1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "11270713350", - "voter": "ekitcho" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "150794650", - "voter": "bigsambucca" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "83986507131", - "voter": "joele" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5527031256", - "voter": "oflyhigh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57523014", - "voter": "nickche" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2512217855", - "voter": "kainmarx" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "493960660", - "voter": "future24" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "63555792", - "voter": "msjennifer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58453204", - "voter": "ciao" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3015124995", - "voter": "villainblack" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3439786891", - "voter": "cmorton" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "219039434", - "voter": "xcepta" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "748990287", - "voter": "jrcornel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57914427", - "voter": "steemo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "19865005311", - "voter": "hanshotfirst" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56535984", - "voter": "steema" - }, - { - "percent": "3000", - "reputation": 0, - "rshares": "5769564425", - "voter": "highlite" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "73061236", - "voter": "evgenyche" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "65927774", - "voter": "bhavnapatel68" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "71228043", - "voter": "confucius" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "28924632850", - "voter": "mrosenquist" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "74898697", - "voter": "elenirossidou" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58639072", - "voter": "jarvis" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "102741069", - "voter": "lisadang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "78765183", - "voter": "razberrijam" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10750764390", - "voter": "matrixdweller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56726999", - "voter": "fortuner" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2816953736", - "voter": "virtualgrowth" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "1399636656", - "voter": "anotherjoe" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59750246", - "voter": "saveliy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5927843564", - "voter": "solarguy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "890579467", - "voter": "crazycow" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3977281078", - "voter": "lamech-m" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9470181501", - "voter": "mrgrey" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "382699085", - "voter": "crezyliza" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12003456501", - "voter": "gvargas123" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "55399493", - "voter": "johnbyrd" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56575537", - "voter": "thomasaustin" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "55394920", - "voter": "thermor" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56570509", - "voter": "ficholl" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "55387660", - "voter": "widell" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10109582992", - "voter": "elissahawke" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "88078809749", - "voter": "icfiedler" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "192287988", - "voter": "steevc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1592064374", - "voter": "movievertigo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54991366", - "voter": "revelbrooks" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23660021285", - "voter": "andrewawerdna" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5932358367", - "voter": "trev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48131519933", - "voter": "dragonanarchist" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "79979619", - "voter": "joelbow" - }, - { - "percent": "5000", - "reputation": 0, - "rshares": "4001380728", - "voter": "sethlinson" - }, - { - "percent": "1000", - "reputation": 0, - "rshares": "2391702679", - "voter": "hilarski" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "101945845", - "voter": "slorunner" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1679360131", - "voter": "imag1ne" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58631508", - "voter": "pacino" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57412782", - "voter": "drsamkhan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54999739", - "voter": "curpose" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "103040256", - "voter": "adrevel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "61202458", - "voter": "steembriefing" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2894276750", - "voter": "fat-like-buddha" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "64070582", - "voter": "iosif" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1559083086", - "voter": "ines-f" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1893166639", - "voter": "cryptoeasy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9771811576", - "voter": "etcmike" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4912386907", - "voter": "ats-david" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "947456313", - "voter": "runridefly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "69985187", - "voter": "stephenkendal" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "80557869", - "voter": "jlufer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2475119042", - "voter": "contentjunkie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99564797338", - "voter": "shenanigator" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7076299362", - "voter": "daveks" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "61715783", - "voter": "uziriel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3325599818", - "voter": "funkywanderer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "11968284833", - "voter": "ryan-singer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53961187", - "voter": "troich" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56665974", - "voter": "viktorriver" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7018683565", - "voter": "mdoolsky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3103345545", - "voter": "xanoxt" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1652709870", - "voter": "davidjkelley" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "6919572472", - "voter": "davidbrogan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53966805", - "voter": "crion" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53622549", - "voter": "hitherise" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54730557", - "voter": "wiss" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12191050487", - "voter": "ghasemkiani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "15497139800", - "voter": "digital-wisdom" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3938044420", - "voter": "ethical-ai" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54362089", - "voter": "stroully" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2032879970", - "voter": "matthewtiii" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5655677010", - "voter": "jwaser" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54019345", - "voter": "thadm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54017499", - "voter": "prof" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56837113", - "voter": "blogx" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "55043079", - "voter": "zettar" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "17788079417", - "voter": "hunterisgreat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1089484775", - "voter": "smisi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53640464", - "voter": "yorsens" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "85546636", - "voter": "the-ego-is-you" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53331040", - "voter": "bane" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "537067064", - "voter": "winglessss" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53324520", - "voter": "vive" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53318865", - "voter": "coad" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "287913287", - "voter": "totosky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1697516350", - "voter": "baodog" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2664939129", - "voter": "bwaser" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52988378", - "voter": "sofa" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "732461217", - "voter": "ct-gurus" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "220578638", - "voter": "mamo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1706277109", - "voter": "ibringawareness" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "860146710", - "voter": "kingarbinv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53039974", - "voter": "ailo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4841952237", - "voter": "burnin" - }, - { - "percent": "3300", - "reputation": 0, - "rshares": "558512952", - "voter": "bitcoinparadise" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "206212756", - "voter": "ballinconscious" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4652459969", - "voter": "gringalicious" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2770826537", - "voter": "steempowerwhale" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1336513482", - "voter": "rigaronib" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "390796425", - "voter": "echoesinthemind" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "357202147", - "voter": "soldier" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "55826263", - "voter": "nelyp" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2339486479", - "voter": "ellepdub" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50852949", - "voter": "gregorygarcia" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9400577403", - "voter": "herpetologyguy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51470533", - "voter": "eavy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51468937", - "voter": "roto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "70358845", - "voter": "ancientofdays" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52648858", - "voter": "psyduck" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "330163263", - "voter": "robotev1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4796038584", - "voter": "morgan.waser" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "147415673", - "voter": "flowergirl" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51141851", - "voter": "slow" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "101153586", - "voter": "anns" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1693077690", - "voter": "nil1511" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "846735133", - "voter": "greenwayoflife" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50798322", - "voter": "breeze" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50796122", - "voter": "factom" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50794039", - "voter": "autodesk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50708837", - "voter": "ardly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50704078", - "voter": "yotoh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50570250", - "voter": "ziggo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50482289", - "voter": "connection" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50433760", - "voter": "morse" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50317220", - "voter": "piphunters" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1824788165", - "voter": "cwbrooch" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1161216291", - "voter": "ayim" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3675242983", - "voter": "strong-ai" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "346259703", - "voter": "julia26" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "488963228", - "voter": "grisha-danunaher" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "696884040", - "voter": "ziogio" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "77637243", - "voter": "igtes" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "80800689", - "voter": "timalex" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "79083956", - "voter": "silverbackjonz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23984282056", - "voter": "abdullar" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1204472546", - "voter": "expedition" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "157643687", - "voter": "buffett" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "162128433", - "voter": "cebymaster" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "143818142", - "voter": "eunnykim" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "162785391", - "voter": "olga4ka" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1065182434", - "voter": "rusteemitblog" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "161974443", - "voter": "zapply" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "158642800", - "voter": "ranger" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "282877474", - "voter": "witchcraftblog" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "975048251", - "voter": "nikomah" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "161212160", - "voter": "origin" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "161205518", - "voter": "acute" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "160973134", - "voter": "gravity" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "157801695", - "voter": "realtime" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "157654556", - "voter": "pawel-krawczyk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "125721183", - "voter": "rubenkusters" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "160269480", - "voter": "adpipop" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "103667189", - "voter": "charli" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "147606365", - "voter": "laskovskiy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "65836326", - "voter": "serikus" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "147145004", - "voter": "fer32p" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "159524423", - "voter": "radent" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "125821091", - "voter": "jasonxg" - } - ], - "author": "ned", - "author_reputation": 0, - "beneficiaries": [], - "body": "https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\n\n# Over the last few weeks I've been thinking about ways we could increase the demand for Steem Power, the quality of curated content and the incentives to participate as a Steem curator.\n\nHere are a couple ideas I have been kicking around. They're not fully mature and could use a good rinsing by the community.\n\n## Allow Steem holders to delegate their Steem Power voting rights to a **voting pool**\n\nA delegated voting pool could socialize voting power and individualize rewards. One prime use for this could be the @steemit account. @steemit could create a voting pool and invite anyone with a verified identity and good reputation to join the pool as a curator. This could increase the number of unique curators, help bootstrap Steem as an identity database and give people even more incentives to sign up.\n\nTo show the numbers, an example would be Alice Bob and Charley each delegate their SP of 2, 3, and 7 to one voting pool. Now they each have 4, 4, and 4 SP to be used to curate. Better curation would earn them more curation rewards. \n\nA side effect of delegated voting pools could be voting markets. Any user would have the power to create a voting pool and these users could charge curators for participation. Some of the platform's whales could be interested in offering subscription models to minnows as a way to get more voting influence.\n\n## If powering down stake loses voting influence\n\nImagine that any stake being powered down would lose its rights to use voting influence. This could make the system very clear in the regard that stake is either in or it is out. Users could be able to choose any % of their stake to power down regardless of how many accounts they have and only the % stake that is powering down would lose voting influence. Stopping a power down could return all voting rights.\n\nPerhaps the effect of this could be 1/ more interest to stay in the platform and 2/ more fluidity in the witness queue 3/ more fairness regarding the PoS nature of Steem 4/ more clarity from participants looking to exit the system\n\n## Combined effect?\nPerhaps these proposals could have a combined effect that increases the demand and fluidity of Steem Power while improving the curated experience for people visiting Steem based websites.\n\n#### What are your thoughts and questions?", - "body_length": 2399, - "cashout_time": "2016-10-09T02:14:24", - "category": "steem", - "children": 315, - "created": "2016-09-07T15:44:51", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https:\\/\\/www.biznessapps.com\\/blog\\/wp-content\\/uploads\\/2013\\/12\\/shutterstock_148639682.png\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-07T15:50:51", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 21098346399884, - "parent_author": "", - "parent_permlink": "steem", - "pending_payout_value": "47.461 HBD", - "percent_steem_dollars": 10000, - "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", - "post_id": 882849, - "promoted": "500.000 HBD", - "replies": [], - "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction", - "title": "Increasing Curation, Demand for Steem Power and Community Interaction", - "total_payout_value": "0.000 HBD", - "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction" - } -] \ No newline at end of file + { + "active_votes": [ + { + "percent": "-10000", + "reputation": 0, + "rshares": "-28338941273774", + "voter": "dantheman" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-56560374008", + "voter": "fminerten1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "515865522774", + "voter": "panadacoin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "591238736691", + "voter": "barrie" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-31244889730986", + "voter": "smooth" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-25869425303440", + "voter": "berniesanders" + }, + { + "percent": "8900", + "reputation": 0, + "rshares": "56923627230317", + "voter": "ned" + }, + { + "percent": "-4000", + "reputation": 0, + "rshares": "-61162327823", + "voter": "highasfuck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5861402538757", + "voter": "riverhead" + }, + { + "percent": "3500", + "reputation": 0, + "rshares": "2012701974707", + "voter": "kushed" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1105925638130", + "voter": "ihashfury" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1595196737607", + "voter": "rossco99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "986803208166", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5034399699326", + "voter": "steemit200" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3103422054", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3767892961", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "690943799", + "voter": "bunny" + }, + { + "percent": "4900", + "reputation": 0, + "rshares": "3573913851034", + "voter": "complexring" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6282474172783", + "voter": "clayop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54717838235", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1662987228", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213785292", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "209038160029", + "voter": "alex90342fastn1" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "7692488765", + "voter": "aizensou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3455872549975", + "voter": "au1nethyb1" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "6781848343", + "voter": "bentley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1387859952", + "voter": "mineralwasser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106098683047", + "voter": "bonapartist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "855490468340", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115524100455", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8261386990", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2104057003", + "voter": "bingo-1" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-5694232013608", + "voter": "smooth.witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "988597560715", + "voter": "benjojo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "564763376378", + "voter": "boatymcboatface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "168058097416", + "voter": "pairmike" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61457593326", + "voter": "vip" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "29414306405", + "voter": "proctologic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "624912728", + "voter": "healthcare" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "902943814", + "voter": "stoner19" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "971397151", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "400674324536", + "voter": "woo7739" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "821205239311", + "voter": "steemrollin" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "16122243298", + "voter": "team" + }, + { + "percent": "2100", + "reputation": 0, + "rshares": "68140066479", + "voter": "chitty" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "335329901210", + "voter": "lighthil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "288337653", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "84761882611", + "voter": "unosuke" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "221378412917", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156355134109", + "voter": "vitaly-lvov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125237012083", + "voter": "edgeland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "384189354393", + "voter": "craig-grant" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "78953157492", + "voter": "easteagle13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24177692381", + "voter": "mod-tamichh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47071100260", + "voter": "cyan91" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "182161233136", + "voter": "samuel-stone" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27507445535", + "voter": "full-measure" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15043635029", + "voter": "jademont" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1091318863571", + "voter": "gavvet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3913661416", + "voter": "hbhades" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "537679658162", + "voter": "eeks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "477297643", + "voter": "paco-steem" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "19875326051", + "voter": "hipster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5373300397", + "voter": "spaninv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31632644129", + "voter": "james-show" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2191644256", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1709548184767", + "voter": "cryptoctopus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "292403125620", + "voter": "pal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "91790166084", + "voter": "william-noe" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "6782998784", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "134023949190", + "voter": "steve-walschot" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32871946754", + "voter": "dan-atstarlite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "490595494", + "voter": "coar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "67870898638", + "voter": "asch" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "286727574871", + "voter": "kevinwong" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1425998946", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1703165248", + "voter": "brian-lukassen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7184649989", + "voter": "cryptofunk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "584817224", + "voter": "kodi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79084857477", + "voter": "theshell" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "22641839395", + "voter": "thecryptofiend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51307800519", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5388661415", + "voter": "zebbra2014" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3915776982262", + "voter": "satoshifund" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "403407002721", + "voter": "taoteh1221" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "426836364", + "voter": "applecrisp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "372600185", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147474797358", + "voter": "killerstorm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "370486042445", + "voter": "hedge-x" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "6226063990", + "voter": "hisnameisolllie" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "4666893911", + "voter": "wingz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53642020280", + "voter": "juanmiguelsalas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112536244257", + "voter": "kenny-crane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18290477525", + "voter": "samether" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "20435826971", + "voter": "ratel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4477973596", + "voter": "dahaz159" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13353893819", + "voter": "facer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19195451431", + "voter": "ziv" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-37886485933", + "voter": "cheftony" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "814177904", + "voter": "proglobyte" + }, + { + "percent": "7500", + "reputation": 0, + "rshares": "6651057809", + "voter": "grandpere" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "187723859372", + "voter": "mexbit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5901731263", + "voter": "mark-waser" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "13475779704", + "voter": "publicworker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106662592446", + "voter": "geoffrey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46106881411", + "voter": "honeythief" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2879418324", + "voter": "mammasitta" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "22456450828", + "voter": "marco-delsalto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6740408834", + "voter": "tyler-fletcher" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "90461089451", + "voter": "mctiller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "70695307715", + "voter": "freedomengineer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14764907307", + "voter": "magnebit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73424982025", + "voter": "razvanelulmarin" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "4332771254", + "voter": "treeshaface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17687843258", + "voter": "frankjones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18766219906", + "voter": "skapaneas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5157854283", + "voter": "micheletrainer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17552893571", + "voter": "grey580" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "283436852", + "voter": "ladyclair" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "288748933789", + "voter": "ericvancewalton" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52215058764", + "voter": "booja" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "331004446932", + "voter": "roelandp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4775693686", + "voter": "dennygalindo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62198582831", + "voter": "lehard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "249608253", + "voter": "ivp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "86432384761", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3299480410", + "voter": "orly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "254364900", + "voter": "mstang83" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22617124650", + "voter": "katyakov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "122156869592", + "voter": "robrigo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48022035978", + "voter": "menta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "977288096", + "voter": "lontong" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "135562023252", + "voter": "chhayll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13300237653", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "124913925653", + "voter": "derekareith" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "26683327851", + "voter": "picokernel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2707813985", + "voter": "wintrop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "514388137239", + "voter": "neoxian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25581639649", + "voter": "strangerarray" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1344524912605", + "voter": "renohq" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155010079441", + "voter": "knircky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5523230874", + "voter": "on0tole" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71594122778", + "voter": "sigmajin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16832656768", + "voter": "ausbitbank" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42564757970", + "voter": "mrwang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1268462097", + "voter": "mixa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8279675078", + "voter": "autosmile13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40069670306", + "voter": "wesam" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1632266140", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55667692", + "voter": "cynetyc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4524453413", + "voter": "gikitiki" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4046708005", + "voter": "steemit-life" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4687463894", + "voter": "thegoodguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40136504296", + "voter": "biophil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3759809896", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2630980347", + "voter": "jbouchard12" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27635550326", + "voter": "dwinblood" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24959867898", + "voter": "igster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10845979381", + "voter": "deviedev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "228465690", + "voter": "zoicneo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "296045327034", + "voter": "nabilov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79351054414", + "voter": "ntomaino" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13957994657", + "voter": "meesterboom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12385010041", + "voter": "domavila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "400742354", + "voter": "karenmckersie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "484888225", + "voter": "luisucv34" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5747716426", + "voter": "krystle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75001817111", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44353154247", + "voter": "yongyoon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7146190847", + "voter": "lichtblick" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9028095567", + "voter": "warrensteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3710621464", + "voter": "maximkichev" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "5254853525", + "voter": "sbq777t" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13560062590", + "voter": "nippel66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3175676972", + "voter": "imp3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2552560220", + "voter": "sgnsteems" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "189609178496", + "voter": "blueorgy" + }, + { + "percent": "1400", + "reputation": 0, + "rshares": "4380569189", + "voter": "wadepaterson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "296100567501", + "voter": "calaber24p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20078314404", + "voter": "mustafaomar" + }, + { + "percent": "4900", + "reputation": 0, + "rshares": "7161559782", + "voter": "all-of-us" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8247905495", + "voter": "magz8716" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18706560189", + "voter": "bendjmiller222" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4078813249", + "voter": "tarindel" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "13966407599", + "voter": "beowulfoflegend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23276095473", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5317355087", + "voter": "rainchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9242725695", + "voter": "oumar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5575772867", + "voter": "sharker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "182819821534", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1103176661", + "voter": "oecp85" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "977888223951", + "voter": "james212" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "818040957", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39295777834", + "voter": "zaebars" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1428031362", + "voter": "alekst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1782690382", + "voter": "yarly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125979055", + "voter": "kottai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "269576627", + "voter": "yarly2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "269980297", + "voter": "yarly3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156093986", + "voter": "yarly4" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156975275", + "voter": "yarly5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "89476508", + "voter": "yarly7" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56769328536", + "voter": "arcurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115403915", + "voter": "charbelnamm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9802713874", + "voter": "alsprinting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4554249461", + "voter": "gustavopasquini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10450628476", + "voter": "moon32walker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25772328103", + "voter": "marius19" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13637653306", + "voter": "lemooljiang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15826604583", + "voter": "winstonwolfe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "455136533", + "voter": "kooshikoo" + }, + { + "percent": "2300", + "reputation": 0, + "rshares": "8541510354", + "voter": "fatboy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15580395475", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "639099484", + "voter": "curator" + }, + { + "percent": "8200", + "reputation": 0, + "rshares": "2410557662", + "voter": "ace108" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "432302630", + "voter": "yarly10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1634018670", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "231618512", + "voter": "yarly11" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13498521499", + "voter": "michaeldodridge" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81028161", + "voter": "yarly12" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1713978326", + "voter": "remlaps" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "165045645", + "voter": "beanz" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "273280899", + "voter": "clevecross" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31769283842", + "voter": "smailer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "149502446", + "voter": "steemster1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4564708091", + "voter": "sulev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2873988066", + "voter": "dmilash" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3459421629", + "voter": "carlas10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1493719735", + "voter": "spinner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4189235490", + "voter": "glitterpig" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7874311492", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "689524426", + "voter": "pakisnxt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5394692942", + "voter": "theprophet0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4481547788", + "voter": "theprophet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61911147", + "voter": "sharon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7265644466", + "voter": "dumar022" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61700262", + "voter": "lillianjones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46418159604", + "voter": "capitalism" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "588460890536", + "voter": "toxic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8609049381", + "voter": "darknet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14224054622", + "voter": "gmurph" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "655589667", + "voter": "xtester" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2090553241", + "voter": "achim86" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4256758523", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8452120116", + "voter": "kurtbeil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60138244071", + "voter": "poteshnik83" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99476907271", + "voter": "thisisbenbrick" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392193612", + "voter": "wiser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112411845286", + "voter": "terrycraft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1348324437", + "voter": "dolov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21004018124", + "voter": "jphamer1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11270713350", + "voter": "ekitcho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "150794650", + "voter": "bigsambucca" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "83986507131", + "voter": "joele" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5527031256", + "voter": "oflyhigh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57523014", + "voter": "nickche" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2512217855", + "voter": "kainmarx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "493960660", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63555792", + "voter": "msjennifer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58453204", + "voter": "ciao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3015124995", + "voter": "villainblack" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3439786891", + "voter": "cmorton" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "219039434", + "voter": "xcepta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "748990287", + "voter": "jrcornel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57914427", + "voter": "steemo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19865005311", + "voter": "hanshotfirst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56535984", + "voter": "steema" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "5769564425", + "voter": "highlite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73061236", + "voter": "evgenyche" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "65927774", + "voter": "bhavnapatel68" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71228043", + "voter": "confucius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28924632850", + "voter": "mrosenquist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "74898697", + "voter": "elenirossidou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58639072", + "voter": "jarvis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "102741069", + "voter": "lisadang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "78765183", + "voter": "razberrijam" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10750764390", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56726999", + "voter": "fortuner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2816953736", + "voter": "virtualgrowth" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1399636656", + "voter": "anotherjoe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59750246", + "voter": "saveliy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5927843564", + "voter": "solarguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "890579467", + "voter": "crazycow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3977281078", + "voter": "lamech-m" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9470181501", + "voter": "mrgrey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "382699085", + "voter": "crezyliza" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12003456501", + "voter": "gvargas123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55399493", + "voter": "johnbyrd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56575537", + "voter": "thomasaustin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55394920", + "voter": "thermor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56570509", + "voter": "ficholl" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55387660", + "voter": "widell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10109582992", + "voter": "elissahawke" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88078809749", + "voter": "icfiedler" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "192287988", + "voter": "steevc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1592064374", + "voter": "movievertigo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54991366", + "voter": "revelbrooks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23660021285", + "voter": "andrewawerdna" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5932358367", + "voter": "trev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48131519933", + "voter": "dragonanarchist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79979619", + "voter": "joelbow" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "4001380728", + "voter": "sethlinson" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2391702679", + "voter": "hilarski" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "101945845", + "voter": "slorunner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1679360131", + "voter": "imag1ne" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58631508", + "voter": "pacino" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57412782", + "voter": "drsamkhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54999739", + "voter": "curpose" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103040256", + "voter": "adrevel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61202458", + "voter": "steembriefing" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2894276750", + "voter": "fat-like-buddha" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64070582", + "voter": "iosif" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1559083086", + "voter": "ines-f" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1893166639", + "voter": "cryptoeasy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9771811576", + "voter": "etcmike" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4912386907", + "voter": "ats-david" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "947456313", + "voter": "runridefly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "69985187", + "voter": "stephenkendal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "80557869", + "voter": "jlufer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2475119042", + "voter": "contentjunkie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99564797338", + "voter": "shenanigator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7076299362", + "voter": "daveks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61715783", + "voter": "uziriel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3325599818", + "voter": "funkywanderer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11968284833", + "voter": "ryan-singer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53961187", + "voter": "troich" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56665974", + "voter": "viktorriver" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7018683565", + "voter": "mdoolsky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3103345545", + "voter": "xanoxt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1652709870", + "voter": "davidjkelley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6919572472", + "voter": "davidbrogan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53966805", + "voter": "crion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53622549", + "voter": "hitherise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54730557", + "voter": "wiss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12191050487", + "voter": "ghasemkiani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15497139800", + "voter": "digital-wisdom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3938044420", + "voter": "ethical-ai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54362089", + "voter": "stroully" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2032879970", + "voter": "matthewtiii" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5655677010", + "voter": "jwaser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54019345", + "voter": "thadm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017499", + "voter": "prof" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56837113", + "voter": "blogx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55043079", + "voter": "zettar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17788079417", + "voter": "hunterisgreat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1089484775", + "voter": "smisi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53640464", + "voter": "yorsens" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "85546636", + "voter": "the-ego-is-you" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53331040", + "voter": "bane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "537067064", + "voter": "winglessss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53324520", + "voter": "vive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53318865", + "voter": "coad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287913287", + "voter": "totosky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1697516350", + "voter": "baodog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2664939129", + "voter": "bwaser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52988378", + "voter": "sofa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "732461217", + "voter": "ct-gurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "220578638", + "voter": "mamo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1706277109", + "voter": "ibringawareness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "860146710", + "voter": "kingarbinv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53039974", + "voter": "ailo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4841952237", + "voter": "burnin" + }, + { + "percent": "3300", + "reputation": 0, + "rshares": "558512952", + "voter": "bitcoinparadise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "206212756", + "voter": "ballinconscious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4652459969", + "voter": "gringalicious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2770826537", + "voter": "steempowerwhale" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1336513482", + "voter": "rigaronib" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "390796425", + "voter": "echoesinthemind" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "357202147", + "voter": "soldier" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55826263", + "voter": "nelyp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2339486479", + "voter": "ellepdub" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50852949", + "voter": "gregorygarcia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9400577403", + "voter": "herpetologyguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51470533", + "voter": "eavy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51468937", + "voter": "roto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "70358845", + "voter": "ancientofdays" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52648858", + "voter": "psyduck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "330163263", + "voter": "robotev1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4796038584", + "voter": "morgan.waser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147415673", + "voter": "flowergirl" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51141851", + "voter": "slow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "101153586", + "voter": "anns" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1693077690", + "voter": "nil1511" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "846735133", + "voter": "greenwayoflife" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50798322", + "voter": "breeze" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50796122", + "voter": "factom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50794039", + "voter": "autodesk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50708837", + "voter": "ardly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50704078", + "voter": "yotoh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50570250", + "voter": "ziggo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50482289", + "voter": "connection" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50433760", + "voter": "morse" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50317220", + "voter": "piphunters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1824788165", + "voter": "cwbrooch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1161216291", + "voter": "ayim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3675242983", + "voter": "strong-ai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "346259703", + "voter": "julia26" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "488963228", + "voter": "grisha-danunaher" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "696884040", + "voter": "ziogio" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "77637243", + "voter": "igtes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "80800689", + "voter": "timalex" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79083956", + "voter": "silverbackjonz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23984282056", + "voter": "abdullar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1204472546", + "voter": "expedition" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157643687", + "voter": "buffett" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "162128433", + "voter": "cebymaster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "143818142", + "voter": "eunnykim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "162785391", + "voter": "olga4ka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1065182434", + "voter": "rusteemitblog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161974443", + "voter": "zapply" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158642800", + "voter": "ranger" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "282877474", + "voter": "witchcraftblog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "975048251", + "voter": "nikomah" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161212160", + "voter": "origin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161205518", + "voter": "acute" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "160973134", + "voter": "gravity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157801695", + "voter": "realtime" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157654556", + "voter": "pawel-krawczyk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125721183", + "voter": "rubenkusters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "160269480", + "voter": "adpipop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103667189", + "voter": "charli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147606365", + "voter": "laskovskiy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "65836326", + "voter": "serikus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147145004", + "voter": "fer32p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "159524423", + "voter": "radent" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125821091", + "voter": "jasonxg" + } + ], + "author": "ned", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\n\n# Over the last few weeks I've been thinking about ways we could increase the demand for Steem Power, the quality of curated content and the incentives to participate as a Steem curator.\n\nHere are a couple ideas I have been kicking around. They're not fully mature and could use a good rinsing by the community.\n\n## Allow Steem holders to delegate their Steem Power voting rights to a **voting pool**\n\nA delegated voting pool could socialize voting power and individualize rewards. One prime use for this could be the @steemit account. @steemit could create a voting pool and invite anyone with a verified identity and good reputation to join the pool as a curator. This could increase the number of unique curators, help bootstrap Steem as an identity database and give people even more incentives to sign up.\n\nTo show the numbers, an example would be Alice Bob and Charley each delegate their SP of 2, 3, and 7 to one voting pool. Now they each have 4, 4, and 4 SP to be used to curate. Better curation would earn them more curation rewards. \n\nA side effect of delegated voting pools could be voting markets. Any user would have the power to create a voting pool and these users could charge curators for participation. Some of the platform's whales could be interested in offering subscription models to minnows as a way to get more voting influence.\n\n## If powering down stake loses voting influence\n\nImagine that any stake being powered down would lose its rights to use voting influence. This could make the system very clear in the regard that stake is either in or it is out. Users could be able to choose any % of their stake to power down regardless of how many accounts they have and only the % stake that is powering down would lose voting influence. Stopping a power down could return all voting rights.\n\nPerhaps the effect of this could be 1/ more interest to stay in the platform and 2/ more fluidity in the witness queue 3/ more fairness regarding the PoS nature of Steem 4/ more clarity from participants looking to exit the system\n\n## Combined effect?\nPerhaps these proposals could have a combined effect that increases the demand and fluidity of Steem Power while improving the curated experience for people visiting Steem based websites.\n\n#### What are your thoughts and questions?", + "body_length": 2399, + "cashout_time": "2016-09-14T15:44:51", + "category": "steem", + "children": 315, + "created": "2016-09-07T15:44:51", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-07T15:50:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 21098346399884, + "parent_author": "", + "parent_permlink": "steem", + "pending_payout_value": "47.466 HBD", + "percent_hbd": 10000, + "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", + "post_id": 1160043, + "promoted": "500.000 HBD", + "replies": [], + "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction", + "title": "Increasing Curation, Demand for Steem Power and Community Interaction", + "total_payout_value": "0.000 HBD", + "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction" + } +] diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_trending.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_trending.pat.json index 7fb5fde0..b83cc419 100644 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_trending.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_trending.pat.json @@ -1,40 +1,40 @@ -[ - { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "53926980", - "voter": "simgregg" - } - ], - "author": "simgregg", - "author_reputation": 0, - "beneficiaries": [], - "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", - "body_length": 1273, - "cashout_time": "2016-09-18T21:19:45", - "category": "polska", - "children": 1, - "created": "2016-08-18T21:19:45", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "json_metadata": "{\"tags\":[\"polska\",\"wolnosc\",\"ojczyzna\",\"patriotyzm\",\"wiersz\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-18T21:19:45", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 53926980, - "parent_author": "", - "parent_permlink": "polska", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "nasienie-wolnosci", - "post_id": 661285, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Nasienie Wolno\u015bci", - "title": "Nasienie Wolno\u015bci", - "total_payout_value": "0.000 HBD", - "url": "/polska/@simgregg/nasienie-wolnosci" - } -] \ No newline at end of file +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "53926980", + "voter": "simgregg" + } + ], + "author": "simgregg", + "author_reputation": 0, + "beneficiaries": [], + "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", + "body_length": 1273, + "cashout_time": "2016-08-25T21:19:45", + "category": "polska", + "children": 1, + "created": "2016-08-18T21:19:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"polska\",\"wolnosc\",\"ojczyzna\",\"patriotyzm\",\"wiersz\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T21:19:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53926980, + "parent_author": "", + "parent_permlink": "polska", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "nasienie-wolnosci", + "post_id": 877987, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Nasienie Wolno\u015bci", + "title": "Nasienie Wolno\u015bci", + "total_payout_value": "0.000 HBD", + "url": "/polska/@simgregg/nasienie-wolnosci" + } +] diff --git a/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json b/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json index 7fb5fde0..391bf27f 100644 --- a/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json +++ b/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json @@ -1,40 +1,40 @@ -[ - { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "53926980", - "voter": "simgregg" - } - ], - "author": "simgregg", - "author_reputation": 0, - "beneficiaries": [], - "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", - "body_length": 1273, - "cashout_time": "2016-09-18T21:19:45", - "category": "polska", - "children": 1, - "created": "2016-08-18T21:19:45", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "json_metadata": "{\"tags\":[\"polska\",\"wolnosc\",\"ojczyzna\",\"patriotyzm\",\"wiersz\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-18T21:19:45", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 53926980, - "parent_author": "", - "parent_permlink": "polska", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "nasienie-wolnosci", - "post_id": 661285, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Nasienie Wolno\u015bci", - "title": "Nasienie Wolno\u015bci", - "total_payout_value": "0.000 HBD", - "url": "/polska/@simgregg/nasienie-wolnosci" - } +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "53926980", + "voter": "simgregg" + } + ], + "author": "simgregg", + "author_reputation": 0, + "beneficiaries": [], + "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", + "body_length": 1273, + "cashout_time": "2016-08-25T21:19:45", + "category": "polska", + "children": 1, + "created": "2016-08-18T21:19:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"polska\",\"wolnosc\",\"ojczyzna\",\"patriotyzm\",\"wiersz\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T21:19:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53926980, + "parent_author": "", + "parent_permlink": "polska", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "nasienie-wolnosci", + "post_id": 877987, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Nasienie Wolno\u015bci", + "title": "Nasienie Wolno\u015bci", + "total_payout_value": "0.000 HBD", + "url": "/polska/@simgregg/nasienie-wolnosci" + } ] \ No newline at end of file diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index 8d737fd4..dbc0cd7f 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -33,7 +33,7 @@ marks: - patterntest - failing - - xfail + - xfail # payout is zero in some cases, grey, flag_weight, total_votes counts all without filtering includes: - !include common.yaml @@ -64,7 +64,7 @@ marks: - patterntest - failing - - xfail + - xfail # total_votes (new version counts all the listed votes, old does not count some) includes: - !include common.yaml @@ -95,7 +95,7 @@ marks: - patterntest - failing - - xfail + - xfail # total_votes counts all without filtering includes: - !include common.yaml @@ -125,8 +125,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -214,6 +212,8 @@ marks: - patterntest + - failing + - xfail # no results (underlying functionality is not working) includes: - !include common.yaml @@ -229,7 +229,7 @@ jsonrpc: "2.0" id: 1 method: "bridge.post_notifications" - params: {"author":"steemit", "permlink":"firstpost"} + params: {"author":"admin", "permlink":"firstpost", "min_score":15} response: status_code: 200 verify_response_with: @@ -243,6 +243,8 @@ marks: - patterntest + - failing + - xfail # no results (underlying functionality is not working) includes: - !include common.yaml @@ -258,7 +260,7 @@ jsonrpc: "2.0" id: 1 method: "bridge.account_notifications" - params: {"account":"steemit","limit":100} + params: {"account":"steemit", "min_score": 15, "limit":20} response: status_code: 200 verify_response_with: @@ -272,6 +274,8 @@ marks: - patterntest + - failing + - xfail # underlying mechanism seems to be nonfunctional (related hive_notifs table is empty but it shouldn't) includes: - !include common.yaml @@ -287,7 +291,7 @@ jsonrpc: "2.0" id: 1 method: "bridge.unread_notifications" - params: {"account":"steemit"} + params: {"account":"steemit", "min_score":15} response: status_code: 200 verify_response_with: @@ -301,8 +305,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -333,7 +335,7 @@ marks: - patterntest - failing - - xfail + - xfail # test should probably be removed from 5mln set since it will return error when incorrect community id is passed and communities did not exist then includes: - !include common.yaml @@ -362,7 +364,7 @@ test_name: Hivemind bridge_api.list_communities patterns test marks: - - patterntest + - patterntest # no nonempty result possible for 5mln set includes: - !include common.yaml @@ -391,7 +393,7 @@ test_name: Hivemind bridge_api.list_community_roles patterns test marks: - - patterntest + - patterntest # no nonempty result possible for 5mln set includes: - !include common.yaml @@ -420,7 +422,7 @@ test_name: Hivemind bridge_api.list_subscribers patterns test marks: - - patterntest + - patterntest # no nonempty result possible for 5mln set includes: - !include common.yaml @@ -449,7 +451,7 @@ test_name: Hivemind bridge_api.list_all_subscriptions patterns test marks: - - patterntest + - patterntest # no nonempty result possible for 5mln set includes: - !include common.yaml diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index 096cce9e..ecf901b8 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -90,8 +90,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -121,8 +119,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -152,8 +148,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -184,7 +178,7 @@ marks: - patterntest - failing - - xfail + - xfail # some tags have too many comments/top_posts, influences total_payouts (problem when post is deleted and recreated); once that is fixed rest of total_payouts can be slightly different includes: - !include common.yaml @@ -214,8 +208,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -245,8 +237,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -276,8 +266,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -307,8 +295,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -338,8 +324,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -368,7 +352,7 @@ test_name: Hivemind condenser_api.get_discussions_by_feed patterns test marks: - - patterntest + - patterntest # can't find any params that would give nonempty results includes: - !include common.yaml @@ -398,8 +382,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -429,8 +411,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -460,8 +440,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -491,8 +469,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -522,8 +498,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -553,8 +527,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -641,7 +613,7 @@ test_name: Hivemind condenser_api.get_reblogged_by patterns test marks: - - patterntest + - patterntest # result is empty because reblogging functionality started past 5mln blocks includes: - !include common.yaml @@ -671,6 +643,8 @@ marks: - patterntest + - failing + - xfail # wrong pattern, wrong test params (empty result) includes: - !include common.yaml @@ -700,8 +674,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -724,4 +696,4 @@ function: validate_response:compare_response_with_pattern extra_kwargs: method: "get_active_votes" - directory: "condenser_api_patterns" \ No newline at end of file + directory: "condenser_api_patterns" diff --git a/hivemind/tavern/test_database_api_patterns.tavern.yaml b/hivemind/tavern/test_database_api_patterns.tavern.yaml index 64b64963..5bc084c5 100644 --- a/hivemind/tavern/test_database_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_database_api_patterns.tavern.yaml @@ -4,7 +4,7 @@ marks: - patterntest - failing - - xfail + - xfail # plenty of differences but comparable includes: - !include common.yaml @@ -35,7 +35,7 @@ marks: - patterntest - failing - - xfail + - xfail # plenty of differences but comparable includes: - !include common.yaml @@ -51,7 +51,7 @@ jsonrpc: "2.0" id: 1 method: "database_api.find_comments" - params: {"start":[["steemit","firstpost"]], "limit":10, "order":"by_author"} + params: {"comments":[["steemit","firstpost"]]} response: status_code: 200 verify_response_with: @@ -66,6 +66,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -99,6 +101,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest + - failing - xfail # shows error when there is only one of optional value (first) includes: @@ -133,6 +136,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest + - failing - xfail # shows error when there is only one of optional value (first) includes: @@ -172,6 +176,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest + - failing + - xfail # incomparable (problem with ordering most likely) includes: - !include common.yaml @@ -211,8 +217,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - - xfail # show first posts comments - failing + - xfail # no results; show first posts comments includes: - !include common.yaml @@ -247,6 +253,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -280,6 +288,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -309,7 +319,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - - xfail # problem with date cashout_time = "1970-01-01 00:00:00" or 1969-12-31T23:59:59 + - failing + - xfail # incomparable (problem with ordering most likely) includes: - !include common.yaml @@ -344,8 +355,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - - xfail # wrong output, given cashout_time exist in database (output later 2016-09-15T19:47:27) - failing + - xfail # incomparable (problem with ordering most likely) includes: - !include common.yaml @@ -381,6 +392,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest + - failing + - xfail # plenty of differences but comparable includes: - !include common.yaml @@ -410,6 +423,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest + - failing + - xfail # plenty of differences but comparable, wrong(?) encoding includes: - !include common.yaml @@ -439,6 +454,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest # author first - when empty, takes alphabetical (later by permlink) + - failing + - xfail # plenty of differences but comparable, wrong(?) encoding includes: - !include common.yaml @@ -477,6 +494,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest + - failing + - xfail # plenty of differences but comparable includes: - !include common.yaml @@ -516,6 +535,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" goo marks: - patterntest + - failing + - xfail # incomparable (problems with ordering most likely) includes: - !include common.yaml @@ -550,8 +571,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" no marks: - patterntest - - xfail # first two params are required - failing + - xfail # incomparable (problems with ordering most likely); first two params are required includes: - !include common.yaml @@ -586,6 +607,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" onl marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -619,8 +642,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" req marks: - patterntest - - xfail # wrong output - failing + - xfail # incomparable (problems with ordering most likely) includes: - !include common.yaml @@ -655,6 +678,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" req marks: - patterntest + - failing + - xfail # plenty of differences but comparable includes: - !include common.yaml @@ -689,6 +714,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" all marks: - patterntest + - failing + - xfail # incomparable (problems with ordering most likely) includes: - !include common.yaml @@ -723,8 +750,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" wit marks: - patterntest - - xfail # child_author, child_permlink are optional - failing + - xfail # child_author, child_permlink are optional includes: - !include common.yaml @@ -758,6 +785,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" wro marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -791,6 +820,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" wro marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -825,6 +856,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" marks: - patterntest + - failing + - xfail # multiple problems but comparable includes: - !include common.yaml @@ -859,8 +892,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest - - xfail # first 2 params are required - failing + - xfail # incomparable (problems with ordering most likely); first 2 params are required includes: - !include common.yaml @@ -895,8 +928,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest - - xfail # second param is required - failing + - xfail # second param is required includes: @@ -932,6 +965,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" r marks: - patterntest + - failing + - xfail # plenty of differences but comparable includes: - !include common.yaml @@ -966,8 +1001,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" c marks: - patterntest - - xfail # child_author, child_permlink are optional - failing + - xfail # child_author, child_permlink are optional includes: @@ -1002,6 +1037,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" a marks: - patterntest + - failing + - xfail # multiple problems but comparable includes: - !include common.yaml @@ -1036,8 +1073,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest - - xfail # unexpected output - takes it aplhabetical from author - failing + - xfail # plenty of differences but comparable includes: @@ -1074,6 +1111,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest + - failing + - xfail # incomparable (problem with ordering most likely) includes: - !include common.yaml @@ -1108,6 +1147,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -1141,6 +1182,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -1174,6 +1217,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest + - failing + - xfail # incomparable (problem with ordering most likely) includes: - !include common.yaml @@ -1208,6 +1253,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest + - failing + - xfail # incomparable (problem with ordering most likely) includes: - !include common.yaml @@ -1242,8 +1289,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest - - xfail # output should be the same as prev test or with completely diff author - failing + - xfail # incomparable (problem with ordering most likely); output should be the same as prev test or with completely diff author includes: @@ -1280,6 +1327,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -1309,8 +1358,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest - - xfail # first arg is author, not date (error about date) - failing + - xfail # first arg is author, not date (error about date) includes: @@ -1345,8 +1394,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest - - xfail # shows different comment than expected - failing + - xfail # incomparable (problem with ordering most likely) includes: @@ -1382,6 +1431,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -1415,6 +1466,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest + - failing + - xfail includes: - !include common.yaml @@ -1448,7 +1501,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest - - xfail # show last comments in base + - failing + - xfail # incomparable (problem with ordering most likely); show last comments in base includes: - !include common.yaml @@ -1483,6 +1537,8 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest + - failing + - xfail includes: - !include common.yaml diff --git a/hivemind/tavern/test_follow_api_patterns.tavern.yaml b/hivemind/tavern/test_follow_api_patterns.tavern.yaml index 8bb50b30..82eb2095 100644 --- a/hivemind/tavern/test_follow_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_follow_api_patterns.tavern.yaml @@ -119,8 +119,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -178,7 +176,7 @@ test_name: Hivemind follow_api.get_reblogged_by patterns test marks: - - patterntest + - patterntest # result is empty because reblogging functionality started past 5mln blocks includes: - !include common.yaml diff --git a/hivemind/tavern/test_tags_api_patterns.tavern.yaml b/hivemind/tavern/test_tags_api_patterns.tavern.yaml index a722578f..2fe8d365 100644 --- a/hivemind/tavern/test_tags_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_tags_api_patterns.tavern.yaml @@ -3,8 +3,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -34,8 +32,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -65,8 +61,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -96,8 +90,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -127,8 +119,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -158,8 +148,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -189,8 +177,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -220,8 +206,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -251,8 +235,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -282,8 +264,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -313,8 +293,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml diff --git a/hivemind/tavern/validate_response.py b/hivemind/tavern/validate_response.py index 0149557b..adabf7d8 100644 --- a/hivemind/tavern/validate_response.py +++ b/hivemind/tavern/validate_response.py @@ -8,13 +8,19 @@ def json_pretty_string(json_obj): def save_diff(name, diff): """ Save diff to a file """ with open(name, 'w') as f: - f.write(str(diff)) + f.write(json_pretty_string(diff)) f.write("\n") def save_response(file_name, response_json): """ Save response to file """ with open(file_name, 'w') as f: - f.writelines(json_pretty_string(response_json)) + f.write(json_pretty_string(response_json)) + f.write("\n") + +def save_no_response(file_name, msg): + """ Save lack of response to file """ + with open(file_name, 'w') as f: + f.write(msg) RESPONSE_FILE_EXT = ".out.json" PATTERN_FILE_EXT = ".pat.json" @@ -27,22 +33,46 @@ def load_pattern(name): ret = load(f) return ret -def compare_response_with_pattern(response, method=None, directory=None): +def remove_tag(data, tags_to_remove): + if not isinstance(data, (dict, list)): + return data + if isinstance(data, list): + return [remove_tag(v, tags_to_remove) for v in data] + return {k: remove_tag(v, tags_to_remove) for k, v in data.items() if k not in tags_to_remove} + +def compare_response_with_pattern(response, method=None, directory=None, ignore_tags=None): """ This method will compare response with pattern file """ + import os + fname = directory + "/" + method + DIFF_FILE_EXT + response_fname = directory + "/" + method + RESPONSE_FILE_EXT + if os.path.exists(fname): + os.remove(fname) + if os.path.exists(response_fname): + os.remove(response_fname) + response_json = response.json() + if ignore_tags is not None: + assert isinstance(ignore_tags, list), "ignore_tags should be list of tags" + response_json = remove_tag(response_json, ignore_tags) error = response_json.get("error", None) result = response_json.get("result", None) - assert error is None, "Error detected in response: {}".format(error["message"]) - assert result is not None, "Error detected in response: result is null, json object was expected" + if error is not None: + msg = "Error detected in response: {}".format(error["message"]) + save_no_response(response_fname, msg) + raise PatternDiffException(msg) + if result is None: + msg = "Error detected in response: result is null, json object was expected" + save_no_response(response_fname, msg) + raise PatternDiffException(msg) - import jsondiff + import deepdiff pattern = load_pattern(directory + "/" + method + PATTERN_FILE_EXT) - pattern_resp_diff = jsondiff.diff(pattern, result) + if ignore_tags is not None: + pattern = remove_tag(pattern, ignore_tags) + pattern_resp_diff = deepdiff.DeepDiff(pattern, result) if pattern_resp_diff: - fname = directory + "/" + method + DIFF_FILE_EXT - response_fname = directory + "/" + method + RESPONSE_FILE_EXT - save_diff(fname, pattern_resp_diff) save_response(response_fname, result) + save_diff(fname, pattern_resp_diff) msg = "Differences detected between response and pattern. Diff saved to {}\n\nDiff:\n{}".format(fname, pattern_resp_diff) raise PatternDiffException(msg) @@ -50,4 +80,4 @@ def compare_error_message(response, message): response_json = response.json() error = response_json.get("error", None) if error['message'] != message: - raise PatternDiffException('error message not equal, expected: "' + message + '" given: "' + error['message'] + '"') \ No newline at end of file + raise PatternDiffException('error message not equal, expected: "' + message + '" given: "' + error['message'] + '"') -- GitLab From dbc3328f2c3d4064f3d14b452c4a72b8c5852710 Mon Sep 17 00:00:00 2001 From: Pawel Maniora Date: Tue, 18 Aug 2020 13:38:40 +0200 Subject: [PATCH 23/49] bridge api tests --- .../get_account_posts_sort_blog.pat.json | 442 + .../get_account_posts_sort_comments.pat.json | 1 + .../get_account_posts_sort_feed.pat.json | 1 + .../get_account_posts_sort_payout.pat.json | 1 + .../get_account_posts_sort_replies.pat.json | 1031 + .../get_discussion_gtg.pat.json | 416 + .../bridge_api_patterns/get_post_gtg.pat.json | 754 + .../get_post_header_gtg.pat.json | 7 + .../bridge_api_patterns/get_profile.pat.json | 4 +- .../get_profile_gtg.pat.json | 25 + .../get_ranked_posts.pat.json | 26410 ++++++++-------- .../get_ranked_posts_created.pat.json | 2196 ++ .../get_ranked_posts_hot.pat.json | 10354 ++++++ .../get_ranked_posts_muted.pat.json | 2221 ++ .../get_ranked_posts_payout.pat.json | 1 + .../get_ranked_posts_payout_comments.pat.json | 3681 +++ .../get_ranked_posts_promoted.pat.json | 98 + .../get_ranked_posts_tag_hive-123.pat.json | 1 + .../get_ranked_posts_tag_petrodollar.pat.json | 477 + .../get_trending_topics_limit_2.pat.json | 10 + .../test_bridge_api_patterns.tavern.yaml | 744 +- hivemind/tavern/validate_response.py | 6 + 22 files changed, 35638 insertions(+), 13243 deletions(-) create mode 100644 hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_account_posts_sort_comments.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_account_posts_sort_feed.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_account_posts_sort_payout.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_account_posts_sort_replies.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_discussion_gtg.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_post_gtg.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_post_header_gtg.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_profile_gtg.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_created.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout_comments.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_promoted.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_hive-123.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_petrodollar.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_trending_topics_limit_2.pat.json diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.pat.json b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.pat.json new file mode 100644 index 00000000..6c667880 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.pat.json @@ -0,0 +1,442 @@ +[ + { + "active_votes": [ + { + "rshares": "375241", + "voter": "dantheman" + }, + { + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "rshares": "5100", + "voter": "steemit78" + }, + { + "rshares": "1259167", + "voter": "anonymous" + }, + { + "rshares": "318519", + "voter": "hello" + }, + { + "rshares": "153384", + "voter": "world" + }, + { + "rshares": "-936400", + "voter": "ned" + }, + { + "rshares": "59412", + "voter": "fufubar1" + }, + { + "rshares": "14997", + "voter": "anonymous1" + }, + { + "rshares": "1441", + "voter": "red" + }, + { + "rshares": "551390835500", + "voter": "liondani" + }, + { + "rshares": "82748", + "voter": "roadscape" + }, + { + "rshares": "10772", + "voter": "xeroc" + }, + { + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "rshares": "498863058", + "voter": "joelinux" + }, + { + "rshares": "9590417", + "voter": "piranhax" + }, + { + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "rshares": "422984262", + "voter": "acidyo" + }, + { + "rshares": "47179379651", + "voter": "tosch" + }, + { + "rshares": "7831667988", + "voter": "klye" + }, + { + "rshares": "1019950749", + "voter": "coar" + }, + { + "rshares": "1746058458", + "voter": "murh" + }, + { + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "rshares": "0", + "voter": "hien-tran" + }, + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "40624969", + "voter": "ben99" + }, + { + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "rshares": "917398502", + "voter": "decrypt" + }, + { + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "rshares": "1037079223", + "voter": "condra" + }, + { + "rshares": "233032838", + "voter": "jearson" + }, + { + "rshares": "240809500", + "voter": "tritium" + }, + { + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "rshares": "226074637", + "voter": "artjedi" + }, + { + "rshares": "931542394", + "voter": "anduweb" + }, + { + "rshares": "2292983350", + "voter": "inertia" + }, + { + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "rshares": "266262926", + "voter": "desmonid" + }, + { + "rshares": "71498008", + "voter": "madhatting" + }, + { + "rshares": "23726644841", + "voter": "ubg" + }, + { + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "rshares": "131577259", + "voter": "gribgo" + }, + { + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "rshares": "28907874049", + "voter": "orm" + }, + { + "rshares": "528988007", + "voter": "qonq99" + }, + { + "rshares": "129537329", + "voter": "rd7783" + }, + { + "rshares": "615020728", + "voter": "slava" + }, + { + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "rshares": "95219365", + "voter": "curator" + }, + { + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "rshares": "0", + "voter": "solos" + }, + { + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "rshares": "0", + "voter": "blysards" + }, + { + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "rshares": "1279854", + "voter": "nigmat" + }, + { + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "rshares": "10847083143", + "voter": "metrox" + }, + { + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "rshares": "710989138", + "voter": "romancs" + }, + { + "rshares": "59366614", + "voter": "luke490" + }, + { + "rshares": "58762473", + "voter": "bro66" + }, + { + "rshares": "201822591", + "voter": "future24" + }, + { + "rshares": "58623688", + "voter": "mythras" + }, + { + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "rshares": "0", + "voter": "matrixdweller" + }, + { + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "rshares": "54761612", + "voter": "edbriv" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "rshares": "52740989", + "voter": "tcstix" + }, + { + "rshares": "49467477", + "voter": "friedwater" + }, + { + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "rshares": "54017869", + "voter": "zelious" + }, + { + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "rshares": "53196086", + "voter": "f1111111" + }, + { + "rshares": "0", + "voter": "anomaly" + }, + { + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "rshares": "0", + "voter": "buckland" + }, + { + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_payout_value": "0.942 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "payout": 1.698, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 92 + }, + "title": "Welcome to Steem!", + "updated": "2016-03-30T18:30:18", + "url": "/meta/@steemit/firstpost" + } +] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_comments.pat.json b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_comments.pat.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_comments.pat.json @@ -0,0 +1 @@ +[] diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_feed.pat.json b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_feed.pat.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_feed.pat.json @@ -0,0 +1 @@ +[] diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_payout.pat.json b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_payout.pat.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_payout.pat.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_replies.pat.json b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_replies.pat.json new file mode 100644 index 00000000..a768bae2 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_replies.pat.json @@ -0,0 +1,1031 @@ +[ + { + "active_votes": [], + "author": "jack8831", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "You support fantastic system now!", + "category": "meta", + "children": 0, + "created": "2016-08-24T09:30:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160824t093007335z", + "post_id": 729186, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-24T09:30:03", + "url": "/meta/@steemit/firstpost#@jack8831/re-steemit-firstpost-20160824t093007335z" + }, + { + "active_votes": [ + { + "rshares": "-75407549856", + "voter": "vault" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "57599604", + "voter": "abanks1000" + }, + { + "rshares": "54993432", + "voter": "landarin" + } + ], + "author": "rittr", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I am Comment **Number 35** on the first Steemit Poster evaaar!", + "category": "meta", + "children": 0, + "created": "2016-08-24T02:53:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -74429831049, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160824t025355199z", + "post_id": 726644, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 1.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-24T02:53:57", + "url": "/meta/@steemit/firstpost#@rittr/re-steemit-firstpost-20160824t025355199z" + }, + { + "active_votes": [ + { + "rshares": "53122308", + "voter": "mandarin99" + } + ], + "author": "future24", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Thank you!", + "category": "meta", + "children": 0, + "created": "2016-08-18T03:02:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53122308, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160818t030224104z", + "post_id": 650694, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-18T03:02:24", + "url": "/meta/@steemit/firstpost#@future24/re-steemit-firstpost-20160818t030224104z" + }, + { + "active_votes": [ + { + "rshares": "23067571373", + "voter": "ubg" + }, + { + "rshares": "999297062", + "voter": "juurop" + }, + { + "rshares": "823625727", + "voter": "usb" + }, + { + "rshares": "5546862495", + "voter": "tannukas6" + }, + { + "rshares": "694394716", + "voter": "tox" + }, + { + "rshares": "692185541", + "voter": "runridefly" + } + ], + "author": "ubg", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "You have quadruple the liquidity any of the exchanges have. \n## Just make it rain!\nhttp://i.imgur.com/Maj5zM2.gif", + "category": "meta", + "children": 0, + "created": "2016-08-13T14:32:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://i.imgur.com/Maj5zM2.gif" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 31823936914, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160813t143213453z", + "post_id": 585908, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 6 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-13T14:32:18", + "url": "/meta/@steemit/firstpost#@ubg/re-steemit-firstpost-20160813t143213453z" + }, + { + "active_votes": [ + { + "rshares": "47738566", + "voter": "alktoni" + }, + { + "rshares": "555987168", + "voter": "funkywanderer" + }, + { + "rshares": "45336058", + "voter": "andressilvera" + }, + { + "rshares": "50997147", + "voter": "david.prochnow" + } + ], + "author": "flandude", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "http://i.imgsafe.org/d01598860e.jpg", + "category": "meta", + "children": 0, + "created": "2016-08-11T22:53:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://i.imgsafe.org/d01598860e.jpg" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 700058939, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160811t225325571z", + "post_id": 563725, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-11T22:53:27", + "url": "/meta/@steemit/firstpost#@flandude/re-steemit-firstpost-20160811t225325571z" + }, + { + "active_votes": [ + { + "rshares": "74273734", + "voter": "bitmaxt" + }, + { + "rshares": "56152551", + "voter": "lovetosteemit" + } + ], + "author": "deanliu", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "is this post truly the time zero, the origin, the big bang of all?", + "category": "meta", + "children": 0, + "created": "2016-08-10T08:33:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 130426285, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160810t083336206z", + "post_id": 537479, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-10T08:33:54", + "url": "/meta/@steemit/firstpost#@deanliu/re-steemit-firstpost-20160810t083336206z" + }, + { + "active_votes": [ + { + "rshares": "90409341", + "voter": "jelloducky" + }, + { + "rshares": "58727187", + "voter": "rezrez" + } + ], + "author": "jelloducky", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "This platform is inspiring, thank you so much!", + "category": "meta", + "children": 0, + "created": "2016-08-07T21:53:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 149136528, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160807t215340468z", + "post_id": 498164, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-07T21:53:39", + "url": "/meta/@steemit/firstpost#@jelloducky/re-steemit-firstpost-20160807t215340468z" + }, + { + "active_votes": [], + "author": "rednetkjh", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service", + "category": "meta", + "children": 0, + "created": "2016-08-04T06:16:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "links": [ + "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160804t061605576z", + "post_id": 440665, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-04T06:16:00", + "url": "/meta/@steemit/firstpost#@rednetkjh/re-steemit-firstpost-20160804t061605576z" + }, + { + "active_votes": [ + { + "rshares": "2725768", + "voter": "cire81" + }, + { + "rshares": "154885141", + "voter": "lorddominik007" + } + ], + "author": "imarealboy777", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Vesting , vesting 1 2 3 .", + "category": "meta", + "children": 0, + "created": "2016-08-01T23:20:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 157610909, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160801t232001768z", + "post_id": 401002, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-01T23:20:36", + "url": "/meta/@steemit/firstpost#@imarealboy777/re-steemit-firstpost-20160801t232001768z" + }, + { + "active_votes": [ + { + "rshares": "-336740570", + "voter": "dtbahoney" + }, + { + "rshares": "52272448", + "voter": "edbriv" + } + ], + "author": "edbriv", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "GO STEEM !!! go!!!", + "category": "meta", + "children": 0, + "created": "2016-08-01T18:12:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -284468122, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160801t184846033z", + "post_id": 395733, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-01T18:12:00", + "url": "/meta/@steemit/firstpost#@edbriv/re-steemit-firstpost-20160801t184846033z" + }, + { + "active_votes": [ + { + "rshares": "7413824", + "voter": "cire81" + } + ], + "author": "bestmalik", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "GO STEEM !!!", + "category": "meta", + "children": 0, + "created": "2016-07-26T03:57:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 7413824, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160726t035722561z", + "post_id": 264599, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-26T03:57:24", + "url": "/meta/@steemit/firstpost#@bestmalik/re-steemit-firstpost-20160726t035722561z" + }, + { + "active_votes": [], + "author": "lenerdie", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Let's get crazy! happy steemit to everybody!", + "category": "meta", + "children": 0, + "created": "2016-07-26T03:50:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160726t035056026z", + "post_id": 264501, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-26T03:50:57", + "url": "/meta/@steemit/firstpost#@lenerdie/re-steemit-firstpost-20160726t035056026z" + }, + { + "active_votes": [ + { + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "rshares": "348852497", + "voter": "kamvreto" + }, + { + "rshares": "247328995", + "voter": "adinda" + } + ], + "author": "kamvreto", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "old post, starting the steemit like today.\nmy quote of the day \"Anyone can sell their STEEM for cash or vest it to boost their voting power.\"", + "category": "meta", + "children": 0, + "created": "2016-07-25T22:20:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 977987362, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160725t221949749z", + "post_id": 259905, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-25T22:20:24", + "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160725t221949749z" + }, + { + "active_votes": [], + "author": "zhuvazhuva", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\u041f\u0440\u0438\u0432\u0435\u0442!", + "category": "meta", + "children": 0, + "created": "2016-07-23T13:03:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160723t130259286z", + "post_id": 214663, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-23T13:03:00", + "url": "/meta/@steemit/firstpost#@zhuvazhuva/re-steemit-firstpost-20160723t130259286z" + }, + { + "active_votes": [ + { + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "rshares": "167168344", + "voter": "yarike" + }, + { + "rshares": "35874847", + "voter": "pr3ttyp3rf3ct" + } + ], + "author": "kamvreto", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "happy steeming all !!", + "category": "meta", + "children": 0, + "created": "2016-07-22T22:53:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 595502250, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160722t225246211z", + "post_id": 206329, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-22T22:53:18", + "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160722t225246211z" + }, + { + "active_votes": [ + { + "rshares": "689526018", + "voter": "patrick-g" + }, + { + "rshares": "46092586", + "voter": "matt876" + }, + { + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "patrick-g", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "You can also vote on your posts if you want.:) As in when you reply to other posts. Those are posts you can vote yourself up on.... :)", + "category": "meta", + "children": 0, + "created": "2016-07-22T20:10:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 787771629, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160722t201007967z", + "post_id": 203716, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-22T20:10:09", + "url": "/meta/@steemit/firstpost#@patrick-g/re-steemit-firstpost-20160722t201007967z" + }, + { + "active_votes": [ + { + "rshares": "689526018", + "voter": "patrick-g" + } + ], + "author": "sictransitgloria", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Go Steem!", + "category": "meta", + "children": 0, + "created": "2016-07-21T23:37:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 689526018, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160721t233702742z", + "post_id": 189812, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T23:37:00", + "url": "/meta/@steemit/firstpost#@sictransitgloria/re-steemit-firstpost-20160721t233702742z" + }, + { + "active_votes": [ + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "689526018", + "voter": "patrick-g" + }, + { + "rshares": "145914460", + "voter": "allmonitors" + } + ], + "author": "gekko", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I leave my mark here in mythical post 8]", + "category": "meta", + "children": 0, + "created": "2016-07-21T22:39:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1261343544, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160721t223937736z", + "post_id": 189029, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T22:39:39", + "url": "/meta/@steemit/firstpost#@gekko/re-steemit-firstpost-20160721t223937736z" + }, + { + "active_votes": [ + { + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "rshares": "231619534", + "voter": "eggstraordinair" + }, + { + "rshares": "123321995", + "voter": "allmonitors" + } + ], + "author": "kewpiedoll", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Why did @ned flag this post?", + "category": "meta", + "children": 4, + "created": "2016-07-20T21:01:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ], + "users": [ + "ned" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1062147701, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160720t210201326z", + "post_id": 166558, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T21:01:54", + "url": "/meta/@steemit/firstpost#@kewpiedoll/re-steemit-firstpost-20160720t210201326z" + }, + { + "active_votes": [ + { + "rshares": "25204741266", + "voter": "justtryme90" + }, + { + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "rshares": "226074637", + "voter": "artjedi" + }, + { + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "kingtylervvs", + "author_payout_value": "0.039 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Thank you for posting. We all LOVE steem!\n\nI up-voted you too... BTW, should steemit let us steemers advertise using steem? Be sure to tell everyone you know to come vote here at: https://steemit.com/steemit/@kingtylervvs/if-steemit-ever-does-decide-to-advertise-there-is-only-1-way-it-could-work-in-my-opinion-debate\n\nThis is a democratic community decision.
\n\n", + "category": "meta", + "children": 1, + "created": "2016-07-20T12:11:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://www.animatedimages.org/data/media/75/animated-train-image-0018.gif", + "http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif", + "https://steem.io/images/steem.png" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 26190175100, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.039, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160720t121101482z", + "post_id": 157998, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T12:11:00", + "url": "/meta/@steemit/firstpost#@kingtylervvs/re-steemit-firstpost-20160720t121101482z" + } +] diff --git a/hivemind/tavern/bridge_api_patterns/get_discussion_gtg.pat.json b/hivemind/tavern/bridge_api_patterns/get_discussion_gtg.pat.json new file mode 100644 index 00000000..51bb3756 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_discussion_gtg.pat.json @@ -0,0 +1,416 @@ +{ + "gary-smith/re-gtg-missing-rewards-while-mining-20160821t125207685z": { + "active_votes": [], + "author": "gary-smith", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", + "category": "mining", + "children": 0, + "created": "2016-08-21T12:52:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "mining" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "payout": 0.0, + "payout_at": "2016-09-21T13:01:45", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", + "post_id": 693858, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Missing rewards while mining - common mistake with keys", + "updated": "2016-08-21T12:52:06", + "url": "/mining/@gtg/missing-rewards-while-mining#@gary-smith/re-gtg-missing-rewards-while-mining-20160821t125207685z" + }, + "gtg/missing-rewards-while-mining": { + "active_votes": [ + { + "rshares": "93765183", + "voter": "gandalf" + }, + { + "rshares": "503120540", + "voter": "paco-steem" + }, + { + "rshares": "5941196935", + "voter": "spaninv" + }, + { + "rshares": "9975325205", + "voter": "johnerfx" + }, + { + "rshares": "382763916645", + "voter": "taoteh1221" + }, + { + "rshares": "393291314", + "voter": "stiletto" + }, + { + "rshares": "867516503", + "voter": "johnerminer" + }, + { + "rshares": "2480411371", + "voter": "gary-smith" + }, + { + "rshares": "49812626493", + "voter": "gtg" + }, + { + "rshares": "7921157988", + "voter": "dasha" + }, + { + "rshares": "30256483332", + "voter": "r4fken" + }, + { + "rshares": "4368322380", + "voter": "thegoodguy" + }, + { + "rshares": "1775754972", + "voter": "screasey" + }, + { + "rshares": "14634652647", + "voter": "artakan" + }, + { + "rshares": "539611572", + "voter": "qonq99" + }, + { + "rshares": "4923096406", + "voter": "fishborne" + }, + { + "rshares": "1377860390", + "voter": "steeminer" + }, + { + "rshares": "726277176", + "voter": "spinner" + }, + { + "rshares": "16175410131", + "voter": "thebluepanda" + }, + { + "rshares": "2362437240", + "voter": "ullikume" + }, + { + "rshares": "2988929662", + "voter": "mione" + }, + { + "rshares": "851733457", + "voter": "steeminion" + }, + { + "rshares": "14814536032", + "voter": "sponge-bob" + }, + { + "rshares": "512292840", + "voter": "kev7000" + }, + { + "rshares": "289407830", + "voter": "steeminnow" + }, + { + "rshares": "11301045003", + "voter": "brains" + } + ], + "author": "gtg", + "author_payout_value": "0.000 HBD", + "author_reputation": 57.34, + "beneficiaries": [], + "blacklists": [], + "body": "Suppose your miner node found `pow2`, but your `total_missed` count increased, instead of generating a block.\n\nIf this happens, double check your keys used in the `config.ini` file.\n\n```\nwitness = \"minerwitness\"\n\nminer = [\"minerwitness\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner1\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner2\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner3\",\"WIF_ACTIVE_PRIVATE_KEY\"]\n\nmining-threads = 4\n\nprivate-key = WIF_SIGNING_PRIVATE_KEY\n```\n\nUsing keys without paying attention to their roles is a common mistake. @artakan [found out](https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account \"@artakan - Do not use your steemit.com account for mining\")\nthat issues with missing blocks tend to happen when you are using an account that was created through [steemit.com](https://steemit.com/ \"Blogging is the new mining\") but seems to work for the mined account.\n\nSo erroneous configuration might work for your mined account by pure coincidence. In other words, the same key has been defined for all roles, so: `WIF_ACTIVE_PRIVATE_KEY` is exactly the same as `WIF_SIGNING_PRIVATE_KEY`.\n\n![witness](https://grey.house/img/witness2.jpg)\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", + "category": "mining", + "children": 6, + "created": "2016-08-21T12:29:18", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account" + ], + "tags": [ + "mining", + "steem", + "steem-mining" + ], + "users": [ + "artakan" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 568650179247, + "payout": 0.432, + "payout_at": "2016-09-21T13:01:45", + "pending_payout_value": "0.432 HBD", + "percent_steem_dollars": 10000, + "permlink": "missing-rewards-while-mining", + "post_id": 693716, + "promoted": "0.000 HBD", + "replies": [ + "gary-smith/re-gtg-missing-rewards-while-mining-20160821t125207685z", + "gtg/re-gtg-missing-rewards-while-mining-20160821t131242531z", + "timcliff/re-gtg-missing-rewards-while-mining-20160827t141319137z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 26 + }, + "title": "Missing rewards while mining - common mistake with keys", + "updated": "2016-08-21T13:02:30", + "url": "/mining/@gtg/missing-rewards-while-mining" + }, + "gtg/re-gtg-missing-rewards-while-mining-20160821t131242531z": { + "active_votes": [], + "author": "gtg", + "author_payout_value": "0.000 HBD", + "author_reputation": 57.34, + "beneficiaries": [], + "blacklists": [], + "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", + "category": "mining", + "children": 0, + "created": "2016-08-21T13:12:45", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemit.chat/channel/mining" + ], + "tags": [ + "mining" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "payout": 0.0, + "payout_at": "2016-09-21T13:01:45", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", + "post_id": 693986, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Missing rewards while mining - common mistake with keys", + "updated": "2016-08-21T13:12:45", + "url": "/mining/@gtg/missing-rewards-while-mining#@gtg/re-gtg-missing-rewards-while-mining-20160821t131242531z" + }, + "gtg/re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z": { + "active_votes": [], + "author": "gtg", + "author_payout_value": "0.000 HBD", + "author_reputation": 57.34, + "beneficiaries": [], + "blacklists": [], + "body": "yes, you can want to use [steemd.com/@youraccount](https://steemd.com) link to check witness details (at the time of generating block your miner become witness)", + "category": "mining", + "children": 2, + "created": "2016-08-27T15:38:00", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemd.com" + ], + "tags": [ + "mining" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "timcliff", + "parent_permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", + "payout": 0.0, + "payout_at": "2016-09-21T13:01:45", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z", + "post_id": 767496, + "promoted": "0.000 HBD", + "replies": [ + "timcliff/re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Missing rewards while mining - common mistake with keys", + "updated": "2016-08-27T15:38:00", + "url": "/mining/@gtg/missing-rewards-while-mining#@gtg/re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z" + }, + "gtg/re-timcliff-re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t183943508z": { + "active_votes": [], + "author": "gtg", + "author_payout_value": "0.000 HBD", + "author_reputation": 57.34, + "beneficiaries": [], + "blacklists": [], + "body": "Please use your **active private key** for a miner, instead your owner key.", + "category": "mining", + "children": 0, + "created": "2016-08-27T18:39:45", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "is_paidout": false, + "json_metadata": { + "tags": [ + "mining" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "timcliff", + "parent_permlink": "re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", + "payout": 0.0, + "payout_at": "2016-09-21T13:01:45", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-timcliff-re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t183943508z", + "post_id": 769396, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Missing rewards while mining - common mistake with keys", + "updated": "2016-08-27T18:39:45", + "url": "/mining/@gtg/missing-rewards-while-mining#@gtg/re-timcliff-re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t183943508z" + }, + "timcliff/re-gtg-missing-rewards-while-mining-20160827t141319137z": { + "active_votes": [], + "author": "timcliff", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", + "category": "mining", + "children": 3, + "created": "2016-08-27T14:13:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "mining" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "payout": 0.0, + "payout_at": "2016-09-21T13:01:45", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", + "post_id": 766749, + "promoted": "0.000 HBD", + "replies": [ + "gtg/re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Missing rewards while mining - common mistake with keys", + "updated": "2016-08-27T14:13:18", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-missing-rewards-while-mining-20160827t141319137z" + }, + "timcliff/re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z": { + "active_votes": [], + "author": "timcliff", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I've been mining since last Friday and haven't found a block yet, so there are no witness details for my account yet. I wanted to check the \"total_missed\" count, since it sounds like this post could be describing my issue. After talking to peeps on Steemit chat, it sounds like I need to change the keys I'm using. I'm currently using my 'owner private' key for both.", + "category": "mining", + "children": 1, + "created": "2016-08-27T15:51:15", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "is_paidout": false, + "json_metadata": { + "tags": [ + "mining" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z", + "payout": 0.0, + "payout_at": "2016-09-21T13:01:45", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", + "post_id": 767624, + "promoted": "0.000 HBD", + "replies": [ + "gtg/re-timcliff-re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t183943508z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Missing rewards while mining - common mistake with keys", + "updated": "2016-08-27T15:51:15", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z" + } +} diff --git a/hivemind/tavern/bridge_api_patterns/get_post_gtg.pat.json b/hivemind/tavern/bridge_api_patterns/get_post_gtg.pat.json new file mode 100644 index 00000000..b9d00edc --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_post_gtg.pat.json @@ -0,0 +1,754 @@ +{ + "active_votes": [ + { + "rshares": "15699644918310", + "voter": "dantheman" + }, + { + "rshares": "28854876032", + "voter": "anonymous" + }, + { + "rshares": "8484864209575", + "voter": "rainman" + }, + { + "rshares": "37843185317140", + "voter": "blocktrades" + }, + { + "rshares": "2090496972549", + "voter": "steemroller" + }, + { + "rshares": "74736896239", + "voter": "donaldtrump" + }, + { + "rshares": "335906168314", + "voter": "modprobe" + }, + { + "rshares": "6327415081631", + "voter": "wackou" + }, + { + "rshares": "33308040478", + "voter": "ihash" + }, + { + "rshares": "1714790303449", + "voter": "rossco99" + }, + { + "rshares": "912226370971", + "voter": "liondani" + }, + { + "rshares": "2468266694", + "voter": "boy" + }, + { + "rshares": "1975751593462", + "voter": "xeroc" + }, + { + "rshares": "2995664453", + "voter": "bue-witness" + }, + { + "rshares": "567206353", + "voter": "bunny" + }, + { + "rshares": "140485443412", + "voter": "complexring" + }, + { + "rshares": "41823927396", + "voter": "bue" + }, + { + "rshares": "1323151152", + "voter": "mini" + }, + { + "rshares": "170623771", + "voter": "moon" + }, + { + "rshares": "32232314318", + "voter": "aizensou" + }, + { + "rshares": "108216927683", + "voter": "bonapartist" + }, + { + "rshares": "91926650", + "voter": "gandalf" + }, + { + "rshares": "358786763103", + "voter": "boatymcboatface" + }, + { + "rshares": "297215153038", + "voter": "officialfuzzy" + }, + { + "rshares": "773689504778", + "voter": "pfunk" + }, + { + "rshares": "699635263343", + "voter": "cass" + }, + { + "rshares": "9031234362", + "voter": "proctologic" + }, + { + "rshares": "490844799", + "voter": "healthcare" + }, + { + "rshares": "715096804", + "voter": "daniel.pan" + }, + { + "rshares": "17603047506", + "voter": "dedriss" + }, + { + "rshares": "273299516223", + "voter": "chitty" + }, + { + "rshares": "104430794832", + "voter": "linouxis9" + }, + { + "rshares": "230014747", + "voter": "helen.tan" + }, + { + "rshares": "19049044601", + "voter": "daowisp" + }, + { + "rshares": "14623675138", + "voter": "valtr" + }, + { + "rshares": "116313551950", + "voter": "craig-grant" + }, + { + "rshares": "60023860440", + "voter": "lovelace" + }, + { + "rshares": "22731092140", + "voter": "joelinux" + }, + { + "rshares": "79387789605", + "voter": "kingscrown" + }, + { + "rshares": "471129748", + "voter": "paco-steem" + }, + { + "rshares": "426310899", + "voter": "ereismatias" + }, + { + "rshares": "5639122835", + "voter": "spaninv" + }, + { + "rshares": "7733788543", + "voter": "nate-atkins" + }, + { + "rshares": "1293680763", + "voter": "karask" + }, + { + "rshares": "1399620602", + "voter": "coar" + }, + { + "rshares": "1450957464", + "voter": "murh" + }, + { + "rshares": "363704119", + "voter": "edtorrez" + }, + { + "rshares": "537523962057", + "voter": "cyber" + }, + { + "rshares": "14807486260", + "voter": "thecryptofiend" + }, + { + "rshares": "9767505930", + "voter": "johnerfx" + }, + { + "rshares": "368352936", + "voter": "stiletto" + }, + { + "rshares": "55074207308", + "voter": "juanmiguelsalas" + }, + { + "rshares": "832120526", + "voter": "sunnyray" + }, + { + "rshares": "1021367115", + "voter": "fjccoin" + }, + { + "rshares": "848329794", + "voter": "johnerminer" + }, + { + "rshares": "44252149522", + "voter": "geoffrey" + }, + { + "rshares": "84721328962", + "voter": "truthtaco" + }, + { + "rshares": "636119227", + "voter": "ben99" + }, + { + "rshares": "23438529510", + "voter": "jparty" + }, + { + "rshares": "688449090", + "voter": "mammasitta" + }, + { + "rshares": "39092198167", + "voter": "gtg" + }, + { + "rshares": "3985585444", + "voter": "fuck.off" + }, + { + "rshares": "5429573755", + "voter": "iloveporn" + }, + { + "rshares": "1940554482", + "voter": "the.bot" + }, + { + "rshares": "6603022993", + "voter": "johnbradshaw" + }, + { + "rshares": "4605030334", + "voter": "the.whale" + }, + { + "rshares": "169187275390", + "voter": "dashpaymag" + }, + { + "rshares": "261023475510", + "voter": "asmolokalo" + }, + { + "rshares": "275298167273", + "voter": "roelandp" + }, + { + "rshares": "2098337565", + "voter": "romanskv" + }, + { + "rshares": "4363425866", + "voter": "unicornfarts" + }, + { + "rshares": "6486686814", + "voter": "kakradetome" + }, + { + "rshares": "18902778277", + "voter": "firepower" + }, + { + "rshares": "5644023807", + "voter": "cmtzco" + }, + { + "rshares": "36679008975", + "voter": "menta" + }, + { + "rshares": "4605414402", + "voter": "vote" + }, + { + "rshares": "4674772839", + "voter": "manoami" + }, + { + "rshares": "4848852438", + "voter": "kissmybutt" + }, + { + "rshares": "461256359", + "voter": "chamviet" + }, + { + "rshares": "1128966666", + "voter": "anwar78" + }, + { + "rshares": "353762811", + "voter": "rxhector" + }, + { + "rshares": "13452861200", + "voter": "bitshares101" + }, + { + "rshares": "19873104999", + "voter": "ausbitbank" + }, + { + "rshares": "184112913", + "voter": "ardina" + }, + { + "rshares": "16336147500", + "voter": "chriscrypto" + }, + { + "rshares": "4125723797", + "voter": "gikitiki" + }, + { + "rshares": "119466748741", + "voter": "jesta" + }, + { + "rshares": "3640445804", + "voter": "thegoodguy" + }, + { + "rshares": "75967203632", + "voter": "paco" + }, + { + "rshares": "19068212733", + "voter": "showmethecoinz" + }, + { + "rshares": "24373102947", + "voter": "igster" + }, + { + "rshares": "218061986", + "voter": "zoicneo" + }, + { + "rshares": "322673293", + "voter": "dr2073" + }, + { + "rshares": "12376071844", + "voter": "jpiper20" + }, + { + "rshares": "252909161", + "voter": "natali22" + }, + { + "rshares": "8322538338", + "voter": "mustafaomar" + }, + { + "rshares": "13618277527", + "voter": "all-of-us" + }, + { + "rshares": "919285482", + "voter": "nika" + }, + { + "rshares": "6588394536", + "voter": "geronimo" + }, + { + "rshares": "1901709746", + "voter": "cryptohustlin" + }, + { + "rshares": "2473087864", + "voter": "lostnuggett" + }, + { + "rshares": "31417575434", + "voter": "paquito" + }, + { + "rshares": "108742011", + "voter": "sergey22" + }, + { + "rshares": "575279737", + "voter": "steeminer" + }, + { + "rshares": "35468156360", + "voter": "fatboy" + }, + { + "rshares": "2204627326", + "voter": "trisnawati" + }, + { + "rshares": "389417359", + "voter": "vadim" + }, + { + "rshares": "6721829299", + "voter": "michaeldodridge" + }, + { + "rshares": "31188038738", + "voter": "celebr1ty" + }, + { + "rshares": "7097922529", + "voter": "lykkeliten" + }, + { + "rshares": "108632879", + "voter": "steemster1" + }, + { + "rshares": "2854890205", + "voter": "glitterpig" + }, + { + "rshares": "3046163199", + "voter": "jed78" + }, + { + "rshares": "685101796", + "voter": "metaflute" + }, + { + "rshares": "51143991", + "voter": "sharon" + }, + { + "rshares": "8278623961", + "voter": "rawnetics" + }, + { + "rshares": "16442949757", + "voter": "thebluepanda" + }, + { + "rshares": "2339485159", + "voter": "timcliff" + }, + { + "rshares": "727812194", + "voter": "darknet" + }, + { + "rshares": "31463628969", + "voter": "mibenkito" + }, + { + "rshares": "8270953480", + "voter": "trending" + }, + { + "rshares": "66036998", + "voter": "fruityloan" + }, + { + "rshares": "63377598", + "voter": "dezconocido" + }, + { + "rshares": "64149962", + "voter": "sizil" + }, + { + "rshares": "27539088793", + "voter": "nonlinearone" + }, + { + "rshares": "51120963", + "voter": "msjennifer" + }, + { + "rshares": "50828873", + "voter": "ciao" + }, + { + "rshares": "9007787064", + "voter": "thebotkiller" + }, + { + "rshares": "50521096", + "voter": "steemo" + }, + { + "rshares": "18974329448", + "voter": "nixonnox" + }, + { + "rshares": "50390768", + "voter": "steema" + }, + { + "rshares": "165051822", + "voter": "nonamer" + }, + { + "rshares": "52732264", + "voter": "vishal1" + }, + { + "rshares": "50183394", + "voter": "confucius" + }, + { + "rshares": "1506714481", + "voter": "unrealisback" + }, + { + "rshares": "51153233", + "voter": "jarvis" + }, + { + "rshares": "50692212", + "voter": "fortuner" + }, + { + "rshares": "225683099", + "voter": "mefisto" + }, + { + "rshares": "106783648", + "voter": "cinderphoenix" + }, + { + "rshares": "225874014", + "voter": "jimmytwoshoes" + }, + { + "rshares": "50684643", + "voter": "johnbyrd" + }, + { + "rshares": "50682252", + "voter": "thomasaustin" + }, + { + "rshares": "50673817", + "voter": "widell" + }, + { + "rshares": "51613018", + "voter": "vasilii" + }, + { + "rshares": "288593312", + "voter": "steeminion" + }, + { + "rshares": "50311250", + "voter": "revelbrooks" + }, + { + "rshares": "57636462", + "voter": "x5cc7fd68" + }, + { + "rshares": "52631453", + "voter": "mrlogic" + }, + { + "rshares": "16295017448", + "voter": "someguy123" + }, + { + "rshares": "50416427", + "voter": "curpose" + }, + { + "rshares": "60781652", + "voter": "sharonekelly" + }, + { + "rshares": "169640892", + "voter": "mrainp" + }, + { + "rshares": "55791783", + "voter": "lsd123452" + }, + { + "rshares": "92590152", + "voter": "runridefly" + }, + { + "rshares": "53142053", + "voter": "fleshtheworld" + }, + { + "rshares": "53116957", + "voter": "maximator15" + }, + { + "rshares": "373265099", + "voter": "ivet" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "50271139", + "voter": "hitherise" + }, + { + "rshares": "1418732000", + "voter": "sponge-bob" + }, + { + "rshares": "574697529", + "voter": "grm" + }, + { + "rshares": "3524895174", + "voter": "ericbotticelli" + }, + { + "rshares": "50710305", + "voter": "prof" + }, + { + "rshares": "55019922", + "voter": "jhonione" + }, + { + "rshares": "126007971", + "voter": "keverw" + }, + { + "rshares": "54052181", + "voter": "topslim" + }, + { + "rshares": "50054445", + "voter": "coad" + }, + { + "rshares": "50825587", + "voter": "sofa" + }, + { + "rshares": "52918124", + "voter": "xomtux" + }, + { + "rshares": "54693363", + "voter": "steeminnow" + }, + { + "rshares": "51488252", + "voter": "efroul" + }, + { + "rshares": "50383632", + "voter": "zzzzzzzzz" + }, + { + "rshares": "51446137", + "voter": "asshai" + }, + { + "rshares": "54572306", + "voter": "cbdmegami" + }, + { + "rshares": "52397603", + "voter": "doze49" + }, + { + "rshares": "50125313", + "voter": "ladyboss" + }, + { + "rshares": "53279765", + "voter": "jpitt241" + } + ], + "author": "gtg", + "author_payout_value": "0.000 HBD", + "author_reputation": 57.34, + "beneficiaries": [], + "blacklists": [], + "body": "As you know, witness nodes are an essential part of the STEEM universe.\n\nIf I have a witness node with as much as (or as little as) 3% of witness approval, I can choose the right time to shut it down, listen to my favourite music album, walk my cat, and then start it up again, most probably without missing a block.\nA full-time witness, or one of the top19 witnesses, needs to produce blocks 1600 times more frequently.\nMaintaining such a server in the long run is not an easy task.\n\nWitnesses are vulnerable to DDoS attacks. An attacker who knows the network location of your witness node can saturate your uplink to a level that makes you unable to produce blocks on time. Effectively, this means **voting the witness out using a network-level attack**. Finding the IP address of your witness node is easier than you might think. Even if you follow the guidelines for setting up your public seed node on a different machine than the one you used to get your witness running, your witness still needs to connect to other nodes in the network.\nSo what does this mean? Take a look at: http://seeds.quisquis.de/steem.html\n(service provided by cyrano.witness)\n\nDoes any of these IP addresses look familiar?\nThe attacker still doesn't know which of them is yours, right?\n\nAn attack that makes the target IP unavailable for 3 seconds? Not exactly a difficult thing to do, right? So the attacker needs to make a guess by choosing from a set of suspected IP addresses he has obtained. Guessing doesn't cost him much. Neither does a high volume, short period DDoS attack. After that, he can see that your `total_missed` count increases, and he knows he guessed correctly. And then you are out.\n\n![witness](https://grey.house/img/witness2.jpg)\n\n## A concept of infrastructure: ##\n\n2 witness nodes (primary and backup)\n4 dedicated seed nodes\n\nOne witness node has your current signing key and does its job. The other is for failover, backup purposes. For example, whenever you need to upgrade your witness binary, you do that on the backup witness node, then change your signing key, so the backup node and the primary node switch their roles. \n**(Never leave your current signing key on two nodes at the same time!)**\n\nThese 4 seed nodes mentioned here only work on behalf of your witness i.e. they don\u2019t provide seed service on public network interfaces. \n_Your public seed node is not within the scope of this document._\n\nYour witness node connects **ONLY** to your seed nodes using VLAN or another private, low latency network solution of your choice. All other incoming/outgoing connections should be blocked except for the secure shell, preferably limited to access only from your IPs.\n\nEach seed node should be in a separate datacenter, ideally in a different part of the world, never in the same location as any of your (primary/backup) witness nodes. The purpose is to minimize the effects of a successful DDoS attack.\n\n_Please note that setting up all seed nodes in a single data center won\u2019t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway._\n\n```\n +---+\n + +----+ | |\n | | |<-->| B |\n +--+ S1 |<-->| i |\n | | |<-->| g |\n | +----+ | |\n+------+ | | B |\n| +-+ +----+ | a |\n| W(p) | | | |<-->| d |\n| | +--+ S2 |<-->| |\n+------+ | | |<-->| U |\n | +----+ | g |\n VLAN| | l |\n | +----+ | y |\n+------+ | | |<-->| |\n| | +--+ S3 |<-->| I |\n| W(b) | | | |<-->| n |\n| +-+ +----+ | t |\n+------+ | | e |\n | +----+ | r |\n | | |<-->| n |\n +--+ S4 |<-->| e |\n | | |<-->| t |\n + +----+ | |\n +---+\n```\n```\nW(p) - primary witness\nW(b) - backup witness\nS1-4 - seed nodes\n```\nOf course, you need to keep your seed nodes (at least one of them) running all the time, otherwise your witness will not be able to sync the blockchain.\nBut if you do the math, you will see that the odds that all your seed nodes stop working at the same time are much lower than the chances that this happens to your witness node. \n\n\nIf one of your seed nodes falls victim to a DDoS attack, you can, depending on the features offered by your infrastructure provider:\n- do nothing (until most of them are targeted at the same time)\n- change its external interface IP address, routing the old one to a black hole\n- set up a new, additional, temporary seed node somewhere else\n- replace that seed node with a new one in another location\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", + "category": "witness-category", + "children": 14, + "created": "2016-08-16T18:11:03", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemit.com/witness-category/@gtg/witness-gtg" + ], + "tags": [ + "witness-category", + "security", + "steem", + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 80964590737004, + "payout": 988.451, + "payout_at": "2016-09-16T20:13:00", + "pending_payout_value": "988.451 HBD", + "percent_steem_dollars": 10000, + "permlink": "heavy-duty-witness-node-infrastructure", + "post_id": 630173, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 177 + }, + "title": "Heavy duty witness node infrastructure", + "updated": "2016-08-16T18:11:03", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure" +} diff --git a/hivemind/tavern/bridge_api_patterns/get_post_header_gtg.pat.json b/hivemind/tavern/bridge_api_patterns/get_post_header_gtg.pat.json new file mode 100644 index 00000000..4b6c17c4 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_post_header_gtg.pat.json @@ -0,0 +1,7 @@ +{ + "author": "gtg", + "category": "mining", + "depth": 0, + "permlink": "missing-rewards-while-mining" + } + \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_profile.pat.json b/hivemind/tavern/bridge_api_patterns/get_profile.pat.json index c3d9688c..12579ac9 100644 --- a/hivemind/tavern/bridge_api_patterns/get_profile.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_profile.pat.json @@ -1,8 +1,8 @@ { "active": "1970-01-01T00:00:00", "blacklists": [], - "created": "2016-03-24T17:00:21", - "id": 29, + "created": "2016-03-24T17:00:24", + "id": 31, "metadata": { "profile": { "about": null, diff --git a/hivemind/tavern/bridge_api_patterns/get_profile_gtg.pat.json b/hivemind/tavern/bridge_api_patterns/get_profile_gtg.pat.json new file mode 100644 index 00000000..efd35751 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_profile_gtg.pat.json @@ -0,0 +1,25 @@ +{ + "id": 14008, + "name": "gtg", + "created": "2016-06-30T17:22:18", + "active": "2016-09-15T19:46:21", + "post_count": 51, + "reputation": 57.34, + "blacklists": [], + "stats": { + "sp": 8854, + "rank": 0, + "following": 31, + "followers": 80 + }, + "metadata": { + "profile": { + "name": "", + "about": "", + "website": "", + "location": "", + "cover_image": "", + "profile_image": "" + } + } +} diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json index 9b2214d4..ca3a8ca6 100644 --- a/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json @@ -1,23675 +1,22512 @@ [ { + "post_id": 960290, + "author": "dollarvigilante", + "permlink": "another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", + "category": "money", + "title": "Another Billionaire Warns of Catastrophic Depths Not Seen in 5,000 Years - and Emphasizes Gold", + "body": "
https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg
\n\nIn past issues, we’ve documented increasingly concerned billionaires warning of dangerous economic times. Many have favored gold as an alternative allocation in a world where $13 trillion-worth of debt is negative yielding, interest rates are artificially suppressed and we’re on the brink of major wars.\n\nThe newest addition to this gold-loving billionaire's club, is none other than hedge-fund manager Paul Singer. At CNBC’s Delivering Alpha Investors Conference this week, the founder of the $27-billion Elliott Management Fund, the 17th largest hedge fund in the world, mentioned that at current prices gold is “undervalued” and “underrepresented in many portfolios as the only ... store of value that has stood the test of time.”\n\nSinger, along with numerous other hedge-fund managers, has been increasingly outspoken in his criticism of the Federal Reserve and other central banks for creating dangers in the market unlike any in what he terms the “5,000 year-ish” history of finance. Singer noted that “it's a very dangerous time in the global economy and global financial markets.\"\n\nThis quote is frighteningly similar to the response given by Donald Trump on Fox Business not long ago when he was asked if he had money in the market. He answered, “I did, but I got out,” and then went on to say that he expected “very scary scenarios” for investors.\n\nSinger also stated that he thinks owning medium- to long-term first world debt is a “really bad idea”... and then proceeded to tell listeners to sell their 30-year bonds.\n\nEarlier in the conference, prior to Singer, Ray Dalio who is the manager of the largest hedge fund in the world, Bridgewater Capital, was also vocal about the diminishing returns provided by government debt held by central banks. “There’s only so much you can squeeze out of the debt cycle,\" he said. He went on to say that central banks are at a point now where their ability to stimulate is limited.\n\nSeated next to Dalio was Former Treasury secretary Timothy Geithner who voiced concern about limited “tools in the keynesian arsenal,” that probably wouldn’t be enough to offset the next recession.\n\nGeithner obviously believes that a recession is on the way. Dalio and Singer are trying to convey the same message. A massive crunch is looming.\n\nWe agree with them, although we believe Geithner was sugarcoating what’s to come.\n\nAfter all, we are on the precipice of a crash of biblical proportions according to the former chief economist of the Bank for International Settlements, William White.\n\nWe have mentioned his quote numerous time here at TDV but feel it’s important to reiterate because of its magnitude: “The only question is whether we are able to look reality in the eye and face what is coming in an orderly fashion, or whether it will be disorderly. Debt jubilees have been going on for 5,000 years, as far back as the Sumerians.”\n\nAs the Fed considers its second rate hike in 10 years, Singer condemned policy-makers for acting with “amazing arrogance” when he and others had warned of a mortgage crisis prior to 2008.\n\nWhat he and those who agreed with his stance don’t know, or at least won’t state publicly, is that these shoddy central bank policies are detrimental by design. In other words, their sole purpose is to destabilize the world economy.\n\nThis deliberate market sabotage is necessary for the transference of power from the more developed nations to less developed ones. Ultimately, the idea is to eliminate smaller regional and national central banks. Once things get bad enough, these smaller banks will be blamed for provoking a given crisis. And, secondarily, the end goal is to blow up the entire system in order to bring in the one world government and central bank.\n\nThe elites have used the same tactics time and time again throughout history. First, they create the problem, then there is a reaction, and then finally they come swooping in to “valiantly save” the day. It's happened numerous times before.\n
https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png
\nAnd it will soon happen again.\n\nOf course, the globalists have demonstrated that every intervention only makes situations worse.\n\nWe reported on the blatant thievery going on at Wells Fargo in our last article and noted how the elites were probably laughing hysterically at what they’re able to get away with. They were even able to convince many younger American voters that “democratic socialism” would be their savior, as seen by the significant, youthful support for Bernie Slanders. Debt and currency crises have already started to materialize, as we’ve seen in the socialist utopia that is Venezuela. If this is any indication of what’s to come, the future is looking awfully gloomy.\n\nAs Singer and others including Dalio have mentioned before, the most tried and true measure of wealth and value is gold.\n\nAt TDV we provide unique Austrian-economics based analysis from the anarcho-capitalist pespective of the state of the world’s economy, as well as suggestions on how to protect your assets in these tempestuous and unprecedented times.\n\nJacob Rothschild, a member of the family partly responsible for the creation of all this chaos, even said himself that we are in “uncharted waters” and that it’s “impossible to predict the unintended consequences of very low interest rates.”\n\nWe have a pretty good idea of what the consequences will be and we’re taking action to protect ourselves and even profit from them. Rothschild seems to know the consequences, as well, as he has been buying up gold and selling the stock market and the US dollar.\n\nYou can survive and profit from the orchestrated collapse too. Subscribe to TDV’s newsletter here to receive constantly updated information on how to protect your family and friends.\n\nIn the end, it is getting truly bizarre just how many billionaires, central bankers and others of note are all warning of the coming collapse. We’d almost begun to worry that they were going to pull a switch-a-roo on us, but if you asked the great majority of investors and financial analysts, they’ll tell you that they see nothing but smooth sailing ahead.\n\nSo, while many are warning, many are hearing, but not listening. The bible said something about that, I believe.\n
https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg
", + "json_metadata": { + "tags": [ + "money", + "gold", + "silver", + "bitcoin", + "crisis" + ], + "image": [ + "https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg", + "https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png", + "https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg" + ], + "links": [ + "https://dollarvigilante.com/subscribe" + ] + }, + "created": "2016-09-15T18:23:15", + "updated": "2016-09-15T18:23:15", + "depth": 0, + "children": 23, + "net_rshares": 102136532384242, + "is_paidout": false, + "payout_at": "2016-09-16T18:47:28", + "payout": 596.997, + "pending_payout_value": "596.997 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], "active_votes": [ { - "rshares": "28370463371572", - "voter": "dantheman" + "voter": "dantheman", + "rshares": "28370463371572" }, { - "rshares": "31307487536364", - "voter": "smooth" + "voter": "smooth", + "rshares": "31307487536364" }, { - "rshares": "231809639013", - "voter": "anonymous" + "voter": "anonymous", + "rshares": "231809639013" }, { - "rshares": "2321962618319", - "voter": "diaphanous" + "voter": "diaphanous", + "rshares": "2321962618319" }, { - "rshares": "1469558503443", - "voter": "commedy" + "voter": "commedy", + "rshares": "1469558503443" }, { - "rshares": "4287714457313", - "voter": "riverhead" + "voter": "riverhead", + "rshares": "4287714457313" }, { - "rshares": "1856006073992", - "voter": "badassmother" + "voter": "badassmother", + "rshares": "1856006073992" }, { - "rshares": "1271804694676", - "voter": "rossco99" + "voter": "rossco99", + "rshares": "1271804694676" }, { - "rshares": "2206068741954", - "voter": "wang" + "voter": "wang", + "rshares": "2206068741954" }, { - "rshares": "1950753758979", - "voter": "xeroc" + "voter": "xeroc", + "rshares": "1950753758979" }, { - "rshares": "1534707047296", - "voter": "joseph" + "voter": "joseph", + "rshares": "1534707047296" }, { - "rshares": "452874558937", - "voter": "recursive3" + "voter": "recursive3", + "rshares": "452874558937" }, { - "rshares": "620996029765", - "voter": "masteryoda" + "voter": "masteryoda", + "rshares": "620996029765" }, { - "rshares": "3120582597678", - "voter": "recursive" + "voter": "recursive", + "rshares": "3120582597678" }, { - "rshares": "440845842", - "voter": "lee2" + "voter": "lee2", + "rshares": "440845842" }, { - "rshares": "26932201065", - "voter": "lee3" + "voter": "lee3", + "rshares": "26932201065" }, { - "rshares": "8677295375", - "voter": "lee4" + "voter": "lee4", + "rshares": "8677295375" }, { - "rshares": "22149018521", - "voter": "lee5" + "voter": "lee5", + "rshares": "22149018521" }, { - "rshares": "5942299654212", - "voter": "smooth.witness" + "voter": "smooth.witness", + "rshares": "5942299654212" }, { - "rshares": "8927291120", - "voter": "idol" + "voter": "idol", + "rshares": "8927291120" }, { - "rshares": "4941942978", - "voter": "sakr" + "voter": "sakr", + "rshares": "4941942978" }, { - "rshares": "57625926227", - "voter": "unosuke" + "voter": "unosuke", + "rshares": "57625926227" }, { - "rshares": "1536592488", - "voter": "jocelyn" + "voter": "jocelyn", + "rshares": "1536592488" }, { - "rshares": "14818263059", - "voter": "gregory-f" + "voter": "gregory-f", + "rshares": "14818263059" }, { - "rshares": "154334962550", - "voter": "edgeland" + "voter": "edgeland", + "rshares": "154334962550" }, { - "rshares": "8836453529", - "voter": "gregory60" + "voter": "gregory60", + "rshares": "8836453529" }, { - "rshares": "29596510808", - "voter": "full-measure" + "voter": "full-measure", + "rshares": "29596510808" }, { - "rshares": "104880949618", - "voter": "eeks" + "voter": "eeks", + "rshares": "104880949618" }, { - "rshares": "24694558802", - "voter": "fkn" + "voter": "fkn", + "rshares": "24694558802" }, { - "rshares": "468281676", - "voter": "paco-steem" + "voter": "paco-steem", + "rshares": "468281676" }, { - "rshares": "5641697991", - "voter": "spaninv" + "voter": "spaninv", + "rshares": "5641697991" }, { - "rshares": "32459455171", - "voter": "elishagh1" + "voter": "elishagh1", + "rshares": "32459455171" }, { - "rshares": "40391466193", - "voter": "himalayanguru" + "voter": "himalayanguru", + "rshares": "40391466193" }, { - "rshares": "584291107228", - "voter": "nanzo-scoop" + "voter": "nanzo-scoop", + "rshares": "584291107228" }, { - "rshares": "178471627922", - "voter": "steve-walschot" + "voter": "steve-walschot", + "rshares": "178471627922" }, { - "rshares": "9857825141", - "voter": "kefkius" + "voter": "kefkius", + "rshares": "9857825141" }, { - "rshares": "177420844935", - "voter": "mummyimperfect" + "voter": "mummyimperfect", + "rshares": "177420844935" }, { - "rshares": "106635691300", - "voter": "asch" + "voter": "asch", + "rshares": "106635691300" }, { - "rshares": "616864092786", - "voter": "kevinwong" + "voter": "kevinwong", + "rshares": "616864092786" }, { - "rshares": "1061266533", - "voter": "murh" + "voter": "murh", + "rshares": "1061266533" }, { - "rshares": "6230798580", - "voter": "cryptofunk" + "voter": "cryptofunk", + "rshares": "6230798580" }, { - "rshares": "579494558", - "voter": "kodi" + "voter": "kodi", + "rshares": "579494558" }, { - "rshares": "2003359924", - "voter": "error" + "voter": "error", + "rshares": "2003359924" }, { - "rshares": "11584833708", - "voter": "andu" + "voter": "andu", + "rshares": "11584833708" }, { - "rshares": "40553122820", - "voter": "ranko-k" + "voter": "ranko-k", + "rshares": "40553122820" }, { - "rshares": "962089879337", - "voter": "cyber" + "voter": "cyber", + "rshares": "962089879337" }, { - "rshares": "58188888655", - "voter": "theshell" + "voter": "theshell", + "rshares": "58188888655" }, { - "rshares": "49581045086", - "voter": "ak2020" + "voter": "ak2020", + "rshares": "49581045086" }, { - "rshares": "3848697023555", - "voter": "satoshifund" + "voter": "satoshifund", + "rshares": "3848697023555" }, { - "rshares": "402139444", - "voter": "applecrisp" + "voter": "applecrisp", + "rshares": "402139444" }, { - "rshares": "36407027386", - "voter": "altoz" + "voter": "altoz", + "rshares": "36407027386" }, { - "rshares": "365370465", - "voter": "stiletto" + "voter": "stiletto", + "rshares": "365370465" }, { - "rshares": "55577467736", - "voter": "juanmiguelsalas" + "voter": "juanmiguelsalas", + "rshares": "55577467736" }, { - "rshares": "219283354085", - "voter": "will-zewe" + "voter": "will-zewe", + "rshares": "219283354085" }, { - "rshares": "87300558689", - "voter": "herzmeister" + "voter": "herzmeister", + "rshares": "87300558689" }, { - "rshares": "275016906945", - "voter": "trogdor" + "voter": "trogdor", + "rshares": "275016906945" }, { - "rshares": "5287820211", - "voter": "tee-em" + "voter": "tee-em", + "rshares": "5287820211" }, { - "rshares": "31346001722", - "voter": "michaelx" + "voter": "michaelx", + "rshares": "31346001722" }, { - "rshares": "179395106552", - "voter": "thedashguy" + "voter": "thedashguy", + "rshares": "179395106552" }, { - "rshares": "4682885200", - "voter": "usefree" + "voter": "usefree", + "rshares": "4682885200" }, { - "rshares": "189626835254", - "voter": "mexbit" + "voter": "mexbit", + "rshares": "189626835254" }, { - "rshares": "5821262190", - "voter": "mark-waser" + "voter": "mark-waser", + "rshares": "5821262190" }, { - "rshares": "118356217412", - "voter": "geoffrey" + "voter": "geoffrey", + "rshares": "118356217412" }, { - "rshares": "208362110567", - "voter": "kimziv" + "voter": "kimziv", + "rshares": "208362110567" }, { - "rshares": "46266779182", - "voter": "honeythief" + "voter": "honeythief", + "rshares": "46266779182" }, { - "rshares": "75334808165", - "voter": "emily-cook" + "voter": "emily-cook", + "rshares": "75334808165" }, { - "rshares": "2187607792", - "voter": "superfreek" + "voter": "superfreek", + "rshares": "2187607792" }, { - "rshares": "484636799", - "voter": "mrhankeh" + "voter": "mrhankeh", + "rshares": "484636799" }, { - "rshares": "17908924002", - "voter": "grey580" + "voter": "grey580", + "rshares": "17908924002" }, { - "rshares": "275327756", - "voter": "ladyclair" + "voter": "ladyclair", + "rshares": "275327756" }, { - "rshares": "68449861599", - "voter": "bacchist" + "voter": "bacchist", + "rshares": "68449861599" }, { - "rshares": "60315479782", - "voter": "good-karma" + "voter": "good-karma", + "rshares": "60315479782" }, { - "rshares": "3350419346", - "voter": "orly" + "voter": "orly", + "rshares": "3350419346" }, { - "rshares": "5271030976", - "voter": "riscadox" + "voter": "riscadox", + "rshares": "5271030976" }, { - "rshares": "24867575018", - "voter": "katyakov" + "voter": "katyakov", + "rshares": "24867575018" }, { - "rshares": "373878481829", - "voter": "fabio" + "voter": "fabio", + "rshares": "373878481829" }, { - "rshares": "25057642057", - "voter": "tcfxyz" + "voter": "tcfxyz", + "rshares": "25057642057" }, { - "rshares": "6939984054", - "voter": "futurefood" + "voter": "futurefood", + "rshares": "6939984054" }, { - "rshares": "734082781", - "voter": "rxhector" + "voter": "rxhector", + "rshares": "734082781" }, { - "rshares": "118094280271", - "voter": "furion" + "voter": "furion", + "rshares": "118094280271" }, { - "rshares": "105911917280", - "voter": "cdubendo" + "voter": "cdubendo", + "rshares": "105911917280" }, { - "rshares": "578386960", - "voter": "barbara2" + "voter": "barbara2", + "rshares": "578386960" }, { - "rshares": "642869652", - "voter": "ch0c0latechip" + "voter": "ch0c0latechip", + "rshares": "642869652" }, { - "rshares": "594982040", - "voter": "doge4lyf" + "voter": "doge4lyf", + "rshares": "594982040" }, { - "rshares": "12668641443", - "voter": "gord0b" + "voter": "gord0b", + "rshares": "12668641443" }, { - "rshares": "2632460141", - "voter": "steem1653" + "voter": "steem1653", + "rshares": "2632460141" }, { - "rshares": "136322030", - "voter": "cynetyc" + "voter": "cynetyc", + "rshares": "136322030" }, { - "rshares": "25221166135", - "voter": "steemit-life" + "voter": "steemit-life", + "rshares": "25221166135" }, { - "rshares": "80777327", - "voter": "snowden" + "voter": "snowden", + "rshares": "80777327" }, { - "rshares": "5357326058", - "voter": "thegoodguy" + "voter": "thegoodguy", + "rshares": "5357326058" }, { - "rshares": "14168336425", - "voter": "aaseb" + "voter": "aaseb", + "rshares": "14168336425" }, { - "rshares": "4209533734", - "voter": "karen13" + "voter": "karen13", + "rshares": "4209533734" }, { - "rshares": "6017253623", - "voter": "cryptosi" + "voter": "cryptosi", + "rshares": "6017253623" }, { - "rshares": "251367062418", - "voter": "nabilov" + "voter": "nabilov", + "rshares": "251367062418" }, { - "rshares": "8751103405", - "voter": "noodhoog" + "voter": "noodhoog", + "rshares": "8751103405" }, { - "rshares": "46859060143", - "voter": "milestone" + "voter": "milestone", + "rshares": "46859060143" }, { - "rshares": "33739229218", - "voter": "creemej" + "voter": "creemej", + "rshares": "33739229218" }, { - "rshares": "87223247", - "voter": "wildchild" + "voter": "wildchild", + "rshares": "87223247" }, { - "rshares": "15070803886", - "voter": "nippel66" + "voter": "nippel66", + "rshares": "15070803886" }, { - "rshares": "24417687626", - "voter": "phenom" + "voter": "phenom", + "rshares": "24417687626" }, { - "rshares": "4545051592", - "voter": "poseidon" + "voter": "poseidon", + "rshares": "4545051592" }, { - "rshares": "7946812357", - "voter": "smolalit" + "voter": "smolalit", + "rshares": "7946812357" }, { - "rshares": "362515598946", - "voter": "calaber24p" + "voter": "calaber24p", + "rshares": "362515598946" }, { - "rshares": "147403710", - "voter": "jdenismusic" + "voter": "jdenismusic", + "rshares": "147403710" }, { - "rshares": "3365797955", - "voter": "simon.braki.love" + "voter": "simon.braki.love", + "rshares": "3365797955" }, { - "rshares": "82782405213", - "voter": "thylbom" + "voter": "thylbom", + "rshares": "82782405213" }, { - "rshares": "3709588060", - "voter": "bitcoiner" + "voter": "bitcoiner", + "rshares": "3709588060" }, { - "rshares": "32544157928", - "voter": "deanliu" + "voter": "deanliu", + "rshares": "32544157928" }, { - "rshares": "4996306142", - "voter": "dmitriybtc" + "voter": "dmitriybtc", + "rshares": "4996306142" }, { - "rshares": "204618396015", - "voter": "jl777" + "voter": "jl777", + "rshares": "204618396015" }, { - "rshares": "30989614870", - "voter": "zaebars" + "voter": "zaebars", + "rshares": "30989614870" }, { - "rshares": "20026634941", - "voter": "positive" + "voter": "positive", + "rshares": "20026634941" }, { - "rshares": "1809205777", - "voter": "yarly" + "voter": "yarly", + "rshares": "1809205777" }, { - "rshares": "272641013", - "voter": "yarly2" + "voter": "yarly2", + "rshares": "272641013" }, { - "rshares": "273048922", - "voter": "yarly3" + "voter": "yarly3", + "rshares": "273048922" }, { - "rshares": "157733805", - "voter": "yarly4" + "voter": "yarly4", + "rshares": "157733805" }, { - "rshares": "158624349", - "voter": "yarly5" + "voter": "yarly5", + "rshares": "158624349" }, { - "rshares": "90416287", - "voter": "yarly7" + "voter": "yarly7", + "rshares": "90416287" }, { - "rshares": "799615699", - "voter": "raymonjohnstone" + "voter": "raymonjohnstone", + "rshares": "799615699" }, { - "rshares": "17267341753", - "voter": "proto" + "voter": "proto", + "rshares": "17267341753" }, { - "rshares": "34309455805", - "voter": "sisterholics" + "voter": "sisterholics", + "rshares": "34309455805" }, { - "rshares": "437620869", - "voter": "yarly10" + "voter": "yarly10", + "rshares": "437620869" }, { - "rshares": "234191245", - "voter": "yarly11" + "voter": "yarly11", + "rshares": "234191245" }, { - "rshares": "8781903824", - "voter": "royalmacro" + "voter": "royalmacro", + "rshares": "8781903824" }, { - "rshares": "81879061", - "voter": "yarly12" + "voter": "yarly12", + "rshares": "81879061" }, { - "rshares": "674282213", - "voter": "fnait" + "voter": "fnait", + "rshares": "674282213" }, { - "rshares": "599033376", - "voter": "keepcalmand" + "voter": "keepcalmand", + "rshares": "599033376" }, { - "rshares": "146224042", - "voter": "steemster1" + "voter": "steemster1", + "rshares": "146224042" }, { - "rshares": "3022447454", - "voter": "dmilash" + "voter": "dmilash", + "rshares": "3022447454" }, { - "rshares": "2002851358", - "voter": "andreynoch" + "voter": "andreynoch", + "rshares": "2002851358" }, { - "rshares": "13359143286", - "voter": "mahekg" + "voter": "mahekg", + "rshares": "13359143286" }, { - "rshares": "50579277183", - "voter": "gomeravibz" + "voter": "gomeravibz", + "rshares": "50579277183" }, { - "rshares": "8734185109", - "voter": "taker" + "voter": "taker", + "rshares": "8734185109" }, { - "rshares": "12064042634", - "voter": "nekromarinist" + "voter": "nekromarinist", + "rshares": "12064042634" }, { - "rshares": "57873464", - "voter": "sharon" + "voter": "sharon", + "rshares": "57873464" }, { - "rshares": "10419645487", - "voter": "dumar022" + "voter": "dumar022", + "rshares": "10419645487" }, { - "rshares": "2157207095", - "voter": "merej99" + "voter": "merej99", + "rshares": "2157207095" }, { - "rshares": "58971492", - "voter": "lillianjones" + "voter": "lillianjones", + "rshares": "58971492" }, { - "rshares": "1213299204686", - "voter": "laonie" + "voter": "laonie", + "rshares": "1213299204686" }, { - "rshares": "157521707420", - "voter": "twinner" + "voter": "twinner", + "rshares": "157521707420" }, { - "rshares": "23391691291", - "voter": "rawnetics" + "voter": "rawnetics", + "rshares": "23391691291" }, { - "rshares": "22969142749", - "voter": "laonie1" + "voter": "laonie1", + "rshares": "22969142749" }, { - "rshares": "23485900426", - "voter": "laonie2" + "voter": "laonie2", + "rshares": "23485900426" }, { - "rshares": "23494195522", - "voter": "laonie3" + "voter": "laonie3", + "rshares": "23494195522" }, { - "rshares": "24562882668", - "voter": "laoyao" + "voter": "laoyao", + "rshares": "24562882668" }, { - "rshares": "42639811498", - "voter": "myfirst" + "voter": "myfirst", + "rshares": "42639811498" }, { - "rshares": "246279861104", - "voter": "somebody" + "voter": "somebody", + "rshares": "246279861104" }, { - "rshares": "9450505564", - "voter": "flysaga" + "voter": "flysaga", + "rshares": "9450505564" }, { - "rshares": "5831615639", - "voter": "brendio" + "voter": "brendio", + "rshares": "5831615639" }, { - "rshares": "2918578376", - "voter": "gmurph" + "voter": "gmurph", + "rshares": "2918578376" }, { - "rshares": "3690744042", - "voter": "chris.roy" + "voter": "chris.roy", + "rshares": "3690744042" }, { - "rshares": "54405024034", - "voter": "midnightoil" + "voter": "midnightoil", + "rshares": "54405024034" }, { - "rshares": "4190391188", - "voter": "ullikume" + "voter": "ullikume", + "rshares": "4190391188" }, { - "rshares": "23489872560", - "voter": "laonie4" + "voter": "laonie4", + "rshares": "23489872560" }, { - "rshares": "23487615266", - "voter": "laonie5" + "voter": "laonie5", + "rshares": "23487615266" }, { - "rshares": "23484637540", - "voter": "laonie6" + "voter": "laonie6", + "rshares": "23484637540" }, { - "rshares": "23480497322", - "voter": "laonie7" + "voter": "laonie7", + "rshares": "23480497322" }, { - "rshares": "3323984357", - "voter": "kurtbeil" + "voter": "kurtbeil", + "rshares": "3323984357" }, { - "rshares": "23477049244", - "voter": "laonie8" + "voter": "laonie8", + "rshares": "23477049244" }, { - "rshares": "23474334690", - "voter": "laonie9" + "voter": "laonie9", + "rshares": "23474334690" }, { - "rshares": "136078574669", - "voter": "xiaohui" + "voter": "xiaohui", + "rshares": "136078574669" }, { - "rshares": "21112646631", - "voter": "jphamer1" + "voter": "jphamer1", + "rshares": "21112646631" }, { - "rshares": "88206053", - "voter": "bigsambucca" + "voter": "bigsambucca", + "rshares": "88206053" }, { - "rshares": "6791986484", - "voter": "elfkitchen" + "voter": "elfkitchen", + "rshares": "6791986484" }, { - "rshares": "99935909954", - "voter": "joele" + "voter": "joele", + "rshares": "99935909954" }, { - "rshares": "5855738054", - "voter": "oflyhigh" + "voter": "oflyhigh", + "rshares": "5855738054" }, { - "rshares": "15860159560", - "voter": "randyclemens" + "voter": "randyclemens", + "rshares": "15860159560" }, { - "rshares": "2343183825", - "voter": "paynode" + "voter": "paynode", + "rshares": "2343183825" }, { - "rshares": "4366149629", - "voter": "xiaokongcom" + "voter": "xiaokongcom", + "rshares": "4366149629" }, { - "rshares": "59437351", - "voter": "msjennifer" + "voter": "msjennifer", + "rshares": "59437351" }, { - "rshares": "54654502", - "voter": "ciao" + "voter": "ciao", + "rshares": "54654502" }, { - "rshares": "62928860", - "voter": "session101" + "voter": "session101", + "rshares": "62928860" }, { - "rshares": "52985539", - "voter": "steemo" + "voter": "steemo", + "rshares": "52985539" }, { - "rshares": "8801395051", - "voter": "xianjun" + "voter": "xianjun", + "rshares": "8801395051" }, { - "rshares": "52848854", - "voter": "steema" + "voter": "steema", + "rshares": "52848854" }, { - "rshares": "72192938", - "voter": "sijoittaja" + "voter": "sijoittaja", + "rshares": "72192938" }, { - "rshares": "69662169", - "voter": "confucius" + "voter": "confucius", + "rshares": "69662169" }, { - "rshares": "72135954", - "voter": "stevescriber" + "voter": "stevescriber", + "rshares": "72135954" }, { - "rshares": "51247757", - "voter": "loli" + "voter": "loli", + "rshares": "51247757" }, { - "rshares": "91519215715", - "voter": "miacats" + "voter": "miacats", + "rshares": "91519215715" }, { - "rshares": "52419023", - "voter": "nano2nd" + "voter": "nano2nd", + "rshares": "52419023" }, { - "rshares": "53661976", - "voter": "jarvis" + "voter": "jarvis", + "rshares": "53661976" }, { - "rshares": "591109646", - "voter": "microluck" + "voter": "microluck", + "rshares": "591109646" }, { - "rshares": "74131936", - "voter": "razberrijam" + "voter": "razberrijam", + "rshares": "74131936" }, { - "rshares": "53106127", - "voter": "fortuner" + "voter": "fortuner", + "rshares": "53106127" }, { - "rshares": "2022702929", - "voter": "chinadaily" + "voter": "chinadaily", + "rshares": "2022702929" }, { - "rshares": "88481667", - "voter": "pompe72" + "voter": "pompe72", + "rshares": "88481667" }, { - "rshares": "802011524540", - "voter": "dollarvigilante" + "voter": "dollarvigilante", + "rshares": "802011524540" }, { - "rshares": "101627835", - "voter": "pollina" + "voter": "pollina", + "rshares": "101627835" }, { - "rshares": "50698107", - "voter": "johnbyrd" + "voter": "johnbyrd", + "rshares": "50698107" }, { - "rshares": "50682252", - "voter": "thomasaustin" + "voter": "thomasaustin", + "rshares": "50682252" }, { - "rshares": "50680459", - "voter": "thermor" + "voter": "thermor", + "rshares": "50680459" }, { - "rshares": "50691211", - "voter": "ficholl" + "voter": "ficholl", + "rshares": "50691211" }, { - "rshares": "51852278", - "voter": "widell" + "voter": "widell", + "rshares": "51852278" }, { - "rshares": "3635091595", - "voter": "movievertigo" + "voter": "movievertigo", + "rshares": "3635091595" }, { - "rshares": "50311250", - "voter": "revelbrooks" + "voter": "revelbrooks", + "rshares": "50311250" }, { - "rshares": "23468154723", - "voter": "laonie10" + "voter": "laonie10", + "rshares": "23468154723" }, { - "rshares": "2982691190", - "voter": "netaterra" + "voter": "netaterra", + "rshares": "2982691190" }, { - "rshares": "21980957828", - "voter": "andrewawerdna" + "voter": "andrewawerdna", + "rshares": "21980957828" }, { - "rshares": "5712937692", - "voter": "trev" + "voter": "trev", + "rshares": "5712937692" }, { - "rshares": "1874035641", - "voter": "erroneous-logic" + "voter": "erroneous-logic", + "rshares": "1874035641" }, { - "rshares": "302425178", - "voter": "sergeypotapov" + "voter": "sergeypotapov", + "rshares": "302425178" }, { - "rshares": "65868377", - "voter": "lensessions" + "voter": "lensessions", + "rshares": "65868377" }, { - "rshares": "59126308", - "voter": "wmhammer" + "voter": "wmhammer", + "rshares": "59126308" }, { - "rshares": "45978108133", - "voter": "emancipatedhuman" + "voter": "emancipatedhuman", + "rshares": "45978108133" }, { - "rshares": "15340272043", - "voter": "pressfortruth" + "voter": "pressfortruth", + "rshares": "15340272043" }, { - "rshares": "6654726855", - "voter": "hilarski" + "voter": "hilarski", + "rshares": "6654726855" }, { - "rshares": "8773942171", - "voter": "craigwilliamz" + "voter": "craigwilliamz", + "rshares": "8773942171" }, { - "rshares": "8856106682", - "voter": "onetree" + "voter": "onetree", + "rshares": "8856106682" }, { - "rshares": "101945845", - "voter": "slorunner" + "voter": "slorunner", + "rshares": "101945845" }, { - "rshares": "2029369552", - "voter": "shadowspub" + "voter": "shadowspub", + "rshares": "2029369552" }, { - "rshares": "32463005362", - "voter": "daut44" + "voter": "daut44", + "rshares": "32463005362" }, { - "rshares": "50416427", - "voter": "curpose" + "voter": "curpose", + "rshares": "50416427" }, { - "rshares": "59693834", - "voter": "suprepachyderm" + "voter": "suprepachyderm", + "rshares": "59693834" }, { - "rshares": "1615332211", - "voter": "themonetaryfew" + "voter": "themonetaryfew", + "rshares": "1615332211" }, { - "rshares": "989363278", - "voter": "dajohns1420" + "voter": "dajohns1420", + "rshares": "989363278" }, { - "rshares": "2196907450", - "voter": "runridefly" + "voter": "runridefly", + "rshares": "2196907450" }, { - "rshares": "3915304227", - "voter": "newandold" + "voter": "newandold", + "rshares": "3915304227" }, { - "rshares": "57856784", - "voter": "jamesyk" + "voter": "jamesyk", + "rshares": "57856784" }, { - "rshares": "112983030208", - "voter": "shenanigator" + "voter": "shenanigator", + "rshares": "112983030208" }, { - "rshares": "58197677", - "voter": "jcomeauictx" + "voter": "jcomeauictx", + "rshares": "58197677" }, { - "rshares": "12901147949", - "voter": "quinneaker" + "voter": "quinneaker", + "rshares": "12901147949" }, { - "rshares": "752032432", - "voter": "freeinthought" + "voter": "freeinthought", + "rshares": "752032432" }, { - "rshares": "1783693666", - "voter": "funkywanderer" + "voter": "funkywanderer", + "rshares": "1783693666" }, { - "rshares": "4900461398", - "voter": "richardcrill" + "voter": "richardcrill", + "rshares": "4900461398" }, { - "rshares": "22621459650", - "voter": "laonie11" + "voter": "laonie11", + "rshares": "22621459650" }, { - "rshares": "2205784762", - "voter": "jeremyfromwi" + "voter": "jeremyfromwi", + "rshares": "2205784762" }, { - "rshares": "50588612", - "voter": "troich" + "voter": "troich", + "rshares": "50588612" }, { - "rshares": "4662965424", - "voter": "nadin3" + "voter": "nadin3", + "rshares": "4662965424" }, { - "rshares": "588228551", - "voter": "profanarky" + "voter": "profanarky", + "rshares": "588228551" }, { - "rshares": "3411072843", - "voter": "xanoxt" + "voter": "xanoxt", + "rshares": "3411072843" }, { - "rshares": "1625414479", - "voter": "davidjkelley" + "voter": "davidjkelley", + "rshares": "1625414479" }, { - "rshares": "50593879", - "voter": "crion" + "voter": "crion", + "rshares": "50593879" }, { - "rshares": "174778016", - "voter": "greatness" + "voter": "greatness", + "rshares": "174778016" }, { - "rshares": "50271139", - "voter": "hitherise" + "voter": "hitherise", + "rshares": "50271139" }, { - "rshares": "50262756", - "voter": "wiss" + "voter": "wiss", + "rshares": "50262756" }, { - "rshares": "56782516", - "voter": "sebastianbauer" + "voter": "sebastianbauer", + "rshares": "56782516" }, { - "rshares": "55667728", - "voter": "fizzgig" + "voter": "fizzgig", + "rshares": "55667728" }, { - "rshares": "26571803569", - "voter": "sponge-bob" + "voter": "sponge-bob", + "rshares": "26571803569" }, { - "rshares": "4044716723", - "voter": "l0k1" + "voter": "l0k1", + "rshares": "4044716723" }, { - "rshares": "15232622426", - "voter": "digital-wisdom" + "voter": "digital-wisdom", + "rshares": "15232622426" }, { - "rshares": "3710973264", - "voter": "ethical-ai" + "voter": "ethical-ai", + "rshares": "3710973264" }, { - "rshares": "51033798", - "voter": "stroully" + "voter": "stroully", + "rshares": "51033798" }, { - "rshares": "3752641890", - "voter": "titusfrost" + "voter": "titusfrost", + "rshares": "3752641890" }, { - "rshares": "6682880996", - "voter": "jwaser" + "voter": "jwaser", + "rshares": "6682880996" }, { - "rshares": "50712038", - "voter": "thadm" + "voter": "thadm", + "rshares": "50712038" }, { - "rshares": "2353724275", - "voter": "zettar" + "voter": "zettar", + "rshares": "2353724275" }, { - "rshares": "1655277599", - "voter": "smisi" + "voter": "smisi", + "rshares": "1655277599" }, { - "rshares": "17357974240", - "voter": "bluehorseshoe" + "voter": "bluehorseshoe", + "rshares": "17357974240" }, { - "rshares": "53413720", - "voter": "lighter" + "voter": "lighter", + "rshares": "53413720" }, { - "rshares": "50370757", - "voter": "yorsens" + "voter": "yorsens", + "rshares": "50370757" }, { - "rshares": "263853222", - "voter": "maarnio" + "voter": "maarnio", + "rshares": "263853222" }, { - "rshares": "50931848", - "voter": "analyzethis" + "voter": "analyzethis", + "rshares": "50931848" }, { - "rshares": "2617343597", - "voter": "bwaser" + "voter": "bwaser", + "rshares": "2617343597" }, { - "rshares": "50840303", - "voter": "sofa" + "voter": "sofa", + "rshares": "50840303" }, { - "rshares": "323483227", - "voter": "panther" + "voter": "panther", + "rshares": "323483227" }, { - "rshares": "53871683", - "voter": "doggnostic" + "voter": "doggnostic", + "rshares": "53871683" }, { - "rshares": "659649765", - "voter": "ct-gurus" + "voter": "ct-gurus", + "rshares": "659649765" }, { - "rshares": "53593366", - "voter": "jenny-talls" + "voter": "jenny-talls", + "rshares": "53593366" }, { - "rshares": "411677045923", - "voter": "charlieshrem" + "voter": "charlieshrem", + "rshares": "411677045923" }, { - "rshares": "61827447459", - "voter": "tracemayer" + "voter": "tracemayer", + "rshares": "61827447459" }, { - "rshares": "54239080444", - "voter": "brains" + "voter": "brains", + "rshares": "54239080444" }, { - "rshares": "50450987", - "voter": "waldemar-kuhn" + "voter": "waldemar-kuhn", + "rshares": "50450987" }, { - "rshares": "1415009195", - "voter": "steemafon" + "voter": "steemafon", + "rshares": "1415009195" }, { - "rshares": "1352324852", - "voter": "bitcoinparadise" + "voter": "bitcoinparadise", + "rshares": "1352324852" }, { - "rshares": "5753524189", - "voter": "chick1" + "voter": "chick1", + "rshares": "5753524189" }, { - "rshares": "3605995609", - "voter": "rigaronib" + "voter": "rigaronib", + "rshares": "3605995609" }, { - "rshares": "50584036", - "voter": "aoki" + "voter": "aoki", + "rshares": "50584036" }, { - "rshares": "50516543", - "voter": "typingagent" + "voter": "typingagent", + "rshares": "50516543" }, { - "rshares": "50528809", - "voter": "cwb" + "voter": "cwb", + "rshares": "50528809" }, { - "rshares": "62515317", - "voter": "freebornangel" + "voter": "freebornangel", + "rshares": "62515317" }, { - "rshares": "271440423", - "voter": "anomaly" + "voter": "anomaly", + "rshares": "271440423" }, { - "rshares": "2401297947", - "voter": "ellepdub" + "voter": "ellepdub", + "rshares": "2401297947" }, { - "rshares": "63405661", - "voter": "inarix03" + "voter": "inarix03", + "rshares": "63405661" }, { - "rshares": "98577200", - "voter": "ola1" + "voter": "ola1", + "rshares": "98577200" }, { - "rshares": "51615652", - "voter": "rayzzz" + "voter": "rayzzz", + "rshares": "51615652" }, { - "rshares": "12115690216", - "voter": "herpetologyguy" + "voter": "herpetologyguy", + "rshares": "12115690216" }, { - "rshares": "4712300251", - "voter": "morgan.waser" + "voter": "morgan.waser", + "rshares": "4712300251" }, { - "rshares": "157644916", - "voter": "iggy" + "voter": "iggy", + "rshares": "157644916" }, { - "rshares": "51636819", - "voter": "mbizryu0" + "voter": "mbizryu0", + "rshares": "51636819" }, { - "rshares": "51631638", - "voter": "archij" + "voter": "archij", + "rshares": "51631638" }, { - "rshares": "51530815", - "voter": "movie7283" + "voter": "movie7283", + "rshares": "51530815" }, { - "rshares": "51527606", - "voter": "ppcompp2" + "voter": "ppcompp2", + "rshares": "51527606" }, { - "rshares": "51520427", - "voter": "jj1968" + "voter": "jj1968", + "rshares": "51520427" }, { - "rshares": "51516489", - "voter": "cineger" + "voter": "cineger", + "rshares": "51516489" }, { - "rshares": "51497383", - "voter": "sksduddk" + "voter": "sksduddk", + "rshares": "51497383" }, { - "rshares": "51490214", - "voter": "jjc0719" + "voter": "jjc0719", + "rshares": "51490214" }, { - "rshares": "51235131", - "voter": "glassheart" + "voter": "glassheart", + "rshares": "51235131" }, { - "rshares": "51215236", - "voter": "deli" + "voter": "deli", + "rshares": "51215236" }, { - "rshares": "1233685675", - "voter": "anns" + "voter": "anns", + "rshares": "1233685675" }, { - "rshares": "50798322", - "voter": "breeze" + "voter": "breeze", + "rshares": "50798322" }, { - "rshares": "50677982", - "voter": "sjytoy" + "voter": "sjytoy", + "rshares": "50677982" }, { - "rshares": "50676799", - "voter": "shy2675" + "voter": "shy2675", + "rshares": "50676799" }, { - "rshares": "50675747", - "voter": "suance1009" + "voter": "suance1009", + "rshares": "50675747" }, { - "rshares": "50674176", - "voter": "hasqmd" + "voter": "hasqmd", + "rshares": "50674176" }, { - "rshares": "50673722", - "voter": "fischer67" + "voter": "fischer67", + "rshares": "50673722" }, { - "rshares": "50672116", - "voter": "elya1" + "voter": "elya1", + "rshares": "50672116" }, { - "rshares": "50632828", - "voter": "xclamp45" + "voter": "xclamp45", + "rshares": "50632828" }, { - "rshares": "50618471", - "voter": "likeagame1" + "voter": "likeagame1", + "rshares": "50618471" }, { - "rshares": "50616898", - "voter": "apple4006" + "voter": "apple4006", + "rshares": "50616898" }, { - "rshares": "50615195", - "voter": "bigbell61" + "voter": "bigbell61", + "rshares": "50615195" }, { - "rshares": "50612850", - "voter": "dolpo777" + "voter": "dolpo777", + "rshares": "50612850" }, { - "rshares": "50611931", - "voter": "dongperi" + "voter": "dongperi", + "rshares": "50611931" }, { - "rshares": "50610620", - "voter": "lion2byung" + "voter": "lion2byung", + "rshares": "50610620" }, { - "rshares": "50610002", - "voter": "cwj1973" + "voter": "cwj1973", + "rshares": "50610002" }, { - "rshares": "50609329", - "voter": "psj212" + "voter": "psj212", + "rshares": "50609329" }, { - "rshares": "50608661", - "voter": "owithed2" + "voter": "owithed2", + "rshares": "50608661" }, { - "rshares": "50606929", - "voter": "fiself2" + "voter": "fiself2", + "rshares": "50606929" }, { - "rshares": "50605131", - "voter": "trablinever1" + "voter": "trablinever1", + "rshares": "50605131" }, { - "rshares": "50603861", - "voter": "nuals1940" + "voter": "nuals1940", + "rshares": "50603861" }, { - "rshares": "50602310", - "voter": "fanceth2" + "voter": "fanceth2", + "rshares": "50602310" }, { - "rshares": "50572441", - "voter": "unilever" + "voter": "unilever", + "rshares": "50572441" }, { - "rshares": "50540827", - "voter": "amstel" + "voter": "amstel", + "rshares": "50540827" }, { - "rshares": "1921231770", - "voter": "bapparabi" + "voter": "bapparabi", + "rshares": "1921231770" }, { - "rshares": "50479027", - "voter": "sunlight" + "voter": "sunlight", + "rshares": "50479027" }, { - "rshares": "50355943", - "voter": "forea1995" + "voter": "forea1995", + "rshares": "50355943" }, { - "rshares": "50354561", - "voter": "holow1968" + "voter": "holow1968", + "rshares": "50354561" }, { - "rshares": "50353969", - "voter": "peaces1952" + "voter": "peaces1952", + "rshares": "50353969" }, { - "rshares": "50346496", - "voter": "himighar2" + "voter": "himighar2", + "rshares": "50346496" }, { - "rshares": "50345607", - "voter": "aromese1974" + "voter": "aromese1974", + "rshares": "50345607" }, { - "rshares": "50344921", - "voter": "runis1943" + "voter": "runis1943", + "rshares": "50344921" }, { - "rshares": "50344067", - "voter": "tong1962" + "voter": "tong1962", + "rshares": "50344067" }, { - "rshares": "50340744", - "voter": "hishe1997" + "voter": "hishe1997", + "rshares": "50340744" }, { - "rshares": "255059000", - "voter": "letstalkliberty" + "voter": "letstalkliberty", + "rshares": "255059000" }, { - "rshares": "3609651500", - "voter": "strong-ai" + "voter": "strong-ai", + "rshares": "3609651500" }, { - "rshares": "53375937", - "voter": "ninjapainter" + "voter": "ninjapainter", + "rshares": "53375937" }, { - "rshares": "51393104", - "voter": "buit1989" + "voter": "buit1989", + "rshares": "51393104" }, { - "rshares": "51389981", - "voter": "imadecoult1" + "voter": "imadecoult1", + "rshares": "51389981" }, { - "rshares": "51387526", - "voter": "infees2" + "voter": "infees2", + "rshares": "51387526" }, { - "rshares": "51384095", - "voter": "suar1997" + "voter": "suar1997", + "rshares": "51384095" }, { - "rshares": "51382067", - "voter": "sobsell93" + "voter": "sobsell93", + "rshares": "51382067" }, { - "rshares": "51380710", - "voter": "stroned96" + "voter": "stroned96", + "rshares": "51380710" }, { - "rshares": "51378107", - "voter": "drethe" + "voter": "drethe", + "rshares": "51378107" }, { - "rshares": "51377505", - "voter": "qualwas" + "voter": "qualwas", + "rshares": "51377505" }, { - "rshares": "51376367", - "voter": "phent1994" + "voter": "phent1994", + "rshares": "51376367" }, { - "rshares": "51375075", - "voter": "baboyes" + "voter": "baboyes", + "rshares": "51375075" }, { - "rshares": "51373532", - "voter": "whor1973" + "voter": "whor1973", + "rshares": "51373532" }, { - "rshares": "51372739", - "voter": "youreforn" + "voter": "youreforn", + "rshares": "51372739" }, { - "rshares": "51371902", - "voter": "voll1981" + "voter": "voll1981", + "rshares": "51371902" }, { - "rshares": "51370717", - "voter": "copenty2" + "voter": "copenty2", + "rshares": "51370717" }, { - "rshares": "51369717", - "voter": "maject2" + "voter": "maject2", + "rshares": "51369717" }, { - "rshares": "51367233", - "voter": "coust1997" + "voter": "coust1997", + "rshares": "51367233" }, { - "rshares": "51366398", - "voter": "busionea84" + "voter": "busionea84", + "rshares": "51366398" }, { - "rshares": "51365174", - "voter": "therver1" + "voter": "therver1", + "rshares": "51365174" }, { - "rshares": "51364022", - "voter": "appirdsmanne1990" + "voter": "appirdsmanne1990", + "rshares": "51364022" }, { - "rshares": "51362967", - "voter": "alienighted87" + "voter": "alienighted87", + "rshares": "51362967" }, { - "rshares": "51359746", - "voter": "anity1994" + "voter": "anity1994", + "rshares": "51359746" }, { - "rshares": "59959066", - "voter": "themphe1" + "voter": "themphe1", + "rshares": "59959066" }, { - "rshares": "51355864", - "voter": "abild1988" + "voter": "abild1988", + "rshares": "51355864" }, { - "rshares": "51353540", - "voter": "spoll1973" + "voter": "spoll1973", + "rshares": "51353540" }, { - "rshares": "66162576", - "voter": "afteld1" + "voter": "afteld1", + "rshares": "66162576" }, { - "rshares": "71207873", - "voter": "igtes" + "voter": "igtes", + "rshares": "71207873" }, { - "rshares": "835065804", - "voter": "dikanevroman" + "voter": "dikanevroman", + "rshares": "835065804" }, { - "rshares": "141679752", - "voter": "buffett" + "voter": "buffett", + "rshares": "141679752" }, { - "rshares": "1630362522", - "voter": "rusteemitblog" + "voter": "rusteemitblog", + "rshares": "1630362522" }, { - "rshares": "167843838", - "voter": "robyneggs" + "voter": "robyneggs", + "rshares": "167843838" }, { - "rshares": "1300689481", - "voter": "michaelstobiersk" + "voter": "michaelstobiersk", + "rshares": "1300689481" }, { - "rshares": "453506109", - "voter": "witchcraftblog" + "voter": "witchcraftblog", + "rshares": "453506109" }, { - "rshares": "158057595", - "voter": "sdc" + "voter": "sdc", + "rshares": "158057595" }, { - "rshares": "160973134", - "voter": "gravity" + "voter": "gravity", + "rshares": "160973134" }, { - "rshares": "160900665", - "voter": "digitalillusions" + "voter": "digitalillusions", + "rshares": "160900665" }, { - "rshares": "157726117", - "voter": "illusions" + "voter": "illusions", + "rshares": "157726117" }, { - "rshares": "157176058", - "voter": "cybergirls" + "voter": "cybergirls", + "rshares": "157176058" }, { - "rshares": "156847954", - "voter": "correct" + "voter": "correct", + "rshares": "156847954" }, { - "rshares": "156814579", - "voter": "haribo" + "voter": "haribo", + "rshares": "156814579" }, { - "rshares": "156194471", - "voter": "stimmt" + "voter": "stimmt", + "rshares": "156194471" }, { - "rshares": "156054487", - "voter": "fallout" + "voter": "fallout", + "rshares": "156054487" }, { - "rshares": "159062820", - "voter": "rule" + "voter": "rule", + "rshares": "159062820" }, { - "rshares": "155907388", - "voter": "xtreme" + "voter": "xtreme", + "rshares": "155907388" }, { - "rshares": "1442647825", - "voter": "modernbukowski" + "voter": "modernbukowski", + "rshares": "1442647825" }, { - "rshares": "158602900", - "voter": "steem-wallet" + "voter": "steem-wallet", + "rshares": "158602900" }, { - "rshares": "158535752", - "voter": "nerds" + "voter": "nerds", + "rshares": "158535752" }, { - "rshares": "31008332335", - "voter": "goldmatters" + "voter": "goldmatters", + "rshares": "31008332335" }, { - "rshares": "155796749", - "voter": "majes" + "voter": "majes", + "rshares": "155796749" }, { - "rshares": "155166715", - "voter": "maxb02" + "voter": "maxb02", + "rshares": "155166715" }, { - "rshares": "71727340", - "voter": "dealzgal" + "voter": "dealzgal", + "rshares": "71727340" }, { - "rshares": "120983531", - "voter": "bleujay" + "voter": "bleujay", + "rshares": "120983531" }, { - "rshares": "68013381", - "voter": "storage" + "voter": "storage", + "rshares": "68013381" }, { - "rshares": "298391608", - "voter": "risabold" + "voter": "risabold", + "rshares": "298391608" }, { - "rshares": "154247502", - "voter": "dougkarr" + "voter": "dougkarr", + "rshares": "154247502" }, { - "rshares": "58460105", - "voter": "blackmarket" + "voter": "blackmarket", + "rshares": "58460105" }, { - "rshares": "61530871", - "voter": "gifts" + "voter": "gifts", + "rshares": "61530871" }, { - "rshares": "96643251", - "voter": "expat" + "voter": "expat", + "rshares": "96643251" }, { - "rshares": "181770825", - "voter": "pathtomydream" + "voter": "pathtomydream", + "rshares": "181770825" }, { - "rshares": "519265850", - "voter": "doubledex" + "voter": "doubledex", + "rshares": "519265850" }, { - "rshares": "1593664040", - "voter": "steemlift" + "voter": "steemlift", + "rshares": "1593664040" }, { - "rshares": "129609202", - "voter": "toddemaher1" + "voter": "toddemaher1", + "rshares": "129609202" } ], - "author": "dollarvigilante", - "author_payout_value": "0.000 HBD", "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 387, + "flag_weight": 0.0 + }, "beneficiaries": [], - "blacklists": [], - "body": "
https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg
\n\nIn past issues, we\u2019ve documented increasingly concerned billionaires warning of dangerous economic times. Many have favored gold as an alternative allocation in a world where $13 trillion-worth of debt is negative yielding, interest rates are artificially suppressed and we\u2019re on the brink of major wars.\n\nThe newest addition to this gold-loving billionaire's club, is none other than hedge-fund manager Paul Singer. At CNBC\u2019s Delivering Alpha Investors Conference this week, the founder of the $27-billion Elliott Management Fund, the 17th largest hedge fund in the world, mentioned that at current prices gold is \u201cundervalued\u201d and \u201cunderrepresented in many portfolios as the only ... store of value that has stood the test of time.\u201d\n\nSinger, along with numerous other hedge-fund managers, has been increasingly outspoken in his criticism of the Federal Reserve and other central banks for creating dangers in the market unlike any in what he terms the \u201c5,000 year-ish\u201d history of finance. Singer noted that \u201cit's a very dangerous time in the global economy and global financial markets.\"\n\nThis quote is frighteningly similar to the response given by Donald Trump on Fox Business not long ago when he was asked if he had money in the market. He answered, \u201cI did, but I got out,\u201d and then went on to say that he expected \u201cvery scary scenarios\u201d for investors.\n\nSinger also stated that he thinks owning medium- to long-term first world debt is a \u201creally bad idea\u201d... and then proceeded to tell listeners to sell their 30-year bonds.\n\nEarlier in the conference, prior to Singer, Ray Dalio who is the manager of the largest hedge fund in the world, Bridgewater Capital, was also vocal about the diminishing returns provided by government debt held by central banks. \u201cThere\u2019s only so much you can squeeze out of the debt cycle,\" he said. He went on to say that central banks are at a point now where their ability to stimulate is limited.\n\nSeated next to Dalio was Former Treasury secretary Timothy Geithner who voiced concern about limited \u201ctools in the keynesian arsenal,\u201d that probably wouldn\u2019t be enough to offset the next recession.\n\nGeithner obviously believes that a recession is on the way. Dalio and Singer are trying to convey the same message. A massive crunch is looming.\n\nWe agree with them, although we believe Geithner was sugarcoating what\u2019s to come.\n\nAfter all, we are on the precipice of a crash of biblical proportions according to the former chief economist of the Bank for International Settlements, William White.\n\nWe have mentioned his quote numerous time here at TDV but feel it\u2019s important to reiterate because of its magnitude: \u201cThe only question is whether we are able to look reality in the eye and face what is coming in an orderly fashion, or whether it will be disorderly. Debt jubilees have been going on for 5,000 years, as far back as the Sumerians.\u201d\n\nAs the Fed considers its second rate hike in 10 years, Singer condemned policy-makers for acting with \u201camazing arrogance\u201d when he and others had warned of a mortgage crisis prior to 2008.\n\nWhat he and those who agreed with his stance don\u2019t know, or at least won\u2019t state publicly, is that these shoddy central bank policies are detrimental by design. In other words, their sole purpose is to destabilize the world economy.\n\nThis deliberate market sabotage is necessary for the transference of power from the more developed nations to less developed ones. Ultimately, the idea is to eliminate smaller regional and national central banks. Once things get bad enough, these smaller banks will be blamed for provoking a given crisis. And, secondarily, the end goal is to blow up the entire system in order to bring in the one world government and central bank.\n\nThe elites have used the same tactics time and time again throughout history. First, they create the problem, then there is a reaction, and then finally they come swooping in to \u201cvaliantly save\u201d the day. It's happened numerous times before.\n
https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png
\nAnd it will soon happen again.\n\nOf course, the globalists have demonstrated that every intervention only makes situations worse.\n\nWe reported on the blatant thievery going on at Wells Fargo in our last article and noted how the elites were probably laughing hysterically at what they\u2019re able to get away with. They were even able to convince many younger American voters that \u201cdemocratic socialism\u201d would be their savior, as seen by the significant, youthful support for Bernie Slanders. Debt and currency crises have already started to materialize, as we\u2019ve seen in the socialist utopia that is Venezuela. If this is any indication of what\u2019s to come, the future is looking awfully gloomy.\n\nAs Singer and others including Dalio have mentioned before, the most tried and true measure of wealth and value is gold.\n\nAt TDV we provide unique Austrian-economics based analysis from the anarcho-capitalist pespective of the state of the world\u2019s economy, as well as suggestions on how to protect your assets in these tempestuous and unprecedented times.\n\nJacob Rothschild, a member of the family partly responsible for the creation of all this chaos, even said himself that we are in \u201cuncharted waters\u201d and that it\u2019s \u201cimpossible to predict the unintended consequences of very low interest rates.\u201d\n\nWe have a pretty good idea of what the consequences will be and we\u2019re taking action to protect ourselves and even profit from them. Rothschild seems to know the consequences, as well, as he has been buying up gold and selling the stock market and the US dollar.\n\nYou can survive and profit from the orchestrated collapse too. Subscribe to TDV\u2019s newsletter here to receive constantly updated information on how to protect your family and friends.\n\nIn the end, it is getting truly bizarre just how many billionaires, central bankers and others of note are all warning of the coming collapse. We\u2019d almost begun to worry that they were going to pull a switch-a-roo on us, but if you asked the great majority of investors and financial analysts, they\u2019ll tell you that they see nothing but smooth sailing ahead.\n\nSo, while many are warning, many are hearing, but not listening. The bible said something about that, I believe.\n
https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg
", - "category": "money", - "children": 23, - "created": "2016-09-15T18:23:15", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/money/@dollarvigilante/another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", + "blacklists": [] + }, + { + "post_id": 949447, + "author": "curie", + "permlink": "special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", + "category": "curie", + "title": "Special Edition: Major Updates & Project Curie Month #1 Roundup (12 August - 11 September 2016)", + "body": "\n

\n

One Month of Project Curie

\n

This will be special update from Project Curie. One month ago, Project Curie began with humble beginnings. It has been an exhilarating experience for the team and we are delighted to share our progress with the Steemit community. To know more about Project Curie, do check out our initial announcement.


\n

Project Curie wishes to thank @pharesim, @val, @silversteem and @clayop along with @nextgencrypto and @berniesanders for helping us reward more deserving posts

\n

When a group of Steemit writers got together to form Project Curie, we thought that if we pooled our own votes on some posts, we could help reward some emerging and undiscovered authors who were posting great original material. 

\n

$5 later, it was clear our combined votes wouldn’t make a huge difference.

\n

Fortunately, we were able to form a partnership with @nextgencrypto who was generous enough to donate some voting power to help reward deserving posters who were not yet established. @berniesanders then joined to help. With their support, Project Curie became a reality. 

\n

Today, we announce that @val, @pharesim, @silversteem and @clayop also have donated additional voting power to help Project Curie reach a greater number of original content posts from undiscovered and deserving authors. Please join us in thanking them. And please do not send your posts directly to any of these individuals; Project Curie is curating the posts and you are welcome to submit any good ones you find to the #curie channel on Steemit.chat.


\n\n

Proyecto Cervantes

\n

Project Curie is excited to announce a new branch of curation created to support Spanish authors on Steemit. The branch is called “Proyecto Cervantes” and it’s main curators are @gargon and @pgarcgo. The goal is to find and reward Spanish or bilingual (Spanish and English) posts on Steemit in order to foster a more diverse community. @gargon and @pgarcgo will be creating a compilation post for every 10 posts that they curate in order to provide transparency as to which posts are being rewarded. The hope is also to provide the original authors more exposure. You can find their first compilation posts here and here. Two members of Project Curie are Spanish speakers ( @anwenbaumeister and @the-alien), and they provide a second line of curation and review for these posts. So, if you are a Spanish speaker, we encourage you to begin writing bilingual posts in order to create a bridge between the two languages and communities!

\n\n
\n\n

Statistics from Month #1

\n

Total posts curated: 2055
\n
Unique authors rewarded: 763
\n
Total rewards generated for authors: SBD 158,151
\n
Mean reward generated per post: SBD 77
\n
Median reward generated per post: SBD 40  

\n

\n

Since we began tracking on 18th August, we have consistently voted on an average of over 75 posts per day. The trajectory is clearly heading up, and in the last week we have been averaging nearly 100 posts. 

\n

Authors

\n

The Top 10 Authors by number of posts curated were -

\n
    \n
  • @kimal73   
  • \n
  • @herverisson   
  • \n
  • @cristi   
  • \n
  • @lukeofkondor   
  • \n
  • @papa-pepper   
  • \n
  • @cryptos   
  • \n
  • @mariandavp   
  • \n
  • @stephmckenzie   
  • \n
  • @eveningstar92   
  • \n
  • @prufarchy    
  • \n
\n

Top Authors by payouts includes @alexbeyman, @kaylinart, @brianphobos, @jamielefay, @omfedor, @stephmckenzie, @ionescur, @aboundlessworld and @anotherjoe. Many of those names are pretty familiar today, but less than a month ago, they were new authors struggling for exposure.

\n

Tags/Topics

\n

The most used tag was \"life\", but that pretty much includes everything!

\n

\n

The most popular topics were \"art\" (549) and \"photography\" (418). \"Story\" and \"writing\" were pretty close, tagged on around 370 posts each, though we suspect these two tags are often repeated. \"Travel\" and \"science\" also make an appearance. Looking forward, we intend to focus more on original science and technology related posts, and other unique / niche topics. 

\n

#curie

\n

Following our announcement on September 2nd, the #curie channel has been a remarkable success. Currently we have 218 users in the room, 44 of whom have curated content from other authors. We have upvoted 105 posts submitted in #curie, and paid out SBD 525 to curators. 

\n

Top curators from #curie were -

\n
    \n
  • @pfunk
  • \n
  • @kental
  • \n
  • @jamtaylor
  • \n
  • @deviedev
  • \n
  • @royaltiffany
  • \n
\n

Join us on #curie at Steemit.chat and keep the submissions coming! 


\n

Thanks

\n

Last, but not least, we wish to thank - 

\n

@knozaki2015, @shaka, @razvanelulmarin, @greenwayoflife, @jasonstaggers for their generous donations.
\n@royaltiffany for moderating #curie and creating the noble TheButler bot. :)
\n@firepower for setting up the #curie room.
\n
\nAnd of course, everyone voting on and commenting on posts we curate!


\n

Onward to Month #2! 

\n

We are working to increase our reach and rewards for authors, courtesy of extended whale support. We are also setting up @curie as a universal voter for all posts we curate. This way, you can choose to mirror our votes to support the authors. Look out for an announcement regarding this in our Daily Curation List posts. From next week, every Monday we'll have a Weekly Roundup with statistics, similar to this post.

\n

We are always open to feedback, and would love to know how you feel we could do better in Month #2!

\n", "json_metadata": { + "tags": [ + "curie", + "minnows", + "hidden-gems", + "steemit", + "project-curie" + ], + "users": [ + "pharesim", + "val", + "silversteem", + "clayop", + "nextgencrypto", + "berniesanders", + "gargon", + "pgarcgo", + "anwenbaumeister", + "the-alien", + "kimal73", + "herverisson", + "cristi", + "lukeofkondor", + "papa-pepper", + "cryptos", + "mariandavp", + "stephmckenzie", + "eveningstar92", + "prufarchy", + "alexbeyman", + "kaylinart", + "brianphobos", + "jamielefay", + "omfedor", + "ionescur", + "aboundlessworld", + "anotherjoe", + "pfunk", + "kental", + "jamtaylor", + "deviedev", + "royaltiffany", + "knozaki2015", + "shaka", + "razvanelulmarin", + "greenwayoflife", + "jasonstaggers", + "firepower", + "curie" + ], "image": [ - "https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg", - "https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png", - "https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg" + "https://www.steemimg.com/images/2016/09/01/Babel-Lille-2012-Bibliohteque-ideale-2-Jean-Francois-RAUZIER4f9da.jpg", + "https://www.steemimg.com/images/2016/09/14/curie-1da303.jpg", + "https://www.steemimg.com/images/2016/09/14/curie-23f98a.jpg" ], "links": [ - "https://dollarvigilante.com/subscribe" - ], - "tags": [ - "money", - "gold", - "silver", - "bitcoin", - "crisis" + "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", + "https://steemit.com/spanish/@gargon/proyecto-cervantes-08-11-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", + "https://steemit.com/spanish/@pgarcgo/proyecto-cervantes-11-13-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and" ] }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 102136532384242, - "payout": 595.718, - "payout_at": "2016-09-22T18:23:15", - "pending_payout_value": "595.718 HBD", - "percent_hbd": 10000, - "permlink": "another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", - "post_id": 1257023, + "created": "2016-09-14T14:11:30", + "updated": "2016-09-14T16:09:51", + "depth": 0, + "children": 37, + "net_rshares": 203814685511375, + "is_paidout": false, + "payout_at": "2016-09-15T22:00:19", + "payout": 2332.588, + "pending_payout_value": "2332.588 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", "promoted": "0.000 HBD", "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 387 - }, - "title": "Another Billionaire Warns of Catastrophic Depths Not Seen in 5,000 Years - and Emphasizes Gold", - "updated": "2016-09-15T18:23:15", - "url": "/money/@dollarvigilante/another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold" - }, - { "active_votes": [ { - "rshares": "260764053346", - "voter": "anonymous" + "voter": "anonymous", + "rshares": "260764053346" }, { - "rshares": "26301850743316", - "voter": "berniesanders" + "voter": "berniesanders", + "rshares": "26301850743316" }, { - "rshares": "14447419939656", - "voter": "summon" + "voter": "summon", + "rshares": "14447419939656" }, { - "rshares": "30325685746209", - "voter": "val-a" + "voter": "val-a", + "rshares": "30325685746209" }, { - "rshares": "15605000000000", - "voter": "val-b" + "voter": "val-b", + "rshares": "15605000000000" }, { - "rshares": "35140699766668", - "voter": "jamesc" + "voter": "jamesc", + "rshares": "35140699766668" }, { - "rshares": "4574334081535", - "voter": "riverhead" + "voter": "riverhead", + "rshares": "4574334081535" }, { - "rshares": "7028898358251", - "voter": "wackou" + "voter": "wackou", + "rshares": "7028898358251" }, { - "rshares": "173882410087", - "voter": "nextgenwitness" + "voter": "nextgenwitness", + "rshares": "173882410087" }, { - "rshares": "9910560004202", - "voter": "pharesim" + "voter": "pharesim", + "rshares": "9910560004202" }, { - "rshares": "610230676198", - "voter": "justin" + "voter": "justin", + "rshares": "610230676198" }, { - "rshares": "120855503269", - "voter": "sandra" + "voter": "sandra", + "rshares": "120855503269" }, { - "rshares": "5450332021682", - "voter": "kushed" + "voter": "kushed", + "rshares": "5450332021682" }, { - "rshares": "1673100049730", - "voter": "silver" + "voter": "silver", + "rshares": "1673100049730" }, { - "rshares": "4062956162312", - "voter": "silversteem" + "voter": "silversteem", + "rshares": "4062956162312" }, { - "rshares": "1149056534045", - "voter": "ihashfury" + "voter": "ihashfury", + "rshares": "1149056534045" }, { - "rshares": "4624346498267", - "voter": "nextgencrypto" + "voter": "nextgencrypto", + "rshares": "4624346498267" }, { - "rshares": "6514602351120", - "voter": "complexring" + "voter": "complexring", + "rshares": "6514602351120" }, { - "rshares": "6400095696110", - "voter": "clayop" + "voter": "clayop", + "rshares": "6400095696110" }, { - "rshares": "403437826343", - "voter": "steemservices" + "voter": "steemservices", + "rshares": "403437826343" }, { - "rshares": "26833458550", - "voter": "steemservices1" + "voter": "steemservices1", + "rshares": "26833458550" }, { - "rshares": "1731510767128", - "voter": "joseph" + "voter": "joseph", + "rshares": "1731510767128" }, { - "rshares": "84640148427", - "voter": "aizensou" + "voter": "aizensou", + "rshares": "84640148427" }, { - "rshares": "4166568773495", - "voter": "au1nethyb1" + "voter": "au1nethyb1", + "rshares": "4166568773495" }, { - "rshares": "223905651656", - "voter": "b0y2k" + "voter": "b0y2k", + "rshares": "223905651656" }, { - "rshares": "12275043694", - "voter": "bentley" + "voter": "bentley", + "rshares": "12275043694" }, { - "rshares": "630566306296", - "voter": "masteryoda" + "voter": "masteryoda", + "rshares": "630566306296" }, { - "rshares": "1209033907", - "voter": "mineralwasser" + "voter": "mineralwasser", + "rshares": "1209033907" }, { - "rshares": "687090032502", - "voter": "boombastic" + "voter": "boombastic", + "rshares": "687090032502" }, { - "rshares": "91240228363", - "voter": "mrs.agsexplorer" + "voter": "mrs.agsexplorer", + "rshares": "91240228363" }, { - "rshares": "1718241828", - "voter": "bingo-1" + "voter": "bingo-1", + "rshares": "1718241828" }, { - "rshares": "258890080700", - "voter": "indominon" + "voter": "indominon", + "rshares": "258890080700" }, { - "rshares": "795235221870", - "voter": "pfunk" + "voter": "pfunk", + "rshares": "795235221870" }, { - "rshares": "170448234189", - "voter": "pairmike" + "voter": "pairmike", + "rshares": "170448234189" }, { - "rshares": "3126367512437", - "voter": "onceuponatime" + "voter": "onceuponatime", + "rshares": "3126367512437" }, { - "rshares": "10365366239", - "voter": "idol" + "voter": "idol", + "rshares": "10365366239" }, { - "rshares": "2747150485288", - "voter": "donkeypong" + "voter": "donkeypong", + "rshares": "2747150485288" }, { - "rshares": "799706906226", - "voter": "steemrollin" + "voter": "steemrollin", + "rshares": "799706906226" }, { - "rshares": "4940816573", - "voter": "sakr" + "voter": "sakr", + "rshares": "4940816573" }, { - "rshares": "52267603683", - "voter": "ilanaakoundi" + "voter": "ilanaakoundi", + "rshares": "52267603683" }, { - "rshares": "1784486145", - "voter": "jocelyn" + "voter": "jocelyn", + "rshares": "1784486145" }, { - "rshares": "81778714071", - "voter": "acidsun" + "voter": "acidsun", + "rshares": "81778714071" }, { - "rshares": "14485500439", - "voter": "gregory-f" + "voter": "gregory-f", + "rshares": "14485500439" }, { - "rshares": "182184490464", - "voter": "samuel-stone" + "voter": "samuel-stone", + "rshares": "182184490464" }, { - "rshares": "17261905745", - "voter": "jademont" + "voter": "jademont", + "rshares": "17261905745" }, { - "rshares": "1231622449650", - "voter": "gavvet" + "voter": "gavvet", + "rshares": "1231622449650" }, { - "rshares": "44936016583", - "voter": "eeks" + "voter": "eeks", + "rshares": "44936016583" }, { - "rshares": "-12893763252", - "voter": "james-show" + "voter": "james-show", + "rshares": "-12893763252" }, { - "rshares": "581796947010", - "voter": "nanzo-scoop" + "voter": "nanzo-scoop", + "rshares": "581796947010" }, { - "rshares": "9089111423", - "voter": "cian.dafe" + "voter": "cian.dafe", + "rshares": "9089111423" }, { - "rshares": "48608113541", - "voter": "hannixx42" + "voter": "hannixx42", + "rshares": "48608113541" }, { - "rshares": "178475239190", - "voter": "mummyimperfect" + "voter": "mummyimperfect", + "rshares": "178475239190" }, { - "rshares": "268818780", - "voter": "coar" + "voter": "coar", + "rshares": "268818780" }, { - "rshares": "100988550788", - "voter": "asch" + "voter": "asch", + "rshares": "100988550788" }, { - "rshares": "629740296743", - "voter": "kevinwong" + "voter": "kevinwong", + "rshares": "629740296743" }, { - "rshares": "1414357784", - "voter": "murh" + "voter": "murh", + "rshares": "1414357784" }, { - "rshares": "3186258004", - "voter": "cryptofunk" + "voter": "cryptofunk", + "rshares": "3186258004" }, { - "rshares": "17430843199", - "voter": "b4bb4r-5h3r" + "voter": "b4bb4r-5h3r", + "rshares": "17430843199" }, { - "rshares": "2326310189", - "voter": "error" + "voter": "error", + "rshares": "2326310189" }, { - "rshares": "5853981249", - "voter": "marta-zaidel" + "voter": "marta-zaidel", + "rshares": "5853981249" }, { - "rshares": "1064576926325", - "voter": "cyber" + "voter": "cyber", + "rshares": "1064576926325" }, { - "rshares": "49529533316", - "voter": "ak2020" + "voter": "ak2020", + "rshares": "49529533316" }, { - "rshares": "7897522470", - "voter": "thecryptofiend" + "voter": "thecryptofiend", + "rshares": "7897522470" }, { - "rshares": "24406094847", - "voter": "paul-labossiere" + "voter": "paul-labossiere", + "rshares": "24406094847" }, { - "rshares": "98824186817", - "voter": "eric-boucher" + "voter": "eric-boucher", + "rshares": "98824186817" }, { - "rshares": "418804855", - "voter": "applecrisp" + "voter": "applecrisp", + "rshares": "418804855" }, { - "rshares": "55573071997", - "voter": "juanmiguelsalas" + "voter": "juanmiguelsalas", + "rshares": "55573071997" }, { - "rshares": "33768131164", - "voter": "ratel" + "voter": "ratel", + "rshares": "33768131164" }, { - "rshares": "574978856216", - "voter": "infovore" + "voter": "infovore", + "rshares": "574978856216" }, { - "rshares": "2201949670", - "voter": "stephen-somers" + "voter": "stephen-somers", + "rshares": "2201949670" }, { - "rshares": "804428766688", - "voter": "anwenbaumeister" + "voter": "anwenbaumeister", + "rshares": "804428766688" }, { - "rshares": "6652497229", - "voter": "grandpere" + "voter": "grandpere", + "rshares": "6652497229" }, { - "rshares": "5946920606", - "voter": "mark-waser" + "voter": "mark-waser", + "rshares": "5946920606" }, { - "rshares": "17023109715", - "voter": "albertogm" + "voter": "albertogm", + "rshares": "17023109715" }, { - "rshares": "202862990998", - "voter": "kimziv" + "voter": "kimziv", + "rshares": "202862990998" }, { - "rshares": "81140450926", - "voter": "emily-cook" + "voter": "emily-cook", + "rshares": "81140450926" }, { - "rshares": "87044687927", - "voter": "razvanelulmarin" + "voter": "razvanelulmarin", + "rshares": "87044687927" }, { - "rshares": "11725334283", - "voter": "primus" + "voter": "primus", + "rshares": "11725334283" }, { - "rshares": "20587586407", - "voter": "skapaneas" + "voter": "skapaneas", + "rshares": "20587586407" }, { - "rshares": "280886491", - "voter": "ladyclair" + "voter": "ladyclair", + "rshares": "280886491" }, { - "rshares": "158997318209", - "voter": "asmolokalo" + "voter": "asmolokalo", + "rshares": "158997318209" }, { - "rshares": "453674041389", - "voter": "roelandp" + "voter": "roelandp", + "rshares": "453674041389" }, { - "rshares": "62652918156", - "voter": "lehard" + "voter": "lehard", + "rshares": "62652918156" }, { - "rshares": "24867544970", - "voter": "katyakov" + "voter": "katyakov", + "rshares": "24867544970" }, { - "rshares": "19227034654", - "voter": "hakise" + "voter": "hakise", + "rshares": "19227034654" }, { - "rshares": "158322035362", - "voter": "derekareith" + "voter": "derekareith", + "rshares": "158322035362" }, { - "rshares": "540675721761", - "voter": "neoxian" + "voter": "neoxian", + "rshares": "540675721761" }, { - "rshares": "1382909545432", - "voter": "renohq" + "voter": "renohq", + "rshares": "1382909545432" }, { - "rshares": "18347051336", - "voter": "ausbitbank" + "voter": "ausbitbank", + "rshares": "18347051336" }, { - "rshares": "45733024772", - "voter": "mrwang" + "voter": "mrwang", + "rshares": "45733024772" }, { - "rshares": "243777568", - "voter": "ardina" + "voter": "ardina", + "rshares": "243777568" }, { - "rshares": "17613903814", - "voter": "sebastien" + "voter": "sebastien", + "rshares": "17613903814" }, { - "rshares": "13516878845", - "voter": "sitaru" + "voter": "sitaru", + "rshares": "13516878845" }, { - "rshares": "33656343814", - "voter": "toxonaut" + "voter": "toxonaut", + "rshares": "33656343814" }, { - "rshares": "1107683133", - "voter": "karen13" + "voter": "karen13", + "rshares": "1107683133" }, { - "rshares": "37477086352", - "voter": "diana.catherine" + "voter": "diana.catherine", + "rshares": "37477086352" }, { - "rshares": "11096353249", - "voter": "deviedev" + "voter": "deviedev", + "rshares": "11096353249" }, { - "rshares": "71693623547", - "voter": "jpiper20" + "voter": "jpiper20", + "rshares": "71693623547" }, { - "rshares": "4205385163", - "voter": "dcryptogold" + "voter": "dcryptogold", + "rshares": "4205385163" }, { - "rshares": "2722560234", - "voter": "dmacshady" + "voter": "dmacshady", + "rshares": "2722560234" }, { - "rshares": "35770303799", - "voter": "creemej" + "voter": "creemej", + "rshares": "35770303799" }, { - "rshares": "2434921863", - "voter": "the-future" + "voter": "the-future", + "rshares": "2434921863" }, { - "rshares": "4296012707", - "voter": "adamt" + "voter": "adamt", + "rshares": "4296012707" }, { - "rshares": "2884781837", - "voter": "sgnsteems" + "voter": "sgnsteems", + "rshares": "2884781837" }, { - "rshares": "175156042246", - "voter": "blueorgy" + "voter": "blueorgy", + "rshares": "175156042246" }, { - "rshares": "4542807775", - "voter": "poseidon" + "voter": "poseidon", + "rshares": "4542807775" }, { - "rshares": "7168473448", - "voter": "geronimo" + "voter": "geronimo", + "rshares": "7168473448" }, { - "rshares": "256660074008", - "voter": "liberosist" + "voter": "liberosist", + "rshares": "256660074008" }, { - "rshares": "3773911635", - "voter": "birdie" + "voter": "birdie", + "rshares": "3773911635" }, { - "rshares": "9502502066", - "voter": "oumar" + "voter": "oumar", + "rshares": "9502502066" }, { - "rshares": "53840923427", - "voter": "jl777" + "voter": "jl777", + "rshares": "53840923427" }, { - "rshares": "1114903893", - "voter": "oecp85" + "voter": "oecp85", + "rshares": "1114903893" }, { - "rshares": "7837739118", - "voter": "lostnuggett" + "voter": "lostnuggett", + "rshares": "7837739118" }, { - "rshares": "36537971467", - "voter": "paquito" + "voter": "paquito", + "rshares": "36537971467" }, { - "rshares": "1120682252", - "voter": "lpfaust" + "voter": "lpfaust", + "rshares": "1120682252" }, { - "rshares": "5431079499", - "voter": "gustavopasquini" + "voter": "gustavopasquini", + "rshares": "5431079499" }, { - "rshares": "12879388253", - "voter": "moon32walker" + "voter": "moon32walker", + "rshares": "12879388253" }, { - "rshares": "206056754", - "voter": "sergey44" + "voter": "sergey44", + "rshares": "206056754" }, { - "rshares": "1258889103", - "voter": "mohammed123" + "voter": "mohammed123", + "rshares": "1258889103" }, { - "rshares": "21551743607", - "voter": "krabgat" + "voter": "krabgat", + "rshares": "21551743607" }, { - "rshares": "42775578615", - "voter": "claudiop63" + "voter": "claudiop63", + "rshares": "42775578615" }, { - "rshares": "4543618384", - "voter": "proto" + "voter": "proto", + "rshares": "4543618384" }, { - "rshares": "33381543237", - "voter": "sisterholics" + "voter": "sisterholics", + "rshares": "33381543237" }, { - "rshares": "16939424070", - "voter": "michaeldodridge" + "voter": "michaeldodridge", + "rshares": "16939424070" }, { - "rshares": "3555056805", - "voter": "bkkshadow" + "voter": "bkkshadow", + "rshares": "3555056805" }, { - "rshares": "177054757", - "voter": "kibela" + "voter": "kibela", + "rshares": "177054757" }, { - "rshares": "149624601", - "voter": "steemster1" + "voter": "steemster1", + "rshares": "149624601" }, { - "rshares": "467278771", - "voter": "bullionstackers" + "voter": "bullionstackers", + "rshares": "467278771" }, { - "rshares": "2399486339", - "voter": "jillstein2016" + "voter": "jillstein2016", + "rshares": "2399486339" }, { - "rshares": "113159459", - "voter": "cryptoz" + "voter": "cryptoz", + "rshares": "113159459" }, { - "rshares": "947490604", - "voter": "metaflute" + "voter": "metaflute", + "rshares": "947490604" }, { - "rshares": "49031153303", - "voter": "gomeravibz" + "voter": "gomeravibz", + "rshares": "49031153303" }, { - "rshares": "2298221146", - "voter": "taker" + "voter": "taker", + "rshares": "2298221146" }, { - "rshares": "14667601139", - "voter": "nekromarinist" + "voter": "nekromarinist", + "rshares": "14667601139" }, { - "rshares": "10689974196", - "voter": "sykochica" + "voter": "sykochica", + "rshares": "10689974196" }, { - "rshares": "57873464", - "voter": "sharon" + "voter": "sharon", + "rshares": "57873464" }, { - "rshares": "235438675", - "voter": "frozendota" + "voter": "frozendota", + "rshares": "235438675" }, { - "rshares": "10107459891", - "voter": "dumar022" + "voter": "dumar022", + "rshares": "10107459891" }, { - "rshares": "61714352", - "voter": "lillianjones" + "voter": "lillianjones", + "rshares": "61714352" }, { - "rshares": "1180036690060", - "voter": "laonie" + "voter": "laonie", + "rshares": "1180036690060" }, { - "rshares": "156808373457", - "voter": "twinner" + "voter": "twinner", + "rshares": "156808373457" }, { - "rshares": "24365622803", - "voter": "rawnetics" + "voter": "rawnetics", + "rshares": "24365622803" }, { - "rshares": "21937293191", - "voter": "thebluepanda" + "voter": "thebluepanda", + "rshares": "21937293191" }, { - "rshares": "4038742528", - "voter": "timcliff" + "voter": "timcliff", + "rshares": "4038742528" }, { - "rshares": "38493825241", - "voter": "myfirst" + "voter": "myfirst", + "rshares": "38493825241" }, { - "rshares": "239614488307", - "voter": "somebody" + "voter": "somebody", + "rshares": "239614488307" }, { - "rshares": "9201794973", - "voter": "flysaga" + "voter": "flysaga", + "rshares": "9201794973" }, { - "rshares": "1249580263", - "voter": "gmurph" + "voter": "gmurph", + "rshares": "1249580263" }, { - "rshares": "7842754455", - "voter": "chris.roy" + "voter": "chris.roy", + "rshares": "7842754455" }, { - "rshares": "77413968", - "voter": "kurzer42" + "voter": "kurzer42", + "rshares": "77413968" }, { - "rshares": "52933383775", - "voter": "midnightoil" + "voter": "midnightoil", + "rshares": "52933383775" }, { - "rshares": "2422858002", - "voter": "kalimor" + "voter": "kalimor", + "rshares": "2422858002" }, { - "rshares": "4337200195", - "voter": "armen" + "voter": "armen", + "rshares": "4337200195" }, { - "rshares": "109799369185", - "voter": "thisisbenbrick" + "voter": "thisisbenbrick", + "rshares": "109799369185" }, { - "rshares": "35930892807", - "voter": "budgetbucketlist" + "voter": "budgetbucketlist", + "rshares": "35930892807" }, { - "rshares": "132362897113", - "voter": "xiaohui" + "voter": "xiaohui", + "rshares": "132362897113" }, { - "rshares": "4269542847", - "voter": "antfield" + "voter": "antfield", + "rshares": "4269542847" }, { - "rshares": "60240401", - "voter": "locolote" + "voter": "locolote", + "rshares": "60240401" }, { - "rshares": "3062483684", - "voter": "alitas" + "voter": "alitas", + "rshares": "3062483684" }, { - "rshares": "6555686028", - "voter": "elfkitchen" + "voter": "elfkitchen", + "rshares": "6555686028" }, { - "rshares": "93215140213", - "voter": "joele" + "voter": "joele", + "rshares": "93215140213" }, { - "rshares": "15543048016", - "voter": "randyclemens" + "voter": "randyclemens", + "rshares": "15543048016" }, { - "rshares": "4251276841", - "voter": "xiaokongcom" + "voter": "xiaokongcom", + "rshares": "4251276841" }, { - "rshares": "12956892771", - "voter": "gargon" + "voter": "gargon", + "rshares": "12956892771" }, { - "rshares": "2505333045", - "voter": "pgarcgo" + "voter": "pgarcgo", + "rshares": "2505333045" }, { - "rshares": "39336543785", - "voter": "nonlinearone" + "voter": "nonlinearone", + "rshares": "39336543785" }, { - "rshares": "62201879", - "voter": "msjennifer" + "voter": "msjennifer", + "rshares": "62201879" }, { - "rshares": "57196572", - "voter": "ciao" + "voter": "ciao", + "rshares": "57196572" }, { - "rshares": "3820074526", - "voter": "villainblack" + "voter": "villainblack", + "rshares": "3820074526" }, { - "rshares": "67219867859", - "voter": "cryptos" + "voter": "cryptos", + "rshares": "67219867859" }, { - "rshares": "8446448806", - "voter": "theconnoisseur" + "voter": "theconnoisseur", + "rshares": "8446448806" }, { - "rshares": "52985539", - "voter": "steemo" + "voter": "steemo", + "rshares": "52985539" }, { - "rshares": "8569626145", - "voter": "xianjun" + "voter": "xianjun", + "rshares": "8569626145" }, { - "rshares": "55306941", - "voter": "steema" + "voter": "steema", + "rshares": "55306941" }, { - "rshares": "3209376097", - "voter": "fingolfin" + "voter": "fingolfin", + "rshares": "3209376097" }, { - "rshares": "68042118", - "voter": "confucius" + "voter": "confucius", + "rshares": "68042118" }, { - "rshares": "4097488430", - "voter": "bledarus" + "voter": "bledarus", + "rshares": "4097488430" }, { - "rshares": "61075670", - "voter": "weames" + "voter": "weames", + "rshares": "61075670" }, { - "rshares": "56157882", - "voter": "jarvis" + "voter": "jarvis", + "rshares": "56157882" }, { - "rshares": "561462512", - "voter": "microluck" + "voter": "microluck", + "rshares": "561462512" }, { - "rshares": "54313084", - "voter": "fortuner" + "voter": "fortuner", + "rshares": "54313084" }, { - "rshares": "9443278113", - "voter": "pjheinz" + "voter": "pjheinz", + "rshares": "9443278113" }, { - "rshares": "33826834839", - "voter": "thecurator" + "voter": "thecurator", + "rshares": "33826834839" }, { - "rshares": "3054149279", - "voter": "virtualgrowth" + "voter": "virtualgrowth", + "rshares": "3054149279" }, { - "rshares": "7981841214", - "voter": "lemouth" + "voter": "lemouth", + "rshares": "7981841214" }, { - "rshares": "20539806569", - "voter": "runaway-psyche" + "voter": "runaway-psyche", + "rshares": "20539806569" }, { - "rshares": "916656643", - "voter": "chanbam" + "voter": "chanbam", + "rshares": "916656643" }, { - "rshares": "95362884392", - "voter": "anotherjoe" + "voter": "anotherjoe", + "rshares": "95362884392" }, { - "rshares": "59750246", - "voter": "saveliy" + "voter": "saveliy", + "rshares": "59750246" }, { - "rshares": "62751101", - "voter": "alfaman" + "voter": "alfaman", + "rshares": "62751101" }, { - "rshares": "11375408076", - "voter": "gvargas123" + "voter": "gvargas123", + "rshares": "11375408076" }, { - "rshares": "50698107", - "voter": "johnbyrd" + "voter": "johnbyrd", + "rshares": "50698107" }, { - "rshares": "53039566", - "voter": "thomasaustin" + "voter": "thomasaustin", + "rshares": "53039566" }, { - "rshares": "50680459", - "voter": "thermor" + "voter": "thermor", + "rshares": "50680459" }, { - "rshares": "50691211", - "voter": "ficholl" + "voter": "ficholl", + "rshares": "50691211" }, { - "rshares": "50673817", - "voter": "widell" + "voter": "widell", + "rshares": "50673817" }, { - "rshares": "278004039", - "voter": "steevc" + "voter": "steevc", + "rshares": "278004039" }, { - "rshares": "51481279", - "voter": "revelbrooks" + "voter": "revelbrooks", + "rshares": "51481279" }, { - "rshares": "377542979", - "voter": "mrlogic" + "voter": "mrlogic", + "rshares": "377542979" }, { - "rshares": "61115647", - "voter": "steempipe" + "voter": "steempipe", + "rshares": "61115647" }, { - "rshares": "23522356557", - "voter": "andrewawerdna" + "voter": "andrewawerdna", + "rshares": "23522356557" }, { - "rshares": "75274936", - "voter": "joelbow" + "voter": "joelbow", + "rshares": "75274936" }, { - "rshares": "9139349966", - "voter": "craigwilliamz" + "voter": "craigwilliamz", + "rshares": "9139349966" }, { - "rshares": "3632579654", - "voter": "naquoya" + "voter": "naquoya", + "rshares": "3632579654" }, { - "rshares": "52708083", - "voter": "curpose" + "voter": "curpose", + "rshares": "52708083" }, { - "rshares": "1233668048", - "voter": "lenar" + "voter": "lenar", + "rshares": "1233668048" }, { - "rshares": "9818184488", - "voter": "lesliestarrohara" + "voter": "lesliestarrohara", + "rshares": "9818184488" }, { - "rshares": "88019548", - "voter": "uziriel" + "voter": "uziriel", + "rshares": "88019548" }, { - "rshares": "50588612", - "voter": "troich" + "voter": "troich", + "rshares": "50588612" }, { - "rshares": "70275964", - "voter": "lovetosteemit" + "voter": "lovetosteemit", + "rshares": "70275964" }, { - "rshares": "1624586871", - "voter": "davidjkelley" + "voter": "davidjkelley", + "rshares": "1624586871" }, { - "rshares": "78525447485", - "voter": "markrmorrisjr" + "voter": "markrmorrisjr", + "rshares": "78525447485" }, { - "rshares": "52842496", - "voter": "crion" + "voter": "crion", + "rshares": "52842496" }, { - "rshares": "182060433", - "voter": "greatness" + "voter": "greatness", + "rshares": "182060433" }, { - "rshares": "52505412", - "voter": "hitherise" + "voter": "hitherise", + "rshares": "52505412" }, { - "rshares": "50262756", - "voter": "wiss" + "voter": "wiss", + "rshares": "50262756" }, { - "rshares": "42587324218", - "voter": "sponge-bob" + "voter": "sponge-bob", + "rshares": "42587324218" }, { - "rshares": "15560806947", - "voter": "digital-wisdom" + "voter": "digital-wisdom", + "rshares": "15560806947" }, { - "rshares": "5676881799", - "voter": "leavemealone" + "voter": "leavemealone", + "rshares": "5676881799" }, { - "rshares": "474964783", - "voter": "areynolds" + "voter": "areynolds", + "rshares": "474964783" }, { - "rshares": "3708768210", - "voter": "ethical-ai" + "voter": "ethical-ai", + "rshares": "3708768210" }, { - "rshares": "53281654", - "voter": "jamespro" + "voter": "jamespro", + "rshares": "53281654" }, { - "rshares": "51033798", - "voter": "stroully" + "voter": "stroully", + "rshares": "51033798" }, { - "rshares": "6827381497", - "voter": "jwaser" + "voter": "jwaser", + "rshares": "6827381497" }, { - "rshares": "345961132", - "voter": "tfeldman" + "voter": "tfeldman", + "rshares": "345961132" }, { - "rshares": "50712038", - "voter": "thadm" + "voter": "thadm", + "rshares": "50712038" }, { - "rshares": "50710305", - "voter": "prof" + "voter": "prof", + "rshares": "50710305" }, { - "rshares": "1414660150", - "voter": "ionescur" + "voter": "ionescur", + "rshares": "1414660150" }, { - "rshares": "145187700042", - "voter": "thecyclist" + "voter": "thecyclist", + "rshares": "145187700042" }, { - "rshares": "620633970", - "voter": "kev7000" + "voter": "kev7000", + "rshares": "620633970" }, { - "rshares": "52560790", - "voter": "yorsens" + "voter": "yorsens", + "rshares": "52560790" }, { - "rshares": "207236223370", - "voter": "asksisk" + "voter": "asksisk", + "rshares": "207236223370" }, { - "rshares": "55690180", - "voter": "jeremyschew" + "voter": "jeremyschew", + "rshares": "55690180" }, { - "rshares": "52242652", - "voter": "bane" + "voter": "bane", + "rshares": "52242652" }, { - "rshares": "52236265", - "voter": "vive" + "voter": "vive", + "rshares": "52236265" }, { - "rshares": "50054445", - "voter": "coad" + "voter": "coad", + "rshares": "50054445" }, { - "rshares": "25849035338", - "voter": "dubi" + "voter": "dubi", + "rshares": "25849035338" }, { - "rshares": "2674022812", - "voter": "bwaser" + "voter": "bwaser", + "rshares": "2674022812" }, { - "rshares": "7642689568", - "voter": "renzoarg" + "voter": "renzoarg", + "rshares": "7642689568" }, { - "rshares": "53003720", - "voter": "sofa" + "voter": "sofa", + "rshares": "53003720" }, { - "rshares": "2201645172", - "voter": "alina1" + "voter": "alina1", + "rshares": "2201645172" }, { - "rshares": "1504667661", - "voter": "digitalbrain" + "voter": "digitalbrain", + "rshares": "1504667661" }, { - "rshares": "7681172153", - "voter": "mariandavp" + "voter": "mariandavp", + "rshares": "7681172153" }, { - "rshares": "43440714161", - "voter": "brains" + "voter": "brains", + "rshares": "43440714161" }, { - "rshares": "3956902718", - "voter": "ibringawareness" + "voter": "ibringawareness", + "rshares": "3956902718" }, { - "rshares": "50933404", - "voter": "ailo" + "voter": "ailo", + "rshares": "50933404" }, { - "rshares": "5419706802", - "voter": "burnin" + "voter": "burnin", + "rshares": "5419706802" }, { - "rshares": "598109050", - "voter": "nelyp" + "voter": "nelyp", + "rshares": "598109050" }, { - "rshares": "51261721", - "voter": "f1111111" + "voter": "f1111111", + "rshares": "51261721" }, { - "rshares": "438008616", - "voter": "anomaly" + "voter": "anomaly", + "rshares": "438008616" }, { - "rshares": "2400009033", - "voter": "ellepdub" + "voter": "ellepdub", + "rshares": "2400009033" }, { - "rshares": "52928580", - "voter": "gregorygarcia" + "voter": "gregorygarcia", + "rshares": "52928580" }, { - "rshares": "263062725", - "voter": "ola1" + "voter": "ola1", + "rshares": "263062725" }, { - "rshares": "12084353453", - "voter": "herpetologyguy" + "voter": "herpetologyguy", + "rshares": "12084353453" }, { - "rshares": "50441122", - "voter": "eavy" + "voter": "eavy", + "rshares": "50441122" }, { - "rshares": "51484593", - "voter": "roto" + "voter": "roto", + "rshares": "51484593" }, { - "rshares": "50263480", - "voter": "drac59" + "voter": "drac59", + "rshares": "50263480" }, { - "rshares": "76492342", - "voter": "ancientofdays" + "voter": "ancientofdays", + "rshares": "76492342" }, { - "rshares": "4814064056", - "voter": "morgan.waser" + "voter": "morgan.waser", + "rshares": "4814064056" }, { - "rshares": "51615039", - "voter": "cfisher" + "voter": "cfisher", + "rshares": "51615039" }, { - "rshares": "58668861", - "voter": "humans" + "voter": "humans", + "rshares": "58668861" }, { - "rshares": "50938725", - "voter": "haved" + "voter": "haved", + "rshares": "50938725" }, { - "rshares": "61035542", - "voter": "teo" + "voter": "teo", + "rshares": "61035542" }, { - "rshares": "2019644456", - "voter": "greenwayoflife" + "voter": "greenwayoflife", + "rshares": "2019644456" }, { - "rshares": "50873654", - "voter": "palladium" + "voter": "palladium", + "rshares": "50873654" }, { - "rshares": "1523610145", - "voter": "thebiggestidea" + "voter": "thebiggestidea", + "rshares": "1523610145" }, { - "rshares": "50572441", - "voter": "unilever" + "voter": "unilever", + "rshares": "50572441" }, { - "rshares": "50565798", - "voter": "penthouse" + "voter": "penthouse", + "rshares": "50565798" }, { - "rshares": "50534533", - "voter": "bapparabi" + "voter": "bapparabi", + "rshares": "50534533" }, { - "rshares": "50482289", - "voter": "connection" + "voter": "connection", + "rshares": "50482289" }, { - "rshares": "50351738", - "voter": "aschwin" + "voter": "aschwin", + "rshares": "50351738" }, { - "rshares": "166200503", - "voter": "haddock" + "voter": "haddock", + "rshares": "166200503" }, { - "rshares": "3607535118", - "voter": "strong-ai" + "voter": "strong-ai", + "rshares": "3607535118" }, { - "rshares": "69589512", - "voter": "igtes" + "voter": "igtes", + "rshares": "69589512" }, { - "rshares": "46774280781", - "voter": "curie" + "voter": "curie", + "rshares": "46774280781" }, { - "rshares": "82287966", - "voter": "olesia83" + "voter": "olesia83", + "rshares": "82287966" }, { - "rshares": "705822962", - "voter": "dikanevroman" + "voter": "dikanevroman", + "rshares": "705822962" }, { - "rshares": "138459757", - "voter": "buffett" + "voter": "buffett", + "rshares": "138459757" }, { - "rshares": "159730645", - "voter": "uct" + "voter": "uct", + "rshares": "159730645" }, { - "rshares": "159716853", - "voter": "front" + "voter": "front", + "rshares": "159716853" }, { - "rshares": "158676075", - "voter": "iberia" + "voter": "iberia", + "rshares": "158676075" }, { - "rshares": "158649039", - "voter": "ndea30" + "voter": "ndea30", + "rshares": "158649039" }, { - "rshares": "158641883", - "voter": "domenico" + "voter": "domenico", + "rshares": "158641883" }, { - "rshares": "435351417", - "voter": "witchcraftblog" + "voter": "witchcraftblog", + "rshares": "435351417" }, { - "rshares": "157805871", - "voter": "serena199" + "voter": "serena199", + "rshares": "157805871" }, { - "rshares": "160900665", - "voter": "digitalillusions" + "voter": "digitalillusions", + "rshares": "160900665" }, { - "rshares": "157774885", - "voter": "gia7" + "voter": "gia7", + "rshares": "157774885" }, { - "rshares": "1883713307", - "voter": "dresden" + "voter": "dresden", + "rshares": "1883713307" }, { - "rshares": "160835930", - "voter": "skrillex" + "voter": "skrillex", + "rshares": "160835930" }, { - "rshares": "205939206", - "voter": "mgibson" + "voter": "mgibson", + "rshares": "205939206" }, { - "rshares": "157303076", - "voter": "richie4" + "voter": "richie4", + "rshares": "157303076" }, { - "rshares": "157241455", - "voter": "coraline88" + "voter": "coraline88", + "rshares": "157241455" }, { - "rshares": "156977663", - "voter": "harlen" + "voter": "harlen", + "rshares": "156977663" }, { - "rshares": "155225345", - "voter": "food-creator" + "voter": "food-creator", + "rshares": "155225345" }, { - "rshares": "156939548", - "voter": "yanuel" + "voter": "yanuel", + "rshares": "156939548" }, { - "rshares": "692395145", - "voter": "ysa" + "voter": "ysa", + "rshares": "692395145" }, { - "rshares": "156889267", - "voter": "daritza" + "voter": "daritza", + "rshares": "156889267" }, { - "rshares": "159973989", - "voter": "capcom" + "voter": "capcom", + "rshares": "159973989" }, { - "rshares": "159950870", - "voter": "haribo" + "voter": "haribo", + "rshares": "159950870" }, { - "rshares": "159531007", - "voter": "benetton" + "voter": "benetton", + "rshares": "159531007" }, { - "rshares": "156054487", - "voter": "fallout" + "voter": "fallout", + "rshares": "156054487" }, { - "rshares": "152431082", - "voter": "alterego" + "voter": "alterego", + "rshares": "152431082" }, { - "rshares": "158486055", - "voter": "zendesk" + "voter": "zendesk", + "rshares": "158486055" }, { - "rshares": "158198121", - "voter": "lefrisa" + "voter": "lefrisa", + "rshares": "158198121" }, { - "rshares": "157848543", - "voter": "bicolisarog" + "voter": "bicolisarog", + "rshares": "157848543" }, { - "rshares": "184381906", - "voter": "antaja" + "voter": "antaja", + "rshares": "184381906" }, { - "rshares": "203602662", - "voter": "steemdesigner" + "voter": "steemdesigner", + "rshares": "203602662" }, { - "rshares": "154247502", - "voter": "dougkarr" + "voter": "dougkarr", + "rshares": "154247502" }, { - "rshares": "846327994", - "voter": "alienbutt" + "voter": "alienbutt", + "rshares": "846327994" }, { - "rshares": "182445807", - "voter": "techslut" + "voter": "techslut", + "rshares": "182445807" }, { - "rshares": "112446078", - "voter": "paulocouto" + "voter": "paulocouto", + "rshares": "112446078" }, { - "rshares": "152816202", - "voter": "countofdelphi" + "voter": "countofdelphi", + "rshares": "152816202" }, { - "rshares": "151525581", - "voter": "kevinfoesenek" + "voter": "kevinfoesenek", + "rshares": "151525581" }, { - "rshares": "151078228", - "voter": "unterhd6" + "voter": "unterhd6", + "rshares": "151078228" }, { - "rshares": "141999204", - "voter": "newsfeed" + "voter": "newsfeed", + "rshares": "141999204" }, { - "rshares": "147818170", - "voter": "dirlei.sdias" + "voter": "dirlei.sdias", + "rshares": "147818170" }, { - "rshares": "153395599", - "voter": "trickster512" + "voter": "trickster512", + "rshares": "153395599" }, { - "rshares": "150319355", - "voter": "denise12" + "voter": "denise12", + "rshares": "150319355" } ], - "author": "curie", - "author_payout_value": "0.000 HBD", "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 318, + "flag_weight": 0.0 + }, "beneficiaries": [], - "blacklists": [], - "body": "\n

\n

One Month of Project Curie

\n

This will be special update from Project Curie. One month ago, Project Curie began with humble beginnings. It has been an exhilarating experience for the team and we are delighted to share our progress with the Steemit community. To know more about Project Curie, do check out our initial announcement.


\n

Project Curie wishes to thank @pharesim, @val, @silversteem and @clayop along with @nextgencrypto and @berniesanders for helping us reward more deserving posts

\n

When a group of Steemit writers got together to form Project Curie, we thought that if we pooled our own votes on some posts, we could help reward some emerging and undiscovered authors who were posting great original material. 

\n

$5 later, it was clear our combined votes wouldn\u2019t make a huge difference.

\n

Fortunately, we were able to form a partnership with @nextgencrypto who was generous enough to donate some voting power to help reward deserving posters who were not yet established. @berniesanders then joined to help. With their support, Project Curie became a reality. 

\n

Today, we announce that @val, @pharesim, @silversteem and @clayop also have donated additional voting power to help Project Curie reach a greater number of original content posts from undiscovered and deserving authors. Please join us in thanking them. And please do not send your posts directly to any of these individuals; Project Curie is curating the posts and you are welcome to submit any good ones you find to the #curie channel on Steemit.chat.


\n\n

Proyecto Cervantes

\n

Project Curie is excited to announce a new branch of curation created to support Spanish authors on Steemit. The branch is called \u201cProyecto Cervantes\u201d and it\u2019s main curators are @gargon and @pgarcgo. The goal is to find and reward Spanish or bilingual (Spanish and English) posts on Steemit in order to foster a more diverse community. @gargon and @pgarcgo will be creating a compilation post for every 10 posts that they curate in order to provide transparency as to which posts are being rewarded. The hope is also to provide the original authors more exposure. You can find their first compilation posts here and here. Two members of Project Curie are Spanish speakers ( @anwenbaumeister and @the-alien), and they provide a second line of curation and review for these posts. So, if you are a Spanish speaker, we encourage you to begin writing bilingual posts in order to create a bridge between the two languages and communities!

\n\n
\n\n

Statistics from Month #1

\n

Total posts curated: 2055
\n
Unique authors rewarded: 763
\n
Total rewards generated for authors: SBD 158,151
\n
Mean reward generated per post: SBD 77
\n
Median reward generated per post: SBD 40  

\n

\n

Since we began tracking on 18th August, we have consistently voted on an average of over 75 posts per day. The trajectory is clearly heading up, and in the last week we have been averaging nearly 100 posts. 

\n

Authors

\n

The Top 10 Authors by number of posts curated were -

\n
    \n
  • @kimal73   
  • \n
  • @herverisson   
  • \n
  • @cristi   
  • \n
  • @lukeofkondor   
  • \n
  • @papa-pepper   
  • \n
  • @cryptos   
  • \n
  • @mariandavp   
  • \n
  • @stephmckenzie   
  • \n
  • @eveningstar92   
  • \n
  • @prufarchy    
  • \n
\n

Top Authors by payouts includes @alexbeyman, @kaylinart, @brianphobos, @jamielefay, @omfedor, @stephmckenzie, @ionescur, @aboundlessworld and @anotherjoe. Many of those names are pretty familiar today, but less than a month ago, they were new authors struggling for exposure.

\n

Tags/Topics

\n

The most used tag was \"life\", but that pretty much includes everything!

\n

\n

The most popular topics were \"art\" (549) and \"photography\" (418). \"Story\" and \"writing\" were pretty close, tagged on around 370 posts each, though we suspect these two tags are often repeated. \"Travel\" and \"science\" also make an appearance. Looking forward, we intend to focus more on original science and technology related posts, and other unique / niche topics. 

\n

#curie

\n

Following our announcement on September 2nd, the #curie channel has been a remarkable success. Currently we have 218 users in the room, 44 of whom have curated content from other authors. We have upvoted 105 posts submitted in #curie, and paid out SBD 525 to curators. 

\n

Top curators from #curie were -

\n
    \n
  • @pfunk
  • \n
  • @kental
  • \n
  • @jamtaylor
  • \n
  • @deviedev
  • \n
  • @royaltiffany
  • \n
\n

Join us on #curie at Steemit.chat and keep the submissions coming! 


\n

Thanks

\n

Last, but not least, we wish to thank - 

\n

@knozaki2015, @shaka, @razvanelulmarin, @greenwayoflife, @jasonstaggers for their generous donations.
\n@royaltiffany for moderating #curie and creating the noble TheButler bot. :)
\n@firepower for setting up the #curie room.
\n
\nAnd of course, everyone voting on and commenting on posts we curate!


\n

Onward to Month #2! 

\n

We are working to increase our reach and rewards for authors, courtesy of extended whale support. We are also setting up @curie as a universal voter for all posts we curate. This way, you can choose to mirror our votes to support the authors. Look out for an announcement regarding this in our Daily Curation List posts. From next week, every Monday we'll have a Weekly Roundup with statistics, similar to this post.

\n

We are always open to feedback, and would love to know how you feel we could do better in Month #2!

\n", - "category": "curie", - "children": 37, - "created": "2016-09-14T14:11:30", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", + "blacklists": [] + }, + { + "post_id": 960258, + "author": "gavvet", + "permlink": "why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", + "category": "herpetology", + "title": "Why You Don’t Want to Kill that Snake in Your Yard (featuring @herpetologyguy as author)", + "body": "@herpetologyguy\n\nOne of my many tasks as a zoo keeper is connecting people to animals. \n-\n\n\n\n

The museum I work at is unique because we showcase animals that are native to Virginia -- meaning that these are animals people will find close to home, rather than across the ocean in some distant country. This makes my job more crucial in that I am responsible for educating people about the reptiles and amphibians that they will find in their own backyards. And obviously, there’s one group of reptiles that gives people more pause than almost any other animal . . . . 

\n

Snakes. 

\n

http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj   Picture Credit

\n

I do public programs featuring snakes quite frequently.  I believe people should know how to identify local venomous/non-venomous snakes, their role in the environment and how to deal with them when they are in close proximity to our homes.  Usually, I get eager audiences asking great questions.  But, every now and then, I get some idiot who tells me, “I saw that same snake in my backyard! I chopped off its head with a shovel!”

\n

Are they an idiot for killing the snake?  Not necessarily . . . I don’t know the situation behind the encounter. But, only an idiot would walk into a wildlife facility, approach a zoo keeper and proudly declare that they kill the very same animals that the keeper is charged with the care for.  Would you walk into an animal shelter and tell someone working there that you enjoy stomping on puppies?  To us, there’s not much difference… 

\n

http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png   Picture Credit\n

\n

The best we can do in these situations is to try to educate people. This can be difficult because so many people are set in their ways -- plus we have to combat an instinctive fear and prejudice against snakes.  So, I’m going to briefly lay it all out for you and tell you \"Why you shouldn’t kill that snake in your yard.\" 

\n

http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg   Picture Credit

\n

1.  It’s ILLEGAL in most states to kill a wild snake, unless that snake presents an IMMEDIATE threat.  And no, a snake crawling through your yard does not represent a good enough excuse to use force.  We’re talking about a situation where a venomous snake is about to strike and you have no escape route but to fight your way out.  And guess what, that really doesn’t ever happen (barring instances where someone purposefully provokes an animal).  Wildlife and law enforcement agencies are cracking down on people killing snakes, so it’s better to keep yourself out of trouble. 

\n

http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg   Picture Credit

\n

2.  You are putting yourself in harm’s way.  The vast majority of snake bites occur when people attempt to capture or kill snakes.  If left alone, the snake CANNOT hurt you.  Call wildlife services or trained professionals to remove the animal. 

\n

http://www.snakegetters.com/demo/bud-cotton-gg.jpg   Picture Credit

\n

3.  It’s an incredibly beneficial animal, and you’d be foolish to kill it.  Small snakes eat a huge variety of pest insects that destroy gardens, while large snakes typically feed on rats and other rodents that infest our homes.  If you see a large snake hanging around, you have a rodent problem; snakes will not hang around if there is no food source.  To keep snakes from being attracted to your property, do your best to remove any shelter or food sources that would attract rodents.  Some snakes even eat other snakes, and species like the harmless king snake will even feed on venomous species! 

\n

https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg   Picture Credit

\n

4.  Another snake might show up.  Snakes will not typically inhabit the same area in order to avoid competition.  If you kill that harmless rat snake, but you still have a food source nearby, another snake may move in to make use of that source.  The new snake may be another harmless species or something a bit less desirable.  So why not let that harmless snake take care of the infestation for you?

\n

http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg   Picture Credit

\n

Having a snake around can be hugely beneficial to you.  It is a free, environmentally-safe form of pest control.  Snakes, including venomous species, are non-aggressive animals (unless you provoke them) that will actively do their best to AVOID people.  A resident snake will often go unnoticed by homeowners, and most encounters are fleeting glimpses of the snake making a hasty escape.  Remember that snakes have their own unique role in the environment, and regardless of our own fears and feelings towards them, they are a necessary part of life. 

\n

   http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg   Picture Credit

\n\n\nif you liked this also please check out:\nhttps://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians\n\n\n***don't forget to follow @herpetologyguy***", "json_metadata": { - "image": [ - "https://www.steemimg.com/images/2016/09/01/Babel-Lille-2012-Bibliohteque-ideale-2-Jean-Francois-RAUZIER4f9da.jpg", - "https://www.steemimg.com/images/2016/09/14/curie-1da303.jpg", - "https://www.steemimg.com/images/2016/09/14/curie-23f98a.jpg" - ], - "links": [ - "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", - "https://steemit.com/spanish/@gargon/proyecto-cervantes-08-11-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", - "https://steemit.com/spanish/@pgarcgo/proyecto-cervantes-11-13-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and" - ], "tags": [ - "curie", - "minnows", - "hidden-gems", - "steemit", - "project-curie" + "herpetology", + "reptiles", + "snakes", + "science" ], "users": [ - "pharesim", - "val", - "silversteem", - "clayop", - "nextgencrypto", - "berniesanders", - "gargon", - "pgarcgo", - "anwenbaumeister", - "the-alien", - "kimal73", - "herverisson", - "cristi", - "lukeofkondor", - "papa-pepper", - "cryptos", - "mariandavp", - "stephmckenzie", - "eveningstar92", - "prufarchy", - "alexbeyman", - "kaylinart", - "brianphobos", - "jamielefay", - "omfedor", - "ionescur", - "aboundlessworld", - "anotherjoe", - "pfunk", - "kental", - "jamtaylor", - "deviedev", - "royaltiffany", - "knozaki2015", - "shaka", - "razvanelulmarin", - "greenwayoflife", - "jasonstaggers", - "firepower", - "curie" + "herpetologyguy" + ], + "image": [ + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg" + ], + "links": [ + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://www.sciencemag.org", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://proactivepestga.com", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://blogs.discovermagazine.com", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.mylakelandnow.com", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "http://www.snakegetters.com", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "https://www.youtube.com/watch?v=ImOj1CKTBqE", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://phenomena.nationalgeographic.com", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg", + "http://westernmassnaturalist.org", + "https://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians" ] }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 203814685511375, - "payout": 2327.995, - "payout_at": "2016-09-21T14:11:30", - "pending_payout_value": "2327.995 HBD", - "percent_hbd": 10000, - "permlink": "special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", - "post_id": 1243454, + "created": "2016-09-15T18:19:39", + "updated": "2016-09-15T18:19:39", + "depth": 0, + "children": 6, + "net_rshares": 68620995119384, + "is_paidout": false, + "payout_at": "2016-09-16T18:44:06", + "payout": 274.438, + "pending_payout_value": "274.438 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", "promoted": "0.000 HBD", "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 318 - }, - "title": "Special Edition: Major Updates & Project Curie Month #1 Roundup (12 August - 11 September 2016)", - "updated": "2016-09-14T16:09:51", - "url": "/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016" - }, - { "active_votes": [ { - "rshares": "31307487536364", - "voter": "smooth" + "voter": "smooth", + "rshares": "31307487536364" }, { - "rshares": "231809639013", - "voter": "anonymous" + "voter": "anonymous", + "rshares": "231809639013" }, { - "rshares": "1551268628220", - "voter": "butterfly" + "voter": "butterfly", + "rshares": "1551268628220" }, { - "rshares": "4287714457313", - "voter": "riverhead" + "voter": "riverhead", + "rshares": "4287714457313" }, { - "rshares": "1855967006728", - "voter": "badassmother" + "voter": "badassmother", + "rshares": "1855967006728" }, { - "rshares": "2053236030423", - "voter": "hr1" + "voter": "hr1", + "rshares": "2053236030423" }, { - "rshares": "1271804694676", - "voter": "rossco99" + "voter": "rossco99", + "rshares": "1271804694676" }, { - "rshares": "2206068741954", - "voter": "wang" + "voter": "wang", + "rshares": "2206068741954" }, { - "rshares": "22391622942", - "voter": "jaewoocho" + "voter": "jaewoocho", + "rshares": "22391622942" }, { - "rshares": "1534654466021", - "voter": "joseph" + "voter": "joseph", + "rshares": "1534654466021" }, { - "rshares": "466132509421", - "voter": "recursive2" + "voter": "recursive2", + "rshares": "466132509421" }, { - "rshares": "452874558937", - "voter": "recursive3" + "voter": "recursive3", + "rshares": "452874558937" }, { - "rshares": "636519834128", - "voter": "masteryoda" + "voter": "masteryoda", + "rshares": "636519834128" }, { - "rshares": "3120576239931", - "voter": "recursive" + "voter": "recursive", + "rshares": "3120576239931" }, { - "rshares": "5942254587236", - "voter": "smooth.witness" + "voter": "smooth.witness", + "rshares": "5942254587236" }, { - "rshares": "8927291120", - "voter": "idol" + "voter": "idol", + "rshares": "8927291120" }, { - "rshares": "800066797130", - "voter": "steemrollin" + "voter": "steemrollin", + "rshares": "800066797130" }, { - "rshares": "4941942978", - "voter": "sakr" + "voter": "sakr", + "rshares": "4941942978" }, { - "rshares": "284401462010", - "voter": "chitty" + "voter": "chitty", + "rshares": "284401462010" }, { - "rshares": "75736848691", - "voter": "unosuke" + "voter": "unosuke", + "rshares": "75736848691" }, { - "rshares": "481790356914", - "voter": "noaommerrr" + "voter": "noaommerrr", + "rshares": "481790356914" }, { - "rshares": "1536592488", - "voter": "jocelyn" + "voter": "jocelyn", + "rshares": "1536592488" }, { - "rshares": "85270554570", - "voter": "acidsun" + "voter": "acidsun", + "rshares": "85270554570" }, { - "rshares": "14502980866", - "voter": "gregory-f" + "voter": "gregory-f", + "rshares": "14502980866" }, { - "rshares": "154334962550", - "voter": "edgeland" + "voter": "edgeland", + "rshares": "154334962550" }, { - "rshares": "9028550345", - "voter": "gregory60" + "voter": "gregory60", + "rshares": "9028550345" }, { - "rshares": "1196485708874", - "voter": "gavvet" + "voter": "gavvet", + "rshares": "1196485708874" }, { - "rshares": "89897944197", - "voter": "eeks" + "voter": "eeks", + "rshares": "89897944197" }, { - "rshares": "1511911763", - "voter": "fkn" + "voter": "fkn", + "rshares": "1511911763" }, { - "rshares": "122160437", - "voter": "paco-steem" + "voter": "paco-steem", + "rshares": "122160437" }, { - "rshares": "1471747302", - "voter": "spaninv" + "voter": "spaninv", + "rshares": "1471747302" }, { - "rshares": "1987313581", - "voter": "elishagh1" + "voter": "elishagh1", + "rshares": "1987313581" }, { - "rshares": "7803257741", - "voter": "richman" + "voter": "richman", + "rshares": "7803257741" }, { - "rshares": "584279800798", - "voter": "nanzo-scoop" + "voter": "nanzo-scoop", + "rshares": "584279800798" }, { - "rshares": "9857825141", - "voter": "kefkius" + "voter": "kefkius", + "rshares": "9857825141" }, { - "rshares": "177417522325", - "voter": "mummyimperfect" + "voter": "mummyimperfect", + "rshares": "177417522325" }, { - "rshares": "2366347863", - "voter": "alenevaa" + "voter": "alenevaa", + "rshares": "2366347863" }, { - "rshares": "313697862", - "voter": "coar" + "voter": "coar", + "rshares": "313697862" }, { - "rshares": "106635074770", - "voter": "asch" + "voter": "asch", + "rshares": "106635074770" }, { - "rshares": "1061264730", - "voter": "murh" + "voter": "murh", + "rshares": "1061264730" }, { - "rshares": "3187850436", - "voter": "cryptofunk" + "voter": "cryptofunk", + "rshares": "3187850436" }, { - "rshares": "579494558", - "voter": "kodi" + "voter": "kodi", + "rshares": "579494558" }, { - "rshares": "2003359924", - "voter": "error" + "voter": "error", + "rshares": "2003359924" }, { - "rshares": "11848125383", - "voter": "andu" + "voter": "andu", + "rshares": "11848125383" }, { - "rshares": "970579316703", - "voter": "cyber" + "voter": "cyber", + "rshares": "970579316703" }, { - "rshares": "59952188311", - "voter": "theshell" + "voter": "theshell", + "rshares": "59952188311" }, { - "rshares": "49580154489", - "voter": "ak2020" + "voter": "ak2020", + "rshares": "49580154489" }, { - "rshares": "3848697023555", - "voter": "satoshifund" + "voter": "satoshifund", + "rshares": "3848697023555" }, { - "rshares": "402139444", - "voter": "applecrisp" + "voter": "applecrisp", + "rshares": "402139444" }, { - "rshares": "35693164103", - "voter": "altoz" + "voter": "altoz", + "rshares": "35693164103" }, { - "rshares": "95314034", - "voter": "stiletto" + "voter": "stiletto", + "rshares": "95314034" }, { - "rshares": "219283354085", - "voter": "will-zewe" + "voter": "will-zewe", + "rshares": "219283354085" }, { - "rshares": "12241505540", - "voter": "lindee-hamner" + "voter": "lindee-hamner", + "rshares": "12241505540" }, { - "rshares": "15787522491", - "voter": "zakharya" + "voter": "zakharya", + "rshares": "15787522491" }, { - "rshares": "275008585094", - "voter": "trogdor" + "voter": "trogdor", + "rshares": "275008585094" }, { - "rshares": "5047464747", - "voter": "tee-em" + "voter": "tee-em", + "rshares": "5047464747" }, { - "rshares": "5821262190", - "voter": "mark-waser" + "voter": "mark-waser", + "rshares": "5821262190" }, { - "rshares": "118356217412", - "voter": "geoffrey" + "voter": "geoffrey", + "rshares": "118356217412" }, { - "rshares": "16027781644", - "voter": "kimziv" + "voter": "kimziv", + "rshares": "16027781644" }, { - "rshares": "45359587433", - "voter": "honeythief" + "voter": "honeythief", + "rshares": "45359587433" }, { - "rshares": "75333038089", - "voter": "emily-cook" + "voter": "emily-cook", + "rshares": "75333038089" }, { - "rshares": "2187607792", - "voter": "superfreek" + "voter": "superfreek", + "rshares": "2187607792" }, { - "rshares": "17557768630", - "voter": "grey580" + "voter": "grey580", + "rshares": "17557768630" }, { - "rshares": "275327756", - "voter": "ladyclair" + "voter": "ladyclair", + "rshares": "275327756" }, { - "rshares": "3898829337", - "voter": "michaellamden68" + "voter": "michaellamden68", + "rshares": "3898829337" }, { - "rshares": "19975706505", - "voter": "thebatchman" + "voter": "thebatchman", + "rshares": "19975706505" }, { - "rshares": "3350419346", - "voter": "orly" + "voter": "orly", + "rshares": "3350419346" }, { - "rshares": "5271030976", - "voter": "riscadox" + "voter": "riscadox", + "rshares": "5271030976" }, { - "rshares": "7380892516", - "voter": "furion" + "voter": "furion", + "rshares": "7380892516" }, { - "rshares": "105911917280", - "voter": "cdubendo" + "voter": "cdubendo", + "rshares": "105911917280" }, { - "rshares": "156249887947", - "voter": "jacor" + "voter": "jacor", + "rshares": "156249887947" }, { - "rshares": "2632460141", - "voter": "steem1653" + "voter": "steem1653", + "rshares": "2632460141" }, { - "rshares": "136322030", - "voter": "cynetyc" + "voter": "cynetyc", + "rshares": "136322030" }, { - "rshares": "80777327", - "voter": "snowden" + "voter": "snowden", + "rshares": "80777327" }, { - "rshares": "5250179537", - "voter": "thegoodguy" + "voter": "thegoodguy", + "rshares": "5250179537" }, { - "rshares": "14168005907", - "voter": "aaseb" + "voter": "aaseb", + "rshares": "14168005907" }, { - "rshares": "4209533734", - "voter": "karen13" + "voter": "karen13", + "rshares": "4209533734" }, { - "rshares": "8751103405", - "voter": "noodhoog" + "voter": "noodhoog", + "rshares": "8751103405" }, { - "rshares": "8164924332", - "voter": "hyiparena" + "voter": "hyiparena", + "rshares": "8164924332" }, { - "rshares": "46859060143", - "voter": "milestone" + "voter": "milestone", + "rshares": "46859060143" }, { - "rshares": "21565632626", - "voter": "artific" + "voter": "artific", + "rshares": "21565632626" }, { - "rshares": "33739169732", - "voter": "creemej" + "voter": "creemej", + "rshares": "33739169732" }, { - "rshares": "15378221086", - "voter": "nippel66" + "voter": "nippel66", + "rshares": "15378221086" }, { - "rshares": "163325751551", - "voter": "blueorgy" + "voter": "blueorgy", + "rshares": "163325751551" }, { - "rshares": "13373880577", - "voter": "benjiberigan" + "voter": "benjiberigan", + "rshares": "13373880577" }, { - "rshares": "349618451", - "voter": "poseidon" + "voter": "poseidon", + "rshares": "349618451" }, { - "rshares": "7946812357", - "voter": "smolalit" + "voter": "smolalit", + "rshares": "7946812357" }, { - "rshares": "3365797955", - "voter": "simon.braki.love" + "voter": "simon.braki.love", + "rshares": "3365797955" }, { - "rshares": "5609578664", - "voter": "sharker" + "voter": "sharker", + "rshares": "5609578664" }, { - "rshares": "204618396015", - "voter": "jl777" + "voter": "jl777", + "rshares": "204618396015" }, { - "rshares": "1114903893", - "voter": "oecp85" + "voter": "oecp85", + "rshares": "1114903893" }, { - "rshares": "1218867625", - "voter": "victoria2002" + "voter": "victoria2002", + "rshares": "1218867625" }, { - "rshares": "1226120506", - "voter": "positive" + "voter": "positive", + "rshares": "1226120506" }, { - "rshares": "1809205777", - "voter": "yarly" + "voter": "yarly", + "rshares": "1809205777" }, { - "rshares": "272641013", - "voter": "yarly2" + "voter": "yarly2", + "rshares": "272641013" }, { - "rshares": "273048922", - "voter": "yarly3" + "voter": "yarly3", + "rshares": "273048922" }, { - "rshares": "157733805", - "voter": "yarly4" + "voter": "yarly4", + "rshares": "157733805" }, { - "rshares": "158624349", - "voter": "yarly5" + "voter": "yarly5", + "rshares": "158624349" }, { - "rshares": "90416287", - "voter": "yarly7" + "voter": "yarly7", + "rshares": "90416287" }, { - "rshares": "50626015", - "voter": "steemchain" + "voter": "steemchain", + "rshares": "50626015" }, { - "rshares": "17267341753", - "voter": "proto" + "voter": "proto", + "rshares": "17267341753" }, { - "rshares": "2708629529", - "voter": "sisterholics" + "voter": "sisterholics", + "rshares": "2708629529" }, { - "rshares": "437620869", - "voter": "yarly10" + "voter": "yarly10", + "rshares": "437620869" }, { - "rshares": "234191245", - "voter": "yarly11" + "voter": "yarly11", + "rshares": "234191245" }, { - "rshares": "8781903824", - "voter": "royalmacro" + "voter": "royalmacro", + "rshares": "8781903824" }, { - "rshares": "81879061", - "voter": "yarly12" + "voter": "yarly12", + "rshares": "81879061" }, { - "rshares": "146224042", - "voter": "steemster1" + "voter": "steemster1", + "rshares": "146224042" }, { - "rshares": "3022447454", - "voter": "dmilash" + "voter": "dmilash", + "rshares": "3022447454" }, { - "rshares": "3353991305", - "voter": "glitterpig" + "voter": "glitterpig", + "rshares": "3353991305" }, { - "rshares": "8734185109", - "voter": "taker" + "voter": "taker", + "rshares": "8734185109" }, { - "rshares": "7825324952", - "voter": "nekromarinist" + "voter": "nekromarinist", + "rshares": "7825324952" }, { - "rshares": "57873464", - "voter": "sharon" + "voter": "sharon", + "rshares": "57873464" }, { - "rshares": "58971492", - "voter": "lillianjones" + "voter": "lillianjones", + "rshares": "58971492" }, { - "rshares": "95786319596", - "voter": "laonie" + "voter": "laonie", + "rshares": "95786319596" }, { - "rshares": "153264363976", - "voter": "twinner" + "voter": "twinner", + "rshares": "153264363976" }, { - "rshares": "24562882668", - "voter": "laoyao" + "voter": "laoyao", + "rshares": "24562882668" }, { - "rshares": "2664979204", - "voter": "myfirst" + "voter": "myfirst", + "rshares": "2664979204" }, { - "rshares": "19443061295", - "voter": "somebody" + "voter": "somebody", + "rshares": "19443061295" }, { - "rshares": "726959262", - "voter": "flysaga" + "voter": "flysaga", + "rshares": "726959262" }, { - "rshares": "7707314246", - "voter": "asdes" + "voter": "asdes", + "rshares": "7707314246" }, { - "rshares": "2501638608", - "voter": "gmurph" + "voter": "gmurph", + "rshares": "2501638608" }, { - "rshares": "1693568633", - "voter": "stormblaze" + "voter": "stormblaze", + "rshares": "1693568633" }, { - "rshares": "5558177167", - "voter": "denn" + "voter": "denn", + "rshares": "5558177167" }, { - "rshares": "4295114546", - "voter": "midnightoil" + "voter": "midnightoil", + "rshares": "4295114546" }, { - "rshares": "3157785139", - "voter": "kurtbeil" + "voter": "kurtbeil", + "rshares": "3157785139" }, { - "rshares": "10742990382", - "voter": "xiaohui" + "voter": "xiaohui", + "rshares": "10742990382" }, { - "rshares": "67965196", - "voter": "zahar" + "voter": "zahar", + "rshares": "67965196" }, { - "rshares": "485140088", - "voter": "elfkitchen" + "voter": "elfkitchen", + "rshares": "485140088" }, { - "rshares": "99935909954", - "voter": "joele" + "voter": "joele", + "rshares": "99935909954" }, { - "rshares": "5855738054", - "voter": "oflyhigh" + "voter": "oflyhigh", + "rshares": "5855738054" }, { - "rshares": "15549176040", - "voter": "randyclemens" + "voter": "randyclemens", + "rshares": "15549176040" }, { - "rshares": "79785139", - "voter": "dims" + "voter": "dims", + "rshares": "79785139" }, { - "rshares": "335856762", - "voter": "xiaokongcom" + "voter": "xiaokongcom", + "rshares": "335856762" }, { - "rshares": "1446509276", - "voter": "future24" + "voter": "future24", + "rshares": "1446509276" }, { - "rshares": "60819615", - "voter": "msjennifer" + "voter": "msjennifer", + "rshares": "60819615" }, { - "rshares": "54654502", - "voter": "ciao" + "voter": "ciao", + "rshares": "54654502" }, { - "rshares": "13254585210", - "voter": "cristi" + "voter": "cristi", + "rshares": "13254585210" }, { - "rshares": "54217761", - "voter": "steemo" + "voter": "steemo", + "rshares": "54217761" }, { - "rshares": "677027684", - "voter": "xianjun" + "voter": "xianjun", + "rshares": "677027684" }, { - "rshares": "54077897", - "voter": "steema" + "voter": "steema", + "rshares": "54077897" }, { - "rshares": "72192938", - "voter": "sijoittaja" + "voter": "sijoittaja", + "rshares": "72192938" }, { - "rshares": "69662169", - "voter": "confucius" + "voter": "confucius", + "rshares": "69662169" }, { - "rshares": "93807196108", - "voter": "miacats" + "voter": "miacats", + "rshares": "93807196108" }, { - "rshares": "54909929", - "voter": "jarvis" + "voter": "jarvis", + "rshares": "54909929" }, { - "rshares": "74131936", - "voter": "razberrijam" + "voter": "razberrijam", + "rshares": "74131936" }, { - "rshares": "53106127", - "voter": "fortuner" + "voter": "fortuner", + "rshares": "53106127" }, { - "rshares": "2022702929", - "voter": "chinadaily" + "voter": "chinadaily", + "rshares": "2022702929" }, { - "rshares": "10471074095", - "voter": "pjheinz" + "voter": "pjheinz", + "rshares": "10471074095" }, { - "rshares": "86712034", - "voter": "pompe72" + "voter": "pompe72", + "rshares": "86712034" }, { - "rshares": "108403024", - "voter": "pollina" + "voter": "pollina", + "rshares": "108403024" }, { - "rshares": "51877132", - "voter": "johnbyrd" + "voter": "johnbyrd", + "rshares": "51877132" }, { - "rshares": "51860909", - "voter": "thomasaustin" + "voter": "thomasaustin", + "rshares": "51860909" }, { - "rshares": "51859074", - "voter": "thermor" + "voter": "thermor", + "rshares": "51859074" }, { - "rshares": "51870077", - "voter": "ficholl" + "voter": "ficholl", + "rshares": "51870077" }, { - "rshares": "51852278", - "voter": "widell" + "voter": "widell", + "rshares": "51852278" }, { - "rshares": "3635091595", - "voter": "movievertigo" + "voter": "movievertigo", + "rshares": "3635091595" }, { - "rshares": "51481279", - "voter": "revelbrooks" + "voter": "revelbrooks", + "rshares": "51481279" }, { - "rshares": "2982691190", - "voter": "netaterra" + "voter": "netaterra", + "rshares": "2982691190" }, { - "rshares": "21980957828", - "voter": "andrewawerdna" + "voter": "andrewawerdna", + "rshares": "21980957828" }, { - "rshares": "4337454155", - "voter": "onetree" + "voter": "onetree", + "rshares": "4337454155" }, { - "rshares": "4633082667", - "voter": "steemitpatina" + "voter": "steemitpatina", + "rshares": "4633082667" }, { - "rshares": "50416427", - "voter": "curpose" + "voter": "curpose", + "rshares": "50416427" }, { - "rshares": "989363278", - "voter": "dajohns1420" + "voter": "dajohns1420", + "rshares": "989363278" }, { - "rshares": "2196907450", - "voter": "runridefly" + "voter": "runridefly", + "rshares": "2196907450" }, { - "rshares": "1783693666", - "voter": "funkywanderer" + "voter": "funkywanderer", + "rshares": "1783693666" }, { - "rshares": "4747321980", - "voter": "richardcrill" + "voter": "richardcrill", + "rshares": "4747321980" }, { - "rshares": "2205784762", - "voter": "jeremyfromwi" + "voter": "jeremyfromwi", + "rshares": "2205784762" }, { - "rshares": "50588612", - "voter": "troich" + "voter": "troich", + "rshares": "50588612" }, { - "rshares": "4546391288", - "voter": "nadin3" + "voter": "nadin3", + "rshares": "4546391288" }, { - "rshares": "1625414479", - "voter": "davidjkelley" + "voter": "davidjkelley", + "rshares": "1625414479" }, { - "rshares": "9458733324", - "voter": "aggroed" + "voter": "aggroed", + "rshares": "9458733324" }, { - "rshares": "50593879", - "voter": "crion" + "voter": "crion", + "rshares": "50593879" }, { - "rshares": "178419224", - "voter": "greatness" + "voter": "greatness", + "rshares": "178419224" }, { - "rshares": "50271139", - "voter": "hitherise" + "voter": "hitherise", + "rshares": "50271139" }, { - "rshares": "50262756", - "voter": "wiss" + "voter": "wiss", + "rshares": "50262756" }, { - "rshares": "53143607139", - "voter": "sponge-bob" + "voter": "sponge-bob", + "rshares": "53143607139" }, { - "rshares": "15571125147", - "voter": "digital-wisdom" + "voter": "digital-wisdom", + "rshares": "15571125147" }, { - "rshares": "3710973264", - "voter": "ethical-ai" + "voter": "ethical-ai", + "rshares": "3710973264" }, { - "rshares": "51033798", - "voter": "stroully" + "voter": "stroully", + "rshares": "51033798" }, { - "rshares": "6831389463", - "voter": "jwaser" + "voter": "jwaser", + "rshares": "6831389463" }, { - "rshares": "1064809843", - "voter": "tatianka" + "voter": "tatianka", + "rshares": "1064809843" }, { - "rshares": "50712038", - "voter": "thadm" + "voter": "thadm", + "rshares": "50712038" }, { - "rshares": "50710305", - "voter": "prof" + "voter": "prof", + "rshares": "50710305" }, { - "rshares": "1655277599", - "voter": "smisi" + "voter": "smisi", + "rshares": "1655277599" }, { - "rshares": "50370757", - "voter": "yorsens" + "voter": "yorsens", + "rshares": "50370757" }, { - "rshares": "50065875", - "voter": "bane" + "voter": "bane", + "rshares": "50065875" }, { - "rshares": "50059754", - "voter": "vive" + "voter": "vive", + "rshares": "50059754" }, { - "rshares": "50054445", - "voter": "coad" + "voter": "coad", + "rshares": "50054445" }, { - "rshares": "2617343597", - "voter": "bwaser" + "voter": "bwaser", + "rshares": "2617343597" }, { - "rshares": "50840303", - "voter": "sofa" + "voter": "sofa", + "rshares": "50840303" }, { - "rshares": "323483227", - "voter": "panther" + "voter": "panther", + "rshares": "323483227" }, { - "rshares": "53871683", - "voter": "doggnostic" + "voter": "doggnostic", + "rshares": "53871683" }, { - "rshares": "53593366", - "voter": "jenny-talls" + "voter": "jenny-talls", + "rshares": "53593366" }, { - "rshares": "54239080444", - "voter": "brains" + "voter": "brains", + "rshares": "54239080444" }, { - "rshares": "50450987", - "voter": "waldemar-kuhn" + "voter": "waldemar-kuhn", + "rshares": "50450987" }, { - "rshares": "50933404", - "voter": "ailo" + "voter": "ailo", + "rshares": "50933404" }, { - "rshares": "1387263917", - "voter": "steemafon" + "voter": "steemafon", + "rshares": "1387263917" }, { - "rshares": "1317649856", - "voter": "bitcoinparadise" + "voter": "bitcoinparadise", + "rshares": "1317649856" }, { - "rshares": "5753524189", - "voter": "chick1" + "voter": "chick1", + "rshares": "5753524189" }, { - "rshares": "3338622584", - "voter": "steempowerwhale" + "voter": "steempowerwhale", + "rshares": "3338622584" }, { - "rshares": "50584036", - "voter": "aoki" + "voter": "aoki", + "rshares": "50584036" }, { - "rshares": "50516543", - "voter": "typingagent" + "voter": "typingagent", + "rshares": "50516543" }, { - "rshares": "50528809", - "voter": "cwb" + "voter": "cwb", + "rshares": "50528809" }, { - "rshares": "62515317", - "voter": "freebornangel" + "voter": "freebornangel", + "rshares": "62515317" }, { - "rshares": "271440423", - "voter": "anomaly" + "voter": "anomaly", + "rshares": "271440423" }, { - "rshares": "2401297947", - "voter": "ellepdub" + "voter": "ellepdub", + "rshares": "2401297947" }, { - "rshares": "120649148", - "voter": "rynow" + "voter": "rynow", + "rshares": "120649148" }, { - "rshares": "61292139", - "voter": "inarix03" + "voter": "inarix03", + "rshares": "61292139" }, { - "rshares": "98577200", - "voter": "ola1" + "voter": "ola1", + "rshares": "98577200" }, { - "rshares": "50583338", - "voter": "rayzzz" + "voter": "rayzzz", + "rshares": "50583338" }, { - "rshares": "12115690216", - "voter": "herpetologyguy" + "voter": "herpetologyguy", + "rshares": "12115690216" }, { - "rshares": "4712300251", - "voter": "morgan.waser" + "voter": "morgan.waser", + "rshares": "4712300251" }, { - "rshares": "51230296", - "voter": "steemq" + "voter": "steemq", + "rshares": "51230296" }, { - "rshares": "50871059", - "voter": "motion" + "voter": "motion", + "rshares": "50871059" }, { - "rshares": "50794039", - "voter": "autodesk" + "voter": "autodesk", + "rshares": "50794039" }, { - "rshares": "50704078", - "voter": "yotoh" + "voter": "yotoh", + "rshares": "50704078" }, { - "rshares": "50538694", - "voter": "fenix" + "voter": "fenix", + "rshares": "50538694" }, { - "rshares": "1921231770", - "voter": "bapparabi" + "voter": "bapparabi", + "rshares": "1921231770" }, { - "rshares": "50532230", - "voter": "friends" + "voter": "friends", + "rshares": "50532230" }, { - "rshares": "50349676", - "voter": "albertheijn" + "voter": "albertheijn", + "rshares": "50349676" }, { - "rshares": "3609651500", - "voter": "strong-ai" + "voter": "strong-ai", + "rshares": "3609651500" }, { - "rshares": "516546553", - "voter": "grisha-danunaher" + "voter": "grisha-danunaher", + "rshares": "516546553" }, { - "rshares": "71207873", - "voter": "igtes" + "voter": "igtes", + "rshares": "71207873" }, { - "rshares": "141679752", - "voter": "buffett" + "voter": "buffett", + "rshares": "141679752" }, { - "rshares": "213848535", - "voter": "sjamayee" + "voter": "sjamayee", + "rshares": "213848535" }, { - "rshares": "453506109", - "voter": "witchcraftblog" + "voter": "witchcraftblog", + "rshares": "453506109" }, { - "rshares": "3265972001", - "voter": "zaitsevalesyaa" + "voter": "zaitsevalesyaa", + "rshares": "3265972001" }, { - "rshares": "161205518", - "voter": "acute" + "voter": "acute", + "rshares": "161205518" }, { - "rshares": "161179339", - "voter": "bethesda" + "voter": "bethesda", + "rshares": "161179339" }, { - "rshares": "160957729", - "voter": "realtime" + "voter": "realtime", + "rshares": "160957729" }, { - "rshares": "7187212765", - "voter": "dresden" + "voter": "dresden", + "rshares": "7187212765" }, { - "rshares": "212371776", - "voter": "mgibson" + "voter": "mgibson", + "rshares": "212371776" }, { - "rshares": "156837244", - "voter": "capcom" + "voter": "capcom", + "rshares": "156837244" }, { - "rshares": "159506164", - "voter": "greenpeace" + "voter": "greenpeace", + "rshares": "159506164" }, { - "rshares": "159352476", - "voter": "panic" + "voter": "panic", + "rshares": "159352476" }, { - "rshares": "156054487", - "voter": "fallout" + "voter": "fallout", + "rshares": "156054487" }, { - "rshares": "159025535", - "voter": "xtreme" + "voter": "xtreme", + "rshares": "159025535" }, { - "rshares": "1473342460", - "voter": "modernbukowski" + "voter": "modernbukowski", + "rshares": "1473342460" }, { - "rshares": "158541985", - "voter": "citigroup" + "voter": "citigroup", + "rshares": "158541985" }, { - "rshares": "30995434343", - "voter": "goldmatters" + "voter": "goldmatters", + "rshares": "30995434343" }, { - "rshares": "71727340", - "voter": "dealzgal" + "voter": "dealzgal", + "rshares": "71727340" }, { - "rshares": "64921864", - "voter": "storage" + "voter": "storage", + "rshares": "64921864" }, { - "rshares": "298391608", - "voter": "risabold" + "voter": "risabold", + "rshares": "298391608" }, { - "rshares": "55383257", - "voter": "blackmarket" + "voter": "blackmarket", + "rshares": "55383257" }, { - "rshares": "58454327", - "voter": "gifts" + "voter": "gifts", + "rshares": "58454327" }, { - "rshares": "93882016", - "voter": "expat" + "voter": "expat", + "rshares": "93882016" }, { - "rshares": "126595034", - "voter": "toddemaher1" + "voter": "toddemaher1", + "rshares": "126595034" } ], - "author": "gavvet", - "author_payout_value": "0.000 HBD", "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 247, + "flag_weight": 0.0 + }, "beneficiaries": [], - "blacklists": [], - "body": "@herpetologyguy\n\nOne of my many tasks as a zoo keeper is connecting people to animals. \n-\n\n\n\n

The museum I work at is unique because we showcase animals that are native to Virginia -- meaning that these are animals people will find close to home, rather than across the ocean in some distant country. This makes my job more crucial in that I am responsible for educating people about the reptiles and amphibians that they will find in their own backyards. And obviously, there\u2019s one group of reptiles that gives people more pause than almost any other animal . . . . 

\n

Snakes. 

\n

http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj   Picture Credit

\n

I do public programs featuring snakes quite frequently.  I believe people should know how to identify local venomous/non-venomous snakes, their role in the environment and how to deal with them when they are in close proximity to our homes.  Usually, I get eager audiences asking great questions.  But, every now and then, I get some idiot who tells me, \u201cI saw that same snake in my backyard! I chopped off its head with a shovel!\u201d

\n

Are they an idiot for killing the snake?  Not necessarily . . . I don\u2019t know the situation behind the encounter. But, only an idiot would walk into a wildlife facility, approach a zoo keeper and proudly declare that they kill the very same animals that the keeper is charged with the care for.  Would you walk into an animal shelter and tell someone working there that you enjoy stomping on puppies?  To us, there\u2019s not much difference\u2026 

\n

http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png   Picture Credit\n

\n

The best we can do in these situations is to try to educate people. This can be difficult because so many people are set in their ways -- plus we have to combat an instinctive fear and prejudice against snakes.  So, I\u2019m going to briefly lay it all out for you and tell you \"Why you shouldn\u2019t kill that snake in your yard.\" 

\n

http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg   Picture Credit

\n

1.  It\u2019s ILLEGAL in most states to kill a wild snake, unless that snake presents an IMMEDIATE threat.  And no, a snake crawling through your yard does not represent a good enough excuse to use force.  We\u2019re talking about a situation where a venomous snake is about to strike and you have no escape route but to fight your way out.  And guess what, that really doesn\u2019t ever happen (barring instances where someone purposefully provokes an animal).  Wildlife and law enforcement agencies are cracking down on people killing snakes, so it\u2019s better to keep yourself out of trouble. 

\n

http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg   Picture Credit

\n

2.  You are putting yourself in harm\u2019s way.  The vast majority of snake bites occur when people attempt to capture or kill snakes.  If left alone, the snake CANNOT hurt you.  Call wildlife services or trained professionals to remove the animal. 

\n

http://www.snakegetters.com/demo/bud-cotton-gg.jpg   Picture Credit

\n

3.  It\u2019s an incredibly beneficial animal, and you\u2019d be foolish to kill it.  Small snakes eat a huge variety of pest insects that destroy gardens, while large snakes typically feed on rats and other rodents that infest our homes.  If you see a large snake hanging around, you have a rodent problem; snakes will not hang around if there is no food source.  To keep snakes from being attracted to your property, do your best to remove any shelter or food sources that would attract rodents.  Some snakes even eat other snakes, and species like the harmless king snake will even feed on venomous species! 

\n

https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg   Picture Credit

\n

4.  Another snake might show up.  Snakes will not typically inhabit the same area in order to avoid competition.  If you kill that harmless rat snake, but you still have a food source nearby, another snake may move in to make use of that source.  The new snake may be another harmless species or something a bit less desirable.  So why not let that harmless snake take care of the infestation for you?

\n

http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg   Picture Credit

\n

Having a snake around can be hugely beneficial to you.  It is a free, environmentally-safe form of pest control.  Snakes, including venomous species, are non-aggressive animals (unless you provoke them) that will actively do their best to AVOID people.  A resident snake will often go unnoticed by homeowners, and most encounters are fleeting glimpses of the snake making a hasty escape.  Remember that snakes have their own unique role in the environment, and regardless of our own fears and feelings towards them, they are a necessary part of life. 

\n

   http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg   Picture Credit

\n\n\nif you liked this also please check out:\nhttps://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians\n\n\n***don't forget to follow @herpetologyguy***", - "category": "herpetology", - "children": 6, - "created": "2016-09-15T18:19:39", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/herpetology/@gavvet/why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", + "blacklists": [] + }, + { + "post_id": 959783, + "author": "serejandmyself", + "permlink": "captured-by-time-an-original-novel-chapter-1", + "category": "story", + "title": "CAPTURED BY TIME (An Original Novel - Chapter 1)", + "body": "#### Hey guys, welcome to the first chapter of my new novel.\n#### It is a mixture of 3 time lines, with 19th century, modern day and ancient times. The genre is probably something you would call a mixture of sci-fi, mystery, adventure and a bit more. \n#### Well, I welcome you to be the judge...\n\n

[![b801c049484636e0faf71f56cca03864c0bd6.jpg](https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg)](https://www.steemimg.com/image/1wrYT)

\n\n__________________________________\n\n**Chapter ONE**\n\nIt seemed as nothing was different in yet another cold and slightly windy London evening. The smog from the river was rising up as usual and the chilly wind would bring the smell up to the embankment, where Charles was taking a rest, sitting down on his favorite bench. \n\nFrom here he could see the might of the power station from across the river and something was special in the way those chimneys threw out the smoke onto the city. \n\nHe just finished his walk along his usual route, walking amongst the cemetery outside the chapel. It always amused him; that mix of emotion and sorrow amongst the busy city people, especially during the busy afternoon hours.\n\nThat rusty smell kept mixing with up with the light freshness of the leaves from the tree nearby Charles’s bench. As he threw a brief glimpse onto the clock on the parliament building he noticed that the small arrow was on 45 minutes… \n\nSuddenly he heard a murmur of horses; he turned his head before he could finish realizing what time it was. He saw that just a few yards up the road two horse carriages didn’t manage to share the drive way. \n\n
[![Saratogacarriagec5af5.jpg](https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg)](https://www.steemimg.com/image/1w1bI)
\n\nOne of the coachmen was shouting something and angrily waving his hands. Charles was able to see from here that the coachmen’s grey clothing was partially covered in dirt, probably from the splash of the puddles from underneath the wheels. \n\nThe coachmen kept shouting something, Charles was unable to see the second carriage from where he was sitting, but was able to see some passersby, that starting to gather around the incident.\n\nIt was obvious that, just like him, those people had nothing better to do on this late afternoon then to watch in amusement the accident in the middle of the avenue.\n\nJust as Charles was starting to lose interest in the whole situation, the door of the cab that Charles could see, opened and a man dressed in a black suit and holding a pipe stepped out. He calmly put his hand in the upper inner pocket of the suit and pulled out some coins. The man made two steps up to driver and handed him the coins. At this moment the driver stopped shouting for a moment and it was clear from the look on his face that he was confused. \n\nThe cab driver counted the coins and said something to the man in the suit, the passenger didn’t answer. He turned around and started to walk in the direction of the chapel. The cab driver clearly wasn’t happy. He started to shout once again, but this time at the passenger. While the cab driver turned his attention to the passenger, Charles noticed how the second carriage that was involved in the accident managed to move a few yards back.\n\nIt was a much smaller carriage, and the driver was clearly seeable to Charles now. He seemed somewhat happy that he was not in the middle of the light anymore; he hurryingly turned the carriage and the horse around and started to move also in the direction of the chapel. \n\nAt this moment the driver of the first carriage started to lose interest in shouting and decided to clean himself up. As he started to calm down, the bemused passersby begun to walk back to where they were heading and Charles also turned his head back towards the power station.\n\nCharles was so busy watching the situation unfold that he didn’t noticed that the passenger of the first carriage crossed the road and was now heading not towards the chapel anymore, but exactly in the other direction, towards the grey bench that Charles was sitting on.\n\nAt first Charles didn’t pay any attention to just another man who was walking by. But then he noticed that calm walk of his and it hit him that this was the same passenger from the carriage.\n\n“Excuse me sir?” said Charles as the man closed up to the bench. “You are the gentleman from the carriage, aren’t you?” “I saw you a minute ago, what happened?”\n\nThe man stopped to walk and shared a look with Charles; he calmly sat down beside him and carried on smoking his pipe, as he was not hearing the questions Charles asked him. \n\n“I do apologies for the intervention, but you must not be local, I can tell by your calmness, all the folks round here are always in a hurry” Charles carried on talking as if not noticing that the man was ignoring him. \n\nAll of a sudden the weather begun to change, wind started to blow stronger and the few leaves that the tree was holding blew in the direction of the bench. The smell from the river rose up and as if that wasn’t enough Charles felt like a small rain drop hit his head. He could clearly see the green water from where he was sitting through the decorations holes of the embankments fence. It was clear that it will start to rain soon by the appearing circles on the top of the river.\n\nAfter a few minutes of quietly seating by his new neighbor Charles caught himself looking at the clock on the tower, once again he saw the small arrow on 45 minutes…\n\n“And what do we pay the government for?” “It would feel though they are taking our money and spend it on their fancy hats and suits, don’t you find?” Said Charles.\n\nAt this point the man took out the pipe into his left hand and begun to cough. After he finished coughing Charles heard him speak, at this point Charles understood that for some reason he would remember this moment for a long time to come. \n\n“It is likely to assume that they deserve to spend the money they earn” Said the man, his voice was quite low and he had a certain accent Charles could quite catch.\n\n“I don’t think that money is of importance nowadays” Said the man.\n\nCharles looked at the man with a smile - “What is of importance? One might assume that philosophically speaking, importance can be found in nothing but what is good to us”.\n\n“No body knows what can be important to others if we carry on like this, then…” Charles didn’t finish his sentence as the man turned away from him and looked the other way. He then turned his head back and Charles noticed his eyes. His eyes were nothing like what Charles had seen before, they looked as though they were glass like and the as if they were blank, there was nothing behind them.\n\n“What is important is that I am here now and that it is happening today. It is important to live your life because, just like your life Charles, it has an end”, the man looked somewhat happy when he said that and Charles jumped back on the bench a little, he felt a small shiver run down his spine.\n\n“What? How do you know my name sir? Have you been following me?” questions were racing through Charles’s mind. \n\n“As I said, this is now of importance. You life can find its end today when you get back to your gallery in your cold basement on Kinnerton street or you might listen to me and…” Charles didn’t let the man finish his sentence. He jumped up from the bench; his cane flew within millimeters of the stranger leg as he jumped.\n\n“How dare you sir? Who gives you the right…” Charles raised his voice, he never allowed himself to raise his voice at a stranger beforehand.\n\n“I think this conversation is over!” exclaimed Charles. “That would be your choice” replied the man, “Do you think the time is right?” \n\nCharles had already turned away in anger and was about to make his first step away. Something in the words of the man about the time made him think for a second, thoughts raced through his mind. The number 45 and the small arrow of the parliament clock were stuck in his head. \n\n“I don’t understand said Charles…” he turned his head back towards the clock; the arrow was still on 45 minutes. “How is that possible?” Charles turned his head to the man, but there was no one on the bench. \n\nCharles begun to search the street rapidly with his eyes, it didn’t even occur to him that it was heavily raining until that moment. \n\n
[![tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif](https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif)](https://www.steemimg.com/image/1w5tK)
\n\nThe streets were empty; there were no carriages or people to be seen around. Feeling scared he turned his head to the clock once again – “How can it still be 45 minutes...” Charles was speaking out loud.\n\nThe next moment he felt like his knees weakened, his head was swirling and he dropped his cane, last thing he could hear was the clinging the of the cane’s handle against the pavement. His thoughts mixed up with his eyesight; the man and his pipe, the handle of the clock, the carriage, the passersby, the power stations smoke…\n \n_________________________________\n\n#### Follow me @serejandmyself for more \n\nImage credit - [1](https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/) ; [2](https://giphy.com/search/carriage) ; [3](http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html) ;", "json_metadata": { - "image": [ - "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", - "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", - "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", - "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", - "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", - "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", - "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", - "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg" - ], - "links": [ - "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", - "http://www.sciencemag.org", - "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", - "http://proactivepestga.com", - "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", - "http://blogs.discovermagazine.com", - "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", - "http://www.mylakelandnow.com", - "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", - "http://www.snakegetters.com", - "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", - "https://www.youtube.com/watch?v=ImOj1CKTBqE", - "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", - "http://phenomena.nationalgeographic.com", - "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg", - "http://westernmassnaturalist.org", - "https://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians" - ], "tags": [ - "herpetology", - "reptiles", - "snakes", - "science" + "story", + "fiction", + "scifi", + "mystery", + "writing" ], "users": [ - "herpetologyguy" + "serejandmyself" + ], + "image": [ + "https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg", + "https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg", + "https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif" + ], + "links": [ + "https://www.steemimg.com/image/1wrYT", + "https://www.steemimg.com/image/1w1bI", + "https://www.steemimg.com/image/1w5tK", + "https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/", + "https://giphy.com/search/carriage", + "http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html" ] }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 68620995119384, - "payout": 274.303, - "payout_at": "2016-09-22T18:19:39", - "pending_payout_value": "274.303 HBD", - "percent_hbd": 10000, - "permlink": "why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", - "post_id": 1256988, + "created": "2016-09-15T17:23:48", + "updated": "2016-09-15T17:23:48", + "depth": 0, + "children": 2, + "net_rshares": 66871297900441, + "is_paidout": false, + "payout_at": "2016-09-16T17:42:51", + "payout": 260.997, + "pending_payout_value": "260.997 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", "promoted": "0.000 HBD", "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 247 - }, - "title": "Why You Don\u2019t Want to Kill that Snake in Your Yard (featuring @herpetologyguy as author)", - "updated": "2016-09-15T18:19:39", - "url": "/herpetology/@gavvet/why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author" - }, - { "active_votes": [ { - "rshares": "31621188390159", - "voter": "smooth" + "voter": "smooth", + "rshares": "31621188390159" }, { - "rshares": "2078528809174", - "voter": "bmw" + "voter": "bmw", + "rshares": "2078528809174" }, { - "rshares": "1912120788268", - "voter": "badassmother" + "voter": "badassmother", + "rshares": "1912120788268" }, { - "rshares": "3312854507128", - "voter": "pharesim" + "voter": "pharesim", + "rshares": "3312854507128" }, { - "rshares": "2053144245901", - "voter": "hr1" + "voter": "hr1", + "rshares": "2053144245901" }, { - "rshares": "1271804694676", - "voter": "rossco99" + "voter": "rossco99", + "rshares": "1271804694676" }, { - "rshares": "22390733187", - "voter": "jaewoocho" + "voter": "jaewoocho", + "rshares": "22390733187" }, { - "rshares": "1736291789819", - "voter": "steemychicken1" + "voter": "steemychicken1", + "rshares": "1736291789819" }, { - "rshares": "1533973920081", - "voter": "joseph" + "voter": "joseph", + "rshares": "1533973920081" }, { - "rshares": "466132509421", - "voter": "recursive2" + "voter": "recursive2", + "rshares": "466132509421" }, { - "rshares": "652005899349", - "voter": "masteryoda" + "voter": "masteryoda", + "rshares": "652005899349" }, { - "rshares": "3120458041174", - "voter": "recursive" + "voter": "recursive", + "rshares": "3120458041174" }, { - "rshares": "5941203882368", - "voter": "smooth.witness" + "voter": "smooth.witness", + "rshares": "5941203882368" }, { - "rshares": "9168101098", - "voter": "idol" + "voter": "idol", + "rshares": "9168101098" }, { - "rshares": "816386307308", - "voter": "steemrollin" + "voter": "steemrollin", + "rshares": "816386307308" }, { - "rshares": "4941741048", - "voter": "sakr" + "voter": "sakr", + "rshares": "4941741048" }, { - "rshares": "1578030666", - "voter": "jocelyn" + "voter": "jocelyn", + "rshares": "1578030666" }, { - "rshares": "83530339170", - "voter": "acidsun" + "voter": "acidsun", + "rshares": "83530339170" }, { - "rshares": "14818192446", - "voter": "gregory-f" + "voter": "gregory-f", + "rshares": "14818192446" }, { - "rshares": "151248263299", - "voter": "edgeland" + "voter": "edgeland", + "rshares": "151248263299" }, { - "rshares": "9028522101", - "voter": "gregory60" + "voter": "gregory60", + "rshares": "9028522101" }, { - "rshares": "74914792736", - "voter": "eeks" + "voter": "eeks", + "rshares": "74914792736" }, { - "rshares": "15119117634", - "voter": "fkn" + "voter": "fkn", + "rshares": "15119117634" }, { - "rshares": "19873135819", - "voter": "elishagh1" + "voter": "elishagh1", + "rshares": "19873135819" }, { - "rshares": "7802860274", - "voter": "richman" + "voter": "richman", + "rshares": "7802860274" }, { - "rshares": "584250736753", - "voter": "nanzo-scoop" + "voter": "nanzo-scoop", + "rshares": "584250736753" }, { - "rshares": "177409209153", - "voter": "mummyimperfect" + "voter": "mummyimperfect", + "rshares": "177409209153" }, { - "rshares": "313697862", - "voter": "coar" + "voter": "coar", + "rshares": "313697862" }, { - "rshares": "106632631169", - "voter": "asch" + "voter": "asch", + "rshares": "106632631169" }, { - "rshares": "1061245798", - "voter": "murh" + "voter": "murh", + "rshares": "1061245798" }, { - "rshares": "6230746892", - "voter": "cryptofunk" + "voter": "cryptofunk", + "rshares": "6230746892" }, { - "rshares": "2057413439", - "voter": "error" + "voter": "error", + "rshares": "2057413439" }, { - "rshares": "962077066542", - "voter": "cyber" + "voter": "cyber", + "rshares": "962077066542" }, { - "rshares": "59950063204", - "voter": "theshell" + "voter": "theshell", + "rshares": "59950063204" }, { - "rshares": "49578772788", - "voter": "ak2020" + "voter": "ak2020", + "rshares": "49578772788" }, { - "rshares": "76584409982", - "voter": "noganoo" + "voter": "noganoo", + "rshares": "76584409982" }, { - "rshares": "3848540783991", - "voter": "satoshifund" + "voter": "satoshifund", + "rshares": "3848540783991" }, { - "rshares": "400880323222", - "voter": "taoteh1221" + "voter": "taoteh1221", + "rshares": "400880323222" }, { - "rshares": "410517349", - "voter": "applecrisp" + "voter": "applecrisp", + "rshares": "410517349" }, { - "rshares": "35693164103", - "voter": "altoz" + "voter": "altoz", + "rshares": "35693164103" }, { - "rshares": "335983556", - "voter": "gardening" + "voter": "gardening", + "rshares": "335983556" }, { - "rshares": "336136344", - "voter": "survival" + "voter": "survival", + "rshares": "336136344" }, { - "rshares": "10021612024", - "voter": "arisa" + "voter": "arisa", + "rshares": "10021612024" }, { - "rshares": "280737930617", - "voter": "trogdor" + "voter": "trogdor", + "rshares": "280737930617" }, { - "rshares": "5950554459", - "voter": "mark-waser" + "voter": "mark-waser", + "rshares": "5950554459" }, { - "rshares": "118348776939", - "voter": "geoffrey" + "voter": "geoffrey", + "rshares": "118348776939" }, { - "rshares": "42738217262", - "voter": "kimziv" + "voter": "kimziv", + "rshares": "42738217262" }, { - "rshares": "24170583392", - "voter": "seth-krings" + "voter": "seth-krings", + "rshares": "24170583392" }, { - "rshares": "46264097306", - "voter": "honeythief" + "voter": "honeythief", + "rshares": "46264097306" }, { - "rshares": "78976166587", - "voter": "technology" + "voter": "technology", + "rshares": "78976166587" }, { - "rshares": "76017114668", - "voter": "emily-cook" + "voter": "emily-cook", + "rshares": "76017114668" }, { - "rshares": "2187607792", - "voter": "superfreek" + "voter": "superfreek", + "rshares": "2187607792" }, { - "rshares": "49806227536", - "voter": "isteemit" + "voter": "isteemit", + "rshares": "49806227536" }, { - "rshares": "10993053311", - "voter": "auction" + "voter": "auction", + "rshares": "10993053311" }, { - "rshares": "17557768630", - "voter": "grey580" + "voter": "grey580", + "rshares": "17557768630" }, { - "rshares": "19975264794", - "voter": "thebatchman" + "voter": "thebatchman", + "rshares": "19975264794" }, { - "rshares": "60403077307", - "voter": "lehard" + "voter": "lehard", + "rshares": "60403077307" }, { - "rshares": "3283410959", - "voter": "orly" + "voter": "orly", + "rshares": "3283410959" }, { - "rshares": "5270985903", - "voter": "riscadox" + "voter": "riscadox", + "rshares": "5270985903" }, { - "rshares": "24867544970", - "voter": "katyakov" + "voter": "katyakov", + "rshares": "24867544970" }, { - "rshares": "12790313163", - "voter": "jako" + "voter": "jako", + "rshares": "12790313163" }, { - "rshares": "1159208963", - "voter": "steemswede" + "voter": "steemswede", + "rshares": "1159208963" }, { - "rshares": "1664172448", - "voter": "sergei" + "voter": "sergei", + "rshares": "1664172448" }, { - "rshares": "238378512", - "voter": "honey" + "voter": "honey", + "rshares": "238378512" }, { - "rshares": "71343869654", - "voter": "furion" + "voter": "furion", + "rshares": "71343869654" }, { - "rshares": "354114465", - "voter": "barbara2" + "voter": "barbara2", + "rshares": "354114465" }, { - "rshares": "393593664", - "voter": "ch0c0latechip" + "voter": "ch0c0latechip", + "rshares": "393593664" }, { - "rshares": "364274718", - "voter": "doge4lyf" + "voter": "doge4lyf", + "rshares": "364274718" }, { - "rshares": "5532441214", - "voter": "on0tole" + "voter": "on0tole", + "rshares": "5532441214" }, { - "rshares": "1231812238", - "voter": "dicov" + "voter": "dicov", + "rshares": "1231812238" }, { - "rshares": "2834923420", - "voter": "steem1653" + "voter": "steem1653", + "rshares": "2834923420" }, { - "rshares": "2919298058", - "voter": "sveokla" + "voter": "sveokla", + "rshares": "2919298058" }, { - "rshares": "17173174800", - "voter": "sebastien" + "voter": "sebastien", + "rshares": "17173174800" }, { - "rshares": "5357205853", - "voter": "thegoodguy" + "voter": "thegoodguy", + "rshares": "5357205853" }, { - "rshares": "14167556353", - "voter": "aaseb" + "voter": "aaseb", + "rshares": "14167556353" }, { - "rshares": "1026087885", - "voter": "danielkt" + "voter": "danielkt", + "rshares": "1026087885" }, { - "rshares": "4209522316", - "voter": "karen13" + "voter": "karen13", + "rshares": "4209522316" }, { - "rshares": "251366150295", - "voter": "nabilov" + "voter": "nabilov", + "rshares": "251366150295" }, { - "rshares": "629471993", - "voter": "luisucv34" + "voter": "luisucv34", + "rshares": "629471993" }, { - "rshares": "462033723200", - "voter": "knozaki2015" + "voter": "knozaki2015", + "rshares": "462033723200" }, { - "rshares": "95668007343", - "voter": "inertia" + "voter": "inertia", + "rshares": "95668007343" }, { - "rshares": "46858037615", - "voter": "milestone" + "voter": "milestone", + "rshares": "46858037615" }, { - "rshares": "7164489185", - "voter": "lichtblick" + "voter": "lichtblick", + "rshares": "7164489185" }, { - "rshares": "34761364489", - "voter": "creemej" + "voter": "creemej", + "rshares": "34761364489" }, { - "rshares": "2726160685", - "voter": "the-future" + "voter": "the-future", + "rshares": "2726160685" }, { - "rshares": "15378115921", - "voter": "nippel66" + "voter": "nippel66", + "rshares": "15378115921" }, { - "rshares": "23929304431", - "voter": "phenom" + "voter": "phenom", + "rshares": "23929304431" }, { - "rshares": "167305835788", - "voter": "blueorgy" + "voter": "blueorgy", + "rshares": "167305835788" }, { - "rshares": "12849414672", - "voter": "benjiberigan" + "voter": "benjiberigan", + "rshares": "12849414672" }, { - "rshares": "932262984", - "voter": "poseidon" + "voter": "poseidon", + "rshares": "932262984" }, { - "rshares": "19717588129", - "voter": "mustafaomar" + "voter": "mustafaomar", + "rshares": "19717588129" }, { - "rshares": "3435918746", - "voter": "simon.braki.love" + "voter": "simon.braki.love", + "rshares": "3435918746" }, { - "rshares": "82781233416", - "voter": "thylbom" + "voter": "thylbom", + "rshares": "82781233416" }, { - "rshares": "32543400703", - "voter": "deanliu" + "voter": "deanliu", + "rshares": "32543400703" }, { - "rshares": "4996306142", - "voter": "dmitriybtc" + "voter": "dmitriybtc", + "rshares": "4996306142" }, { - "rshares": "1019831473", - "voter": "hemp" + "voter": "hemp", + "rshares": "1019831473" }, { - "rshares": "118287211", - "voter": "flowers" + "voter": "flowers", + "rshares": "118287211" }, { - "rshares": "204617853645", - "voter": "jl777" + "voter": "jl777", + "rshares": "204617853645" }, { - "rshares": "30989251579", - "voter": "zaebars" + "voter": "zaebars", + "rshares": "30989251579" }, { - "rshares": "12261205066", - "voter": "positive" + "voter": "positive", + "rshares": "12261205066" }, { - "rshares": "1773021661", - "voter": "yarly" + "voter": "yarly", + "rshares": "1773021661" }, { - "rshares": "267188192", - "voter": "yarly2" + "voter": "yarly2", + "rshares": "267188192" }, { - "rshares": "267587944", - "voter": "yarly3" + "voter": "yarly3", + "rshares": "267587944" }, { - "rshares": "154579129", - "voter": "yarly4" + "voter": "yarly4", + "rshares": "154579129" }, { - "rshares": "155451862", - "voter": "yarly5" + "voter": "yarly5", + "rshares": "155451862" }, { - "rshares": "88607961", - "voter": "yarly7" + "voter": "yarly7", + "rshares": "88607961" }, { - "rshares": "50626015", - "voter": "steemchain" + "voter": "steemchain", + "rshares": "50626015" }, { - "rshares": "50626015", - "voter": "whalepool" + "voter": "whalepool", + "rshares": "50626015" }, { - "rshares": "6114654934", - "voter": "summonerrk" + "voter": "summonerrk", + "rshares": "6114654934" }, { - "rshares": "12098269394", - "voter": "webdeals" + "voter": "webdeals", + "rshares": "12098269394" }, { - "rshares": "231254136", - "voter": "alexbezimeni" + "voter": "alexbezimeni", + "rshares": "231254136" }, { - "rshares": "17267307497", - "voter": "proto" + "voter": "proto", + "rshares": "17267307497" }, { - "rshares": "7222569746", - "voter": "sisterholics" + "voter": "sisterholics", + "rshares": "7222569746" }, { - "rshares": "428868451", - "voter": "yarly10" + "voter": "yarly10", + "rshares": "428868451" }, { - "rshares": "229507420", - "voter": "yarly11" + "voter": "yarly11", + "rshares": "229507420" }, { - "rshares": "80241480", - "voter": "yarly12" + "voter": "yarly12", + "rshares": "80241480" }, { - "rshares": "412825844", - "voter": "fnait" + "voter": "fnait", + "rshares": "412825844" }, { - "rshares": "366755128", - "voter": "keepcalmand" + "voter": "keepcalmand", + "rshares": "366755128" }, { - "rshares": "180668119", - "voter": "kibela" + "voter": "kibela", + "rshares": "180668119" }, { - "rshares": "3084130055", - "voter": "dmilash" + "voter": "dmilash", + "rshares": "3084130055" }, { - "rshares": "13626326152", - "voter": "mahekg" + "voter": "mahekg", + "rshares": "13626326152" }, { - "rshares": "50578642550", - "voter": "gomeravibz" + "voter": "gomeravibz", + "rshares": "50578642550" }, { - "rshares": "8734139434", - "voter": "taker" + "voter": "taker", + "rshares": "8734139434" }, { - "rshares": "6521104126", - "voter": "nekromarinist" + "voter": "nekromarinist", + "rshares": "6521104126" }, { - "rshares": "6895440187", - "voter": "theprophet" + "voter": "theprophet", + "rshares": "6895440187" }, { - "rshares": "255409573883", - "voter": "laonie" + "voter": "laonie", + "rshares": "255409573883" }, { - "rshares": "24562026280", - "voter": "laoyao" + "voter": "laoyao", + "rshares": "24562026280" }, { - "rshares": "7994566199", - "voter": "myfirst" + "voter": "myfirst", + "rshares": "7994566199" }, { - "rshares": "51844874813", - "voter": "somebody" + "voter": "somebody", + "rshares": "51844874813" }, { - "rshares": "1938440237", - "voter": "flysaga" + "voter": "flysaga", + "rshares": "1938440237" }, { - "rshares": "2084695835", - "voter": "gmurph" + "voter": "gmurph", + "rshares": "2084695835" }, { - "rshares": "68250832", - "voter": "missmishel623" + "voter": "missmishel623", + "rshares": "68250832" }, { - "rshares": "11452948850", - "voter": "midnightoil" + "voter": "midnightoil", + "rshares": "11452948850" }, { - "rshares": "2280336943", - "voter": "kalimor" + "voter": "kalimor", + "rshares": "2280336943" }, { - "rshares": "4190335896", - "voter": "ullikume" + "voter": "ullikume", + "rshares": "4190335896" }, { - "rshares": "28645142464", - "voter": "xiaohui" + "voter": "xiaohui", + "rshares": "28645142464" }, { - "rshares": "1293627572", - "voter": "elfkitchen" + "voter": "elfkitchen", + "rshares": "1293627572" }, { - "rshares": "102434307703", - "voter": "joele" + "voter": "joele", + "rshares": "102434307703" }, { - "rshares": "5855564372", - "voter": "oflyhigh" + "voter": "oflyhigh", + "rshares": "5855564372" }, { - "rshares": "895565145", - "voter": "xiaokongcom" + "voter": "xiaokongcom", + "rshares": "895565145" }, { - "rshares": "12687522802", - "voter": "gargon" + "voter": "gargon", + "rshares": "12687522802" }, { - "rshares": "2076619689", - "voter": "natalymaty" + "voter": "natalymaty", + "rshares": "2076619689" }, { - "rshares": "84763896", - "voter": "numberone" + "voter": "numberone", + "rshares": "84763896" }, { - "rshares": "62760150", - "voter": "diamonds" + "voter": "diamonds", + "rshares": "62760150" }, { - "rshares": "1805296575", - "voter": "xianjun" + "voter": "xianjun", + "rshares": "1805296575" }, { - "rshares": "3251259359", - "voter": "unrealisback" + "voter": "unrealisback", + "rshares": "3251259359" }, { - "rshares": "11292536945", - "voter": "borran" + "voter": "borran", + "rshares": "11292536945" }, { - "rshares": "93805187965", - "voter": "miacats" + "voter": "miacats", + "rshares": "93805187965" }, { - "rshares": "118219525", - "voter": "microluck" + "voter": "microluck", + "rshares": "118219525" }, { - "rshares": "75676352", - "voter": "razberrijam" + "voter": "razberrijam", + "rshares": "75676352" }, { - "rshares": "2022625104", - "voter": "chinadaily" + "voter": "chinadaily", + "rshares": "2022625104" }, { - "rshares": "84708065280", - "voter": "serejandmyself" + "voter": "serejandmyself", + "rshares": "84708065280" }, { - "rshares": "106144628", - "voter": "pollina" + "voter": "pollina", + "rshares": "106144628" }, { - "rshares": "2958177650", - "voter": "macartem" + "voter": "macartem", + "rshares": "2958177650" }, { - "rshares": "10344891579", - "voter": "gvargas123" + "voter": "gvargas123", + "rshares": "10344891579" }, { - "rshares": "10691300360", - "voter": "jaredcwillis" + "voter": "jaredcwillis", + "rshares": "10691300360" }, { - "rshares": "2982676167", - "voter": "netaterra" + "voter": "netaterra", + "rshares": "2982676167" }, { - "rshares": "59171026", - "voter": "piezolit" + "voter": "piezolit", + "rshares": "59171026" }, { - "rshares": "6069996297", - "voter": "trev" + "voter": "trev", + "rshares": "6069996297" }, { - "rshares": "1152952998", - "voter": "leno4ek" + "voter": "leno4ek", + "rshares": "1152952998" }, { - "rshares": "33111928321", - "voter": "daut44" + "voter": "daut44", + "rshares": "33111928321" }, { - "rshares": "5475437205", - "voter": "contentjunkie" + "voter": "contentjunkie", + "rshares": "5475437205" }, { - "rshares": "7779288318", - "voter": "einsteinpotsdam" + "voter": "einsteinpotsdam", + "rshares": "7779288318" }, { - "rshares": "5053600817", - "voter": "richardcrill" + "voter": "richardcrill", + "rshares": "5053600817" }, { - "rshares": "2205784762", - "voter": "jeremyfromwi" + "voter": "jeremyfromwi", + "rshares": "2205784762" }, { - "rshares": "2056057288", - "voter": "eight-rad" + "voter": "eight-rad", + "rshares": "2056057288" }, { - "rshares": "5012661990", - "voter": "nadin3" + "voter": "nadin3", + "rshares": "5012661990" }, { - "rshares": "3411072843", - "voter": "xanoxt" + "voter": "xanoxt", + "rshares": "3411072843" }, { - "rshares": "1661520978", - "voter": "davidjkelley" + "voter": "davidjkelley", + "rshares": "1661520978" }, { - "rshares": "27677639861", - "voter": "sponge-bob" + "voter": "sponge-bob", + "rshares": "27677639861" }, { - "rshares": "15570931627", - "voter": "digital-wisdom" + "voter": "digital-wisdom", + "rshares": "15570931627" }, { - "rshares": "3710931796", - "voter": "ethical-ai" + "voter": "ethical-ai", + "rshares": "3710931796" }, { - "rshares": "6831306526", - "voter": "jwaser" + "voter": "jwaser", + "rshares": "6831306526" }, { - "rshares": "1086106040", - "voter": "tatianka" + "voter": "tatianka", + "rshares": "1086106040" }, { - "rshares": "55281264", - "voter": "apparat" + "voter": "apparat", + "rshares": "55281264" }, { - "rshares": "14097243573", - "voter": "cryptobiker" + "voter": "cryptobiker", + "rshares": "14097243573" }, { - "rshares": "54182817", - "voter": "analyzethis" + "voter": "analyzethis", + "rshares": "54182817" }, { - "rshares": "2675492964", - "voter": "bwaser" + "voter": "bwaser", + "rshares": "2675492964" }, { - "rshares": "54949117", - "voter": "doggnostic" + "voter": "doggnostic", + "rshares": "54949117" }, { - "rshares": "54665234", - "voter": "jenny-talls" + "voter": "jenny-talls", + "rshares": "54665234" }, { - "rshares": "27671309914", - "voter": "brains" + "voter": "brains", + "rshares": "27671309914" }, { - "rshares": "53671263", - "voter": "waldemar-kuhn" + "voter": "waldemar-kuhn", + "rshares": "53671263" }, { - "rshares": "1359518638", - "voter": "steemafon" + "voter": "steemafon", + "rshares": "1359518638" }, { - "rshares": "5753400992", - "voter": "chick1" + "voter": "chick1", + "rshares": "5753400992" }, { - "rshares": "50584036", - "voter": "aoki" + "voter": "aoki", + "rshares": "50584036" }, { - "rshares": "51568971", - "voter": "typingagent" + "voter": "typingagent", + "rshares": "51568971" }, { - "rshares": "50528809", - "voter": "cwb" + "voter": "cwb", + "rshares": "50528809" }, { - "rshares": "339287005", - "voter": "anomaly" + "voter": "anomaly", + "rshares": "339287005" }, { - "rshares": "2401284424", - "voter": "ellepdub" + "voter": "ellepdub", + "rshares": "2401284424" }, { - "rshares": "12115548081", - "voter": "herpetologyguy" + "voter": "herpetologyguy", + "rshares": "12115548081" }, { - "rshares": "4816962742", - "voter": "morgan.waser" + "voter": "morgan.waser", + "rshares": "4816962742" }, { - "rshares": "51232949", - "voter": "dragonice" + "voter": "dragonice", + "rshares": "51232949" }, { - "rshares": "51230296", - "voter": "steemq" + "voter": "steemq", + "rshares": "51230296" }, { - "rshares": "51218466", - "voter": "weare" + "voter": "weare", + "rshares": "51218466" }, { - "rshares": "1258359388", - "voter": "anns" + "voter": "anns", + "rshares": "1258359388" }, { - "rshares": "50875769", - "voter": "cyan" + "voter": "cyan", + "rshares": "50875769" }, { - "rshares": "50871059", - "voter": "motion" + "voter": "motion", + "rshares": "50871059" }, { - "rshares": "50791473", - "voter": "synereo" + "voter": "synereo", + "rshares": "50791473" }, { - "rshares": "50572441", - "voter": "unilever" + "voter": "unilever", + "rshares": "50572441" }, { - "rshares": "1871969417", - "voter": "bapparabi" + "voter": "bapparabi", + "rshares": "1871969417" }, { - "rshares": "50532230", - "voter": "friends" + "voter": "friends", + "rshares": "50532230" }, { - "rshares": "3689824509", - "voter": "strong-ai" + "voter": "strong-ai", + "rshares": "3689824509" }, { - "rshares": "53738244", - "voter": "ivanakamoto" + "voter": "ivanakamoto", + "rshares": "53738244" }, { - "rshares": "516546553", - "voter": "grisha-danunaher" + "voter": "grisha-danunaher", + "rshares": "516546553" }, { - "rshares": "213848535", - "voter": "sjamayee" + "voter": "sjamayee", + "rshares": "213848535" }, { - "rshares": "2974116451", - "voter": "htyfn" + "voter": "htyfn", + "rshares": "2974116451" }, { - "rshares": "162904624", - "voter": "allianz" + "voter": "allianz", + "rshares": "162904624" }, { - "rshares": "1630350803", - "voter": "rusteemitblog" + "voter": "rusteemitblog", + "rshares": "1630350803" }, { - "rshares": "161815656", - "voter": "ranger" + "voter": "ranger", + "rshares": "161815656" }, { - "rshares": "444435987", - "voter": "witchcraftblog" + "voter": "witchcraftblog", + "rshares": "444435987" }, { - "rshares": "161693690", - "voter": "shadowproject" + "voter": "shadowproject", + "rshares": "161693690" }, { - "rshares": "161205518", - "voter": "acute" + "voter": "acute", + "rshares": "161205518" }, { - "rshares": "161179339", - "voter": "bethesda" + "voter": "bethesda", + "rshares": "161179339" }, { - "rshares": "159352476", - "voter": "panic" + "voter": "panic", + "rshares": "159352476" }, { - "rshares": "159318360", - "voter": "stimmt" + "voter": "stimmt", + "rshares": "159318360" }, { - "rshares": "159062820", - "voter": "rule" + "voter": "rule", + "rshares": "159062820" }, { - "rshares": "158560941", - "voter": "steemthis" + "voter": "steemthis", + "rshares": "158560941" }, { - "rshares": "158486055", - "voter": "zendesk" + "voter": "zendesk", + "rshares": "158486055" }, { - "rshares": "68013381", - "voter": "storage" + "voter": "storage", + "rshares": "68013381" }, { - "rshares": "157667385", - "voter": "cbd" + "voter": "cbd", + "rshares": "157667385" }, { - "rshares": "157667385", - "voter": "junk" + "voter": "junk", + "rshares": "157667385" }, { - "rshares": "157682838", - "voter": "hug" + "voter": "hug", + "rshares": "157682838" }, { - "rshares": "157682838", - "voter": "bearcub" + "voter": "bearcub", + "rshares": "157682838" }, { - "rshares": "157682809", - "voter": "cyberpunk" + "voter": "cyberpunk", + "rshares": "157682809" }, { - "rshares": "156919204", - "voter": "keisha" + "voter": "keisha", + "rshares": "156919204" }, { - "rshares": "58460105", - "voter": "blackmarket" + "voter": "blackmarket", + "rshares": "58460105" }, { - "rshares": "61530871", - "voter": "gifts" + "voter": "gifts", + "rshares": "61530871" }, { - "rshares": "156919175", - "voter": "int" + "voter": "int", + "rshares": "156919175" }, { - "rshares": "1593664040", - "voter": "steemlift" + "voter": "steemlift", + "rshares": "1593664040" } ], - "author": "serejandmyself", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, + "author_reputation": 66.84, + "stats": { + "hide": false, + "gray": false, + "total_votes": 229, + "flag_weight": 0.0 + }, "beneficiaries": [], - "blacklists": [], - "body": "#### Hey guys, welcome to the first chapter of my new novel.\n#### It is a mixture of 3 time lines, with 19th century, modern day and ancient times. The genre is probably something you would call a mixture of sci-fi, mystery, adventure and a bit more. \n#### Well, I welcome you to be the judge...\n\n

[![b801c049484636e0faf71f56cca03864c0bd6.jpg](https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg)](https://www.steemimg.com/image/1wrYT)

\n\n__________________________________\n\n**Chapter ONE**\n\nIt seemed as nothing was different in yet another cold and slightly windy London evening. The smog from the river was rising up as usual and the chilly wind would bring the smell up to the embankment, where Charles was taking a rest, sitting down on his favorite bench. \n\nFrom here he could see the might of the power station from across the river and something was special in the way those chimneys threw out the smoke onto the city. \n\nHe just finished his walk along his usual route, walking amongst the cemetery outside the chapel. It always amused him; that mix of emotion and sorrow amongst the busy city people, especially during the busy afternoon hours.\n\nThat rusty smell kept mixing with up with the light freshness of the leaves from the tree nearby Charles\u2019s bench. As he threw a brief glimpse onto the clock on the parliament building he noticed that the small arrow was on 45 minutes\u2026 \n\nSuddenly he heard a murmur of horses; he turned his head before he could finish realizing what time it was. He saw that just a few yards up the road two horse carriages didn\u2019t manage to share the drive way. \n\n
[![Saratogacarriagec5af5.jpg](https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg)](https://www.steemimg.com/image/1w1bI)
\n\nOne of the coachmen was shouting something and angrily waving his hands. Charles was able to see from here that the coachmen\u2019s grey clothing was partially covered in dirt, probably from the splash of the puddles from underneath the wheels. \n\nThe coachmen kept shouting something, Charles was unable to see the second carriage from where he was sitting, but was able to see some passersby, that starting to gather around the incident.\n\nIt was obvious that, just like him, those people had nothing better to do on this late afternoon then to watch in amusement the accident in the middle of the avenue.\n\nJust as Charles was starting to lose interest in the whole situation, the door of the cab that Charles could see, opened and a man dressed in a black suit and holding a pipe stepped out. He calmly put his hand in the upper inner pocket of the suit and pulled out some coins. The man made two steps up to driver and handed him the coins. At this moment the driver stopped shouting for a moment and it was clear from the look on his face that he was confused. \n\nThe cab driver counted the coins and said something to the man in the suit, the passenger didn\u2019t answer. He turned around and started to walk in the direction of the chapel. The cab driver clearly wasn\u2019t happy. He started to shout once again, but this time at the passenger. While the cab driver turned his attention to the passenger, Charles noticed how the second carriage that was involved in the accident managed to move a few yards back.\n\nIt was a much smaller carriage, and the driver was clearly seeable to Charles now. He seemed somewhat happy that he was not in the middle of the light anymore; he hurryingly turned the carriage and the horse around and started to move also in the direction of the chapel. \n\nAt this moment the driver of the first carriage started to lose interest in shouting and decided to clean himself up. As he started to calm down, the bemused passersby begun to walk back to where they were heading and Charles also turned his head back towards the power station.\n\nCharles was so busy watching the situation unfold that he didn\u2019t noticed that the passenger of the first carriage crossed the road and was now heading not towards the chapel anymore, but exactly in the other direction, towards the grey bench that Charles was sitting on.\n\nAt first Charles didn\u2019t pay any attention to just another man who was walking by. But then he noticed that calm walk of his and it hit him that this was the same passenger from the carriage.\n\n\u201cExcuse me sir?\u201d said Charles as the man closed up to the bench. \u201cYou are the gentleman from the carriage, aren\u2019t you?\u201d \u201cI saw you a minute ago, what happened?\u201d\n\nThe man stopped to walk and shared a look with Charles; he calmly sat down beside him and carried on smoking his pipe, as he was not hearing the questions Charles asked him. \n\n\u201cI do apologies for the intervention, but you must not be local, I can tell by your calmness, all the folks round here are always in a hurry\u201d Charles carried on talking as if not noticing that the man was ignoring him. \n\nAll of a sudden the weather begun to change, wind started to blow stronger and the few leaves that the tree was holding blew in the direction of the bench. The smell from the river rose up and as if that wasn\u2019t enough Charles felt like a small rain drop hit his head. He could clearly see the green water from where he was sitting through the decorations holes of the embankments fence. It was clear that it will start to rain soon by the appearing circles on the top of the river.\n\nAfter a few minutes of quietly seating by his new neighbor Charles caught himself looking at the clock on the tower, once again he saw the small arrow on 45 minutes\u2026\n\n\u201cAnd what do we pay the government for?\u201d \u201cIt would feel though they are taking our money and spend it on their fancy hats and suits, don\u2019t you find?\u201d Said Charles.\n\nAt this point the man took out the pipe into his left hand and begun to cough. After he finished coughing Charles heard him speak, at this point Charles understood that for some reason he would remember this moment for a long time to come. \n\n\u201cIt is likely to assume that they deserve to spend the money they earn\u201d Said the man, his voice was quite low and he had a certain accent Charles could quite catch.\n\n\u201cI don\u2019t think that money is of importance nowadays\u201d Said the man.\n\nCharles looked at the man with a smile - \u201cWhat is of importance? One might assume that philosophically speaking, importance can be found in nothing but what is good to us\u201d.\n\n\u201cNo body knows what can be important to others if we carry on like this, then\u2026\u201d Charles didn\u2019t finish his sentence as the man turned away from him and looked the other way. He then turned his head back and Charles noticed his eyes. His eyes were nothing like what Charles had seen before, they looked as though they were glass like and the as if they were blank, there was nothing behind them.\n\n\u201cWhat is important is that I am here now and that it is happening today. It is important to live your life because, just like your life Charles, it has an end\u201d, the man looked somewhat happy when he said that and Charles jumped back on the bench a little, he felt a small shiver run down his spine.\n\n\u201cWhat? How do you know my name sir? Have you been following me?\u201d questions were racing through Charles\u2019s mind. \n\n\u201cAs I said, this is now of importance. You life can find its end today when you get back to your gallery in your cold basement on Kinnerton street or you might listen to me and\u2026\u201d Charles didn\u2019t let the man finish his sentence. He jumped up from the bench; his cane flew within millimeters of the stranger leg as he jumped.\n\n\u201cHow dare you sir? Who gives you the right\u2026\u201d Charles raised his voice, he never allowed himself to raise his voice at a stranger beforehand.\n\n\u201cI think this conversation is over!\u201d exclaimed Charles. \u201cThat would be your choice\u201d replied the man, \u201cDo you think the time is right?\u201d \n\nCharles had already turned away in anger and was about to make his first step away. Something in the words of the man about the time made him think for a second, thoughts raced through his mind. The number 45 and the small arrow of the parliament clock were stuck in his head. \n\n\u201cI don\u2019t understand said Charles\u2026\u201d he turned his head back towards the clock; the arrow was still on 45 minutes. \u201cHow is that possible?\u201d Charles turned his head to the man, but there was no one on the bench. \n\nCharles begun to search the street rapidly with his eyes, it didn\u2019t even occur to him that it was heavily raining until that moment. \n\n
[![tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif](https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif)](https://www.steemimg.com/image/1w5tK)
\n\nThe streets were empty; there were no carriages or people to be seen around. Feeling scared he turned his head to the clock once again \u2013 \u201cHow can it still be 45 minutes...\u201d Charles was speaking out loud.\n\nThe next moment he felt like his knees weakened, his head was swirling and he dropped his cane, last thing he could hear was the clinging the of the cane\u2019s handle against the pavement. His thoughts mixed up with his eyesight; the man and his pipe, the handle of the clock, the carriage, the passersby, the power stations smoke\u2026\n \n_________________________________\n\n#### Follow me @serejandmyself for more \n\nImage credit - [1](https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/) ; [2](https://giphy.com/search/carriage) ; [3](http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html) ;", - "category": "story", - "children": 2, - "created": "2016-09-15T17:23:48", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/story/@serejandmyself/captured-by-time-an-original-novel-chapter-1", + "blacklists": [] + }, + { + "post_id": 949385, + "author": "cass", + "permlink": "steemfest-follow-up-poster-designs-sbd-rewards-will-donated-to-the-project", + "category": "steemfest", + "title": "[Steemfest] Follow up - Poster designs! SBD rewards will donated to the project!", + "body": "![b99cea99b79d334be4815a56a64ff4f1.png](https://www.steemimg.com/images/2016/09/14/b99cea99b79d334be4815a56a64ff4f1.png)\n\n---\n\nI want to follow up on @roelandp announcement post about the steemfest.com at November 11/12/13.\n\nSome of u have noticed i'm assisting him on the preparation for the Steemfest Event in November.\nI did meet @roelandp in Amsterdam last week and was directly impressed by his passion and energy.\nSo i decided to FULL support him towards the Nov11.\n\n\n### All gotten SBD rewards will contributed towards @steemfest project \n\nSo u will have a better possibility to get a preview on how the posters will look later on \"LIVE\".\nHere we go, i was trying to make a nice small mockup collection to this cause.\n\nENJOY\n[![3a7db045b911ea8785a1e9c37c7e75a7.jpg](https://www.steemimg.com/images/2016/09/14/3a7db045b911ea8785a1e9c37c7e75a7.jpg)](https://www.steemimg.com/image/1SL5m)\n\n[![9a8268f34903dbcf5fbe06559ce7bfc6.png](https://www.steemimg.com/images/2016/09/14/9a8268f34903dbcf5fbe06559ce7bfc6.png)](https://www.steemimg.com/image/1V8e6)\n[![8f8de740d802a0bf228bd833657b1f26.jpg](https://www.steemimg.com/images/2016/09/14/8f8de740d802a0bf228bd833657b1f26.jpg)](https://www.steemimg.com/image/1SnTu)\n[![a317ccbeec3112a5d60f6f2afdf8255a.jpg](https://www.steemimg.com/images/2016/09/14/a317ccbeec3112a5d60f6f2afdf8255a.jpg)](https://www.steemimg.com/image/1SPji)\n[![bd3b5b4c18cda4d063cabc03443cb6a8.jpg](https://www.steemimg.com/images/2016/09/14/bd3b5b4c18cda4d063cabc03443cb6a8.jpg)](https://www.steemimg.com/image/1SCWB)\n[![4d16cb792150dbd9c7cca2e9eea45f9d.jpg](https://www.steemimg.com/images/2016/09/14/4d16cb792150dbd9c7cca2e9eea45f9d.jpg)](https://www.steemimg.com/image/1S62K)\n[![25943765543ef057543db7f2d5b65e28.jpg](https://www.steemimg.com/images/2016/09/14/25943765543ef057543db7f2d5b65e28.jpg)](https://www.steemimg.com/image/1SwCI)\n[![a1d1fc9af366abae551a9b443ac0441f.jpg](https://www.steemimg.com/images/2016/09/14/a1d1fc9af366abae551a9b443ac0441f.jpg)](https://www.steemimg.com/image/1Sq3h)", "json_metadata": { - "image": [ - "https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg", - "https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg", - "https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif" - ], - "links": [ - "https://www.steemimg.com/image/1wrYT", - "https://www.steemimg.com/image/1w1bI", - "https://www.steemimg.com/image/1w5tK", - "https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/", - "https://giphy.com/search/carriage", - "http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html" - ], "tags": [ - "story", - "fiction", - "scifi", - "mystery", - "writing" + "steemfest", + "design", + "poster", + "amsterdam" ], "users": [ - "serejandmyself" + "roelandp", + "steemfest" + ], + "image": [ + "https://www.steemimg.com/images/2016/09/14/b99cea99b79d334be4815a56a64ff4f1.png", + "https://www.steemimg.com/images/2016/09/14/3a7db045b911ea8785a1e9c37c7e75a7.jpg", + "https://www.steemimg.com/images/2016/09/14/9a8268f34903dbcf5fbe06559ce7bfc6.png", + "https://www.steemimg.com/images/2016/09/14/8f8de740d802a0bf228bd833657b1f26.jpg", + "https://www.steemimg.com/images/2016/09/14/a317ccbeec3112a5d60f6f2afdf8255a.jpg", + "https://www.steemimg.com/images/2016/09/14/bd3b5b4c18cda4d063cabc03443cb6a8.jpg", + "https://www.steemimg.com/images/2016/09/14/4d16cb792150dbd9c7cca2e9eea45f9d.jpg", + "https://www.steemimg.com/images/2016/09/14/25943765543ef057543db7f2d5b65e28.jpg", + "https://www.steemimg.com/images/2016/09/14/a1d1fc9af366abae551a9b443ac0441f.jpg" + ], + "links": [ + "https://www.steemimg.com/image/1SL5m", + "https://www.steemimg.com/image/1V8e6", + "https://www.steemimg.com/image/1SnTu", + "https://www.steemimg.com/image/1SPji", + "https://www.steemimg.com/image/1SCWB", + "https://www.steemimg.com/image/1S62K", + "https://www.steemimg.com/image/1SwCI", + "https://www.steemimg.com/image/1Sq3h" ] }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 66871297900441, - "payout": 259.423, - "payout_at": "2016-09-22T17:23:48", - "pending_payout_value": "259.423 HBD", - "percent_hbd": 10000, - "permlink": "captured-by-time-an-original-novel-chapter-1", - "post_id": 1256421, + "created": "2016-09-14T14:02:39", + "updated": "2016-09-14T14:02:39", + "depth": 0, + "children": 17, + "net_rshares": 169985783269298, + "is_paidout": false, + "payout_at": "2016-10-15T19:32:42", + "payout": 1618.329, + "pending_payout_value": "1618.329 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", "promoted": "0.000 HBD", "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 229 - }, - "title": "CAPTURED BY TIME (An Original Novel - Chapter 1)", - "updated": "2016-09-15T17:23:48", - "url": "/story/@serejandmyself/captured-by-time-an-original-novel-chapter-1" - }, - { "active_votes": [ { - "rshares": "494637006894", - "voter": "barrie" + "voter": "barrie", + "rshares": "494637006894" }, { - "rshares": "7710245013992", - "voter": "steempty" + "voter": "steempty", + "rshares": "7710245013992" }, { - "rshares": "30984805998710", - "voter": "smooth" + "voter": "smooth", + "rshares": "30984805998710" }, { - "rshares": "289667785336", - "voter": "anonymous" + "voter": "anonymous", + "rshares": "289667785336" }, { - "rshares": "14447196140450", - "voter": "summon" + "voter": "summon", + "rshares": "14447196140450" }, { - "rshares": "681484074723", - "voter": "eternity" + "voter": "eternity", + "rshares": "681484074723" }, { - "rshares": "36033200189196", - "voter": "jamesc" + "voter": "jamesc", + "rshares": "36033200189196" }, { - "rshares": "4574334081535", - "voter": "riverhead" + "voter": "riverhead", + "rshares": "4574334081535" }, { - "rshares": "7015534059816", - "voter": "wackou" + "voter": "wackou", + "rshares": "7015534059816" }, { - "rshares": "2160925860071", - "voter": "badassmother" + "voter": "badassmother", + "rshares": "2160925860071" }, { - "rshares": "2051034289892", - "voter": "hr1" + "voter": "hr1", + "rshares": "2051034289892" }, { - "rshares": "6466290924028", - "voter": "fuzzyvest" + "voter": "fuzzyvest", + "rshares": "6466290924028" }, { - "rshares": "118485787519", - "voter": "sandra" + "voter": "sandra", + "rshares": "118485787519" }, { - "rshares": "5339100755934", - "voter": "kushed" + "voter": "kushed", + "rshares": "5339100755934" }, { - "rshares": "1674029296934", - "voter": "silver" + "voter": "silver", + "rshares": "1674029296934" }, { - "rshares": "4063925838557", - "voter": "silversteem" + "voter": "silversteem", + "rshares": "4063925838557" }, { - "rshares": "128324636011", - "voter": "svk" + "voter": "svk", + "rshares": "128324636011" }, { - "rshares": "1126556112870", - "voter": "ihashfury" + "voter": "ihashfury", + "rshares": "1126556112870" }, { - "rshares": "1019287149109", - "voter": "liondani" + "voter": "liondani", + "rshares": "1019287149109" }, { - "rshares": "2937247386101", - "voter": "wang" + "voter": "wang", + "rshares": "2937247386101" }, { - "rshares": "23332152248", - "voter": "jaewoocho" + "voter": "jaewoocho", + "rshares": "23332152248" }, { - "rshares": "1910071941344", - "voter": "xeroc" + "voter": "xeroc", + "rshares": "1910071941344" }, { - "rshares": "6514602351120", - "voter": "complexring" + "voter": "complexring", + "rshares": "6514602351120" }, { - "rshares": "1731498672998", - "voter": "joseph" + "voter": "joseph", + "rshares": "1731498672998" }, { - "rshares": "90517391466", - "voter": "aizensou" + "voter": "aizensou", + "rshares": "90517391466" }, { - "rshares": "4166462346763", - "voter": "au1nethyb1" + "voter": "au1nethyb1", + "rshares": "4166462346763" }, { - "rshares": "475419579220", - "voter": "recursive2" + "voter": "recursive2", + "rshares": "475419579220" }, { - "rshares": "462210569737", - "voter": "recursive3" + "voter": "recursive3", + "rshares": "462210569737" }, { - "rshares": "651686683150", - "voter": "masteryoda" + "voter": "masteryoda", + "rshares": "651686683150" }, { - "rshares": "3254899228205", - "voter": "recursive" + "voter": "recursive", + "rshares": "3254899228205" }, { - "rshares": "1209033907", - "voter": "mineralwasser" + "voter": "mineralwasser", + "rshares": "1209033907" }, { - "rshares": "6756071314", - "voter": "bingo-0" + "voter": "bingo-0", + "rshares": "6756071314" }, { - "rshares": "1718241828", - "voter": "bingo-1" + "voter": "bingo-1", + "rshares": "1718241828" }, { - "rshares": "5801165470383", - "voter": "smooth.witness" + "voter": "smooth.witness", + "rshares": "5801165470383" }, { - "rshares": "1330827857292", - "voter": "steempower" + "voter": "steempower", + "rshares": "1330827857292" }, { - "rshares": "425345638228", - "voter": "officialfuzzy" + "voter": "officialfuzzy", + "rshares": "425345638228" }, { - "rshares": "1215800936456", - "voter": "cass" + "voter": "cass", + "rshares": "1215800936456" }, { - "rshares": "10365366239", - "voter": "idol" + "voter": "idol", + "rshares": "10365366239" }, { - "rshares": "816021167585", - "voter": "steemrollin" + "voter": "steemrollin", + "rshares": "816021167585" }, { - "rshares": "5043750251", - "voter": "sakr" + "voter": "sakr", + "rshares": "5043750251" }, { - "rshares": "64509999367", - "voter": "bangking" + "voter": "bangking", + "rshares": "64509999367" }, { - "rshares": "296422841257", - "voter": "chitty" + "voter": "chitty", + "rshares": "296422841257" }, { - "rshares": "8231062957", - "voter": "unosuke" + "voter": "unosuke", + "rshares": "8231062957" }, { - "rshares": "3109726595", - "voter": "yefet" + "voter": "yefet", + "rshares": "3109726595" }, { - "rshares": "8209280181", - "voter": "khanhsang" + "voter": "khanhsang", + "rshares": "8209280181" }, { - "rshares": "1784486145", - "voter": "jocelyn" + "voter": "jocelyn", + "rshares": "1784486145" }, { - "rshares": "85258511340", - "voter": "acidsun" + "voter": "acidsun", + "rshares": "85258511340" }, { - "rshares": "14485500439", - "voter": "gregory-f" + "voter": "gregory-f", + "rshares": "14485500439" }, { - "rshares": "17261905745", - "voter": "jademont" + "voter": "jademont", + "rshares": "17261905745" }, { - "rshares": "74893360972", - "voter": "eeks" + "voter": "eeks", + "rshares": "74893360972" }, { - "rshares": "488526217", - "voter": "paco-steem" + "voter": "paco-steem", + "rshares": "488526217" }, { - "rshares": "5883825852", - "voter": "spaninv" + "voter": "spaninv", + "rshares": "5883825852" }, { - "rshares": "-12087903048", - "voter": "james-show" + "voter": "james-show", + "rshares": "-12087903048" }, { - "rshares": "336429919201", - "voter": "teamsteem" + "voter": "teamsteem", + "rshares": "336429919201" }, { - "rshares": "8667563285", - "voter": "richman" + "voter": "richman", + "rshares": "8667563285" }, { - "rshares": "13068852902", - "voter": "acidyo" + "voter": "acidyo", + "rshares": "13068852902" }, { - "rshares": "174506653297", - "voter": "steve-walschot" + "voter": "steve-walschot", + "rshares": "174506653297" }, { - "rshares": "9836158141", - "voter": "kefkius" + "voter": "kefkius", + "rshares": "9836158141" }, { - "rshares": "58639157917", - "voter": "oaldamster" + "voter": "oaldamster", + "rshares": "58639157917" }, { - "rshares": "268816966", - "voter": "coar" + "voter": "coar", + "rshares": "268816966" }, { - "rshares": "100988550788", - "voter": "asch" + "voter": "asch", + "rshares": "100988550788" }, { - "rshares": "629740296743", - "voter": "kevinwong" + "voter": "kevinwong", + "rshares": "629740296743" }, { - "rshares": "1414344480", - "voter": "murh" + "voter": "murh", + "rshares": "1414344480" }, { - "rshares": "6372449504", - "voter": "cryptofunk" + "voter": "cryptofunk", + "rshares": "6372449504" }, { - "rshares": "16733609471", - "voter": "b4bb4r-5h3r" + "voter": "b4bb4r-5h3r", + "rshares": "16733609471" }, { - "rshares": "579449391", - "voter": "kodi" + "voter": "kodi", + "rshares": "579449391" }, { - "rshares": "2326310189", - "voter": "error" + "voter": "error", + "rshares": "2326310189" }, { - "rshares": "206727143370", - "voter": "dragonslayer109" + "voter": "dragonslayer109", + "rshares": "206727143370" }, { - "rshares": "5853981249", - "voter": "marta-zaidel" + "voter": "marta-zaidel", + "rshares": "5853981249" }, { - "rshares": "1064576926325", - "voter": "cyber" + "voter": "cyber", + "rshares": "1064576926325" }, { - "rshares": "61678758152", - "voter": "theshell" + "voter": "theshell", + "rshares": "61678758152" }, { - "rshares": "425799805812", - "voter": "taoteh1221" + "voter": "taoteh1221", + "rshares": "425799805812" }, { - "rshares": "418804855", - "voter": "applecrisp" + "voter": "applecrisp", + "rshares": "418804855" }, { - "rshares": "381169481", - "voter": "stiletto" + "voter": "stiletto", + "rshares": "381169481" }, { - "rshares": "383436160153", - "voter": "hedge-x" + "voter": "hedge-x", + "rshares": "383436160153" }, { - "rshares": "56682792316", - "voter": "juanmiguelsalas" + "voter": "juanmiguelsalas", + "rshares": "56682792316" }, { - "rshares": "572341707403", - "voter": "andrarchy" + "voter": "andrarchy", + "rshares": "572341707403" }, { - "rshares": "48485320682", - "voter": "thecryptodrive" + "voter": "thecryptodrive", + "rshares": "48485320682" }, { - "rshares": "1380704224", - "voter": "fjccoin" + "voter": "fjccoin", + "rshares": "1380704224" }, { - "rshares": "563704760996", - "voter": "infovore" + "voter": "infovore", + "rshares": "563704760996" }, { - "rshares": "13622725061", - "voter": "facer" + "voter": "facer", + "rshares": "13622725061" }, { - "rshares": "210189819099", - "voter": "alexc" + "voter": "alexc", + "rshares": "210189819099" }, { - "rshares": "4866103974", - "voter": "tee-em" + "voter": "tee-em", + "rshares": "4866103974" }, { - "rshares": "32185020754", - "voter": "michaelx" + "voter": "michaelx", + "rshares": "32185020754" }, { - "rshares": "5946920606", - "voter": "mark-waser" + "voter": "mark-waser", + "rshares": "5946920606" }, { - "rshares": "17023109715", - "voter": "albertogm" + "voter": "albertogm", + "rshares": "17023109715" }, { - "rshares": "111322975376", - "voter": "geoffrey" + "voter": "geoffrey", + "rshares": "111322975376" }, { - "rshares": "6609454107", - "voter": "tyler-fletcher" + "voter": "tyler-fletcher", + "rshares": "6609454107" }, { - "rshares": "81716838174", - "voter": "razvanelulmarin" + "voter": "razvanelulmarin", + "rshares": "81716838174" }, { - "rshares": "2251029884", - "voter": "superfreek" + "voter": "superfreek", + "rshares": "2251029884" }, { - "rshares": "497689345", - "voter": "mrhankeh" + "voter": "mrhankeh", + "rshares": "497689345" }, { - "rshares": "35378265315", - "voter": "clement" + "voter": "clement", + "rshares": "35378265315" }, { - "rshares": "32849189476", - "voter": "acassity" + "voter": "acassity", + "rshares": "32849189476" }, { - "rshares": "280886491", - "voter": "ladyclair" + "voter": "ladyclair", + "rshares": "280886491" }, { - "rshares": "68448307991", - "voter": "bacchist" + "voter": "bacchist", + "rshares": "68448307991" }, { - "rshares": "29507132066", - "voter": "venuspcs" + "voter": "venuspcs", + "rshares": "29507132066" }, { - "rshares": "189899541322", - "voter": "asmolokalo" + "voter": "asmolokalo", + "rshares": "189899541322" }, { - "rshares": "57789275837", - "voter": "good-karma" + "voter": "good-karma", + "rshares": "57789275837" }, { - "rshares": "462726697228", - "voter": "roelandp" + "voter": "roelandp", + "rshares": "462726697228" }, { - "rshares": "1642746247", - "voter": "gidlark" + "voter": "gidlark", + "rshares": "1642746247" }, { - "rshares": "3281446057", - "voter": "orly" + "voter": "orly", + "rshares": "3281446057" }, { - "rshares": "3822074668", - "voter": "getssidetracked" + "voter": "getssidetracked", + "rshares": "3822074668" }, { - "rshares": "250280584", - "voter": "mstang83" + "voter": "mstang83", + "rshares": "250280584" }, { - "rshares": "18842493961", - "voter": "hakise" + "voter": "hakise", + "rshares": "18842493961" }, { - "rshares": "366200786008", - "voter": "fabio" + "voter": "fabio", + "rshares": "366200786008" }, { - "rshares": "15993709711", - "voter": "yogi.artist" + "voter": "yogi.artist", + "rshares": "15993709711" }, { - "rshares": "103519364", - "voter": "strawhat" + "voter": "strawhat", + "rshares": "103519364" }, { - "rshares": "16242543792", - "voter": "r4fken" + "voter": "r4fken", + "rshares": "16242543792" }, { - "rshares": "102589641", - "voter": "cryptochannel" + "voter": "cryptochannel", + "rshares": "102589641" }, { - "rshares": "154460522305", - "voter": "derekareith" + "voter": "derekareith", + "rshares": "154460522305" }, { - "rshares": "134342335542", - "voter": "slowwalker" + "voter": "slowwalker", + "rshares": "134342335542" }, { - "rshares": "234221482", - "voter": "dzweta" + "voter": "dzweta", + "rshares": "234221482" }, { - "rshares": "2304777789", - "voter": "vi1son" + "voter": "vi1son", + "rshares": "2304777789" }, { - "rshares": "167273913111", - "voter": "knircky" + "voter": "knircky", + "rshares": "167273913111" }, { - "rshares": "18842550092", - "voter": "ausbitbank" + "voter": "ausbitbank", + "rshares": "18842550092" }, { - "rshares": "167108122163", - "voter": "jacor" + "voter": "jacor", + "rshares": "167108122163" }, { - "rshares": "243777568", - "voter": "ardina" + "voter": "ardina", + "rshares": "243777568" }, { - "rshares": "1422705803", - "voter": "mixa" + "voter": "mixa", + "rshares": "1422705803" }, { - "rshares": "18005198739", - "voter": "sebastien" + "voter": "sebastien", + "rshares": "18005198739" }, { - "rshares": "3519456066", - "voter": "taurus" + "voter": "taurus", + "rshares": "3519456066" }, { - "rshares": "13516878845", - "voter": "sitaru" + "voter": "sitaru", + "rshares": "13516878845" }, { - "rshares": "11694816243", - "voter": "asim" + "voter": "asim", + "rshares": "11694816243" }, { - "rshares": "321595915706", - "voter": "jesta" + "voter": "jesta", + "rshares": "321595915706" }, { - "rshares": "33655847643", - "voter": "toxonaut" + "voter": "toxonaut", + "rshares": "33655847643" }, { - "rshares": "109259290", - "voter": "snowden" + "voter": "snowden", + "rshares": "109259290" }, { - "rshares": "4602737482", - "voter": "thegoodguy" + "voter": "thegoodguy", + "rshares": "4602737482" }, { - "rshares": "129723551811", - "voter": "paco" + "voter": "paco", + "rshares": "129723551811" }, { - "rshares": "1107683133", - "voter": "karen13" + "voter": "karen13", + "rshares": "1107683133" }, { - "rshares": "24478695193", - "voter": "igster" + "voter": "igster", + "rshares": "24478695193" }, { - "rshares": "73113648749", - "voter": "jpiper20" + "voter": "jpiper20", + "rshares": "73113648749" }, { - "rshares": "2722560234", - "voter": "dmacshady" + "voter": "dmacshady", + "rshares": "2722560234" }, { - "rshares": "32333061210", - "voter": "pkattera" + "voter": "pkattera", + "rshares": "32333061210" }, { - "rshares": "19237325288", - "voter": "anduweb" + "voter": "anduweb", + "rshares": "19237325288" }, { - "rshares": "10485943136", - "voter": "shla-rafia" + "voter": "shla-rafia", + "rshares": "10485943136" }, { - "rshares": "46825725594", - "voter": "milestone" + "voter": "milestone", + "rshares": "46825725594" }, { - "rshares": "7311652491", - "voter": "lichtblick" + "voter": "lichtblick", + "rshares": "7311652491" }, { - "rshares": "35770229729", - "voter": "creemej" + "voter": "creemej", + "rshares": "35770229729" }, { - "rshares": "91938017", - "voter": "wildchild" + "voter": "wildchild", + "rshares": "91938017" }, { - "rshares": "126704886218", - "voter": "demotruk" + "voter": "demotruk", + "rshares": "126704886218" }, { - "rshares": "3638341233", - "voter": "maximkichev" + "voter": "maximkichev", + "rshares": "3638341233" }, { - "rshares": "2506537211", - "voter": "the-future" + "voter": "the-future", + "rshares": "2506537211" }, { - "rshares": "4381902261", - "voter": "adamt" + "voter": "adamt", + "rshares": "4381902261" }, { - "rshares": "865281681", - "voter": "sebhaj" + "voter": "sebhaj", + "rshares": "865281681" }, { - "rshares": "24903536535", - "voter": "phenom" + "voter": "phenom", + "rshares": "24903536535" }, { - "rshares": "2828187420", - "voter": "sgnsteems" + "voter": "sgnsteems", + "rshares": "2828187420" }, { - "rshares": "175156042246", - "voter": "blueorgy" + "voter": "blueorgy", + "rshares": "175156042246" }, { - "rshares": "9702073568", - "voter": "benjiberigan" + "voter": "benjiberigan", + "rshares": "9702073568" }, { - "rshares": "339108457006", - "voter": "calaber24p" + "voter": "calaber24p", + "rshares": "339108457006" }, { - "rshares": "7168473448", - "voter": "geronimo" + "voter": "geronimo", + "rshares": "7168473448" }, { - "rshares": "4923764236", - "voter": "bitcoiner" + "voter": "bitcoiner", + "rshares": "4923764236" }, { - "rshares": "3756065125", - "voter": "tarindel" + "voter": "tarindel", + "rshares": "3756065125" }, { - "rshares": "92046641189", - "voter": "rea" + "voter": "rea", + "rshares": "92046641189" }, { - "rshares": "53840923427", - "voter": "jl777" + "voter": "jl777", + "rshares": "53840923427" }, { - "rshares": "30194118400", - "voter": "zaebars" + "voter": "zaebars", + "rshares": "30194118400" }, { - "rshares": "35105109840", - "voter": "paquito" + "voter": "paquito", + "rshares": "35105109840" }, { - "rshares": "1772149995", - "voter": "yarly" + "voter": "yarly", + "rshares": "1772149995" }, { - "rshares": "267173384", - "voter": "yarly2" + "voter": "yarly2", + "rshares": "267173384" }, { - "rshares": "267573135", - "voter": "yarly3" + "voter": "yarly3", + "rshares": "267573135" }, { - "rshares": "154579129", - "voter": "yarly4" + "voter": "yarly4", + "rshares": "154579129" }, { - "rshares": "155451862", - "voter": "yarly5" + "voter": "yarly5", + "rshares": "155451862" }, { - "rshares": "88607961", - "voter": "yarly7" + "voter": "yarly7", + "rshares": "88607961" }, { - "rshares": "780100857", - "voter": "raymonjohnstone" + "voter": "raymonjohnstone", + "rshares": "780100857" }, { - "rshares": "50619397", - "voter": "steemchain" + "voter": "steemchain", + "rshares": "50619397" }, { - "rshares": "50619397", - "voter": "whalepool" + "voter": "whalepool", + "rshares": "50619397" }, { - "rshares": "506354306", - "voter": "gustavopasquini" + "voter": "gustavopasquini", + "rshares": "506354306" }, { - "rshares": "206059171", - "voter": "sergey44" + "voter": "sergey44", + "rshares": "206059171" }, { - "rshares": "114721821", - "voter": "mxo8" + "voter": "mxo8", + "rshares": "114721821" }, { - "rshares": "1234205003", - "voter": "mohammed123" + "voter": "mohammed123", + "rshares": "1234205003" }, { - "rshares": "21120708735", - "voter": "krabgat" + "voter": "krabgat", + "rshares": "21120708735" }, { - "rshares": "2763375206", - "voter": "favorit" + "voter": "favorit", + "rshares": "2763375206" }, { - "rshares": "4543618384", - "voter": "proto" + "voter": "proto", + "rshares": "4543618384" }, { - "rshares": "634042636", - "voter": "curator" + "voter": "curator", + "rshares": "634042636" }, { - "rshares": "428809375", - "voter": "yarly10" + "voter": "yarly10", + "rshares": "428809375" }, { - "rshares": "229507420", - "voter": "yarly11" + "voter": "yarly11", + "rshares": "229507420" }, { - "rshares": "16468884512", - "voter": "michaeldodridge" + "voter": "michaeldodridge", + "rshares": "16468884512" }, { - "rshares": "80241480", - "voter": "yarly12" + "voter": "yarly12", + "rshares": "80241480" }, { - "rshares": "46743296544", - "voter": "celebr1ty" + "voter": "celebr1ty", + "rshares": "46743296544" }, { - "rshares": "11567632851", - "voter": "dimitarj" + "voter": "dimitarj", + "rshares": "11567632851" }, { - "rshares": "142823483", - "voter": "steemster1" + "voter": "steemster1", + "rshares": "142823483" }, { - "rshares": "25747727433", - "voter": "fabien" + "voter": "fabien", + "rshares": "25747727433" }, { - "rshares": "817422571", - "voter": "bullionstackers" + "voter": "bullionstackers", + "rshares": "817422571" }, { - "rshares": "250094985729", - "voter": "originate" + "voter": "originate", + "rshares": "250094985729" }, { - "rshares": "3021945641", - "voter": "dmilash" + "voter": "dmilash", + "rshares": "3021945641" }, { - "rshares": "2214910466", - "voter": "jillstein2016" + "voter": "jillstein2016", + "rshares": "2214910466" }, { - "rshares": "110940646", - "voter": "cryptoz" + "voter": "cryptoz", + "rshares": "110940646" }, { - "rshares": "3302445446", - "voter": "glitterpig" + "voter": "glitterpig", + "rshares": "3302445446" }, { - "rshares": "6338015068", - "voter": "uwe69" + "voter": "uwe69", + "rshares": "6338015068" }, { - "rshares": "6276554782", - "voter": "shortcut" + "voter": "shortcut", + "rshares": "6276554782" }, { - "rshares": "115422843193", - "voter": "steemdrive" + "voter": "steemdrive", + "rshares": "115422843193" }, { - "rshares": "947490604", - "voter": "metaflute" + "voter": "metaflute", + "rshares": "947490604" }, { - "rshares": "52093680889", - "voter": "gomeravibz" + "voter": "gomeravibz", + "rshares": "52093680889" }, { - "rshares": "2298221146", - "voter": "taker" + "voter": "taker", + "rshares": "2298221146" }, { - "rshares": "6519151447", - "voter": "nekromarinist" + "voter": "nekromarinist", + "rshares": "6519151447" }, { - "rshares": "57873464", - "voter": "sharon" + "voter": "sharon", + "rshares": "57873464" }, { - "rshares": "240147448", - "voter": "frozendota" + "voter": "frozendota", + "rshares": "240147448" }, { - "rshares": "15408983536", - "voter": "felixxx" + "voter": "felixxx", + "rshares": "15408983536" }, { - "rshares": "1571831658", - "voter": "whitemike313" + "voter": "whitemike313", + "rshares": "1571831658" }, { - "rshares": "3034673286", - "voter": "merej99" + "voter": "merej99", + "rshares": "3034673286" }, { - "rshares": "58971492", - "voter": "lillianjones" + "voter": "lillianjones", + "rshares": "58971492" }, { - "rshares": "160728582794", - "voter": "twinner" + "voter": "twinner", + "rshares": "160728582794" }, { - "rshares": "24365622803", - "voter": "rawnetics" + "voter": "rawnetics", + "rshares": "24365622803" }, { - "rshares": "54215689285", - "voter": "sextusempiricus" + "voter": "sextusempiricus", + "rshares": "54215689285" }, { - "rshares": "24019048233", - "voter": "laonie1" + "voter": "laonie1", + "rshares": "24019048233" }, { - "rshares": "25067031014", - "voter": "laonie2" + "voter": "laonie2", + "rshares": "25067031014" }, { - "rshares": "25075820795", - "voter": "laonie3" + "voter": "laonie3", + "rshares": "25075820795" }, { - "rshares": "6338796297", - "voter": "brendio" + "voter": "brendio", + "rshares": "6338796297" }, { - "rshares": "2082633772", - "voter": "gmurph" + "voter": "gmurph", + "rshares": "2082633772" }, { - "rshares": "80533628422", - "voter": "timsaid" + "voter": "timsaid", + "rshares": "80533628422" }, { - "rshares": "2375350982", - "voter": "kalimor" + "voter": "kalimor", + "rshares": "2375350982" }, { - "rshares": "63541793", - "voter": "coderg" + "voter": "coderg", + "rshares": "63541793" }, { - "rshares": "2868848889", - "voter": "darrenturetzky" + "voter": "darrenturetzky", + "rshares": "2868848889" }, { - "rshares": "56886318", - "voter": "michellek" + "voter": "michellek", + "rshares": "56886318" }, { - "rshares": "25071217681", - "voter": "laonie4" + "voter": "laonie4", + "rshares": "25071217681" }, { - "rshares": "25068579591", - "voter": "laonie5" + "voter": "laonie5", + "rshares": "25068579591" }, { - "rshares": "25065597250", - "voter": "laonie6" + "voter": "laonie6", + "rshares": "25065597250" }, { - "rshares": "25061528883", - "voter": "laonie7" + "voter": "laonie7", + "rshares": "25061528883" }, { - "rshares": "5480906296", - "voter": "kurtbeil" + "voter": "kurtbeil", + "rshares": "5480906296" }, { - "rshares": "25057888093", - "voter": "laonie8" + "voter": "laonie8", + "rshares": "25057888093" }, { - "rshares": "25055101904", - "voter": "laonie9" + "voter": "laonie9", + "rshares": "25055101904" }, { - "rshares": "3229522119", - "voter": "steemleak" + "voter": "steemleak", + "rshares": "3229522119" }, { - "rshares": "112040172638", - "voter": "thisisbenbrick" + "voter": "thisisbenbrick", + "rshares": "112040172638" }, { - "rshares": "4269542847", - "voter": "antfield" + "voter": "antfield", + "rshares": "4269542847" }, { - "rshares": "7834943379", - "voter": "mevilkingdom" + "voter": "mevilkingdom", + "rshares": "7834943379" }, { - "rshares": "60240401", - "voter": "locolote" + "voter": "locolote", + "rshares": "60240401" }, { - "rshares": "368648608", - "voter": "riosparada" + "voter": "riosparada", + "rshares": "368648608" }, { - "rshares": "11282370272", - "voter": "ekitcho" + "voter": "ekitcho", + "rshares": "11282370272" }, { - "rshares": "115248537", - "voter": "bigsambucca" + "voter": "bigsambucca", + "rshares": "115248537" }, { - "rshares": "93215140213", - "voter": "joele" + "voter": "joele", + "rshares": "93215140213" }, { - "rshares": "2215228183", - "voter": "paynode" + "voter": "paynode", + "rshares": "2215228183" }, { - "rshares": "79785139", - "voter": "dims" + "voter": "dims", + "rshares": "79785139" }, { - "rshares": "2455226384", - "voter": "pgarcgo" + "voter": "pgarcgo", + "rshares": "2455226384" }, { - "rshares": "1434064827", - "voter": "hms818" + "voter": "hms818", + "rshares": "1434064827" }, { - "rshares": "40210689203", - "voter": "nonlinearone" + "voter": "nonlinearone", + "rshares": "40210689203" }, { - "rshares": "59437351", - "voter": "msjennifer" + "voter": "msjennifer", + "rshares": "59437351" }, { - "rshares": "54654502", - "voter": "ciao" + "voter": "ciao", + "rshares": "54654502" }, { - "rshares": "3667415885", - "voter": "villainblack" + "voter": "villainblack", + "rshares": "3667415885" }, { - "rshares": "52985539", - "voter": "steemo" + "voter": "steemo", + "rshares": "52985539" }, { - "rshares": "52848854", - "voter": "steema" + "voter": "steema", + "rshares": "52848854" }, { - "rshares": "16997336414", - "voter": "plasticfuzzy" + "voter": "plasticfuzzy", + "rshares": "16997336414" }, { - "rshares": "74615731", - "voter": "evgenyche" + "voter": "evgenyche", + "rshares": "74615731" }, { - "rshares": "69662169", - "voter": "confucius" + "voter": "confucius", + "rshares": "69662169" }, { - "rshares": "70633121", - "voter": "stevescriber" + "voter": "stevescriber", + "rshares": "70633121" }, { - "rshares": "4179438198", - "voter": "bledarus" + "voter": "bledarus", + "rshares": "4179438198" }, { - "rshares": "53688127", - "voter": "loli" + "voter": "loli", + "rshares": "53688127" }, { - "rshares": "93744050986", - "voter": "miacats" + "voter": "miacats", + "rshares": "93744050986" }, { - "rshares": "53661976", - "voter": "jarvis" + "voter": "jarvis", + "rshares": "53661976" }, { - "rshares": "77220767", - "voter": "razberrijam" + "voter": "razberrijam", + "rshares": "77220767" }, { - "rshares": "6669342810", - "voter": "rubenalexander" + "voter": "rubenalexander", + "rshares": "6669342810" }, { - "rshares": "51899170", - "voter": "fortuner" + "voter": "fortuner", + "rshares": "51899170" }, { - "rshares": "9443278113", - "voter": "pjheinz" + "voter": "pjheinz", + "rshares": "9443278113" }, { - "rshares": "3054149279", - "voter": "virtualgrowth" + "voter": "virtualgrowth", + "rshares": "3054149279" }, { - "rshares": "84068339484", - "voter": "neptun" + "voter": "neptun", + "rshares": "84068339484" }, { - "rshares": "11375408076", - "voter": "gvargas123" + "voter": "gvargas123", + "rshares": "11375408076" }, { - "rshares": "50698107", - "voter": "johnbyrd" + "voter": "johnbyrd", + "rshares": "50698107" }, { - "rshares": "50682252", - "voter": "thomasaustin" + "voter": "thomasaustin", + "rshares": "50682252" }, { - "rshares": "50680459", - "voter": "thermor" + "voter": "thermor", + "rshares": "50680459" }, { - "rshares": "50691211", - "voter": "ficholl" + "voter": "ficholl", + "rshares": "50691211" }, { - "rshares": "50673817", - "voter": "widell" + "voter": "widell", + "rshares": "50673817" }, { - "rshares": "50311250", - "voter": "revelbrooks" + "voter": "revelbrooks", + "rshares": "50311250" }, { - "rshares": "25048684602", - "voter": "laonie10" + "voter": "laonie10", + "rshares": "25048684602" }, { - "rshares": "91779459", - "voter": "lasseehlers" + "voter": "lasseehlers", + "rshares": "91779459" }, { - "rshares": "377542979", - "voter": "mrlogic" + "voter": "mrlogic", + "rshares": "377542979" }, { - "rshares": "2982178419", - "voter": "netaterra" + "voter": "netaterra", + "rshares": "2982178419" }, { - "rshares": "54361669", - "voter": "bitchplease" + "voter": "bitchplease", + "rshares": "54361669" }, { - "rshares": "78411391", - "voter": "joelbow" + "voter": "joelbow", + "rshares": "78411391" }, { - "rshares": "5764641330", - "voter": "hilarski" + "voter": "hilarski", + "rshares": "5764641330" }, { - "rshares": "3133328104", - "voter": "imag1ne" + "voter": "imag1ne", + "rshares": "3133328104" }, { - "rshares": "2080442949", - "voter": "shadowspub" + "voter": "shadowspub", + "rshares": "2080442949" }, { - "rshares": "80071335", - "voter": "justinschwalm" + "voter": "justinschwalm", + "rshares": "80071335" }, { - "rshares": "50416427", - "voter": "curpose" + "voter": "curpose", + "rshares": "50416427" }, { - "rshares": "17920360614", - "voter": "takethecannoli" + "voter": "takethecannoli", + "rshares": "17920360614" }, { - "rshares": "1208491149", - "voter": "lenar" + "voter": "lenar", + "rshares": "1208491149" }, { - "rshares": "1699015883", - "voter": "runridefly" + "voter": "runridefly", + "rshares": "1699015883" }, { - "rshares": "88019548", - "voter": "uziriel" + "voter": "uziriel", + "rshares": "88019548" }, { - "rshares": "2212170971", - "voter": "steemitguide" + "voter": "steemitguide", + "rshares": "2212170971" }, { - "rshares": "7470990325", - "voter": "einsteinpotsdam" + "voter": "einsteinpotsdam", + "rshares": "7470990325" }, { - "rshares": "4592852638", - "voter": "richardcrill" + "voter": "richardcrill", + "rshares": "4592852638" }, { - "rshares": "24180906457", - "voter": "laonie11" + "voter": "laonie11", + "rshares": "24180906457" }, { - "rshares": "50588612", - "voter": "troich" + "voter": "troich", + "rshares": "50588612" }, { - "rshares": "3336919086", - "voter": "xanoxt" + "voter": "xanoxt", + "rshares": "3336919086" }, { - "rshares": "1660688801", - "voter": "davidjkelley" + "voter": "davidjkelley", + "rshares": "1660688801" }, { - "rshares": "50593879", - "voter": "crion" + "voter": "crion", + "rshares": "50593879" }, { - "rshares": "50271139", - "voter": "hitherise" + "voter": "hitherise", + "rshares": "50271139" }, { - "rshares": "50262756", - "voter": "wiss" + "voter": "wiss", + "rshares": "50262756" }, { - "rshares": "42587324218", - "voter": "sponge-bob" + "voter": "sponge-bob", + "rshares": "42587324218" }, { - "rshares": "4656328113", - "voter": "l0k1" + "voter": "l0k1", + "rshares": "4656328113" }, { - "rshares": "15560806947", - "voter": "digital-wisdom" + "voter": "digital-wisdom", + "rshares": "15560806947" }, { - "rshares": "3708768210", - "voter": "ethical-ai" + "voter": "ethical-ai", + "rshares": "3708768210" }, { - "rshares": "51939094", - "voter": "freesteem" + "voter": "freesteem", + "rshares": "51939094" }, { - "rshares": "51061585", - "voter": "jamespro" + "voter": "jamespro", + "rshares": "51061585" }, { - "rshares": "51033798", - "voter": "stroully" + "voter": "stroully", + "rshares": "51033798" }, { - "rshares": "3079499780", - "voter": "maryfromsochi" + "voter": "maryfromsochi", + "rshares": "3079499780" }, { - "rshares": "6827381497", - "voter": "jwaser" + "voter": "jwaser", + "rshares": "6827381497" }, { - "rshares": "50712038", - "voter": "thadm" + "voter": "thadm", + "rshares": "50712038" }, { - "rshares": "50710305", - "voter": "prof" + "voter": "prof", + "rshares": "50710305" }, { - "rshares": "50370757", - "voter": "yorsens" + "voter": "yorsens", + "rshares": "50370757" }, { - "rshares": "212837202380", - "voter": "asksisk" + "voter": "asksisk", + "rshares": "212837202380" }, { - "rshares": "50065875", - "voter": "bane" + "voter": "bane", + "rshares": "50065875" }, { - "rshares": "50059754", - "voter": "vive" + "voter": "vive", + "rshares": "50059754" }, { - "rshares": "50054445", - "voter": "coad" + "voter": "coad", + "rshares": "50054445" }, { - "rshares": "26903512125", - "voter": "dubi" + "voter": "dubi", + "rshares": "26903512125" }, { - "rshares": "2674022812", - "voter": "bwaser" + "voter": "bwaser", + "rshares": "2674022812" }, { - "rshares": "50840303", - "voter": "sofa" + "voter": "sofa", + "rshares": "50840303" }, { - "rshares": "52910800", - "voter": "roadhog" + "voter": "roadhog", + "rshares": "52910800" }, { - "rshares": "2201645172", - "voter": "alina1" + "voter": "alina1", + "rshares": "2201645172" }, { - "rshares": "659649765", - "voter": "ct-gurus" + "voter": "ct-gurus", + "rshares": "659649765" }, { - "rshares": "54622489", - "voter": "medafi" + "voter": "medafi", + "rshares": "54622489" }, { - "rshares": "7708395185", - "voter": "mariandavp" + "voter": "mariandavp", + "rshares": "7708395185" }, { - "rshares": "63519655246", - "voter": "tracemayer" + "voter": "tracemayer", + "rshares": "63519655246" }, { - "rshares": "43440714161", - "voter": "brains" + "voter": "brains", + "rshares": "43440714161" }, { - "rshares": "51278775", - "voter": "post-successful" + "voter": "post-successful", + "rshares": "51278775" }, { - "rshares": "50933404", - "voter": "ailo" + "voter": "ailo", + "rshares": "50933404" }, { - "rshares": "5419706802", - "voter": "burnin" + "voter": "burnin", + "rshares": "5419706802" }, { - "rshares": "5749962751", - "voter": "chick1" + "voter": "chick1", + "rshares": "5749962751" }, { - "rshares": "3613469334", - "voter": "funnyman" + "voter": "funnyman", + "rshares": "3613469334" }, { - "rshares": "2188505650", - "voter": "rigaronib" + "voter": "rigaronib", + "rshares": "2188505650" }, { - "rshares": "50584036", - "voter": "aoki" + "voter": "aoki", + "rshares": "50584036" }, { - "rshares": "50528809", - "voter": "cwb" + "voter": "cwb", + "rshares": "50528809" }, { - "rshares": "61548157", - "voter": "freebornangel" + "voter": "freebornangel", + "rshares": "61548157" }, { - "rshares": "474509334", - "voter": "anomaly" + "voter": "anomaly", + "rshares": "474509334" }, { - "rshares": "27666667825", - "voter": "tarekadam" + "voter": "tarekadam", + "rshares": "27666667825" }, { - "rshares": "2400009033", - "voter": "ellepdub" + "voter": "ellepdub", + "rshares": "2400009033" }, { - "rshares": "51890765", - "voter": "gregorygarcia" + "voter": "gregorygarcia", + "rshares": "51890765" }, { - "rshares": "61292139", - "voter": "inarix03" + "voter": "inarix03", + "rshares": "61292139" }, { - "rshares": "286977519", - "voter": "ola1" + "voter": "ola1", + "rshares": "286977519" }, { - "rshares": "12084353453", - "voter": "herpetologyguy" + "voter": "herpetologyguy", + "rshares": "12084353453" }, { - "rshares": "50441122", - "voter": "eavy" + "voter": "eavy", + "rshares": "50441122" }, { - "rshares": "50454901", - "voter": "roto" + "voter": "roto", + "rshares": "50454901" }, { - "rshares": "53055896", - "voter": "drac59" + "voter": "drac59", + "rshares": "53055896" }, { - "rshares": "4814064056", - "voter": "morgan.waser" + "voter": "morgan.waser", + "rshares": "4814064056" }, { - "rshares": "50602980", - "voter": "cfisher" + "voter": "cfisher", + "rshares": "50602980" }, { - "rshares": "56301561", - "voter": "stringer" + "voter": "stringer", + "rshares": "56301561" }, { - "rshares": "50235850", - "voter": "billkappa442" + "voter": "billkappa442", + "rshares": "50235850" }, { - "rshares": "1491995147", - "voter": "robotev" + "voter": "robotev", + "rshares": "1491995147" }, { - "rshares": "61035542", - "voter": "teo" + "voter": "teo", + "rshares": "61035542" }, { - "rshares": "4984135374", - "voter": "donchate" + "voter": "donchate", + "rshares": "4984135374" }, { - "rshares": "50708837", - "voter": "ardly" + "voter": "ardly", + "rshares": "50708837" }, { - "rshares": "50704078", - "voter": "yotoh" + "voter": "yotoh", + "rshares": "50704078" }, { - "rshares": "827252367", - "voter": "bapparabi" + "voter": "bapparabi", + "rshares": "827252367" }, { - "rshares": "50372583", - "voter": "carre" + "voter": "carre", + "rshares": "50372583" }, { - "rshares": "50349676", - "voter": "albertheijn" + "voter": "albertheijn", + "rshares": "50349676" }, { - "rshares": "3687702565", - "voter": "strong-ai" + "voter": "strong-ai", + "rshares": "3687702565" }, { - "rshares": "52329350", - "voter": "ninjapainter" + "voter": "ninjapainter", + "rshares": "52329350" }, { - "rshares": "728357348", - "voter": "ziogio" + "voter": "ziogio", + "rshares": "728357348" }, { - "rshares": "69589512", - "voter": "igtes" + "voter": "igtes", + "rshares": "69589512" }, { - "rshares": "141679752", - "voter": "buffett" + "voter": "buffett", + "rshares": "141679752" }, { - "rshares": "197326430", - "voter": "sjamayee" + "voter": "sjamayee", + "rshares": "197326430" }, { - "rshares": "121259976", - "voter": "comeup" + "voter": "comeup", + "rshares": "121259976" }, { - "rshares": "1630339077", - "voter": "rusteemitblog" + "voter": "rusteemitblog", + "rshares": "1630339077" }, { - "rshares": "155476058", - "voter": "ndea30" + "voter": "ndea30", + "rshares": "155476058" }, { - "rshares": "155469045", - "voter": "domenico" + "voter": "domenico", + "rshares": "155469045" }, { - "rshares": "444421238", - "voter": "witchcraftblog" + "voter": "witchcraftblog", + "rshares": "444421238" }, { - "rshares": "158523226", - "voter": "shadowproject" + "voter": "shadowproject", + "rshares": "158523226" }, { - "rshares": "157805871", - "voter": "serena199" + "voter": "serena199", + "rshares": "157805871" }, { - "rshares": "154619387", - "voter": "gia7" + "voter": "gia7", + "rshares": "154619387" }, { - "rshares": "1994519972", - "voter": "dresden" + "voter": "dresden", + "rshares": "1994519972" }, { - "rshares": "201362779", - "voter": "mgibson" + "voter": "mgibson", + "rshares": "201362779" }, { - "rshares": "154157014", - "voter": "richie4" + "voter": "richie4", + "rshares": "154157014" }, { - "rshares": "157241455", - "voter": "coraline88" + "voter": "coraline88", + "rshares": "157241455" }, { - "rshares": "157176058", - "voter": "cybergirls" + "voter": "cybergirls", + "rshares": "157176058" }, { - "rshares": "153838109", - "voter": "harlen" + "voter": "harlen", + "rshares": "153838109" }, { - "rshares": "152057481", - "voter": "food-creator" + "voter": "food-creator", + "rshares": "152057481" }, { - "rshares": "156939548", - "voter": "yanuel" + "voter": "yanuel", + "rshares": "156939548" }, { - "rshares": "153751482", - "voter": "daritza" + "voter": "daritza", + "rshares": "153751482" }, { - "rshares": "156847954", - "voter": "correct" + "voter": "correct", + "rshares": "156847954" }, { - "rshares": "156411729", - "voter": "blender" + "voter": "blender", + "rshares": "156411729" }, { - "rshares": "159506164", - "voter": "greenpeace" + "voter": "greenpeace", + "rshares": "159506164" }, { - "rshares": "156299377", - "voter": "tipsandtricks" + "voter": "tipsandtricks", + "rshares": "156299377" }, { - "rshares": "156261069", - "voter": "ibm1000" + "voter": "ibm1000", + "rshares": "156261069" }, { - "rshares": "159352476", - "voter": "panic" + "voter": "panic", + "rshares": "159352476" }, { - "rshares": "156023422", - "voter": "reef" + "voter": "reef", + "rshares": "156023422" }, { - "rshares": "159025535", - "voter": "xtreme" + "voter": "xtreme", + "rshares": "159025535" }, { - "rshares": "155619923", - "voter": "steemwallet" + "voter": "steemwallet", + "rshares": "155619923" }, { - "rshares": "81075259", - "voter": "dealzgal" + "voter": "dealzgal", + "rshares": "81075259" }, { - "rshares": "89654003", - "voter": "storage" + "voter": "storage", + "rshares": "89654003" }, { - "rshares": "151413472", - "voter": "steemdesigner" + "voter": "steemdesigner", + "rshares": "151413472" }, { - "rshares": "148077602", - "voter": "dougkarr" + "voter": "dougkarr", + "rshares": "148077602" }, { - "rshares": "73844343", - "voter": "blackmarket" + "voter": "blackmarket", + "rshares": "73844343" }, { - "rshares": "79990132", - "voter": "gifts" + "voter": "gifts", + "rshares": "79990132" }, { - "rshares": "171078424", - "voter": "pathtomydream" + "voter": "pathtomydream", + "rshares": "171078424" }, { - "rshares": "112446078", - "voter": "paulocouto" + "voter": "paulocouto", + "rshares": "112446078" }, { - "rshares": "151525581", - "voter": "kevinfoesenek" + "voter": "kevinfoesenek", + "rshares": "151525581" }, { - "rshares": "144957585", - "voter": "sawgunner13" + "voter": "sawgunner13", + "rshares": "144957585" }, { - "rshares": "1593664040", - "voter": "steemlift" + "voter": "steemlift", + "rshares": "1593664040" }, { - "rshares": "147818170", - "voter": "dirlei.sdias" + "voter": "dirlei.sdias", + "rshares": "147818170" }, { - "rshares": "135637537", - "voter": "toddemaher1" + "voter": "toddemaher1", + "rshares": "135637537" } ], - "author": "cass", - "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "![b99cea99b79d334be4815a56a64ff4f1.png](https://www.steemimg.com/images/2016/09/14/b99cea99b79d334be4815a56a64ff4f1.png)\n\n---\n\nI want to follow up on @roelandp announcement post about the steemfest.com at November 11/12/13.\n\nSome of u have noticed i'm assisting him on the preparation for the Steemfest Event in November.\nI did meet @roelandp in Amsterdam last week and was directly impressed by his passion and energy.\nSo i decided to FULL support him towards the Nov11.\n\n\n### All gotten SBD rewards will contributed towards @steemfest project \n\nSo u will have a better possibility to get a preview on how the posters will look later on \"LIVE\".\nHere we go, i was trying to make a nice small mockup collection to this cause.\n\nENJOY\n[![3a7db045b911ea8785a1e9c37c7e75a7.jpg](https://www.steemimg.com/images/2016/09/14/3a7db045b911ea8785a1e9c37c7e75a7.jpg)](https://www.steemimg.com/image/1SL5m)\n\n[![9a8268f34903dbcf5fbe06559ce7bfc6.png](https://www.steemimg.com/images/2016/09/14/9a8268f34903dbcf5fbe06559ce7bfc6.png)](https://www.steemimg.com/image/1V8e6)\n[![8f8de740d802a0bf228bd833657b1f26.jpg](https://www.steemimg.com/images/2016/09/14/8f8de740d802a0bf228bd833657b1f26.jpg)](https://www.steemimg.com/image/1SnTu)\n[![a317ccbeec3112a5d60f6f2afdf8255a.jpg](https://www.steemimg.com/images/2016/09/14/a317ccbeec3112a5d60f6f2afdf8255a.jpg)](https://www.steemimg.com/image/1SPji)\n[![bd3b5b4c18cda4d063cabc03443cb6a8.jpg](https://www.steemimg.com/images/2016/09/14/bd3b5b4c18cda4d063cabc03443cb6a8.jpg)](https://www.steemimg.com/image/1SCWB)\n[![4d16cb792150dbd9c7cca2e9eea45f9d.jpg](https://www.steemimg.com/images/2016/09/14/4d16cb792150dbd9c7cca2e9eea45f9d.jpg)](https://www.steemimg.com/image/1S62K)\n[![25943765543ef057543db7f2d5b65e28.jpg](https://www.steemimg.com/images/2016/09/14/25943765543ef057543db7f2d5b65e28.jpg)](https://www.steemimg.com/image/1SwCI)\n[![a1d1fc9af366abae551a9b443ac0441f.jpg](https://www.steemimg.com/images/2016/09/14/a1d1fc9af366abae551a9b443ac0441f.jpg)](https://www.steemimg.com/image/1Sq3h)", - "category": "steemfest", - "children": 17, - "created": "2016-09-14T14:02:39", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://www.steemimg.com/images/2016/09/14/b99cea99b79d334be4815a56a64ff4f1.png", - "https://www.steemimg.com/images/2016/09/14/3a7db045b911ea8785a1e9c37c7e75a7.jpg", - "https://www.steemimg.com/images/2016/09/14/9a8268f34903dbcf5fbe06559ce7bfc6.png", - "https://www.steemimg.com/images/2016/09/14/8f8de740d802a0bf228bd833657b1f26.jpg", - "https://www.steemimg.com/images/2016/09/14/a317ccbeec3112a5d60f6f2afdf8255a.jpg", - "https://www.steemimg.com/images/2016/09/14/bd3b5b4c18cda4d063cabc03443cb6a8.jpg", - "https://www.steemimg.com/images/2016/09/14/4d16cb792150dbd9c7cca2e9eea45f9d.jpg", - "https://www.steemimg.com/images/2016/09/14/25943765543ef057543db7f2d5b65e28.jpg", - "https://www.steemimg.com/images/2016/09/14/a1d1fc9af366abae551a9b443ac0441f.jpg" - ], - "links": [ - "https://www.steemimg.com/image/1SL5m", - "https://www.steemimg.com/image/1V8e6", - "https://www.steemimg.com/image/1SnTu", - "https://www.steemimg.com/image/1SPji", - "https://www.steemimg.com/image/1SCWB", - "https://www.steemimg.com/image/1S62K", - "https://www.steemimg.com/image/1SwCI", - "https://www.steemimg.com/image/1Sq3h" - ], - "tags": [ - "steemfest", - "design", - "poster", - "amsterdam" - ], - "users": [ - "roelandp", - "steemfest" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 169985783269298, - "payout": 1618.329, - "payout_at": "2016-09-21T14:02:39", - "pending_payout_value": "1618.329 HBD", - "percent_hbd": 10000, - "permlink": "steemfest-follow-up-poster-designs-sbd-rewards-will-donated-to-the-project", - "post_id": 1243377, - "promoted": "0.000 HBD", - "replies": [], "stats": { - "flag_weight": 0.0, - "gray": false, "hide": false, - "total_votes": 386 + "gray": false, + "total_votes": 386, + "flag_weight": 0.0 }, - "title": "[Steemfest] Follow up - Poster designs! SBD rewards will donated to the project!", - "updated": "2016-09-14T14:02:39", - "url": "/steemfest/@cass/steemfest-follow-up-poster-designs-sbd-rewards-will-donated-to-the-project" + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/steemfest/@cass/steemfest-follow-up-poster-designs-sbd-rewards-will-donated-to-the-project", + "blacklists": [] }, { - "active_votes": [ - { - "rshares": "30948708908726", - "voter": "val-a" - }, - { - "rshares": "15292900000000", - "voter": "val-b" - }, - { - "rshares": "1534352192855", - "voter": "joseph" - }, - { - "rshares": "652034182902", - "voter": "masteryoda" - }, - { - "rshares": "8927024295", - "voter": "idol" - }, - { - "rshares": "2637269453488", - "voter": "donkeypong" - }, - { - "rshares": "816386307308", - "voter": "steemrollin" - }, - { - "rshares": "4941856440", - "voter": "sakr" - }, - { - "rshares": "140357414085", - "voter": "chris4210" - }, - { - "rshares": "1536548017", - "voter": "jocelyn" - }, - { - "rshares": "83530339170", - "voter": "acidsun" - }, - { - "rshares": "1196485708874", - "voter": "gavvet" - }, - { - "rshares": "59931939963", - "voter": "eeks" - }, - { - "rshares": "6122594947", - "voter": "fernando-sanz" - }, - { - "rshares": "584270995256", - "voter": "nanzo-scoop" - }, - { - "rshares": "177415501233", - "voter": "mummyimperfect" - }, - { - "rshares": "106634401121", - "voter": "asch" - }, - { - "rshares": "603741881611", - "voter": "kevinwong" - }, - { - "rshares": "1061259321", - "voter": "murh" - }, - { - "rshares": "3187850436", - "voter": "cryptofunk" - }, - { - "rshares": "2003304335", - "voter": "error" - }, - { - "rshares": "962089879337", - "voter": "cyber" - }, - { - "rshares": "50884297723", - "voter": "ak2020" - }, - { - "rshares": "61300613738", - "voter": "justtryme90" - }, - { - "rshares": "410517349", - "voter": "applecrisp" - }, - { - "rshares": "35693164103", - "voter": "altoz" - }, - { - "rshares": "820589638514", - "voter": "anwenbaumeister" - }, - { - "rshares": "5950595929", - "voter": "mark-waser" - }, - { - "rshares": "118349796563", - "voter": "geoffrey" - }, - { - "rshares": "192325266448", - "voter": "kimziv" - }, - { - "rshares": "77083924707", - "voter": "emily-cook" - }, - { - "rshares": "3283440404", - "voter": "orly" - }, - { - "rshares": "2834957075", - "voter": "steem1653" - }, - { - "rshares": "124961861", - "voter": "cynetyc" - }, - { - "rshares": "5357326058", - "voter": "thegoodguy" - }, - { - "rshares": "4209522316", - "voter": "karen13" - }, - { - "rshares": "251366150295", - "voter": "nabilov" - }, - { - "rshares": "8401059269", - "voter": "noodhoog" - }, - { - "rshares": "455246290726", - "voter": "knozaki2015" - }, - { - "rshares": "7166494256", - "voter": "lichtblick" - }, - { - "rshares": "33739090409", - "voter": "creemej" - }, - { - "rshares": "5726411049", - "voter": "btcbtcbtc20155" - }, - { - "rshares": "163324531946", - "voter": "blueorgy" - }, - { - "rshares": "4195248338", - "voter": "poseidon" - }, - { - "rshares": "3435918746", - "voter": "simon.braki.love" - }, - { - "rshares": "268137172703", - "voter": "liberosist" - }, - { - "rshares": "4128504280", - "voter": "birdie" - }, - { - "rshares": "5609578664", - "voter": "sharker" - }, - { - "rshares": "204618259005", - "voter": "jl777" - }, - { - "rshares": "1773036384", - "voter": "yarly" - }, - { - "rshares": "267188192", - "voter": "yarly2" - }, - { - "rshares": "267587944", - "voter": "yarly3" - }, - { - "rshares": "154579129", - "voter": "yarly4" - }, - { - "rshares": "155451862", - "voter": "yarly5" - }, - { - "rshares": "88607961", - "voter": "yarly7" - }, - { - "rshares": "11031796651", - "voter": "moon32walker" - }, - { - "rshares": "258619590", - "voter": "sergey44" - }, - { - "rshares": "17267341753", - "voter": "proto" - }, - { - "rshares": "31599342155", - "voter": "sisterholics" - }, - { - "rshares": "428868451", - "voter": "yarly10" - }, - { - "rshares": "229507420", - "voter": "yarly11" - }, - { - "rshares": "80241480", - "voter": "yarly12" - }, - { - "rshares": "146224042", - "voter": "steemster1" - }, - { - "rshares": "5878023046", - "voter": "mahekg" - }, - { - "rshares": "8734150854", - "voter": "taker" - }, - { - "rshares": "6521104126", - "voter": "nekromarinist" - }, - { - "rshares": "10553169212", - "voter": "theprophet0" - }, - { - "rshares": "57873464", - "voter": "sharon" - }, - { - "rshares": "58971492", - "voter": "lillianjones" - }, - { - "rshares": "1117443990130", - "voter": "laonie" - }, - { - "rshares": "4257390614", - "voter": "twinner" - }, - { - "rshares": "4414425121", - "voter": "timcliff" - }, - { - "rshares": "38640926181", - "voter": "myfirst" - }, - { - "rshares": "233306274805", - "voter": "somebody" - }, - { - "rshares": "8723132526", - "voter": "flysaga" - }, - { - "rshares": "1667759072", - "voter": "gmurph" - }, - { - "rshares": "51539167746", - "voter": "midnightoil" - }, - { - "rshares": "4190377366", - "voter": "ullikume" - }, - { - "rshares": "128906992414", - "voter": "xiaohui" - }, - { - "rshares": "21112616587", - "voter": "jphamer1" - }, - { - "rshares": "6306539895", - "voter": "elfkitchen" - }, - { - "rshares": "102434307703", - "voter": "joele" - }, - { - "rshares": "15549176040", - "voter": "randyclemens" - }, - { - "rshares": "4030108065", - "voter": "xiaokongcom" - }, - { - "rshares": "59437351", - "voter": "msjennifer" - }, - { - "rshares": "54654502", - "voter": "ciao" - }, - { - "rshares": "52985539", - "voter": "steemo" - }, - { - "rshares": "8123975227", - "voter": "xianjun" - }, - { - "rshares": "52848854", - "voter": "steema" - }, - { - "rshares": "69662169", - "voter": "confucius" - }, - { - "rshares": "11292536945", - "voter": "borran" - }, - { - "rshares": "53661976", - "voter": "jarvis" - }, - { - "rshares": "546765304", - "voter": "microluck" - }, - { - "rshares": "75676352", - "voter": "razberrijam" - }, - { - "rshares": "53106127", - "voter": "fortuner" - }, - { - "rshares": "84942400", - "voter": "pompe72" - }, - { - "rshares": "8114632832", - "voter": "lemouth" - }, - { - "rshares": "10344891579", - "voter": "gvargas123" - }, - { - "rshares": "51877132", - "voter": "johnbyrd" - }, - { - "rshares": "50682252", - "voter": "thomasaustin" - }, - { - "rshares": "51859074", - "voter": "thermor" - }, - { - "rshares": "50691211", - "voter": "ficholl" - }, - { - "rshares": "51852278", - "voter": "widell" - }, - { - "rshares": "404286448", - "voter": "steevc" - }, - { - "rshares": "3635091595", - "voter": "movievertigo" - }, - { - "rshares": "51481279", - "voter": "revelbrooks" - }, - { - "rshares": "1573489537", - "voter": "cehuneke" - }, - { - "rshares": "2982676167", - "voter": "netaterra" - }, - { - "rshares": "23137850346", - "voter": "andrewawerdna" - }, - { - "rshares": "5831957227", - "voter": "trev" - }, - { - "rshares": "8773942171", - "voter": "craigwilliamz" - }, - { - "rshares": "51505575275", - "voter": "mandibil" - }, - { - "rshares": "32462674824", - "voter": "daut44" - }, - { - "rshares": "50416427", - "voter": "curpose" - }, - { - "rshares": "3597236649", - "voter": "curving" - }, - { - "rshares": "61596105", - "voter": "uri-bruck" - }, - { - "rshares": "112983030208", - "voter": "shenanigator" - }, - { - "rshares": "10005063213", - "voter": "quinneaker" - }, - { - "rshares": "7626813355", - "voter": "einsteinpotsdam" - }, - { - "rshares": "4747321980", - "voter": "richardcrill" - }, - { - "rshares": "2205784762", - "voter": "jeremyfromwi" - }, - { - "rshares": "50588612", - "voter": "troich" - }, - { - "rshares": "1661534801", - "voter": "davidjkelley" - }, - { - "rshares": "50593879", - "voter": "crion" - }, - { - "rshares": "178419224", - "voter": "greatness" - }, - { - "rshares": "50271139", - "voter": "hitherise" - }, - { - "rshares": "50262756", - "voter": "wiss" - }, - { - "rshares": "54249219602", - "voter": "sponge-bob" - }, - { - "rshares": "15571056039", - "voter": "digital-wisdom" - }, - { - "rshares": "3365396535", - "voter": "getonthetrain" - }, - { - "rshares": "3710959443", - "voter": "ethical-ai" - }, - { - "rshares": "51033798", - "voter": "stroully" - }, - { - "rshares": "6831361820", - "voter": "jwaser" - }, - { - "rshares": "468106735", - "voter": "tfeldman" - }, - { - "rshares": "50712038", - "voter": "thadm" - }, - { - "rshares": "50710305", - "voter": "prof" - }, - { - "rshares": "1597514180", - "voter": "ionescur" - }, - { - "rshares": "50065875", - "voter": "bane" - }, - { - "rshares": "50059754", - "voter": "vive" - }, - { - "rshares": "50054445", - "voter": "coad" - }, - { - "rshares": "2675506788", - "voter": "bwaser" - }, - { - "rshares": "7645490859", - "voter": "renzoarg" - }, - { - "rshares": "50840303", - "voter": "sofa" - }, - { - "rshares": "53990613", - "voter": "roadhog" - }, - { - "rshares": "52794249", - "voter": "doggnostic" - }, - { - "rshares": "52521499", - "voter": "jenny-talls" - }, - { - "rshares": "8199670899", - "voter": "mariandavp" - }, - { - "rshares": "55344422883", - "voter": "brains" - }, - { - "rshares": "53415391", - "voter": "post-successful" - }, - { - "rshares": "5866415576", - "voter": "burnin" - }, - { - "rshares": "271439221", - "voter": "anomaly" - }, - { - "rshares": "2401297947", - "voter": "ellepdub" - }, - { - "rshares": "4116636581", - "voter": "michelle.gent" - }, - { - "rshares": "12115638535", - "voter": "herpetologyguy" - }, - { - "rshares": "4817004213", - "voter": "morgan.waser" - }, - { - "rshares": "50228382", - "voter": "dragonice" - }, - { - "rshares": "1288421610", - "voter": "aksinya" - }, - { - "rshares": "1921231770", - "voter": "bapparabi" - }, - { - "rshares": "50487909", - "voter": "opticalillusions" - }, - { - "rshares": "3689852156", - "voter": "strong-ai" - }, - { - "rshares": "505556200", - "voter": "grisha-danunaher" - }, - { - "rshares": "71207873", - "voter": "igtes" - }, - { - "rshares": "50277354380", - "voter": "curie" - }, - { - "rshares": "851767121", - "voter": "dikanevroman" - }, - { - "rshares": "141679752", - "voter": "buffett" - }, - { - "rshares": "453506109", - "voter": "witchcraftblog" - }, - { - "rshares": "157799009", - "voter": "photorealistic" - }, - { - "rshares": "160880639", - "voter": "illusions" - }, - { - "rshares": "6920933761", - "voter": "dresden" - }, - { - "rshares": "160845765", - "voter": "caseyneistat" - }, - { - "rshares": "692395145", - "voter": "ysa" - }, - { - "rshares": "159984914", - "voter": "correct" - }, - { - "rshares": "159973989", - "voter": "capcom" - }, - { - "rshares": "159963865", - "voter": "sledgehammer" - }, - { - "rshares": "159950870", - "voter": "haribo" - }, - { - "rshares": "159531007", - "voter": "benetton" - }, - { - "rshares": "156194471", - "voter": "stimmt" - }, - { - "rshares": "159143891", - "voter": "reef" - }, - { - "rshares": "158632601", - "voter": "cream" - }, - { - "rshares": "891891710", - "voter": "reddust" - }, - { - "rshares": "336222066", - "voter": "aldentan" - }, - { - "rshares": "191981449", - "voter": "techslut" - } - ], - "author": "curie", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "
https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg
\n\n## Introduction\n[Project Curie](https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors) is a community project run by several Steemit authors. Its mission is to help reward content creators who are posting great original content, yet who have not yet become established. In the short time since Curie began, our writers group has partnered with @nextgencrypto and other whale accounts to bring rewards to these deserving authors. *Writers, artists, chefs, photographers, videographers, and many others have been recognized by these rewards.*\n\nEach day, the members of our Project will publish this list of the posts that Project Curie has chosen to reward recently. We hope that this list will provide more positive exposure to the authors we have selected. Also, it is an effort for us to be more transparent about which posts are being rewarded. We hope that you will consider following not only this @curie account, but also many of the authors whose work is featured here each day. **Please consider adding your comments on these posts also!**\n\nProject Curie's daily curation lists will now be called \"The Daily Curie\". We hope you like the name! Future editions of The Daily Curie will [feature our new logo](https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement). For the latest on Project Curie, do check out our [Month #1 update](https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016). \n\n----------------------\n\n## Today's Brief Analysis\n\nToday's list polls all posts curated between 17:00 14/09 UTC and 17:00 15/09 UTC. Project Curie voted on a total of **103 posts** by 99 unique authors. **SBD 3,832** has been generated for authors thus far, at an average of SBD 37 per post. \n\n----------------------\n| Author | Post | Payout |\n| --------- | ---------- | --------- |\n| [@faddat](https://steemit.com/@faddat) | [[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!](https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed) | 616.681 SBD |\n| [@rampant](https://steemit.com/@rampant) | [Steemit Daily Drawing Tutorial - Gesture drawings (plus tool)](https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool) | 215.310 SBD |\n| [@shenanigator](https://steemit.com/@shenanigator) | [Doing the Right Thing Will Get You Fired. What Do You Do?](https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do) | 205.664 SBD |\n| [@penguinpablo](https://steemit.com/@penguinpablo) | [How to Carve an Apple Leaf](https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf) | 196.419 SBD |\n| [@nathanjtaylor](https://steemit.com/@nathanjtaylor) | [Fire And Grace Art Painting And Poetry](https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry) | 189.043 SBD |\n| [@lily-da-vine](https://steemit.com/@lily-da-vine) | [Going Bananas in Acapulco](https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco) | 158.416 SBD |\n| [@budgetbucketlist](https://steemit.com/@budgetbucketlist) | [A 1-week plunge into Mexico City's madness! Art adventures, Frida-seeking and unfiltered exhaust fumes...](https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes) | 151.033 SBD |\n| [@benjiberigan](https://steemit.com/@benjiberigan) | [Anarchist Architecture, part 5: The cruelty of architectural codes and regulations.](https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations) | 132.427 SBD |\n| [@ausbitbank](https://steemit.com/@ausbitbank) | [The time my town flooded, the fragility of the food supply and lessons learned (Original photos)](https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos) | 125.877 SBD |\n| [@emily-cook](https://steemit.com/@emily-cook) | [THE ISLE OF MAN FILM FESTIVAL 2016 -A week of parties, red carpets and a lot of hard work!](https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work) | 121.336 SBD |\n| [@team-leibniz](https://steemit.com/@team-leibniz) | [Week 1 NFL Daily Fantasy Football Results - How my Bayesian Inspired Lineups Fared (+$84.00)](https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00) | 119.473 SBD |\n| [@ionescur](https://steemit.com/@ionescur) | [Urban dreams of freedom: back to the countryside, back to the land](https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land) | 110.564 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [New traditionl painting - \"The Battle\" - Steps of work](https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work) | 105.622 SBD |\n| [@juliac](https://steemit.com/@juliac) | [One of The Best Portraits That I've Ever Created: Einstein. What Do You Think?](https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think) | 103.781 SBD |\n| [@luzcypher](https://steemit.com/@luzcypher) | [Cover Crops Can Grow Food Organically With No Fertilizers, No Pesticides, No Herbicides And No Chemicals](https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals) | 100.117 SBD |\n| [@akareyon](https://steemit.com/@akareyon) | [I find your lack of argument disturbing](https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing) | 98.525 SBD |\n| [@curving](https://steemit.com/@curving) | [The Ephemeral Cairn Gardens Of the Austin Greenbelt - A Photo Journal and Meditation](https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation) | 96.834 SBD |\n| [@aleksandraz](https://steemit.com/@aleksandraz) | [Incredible Science - Brainbow Technology](https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology) | 89.777 SBD |\n| [@skapaneas](https://steemit.com/@skapaneas) | [IBD Crohn desease and Ulceritive collitis. what are they, self diagnose, self treat and more.](https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more) | 85.958 SBD |\n| [@gargon](https://steemit.com/@gargon) | [Proyecto Cervantes (13 - 15 Sept 2016): Compensaci\u00f3n y reconocimiento para escritores de habla hispana / Bringing rewards and recognition to spanish writers (Vol. III)](https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and) | 83.725 SBD |\n| [@iamwne](https://steemit.com/@iamwne) | [Blade Runner Inspired Digital Set - The Dark Market - Beauty Pass](https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass) | 83.869 SBD |\n| [@stormblaze](https://steemit.com/@stormblaze) | [Where Do Deleted Files Go?](https://steemit.com/technology/@stormblaze/where-do-deleted-files-go) | 81.221 SBD |\n| [@yanarnst](https://steemit.com/@yanarnst) | [Steemit Food Art lesson 2 ''Salad with chicken liver and pine nuts''](https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts) | 78.034 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Myths in the Sky: Ursa Major and Ursa Minor](https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor) | 72.174 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Brain preservation: an ambulance to the future](https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future) | 72.082 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Vivisecting the Stargazing Tribe: Visual Observers and Screen Scanners](https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners) | 71.421 SBD |\n| [@cristi](https://steemit.com/@cristi) | [Radical Metabolism - No Food and Water for 8 Months](https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months) | 69.559 SBD |\n| [@stranger27](https://steemit.com/@stranger27) | [Fibonacci sequence and Golden Ratio: magic numbers of Nature](https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature) | 66.258 SBD |\n| [@nekromarinist](https://steemit.com/@nekromarinist) | [Let's talk a little bit about phobias today!](https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today) | 61.776 SBD |\n| [@richman](https://steemit.com/@richman) | [If you want to lose a friend, lend him money (My life story)](https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story) | 58.193 SBD |\n| [@maceytomlin](https://steemit.com/@maceytomlin) | [What Exactly is Ayahuasca? How Should You Prepare for a Ceremony?](https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony) | 58.197 SBD |\n| [@nili](https://steemit.com/@nili) | [Smart Life (part 2) - Resolving the Godel's paradox on the blockchain as a solution for a decentralized trusted protocol](https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol) | 55.575 SBD |\n| [@optimistic-crone](https://steemit.com/@optimistic-crone) | [PROBIOTICS FOR LIFE!!! SUPER SIMPLE FERMENTED VEGETABLE 'KIM CHEE' RECIPE](https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe) | 54.909 SBD |\n| [@anarchyhasnogods](https://steemit.com/@anarchyhasnogods) | [Learning one dimensional motion using graphs- physics for beginners - part one](https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one) | 53.295 SBD |\n| [@yostopia](https://steemit.com/@yostopia) | [Beginner's mind, creative mind... the making of a Vimeo Staff Pick.](https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick) | 51.222 SBD |\n| [@reneenouveau](https://steemit.com/@reneenouveau) | [My response to Paul Steyn's myopic article \"Mr. Environmentalist\" shockingly published by National Geographic in Sept 2015.](https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015) | 49.433 SBD |\n| [@king3071](https://steemit.com/@king3071) | [MY DREAM DESTINATION - SWITZERLAND](https://steemit.com/travel/@king3071/my-dream-destination-switzerland) | 49.816 SBD |\n| [@kolin.evans](https://steemit.com/@kolin.evans) | [Something a little more substantial for you to think about - the 'IS' / 'WAS' CPT (Continuous Probable Time-lines.)](https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines) | 47.288 SBD |\n| [@fenglosophy](https://steemit.com/@fenglosophy) | [Does the language you speak influence how you think?](https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think) | 44.070 SBD |\n| [@mandibil](https://steemit.com/@mandibil) | [SAVAGE [Gorm Just, Denmark 2009] - movie review by Mandibil](https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil) | 44.621 SBD |\n| [@therajmahal](https://steemit.com/@therajmahal) | [Making the Impossible... Possible](https://steemit.com/science/@therajmahal/making-the-impossible-possible) | 44.765 SBD |\n| [@carlitashaw](https://steemit.com/@carlitashaw) | [The World's Worst Oil Spills, Ramifications & Amazing Alternative Solutions.](https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions) | 44.986 SBD |\n| [@renzoarg](https://steemit.com/@renzoarg) | [Skip a pill - Antibiotics](https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics) | 43.918 SBD |\n| [@rachelsvparry](https://steemit.com/@rachelsvparry) | [Under the Sea (again, but better this time)](https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time) | 43.436 SBD |\n| [@royalmacro](https://steemit.com/@royalmacro) | [lonely tree [An Original Abstract Art]](https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art) | 42.826 SBD |\n| [@stephmckenzie](https://steemit.com/@stephmckenzie) | [The Power of Choice--A Magnificent Key to True Personal Freedom](https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone) | 42.441 SBD |\n| [@alwayzgame](https://steemit.com/@alwayzgame) | [10 simple steps to ruin your child's life](https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life) | 42.475 SBD |\n| [@nonlinearone](https://steemit.com/@nonlinearone) | [Can Hemingway Improve Your Writing?](https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing) | 42.669 SBD |\n| [@kafkanarchy84](https://steemit.com/@kafkanarchy84) | [\"Johnny B. Goode\" Guitar Lesson and Intro to Theory, Vol. II](https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii) | 41.326 SBD |\n| [@feline1991](https://steemit.com/@feline1991) | [A Steemit Original - A Lifetime of Seeking Happiness - Chapter 2 - Part 2](https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2) | 41.931 SBD |\n| [@geke](https://steemit.com/@geke) | [The Banker and the Bulova - an original poem (Steemit flash-writing challenge)](https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge) | 41.497 SBD |\n| [@lscottphotos](https://steemit.com/@lscottphotos) | [LSCOTTPHOTOS Welcome to my family :) Thank you steemers <3 (Original Photos)](https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos) | 40.201 SBD |\n| [@pinkisland](https://steemit.com/@pinkisland) | [My Philosophy of Education](https://steemit.com/writing/@pinkisland/my-philosophy-of-education) | 40.978 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cinco](https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco) | 39.708 SBD |\n| [@luisucv34](https://steemit.com/@luisucv34) | [Venezuela: The lack of opportunities (English edition)](https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition) | 39.783 SBD |\n| [@beowulfoflegend](https://steemit.com/@beowulfoflegend) | [Silvanus and Empire, an Original Novel (Chapter Twenty)](https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty) | 39.543 SBD |\n| [@mariandavp](https://steemit.com/@mariandavp) | [From zero to hero - abstract office art by @mariandavp](https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp) | 39.529 SBD |\n| [@nasimbabu](https://steemit.com/@nasimbabu) | [The technology that defends us from potentially deadly diseases](https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases) | 39.620 SBD |\n| [@royaltiffany](https://steemit.com/@royaltiffany) | [Steemit B'Day Movie Review Contest Update!](https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update) | 37.706 SBD |\n| [@travelista](https://steemit.com/@travelista) | [An Adventure in Isla Esp\u00edritu Santo!](https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo) | 37.218 SBD |\n| [@jpiper20](https://steemit.com/@jpiper20) | [We Meet At Night -- An Original Story (Part 4)](https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4) | 37.319 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new painting - \"Dexter\" - Modern Impressionism](https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism) | 36.937 SBD |\n| [@krystle](https://steemit.com/@krystle) | [Keltorin's Flora and Fauna of Note - Firikwea - Valcanne's Guide to Keltorin](https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin) | 36.972 SBD |\n| [@cryptoiskey](https://steemit.com/@cryptoiskey) | [Workout from home on the cheap! - 12th September #Ultimate workout companion for your kids!](https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids) | 36.115 SBD |\n| [@getonthetrain](https://steemit.com/@getonthetrain) | [Top 10 Grisly Medieval Torture Methods](https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods) | 34.093 SBD |\n| [@ansharphoto](https://steemit.com/@ansharphoto) | [Roman Forum in the Morning, Rome](https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome) | 33.328 SBD |\n| [@aboundlessworld](https://steemit.com/@aboundlessworld) | [Introducing The Steemit Stories Podcast!](https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast) | 33.728 SBD |\n| [@thornybastard](https://steemit.com/@thornybastard) | [Chapter 10: A Call from the Forest\u2014\u6765\u81ea\u68ee\u6797\u7684\u547c\u5524](https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest) | 32.465 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Installing Bitshares / graphene from source on Mac OS X Yosemite (10.5.5)](https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5) | 32.348 SBD |\n| [@dumar022](https://steemit.com/@dumar022) | [Workshop lesson 6: Wrench: You don't wanna mess with this](https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this) | 32.155 SBD |\n| [@lapilipinas](https://steemit.com/@lapilipinas) | [Light from distant stars](https://steemit.com/science/@lapilipinas/light-from-distant-stars) | 32.778 SBD |\n| [@williambanks](https://steemit.com/@williambanks) | [Towards A Better Tomorrow : Part 1 - There but for grace!](https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace) | 31.434 SBD |\n| [@driv3n](https://steemit.com/@driv3n) | [How to Solve the Rubik's Cube like a boss - Part 2](https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2) | 31.858 SBD |\n| [@timbot606](https://steemit.com/@timbot606) | [Growing up in Appalachia](https://steemit.com/life/@timbot606/growing-up-in-appalachia) | 31.548 SBD |\n| [@themagus](https://steemit.com/@themagus) | [A less privileged white growing up in South Africa in the 1970's - part 2](https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2) | 31.099 SBD |\n| [@echoesinthemind](https://steemit.com/@echoesinthemind) | [Hanging Upside Down / DO NOT Try At Home](https://steemit.com/life/@echoesinthemind/hanging-upside-down) | 31.736 SBD |\n| [@ysa](https://steemit.com/@ysa) | [My pictures from traveling to Estes Park, Colorado](https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado) | 31.981 SBD |\n| [@aksinya](https://steemit.com/@aksinya) | [Our Trip to Wonderful, Scary and Unforgettable Kenya. Original Photos and Video](https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video) | 31.882 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cuatro](https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro) | 31.992 SBD |\n| [@successfully00](https://steemit.com/@successfully00) | [Knowing The Math - Mental Tricks - Multiplication Part 1](https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1) | 31.037 SBD |\n| [@linzo](https://steemit.com/@linzo) | [A Life Fantasy (Original Poem)](https://steemit.com/poem/@linzo/a-life-fantasy-original-poem) | 30.964 SBD |\n| [@hilarski](https://steemit.com/@hilarski) | [Panama Critters.](https://steemit.com/panama/@hilarski/panama-critters) | 28.729 SBD |\n| [@sulev](https://steemit.com/@sulev) | [Photography #11 - Pictures from my Garden: Bees, Lizards and other (part 2)](https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2) | 27.947 SBD |\n| [@steemswede](https://steemit.com/@steemswede) | [[BEER REVIEW] Thomas Hardy's Ale](https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale) | 27.183 SBD |\n| [@marius19](https://steemit.com/@marius19) | [Set of paper coffee cups. Origami](https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami) | 26.439 SBD |\n| [@poeticsnake](https://steemit.com/@poeticsnake) | [Autumn is coming Doodle style! ( Tutorial with step by step drawings)](https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings) | 26.547 SBD |\n| [@kiddarko](https://steemit.com/@kiddarko) | [Peep Life a Story By KidDarko (with tattoo illistrations and video)](https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video) | 26.853 SBD |\n| [@shieha](https://steemit.com/@shieha) | [The Hardest Computer Game of All Time - Robot Odyssey - Part 2](https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2) | 26.372 SBD |\n| [@ayim](https://steemit.com/@ayim) | [Fixing Posture - Part 4: Neck](https://steemit.com/life/@ayim/fixing-posture-part-4-neck) | 26.142 SBD |\n| [@hitmeasap](https://steemit.com/@hitmeasap) | [I am Batman's Robin or Skywalkers R2-D2. - I've always been the co-pilot. Always been the second choice.](https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice) | 25.747 SBD |\n| [@peskov](https://steemit.com/@peskov) | [Antonikha. Part 2 (featuring Vasily Peskov as author)](https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author) | 25.173 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [Advice from an angry dude: Breathe and interrupt your thoughts](https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts) | 25.162 SBD |\n| [@beginningtoend](https://steemit.com/@beginningtoend) | [Poetry, art and a little home spun philosophy.](https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy) | 25.708 SBD |\n| [@kaykunoichi](https://steemit.com/@kaykunoichi) | [Suicide Note - Audio (Written & performed by myself)](https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself) | 25.523 SBD |\n| [@booky](https://steemit.com/@booky) | [Boosting Leadership Skills = Healthier Happier You and Your Workmates](https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates) | 24.083 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [Do you Know the Difference Between RIGHT & WRONG?](https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong) | 24.516 SBD |\n| [@ekaterina4ka](https://steemit.com/@ekaterina4ka) | [We Knit Patterns by the Spokes. Post 2. \u0412\u044f\u0436\u0435\u043c \u0443\u0437\u043e\u0440\u044b \u0441\u043f\u0438\u0446\u0430\u043c\u0438. \u041f\u043e\u0441\u0442 2.](https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2) | 24.793 SBD |\n| [@scaredycatguide](https://steemit.com/@scaredycatguide) | [Real Talk - Vol 9. - Welcome To Dogmerica](https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica) | 24.207 SBD |\n| [@amy-goodrich](https://steemit.com/@amy-goodrich) | [Pineapple Mojito Green Smoothie](https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie) | 24.126 SBD |\n| [@scott.stevens](https://steemit.com/@scott.stevens) | [Awareness of Bitcoin is Now More Important Than Awareness of Geoengineering](https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering) | 24.875 SBD |\n| [@witchcraftblog](https://steemit.com/@witchcraftblog) | [My trip to Italy. Pisa.](https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa) | 24.265 SBD |\n| [@ibringawareness](https://steemit.com/@ibringawareness) | [\"Why I Got Stiffed\" Guy's Waiter Blog chapter 5](https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5) | 24.224 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new illustration - Batman vs Superman - Modern Impressionism by kimal73](https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73) | 23.617 SBD |\n| [@leylar](https://steemit.com/@leylar) | [Seeds are great travelers ~ Own work](https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work) | 23.166 SBD |\n| [@ocrdu](https://steemit.com/@ocrdu) | [The pods that go \"pop\"](https://steemit.com/photography/@ocrdu/the-pods-that-go-pop) | 23.530 SBD |\n| [@rusla](https://steemit.com/@rusla) | [Japan. Part8.](https://steemit.com/travel/@rusla/japan-part8) | 23.209 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [Puppy Charcoal Original Pencil Drawing](https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing) | 23.879 SBD |\n| [@borishaifa](https://steemit.com/@borishaifa) | [To Write Or Not To Wirte? \u041f\u0438\u0441\u0430\u0442\u044c \u0438\u043b\u0438 \u043d\u0435 \u043f\u0438\u0441\u0430\u0442\u044c?](https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat) | 23.730 SBD |\n| [@eveningstar92](https://steemit.com/@eveningstar92) | [Shit Happens, Move On-NSFW- Evening Star Art](https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art) | 23.092 SBD |\n| [@elewarne](https://steemit.com/@elewarne) | [Mixed Media](https://steemit.com/mixedmedia/@elewarne/mixed-media) | 23.059 SBD |\n| [@shredlord](https://steemit.com/@shredlord) | [Sunrise](https://steemit.com/art/@shredlord/sunrise) | 23.318 SBD |\n| [@sherlockcupid](https://steemit.com/@sherlockcupid) | [Let's Talk: Fears (Part One)](https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one) | 23.720 SBD |\n| [@annesaya](https://steemit.com/@annesaya) | [Our Guiding Star, a poem (A tribute to writers)](https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers) | 23.384 SBD |\n| [@fitmama](https://steemit.com/@fitmama) | [Why Do I Bother....](https://steemit.com/life/@fitmama/why-do-i-bother) | 23.451 SBD |\n| [@ezzy](https://steemit.com/@ezzy) | [The Bionic Experiment - Part 1 (My Original Short Stories)](https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories) | 23.480 SBD |\n| [@kingarbinv](https://steemit.com/@kingarbinv) | [Adventures in Nemaland - Part 8 (Video) + My best Pokemon catch so far.](https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far) | 23.292 SBD |\n| [@soulsistashakti](https://steemit.com/@soulsistashakti) | [How to Detect and Deflect Gaslighting from a Narcissist](https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist) | 22.018 SBD |\n| [@puffin](https://steemit.com/@puffin) | [Tragical Impoverishment - Society's Dirt (Original Poem)](https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem) | 22.621 SBD |\n| [@cehuneke](https://steemit.com/@cehuneke) | [The Sugar Scandal: Corrupted Science in the Debate of Fat vs. Sugar and Coronary Heart Disease](https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease) | 22.821 SBD |\n| [@tanata](https://steemit.com/@tanata) | [Little Black Dress involving](https://steemit.com/fashion/@tanata/little-black-dress-involving) | 22.237 SBD |\n| [@steemwriter](https://steemit.com/@steemwriter) | [YouTube Demonetization: A Step Towards Censorship?](https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship) | 22.297 SBD |\n| [@michelle.gent](https://steemit.com/@michelle.gent) | [Dusty - one of my characters](https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters) | 22.659 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [A Gift-Original Rose Drawing](https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing) | 22.249 SBD |\n| [@runridefly](https://steemit.com/@runridefly) | [Minnow's Life - @runridefly original cartoon \"minnowsunite Whale sighting\" minnows and a whale](https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale) | 22.836 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [[SHORT STORY] The Cult of Personality - Part One](https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one) | 22.552 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Look at the Flower Chicory: a Useful and Beautiful Flower ... my Favorite Photos of Chicory](https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory) | 22.795 SBD |\n| [@victoriart](https://steemit.com/@victoriart) | [Hazelnut Mood](https://steemit.com/art/@victoriart/hazelnut-mood) | 22.443 SBD |\n| [@heroic15397](https://steemit.com/@heroic15397) | [Amazing Birds in the Greater Montreal area](https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area) | 22.987 SBD |\n| [@smartercars](https://steemit.com/@smartercars) | [Reviewing the Volkswagen Touareg ~ Smarter Car Reviews](https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews) | 22.975 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [Blues Jam & Techniques [9-14-2016]](https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016) | 22.415 SBD |\n| [@matthew.raymer](https://steemit.com/@matthew.raymer) | [Life Stories](https://steemit.com/psychology/@matthew.raymer/life-stories) | 22.733 SBD |\n| [@positivesteem](https://steemit.com/@positivesteem) | [Common Sense Versus Degrees: The Man Who Has One Hundred Degrees](https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees) | 22.941 SBD |\n| [@d3nv3r](https://steemit.com/@d3nv3r) | [Cloud Mining - The Struggle is Real](https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real) | 22.266 SBD |\n| [@adubi](https://steemit.com/@adubi) | [Healing Food Plan: The Ultimate Cheat Sheet](https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet) | 22.947 SBD |\n| [@alitas](https://steemit.com/@alitas) | [(spanish) Cazuela de Calamar con Papas Rejilla](https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla) | 22.240 SBD |\n| [@mazi](https://steemit.com/@mazi) | [I Can See Clearly Now .... Platanus occidentalis](https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis) | 22.784 SBD |\n| [@mikemacintire](https://steemit.com/@mikemacintire) | [A Red Like No Other - My work](https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work) | 22.289 SBD |\n| [@altzero](https://steemit.com/@altzero) | [Im\u00e1genes de una vida (2)](https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2) | 21.555 SBD |\n| [@birdie](https://steemit.com/@birdie) | [Clouds That Demand Attention (Original Photos)](https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos) | 21.397 SBD |\n| [@michaelstobiersk](https://steemit.com/@michaelstobiersk) | [An Original Painting by Michael Stobierski](https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski) | 21.367 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Meditation Experience Can Be Really Scary](https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary) | 21.583 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [The Price Is Right Theme Music Breakdown](https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown) | 21.937 SBD |\n| [@karisa](https://steemit.com/@karisa) | [Very tasty and delicious curd cookies specially for Steemit . Part 4](https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4) | 21.940 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Borovoye (Burabai) - Pearl of Kazakhstan: The Incredible Journey (Story of my Husband)](https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband) | 20.616 SBD |\n| [@burnin](https://steemit.com/@burnin) | [Exploring the Off-Limits Areas of the Largest Cruise Ship In the World - Part 2](https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2) | 20.298 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Eyes Of Wisdom](https://steemit.com/art/@reddust/eyes-of-wisdom) | 20.051 SBD |\n| [@levycore](https://steemit.com/@levycore) | [Hot Chocolate Art - Trying Draw Faces](https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces) | 20.233 SBD |\n| [@awesomenyl](https://steemit.com/@awesomenyl) | [Sunflower Paper Tutorial](https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial) | 20.040 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [The epic and awesome guide to writing articles like a true artist that people want to read and share! [Edited for Steemit today]](https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today) | 20.192 SBD |\n| [@naquoya](https://steemit.com/@naquoya) | [[ORIGINAL FICTION] Bad Trip part two: The Gamemaster](https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster) | 20.041 SBD |\n| [@moon32walker](https://steemit.com/@moon32walker) | [Top 10 Game Development Studios](https://steemit.com/gaming/@moon32walker/top-10-game-development-studios) | 20.468 SBD |\n| [@gustavopasquini](https://steemit.com/@gustavopasquini) | [Polenta with Ragu Meat Dry](https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry) | 20.436 SBD |\n| [@benadapt](https://steemit.com/@benadapt) | [Capturing the Milky Way \u2014 A Photographer\u2019s Biggest Challenge](https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge) | 20.477 SBD |\n| [@altzero](https://steemit.com/@altzero) | [\u00bfQue es la nueva economia?](https://steemit.com/spanish/@altzero/que-es-la-nueva-economia) | 20.037 SBD |\n| [@por500bolos](https://steemit.com/@por500bolos) | [Uncovering The Most Transcendental & Biggest Secret In The Human Life. \u00bfSkeptical? I will challenge you to prove otherwise!!](https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise) | 20.894 SBD |\n| [@zonpower](https://steemit.com/@zonpower) | [This is a place (An original Poem)](https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem) | 20.869 SBD |\n| [@katharsisdrill](https://steemit.com/@katharsisdrill) | [The rune-stones of Jelling, and a new realisation.](https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation) | 19.761 SBD |\n| [@glezeddy](https://steemit.com/@glezeddy) | [MEZCLA DE TEQUILA PARA DAR EL \"GRITO\" (M\u00c9XICO)](https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico) | 15.682 SBD |\n| [@onetree](https://steemit.com/@onetree) | [South African Slang - Enter Those Who Dare!](https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare) | 33.017 SBD |\n| [@verbal-d](https://steemit.com/@verbal-d) | [Melodious Music Memoirs # 2: Impact](https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact) | 30.372 SBD |\n| [@wanderingagorist](https://steemit.com/@wanderingagorist) | [Foraging Wild Rose Hips for Tea and Eating](https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating) | 29.228 SBD |\n| [@knablinz](https://steemit.com/@knablinz) | [Hand-Made Collage Art By Knablinz ( Donuts & Coffee )](https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee) | 35.939 SBD |\n\n---------------------------\n
Note: All author rewards from this post will be used to fund Project Curie.
Join us in #curie on Steemit.chat and follow us @curie!
", - "category": "curie", - "children": 10, - "created": "2016-09-15T17:53:48", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg" - ], - "links": [ - "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", - "https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement", - "https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", - "https://steemit.com/@faddat", - "https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed", - "https://steemit.com/@rampant", - "https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool", - "https://steemit.com/@shenanigator", - "https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do", - "https://steemit.com/@penguinpablo", - "https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf", - "https://steemit.com/@nathanjtaylor", - "https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry", - "https://steemit.com/@lily-da-vine", - "https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco", - "https://steemit.com/@budgetbucketlist", - "https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes", - "https://steemit.com/@benjiberigan", - "https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations", - "https://steemit.com/@ausbitbank", - "https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos", - "https://steemit.com/@emily-cook", - "https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work", - "https://steemit.com/@team-leibniz", - "https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00", - "https://steemit.com/@ionescur", - "https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land", - "https://steemit.com/@kimal73", - "https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work", - "https://steemit.com/@juliac", - "https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think", - "https://steemit.com/@luzcypher", - "https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals", - "https://steemit.com/@akareyon", - "https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing", - "https://steemit.com/@curving", - "https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation", - "https://steemit.com/@aleksandraz", - "https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology", - "https://steemit.com/@skapaneas", - "https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more", - "https://steemit.com/@gargon", - "https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", - "https://steemit.com/@iamwne", - "https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass", - "https://steemit.com/@stormblaze", - "https://steemit.com/technology/@stormblaze/where-do-deleted-files-go", - "https://steemit.com/@yanarnst", - "https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts", - "https://steemit.com/@senseye", - "https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor", - "https://steemit.com/@crasch", - "https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future", - "https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners", - "https://steemit.com/@cristi", - "https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months", - "https://steemit.com/@stranger27", - "https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature", - "https://steemit.com/@nekromarinist", - "https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today", - "https://steemit.com/@richman", - "https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story", - "https://steemit.com/@maceytomlin", - "https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony", - "https://steemit.com/@nili", - "https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol", - "https://steemit.com/@optimistic-crone", - "https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe", - "https://steemit.com/@anarchyhasnogods", - "https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one", - "https://steemit.com/@yostopia", - "https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick", - "https://steemit.com/@reneenouveau", - "https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015", - "https://steemit.com/@king3071", - "https://steemit.com/travel/@king3071/my-dream-destination-switzerland", - "https://steemit.com/@kolin.evans", - "https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines", - "https://steemit.com/@fenglosophy", - "https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think", - "https://steemit.com/@mandibil", - "https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil", - "https://steemit.com/@therajmahal", - "https://steemit.com/science/@therajmahal/making-the-impossible-possible", - "https://steemit.com/@carlitashaw", - "https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions", - "https://steemit.com/@renzoarg", - "https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics", - "https://steemit.com/@rachelsvparry", - "https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time", - "https://steemit.com/@royalmacro", - "https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art", - "https://steemit.com/@stephmckenzie", - "https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone", - "https://steemit.com/@alwayzgame", - "https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life", - "https://steemit.com/@nonlinearone", - "https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing", - "https://steemit.com/@kafkanarchy84", - "https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii", - "https://steemit.com/@feline1991", - "https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2", - "https://steemit.com/@geke", - "https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge", - "https://steemit.com/@lscottphotos", - "https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos", - "https://steemit.com/@pinkisland", - "https://steemit.com/writing/@pinkisland/my-philosophy-of-education", - "https://steemit.com/@jgcastrillo19", - "https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco", - "https://steemit.com/@luisucv34", - "https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition", - "https://steemit.com/@beowulfoflegend", - "https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty", - "https://steemit.com/@mariandavp", - "https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp", - "https://steemit.com/@nasimbabu", - "https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases", - "https://steemit.com/@royaltiffany", - "https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update", - "https://steemit.com/@travelista", - "https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo", - "https://steemit.com/@jpiper20", - "https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4", - "https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism", - "https://steemit.com/@krystle", - "https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin", - "https://steemit.com/@cryptoiskey", - "https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids", - "https://steemit.com/@getonthetrain", - "https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods", - "https://steemit.com/@ansharphoto", - "https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome", - "https://steemit.com/@aboundlessworld", - "https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast", - "https://steemit.com/@thornybastard", - "https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest", - "https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5", - "https://steemit.com/@dumar022", - "https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this", - "https://steemit.com/@lapilipinas", - "https://steemit.com/science/@lapilipinas/light-from-distant-stars", - "https://steemit.com/@williambanks", - "https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace", - "https://steemit.com/@driv3n", - "https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2", - "https://steemit.com/@timbot606", - "https://steemit.com/life/@timbot606/growing-up-in-appalachia", - "https://steemit.com/@themagus", - "https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2", - "https://steemit.com/@echoesinthemind", - "https://steemit.com/life/@echoesinthemind/hanging-upside-down", - "https://steemit.com/@ysa", - "https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado", - "https://steemit.com/@aksinya", - "https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video", - "https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro", - "https://steemit.com/@successfully00", - "https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1", - "https://steemit.com/@linzo", - "https://steemit.com/poem/@linzo/a-life-fantasy-original-poem", - "https://steemit.com/@hilarski", - "https://steemit.com/panama/@hilarski/panama-critters", - "https://steemit.com/@sulev", - "https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2", - "https://steemit.com/@steemswede", - "https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale", - "https://steemit.com/@marius19", - "https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami", - "https://steemit.com/@poeticsnake", - "https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings", - "https://steemit.com/@kiddarko", - "https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video", - "https://steemit.com/@shieha", - "https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2", - "https://steemit.com/@ayim", - "https://steemit.com/life/@ayim/fixing-posture-part-4-neck", - "https://steemit.com/@hitmeasap", - "https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice", - "https://steemit.com/@peskov", - "https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author", - "https://steemit.com/@aldentan", - "https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts", - "https://steemit.com/@beginningtoend", - "https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy", - "https://steemit.com/@kaykunoichi", - "https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself", - "https://steemit.com/@booky", - "https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates", - "https://steemit.com/@doubledex", - "https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong", - "https://steemit.com/@ekaterina4ka", - "https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2", - "https://steemit.com/@scaredycatguide", - "https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica", - "https://steemit.com/@amy-goodrich", - "https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie", - "https://steemit.com/@scott.stevens", - "https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering", - "https://steemit.com/@witchcraftblog", - "https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa", - "https://steemit.com/@ibringawareness", - "https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5", - "https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73", - "https://steemit.com/@leylar", - "https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work", - "https://steemit.com/@ocrdu", - "https://steemit.com/photography/@ocrdu/the-pods-that-go-pop", - "https://steemit.com/@rusla", - "https://steemit.com/travel/@rusla/japan-part8", - "https://steemit.com/@edgarsart", - "https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing", - "https://steemit.com/@borishaifa", - "https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat", - "https://steemit.com/@eveningstar92", - "https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art", - "https://steemit.com/@elewarne", - "https://steemit.com/mixedmedia/@elewarne/mixed-media", - "https://steemit.com/@shredlord", - "https://steemit.com/art/@shredlord/sunrise", - "https://steemit.com/@sherlockcupid", - "https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one", - "https://steemit.com/@annesaya", - "https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers", - "https://steemit.com/@fitmama", - "https://steemit.com/life/@fitmama/why-do-i-bother", - "https://steemit.com/@ezzy", - "https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories", - "https://steemit.com/@kingarbinv", - "https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far", - "https://steemit.com/@soulsistashakti", - "https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist", - "https://steemit.com/@puffin", - "https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem", - "https://steemit.com/@cehuneke", - "https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease", - "https://steemit.com/@tanata", - "https://steemit.com/fashion/@tanata/little-black-dress-involving", - "https://steemit.com/@steemwriter", - "https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship", - "https://steemit.com/@michelle.gent", - "https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters", - "https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing", - "https://steemit.com/@runridefly", - "https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale", - "https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one", - "https://steemit.com/@lyubovbar", - "https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory", - "https://steemit.com/@victoriart", - "https://steemit.com/art/@victoriart/hazelnut-mood", - "https://steemit.com/@heroic15397", - "https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area", - "https://steemit.com/@smartercars", - "https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews", - "https://steemit.com/@rubenalexander", - "https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016", - "https://steemit.com/@matthew.raymer", - "https://steemit.com/psychology/@matthew.raymer/life-stories", - "https://steemit.com/@positivesteem", - "https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees", - "https://steemit.com/@d3nv3r", - "https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real", - "https://steemit.com/@adubi", - "https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet", - "https://steemit.com/@alitas", - "https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla", - "https://steemit.com/@mazi", - "https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis", - "https://steemit.com/@mikemacintire", - "https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work", - "https://steemit.com/@altzero", - "https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2", - "https://steemit.com/@birdie", - "https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos", - "https://steemit.com/@michaelstobiersk", - "https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski", - "https://steemit.com/@reddust", - "https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary", - "https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown", - "https://steemit.com/@karisa", - "https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4", - "https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband", - "https://steemit.com/@burnin", - "https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2", - "https://steemit.com/art/@reddust/eyes-of-wisdom", - "https://steemit.com/@levycore", - "https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces", - "https://steemit.com/@awesomenyl", - "https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial", - "https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today", - "https://steemit.com/@naquoya", - "https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster", - "https://steemit.com/@moon32walker", - "https://steemit.com/gaming/@moon32walker/top-10-game-development-studios", - "https://steemit.com/@gustavopasquini", - "https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry", - "https://steemit.com/@benadapt", - "https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge", - "https://steemit.com/spanish/@altzero/que-es-la-nueva-economia", - "https://steemit.com/@por500bolos", - "https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise", - "https://steemit.com/@zonpower", - "https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem", - "https://steemit.com/@katharsisdrill", - "https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation", - "https://steemit.com/@glezeddy", - "https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico", - "https://steemit.com/@onetree", - "https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare", - "https://steemit.com/@verbal-d", - "https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact", - "https://steemit.com/@wanderingagorist", - "https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating", - "https://steemit.com/@knablinz", - "https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee" - ], - "tags": [ - "curie", - "minnows", - "hidden-gems", - "steemit", - "project-curie" - ], - "users": [ - "nextgencrypto", - "curie" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 61028272797290, - "payout": 217.281, - "payout_at": "2016-09-22T17:53:48", - "pending_payout_value": "217.281 HBD", - "percent_hbd": 10000, - "permlink": "the-daily-curie-14th-sept-15th-sept-2016", - "post_id": 1256756, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 182 - }, - "title": "The Daily Curie (14th Sept - 15th Sept 2016)", - "updated": "2016-09-15T17:53:48", - "url": "/curie/@curie/the-daily-curie-14th-sept-15th-sept-2016" - }, - { - "active_votes": [ - { - "rshares": "231809639013", - "voter": "anonymous" - }, - { - "rshares": "40859141206977", - "voter": "blocktrades" - }, - { - "rshares": "1912118346075", - "voter": "badassmother" - }, - { - "rshares": "7113882084470", - "voter": "xeldal" - }, - { - "rshares": "5763993012820", - "voter": "enki" - }, - { - "rshares": "1304415071462", - "voter": "rossco99" - }, - { - "rshares": "1577462576089", - "voter": "joseph" - }, - { - "rshares": "651993277150", - "voter": "masteryoda" - }, - { - "rshares": "446958795092", - "voter": "boatymcboatface" - }, - { - "rshares": "9168101098", - "voter": "idol" - }, - { - "rshares": "23383993964", - "voter": "wpalczynski" - }, - { - "rshares": "5044693986", - "voter": "sakr" - }, - { - "rshares": "1578030666", - "voter": "jocelyn" - }, - { - "rshares": "14818192446", - "voter": "gregory-f" - }, - { - "rshares": "74914583876", - "voter": "eeks" - }, - { - "rshares": "1007941175", - "voter": "fkn" - }, - { - "rshares": "8867224532", - "voter": "james-show" - }, - { - "rshares": "1324875721", - "voter": "elishagh1" - }, - { - "rshares": "7802860274", - "voter": "richman" - }, - { - "rshares": "24193131603", - "voter": "acidyo" - }, - { - "rshares": "313691550", - "voter": "coar" - }, - { - "rshares": "1061234978", - "voter": "murh" - }, - { - "rshares": "2057413439", - "voter": "error" - }, - { - "rshares": "59950022330", - "voter": "theshell" - }, - { - "rshares": "400880323222", - "voter": "taoteh1221" - }, - { - "rshares": "410517349", - "voter": "applecrisp" - }, - { - "rshares": "280737930617", - "voter": "trogdor" - }, - { - "rshares": "5287820211", - "voter": "tee-em" - }, - { - "rshares": "121383360964", - "voter": "geoffrey" - }, - { - "rshares": "10684548905", - "voter": "kimziv" - }, - { - "rshares": "30279968088", - "voter": "acassity" - }, - { - "rshares": "45145254362", - "voter": "venuspcs" - }, - { - "rshares": "7264907621", - "voter": "getssidetracked" - }, - { - "rshares": "1414199127", - "voter": "trees" - }, - { - "rshares": "197179742", - "voter": "strawhat" - }, - { - "rshares": "1159208963", - "voter": "steemswede" - }, - { - "rshares": "691425107", - "voter": "cryptochannel" - }, - { - "rshares": "894044199", - "voter": "endgame" - }, - { - "rshares": "4920266872", - "voter": "furion" - }, - { - "rshares": "2834923420", - "voter": "steem1653" - }, - { - "rshares": "25221166135", - "voter": "steemit-life" - }, - { - "rshares": "13516878845", - "voter": "sitaru" - }, - { - "rshares": "80777327", - "voter": "snowden" - }, - { - "rshares": "14167503457", - "voter": "aaseb" - }, - { - "rshares": "4209522316", - "voter": "karen13" - }, - { - "rshares": "243749878708", - "voter": "nabilov" - }, - { - "rshares": "677892916", - "voter": "luisucv34" - }, - { - "rshares": "34761252099", - "voter": "creemej" - }, - { - "rshares": "233065746", - "voter": "poseidon" - }, - { - "rshares": "82781233416", - "voter": "thylbom" - }, - { - "rshares": "32543319555", - "voter": "deanliu" - }, - { - "rshares": "5428442637", - "voter": "rainchen" - }, - { - "rshares": "204617448258", - "voter": "jl777" - }, - { - "rshares": "103514864", - "voter": "pokemon" - }, - { - "rshares": "817413671", - "voter": "positive" - }, - { - "rshares": "6361356981", - "voter": "chloetaylor" - }, - { - "rshares": "17267278949", - "voter": "proto" - }, - { - "rshares": "1805641835", - "voter": "sisterholics" - }, - { - "rshares": "61286903", - "voter": "reported" - }, - { - "rshares": "8734133724", - "voter": "taker" - }, - { - "rshares": "57607550", - "voter": "krushing" - }, - { - "rshares": "63852353198", - "voter": "laonie" - }, - { - "rshares": "24561889230", - "voter": "laoyao" - }, - { - "rshares": "1332427399", - "voter": "myfirst" - }, - { - "rshares": "12961212091", - "voter": "somebody" - }, - { - "rshares": "484610059", - "voter": "flysaga" - }, - { - "rshares": "2084691327", - "voter": "gmurph" - }, - { - "rshares": "513517114", - "voter": "minnowsunited" - }, - { - "rshares": "2863236010", - "voter": "midnightoil" - }, - { - "rshares": "56653113", - "voter": "whatyouganjado" - }, - { - "rshares": "3323984357", - "voter": "kurtbeil" - }, - { - "rshares": "7161280807", - "voter": "xiaohui" - }, - { - "rshares": "323406893", - "voter": "elfkitchen" - }, - { - "rshares": "5855543935", - "voter": "oflyhigh" - }, - { - "rshares": "63373184", - "voter": "makaveli" - }, - { - "rshares": "223891286", - "voter": "xiaokongcom" - }, - { - "rshares": "1780319109", - "voter": "future24" - }, - { - "rshares": "7709317035", - "voter": "thebotkiller" - }, - { - "rshares": "451324143", - "voter": "xianjun" - }, - { - "rshares": "647921440", - "voter": "herbertmueller" - }, - { - "rshares": "56109399", - "voter": "alexbones" - }, - { - "rshares": "2022625104", - "voter": "chinadaily" - }, - { - "rshares": "90172824082", - "voter": "serejandmyself" - }, - { - "rshares": "163783062", - "voter": "nang1" - }, - { - "rshares": "2982676167", - "voter": "netaterra" - }, - { - "rshares": "52319145", - "voter": "dobbydaba" - }, - { - "rshares": "22559404087", - "voter": "andrewawerdna" - }, - { - "rshares": "77466140", - "voter": "ozertayiz" - }, - { - "rshares": "4633082667", - "voter": "steemitpatina" - }, - { - "rshares": "55922029", - "voter": "salebored" - }, - { - "rshares": "2196862373", - "voter": "runridefly" - }, - { - "rshares": "115288806334", - "voter": "shenanigator" - }, - { - "rshares": "1709331623", - "voter": "funkywanderer" - }, - { - "rshares": "4594182561", - "voter": "richardcrill" - }, - { - "rshares": "79155262951", - "voter": "markrmorrisjr" - }, - { - "rshares": "55917888", - "voter": "bitdrone" - }, - { - "rshares": "55908853", - "voter": "sleepcult" - }, - { - "rshares": "27677639861", - "voter": "sponge-bob" - }, - { - "rshares": "12031039232", - "voter": "doitvoluntarily" - }, - { - "rshares": "67696453939", - "voter": "thecyclist" - }, - { - "rshares": "646493719", - "voter": "kev7000" - }, - { - "rshares": "55266473", - "voter": "analyzethis" - }, - { - "rshares": "27671309914", - "voter": "brains" - }, - { - "rshares": "5866415576", - "voter": "burnin" - }, - { - "rshares": "1352324852", - "voter": "bitcoinparadise" - }, - { - "rshares": "4235074146", - "voter": "funnyman" - }, - { - "rshares": "50193769", - "voter": "f1111111" - }, - { - "rshares": "339287005", - "voter": "anomaly" - }, - { - "rshares": "63405661", - "voter": "inarix03" - }, - { - "rshares": "98545946", - "voter": "ola1" - }, - { - "rshares": "4382226038", - "voter": "michelle.gent" - }, - { - "rshares": "66935282", - "voter": "mari5555na" - }, - { - "rshares": "31683945302", - "voter": "goldmatters" - }, - { - "rshares": "155180811", - "voter": "majes" - }, - { - "rshares": "71727340", - "voter": "dealzgal" - }, - { - "rshares": "68013381", - "voter": "storage" - }, - { - "rshares": "58460105", - "voter": "blackmarket" - }, - { - "rshares": "61530871", - "voter": "gifts" - }, - { - "rshares": "96643251", - "voter": "expat" - }, - { - "rshares": "129609202", - "voter": "toddemaher1" - } - ], - "author": "markrmorrisjr", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "## In this episode, Joshua Claiborne stands trial for violation of the First Law ##\n\n**\u201cWhoa, whoa, whoa!\u201d Phil screamed, \u201cWhat the hell dude?\u201d**\n\n*The Reaper crumpled to the floor, arms flailing as Joshua rode it to the ground. Finally, the hands found the catches at either side of the helmet and popped it off. A black, shaggy head of hair emerged.* \n\n***If you've missed episodes, [visit my blog](https://steemit.com/@markrmorrisjr) to catch up. Be sure to follow me for updates in your feed!***\n\n\u201cEmil?\u201d Stella said, \u201cMeet Joshua. Are you okay?\u201d\n\nEmil, the Reaper suit\u2019s operator laughed, \u201cYeah, I\u2019m fine, but that was awesome! Can you teach us that?\u201d\n\n\u201cMan! Now I have to rebuild this helmet,\u201d Phil held up a small remote. \u201cAll I had to do was push this button,\u201d he said, pressing it, as the suit powered down. \u201cWhat did you do?\u201d\n\n\u201cThe \u2018nerve\u2019 bundle that controls these things motor skills is on the very top of the skull, under a thin piece of sheet metal, puncture it, it collapses. You didn\u2019t know that?\u201d Joshua said. \n\n\u201cWell, it appears we may need you more than you need us,\u201d Stella said. \u201cSo, just say the word and we\u2019ll get you where you need to be. Meanwhile, my team will be working on your son\u2019s location.\u201d\n\nJoshua dropped the letter opener and walked to the stairs, \u201cFine, whatever you need to collect from my meeting, get it. Now, who\u2019s driving?\u201d With that, he walked up the stairs, he had no more time to waste. \n\n**The Mapleton courthouse sat on a hill in the center of the town, overlooking the area around for miles.** \n\n*Joshua insisted that the team Stella had sent stop 5 miles out and allow him to ride in on the electric trike alone, while they observed the meeting from a distance.* \n\nHe carried the tiny remote in his shirt pocket, a gift from Phil. \u201cThat\u2019s my only prototype, so don\u2019t lose it,\u201d he\u2019d said. \n\n![enter image description here](https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg)\n\nFrom the end of Main Street, looking up toward the courthouse, Joshua counted at least six reapers. He wondered how far the signal from the remote would travel. \n\nHe thought about pressing it now, disarming his enemy, then walking in, but he\u2019d still have to deal with the six drivers, if they managed to escape the suits. \n\nBesides, Stella seemed to think there was some secret they were going to give away, although Joshua couldn\u2019t imagine it. \n\n*He checked his watch, ten minutes until his scheduled time and while he knew better than to be late, he had no intention of giving the Consensus one more second than he had to.* \n\nThe trike spun it\u2019s tires on a patch of loose gravel as he started back up. He decided a quick approach was best. He charged up the hill, jumping the \u201cMayor\u2019s\u201d parking barrier and rolling up to the foot of the front stairs, he cranked the accelerator and the trike rose up on its back wheel, popping the two front wheels, over the bottom step. \n\nThe machine had more than enough power to climb the steps and Joshua skidded to a stop outside the courthouse door. He stopped and turned back toward the town, the six Reapers swarming toward him up the steps. He powered down, swung his leg up and over the bike and opened the door. \n\n**The Reapers followed him into the hall as he approached the court room.** \n\nThe Magistrate sat behind the judge\u2019s bench and Joshua couldn\u2019t help but smirk at the insult to the very concept of actual justice that this thing represented. \n\n\u201cJoshua Claiborne, appearing as requested,\u201d Joshua said, standing directly in front of the Magistrate. \n\n![enter image description here](https://s12.postimg.org/6h4lvyh7x/judge.jpg)\n\n> \u201cYes, Mr. Claiborne, have a seat,\u201d A woman\u2019s face, projected on the face shield of the Magistrate said.\n\n\u201cI\u2019d rather stand,\u201d he said. \n\n> \u201cSuit yourself, may we have the room, please?\u201d she said, looking toward the reapers that had entered the back doors of the courtroom.\n\nThey left quietly. \n\n> \u201cMr. Claiborne, you\u2019re charged with violation of the first law, in so\n> much as you have encouraged and joined in the activity of settling\n> outside of Consensus approved areas, acted outside of the legal\n> jurisdiction of the council and on more than one occasion, acted\n> against the best interest of Consensus, including attacking duly\n> authorized Magistrates in the course of their legally binding duties,\n> how do you plead?\u201d\n\n**The woman looked at Joshua, peering over a pair of short, square spectacles, like some sort of outdated stereotype.** \n\n\u201cNot guilty, by reason of illegitimacy of the currently established government and its ensigns. I am not, nor do I choose to become, subject to your law. I stand judged as innocent by natural law, insomuch as I have not caused harm to another human in aggression, damaged or stolen property, nor unnecessarily restricted the liberty of any other person. I recognize no other responsibility to my fellow man,\u201d Joshua said calmly. \n\n> \u201cBe that as it may, Mr. Claiborne, we are not here under the auspices of \u201cnatural law\u201d but rather, under the Council mandated authority of the Consensus and its Magisterial Ministry, of which I am a part and I assure you, you are subject to,\u201d\n\nThe woman intoned, her expression one of almost sheer boredom.\n\n> \u201cCourt finds the defendant guilty and remands the subject for immediate judicial murder.\u201d\n\nThe magistrate raised its arm and brought it down on the bench with a solid thud, that echoed through the court. Joshua felt his heart sink as the Reapers reentered the court and moved up to surround him. \n\n## Look for the upvote button below. If you liked the post, upvote and share! If you're not on Steemit yet, why not? You get free money for signing up! ##", - "category": "story", - "children": 2, - "created": "2016-09-15T16:54:06", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, + "post_id": 960067, + "author": "curie", + "permlink": "the-daily-curie-14th-sept-15th-sept-2016", + "category": "curie", + "title": "The Daily Curie (14th Sept - 15th Sept 2016)", + "body": "
https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg
\n\n## Introduction\n[Project Curie](https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors) is a community project run by several Steemit authors. Its mission is to help reward content creators who are posting great original content, yet who have not yet become established. In the short time since Curie began, our writers group has partnered with @nextgencrypto and other whale accounts to bring rewards to these deserving authors. *Writers, artists, chefs, photographers, videographers, and many others have been recognized by these rewards.*\n\nEach day, the members of our Project will publish this list of the posts that Project Curie has chosen to reward recently. We hope that this list will provide more positive exposure to the authors we have selected. Also, it is an effort for us to be more transparent about which posts are being rewarded. We hope that you will consider following not only this @curie account, but also many of the authors whose work is featured here each day. **Please consider adding your comments on these posts also!**\n\nProject Curie's daily curation lists will now be called \"The Daily Curie\". We hope you like the name! Future editions of The Daily Curie will [feature our new logo](https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement). For the latest on Project Curie, do check out our [Month #1 update](https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016). \n\n----------------------\n\n## Today's Brief Analysis\n\nToday's list polls all posts curated between 17:00 14/09 UTC and 17:00 15/09 UTC. Project Curie voted on a total of **103 posts** by 99 unique authors. **SBD 3,832** has been generated for authors thus far, at an average of SBD 37 per post. \n\n----------------------\n| Author | Post | Payout |\n| --------- | ---------- | --------- |\n| [@faddat](https://steemit.com/@faddat) | [[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!](https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed) | 616.681 SBD |\n| [@rampant](https://steemit.com/@rampant) | [Steemit Daily Drawing Tutorial - Gesture drawings (plus tool)](https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool) | 215.310 SBD |\n| [@shenanigator](https://steemit.com/@shenanigator) | [Doing the Right Thing Will Get You Fired. What Do You Do?](https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do) | 205.664 SBD |\n| [@penguinpablo](https://steemit.com/@penguinpablo) | [How to Carve an Apple Leaf](https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf) | 196.419 SBD |\n| [@nathanjtaylor](https://steemit.com/@nathanjtaylor) | [Fire And Grace Art Painting And Poetry](https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry) | 189.043 SBD |\n| [@lily-da-vine](https://steemit.com/@lily-da-vine) | [Going Bananas in Acapulco](https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco) | 158.416 SBD |\n| [@budgetbucketlist](https://steemit.com/@budgetbucketlist) | [A 1-week plunge into Mexico City's madness! Art adventures, Frida-seeking and unfiltered exhaust fumes...](https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes) | 151.033 SBD |\n| [@benjiberigan](https://steemit.com/@benjiberigan) | [Anarchist Architecture, part 5: The cruelty of architectural codes and regulations.](https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations) | 132.427 SBD |\n| [@ausbitbank](https://steemit.com/@ausbitbank) | [The time my town flooded, the fragility of the food supply and lessons learned (Original photos)](https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos) | 125.877 SBD |\n| [@emily-cook](https://steemit.com/@emily-cook) | [THE ISLE OF MAN FILM FESTIVAL 2016 -A week of parties, red carpets and a lot of hard work!](https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work) | 121.336 SBD |\n| [@team-leibniz](https://steemit.com/@team-leibniz) | [Week 1 NFL Daily Fantasy Football Results - How my Bayesian Inspired Lineups Fared (+$84.00)](https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00) | 119.473 SBD |\n| [@ionescur](https://steemit.com/@ionescur) | [Urban dreams of freedom: back to the countryside, back to the land](https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land) | 110.564 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [New traditionl painting - \"The Battle\" - Steps of work](https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work) | 105.622 SBD |\n| [@juliac](https://steemit.com/@juliac) | [One of The Best Portraits That I've Ever Created: Einstein. What Do You Think?](https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think) | 103.781 SBD |\n| [@luzcypher](https://steemit.com/@luzcypher) | [Cover Crops Can Grow Food Organically With No Fertilizers, No Pesticides, No Herbicides And No Chemicals](https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals) | 100.117 SBD |\n| [@akareyon](https://steemit.com/@akareyon) | [I find your lack of argument disturbing](https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing) | 98.525 SBD |\n| [@curving](https://steemit.com/@curving) | [The Ephemeral Cairn Gardens Of the Austin Greenbelt - A Photo Journal and Meditation](https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation) | 96.834 SBD |\n| [@aleksandraz](https://steemit.com/@aleksandraz) | [Incredible Science - Brainbow Technology](https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology) | 89.777 SBD |\n| [@skapaneas](https://steemit.com/@skapaneas) | [IBD Crohn desease and Ulceritive collitis. what are they, self diagnose, self treat and more.](https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more) | 85.958 SBD |\n| [@gargon](https://steemit.com/@gargon) | [Proyecto Cervantes (13 - 15 Sept 2016): Compensación y reconocimiento para escritores de habla hispana / Bringing rewards and recognition to spanish writers (Vol. III)](https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and) | 83.725 SBD |\n| [@iamwne](https://steemit.com/@iamwne) | [Blade Runner Inspired Digital Set - The Dark Market - Beauty Pass](https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass) | 83.869 SBD |\n| [@stormblaze](https://steemit.com/@stormblaze) | [Where Do Deleted Files Go?](https://steemit.com/technology/@stormblaze/where-do-deleted-files-go) | 81.221 SBD |\n| [@yanarnst](https://steemit.com/@yanarnst) | [Steemit Food Art lesson 2 ''Salad with chicken liver and pine nuts''](https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts) | 78.034 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Myths in the Sky: Ursa Major and Ursa Minor](https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor) | 72.174 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Brain preservation: an ambulance to the future](https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future) | 72.082 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Vivisecting the Stargazing Tribe: Visual Observers and Screen Scanners](https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners) | 71.421 SBD |\n| [@cristi](https://steemit.com/@cristi) | [Radical Metabolism - No Food and Water for 8 Months](https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months) | 69.559 SBD |\n| [@stranger27](https://steemit.com/@stranger27) | [Fibonacci sequence and Golden Ratio: magic numbers of Nature](https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature) | 66.258 SBD |\n| [@nekromarinist](https://steemit.com/@nekromarinist) | [Let's talk a little bit about phobias today!](https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today) | 61.776 SBD |\n| [@richman](https://steemit.com/@richman) | [If you want to lose a friend, lend him money (My life story)](https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story) | 58.193 SBD |\n| [@maceytomlin](https://steemit.com/@maceytomlin) | [What Exactly is Ayahuasca? How Should You Prepare for a Ceremony?](https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony) | 58.197 SBD |\n| [@nili](https://steemit.com/@nili) | [Smart Life (part 2) - Resolving the Godel's paradox on the blockchain as a solution for a decentralized trusted protocol](https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol) | 55.575 SBD |\n| [@optimistic-crone](https://steemit.com/@optimistic-crone) | [PROBIOTICS FOR LIFE!!! SUPER SIMPLE FERMENTED VEGETABLE 'KIM CHEE' RECIPE](https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe) | 54.909 SBD |\n| [@anarchyhasnogods](https://steemit.com/@anarchyhasnogods) | [Learning one dimensional motion using graphs- physics for beginners - part one](https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one) | 53.295 SBD |\n| [@yostopia](https://steemit.com/@yostopia) | [Beginner's mind, creative mind... the making of a Vimeo Staff Pick.](https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick) | 51.222 SBD |\n| [@reneenouveau](https://steemit.com/@reneenouveau) | [My response to Paul Steyn's myopic article \"Mr. Environmentalist\" shockingly published by National Geographic in Sept 2015.](https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015) | 49.433 SBD |\n| [@king3071](https://steemit.com/@king3071) | [MY DREAM DESTINATION - SWITZERLAND](https://steemit.com/travel/@king3071/my-dream-destination-switzerland) | 49.816 SBD |\n| [@kolin.evans](https://steemit.com/@kolin.evans) | [Something a little more substantial for you to think about - the 'IS' / 'WAS' CPT (Continuous Probable Time-lines.)](https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines) | 47.288 SBD |\n| [@fenglosophy](https://steemit.com/@fenglosophy) | [Does the language you speak influence how you think?](https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think) | 44.070 SBD |\n| [@mandibil](https://steemit.com/@mandibil) | [SAVAGE [Gorm Just, Denmark 2009] - movie review by Mandibil](https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil) | 44.621 SBD |\n| [@therajmahal](https://steemit.com/@therajmahal) | [Making the Impossible... Possible](https://steemit.com/science/@therajmahal/making-the-impossible-possible) | 44.765 SBD |\n| [@carlitashaw](https://steemit.com/@carlitashaw) | [The World's Worst Oil Spills, Ramifications & Amazing Alternative Solutions.](https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions) | 44.986 SBD |\n| [@renzoarg](https://steemit.com/@renzoarg) | [Skip a pill - Antibiotics](https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics) | 43.918 SBD |\n| [@rachelsvparry](https://steemit.com/@rachelsvparry) | [Under the Sea (again, but better this time)](https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time) | 43.436 SBD |\n| [@royalmacro](https://steemit.com/@royalmacro) | [lonely tree [An Original Abstract Art]](https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art) | 42.826 SBD |\n| [@stephmckenzie](https://steemit.com/@stephmckenzie) | [The Power of Choice--A Magnificent Key to True Personal Freedom](https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone) | 42.441 SBD |\n| [@alwayzgame](https://steemit.com/@alwayzgame) | [10 simple steps to ruin your child's life](https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life) | 42.475 SBD |\n| [@nonlinearone](https://steemit.com/@nonlinearone) | [Can Hemingway Improve Your Writing?](https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing) | 42.669 SBD |\n| [@kafkanarchy84](https://steemit.com/@kafkanarchy84) | [\"Johnny B. Goode\" Guitar Lesson and Intro to Theory, Vol. II](https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii) | 41.326 SBD |\n| [@feline1991](https://steemit.com/@feline1991) | [A Steemit Original - A Lifetime of Seeking Happiness - Chapter 2 - Part 2](https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2) | 41.931 SBD |\n| [@geke](https://steemit.com/@geke) | [The Banker and the Bulova - an original poem (Steemit flash-writing challenge)](https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge) | 41.497 SBD |\n| [@lscottphotos](https://steemit.com/@lscottphotos) | [LSCOTTPHOTOS Welcome to my family :) Thank you steemers <3 (Original Photos)](https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos) | 40.201 SBD |\n| [@pinkisland](https://steemit.com/@pinkisland) | [My Philosophy of Education](https://steemit.com/writing/@pinkisland/my-philosophy-of-education) | 40.978 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cinco](https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco) | 39.708 SBD |\n| [@luisucv34](https://steemit.com/@luisucv34) | [Venezuela: The lack of opportunities (English edition)](https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition) | 39.783 SBD |\n| [@beowulfoflegend](https://steemit.com/@beowulfoflegend) | [Silvanus and Empire, an Original Novel (Chapter Twenty)](https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty) | 39.543 SBD |\n| [@mariandavp](https://steemit.com/@mariandavp) | [From zero to hero - abstract office art by @mariandavp](https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp) | 39.529 SBD |\n| [@nasimbabu](https://steemit.com/@nasimbabu) | [The technology that defends us from potentially deadly diseases](https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases) | 39.620 SBD |\n| [@royaltiffany](https://steemit.com/@royaltiffany) | [Steemit B'Day Movie Review Contest Update!](https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update) | 37.706 SBD |\n| [@travelista](https://steemit.com/@travelista) | [An Adventure in Isla Espíritu Santo!](https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo) | 37.218 SBD |\n| [@jpiper20](https://steemit.com/@jpiper20) | [We Meet At Night -- An Original Story (Part 4)](https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4) | 37.319 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new painting - \"Dexter\" - Modern Impressionism](https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism) | 36.937 SBD |\n| [@krystle](https://steemit.com/@krystle) | [Keltorin's Flora and Fauna of Note - Firikwea - Valcanne's Guide to Keltorin](https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin) | 36.972 SBD |\n| [@cryptoiskey](https://steemit.com/@cryptoiskey) | [Workout from home on the cheap! - 12th September #Ultimate workout companion for your kids!](https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids) | 36.115 SBD |\n| [@getonthetrain](https://steemit.com/@getonthetrain) | [Top 10 Grisly Medieval Torture Methods](https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods) | 34.093 SBD |\n| [@ansharphoto](https://steemit.com/@ansharphoto) | [Roman Forum in the Morning, Rome](https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome) | 33.328 SBD |\n| [@aboundlessworld](https://steemit.com/@aboundlessworld) | [Introducing The Steemit Stories Podcast!](https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast) | 33.728 SBD |\n| [@thornybastard](https://steemit.com/@thornybastard) | [Chapter 10: A Call from the Forest—来自森林的呼唤](https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest) | 32.465 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Installing Bitshares / graphene from source on Mac OS X Yosemite (10.5.5)](https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5) | 32.348 SBD |\n| [@dumar022](https://steemit.com/@dumar022) | [Workshop lesson 6: Wrench: You don't wanna mess with this](https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this) | 32.155 SBD |\n| [@lapilipinas](https://steemit.com/@lapilipinas) | [Light from distant stars](https://steemit.com/science/@lapilipinas/light-from-distant-stars) | 32.778 SBD |\n| [@williambanks](https://steemit.com/@williambanks) | [Towards A Better Tomorrow : Part 1 - There but for grace!](https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace) | 31.434 SBD |\n| [@driv3n](https://steemit.com/@driv3n) | [How to Solve the Rubik's Cube like a boss - Part 2](https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2) | 31.858 SBD |\n| [@timbot606](https://steemit.com/@timbot606) | [Growing up in Appalachia](https://steemit.com/life/@timbot606/growing-up-in-appalachia) | 31.548 SBD |\n| [@themagus](https://steemit.com/@themagus) | [A less privileged white growing up in South Africa in the 1970's - part 2](https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2) | 31.099 SBD |\n| [@echoesinthemind](https://steemit.com/@echoesinthemind) | [Hanging Upside Down / DO NOT Try At Home](https://steemit.com/life/@echoesinthemind/hanging-upside-down) | 31.736 SBD |\n| [@ysa](https://steemit.com/@ysa) | [My pictures from traveling to Estes Park, Colorado](https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado) | 31.981 SBD |\n| [@aksinya](https://steemit.com/@aksinya) | [Our Trip to Wonderful, Scary and Unforgettable Kenya. Original Photos and Video](https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video) | 31.882 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cuatro](https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro) | 31.992 SBD |\n| [@successfully00](https://steemit.com/@successfully00) | [Knowing The Math - Mental Tricks - Multiplication Part 1](https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1) | 31.037 SBD |\n| [@linzo](https://steemit.com/@linzo) | [A Life Fantasy (Original Poem)](https://steemit.com/poem/@linzo/a-life-fantasy-original-poem) | 30.964 SBD |\n| [@hilarski](https://steemit.com/@hilarski) | [Panama Critters.](https://steemit.com/panama/@hilarski/panama-critters) | 28.729 SBD |\n| [@sulev](https://steemit.com/@sulev) | [Photography #11 - Pictures from my Garden: Bees, Lizards and other (part 2)](https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2) | 27.947 SBD |\n| [@steemswede](https://steemit.com/@steemswede) | [[BEER REVIEW] Thomas Hardy's Ale](https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale) | 27.183 SBD |\n| [@marius19](https://steemit.com/@marius19) | [Set of paper coffee cups. Origami](https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami) | 26.439 SBD |\n| [@poeticsnake](https://steemit.com/@poeticsnake) | [Autumn is coming Doodle style! ( Tutorial with step by step drawings)](https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings) | 26.547 SBD |\n| [@kiddarko](https://steemit.com/@kiddarko) | [Peep Life a Story By KidDarko (with tattoo illistrations and video)](https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video) | 26.853 SBD |\n| [@shieha](https://steemit.com/@shieha) | [The Hardest Computer Game of All Time - Robot Odyssey - Part 2](https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2) | 26.372 SBD |\n| [@ayim](https://steemit.com/@ayim) | [Fixing Posture - Part 4: Neck](https://steemit.com/life/@ayim/fixing-posture-part-4-neck) | 26.142 SBD |\n| [@hitmeasap](https://steemit.com/@hitmeasap) | [I am Batman's Robin or Skywalkers R2-D2. - I've always been the co-pilot. Always been the second choice.](https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice) | 25.747 SBD |\n| [@peskov](https://steemit.com/@peskov) | [Antonikha. Part 2 (featuring Vasily Peskov as author)](https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author) | 25.173 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [Advice from an angry dude: Breathe and interrupt your thoughts](https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts) | 25.162 SBD |\n| [@beginningtoend](https://steemit.com/@beginningtoend) | [Poetry, art and a little home spun philosophy.](https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy) | 25.708 SBD |\n| [@kaykunoichi](https://steemit.com/@kaykunoichi) | [Suicide Note - Audio (Written & performed by myself)](https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself) | 25.523 SBD |\n| [@booky](https://steemit.com/@booky) | [Boosting Leadership Skills = Healthier Happier You and Your Workmates](https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates) | 24.083 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [Do you Know the Difference Between RIGHT & WRONG?](https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong) | 24.516 SBD |\n| [@ekaterina4ka](https://steemit.com/@ekaterina4ka) | [We Knit Patterns by the Spokes. Post 2. Вяжем узоры спицами. Пост 2.](https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2) | 24.793 SBD |\n| [@scaredycatguide](https://steemit.com/@scaredycatguide) | [Real Talk - Vol 9. - Welcome To Dogmerica](https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica) | 24.207 SBD |\n| [@amy-goodrich](https://steemit.com/@amy-goodrich) | [Pineapple Mojito Green Smoothie](https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie) | 24.126 SBD |\n| [@scott.stevens](https://steemit.com/@scott.stevens) | [Awareness of Bitcoin is Now More Important Than Awareness of Geoengineering](https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering) | 24.875 SBD |\n| [@witchcraftblog](https://steemit.com/@witchcraftblog) | [My trip to Italy. Pisa.](https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa) | 24.265 SBD |\n| [@ibringawareness](https://steemit.com/@ibringawareness) | [\"Why I Got Stiffed\" Guy's Waiter Blog chapter 5](https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5) | 24.224 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new illustration - Batman vs Superman - Modern Impressionism by kimal73](https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73) | 23.617 SBD |\n| [@leylar](https://steemit.com/@leylar) | [Seeds are great travelers ~ Own work](https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work) | 23.166 SBD |\n| [@ocrdu](https://steemit.com/@ocrdu) | [The pods that go \"pop\"](https://steemit.com/photography/@ocrdu/the-pods-that-go-pop) | 23.530 SBD |\n| [@rusla](https://steemit.com/@rusla) | [Japan. Part8.](https://steemit.com/travel/@rusla/japan-part8) | 23.209 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [Puppy Charcoal Original Pencil Drawing](https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing) | 23.879 SBD |\n| [@borishaifa](https://steemit.com/@borishaifa) | [To Write Or Not To Wirte? Писать или не писать?](https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat) | 23.730 SBD |\n| [@eveningstar92](https://steemit.com/@eveningstar92) | [Shit Happens, Move On-NSFW- Evening Star Art](https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art) | 23.092 SBD |\n| [@elewarne](https://steemit.com/@elewarne) | [Mixed Media](https://steemit.com/mixedmedia/@elewarne/mixed-media) | 23.059 SBD |\n| [@shredlord](https://steemit.com/@shredlord) | [Sunrise](https://steemit.com/art/@shredlord/sunrise) | 23.318 SBD |\n| [@sherlockcupid](https://steemit.com/@sherlockcupid) | [Let's Talk: Fears (Part One)](https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one) | 23.720 SBD |\n| [@annesaya](https://steemit.com/@annesaya) | [Our Guiding Star, a poem (A tribute to writers)](https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers) | 23.384 SBD |\n| [@fitmama](https://steemit.com/@fitmama) | [Why Do I Bother....](https://steemit.com/life/@fitmama/why-do-i-bother) | 23.451 SBD |\n| [@ezzy](https://steemit.com/@ezzy) | [The Bionic Experiment - Part 1 (My Original Short Stories)](https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories) | 23.480 SBD |\n| [@kingarbinv](https://steemit.com/@kingarbinv) | [Adventures in Nemaland - Part 8 (Video) + My best Pokemon catch so far.](https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far) | 23.292 SBD |\n| [@soulsistashakti](https://steemit.com/@soulsistashakti) | [How to Detect and Deflect Gaslighting from a Narcissist](https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist) | 22.018 SBD |\n| [@puffin](https://steemit.com/@puffin) | [Tragical Impoverishment - Society's Dirt (Original Poem)](https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem) | 22.621 SBD |\n| [@cehuneke](https://steemit.com/@cehuneke) | [The Sugar Scandal: Corrupted Science in the Debate of Fat vs. Sugar and Coronary Heart Disease](https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease) | 22.821 SBD |\n| [@tanata](https://steemit.com/@tanata) | [Little Black Dress involving](https://steemit.com/fashion/@tanata/little-black-dress-involving) | 22.237 SBD |\n| [@steemwriter](https://steemit.com/@steemwriter) | [YouTube Demonetization: A Step Towards Censorship?](https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship) | 22.297 SBD |\n| [@michelle.gent](https://steemit.com/@michelle.gent) | [Dusty - one of my characters](https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters) | 22.659 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [A Gift-Original Rose Drawing](https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing) | 22.249 SBD |\n| [@runridefly](https://steemit.com/@runridefly) | [Minnow's Life - @runridefly original cartoon \"minnowsunite Whale sighting\" minnows and a whale](https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale) | 22.836 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [[SHORT STORY] The Cult of Personality - Part One](https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one) | 22.552 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Look at the Flower Chicory: a Useful and Beautiful Flower ... my Favorite Photos of Chicory](https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory) | 22.795 SBD |\n| [@victoriart](https://steemit.com/@victoriart) | [Hazelnut Mood](https://steemit.com/art/@victoriart/hazelnut-mood) | 22.443 SBD |\n| [@heroic15397](https://steemit.com/@heroic15397) | [Amazing Birds in the Greater Montreal area](https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area) | 22.987 SBD |\n| [@smartercars](https://steemit.com/@smartercars) | [Reviewing the Volkswagen Touareg ~ Smarter Car Reviews](https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews) | 22.975 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [Blues Jam & Techniques [9-14-2016]](https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016) | 22.415 SBD |\n| [@matthew.raymer](https://steemit.com/@matthew.raymer) | [Life Stories](https://steemit.com/psychology/@matthew.raymer/life-stories) | 22.733 SBD |\n| [@positivesteem](https://steemit.com/@positivesteem) | [Common Sense Versus Degrees: The Man Who Has One Hundred Degrees](https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees) | 22.941 SBD |\n| [@d3nv3r](https://steemit.com/@d3nv3r) | [Cloud Mining - The Struggle is Real](https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real) | 22.266 SBD |\n| [@adubi](https://steemit.com/@adubi) | [Healing Food Plan: The Ultimate Cheat Sheet](https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet) | 22.947 SBD |\n| [@alitas](https://steemit.com/@alitas) | [(spanish) Cazuela de Calamar con Papas Rejilla](https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla) | 22.240 SBD |\n| [@mazi](https://steemit.com/@mazi) | [I Can See Clearly Now .... Platanus occidentalis](https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis) | 22.784 SBD |\n| [@mikemacintire](https://steemit.com/@mikemacintire) | [A Red Like No Other - My work](https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work) | 22.289 SBD |\n| [@altzero](https://steemit.com/@altzero) | [Imágenes de una vida (2)](https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2) | 21.555 SBD |\n| [@birdie](https://steemit.com/@birdie) | [Clouds That Demand Attention (Original Photos)](https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos) | 21.397 SBD |\n| [@michaelstobiersk](https://steemit.com/@michaelstobiersk) | [An Original Painting by Michael Stobierski](https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski) | 21.367 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Meditation Experience Can Be Really Scary](https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary) | 21.583 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [The Price Is Right Theme Music Breakdown](https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown) | 21.937 SBD |\n| [@karisa](https://steemit.com/@karisa) | [Very tasty and delicious curd cookies specially for Steemit . Part 4](https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4) | 21.940 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Borovoye (Burabai) - Pearl of Kazakhstan: The Incredible Journey (Story of my Husband)](https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband) | 20.616 SBD |\n| [@burnin](https://steemit.com/@burnin) | [Exploring the Off-Limits Areas of the Largest Cruise Ship In the World - Part 2](https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2) | 20.298 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Eyes Of Wisdom](https://steemit.com/art/@reddust/eyes-of-wisdom) | 20.051 SBD |\n| [@levycore](https://steemit.com/@levycore) | [Hot Chocolate Art - Trying Draw Faces](https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces) | 20.233 SBD |\n| [@awesomenyl](https://steemit.com/@awesomenyl) | [Sunflower Paper Tutorial](https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial) | 20.040 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [The epic and awesome guide to writing articles like a true artist that people want to read and share! [Edited for Steemit today]](https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today) | 20.192 SBD |\n| [@naquoya](https://steemit.com/@naquoya) | [[ORIGINAL FICTION] Bad Trip part two: The Gamemaster](https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster) | 20.041 SBD |\n| [@moon32walker](https://steemit.com/@moon32walker) | [Top 10 Game Development Studios](https://steemit.com/gaming/@moon32walker/top-10-game-development-studios) | 20.468 SBD |\n| [@gustavopasquini](https://steemit.com/@gustavopasquini) | [Polenta with Ragu Meat Dry](https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry) | 20.436 SBD |\n| [@benadapt](https://steemit.com/@benadapt) | [Capturing the Milky Way — A Photographer’s Biggest Challenge](https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge) | 20.477 SBD |\n| [@altzero](https://steemit.com/@altzero) | [¿Que es la nueva economia?](https://steemit.com/spanish/@altzero/que-es-la-nueva-economia) | 20.037 SBD |\n| [@por500bolos](https://steemit.com/@por500bolos) | [Uncovering The Most Transcendental & Biggest Secret In The Human Life. ¿Skeptical? I will challenge you to prove otherwise!!](https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise) | 20.894 SBD |\n| [@zonpower](https://steemit.com/@zonpower) | [This is a place (An original Poem)](https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem) | 20.869 SBD |\n| [@katharsisdrill](https://steemit.com/@katharsisdrill) | [The rune-stones of Jelling, and a new realisation.](https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation) | 19.761 SBD |\n| [@glezeddy](https://steemit.com/@glezeddy) | [MEZCLA DE TEQUILA PARA DAR EL \"GRITO\" (MÉXICO)](https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico) | 15.682 SBD |\n| [@onetree](https://steemit.com/@onetree) | [South African Slang - Enter Those Who Dare!](https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare) | 33.017 SBD |\n| [@verbal-d](https://steemit.com/@verbal-d) | [Melodious Music Memoirs # 2: Impact](https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact) | 30.372 SBD |\n| [@wanderingagorist](https://steemit.com/@wanderingagorist) | [Foraging Wild Rose Hips for Tea and Eating](https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating) | 29.228 SBD |\n| [@knablinz](https://steemit.com/@knablinz) | [Hand-Made Collage Art By Knablinz ( Donuts & Coffee )](https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee) | 35.939 SBD |\n\n---------------------------\n
Note: All author rewards from this post will be used to fund Project Curie.
Join us in #curie on Steemit.chat and follow us @curie!
", "json_metadata": { + "tags": [ + "curie", + "minnows", + "hidden-gems", + "steemit", + "project-curie" + ], + "users": [ + "nextgencrypto", + "curie" + ], "image": [ - "https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg", - "https://s12.postimg.org/6h4lvyh7x/judge.jpg" + "https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg" ], "links": [ - "https://steemit.com/@markrmorrisjr" - ], - "tags": [ - "story", - "fiction", - "anarchy", - "life", - "minnowsunited" + "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", + "https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement", + "https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", + "https://steemit.com/@faddat", + "https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed", + "https://steemit.com/@rampant", + "https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool", + "https://steemit.com/@shenanigator", + "https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do", + "https://steemit.com/@penguinpablo", + "https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf", + "https://steemit.com/@nathanjtaylor", + "https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry", + "https://steemit.com/@lily-da-vine", + "https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco", + "https://steemit.com/@budgetbucketlist", + "https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes", + "https://steemit.com/@benjiberigan", + "https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations", + "https://steemit.com/@ausbitbank", + "https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos", + "https://steemit.com/@emily-cook", + "https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work", + "https://steemit.com/@team-leibniz", + "https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00", + "https://steemit.com/@ionescur", + "https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land", + "https://steemit.com/@kimal73", + "https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work", + "https://steemit.com/@juliac", + "https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think", + "https://steemit.com/@luzcypher", + "https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals", + "https://steemit.com/@akareyon", + "https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing", + "https://steemit.com/@curving", + "https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation", + "https://steemit.com/@aleksandraz", + "https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology", + "https://steemit.com/@skapaneas", + "https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more", + "https://steemit.com/@gargon", + "https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", + "https://steemit.com/@iamwne", + "https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass", + "https://steemit.com/@stormblaze", + "https://steemit.com/technology/@stormblaze/where-do-deleted-files-go", + "https://steemit.com/@yanarnst", + "https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts", + "https://steemit.com/@senseye", + "https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor", + "https://steemit.com/@crasch", + "https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future", + "https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners", + "https://steemit.com/@cristi", + "https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months", + "https://steemit.com/@stranger27", + "https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature", + "https://steemit.com/@nekromarinist", + "https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today", + "https://steemit.com/@richman", + "https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story", + "https://steemit.com/@maceytomlin", + "https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony", + "https://steemit.com/@nili", + "https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol", + "https://steemit.com/@optimistic-crone", + "https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe", + "https://steemit.com/@anarchyhasnogods", + "https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one", + "https://steemit.com/@yostopia", + "https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick", + "https://steemit.com/@reneenouveau", + "https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015", + "https://steemit.com/@king3071", + "https://steemit.com/travel/@king3071/my-dream-destination-switzerland", + "https://steemit.com/@kolin.evans", + "https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines", + "https://steemit.com/@fenglosophy", + "https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think", + "https://steemit.com/@mandibil", + "https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil", + "https://steemit.com/@therajmahal", + "https://steemit.com/science/@therajmahal/making-the-impossible-possible", + "https://steemit.com/@carlitashaw", + "https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions", + "https://steemit.com/@renzoarg", + "https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics", + "https://steemit.com/@rachelsvparry", + "https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time", + "https://steemit.com/@royalmacro", + "https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art", + "https://steemit.com/@stephmckenzie", + "https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone", + "https://steemit.com/@alwayzgame", + "https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life", + "https://steemit.com/@nonlinearone", + "https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing", + "https://steemit.com/@kafkanarchy84", + "https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii", + "https://steemit.com/@feline1991", + "https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2", + "https://steemit.com/@geke", + "https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge", + "https://steemit.com/@lscottphotos", + "https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos", + "https://steemit.com/@pinkisland", + "https://steemit.com/writing/@pinkisland/my-philosophy-of-education", + "https://steemit.com/@jgcastrillo19", + "https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco", + "https://steemit.com/@luisucv34", + "https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition", + "https://steemit.com/@beowulfoflegend", + "https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty", + "https://steemit.com/@mariandavp", + "https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp", + "https://steemit.com/@nasimbabu", + "https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases", + "https://steemit.com/@royaltiffany", + "https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update", + "https://steemit.com/@travelista", + "https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo", + "https://steemit.com/@jpiper20", + "https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4", + "https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism", + "https://steemit.com/@krystle", + "https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin", + "https://steemit.com/@cryptoiskey", + "https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids", + "https://steemit.com/@getonthetrain", + "https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods", + "https://steemit.com/@ansharphoto", + "https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome", + "https://steemit.com/@aboundlessworld", + "https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast", + "https://steemit.com/@thornybastard", + "https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest", + "https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5", + "https://steemit.com/@dumar022", + "https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this", + "https://steemit.com/@lapilipinas", + "https://steemit.com/science/@lapilipinas/light-from-distant-stars", + "https://steemit.com/@williambanks", + "https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace", + "https://steemit.com/@driv3n", + "https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2", + "https://steemit.com/@timbot606", + "https://steemit.com/life/@timbot606/growing-up-in-appalachia", + "https://steemit.com/@themagus", + "https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2", + "https://steemit.com/@echoesinthemind", + "https://steemit.com/life/@echoesinthemind/hanging-upside-down", + "https://steemit.com/@ysa", + "https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado", + "https://steemit.com/@aksinya", + "https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video", + "https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro", + "https://steemit.com/@successfully00", + "https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1", + "https://steemit.com/@linzo", + "https://steemit.com/poem/@linzo/a-life-fantasy-original-poem", + "https://steemit.com/@hilarski", + "https://steemit.com/panama/@hilarski/panama-critters", + "https://steemit.com/@sulev", + "https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2", + "https://steemit.com/@steemswede", + "https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale", + "https://steemit.com/@marius19", + "https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami", + "https://steemit.com/@poeticsnake", + "https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings", + "https://steemit.com/@kiddarko", + "https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video", + "https://steemit.com/@shieha", + "https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2", + "https://steemit.com/@ayim", + "https://steemit.com/life/@ayim/fixing-posture-part-4-neck", + "https://steemit.com/@hitmeasap", + "https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice", + "https://steemit.com/@peskov", + "https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author", + "https://steemit.com/@aldentan", + "https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts", + "https://steemit.com/@beginningtoend", + "https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy", + "https://steemit.com/@kaykunoichi", + "https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself", + "https://steemit.com/@booky", + "https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates", + "https://steemit.com/@doubledex", + "https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong", + "https://steemit.com/@ekaterina4ka", + "https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2", + "https://steemit.com/@scaredycatguide", + "https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica", + "https://steemit.com/@amy-goodrich", + "https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie", + "https://steemit.com/@scott.stevens", + "https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering", + "https://steemit.com/@witchcraftblog", + "https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa", + "https://steemit.com/@ibringawareness", + "https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5", + "https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73", + "https://steemit.com/@leylar", + "https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work", + "https://steemit.com/@ocrdu", + "https://steemit.com/photography/@ocrdu/the-pods-that-go-pop", + "https://steemit.com/@rusla", + "https://steemit.com/travel/@rusla/japan-part8", + "https://steemit.com/@edgarsart", + "https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing", + "https://steemit.com/@borishaifa", + "https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat", + "https://steemit.com/@eveningstar92", + "https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art", + "https://steemit.com/@elewarne", + "https://steemit.com/mixedmedia/@elewarne/mixed-media", + "https://steemit.com/@shredlord", + "https://steemit.com/art/@shredlord/sunrise", + "https://steemit.com/@sherlockcupid", + "https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one", + "https://steemit.com/@annesaya", + "https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers", + "https://steemit.com/@fitmama", + "https://steemit.com/life/@fitmama/why-do-i-bother", + "https://steemit.com/@ezzy", + "https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories", + "https://steemit.com/@kingarbinv", + "https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far", + "https://steemit.com/@soulsistashakti", + "https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist", + "https://steemit.com/@puffin", + "https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem", + "https://steemit.com/@cehuneke", + "https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease", + "https://steemit.com/@tanata", + "https://steemit.com/fashion/@tanata/little-black-dress-involving", + "https://steemit.com/@steemwriter", + "https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship", + "https://steemit.com/@michelle.gent", + "https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters", + "https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing", + "https://steemit.com/@runridefly", + "https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale", + "https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one", + "https://steemit.com/@lyubovbar", + "https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory", + "https://steemit.com/@victoriart", + "https://steemit.com/art/@victoriart/hazelnut-mood", + "https://steemit.com/@heroic15397", + "https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area", + "https://steemit.com/@smartercars", + "https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews", + "https://steemit.com/@rubenalexander", + "https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016", + "https://steemit.com/@matthew.raymer", + "https://steemit.com/psychology/@matthew.raymer/life-stories", + "https://steemit.com/@positivesteem", + "https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees", + "https://steemit.com/@d3nv3r", + "https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real", + "https://steemit.com/@adubi", + "https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet", + "https://steemit.com/@alitas", + "https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla", + "https://steemit.com/@mazi", + "https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis", + "https://steemit.com/@mikemacintire", + "https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work", + "https://steemit.com/@altzero", + "https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2", + "https://steemit.com/@birdie", + "https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos", + "https://steemit.com/@michaelstobiersk", + "https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski", + "https://steemit.com/@reddust", + "https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary", + "https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown", + "https://steemit.com/@karisa", + "https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4", + "https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband", + "https://steemit.com/@burnin", + "https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2", + "https://steemit.com/art/@reddust/eyes-of-wisdom", + "https://steemit.com/@levycore", + "https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces", + "https://steemit.com/@awesomenyl", + "https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial", + "https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today", + "https://steemit.com/@naquoya", + "https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster", + "https://steemit.com/@moon32walker", + "https://steemit.com/gaming/@moon32walker/top-10-game-development-studios", + "https://steemit.com/@gustavopasquini", + "https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry", + "https://steemit.com/@benadapt", + "https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge", + "https://steemit.com/spanish/@altzero/que-es-la-nueva-economia", + "https://steemit.com/@por500bolos", + "https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise", + "https://steemit.com/@zonpower", + "https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem", + "https://steemit.com/@katharsisdrill", + "https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation", + "https://steemit.com/@glezeddy", + "https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico", + "https://steemit.com/@onetree", + "https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare", + "https://steemit.com/@verbal-d", + "https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact", + "https://steemit.com/@wanderingagorist", + "https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating", + "https://steemit.com/@knablinz", + "https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee" ] }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 62355283653318, - "payout": 226.397, - "payout_at": "2016-09-22T16:54:06", - "pending_payout_value": "226.397 HBD", - "percent_hbd": 10000, - "permlink": "original-fiction-anarchist-s-almanac-episode-15", - "post_id": 1256087, + "created": "2016-09-15T17:53:48", + "updated": "2016-09-15T17:53:48", + "depth": 0, + "children": 10, + "net_rshares": 61028272797290, + "is_paidout": false, + "payout_at": "2016-09-16T18:14:08", + "payout": 218.554, + "pending_payout_value": "218.554 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", "promoted": "0.000 HBD", "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 120 - }, - "title": "Original Fiction: Anarchist's Almanac, Episode 15", - "updated": "2016-09-15T16:54:06", - "url": "/story/@markrmorrisjr/original-fiction-anarchist-s-almanac-episode-15" - }, - { "active_votes": [ { - "rshares": "504201493814", - "voter": "barrie" - }, - { - "rshares": "31621044834059", - "voter": "smooth" - }, - { - "rshares": "231803784363", - "voter": "anonymous" - }, - { - "rshares": "1992555050222", - "voter": "apple" - }, - { - "rshares": "1912040731624", - "voter": "badassmother" - }, - { - "rshares": "2053103615195", - "voter": "hr1" - }, - { - "rshares": "1304415071462", - "voter": "rossco99" - }, - { - "rshares": "2352777844031", - "voter": "wang" - }, - { - "rshares": "22390337604", - "voter": "jaewoocho" - }, - { - "rshares": "1576668025571", - "voter": "joseph" - }, - { - "rshares": "466113536214", - "voter": "recursive2" - }, - { - "rshares": "452820496964", - "voter": "recursive3" - }, - { - "rshares": "651951614915", - "voter": "masteryoda" - }, - { - "rshares": "3120381242465", - "voter": "recursive" - }, - { - "rshares": "91328598326", - "voter": "mrs.agsexplorer" - }, - { - "rshares": "6959198181", - "voter": "bingo-0" - }, - { - "rshares": "5939784887153", - "voter": "smooth.witness" - }, - { - "rshares": "446272257734", - "voter": "boatymcboatface" - }, - { - "rshares": "9167804100", - "voter": "idol" - }, - { - "rshares": "22448634206", - "voter": "wpalczynski" - }, - { - "rshares": "816380174873", - "voter": "steemrollin" - }, - { - "rshares": "5147541712", - "voter": "sakr" - }, - { - "rshares": "284355351943", - "voter": "chitty" - }, - { - "rshares": "34575031962", - "voter": "unosuke" - }, - { - "rshares": "481762857054", - "voter": "noaommerrr" - }, - { - "rshares": "1578007819", - "voter": "jocelyn" - }, - { - "rshares": "85270098112", - "voter": "acidsun" - }, - { - "rshares": "14692173218", - "voter": "gregory-f" - }, - { - "rshares": "9604795718", - "voter": "gregory60" - }, - { - "rshares": "18382400031", - "voter": "jademont" - }, - { - "rshares": "1294872282183", - "voter": "gavvet" - }, - { - "rshares": "89897365397", - "voter": "eeks" - }, - { - "rshares": "1511911763", - "voter": "fkn" - }, - { - "rshares": "122160437", - "voter": "paco-steem" - }, - { - "rshares": "1471653540", - "voter": "spaninv" - }, - { - "rshares": "1987313581", - "voter": "elishagh1" - }, - { - "rshares": "8669811688", - "voter": "richman" - }, - { - "rshares": "584222819564", - "voter": "nanzo-scoop" + "voter": "val-a", + "rshares": "30948708908726" }, { - "rshares": "28116199940", - "voter": "acidyo" + "voter": "val-b", + "rshares": "15292900000000" }, { - "rshares": "9857648383", - "voter": "kefkius" + "voter": "joseph", + "rshares": "1534352192855" }, { - "rshares": "177403714671", - "voter": "mummyimperfect" + "voter": "masteryoda", + "rshares": "652034182902" }, { - "rshares": "313689446", - "voter": "coar" + "voter": "idol", + "rshares": "8927024295" }, { - "rshares": "106631248984", - "voter": "asch" + "voter": "donkeypong", + "rshares": "2637269453488" }, { - "rshares": "1061230469", - "voter": "murh" + "voter": "steemrollin", + "rshares": "816386307308" }, { - "rshares": "936957207", - "voter": "slickwilly" + "voter": "sakr", + "rshares": "4941856440" }, { - "rshares": "3187804154", - "voter": "cryptofunk" + "voter": "chris4210", + "rshares": "140357414085" }, { - "rshares": "579494558", - "voter": "kodi" + "voter": "jocelyn", + "rshares": "1536548017" }, { - "rshares": "2057367746", - "voter": "error" + "voter": "acidsun", + "rshares": "83530339170" }, { - "rshares": "11847990151", - "voter": "andu" + "voter": "gavvet", + "rshares": "1196485708874" }, { - "rshares": "962069747008", - "voter": "cyber" + "voter": "eeks", + "rshares": "59931939963" }, { - "rshares": "61712174604", - "voter": "theshell" + "voter": "fernando-sanz", + "rshares": "6122594947" }, { - "rshares": "49577333486", - "voter": "ak2020" + "voter": "nanzo-scoop", + "rshares": "584270995256" }, { - "rshares": "24894446745", - "voter": "paul-labossiere" + "voter": "mummyimperfect", + "rshares": "177415501233" }, { - "rshares": "400880323222", - "voter": "taoteh1221" + "voter": "asch", + "rshares": "106634401121" }, { - "rshares": "95314034", - "voter": "stiletto" + "voter": "kevinwong", + "rshares": "603741881611" }, { - "rshares": "56688940478", - "voter": "juanmiguelsalas" + "voter": "murh", + "rshares": "1061259321" }, { - "rshares": "33781859925", - "voter": "ratel" + "voter": "cryptofunk", + "rshares": "3187850436" }, { - "rshares": "15787327103", - "voter": "zakharya" + "voter": "error", + "rshares": "2003304335" }, { - "rshares": "280717515045", - "voter": "trogdor" + "voter": "cyber", + "rshares": "962089879337" }, { - "rshares": "5287383826", - "voter": "tee-em" + "voter": "ak2020", + "rshares": "50884297723" }, { - "rshares": "121383360964", - "voter": "geoffrey" + "voter": "justtryme90", + "rshares": "61300613738" }, { - "rshares": "42737137488", - "voter": "kimziv" + "voter": "applecrisp", + "rshares": "410517349" }, { - "rshares": "74286777275", - "voter": "emily-cook" + "voter": "altoz", + "rshares": "35693164103" }, { - "rshares": "2187597574", - "voter": "superfreek" + "voter": "anwenbaumeister", + "rshares": "820589638514" }, { - "rshares": "49806164408", - "voter": "isteemit" + "voter": "mark-waser", + "rshares": "5950595929" }, { - "rshares": "4091429870", - "voter": "spikykevin" + "voter": "geoffrey", + "rshares": "118349796563" }, { - "rshares": "52090524796", - "voter": "venuspcs" + "voter": "kimziv", + "rshares": "192325266448" }, { - "rshares": "3989473346", - "voter": "michaellamden68" + "voter": "emily-cook", + "rshares": "77083924707" }, { - "rshares": "19974764064", - "voter": "thebatchman" + "voter": "orly", + "rshares": "3283440404" }, { - "rshares": "158997516614", - "voter": "asmolokalo" + "voter": "steem1653", + "rshares": "2834957075" }, { - "rshares": "8603166550", - "voter": "getssidetracked" + "voter": "cynetyc", + "rshares": "124961861" }, { - "rshares": "5165418905", - "voter": "riscadox" + "voter": "thegoodguy", + "rshares": "5357326058" }, { - "rshares": "17538291453", - "voter": "konstantin" + "voter": "karen13", + "rshares": "4209522316" }, { - "rshares": "261755903", - "voter": "mstang83" + "voter": "nabilov", + "rshares": "251366150295" }, { - "rshares": "39099397056", - "voter": "hitmeasap" + "voter": "noodhoog", + "rshares": "8401059269" }, { - "rshares": "252977703", - "voter": "nexus1" + "voter": "knozaki2015", + "rshares": "455246290726" }, { - "rshares": "1515818756", - "voter": "burmik123" + "voter": "lichtblick", + "rshares": "7166494256" }, { - "rshares": "280713275", - "voter": "ksenia" + "voter": "creemej", + "rshares": "33739090409" }, { - "rshares": "1649898982", - "voter": "trees" + "voter": "btcbtcbtc20155", + "rshares": "5726411049" }, { - "rshares": "231686197", - "voter": "strawhat" + "voter": "blueorgy", + "rshares": "163324531946" }, { - "rshares": "219133173153", - "voter": "domino" + "voter": "poseidon", + "rshares": "4195248338" }, { - "rshares": "251687687", - "voter": "playtime" + "voter": "simon.braki.love", + "rshares": "3435918746" }, { - "rshares": "404548352", - "voter": "whitepeach" + "voter": "liberosist", + "rshares": "268137172703" }, { - "rshares": "7380400309", - "voter": "furion" + "voter": "birdie", + "rshares": "4128504280" }, { - "rshares": "6462652657", - "voter": "owdy" + "voter": "sharker", + "rshares": "5609578664" }, { - "rshares": "1256448483", - "voter": "dicov" + "voter": "jl777", + "rshares": "204618259005" }, { - "rshares": "2936170685", - "voter": "steem1653" + "voter": "yarly", + "rshares": "1773036384" }, { - "rshares": "136318424", - "voter": "cynetyc" + "voter": "yarly2", + "rshares": "267188192" }, { - "rshares": "18770538147", - "voter": "sebastien" + "voter": "yarly3", + "rshares": "267587944" }, { - "rshares": "13787216422", - "voter": "sitaru" + "voter": "yarly4", + "rshares": "154579129" }, { - "rshares": "80777327", - "voter": "snowden" + "voter": "yarly5", + "rshares": "155451862" }, { - "rshares": "14167053756", - "voter": "aaseb" + "voter": "yarly7", + "rshares": "88607961" }, { - "rshares": "4209522316", - "voter": "karen13" + "voter": "moon32walker", + "rshares": "11031796651" }, { - "rshares": "10646413479", - "voter": "deviedev" + "voter": "sergey44", + "rshares": "258619590" }, { - "rshares": "266599021635", - "voter": "nabilov" + "voter": "proto", + "rshares": "17267341753" }, { - "rshares": "2286950597", - "voter": "dmacshady" + "voter": "sisterholics", + "rshares": "31599342155" }, { - "rshares": "726313838", - "voter": "luisucv34" + "voter": "yarly10", + "rshares": "428868451" }, { - "rshares": "8811980236", - "voter": "herverisson" + "voter": "yarly11", + "rshares": "229507420" }, { - "rshares": "53424827264", - "voter": "streetstyle" + "voter": "yarly12", + "rshares": "80241480" }, { - "rshares": "46856213520", - "voter": "milestone" + "voter": "steemster1", + "rshares": "146224042" }, { - "rshares": "3801182358", - "voter": "maximkichev" + "voter": "mahekg", + "rshares": "5878023046" }, { - "rshares": "15070465231", - "voter": "nippel66" + "voter": "taker", + "rshares": "8734150854" }, { - "rshares": "167302364294", - "voter": "blueorgy" + "voter": "nekromarinist", + "rshares": "6521104126" }, { - "rshares": "12849414672", - "voter": "benjiberigan" + "voter": "theprophet0", + "rshares": "10553169212" }, { - "rshares": "932248554", - "voter": "poseidon" + "voter": "sharon", + "rshares": "57873464" }, { - "rshares": "19717588129", - "voter": "mustafaomar" + "voter": "lillianjones", + "rshares": "58971492" }, { - "rshares": "3506039536", - "voter": "simon.braki.love" + "voter": "laonie", + "rshares": "1117443990130" }, { - "rshares": "82781233416", - "voter": "thylbom" + "voter": "twinner", + "rshares": "4257390614" }, { - "rshares": "32542976852", - "voter": "deanliu" + "voter": "timcliff", + "rshares": "4414425121" }, { - "rshares": "5609548617", - "voter": "sharker" + "voter": "myfirst", + "rshares": "38640926181" }, { - "rshares": "541016983", - "voter": "qonq99" + "voter": "somebody", + "rshares": "233306274805" }, { - "rshares": "204615752038", - "voter": "jl777" + "voter": "flysaga", + "rshares": "8723132526" }, { - "rshares": "119983138", - "voter": "pokemon" + "voter": "gmurph", + "rshares": "1667759072" }, { - "rshares": "1226120506", - "voter": "positive" + "voter": "midnightoil", + "rshares": "51539167746" }, { - "rshares": "6939662161", - "voter": "chloetaylor" + "voter": "ullikume", + "rshares": "4190377366" }, { - "rshares": "43638419601", - "voter": "claudiop63" + "voter": "xiaohui", + "rshares": "128906992414" }, { - "rshares": "17267164725", - "voter": "proto" + "voter": "jphamer1", + "rshares": "21112616587" }, { - "rshares": "7222403812", - "voter": "sisterholics" + "voter": "elfkitchen", + "rshares": "6306539895" }, { - "rshares": "1444237397", - "voter": "alex.chien" + "voter": "joele", + "rshares": "102434307703" }, { - "rshares": "8781903824", - "voter": "royalmacro" + "voter": "randyclemens", + "rshares": "15549176040" }, { - "rshares": "1838367968", - "voter": "remlaps" + "voter": "xiaokongcom", + "rshares": "4030108065" }, { - "rshares": "149624601", - "voter": "steemster1" + "voter": "msjennifer", + "rshares": "59437351" }, { - "rshares": "3353872300", - "voter": "glitterpig" + "voter": "ciao", + "rshares": "54654502" }, { - "rshares": "8734116589", - "voter": "taker" + "voter": "steemo", + "rshares": "52985539" }, { - "rshares": "59219358", - "voter": "sharon" + "voter": "xianjun", + "rshares": "8123975227" }, { - "rshares": "4999720649", - "voter": "dumar022" + "voter": "steema", + "rshares": "52848854" }, { - "rshares": "2077201153", - "voter": "merej99" + "voter": "confucius", + "rshares": "69662169" }, { - "rshares": "60342922", - "voter": "lillianjones" + "voter": "borran", + "rshares": "11292536945" }, { - "rshares": "255401498427", - "voter": "laonie" + "voter": "jarvis", + "rshares": "53661976" }, { - "rshares": "24561432292", - "voter": "laoyao" + "voter": "microluck", + "rshares": "546765304" }, { - "rshares": "7994421908", - "voter": "myfirst" + "voter": "razberrijam", + "rshares": "75676352" }, { - "rshares": "51843535316", - "voter": "somebody" + "voter": "fortuner", + "rshares": "53106127" }, { - "rshares": "1938401760", - "voter": "flysaga" + "voter": "pompe72", + "rshares": "84942400" }, { - "rshares": "2501627790", - "voter": "gmurph" + "voter": "lemouth", + "rshares": "8114632832" }, { - "rshares": "1691577797", - "voter": "chris.roy" + "voter": "gvargas123", + "rshares": "10344891579" }, { - "rshares": "1693568633", - "voter": "stormblaze" + "voter": "johnbyrd", + "rshares": "51877132" }, { - "rshares": "11452681912", - "voter": "midnightoil" + "voter": "thomasaustin", + "rshares": "50682252" }, { - "rshares": "2327843962", - "voter": "kalimor" + "voter": "thermor", + "rshares": "51859074" }, { - "rshares": "84246848", - "voter": "coderg" + "voter": "ficholl", + "rshares": "50691211" }, { - "rshares": "4190252928", - "voter": "ullikume" + "voter": "widell", + "rshares": "51852278" }, { - "rshares": "3323749960", - "voter": "kurtbeil" + "voter": "steevc", + "rshares": "404286448" }, { - "rshares": "28644139641", - "voter": "xiaohui" + "voter": "movievertigo", + "rshares": "3635091595" }, { - "rshares": "1349109906", - "voter": "dolov" + "voter": "revelbrooks", + "rshares": "51481279" }, { - "rshares": "1293603524", - "voter": "elfkitchen" + "voter": "cehuneke", + "rshares": "1573489537" }, { - "rshares": "103394476995", - "voter": "joele" + "voter": "netaterra", + "rshares": "2982676167" }, { - "rshares": "5855492830", - "voter": "oflyhigh" + "voter": "andrewawerdna", + "rshares": "23137850346" }, { - "rshares": "895550716", - "voter": "xiaokongcom" + "voter": "trev", + "rshares": "5831957227" }, { - "rshares": "2118152083", - "voter": "natalymaty" + "voter": "craigwilliamz", + "rshares": "8773942171" }, { - "rshares": "60819615", - "voter": "msjennifer" + "voter": "mandibil", + "rshares": "51505575275" }, { - "rshares": "55925537", - "voter": "ciao" + "voter": "daut44", + "rshares": "32462674824" }, { - "rshares": "1156101266", - "voter": "darthnava" + "voter": "curpose", + "rshares": "50416427" }, { - "rshares": "3670417888", - "voter": "villainblack" + "voter": "curving", + "rshares": "3597236649" }, { - "rshares": "8410164039", - "voter": "thebotkiller" + "voter": "uri-bruck", + "rshares": "61596105" }, { - "rshares": "3033050865", - "voter": "jrcornel" + "voter": "shenanigator", + "rshares": "112983030208" }, { - "rshares": "54217761", - "voter": "steemo" + "voter": "quinneaker", + "rshares": "10005063213" }, { - "rshares": "1805262907", - "voter": "xianjun" + "voter": "einsteinpotsdam", + "rshares": "7626813355" }, { - "rshares": "26819912795", - "voter": "hanshotfirst" + "voter": "richardcrill", + "rshares": "4747321980" }, { - "rshares": "54077897", - "voter": "steema" + "voter": "jeremyfromwi", + "rshares": "2205784762" }, { - "rshares": "71282219", - "voter": "confucius" + "voter": "troich", + "rshares": "50588612" }, { - "rshares": "93801736989", - "voter": "miacats" + "voter": "davidjkelley", + "rshares": "1661534801" }, { - "rshares": "2249572206", - "voter": "njall" + "voter": "crion", + "rshares": "50593879" }, { - "rshares": "54909929", - "voter": "jarvis" + "voter": "greatness", + "rshares": "178419224" }, { - "rshares": "118219525", - "voter": "microluck" + "voter": "hitherise", + "rshares": "50271139" }, { - "rshares": "54313084", - "voter": "fortuner" + "voter": "wiss", + "rshares": "50262756" }, { - "rshares": "2077267800", - "voter": "chinadaily" + "voter": "sponge-bob", + "rshares": "54249219602" }, { - "rshares": "4879530405", - "voter": "almerri" + "voter": "digital-wisdom", + "rshares": "15571056039" }, { - "rshares": "9253395112", - "voter": "johnnyyash" + "voter": "getonthetrain", + "rshares": "3365396535" }, { - "rshares": "10344891579", - "voter": "gvargas123" + "voter": "ethical-ai", + "rshares": "3710959443" }, { - "rshares": "4751552849", - "voter": "themanualbot" + "voter": "stroully", + "rshares": "51033798" }, { - "rshares": "136485885", - "voter": "nang1" + "voter": "jwaser", + "rshares": "6831361820" }, { - "rshares": "13839238841", - "voter": "telos" + "voter": "tfeldman", + "rshares": "468106735" }, { - "rshares": "51877132", - "voter": "johnbyrd" + "voter": "thadm", + "rshares": "50712038" }, { - "rshares": "53039566", - "voter": "thomasaustin" + "voter": "prof", + "rshares": "50710305" }, { - "rshares": "51859074", - "voter": "thermor" + "voter": "ionescur", + "rshares": "1597514180" }, { - "rshares": "51870077", - "voter": "ficholl" + "voter": "bane", + "rshares": "50065875" }, { - "rshares": "53030738", - "voter": "widell" + "voter": "vive", + "rshares": "50059754" }, { - "rshares": "51481279", - "voter": "revelbrooks" + "voter": "coad", + "rshares": "50054445" }, { - "rshares": "406983674", - "voter": "mig641" + "voter": "bwaser", + "rshares": "2675506788" }, { - "rshares": "169608367", - "voter": "kamil5" + "voter": "renzoarg", + "rshares": "7645490859" }, { - "rshares": "59295031", - "voter": "dobbydaba" + "voter": "sofa", + "rshares": "50840303" }, { - "rshares": "24294717617", - "voter": "andrewawerdna" + "voter": "roadhog", + "rshares": "53990613" }, { - "rshares": "55367485477", - "voter": "mandibil" + "voter": "doggnostic", + "rshares": "52794249" }, { - "rshares": "4633082667", - "voter": "steemitpatina" + "voter": "jenny-talls", + "rshares": "52521499" }, { - "rshares": "51562255", - "voter": "curpose" + "voter": "mariandavp", + "rshares": "8199670899" }, { - "rshares": "76072115", - "voter": "steembriefing" + "voter": "brains", + "rshares": "55344422883" }, { - "rshares": "55750195", - "voter": "riv" + "voter": "post-successful", + "rshares": "53415391" }, { - "rshares": "2196862373", - "voter": "runridefly" + "voter": "burnin", + "rshares": "5866415576" }, { - "rshares": "1783607101", - "voter": "funkywanderer" + "voter": "anomaly", + "rshares": "271439221" }, { - "rshares": "2249900457", - "voter": "jeremyfromwi" + "voter": "ellepdub", + "rshares": "2401297947" }, { - "rshares": "2056057288", - "voter": "eight-rad" + "voter": "michelle.gent", + "rshares": "4116636581" }, { - "rshares": "51712804", - "voter": "troich" + "voter": "herpetologyguy", + "rshares": "12115638535" }, { - "rshares": "9458733324", - "voter": "aggroed" + "voter": "morgan.waser", + "rshares": "4817004213" }, { - "rshares": "51718188", - "voter": "crion" + "voter": "dragonice", + "rshares": "50228382" }, { - "rshares": "182060433", - "voter": "greatness" + "voter": "aksinya", + "rshares": "1288421610" }, { - "rshares": "51388276", - "voter": "hitherise" + "voter": "bapparabi", + "rshares": "1921231770" }, { - "rshares": "51379706", - "voter": "wiss" + "voter": "opticalillusions", + "rshares": "50487909" }, { - "rshares": "54247555535", - "voter": "sponge-bob" + "voter": "strong-ai", + "rshares": "3689852156" }, { - "rshares": "52143228", - "voter": "stroully" + "voter": "grisha-danunaher", + "rshares": "505556200" }, { - "rshares": "88628906", - "voter": "ruscion" + "voter": "igtes", + "rshares": "71207873" }, { - "rshares": "1086106040", - "voter": "tatianka" + "voter": "curie", + "rshares": "50277354380" }, { - "rshares": "54175638", - "voter": "apparat" + "voter": "dikanevroman", + "rshares": "851767121" }, { - "rshares": "51814474", - "voter": "thadm" + "voter": "buffett", + "rshares": "141679752" }, { - "rshares": "51812703", - "voter": "prof" + "voter": "witchcraftblog", + "rshares": "453506109" }, { - "rshares": "157957231026", - "voter": "thecyclist" + "voter": "photorealistic", + "rshares": "157799009" }, { - "rshares": "1655277599", - "voter": "smisi" + "voter": "illusions", + "rshares": "160880639" }, { - "rshares": "50370757", - "voter": "yorsens" + "voter": "dresden", + "rshares": "6920933761" }, { - "rshares": "201688406600", - "voter": "asksisk" + "voter": "caseyneistat", + "rshares": "160845765" }, { - "rshares": "50065875", - "voter": "bane" + "voter": "ysa", + "rshares": "692395145" }, { - "rshares": "50059754", - "voter": "vive" + "voter": "correct", + "rshares": "159984914" }, { - "rshares": "51142585", - "voter": "coad" + "voter": "capcom", + "rshares": "159973989" }, { - "rshares": "51922012", - "voter": "sofa" + "voter": "sledgehammer", + "rshares": "159963865" }, { - "rshares": "323483227", - "voter": "panther" + "voter": "haribo", + "rshares": "159950870" }, { - "rshares": "60610693", - "voter": "plantbasedjunkie" + "voter": "benetton", + "rshares": "159531007" }, { - "rshares": "55341943517", - "voter": "brains" + "voter": "stimmt", + "rshares": "156194471" }, { - "rshares": "517900727", - "voter": "mohamedmashaal" + "voter": "reef", + "rshares": "159143891" }, { - "rshares": "20617809185", - "voter": "skypilot" + "voter": "cream", + "rshares": "158632601" }, { - "rshares": "50933404", - "voter": "ailo" + "voter": "reddust", + "rshares": "891891710" }, { - "rshares": "5753290068", - "voter": "chick1" + "voter": "aldentan", + "rshares": "336222066" }, { - "rshares": "50584036", - "voter": "aoki" - }, + "voter": "techslut", + "rshares": "191981449" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 182, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/curie/@curie/the-daily-curie-14th-sept-15th-sept-2016", + "blacklists": [] + }, + { + "post_id": 959506, + "author": "markrmorrisjr", + "permlink": "original-fiction-anarchist-s-almanac-episode-15", + "category": "story", + "title": "Original Fiction: Anarchist's Almanac, Episode 15", + "body": "## In this episode, Joshua Claiborne stands trial for violation of the First Law ##\n\n**“Whoa, whoa, whoa!” Phil screamed, “What the hell dude?”**\n\n*The Reaper crumpled to the floor, arms flailing as Joshua rode it to the ground. Finally, the hands found the catches at either side of the helmet and popped it off. A black, shaggy head of hair emerged.* \n\n***If you've missed episodes, [visit my blog](https://steemit.com/@markrmorrisjr) to catch up. Be sure to follow me for updates in your feed!***\n\n“Emil?” Stella said, “Meet Joshua. Are you okay?”\n\nEmil, the Reaper suit’s operator laughed, “Yeah, I’m fine, but that was awesome! Can you teach us that?”\n\n“Man! Now I have to rebuild this helmet,” Phil held up a small remote. “All I had to do was push this button,” he said, pressing it, as the suit powered down. “What did you do?”\n\n“The ‘nerve’ bundle that controls these things motor skills is on the very top of the skull, under a thin piece of sheet metal, puncture it, it collapses. You didn’t know that?” Joshua said. \n\n“Well, it appears we may need you more than you need us,” Stella said. “So, just say the word and we’ll get you where you need to be. Meanwhile, my team will be working on your son’s location.”\n\nJoshua dropped the letter opener and walked to the stairs, “Fine, whatever you need to collect from my meeting, get it. Now, who’s driving?” With that, he walked up the stairs, he had no more time to waste. \n\n**The Mapleton courthouse sat on a hill in the center of the town, overlooking the area around for miles.** \n\n*Joshua insisted that the team Stella had sent stop 5 miles out and allow him to ride in on the electric trike alone, while they observed the meeting from a distance.* \n\nHe carried the tiny remote in his shirt pocket, a gift from Phil. “That’s my only prototype, so don’t lose it,” he’d said. \n\n![enter image description here](https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg)\n\nFrom the end of Main Street, looking up toward the courthouse, Joshua counted at least six reapers. He wondered how far the signal from the remote would travel. \n\nHe thought about pressing it now, disarming his enemy, then walking in, but he’d still have to deal with the six drivers, if they managed to escape the suits. \n\nBesides, Stella seemed to think there was some secret they were going to give away, although Joshua couldn’t imagine it. \n\n*He checked his watch, ten minutes until his scheduled time and while he knew better than to be late, he had no intention of giving the Consensus one more second than he had to.* \n\nThe trike spun it’s tires on a patch of loose gravel as he started back up. He decided a quick approach was best. He charged up the hill, jumping the “Mayor’s” parking barrier and rolling up to the foot of the front stairs, he cranked the accelerator and the trike rose up on its back wheel, popping the two front wheels, over the bottom step. \n\nThe machine had more than enough power to climb the steps and Joshua skidded to a stop outside the courthouse door. He stopped and turned back toward the town, the six Reapers swarming toward him up the steps. He powered down, swung his leg up and over the bike and opened the door. \n\n**The Reapers followed him into the hall as he approached the court room.** \n\nThe Magistrate sat behind the judge’s bench and Joshua couldn’t help but smirk at the insult to the very concept of actual justice that this thing represented. \n\n“Joshua Claiborne, appearing as requested,” Joshua said, standing directly in front of the Magistrate. \n\n![enter image description here](https://s12.postimg.org/6h4lvyh7x/judge.jpg)\n\n> “Yes, Mr. Claiborne, have a seat,” A woman’s face, projected on the face shield of the Magistrate said.\n\n“I’d rather stand,” he said. \n\n> “Suit yourself, may we have the room, please?” she said, looking toward the reapers that had entered the back doors of the courtroom.\n\nThey left quietly. \n\n> “Mr. Claiborne, you’re charged with violation of the first law, in so\n> much as you have encouraged and joined in the activity of settling\n> outside of Consensus approved areas, acted outside of the legal\n> jurisdiction of the council and on more than one occasion, acted\n> against the best interest of Consensus, including attacking duly\n> authorized Magistrates in the course of their legally binding duties,\n> how do you plead?”\n\n**The woman looked at Joshua, peering over a pair of short, square spectacles, like some sort of outdated stereotype.** \n\n“Not guilty, by reason of illegitimacy of the currently established government and its ensigns. I am not, nor do I choose to become, subject to your law. I stand judged as innocent by natural law, insomuch as I have not caused harm to another human in aggression, damaged or stolen property, nor unnecessarily restricted the liberty of any other person. I recognize no other responsibility to my fellow man,” Joshua said calmly. \n\n> “Be that as it may, Mr. Claiborne, we are not here under the auspices of “natural law” but rather, under the Council mandated authority of the Consensus and its Magisterial Ministry, of which I am a part and I assure you, you are subject to,”\n\nThe woman intoned, her expression one of almost sheer boredom.\n\n> “Court finds the defendant guilty and remands the subject for immediate judicial murder.”\n\nThe magistrate raised its arm and brought it down on the bench with a solid thud, that echoed through the court. Joshua felt his heart sink as the Reapers reentered the court and moved up to surround him. \n\n## Look for the upvote button below. If you liked the post, upvote and share! If you're not on Steemit yet, why not? You get free money for signing up! ##", + "json_metadata": { + "tags": [ + "story", + "fiction", + "anarchy", + "life", + "minnowsunited" + ], + "image": [ + "https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg", + "https://s12.postimg.org/6h4lvyh7x/judge.jpg" + ], + "links": [ + "https://steemit.com/@markrmorrisjr" + ] + }, + "created": "2016-09-15T16:54:06", + "updated": "2016-09-15T16:54:06", + "depth": 0, + "children": 2, + "net_rshares": 62355283653318, + "is_paidout": false, + "payout_at": "2016-09-16T18:15:42", + "payout": 227.863, + "pending_payout_value": "227.863 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ { - "rshares": "51568971", - "voter": "typingagent" + "voter": "anonymous", + "rshares": "231809639013" }, { - "rshares": "51581492", - "voter": "cwb" + "voter": "blocktrades", + "rshares": "40859141206977" }, { - "rshares": "339274981", - "voter": "anomaly" + "voter": "badassmother", + "rshares": "1912118346075" }, { - "rshares": "147786454", - "voter": "ola1" + "voter": "xeldal", + "rshares": "7113882084470" }, { - "rshares": "50441122", - "voter": "eavy" + "voter": "enki", + "rshares": "5763993012820" }, { - "rshares": "50454901", - "voter": "roto" + "voter": "rossco99", + "rshares": "1304415071462" }, { - "rshares": "71955428", - "voter": "mari5555na" + "voter": "joseph", + "rshares": "1577462576089" }, { - "rshares": "157644916", - "voter": "iggy" + "voter": "masteryoda", + "rshares": "651993277150" }, { - "rshares": "51232949", - "voter": "dragonice" + "voter": "boatymcboatface", + "rshares": "446958795092" }, { - "rshares": "50907857", - "voter": "oxygen" + "voter": "idol", + "rshares": "9168101098" }, { - "rshares": "50871059", - "voter": "motion" + "voter": "wpalczynski", + "rshares": "23383993964" }, { - "rshares": "50796122", - "voter": "factom" + "voter": "sakr", + "rshares": "5044693986" }, { - "rshares": "50794039", - "voter": "autodesk" + "voter": "jocelyn", + "rshares": "1578030666" }, { - "rshares": "50565798", - "voter": "penthouse" + "voter": "gregory-f", + "rshares": "14818192446" }, { - "rshares": "50538694", - "voter": "fenix" + "voter": "eeks", + "rshares": "74914583876" }, { - "rshares": "2118281183", - "voter": "bapparabi" + "voter": "fkn", + "rshares": "1007941175" }, { - "rshares": "50487909", - "voter": "opticalillusions" + "voter": "james-show", + "rshares": "8867224532" }, { - "rshares": "50349676", - "voter": "albertheijn" + "voter": "elishagh1", + "rshares": "1324875721" }, { - "rshares": "90053391", - "voter": "remlaps1" + "voter": "richman", + "rshares": "7802860274" }, { - "rshares": "239963421", - "voter": "darkminded153" + "voter": "acidyo", + "rshares": "24193131603" }, { - "rshares": "527464783", - "voter": "grisha-danunaher" + "voter": "coar", + "rshares": "313691550" }, { - "rshares": "72826233", - "voter": "igtes" + "voter": "murh", + "rshares": "1061234978" }, { - "rshares": "141679752", - "voter": "buffett" + "voter": "error", + "rshares": "2057413439" }, { - "rshares": "161815656", - "voter": "ranger" + "voter": "theshell", + "rshares": "59950022330" }, { - "rshares": "444435987", - "voter": "witchcraftblog" + "voter": "taoteh1221", + "rshares": "400880323222" }, { - "rshares": "161693690", - "voter": "shadowproject" + "voter": "applecrisp", + "rshares": "410517349" }, { - "rshares": "160975092", - "voter": "user45-87" + "voter": "trogdor", + "rshares": "280737930617" }, { - "rshares": "157182398", - "voter": "planet" + "voter": "tee-em", + "rshares": "5287820211" }, { - "rshares": "156043541", - "voter": "disneypixar" + "voter": "geoffrey", + "rshares": "121383360964" }, { - "rshares": "159143891", - "voter": "reef" + "voter": "kimziv", + "rshares": "10684548905" }, { - "rshares": "158602900", - "voter": "steem-wallet" + "voter": "acassity", + "rshares": "30279968088" }, { - "rshares": "31683945302", - "voter": "goldmatters" + "voter": "venuspcs", + "rshares": "45145254362" }, { - "rshares": "68013381", - "voter": "storage" + "voter": "getssidetracked", + "rshares": "7264907621" }, { - "rshares": "58460105", - "voter": "blackmarket" + "voter": "trees", + "rshares": "1414199127" }, { - "rshares": "61530871", - "voter": "gifts" + "voter": "strawhat", + "rshares": "197179742" }, { - "rshares": "135637537", - "voter": "toddemaher1" + "voter": "steemswede", + "rshares": "1159208963" }, { - "rshares": "153397644", - "voter": "milank" + "voter": "cryptochannel", + "rshares": "691425107" }, { - "rshares": "153325742", - "voter": "denise12" - } - ], - "author": "gavvet", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Hello everyone. I did not write anything about World War II for a long time. So today I decided to tell you about the Tank Destroyers. About the machines, specialization of which was the destruction of tanks. In this article I will talk about the classic representatives of this class.\n>\u0412\u0441\u0456\u043c \u043f\u0440\u0438\u0432\u0456\u0442. \u0414\u0430\u0432\u043d\u0435\u043d\u044c\u043a\u043e \u044f \u043d\u0435 \u043f\u0438\u0441\u0430\u0432 \u043d\u0456\u0447\u043e\u0433\u043e \u043d\u0430 \u0442\u0435\u043c\u0443 \u0414\u0440\u0443\u0433\u043e\u0457 \u0421\u0432\u0456\u0442\u043e\u0432\u043e\u0457. \u0406 \u043e\u0441\u044c \u0441\u044c\u043e\u0433\u043e\u0434\u043d\u0456 \u044f \u0432\u0438\u0440\u0456\u0448\u0438\u0432 \u0440\u043e\u0437\u043f\u043e\u0432\u0456\u0441\u0442\u0438 \u0432\u0430\u043c \u043f\u0440\u043e \u041f\u0422-\u0421\u0410\u0423. \u041f\u0440\u043e \u043c\u0430\u0448\u0438\u043d\u0438, \u0441\u043f\u0435\u0446\u0456\u0430\u043b\u0456\u0437\u0430\u0446\u0456\u0454\u044e \u044f\u043a\u0438\u0445 \u0431\u0443\u043b\u043e \u0437\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0442\u0430\u043d\u043a\u0456\u0432. \u0423 \u0446\u0456\u0439 \u0447\u0430\u0441\u0442\u0438\u043d\u0456 \u044f \u0440\u043e\u0437\u043f\u043e\u0432\u0456\u043c \u043f\u0440\u043e \u043a\u043b\u0430\u0441\u0438\u0447\u043d\u0438\u0445 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043d\u0438\u043a\u0456\u0432 \u0441\u0432\u043e\u0433\u043e \u043a\u043b\u0430\u0441\u0443.\n\n# StuG III\nhttp://i.piccy.info/i9/3d367a52a1b8dc6c22f126332f335144/1473836215/88822/1063747/cqWCxy6vYP0.jpg\n\nLet's start with the most produced Tank Destroyer in the history. At the beginning of the WW II German command decided to create a mobile artillery on the basis of existing tanks, which would be able to support the infantry. The priority in new machine were the firepower, a good armor and cheapness. The firm Daimler-Benz successfully embodied these wishes into reality. There were about eight versions of StuG III, however, the main was Ausf. G. The cost of production of one StuG was quite low - 83 000 DM. Total was released 10500 machines. The basis for the creation was German tank PzKpfw III.\nInitially StuG III was equipped with a short-75mm gun, but when good armored Soviet T-34 came to the fronts, it was decided to replace short gun with a new long-barreled 75mm cannon Stuk 40 L / 48, which surely hit the Soviet tanks. StuG armor was quite good \u2013 50 mm in a front took a punch at a distance of 1 km. StuG III was very compact in a size and had good mobility. The main disadvantage was little size which allowed bad conditions for crew working. StuG III took active part in a war from the very beginning to its end. \nhttp://i.piccy.info/i9/5dc09cebc0ddfcd1fac4a8013ee385ad/1473836240/182233/1063747/5u9ghQyvkTc.jpg\n\n>\u041f\u043e\u0447\u043d\u0435\u043c\u043e \u0437 \u043d\u0430\u0439\u043c\u0430\u0441\u043e\u0432\u0456\u0448\u0457 \u041f\u0422-\u0421\u0410\u0423 \u0432 \u0456\u0441\u0442\u043e\u0440\u0456\u0457. \u041d\u0430 \u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0432\u0456\u0439\u043d\u0438 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u0438\u0440\u0456\u0448\u0438\u043b\u043e \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0443 \u0430\u0440\u0442\u0438\u043b\u0435\u0440\u0456\u044e \u043d\u0430 \u0431\u0430\u0437\u0456 \u0432\u0436\u0435 \u043d\u0430\u044f\u0432\u043d\u0438\u0445 \u0442\u0430\u043d\u043a\u0456\u0432, \u0437\u0434\u0430\u0442\u043d\u0443 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0430\u0442\u0438 \u043f\u0456\u0445\u043e\u0442\u0443. \u041f\u0440\u0456\u043e\u0440\u0438\u0442\u0435\u0442\u043d\u043e\u044e \u0431\u0443\u043b\u0430 \u0432\u043e\u0433\u043d\u0435\u0432\u0430 \u043c\u0456\u0446\u044c, \u0433\u0430\u0440\u043d\u0435 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f \u0456 \u0434\u0435\u0448\u0435\u0432\u0438\u0437\u043d\u0430. \u0424\u0456\u0440\u043c\u0430 Daimler-Benz \u0432\u0434\u0430\u043b\u043e \u0432\u0442\u0456\u043b\u0438\u043b\u0430 \u0446\u0456 \u043f\u043e\u0431\u0430\u0436\u0430\u043d\u043d\u044f \u0432 \u0440\u0435\u0430\u043b\u044c\u043d\u0456\u0441\u0442\u044c. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0431\u043b\u0438\u0437\u044c\u043a\u043e \u0432\u043e\u0441\u044c\u043c\u0438 \u043c\u043e\u0434\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u0439 StuG III, \u043f\u0440\u043e\u0442\u0435 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u044e \u0431\u0443\u043b\u0430 Ausf. G. \u0412\u0430\u0440\u0442\u0456\u0441\u0442\u044c \u043e\u0434\u043d\u0456\u0454\u0457 \u041f\u0422-\u0421\u0410\u0423 \u0431\u0443\u043b\u0430 \u0434\u043e\u0441\u0438\u0442\u044c \u043d\u0438\u0437\u044c\u043a\u043e\u044e - 83 000 \u043c\u0430\u0440\u043e\u043a. \u0421\u0443\u043c\u0430\u0440\u043d\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 10500 \u043c\u0430\u0448\u0438\u043d. \u0411\u0430\u0437\u043e\u044e \u0434\u043b\u044f \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f \u043f\u043e\u0441\u043b\u0443\u0436\u0438\u0432 \u0442\u0430\u043d\u043a PzKpfw III.\n\u0421\u043f\u043e\u0447\u0430\u0442\u043a\u0443 StuG III \u043e\u0441\u043d\u0430\u0449\u0443\u0432\u0430\u0432\u0441\u044f \u043a\u043e\u0440\u043e\u0442\u043a\u043e\u0441\u0442\u0432\u043e\u043b\u044c\u043d\u043e\u044e 75\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u043e\u044e, \u043e\u0434\u043d\u0430\u043a \u0437 \u043f\u043e\u044f\u0432\u043e\u044e \u043d\u0430 \u0444\u0440\u043e\u043d\u0442\u0430\u0445 \u0422-34 \u0431\u0443\u043b\u043e \u043f\u0440\u0438\u0439\u043d\u044f\u0442\u043e \u0440\u0456\u0448\u0435\u043d\u043d\u044f \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0457\u0457 \u043d\u0430 \u043d\u043e\u0432\u0443 \u0434\u043e\u0432\u0433\u043e\u0441\u0442\u0432\u043e\u043b\u044c\u043d\u0443 75\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u0443 Stuk 40 L / 48, \u044f\u043a\u0430 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u043e \u0432\u0440\u0430\u0436\u0430\u043b\u0430 \u0440\u0430\u0434\u044f\u043d\u0441\u044c\u043a\u0456 \u0442\u0430\u043d\u043a\u0438. \u0411\u0440\u043e\u043d\u044f \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 \u0443 \u043b\u043e\u0431\u0456 \u0431\u0443\u043b\u0430 50 \u043c\u043c \u0456 \u0442\u0440\u0438\u043c\u0430\u043b\u0430 \u0443\u0434\u0430\u0440 \u043d\u0430 \u0432\u0456\u0434\u0441\u0442\u0430\u043d\u0456 1 \u043a\u043c. StuG III \u0432\u0456\u0434\u0440\u0456\u0437\u043d\u044f\u0432\u0441\u044f \u043a\u043e\u043c\u043f\u0430\u043a\u0442\u043d\u0438\u043c\u0438 \u0440\u043e\u0437\u043c\u0456\u0440\u0430\u043c\u0438, \u0445\u043e\u0440\u043e\u0448\u043e\u044e \u043c\u0430\u043d\u0435\u0432\u0440\u0435\u043d\u0456\u0441\u0442\u044e \u0442\u0430 \u043d\u0435\u043f\u043e\u0433\u0430\u043d\u043e\u044e \u0448\u0432\u0438\u0434\u043a\u0456\u0441\u0442\u044e. \u0417 \u043d\u0435\u0434\u043e\u043b\u0456\u043a\u0456\u0432 \u0432\u0430\u0440\u0442\u043e \u0432\u0456\u0434\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u043d\u0435\u0437\u0440\u0443\u0447\u043d\u0456\u0441\u0442\u044c \u0440\u043e\u0431\u043e\u0442\u0438 \u0435\u043a\u0456\u043f\u0430\u0436\u0443 \u0447\u0435\u0440\u0435\u0437 \u043d\u0435\u0432\u0435\u043b\u0438\u043a\u0438\u0439 \u0437\u0430 \u0431\u0440\u043e\u043d\u044c\u043e\u0432\u0438\u0439 \u043f\u0440\u043e\u0441\u0442\u0456\u0440. \u041c\u0430\u0448\u0438\u043d\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0431\u0440\u0430\u043b\u0430 \u0443\u0447\u0430\u0441\u0442\u044c \u0437 \u0441\u0430\u043c\u043e\u0433\u043e \u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0432\u0456\u0439\u043d\u0438 \u0456 \u0434\u043e \u0457\u0457 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u044f.\n\n# Su-85 (100) \u0421\u0423-85 (100)\nhttp://i.piccy.info/i9/b5ef17359d201f4a7a61b38b5e6ca72f/1473836271/164656/1063747/kKktJUlUuXk.jpg\n\nTowards in 1943 it became clear for the Soviet command that to deal effectively with new German tanks Soviet army required new, more modern machines and Tank Destroyers. It was decided to create new Tank Destroyer based on the T-34, driving performance and armor of which were very good. Development of a new machine was conducted at Uralmash factory.\nSu-85 had a new long-barreled 85mm gun, similar to that which will soon be installed at T-34-85. This gun was able to destroy enemy medium tanks at the distance of over a kilometer, and heavy tanks \u2013 at 800 meters to a front plate. The gun was placed in the middle part of the Tanks Destroyer body and had angles of + - 8 degrees. Also the inside size of tanks was nice which allowed good conditions for crew working. Driving characteristics inherited from the T-34-85. Armor (45 mm at the front with big armor slope) provided good protection against German medium tanks. A little later, with the release of the T-34-85, SU-85 was converted under the new 100mm gun. It was a tool for successfully destroying any enemy tanks, including Tiger 2. Also Su-100 had a very low silhouette, which contributed to an excellent disguise. Observation and aiming devices have been improved. SU-100 was easy to maintain. This Tank Destroyer applied to the end of the WW II. Total were released 4976 SU-100 and 2050 SU-85.\nhttp://i.piccy.info/i9/4dc33c464a97ab5b3b8b294778f28103/1473836298/33303/1063747/WVaI_c18Lyw.jpg\n\n>\u0411\u043b\u0438\u0436\u0447\u0435 \u0434\u043e 1943 \u0440\u043e\u043a\u0443 \u0440\u0430\u0434\u044f\u043d\u0441\u044c\u043a\u043e\u043c\u0443 \u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u043d\u043d\u044e \u0441\u0442\u0430\u043b\u043e \u0437\u0440\u043e\u0437\u0443\u043c\u0456\u043b\u043e, \u0449\u043e \u0434\u043b\u044f \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0457 \u0431\u043e\u0440\u043e\u0442\u044c\u0431\u0438 \u0437 \u043d\u043e\u0432\u0438\u043c\u0438 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0438\u043c\u0438 \u0442\u0430\u043d\u043a\u0430\u043c\u0438 \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u0456 \u0431\u0456\u043b\u044c\u0448 \u0441\u0443\u0447\u0430\u0441\u043d\u0456 \u043c\u0430\u0448\u0438\u043d\u0438. \u0411\u0443\u043b\u043e \u0432\u0438\u0440\u0456\u0448\u0435\u043d\u043e \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0443 \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043d\u0443 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443 \u043d\u0430 \u0431\u0430\u0437\u0456 \u0442\u0430\u043d\u043a\u0430 \u0422-34, \u0445\u043e\u0434\u043e\u0432\u0456 \u044f\u043a\u043e\u0441\u0442\u0456 \u0456 \u0431\u0440\u043e\u043d\u044f \u044f\u043a\u043e\u0433\u043e \u0431\u0443\u043b\u0438 \u0434\u0443\u0436\u0435 \u0445\u043e\u0440\u043e\u0448\u0456. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u043d\u043e\u0432\u043e\u0457 \u041f\u0422-\u0421\u0410\u0423 \u0432\u0435\u043b\u0430\u0441\u044f \u043d\u0430 \u0423\u0440\u0430\u043b\u043c\u0430\u0448\u0437\u0430\u0432\u043e\u0434\u0456.\n\u0421\u0423-85 \u043c\u0430\u043b\u0430 \u043d\u043e\u0432\u0443 85\u043c\u043c \u043d\u0430\u0440\u0456\u0437\u043d\u0443 \u0433\u0430\u0440\u043c\u0430\u0442\u0443, \u0430\u043d\u0430\u043b\u043e\u0433\u0456\u0447\u043d\u0443 \u0437 \u0442\u043e\u044e, \u044f\u043a\u0430 \u043d\u0435\u0437\u0430\u0431\u0430\u0440\u043e\u043c \u0431\u0443\u0434\u0435 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u043d\u0430 \u0442 34-85. \u0412\u043e\u043d\u0430 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u043b\u043e \u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u043b\u0435\u043c \u0432\u0440\u0430\u0436\u0430\u0442\u0438 \u0441\u0435\u0440\u0435\u0434\u043d\u0456 \u0442\u0430\u043d\u043a\u0438 \u0441\u0443\u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430 \u043d\u0430 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0456\u0457 \u0431\u0456\u043b\u044c\u0448\u0435 \u043a\u0456\u043b\u043e\u043c\u0435\u0442\u0440\u0430, \u0430 \u0432\u0430\u0436\u043a\u0456 - \u043d\u0430 800 \u043c\u0435\u0442\u0440\u0430\u0445. \u0413\u0430\u0440\u043c\u0430\u0442\u0430 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u044e\u0432\u0430\u043b\u0430\u0441\u044f \u043f\u0440\u044f\u043c\u043e \u0432 \u043a\u043e\u0440\u043f\u0443\u0441 \u0456 \u043c\u0430\u043b\u043e \u043a\u0443\u0442\u0438 \u043d\u0430\u0432\u0435\u0434\u0435\u043d\u043d\u044f \u0432 + - 8 \u0433\u0440\u0430\u0434\u0443\u0441\u0456\u0432. \u041a\u043e\u0440\u043f\u0443\u0441 \u0431\u0443\u0432 \u0432\u0456\u0434\u043d\u043e\u0441\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u043e\u0440\u0438\u0439 \u0456 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u0432 \u0437 \u043a\u043e\u043c\u0444\u043e\u0440\u0442\u043e\u043c \u043f\u0440\u0430\u0446\u044e\u0432\u0430\u0442\u0438 \u0435\u043a\u0456\u043f\u0430\u0436\u0443. \u0425\u043e\u0434\u043e\u0432\u0456 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u0421\u0423 \u0443\u0441\u043f\u0430\u0434\u043a\u0443\u0432\u0430\u043b\u0430 \u0432\u0456\u0434 \u0442-34. \u0411\u0440\u043e\u043d\u044f (45\u043c\u043c \u043f\u0456\u0434 \u043d\u0430\u0445\u0438\u043b\u043e\u043c) \u0437\u0430\u0431\u0435\u0437\u043f\u0435\u0447\u0443\u0432\u0430\u043b\u0430 \u0445\u043e\u0440\u043e\u0448\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u043e\u0441\u0442\u0440\u0456\u043b\u0456\u0432 \u0441\u0435\u0440\u0435\u0434\u043d\u0456\u0445 \u0442\u0430\u043d\u043a\u0456\u0432 \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430. \u0422\u0440\u043e\u0445\u0438 \u043f\u0456\u0437\u043d\u0456\u0448\u0435 \u0437 \u0432\u0438\u0445\u043e\u0434\u043e\u043c \u0442\u0430\u043d\u043a\u0430 \u0442 34-85 \u0421\u0443\u0448\u043a\u0438 \u0431\u0443\u043b\u0438 \u043f\u0435\u0440\u0435\u043e\u0431\u043b\u0430\u0434\u043d\u0430\u043d\u0456 \u043f\u0456\u0434 \u043d\u043e\u0432\u0443 100\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u0443. \u0426\u044f \u0433\u0430\u0440\u043c\u0430\u0442 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u043b\u0430 \u0443\u0441\u043f\u0456\u0448\u043d\u043e \u0431\u043e\u0440\u043e\u0442\u0438\u0441\u044f \u0437 \u0431\u0443\u0434\u044c-\u044f\u043a\u0438\u043c \u0442\u0430\u043d\u043a\u043e\u043c \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430, \u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0447\u0438 \u0456 \u0422\u0438\u0433\u0440 2. \u0422\u0430\u043a\u043e\u0436 \u0432\u0430\u0440\u0442\u043e \u0432\u0456\u0434\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u043d\u0438\u0437\u044c\u043a\u0438\u0439 \u0441\u0438\u043b\u0443\u0435\u0442 \u043c\u0430\u0448\u0438\u043d\u0438, \u044f\u043a\u0438\u0439 \u0441\u043f\u0440\u0438\u044f\u0432 \u0432\u0456\u0434\u043c\u0456\u043d\u043d\u043e\u043c\u0443 \u043c\u0430\u0441\u043a\u0443\u0432\u0430\u043d\u043d\u044e. \u0411\u0443\u043b\u0438 \u043f\u043e\u043b\u0456\u043f\u0448\u0435\u043d\u0456 \u043f\u0440\u0438\u043b\u0430\u0434\u0438 \u0441\u043f\u043e\u0441\u0442\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f \u0439 \u043f\u0440\u0438\u0446\u0456\u043b\u044e\u0432\u0430\u043d\u043d\u044f. \u0422\u0435\u0445\u043d\u0456\u043a\u0430 \u0431\u0443\u043b\u0430 \u043f\u0440\u043e\u0441\u0442\u0430 \u0432 \u043e\u0431\u0441\u043b\u0443\u0433\u043e\u0432\u0443\u0432\u0430\u043d\u043d\u0456. \u0426\u044f \u041f\u0422-\u0421\u0410\u0423 \u0437\u0430\u0441\u0442\u043e\u0441\u043e\u0432\u0443\u0432\u0430\u043b\u0430\u0441\u044f \u0434\u043e \u0441\u0430\u043c\u043e\u0433\u043e \u043a\u0456\u043d\u0446\u044f \u0432\u0456\u0439\u043d\u0438. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 4976 \u0421\u0423-100 \u0456 2050 \u0421\u0423-85.\n\n# Jagdpanther (\u042f\u0433\u0434\u043f\u0430\u043d\u0442\u0435\u0440\u0430)\nhttp://i.piccy.info/i9/201bcdc4469d546e806e4a38ba752ea7/1473836330/161907/1063747/_jvoDheMLik.jpg\n\nIn the middle of 1942 the German command decided to create a new Tank Destroyer with 88mm anti-tank gun Pak-43, using the basis of medium tank \u201cPanther\u201d. The development of this Tank Destroyer at first was carried by a Krupp company, then it was given to a Daimler-Benz and at last it was finished by a MIAG company. So, the destiny of Jagdpather was hard. The development has been complicated by the regular air raids allies, constant shortage of necessary parts and confusion in the serial versions of the machine. Jagdpanther took the most actively part in the Ardennes offensive and the Balaton operation.\nhttp://i.piccy.info/i9/d2e68a346dd9f511c77c83d8b77eaf87/1473836361/30639/1063747/XmYA_dzfCU8.jpg\n\nIn general, as a Tank Destroyer Jagdpanthere was great. Maneuverability and speed characteristics were good because of using \u201cPanther\u201d basis. Armor of Jagdpanthere (80 mm in the front with a good armor slope) confidently defended the machine and a crew at the distance of 800 meters from all Soviet tanks. The new 88mm anti-tank gun allowed to destroy the enemy at a distance of 1km. Rate of fire at the same time was very high - 8 rounds per minute. The fighting compartment inside of a car was spacious and was equipped with ventilation, increasing the convenience of the crew working. And don\u2019t forget than Jagdpanther had a low silhouette. The disadvantages were the relatively high cost of the machine (due to the use of scarce materials), unreliability and complexity of the transmission service. Jagdpanther has established itself as a formidable and dangerous opponent, specializing in the destruction of tanks. Total were produced 392 cars.\nhttp://i.piccy.info/i9/f1590af47cd302853838f357b7786d76/1473836385/192289/1063747/V3N3_0icSI.jpg\n\n>\u0423 \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0438 1942 \u0440\u043e\u043a\u0443 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u043d\u043d\u044f \u043f\u0440\u0438\u0439\u043d\u044f\u043b\u043e \u0440\u0456\u0448\u0435\u043d\u043d\u044f \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u041f\u0422-\u0421\u0410\u0423 \u0437 \u043d\u043e\u0432\u043e\u044e \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u043e\u044e 88\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u043e\u044e \u0420\u0430\u043a-43 \u043d\u0430 \u0431\u0430\u0437\u0456 \u0441\u0435\u0440\u0435\u0434\u043d\u044c\u043e\u0433\u043e \u0442\u0430\u043d\u043a\u0430 \u041f\u0430\u043d\u0442\u0435\u0440\u0430. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0443 \u041f\u0422-\u0421\u0410\u0423 \u0441\u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0432\u0435\u043b\u0430 \u0444\u0456\u0440\u043c\u0430 \u041a\u0440\u0443\u043f\u043f, \u043f\u0456\u0437\u043d\u0456\u0448\u0435 \u043f\u0440\u043e\u0435\u043a\u0442 \u0434\u043e\u0440\u043e\u0431\u043b\u044f\u0432\u0441\u044f \u0444\u0456\u0440\u043c\u043e\u044e Daimler-Benz, \u0430 \u0432 \u0441\u0430\u043c\u043e\u043c\u0443 \u043a\u0456\u043d\u0446\u0456 - MIAG. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u0431\u0443\u043b\u0430 \u0443\u0441\u043a\u043b\u0430\u0434\u043d\u0435\u043d\u0430 \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u0438\u043c\u0438 \u0430\u0432\u0456\u0430 \u043d\u0430\u043b\u044c\u043e\u0442\u0430\u043c\u0438 \u0441\u043e\u044e\u0437\u043d\u0438\u043a\u0456\u0432, \u043f\u043e\u0441\u0442\u0456\u0439\u043d\u0438\u043c\u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0447\u0430\u043c\u0438 \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u0438\u0445 \u0434\u0435\u0442\u0430\u043b\u0435\u0439 \u0456 \u043f\u043b\u0443\u0442\u0430\u043d\u0438\u043d\u043e\u044e \u0432 \u0441\u0435\u0440\u0456\u0439\u043d\u0438\u0445 \u043c\u043e\u0434\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u044f\u0445 \u043c\u0430\u0448\u0438\u043d\u0438. \u041d\u0430\u0439\u0431\u0456\u043b\u044c\u0448 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u042f\u0433\u0434\u043f\u0430\u043d\u0442\u0435\u0440\u0438 \u0431\u0440\u0430\u043b\u0438 \u0443\u0447\u0430\u0441\u0442\u044c \u0432 \u0410\u0440\u0434\u0435\u043d\u0441\u044c\u043a\u043e\u043c\u0443 \u043d\u0430\u0441\u0442\u0443\u043f\u0456 \u0442\u0430 \u0411\u0430\u043b\u0430\u0442\u043e\u043d\u0441\u044c\u043a\u0456\u0439 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457.\n\u0412 \u0446\u0456\u043b\u043e\u043c\u0443 \u0441\u0430\u043c\u043e\u0445\u043e\u0434\u043a\u0430 \u0432\u0438\u0439\u0448\u043b\u0430 \u0432\u0434\u0430\u043b\u043e\u044e. \u0425\u043e\u0434\u043e\u0432\u0456 \u0456 \u043c\u0430\u043d\u0435\u0432\u0440\u0435\u043d\u0456 \u044f\u043a\u043e\u0441\u0442\u0456 \u0432\u043e\u043d\u0430 \u0446\u0456\u043b\u043a\u043e\u043c \u0443\u0441\u043f\u0430\u0434\u043a\u0443\u0432\u0430\u043b\u0430 \u0432\u0456\u0434 \u041f\u0430\u043d\u0442\u0435\u0440\u0438 \u0456 \u0432\u043e\u043d\u0438 \u0431\u0443\u043b\u0438 \u043d\u0430 \u0432\u0438\u0441\u043e\u043a\u043e\u043c\u0443 \u0440\u0456\u0432\u043d\u0456. \u0411\u0440\u043e\u043d\u044f \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 (80 \u043c\u043c \u0432 \u043b\u043e\u0431\u0456 \u043f\u0456\u0434 \u0445\u043e\u0440\u043e\u0448\u0438\u043c \u043d\u0430\u0445\u0438\u043b\u043e\u043c) \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u043e \u0437\u0430\u0445\u0438\u0449\u0430\u043b\u0430 \u0457\u0457 \u043d\u0430 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0456\u044f\u0445 \u0432\u0456\u0434 800 \u043c\u0435\u0442\u0440\u0456\u0432. \u041d\u043e\u0432\u0430 88\u043c\u043c \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0430 \u0433\u0430\u0440\u043c\u0430\u0442\u0430 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u043b\u0430 \u0432\u0435\u0441\u0442\u0438 \u043f\u0440\u0438\u0446\u0456\u043b\u044c\u043d\u0438\u0439 \u0432\u043e\u0433\u043e\u043d\u044c \u043f\u043e \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0443 \u043d\u0430 \u0432\u0456\u0434\u0441\u0442\u0430\u043d\u0456 1\u043a\u043c. \u0422\u0435\u043c\u043f \u0441\u0442\u0440\u0456\u043b\u044c\u0431\u0438 \u043f\u0440\u0438 \u0446\u044c\u043e\u043c\u0443 \u0431\u0443\u0432 \u0434\u0443\u0436\u0435 \u0432\u0438\u0441\u043e\u043a\u0438\u0439 - 8 \u043f\u043e\u0441\u0442\u0440\u0456\u043b\u0456\u0432 \u043d\u0430 \u0445\u0432\u0438\u043b\u0438\u043d\u0443. \u0411\u043e\u0439\u043e\u0432\u0435 \u0432\u0456\u0434\u0434\u0456\u043b\u0435\u043d\u043d\u044f \u043c\u0430\u0448\u0438\u043d\u0438 \u0431\u0443\u043b\u043e \u043f\u0440\u043e\u0441\u0442\u043e\u0440\u0438\u043c \u0456 \u043e\u0441\u043d\u0430\u0449\u0443\u0432\u0430\u043b\u043e\u0441\u044f \u0432\u0435\u043d\u0442\u0438\u043b\u044f\u0446\u0456\u0454\u044e, \u0449\u043e \u043f\u0456\u0434\u0432\u0438\u0449\u0443\u0432\u0430\u043b\u043e \u0437\u0440\u0443\u0447\u043d\u043e\u0441\u0442\u0456 \u0440\u043e\u0431\u043e\u0442\u0438 \u0435\u043a\u0456\u043f\u0430\u0436\u0443. \u041f\u0440\u0438\u043b\u0430\u0434\u0438 \u0441\u043f\u043e\u0441\u0442\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f \u0456 \u043f\u0440\u0438\u0446\u0456\u043b\u0438 \u0431\u0443\u043b\u0438 \u044f\u043a \u0437\u0430\u0432\u0436\u0434\u0438 \u043d\u0430 \u0432\u0438\u0449\u043e\u043c\u0443 \u0440\u0456\u0432\u043d\u0456. \u041f\u0422-\u0421\u0410\u0423 \u043c\u0430\u043b\u0430 \u043d\u0438\u0437\u044c\u043a\u0438\u0439 \u0441\u0438\u043b\u0443\u0435\u0442. \u0417 \u043d\u0435\u0434\u043e\u043b\u0456\u043a\u0456\u0432 \u0432\u0430\u0440\u0442\u043e \u0432\u0456\u0434\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u0432\u0456\u0434\u043d\u043e\u0441\u043d\u043e \u0432\u0438\u0441\u043e\u043a\u0443 \u0432\u0430\u0440\u0442\u0456\u0441\u0442\u044c \u043c\u0430\u0448\u0438\u043d\u0438 (\u0447\u0435\u0440\u0435\u0437 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u044f \u0434\u0435\u0444\u0456\u0446\u0438\u0442\u043d\u0438\u0445 \u043c\u0430\u0442\u0435\u0440\u0456\u0430\u043b\u0456\u0432), \u043d\u0435\u043d\u0430\u0434\u0456\u0439\u043d\u0456\u0441\u0442\u044c \u0442\u0440\u0430\u043d\u0441\u043c\u0456\u0441\u0456\u0457 \u0456 \u0441\u043a\u043b\u0430\u0434\u043d\u0456\u0441\u0442\u044c \u0432 \u043e\u0431\u0441\u043b\u0443\u0433\u043e\u0432\u0443\u0432\u0430\u043d\u043d\u0456. \u0422\u0430\u043a\u043e\u0436 \u043d\u0435\u0437\u0430\u0434\u043e\u0432\u0456\u043b\u044c\u043d\u043e\u044e \u0431\u0443\u043b\u0430 \u0431\u0440\u043e\u043d\u044f \u0431\u043e\u0440\u0442\u0456\u0432. \u042f\u0433\u0434\u043f\u0430\u043d\u0442\u0435\u0440\u0430 \u0437\u0430\u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0432\u0430\u043b\u0430 \u0441\u0435\u0431\u0435 \u044f\u043a \u0433\u0440\u0456\u0437\u043d\u0438\u0439 \u0456 \u043d\u0435\u0431\u0435\u0437\u043f\u0435\u0447\u043d\u0438\u0439 \u0441\u0443\u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a, \u0449\u043e \u0441\u043f\u0435\u0446\u0456\u0430\u043b\u0456\u0437\u0443\u0454\u0442\u044c\u0441\u044f \u043d\u0430 \u0432\u0438\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0442\u0430\u043d\u043a\u0456\u0432. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 392 \u043c\u0430\u0448\u0438\u043d\u0438.\n\n# M18 \u201cHellcat\u201d\nhttp://i.piccy.info/i9/96dea13cac0295bde2f7c6dd2ddf0f93/1473836416/237135/1063747/Zt4ltwPq9qQ.jpg\n\nThe design of the American Tank Destroyer was caused by the US military doctrine. In contrast to the Germans and the Soviets, who had good-armored Tank Destroyers with a powerful anti-tank gun and mediocre mobility, American Tank Destroyers were oriented on a good mobility firstly. M18 was developed for quickly interception of enemy tank formations and the destruction of their flanks. This also caused the weak armor, small caliber of guns and excellent mobility equipment. M18 had been developed by General Motors Buick Division, the cost of one machine was 57,000 dollars. Total it was produced 2507 M18.\nAt first it was planned to put the 37mm gun, but very soon it was decided to replace it by the 57mm British gun. But this was not enough, and in the final version M18 was equipped with a 76mm cannon from Shermans. New Tank Destroyer had a very light weight, had weak armor (20mm in the forehead) and the rotating tower, which was unusual for that time. Suspension provides the convenience of driving on rough terrain; the engine allowed reaching speed up to 45 km per hour. M18 was easy to operate and convenient to use. In general, the machine was ambiguous, absorbing a lot of bold decisions.\nhttp://i.piccy.info/i9/df0129bd789f7923e8f0306e5a8b6520/1473836445/147058/1063747/pxmv2fJDVRs.jpg\n\n>\u041a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u043e\u0433\u043e \u0432\u0438\u043d\u0438\u0449\u0443\u0432\u0430\u0447\u0430 \u0442\u0430\u043d\u043a\u0456\u0432 \u043e\u0431\u0443\u043c\u043e\u0432\u043b\u0435\u043d\u0430 \u0432 \u043f\u0435\u0440\u0448\u0443 \u0447\u0435\u0440\u0433\u0443 \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u043e\u044e \u0432\u0456\u0439\u0441\u044c\u043a\u043e\u0432\u043e\u044e \u0434\u043e\u043a\u0442\u0440\u0438\u043d\u043e\u044e. \u041d\u0430 \u0432\u0456\u0434\u043c\u0456\u043d\u0443 \u0432\u0456\u0434 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0438\u0445 \u0456 \u0440\u0430\u0434\u044f\u043d\u0441\u044c\u043a\u0438\u0445 \u0430\u0440\u043c\u0456\u0439, \u0443 \u044f\u043a\u0438\u0445 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0456 \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 \u043c\u0430\u043b\u0438 \u0433\u0430\u0440\u043d\u0443 \u043b\u043e\u0431\u043e\u0432\u0443 \u0431\u0440\u043e\u043d\u044e, \u043f\u043e\u0442\u0443\u0436\u043d\u0443 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0443 \u0433\u0430\u0440\u043c\u0430\u0442\u0443 \u0456 \u043f\u043e\u0441\u0435\u0440\u0435\u0434\u043d\u044e \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0456\u0441\u0442\u044c, \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u0456 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0456 \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 \u0432 \u043f\u0435\u0440\u0448\u0443 \u0447\u0435\u0440\u0433\u0443 \u043f\u043e\u0432\u0438\u043d\u043d\u0456 \u0431\u0443\u043b\u0438 \u0431\u0443\u0442\u0438 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0456. \u041c18 \u0440\u043e\u0437\u0440\u043e\u0431\u043b\u044f\u0432\u0441\u044f \u0434\u043b\u044f \u0448\u0432\u0438\u0434\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0445\u043e\u043f\u043b\u0435\u043d\u043d\u044f \u0442\u0430\u043d\u043a\u043e\u0432\u0438\u0445 \u0437'\u0454\u0434\u043d\u0430\u043d\u044c \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430 \u0456 \u0437\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0457\u0445 \u0437 \u0444\u043b\u0430\u043d\u0433\u0456\u0432. \u0426\u0438\u043c \u0456 \u043e\u0431\u0443\u043c\u043e\u0432\u043b\u044e\u0432\u0430\u043b\u0430\u0441\u044f \u0441\u043b\u0430\u0431\u043a\u0435 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f, \u043d\u0435\u0432\u0435\u043b\u0438\u043a\u0438\u0439 \u043a\u0430\u043b\u0456\u0431\u0440 \u0433\u0430\u0440\u043c\u0430\u0442\u0438 \u0456 \u0432\u0456\u0434\u043c\u0456\u043d\u043d\u0430 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0456\u0441\u0442\u044c \u0442\u0435\u0445\u043d\u0456\u043a\u0438. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u0432\u0435\u043b\u0430\u0441\u044f \u0444\u0456\u0440\u043c\u043e\u044e General Motors Buick Division, \u0432\u0430\u0440\u0442\u0456\u0441\u0442\u044c \u043e\u0434\u043d\u0456\u0454\u0457 \u043c\u0430\u0448\u0438\u043d\u0438 \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b\u0430 57000 \u0434\u043e\u043b\u0430\u0440\u0456\u0432. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 2507 \u041f\u0422-\u0421\u0410\u0423 \u041c18.\n\u0421\u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u043f\u043b\u0430\u043d\u0443\u0432\u0430\u043b\u043e\u0441\u044f \u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u0438 37\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u0443, \u043f\u0440\u043e\u0442\u0435 \u0434\u0443\u0436\u0435 \u0441\u043a\u043e\u0440\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u0440\u0456\u0448\u0435\u043d\u043e \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0457\u0457 \u043d\u0430 57\u043c\u043c \u0431\u0440\u0438\u0442\u0430\u043d\u0441\u044c\u043a\u0443 \u0433\u0430\u0440\u043c\u0430\u0442\u0443. \u0410\u043b\u0435 \u0446\u044c\u043e\u0433\u043e \u0432\u0438\u044f\u0432\u0438\u043b\u043e\u0441\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043d\u044c\u043e, \u0456 \u0432 \u0444\u0456\u043d\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u0432\u0430\u0440\u0456\u0430\u043d\u0442\u0456 \u041c18 \u043e\u0441\u043d\u0430\u0449\u0443\u0432\u0430\u043b\u0430\u0441\u044f 76\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u043e\u044e, \u0449\u043e \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u044e\u0432\u0430\u043b\u0430\u0441\u044f \u043d\u0430 \u0442\u0430\u043d\u043a\u0438 \u0428\u0435\u0440\u043c\u0430\u043d. \u041f\u0422-\u0421\u0410\u0423 \u0431\u0443\u043b\u0430 \u0434\u0443\u0436\u0435 \u043b\u0435\u0433\u043a\u0430, \u043c\u0430\u043b\u0430 \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043a\u0443\u043b\u044c\u043e\u0432\u0435 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f (20\u043c\u043c \u0432 \u043b\u043e\u0431\u0456) \u0456 \u043f\u043e\u0432\u043e\u0440\u043e\u0442\u043d\u0443 \u0431\u0430\u0448\u0442\u0443, \u0449\u043e \u0431\u0443\u043b\u043e \u043d\u0435\u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u043d\u043e \u0434\u043b\u044f \u041f\u0422-\u0421\u0410\u0423 \u0442\u043e\u0433\u043e \u0447\u0430\u0441\u0443. \u041f\u0456\u0434\u0432\u0456\u0441\u043a\u0430 \u0437\u0430\u0431\u0435\u0437\u043f\u0435\u0447\u0443\u0432\u0430\u043b\u0430 \u0437\u0440\u0443\u0447\u043d\u0456\u0441\u0442\u044c \u0457\u0437\u0434\u0438 \u043f\u043e \u043f\u0435\u0440\u0435\u0441\u0456\u0447\u0435\u043d\u0456\u0439 \u043c\u0456\u0441\u0446\u0435\u0432\u043e\u0441\u0442\u0456, \u0434\u0432\u0438\u0433\u0443\u043d \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u0432 \u0440\u043e\u0437\u0432\u0438\u0432\u0430\u0442\u0438 \u0448\u0432\u0438\u0434\u043a\u0456\u0441\u0442\u044c \u0434\u043e 45 \u043a\u043c \u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0443. \u041c18 \u0431\u0443\u0432 \u043f\u0440\u043e\u0441\u0442\u0438\u0439 \u0432 \u043e\u0431\u0441\u043b\u0443\u0433\u043e\u0432\u0443\u0432\u0430\u043d\u043d\u0456 \u0456 \u0437\u0440\u0443\u0447\u043d\u0438\u0439 \u0432 \u0435\u043a\u0441\u043f\u043b\u0443\u0430\u0442\u0430\u0446\u0456\u0457. \u0412 \u0446\u0456\u043b\u043e\u043c\u0443 \u043c\u0430\u0448\u0438\u043d\u0430 \u0432\u0438\u0439\u0448\u043b\u0430 \u043d\u0435\u043e\u0434\u043d\u043e\u0437\u043d\u0430\u0447\u043d\u043e\u044e, \u0443\u0432\u0456\u0431\u0440\u0430\u0432\u0448\u0438 \u0432 \u0441\u0435\u0431\u0435 \u0431\u0435\u0437\u043b\u0456\u0447 \u0441\u043c\u0456\u043b\u0438\u0432\u0438\u0445 \u0440\u0456\u0448\u0435\u043d\u044c.\n\nAt the end I want to say, that the birth of Tank destroyers was caused by the necessary of destroying heavy enemy techniques. Next time I will tell you about machines with a real \u201cBig Guns\u201d.\n>\u041d\u0430 \u0446\u044c\u043e\u043c\u0443 \u043c\u0456 \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u043c\u043e \u043d\u0430\u0448\u0435 \u0437\u043d\u0430\u0439\u043e\u043c\u0441\u0442\u0432\u043e \u0437 \u043a\u043b\u0430\u0441\u043e\u043c \u041f\u0422-\u0421\u0410\u0423. \u041f\u043e\u044f\u0432\u0430 \u0441\u0430\u043c\u043e\u0445\u043e\u0434\u043e\u043a \u0431\u0443\u043b\u0430 \u0432\u0438\u043a\u043b\u0438\u043a\u0430\u043d\u0430 \u043d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u0456\u0441\u0442\u044e \u0437\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0432\u0430\u0436\u043a\u043e\u0457 \u0442\u0435\u0445\u043d\u0456\u043a\u0438 \u0441\u0443\u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430. \u041d\u0430 \u0447\u0435\u0440\u0437\u0456 \u043c\u0430\u0448\u0438\u043d\u0438 \u0437 \u0434\u0456\u0439\u0441\u043d\u043e \u0432\u0435\u043b\u0438\u043a\u0438\u043c\u0438 \u043a\u0430\u043b\u0456\u0431\u0440\u0430\u043c\u0438. \n\n***don't forget to follow @burmik123***", - "category": "tanks", - "children": 20, - "created": "2016-09-15T15:48:12", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "http://i.piccy.info/i9/3d367a52a1b8dc6c22f126332f335144/1473836215/88822/1063747/cqWCxy6vYP0.jpg", - "http://i.piccy.info/i9/5dc09cebc0ddfcd1fac4a8013ee385ad/1473836240/182233/1063747/5u9ghQyvkTc.jpg", - "http://i.piccy.info/i9/b5ef17359d201f4a7a61b38b5e6ca72f/1473836271/164656/1063747/kKktJUlUuXk.jpg", - "http://i.piccy.info/i9/4dc33c464a97ab5b3b8b294778f28103/1473836298/33303/1063747/WVaI_c18Lyw.jpg", - "http://i.piccy.info/i9/201bcdc4469d546e806e4a38ba752ea7/1473836330/161907/1063747/_jvoDheMLik.jpg", - "http://i.piccy.info/i9/d2e68a346dd9f511c77c83d8b77eaf87/1473836361/30639/1063747/XmYA_dzfCU8.jpg", - "http://i.piccy.info/i9/f1590af47cd302853838f357b7786d76/1473836385/192289/1063747/V3N3_0icSI.jpg", - "http://i.piccy.info/i9/96dea13cac0295bde2f7c6dd2ddf0f93/1473836416/237135/1063747/Zt4ltwPq9qQ.jpg", - "http://i.piccy.info/i9/df0129bd789f7923e8f0306e5a8b6520/1473836445/147058/1063747/pxmv2fJDVRs.jpg" - ], - "tags": [ - "tanks", - "ua", - "war" - ], - "users": [ - "burmik123" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 64027086650725, - "payout": 239.682, - "payout_at": "2016-09-22T15:48:12", - "pending_payout_value": "239.682 HBD", - "percent_hbd": 10000, - "permlink": "title-steel-monsters-tank-destroyers-of-ww-ii-eng-ua-featuring-burmik123-as-author", - "post_id": 1255397, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 257 - }, - "title": "Steel monsters. Tank Destroyers of WW II. ENG\\UA (featuring @burmik123 as author)", - "updated": "2016-09-15T16:20:39", - "url": "/tanks/@gavvet/title-steel-monsters-tank-destroyers-of-ww-ii-eng-ua-featuring-burmik123-as-author" - }, - { - "active_votes": [ - { - "rshares": "518200944380", - "voter": "barrie" + "voter": "endgame", + "rshares": "894044199" }, { - "rshares": "31620599440742", - "voter": "smooth" + "voter": "furion", + "rshares": "4920266872" }, { - "rshares": "5980286152113", - "voter": "freedom" + "voter": "steem1653", + "rshares": "2834923420" }, { - "rshares": "1968119541431", - "voter": "badassmother" + "voter": "steemit-life", + "rshares": "25221166135" }, { - "rshares": "2052934239988", - "voter": "hr1" + "voter": "sitaru", + "rshares": "13516878845" }, { - "rshares": "1337025448249", - "voter": "rossco99" + "voter": "snowden", + "rshares": "80777327" }, { - "rshares": "22864938197", - "voter": "jaewoocho" + "voter": "aaseb", + "rshares": "14167503457" }, { - "rshares": "1575899708999", - "voter": "joseph" + "voter": "karen13", + "rshares": "4209522316" }, { - "rshares": "98682346357", - "voter": "aizensou" + "voter": "nabilov", + "rshares": "243749878708" }, { - "rshares": "466049312123", - "voter": "recursive2" + "voter": "luisucv34", + "rshares": "677892916" }, { - "rshares": "462419963819", - "voter": "recursive3" + "voter": "creemej", + "rshares": "34761252099" }, { - "rshares": "3120252422964", - "voter": "recursive" + "voter": "poseidon", + "rshares": "233065746" }, { - "rshares": "1246183601", - "voter": "mineralwasser" + "voter": "thylbom", + "rshares": "82781233416" }, { - "rshares": "681017160441", - "voter": "boombastic" + "voter": "deanliu", + "rshares": "32543319555" }, { - "rshares": "1670000041", - "voter": "bingo-1" + "voter": "rainchen", + "rshares": "5428442637" }, { - "rshares": "5938790183563", - "voter": "smooth.witness" + "voter": "jl777", + "rshares": "204617448258" }, { - "rshares": "445638290328", - "voter": "boatymcboatface" + "voter": "pokemon", + "rshares": "103514864" }, { - "rshares": "9408499254", - "voter": "idol" + "voter": "positive", + "rshares": "817413671" }, { - "rshares": "18955732033", - "voter": "chitty" + "voter": "chloetaylor", + "rshares": "6361356981" }, { - "rshares": "65857071449", - "voter": "unosuke" + "voter": "proto", + "rshares": "17267278949" }, { - "rshares": "1619440533", - "voter": "jocelyn" + "voter": "sisterholics", + "rshares": "1805641835" }, { - "rshares": "15004166459", - "voter": "gregory-f" + "voter": "reported", + "rshares": "61286903" }, { - "rshares": "154334962550", - "voter": "edgeland" + "voter": "taker", + "rshares": "8734133724" }, { - "rshares": "9796891633", - "voter": "gregory60" + "voter": "krushing", + "rshares": "57607550" }, { - "rshares": "1290497974419", - "voter": "gavvet" + "voter": "laonie", + "rshares": "63852353198" }, { - "rshares": "89897083981", - "voter": "eeks" + "voter": "laoyao", + "rshares": "24561889230" }, { - "rshares": "1511911763", - "voter": "fkn" + "voter": "myfirst", + "rshares": "1332427399" }, { - "rshares": "122160437", - "voter": "paco-steem" + "voter": "somebody", + "rshares": "12961212091" }, { - "rshares": "1471599418", - "voter": "spaninv" + "voter": "flysaga", + "rshares": "484610059" }, { - "rshares": "1987313581", - "voter": "elishagh1" + "voter": "gmurph", + "rshares": "2084691327" }, { - "rshares": "8669787638", - "voter": "richman" + "voter": "minnowsunited", + "rshares": "513517114" }, { - "rshares": "599944427461", - "voter": "nanzo-scoop" + "voter": "midnightoil", + "rshares": "2863236010" }, { - "rshares": "9857442120", - "voter": "kefkius" + "voter": "whatyouganjado", + "rshares": "56653113" }, { - "rshares": "177393180428", - "voter": "mummyimperfect" + "voter": "kurtbeil", + "rshares": "3323984357" }, { - "rshares": "313687341", - "voter": "coar" + "voter": "xiaohui", + "rshares": "7161280807" }, { - "rshares": "106628883920", - "voter": "asch" + "voter": "elfkitchen", + "rshares": "323406893" }, { - "rshares": "1061184463", - "voter": "murh" + "voter": "oflyhigh", + "rshares": "5855543935" }, { - "rshares": "3187790925", - "voter": "cryptofunk" + "voter": "makaveli", + "rshares": "63373184" }, { - "rshares": "579494558", - "voter": "kodi" + "voter": "xiaokongcom", + "rshares": "223891286" }, { - "rshares": "2111403468", - "voter": "error" + "voter": "future24", + "rshares": "1780319109" }, { - "rshares": "985486511940", - "voter": "cyber" + "voter": "thebotkiller", + "rshares": "7709317035" }, { - "rshares": "61710806563", - "voter": "theshell" + "voter": "xianjun", + "rshares": "451324143" }, { - "rshares": "50879010002", - "voter": "ak2020" + "voter": "herbertmueller", + "rshares": "647921440" }, { - "rshares": "1616373298272", - "voter": "satoshifund" + "voter": "alexbones", + "rshares": "56109399" }, { - "rshares": "409218031185", - "voter": "taoteh1221" + "voter": "chinadaily", + "rshares": "2022625104" }, { - "rshares": "418880227", - "voter": "applecrisp" + "voter": "serejandmyself", + "rshares": "90172824082" }, { - "rshares": "95314034", - "voter": "stiletto" + "voter": "nang1", + "rshares": "163783062" }, { - "rshares": "19213136885", - "voter": "ziv" + "voter": "netaterra", + "rshares": "2982676167" }, { - "rshares": "15787116636", - "voter": "zakharya" + "voter": "dobbydaba", + "rshares": "52319145" }, { - "rshares": "280675599804", - "voter": "trogdor" + "voter": "andrewawerdna", + "rshares": "22559404087" }, { - "rshares": "19151208027", - "voter": "crypto-fan" + "voter": "ozertayiz", + "rshares": "77466140" }, { - "rshares": "121380113922", - "voter": "geoffrey" + "voter": "steemitpatina", + "rshares": "4633082667" }, { - "rshares": "16025451490", - "voter": "kimziv" + "voter": "salebored", + "rshares": "55922029" }, { - "rshares": "76008701316", - "voter": "emily-cook" + "voter": "runridefly", + "rshares": "2196862373" }, { - "rshares": "2187587354", - "voter": "superfreek" + "voter": "shenanigator", + "rshares": "115288806334" }, { - "rshares": "387326356155", - "voter": "fyrstikken" + "voter": "funkywanderer", + "rshares": "1709331623" }, { - "rshares": "49806164408", - "voter": "isteemit" + "voter": "richardcrill", + "rshares": "4594182561" }, { - "rshares": "29635215678", - "voter": "acassity" + "voter": "markrmorrisjr", + "rshares": "79155262951" }, { - "rshares": "280916636", - "voter": "ladyclair" + "voter": "bitdrone", + "rshares": "55917888" }, { - "rshares": "3898803498", - "voter": "michaellamden68" + "voter": "sleepcult", + "rshares": "55908853" }, { - "rshares": "19974572536", - "voter": "thebatchman" + "voter": "sponge-bob", + "rshares": "27677639861" }, { - "rshares": "153697599394", - "voter": "asmolokalo" + "voter": "doitvoluntarily", + "rshares": "12031039232" }, { - "rshares": "73848595449", - "voter": "rubybian" + "voter": "thecyclist", + "rshares": "67696453939" }, { - "rshares": "5270775482", - "voter": "riscadox" + "voter": "kev7000", + "rshares": "646493719" }, { - "rshares": "256623434", - "voter": "mstang83" + "voter": "analyzethis", + "rshares": "55266473" }, { - "rshares": "2597453094", - "voter": "romel" + "voter": "brains", + "rshares": "27671309914" }, { - "rshares": "150964836849", - "voter": "derekareith" + "voter": "burnin", + "rshares": "5866415576" }, { - "rshares": "7380400309", - "voter": "furion" + "voter": "bitcoinparadise", + "rshares": "1352324852" }, { - "rshares": "15308452303", - "voter": "bitshares101" + "voter": "funnyman", + "rshares": "4235074146" }, { - "rshares": "6591905710", - "voter": "owdy" + "voter": "f1111111", + "rshares": "50193769" }, { - "rshares": "14388449041", - "voter": "ausbitbank" + "voter": "anomaly", + "rshares": "339287005" }, { - "rshares": "159573949583", - "voter": "jacor" + "voter": "inarix03", + "rshares": "63405661" }, { - "rshares": "124958555", - "voter": "cynetyc" + "voter": "ola1", + "rshares": "98545946" }, { - "rshares": "85528935", - "voter": "snowden" + "voter": "michelle.gent", + "rshares": "4382226038" }, { - "rshares": "14487855165", - "voter": "aaseb" + "voter": "mari5555na", + "rshares": "66935282" }, { - "rshares": "4431052068", - "voter": "karen13" + "voter": "goldmatters", + "rshares": "31683945302" }, { - "rshares": "10646413479", - "voter": "deviedev" + "voter": "majes", + "rshares": "155180811" }, { - "rshares": "258981906731", - "voter": "nabilov" + "voter": "dealzgal", + "rshares": "71727340" }, { - "rshares": "847366145", - "voter": "luisucv34" + "voter": "storage", + "rshares": "68013381" }, { - "rshares": "54561525717", - "voter": "streetstyle" + "voter": "blackmarket", + "rshares": "58460105" }, { - "rshares": "7372366244", - "voter": "krystle" + "voter": "gifts", + "rshares": "61530871" }, { - "rshares": "46854512371", - "voter": "milestone" + "voter": "expat", + "rshares": "96643251" }, { - "rshares": "35782074085", - "voter": "creemej" + "voter": "toddemaher1", + "rshares": "129609202" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 120, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/story/@markrmorrisjr/original-fiction-anarchist-s-almanac-episode-15", + "blacklists": [] + }, + { + "post_id": 958959, + "author": "gavvet", + "permlink": "title-steel-monsters-tank-destroyers-of-ww-ii-eng-ua-featuring-burmik123-as-author", + "category": "tanks", + "title": "Steel monsters. Tank Destroyers of WW II. ENG\\UA (featuring @burmik123 as author)", + "body": "Hello everyone. I did not write anything about World War II for a long time. So today I decided to tell you about the Tank Destroyers. About the machines, specialization of which was the destruction of tanks. In this article I will talk about the classic representatives of this class.\n>Всім привіт. Давненько я не писав нічого на тему Другої Світової. І ось сьогодні я вирішив розповісти вам про ПТ-САУ. Про машини, спеціалізацією яких було знищення танків. У цій частині я розповім про класичних представників свого класу.\n\n# StuG III\nhttp://i.piccy.info/i9/3d367a52a1b8dc6c22f126332f335144/1473836215/88822/1063747/cqWCxy6vYP0.jpg\n\nLet's start with the most produced Tank Destroyer in the history. At the beginning of the WW II German command decided to create a mobile artillery on the basis of existing tanks, which would be able to support the infantry. The priority in new machine were the firepower, a good armor and cheapness. The firm Daimler-Benz successfully embodied these wishes into reality. There were about eight versions of StuG III, however, the main was Ausf. G. The cost of production of one StuG was quite low - 83 000 DM. Total was released 10500 machines. The basis for the creation was German tank PzKpfw III.\nInitially StuG III was equipped with a short-75mm gun, but when good armored Soviet T-34 came to the fronts, it was decided to replace short gun with a new long-barreled 75mm cannon Stuk 40 L / 48, which surely hit the Soviet tanks. StuG armor was quite good – 50 mm in a front took a punch at a distance of 1 km. StuG III was very compact in a size and had good mobility. The main disadvantage was little size which allowed bad conditions for crew working. StuG III took active part in a war from the very beginning to its end. \nhttp://i.piccy.info/i9/5dc09cebc0ddfcd1fac4a8013ee385ad/1473836240/182233/1063747/5u9ghQyvkTc.jpg\n\n>Почнемо з наймасовішї ПТ-САУ в історії. На початку війни німецьке командування вирішило створити мобільну артилерію на базі вже наявних танків, здатну підтримати піхоту. Пріоритетною була вогнева міць, гарне бронювання і дешевизна. Фірма Daimler-Benz вдало втілила ці побажання в реальність. Всього було близько восьми модифікацій StuG III, проте основною була Ausf. G. Вартість однієї ПТ-САУ була досить низькою - 83 000 марок. Сумарно було випущено 10500 машин. Базою для створення послужив танк PzKpfw III.\nСпочатку StuG III оснащувався короткоствольною 75мм гарматою, однак з появою на фронтах Т-34 було прийнято рішення замінити її на нову довгоствольну 75мм гармату Stuk 40 L / 48, яка впевнено вражала радянські танки. Броня самохідки у лобі була 50 мм і тримала удар на відстані 1 км. StuG III відрізнявся компактними розмірами, хорошою маневреністю та непоганою швидкістю. З недоліків варто відзначити незручність роботи екіпажу через невеликий за броньовий простір. Машина активно брала участь з самого початку війни і до її завершення.\n\n# Su-85 (100) СУ-85 (100)\nhttp://i.piccy.info/i9/b5ef17359d201f4a7a61b38b5e6ca72f/1473836271/164656/1063747/kKktJUlUuXk.jpg\n\nTowards in 1943 it became clear for the Soviet command that to deal effectively with new German tanks Soviet army required new, more modern machines and Tank Destroyers. It was decided to create new Tank Destroyer based on the T-34, driving performance and armor of which were very good. Development of a new machine was conducted at Uralmash factory.\nSu-85 had a new long-barreled 85mm gun, similar to that which will soon be installed at T-34-85. This gun was able to destroy enemy medium tanks at the distance of over a kilometer, and heavy tanks – at 800 meters to a front plate. The gun was placed in the middle part of the Tanks Destroyer body and had angles of + - 8 degrees. Also the inside size of tanks was nice which allowed good conditions for crew working. Driving characteristics inherited from the T-34-85. Armor (45 mm at the front with big armor slope) provided good protection against German medium tanks. A little later, with the release of the T-34-85, SU-85 was converted under the new 100mm gun. It was a tool for successfully destroying any enemy tanks, including Tiger 2. Also Su-100 had a very low silhouette, which contributed to an excellent disguise. Observation and aiming devices have been improved. SU-100 was easy to maintain. This Tank Destroyer applied to the end of the WW II. Total were released 4976 SU-100 and 2050 SU-85.\nhttp://i.piccy.info/i9/4dc33c464a97ab5b3b8b294778f28103/1473836298/33303/1063747/WVaI_c18Lyw.jpg\n\n>Ближче до 1943 року радянському командуванню стало зрозуміло, що для ефективної боротьби з новими німецькими танками потрібні більш сучасні машини. Було вирішено створити протитанкову самохідну установку на базі танка Т-34, ходові якості і броня якого були дуже хороші. Розробка нової ПТ-САУ велася на Уралмашзаводі.\nСУ-85 мала нову 85мм нарізну гармату, аналогічну з тою, яка незабаром буде встановлена на т 34-85. Вона дозволяло без проблем вражати середні танки супротивника на дистанції більше кілометра, а важкі - на 800 метрах. Гармата встановлювалася прямо в корпус і мало кути наведення в + - 8 градусів. Корпус був відносно просторий і дозволяв з комфортом працювати екіпажу. Ходові характеристики СУ успадкувала від т-34. Броня (45мм під нахилом) забезпечувала хороший захист від пострілів середніх танків противника. Трохи пізніше з виходом танка т 34-85 Сушки були переобладнані під нову 100мм гармату. Ця гармат дозволяла успішно боротися з будь-яким танком противника, включаючи і Тигр 2. Також варто відзначити низький силует машини, який сприяв відмінному маскуванню. Були поліпшені прилади спостереження й прицілювання. Техніка була проста в обслуговуванні. Ця ПТ-САУ застосовувалася до самого кінця війни. Всього було випущено 4976 СУ-100 і 2050 СУ-85.\n\n# Jagdpanther (Ягдпантера)\nhttp://i.piccy.info/i9/201bcdc4469d546e806e4a38ba752ea7/1473836330/161907/1063747/_jvoDheMLik.jpg\n\nIn the middle of 1942 the German command decided to create a new Tank Destroyer with 88mm anti-tank gun Pak-43, using the basis of medium tank “Panther”. The development of this Tank Destroyer at first was carried by a Krupp company, then it was given to a Daimler-Benz and at last it was finished by a MIAG company. So, the destiny of Jagdpather was hard. The development has been complicated by the regular air raids allies, constant shortage of necessary parts and confusion in the serial versions of the machine. Jagdpanther took the most actively part in the Ardennes offensive and the Balaton operation.\nhttp://i.piccy.info/i9/d2e68a346dd9f511c77c83d8b77eaf87/1473836361/30639/1063747/XmYA_dzfCU8.jpg\n\nIn general, as a Tank Destroyer Jagdpanthere was great. Maneuverability and speed characteristics were good because of using “Panther” basis. Armor of Jagdpanthere (80 mm in the front with a good armor slope) confidently defended the machine and a crew at the distance of 800 meters from all Soviet tanks. The new 88mm anti-tank gun allowed to destroy the enemy at a distance of 1km. Rate of fire at the same time was very high - 8 rounds per minute. The fighting compartment inside of a car was spacious and was equipped with ventilation, increasing the convenience of the crew working. And don’t forget than Jagdpanther had a low silhouette. The disadvantages were the relatively high cost of the machine (due to the use of scarce materials), unreliability and complexity of the transmission service. Jagdpanther has established itself as a formidable and dangerous opponent, specializing in the destruction of tanks. Total were produced 392 cars.\nhttp://i.piccy.info/i9/f1590af47cd302853838f357b7786d76/1473836385/192289/1063747/V3N3_0icSI.jpg\n\n>У середини 1942 року німецьке командування прийняло рішення створити ПТ-САУ з новою протитанковою 88мм гарматою Рак-43 на базі середнього танка Пантера. Розробку ПТ-САУ спочатку вела фірма Крупп, пізніше проект дороблявся фірмою Daimler-Benz, а в самому кінці - MIAG. Розробка була ускладнена регулярними авіа нальотами союзників, постійними недостачами потрібних деталей і плутаниною в серійних модифікаціях машини. Найбільш активно Ягдпантери брали участь в Арденському наступі та Балатонській операції.\nВ цілому самоходка вийшла вдалою. Ходові і маневрені якості вона цілком успадкувала від Пантери і вони були на високому рівні. Броня самохідки (80 мм в лобі під хорошим нахилом) впевнено захищала її на дистанціях від 800 метрів. Нова 88мм протитанкова гармата дозволяла вести прицільний вогонь по противнику на відстані 1км. Темп стрільби при цьому був дуже високий - 8 пострілів на хвилину. Бойове відділення машини було просторим і оснащувалося вентиляцією, що підвищувало зручності роботи екіпажу. Прилади спостереження і приціли були як завжди на вищому рівні. ПТ-САУ мала низький силует. З недоліків варто відзначити відносно високу вартість машини (через використання дефіцитних матеріалів), ненадійність трансмісії і складність в обслуговуванні. Також незадовільною була броня бортів. Ягдпантера зарекомендувала себе як грізний і небезпечний супротивник, що спеціалізується на винищення танків. Всього було випущено 392 машини.\n\n# M18 “Hellcat”\nhttp://i.piccy.info/i9/96dea13cac0295bde2f7c6dd2ddf0f93/1473836416/237135/1063747/Zt4ltwPq9qQ.jpg\n\nThe design of the American Tank Destroyer was caused by the US military doctrine. In contrast to the Germans and the Soviets, who had good-armored Tank Destroyers with a powerful anti-tank gun and mediocre mobility, American Tank Destroyers were oriented on a good mobility firstly. M18 was developed for quickly interception of enemy tank formations and the destruction of their flanks. This also caused the weak armor, small caliber of guns and excellent mobility equipment. M18 had been developed by General Motors Buick Division, the cost of one machine was 57,000 dollars. Total it was produced 2507 M18.\nAt first it was planned to put the 37mm gun, but very soon it was decided to replace it by the 57mm British gun. But this was not enough, and in the final version M18 was equipped with a 76mm cannon from Shermans. New Tank Destroyer had a very light weight, had weak armor (20mm in the forehead) and the rotating tower, which was unusual for that time. Suspension provides the convenience of driving on rough terrain; the engine allowed reaching speed up to 45 km per hour. M18 was easy to operate and convenient to use. In general, the machine was ambiguous, absorbing a lot of bold decisions.\nhttp://i.piccy.info/i9/df0129bd789f7923e8f0306e5a8b6520/1473836445/147058/1063747/pxmv2fJDVRs.jpg\n\n>Конструкція американського винищувача танків обумовлена в першу чергу американською військовою доктриною. На відміну від німецьких і радянських армій, у яких протитанкові самохідки мали гарну лобову броню, потужну протитанкову гармату і посередню мобільність, американські протитанкові самохідки в першу чергу повинні були бути мобільні. М18 розроблявся для швидкого перехоплення танкових з'єднань противника і знищення їх з флангів. Цим і обумовлювалася слабке бронювання, невеликий калібр гармати і відмінна мобільність техніки. Розробка велася фірмою General Motors Buick Division, вартість однієї машини становила 57000 доларів. Всього було випущено 2507 ПТ-САУ М18.\nСпочатку планувалося поставити 37мм гармату, проте дуже скоро було вирішено замінити її на 57мм британську гармату. Але цього виявилося недостатньо, і в фінальному варіанті М18 оснащувалася 76мм гарматою, що установлювалася на танки Шерман. ПТ-САУ була дуже легка, мала противокульове бронювання (20мм в лобі) і поворотну башту, що було нехарактерно для ПТ-САУ того часу. Підвіска забезпечувала зручність їзди по пересіченій місцевості, двигун дозволяв розвивати швидкість до 45 км на годину. М18 був простий в обслуговуванні і зручний в експлуатації. В цілому машина вийшла неоднозначною, увібравши в себе безліч сміливих рішень.\n\nAt the end I want to say, that the birth of Tank destroyers was caused by the necessary of destroying heavy enemy techniques. Next time I will tell you about machines with a real “Big Guns”.\n>На цьому мі завершимо наше знайомство з класом ПТ-САУ. Поява самоходок була викликана необхідністю знищення важкої техніки супротивника. На черзі машини з дійсно великими калібрами. \n\n***don't forget to follow @burmik123***", + "json_metadata": { + "tags": [ + "tanks", + "ua", + "war" + ], + "users": [ + "burmik123" + ], + "image": [ + "http://i.piccy.info/i9/3d367a52a1b8dc6c22f126332f335144/1473836215/88822/1063747/cqWCxy6vYP0.jpg", + "http://i.piccy.info/i9/5dc09cebc0ddfcd1fac4a8013ee385ad/1473836240/182233/1063747/5u9ghQyvkTc.jpg", + "http://i.piccy.info/i9/b5ef17359d201f4a7a61b38b5e6ca72f/1473836271/164656/1063747/kKktJUlUuXk.jpg", + "http://i.piccy.info/i9/4dc33c464a97ab5b3b8b294778f28103/1473836298/33303/1063747/WVaI_c18Lyw.jpg", + "http://i.piccy.info/i9/201bcdc4469d546e806e4a38ba752ea7/1473836330/161907/1063747/_jvoDheMLik.jpg", + "http://i.piccy.info/i9/d2e68a346dd9f511c77c83d8b77eaf87/1473836361/30639/1063747/XmYA_dzfCU8.jpg", + "http://i.piccy.info/i9/f1590af47cd302853838f357b7786d76/1473836385/192289/1063747/V3N3_0icSI.jpg", + "http://i.piccy.info/i9/96dea13cac0295bde2f7c6dd2ddf0f93/1473836416/237135/1063747/Zt4ltwPq9qQ.jpg", + "http://i.piccy.info/i9/df0129bd789f7923e8f0306e5a8b6520/1473836445/147058/1063747/pxmv2fJDVRs.jpg" + ] + }, + "created": "2016-09-15T15:48:12", + "updated": "2016-09-15T16:20:39", + "depth": 0, + "children": 20, + "net_rshares": 64027086650725, + "is_paidout": false, + "payout_at": "2016-09-16T16:11:44", + "payout": 239.867, + "pending_payout_value": "239.867 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "barrie", + "rshares": "504201493814" }, { - "rshares": "3800710913", - "voter": "maximkichev" + "voter": "smooth", + "rshares": "31621044834059" }, { - "rshares": "167298234999", - "voter": "blueorgy" + "voter": "anonymous", + "rshares": "231803784363" }, { - "rshares": "12587181720", - "voter": "benjiberigan" + "voter": "apple", + "rshares": "1992555050222" }, { - "rshares": "349575168", - "voter": "poseidon" + "voter": "badassmother", + "rshares": "1912040731624" }, { - "rshares": "7946556816", - "voter": "smolalit" + "voter": "hr1", + "rshares": "2053103615195" }, { - "rshares": "20522265015", - "voter": "mustafaomar" + "voter": "rossco99", + "rshares": "1304415071462" }, { - "rshares": "3506024506", - "voter": "simon.braki.love" + "voter": "wang", + "rshares": "2352777844031" }, { - "rshares": "82780602040", - "voter": "thylbom" + "voter": "jaewoocho", + "rshares": "22390337604" }, { - "rshares": "3695597998", - "voter": "bitcoiner" + "voter": "joseph", + "rshares": "1576668025571" }, { - "rshares": "32542074868", - "voter": "deanliu" + "voter": "recursive2", + "rshares": "466113536214" }, { - "rshares": "519376303", - "voter": "qonq99" + "voter": "recursive3", + "rshares": "452820496964" }, { - "rshares": "7659625135", - "voter": "neroru" + "voter": "masteryoda", + "rshares": "651951614915" }, { - "rshares": "215384334659", - "voter": "jl777" + "voter": "recursive", + "rshares": "3120381242465" }, { - "rshares": "1226120506", - "voter": "positive" + "voter": "mrs.agsexplorer", + "rshares": "91328598326" }, { - "rshares": "101547003699", - "voter": "crazymumzysa" + "voter": "bingo-0", + "rshares": "6959198181" }, { - "rshares": "50626015", - "voter": "steemchain" + "voter": "smooth.witness", + "rshares": "5939784887153" }, { - "rshares": "50626015", - "voter": "whalepool" + "voter": "boatymcboatface", + "rshares": "446272257734" }, { - "rshares": "5287640951", - "voter": "gustavopasquini" + "voter": "idol", + "rshares": "9167804100" }, { - "rshares": "114437903", - "voter": "firehorse" + "voter": "wpalczynski", + "rshares": "22448634206" }, { - "rshares": "18175932801", - "voter": "proto" + "voter": "steemrollin", + "rshares": "816380174873" }, { - "rshares": "2708251696", - "voter": "sisterholics" + "voter": "sakr", + "rshares": "5147541712" }, { - "rshares": "1444237397", - "voter": "alex.chien" + "voter": "chitty", + "rshares": "284355351943" }, { - "rshares": "8921793478", - "voter": "royalmacro" + "voter": "unosuke", + "rshares": "34575031962" }, { - "rshares": "1802321537", - "voter": "remlaps" + "voter": "noaommerrr", + "rshares": "481762857054" }, { - "rshares": "3353832611", - "voter": "glitterpig" + "voter": "jocelyn", + "rshares": "1578007819" }, { - "rshares": "119294413", - "voter": "picker" + "voter": "acidsun", + "rshares": "85270098112" }, { - "rshares": "870677269", - "voter": "metaflute" + "voter": "gregory-f", + "rshares": "14692173218" }, { - "rshares": "9193734776", - "voter": "taker" + "voter": "gregory60", + "rshares": "9604795718" }, { - "rshares": "6521104126", - "voter": "nekromarinist" + "voter": "jademont", + "rshares": "18382400031" }, { - "rshares": "2156971728", - "voter": "merej99" + "voter": "gavvet", + "rshares": "1294872282183" }, { - "rshares": "95768393690", - "voter": "laonie" + "voter": "eeks", + "rshares": "89897365397" }, { - "rshares": "157498807066", - "voter": "twinner" + "voter": "fkn", + "rshares": "1511911763" }, { - "rshares": "11693771864", - "voter": "thebluepanda" + "voter": "paco-steem", + "rshares": "122160437" }, { - "rshares": "24561066673", - "voter": "laoyao" + "voter": "spaninv", + "rshares": "1471653540" }, { - "rshares": "2664664784", - "voter": "myfirst" + "voter": "elishagh1", + "rshares": "1987313581" }, { - "rshares": "19440183808", - "voter": "somebody" + "voter": "richman", + "rshares": "8669811688" }, { - "rshares": "726860971", - "voter": "flysaga" + "voter": "nanzo-scoop", + "rshares": "584222819564" }, { - "rshares": "2501625986", - "voter": "gmurph" + "voter": "acidyo", + "rshares": "28116199940" }, { - "rshares": "4294504959", - "voter": "midnightoil" + "voter": "kefkius", + "rshares": "9857648383" }, { - "rshares": "2327843962", - "voter": "kalimor" + "voter": "mummyimperfect", + "rshares": "177403714671" }, { - "rshares": "84246848", - "voter": "coderg" + "voter": "coar", + "rshares": "313689446" }, { - "rshares": "4281232336", - "voter": "ullikume" + "voter": "asch", + "rshares": "106631248984" }, { - "rshares": "50577648", - "voter": "michellek" + "voter": "murh", + "rshares": "1061230469" }, { - "rshares": "3489905889", - "voter": "kurtbeil" + "voter": "slickwilly", + "rshares": "936957207" }, { - "rshares": "2370103862", - "voter": "steemleak" + "voter": "cryptofunk", + "rshares": "3187804154" }, { - "rshares": "117035295217", - "voter": "thisisbenbrick" + "voter": "kodi", + "rshares": "579494558" }, { - "rshares": "10740805506", - "voter": "xiaohui" + "voter": "error", + "rshares": "2057367746" }, { - "rshares": "88206053", - "voter": "bigsambucca" + "voter": "andu", + "rshares": "11847990151" }, { - "rshares": "485070652", - "voter": "elfkitchen" + "voter": "cyber", + "rshares": "962069747008" }, { - "rshares": "103387869456", - "voter": "joele" + "voter": "theshell", + "rshares": "61712174604" }, { - "rshares": "5855349715", - "voter": "oflyhigh" + "voter": "ak2020", + "rshares": "49577333486" }, { - "rshares": "15238192519", - "voter": "randyclemens" + "voter": "paul-labossiere", + "rshares": "24894446745" }, { - "rshares": "856854397", - "voter": "skavkaz" + "voter": "taoteh1221", + "rshares": "400880323222" }, { - "rshares": "335812576", - "voter": "xiaokongcom" + "voter": "stiletto", + "rshares": "95314034" }, { - "rshares": "13237481048", - "voter": "gargon" + "voter": "juanmiguelsalas", + "rshares": "56688940478" }, { - "rshares": "2076619689", - "voter": "natalymaty" + "voter": "ratel", + "rshares": "33781859925" }, { - "rshares": "2002858998", - "voter": "future24" + "voter": "zakharya", + "rshares": "15787327103" }, { - "rshares": "1156101266", - "voter": "darthnava" + "voter": "trogdor", + "rshares": "280717515045" }, { - "rshares": "3670417888", - "voter": "villainblack" + "voter": "tee-em", + "rshares": "5287383826" }, { - "rshares": "12672968653", - "voter": "cristi" + "voter": "geoffrey", + "rshares": "121383360964" }, { - "rshares": "676933902", - "voter": "xianjun" + "voter": "kimziv", + "rshares": "42737137488" }, { - "rshares": "26283514539", - "voter": "hanshotfirst" + "voter": "emily-cook", + "rshares": "74286777275" }, { - "rshares": "93798273061", - "voter": "miacats" + "voter": "superfreek", + "rshares": "2187597574" }, { - "rshares": "2249572206", - "voter": "njall" + "voter": "isteemit", + "rshares": "49806164408" }, { - "rshares": "75676352", - "voter": "razberrijam" + "voter": "spikykevin", + "rshares": "4091429870" }, { - "rshares": "6417335694", - "voter": "userlogin" + "voter": "venuspcs", + "rshares": "52090524796" }, { - "rshares": "2077210674", - "voter": "chinadaily" + "voter": "michaellamden68", + "rshares": "3989473346" }, { - "rshares": "90171375563", - "voter": "serejandmyself" + "voter": "thebatchman", + "rshares": "19974764064" }, { - "rshares": "4976983022", - "voter": "almerri" + "voter": "asmolokalo", + "rshares": "158997516614" }, { - "rshares": "9071955992", - "voter": "johnnyyash" + "voter": "getssidetracked", + "rshares": "8603166550" }, { - "rshares": "3221126774", - "voter": "macartem" + "voter": "riscadox", + "rshares": "5165418905" }, { - "rshares": "9827647000", - "voter": "gvargas123" + "voter": "konstantin", + "rshares": "17538291453" }, { - "rshares": "4658385146", - "voter": "themanualbot" + "voter": "mstang83", + "rshares": "261755903" }, { - "rshares": "10468564936", - "voter": "jaredcwillis" + "voter": "hitmeasap", + "rshares": "39099397056" }, { - "rshares": "3562389763", - "voter": "movievertigo" + "voter": "nexus1", + "rshares": "252977703" }, { - "rshares": "332237822", - "voter": "mrlogic" + "voter": "burmik123", + "rshares": "1515818756" }, { - "rshares": "415123347", - "voter": "mig641" + "voter": "ksenia", + "rshares": "280713275" }, { - "rshares": "57942270939", - "voter": "mandibil" + "voter": "trees", + "rshares": "1649898982" }, { - "rshares": "2028431875", - "voter": "shadowspub" + "voter": "strawhat", + "rshares": "231686197" }, { - "rshares": "4633082667", - "voter": "steemitpatina" + "voter": "domino", + "rshares": "219133173153" }, { - "rshares": "74550672", - "voter": "steembriefing" + "voter": "playtime", + "rshares": "251687687" }, { - "rshares": "55750195", - "voter": "riv" + "voter": "whitepeach", + "rshares": "404548352" }, { - "rshares": "2196854858", - "voter": "runridefly" + "voter": "furion", + "rshares": "7380400309" }, { - "rshares": "169049426", - "voter": "sammie" + "voter": "owdy", + "rshares": "6462652657" }, { - "rshares": "1857706060", - "voter": "funkywanderer" + "voter": "dicov", + "rshares": "1256448483" }, { - "rshares": "5053551216", - "voter": "richardcrill" + "voter": "steem1653", + "rshares": "2936170685" }, { - "rshares": "184076493", - "voter": "team101" + "voter": "cynetyc", + "rshares": "136318424" }, { - "rshares": "178419224", - "voter": "greatness" + "voter": "sebastien", + "rshares": "18770538147" }, { - "rshares": "54241736164", - "voter": "sponge-bob" + "voter": "sitaru", + "rshares": "13787216422" }, { - "rshares": "50798127", - "voter": "freesteem" + "voter": "snowden", + "rshares": "80777327" }, { - "rshares": "51964388", - "voter": "apparat" + "voter": "aaseb", + "rshares": "14167053756" }, { - "rshares": "1655277599", - "voter": "smisi" + "voter": "karen13", + "rshares": "4209522316" }, { - "rshares": "212888896291", - "voter": "asksisk" + "voter": "deviedev", + "rshares": "10646413479" }, { - "rshares": "330365849", - "voter": "panther" + "voter": "nabilov", + "rshares": "266599021635" }, { - "rshares": "59422248", - "voter": "plantbasedjunkie" + "voter": "dmacshady", + "rshares": "2286950597" }, { - "rshares": "55335855053", - "voter": "brains" + "voter": "luisucv34", + "rshares": "726313838" }, { - "rshares": "56573340", - "voter": "film-editor" + "voter": "herverisson", + "rshares": "8811980236" }, { - "rshares": "799615255", - "voter": "jessicanicklos" + "voter": "streetstyle", + "rshares": "53424827264" }, { - "rshares": "1369339863", - "voter": "steemafon" + "voter": "milestone", + "rshares": "46856213520" }, { - "rshares": "1072070421", - "voter": "positivesteem" + "voter": "maximkichev", + "rshares": "3801182358" }, { - "rshares": "5753129814", - "voter": "chick1" + "voter": "nippel66", + "rshares": "15070465231" }, { - "rshares": "3319554336", - "voter": "steempowerwhale" + "voter": "blueorgy", + "rshares": "167302364294" }, { - "rshares": "51637870", - "voter": "aoki" + "voter": "benjiberigan", + "rshares": "12849414672" }, { - "rshares": "51568971", - "voter": "typingagent" + "voter": "poseidon", + "rshares": "932248554" }, { - "rshares": "51581492", - "voter": "cwb" + "voter": "mustafaomar", + "rshares": "19717588129" }, { - "rshares": "339270470", - "voter": "anomaly" + "voter": "simon.braki.love", + "rshares": "3506039536" }, { - "rshares": "98524303", - "voter": "ola1" + "voter": "thylbom", + "rshares": "82781233416" }, { - "rshares": "70282046", - "voter": "mari5555na" + "voter": "deanliu", + "rshares": "32542976852" }, { - "rshares": "50871059", - "voter": "motion" + "voter": "sharker", + "rshares": "5609548617" }, { - "rshares": "50868434", - "voter": "jumbo" + "voter": "qonq99", + "rshares": "541016983" }, { - "rshares": "120278139", - "voter": "optimistic-crone" + "voter": "jl777", + "rshares": "204615752038" }, { - "rshares": "50536471", - "voter": "twistys" + "voter": "pokemon", + "rshares": "119983138" }, { - "rshares": "2216805889", - "voter": "bapparabi" + "voter": "positive", + "rshares": "1226120506" }, { - "rshares": "50487909", - "voter": "opticalillusions" + "voter": "chloetaylor", + "rshares": "6939662161" }, { - "rshares": "88287639", - "voter": "remlaps1" + "voter": "claudiop63", + "rshares": "43638419601" }, { - "rshares": "65849185", - "voter": "vuyusile" + "voter": "proto", + "rshares": "17267164725" }, { - "rshares": "247235040", - "voter": "darkminded153" + "voter": "sisterholics", + "rshares": "7222403812" }, { - "rshares": "2650993895", - "voter": "senseye" + "voter": "alex.chien", + "rshares": "1444237397" }, { - "rshares": "161849597", - "voter": "iberia" + "voter": "royalmacro", + "rshares": "8781903824" }, { - "rshares": "158666175", - "voter": "durex" + "voter": "remlaps", + "rshares": "1838367968" }, { - "rshares": "444435987", - "voter": "witchcraftblog" + "voter": "steemster1", + "rshares": "149624601" }, { - "rshares": "161212160", - "voter": "origin" + "voter": "glitterpig", + "rshares": "3353872300" }, { - "rshares": "4671589034", - "voter": "dresden" + "voter": "taker", + "rshares": "8734116589" }, { - "rshares": "160845765", - "voter": "caseyneistat" + "voter": "sharon", + "rshares": "59219358" }, { - "rshares": "159554050", - "voter": "planetearth" + "voter": "dumar022", + "rshares": "4999720649" }, { - "rshares": "159506164", - "voter": "greenpeace" + "voter": "merej99", + "rshares": "2077201153" }, { - "rshares": "159164412", - "voter": "disneypixar" + "voter": "lillianjones", + "rshares": "60342922" }, { - "rshares": "159062820", - "voter": "rule" + "voter": "laonie", + "rshares": "255401498427" }, { - "rshares": "158638676", - "voter": "icesteem" + "voter": "laoyao", + "rshares": "24561432292" }, { - "rshares": "158602900", - "voter": "steem-wallet" + "voter": "myfirst", + "rshares": "7994421908" }, { - "rshares": "155451903", - "voter": "steemthis" + "voter": "somebody", + "rshares": "51843535316" }, { - "rshares": "158541985", - "voter": "citigroup" + "voter": "flysaga", + "rshares": "1938401760" }, { - "rshares": "31683945302", - "voter": "goldmatters" + "voter": "gmurph", + "rshares": "2501627790" }, { - "rshares": "71727340", - "voter": "dealzgal" + "voter": "chris.roy", + "rshares": "1691577797" }, { - "rshares": "702613929", - "voter": "reddust" + "voter": "stormblaze", + "rshares": "1693568633" }, { - "rshares": "298391608", - "voter": "risabold" - } - ], - "author": "gavvet", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Is this a typo? Benefits? You ask. How could there be any possible benefit from having a disability?\n\nWell, in fact there are. And here are three unexpected benefits I have personally experienced in my own journey living with a degenerating eye condition.\n\n## Improved lateral thinking and innovation\nGrowing up with a vision impairment meant that there were often things that most people took for granted, but which I struggled to do. To do the same things, I needed to come up with creative solutions and alternative ways of doing things. So from a very young age, I learnt to think laterally and developed my problem solving skills. Most people are so use to perceiving the world in a certain way, but when you are stripped of one of your senses, you learn to perceive things in a different way.\n\nhttps://ipfs.pics/ipfs/QmWb5pzYhKKJZ8zmeYqVeV6oNqGi5h7yDEtxBbjwRdTUZ7\n\nWhen I was still living by myself a few years ago, I had the annoying task of having to cook for myself each night. The challenge I faced in the kitchen was not been able to read the labels on various bottles and containers. As a result, I couldn't tell which container was the salt and which one was the sugar, and all the packaging for the herbs looked the same. So how did I manage? Instead of using sight, I used my sense of smell to distinguish between the herbs, and for some ingredients where I couldn't use the sense of smell, I used different containers and labels to help me identify all the different ingredients.\n\nAnd this leads on to the second benefit.\n\n## Improved memory\nPeople who know me well often comment on my ability to remember things. In fact, I've noticed this in many other people I know who also have a vision impairment. I think this is due to the fact that for someone with a vision impairment to thrive in a sighted world, we often need to make extra effort to adapt to our circumstances.\n\nFor example, I remember when I was still in university, I had to do many presentations. For most people, they could refer to speech notes as they are presenting. However, for me, this was not possible, as I couldn't read speech notes no matter how big the font was. Furthermore, as I have some sight, I never needed to learn braille, which meant I couldn't refer to braille notes either. _As a side note, this is why the title of my memoir which I've been posting on Steemit is \"Living in Between Two Worlds\", because I have often found myself being caught between the world of the sighted and the world of the blind, and also between the identity of being Chinese but not fully Chinese, and being Australian but not fully Australian._ As a result, every time I had to do a presentation, I would always remember the entire speech. Over time, this has become second nature to me. I have learnt how to force things into my memory, and be innovative when I need to.\n\n## Resilience\nGrowing up with a vision impairment, I experienced a lot of bullying at school and a lot of hurtful comments and actions from people, sometimes done knowingly and sometimes unknowingly. Sometimes this comes in the form of a patronising comment, and sometimes from a look or stare. The interesting thing with people staring and giving me strange looks is that I can often notice people are doing it to me because I have some peripheral vision, however people generally can't tell I'm looking back at them because it doesn't seem like I'm looking at them. Most of the time however, those hurtful words and actions are done out of ignorance and a lack of understanding, rather then out of malice.\n\n#### But from all these things I've experienced, it has made me a stronger and more resilient person.\nAs a result, whatever unforeseen things I may experience in life, there's not much that can knock me out completely. I have developed the ability to adapt to changing circumstances and stay optimistic, because as they say:\n### What doesn't kill you, makes you stronger.\n\nSo I'm thankful to God for the person I have become today. Disability isn't all bad. Without what I have gone through with my vision impairment, I wouldn't be the person I am today, and for these reasons, I am thankful.\n\nTo read more about my story, you can read my short memoir series. You can find [Part 1 here.](https://steemit.com/memoir/@nextgen622/living-in-between-two-worlds-my-memoir-part-1-updated)\n\nYou can also follow me on @nextgen622", - "category": "life", - "children": 10, - "created": "2016-09-15T14:46:21", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://ipfs.pics/ipfs/QmWb5pzYhKKJZ8zmeYqVeV6oNqGi5h7yDEtxBbjwRdTUZ7" - ], - "links": [ - "https://steemit.com/memoir/@nextgen622/living-in-between-two-worlds-my-memoir-part-1-updated" - ], - "tags": [ - "life", - "disability", - "strength" - ], - "users": [ - "nextgen622" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 66119907751704, - "payout": 254.34, - "payout_at": "2016-09-22T14:46:21", - "pending_payout_value": "254.340 HBD", - "percent_hbd": 10000, - "permlink": "three-benefits-of-living-with-a-disability-featuring-nextgen622-as-author", - "post_id": 1254663, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 219 - }, - "title": "Three benefits of living with a disability (featuring @nextgen622 as author)", - "updated": "2016-09-15T14:46:21", - "url": "/life/@gavvet/three-benefits-of-living-with-a-disability-featuring-nextgen622-as-author" - }, - { - "active_votes": [ + "voter": "midnightoil", + "rshares": "11452681912" + }, + { + "voter": "kalimor", + "rshares": "2327843962" + }, + { + "voter": "coderg", + "rshares": "84246848" + }, { - "rshares": "518193384474", - "voter": "barrie" + "voter": "ullikume", + "rshares": "4190252928" }, { - "rshares": "31620272424965", - "voter": "smooth" + "voter": "kurtbeil", + "rshares": "3323749960" }, { - "rshares": "7465716124744", - "voter": "firstclass" + "voter": "xiaohui", + "rshares": "28644139641" }, { - "rshares": "1991230051184", - "voter": "badassmother" + "voter": "dolov", + "rshares": "1349109906" }, { - "rshares": "2052900127917", - "voter": "hr1" + "voter": "elfkitchen", + "rshares": "1293603524" }, { - "rshares": "1337025448249", - "voter": "rossco99" + "voter": "joele", + "rshares": "103394476995" }, { - "rshares": "22864591759", - "voter": "jaewoocho" + "voter": "oflyhigh", + "rshares": "5855492830" }, { - "rshares": "1619082976045", - "voter": "joseph" + "voter": "xiaokongcom", + "rshares": "895550716" }, { - "rshares": "223905651656", - "voter": "b0y2k" + "voter": "natalymaty", + "rshares": "2118152083" }, { - "rshares": "475735272749", - "voter": "recursive2" + "voter": "msjennifer", + "rshares": "60819615" }, { - "rshares": "462392248872", - "voter": "recursive3" + "voter": "ciao", + "rshares": "55925537" }, { - "rshares": "3188060280256", - "voter": "recursive" + "voter": "darthnava", + "rshares": "1156101266" }, { - "rshares": "1246152952", - "voter": "mineralwasser" + "voter": "villainblack", + "rshares": "3670417888" }, { - "rshares": "680994650765", - "voter": "boombastic" + "voter": "thebotkiller", + "rshares": "8410164039" }, { - "rshares": "94091830376", - "voter": "mrs.agsexplorer" + "voter": "jrcornel", + "rshares": "3033050865" }, { - "rshares": "6959061481", - "voter": "bingo-0" + "voter": "steemo", + "rshares": "54217761" }, { - "rshares": "1669969392", - "voter": "bingo-1" + "voter": "xianjun", + "rshares": "1805262907" }, { - "rshares": "5938061627471", - "voter": "smooth.witness" + "voter": "hanshotfirst", + "rshares": "26819912795" }, { - "rshares": "9408405427", - "voter": "idol" + "voter": "steema", + "rshares": "54077897" }, { - "rshares": "134476949201", - "voter": "team" + "voter": "confucius", + "rshares": "71282219" }, { - "rshares": "290603380713", - "voter": "chitty" + "voter": "miacats", + "rshares": "93801736989" }, { - "rshares": "59271072026", - "voter": "unosuke" + "voter": "njall", + "rshares": "2249572206" }, { - "rshares": "10884676283", - "voter": "yefet" + "voter": "jarvis", + "rshares": "54909929" }, { - "rshares": "1619428804", - "voter": "jocelyn" + "voter": "microluck", + "rshares": "118219525" }, { - "rshares": "15316591171", - "voter": "gregory-f" + "voter": "fortuner", + "rshares": "54313084" }, { - "rshares": "9028507975", - "voter": "gregory60" + "voter": "chinadaily", + "rshares": "2077267800" }, { - "rshares": "1285091135093", - "voter": "gavvet" + "voter": "almerri", + "rshares": "4879530405" }, { - "rshares": "89896753810", - "voter": "eeks" + "voter": "johnnyyash", + "rshares": "9253395112" }, { - "rshares": "1511911763", - "voter": "fkn" + "voter": "gvargas123", + "rshares": "10344891579" }, { - "rshares": "122160437", - "voter": "paco-steem" + "voter": "themanualbot", + "rshares": "4751552849" }, { - "rshares": "1471581374", - "voter": "spaninv" + "voter": "nang1", + "rshares": "136485885" }, { - "rshares": "1987313581", - "voter": "elishagh1" + "voter": "telos", + "rshares": "13839238841" }, { - "rshares": "8669787638", - "voter": "richman" + "voter": "johnbyrd", + "rshares": "51877132" }, { - "rshares": "599925765931", - "voter": "nanzo-scoop" + "voter": "thomasaustin", + "rshares": "53039566" }, { - "rshares": "9857353705", - "voter": "kefkius" + "voter": "thermor", + "rshares": "51859074" }, { - "rshares": "177389912085", - "voter": "mummyimperfect" + "voter": "ficholl", + "rshares": "51870077" }, { - "rshares": "313687341", - "voter": "coar" + "voter": "widell", + "rshares": "53030738" }, { - "rshares": "106628118273", - "voter": "asch" + "voter": "revelbrooks", + "rshares": "51481279" }, { - "rshares": "1061159202", - "voter": "murh" + "voter": "mig641", + "rshares": "406983674" }, { - "rshares": "3187771076", - "voter": "cryptofunk" + "voter": "kamil5", + "rshares": "169608367" }, { - "rshares": "591084449", - "voter": "kodi" + "voter": "dobbydaba", + "rshares": "59295031" }, { - "rshares": "2111391740", - "voter": "error" + "voter": "andrewawerdna", + "rshares": "24294717617" }, { - "rshares": "985477191740", - "voter": "cyber" + "voter": "mandibil", + "rshares": "55367485477" }, { - "rshares": "61710385546", - "voter": "theshell" + "voter": "steemitpatina", + "rshares": "4633082667" }, { - "rshares": "50878059993", - "voter": "ak2020" + "voter": "curpose", + "rshares": "51562255" }, { - "rshares": "13256265846", - "voter": "johnerfx" + "voter": "steembriefing", + "rshares": "76072115" }, { - "rshares": "409218031185", - "voter": "taoteh1221" + "voter": "riv", + "rshares": "55750195" }, { - "rshares": "95314034", - "voter": "stiletto" + "voter": "runridefly", + "rshares": "2196862373" }, { - "rshares": "55528544371", - "voter": "kus-knee" + "voter": "funkywanderer", + "rshares": "1783607101" }, { - "rshares": "1177332471", - "voter": "johnerminer" + "voter": "jeremyfromwi", + "rshares": "2249900457" }, { - "rshares": "19213121851", - "voter": "ziv" + "voter": "eight-rad", + "rshares": "2056057288" }, { - "rshares": "280666949780", - "voter": "trogdor" + "voter": "troich", + "rshares": "51712804" }, { - "rshares": "6652542986", - "voter": "grandpere" + "voter": "aggroed", + "rshares": "9458733324" }, { - "rshares": "5821005163", - "voter": "mark-waser" + "voter": "crion", + "rshares": "51718188" }, { - "rshares": "124413655063", - "voter": "geoffrey" + "voter": "greatness", + "rshares": "182060433" }, { - "rshares": "16025151061", - "voter": "kimziv" + "voter": "hitherise", + "rshares": "51388276" }, { - "rshares": "77734412526", - "voter": "emily-cook" + "voter": "wiss", + "rshares": "51379706" }, { - "rshares": "2187587354", - "voter": "superfreek" + "voter": "sponge-bob", + "rshares": "54247555535" }, { - "rshares": "53269952968", - "voter": "pmartynov" + "voter": "stroully", + "rshares": "52143228" }, { - "rshares": "48620303351", - "voter": "isteemit" + "voter": "ruscion", + "rshares": "88628906" }, { - "rshares": "30279417098", - "voter": "acassity" + "voter": "tatianka", + "rshares": "1086106040" }, { - "rshares": "65769554169", - "voter": "norbu" + "voter": "apparat", + "rshares": "54175638" }, { - "rshares": "3808133649", - "voter": "michaellamden68" + "voter": "thadm", + "rshares": "51814474" }, { - "rshares": "20382096581", - "voter": "thebatchman" + "voter": "prof", + "rshares": "51812703" }, { - "rshares": "158987747182", - "voter": "asmolokalo" + "voter": "thecyclist", + "rshares": "157957231026" }, { - "rshares": "76019855821", - "voter": "rubybian" + "voter": "smisi", + "rshares": "1655277599" }, { - "rshares": "5270775482", - "voter": "riscadox" + "voter": "yorsens", + "rshares": "50370757" }, { - "rshares": "17903672525", - "voter": "konstantin" + "voter": "asksisk", + "rshares": "201688406600" }, { - "rshares": "256623434", - "voter": "mstang83" + "voter": "bane", + "rshares": "50065875" }, { - "rshares": "373878481829", - "voter": "fabio" + "voter": "vive", + "rshares": "50059754" }, { - "rshares": "6941291365", - "voter": "gatoso" + "voter": "coad", + "rshares": "51142585" }, { - "rshares": "7380400309", - "voter": "furion" + "voter": "sofa", + "rshares": "51922012" }, { - "rshares": "159573949583", - "voter": "jacor" + "voter": "panther", + "rshares": "323483227" }, { - "rshares": "147678292", - "voter": "cynetyc" + "voter": "plantbasedjunkie", + "rshares": "60610693" }, { - "rshares": "18770255506", - "voter": "sebastien" + "voter": "brains", + "rshares": "55341943517" }, { - "rshares": "12011479963", - "voter": "asim" + "voter": "mohamedmashaal", + "rshares": "517900727" }, { - "rshares": "14487056742", - "voter": "aaseb" + "voter": "skypilot", + "rshares": "20617809185" }, { - "rshares": "4431046054", - "voter": "karen13" + "voter": "ailo", + "rshares": "50933404" }, { - "rshares": "10645918815", - "voter": "deviedev" + "voter": "chick1", + "rshares": "5753290068" }, { - "rshares": "251364791827", - "voter": "nabilov" + "voter": "aoki", + "rshares": "50584036" }, { - "rshares": "441803588", - "voter": "karenmckersie" + "voter": "typingagent", + "rshares": "51568971" }, { - "rshares": "871576606", - "voter": "luisucv34" + "voter": "cwb", + "rshares": "51581492" }, { - "rshares": "54561525717", - "voter": "streetstyle" + "voter": "anomaly", + "rshares": "339274981" }, { - "rshares": "46854241122", - "voter": "milestone" + "voter": "ola1", + "rshares": "147786454" }, { - "rshares": "35782000412", - "voter": "creemej" + "voter": "eavy", + "rshares": "50441122" }, { - "rshares": "3878126092", - "voter": "maximkichev" + "voter": "roto", + "rshares": "50454901" }, { - "rshares": "15377574672", - "voter": "nippel66" + "voter": "mari5555na", + "rshares": "71955428" }, { - "rshares": "171280078005", - "voter": "blueorgy" + "voter": "iggy", + "rshares": "157644916" }, { - "rshares": "12324948767", - "voter": "benjiberigan" + "voter": "dragonice", + "rshares": "51232949" }, { - "rshares": "349568852", - "voter": "poseidon" + "voter": "oxygen", + "rshares": "50907857" }, { - "rshares": "2182574144", - "voter": "iamwne" + "voter": "motion", + "rshares": "50871059" }, { - "rshares": "347965502695", - "voter": "calaber24p" + "voter": "factom", + "rshares": "50796122" }, { - "rshares": "20119867662", - "voter": "mustafaomar" + "voter": "autodesk", + "rshares": "50794039" }, { - "rshares": "3576144996", - "voter": "simon.braki.love" + "voter": "penthouse", + "rshares": "50565798" }, { - "rshares": "82813520861", - "voter": "thylbom" + "voter": "fenix", + "rshares": "50538694" }, { - "rshares": "3720107267", - "voter": "azurejasper" + "voter": "bapparabi", + "rshares": "2118281183" }, { - "rshares": "32541921491", - "voter": "deanliu" + "voter": "opticalillusions", + "rshares": "50487909" }, { - "rshares": "31308203650", - "voter": "sauravrungta" + "voter": "albertheijn", + "rshares": "50349676" }, { - "rshares": "7659625135", - "voter": "neroru" + "voter": "remlaps1", + "rshares": "90053391" }, { - "rshares": "215383763306", - "voter": "jl777" + "voter": "darkminded153", + "rshares": "239963421" }, { - "rshares": "1226120506", - "voter": "positive" + "voter": "grisha-danunaher", + "rshares": "527464783" }, { - "rshares": "103577805737", - "voter": "crazymumzysa" + "voter": "igtes", + "rshares": "72826233" }, { - "rshares": "6232841459", - "voter": "summonerrk" + "voter": "buffett", + "rshares": "141679752" }, { - "rshares": "14894144779", - "voter": "lemooljiang" + "voter": "ranger", + "rshares": "161815656" }, { - "rshares": "904575538", - "voter": "happyphoenix" + "voter": "witchcraftblog", + "rshares": "444435987" + }, + { + "voter": "shadowproject", + "rshares": "161693690" + }, + { + "voter": "user45-87", + "rshares": "160975092" + }, + { + "voter": "planet", + "rshares": "157182398" + }, + { + "voter": "disneypixar", + "rshares": "156043541" + }, + { + "voter": "reef", + "rshares": "159143891" + }, + { + "voter": "steem-wallet", + "rshares": "158602900" + }, + { + "voter": "goldmatters", + "rshares": "31683945302" + }, + { + "voter": "storage", + "rshares": "68013381" + }, + { + "voter": "blackmarket", + "rshares": "58460105" + }, + { + "voter": "gifts", + "rshares": "61530871" + }, + { + "voter": "toddemaher1", + "rshares": "135637537" + }, + { + "voter": "milank", + "rshares": "153397644" + }, + { + "voter": "denise12", + "rshares": "153325742" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 257, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/tanks/@gavvet/title-steel-monsters-tank-destroyers-of-ww-ii-eng-ua-featuring-burmik123-as-author", + "blacklists": [] + }, + { + "post_id": 958372, + "author": "gavvet", + "permlink": "three-benefits-of-living-with-a-disability-featuring-nextgen622-as-author", + "category": "life", + "title": "Three benefits of living with a disability (featuring @nextgen622 as author)", + "body": "Is this a typo? Benefits? You ask. How could there be any possible benefit from having a disability?\n\nWell, in fact there are. And here are three unexpected benefits I have personally experienced in my own journey living with a degenerating eye condition.\n\n## Improved lateral thinking and innovation\nGrowing up with a vision impairment meant that there were often things that most people took for granted, but which I struggled to do. To do the same things, I needed to come up with creative solutions and alternative ways of doing things. So from a very young age, I learnt to think laterally and developed my problem solving skills. Most people are so use to perceiving the world in a certain way, but when you are stripped of one of your senses, you learn to perceive things in a different way.\n\nhttps://ipfs.pics/ipfs/QmWb5pzYhKKJZ8zmeYqVeV6oNqGi5h7yDEtxBbjwRdTUZ7\n\nWhen I was still living by myself a few years ago, I had the annoying task of having to cook for myself each night. The challenge I faced in the kitchen was not been able to read the labels on various bottles and containers. As a result, I couldn't tell which container was the salt and which one was the sugar, and all the packaging for the herbs looked the same. So how did I manage? Instead of using sight, I used my sense of smell to distinguish between the herbs, and for some ingredients where I couldn't use the sense of smell, I used different containers and labels to help me identify all the different ingredients.\n\nAnd this leads on to the second benefit.\n\n## Improved memory\nPeople who know me well often comment on my ability to remember things. In fact, I've noticed this in many other people I know who also have a vision impairment. I think this is due to the fact that for someone with a vision impairment to thrive in a sighted world, we often need to make extra effort to adapt to our circumstances.\n\nFor example, I remember when I was still in university, I had to do many presentations. For most people, they could refer to speech notes as they are presenting. However, for me, this was not possible, as I couldn't read speech notes no matter how big the font was. Furthermore, as I have some sight, I never needed to learn braille, which meant I couldn't refer to braille notes either. _As a side note, this is why the title of my memoir which I've been posting on Steemit is \"Living in Between Two Worlds\", because I have often found myself being caught between the world of the sighted and the world of the blind, and also between the identity of being Chinese but not fully Chinese, and being Australian but not fully Australian._ As a result, every time I had to do a presentation, I would always remember the entire speech. Over time, this has become second nature to me. I have learnt how to force things into my memory, and be innovative when I need to.\n\n## Resilience\nGrowing up with a vision impairment, I experienced a lot of bullying at school and a lot of hurtful comments and actions from people, sometimes done knowingly and sometimes unknowingly. Sometimes this comes in the form of a patronising comment, and sometimes from a look or stare. The interesting thing with people staring and giving me strange looks is that I can often notice people are doing it to me because I have some peripheral vision, however people generally can't tell I'm looking back at them because it doesn't seem like I'm looking at them. Most of the time however, those hurtful words and actions are done out of ignorance and a lack of understanding, rather then out of malice.\n\n#### But from all these things I've experienced, it has made me a stronger and more resilient person.\nAs a result, whatever unforeseen things I may experience in life, there's not much that can knock me out completely. I have developed the ability to adapt to changing circumstances and stay optimistic, because as they say:\n### What doesn't kill you, makes you stronger.\n\nSo I'm thankful to God for the person I have become today. Disability isn't all bad. Without what I have gone through with my vision impairment, I wouldn't be the person I am today, and for these reasons, I am thankful.\n\nTo read more about my story, you can read my short memoir series. You can find [Part 1 here.](https://steemit.com/memoir/@nextgen622/living-in-between-two-worlds-my-memoir-part-1-updated)\n\nYou can also follow me on @nextgen622", + "json_metadata": { + "tags": [ + "life", + "disability", + "strength" + ], + "users": [ + "nextgen622" + ], + "image": [ + "https://ipfs.pics/ipfs/QmWb5pzYhKKJZ8zmeYqVeV6oNqGi5h7yDEtxBbjwRdTUZ7" + ], + "links": [ + "https://steemit.com/memoir/@nextgen622/living-in-between-two-worlds-my-memoir-part-1-updated" + ] + }, + "created": "2016-09-15T14:46:21", + "updated": "2016-09-15T14:46:21", + "depth": 0, + "children": 10, + "net_rshares": 66119907751704, + "is_paidout": false, + "payout_at": "2016-09-16T15:12:56", + "payout": 255.328, + "pending_payout_value": "255.328 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "barrie", + "rshares": "518200944380" }, { - "rshares": "43631243627", - "voter": "claudiop63" + "voter": "smooth", + "rshares": "31620599440742" }, { - "rshares": "18175890702", - "voter": "proto" + "voter": "freedom", + "rshares": "5980286152113" }, { - "rshares": "2708201174", - "voter": "sisterholics" + "voter": "badassmother", + "rshares": "1968119541431" }, { - "rshares": "8964609699", - "voter": "royalmacro" + "voter": "hr1", + "rshares": "2052934239988" }, { - "rshares": "1802321537", - "voter": "remlaps" + "voter": "rossco99", + "rshares": "1337025448249" }, { - "rshares": "46040443375", - "voter": "jasonstaggers" + "voter": "jaewoocho", + "rshares": "22864938197" }, { - "rshares": "13359113213", - "voter": "mahekg" + "voter": "joseph", + "rshares": "1575899708999" }, { - "rshares": "845069114", - "voter": "metaflute" + "voter": "aizensou", + "rshares": "98682346357" }, { - "rshares": "9193716733", - "voter": "taker" + "voter": "recursive2", + "rshares": "466049312123" }, { - "rshares": "6521104126", - "voter": "nekromarinist" + "voter": "recursive3", + "rshares": "462419963819" }, { - "rshares": "95766250088", - "voter": "laonie" + "voter": "recursive", + "rshares": "3120252422964" }, { - "rshares": "161751897653", - "voter": "twinner" + "voter": "mineralwasser", + "rshares": "1246183601" }, { - "rshares": "24560895252", - "voter": "laoyao" + "voter": "boombastic", + "rshares": "681017160441" }, { - "rshares": "2664547502", - "voter": "myfirst" + "voter": "bingo-1", + "rshares": "1670000041" }, { - "rshares": "19439832856", - "voter": "somebody" + "voter": "smooth.witness", + "rshares": "5938790183563" }, { - "rshares": "65245460", - "voter": "ierg" + "voter": "boatymcboatface", + "rshares": "445638290328" }, { - "rshares": "16958164504", - "voter": "sunshine" + "voter": "idol", + "rshares": "9408499254" }, { - "rshares": "726848341", - "voter": "flysaga" + "voter": "chitty", + "rshares": "18955732033" }, { - "rshares": "7706698035", - "voter": "asdes" + "voter": "unosuke", + "rshares": "65857071449" }, { - "rshares": "2501620573", - "voter": "gmurph" + "voter": "jocelyn", + "rshares": "1619440533" }, { - "rshares": "1659697260", - "voter": "stormblaze" + "voter": "gregory-f", + "rshares": "15004166459" }, { - "rshares": "4294420153", - "voter": "midnightoil" + "voter": "edgeland", + "rshares": "154334962550" }, { - "rshares": "2280336943", - "voter": "kalimor" + "voter": "gregory60", + "rshares": "9796891633" }, { - "rshares": "84246848", - "voter": "coderg" + "voter": "gavvet", + "rshares": "1290497974419" }, { - "rshares": "2267389147", - "voter": "crypto-toll" + "voter": "eeks", + "rshares": "89897083981" }, { - "rshares": "4281204067", - "voter": "ullikume" + "voter": "fkn", + "rshares": "1511911763" }, { - "rshares": "10740550186", - "voter": "xiaohui" + "voter": "paco-steem", + "rshares": "122160437" }, { - "rshares": "176650903994", - "voter": "terrycraft" + "voter": "spaninv", + "rshares": "1471599418" }, { - "rshares": "461085584", - "voter": "elfkitchen" + "voter": "elishagh1", + "rshares": "1987313581" }, { - "rshares": "103384195129", - "voter": "joele" + "voter": "richman", + "rshares": "8669787638" }, { - "rshares": "5823989445", - "voter": "oflyhigh" + "voter": "nanzo-scoop", + "rshares": "599944427461" }, { - "rshares": "335807163", - "voter": "xiaokongcom" + "voter": "kefkius", + "rshares": "9857442120" }, { - "rshares": "12961700193", - "voter": "gargon" + "voter": "mummyimperfect", + "rshares": "177393180428" }, { - "rshares": "2076619689", - "voter": "natalymaty" + "voter": "coar", + "rshares": "313687341" }, { - "rshares": "2002858998", - "voter": "future24" + "voter": "asch", + "rshares": "106628883920" }, { - "rshares": "1405383530", - "voter": "hms818" + "voter": "murh", + "rshares": "1061184463" }, { - "rshares": "3670417888", - "voter": "villainblack" + "voter": "cryptofunk", + "rshares": "3187790925" }, { - "rshares": "3033035828", - "voter": "jrcornel" + "voter": "kodi", + "rshares": "579494558" }, { - "rshares": "676921271", - "voter": "xianjun" + "voter": "error", + "rshares": "2111403468" }, { - "rshares": "25747116283", - "voter": "hanshotfirst" + "voter": "cyber", + "rshares": "985486511940" }, { - "rshares": "11541933907", - "voter": "borran" + "voter": "theshell", + "rshares": "61710806563" }, { - "rshares": "93797422302", - "voter": "miacats" + "voter": "ak2020", + "rshares": "50879010002" }, { - "rshares": "2249572206", - "voter": "njall" + "voter": "satoshifund", + "rshares": "1616373298272" }, { - "rshares": "6417144136", - "voter": "userlogin" + "voter": "taoteh1221", + "rshares": "409218031185" }, { - "rshares": "2077199246", - "voter": "chinadaily" + "voter": "applecrisp", + "rshares": "418880227" }, { - "rshares": "20666103650", - "voter": "anotherjoe" + "voter": "stiletto", + "rshares": "95314034" }, { - "rshares": "4879395119", - "voter": "almerri" + "voter": "ziv", + "rshares": "19213136885" }, { - "rshares": "8890516872", - "voter": "johnnyyash" + "voter": "zakharya", + "rshares": "15787116636" }, { - "rshares": "3155389493", - "voter": "macartem" + "voter": "trogdor", + "rshares": "280675599804" }, { - "rshares": "9310407829", - "voter": "gvargas123" + "voter": "crypto-fan", + "rshares": "19151208027" }, { - "rshares": "4658385146", - "voter": "themanualbot" + "voter": "geoffrey", + "rshares": "121380113922" }, { - "rshares": "2148477670", - "voter": "levycore" + "voter": "kimziv", + "rshares": "16025451490" }, { - "rshares": "406983674", - "voter": "mig641" + "voter": "emily-cook", + "rshares": "76008701316" }, { - "rshares": "56654664918", - "voter": "mandibil" + "voter": "superfreek", + "rshares": "2187587354" }, { - "rshares": "4633082667", - "voter": "steemitpatina" + "voter": "fyrstikken", + "rshares": "387326356155" }, { - "rshares": "54612436", - "voter": "riv" + "voter": "isteemit", + "rshares": "49806164408" }, { - "rshares": "2196749616", - "voter": "runridefly" + "voter": "acassity", + "rshares": "29635215678" }, { - "rshares": "2458800256", - "voter": "seva" + "voter": "ladyclair", + "rshares": "280916636" }, { - "rshares": "7375519035", - "voter": "macksby" + "voter": "michaellamden68", + "rshares": "3898803498" }, { - "rshares": "1931998664", - "voter": "funkywanderer" + "voter": "thebatchman", + "rshares": "19974572536" }, { - "rshares": "5053531368", - "voter": "richardcrill" + "voter": "asmolokalo", + "rshares": "153697599394" }, { - "rshares": "1625387426", - "voter": "davidjkelley" + "voter": "rubybian", + "rshares": "73848595449" }, { - "rshares": "182060433", - "voter": "greatness" + "voter": "riscadox", + "rshares": "5270775482" }, { - "rshares": "27673580803", - "voter": "sponge-bob" + "voter": "mstang83", + "rshares": "256623434" }, { - "rshares": "15231878384", - "voter": "digital-wisdom" + "voter": "romel", + "rshares": "2597453094" }, { - "rshares": "3710834980", - "voter": "ethical-ai" + "voter": "derekareith", + "rshares": "150964836849" }, { - "rshares": "6682569853", - "voter": "jwaser" + "voter": "furion", + "rshares": "7380400309" }, { - "rshares": "51964388", - "voter": "apparat" + "voter": "bitshares101", + "rshares": "15308452303" }, { - "rshares": "1655277599", - "voter": "smisi" + "voter": "owdy", + "rshares": "6591905710" }, { - "rshares": "224088474986", - "voter": "asksisk" + "voter": "ausbitbank", + "rshares": "14388449041" }, { - "rshares": "113366516", - "voter": "edgarsart" + "voter": "jacor", + "rshares": "159573949583" }, { - "rshares": "26377562678", - "voter": "dubi" + "voter": "cynetyc", + "rshares": "124958555" }, { - "rshares": "2617262426", - "voter": "bwaser" + "voter": "snowden", + "rshares": "85528935" }, { - "rshares": "337248470", - "voter": "panther" + "voter": "aaseb", + "rshares": "14487855165" }, { - "rshares": "27667123071", - "voter": "brains" + "voter": "karen13", + "rshares": "4431052068" }, { - "rshares": "50450987", - "voter": "waldemar-kuhn" + "voter": "deviedev", + "rshares": "10646413479" }, { - "rshares": "5753092824", - "voter": "chick1" + "voter": "nabilov", + "rshares": "258981906731" }, { - "rshares": "51637870", - "voter": "aoki" + "voter": "luisucv34", + "rshares": "847366145" }, { - "rshares": "51568971", - "voter": "typingagent" + "voter": "streetstyle", + "rshares": "54561525717" }, { - "rshares": "51581492", - "voter": "cwb" + "voter": "krystle", + "rshares": "7372366244" }, { - "rshares": "3623547539", - "voter": "slayer" + "voter": "milestone", + "rshares": "46854512371" }, { - "rshares": "407122760", - "voter": "anomaly" + "voter": "creemej", + "rshares": "35782074085" }, { - "rshares": "27667189544", - "voter": "tarekadam" + "voter": "maximkichev", + "rshares": "3800710913" }, { - "rshares": "2401230307", - "voter": "ellepdub" + "voter": "blueorgy", + "rshares": "167298234999" }, { - "rshares": "123128317", - "voter": "ola1" + "voter": "benjiberigan", + "rshares": "12587181720" }, { - "rshares": "12115121436", - "voter": "herpetologyguy" + "voter": "poseidon", + "rshares": "349575168" }, { - "rshares": "52460746", - "voter": "cryptofarmer" + "voter": "smolalit", + "rshares": "7946556816" }, { - "rshares": "4712097333", - "voter": "morgan.waser" + "voter": "mustafaomar", + "rshares": "20522265015" }, { - "rshares": "50228382", - "voter": "dragonice" + "voter": "simon.braki.love", + "rshares": "3506024506" }, { - "rshares": "50223099", - "voter": "battalar" + "voter": "thylbom", + "rshares": "82780602040" }, { - "rshares": "51218466", - "voter": "weare" + "voter": "bitcoiner", + "rshares": "3695597998" }, { - "rshares": "50139069", - "voter": "slow" + "voter": "deanliu", + "rshares": "32542074868" }, { - "rshares": "50907857", - "voter": "oxygen" + "voter": "qonq99", + "rshares": "519376303" }, { - "rshares": "50873654", - "voter": "palladium" + "voter": "neroru", + "rshares": "7659625135" }, { - "rshares": "117919744", - "voter": "optimistic-crone" + "voter": "jl777", + "rshares": "215384334659" }, { - "rshares": "50540827", - "voter": "amstel" + "voter": "positive", + "rshares": "1226120506" }, { - "rshares": "50484452", - "voter": "connect" + "voter": "crazymumzysa", + "rshares": "101547003699" }, { - "rshares": "88287639", - "voter": "remlaps1" + "voter": "steemchain", + "rshares": "50626015" }, { - "rshares": "3609516222", - "voter": "strong-ai" + "voter": "whalepool", + "rshares": "50626015" }, { - "rshares": "230273165", - "voter": "sjamayee" + "voter": "gustavopasquini", + "rshares": "5287640951" }, { - "rshares": "162925257", - "voter": "uct" + "voter": "firehorse", + "rshares": "114437903" }, { - "rshares": "435365865", - "voter": "witchcraftblog" + "voter": "proto", + "rshares": "18175932801" }, { - "rshares": "161218747", - "voter": "sdc" + "voter": "sisterholics", + "rshares": "2708251696" }, { - "rshares": "161179339", - "voter": "bethesda" + "voter": "alex.chien", + "rshares": "1444237397" }, { - "rshares": "161096439", - "voter": "bethsoft" + "voter": "royalmacro", + "rshares": "8921793478" }, { - "rshares": "157816798", - "voter": "gravity" + "voter": "remlaps", + "rshares": "1802321537" }, { - "rshares": "157726117", - "voter": "illusions" + "voter": "glitterpig", + "rshares": "3353832611" }, { - "rshares": "160861015", - "voter": "cybergirl" + "voter": "picker", + "rshares": "119294413" }, { - "rshares": "3941523341", - "voter": "dresden" + "voter": "metaflute", + "rshares": "870677269" }, { - "rshares": "164549939", - "voter": "pawel-krawczyk" + "voter": "taker", + "rshares": "9193734776" }, { - "rshares": "159352476", - "voter": "panic" + "voter": "nekromarinist", + "rshares": "6521104126" }, { - "rshares": "158638676", - "voter": "icesteem" + "voter": "merej99", + "rshares": "2156971728" }, { - "rshares": "32369065992", - "voter": "goldmatters" + "voter": "laonie", + "rshares": "95768393690" }, { - "rshares": "702613929", - "voter": "reddust" + "voter": "twinner", + "rshares": "157498807066" }, { - "rshares": "150387842", - "voter": "trickster512" - } - ], - "author": "gavvet", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": ">Today I told my dad the final date of my marriage: October 2nd . Few days ago, as I told him that I was going to get married in a few weeks, he got mad at me. \u201cI was expecting you to get a real job before you got married!\u201d was his main critique. \u201cHow can you get married *now*?\u201d he asked me.\n\nOggi ho detto a mio padre la data definitiva del mio matrimonio: due ottobre. Pochi giorni fa, quando gli ho detto che mi sarei sposato nel giro di poche settimane, si \u00e8 arrabbiato con me. \u201cMi sarei aspettato che ti trovassi un lavoro vero prima di sposarti\u201d \u00e8 stato il suo principale oggetto di critica. \u201cCome puoi sposarti *adesso*?\u201d mi ha chiesto.\n\n>Let me give you some background. I\u2019m 29 years old and I want to do many things in my life. I studied economics, worked for no-profit and academia and I published a book in May on the shifting economic paradigm. I dedicated the last year to this book, spent all the savings I had and by now I have a few weeks of financial autonomy left. Meanwhile I rented a room on Airbnb, learned how to do bracelets and sold them on the Ligurian (North-West Italy) seaside. Simultaneously, I\u2019m working on becoming what I call a cryptofarmer: in fact, my goal is to write and earn cryptocurrencies while living in the countryside in a small house I\u2019m transforming into a farm. I learned how to plant a vegetable garden, how to chop wood and limiting the expenses of food and heating.\nEven if sometimes I\u2019m scared I could not afford a living, I feeI I can make it. We can make it. In fact, few months ago a girl I met last winter in Chile joined me and is providing great help with her skills and work. And I\u2019m going to marry her in a few weeks, as I said.\n\nFacciamo un passo indietro. Ho 29 anni e voglio fare tante cose nella mia vita. Ho studiato economia, lavorato nel no-profit e nel mondo accademico per poi pubblicare, a maggio di quest\u2019anno, un libro sul cambio di paradigma in economia. Ho dedicato l\u2019ultimo anno a questo libro, ho speso tutti i miei risparmi e ho davanti ancora qualche settimana di autonomia finanziaria. Nel frattempo ho affittato una stanza su Airbnb e imparato a fare braccialetti che ho venduto sulla costa ligure. Parallelamente lavoro per diventare quello che chiamo un cryptofarmer; il mio obiettivo \u00e8 infatti quello di scrivere e guadagnare cripto-valute mentre vivo in una piccola casa di campagna che sto trasformando in fattoria. Ho imparato come piantare un orto, spaccare la legna e limitare le spese di cibo e riscaldamento.\nAnche se a volte ho paura di non riuscire a guadagnarmi da vivere, sento che ce la posso fare. Che ce la *possiamo* fare. Qualche mese fa, infatti, una ragazza che ho conosciuto lo scorso inverno in Cile si \u00e8 unita ai miei progetti e mi sta dando un grosso aiuto con le sue capacit\u00e0 e il suo lavoro. E io la sposer\u00f2 in qualche settimana, come dicevo.\n>My father is 69 years old. Oddly enough, he actually left countryside for the city \u2013 a choice diametrically opposite to the one I made \u2013 to become a lawyer and had success by working really hard. As far as I know, he wanted to be a journalist but chose to be a lawyer to get a better salary \u2013 as he got. He wanted me to be a lawyer too, of course, but when I chose to study economics he told me I could become an auditor; those were professions, in his words, that paid good.\n\nMio padre ha 69 anni. E\u2019 curioso come lui lasci\u00f2 la campagna per la citt\u00e0 \u2013 una scelta diametralmente opposta a quella che ho fatto io \u2013 per diventare un avvocato e l\u00ec ha avuto successo lavorando molto. Da quel che so, lui voleva fare il giornalista da giovane, ma poi ha scelto di fare l\u2019avvocato per avere un miglior salario \u2013 come appunto si \u00e8 verificato. Chiaramente voleva che anche io facessi l\u2019avvocato e successivamente, quando io scelsi di studiare economia, mi disse che potevo diventare il revisore contabile; mestieri, questi, che secondo lui erano ben remunerati. \n>Dear dad,\nA couple of years ago, you told that you were eventually glad I didn\u2019t follow your path and became a lawyer. The job had changed too much, you said. Now too many lawyers are fighting one against each other to get the job and clients are not paying for the work you did for them. That\u2019s how you described me your job \u2013 a job that in Italy, for your generation, was a synonym of success. A son who became a lawyer was a dream for the average family.\nWell, I\u2019m going to add a little piece to this picture. In a few decades, the whole profession of lawyer may become obsolete. Do you know that even today you can ask legal question to [Ross](http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html), an IBM powered machine? It will provide you an answer by sifting through thousands of legal documents, statutes and cases - assisting you to get ready for the case by including citations, suggested readings and confidence ratings. \nToday few technologies are ready to disrupt whole sectors of the economy. One of these is Artificial Intelligence that could make your profession obsolete. Another is the blockchain: that one could make the auditor and accountancy profession useless too. Have you ever heard about it? Some say it\u2019s important as the invention of the Internet.\n\nCaro pap\u00e0,\nQualche anno fa mi hai detto che in fin dei conti eri contento che non avessi seguito la tua strada e fossi diventato un avvocato. Il lavoro \u00e8 cambiato troppo, hai detto. Troppi avvocati in conflitto l\u2019uno contro l\u2019altro per accaparrarsi clienti che poi non pagano il lavoro che fai per loro. Cos\u00ec mi hai descritto il tuo lavoro \u2013 un lavoro che in Italia, per la tua generazione, era sinonimo di successo. Un figlio che diventava avvocato era un sogno per la famiglia media.\nBeh, lasciami aggiungere un pezzo a questa storia. In un paio di decadi, la professione stessa dell\u2019avvocato potrebbe diventare obsoleta. Sai che gi\u00e0 oggi puoi chiedere un parere legale a [Ross](http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html), una macchina sviluppata da IBM? Ti restituisce una risposta setacciando migliaia di documenti legali, statuti e casi \u2013 assistendoti a prepararti al caso includendo citazioni, letture consigliate e intervalli di confidenza. Alcune tecnologie sono sul punto di rivoluzionare interi settori dell\u2019economia. Una di queste \u00e8 l\u2019intelligenza artificiale che potrebbe rendere obsoleta la tua professione. Un\u2019altra \u00e8 la blockchain: questa potrebbe rendere inutile la professione del contabile e del revisore. Ne hai mai sentito parlare? Alcuni dicono che \u00e8 importante quanto l\u2019invenzione di Internet.\n>**You should really be glad I didn\u2019t choose your job just because it paid good**. As I was 18 (in 2005) being a lawyer paid good, in a decade it wasn\u2019t the case anymore. **In fact, between 2007 and 2014 the average income reported by Italian lawyers [declined from 51.314 euro to 37.505]( http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare)**. Well, last decade \u2013 it is to be said - was a *century*: while economy collapsed in one of the worst crisis ever, technology produced unparalleled innovations. Before 2005 there was no Youtube. In 2005 there was no smartphone either. No-one can tell what are we going to see in the next decade. Some say there will be some big change in the workplace. In fact, [some researchers at Oxford]( http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf) say that by 2035, half of the jobs Americans currently hold will be automatized. **Robots are simply better than men in doing robotic work**. Even the world\u2019s most ancient profession may suffer a strong decline with the development of virtual reality \u2013 this has become the next big thing in adult entertainment.\n\n**Devi essere davvero contento che non abbia scelto il tuo lavoro solo perch\u00e9 era ben remunerato**. Quando ancora io avevo 18 anni (nel 2005) fare l\u2019avvocato era remunerativo, ma nell\u2019arco di un decennio ci\u00f2 non era pi\u00f9 vero. **Tra il 2007 e il 2014 il reddito medio dell\u2019avvocato italiano [\u00e8 sceso da 51.314 euro a 37.505 euro]( http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare)**. L\u2019ultimo decennio \u2013 bisogna riconoscerlo - ha rappresentato un *secolo*: mentre l\u2019economia collassava in una delle peggiori crisi di sempre, la tecnologia produceva innovazioni senza pari. Prima del 2005 non c\u2019era Youtube. Prima del 2005 non c\u2019era nemmeno lo smartphone. Nessuno pu\u00f2 dire cosa vedremo nel prossimo decennio. Molti dicono che ci saranno grossi cambiamenti sul luogo di lavoro. [Alcuni ricercatori di Oxford]( http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf) dicono che entro il 2035, il 45% dei lavori attualmente svolti dagli americani verr\u00e0 automatizzato. **I robot svolgono meglio degli uomini i lavori da robot**. Perfino il mestiere pi\u00f9 vecchio del mondo potrebbe risentire di un forte declino a seguito dello sviluppo della realt\u00e0 virtuale \u2013 questa \u00e8 diventata l\u2019ultima novit\u00e0 nel mondo dell\u2019intrattenimento per adulti.\n>Don\u2019t worry, dad, and don\u2019t look at me as someone who is living hand to mouth. Many things are changing in the next years, together with most of the reference points we had. Those jobs who were good, could not be profitable and stable anymore. Most of all, the same idea of stability will change: we\u2019ll have to find stability surfing between waves of change. Choosing a job just because it pays good today, may not be a good strategy. **My generation is challenged to find and develop that personal value, those talents, that no machine could substitute. This is what I\u2019m doing \u2013 soon I\u2019ll write you how**.\n\nPer questo, pap\u00e0, non preoccuparti e non guardarmi come si guarda un figlio che vive di espedienti. Molte cose cambieranno nei prossimi anni, insieme a molti dei punti di riferimento che avevamo. Quei lavori che prima erano buoni, potrebbero non essere pi\u00f9 remunerativi e stabili. Pi\u00f9 di tutto, cambier\u00e0 l\u2019idea di stabilit\u00e0: dovremmo imparare a trovare la stabilit\u00e0 di un surfista a cavallo di ondate di cambiamento. Scegliere un lavoro solo perch\u00e9 paga bene oggi, potrebbe non essere una strategia che paga. **La sfida per la mia generazione \u00e8 di trovare e sviluppare quel valore personale, quei talenti, che nessuna macchina pu\u00f2 sostituire. Questo \u00e8 quello che sto facendo io \u2013 presto ti scriver\u00f2 come**.\n\nhttp://i68.tinypic.com/2hz9lz.jpg \n\n*Me, dad, fianc\u00e9, mum*\n\n***Don't forget to follow @cryptofarmer***\n***a shout out goes to @claudiop63 for assisting the Italian community so don't forget to follow him***", - "category": "life", - "children": 11, - "created": "2016-09-15T14:01:30", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "http://i68.tinypic.com/2hz9lz.jpg" - ], - "links": [ - "http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html", - "http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare", - "http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf" - ], - "tags": [ - "life", - "introducemyself" - ], - "users": [ - "cryptofarmer", - "claudiop63" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 66723421210839, - "payout": 258.716, - "payout_at": "2016-09-22T14:01:30", - "pending_payout_value": "258.716 HBD", - "percent_hbd": 10000, - "permlink": "letters-to-my-dad-on-the-changing-world-with-italian-featuring-cryptofarmer-as-author", - "post_id": 1254158, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 220 - }, - "title": "Letters to my dad on the changing world... with Italian(featuring @cryptofarmer as author)", - "updated": "2016-09-15T14:01:30", - "url": "/life/@gavvet/letters-to-my-dad-on-the-changing-world-with-italian-featuring-cryptofarmer-as-author" - }, - { - "active_votes": [ + "voter": "thebluepanda", + "rshares": "11693771864" + }, { - "rshares": "480579269556", - "voter": "barrie" + "voter": "laoyao", + "rshares": "24561066673" }, { - "rshares": "231751293887", - "voter": "anonymous" + "voter": "myfirst", + "rshares": "2664664784" }, { - "rshares": "12889266254874", - "voter": "rainman" + "voter": "somebody", + "rshares": "19440183808" }, { - "rshares": "26305603050148", - "voter": "berniesanders" + "voter": "flysaga", + "rshares": "726860971" }, { - "rshares": "15605000000000", - "voter": "val-b" + "voter": "gmurph", + "rshares": "2501625986" }, { - "rshares": "3358053566682", - "voter": "riverhead" + "voter": "midnightoil", + "rshares": "4294504959" }, { - "rshares": "1990377241911", - "voter": "badassmother" + "voter": "kalimor", + "rshares": "2327843962" }, { - "rshares": "187617413684", - "voter": "nextgenwitness" + "voter": "coderg", + "rshares": "84246848" }, { - "rshares": "3306757675077", - "voter": "pharesim" + "voter": "ullikume", + "rshares": "4281232336" }, { - "rshares": "2005106058621", - "voter": "hr1" + "voter": "michellek", + "rshares": "50577648" }, { - "rshares": "640773963547", - "voter": "justin" + "voter": "kurtbeil", + "rshares": "3489905889" }, { - "rshares": "1758663279793", - "voter": "silver" + "voter": "steemleak", + "rshares": "2370103862" }, { - "rshares": "4166786907723", - "voter": "silversteem" + "voter": "thisisbenbrick", + "rshares": "117035295217" }, { - "rshares": "4851657471753", - "voter": "nextgencrypto" + "voter": "xiaohui", + "rshares": "10740805506" }, { - "rshares": "22381565222", - "voter": "jaewoocho" + "voter": "bigsambucca", + "rshares": "88206053" }, { - "rshares": "1869062512579", - "voter": "xeroc" + "voter": "elfkitchen", + "rshares": "485070652" }, { - "rshares": "425868900225", - "voter": "steemservices" + "voter": "joele", + "rshares": "103387869456" }, { - "rshares": "209639354860", - "voter": "alex90342fastn1" + "voter": "oflyhigh", + "rshares": "5855349715" }, { - "rshares": "1607381560851", - "voter": "joseph" + "voter": "randyclemens", + "rshares": "15238192519" }, { - "rshares": "452603688207", - "voter": "recursive3" + "voter": "skavkaz", + "rshares": "856854397" }, { - "rshares": "588963325183", - "voter": "masteryoda" + "voter": "xiaokongcom", + "rshares": "335812576" }, { - "rshares": "3051642158867", - "voter": "recursive" + "voter": "gargon", + "rshares": "13237481048" }, { - "rshares": "1172473837", - "voter": "mineralwasser" + "voter": "natalymaty", + "rshares": "2076619689" }, { - "rshares": "85737349562", - "voter": "mrs.agsexplorer" + "voter": "future24", + "rshares": "2002858998" }, { - "rshares": "1620255991", - "voter": "bingo-1" + "voter": "darthnava", + "rshares": "1156101266" }, { - "rshares": "438041274025", - "voter": "boatymcboatface" + "voter": "villainblack", + "rshares": "3670417888" }, { - "rshares": "9404339123", - "voter": "idol" + "voter": "cristi", + "rshares": "12672968653" }, { - "rshares": "2692207475582", - "voter": "donkeypong" + "voter": "xianjun", + "rshares": "676933902" }, { - "rshares": "783510713656", - "voter": "steemrollin" + "voter": "hanshotfirst", + "rshares": "26283514539" }, { - "rshares": "4632015537", - "voter": "sakr" + "voter": "miacats", + "rshares": "93798273061" }, { - "rshares": "283944946279", - "voter": "chitty" + "voter": "njall", + "rshares": "2249572206" }, { - "rshares": "47092417970", - "voter": "alexgr" + "voter": "razberrijam", + "rshares": "75676352" }, { - "rshares": "1660446343", - "voter": "jocelyn" + "voter": "userlogin", + "rshares": "6417335694" }, { - "rshares": "83523204254", - "voter": "acidsun" + "voter": "chinadaily", + "rshares": "2077210674" }, { - "rshares": "148150884169", - "voter": "edgeland" + "voter": "serejandmyself", + "rshares": "90171375563" }, { - "rshares": "194244553812", - "voter": "jamtaylor" + "voter": "almerri", + "rshares": "4976983022" }, { - "rshares": "74898454777", - "voter": "eeks" + "voter": "johnnyyash", + "rshares": "9071955992" }, { - "rshares": "468170958", - "voter": "paco-steem" + "voter": "macartem", + "rshares": "3221126774" }, { - "rshares": "912602737692", - "voter": "cryptogee" + "voter": "gvargas123", + "rshares": "9827647000" }, { - "rshares": "5638722045", - "voter": "spaninv" + "voter": "themanualbot", + "rshares": "4658385146" }, { - "rshares": "25545945557", - "voter": "georgedonnelly" + "voter": "jaredcwillis", + "rshares": "10468564936" }, { - "rshares": "31081352622", - "voter": "instructor2121" + "voter": "movievertigo", + "rshares": "3562389763" }, { - "rshares": "7891620962", - "voter": "nate-atkins" + "voter": "mrlogic", + "rshares": "332237822" }, { - "rshares": "18533432464", - "voter": "james-show" + "voter": "mig641", + "rshares": "415123347" }, { - "rshares": "319841523573", - "voter": "teamsteem" + "voter": "mandibil", + "rshares": "57942270939" }, { - "rshares": "1713517353627", - "voter": "cryptoctopus" + "voter": "shadowspub", + "rshares": "2028431875" }, { - "rshares": "9535707424", - "voter": "richman" + "voter": "steemitpatina", + "rshares": "4633082667" }, { - "rshares": "550546408583", - "voter": "nanzo-scoop" + "voter": "steembriefing", + "rshares": "74550672" }, { - "rshares": "13340014301", - "voter": "fact" + "voter": "riv", + "rshares": "55750195" }, { - "rshares": "160905828175", - "voter": "steve-walschot" + "voter": "runridefly", + "rshares": "2196854858" }, { - "rshares": "10099012692", - "voter": "cian.dafe" + "voter": "sammie", + "rshares": "169049426" }, { - "rshares": "47422549796", - "voter": "hannixx42" + "voter": "funkywanderer", + "rshares": "1857706060" }, { - "rshares": "169123085990", - "voter": "mummyimperfect" + "voter": "richardcrill", + "rshares": "5053551216" }, { - "rshares": "268838726", - "voter": "coar" + "voter": "team101", + "rshares": "184076493" }, { - "rshares": "98194455049", - "voter": "asch" + "voter": "greatness", + "rshares": "178419224" }, { - "rshares": "603531864037", - "voter": "kevinwong" + "voter": "sponge-bob", + "rshares": "54241736164" }, { - "rshares": "1060920601", - "voter": "murh" + "voter": "freesteem", + "rshares": "50798127" }, { - "rshares": "3041891225", - "voter": "cryptofunk" + "voter": "apparat", + "rshares": "51964388" }, { - "rshares": "3140744830", - "voter": "radioactivities" + "voter": "smisi", + "rshares": "1655277599" }, { - "rshares": "2164686241", - "voter": "error" + "voter": "asksisk", + "rshares": "212888896291" }, { - "rshares": "5736901624", - "voter": "marta-zaidel" + "voter": "panther", + "rshares": "330365849" }, { - "rshares": "40014025775", - "voter": "ranko-k" + "voter": "plantbasedjunkie", + "rshares": "59422248" }, { - "rshares": "985042955913", - "voter": "cyber" + "voter": "brains", + "rshares": "55335855053" }, { - "rshares": "48237714954", - "voter": "ak2020" + "voter": "film-editor", + "rshares": "56573340" }, { - "rshares": "65573912297", - "voter": "justtryme90" + "voter": "jessicanicklos", + "rshares": "799615255" }, { - "rshares": "33032554744", - "voter": "drinkzya" + "voter": "steemafon", + "rshares": "1369339863" }, { - "rshares": "3616249140600", - "voter": "satoshifund" + "voter": "positivesteem", + "rshares": "1072070421" }, { - "rshares": "392453750650", - "voter": "taoteh1221" + "voter": "chick1", + "rshares": "5753129814" }, { - "rshares": "418804855", - "voter": "applecrisp" + "voter": "steempowerwhale", + "rshares": "3319554336" }, { - "rshares": "365287420", - "voter": "stiletto" + "voter": "aoki", + "rshares": "51637870" }, { - "rshares": "55576340008", - "voter": "juanmiguelsalas" + "voter": "typingagent", + "rshares": "51568971" }, { - "rshares": "572341707403", - "voter": "andrarchy" + "voter": "cwb", + "rshares": "51581492" }, { - "rshares": "110473581518", - "voter": "kenny-crane" + "voter": "anomaly", + "rshares": "339270470" }, { - "rshares": "54694274623", - "voter": "thecryptodrive" + "voter": "ola1", + "rshares": "98524303" }, { - "rshares": "353770070386", - "voter": "kaylinart" + "voter": "mari5555na", + "rshares": "70282046" }, { - "rshares": "563733180586", - "voter": "infovore" + "voter": "motion", + "rshares": "50871059" }, { - "rshares": "132301151875", - "voter": "schro" + "voter": "jumbo", + "rshares": "50868434" }, { - "rshares": "4552145645", - "voter": "tee-em" + "voter": "optimistic-crone", + "rshares": "120278139" }, { - "rshares": "30491735429", - "voter": "michaelx" + "voter": "twistys", + "rshares": "50536471" }, { - "rshares": "804471067802", - "voter": "anwenbaumeister" + "voter": "bapparabi", + "rshares": "2216805889" }, { - "rshares": "8928351544", - "voter": "grandpere" + "voter": "opticalillusions", + "rshares": "50487909" }, { - "rshares": "5689049935", - "voter": "mark-waser" + "voter": "remlaps1", + "rshares": "88287639" }, { - "rshares": "17023109715", - "voter": "albertogm" + "voter": "vuyusile", + "rshares": "65849185" }, { - "rshares": "106033721718", - "voter": "geoffrey" + "voter": "darkminded153", + "rshares": "247235040" }, { - "rshares": "192232704674", - "voter": "kimziv" + "voter": "senseye", + "rshares": "2650993895" }, { - "rshares": "267994388047", - "voter": "lukestokes" + "voter": "iberia", + "rshares": "161849597" }, { - "rshares": "43526357269", - "voter": "honeythief" + "voter": "durex", + "rshares": "158666175" }, { - "rshares": "783400875", - "voter": "mammasitta" + "voter": "witchcraftblog", + "rshares": "444435987" }, { - "rshares": "77695030973", - "voter": "emily-cook" + "voter": "origin", + "rshares": "161212160" }, { - "rshares": "32733174015", - "voter": "talanhorne" + "voter": "dresden", + "rshares": "4671589034" }, { - "rshares": "81716838174", - "voter": "razvanelulmarin" + "voter": "caseyneistat", + "rshares": "160845765" }, { - "rshares": "2122888373", - "voter": "superfreek" + "voter": "planetearth", + "rshares": "159554050" }, { - "rshares": "33245604843", - "voter": "cryptoiskey" + "voter": "greenpeace", + "rshares": "159506164" }, { - "rshares": "11728574802", - "voter": "primus" + "voter": "disneypixar", + "rshares": "159164412" }, { - "rshares": "471495169", - "voter": "mrhankeh" + "voter": "rule", + "rshares": "159062820" }, { - "rshares": "37138635112", - "voter": "clement" + "voter": "icesteem", + "rshares": "158638676" }, { - "rshares": "47416157546", - "voter": "isteemit" + "voter": "steem-wallet", + "rshares": "158602900" }, { - "rshares": "67109183200", - "voter": "norbu" + "voter": "steemthis", + "rshares": "155451903" }, { - "rshares": "280886491", - "voter": "ladyclair" + "voter": "citigroup", + "rshares": "158541985" }, { - "rshares": "69639423700", - "voter": "bacchist" + "voter": "goldmatters", + "rshares": "31683945302" }, { - "rshares": "53810463964", - "voter": "venuspcs" + "voter": "dealzgal", + "rshares": "71727340" }, { - "rshares": "3806124499", - "voter": "michaellamden68" + "voter": "reddust", + "rshares": "702613929" }, { - "rshares": "7415227922", - "voter": "dasha" + "voter": "risabold", + "rshares": "298391608" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 219, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/life/@gavvet/three-benefits-of-living-with-a-disability-featuring-nextgen622-as-author", + "blacklists": [] + }, + { + "post_id": 957976, + "author": "gavvet", + "permlink": "letters-to-my-dad-on-the-changing-world-with-italian-featuring-cryptofarmer-as-author", + "category": "life", + "title": "Letters to my dad on the changing world... with Italian(featuring @cryptofarmer as author)", + "body": ">Today I told my dad the final date of my marriage: October 2nd . Few days ago, as I told him that I was going to get married in a few weeks, he got mad at me. “I was expecting you to get a real job before you got married!” was his main critique. “How can you get married *now*?” he asked me.\n\nOggi ho detto a mio padre la data definitiva del mio matrimonio: due ottobre. Pochi giorni fa, quando gli ho detto che mi sarei sposato nel giro di poche settimane, si è arrabbiato con me. “Mi sarei aspettato che ti trovassi un lavoro vero prima di sposarti” è stato il suo principale oggetto di critica. “Come puoi sposarti *adesso*?” mi ha chiesto.\n\n>Let me give you some background. I’m 29 years old and I want to do many things in my life. I studied economics, worked for no-profit and academia and I published a book in May on the shifting economic paradigm. I dedicated the last year to this book, spent all the savings I had and by now I have a few weeks of financial autonomy left. Meanwhile I rented a room on Airbnb, learned how to do bracelets and sold them on the Ligurian (North-West Italy) seaside. Simultaneously, I’m working on becoming what I call a cryptofarmer: in fact, my goal is to write and earn cryptocurrencies while living in the countryside in a small house I’m transforming into a farm. I learned how to plant a vegetable garden, how to chop wood and limiting the expenses of food and heating.\nEven if sometimes I’m scared I could not afford a living, I feeI I can make it. We can make it. In fact, few months ago a girl I met last winter in Chile joined me and is providing great help with her skills and work. And I’m going to marry her in a few weeks, as I said.\n\nFacciamo un passo indietro. Ho 29 anni e voglio fare tante cose nella mia vita. Ho studiato economia, lavorato nel no-profit e nel mondo accademico per poi pubblicare, a maggio di quest’anno, un libro sul cambio di paradigma in economia. Ho dedicato l’ultimo anno a questo libro, ho speso tutti i miei risparmi e ho davanti ancora qualche settimana di autonomia finanziaria. Nel frattempo ho affittato una stanza su Airbnb e imparato a fare braccialetti che ho venduto sulla costa ligure. Parallelamente lavoro per diventare quello che chiamo un cryptofarmer; il mio obiettivo è infatti quello di scrivere e guadagnare cripto-valute mentre vivo in una piccola casa di campagna che sto trasformando in fattoria. Ho imparato come piantare un orto, spaccare la legna e limitare le spese di cibo e riscaldamento.\nAnche se a volte ho paura di non riuscire a guadagnarmi da vivere, sento che ce la posso fare. Che ce la *possiamo* fare. Qualche mese fa, infatti, una ragazza che ho conosciuto lo scorso inverno in Cile si è unita ai miei progetti e mi sta dando un grosso aiuto con le sue capacità e il suo lavoro. E io la sposerò in qualche settimana, come dicevo.\n>My father is 69 years old. Oddly enough, he actually left countryside for the city – a choice diametrically opposite to the one I made – to become a lawyer and had success by working really hard. As far as I know, he wanted to be a journalist but chose to be a lawyer to get a better salary – as he got. He wanted me to be a lawyer too, of course, but when I chose to study economics he told me I could become an auditor; those were professions, in his words, that paid good.\n\nMio padre ha 69 anni. E’ curioso come lui lasciò la campagna per la città – una scelta diametralmente opposta a quella che ho fatto io – per diventare un avvocato e lì ha avuto successo lavorando molto. Da quel che so, lui voleva fare il giornalista da giovane, ma poi ha scelto di fare l’avvocato per avere un miglior salario – come appunto si è verificato. Chiaramente voleva che anche io facessi l’avvocato e successivamente, quando io scelsi di studiare economia, mi disse che potevo diventare il revisore contabile; mestieri, questi, che secondo lui erano ben remunerati. \n>Dear dad,\nA couple of years ago, you told that you were eventually glad I didn’t follow your path and became a lawyer. The job had changed too much, you said. Now too many lawyers are fighting one against each other to get the job and clients are not paying for the work you did for them. That’s how you described me your job – a job that in Italy, for your generation, was a synonym of success. A son who became a lawyer was a dream for the average family.\nWell, I’m going to add a little piece to this picture. In a few decades, the whole profession of lawyer may become obsolete. Do you know that even today you can ask legal question to [Ross](http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html), an IBM powered machine? It will provide you an answer by sifting through thousands of legal documents, statutes and cases - assisting you to get ready for the case by including citations, suggested readings and confidence ratings. \nToday few technologies are ready to disrupt whole sectors of the economy. One of these is Artificial Intelligence that could make your profession obsolete. Another is the blockchain: that one could make the auditor and accountancy profession useless too. Have you ever heard about it? Some say it’s important as the invention of the Internet.\n\nCaro papà,\nQualche anno fa mi hai detto che in fin dei conti eri contento che non avessi seguito la tua strada e fossi diventato un avvocato. Il lavoro è cambiato troppo, hai detto. Troppi avvocati in conflitto l’uno contro l’altro per accaparrarsi clienti che poi non pagano il lavoro che fai per loro. Così mi hai descritto il tuo lavoro – un lavoro che in Italia, per la tua generazione, era sinonimo di successo. Un figlio che diventava avvocato era un sogno per la famiglia media.\nBeh, lasciami aggiungere un pezzo a questa storia. In un paio di decadi, la professione stessa dell’avvocato potrebbe diventare obsoleta. Sai che già oggi puoi chiedere un parere legale a [Ross](http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html), una macchina sviluppata da IBM? Ti restituisce una risposta setacciando migliaia di documenti legali, statuti e casi – assistendoti a prepararti al caso includendo citazioni, letture consigliate e intervalli di confidenza. Alcune tecnologie sono sul punto di rivoluzionare interi settori dell’economia. Una di queste è l’intelligenza artificiale che potrebbe rendere obsoleta la tua professione. Un’altra è la blockchain: questa potrebbe rendere inutile la professione del contabile e del revisore. Ne hai mai sentito parlare? Alcuni dicono che è importante quanto l’invenzione di Internet.\n>**You should really be glad I didn’t choose your job just because it paid good**. As I was 18 (in 2005) being a lawyer paid good, in a decade it wasn’t the case anymore. **In fact, between 2007 and 2014 the average income reported by Italian lawyers [declined from 51.314 euro to 37.505]( http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare)**. Well, last decade – it is to be said - was a *century*: while economy collapsed in one of the worst crisis ever, technology produced unparalleled innovations. Before 2005 there was no Youtube. In 2005 there was no smartphone either. No-one can tell what are we going to see in the next decade. Some say there will be some big change in the workplace. In fact, [some researchers at Oxford]( http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf) say that by 2035, half of the jobs Americans currently hold will be automatized. **Robots are simply better than men in doing robotic work**. Even the world’s most ancient profession may suffer a strong decline with the development of virtual reality – this has become the next big thing in adult entertainment.\n\n**Devi essere davvero contento che non abbia scelto il tuo lavoro solo perché era ben remunerato**. Quando ancora io avevo 18 anni (nel 2005) fare l’avvocato era remunerativo, ma nell’arco di un decennio ciò non era più vero. **Tra il 2007 e il 2014 il reddito medio dell’avvocato italiano [è sceso da 51.314 euro a 37.505 euro]( http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare)**. L’ultimo decennio – bisogna riconoscerlo - ha rappresentato un *secolo*: mentre l’economia collassava in una delle peggiori crisi di sempre, la tecnologia produceva innovazioni senza pari. Prima del 2005 non c’era Youtube. Prima del 2005 non c’era nemmeno lo smartphone. Nessuno può dire cosa vedremo nel prossimo decennio. Molti dicono che ci saranno grossi cambiamenti sul luogo di lavoro. [Alcuni ricercatori di Oxford]( http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf) dicono che entro il 2035, il 45% dei lavori attualmente svolti dagli americani verrà automatizzato. **I robot svolgono meglio degli uomini i lavori da robot**. Perfino il mestiere più vecchio del mondo potrebbe risentire di un forte declino a seguito dello sviluppo della realtà virtuale – questa è diventata l’ultima novità nel mondo dell’intrattenimento per adulti.\n>Don’t worry, dad, and don’t look at me as someone who is living hand to mouth. Many things are changing in the next years, together with most of the reference points we had. Those jobs who were good, could not be profitable and stable anymore. Most of all, the same idea of stability will change: we’ll have to find stability surfing between waves of change. Choosing a job just because it pays good today, may not be a good strategy. **My generation is challenged to find and develop that personal value, those talents, that no machine could substitute. This is what I’m doing – soon I’ll write you how**.\n\nPer questo, papà, non preoccuparti e non guardarmi come si guarda un figlio che vive di espedienti. Molte cose cambieranno nei prossimi anni, insieme a molti dei punti di riferimento che avevamo. Quei lavori che prima erano buoni, potrebbero non essere più remunerativi e stabili. Più di tutto, cambierà l’idea di stabilità: dovremmo imparare a trovare la stabilità di un surfista a cavallo di ondate di cambiamento. Scegliere un lavoro solo perché paga bene oggi, potrebbe non essere una strategia che paga. **La sfida per la mia generazione è di trovare e sviluppare quel valore personale, quei talenti, che nessuna macchina può sostituire. Questo è quello che sto facendo io – presto ti scriverò come**.\n\nhttp://i68.tinypic.com/2hz9lz.jpg \n\n*Me, dad, fiancé, mum*\n\n***Don't forget to follow @cryptofarmer***\n***a shout out goes to @claudiop63 for assisting the Italian community so don't forget to follow him***", + "json_metadata": { + "tags": [ + "life", + "introducemyself" + ], + "users": [ + "cryptofarmer", + "claudiop63" + ], + "image": [ + "http://i68.tinypic.com/2hz9lz.jpg" + ], + "links": [ + "http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html", + "http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare", + "http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf" + ] + }, + "created": "2016-09-15T14:01:30", + "updated": "2016-09-15T14:01:30", + "depth": 0, + "children": 11, + "net_rshares": 66723421210839, + "is_paidout": false, + "payout_at": "2016-09-16T14:29:03", + "payout": 259.877, + "pending_payout_value": "259.877 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "barrie", + "rshares": "518193384474" }, { - "rshares": "174543034217", - "voter": "asmolokalo" + "voter": "smooth", + "rshares": "31620272424965" }, { - "rshares": "55965693937", - "voter": "ezzy" + "voter": "firstclass", + "rshares": "7465716124744" }, { - "rshares": "69473128292", - "voter": "rubybian" + "voter": "badassmother", + "rshares": "1991230051184" }, { - "rshares": "3148262011", - "voter": "orly" + "voter": "hr1", + "rshares": "2052900127917" }, { - "rshares": "46383380668", - "voter": "firepower" + "voter": "rossco99", + "rshares": "1337025448249" }, { - "rshares": "245172817", - "voter": "mstang83" + "voter": "jaewoocho", + "rshares": "22864591759" }, { - "rshares": "24863029935", - "voter": "katyakov" + "voter": "joseph", + "rshares": "1619082976045" }, { - "rshares": "15674042620", - "voter": "yogi.artist" + "voter": "b0y2k", + "rshares": "223905651656" }, { - "rshares": "14215545466", - "voter": "r4fken" + "voter": "recursive2", + "rshares": "475735272749" }, { - "rshares": "1001850942", - "voter": "steemswede" + "voter": "recursive3", + "rshares": "462392248872" }, { - "rshares": "142892158061", - "voter": "derekareith" + "voter": "recursive", + "rshares": "3188060280256" }, { - "rshares": "823059128625", - "voter": "slowwalker" + "voter": "mineralwasser", + "rshares": "1246152952" }, { - "rshares": "1553964832", - "voter": "btcshare7" + "voter": "boombastic", + "rshares": "680994650765" }, { - "rshares": "2210761988", - "voter": "vi1son" + "voter": "mrs.agsexplorer", + "rshares": "94091830376" }, { - "rshares": "1267696038568", - "voter": "renohq" + "voter": "bingo-0", + "rshares": "6959061481" }, { - "rshares": "98005962692", - "voter": "sigmajin" + "voter": "bingo-1", + "rshares": "1669969392" }, { - "rshares": "14876241153", - "voter": "ausbitbank" + "voter": "smooth.witness", + "rshares": "5938061627471" }, { - "rshares": "45733145544", - "voter": "mrwang" + "voter": "idol", + "rshares": "9408405427" }, { - "rshares": "2530804964", - "voter": "steem1653" + "voter": "team", + "rshares": "134476949201" }, { - "rshares": "188405790343", - "voter": "anyx" + "voter": "chitty", + "rshares": "290603380713" }, { - "rshares": "7540907296", - "voter": "steemit-life" + "voter": "unosuke", + "rshares": "59271072026" }, { - "rshares": "11754696821", - "voter": "asim" + "voter": "yefet", + "rshares": "10884676283" }, { - "rshares": "320414159082", - "voter": "jesta" + "voter": "jocelyn", + "rshares": "1619428804" }, { - "rshares": "90257674", - "voter": "snowden" + "voter": "gregory-f", + "rshares": "15316591171" }, { - "rshares": "14289427593", - "voter": "aaseb" + "voter": "gregory60", + "rshares": "9028507975" }, { - "rshares": "1107704273", - "voter": "karen13" + "voter": "gavvet", + "rshares": "1285091135093" }, { - "rshares": "10417290332", - "voter": "deviedev" + "voter": "eeks", + "rshares": "89896753810" }, { - "rshares": "258942997644", - "voter": "nabilov" + "voter": "fkn", + "rshares": "1511911763" }, { - "rshares": "17586922894", - "voter": "meesterboom" + "voter": "paco-steem", + "rshares": "122160437" }, { - "rshares": "8573230772", - "voter": "noodhoog" + "voter": "spaninv", + "rshares": "1471581374" }, { - "rshares": "6400554488", - "voter": "juvyjabian" + "voter": "elishagh1", + "rshares": "1987313581" }, { - "rshares": "2668109030", - "voter": "dmacshady" + "voter": "richman", + "rshares": "8669787638" }, { - "rshares": "476670464", - "voter": "karenmckersie" + "voter": "nanzo-scoop", + "rshares": "599925765931" }, { - "rshares": "451014793670", - "voter": "knozaki2015" + "voter": "kefkius", + "rshares": "9857353705" }, { - "rshares": "44553728340", - "voter": "milestone" + "voter": "mummyimperfect", + "rshares": "177389912085" }, { - "rshares": "7312894074", - "voter": "lichtblick" + "voter": "coar", + "rshares": "313687341" }, { - "rshares": "84865861", - "voter": "wildchild" + "voter": "asch", + "rshares": "106628118273" }, { - "rshares": "5726094484", - "voter": "btcbtcbtc20155" + "voter": "murh", + "rshares": "1061159202" }, { - "rshares": "15683266563", - "voter": "nippel66" + "voter": "cryptofunk", + "rshares": "3187771076" }, { - "rshares": "4317565662", - "voter": "oululahti" + "voter": "kodi", + "rshares": "591084449" }, { - "rshares": "4310346145", - "voter": "poseidon" + "voter": "error", + "rshares": "2111391740" }, { - "rshares": "3365335082", - "voter": "simon.braki.love" + "voter": "cyber", + "rshares": "985477191740" }, { - "rshares": "76406992485", - "voter": "thylbom" + "voter": "theshell", + "rshares": "61710385546" }, { - "rshares": "7311858289", - "voter": "geronimo" + "voter": "ak2020", + "rshares": "50878059993" }, { - "rshares": "10684939578", - "voter": "rpf" + "voter": "johnerfx", + "rshares": "13256265846" }, { - "rshares": "3692989929", - "voter": "bitcoiner" + "voter": "taoteh1221", + "rshares": "409218031185" }, { - "rshares": "3756550273", - "voter": "tarindel" + "voter": "stiletto", + "rshares": "95314034" }, { - "rshares": "3712828665", - "voter": "azurejasper" + "voter": "kus-knee", + "rshares": "55528544371" }, { - "rshares": "279059042940", - "voter": "liberosist" + "voter": "johnerminer", + "rshares": "1177332471" }, { - "rshares": "30859119533", - "voter": "deanliu" + "voter": "ziv", + "rshares": "19213121851" }, { - "rshares": "5496325958", - "voter": "sharker" + "voter": "trogdor", + "rshares": "280666949780" }, { - "rshares": "33395139065", - "voter": "sauravrungta" + "voter": "grandpere", + "rshares": "6652542986" }, { - "rshares": "84683756607", - "voter": "rea" + "voter": "mark-waser", + "rshares": "5821005163" }, { - "rshares": "53842086331", - "voter": "jl777" + "voter": "geoffrey", + "rshares": "124413655063" }, { - "rshares": "29215490743", - "voter": "zaebars" + "voter": "kimziv", + "rshares": "16025151061" }, { - "rshares": "1700143919", - "voter": "yarly" + "voter": "emily-cook", + "rshares": "77734412526" }, { - "rshares": "256282552", - "voter": "yarly2" + "voter": "superfreek", + "rshares": "2187587354" }, { - "rshares": "256665987", - "voter": "yarly3" + "voter": "pmartynov", + "rshares": "53269952968" }, { - "rshares": "148269777", - "voter": "yarly4" + "voter": "isteemit", + "rshares": "48620303351" }, { - "rshares": "149106888", - "voter": "yarly5" + "voter": "acassity", + "rshares": "30279417098" }, { - "rshares": "84991309", - "voter": "yarly7" + "voter": "norbu", + "rshares": "65769554169" }, { - "rshares": "779992403", - "voter": "raymonjohnstone" + "voter": "michaellamden68", + "rshares": "3808133649" }, { - "rshares": "50619397", - "voter": "steemchain" + "voter": "thebatchman", + "rshares": "20382096581" }, { - "rshares": "50619397", - "voter": "whalepool" + "voter": "asmolokalo", + "rshares": "158987747182" }, { - "rshares": "5218510034", - "voter": "gustavopasquini" + "voter": "rubybian", + "rshares": "76019855821" }, { - "rshares": "32308067031", - "voter": "papa-pepper" + "voter": "riscadox", + "rshares": "5270775482" }, { - "rshares": "16539590111", - "voter": "winstonwolfe" + "voter": "konstantin", + "rshares": "17903672525" }, { - "rshares": "885730214", - "voter": "happyphoenix" + "voter": "mstang83", + "rshares": "256623434" }, { - "rshares": "21120708735", - "voter": "krabgat" + "voter": "fabio", + "rshares": "373878481829" }, { - "rshares": "474951354", - "voter": "kooshikoo" + "voter": "gatoso", + "rshares": "6941291365" }, { - "rshares": "4543692384", - "voter": "proto" + "voter": "furion", + "rshares": "7380400309" }, { - "rshares": "634121191", - "voter": "curator" + "voter": "jacor", + "rshares": "159573949583" }, { - "rshares": "31584377035", - "voter": "sisterholics" + "voter": "cynetyc", + "rshares": "147678292" }, { - "rshares": "411321155", - "voter": "yarly10" + "voter": "sebastien", + "rshares": "18770255506" }, { - "rshares": "1365664469", - "voter": "alex.chien" + "voter": "asim", + "rshares": "12011479963" }, { - "rshares": "220139771", - "voter": "yarly11" + "voter": "aaseb", + "rshares": "14487056742" }, { - "rshares": "76966318", - "voter": "yarly12" + "voter": "karen13", + "rshares": "4431046054" }, { - "rshares": "3675499938", - "voter": "tygergamer" + "voter": "deviedev", + "rshares": "10645918815" }, { - "rshares": "173441395", - "voter": "kibela" + "voter": "nabilov", + "rshares": "251364791827" }, { - "rshares": "376816435", - "voter": "alanc" + "voter": "karenmckersie", + "rshares": "441803588" }, { - "rshares": "238488697", - "voter": "bullionstackers" + "voter": "luisucv34", + "rshares": "871576606" }, { - "rshares": "245216458115", - "voter": "originate" + "voter": "streetstyle", + "rshares": "54561525717" }, { - "rshares": "3361197115", - "voter": "sulev" + "voter": "milestone", + "rshares": "46854241122" }, { - "rshares": "121123550176", - "voter": "sterlinluxan" + "voter": "creemej", + "rshares": "35782000412" }, { - "rshares": "108721833", - "voter": "cryptoz" + "voter": "maximkichev", + "rshares": "3878126092" }, { - "rshares": "46036044554", - "voter": "jasonstaggers" + "voter": "nippel66", + "rshares": "15377574672" }, { - "rshares": "131896331875", - "voter": "steemdrive" + "voter": "blueorgy", + "rshares": "171280078005" }, { - "rshares": "114064883", - "voter": "andrew-charles" + "voter": "benjiberigan", + "rshares": "12324948767" }, { - "rshares": "1024314167", - "voter": "metaflute" + "voter": "poseidon", + "rshares": "349568852" }, { - "rshares": "50563376844", - "voter": "gomeravibz" + "voter": "iamwne", + "rshares": "2182574144" }, { - "rshares": "2298283061", - "voter": "taker" + "voter": "calaber24p", + "rshares": "347965502695" }, { - "rshares": "4238154544", - "voter": "nekromarinist" + "voter": "mustafaomar", + "rshares": "20119867662" }, { - "rshares": "230729901", - "voter": "frozendota" + "voter": "simon.braki.love", + "rshares": "3576144996" }, { - "rshares": "14753485936", - "voter": "felixxx" + "voter": "thylbom", + "rshares": "82813520861" }, { - "rshares": "9904971006", - "voter": "dumar022" + "voter": "azurejasper", + "rshares": "3720107267" }, { - "rshares": "2236125772", - "voter": "merej99" + "voter": "deanliu", + "rshares": "32541921491" }, { - "rshares": "1116584393219", - "voter": "laonie" + "voter": "sauravrungta", + "rshares": "31308203650" }, { - "rshares": "23391691291", - "voter": "rawnetics" + "voter": "neroru", + "rshares": "7659625135" }, { - "rshares": "47378225109", - "voter": "capitalism" + "voter": "jl777", + "rshares": "215383763306" }, { - "rshares": "72994310", - "voter": "always1success" + "voter": "positive", + "rshares": "1226120506" }, { - "rshares": "11693177698", - "voter": "thebluepanda" + "voter": "crazymumzysa", + "rshares": "103577805737" }, { - "rshares": "22955094272", - "voter": "laonie1" + "voter": "summonerrk", + "rshares": "6232841459" }, { - "rshares": "23470889026", - "voter": "laonie2" + "voter": "lemooljiang", + "rshares": "14894144779" }, { - "rshares": "23479197538", - "voter": "laonie3" + "voter": "happyphoenix", + "rshares": "904575538" }, { - "rshares": "23907912804", - "voter": "laoyao" + "voter": "claudiop63", + "rshares": "43631243627" }, { - "rshares": "37203693135", - "voter": "myfirst" + "voter": "proto", + "rshares": "18175890702" }, { - "rshares": "226716353883", - "voter": "somebody" + "voter": "sisterholics", + "rshares": "2708201174" }, { - "rshares": "8719381987", - "voter": "flysaga" + "voter": "royalmacro", + "rshares": "8964609699" }, { - "rshares": "4930352522", - "voter": "brendio" + "voter": "remlaps", + "rshares": "1802321537" }, { - "rshares": "2082768176", - "voter": "gmurph" + "voter": "jasonstaggers", + "rshares": "46040443375" }, { - "rshares": "75896047", - "voter": "kurzer42" + "voter": "mahekg", + "rshares": "13359113213" }, { - "rshares": "50083801467", - "voter": "midnightoil" + "voter": "metaflute", + "rshares": "845069114" }, { - "rshares": "2375155298", - "voter": "kalimor" + "voter": "taker", + "rshares": "9193716733" }, { - "rshares": "85931785", - "voter": "coderg" + "voter": "nekromarinist", + "rshares": "6521104126" }, { - "rshares": "4371109343", - "voter": "ullikume" + "voter": "laonie", + "rshares": "95766250088" }, { - "rshares": "50565616", - "voter": "michellek" + "voter": "twinner", + "rshares": "161751897653" }, { - "rshares": "23474742068", - "voter": "laonie4" + "voter": "laoyao", + "rshares": "24560895252" }, { - "rshares": "23472418592", - "voter": "laonie5" + "voter": "myfirst", + "rshares": "2664547502" }, { - "rshares": "23469546880", - "voter": "laonie6" + "voter": "somebody", + "rshares": "19439832856" }, { - "rshares": "23465711623", - "voter": "laonie7" + "voter": "ierg", + "rshares": "65245460" }, { - "rshares": "3820532578", - "voter": "kurtbeil" + "voter": "sunshine", + "rshares": "16958164504" }, { - "rshares": "23462236775", - "voter": "laonie8" + "voter": "flysaga", + "rshares": "726848341" }, { - "rshares": "23459668262", - "voter": "laonie9" + "voter": "asdes", + "rshares": "7706698035" }, { - "rshares": "2440083379", - "voter": "steemleak" + "voter": "gmurph", + "rshares": "2501620573" }, { - "rshares": "112055912400", - "voter": "thisisbenbrick" + "voter": "stormblaze", + "rshares": "1659697260" }, { - "rshares": "125244617154", - "voter": "xiaohui" + "voter": "midnightoil", + "rshares": "4294420153" }, { - "rshares": "21110659306", - "voter": "jphamer1" + "voter": "kalimor", + "rshares": "2280336943" }, { - "rshares": "94018543", - "voter": "bigsambucca" + "voter": "coderg", + "rshares": "84246848" }, { - "rshares": "5946773586", - "voter": "elfkitchen" + "voter": "crypto-toll", + "rshares": "2267389147" }, { - "rshares": "5766554064", - "voter": "oflyhigh" + "voter": "ullikume", + "rshares": "4281204067" }, { - "rshares": "2142137848", - "voter": "paynode" + "voter": "xiaohui", + "rshares": "10740550186" }, { - "rshares": "62525016", - "voter": "nickche" + "voter": "terrycraft", + "rshares": "176650903994" }, { - "rshares": "303568520", - "voter": "rusteller" + "voter": "elfkitchen", + "rshares": "461085584" }, { - "rshares": "260000341079", - "voter": "sirwinchester" + "voter": "joele", + "rshares": "103384195129" }, { - "rshares": "4028395316", - "voter": "xiaokongcom" + "voter": "oflyhigh", + "rshares": "5823989445" }, { - "rshares": "12683521359", - "voter": "gargon" + "voter": "xiaokongcom", + "rshares": "335807163" }, { - "rshares": "2305504187", - "voter": "pgarcgo" + "voter": "gargon", + "rshares": "12961700193" }, { - "rshares": "2447938775", - "voter": "future24" + "voter": "natalymaty", + "rshares": "2076619689" }, { - "rshares": "8120387338", - "voter": "xianjun" + "voter": "future24", + "rshares": "2002858998" }, { - "rshares": "7546495705", - "voter": "lgm-1" + "voter": "hms818", + "rshares": "1405383530" }, { - "rshares": "77724719", - "voter": "evgenyche" + "voter": "villainblack", + "rshares": "3670417888" }, { - "rshares": "69130289", - "voter": "stevescriber" + "voter": "jrcornel", + "rshares": "3033035828" }, { - "rshares": "3277990744", - "voter": "bledarus" + "voter": "xianjun", + "rshares": "676921271" }, { - "rshares": "50027573", - "voter": "loli" + "voter": "hanshotfirst", + "rshares": "25747116283" }, { - "rshares": "89195680289", - "voter": "miacats" + "voter": "borran", + "rshares": "11541933907" }, { - "rshares": "52419023", - "voter": "nano2nd" + "voter": "miacats", + "rshares": "93797422302" }, { - "rshares": "531944476", - "voter": "microluck" + "voter": "njall", + "rshares": "2249572206" }, { - "rshares": "77220767", - "voter": "razberrijam" + "voter": "userlogin", + "rshares": "6417144136" }, { - "rshares": "1952786674", - "voter": "chinadaily" + "voter": "chinadaily", + "rshares": "2077199246" }, { - "rshares": "13869624454", - "voter": "kyriacos" + "voter": "anotherjoe", + "rshares": "20666103650" }, { - "rshares": "36244326905", - "voter": "thecurator" + "voter": "almerri", + "rshares": "4879395119" }, { - "rshares": "59021275", - "voter": "cryptoblu" + "voter": "johnnyyash", + "rshares": "8890516872" }, { - "rshares": "59014859", - "voter": "instructor" + "voter": "macartem", + "rshares": "3155389493" }, { - "rshares": "739426684571", - "voter": "dollarvigilante" + "voter": "gvargas123", + "rshares": "9310407829" }, { - "rshares": "93497889783", - "voter": "anotherjoe" + "voter": "themanualbot", + "rshares": "4658385146" }, { - "rshares": "7166212158", - "voter": "solarguy" + "voter": "levycore", + "rshares": "2148477670" }, { - "rshares": "3897735456", - "voter": "lamech-m" + "voter": "mig641", + "rshares": "406983674" }, { - "rshares": "84681497836", - "voter": "serejandmyself" + "voter": "mandibil", + "rshares": "56654664918" }, { - "rshares": "9544116466", - "voter": "mrgrey" + "voter": "steemitpatina", + "rshares": "4633082667" }, { - "rshares": "728730693", - "voter": "alexma3x" + "voter": "riv", + "rshares": "54612436" }, { - "rshares": "9825243280", - "voter": "gvargas123" + "voter": "runridefly", + "rshares": "2196749616" }, { - "rshares": "13829552678", - "voter": "cryptomancer" + "voter": "seva", + "rshares": "2458800256" }, { - "rshares": "58964015", - "voter": "dimitriy" + "voter": "macksby", + "rshares": "7375519035" }, { - "rshares": "23453540976", - "voter": "laonie10" + "voter": "funkywanderer", + "rshares": "1931998664" }, { - "rshares": "604185913", - "voter": "wuyueling" + "voter": "richardcrill", + "rshares": "5053531368" }, { - "rshares": "73276984296", - "voter": "sweetsssj" + "voter": "davidjkelley", + "rshares": "1625387426" }, { - "rshares": "2803446535", - "voter": "netaterra" + "voter": "greatness", + "rshares": "182060433" }, { - "rshares": "50816343", - "voter": "bitchplease" + "voter": "sponge-bob", + "rshares": "27673580803" }, { - "rshares": "92899380169", - "voter": "barrycooper" + "voter": "digital-wisdom", + "rshares": "15231878384" }, { - "rshares": "79979619", - "voter": "joelbow" + "voter": "ethical-ai", + "rshares": "3710834980" }, { - "rshares": "11300097831", - "voter": "sethlinson" + "voter": "jwaser", + "rshares": "6682569853" }, { - "rshares": "29734500129", - "voter": "hilarski" + "voter": "apparat", + "rshares": "51964388" }, { - "rshares": "2392467864", - "voter": "shadowspub" + "voter": "smisi", + "rshares": "1655277599" }, { - "rshares": "267071524484", - "voter": "oldtimer" + "voter": "asksisk", + "rshares": "224088474986" }, { - "rshares": "32411487065", - "voter": "daut44" + "voter": "edgarsart", + "rshares": "113366516" }, { - "rshares": "4580262873", - "voter": "steemitpatina" + "voter": "dubi", + "rshares": "26377562678" }, { - "rshares": "4768611178", - "voter": "fat-like-buddha" + "voter": "bwaser", + "rshares": "2617262426" }, { - "rshares": "55859919", - "voter": "rickmiller" + "voter": "panther", + "rshares": "337248470" }, { - "rshares": "1233668048", - "voter": "lenar" + "voter": "brains", + "rshares": "27667123071" }, { - "rshares": "2076202607", - "voter": "cryptoeasy" + "voter": "waldemar-kuhn", + "rshares": "50450987" }, { - "rshares": "5154805617", - "voter": "nulliusinverba" + "voter": "chick1", + "rshares": "5753092824" }, { - "rshares": "110647858832", - "voter": "shenanigator" + "voter": "aoki", + "rshares": "51637870" }, { - "rshares": "2908012841", - "voter": "daveks" + "voter": "typingagent", + "rshares": "51568971" }, { - "rshares": "7471182625", - "voter": "einsteinpotsdam" + "voter": "cwb", + "rshares": "51581492" }, { - "rshares": "23133191472", - "voter": "laonie11" + "voter": "slayer", + "rshares": "3623547539" }, { - "rshares": "1552512887", - "voter": "davidjkelley" + "voter": "anomaly", + "rshares": "407122760" }, { - "rshares": "1878628053", - "voter": "mobios" + "voter": "tarekadam", + "rshares": "27667189544" }, { - "rshares": "20853973484", - "voter": "sponge-bob" + "voter": "ellepdub", + "rshares": "2401230307" }, { - "rshares": "4324039528", - "voter": "l0k1" + "voter": "ola1", + "rshares": "123128317" }, { - "rshares": "14886230314", - "voter": "digital-wisdom" + "voter": "herpetologyguy", + "rshares": "12115121436" }, { - "rshares": "3547902817", - "voter": "ethical-ai" + "voter": "cryptofarmer", + "rshares": "52460746" }, { - "rshares": "50784892", - "voter": "freesteem" + "voter": "morgan.waser", + "rshares": "4712097333" }, { - "rshares": "6531322926", - "voter": "jwaser" + "voter": "dragonice", + "rshares": "50228382" }, { - "rshares": "161709465048", - "voter": "thecyclist" + "voter": "battalar", + "rshares": "50223099" }, { - "rshares": "1018513187", - "voter": "zettar" + "voter": "weare", + "rshares": "51218466" }, { - "rshares": "122271956", - "voter": "tito-baron" + "voter": "slow", + "rshares": "50139069" }, { - "rshares": "1735431749", - "voter": "kiwideb" + "voter": "oxygen", + "rshares": "50907857" }, { - "rshares": "50931848", - "voter": "analyzethis" + "voter": "palladium", + "rshares": "50873654" }, { - "rshares": "2558000160", - "voter": "bwaser" + "voter": "optimistic-crone", + "rshares": "117919744" }, { - "rshares": "5773395051", - "voter": "dexter-k" + "voter": "amstel", + "rshares": "50540827" }, { - "rshares": "50751176", - "voter": "roadhog" + "voter": "connect", + "rshares": "50484452" }, { - "rshares": "2201645172", - "voter": "alina1" + "voter": "remlaps1", + "rshares": "88287639" }, { - "rshares": "50639382", - "voter": "doggnostic" + "voter": "strong-ai", + "rshares": "3609516222" }, { - "rshares": "644579979", - "voter": "ct-gurus" + "voter": "sjamayee", + "rshares": "230273165" }, { - "rshares": "50377764", - "voter": "jenny-talls" + "voter": "uct", + "rshares": "162925257" }, { - "rshares": "386792765707", - "voter": "charlieshrem" + "voter": "witchcraftblog", + "rshares": "435365865" }, { - "rshares": "7681172153", - "voter": "mariandavp" + "voter": "sdc", + "rshares": "161218747" }, { - "rshares": "60088527835", - "voter": "tracemayer" + "voter": "bethesda", + "rshares": "161179339" }, { - "rshares": "20817850462", - "voter": "brains" + "voter": "bethsoft", + "rshares": "161096439" }, { - "rshares": "50210467", - "voter": "post-successful" + "voter": "gravity", + "rshares": "157816798" }, { - "rshares": "1049744855", - "voter": "positivesteem" + "voter": "illusions", + "rshares": "157726117" }, { - "rshares": "5470937952", - "voter": "chick1" + "voter": "cybergirl", + "rshares": "160861015" }, { - "rshares": "1735164858", - "voter": "sens" + "voter": "dresden", + "rshares": "3941523341" }, { - "rshares": "50584036", - "voter": "aoki" + "voter": "pawel-krawczyk", + "rshares": "164549939" }, { - "rshares": "50528809", - "voter": "cwb" + "voter": "panic", + "rshares": "159352476" }, { - "rshares": "503052886", - "voter": "echoesinthemind" + "voter": "icesteem", + "rshares": "158638676" }, { - "rshares": "57534146", - "voter": "freebornangel" + "voter": "goldmatters", + "rshares": "32369065992" }, { - "rshares": "2084741030", - "voter": "steemsquad" + "voter": "reddust", + "rshares": "702613929" }, { - "rshares": "255505026", - "voter": "anomaly" - }, + "voter": "trickster512", + "rshares": "150387842" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 220, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/life/@gavvet/letters-to-my-dad-on-the-changing-world-with-italian-featuring-cryptofarmer-as-author", + "blacklists": [] + }, + { + "post_id": 952897, + "author": "kevinwong", + "permlink": "the-art-of-maintaining-reputation-plan-your-battles-and-don-t-milk-it", + "category": "guide", + "title": "The Art of Maintaining Reputation: Plan Your Battles and Don't Milk It!", + "body": "
https://s16.postimg.org/5csp5ocf9/kevv.jpg
\n\nHere I am spending the night in the darkness of my bedroom. Dog's snoring right beside me, his head resting on my chest. Feeling like I'm in some prologue of a cyberpunk story. Anyway, surfing on Steemit mobile is actually quite decent, despite the inadequacy of certain types of tables and media not showing up properly on screen.\n\nDecided to write this after going through some dramatic commentaries on Steemit that happened for the past few days. Mostly about ideological disagreements, and especially, overcompensation of posts. While I consider myself pretty critical, I usually opt out of direct, in-your-face type of confrontations. I prefer to plan and pick my own battles, having learned out of experience.\n\nBecause personally, I've never come across any situation that immediately improves itself after insults are thrown around. No one is going to admit wrong right away. Everyone's always right in their own world, and that's particularly true with the presence of an opposing voice. And it doesn't matter how zen one may be. No one's a perfect saint. Everyone has a breaking point. \n\nYup, I've snapped before, more than enough times to know this little fact of life. Nothing good comes out of throwing a fit (well not as much as can be). Sure, our message, our version of truth should be upheld. But there are better ways of fighting the good fight.. maybe like what I'm trying to do with this post right now. So what am I trying to address here?\n\n---------------------------\n# Plan your battles - don't join someone else's!\n
https://s10.postimg.org/ntels66d5/planning.jpg
\nThere was [a post on Steemit](https://steemit.com/anarchy/@kennyskitchen/the-40-anarchists-you-want-to-be-following-on-steemit) a while ago that labelled me an anarchist. Am I? Maybe I am. Sure, I'm against big, centralised governments. I may even detest the inherent thieving practices of big brother. But I'm still running a music event company - there are legal matters that I still need to run by government offices, purely out of safety and security reasons.\n\nYou may argue that it's perverted that I'm using an intrinsically violent agent (namely, The Government and The Police State) to secure the well-being of my business customers. Next I'll ask - can we have a decentralised free market doing music events with all the right securities? That's what my company, [Hybrid Entertainment](https://steemit.com/steemit-marketing/@kevinwong/our-next-dance-music-event-psychedelic-trance-some-steemit-love) partly aims to do. It's a learning process. \n\nFor now, we still need to use the existing structures of Old, Big Government.. while we find ways to transition out of such dependence. Fight too hard and you'll get clamped down, thrown out of the game. You can't do much when you're out of the game, so stay in it! Take the time to plan your battles, dear hot-blooded confrontationists (if that's even a word).\n\nSure, the world needs you to say things as they are. But hearing the painful truth is almost like violence itself. No one likes that, no matter which side of a dispute. Peace also involves peace of mind. It's a much longer game - it comes with the territory. You're already in someone else's fight once you get into war. Only get into war if you're the big guy. The small guy is always the loser - the unwilling pawn. Think about this in scope of what's happening all around the world, even on Steemit.\n\nDon't be a zealot. There are dangers of being too far left, or too far right. Find the middle way. All you need is another perspective. Some people may be asswipes, but goodness is omnipresent if the conditions are right.\n\nAnd that's how you plan your battles - take the time to do it right. \n\nIn perspective of my generally apolitical position on Steemit, I tend to find better ways to contribute instead of lashing out on another user. Sure, I have my dissatisfaction about some author rewards and posting models from time to time. However, I tried putting effort into building better models and figuring out ways to add substantial value into the ecosystem. Eventually, some of us gravitated towards a loose goal of rewarding diversity by combing contents on Steemit on a daily basis.\n\nThere are now epic giant hidden-gem megaposts on Steemit - like this one from [Project Curie](https://steemit.com/@curie) and [Robinhood Whale](https://steemit.com/@robinhoodwhale). Better coverage, better quality, better value - in so many ways. This is the free-market reaction to solo authored hidden-gem posts of early Steemit. No doubt that everything evolves over time. \n\nKnowing that value is subjective, I have always refrained from losing my cool. Even here on Steemit. \n\n**I'm the small fish and I have to plan my battles!**\n\n---------------------------------------\n\n# Don't freaking milk it!\n\n
https://s3.postimg.org/6ne6t272b/milk.jpg
\nThere are big reasons why most of us don't really like governments. Greed and corruption. Needless to say, the crowd easily picks up on this when insubstantial effort is rewarded handsomely. By all means, that's as subjective as can be. What's not (very) subjective, however, is if one continues to milk it, even despite public disapproval. \n\nThis happens all around the world. Don't oversell. You'll lose reputation if you are obviously **milking it**!\n\nSure, you may gain new followers.. newly inspired and freshly impressed. But old eyes grow weary. People are watching, and your social value fluctuates all the time. You can't please everyone, but you can try the **art of not milking the shit out of the system**.\n\nIt's a good business practice. It's a good personal conduct. And it works on Steemit.\n\nThat's a reason why I'm also posting lesser (other than plainly having a huge writer's block, reserving myself from random shitposting). Now I'm only writing when I really think I have something good to add as a post. As I'm partly dependent on Steemit, I've strategized a lil, refraining from appearing to be **milking it**, seeking modes of substantial contribution behind the scenes to compensate for the awesome support that has been given to me on this platform.\n\nIf you are suddenly rewarded thousands for a post - ask yourself. Is that post worth that much? Heck, I don't know if my top philosophical post is worth 4,000 bucks, but I know I've put long hours in it, enough to avoid milking and recycling the same content. Instead, I try to put more effort in other areas of the ecosystem to balance out the lopsided reward.\n\nThe blockchain is transparent. It's easy to find out if you're milking it. To avoid seeming like you're milking it - just be honest and ask yourself the right questions! Then, do the right thing!\n\n**Like life, like Steemit - try to give more than you can take. Don't. Freaking. Milk It.**\n\n----------------------------------\n\n# Take time to build, or take time to exploit?\n
https://img1.steemit.com/0x0/http://i.imgur.com/T9b4dDQ.jpg
\n
By Steemit's talented artist @lgm-1
\n\nNaturally, I'd say take time to build. Once you're caught exploiting the system, in life or on Steemit, you're lose reputation whether or not if its digitally measurable. You can create as many accounts as you want and find a million ways to exploit everything, but ask yourself - what are you building?\n\nHere are some tips for maintaining reputation on Steemit:-\n- Steemit's a mutual aid society. While posts can be about anything, note there's a limited amount of funds going around each day. It's obvious that your reputation is at stake if you have somehow managed to acquire good support, but not giving back substantially.\n- Tags are like real estate. Choose appropriately. An example is if you're writing your opinions on something rather meta, I think it's prudent to respect the scientific community. For example in [my article about consciousness](https://steemit.com/consciousness/@kevinwong/let-s-talk-about-consciousness-wtf-is-it), I've deliberately used the ***pseudoscience*** tag, no matter how right I think I could be. I clearly think about such topics often, but I never put myself in research labs knowing about consciousness well enough to indicate that I am the master of that domain.\n- Follow up on your promises. Communicate transparently.\n- Put in more effort, visibly and even behind the scenes when you manage to acquire good payouts.\n- Try to follow others. Curate and also support other members.\n- Plan your battles and don't milk it! And also, celebrity attitudes won't last long here if you're not giving back to the community. @dollarvigilante is doing this right - he's aiding others and even curating frequently on his free time!\n- Again, in general, give more than you can take.\n\n### Reputation is everything - for survival, for change in a social landscape.\n\n*Note: There is some form of censorship of the mind when it comes to chance of interruption from higher powers. It's the same everywhere. You just have to play your cards right, opting for different methods, different approaches. It's not really a systems-problem. It's a people-problem, as always. Never leave an opening for others to destroy your reputation.*\n\n-----------------------------------------------\n
Stock photos courtesy of https://pixabay.com/
\n\n-----------------------------------------------\n
Follow me @kevinwong
\n-------------------------------------------------", + "json_metadata": { + "tags": [ + "guide", + "life", + "lifehack", + "reputation", + "craigrant" + ], + "users": [ + "lgm-1", + "dollarvigilante", + "kevinwong" + ], + "image": [ + "https://s16.postimg.org/5csp5ocf9/kevv.jpg", + "https://s10.postimg.org/ntels66d5/planning.jpg", + "https://s3.postimg.org/6ne6t272b/milk.jpg", + "https://img1.steemit.com/0x0/http://i.imgur.com/T9b4dDQ.jpg" + ], + "links": [ + "https://steemit.com/anarchy/@kennyskitchen/the-40-anarchists-you-want-to-be-following-on-steemit", + "https://steemit.com/steemit-marketing/@kevinwong/our-next-dance-music-event-psychedelic-trance-some-steemit-love", + "https://steemit.com/@curie", + "https://steemit.com/@robinhoodwhale", + "https://steemit.com/consciousness/@kevinwong/let-s-talk-about-consciousness-wtf-is-it", + "https://pixabay.com/" + ] + }, + "created": "2016-09-14T22:00:36", + "updated": "2016-09-15T07:45:57", + "depth": 0, + "children": 53, + "net_rshares": 115120672136759, + "is_paidout": false, + "payout_at": "2016-09-16T04:43:13", + "payout": 755.208, + "pending_payout_value": "755.208 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ { - "rshares": "2293549771", - "voter": "ellepdub" + "voter": "barrie", + "rshares": "480579269556" }, { - "rshares": "1550172009", - "voter": "allesgruen" + "voter": "anonymous", + "rshares": "231751293887" }, { - "rshares": "59178617", - "voter": "inarix03" + "voter": "rainman", + "rshares": "12889266254874" }, { - "rshares": "4725653598", - "voter": "michelle.gent" + "voter": "berniesanders", + "rshares": "26305603050148" }, { - "rshares": "11523640324", - "voter": "herpetologyguy" + "voter": "val-b", + "rshares": "15605000000000" }, { - "rshares": "54452104", - "voter": "drac59" + "voter": "riverhead", + "rshares": "3358053566682" }, { - "rshares": "4605288518", - "voter": "morgan.waser" + "voter": "badassmother", + "rshares": "1990377241911" }, { - "rshares": "50235850", - "voter": "billkappa442" + "voter": "nextgenwitness", + "rshares": "187617413684" }, { - "rshares": "50233449", - "voter": "teemsteem" + "voter": "pharesim", + "rshares": "3306757675077" }, { - "rshares": "51235131", - "voter": "glassheart" + "voter": "hr1", + "rshares": "2005106058621" }, { - "rshares": "51227561", - "voter": "battalar" + "voter": "justin", + "rshares": "640773963547" }, { - "rshares": "51141851", - "voter": "slow" + "voter": "silver", + "rshares": "1758663279793" }, { - "rshares": "50975390", - "voter": "steemprincess" + "voter": "silversteem", + "rshares": "4166786907723" }, { - "rshares": "57373409", - "voter": "teo" + "voter": "nextgencrypto", + "rshares": "4851657471753" }, { - "rshares": "50873654", - "voter": "palladium" + "voter": "jaewoocho", + "rshares": "22381565222" }, { - "rshares": "1317053201", - "voter": "aksinya" + "voter": "xeroc", + "rshares": "1869062512579" }, { - "rshares": "50570250", - "voter": "ziggo" + "voter": "steemservices", + "rshares": "425868900225" }, { - "rshares": "50538694", - "voter": "fenix" + "voter": "alex90342fastn1", + "rshares": "209639354860" }, { - "rshares": "50536471", - "voter": "twistys" + "voter": "joseph", + "rshares": "1607381560851" }, { - "rshares": "810369666", - "voter": "bapparabi" + "voter": "recursive3", + "rshares": "452603688207" }, { - "rshares": "50479027", - "voter": "sunlight" + "voter": "masteryoda", + "rshares": "588963325183" }, { - "rshares": "9346140667", - "voter": "luzcypher" + "voter": "recursive", + "rshares": "3051642158867" }, { - "rshares": "166200503", - "voter": "haddock" + "voter": "mineralwasser", + "rshares": "1172473837" }, { - "rshares": "3447563868", - "voter": "strong-ai" + "voter": "mrs.agsexplorer", + "rshares": "85737349562" }, { - "rshares": "159723319", - "voter": "ctu" + "voter": "bingo-1", + "rshares": "1620255991" }, { - "rshares": "1507439774", - "voter": "yanik" + "voter": "boatymcboatface", + "rshares": "438041274025" }, { - "rshares": "1319385375", - "voter": "rusteemitblog" + "voter": "idol", + "rshares": "9404339123" }, { - "rshares": "4636706408", - "voter": "jennane" + "voter": "donkeypong", + "rshares": "2692207475582" }, { - "rshares": "149130097", - "voter": "ndea30" + "voter": "steemrollin", + "rshares": "783510713656" }, { - "rshares": "149123370", - "voter": "domenico" + "voter": "sakr", + "rshares": "4632015537" }, { - "rshares": "444421238", - "voter": "witchcraftblog" + "voter": "chitty", + "rshares": "283944946279" }, { - "rshares": "148337519", - "voter": "serena199" + "voter": "alexgr", + "rshares": "47092417970" }, { - "rshares": "148308392", - "voter": "gia7" + "voter": "jocelyn", + "rshares": "1660446343" }, { - "rshares": "160773127", - "voter": "animal" + "voter": "acidsun", + "rshares": "83523204254" }, { - "rshares": "147864891", - "voter": "richie4" + "voter": "edgeland", + "rshares": "148150884169" }, { - "rshares": "147806968", - "voter": "coraline88" + "voter": "jamtaylor", + "rshares": "194244553812" }, { - "rshares": "160319579", - "voter": "cybergirls" + "voter": "eeks", + "rshares": "74898454777" }, { - "rshares": "160260561", - "voter": "rage" + "voter": "paco-steem", + "rshares": "468170958" }, { - "rshares": "147559003", - "voter": "harlen" + "voter": "cryptogee", + "rshares": "912602737692" }, { - "rshares": "147523175", - "voter": "yanuel" + "voter": "spaninv", + "rshares": "5638722045" }, { - "rshares": "147475911", - "voter": "daritza" + "voter": "georgedonnelly", + "rshares": "25545945557" }, { - "rshares": "159984914", - "voter": "correct" + "voter": "instructor2121", + "rshares": "31081352622" }, { - "rshares": "156411729", - "voter": "blender" + "voter": "nate-atkins", + "rshares": "7891620962" }, { - "rshares": "159318360", - "voter": "stimmt" + "voter": "james-show", + "rshares": "18533432464" }, { - "rshares": "158732321", - "voter": "steemwallet" + "voter": "teamsteem", + "rshares": "319841523573" }, { - "rshares": "28919059756", - "voter": "goldmatters" + "voter": "cryptoctopus", + "rshares": "1713517353627" }, { - "rshares": "71720421", - "voter": "dealzgal" + "voter": "richman", + "rshares": "9535707424" }, { - "rshares": "77287933", - "voter": "storage" + "voter": "nanzo-scoop", + "rshares": "550546408583" }, { - "rshares": "184381906", - "voter": "antaja" + "voter": "fact", + "rshares": "13340014301" }, { - "rshares": "154503543", - "voter": "steemdesigner" + "voter": "steve-walschot", + "rshares": "160905828175" }, { - "rshares": "329629477", - "voter": "aldentan" + "voter": "cian.dafe", + "rshares": "10099012692" }, { - "rshares": "61536953", - "voter": "blackmarket" + "voter": "hannixx42", + "rshares": "47422549796" }, { - "rshares": "67683958", - "voter": "gifts" + "voter": "mummyimperfect", + "rshares": "169123085990" }, { - "rshares": "91120780", - "voter": "expat" + "voter": "coar", + "rshares": "268838726" }, { - "rshares": "134906258", - "voter": "steemtrail" + "voter": "asch", + "rshares": "98194455049" }, { - "rshares": "100289745", - "voter": "paulocouto" + "voter": "kevinwong", + "rshares": "603531864037" }, { - "rshares": "138917685", - "voter": "sawgunner13" + "voter": "murh", + "rshares": "1060920601" }, { - "rshares": "1593664040", - "voter": "steemlift" - } - ], - "author": "kevinwong", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "
https://s16.postimg.org/5csp5ocf9/kevv.jpg
\n\nHere I am spending the night in the darkness of my bedroom. Dog's snoring right beside me, his head resting on my chest. Feeling like I'm in some prologue of a cyberpunk story. Anyway, surfing on Steemit mobile is actually quite decent, despite the inadequacy of certain types of tables and media not showing up properly on screen.\n\nDecided to write this after going through some dramatic commentaries on Steemit that happened for the past few days. Mostly about ideological disagreements, and especially, overcompensation of posts. While I consider myself pretty critical, I usually opt out of direct, in-your-face type of confrontations. I prefer to plan and pick my own battles, having learned out of experience.\n\nBecause personally, I've never come across any situation that immediately improves itself after insults are thrown around. No one is going to admit wrong right away. Everyone's always right in their own world, and that's particularly true with the presence of an opposing voice. And it doesn't matter how zen one may be. No one's a perfect saint. Everyone has a breaking point. \n\nYup, I've snapped before, more than enough times to know this little fact of life. Nothing good comes out of throwing a fit (well not as much as can be). Sure, our message, our version of truth should be upheld. But there are better ways of fighting the good fight.. maybe like what I'm trying to do with this post right now. So what am I trying to address here?\n\n---------------------------\n# Plan your battles - don't join someone else's!\n
https://s10.postimg.org/ntels66d5/planning.jpg
\nThere was [a post on Steemit](https://steemit.com/anarchy/@kennyskitchen/the-40-anarchists-you-want-to-be-following-on-steemit) a while ago that labelled me an anarchist. Am I? Maybe I am. Sure, I'm against big, centralised governments. I may even detest the inherent thieving practices of big brother. But I'm still running a music event company - there are legal matters that I still need to run by government offices, purely out of safety and security reasons.\n\nYou may argue that it's perverted that I'm using an intrinsically violent agent (namely, The Government and The Police State) to secure the well-being of my business customers. Next I'll ask - can we have a decentralised free market doing music events with all the right securities? That's what my company, [Hybrid Entertainment](https://steemit.com/steemit-marketing/@kevinwong/our-next-dance-music-event-psychedelic-trance-some-steemit-love) partly aims to do. It's a learning process. \n\nFor now, we still need to use the existing structures of Old, Big Government.. while we find ways to transition out of such dependence. Fight too hard and you'll get clamped down, thrown out of the game. You can't do much when you're out of the game, so stay in it! Take the time to plan your battles, dear hot-blooded confrontationists (if that's even a word).\n\nSure, the world needs you to say things as they are. But hearing the painful truth is almost like violence itself. No one likes that, no matter which side of a dispute. Peace also involves peace of mind. It's a much longer game - it comes with the territory. You're already in someone else's fight once you get into war. Only get into war if you're the big guy. The small guy is always the loser - the unwilling pawn. Think about this in scope of what's happening all around the world, even on Steemit.\n\nDon't be a zealot. There are dangers of being too far left, or too far right. Find the middle way. All you need is another perspective. Some people may be asswipes, but goodness is omnipresent if the conditions are right.\n\nAnd that's how you plan your battles - take the time to do it right. \n\nIn perspective of my generally apolitical position on Steemit, I tend to find better ways to contribute instead of lashing out on another user. Sure, I have my dissatisfaction about some author rewards and posting models from time to time. However, I tried putting effort into building better models and figuring out ways to add substantial value into the ecosystem. Eventually, some of us gravitated towards a loose goal of rewarding diversity by combing contents on Steemit on a daily basis.\n\nThere are now epic giant hidden-gem megaposts on Steemit - like this one from [Project Curie](https://steemit.com/@curie) and [Robinhood Whale](https://steemit.com/@robinhoodwhale). Better coverage, better quality, better value - in so many ways. This is the free-market reaction to solo authored hidden-gem posts of early Steemit. No doubt that everything evolves over time. \n\nKnowing that value is subjective, I have always refrained from losing my cool. Even here on Steemit. \n\n**I'm the small fish and I have to plan my battles!**\n\n---------------------------------------\n\n# Don't freaking milk it!\n\n
https://s3.postimg.org/6ne6t272b/milk.jpg
\nThere are big reasons why most of us don't really like governments. Greed and corruption. Needless to say, the crowd easily picks up on this when insubstantial effort is rewarded handsomely. By all means, that's as subjective as can be. What's not (very) subjective, however, is if one continues to milk it, even despite public disapproval. \n\nThis happens all around the world. Don't oversell. You'll lose reputation if you are obviously **milking it**!\n\nSure, you may gain new followers.. newly inspired and freshly impressed. But old eyes grow weary. People are watching, and your social value fluctuates all the time. You can't please everyone, but you can try the **art of not milking the shit out of the system**.\n\nIt's a good business practice. It's a good personal conduct. And it works on Steemit.\n\nThat's a reason why I'm also posting lesser (other than plainly having a huge writer's block, reserving myself from random shitposting). Now I'm only writing when I really think I have something good to add as a post. As I'm partly dependent on Steemit, I've strategized a lil, refraining from appearing to be **milking it**, seeking modes of substantial contribution behind the scenes to compensate for the awesome support that has been given to me on this platform.\n\nIf you are suddenly rewarded thousands for a post - ask yourself. Is that post worth that much? Heck, I don't know if my top philosophical post is worth 4,000 bucks, but I know I've put long hours in it, enough to avoid milking and recycling the same content. Instead, I try to put more effort in other areas of the ecosystem to balance out the lopsided reward.\n\nThe blockchain is transparent. It's easy to find out if you're milking it. To avoid seeming like you're milking it - just be honest and ask yourself the right questions! Then, do the right thing!\n\n**Like life, like Steemit - try to give more than you can take. Don't. Freaking. Milk It.**\n\n----------------------------------\n\n# Take time to build, or take time to exploit?\n
https://img1.steemit.com/0x0/http://i.imgur.com/T9b4dDQ.jpg
\n
By Steemit's talented artist @lgm-1
\n\nNaturally, I'd say take time to build. Once you're caught exploiting the system, in life or on Steemit, you're lose reputation whether or not if its digitally measurable. You can create as many accounts as you want and find a million ways to exploit everything, but ask yourself - what are you building?\n\nHere are some tips for maintaining reputation on Steemit:-\n- Steemit's a mutual aid society. While posts can be about anything, note there's a limited amount of funds going around each day. It's obvious that your reputation is at stake if you have somehow managed to acquire good support, but not giving back substantially.\n- Tags are like real estate. Choose appropriately. An example is if you're writing your opinions on something rather meta, I think it's prudent to respect the scientific community. For example in [my article about consciousness](https://steemit.com/consciousness/@kevinwong/let-s-talk-about-consciousness-wtf-is-it), I've deliberately used the ***pseudoscience*** tag, no matter how right I think I could be. I clearly think about such topics often, but I never put myself in research labs knowing about consciousness well enough to indicate that I am the master of that domain.\n- Follow up on your promises. Communicate transparently.\n- Put in more effort, visibly and even behind the scenes when you manage to acquire good payouts.\n- Try to follow others. Curate and also support other members.\n- Plan your battles and don't milk it! And also, celebrity attitudes won't last long here if you're not giving back to the community. @dollarvigilante is doing this right - he's aiding others and even curating frequently on his free time!\n- Again, in general, give more than you can take.\n\n### Reputation is everything - for survival, for change in a social landscape.\n\n*Note: There is some form of censorship of the mind when it comes to chance of interruption from higher powers. It's the same everywhere. You just have to play your cards right, opting for different methods, different approaches. It's not really a systems-problem. It's a people-problem, as always. Never leave an opening for others to destroy your reputation.*\n\n-----------------------------------------------\n
Stock photos courtesy of https://pixabay.com/
\n\n-----------------------------------------------\n
Follow me @kevinwong
\n-------------------------------------------------", - "category": "guide", - "children": 53, - "created": "2016-09-14T22:00:36", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://s16.postimg.org/5csp5ocf9/kevv.jpg", - "https://s10.postimg.org/ntels66d5/planning.jpg", - "https://s3.postimg.org/6ne6t272b/milk.jpg", - "https://img1.steemit.com/0x0/http://i.imgur.com/T9b4dDQ.jpg" - ], - "links": [ - "https://steemit.com/anarchy/@kennyskitchen/the-40-anarchists-you-want-to-be-following-on-steemit", - "https://steemit.com/steemit-marketing/@kevinwong/our-next-dance-music-event-psychedelic-trance-some-steemit-love", - "https://steemit.com/@curie", - "https://steemit.com/@robinhoodwhale", - "https://steemit.com/consciousness/@kevinwong/let-s-talk-about-consciousness-wtf-is-it", - "https://pixabay.com/" - ], - "tags": [ - "guide", - "life", - "lifehack", - "reputation", - "craigrant" - ], - "users": [ - "lgm-1", - "dollarvigilante", - "kevinwong" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 115120672136759, - "payout": 753.848, - "payout_at": "2016-09-21T22:00:36", - "pending_payout_value": "753.848 HBD", - "percent_hbd": 10000, - "permlink": "the-art-of-maintaining-reputation-plan-your-battles-and-don-t-milk-it", - "post_id": 1247817, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 380 - }, - "title": "The Art of Maintaining Reputation: Plan Your Battles and Don't Milk It!", - "updated": "2016-09-15T07:45:57", - "url": "/guide/@kevinwong/the-art-of-maintaining-reputation-plan-your-battles-and-don-t-milk-it" - }, - { - "active_votes": [ - { - "rshares": "27814176695531", - "voter": "dantheman" + "voter": "cryptofunk", + "rshares": "3041891225" }, { - "rshares": "7145643497594", - "voter": "skywalker" + "voter": "radioactivities", + "rshares": "3140744830" }, { - "rshares": "1968124814276", - "voter": "badassmother" + "voter": "error", + "rshares": "2164686241" }, { - "rshares": "2052934239988", - "voter": "hr1" + "voter": "marta-zaidel", + "rshares": "5736901624" }, { - "rshares": "6596087814836", - "voter": "fuzzyvest" + "voter": "ranko-k", + "rshares": "40014025775" }, { - "rshares": "1337025448249", - "voter": "rossco99" + "voter": "cyber", + "rshares": "985042955913" }, { - "rshares": "22864938197", - "voter": "jaewoocho" + "voter": "ak2020", + "rshares": "48237714954" }, { - "rshares": "1576018783851", - "voter": "joseph" + "voter": "justtryme90", + "rshares": "65573912297" }, { - "rshares": "466052314352", - "voter": "recursive2" + "voter": "drinkzya", + "rshares": "33032554744" }, { - "rshares": "636514783207", - "voter": "masteryoda" + "voter": "satoshifund", + "rshares": "3616249140600" }, { - "rshares": "3120252422964", - "voter": "recursive" + "voter": "taoteh1221", + "rshares": "392453750650" }, { - "rshares": "681020986865", - "voter": "boombastic" + "voter": "applecrisp", + "rshares": "418804855" }, { - "rshares": "91328598326", - "voter": "mrs.agsexplorer" + "voter": "stiletto", + "rshares": "365287420" }, { - "rshares": "6959124583", - "voter": "bingo-0" + "voter": "juanmiguelsalas", + "rshares": "55576340008" }, { - "rshares": "1330868635495", - "voter": "steempower" + "voter": "andrarchy", + "rshares": "572341707403" }, { - "rshares": "445757361586", - "voter": "boatymcboatface" + "voter": "kenny-crane", + "rshares": "110473581518" }, { - "rshares": "443132842669", - "voter": "officialfuzzy" + "voter": "thecryptodrive", + "rshares": "54694274623" }, { - "rshares": "9167255683", - "voter": "idol" + "voter": "kaylinart", + "rshares": "353770070386" }, { - "rshares": "18955732033", - "voter": "chitty" + "voter": "infovore", + "rshares": "563733180586" }, { - "rshares": "8232133931", - "voter": "unosuke" + "voter": "schro", + "rshares": "132301151875" }, { - "rshares": "139694054199", - "voter": "chris4210" + "voter": "tee-em", + "rshares": "4552145645" }, { - "rshares": "14501486968", - "voter": "valtr" + "voter": "michaelx", + "rshares": "30491735429" }, { - "rshares": "1577916417", - "voter": "jocelyn" + "voter": "anwenbaumeister", + "rshares": "804471067802" }, { - "rshares": "9604795718", - "voter": "gregory60" + "voter": "grandpere", + "rshares": "8928351544" }, { - "rshares": "89897248149", - "voter": "eeks" + "voter": "mark-waser", + "rshares": "5689049935" }, { - "rshares": "24694558802", - "voter": "fkn" + "voter": "albertogm", + "rshares": "17023109715" }, { - "rshares": "468281676", - "voter": "paco-steem" + "voter": "geoffrey", + "rshares": "106033721718" }, { - "rshares": "5641144936", - "voter": "spaninv" + "voter": "kimziv", + "rshares": "192232704674" }, { - "rshares": "32459455171", - "voter": "elishagh1" + "voter": "lukestokes", + "rshares": "267994388047" }, { - "rshares": "8669787638", - "voter": "richman" + "voter": "honeythief", + "rshares": "43526357269" }, { - "rshares": "584162335269", - "voter": "nanzo-scoop" + "voter": "mammasitta", + "rshares": "783400875" }, { - "rshares": "469184158", - "voter": "jeffanthonyfds" + "voter": "emily-cook", + "rshares": "77695030973" }, { - "rshares": "10461841838", - "voter": "acidyo" + "voter": "talanhorne", + "rshares": "32733174015" }, { - "rshares": "36656769992", - "voter": "dan-atstarlite" + "voter": "razvanelulmarin", + "rshares": "81716838174" }, { - "rshares": "177393957447", - "voter": "mummyimperfect" + "voter": "superfreek", + "rshares": "2122888373" }, { - "rshares": "313687341", - "voter": "coar" + "voter": "cryptoiskey", + "rshares": "33245604843" }, { - "rshares": "106629500909", - "voter": "asch" + "voter": "primus", + "rshares": "11728574802" }, { - "rshares": "1061210624", - "voter": "murh" + "voter": "mrhankeh", + "rshares": "471495169" }, { - "rshares": "6230682263", - "voter": "cryptofunk" + "voter": "clement", + "rshares": "37138635112" }, { - "rshares": "579494558", - "voter": "kodi" + "voter": "isteemit", + "rshares": "47416157546" }, { - "rshares": "2111403468", - "voter": "error" + "voter": "norbu", + "rshares": "67109183200" }, { - "rshares": "985518335179", - "voter": "cyber" + "voter": "ladyclair", + "rshares": "280886491" }, { - "rshares": "61711048609", - "voter": "theshell" + "voter": "bacchist", + "rshares": "69639423700" }, { - "rshares": "50879221096", - "voter": "ak2020" + "voter": "venuspcs", + "rshares": "53810463964" }, { - "rshares": "63100175656", - "voter": "justtryme90" + "voter": "michaellamden68", + "rshares": "3806124499" }, { - "rshares": "400866642793", - "voter": "taoteh1221" + "voter": "dasha", + "rshares": "7415227922" }, { - "rshares": "410502622", - "voter": "applecrisp" + "voter": "asmolokalo", + "rshares": "174543034217" }, { - "rshares": "365370465", - "voter": "stiletto" + "voter": "ezzy", + "rshares": "55965693937" }, { - "rshares": "15787116636", - "voter": "zakharya" + "voter": "rubybian", + "rshares": "69473128292" }, { - "rshares": "280678620376", - "voter": "trogdor" + "voter": "orly", + "rshares": "3148262011" }, { - "rshares": "121380113922", - "voter": "geoffrey" + "voter": "firepower", + "rshares": "46383380668" }, { - "rshares": "208331842756", - "voter": "kimziv" + "voter": "mstang83", + "rshares": "245172817" }, { - "rshares": "76009124707", - "voter": "emily-cook" + "voter": "katyakov", + "rshares": "24863029935" }, { - "rshares": "12064022115", - "voter": "primus" + "voter": "yogi.artist", + "rshares": "15674042620" }, { - "rshares": "29635215678", - "voter": "acassity" + "voter": "r4fken", + "rshares": "14215545466" }, { - "rshares": "280916636", - "voter": "ladyclair" + "voter": "steemswede", + "rshares": "1001850942" }, { - "rshares": "19099829330", - "voter": "venuspcs" + "voter": "derekareith", + "rshares": "142892158061" }, { - "rshares": "813595892", - "voter": "poias" + "voter": "slowwalker", + "rshares": "823059128625" }, { - "rshares": "7418976078", - "voter": "dasha" + "voter": "btcshare7", + "rshares": "1553964832" }, { - "rshares": "153697599394", - "voter": "asmolokalo" + "voter": "vi1son", + "rshares": "2210761988" }, { - "rshares": "1642983170", - "voter": "gidlark" + "voter": "renohq", + "rshares": "1267696038568" }, { - "rshares": "73849034695", - "voter": "rubybian" + "voter": "sigmajin", + "rshares": "98005962692" }, { - "rshares": "3058898852", - "voter": "getssidetracked" + "voter": "ausbitbank", + "rshares": "14876241153" }, { - "rshares": "17903672525", - "voter": "konstantin" + "voter": "mrwang", + "rshares": "45733145544" }, { - "rshares": "572413932", - "voter": "trees" + "voter": "steem1653", + "rshares": "2530804964" }, { - "rshares": "83801390", - "voter": "strawhat" + "voter": "anyx", + "rshares": "188405790343" }, { - "rshares": "2597453094", - "voter": "romel" + "voter": "steemit-life", + "rshares": "7540907296" }, { - "rshares": "276570042", - "voter": "cryptochannel" + "voter": "asim", + "rshares": "11754696821" }, { - "rshares": "120546538382", - "voter": "furion" + "voter": "jesta", + "rshares": "320414159082" }, { - "rshares": "6462652657", - "voter": "owdy" + "voter": "snowden", + "rshares": "90257674" }, { - "rshares": "590190776", - "voter": "barbara2" + "voter": "aaseb", + "rshares": "14289427593" }, { - "rshares": "642869652", - "voter": "ch0c0latechip" + "voter": "karen13", + "rshares": "1107704273" }, { - "rshares": "607124531", - "voter": "doge4lyf" + "voter": "deviedev", + "rshares": "10417290332" }, { - "rshares": "18371164995", - "voter": "sebastien" + "voter": "nabilov", + "rshares": "258942997644" }, { - "rshares": "13516878845", - "voter": "sitaru" + "voter": "meesterboom", + "rshares": "17586922894" }, { - "rshares": "14487855165", - "voter": "aaseb" + "voter": "noodhoog", + "rshares": "8573230772" }, { - "rshares": "4209499465", - "voter": "karen13" + "voter": "juvyjabian", + "rshares": "6400554488" }, { - "rshares": "10646413479", - "voter": "deviedev" + "voter": "dmacshady", + "rshares": "2668109030" }, { - "rshares": "258981906731", - "voter": "nabilov" + "voter": "karenmckersie", + "rshares": "476670464" }, { - "rshares": "117757790207", - "voter": "pkattera" + "voter": "knozaki2015", + "rshares": "451014793670" }, { - "rshares": "274155883", - "voter": "tinyhomeliving" + "voter": "milestone", + "rshares": "44553728340" }, { - "rshares": "55698224169", - "voter": "streetstyle" + "voter": "lichtblick", + "rshares": "7312894074" }, { - "rshares": "7313749376", - "voter": "lichtblick" + "voter": "wildchild", + "rshares": "84865861" }, { - "rshares": "35782652880", - "voter": "creemej" + "voter": "btcbtcbtc20155", + "rshares": "5726094484" }, { - "rshares": "5726411049", - "voter": "btcbtcbtc20155" + "voter": "nippel66", + "rshares": "15683266563" }, { - "rshares": "167298234999", - "voter": "blueorgy" + "voter": "oululahti", + "rshares": "4317565662" }, { - "rshares": "4544488912", - "voter": "poseidon" + "voter": "poseidon", + "rshares": "4310346145" }, { - "rshares": "7946556816", - "voter": "smolalit" + "voter": "simon.braki.love", + "rshares": "3365335082" }, { - "rshares": "3506024506", - "voter": "simon.braki.love" + "voter": "thylbom", + "rshares": "76406992485" }, { - "rshares": "82781233416", - "voter": "thylbom" + "voter": "geronimo", + "rshares": "7311858289" }, { - "rshares": "86528557116", - "voter": "rea" + "voter": "rpf", + "rshares": "10684939578" }, { - "rshares": "204615586375", - "voter": "jl777" + "voter": "bitcoiner", + "rshares": "3692989929" }, { - "rshares": "20026634941", - "voter": "positive" + "voter": "tarindel", + "rshares": "3756550273" }, { - "rshares": "35105434017", - "voter": "paquito" + "voter": "azurejasper", + "rshares": "3712828665" }, { - "rshares": "8507360175", - "voter": "fishborne" + "voter": "liberosist", + "rshares": "279059042940" }, { - "rshares": "309088757", - "voter": "sergey44" + "voter": "deanliu", + "rshares": "30859119533" }, { - "rshares": "17267159012", - "voter": "proto" + "voter": "sharker", + "rshares": "5496325958" }, { - "rshares": "34304658614", - "voter": "sisterholics" + "voter": "sauravrungta", + "rshares": "33395139065" }, { - "rshares": "674282213", - "voter": "fnait" + "voter": "rea", + "rshares": "84683756607" }, { - "rshares": "611258547", - "voter": "keepcalmand" + "voter": "jl777", + "rshares": "53842086331" }, { - "rshares": "42379649186", - "voter": "smailer" + "voter": "zaebars", + "rshares": "29215490743" }, { - "rshares": "25636155654", - "voter": "pixielolz" + "voter": "yarly", + "rshares": "1700143919" }, { - "rshares": "149624601", - "voter": "steemster1" + "voter": "yarly2", + "rshares": "256282552" }, { - "rshares": "1033757233", - "voter": "neowenyuan27" + "voter": "yarly3", + "rshares": "256665987" }, { - "rshares": "3353832611", - "voter": "glitterpig" + "voter": "yarly4", + "rshares": "148269777" }, { - "rshares": "121680301", - "voter": "picker" + "voter": "yarly5", + "rshares": "149106888" }, { - "rshares": "896285424", - "voter": "metaflute" + "voter": "yarly7", + "rshares": "84991309" }, { - "rshares": "8734048037", - "voter": "taker" + "voter": "raymonjohnstone", + "rshares": "779992403" }, { - "rshares": "59219358", - "voter": "sharon" + "voter": "steemchain", + "rshares": "50619397" }, { - "rshares": "60342922", - "voter": "lillianjones" + "voter": "whalepool", + "rshares": "50619397" }, { - "rshares": "1213074787308", - "voter": "laonie" + "voter": "gustavopasquini", + "rshares": "5218510034" }, { - "rshares": "157504637007", - "voter": "twinner" + "voter": "papa-pepper", + "rshares": "32308067031" }, { - "rshares": "4890234271", - "voter": "satoshifpv" + "voter": "winstonwolfe", + "rshares": "16539590111" }, { - "rshares": "11693771864", - "voter": "thebluepanda" + "voter": "happyphoenix", + "rshares": "885730214" }, { - "rshares": "42635136908", - "voter": "myfirst" + "voter": "krabgat", + "rshares": "21120708735" }, { - "rshares": "252723433247", - "voter": "somebody" + "voter": "kooshikoo", + "rshares": "474951354" }, { - "rshares": "16251975438", - "voter": "sunshine" + "voter": "proto", + "rshares": "4543692384" }, { - "rshares": "9691515710", - "voter": "flysaga" + "voter": "curator", + "rshares": "634121191" }, { - "rshares": "2501627790", - "voter": "gmurph" + "voter": "sisterholics", + "rshares": "31584377035" }, { - "rshares": "55828810753", - "voter": "midnightoil" + "voter": "yarly10", + "rshares": "411321155" }, { - "rshares": "84246848", - "voter": "coderg" + "voter": "alex.chien", + "rshares": "1365664469" }, { - "rshares": "4281232336", - "voter": "ullikume" + "voter": "yarly11", + "rshares": "220139771" }, { - "rshares": "139631233866", - "voter": "xiaohui" + "voter": "yarly12", + "rshares": "76966318" }, { - "rshares": "6952769870", - "voter": "elfkitchen" + "voter": "tygergamer", + "rshares": "3675499938" }, { - "rshares": "103387869456", - "voter": "joele" + "voter": "kibela", + "rshares": "173441395" }, { - "rshares": "4365575224", - "voter": "xiaokongcom" + "voter": "alanc", + "rshares": "376816435" }, { - "rshares": "1405383530", - "voter": "hms818" + "voter": "bullionstackers", + "rshares": "238488697" }, { - "rshares": "42833125455", - "voter": "nonlinearone" + "voter": "originate", + "rshares": "245216458115" }, { - "rshares": "60819615", - "voter": "msjennifer" + "voter": "sulev", + "rshares": "3361197115" }, { - "rshares": "55925537", - "voter": "ciao" + "voter": "sterlinluxan", + "rshares": "121123550176" }, { - "rshares": "3033050865", - "voter": "jrcornel" + "voter": "cryptoz", + "rshares": "108721833" }, { - "rshares": "55449983", - "voter": "steemo" + "voter": "jasonstaggers", + "rshares": "46036044554" }, { - "rshares": "9025821447", - "voter": "xianjun" + "voter": "steemdrive", + "rshares": "131896331875" }, { - "rshares": "55306941", - "voter": "steema" + "voter": "andrew-charles", + "rshares": "114064883" }, { - "rshares": "71282219", - "voter": "confucius" + "voter": "metaflute", + "rshares": "1024314167" }, { - "rshares": "9729857687", - "voter": "mione" + "voter": "gomeravibz", + "rshares": "50563376844" }, { - "rshares": "56157882", - "voter": "jarvis" + "voter": "taker", + "rshares": "2298283061" }, { - "rshares": "591097626", - "voter": "microluck" + "voter": "nekromarinist", + "rshares": "4238154544" }, { - "rshares": "75676352", - "voter": "razberrijam" + "voter": "frozendota", + "rshares": "230729901" }, { - "rshares": "54313084", - "voter": "fortuner" + "voter": "felixxx", + "rshares": "14753485936" }, { - "rshares": "3286864056", - "voter": "macartem" + "voter": "dumar022", + "rshares": "9904971006" }, { - "rshares": "9827647000", - "voter": "gvargas123" + "voter": "merej99", + "rshares": "2236125772" }, { - "rshares": "53056158", - "voter": "johnbyrd" + "voter": "laonie", + "rshares": "1116584393219" }, { - "rshares": "53039566", - "voter": "thomasaustin" + "voter": "rawnetics", + "rshares": "23391691291" }, { - "rshares": "53037689", - "voter": "thermor" + "voter": "capitalism", + "rshares": "47378225109" }, { - "rshares": "53048942", - "voter": "ficholl" + "voter": "always1success", + "rshares": "72994310" }, { - "rshares": "53030738", - "voter": "widell" + "voter": "thebluepanda", + "rshares": "11693177698" }, { - "rshares": "3635091595", - "voter": "movievertigo" + "voter": "laonie1", + "rshares": "22955094272" }, { - "rshares": "52651308", - "voter": "revelbrooks" + "voter": "laonie2", + "rshares": "23470889026" }, { - "rshares": "332237822", - "voter": "mrlogic" + "voter": "laonie3", + "rshares": "23479197538" }, { - "rshares": "56654664918", - "voter": "mandibil" + "voter": "laoyao", + "rshares": "23907912804" }, { - "rshares": "51562255", - "voter": "curpose" + "voter": "myfirst", + "rshares": "37203693135" }, { - "rshares": "69986345", - "voter": "steembriefing" + "voter": "somebody", + "rshares": "226716353883" }, { - "rshares": "54612436", - "voter": "riv" + "voter": "flysaga", + "rshares": "8719381987" }, { - "rshares": "56405368", - "voter": "stephenkendal" + "voter": "brendio", + "rshares": "4930352522" }, { - "rshares": "115288656029", - "voter": "shenanigator" + "voter": "gmurph", + "rshares": "2082768176" }, { - "rshares": "2163490459", - "voter": "jeffreyahann" + "voter": "kurzer42", + "rshares": "75896047" }, { - "rshares": "1857811307", - "voter": "funkywanderer" + "voter": "midnightoil", + "rshares": "50083801467" }, { - "rshares": "5053551216", - "voter": "richardcrill" + "voter": "kalimor", + "rshares": "2375155298" }, { - "rshares": "51712804", - "voter": "troich" + "voter": "coderg", + "rshares": "85931785" }, { - "rshares": "180241566", - "voter": "team101" + "voter": "ullikume", + "rshares": "4371109343" }, { - "rshares": "51718188", - "voter": "crion" + "voter": "michellek", + "rshares": "50565616" }, { - "rshares": "51388276", - "voter": "hitherise" + "voter": "laonie4", + "rshares": "23474742068" }, { - "rshares": "51379706", - "voter": "wiss" + "voter": "laonie5", + "rshares": "23472418592" }, { - "rshares": "54241809836", - "voter": "sponge-bob" + "voter": "laonie6", + "rshares": "23469546880" }, { - "rshares": "52143228", - "voter": "stroully" + "voter": "laonie7", + "rshares": "23465711623" }, { - "rshares": "53070013", - "voter": "apparat" + "voter": "kurtbeil", + "rshares": "3820532578" }, { - "rshares": "51814474", - "voter": "thadm" + "voter": "laonie8", + "rshares": "23462236775" }, { - "rshares": "51812703", - "voter": "prof" + "voter": "laonie9", + "rshares": "23459668262" }, { - "rshares": "1655277599", - "voter": "smisi" + "voter": "steemleak", + "rshares": "2440083379" }, { - "rshares": "51465774", - "voter": "yorsens" + "voter": "thisisbenbrick", + "rshares": "112055912400" }, { - "rshares": "3068760608", - "voter": "michaelmatthews" + "voter": "xiaohui", + "rshares": "125244617154" }, { - "rshares": "184881039384", - "voter": "asksisk" + "voter": "jphamer1", + "rshares": "21110659306" }, { - "rshares": "51154263", - "voter": "bane" + "voter": "bigsambucca", + "rshares": "94018543" }, { - "rshares": "51148009", - "voter": "vive" + "voter": "elfkitchen", + "rshares": "5946773586" }, { - "rshares": "51142585", - "voter": "coad" + "voter": "oflyhigh", + "rshares": "5766554064" }, { - "rshares": "232386397", - "voter": "pjo" + "voter": "paynode", + "rshares": "2142137848" }, { - "rshares": "51922012", - "voter": "sofa" + "voter": "nickche", + "rshares": "62525016" }, { - "rshares": "330365849", - "voter": "panther" + "voter": "rusteller", + "rshares": "303568520" }, { - "rshares": "201122420257", - "voter": "doudou252666" + "voter": "sirwinchester", + "rshares": "260000341079" }, { - "rshares": "59422248", - "voter": "plantbasedjunkie" + "voter": "xiaokongcom", + "rshares": "4028395316" }, { - "rshares": "55335930229", - "voter": "brains" + "voter": "gargon", + "rshares": "12683521359" }, { - "rshares": "51994517", - "voter": "ailo" + "voter": "pgarcgo", + "rshares": "2305504187" }, { - "rshares": "1369339863", - "voter": "steemafon" + "voter": "future24", + "rshares": "2447938775" }, { - "rshares": "339273477", - "voter": "anomaly" + "voter": "xianjun", + "rshares": "8120387338" }, { - "rshares": "123155378", - "voter": "ola1" + "voter": "lgm-1", + "rshares": "7546495705" }, { - "rshares": "4647741844", - "voter": "michelle.gent" + "voter": "evgenyche", + "rshares": "77724719" }, { - "rshares": "50441122", - "voter": "eavy" + "voter": "stevescriber", + "rshares": "69130289" }, { - "rshares": "50454901", - "voter": "roto" + "voter": "bledarus", + "rshares": "3277990744" }, { - "rshares": "70282046", - "voter": "mari5555na" + "voter": "loli", + "rshares": "50027573" }, { - "rshares": "50225780", - "voter": "steemq" + "voter": "miacats", + "rshares": "89195680289" }, { - "rshares": "50223099", - "voter": "battalar" + "voter": "nano2nd", + "rshares": "52419023" }, { - "rshares": "51215236", - "voter": "deli" + "voter": "microluck", + "rshares": "531944476" }, { - "rshares": "50875769", - "voter": "cyan" + "voter": "razberrijam", + "rshares": "77220767" }, { - "rshares": "50540827", - "voter": "amstel" + "voter": "chinadaily", + "rshares": "1952786674" }, { - "rshares": "2216805889", - "voter": "bapparabi" + "voter": "kyriacos", + "rshares": "13869624454" }, { - "rshares": "247235040", - "voter": "darkminded153" + "voter": "thecurator", + "rshares": "36244326905" }, { - "rshares": "72826233", - "voter": "igtes" + "voter": "cryptoblu", + "rshares": "59021275" }, { - "rshares": "144899746", - "voter": "buffett" + "voter": "instructor", + "rshares": "59014859" }, { - "rshares": "2650993895", - "voter": "senseye" + "voter": "dollarvigilante", + "rshares": "739426684571" }, { - "rshares": "162911190", - "voter": "front" + "voter": "anotherjoe", + "rshares": "93497889783" }, { - "rshares": "158676075", - "voter": "iberia" + "voter": "solarguy", + "rshares": "7166212158" }, { - "rshares": "161218747", - "voter": "sdc" + "voter": "lamech-m", + "rshares": "3897735456" }, { - "rshares": "304461322", - "voter": "james1987" + "voter": "serejandmyself", + "rshares": "84681497836" }, { - "rshares": "157745750", - "voter": "digitalillusions" + "voter": "mrgrey", + "rshares": "9544116466" }, { - "rshares": "160880639", - "voter": "illusions" + "voter": "alexma3x", + "rshares": "728730693" }, { - "rshares": "160870736", - "voter": "electronicarts" + "voter": "gvargas123", + "rshares": "9825243280" }, { - "rshares": "3795712999", - "voter": "dresden" + "voter": "cryptomancer", + "rshares": "13829552678" }, { - "rshares": "159950870", - "voter": "haribo" + "voter": "dimitriy", + "rshares": "58964015" }, { - "rshares": "159352476", - "voter": "panic" + "voter": "laonie10", + "rshares": "23453540976" }, { - "rshares": "156043541", - "voter": "disneypixar" + "voter": "wuyueling", + "rshares": "604185913" }, { - "rshares": "1534731729", - "voter": "modernbukowski" + "voter": "sweetsssj", + "rshares": "73276984296" }, { - "rshares": "155452864", - "voter": "jyriygo" + "voter": "netaterra", + "rshares": "2803446535" }, { - "rshares": "31683945302", - "voter": "goldmatters" + "voter": "bitchplease", + "rshares": "50816343" }, { - "rshares": "155180811", - "voter": "majes" + "voter": "barrycooper", + "rshares": "92899380169" }, { - "rshares": "153284499", - "voter": "daniel1974" - } - ], - "author": "steempower", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "![](https://s18.postimg.org/fcl7ffx1l/ripple.png)\n## Ripple has raised another 55 Million in its latest round of funding bringing it total raised to 93 Million.\n\nThe news has reached mainstream news services such as CNBC, WSJ, Reuters and the like. News seems to be first released 2 hours ago 12:35 pm; Thursday, 15 September 2016.\n\n### News Articles:\n[CoinDesk](http://www.coindesk.com/ripple-blockchain-55-million-series-b/)\n[CNBC](http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html)\n[WSJ](http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401)\n[Reuters ](http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z)\n\nAccording to the article linked above (CNBC) 'The start-up is currently working with 15 of the top 50 global banks including UBS and Santander.'\n\nNew and existing investors were involved in the new Ripple funding round. New investors included Accenture Ventures, SBI Holdings, SCB Digital Ventures, Standard Chartered PLC, and the investment arm of Thailand\u2019s Siam Commercial Bank. Existing investors that joined in this round included a Banco Santander SA venture fund, the venture arms of CME Group Inc. and Seagate Technology, and Venture 51.\n\nObviously this is good news for ripple with 55 Million accounting for 20-25% of their market cap before today's rally, the current price of XRP is 0.00001760 BTC and 2 hours ago it was trading for below 0.00001000 BTC, it has seen a large move already price wise although volume is still relatively small at this time, we could be in for an interesting time while this initial excitement settles in\n![](https://www.coinigy.com/assets/img/charts/57dab3f3.png)", - "category": "ripple", - "children": 10, - "created": "2016-09-15T14:58:21", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://s18.postimg.org/fcl7ffx1l/ripple.png", - "https://www.coinigy.com/assets/img/charts/57dab3f3.png" - ], - "links": [ - "http://www.coindesk.com/ripple-blockchain-55-million-series-b/", - "http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html", - "http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401", - "http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z" - ], - "tags": [ - "ripple", - "crypto-news", - "beyondbitcoin", - "money", - "trading" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 63885038592928, - "payout": 238.227, - "payout_at": "2016-09-22T14:58:21", - "pending_payout_value": "238.227 HBD", - "percent_hbd": 10000, - "permlink": "ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour", - "post_id": 1254813, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 216 - }, - "title": "Ripple raises $55 million from big banks - Series B - XRP Prices jumped 60% to 0.0001600 within 1 hour", - "updated": "2016-09-15T14:58:21", - "url": "/ripple/@steempower/ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour" - }, - { - "active_votes": [ - { - "rshares": "518197131276", - "voter": "barrie" + "voter": "joelbow", + "rshares": "79979619" }, { - "rshares": "31620599440742", - "voter": "smooth" + "voter": "sethlinson", + "rshares": "11300097831" }, { - "rshares": "1968100090680", - "voter": "badassmother" + "voter": "hilarski", + "rshares": "29734500129" }, { - "rshares": "3311776812132", - "voter": "pharesim" + "voter": "shadowspub", + "rshares": "2392467864" }, { - "rshares": "2052926274941", - "voter": "hr1" + "voter": "oldtimer", + "rshares": "267071524484" }, { - "rshares": "1337025448249", - "voter": "rossco99" + "voter": "daut44", + "rshares": "32411487065" }, { - "rshares": "22864866028", - "voter": "jaewoocho" + "voter": "steemitpatina", + "rshares": "4580262873" }, { - "rshares": "1619361992750", - "voter": "joseph" + "voter": "fat-like-buddha", + "rshares": "4768611178" }, { - "rshares": "98682259833", - "voter": "aizensou" + "voter": "rickmiller", + "rshares": "55859919" }, { - "rshares": "462397546754", - "voter": "recursive3" + "voter": "lenar", + "rshares": "1233668048" }, { - "rshares": "3120246710189", - "voter": "recursive" + "voter": "cryptoeasy", + "rshares": "2076202607" }, { - "rshares": "1246163169", - "voter": "mineralwasser" + "voter": "nulliusinverba", + "rshares": "5154805617" }, { - "rshares": "681003747775", - "voter": "boombastic" + "voter": "shenanigator", + "rshares": "110647858832" }, { - "rshares": "94094732044", - "voter": "mrs.agsexplorer" + "voter": "daveks", + "rshares": "2908012841" }, { - "rshares": "6959103550", - "voter": "bingo-0" + "voter": "einsteinpotsdam", + "rshares": "7471182625" }, { - "rshares": "1669989826", - "voter": "bingo-1" + "voter": "laonie11", + "rshares": "23133191472" }, { - "rshares": "5938484287107", - "voter": "smooth.witness" + "voter": "davidjkelley", + "rshares": "1552512887" }, { - "rshares": "445429446140", - "voter": "boatymcboatface" + "voter": "mobios", + "rshares": "1878628053" }, { - "rshares": "9408475799", - "voter": "idol" + "voter": "sponge-bob", + "rshares": "20853973484" }, { - "rshares": "284298500346", - "voter": "chitty" + "voter": "l0k1", + "rshares": "4324039528" }, { - "rshares": "1619440533", - "voter": "jocelyn" + "voter": "digital-wisdom", + "rshares": "14886230314" }, { - "rshares": "15004137591", - "voter": "gregory-f" + "voter": "ethical-ai", + "rshares": "3547902817" }, { - "rshares": "148161564048", - "voter": "edgeland" + "voter": "freesteem", + "rshares": "50784892" }, { - "rshares": "9604795718", - "voter": "gregory60" + "voter": "jwaser", + "rshares": "6531322926" }, { - "rshares": "1272853996010", - "voter": "gavvet" + "voter": "thecyclist", + "rshares": "161709465048" }, { - "rshares": "89896930629", - "voter": "eeks" + "voter": "zettar", + "rshares": "1018513187" }, { - "rshares": "2015882351", - "voter": "fkn" + "voter": "tito-baron", + "rshares": "122271956" }, { - "rshares": "478461713", - "voter": "paco-steem" + "voter": "kiwideb", + "rshares": "1735431749" }, { - "rshares": "5763764389", - "voter": "spaninv" + "voter": "analyzethis", + "rshares": "50931848" }, { - "rshares": "7733788543", - "voter": "nate-atkins" + "voter": "bwaser", + "rshares": "2558000160" }, { - "rshares": "2649751442", - "voter": "elishagh1" + "voter": "dexter-k", + "rshares": "5773395051" }, { - "rshares": "8669787638", - "voter": "richman" + "voter": "roadhog", + "rshares": "50751176" }, { - "rshares": "599927640145", - "voter": "nanzo-scoop" + "voter": "alina1", + "rshares": "2201645172" }, { - "rshares": "459984469", - "voter": "jeffanthonyfds" + "voter": "doggnostic", + "rshares": "50639382" }, { - "rshares": "177390312070", - "voter": "mummyimperfect" + "voter": "ct-gurus", + "rshares": "644579979" }, { - "rshares": "313687341", - "voter": "coar" + "voter": "jenny-talls", + "rshares": "50377764" }, { - "rshares": "106628883920", - "voter": "asch" + "voter": "charlieshrem", + "rshares": "386792765707" }, { - "rshares": "1061168224", - "voter": "murh" + "voter": "mariandavp", + "rshares": "7681172153" }, { - "rshares": "6230682263", - "voter": "cryptofunk" + "voter": "tracemayer", + "rshares": "60088527835" }, { - "rshares": "2111403468", - "voter": "error" + "voter": "brains", + "rshares": "20817850462" }, { - "rshares": "985480652331", - "voter": "cyber" + "voter": "post-successful", + "rshares": "50210467" }, { - "rshares": "61710743415", - "voter": "theshell" + "voter": "positivesteem", + "rshares": "1049744855" }, { - "rshares": "50878177282", - "voter": "ak2020" + "voter": "chick1", + "rshares": "5470937952" }, { - "rshares": "409218031185", - "voter": "taoteh1221" + "voter": "sens", + "rshares": "1735164858" }, { - "rshares": "418880227", - "voter": "applecrisp" + "voter": "aoki", + "rshares": "50584036" }, { - "rshares": "373313301", - "voter": "stiletto" + "voter": "cwb", + "rshares": "50528809" }, { - "rshares": "375920034566", - "voter": "hedge-x" + "voter": "echoesinthemind", + "rshares": "503052886" }, { - "rshares": "55577392625", - "voter": "juanmiguelsalas" + "voter": "freebornangel", + "rshares": "57534146" }, { - "rshares": "33780018119", - "voter": "ratel" + "voter": "steemsquad", + "rshares": "2084741030" }, { - "rshares": "280669440211", - "voter": "trogdor" + "voter": "anomaly", + "rshares": "255505026" }, { - "rshares": "121380113922", - "voter": "geoffrey" + "voter": "ellepdub", + "rshares": "2293549771" }, { - "rshares": "16025171812", - "voter": "kimziv" + "voter": "allesgruen", + "rshares": "1550172009" }, { - "rshares": "76007179625", - "voter": "emily-cook" + "voter": "inarix03", + "rshares": "59178617" }, { - "rshares": "2187587354", - "voter": "superfreek" + "voter": "michelle.gent", + "rshares": "4725653598" }, { - "rshares": "30279417098", - "voter": "acassity" + "voter": "herpetologyguy", + "rshares": "11523640324" }, { - "rshares": "17557768630", - "voter": "grey580" + "voter": "drac59", + "rshares": "54452104" }, { - "rshares": "280916636", - "voter": "ladyclair" + "voter": "morgan.waser", + "rshares": "4605288518" }, { - "rshares": "19974572536", - "voter": "thebatchman" + "voter": "billkappa442", + "rshares": "50235850" }, { - "rshares": "61460113993", - "voter": "good-karma" + "voter": "teemsteem", + "rshares": "50233449" }, { - "rshares": "76019855821", - "voter": "rubybian" + "voter": "glassheart", + "rshares": "51235131" }, { - "rshares": "5270775482", - "voter": "riscadox" + "voter": "battalar", + "rshares": "51227561" }, { - "rshares": "17903672525", - "voter": "konstantin" + "voter": "slow", + "rshares": "51141851" }, { - "rshares": "256623434", - "voter": "mstang83" + "voter": "steemprincess", + "rshares": "50975390" }, { - "rshares": "25057071012", - "voter": "tcfxyz" + "voter": "teo", + "rshares": "57373409" }, { - "rshares": "6939848809", - "voter": "futurefood" + "voter": "palladium", + "rshares": "50873654" }, { - "rshares": "844421054", - "voter": "endgame" + "voter": "aksinya", + "rshares": "1317053201" }, { - "rshares": "823151341679", - "voter": "slowwalker" + "voter": "ziggo", + "rshares": "50570250" }, { - "rshares": "9840533745", - "voter": "furion" + "voter": "fenix", + "rshares": "50538694" }, { - "rshares": "52479155", - "voter": "ch0c0latechip" + "voter": "twistys", + "rshares": "50536471" }, { - "rshares": "19169622645", - "voter": "sebastien" + "voter": "bapparabi", + "rshares": "810369666" }, { - "rshares": "12011479963", - "voter": "asim" + "voter": "sunlight", + "rshares": "50479027" }, { - "rshares": "14487516865", - "voter": "aaseb" + "voter": "luzcypher", + "rshares": "9346140667" }, { - "rshares": "4097381727", - "voter": "incomemonthly" + "voter": "haddock", + "rshares": "166200503" }, { - "rshares": "4431046054", - "voter": "karen13" + "voter": "strong-ai", + "rshares": "3447563868" }, { - "rshares": "10646413479", - "voter": "deviedev" + "voter": "ctu", + "rshares": "159723319" }, { - "rshares": "258981906731", - "voter": "nabilov" + "voter": "yanik", + "rshares": "1507439774" }, { - "rshares": "5482949271", - "voter": "tinyhomeliving" + "voter": "rusteemitblog", + "rshares": "1319385375" }, { - "rshares": "847366145", - "voter": "luisucv34" + "voter": "jennane", + "rshares": "4636706408" }, { - "rshares": "54561525717", - "voter": "streetstyle" + "voter": "ndea30", + "rshares": "149130097" }, { - "rshares": "452581935074", - "voter": "knozaki2015" + "voter": "domenico", + "rshares": "149123370" }, { - "rshares": "35782074085", - "voter": "creemej" + "voter": "witchcraftblog", + "rshares": "444421238" }, { - "rshares": "15377860373", - "voter": "nippel66" + "voter": "serena199", + "rshares": "148337519" }, { - "rshares": "24417657582", - "voter": "phenom" + "voter": "gia7", + "rshares": "148308392" }, { - "rshares": "167298234999", - "voter": "blueorgy" + "voter": "animal", + "rshares": "160773127" }, { - "rshares": "4256486989", - "voter": "oululahti" + "voter": "richie4", + "rshares": "147864891" }, { - "rshares": "349568852", - "voter": "poseidon" + "voter": "coraline88", + "rshares": "147806968" }, { - "rshares": "2182574144", - "voter": "iamwne" + "voter": "cybergirls", + "rshares": "160319579" }, { - "rshares": "20119867662", - "voter": "mustafaomar" + "voter": "rage", + "rshares": "160260561" }, { - "rshares": "3506024506", - "voter": "simon.braki.love" + "voter": "harlen", + "rshares": "147559003" }, { - "rshares": "39345808582", - "voter": "royaltiffany" + "voter": "yanuel", + "rshares": "147523175" }, { - "rshares": "14954254688", - "voter": "beowulfoflegend" + "voter": "daritza", + "rshares": "147475911" }, { - "rshares": "32542074868", - "voter": "deanliu" + "voter": "correct", + "rshares": "159984914" }, { - "rshares": "5373137632", - "voter": "rainchen" + "voter": "blender", + "rshares": "156411729" }, { - "rshares": "86528557116", - "voter": "rea" + "voter": "stimmt", + "rshares": "159318360" }, { - "rshares": "1616791389", - "voter": "tokyodude" + "voter": "steemwallet", + "rshares": "158732321" }, { - "rshares": "7822595883", - "voter": "neroru" + "voter": "goldmatters", + "rshares": "28919059756" }, { - "rshares": "215384292560", - "voter": "jl777" + "voter": "dealzgal", + "rshares": "71720421" }, { - "rshares": "1634827342", - "voter": "positive" + "voter": "storage", + "rshares": "77287933" }, { - "rshares": "5172692235", - "voter": "gustavopasquini" + "voter": "antaja", + "rshares": "184381906" }, { - "rshares": "12345105776", - "voter": "moon32walker" + "voter": "steemdesigner", + "rshares": "154503543" }, { - "rshares": "6232841459", - "voter": "summonerrk" + "voter": "aldentan", + "rshares": "329629477" }, { - "rshares": "116726661", - "voter": "firehorse" + "voter": "blackmarket", + "rshares": "61536953" }, { - "rshares": "942266185", - "voter": "happyphoenix" + "voter": "gifts", + "rshares": "67683958" }, { - "rshares": "42775729046", - "voter": "claudiop63" + "voter": "expat", + "rshares": "91120780" }, { - "rshares": "18175932801", - "voter": "proto" + "voter": "steemtrail", + "rshares": "134906258" }, { - "rshares": "230455938", - "voter": "jasen.g1311" + "voter": "paulocouto", + "rshares": "100289745" }, { - "rshares": "29035294642", - "voter": "pinkisland" + "voter": "sawgunner13", + "rshares": "138917685" }, { - "rshares": "3266602711", - "voter": "ace108" - }, + "voter": "steemlift", + "rshares": "1593664040" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 380, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/guide/@kevinwong/the-art-of-maintaining-reputation-plan-your-battles-and-don-t-milk-it", + "blacklists": [] + }, + { + "post_id": 958481, + "author": "steempower", + "permlink": "ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour", + "category": "ripple", + "title": "Ripple raises $55 million from big banks - Series B - XRP Prices jumped 60% to 0.0001600 within 1 hour", + "body": "![](https://s18.postimg.org/fcl7ffx1l/ripple.png)\n## Ripple has raised another 55 Million in its latest round of funding bringing it total raised to 93 Million.\n\nThe news has reached mainstream news services such as CNBC, WSJ, Reuters and the like. News seems to be first released 2 hours ago 12:35 pm; Thursday, 15 September 2016.\n\n### News Articles:\n[CoinDesk](http://www.coindesk.com/ripple-blockchain-55-million-series-b/)\n[CNBC](http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html)\n[WSJ](http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401)\n[Reuters ](http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z)\n\nAccording to the article linked above (CNBC) 'The start-up is currently working with 15 of the top 50 global banks including UBS and Santander.'\n\nNew and existing investors were involved in the new Ripple funding round. New investors included Accenture Ventures, SBI Holdings, SCB Digital Ventures, Standard Chartered PLC, and the investment arm of Thailand’s Siam Commercial Bank. Existing investors that joined in this round included a Banco Santander SA venture fund, the venture arms of CME Group Inc. and Seagate Technology, and Venture 51.\n\nObviously this is good news for ripple with 55 Million accounting for 20-25% of their market cap before today's rally, the current price of XRP is 0.00001760 BTC and 2 hours ago it was trading for below 0.00001000 BTC, it has seen a large move already price wise although volume is still relatively small at this time, we could be in for an interesting time while this initial excitement settles in\n![](https://www.coinigy.com/assets/img/charts/57dab3f3.png)", + "json_metadata": { + "tags": [ + "ripple", + "crypto-news", + "beyondbitcoin", + "money", + "trading" + ], + "image": [ + "https://s18.postimg.org/fcl7ffx1l/ripple.png", + "https://www.coinigy.com/assets/img/charts/57dab3f3.png" + ], + "links": [ + "http://www.coindesk.com/ripple-blockchain-55-million-series-b/", + "http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html", + "http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401", + "http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z" + ] + }, + "created": "2016-09-15T14:58:21", + "updated": "2016-09-15T14:58:21", + "depth": 0, + "children": 10, + "net_rshares": 63885038592928, + "is_paidout": false, + "payout_at": "2016-09-16T15:58:09", + "payout": 238.835, + "pending_payout_value": "238.835 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ { - "rshares": "2708203880", - "voter": "sisterholics" + "voter": "dantheman", + "rshares": "27814176695531" }, { - "rshares": "1483259422", - "voter": "alex.chien" + "voter": "skywalker", + "rshares": "7145643497594" }, { - "rshares": "8964609699", - "voter": "royalmacro" + "voter": "badassmother", + "rshares": "1968124814276" }, { - "rshares": "11169454095", - "voter": "logic" + "voter": "hr1", + "rshares": "2052934239988" }, { - "rshares": "55043445", - "voter": "fnait" + "voter": "fuzzyvest", + "rshares": "6596087814836" }, { - "rshares": "3482504625", - "voter": "bkkshadow" + "voter": "rossco99", + "rshares": "1337025448249" }, { - "rshares": "25636155654", - "voter": "pixielolz" + "voter": "jaewoocho", + "rshares": "22864938197" }, { - "rshares": "56747133", - "voter": "reported" + "voter": "joseph", + "rshares": "1576018783851" }, { - "rshares": "3353832611", - "voter": "glitterpig" + "voter": "recursive2", + "rshares": "466052314352" }, { - "rshares": "7350128313", - "voter": "jed78" + "voter": "masteryoda", + "rshares": "636514783207" }, { - "rshares": "6785260219", - "voter": "shortcut" + "voter": "recursive", + "rshares": "3120252422964" }, { - "rshares": "111828316", - "voter": "andrew-charles" + "voter": "boombastic", + "rshares": "681020986865" }, { - "rshares": "870677269", - "voter": "metaflute" + "voter": "mrs.agsexplorer", + "rshares": "91328598326" }, { - "rshares": "9193722747", - "voter": "taker" + "voter": "bingo-0", + "rshares": "6959124583" }, { - "rshares": "1894317852", - "voter": "gruber" + "voter": "steempower", + "rshares": "1330868635495" }, { - "rshares": "15412506890", - "voter": "felixxx" + "voter": "boatymcboatface", + "rshares": "445757361586" }, { - "rshares": "52486879", - "voter": "krushing" + "voter": "officialfuzzy", + "rshares": "443132842669" }, { - "rshares": "95766386323", - "voter": "laonie" + "voter": "idol", + "rshares": "9167255683" }, { - "rshares": "157495713864", - "voter": "twinner" + "voter": "chitty", + "rshares": "18955732033" }, { - "rshares": "61361321", - "voter": "southbaybits" + "voter": "unosuke", + "rshares": "8232133931" }, { - "rshares": "24561066673", - "voter": "laoyao" + "voter": "chris4210", + "rshares": "139694054199" }, { - "rshares": "3996853733", - "voter": "myfirst" + "voter": "valtr", + "rshares": "14501486968" }, { - "rshares": "19439859020", - "voter": "somebody" + "voter": "jocelyn", + "rshares": "1577916417" }, { - "rshares": "726849243", - "voter": "flysaga" + "voter": "gregory60", + "rshares": "9604795718" }, { - "rshares": "66940286", - "voter": "ann76" + "voter": "eeks", + "rshares": "89897248149" }, { - "rshares": "18234762995", - "voter": "timelapse" + "voter": "fkn", + "rshares": "24694558802" }, { - "rshares": "2501622377", - "voter": "gmurph" + "voter": "paco-steem", + "rshares": "468281676" }, { - "rshares": "494521401", - "voter": "minnowsunited" + "voter": "spaninv", + "rshares": "5641144936" }, { - "rshares": "4294430078", - "voter": "midnightoil" + "voter": "elishagh1", + "rshares": "32459455171" }, { - "rshares": "4281232336", - "voter": "ullikume" + "voter": "richman", + "rshares": "8669787638" }, { - "rshares": "5693098913", - "voter": "cjclaro" + "voter": "nanzo-scoop", + "rshares": "584162335269" }, { - "rshares": "52700570", - "voter": "whatyouganjado" + "voter": "jeffanthonyfds", + "rshares": "469184158" }, { - "rshares": "36649510663", - "voter": "budgetbucketlist" + "voter": "acidyo", + "rshares": "10461841838" }, { - "rshares": "10740564621", - "voter": "xiaohui" + "voter": "dan-atstarlite", + "rshares": "36656769992" }, { - "rshares": "176650903994", - "voter": "terrycraft" + "voter": "mummyimperfect", + "rshares": "177393957447" }, { - "rshares": "461088291", - "voter": "elfkitchen" + "voter": "coar", + "rshares": "313687341" }, { - "rshares": "103384996602", - "voter": "joele" + "voter": "asch", + "rshares": "106629500909" }, { - "rshares": "5855063437", - "voter": "oflyhigh" + "voter": "murh", + "rshares": "1061210624" }, { - "rshares": "59002619", - "voter": "makaveli" + "voter": "cryptofunk", + "rshares": "6230682263" }, { - "rshares": "335807163", - "voter": "xiaokongcom" + "voter": "kodi", + "rshares": "579494558" }, { - "rshares": "13237481048", - "voter": "gargon" + "voter": "error", + "rshares": "2111403468" }, { - "rshares": "676922173", - "voter": "xianjun" + "voter": "cyber", + "rshares": "985518335179" }, { - "rshares": "26283514539", - "voter": "hanshotfirst" + "voter": "theshell", + "rshares": "61711048609" }, { - "rshares": "9199546040", - "voter": "tom77" + "voter": "ak2020", + "rshares": "50879221096" }, { - "rshares": "126090405", - "voter": "sarita" + "voter": "justtryme90", + "rshares": "63100175656" }, { - "rshares": "52450091", - "voter": "alexbones" + "voter": "taoteh1221", + "rshares": "400866642793" }, { - "rshares": "2249542145", - "voter": "njall" + "voter": "applecrisp", + "rshares": "410502622" }, { - "rshares": "75676352", - "voter": "razberrijam" + "voter": "stiletto", + "rshares": "365370465" }, { - "rshares": "6402569097", - "voter": "rubenalexander" + "voter": "zakharya", + "rshares": "15787116636" }, { - "rshares": "2077210674", - "voter": "chinadaily" + "voter": "trogdor", + "rshares": "280678620376" }, { - "rshares": "11979592683", - "voter": "kyriacos" + "voter": "geoffrey", + "rshares": "121380113922" }, { - "rshares": "806759200", - "voter": "jayfox" + "voter": "kimziv", + "rshares": "208331842756" }, { - "rshares": "1647538615", - "voter": "ignat" + "voter": "emily-cook", + "rshares": "76009124707" }, { - "rshares": "90168606946", - "voter": "serejandmyself" + "voter": "primus", + "rshares": "12064022115" }, { - "rshares": "106144628", - "voter": "pollina" + "voter": "acassity", + "rshares": "29635215678" }, { - "rshares": "4781807217", - "voter": "almerri" + "voter": "ladyclair", + "rshares": "280916636" }, { - "rshares": "9071955992", - "voter": "johnnyyash" + "voter": "venuspcs", + "rshares": "19099829330" }, { - "rshares": "3221126774", - "voter": "macartem" + "voter": "poias", + "rshares": "813595892" }, { - "rshares": "9310407829", - "voter": "gvargas123" + "voter": "dasha", + "rshares": "7418976078" }, { - "rshares": "4658385146", - "voter": "themanualbot" + "voter": "asmolokalo", + "rshares": "153697599394" }, { - "rshares": "2005245825", - "voter": "levycore" + "voter": "gidlark", + "rshares": "1642983170" }, { - "rshares": "58169756", - "voter": "cnmtz" + "voter": "rubybian", + "rshares": "73849034695" }, { - "rshares": "476161300", - "voter": "claudia" + "voter": "getssidetracked", + "rshares": "3058898852" }, { - "rshares": "70203690", - "voter": "ozertayiz" + "voter": "konstantin", + "rshares": "17903672525" }, { - "rshares": "57942270939", - "voter": "mandibil" + "voter": "trees", + "rshares": "572413932" }, { - "rshares": "4633082667", - "voter": "steemitpatina" + "voter": "strawhat", + "rshares": "83801390" }, { - "rshares": "71507788", - "voter": "steembriefing" + "voter": "romel", + "rshares": "2597453094" }, { - "rshares": "51356966", - "voter": "salebored" + "voter": "cryptochannel", + "rshares": "276570042" }, { - "rshares": "54612436", - "voter": "riv" + "voter": "furion", + "rshares": "120546538382" }, { - "rshares": "5081885632", - "voter": "ats-david" + "voter": "owdy", + "rshares": "6462652657" }, { - "rshares": "1544966078", - "voter": "pollux.one" + "voter": "barbara2", + "rshares": "590190776" }, { - "rshares": "7776590110", - "voter": "einsteinpotsdam" + "voter": "ch0c0latechip", + "rshares": "642869652" }, { - "rshares": "1932014303", - "voter": "funkywanderer" + "voter": "doge4lyf", + "rshares": "607124531" }, { - "rshares": "56854958", - "voter": "jasonji12" + "voter": "sebastien", + "rshares": "18371164995" }, { - "rshares": "5053551216", - "voter": "richardcrill" + "voter": "sitaru", + "rshares": "13516878845" }, { - "rshares": "184076493", - "voter": "team101" + "voter": "aaseb", + "rshares": "14487855165" }, { - "rshares": "51444457", - "voter": "bitdrone" + "voter": "karen13", + "rshares": "4209499465" }, { - "rshares": "51436144", - "voter": "sleepcult" + "voter": "deviedev", + "rshares": "10646413479" }, { - "rshares": "182060433", - "voter": "greatness" + "voter": "nabilov", + "rshares": "258981906731" }, { - "rshares": "1233641092", - "voter": "goldstein" + "voter": "pkattera", + "rshares": "117757790207" }, { - "rshares": "27674257450", - "voter": "sponge-bob" + "voter": "tinyhomeliving", + "rshares": "274155883" }, { - "rshares": "3432704465", - "voter": "getonthetrain" + "voter": "streetstyle", + "rshares": "55698224169" }, { - "rshares": "44943498845", - "voter": "zahnspange" + "voter": "lichtblick", + "rshares": "7313749376" }, { - "rshares": "414338857", - "voter": "steemorama" + "voter": "creemej", + "rshares": "35782652880" }, { - "rshares": "1655277599", - "voter": "smisi" + "voter": "btcbtcbtc20155", + "rshares": "5726411049" }, { - "rshares": "59594290", - "voter": "sunjo" + "voter": "blueorgy", + "rshares": "167298234999" }, { - "rshares": "285084767", - "voter": "benjamin.still" + "voter": "poseidon", + "rshares": "4544488912" }, { - "rshares": "229690686860", - "voter": "asksisk" + "voter": "smolalit", + "rshares": "7946556816" }, { - "rshares": "27667822273", - "voter": "brains" + "voter": "simon.braki.love", + "rshares": "3506024506" }, { - "rshares": "1772168372", - "voter": "alwayzgame" + "voter": "thylbom", + "rshares": "82781233416" }, { - "rshares": "3531841420", - "voter": "rigaronib" + "voter": "rea", + "rshares": "86528557116" }, { - "rshares": "339268967", - "voter": "anomaly" + "voter": "jl777", + "rshares": "204615586375" }, { - "rshares": "1550172009", - "voter": "allesgruen" + "voter": "positive", + "rshares": "20026634941" }, { - "rshares": "123129821", - "voter": "ola1" + "voter": "paquito", + "rshares": "35105434017" }, { - "rshares": "431087473", - "voter": "littlemorelove" + "voter": "fishborne", + "rshares": "8507360175" }, { - "rshares": "68608664", - "voter": "mari5555na" + "voter": "sergey44", + "rshares": "309088757" }, { - "rshares": "53309537", - "voter": "michaelblizek" + "voter": "proto", + "rshares": "17267159012" }, { - "rshares": "135324063", - "voter": "creativeyoke" + "voter": "sisterholics", + "rshares": "34304658614" }, { - "rshares": "841787796", - "voter": "annesaya" + "voter": "fnait", + "rshares": "674282213" }, { - "rshares": "51240567", - "voter": "billkappa442" + "voter": "keepcalmand", + "rshares": "611258547" }, { - "rshares": "50225780", - "voter": "steemq" + "voter": "smailer", + "rshares": "42379649186" }, { - "rshares": "50139069", - "voter": "slow" + "voter": "pixielolz", + "rshares": "25636155654" }, { - "rshares": "58668861", - "voter": "humans" + "voter": "steemster1", + "rshares": "149624601" }, { - "rshares": "50796122", - "voter": "factom" + "voter": "neowenyuan27", + "rshares": "1033757233" }, { - "rshares": "50538694", - "voter": "fenix" + "voter": "glitterpig", + "rshares": "3353832611" }, { - "rshares": "1921231770", - "voter": "bapparabi" + "voter": "picker", + "rshares": "121680301" }, { - "rshares": "50532230", - "voter": "friends" + "voter": "metaflute", + "rshares": "896285424" }, { - "rshares": "50349676", - "voter": "albertheijn" + "voter": "taker", + "rshares": "8734048037" }, { - "rshares": "161839498", - "voter": "durex" + "voter": "sharon", + "rshares": "59219358" }, { - "rshares": "161815656", - "voter": "ranger" + "voter": "lillianjones", + "rshares": "60342922" }, { - "rshares": "435365865", - "voter": "witchcraftblog" + "voter": "laonie", + "rshares": "1213074787308" }, { - "rshares": "161205518", - "voter": "acute" + "voter": "twinner", + "rshares": "157504637007" }, { - "rshares": "160900665", - "voter": "digitalillusions" + "voter": "satoshifpv", + "rshares": "4890234271" }, { - "rshares": "4087522528", - "voter": "dresden" + "voter": "thebluepanda", + "rshares": "11693771864" }, { - "rshares": "155111085", - "voter": "coolbeans" + "voter": "myfirst", + "rshares": "42635136908" }, { - "rshares": "160151932", - "voter": "maxlviv" + "voter": "somebody", + "rshares": "252723433247" }, { - "rshares": "158393209", - "voter": "food-creator" + "voter": "sunshine", + "rshares": "16251975438" }, { - "rshares": "159973989", - "voter": "capcom" + "voter": "flysaga", + "rshares": "9691515710" }, { - "rshares": "159175576", - "voter": "fallout" + "voter": "gmurph", + "rshares": "2501627790" }, { - "rshares": "158560941", - "voter": "steemthis" + "voter": "midnightoil", + "rshares": "55828810753" }, { - "rshares": "158535752", - "voter": "nerds" + "voter": "coderg", + "rshares": "84246848" }, { - "rshares": "31680362460", - "voter": "goldmatters" + "voter": "ullikume", + "rshares": "4281232336" }, { - "rshares": "136494240", - "voter": "bleujay" + "voter": "xiaohui", + "rshares": "139631233866" }, { - "rshares": "150430703", - "voter": "jproto22" - } - ], - "author": "knozaki2015", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "\n

\"Easy
\n

\n

There are many vegan or raw chocolates to buy, but the best chocolates comes from your own kitchen

\n

HOME MADE ROCKS !!

\n


\n

\"Schokolade

\n 

\n

What is raw chocolate ? The cocoa mass that you need for it consists of unroasted fermented cocoa beans . All fiber and nutrients are untouched. The cocoa mass you can buy online.

\n


\n
\"Schokolade1\"

\n
\nAnd here comes the recipe:

\n
    \n
  • 400 g raw cacao mass (not to be confused with cocoa butter) 
  • \n
  • 2 Tablespoon Coconutoil (best is Dr. Goerg)
  • \n
  • 100 g sprouted buckwheat (for a Crunchy taste)
  • \n
  • 100 g peanuts
  • \n
  • 100 g Walnuts or chopped almonds , Goji berries or what you listen to taste .
    \n
  • \n
\n
    \n
  1. Melt the cocoa paste and coconut oil in a waterbath or in the hydrator at max . 42 degrees .
  2. \n
  3. Once it is melted add the nuts with a big spoon
  4. \n
  5. If you like bars, fill the chocolate nut mixture into silicone bars . You can buy bars in any bakery shop or at Amazon 
  6. \n
  7.  But you can also use a large shallow plate and place baking paper on the plate and fill with the chocolate nut mixture
  8. \n
\n

Be creative : Put anything you like onto the chocolate-nut mixture (Goji berries , whole nuts , coconut pieces etc.)

\n

Place the finished chocolate 1 Hour in your freezer

\n

Get the bars out of the form or break the chocolate from the plate  and put it into the fridge .

\n


\nTrust me, your chocolate won't stay too long in your fridge.... 

\n

Please follow me @allesgruen !

\n

German Original Article


\n

Written by @allesgruen & translated by @knozaki2015

\n

@knozaki2015 features authors and artist to promote them and a diversity of content.
\nThe author will receive 100% of the STEEM Dollars from this post

\n

If you like this post please support @allesgruen and follow the author!

\n


\n", - "category": "food", - "children": 34, - "created": "2016-09-15T14:24:12", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://s10.postimg.org/5kfqkef9l/Easy_Dishes_To_Make_For_Your50th_Birthday_Dinner_P.jpg", - "https://s16.postimg.org/j1hikj3np/Schokolade_Bild.jpg", - "https://s16.postimg.org/pggjh7adh/Schokolade1.jpg" - ], - "links": [ - "https://postimg.org/image/fui5jn551/", - "https://www.google.de/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwiU_vePvpHPAhVhJJoKHfEjAjEQFghJMAA&url=https%3A%2F%2Fwww.drgoerg.com%2Fen%2F&usg=AFQjCNGRVxYdyD04Ogm6T_WXZbejaKobyg&sig2=VMpccXoYQ8oXclIYq5y0vg", - "https://steemit.com/@allesgruen", - "https://steemit.com/food/@allesgruen/die-leckerste-und-gesuendeste-rohkost-schokolade-der-welt", - "https://steemit.com/@knozaki2015" - ], - "tags": [ - "food", - "minnowsunite", - "steemsquad", - "vegan", - "recipe" - ], - "users": [ - "allesgruen", - "knozaki2015" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 62692229771159, - "payout": 229.216, - "payout_at": "2016-09-22T14:24:12", - "pending_payout_value": "229.216 HBD", - "percent_hbd": 10000, - "permlink": "the-tastiest-and-healthiest-raw-chocolate-in-the-world", - "post_id": 1254417, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 232 - }, - "title": "The tastiest and healthiest raw chocolate in the world !!!", - "updated": "2016-09-15T14:24:12", - "url": "/food/@knozaki2015/the-tastiest-and-healthiest-raw-chocolate-in-the-world" - }, - { - "active_votes": [ + "voter": "elfkitchen", + "rshares": "6952769870" + }, { - "rshares": "17090232811151", - "voter": "itsascam" + "voter": "joele", + "rshares": "103387869456" }, { - "rshares": "480579269556", - "voter": "barrie" + "voter": "xiaokongcom", + "rshares": "4365575224" }, { - "rshares": "29720965903527", - "voter": "smooth" + "voter": "hms818", + "rshares": "1405383530" }, { - "rshares": "231748891373", - "voter": "anonymous" + "voter": "nonlinearone", + "rshares": "42833125455" }, { - "rshares": "3703513941678", - "voter": "alphabet" + "voter": "msjennifer", + "rshares": "60819615" }, { - "rshares": "2010285876889", - "voter": "steemroller" + "voter": "ciao", + "rshares": "55925537" }, { - "rshares": "74805101299", - "voter": "donaldtrump" + "voter": "jrcornel", + "rshares": "3033050865" }, { - "rshares": "18187582592218", - "voter": "steemed" + "voter": "steemo", + "rshares": "55449983" }, { - "rshares": "3205433782741", - "voter": "riverhead" + "voter": "xianjun", + "rshares": "9025821447" }, { - "rshares": "1990377241911", - "voter": "badassmother" + "voter": "steema", + "rshares": "55306941" }, { - "rshares": "2005036868492", - "voter": "hr1" + "voter": "confucius", + "rshares": "71282219" }, { - "rshares": "22380813356", - "voter": "jaewoocho" + "voter": "mione", + "rshares": "9729857687" }, { - "rshares": "1869058236100", - "voter": "xeroc" + "voter": "jarvis", + "rshares": "56157882" }, { - "rshares": "1607182817833", - "voter": "joseph" + "voter": "microluck", + "rshares": "591097626" }, { - "rshares": "82723821395", - "voter": "aizensou" + "voter": "razberrijam", + "rshares": "75676352" }, { - "rshares": "456027411770", - "voter": "recursive2" + "voter": "fortuner", + "rshares": "54313084" }, { - "rshares": "588963325183", - "voter": "masteryoda" + "voter": "macartem", + "rshares": "3286864056" }, { - "rshares": "3119398199095", - "voter": "recursive" + "voter": "gvargas123", + "rshares": "9827647000" }, { - "rshares": "1172473837", - "voter": "mineralwasser" + "voter": "johnbyrd", + "rshares": "53056158" }, { - "rshares": "85737349562", - "voter": "mrs.agsexplorer" + "voter": "thomasaustin", + "rshares": "53039566" }, { - "rshares": "1620255991", - "voter": "bingo-1" + "voter": "thermor", + "rshares": "53037689" }, { - "rshares": "5567720953547", - "voter": "smooth.witness" + "voter": "ficholl", + "rshares": "53048942" }, { - "rshares": "170448445243", - "voter": "pairmike" + "voter": "widell", + "rshares": "53030738" }, { - "rshares": "9645319071", - "voter": "idol" + "voter": "movievertigo", + "rshares": "3635091595" }, { - "rshares": "131761872479", - "voter": "team" + "voter": "revelbrooks", + "rshares": "52651308" }, { - "rshares": "4632015537", - "voter": "sakr" + "voter": "mrlogic", + "rshares": "332237822" }, { - "rshares": "96050573044", - "voter": "jchch" + "voter": "mandibil", + "rshares": "56654664918" }, { - "rshares": "25239550780", - "voter": "chitty" + "voter": "curpose", + "rshares": "51562255" }, { - "rshares": "47092417970", - "voter": "alexgr" + "voter": "steembriefing", + "rshares": "69986345" }, { - "rshares": "3109770089", - "voter": "yefet" + "voter": "riv", + "rshares": "54612436" }, { - "rshares": "1660422196", - "voter": "jocelyn" + "voter": "stephenkendal", + "rshares": "56405368" }, { - "rshares": "13752626395", - "voter": "gregory-f" + "voter": "shenanigator", + "rshares": "115288656029" }, { - "rshares": "11239173417", - "voter": "dave-hughes" + "voter": "jeffreyahann", + "rshares": "2163490459" }, { - "rshares": "145064407415", - "voter": "edgeland" + "voter": "funkywanderer", + "rshares": "1857811307" }, { - "rshares": "30188072314", - "voter": "full-measure" + "voter": "richardcrill", + "rshares": "5053551216" }, { - "rshares": "60085973635", - "voter": "lovelace" + "voter": "troich", + "rshares": "51712804" }, { - "rshares": "74898454777", - "voter": "eeks" + "voter": "team101", + "rshares": "180241566" }, { - "rshares": "478348587", - "voter": "paco-steem" + "voter": "crion", + "rshares": "51718188" }, { - "rshares": "5761302959", - "voter": "spaninv" + "voter": "hitherise", + "rshares": "51388276" }, { - "rshares": "30447039303", - "voter": "instructor2121" + "voter": "wiss", + "rshares": "51379706" }, { - "rshares": "7891620962", - "voter": "nate-atkins" + "voter": "sponge-bob", + "rshares": "54241809836" }, { - "rshares": "2197259642", - "voter": "gekko" + "voter": "stroully", + "rshares": "52143228" }, { - "rshares": "313176541236", - "voter": "teamsteem" + "voter": "apparat", + "rshares": "53070013" }, { - "rshares": "9535707424", - "voter": "richman" + "voter": "thadm", + "rshares": "51814474" }, { - "rshares": "550540650972", - "voter": "nanzo-scoop" + "voter": "prof", + "rshares": "51812703" }, { - "rshares": "13884504681", - "voter": "fact" + "voter": "smisi", + "rshares": "1655277599" }, { - "rshares": "165470271317", - "voter": "steve-walschot" + "voter": "yorsens", + "rshares": "51465774" }, { - "rshares": "10099012692", - "voter": "cian.dafe" + "voter": "michaelmatthews", + "rshares": "3068760608" }, { - "rshares": "49793677286", - "voter": "hannixx42" + "voter": "asksisk", + "rshares": "184881039384" }, { - "rshares": "169122010230", - "voter": "mummyimperfect" + "voter": "bane", + "rshares": "51154263" }, { - "rshares": "268838726", - "voter": "coar" + "voter": "vive", + "rshares": "51148009" }, { - "rshares": "98193208498", - "voter": "asch" + "voter": "coad", + "rshares": "51142585" }, { - "rshares": "1060920601", - "voter": "murh" + "voter": "pjo", + "rshares": "232386397" }, { - "rshares": "6083782451", - "voter": "cryptofunk" + "voter": "sofa", + "rshares": "51922012" }, { - "rshares": "2164662094", - "voter": "error" + "voter": "panther", + "rshares": "330365849" }, { - "rshares": "5736901624", - "voter": "marta-zaidel" + "voter": "doudou252666", + "rshares": "201122420257" }, { - "rshares": "40923353954", - "voter": "ranko-k" + "voter": "plantbasedjunkie", + "rshares": "59422248" }, { - "rshares": "985042955913", - "voter": "cyber" + "voter": "brains", + "rshares": "55335930229" }, { - "rshares": "10687278238", - "voter": "aizen01" + "voter": "ailo", + "rshares": "51994517" }, { - "rshares": "6372292910", - "voter": "aizen02" + "voter": "steemafon", + "rshares": "1369339863" }, { - "rshares": "3482772895", - "voter": "aizen03" + "voter": "anomaly", + "rshares": "339273477" }, { - "rshares": "1145023026", - "voter": "aizen04" + "voter": "ola1", + "rshares": "123155378" }, { - "rshares": "484325382", - "voter": "aizen05" + "voter": "michelle.gent", + "rshares": "4647741844" }, { - "rshares": "4698759112", - "voter": "aizen07" + "voter": "eavy", + "rshares": "50441122" }, { - "rshares": "2810313611", - "voter": "aizen08" + "voter": "roto", + "rshares": "50454901" }, { - "rshares": "998812710", - "voter": "aizen09" + "voter": "mari5555na", + "rshares": "70282046" }, { - "rshares": "432171763", - "voter": "aizen10" + "voter": "steemq", + "rshares": "50225780" }, { - "rshares": "7109531805", - "voter": "aizen06" + "voter": "battalar", + "rshares": "50223099" }, { - "rshares": "2986666907", - "voter": "aizen11" + "voter": "deli", + "rshares": "51215236" }, { - "rshares": "2052802727", - "voter": "aizen14" + "voter": "cyan", + "rshares": "50875769" }, { - "rshares": "2413810847", - "voter": "aizen19" + "voter": "amstel", + "rshares": "50540827" }, { - "rshares": "636225126", - "voter": "aizen15" + "voter": "bapparabi", + "rshares": "2216805889" }, { - "rshares": "6299030433", - "voter": "aizen16" + "voter": "darkminded153", + "rshares": "247235040" }, { - "rshares": "48237424583", - "voter": "ak2020" + "voter": "igtes", + "rshares": "72826233" }, { - "rshares": "632466769", - "voter": "aizen20" + "voter": "buffett", + "rshares": "144899746" }, { - "rshares": "4134827463", - "voter": "aizen22" + "voter": "senseye", + "rshares": "2650993895" }, { - "rshares": "1099034433", - "voter": "aizen23" + "voter": "front", + "rshares": "162911190" }, { - "rshares": "2161693603", - "voter": "aizen17" + "voter": "iberia", + "rshares": "158676075" }, { - "rshares": "3402464131", - "voter": "aizen24" + "voter": "sdc", + "rshares": "161218747" }, { - "rshares": "480934421", - "voter": "aizen18" + "voter": "james1987", + "rshares": "304461322" }, { - "rshares": "1288443304", - "voter": "aizen25" + "voter": "digitalillusions", + "rshares": "157745750" }, { - "rshares": "2188687430", - "voter": "aizen28" + "voter": "illusions", + "rshares": "160880639" }, { - "rshares": "3368022267", - "voter": "aizen26" + "voter": "electronicarts", + "rshares": "160870736" }, { - "rshares": "1105570076", - "voter": "aizen27" + "voter": "dresden", + "rshares": "3795712999" }, { - "rshares": "3799766067", - "voter": "aizen32" + "voter": "haribo", + "rshares": "159950870" }, { - "rshares": "2078826064", - "voter": "aizen30" + "voter": "panic", + "rshares": "159352476" }, { - "rshares": "3845310415", - "voter": "aizen31" + "voter": "disneypixar", + "rshares": "156043541" }, { - "rshares": "1265719430", - "voter": "aizen33" + "voter": "modernbukowski", + "rshares": "1534731729" }, { - "rshares": "1522643877", - "voter": "aizen34" + "voter": "jyriygo", + "rshares": "155452864" }, { - "rshares": "305661234", - "voter": "aizen35" + "voter": "goldmatters", + "rshares": "31683945302" }, { - "rshares": "5734872441", - "voter": "aizen36" + "voter": "majes", + "rshares": "155180811" }, { - "rshares": "1430746846", - "voter": "aizen37" + "voter": "daniel1974", + "rshares": "153284499" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 216, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/ripple/@steempower/ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour", + "blacklists": [] + }, + { + "post_id": 958185, + "author": "knozaki2015", + "permlink": "the-tastiest-and-healthiest-raw-chocolate-in-the-world", + "category": "food", + "title": "The tastiest and healthiest raw chocolate in the world !!!", + "body": "\n

\"Easy
\n

\n

There are many vegan or raw chocolates to buy, but the best chocolates comes from your own kitchen

\n

HOME MADE ROCKS !!

\n


\n

\"Schokolade

\n 

\n

What is raw chocolate ? The cocoa mass that you need for it consists of unroasted fermented cocoa beans . All fiber and nutrients are untouched. The cocoa mass you can buy online.

\n


\n
\"Schokolade1\"

\n
\nAnd here comes the recipe:

\n
    \n
  • 400 g raw cacao mass (not to be confused with cocoa butter) 
  • \n
  • 2 Tablespoon Coconutoil (best is Dr. Goerg)
  • \n
  • 100 g sprouted buckwheat (for a Crunchy taste)
  • \n
  • 100 g peanuts
  • \n
  • 100 g Walnuts or chopped almonds , Goji berries or what you listen to taste .
    \n
  • \n
\n
    \n
  1. Melt the cocoa paste and coconut oil in a waterbath or in the hydrator at max . 42 degrees .
  2. \n
  3. Once it is melted add the nuts with a big spoon
  4. \n
  5. If you like bars, fill the chocolate nut mixture into silicone bars . You can buy bars in any bakery shop or at Amazon 
  6. \n
  7.  But you can also use a large shallow plate and place baking paper on the plate and fill with the chocolate nut mixture
  8. \n
\n

Be creative : Put anything you like onto the chocolate-nut mixture (Goji berries , whole nuts , coconut pieces etc.)

\n

Place the finished chocolate 1 Hour in your freezer

\n

Get the bars out of the form or break the chocolate from the plate  and put it into the fridge .

\n


\nTrust me, your chocolate won't stay too long in your fridge.... 

\n

Please follow me @allesgruen !

\n

German Original Article


\n

Written by @allesgruen & translated by @knozaki2015

\n

@knozaki2015 features authors and artist to promote them and a diversity of content.
\nThe author will receive 100% of the STEEM Dollars from this post

\n

If you like this post please support @allesgruen and follow the author!

\n


\n", + "json_metadata": { + "tags": [ + "food", + "minnowsunite", + "steemsquad", + "vegan", + "recipe" + ], + "users": [ + "allesgruen", + "knozaki2015" + ], + "image": [ + "https://s10.postimg.org/5kfqkef9l/Easy_Dishes_To_Make_For_Your50th_Birthday_Dinner_P.jpg", + "https://s16.postimg.org/j1hikj3np/Schokolade_Bild.jpg", + "https://s16.postimg.org/pggjh7adh/Schokolade1.jpg" + ], + "links": [ + "https://postimg.org/image/fui5jn551/", + "https://www.google.de/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwiU_vePvpHPAhVhJJoKHfEjAjEQFghJMAA&url=https%3A%2F%2Fwww.drgoerg.com%2Fen%2F&usg=AFQjCNGRVxYdyD04Ogm6T_WXZbejaKobyg&sig2=VMpccXoYQ8oXclIYq5y0vg", + "https://steemit.com/@allesgruen", + "https://steemit.com/food/@allesgruen/die-leckerste-und-gesuendeste-rohkost-schokolade-der-welt", + "https://steemit.com/@knozaki2015" + ] + }, + "created": "2016-09-15T14:24:12", + "updated": "2016-09-15T14:24:12", + "depth": 0, + "children": 34, + "net_rshares": 62692229771159, + "is_paidout": false, + "payout_at": "2016-09-16T14:58:37", + "payout": 230.258, + "pending_payout_value": "230.258 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "barrie", + "rshares": "518197131276" }, { - "rshares": "400285218", - "voter": "aizen29" + "voter": "smooth", + "rshares": "31620599440742" }, { - "rshares": "2816257454", - "voter": "aizen21" + "voter": "badassmother", + "rshares": "1968100090680" }, { - "rshares": "65573912297", - "voter": "justtryme90" + "voter": "pharesim", + "rshares": "3311776812132" }, { - "rshares": "4321209833", - "voter": "aizen12" + "voter": "hr1", + "rshares": "2052926274941" }, { - "rshares": "1839863893", - "voter": "aizen38" + "voter": "rossco99", + "rshares": "1337025448249" }, { - "rshares": "32298471411", - "voter": "drinkzya" + "voter": "jaewoocho", + "rshares": "22864866028" }, { - "rshares": "8444658507", - "voter": "badger311" + "voter": "joseph", + "rshares": "1619361992750" }, { - "rshares": "8739325345", - "voter": "badger313" + "voter": "aizensou", + "rshares": "98682259833" }, { - "rshares": "8702827614", - "voter": "badger312" + "voter": "recursive3", + "rshares": "462397546754" }, { - "rshares": "9001973394", - "voter": "badger316" + "voter": "recursive", + "rshares": "3120246710189" }, { - "rshares": "9123923965", - "voter": "badger319" + "voter": "mineralwasser", + "rshares": "1246163169" }, { - "rshares": "9031557781", - "voter": "badger3101" + "voter": "boombastic", + "rshares": "681003747775" }, { - "rshares": "8484371114", - "voter": "badger3111" + "voter": "mrs.agsexplorer", + "rshares": "94094732044" }, { - "rshares": "9046675913", - "voter": "badger3121" + "voter": "bingo-0", + "rshares": "6959103550" }, { - "rshares": "8655016180", - "voter": "badger3131" + "voter": "bingo-1", + "rshares": "1669989826" }, { - "rshares": "8763045211", - "voter": "badger3141" + "voter": "smooth.witness", + "rshares": "5938484287107" }, { - "rshares": "8739453800", - "voter": "badger3171" + "voter": "boatymcboatface", + "rshares": "445429446140" }, { - "rshares": "8546855954", - "voter": "badger3181" + "voter": "idol", + "rshares": "9408475799" }, { - "rshares": "9133346310", - "voter": "badger3191" + "voter": "chitty", + "rshares": "284298500346" }, { - "rshares": "8546692844", - "voter": "badger3112" + "voter": "jocelyn", + "rshares": "1619440533" }, { - "rshares": "8887969807", - "voter": "badger3132" + "voter": "gregory-f", + "rshares": "15004137591" }, { - "rshares": "8761093741", - "voter": "badger3162" + "voter": "edgeland", + "rshares": "148161564048" }, { - "rshares": "8992244297", - "voter": "badger3113" + "voter": "gregory60", + "rshares": "9604795718" }, { - "rshares": "8642807886", - "voter": "badger3123" + "voter": "gavvet", + "rshares": "1272853996010" }, { - "rshares": "8766602954", - "voter": "badger3133" + "voter": "eeks", + "rshares": "89896930629" }, { - "rshares": "9118359724", - "voter": "badger3153" + "voter": "fkn", + "rshares": "2015882351" }, { - "rshares": "8796689830", - "voter": "badger3163" + "voter": "paco-steem", + "rshares": "478461713" }, { - "rshares": "8827245303", - "voter": "badger3193" + "voter": "spaninv", + "rshares": "5763764389" }, { - "rshares": "8776818063", - "voter": "badger3114" + "voter": "nate-atkins", + "rshares": "7733788543" }, { - "rshares": "8685663112", - "voter": "badger3124" + "voter": "elishagh1", + "rshares": "2649751442" }, { - "rshares": "8588459406", - "voter": "badger3144" + "voter": "richman", + "rshares": "8669787638" }, { - "rshares": "8510231316", - "voter": "badger3154" + "voter": "nanzo-scoop", + "rshares": "599927640145" }, { - "rshares": "8377454951", - "voter": "badger3164" + "voter": "jeffanthonyfds", + "rshares": "459984469" }, { - "rshares": "8709610129", - "voter": "badger3174" + "voter": "mummyimperfect", + "rshares": "177390312070" }, { - "rshares": "8990147355", - "voter": "badger3194" + "voter": "coar", + "rshares": "313687341" }, { - "rshares": "8886405623", - "voter": "badger3105" + "voter": "asch", + "rshares": "106628883920" }, { - "rshares": "8829871300", - "voter": "badger3135" + "voter": "murh", + "rshares": "1061168224" }, { - "rshares": "8423693063", - "voter": "badger3145" + "voter": "cryptofunk", + "rshares": "6230682263" }, { - "rshares": "9007791015", - "voter": "badger3155" + "voter": "error", + "rshares": "2111403468" }, { - "rshares": "8700420554", - "voter": "badger3175" + "voter": "cyber", + "rshares": "985480652331" }, { - "rshares": "8476416242", - "voter": "badger3195" + "voter": "theshell", + "rshares": "61710743415" }, { - "rshares": "8118066308", - "voter": "badger3106" + "voter": "ak2020", + "rshares": "50878177282" }, { - "rshares": "8937639951", - "voter": "badger3116" + "voter": "taoteh1221", + "rshares": "409218031185" }, { - "rshares": "8985666162", - "voter": "badger3126" + "voter": "applecrisp", + "rshares": "418880227" }, { - "rshares": "8612215471", - "voter": "badger3136" + "voter": "stiletto", + "rshares": "373313301" }, { - "rshares": "8258415644", - "voter": "badger3146" + "voter": "hedge-x", + "rshares": "375920034566" }, { - "rshares": "8490356190", - "voter": "badger3156" + "voter": "juanmiguelsalas", + "rshares": "55577392625" }, { - "rshares": "8706404705", - "voter": "badger3166" + "voter": "ratel", + "rshares": "33780018119" }, { - "rshares": "8621148181", - "voter": "badger3176" + "voter": "trogdor", + "rshares": "280669440211" }, { - "rshares": "8755890485", - "voter": "badger3186" + "voter": "geoffrey", + "rshares": "121380113922" }, { - "rshares": "8791694513", - "voter": "badger3196" + "voter": "kimziv", + "rshares": "16025171812" }, { - "rshares": "8719131325", - "voter": "badger3107" + "voter": "emily-cook", + "rshares": "76007179625" }, { - "rshares": "8471234920", - "voter": "badger315" + "voter": "superfreek", + "rshares": "2187587354" }, { - "rshares": "8967798699", - "voter": "badger318" + "voter": "acassity", + "rshares": "30279417098" }, { - "rshares": "9017469354", - "voter": "badger3151" + "voter": "grey580", + "rshares": "17557768630" }, { - "rshares": "8689504021", - "voter": "badger3161" + "voter": "ladyclair", + "rshares": "280916636" }, { - "rshares": "8949018277", - "voter": "badger3122" + "voter": "thebatchman", + "rshares": "19974572536" }, { - "rshares": "8885778223", - "voter": "badger3142" + "voter": "good-karma", + "rshares": "61460113993" }, { - "rshares": "9108990725", - "voter": "badger3152" + "voter": "rubybian", + "rshares": "76019855821" }, { - "rshares": "8411493414", - "voter": "badger3172" + "voter": "riscadox", + "rshares": "5270775482" }, { - "rshares": "8925369694", - "voter": "badger3182" + "voter": "konstantin", + "rshares": "17903672525" }, { - "rshares": "8680564470", - "voter": "badger3192" + "voter": "mstang83", + "rshares": "256623434" }, { - "rshares": "8595071709", - "voter": "badger3143" + "voter": "tcfxyz", + "rshares": "25057071012" }, { - "rshares": "8858368574", - "voter": "badger3173" + "voter": "futurefood", + "rshares": "6939848809" }, { - "rshares": "8564639501", - "voter": "badger3104" + "voter": "endgame", + "rshares": "844421054" }, { - "rshares": "8276437501", - "voter": "badger3134" + "voter": "slowwalker", + "rshares": "823151341679" }, { - "rshares": "8683745951", - "voter": "badger3184" + "voter": "furion", + "rshares": "9840533745" }, { - "rshares": "8620766828", - "voter": "badger3115" + "voter": "ch0c0latechip", + "rshares": "52479155" }, { - "rshares": "9094337935", - "voter": "badger3165" + "voter": "sebastien", + "rshares": "19169622645" }, { - "rshares": "8719854886", - "voter": "badger3185" + "voter": "asim", + "rshares": "12011479963" }, { - "rshares": "8781868170", - "voter": "badger314" + "voter": "aaseb", + "rshares": "14487516865" }, { - "rshares": "9016639241", - "voter": "badger317" + "voter": "incomemonthly", + "rshares": "4097381727" }, { - "rshares": "8754767708", - "voter": "badger3102" + "voter": "karen13", + "rshares": "4431046054" }, { - "rshares": "8716196161", - "voter": "badger3103" + "voter": "deviedev", + "rshares": "10646413479" }, { - "rshares": "8643125157", - "voter": "badger3125" + "voter": "nabilov", + "rshares": "258981906731" }, { - "rshares": "8609233299", - "voter": "badger3183" + "voter": "tinyhomeliving", + "rshares": "5482949271" }, { - "rshares": "512951586", - "voter": "aizen39" + "voter": "luisucv34", + "rshares": "847366145" }, { - "rshares": "3616249140600", - "voter": "satoshifund" + "voter": "streetstyle", + "rshares": "54561525717" }, { - "rshares": "392453750650", - "voter": "taoteh1221" + "voter": "knozaki2015", + "rshares": "452581935074" }, { - "rshares": "418804855", - "voter": "applecrisp" + "voter": "creemej", + "rshares": "35782074085" }, { - "rshares": "373228451", - "voter": "stiletto" + "voter": "nippel66", + "rshares": "15377860373" }, { - "rshares": "38901034355", - "voter": "juanmiguelsalas" + "voter": "phenom", + "rshares": "24417657582" }, { - "rshares": "54694274623", - "voter": "thecryptodrive" + "voter": "blueorgy", + "rshares": "167298234999" }, { - "rshares": "362609039187", - "voter": "kaylinart" + "voter": "oululahti", + "rshares": "4256486989" }, { - "rshares": "1428647233", - "voter": "benthegameboy" + "voter": "poseidon", + "rshares": "349568852" }, { - "rshares": "390927750", - "voter": "rafikichi" + "voter": "iamwne", + "rshares": "2182574144" }, { - "rshares": "79218648284", - "voter": "tim-johnston" + "voter": "mustafaomar", + "rshares": "20119867662" }, { - "rshares": "132301151875", - "voter": "schro" + "voter": "simon.braki.love", + "rshares": "3506024506" }, { - "rshares": "4749927412", - "voter": "tee-em" + "voter": "royaltiffany", + "rshares": "39345808582" }, { - "rshares": "31338683407", - "voter": "michaelx" + "voter": "beowulfoflegend", + "rshares": "14954254688" }, { - "rshares": "6652497229", - "voter": "grandpere" + "voter": "deanliu", + "rshares": "32542074868" }, { - "rshares": "5689049935", - "voter": "mark-waser" + "voter": "rainchen", + "rshares": "5373137632" }, { - "rshares": "17023109715", - "voter": "albertogm" + "voter": "rea", + "rshares": "86528557116" }, { - "rshares": "106033721718", - "voter": "geoffrey" + "voter": "tokyodude", + "rshares": "1616791389" }, { - "rshares": "192231455054", - "voter": "kimziv" + "voter": "neroru", + "rshares": "7822595883" }, { - "rshares": "43526357269", - "voter": "honeythief" + "voter": "jl777", + "rshares": "215384292560" }, { - "rshares": "77694419746", - "voter": "emily-cook" + "voter": "positive", + "rshares": "1634827342" }, { - "rshares": "2122888373", - "voter": "superfreek" + "voter": "gustavopasquini", + "rshares": "5172692235" }, { - "rshares": "33245604843", - "voter": "cryptoiskey" + "voter": "moon32walker", + "rshares": "12345105776" }, { - "rshares": "484592257", - "voter": "mrhankeh" + "voter": "summonerrk", + "rshares": "6232841459" }, { - "rshares": "36254381895", - "voter": "clement" + "voter": "firehorse", + "rshares": "116726661" }, { - "rshares": "47416085106", - "voter": "isteemit" + "voter": "happyphoenix", + "rshares": "942266185" }, { - "rshares": "17205891791", - "voter": "grey580" + "voter": "claudiop63", + "rshares": "42775729046" }, { - "rshares": "280886491", - "voter": "ladyclair" + "voter": "proto", + "rshares": "18175932801" }, { - "rshares": "55546285382", - "voter": "venuspcs" + "voter": "jasen.g1311", + "rshares": "230455938" }, { - "rshares": "20379625641", - "voter": "thebatchman" + "voter": "pinkisland", + "rshares": "29035294642" }, { - "rshares": "164474222053", - "voter": "dashpaymag" + "voter": "ace108", + "rshares": "3266602711" }, { - "rshares": "169409415564", - "voter": "asmolokalo" + "voter": "sisterholics", + "rshares": "2708203880" }, { - "rshares": "462742250057", - "voter": "roelandp" + "voter": "alex.chien", + "rshares": "1483259422" }, { - "rshares": "69473128292", - "voter": "rubybian" + "voter": "royalmacro", + "rshares": "8964609699" }, { - "rshares": "3148219453", - "voter": "orly" + "voter": "logic", + "rshares": "11169454095" }, { - "rshares": "4953381149", - "voter": "riscadox" + "voter": "fnait", + "rshares": "55043445" }, { - "rshares": "245172817", - "voter": "mstang83" + "voter": "bkkshadow", + "rshares": "3482504625" }, { - "rshares": "18842523479", - "voter": "hakise" + "voter": "pixielolz", + "rshares": "25636155654" }, { - "rshares": "14215545466", - "voter": "r4fken" + "voter": "reported", + "rshares": "56747133" }, { - "rshares": "25052927517", - "voter": "tcfxyz" + "voter": "glitterpig", + "rshares": "3353832611" }, { - "rshares": "6938809092", - "voter": "futurefood" + "voter": "jed78", + "rshares": "7350128313" }, { - "rshares": "1001850942", - "voter": "steemswede" + "voter": "shortcut", + "rshares": "6785260219" }, { - "rshares": "31072527474", - "voter": "picokernel" + "voter": "andrew-charles", + "rshares": "111828316" }, { - "rshares": "823059128625", - "voter": "slowwalker" + "voter": "metaflute", + "rshares": "870677269" }, { - "rshares": "381822182", - "voter": "aizen13" + "voter": "taker", + "rshares": "9193722747" }, { - "rshares": "3279400287", - "voter": "aizen41" + "voter": "gruber", + "rshares": "1894317852" }, { - "rshares": "931911377", - "voter": "aizen42" + "voter": "felixxx", + "rshares": "15412506890" }, { - "rshares": "3174813360", - "voter": "aizen46" + "voter": "krushing", + "rshares": "52486879" }, { - "rshares": "868931638", - "voter": "aizen47" + "voter": "laonie", + "rshares": "95766386323" }, { - "rshares": "212993516", - "voter": "aizen48" + "voter": "twinner", + "rshares": "157495713864" }, { - "rshares": "111038594", - "voter": "aizen49" + "voter": "southbaybits", + "rshares": "61361321" }, { - "rshares": "922579590", - "voter": "aizen51" + "voter": "laoyao", + "rshares": "24561066673" }, { - "rshares": "1267696038568", - "voter": "renohq" + "voter": "myfirst", + "rshares": "3996853733" }, { - "rshares": "446844083", - "voter": "aizen43" + "voter": "somebody", + "rshares": "19439859020" }, { - "rshares": "66332881", - "voter": "aizen44" + "voter": "flysaga", + "rshares": "726849243" }, { - "rshares": "748318238", - "voter": "aizen54" + "voter": "ann76", + "rshares": "66940286" }, { - "rshares": "14876041938", - "voter": "ausbitbank" + "voter": "timelapse", + "rshares": "18234762995" }, { - "rshares": "1231736991", - "voter": "dicov" + "voter": "gmurph", + "rshares": "2501622377" }, { - "rshares": "2530789873", - "voter": "steem1653" + "voter": "minnowsunited", + "rshares": "494521401" }, { - "rshares": "188360520718", - "voter": "anyx" + "voter": "midnightoil", + "rshares": "4294430078" }, { - "rshares": "7540907296", - "voter": "steemit-life" + "voter": "ullikume", + "rshares": "4281232336" }, { - "rshares": "13516878845", - "voter": "sitaru" + "voter": "cjclaro", + "rshares": "5693098913" }, { - "rshares": "12461342724", - "voter": "asim" + "voter": "whatyouganjado", + "rshares": "52700570" }, { - "rshares": "95008078", - "voter": "snowden" + "voter": "budgetbucketlist", + "rshares": "36649510663" }, { - "rshares": "17043337041", - "voter": "bdavid" + "voter": "xiaohui", + "rshares": "10740564621" }, { - "rshares": "14289175254", - "voter": "aaseb" + "voter": "terrycraft", + "rshares": "176650903994" }, { - "rshares": "1107698236", - "voter": "karen13" + "voter": "elfkitchen", + "rshares": "461088291" }, { - "rshares": "19964419792", - "voter": "meiisheree" + "voter": "joele", + "rshares": "103384996602" }, { - "rshares": "10644107638", - "voter": "deviedev" + "voter": "oflyhigh", + "rshares": "5855063437" }, { - "rshares": "1427008333", - "voter": "jrd8526" + "voter": "makaveli", + "rshares": "59002619" }, { - "rshares": "73200426006", - "voter": "jpiper20" + "voter": "xiaokongcom", + "rshares": "335807163" }, { - "rshares": "258942997644", - "voter": "nabilov" + "voter": "gargon", + "rshares": "13237481048" }, { - "rshares": "4121277460", - "voter": "dcryptogold" + "voter": "xianjun", + "rshares": "676922173" }, { - "rshares": "2722560234", - "voter": "dmacshady" + "voter": "hanshotfirst", + "rshares": "26283514539" }, { - "rshares": "228989895", - "voter": "aizen52" + "voter": "tom77", + "rshares": "9199546040" }, { - "rshares": "44553186838", - "voter": "milestone" + "voter": "sarita", + "rshares": "126090405" }, { - "rshares": "87223247", - "voter": "wildchild" + "voter": "alexbones", + "rshares": "52450091" }, { - "rshares": "2650671514", - "voter": "the-future" + "voter": "njall", + "rshares": "2249542145" }, { - "rshares": "186538708", - "voter": "aizen55" + "voter": "razberrijam", + "rshares": "75676352" }, { - "rshares": "23976773907", - "voter": "peacekeeper" + "voter": "rubenalexander", + "rshares": "6402569097" }, { - "rshares": "4310323809", - "voter": "poseidon" + "voter": "chinadaily", + "rshares": "2077210674" }, { - "rshares": "347898300458", - "voter": "calaber24p" + "voter": "kyriacos", + "rshares": "11979592683" }, { - "rshares": "3365335082", - "voter": "simon.braki.love" + "voter": "jayfox", + "rshares": "806759200" }, { - "rshares": "7025103979", - "voter": "geronimo" + "voter": "ignat", + "rshares": "1647538615" }, { - "rshares": "11121059561", - "voter": "rpf" + "voter": "serejandmyself", + "rshares": "90168606946" }, { - "rshares": "3846864509", - "voter": "bitcoiner" + "voter": "pollina", + "rshares": "106144628" }, { - "rshares": "3756536992", - "voter": "tarindel" + "voter": "almerri", + "rshares": "4781807217" }, { - "rshares": "30859119533", - "voter": "deanliu" + "voter": "johnnyyash", + "rshares": "9071955992" }, { - "rshares": "138656821", - "voter": "bento" + "voter": "macartem", + "rshares": "3221126774" }, { - "rshares": "13069930577", - "voter": "shredlord" + "voter": "gvargas123", + "rshares": "9310407829" }, { - "rshares": "53842086331", - "voter": "jl777" + "voter": "themanualbot", + "rshares": "4658385146" }, { - "rshares": "30004697167", - "voter": "zaebars" + "voter": "levycore", + "rshares": "2005245825" }, { - "rshares": "1700129733", - "voter": "yarly" + "voter": "cnmtz", + "rshares": "58169756" }, { - "rshares": "256282552", - "voter": "yarly2" + "voter": "claudia", + "rshares": "476161300" }, { - "rshares": "256665987", - "voter": "yarly3" + "voter": "ozertayiz", + "rshares": "70203690" }, { - "rshares": "148269777", - "voter": "yarly4" + "voter": "mandibil", + "rshares": "57942270939" }, { - "rshares": "149106888", - "voter": "yarly5" + "voter": "steemitpatina", + "rshares": "4633082667" }, { - "rshares": "84991309", - "voter": "yarly7" + "voter": "steembriefing", + "rshares": "71507788" }, { - "rshares": "799492214", - "voter": "raymonjohnstone" + "voter": "salebored", + "rshares": "51356966" }, { - "rshares": "5272599454", - "voter": "bbrewer" + "voter": "riv", + "rshares": "54612436" }, { - "rshares": "21120708735", - "voter": "krabgat" + "voter": "ats-david", + "rshares": "5081885632" }, { - "rshares": "4543692384", - "voter": "proto" + "voter": "pollux.one", + "rshares": "1544966078" }, { - "rshares": "634121191", - "voter": "curator" + "voter": "einsteinpotsdam", + "rshares": "7776590110" }, { - "rshares": "31584197440", - "voter": "sisterholics" + "voter": "funkywanderer", + "rshares": "1932014303" }, { - "rshares": "411321155", - "voter": "yarly10" + "voter": "jasonji12", + "rshares": "56854958" }, { - "rshares": "1365664469", - "voter": "alex.chien" + "voter": "richardcrill", + "rshares": "5053551216" }, { - "rshares": "220139771", - "voter": "yarly11" + "voter": "team101", + "rshares": "184076493" }, { - "rshares": "76966318", - "voter": "yarly12" + "voter": "bitdrone", + "rshares": "51444457" }, { - "rshares": "10236810028", - "voter": "logic" + "voter": "sleepcult", + "rshares": "51436144" }, { - "rshares": "3675499938", - "voter": "tygergamer" + "voter": "greatness", + "rshares": "182060433" }, { - "rshares": "82066003", - "voter": "aizen53" + "voter": "goldstein", + "rshares": "1233641092" }, { - "rshares": "149624601", - "voter": "steemster1" + "voter": "sponge-bob", + "rshares": "27674257450" }, { - "rshares": "238512214", - "voter": "bullionstackers" + "voter": "getonthetrain", + "rshares": "3432704465" }, { - "rshares": "108721833", - "voter": "cryptoz" + "voter": "zahnspange", + "rshares": "44943498845" }, { - "rshares": "6410776006", - "voter": "jed78" + "voter": "steemorama", + "rshares": "414338857" }, { - "rshares": "128598923578", - "voter": "steemdrive" + "voter": "smisi", + "rshares": "1655277599" }, { - "rshares": "973098459", - "voter": "metaflute" + "voter": "sunjo", + "rshares": "59594290" }, { - "rshares": "50562639777", - "voter": "gomeravibz" + "voter": "benjamin.still", + "rshares": "285084767" }, { - "rshares": "440302381", - "voter": "bento04" + "voter": "asksisk", + "rshares": "229690686860" }, { - "rshares": "738358963", - "voter": "bento03" + "voter": "brains", + "rshares": "27667822273" }, { - "rshares": "1504291216", - "voter": "aizen" + "voter": "alwayzgame", + "rshares": "1772168372" }, { - "rshares": "2298269478", - "voter": "taker" + "voter": "rigaronib", + "rshares": "3531841420" }, { - "rshares": "234848214", - "voter": "bento02" + "voter": "anomaly", + "rshares": "339268967" }, { - "rshares": "540710999", - "voter": "bento01" + "voter": "allesgruen", + "rshares": "1550172009" }, { - "rshares": "7824682639", - "voter": "nekromarinist" + "voter": "ola1", + "rshares": "123129821" }, { - "rshares": "1618775242", - "voter": "coinbar" + "voter": "littlemorelove", + "rshares": "431087473" }, { - "rshares": "59219358", - "voter": "sharon" + "voter": "mari5555na", + "rshares": "68608664" }, { - "rshares": "226021128", - "voter": "frozendota" + "voter": "michaelblizek", + "rshares": "53309537" }, { - "rshares": "2315969904", - "voter": "merej99" + "voter": "creativeyoke", + "rshares": "135324063" }, { - "rshares": "60342922", - "voter": "lillianjones" + "voter": "annesaya", + "rshares": "841787796" }, { - "rshares": "1116575645876", - "voter": "laonie" + "voter": "billkappa442", + "rshares": "51240567" }, { - "rshares": "245498462743", - "voter": "ozchartart" + "voter": "steemq", + "rshares": "50225780" }, { - "rshares": "5002458769", - "voter": "croatia" + "voter": "slow", + "rshares": "50139069" }, { - "rshares": "64020118", - "voter": "vladimirputin" + "voter": "humans", + "rshares": "58668861" }, { - "rshares": "23878310347", - "voter": "rawnetics" + "voter": "factom", + "rshares": "50796122" }, { - "rshares": "64028162", - "voter": "angelamerkel" + "voter": "fenix", + "rshares": "50538694" }, { - "rshares": "8270207209", - "voter": "spaceghost" + "voter": "bapparabi", + "rshares": "1921231770" }, { - "rshares": "11407745971", - "voter": "thebluepanda" + "voter": "friends", + "rshares": "50532230" }, { - "rshares": "22955094272", - "voter": "laonie1" + "voter": "albertheijn", + "rshares": "50349676" }, { - "rshares": "23470889026", - "voter": "laonie2" + "voter": "durex", + "rshares": "161839498" }, { - "rshares": "23479197538", - "voter": "laonie3" + "voter": "ranger", + "rshares": "161815656" }, { - "rshares": "80221808", - "voter": "bento06" + "voter": "witchcraftblog", + "rshares": "435365865" }, { - "rshares": "23907912804", - "voter": "laoyao" + "voter": "acute", + "rshares": "161205518" }, { - "rshares": "37203524105", - "voter": "myfirst" + "voter": "digitalillusions", + "rshares": "160900665" }, { - "rshares": "226714843171", - "voter": "somebody" + "voter": "dresden", + "rshares": "4087522528" }, { - "rshares": "8719338522", - "voter": "flysaga" + "voter": "coolbeans", + "rshares": "155111085" }, { - "rshares": "6129565712", - "voter": "k4r1nn" + "voter": "maxlviv", + "rshares": "160151932" }, { - "rshares": "5106436541", - "voter": "brendio" + "voter": "food-creator", + "rshares": "158393209" }, { - "rshares": "2082768176", - "voter": "gmurph" + "voter": "capcom", + "rshares": "159973989" }, { - "rshares": "50083495099", - "voter": "midnightoil" + "voter": "fallout", + "rshares": "159175576" }, { - "rshares": "81536310749", - "voter": "mibenkito" + "voter": "steemthis", + "rshares": "158560941" }, { - "rshares": "2375350982", - "voter": "kalimor" + "voter": "nerds", + "rshares": "158535752" }, { - "rshares": "998581895", - "voter": "altucher" + "voter": "goldmatters", + "rshares": "31680362460" }, { - "rshares": "4187079592", - "voter": "ullikume" + "voter": "bleujay", + "rshares": "136494240" }, { - "rshares": "99580782", - "voter": "timferriss" + "voter": "jproto22", + "rshares": "150430703" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 232, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/food/@knozaki2015/the-tastiest-and-healthiest-raw-chocolate-in-the-world", + "blacklists": [] + }, + { + "post_id": 952817, + "author": "calaber24p", + "permlink": "who-should-we-find-responsible-for-the-subprime-mortgage-lending-crisis", + "category": "life", + "title": "Who Should We Find Responsible For The Subprime Mortgage Lending Crisis?", + "body": "

Who Should We Find Responsible For The Subprime Mortgage Lending Crisis?

\n\nI want to preface this article by saying, I’m not 100% sure who we should blame for the Subprime Mortgage Lending Crisis, the lenders or the borrowers which is why I want to attempt to fairly give arguments from both sides. Even today this is a heavily debated topic and I agree with points made by both sides. So I want you to decide as the reader, who you side with, and if you want to post in the comments below. This article is meant to shed light on who we should hold responsible for the Subprime Mortgage Crisis, the lenders or the borrowers, or someone else?\n\nhttp://longislandbankruptcyblog.com/wp-content/uploads/2007/11/mortgage-bubble-bursting-by-the-sub-prime-mortgage-meltdown.jpg\n\n

The Lender’s Side of The Argument

\n\nThe lender’s side of the argument almost completely revolves around the idea that people need to educate themselves before they go into a bank and take on such a series contract, like a mortgage. Even in many cases where the information was fully available to the borrower, they signed the contract even though they didn’t understand it. If you agree with consumer protection, the lenders should have stopped the transaction from taking place, but many believe that we should be free to make all decisions even bad ones. The truth is that these are companies, however and their only job is to look out for themselves. This lending is an especially weird occurrence because the force which usually stops this kind of behavior from taking place is that it would not be beneficial to the company, but mortgage brokers and the companies lending were making so much money that at the time it seemed like a good idea. \n\nhttps://www.biggerpockets.com/renewsblog/wp-content/uploads/2015/06/questions-lender.jpg\n\nAnother way the lenders justify their subprime lending practices was that they were getting pressure from higher up in the company to lend as much as possible because there was such a demand for the financial products on the markets. This is the old “I was just following orders” excuse, but there truly was heavy pressure from companies onto the brokers to loan as much as they could, or they would find someone else to do it. At the time most mortgage brokers legitimately didn’t think that they were doing something bad. They didn’t try to tank the system, they truly believed that the booming real estate market would be able to cover any losses if someone foreclosed on a property. We found out that this was a horribly wrong assumption eventually which lead to billions in toxic assets on the bank balance sheet worth nothing. Ultimately if you think that the consumer should have been diligent and did the required research before they took the mortgage contract, you might side with the side of the lenders\n\n

The Borrower’s Side of The Argument

\n\nOn the flip side, the borrower’s side of the argument claims that it is a company’s duty to inform the customer and the government’s duty to provide consumer protection so mortgages that were created with a high chance of failure wouldn’t be possible. Borrowers also claim that many of the brokers specifically targeted low income and uneducated applicants so they could get a larger commission. In addition, the extreme leniency of the various types of mortgage products that were being offered at the time, for example not having to even show any income, should have been against the law. While not all brokers were predatory, there were many that were, which did target the low income and uneducated, but at the same time there were many borrowers who knew they couldn’t afford the payments on the house and figured they would just resell it for profit. Consumer protection is a tricky subject , because at what point does it stop becoming protection and start becoming a barrier to entry. For example up until this year only Americans with an income of 250k + or 1,000,000 in assets (disregarding primary residence) were able to invest in private companies, many hedge funds and other investment vehicles, all because of consumer protection. \n\nhttps://activerain-store.s3.amazonaws.com/image_store/uploads/2/5/4/4/3/ar123584050234452.jpg\n\nMany people say that a fool and his money soon part ways and it’s hard to wonder if people who signed into these mortgages would have lost money elsewhere on credit cards or payday loans. I think that the mortgage prices that were way to complex for anyone to even understand should have never been offered, but is it the government’s place to protect a private entity from not offering them? Theoretically in a free market banks should not have offered the products because they were too risky and would have lost them money, but this force did not prevail. Whether or not you agree with the borrower heavily comes down to what degree you think consumer protection should play on your everyday life and how the government should police products. \n\n

Conclusion And Some Of My Thoughts

\n\nLike I said when I started the article I don’t think I find either party solely responsible for the subprime mortgage crisis that occurred. I believe both parties over leveraged themselves and took risks that, in hindsight, were insane. The world market wanted more mortgage prices and people all around the world were willing to pay large amounts for them, so banks and mortgage brokers supplied the demand that was out there. Unfortunately the mortgages they supplied them with were garbage. In this regard I blame the credit rating agencies, whose actual job is to rate them properly , for not doing their job. I also believe that the specific brokers and lenders who were predatory lending were morally wrong, but I’m not so sure that they constitute acting criminally. Maybe under current laws yes, but im someone who does not believe in consumer protection, mostly because I believe that people should be able to spend their money as they see fit on any product they see fit. We see 1000 scams on the internet a day, yet we don’t fall for them because we know they are scams. I think trusting any entity that is making money off you is foolish. Im interested to see what other people here think and why.", + "json_metadata": { + "tags": [ + "life", + "money", + "investing", + "banking", + "" + ], + "image": [ + "http://longislandbankruptcyblog.com/wp-content/uploads/2007/11/mortgage-bubble-bursting-by-the-sub-prime-mortgage-meltdown.jpg", + "https://www.biggerpockets.com/renewsblog/wp-content/uploads/2015/06/questions-lender.jpg", + "https://activerain-store.s3.amazonaws.com/image_store/uploads/2/5/4/4/3/ar123584050234452.jpg" + ] + }, + "created": "2016-09-14T21:48:51", + "updated": "2016-09-14T21:48:51", + "depth": 0, + "children": 31, + "net_rshares": 110596898261619, + "is_paidout": false, + "payout_at": "2016-09-15T22:37:56", + "payout": 697.978, + "pending_payout_value": "697.978 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "itsascam", + "rshares": "17090232811151" }, { - "rshares": "50565616", - "voter": "michellek" + "voter": "barrie", + "rshares": "480579269556" }, { - "rshares": "23474742068", - "voter": "laonie4" + "voter": "smooth", + "rshares": "29720965903527" }, { - "rshares": "23472418592", - "voter": "laonie5" + "voter": "anonymous", + "rshares": "231748891373" }, { - "rshares": "23469546880", - "voter": "laonie6" + "voter": "alphabet", + "rshares": "3703513941678" }, { - "rshares": "4337200195", - "voter": "armen" + "voter": "steemroller", + "rshares": "2010285876889" }, { - "rshares": "23465711623", - "voter": "laonie7" + "voter": "donaldtrump", + "rshares": "74805101299" }, { - "rshares": "3986410926", - "voter": "kurtbeil" + "voter": "steemed", + "rshares": "18187582592218" }, { - "rshares": "23462236775", - "voter": "laonie8" + "voter": "riverhead", + "rshares": "3205433782741" }, { - "rshares": "23459668262", - "voter": "laonie9" + "voter": "badassmother", + "rshares": "1990377241911" }, { - "rshares": "2511850537", - "voter": "steemleak" + "voter": "hr1", + "rshares": "2005036868492" }, { - "rshares": "107573849125", - "voter": "thisisbenbrick" + "voter": "jaewoocho", + "rshares": "22380813356" }, { - "rshares": "102639999", - "voter": "darrenrowse" + "voter": "xeroc", + "rshares": "1869058236100" }, { - "rshares": "125243433939", - "voter": "xiaohui" + "voter": "joseph", + "rshares": "1607182817833" }, { - "rshares": "4185826321", - "voter": "antfield" + "voter": "aizensou", + "rshares": "82723821395" }, { - "rshares": "176650903994", - "voter": "terrycraft" + "voter": "recursive2", + "rshares": "456027411770" }, { - "rshares": "21110659306", - "voter": "jphamer1" + "voter": "masteryoda", + "rshares": "588963325183" }, { - "rshares": "97051399", - "voter": "bigsambucca" + "voter": "recursive", + "rshares": "3119398199095" }, { - "rshares": "5946738271", - "voter": "elfkitchen" + "voter": "mineralwasser", + "rshares": "1172473837" }, { - "rshares": "5766554064", - "voter": "oflyhigh" + "voter": "mrs.agsexplorer", + "rshares": "85737349562" }, { - "rshares": "15547550089", - "voter": "randyclemens" + "voter": "bingo-1", + "rshares": "1620255991" }, { - "rshares": "2190476078", - "voter": "paynode" + "voter": "smooth.witness", + "rshares": "5567720953547" }, { - "rshares": "63775516", - "voter": "nickche" + "voter": "pairmike", + "rshares": "170448445243" }, { - "rshares": "4028373583", - "voter": "xiaokongcom" + "voter": "idol", + "rshares": "9645319071" }, { - "rshares": "57428544328", - "voter": "driv3n" + "voter": "team", + "rshares": "131761872479" }, { - "rshares": "60819615", - "voter": "msjennifer" + "voter": "sakr", + "rshares": "4632015537" }, { - "rshares": "55925537", - "voter": "ciao" + "voter": "jchch", + "rshares": "96050573044" }, { - "rshares": "54217761", - "voter": "steemo" + "voter": "chitty", + "rshares": "25239550780" }, { - "rshares": "175834493", - "voter": "pcashmore" + "voter": "alexgr", + "rshares": "47092417970" }, { - "rshares": "8120343873", - "voter": "xianjun" + "voter": "yefet", + "rshares": "3109770089" }, { - "rshares": "54077897", - "voter": "steema" + "voter": "jocelyn", + "rshares": "1660422196" }, { - "rshares": "58449787", - "voter": "andrew.sullivan" + "voter": "gregory-f", + "rshares": "13752626395" }, { - "rshares": "1025553643", - "voter": "brianclark" + "voter": "dave-hughes", + "rshares": "11239173417" }, { - "rshares": "815283599", - "voter": "daniel.kahneman" + "voter": "edgeland", + "rshares": "145064407415" }, { - "rshares": "228330036", - "voter": "tucker.max" + "voter": "full-measure", + "rshares": "30188072314" }, { - "rshares": "726300641", - "voter": "darren.rowse" + "voter": "lovelace", + "rshares": "60085973635" }, { - "rshares": "54611897", - "voter": "chris.dunn" + "voter": "eeks", + "rshares": "74898454777" }, { - "rshares": "71282219", - "voter": "confucius" + "voter": "paco-steem", + "rshares": "478348587" }, { - "rshares": "70633121", - "voter": "stevescriber" + "voter": "spaninv", + "rshares": "5761302959" }, { - "rshares": "4015538661", - "voter": "bledarus" + "voter": "instructor2121", + "rshares": "30447039303" }, { - "rshares": "1155158838", - "voter": "pat.flynn" + "voter": "nate-atkins", + "rshares": "7891620962" }, { - "rshares": "62297184", - "voter": "weames" + "voter": "gekko", + "rshares": "2197259642" }, { - "rshares": "50027573", - "voter": "loli" + "voter": "teamsteem", + "rshares": "313176541236" }, { - "rshares": "89194632643", - "voter": "miacats" + "voter": "richman", + "rshares": "9535707424" }, { - "rshares": "1199604993", - "voter": "mattmarshall" + "voter": "nanzo-scoop", + "rshares": "550540650972" }, { - "rshares": "429199025", - "voter": "timothysykes" + "voter": "fact", + "rshares": "13884504681" }, { - "rshares": "52419023", - "voter": "nano2nd" + "voter": "steve-walschot", + "rshares": "165470271317" }, { - "rshares": "104765652", - "voter": "patflynn" + "voter": "cian.dafe", + "rshares": "10099012692" }, { - "rshares": "54909929", - "voter": "jarvis" + "voter": "hannixx42", + "rshares": "49793677286" }, { - "rshares": "531944476", - "voter": "microluck" + "voter": "mummyimperfect", + "rshares": "169122010230" }, { - "rshares": "879418656", - "voter": "andrewsullivan" + "voter": "coar", + "rshares": "268838726" }, { - "rshares": "77220767", - "voter": "razberrijam" + "voter": "asch", + "rshares": "98193208498" }, { - "rshares": "9618530893", - "voter": "theb0red1" + "voter": "murh", + "rshares": "1060920601" }, { - "rshares": "53106127", - "voter": "fortuner" + "voter": "cryptofunk", + "rshares": "6083782451" }, { - "rshares": "1952786674", - "voter": "chinadaily" + "voter": "error", + "rshares": "2164662094" }, { - "rshares": "59021275", - "voter": "cryptoblu" + "voter": "marta-zaidel", + "rshares": "5736901624" }, { - "rshares": "59014859", - "voter": "instructor" + "voter": "ranko-k", + "rshares": "40923353954" }, { - "rshares": "739426684571", - "voter": "dollarvigilante" + "voter": "cyber", + "rshares": "985042955913" }, { - "rshares": "3897735456", - "voter": "lamech-m" + "voter": "aizen01", + "rshares": "10687278238" }, { - "rshares": "479539090", - "voter": "harvey.levin" + "voter": "aizen02", + "rshares": "6372292910" }, { - "rshares": "9825243280", - "voter": "gvargas123" + "voter": "aizen03", + "rshares": "3482772895" }, { - "rshares": "13004524355", - "voter": "telos" + "voter": "aizen04", + "rshares": "1145023026" }, { - "rshares": "51877132", - "voter": "johnbyrd" + "voter": "aizen05", + "rshares": "484325382" }, { - "rshares": "51860909", - "voter": "thomasaustin" + "voter": "aizen07", + "rshares": "4698759112" }, { - "rshares": "51859074", - "voter": "thermor" + "voter": "aizen08", + "rshares": "2810313611" }, { - "rshares": "51870077", - "voter": "ficholl" + "voter": "aizen09", + "rshares": "998812710" }, { - "rshares": "51852278", - "voter": "widell" + "voter": "aizen10", + "rshares": "432171763" }, { - "rshares": "51481279", - "voter": "revelbrooks" + "voter": "aizen06", + "rshares": "7109531805" }, { - "rshares": "23453540976", - "voter": "laonie10" + "voter": "aizen11", + "rshares": "2986666907" }, { - "rshares": "604185913", - "voter": "wuyueling" + "voter": "aizen14", + "rshares": "2052802727" }, { - "rshares": "73277014476", - "voter": "sweetsssj" + "voter": "aizen19", + "rshares": "2413810847" }, { - "rshares": "2803446535", - "voter": "netaterra" + "voter": "aizen15", + "rshares": "636225126" }, { - "rshares": "190920669", - "voter": "rand.fishkin" + "voter": "aizen16", + "rshares": "6299030433" }, { - "rshares": "90834949499", - "voter": "barrycooper" + "voter": "ak2020", + "rshares": "48237424583" }, { - "rshares": "79979619", - "voter": "joelbow" + "voter": "aizen20", + "rshares": "632466769" }, { - "rshares": "28908541792", - "voter": "hilarski" + "voter": "aizen22", + "rshares": "4134827463" }, { - "rshares": "2496488206", - "voter": "shadowspub" + "voter": "aizen23", + "rshares": "1099034433" }, { - "rshares": "51562255", - "voter": "curpose" + "voter": "aizen17", + "rshares": "2161693603" }, { - "rshares": "55859919", - "voter": "rickmiller" + "voter": "aizen24", + "rshares": "3402464131" }, { - "rshares": "1208491149", - "voter": "lenar" + "voter": "aizen18", + "rshares": "480934421" }, { - "rshares": "2129438571", - "voter": "cryptoeasy" + "voter": "aizen25", + "rshares": "1288443304" }, { - "rshares": "5032072150", - "voter": "nulliusinverba" + "voter": "aizen28", + "rshares": "2188687430" }, { - "rshares": "68558903", - "voter": "stephenkendal" + "voter": "aizen26", + "rshares": "3368022267" }, { - "rshares": "112576381", - "voter": "jlufer" + "voter": "aizen27", + "rshares": "1105570076" }, { - "rshares": "90066514", - "voter": "uziriel" + "voter": "aizen32", + "rshares": "3799766067" }, { - "rshares": "1931935967", - "voter": "funkywanderer" + "voter": "aizen30", + "rshares": "2078826064" }, { - "rshares": "4592861696", - "voter": "richardcrill" + "voter": "aizen31", + "rshares": "3845310415" }, { - "rshares": "22607437120", - "voter": "laonie11" + "voter": "aizen33", + "rshares": "1265719430" }, { - "rshares": "2249900457", - "voter": "jeremyfromwi" + "voter": "aizen34", + "rshares": "1522643877" }, { - "rshares": "63258691", - "voter": "arnoldz61" + "voter": "aizen35", + "rshares": "305661234" }, { - "rshares": "51712804", - "voter": "troich" + "voter": "aizen36", + "rshares": "5734872441" }, { - "rshares": "1588617838", - "voter": "davidjkelley" + "voter": "aizen37", + "rshares": "1430746846" }, { - "rshares": "187911420", - "voter": "team101" + "voter": "aizen29", + "rshares": "400285218" }, { - "rshares": "51718188", - "voter": "crion" + "voter": "aizen21", + "rshares": "2816257454" }, { - "rshares": "178419224", - "voter": "greatness" + "voter": "justtryme90", + "rshares": "65573912297" }, { - "rshares": "51388276", - "voter": "hitherise" + "voter": "aizen12", + "rshares": "4321209833" }, { - "rshares": "51379706", - "voter": "wiss" + "voter": "aizen38", + "rshares": "1839863893" }, { - "rshares": "13264756693", - "voter": "ghasemkiani" + "voter": "drinkzya", + "rshares": "32298471411" }, { - "rshares": "20853966542", - "voter": "sponge-bob" + "voter": "badger311", + "rshares": "8444658507" }, { - "rshares": "4434912337", - "voter": "l0k1" + "voter": "badger313", + "rshares": "8739325345" }, { - "rshares": "14886230314", - "voter": "digital-wisdom" + "voter": "badger312", + "rshares": "8702827614" }, { - "rshares": "3628536972", - "voter": "ethical-ai" + "voter": "badger316", + "rshares": "9001973394" }, { - "rshares": "52143228", - "voter": "stroully" + "voter": "badger319", + "rshares": "9123923965" }, { - "rshares": "1433005760", - "voter": "jiganomics" + "voter": "badger3101", + "rshares": "9031557781" }, { - "rshares": "6531322926", - "voter": "jwaser" + "voter": "badger3111", + "rshares": "8484371114" }, { - "rshares": "11919570943", - "voter": "doitvoluntarily" + "voter": "badger3121", + "rshares": "9046675913" }, { - "rshares": "51814474", - "voter": "thadm" + "voter": "badger3131", + "rshares": "8655016180" }, { - "rshares": "51812703", - "voter": "prof" + "voter": "badger3141", + "rshares": "8763045211" }, { - "rshares": "1018513187", - "voter": "zettar" + "voter": "badger3171", + "rshares": "8739453800" }, { - "rshares": "94160774", - "voter": "kyusho" + "voter": "badger3181", + "rshares": "8546855954" }, { - "rshares": "414323782", - "voter": "steemorama" + "voter": "badger3191", + "rshares": "9133346310" }, { - "rshares": "52252552", - "voter": "lighter" + "voter": "badger3112", + "rshares": "8546692844" }, { - "rshares": "51465774", - "voter": "yorsens" + "voter": "badger3132", + "rshares": "8887969807" }, { - "rshares": "3068760608", - "voter": "michaelmatthews" + "voter": "badger3162", + "rshares": "8761093741" }, { - "rshares": "273904972", - "voter": "benjamin.still" + "voter": "badger3113", + "rshares": "8992244297" }, { - "rshares": "174173092", - "voter": "harveylevin" + "voter": "badger3123", + "rshares": "8642807886" }, { - "rshares": "51154263", - "voter": "bane" + "voter": "badger3133", + "rshares": "8766602954" }, { - "rshares": "51148009", - "voter": "vive" + "voter": "badger3153", + "rshares": "9118359724" }, { - "rshares": "51142585", - "voter": "coad" + "voter": "badger3163", + "rshares": "8796689830" }, { - "rshares": "2558000160", - "voter": "bwaser" + "voter": "badger3193", + "rshares": "8827245303" }, { - "rshares": "51922012", - "voter": "sofa" + "voter": "badger3114", + "rshares": "8776818063" }, { - "rshares": "120475423", - "voter": "gary.vaynerchuk" + "voter": "badger3124", + "rshares": "8685663112" }, { - "rshares": "5773395051", - "voter": "dexter-k" + "voter": "badger3144", + "rshares": "8588459406" }, { - "rshares": "344116052", - "voter": "panther" + "voter": "badger3154", + "rshares": "8510231316" }, { - "rshares": "2201645172", - "voter": "alina1" + "voter": "badger3164", + "rshares": "8377454951" }, { - "rshares": "659570211", - "voter": "ct-gurus" + "voter": "badger3174", + "rshares": "8709610129" }, { - "rshares": "395021428301", - "voter": "charlieshrem" + "voter": "badger3194", + "rshares": "8990147355" }, { - "rshares": "61805245119", - "voter": "tracemayer" + "voter": "badger3105", + "rshares": "8886405623" }, { - "rshares": "20817843519", - "voter": "brains" + "voter": "badger3135", + "rshares": "8829871300" }, { - "rshares": "50450987", - "voter": "waldemar-kuhn" + "voter": "badger3145", + "rshares": "8423693063" }, { - "rshares": "51994517", - "voter": "ailo" + "voter": "badger3155", + "rshares": "9007791015" }, { - "rshares": "5470867324", - "voter": "chick1" + "voter": "badger3175", + "rshares": "8700420554" }, { - "rshares": "2275182541", - "voter": "whatsup" + "voter": "badger3195", + "rshares": "8476416242" }, { - "rshares": "51114196", - "voter": "xpice" + "voter": "badger3106", + "rshares": "8118066308" }, { - "rshares": "2084741030", - "voter": "steemsquad" + "voter": "badger3116", + "rshares": "8937639951" }, { - "rshares": "255505026", - "voter": "anomaly" + "voter": "badger3126", + "rshares": "8985666162" }, { - "rshares": "2293549771", - "voter": "ellepdub" + "voter": "badger3136", + "rshares": "8612215471" }, { - "rshares": "50407156", - "voter": "timothy.sykes" + "voter": "badger3146", + "rshares": "8258415644" }, { - "rshares": "59178617", - "voter": "inarix03" + "voter": "badger3156", + "rshares": "8490356190" }, { - "rshares": "218488504", - "voter": "ola1" + "voter": "badger3166", + "rshares": "8706404705" }, { - "rshares": "11523640324", - "voter": "herpetologyguy" + "voter": "badger3176", + "rshares": "8621148181" }, { - "rshares": "52614987", - "voter": "dulcio" + "voter": "badger3186", + "rshares": "8755890485" }, { - "rshares": "51470533", - "voter": "eavy" + "voter": "badger3196", + "rshares": "8791694513" }, { - "rshares": "51484593", - "voter": "roto" + "voter": "badger3107", + "rshares": "8719131325" }, { - "rshares": "54452104", - "voter": "drac59" + "voter": "badger315", + "rshares": "8471234920" }, { - "rshares": "57119426", - "voter": "everittdmickey" + "voter": "badger318", + "rshares": "8967798699" }, { - "rshares": "1041710878", - "voter": "jang" + "voter": "badger3151", + "rshares": "9017469354" }, { - "rshares": "4605288518", - "voter": "morgan.waser" + "voter": "badger3161", + "rshares": "8689504021" }, { - "rshares": "50602980", - "voter": "cfisher" + "voter": "badger3122", + "rshares": "8949018277" }, { - "rshares": "285981023", - "voter": "thefinanceguy" + "voter": "badger3142", + "rshares": "8885778223" }, { - "rshares": "50235850", - "voter": "billkappa442" + "voter": "badger3152", + "rshares": "9108990725" }, { - "rshares": "1206752302", - "voter": "anns" + "voter": "badger3172", + "rshares": "8411493414" }, { - "rshares": "50938725", - "voter": "haved" + "voter": "badger3182", + "rshares": "8925369694" }, { - "rshares": "50708837", - "voter": "ardly" + "voter": "badger3192", + "rshares": "8680564470" }, { - "rshares": "50704078", - "voter": "yotoh" + "voter": "badger3143", + "rshares": "8595071709" }, { - "rshares": "50565798", - "voter": "penthouse" + "voter": "badger3173", + "rshares": "8858368574" }, { - "rshares": "1871969417", - "voter": "bapparabi" + "voter": "badger3104", + "rshares": "8564639501" }, { - "rshares": "50487909", - "voter": "opticalillusions" + "voter": "badger3134", + "rshares": "8276437501" }, { - "rshares": "50433760", - "voter": "morse" + "voter": "badger3184", + "rshares": "8683745951" }, { - "rshares": "50372583", - "voter": "carre" + "voter": "badger3115", + "rshares": "8620766828" }, { - "rshares": "50351738", - "voter": "aschwin" + "voter": "badger3165", + "rshares": "9094337935" }, { - "rshares": "3527739772", - "voter": "strong-ai" + "voter": "badger3185", + "rshares": "8719854886" }, { - "rshares": "71207873", - "voter": "igtes" + "voter": "badger314", + "rshares": "8781868170" }, { - "rshares": "851674848", - "voter": "dikanevroman" + "voter": "badger317", + "rshares": "9016639241" }, { - "rshares": "144899746", - "voter": "buffett" + "voter": "badger3102", + "rshares": "8754767708" }, { - "rshares": "159723319", - "voter": "ctu" + "voter": "badger3103", + "rshares": "8716196161" }, { - "rshares": "1319373906", - "voter": "rusteemitblog" + "voter": "badger3125", + "rshares": "8643125157" }, { - "rshares": "161974443", - "voter": "zapply" + "voter": "badger3183", + "rshares": "8609233299" }, { - "rshares": "505647276", - "voter": "kjsxj" + "voter": "aizen39", + "rshares": "512951586" }, { - "rshares": "158642800", - "voter": "ranger" + "voter": "satoshifund", + "rshares": "3616249140600" }, { - "rshares": "161700361", - "voter": "shadowcash" + "voter": "taoteh1221", + "rshares": "392453750650" }, { - "rshares": "435351417", - "voter": "witchcraftblog" + "voter": "applecrisp", + "rshares": "418804855" }, { - "rshares": "158051137", - "voter": "origin" + "voter": "stiletto", + "rshares": "373228451" }, { - "rshares": "310120169", - "voter": "james1987" + "voter": "juanmiguelsalas", + "rshares": "38901034355" }, { - "rshares": "160845765", - "voter": "caseyneistat" + "voter": "thecryptodrive", + "rshares": "54694274623" }, { - "rshares": "161323470", - "voter": "pawel-krawczyk" + "voter": "kaylinart", + "rshares": "362609039187" }, { - "rshares": "201362779", - "voter": "mgibson" + "voter": "benthegameboy", + "rshares": "1428647233" }, { - "rshares": "160326045", - "voter": "planet" + "voter": "rafikichi", + "rshares": "390927750" }, { - "rshares": "152057481", - "voter": "food-creator" + "voter": "tim-johnston", + "rshares": "79218648284" }, { - "rshares": "156411729", - "voter": "blender" + "voter": "schro", + "rshares": "132301151875" }, { - "rshares": "156261069", - "voter": "ibm1000" + "voter": "tee-em", + "rshares": "4749927412" }, { - "rshares": "156227917", - "voter": "panic" + "voter": "michaelx", + "rshares": "31338683407" }, { - "rshares": "159143891", - "voter": "reef" + "voter": "grandpere", + "rshares": "6652497229" }, { - "rshares": "158560941", - "voter": "steemthis" + "voter": "mark-waser", + "rshares": "5689049935" }, { - "rshares": "158541985", - "voter": "citigroup" + "voter": "albertogm", + "rshares": "17023109715" }, { - "rshares": "158486055", - "voter": "zendesk" + "voter": "geoffrey", + "rshares": "106033721718" }, { - "rshares": "158270049", - "voter": "maxb02" + "voter": "kimziv", + "rshares": "192231455054" }, { - "rshares": "71720421", - "voter": "dealzgal" + "voter": "honeythief", + "rshares": "43526357269" }, { - "rshares": "197432359", - "voter": "blend" + "voter": "emily-cook", + "rshares": "77694419746" }, { - "rshares": "80379451", - "voter": "storage" + "voter": "superfreek", + "rshares": "2122888373" }, { - "rshares": "148077602", - "voter": "dougkarr" + "voter": "cryptoiskey", + "rshares": "33245604843" }, { - "rshares": "64613800", - "voter": "blackmarket" + "voter": "mrhankeh", + "rshares": "484592257" }, { - "rshares": "70760501", - "voter": "gifts" + "voter": "clement", + "rshares": "36254381895" }, { - "rshares": "91120780", - "voter": "expat" + "voter": "isteemit", + "rshares": "47416085106" }, { - "rshares": "134906258", - "voter": "steemtrail" + "voter": "grey580", + "rshares": "17205891791" }, { - "rshares": "147050914", - "voter": "royfft" + "voter": "ladyclair", + "rshares": "280886491" }, { - "rshares": "151927362", - "voter": "countofdelphi" + "voter": "venuspcs", + "rshares": "55546285382" }, { - "rshares": "154610548", - "voter": "rjordan" + "voter": "thebatchman", + "rshares": "20379625641" }, { - "rshares": "144957585", - "voter": "sawgunner13" + "voter": "dashpaymag", + "rshares": "164474222053" }, { - "rshares": "150986382", - "voter": "mysteryshot" + "voter": "asmolokalo", + "rshares": "169409415564" }, { - "rshares": "150834868", - "voter": "dirlei.sdias" + "voter": "roelandp", + "rshares": "462742250057" }, { - "rshares": "150260046", - "voter": "tttnofear" - } - ], - "author": "calaber24p", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "

Who Should We Find Responsible For The Subprime Mortgage Lending Crisis?

\n\nI want to preface this article by saying, I\u2019m not 100% sure who we should blame for the Subprime Mortgage Lending Crisis, the lenders or the borrowers which is why I want to attempt to fairly give arguments from both sides. Even today this is a heavily debated topic and I agree with points made by both sides. So I want you to decide as the reader, who you side with, and if you want to post in the comments below. This article is meant to shed light on who we should hold responsible for the Subprime Mortgage Crisis, the lenders or the borrowers, or someone else?\n\nhttp://longislandbankruptcyblog.com/wp-content/uploads/2007/11/mortgage-bubble-bursting-by-the-sub-prime-mortgage-meltdown.jpg\n\n

The Lender\u2019s Side of The Argument

\n\nThe lender\u2019s side of the argument almost completely revolves around the idea that people need to educate themselves before they go into a bank and take on such a series contract, like a mortgage. Even in many cases where the information was fully available to the borrower, they signed the contract even though they didn\u2019t understand it. If you agree with consumer protection, the lenders should have stopped the transaction from taking place, but many believe that we should be free to make all decisions even bad ones. The truth is that these are companies, however and their only job is to look out for themselves. This lending is an especially weird occurrence because the force which usually stops this kind of behavior from taking place is that it would not be beneficial to the company, but mortgage brokers and the companies lending were making so much money that at the time it seemed like a good idea. \n\nhttps://www.biggerpockets.com/renewsblog/wp-content/uploads/2015/06/questions-lender.jpg\n\nAnother way the lenders justify their subprime lending practices was that they were getting pressure from higher up in the company to lend as much as possible because there was such a demand for the financial products on the markets. This is the old \u201cI was just following orders\u201d excuse, but there truly was heavy pressure from companies onto the brokers to loan as much as they could, or they would find someone else to do it. At the time most mortgage brokers legitimately didn\u2019t think that they were doing something bad. They didn\u2019t try to tank the system, they truly believed that the booming real estate market would be able to cover any losses if someone foreclosed on a property. We found out that this was a horribly wrong assumption eventually which lead to billions in toxic assets on the bank balance sheet worth nothing. Ultimately if you think that the consumer should have been diligent and did the required research before they took the mortgage contract, you might side with the side of the lenders\n\n

The Borrower\u2019s Side of The Argument

\n\nOn the flip side, the borrower\u2019s side of the argument claims that it is a company\u2019s duty to inform the customer and the government\u2019s duty to provide consumer protection so mortgages that were created with a high chance of failure wouldn\u2019t be possible. Borrowers also claim that many of the brokers specifically targeted low income and uneducated applicants so they could get a larger commission. In addition, the extreme leniency of the various types of mortgage products that were being offered at the time, for example not having to even show any income, should have been against the law. While not all brokers were predatory, there were many that were, which did target the low income and uneducated, but at the same time there were many borrowers who knew they couldn\u2019t afford the payments on the house and figured they would just resell it for profit. Consumer protection is a tricky subject , because at what point does it stop becoming protection and start becoming a barrier to entry. For example up until this year only Americans with an income of 250k + or 1,000,000 in assets (disregarding primary residence) were able to invest in private companies, many hedge funds and other investment vehicles, all because of consumer protection. \n\nhttps://activerain-store.s3.amazonaws.com/image_store/uploads/2/5/4/4/3/ar123584050234452.jpg\n\nMany people say that a fool and his money soon part ways and it\u2019s hard to wonder if people who signed into these mortgages would have lost money elsewhere on credit cards or payday loans. I think that the mortgage prices that were way to complex for anyone to even understand should have never been offered, but is it the government\u2019s place to protect a private entity from not offering them? Theoretically in a free market banks should not have offered the products because they were too risky and would have lost them money, but this force did not prevail. Whether or not you agree with the borrower heavily comes down to what degree you think consumer protection should play on your everyday life and how the government should police products. \n\n

Conclusion And Some Of My Thoughts

\n\nLike I said when I started the article I don\u2019t think I find either party solely responsible for the subprime mortgage crisis that occurred. I believe both parties over leveraged themselves and took risks that, in hindsight, were insane. The world market wanted more mortgage prices and people all around the world were willing to pay large amounts for them, so banks and mortgage brokers supplied the demand that was out there. Unfortunately the mortgages they supplied them with were garbage. In this regard I blame the credit rating agencies, whose actual job is to rate them properly , for not doing their job. I also believe that the specific brokers and lenders who were predatory lending were morally wrong, but I\u2019m not so sure that they constitute acting criminally. Maybe under current laws yes, but im someone who does not believe in consumer protection, mostly because I believe that people should be able to spend their money as they see fit on any product they see fit. We see 1000 scams on the internet a day, yet we don\u2019t fall for them because we know they are scams. I think trusting any entity that is making money off you is foolish. Im interested to see what other people here think and why.", - "category": "life", - "children": 31, - "created": "2016-09-14T21:48:51", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "http://longislandbankruptcyblog.com/wp-content/uploads/2007/11/mortgage-bubble-bursting-by-the-sub-prime-mortgage-meltdown.jpg", - "https://www.biggerpockets.com/renewsblog/wp-content/uploads/2015/06/questions-lender.jpg", - "https://activerain-store.s3.amazonaws.com/image_store/uploads/2/5/4/4/3/ar123584050234452.jpg" - ], - "tags": [ - "life", - "money", - "investing", - "banking", - "" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 110596898261619, - "payout": 696.13, - "payout_at": "2016-09-21T21:48:51", - "pending_payout_value": "696.130 HBD", - "percent_hbd": 10000, - "permlink": "who-should-we-find-responsible-for-the-subprime-mortgage-lending-crisis", - "post_id": 1247716, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 524 - }, - "title": "Who Should We Find Responsible For The Subprime Mortgage Lending Crisis?", - "updated": "2016-09-14T21:48:51", - "url": "/life/@calaber24p/who-should-we-find-responsible-for-the-subprime-mortgage-lending-crisis" - }, - { - "active_votes": [ + "voter": "rubybian", + "rshares": "69473128292" + }, { - "rshares": "504195513450", - "voter": "barrie" + "voter": "orly", + "rshares": "3148219453" }, { - "rshares": "31620913718202", - "voter": "smooth" + "voter": "riscadox", + "rshares": "4953381149" }, { - "rshares": "1911892676725", - "voter": "badassmother" + "voter": "mstang83", + "rshares": "245172817" }, { - "rshares": "2052957762572", - "voter": "hr1" + "voter": "hakise", + "rshares": "18842523479" }, { - "rshares": "1304415071462", - "voter": "rossco99" + "voter": "r4fken", + "rshares": "14215545466" }, { - "rshares": "22865183550", - "voter": "jaewoocho" + "voter": "tcfxyz", + "rshares": "25052927517" }, { - "rshares": "226246467529", - "voter": "steem-id" + "voter": "futurefood", + "rshares": "6938809092" }, { - "rshares": "1576158798591", - "voter": "joseph" + "voter": "steemswede", + "rshares": "1001850942" }, { - "rshares": "452786214573", - "voter": "recursive3" + "voter": "picokernel", + "rshares": "31072527474" }, { - "rshares": "667448946492", - "voter": "masteryoda" + "voter": "slowwalker", + "rshares": "823059128625" }, { - "rshares": "3120322518686", - "voter": "recursive" + "voter": "aizen13", + "rshares": "381822182" }, { - "rshares": "1246183601", - "voter": "mineralwasser" + "voter": "aizen41", + "rshares": "3279400287" }, { - "rshares": "681020986865", - "voter": "boombastic" + "voter": "aizen42", + "rshares": "931911377" }, { - "rshares": "91328598326", - "voter": "mrs.agsexplorer" + "voter": "aizen46", + "rshares": "3174813360" }, { - "rshares": "1670010256", - "voter": "bingo-1" + "voter": "aizen47", + "rshares": "868931638" }, { - "rshares": "5939141625779", - "voter": "smooth.witness" + "voter": "aizen48", + "rshares": "212993516" }, { - "rshares": "9167324238", - "voter": "idol" + "voter": "aizen49", + "rshares": "111038594" }, { - "rshares": "5147451513", - "voter": "sakr" + "voter": "aizen51", + "rshares": "922579590" }, { - "rshares": "1577927842", - "voter": "jocelyn" + "voter": "renohq", + "rshares": "1267696038568" }, { - "rshares": "83529892028", - "voter": "acidsun" + "voter": "aizen43", + "rshares": "446844083" }, { - "rshares": "15004772648", - "voter": "gregory-f" + "voter": "aizen44", + "rshares": "66332881" }, { - "rshares": "9412699804", - "voter": "gregory60" + "voter": "aizen54", + "rshares": "748318238" }, { - "rshares": "1221939836170", - "voter": "gavvet" + "voter": "ausbitbank", + "rshares": "14876041938" }, { - "rshares": "74914418556", - "voter": "eeks" + "voter": "dicov", + "rshares": "1231736991" }, { - "rshares": "3023823526", - "voter": "fkn" + "voter": "steem1653", + "rshares": "2530789873" }, { - "rshares": "3974627163", - "voter": "elishagh1" + "voter": "anyx", + "rshares": "188360520718" }, { - "rshares": "584166740800", - "voter": "nanzo-scoop" + "voter": "steemit-life", + "rshares": "7540907296" }, { - "rshares": "450784780", - "voter": "jeffanthonyfds" + "voter": "sitaru", + "rshares": "13516878845" }, { - "rshares": "177394802953", - "voter": "mummyimperfect" + "voter": "asim", + "rshares": "12461342724" }, { - "rshares": "313689446", - "voter": "coar" + "voter": "snowden", + "rshares": "95008078" }, { - "rshares": "106630632039", - "voter": "asch" + "voter": "bdavid", + "rshares": "17043337041" }, { - "rshares": "1061217841", - "voter": "murh" + "voter": "aaseb", + "rshares": "14289175254" }, { - "rshares": "6230682263", - "voter": "cryptofunk" + "voter": "karen13", + "rshares": "1107698236" }, { - "rshares": "2057276344", - "voter": "error" + "voter": "meiisheree", + "rshares": "19964419792" }, { - "rshares": "985521934082", - "voter": "cyber" + "voter": "deviedev", + "rshares": "10644107638" }, { - "rshares": "61711858916", - "voter": "theshell" + "voter": "jrd8526", + "rshares": "1427008333" }, { - "rshares": "49574865624", - "voter": "ak2020" + "voter": "jpiper20", + "rshares": "73200426006" }, { - "rshares": "769703167086", - "voter": "satoshifund" + "voter": "nabilov", + "rshares": "258942997644" }, { - "rshares": "409231996622", - "voter": "taoteh1221" + "voter": "dcryptogold", + "rshares": "4121277460" }, { - "rshares": "410502622", - "voter": "applecrisp" + "voter": "dmacshady", + "rshares": "2722560234" }, { - "rshares": "33781859925", - "voter": "ratel" + "voter": "aizen52", + "rshares": "228989895" }, { - "rshares": "121380113922", - "voter": "geoffrey" + "voter": "milestone", + "rshares": "44553186838" }, { - "rshares": "26709210609", - "voter": "kimziv" + "voter": "wildchild", + "rshares": "87223247" }, { - "rshares": "74282084191", - "voter": "emily-cook" + "voter": "the-future", + "rshares": "2650671514" }, { - "rshares": "2187587354", - "voter": "superfreek" + "voter": "aizen55", + "rshares": "186538708" }, { - "rshares": "19974734600", - "voter": "thebatchman" + "voter": "peacekeeper", + "rshares": "23976773907" }, { - "rshares": "60285274969", - "voter": "good-karma" + "voter": "poseidon", + "rshares": "4310323809" }, { - "rshares": "1609452901", - "voter": "gidlark" + "voter": "calaber24p", + "rshares": "347898300458" }, { - "rshares": "73849034695", - "voter": "rubybian" + "voter": "simon.braki.love", + "rshares": "3365335082" }, { - "rshares": "365381071", - "voter": "konstantin" + "voter": "geronimo", + "rshares": "7025103979" }, { - "rshares": "4533066552", - "voter": "stranger27" + "voter": "rpf", + "rshares": "11121059561" }, { - "rshares": "2597453094", - "voter": "romel" + "voter": "bitcoiner", + "rshares": "3846864509" }, { - "rshares": "14760800618", - "voter": "furion" + "voter": "tarindel", + "rshares": "3756536992" }, { - "rshares": "70822893", - "voter": "barbara2" + "voter": "deanliu", + "rshares": "30859119533" }, { - "rshares": "78718732", - "voter": "ch0c0latechip" + "voter": "bento", + "rshares": "138656821" }, { - "rshares": "72854943", - "voter": "doge4lyf" + "voter": "shredlord", + "rshares": "13069930577" }, { - "rshares": "248653120", - "voter": "ardina" + "voter": "jl777", + "rshares": "53842086331" }, { - "rshares": "14487949878", - "voter": "aaseb" + "voter": "zaebars", + "rshares": "30004697167" }, { - "rshares": "4209499465", - "voter": "karen13" + "voter": "yarly", + "rshares": "1700129733" }, { - "rshares": "10646413479", - "voter": "deviedev" + "voter": "yarly2", + "rshares": "256282552" }, { - "rshares": "258981906731", - "voter": "nabilov" + "voter": "yarly3", + "rshares": "256665987" }, { - "rshares": "35782810726", - "voter": "creemej" + "voter": "yarly4", + "rshares": "148269777" }, { - "rshares": "3800725646", - "voter": "maximkichev" + "voter": "yarly5", + "rshares": "149106888" }, { - "rshares": "167301783484", - "voter": "blueorgy" + "voter": "yarly7", + "rshares": "84991309" }, { - "rshares": "582626783", - "voter": "poseidon" + "voter": "raymonjohnstone", + "rshares": "799492214" }, { - "rshares": "2083366228", - "voter": "iamwne" + "voter": "bbrewer", + "rshares": "5272599454" }, { - "rshares": "7946556816", - "voter": "smolalit" + "voter": "krabgat", + "rshares": "21120708735" }, { - "rshares": "347973296817", - "voter": "calaber24p" + "voter": "proto", + "rshares": "4543692384" }, { - "rshares": "3506024506", - "voter": "simon.braki.love" + "voter": "curator", + "rshares": "634121191" }, { - "rshares": "268131351853", - "voter": "liberosist" + "voter": "sisterholics", + "rshares": "31584197440" }, { - "rshares": "32542201152", - "voter": "deanliu" + "voter": "yarly10", + "rshares": "411321155" }, { - "rshares": "40247477787", - "voter": "celsius100" + "voter": "alex.chien", + "rshares": "1365664469" }, { - "rshares": "204615752038", - "voter": "jl777" + "voter": "yarly11", + "rshares": "220139771" }, { - "rshares": "2452241013", - "voter": "positive" + "voter": "yarly12", + "rshares": "76966318" }, { - "rshares": "35821871446", - "voter": "paquito" + "voter": "logic", + "rshares": "10236810028" }, { - "rshares": "101547003699", - "voter": "crazymumzysa" + "voter": "tygergamer", + "rshares": "3675499938" }, { - "rshares": "4827846086", - "voter": "gustavopasquini" + "voter": "aizen53", + "rshares": "82066003" }, { - "rshares": "18844269406", - "voter": "carlidos" + "voter": "steemster1", + "rshares": "149624601" }, { - "rshares": "17267164725", - "voter": "proto" + "voter": "bullionstackers", + "rshares": "238512214" }, { - "rshares": "4513770870", - "voter": "sisterholics" + "voter": "cryptoz", + "rshares": "108721833" }, { - "rshares": "1444237397", - "voter": "alex.chien" + "voter": "jed78", + "rshares": "6410776006" }, { - "rshares": "8964609699", - "voter": "royalmacro" + "voter": "steemdrive", + "rshares": "128598923578" }, { - "rshares": "82565168", - "voter": "fnait" + "voter": "metaflute", + "rshares": "973098459" }, { - "rshares": "73351025", - "voter": "keepcalmand" + "voter": "gomeravibz", + "rshares": "50562639777" }, { - "rshares": "120956823", - "voter": "ap2002" + "voter": "bento04", + "rshares": "440302381" }, { - "rshares": "8734053750", - "voter": "taker" + "voter": "bento03", + "rshares": "738358963" }, { - "rshares": "159615103593", - "voter": "laonie" + "voter": "aizen", + "rshares": "1504291216" }, { - "rshares": "157504637007", - "voter": "twinner" + "voter": "taker", + "rshares": "2298269478" }, { - "rshares": "24561329465", - "voter": "laoyao" + "voter": "bento02", + "rshares": "234848214" }, { - "rshares": "5329392113", - "voter": "myfirst" + "voter": "bento01", + "rshares": "540710999" }, { - "rshares": "32400440159", - "voter": "somebody" + "voter": "nekromarinist", + "rshares": "7824682639" }, { - "rshares": "16605279252", - "voter": "sunshine" + "voter": "coinbar", + "rshares": "1618775242" }, { - "rshares": "1211439463", - "voter": "flysaga" + "voter": "sharon", + "rshares": "59219358" }, { - "rshares": "2084689825", - "voter": "gmurph" + "voter": "frozendota", + "rshares": "226021128" }, { - "rshares": "7157539840", - "voter": "midnightoil" + "voter": "merej99", + "rshares": "2315969904" }, { - "rshares": "2327843962", - "voter": "kalimor" + "voter": "lillianjones", + "rshares": "60342922" }, { - "rshares": "17901440239", - "voter": "xiaohui" + "voter": "laonie", + "rshares": "1116575645876" }, { - "rshares": "172970676828", - "voter": "terrycraft" + "voter": "ozchartart", + "rshares": "245498462743" }, { - "rshares": "369703928", - "voter": "riosparada" + "voter": "croatia", + "rshares": "5002458769" }, { - "rshares": "808461612", - "voter": "elfkitchen" + "voter": "vladimirputin", + "rshares": "64020118" }, { - "rshares": "103387869456", - "voter": "joele" + "voter": "rawnetics", + "rshares": "23878310347" }, { - "rshares": "5855390607", - "voter": "oflyhigh" + "voter": "angelamerkel", + "rshares": "64028162" }, { - "rshares": "559689131", - "voter": "xiaokongcom" + "voter": "spaceghost", + "rshares": "8270207209" }, { - "rshares": "2114128942", - "voter": "future24" + "voter": "thebluepanda", + "rshares": "11407745971" }, { - "rshares": "1128227680", - "voter": "xianjun" + "voter": "laonie1", + "rshares": "22955094272" }, { - "rshares": "7546646500", - "voter": "lgm-1" + "voter": "laonie2", + "rshares": "23470889026" }, { - "rshares": "2249482011", - "voter": "njall" + "voter": "laonie3", + "rshares": "23479197538" }, { - "rshares": "73887203", - "voter": "microluck" + "voter": "bento06", + "rshares": "80221808" }, { - "rshares": "75676352", - "voter": "razberrijam" + "voter": "laoyao", + "rshares": "23907912804" }, { - "rshares": "6417571438", - "voter": "userlogin" + "voter": "myfirst", + "rshares": "37203524105" }, { - "rshares": "59219258", - "voter": "photo00" + "voter": "somebody", + "rshares": "226714843171" }, { - "rshares": "604294820", - "voter": "tagira" + "voter": "flysaga", + "rshares": "8719338522" }, { - "rshares": "2077233526", - "voter": "chinadaily" + "voter": "k4r1nn", + "rshares": "6129565712" }, { - "rshares": "110661420", - "voter": "pollina" + "voter": "brendio", + "rshares": "5106436541" }, { - "rshares": "9071955992", - "voter": "johnnyyash" + "voter": "gmurph", + "rshares": "2082768176" }, { - "rshares": "3352601337", - "voter": "macartem" + "voter": "midnightoil", + "rshares": "50083495099" }, { - "rshares": "9827647000", - "voter": "gvargas123" + "voter": "mibenkito", + "rshares": "81536310749" }, { - "rshares": "3707793427", - "voter": "movievertigo" + "voter": "kalimor", + "rshares": "2375350982" }, { - "rshares": "23716271959", - "voter": "andrewawerdna" + "voter": "altucher", + "rshares": "998581895" }, { - "rshares": "9139485521", - "voter": "craigwilliamz" + "voter": "ullikume", + "rshares": "4187079592" }, { - "rshares": "56654664918", - "voter": "mandibil" + "voter": "timferriss", + "rshares": "99580782" }, { - "rshares": "60273361", - "voter": "bonapetit" + "voter": "michellek", + "rshares": "50565616" }, { - "rshares": "74550672", - "voter": "steembriefing" + "voter": "laonie4", + "rshares": "23474742068" }, { - "rshares": "55750195", - "voter": "riv" + "voter": "laonie5", + "rshares": "23472418592" }, { - "rshares": "5401359628", - "voter": "nulliusinverba" + "voter": "laonie6", + "rshares": "23469546880" }, { - "rshares": "2196809758", - "voter": "runridefly" + "voter": "armen", + "rshares": "4337200195" }, { - "rshares": "33516506660", - "voter": "krnel" + "voter": "laonie7", + "rshares": "23465711623" }, { - "rshares": "5053551216", - "voter": "richardcrill" + "voter": "kurtbeil", + "rshares": "3986410926" }, { - "rshares": "11070141971", - "voter": "sponge-bob" + "voter": "laonie8", + "rshares": "23462236775" }, { - "rshares": "53070013", - "voter": "apparat" + "voter": "laonie9", + "rshares": "23459668262" }, { - "rshares": "12276570645", - "voter": "doitvoluntarily" + "voter": "steemleak", + "rshares": "2511850537" }, { - "rshares": "201688406600", - "voter": "asksisk" + "voter": "thisisbenbrick", + "rshares": "107573849125" }, { - "rshares": "330365849", - "voter": "panther" + "voter": "darrenrowse", + "rshares": "102639999" }, { - "rshares": "11067573914", - "voter": "brains" + "voter": "xiaohui", + "rshares": "125243433939" }, { - "rshares": "1396726660", - "voter": "steemafon" + "voter": "antfield", + "rshares": "4185826321" }, { - "rshares": "3310976095", - "voter": "anton333" + "voter": "terrycraft", + "rshares": "176650903994" }, { - "rshares": "339274981", - "voter": "anomaly" + "voter": "jphamer1", + "rshares": "21110659306" }, { - "rshares": "123155378", - "voter": "ola1" + "voter": "bigsambucca", + "rshares": "97051399" }, { - "rshares": "70282046", - "voter": "mari5555na" + "voter": "elfkitchen", + "rshares": "5946738271" }, { - "rshares": "6087022243", - "voter": "ekaterina4ka" + "voter": "oflyhigh", + "rshares": "5766554064" }, { - "rshares": "291933324", - "voter": "thefinanceguy" + "voter": "randyclemens", + "rshares": "15547550089" }, { - "rshares": "50223099", - "voter": "battalar" + "voter": "paynode", + "rshares": "2190476078" }, { - "rshares": "50873654", - "voter": "palladium" + "voter": "nickche", + "rshares": "63775516" }, { - "rshares": "50794039", - "voter": "autodesk" + "voter": "xiaokongcom", + "rshares": "4028373583" }, { - "rshares": "50565798", - "voter": "penthouse" + "voter": "driv3n", + "rshares": "57428544328" }, { - "rshares": "2216805889", - "voter": "bapparabi" + "voter": "msjennifer", + "rshares": "60819615" }, { - "rshares": "50532230", - "voter": "friends" + "voter": "ciao", + "rshares": "55925537" }, { - "rshares": "469221474", - "voter": "iontom" + "voter": "steemo", + "rshares": "54217761" }, { - "rshares": "50482289", - "voter": "connection" + "voter": "pcashmore", + "rshares": "175834493" }, { - "rshares": "444435987", - "voter": "witchcraftblog" + "voter": "xianjun", + "rshares": "8120343873" }, { - "rshares": "157816798", - "voter": "gravity" + "voter": "steema", + "rshares": "54077897" }, { - "rshares": "160957729", - "voter": "realtime" + "voter": "andrew.sullivan", + "rshares": "58449787" }, { - "rshares": "160835930", - "voter": "skrillex" + "voter": "brianclark", + "rshares": "1025553643" }, { - "rshares": "148889617", - "voter": "food-creator" + "voter": "daniel.kahneman", + "rshares": "815283599" }, { - "rshares": "156814579", - "voter": "haribo" + "voter": "tucker.max", + "rshares": "228330036" }, { - "rshares": "159425365", - "voter": "tipsandtricks" + "voter": "darren.rowse", + "rshares": "726300641" }, { - "rshares": "156054487", - "voter": "fallout" + "voter": "chris.dunn", + "rshares": "54611897" }, { - "rshares": "159143891", - "voter": "reef" + "voter": "confucius", + "rshares": "71282219" }, { - "rshares": "155528114", - "voter": "icesteem" + "voter": "stevescriber", + "rshares": "70633121" }, { - "rshares": "158632601", - "voter": "cream" + "voter": "bledarus", + "rshares": "4015538661" }, { - "rshares": "155452864", - "voter": "jyriygo" - } - ], - "author": "terrycraft", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "Vegetarianism is philosophy which has deep religious and ethical roots, the essence is the refuse to eat meat of living beings.\nPythagorean were vegetarians. Yogis of ancient India were vegetarians. The followers of Buddhism are prescribed to be vegetarians. Early Christianity forbade killing for food.\nI became a vegetarian at the age of 15. I remember clear this comic occasion: during another lush family dinner my dad putted the shin of the roasted goose on my plate. When he was putting this piece of once living bird, I claimed it for the first time: \u201cNo, dad thanks. I don\u2019t eat living creatures anymore. I\u2019m a vegetarian\u201d.\nhttp://petroart.ru/art/b/bronikov/img/3.jpg\n>\u0412\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0441\u0442\u0432\u043e - \u044d\u0442\u043e \u0444\u0438\u043b\u043e\u0441\u043e\u0444\u0438\u044f, \u0438\u043c\u0435\u044e\u0449\u0430\u044f \u043e\u0447\u0435\u043d\u044c \u0434\u0440\u0435\u0432\u043d\u0438\u0435 \u0440\u0435\u043b\u0438\u0433\u0438\u043e\u0437\u043d\u044b\u0435 \u0438 \u044d\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043a\u043e\u0440\u043d\u0438, \u0441\u0443\u0442\u044c \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0441\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043e\u0442\u043a\u0430\u0437 \u043e\u0442 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u043b\u0435\u043d\u0438\u044f \u0432 \u043f\u0438\u0449\u0443 \u043c\u044f\u0441\u0430 \u0436\u0438\u0432\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432. \n\u041f\u0438\u0444\u0430\u0433\u043e\u0440\u0435\u0439\u0446\u044b \u0431\u044b\u043b\u0438 \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0446\u0430\u043c\u0438. \u0419\u043e\u0433\u0438 \u0434\u0440\u0435\u0432\u043d\u0435\u0439 \u0418\u043d\u0434\u0438\u0438 \u0431\u044b\u043b\u0438 \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0446\u0430\u043c\u0438. \u0411\u0443\u0434\u0434\u0438\u0437\u043c \u043f\u0440\u0435\u0434\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u0442 \u0441\u0432\u043e\u0438\u043c \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0441\u0442\u0432\u043e. \u0420\u0430\u043d\u043d\u0435\u0435 \u0445\u0440\u0438\u0441\u0442\u0438\u0430\u043d\u0441\u0442\u0432\u043e \u0437\u0430\u043f\u0440\u0435\u0449\u0430\u043b\u043e \u0443\u0431\u0438\u0439\u0441\u0442\u0432\u043e \u0434\u043b\u044f \u0447\u0440\u0435\u0432\u0430.\n\u042f \u0441\u0442\u0430\u043b\u0430 \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u043e\u0439 \u0432 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0435 15 \u043b\u0435\u0442. \u041f\u0440\u0435\u043a\u0440\u0430\u0441\u043d\u043e \u043f\u043e\u043c\u043d\u044e \u044d\u0442\u043e\u0442 \u043a\u043e\u043c\u0438\u0447\u043d\u044b\u0439 \u0441\u043b\u0443\u0447\u0430\u0439: \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0433\u043e \u043f\u044b\u0448\u043d\u043e\u0433\u043e \u0441\u0435\u043c\u0435\u0439\u043d\u043e\u0433\u043e \u0443\u0436\u0438\u043d\u0430 \u043f\u0430\u043f\u0430 \u0432\u044b\u0437\u0432\u0430\u043b\u0441\u044f \u043f\u043e\u043b\u043e\u0436\u0438\u0442\u044c \u043c\u043d\u0435 \u0432 \u0442\u0430\u0440\u0435\u043b\u043a\u0443 \u0433\u043e\u043b\u0435\u043d\u044c \u0437\u0430\u043f\u0435\u0447\u0451\u043d\u043d\u043e\u0433\u043e \u0432 \u0434\u0443\u0445\u043e\u0432\u043a\u0435 \u0433\u0443\u0441\u044f. \u0412 \u0442\u043e \u0432\u0440\u0435\u043c\u044f \u043a\u0430\u043a \u043e\u043d \u0443\u0436\u0435 \u0432\u0437\u0432\u0430\u043b\u0438\u0432\u0430\u043b \u0432 \u043c\u043e\u044e \u0442\u0430\u0440\u0435\u043b\u043a\u0443 \u043a\u0443\u0441\u043e\u043a \u043d\u0435\u043a\u043e\u0433\u0434\u0430 \u0436\u0438\u0432\u043e\u0439 \u043f\u0442\u0438\u0446\u044b, \u044f \u0432\u043f\u0435\u0440\u0432\u044b\u0435 \u0437\u0430\u044f\u0432\u0438\u043b\u0430 \u0432\u043e \u0432\u0441\u0435\u0443\u0441\u043b\u044b\u0448\u0430\u043d\u0438\u0435:\"\u041d\u0435\u0442, \u043f\u0430\u043f\u0430, \u043d\u0435 \u043d\u0443\u0436\u043d\u043e. \u042f \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0435\u043c \u0436\u0438\u0432\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432. \u042f \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u0430.\"\n----\nI was a teenager at that time, my parents didn\u2019t treat it seriously, considering it as a teenage whim, didn\u2019t understand me, and for sure, didn\u2019t support me. Though they didn\u2019t object it, thinking that it would pass in a few months. But it wasn\u2019t a whim; it was my first serious and conscious decision in my life. They stopped ostracizing me only in a year after, during that year I experienced, at the example of a family as a social group, what it\u2019s like to have your personal opinion when the majority is against you!\nWhat did cause my decision to become a vegetarian?\nI can\u2019t remember the particular event, which marked the switch of my mind to conscious nutrition without harm to living beings. It seemed that I did it easily because I\u2019d been moving to it and at the certain moment I was morally ready to do the step. For example I remember when I was just a kid, at the age of 5 or 6, I was playing in our garden, thinking: \u201cWhy should I kill to keep on living?\u201d I didn\u2019t ask anybody about it, because I felt that I wouldn\u2019t get the proper answer from adults. This question gave me no rest; I often tried to solve this dilemma reasoning from how my childish heart perceived the world, which opposed all violence and evil. Understanding that this faceless, usually tasty grilled chicken used to be a living being, which had been born, had been a little chick, it was eating and enjoying life and then it was beheaded killed to make me think that I like eating fried chicken legs; it led me to the ideological confusion. I loved every animal, considered them as friends; on the one hand I saw people keeping pets and treating them as family members. On the other hand people killed an animal to have something tasty on their dinner table. And so did I, I was sitting and eating that grilled chicken.\n\nhttp://www.damex.ru/images/cache/660x495/crop/images%7Ccms-image-000013620.jpg\n\n>\u0422\u043e\u0433\u0434\u0430 \u044f \u0431\u044b\u043b\u0430 \u043f\u043e\u0434\u0440\u043e\u0441\u0442\u043a\u043e\u043c, \u0438 \u043c\u043e\u0438 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u0438 \u043d\u0435 \u043e\u0442\u043d\u0435\u0441\u043b\u0438\u0441\u044c \u043a\u043e \u043c\u043d\u0435 \u0441\u0435\u0440\u044c\u0451\u0437\u043d\u043e, \u043f\u043e\u0441\u0447\u0438\u0442\u0430\u0432 \u044d\u0442\u043e \u043f\u043e\u0434\u0440\u043e\u0441\u0442\u043a\u043e\u0432\u043e\u0439 \u043f\u0440\u0438\u0447\u0443\u0434\u043e\u0439, \u043d\u0435 \u043f\u043e\u043d\u044f\u043b\u0438 \u043c\u0435\u043d\u044f \u0438, \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e, \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0430\u043b\u0438. \u041d\u043e \u043d\u0435 \u0441\u0442\u0430\u043b\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0432\u043e\u0437\u0440\u0430\u0436\u0430\u0442\u044c, \u0434\u0443\u043c\u0430\u044f, \u0447\u0442\u043e \u0447\u0435\u0440\u0435\u0437 \u043f\u0430\u0440\u0443-\u0442\u0440\u043e\u0439\u043a\u0443 \u043c\u0435\u0441\u044f\u0446\u0435\u0432 \u044d\u0442\u043e \u043f\u0440\u043e\u0439\u0434\u0451\u0442. \u041d\u043e \u044d\u0442\u043e \u043d\u0435 \u0431\u044b\u043b\u043e \u043f\u0440\u0438\u0447\u0443\u0434\u043e\u0439, \u044d\u0442\u043e \u0431\u044b\u043b\u043e \u043f\u0435\u0440\u0432\u044b\u043c \u0441\u0435\u0440\u044c\u0451\u0437\u043d\u044b\u043c \u0438 \u043e\u0441\u043e\u0437\u043d\u0430\u043d\u043d\u044b\u043c \u0440\u0435\u0448\u0435\u043d\u0438\u0435\u043c \u0432 \u043c\u043e\u0435\u0439 \u0436\u0438\u0437\u043d\u0438. \u0422\u043e\u043b\u044c\u043a\u043e \u0441\u043f\u0443\u0441\u0442\u044f \u0433\u043e\u0434 \u043e\u043d\u0438 \u043f\u0435\u0440\u0435\u0441\u0442\u0430\u043b\u0438 \u043f\u043e\u0434\u0432\u0435\u0440\u0433\u0430\u0442\u044c \u043c\u0435\u043d\u044f \u0441\u0435\u043c\u0435\u0439\u043d\u043e\u043c\u0443 \u043e\u0441\u0442\u0440\u0430\u043a\u0438\u0437\u043c\u0443, \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u044f \u0445\u043e\u0440\u043e\u0448\u043e \u043f\u0440\u043e\u0447\u0443\u0432\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0430 \u043d\u0430 \u043f\u0440\u0438\u043c\u0435\u0440\u0435 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \"\u0441\u0435\u043c\u044c\u044f\", \u0447\u0442\u043e \u0442\u0430\u043a\u043e\u0435 \u0438\u043c\u0435\u0442\u044c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u043c\u043d\u0435\u043d\u0438\u0435, \u043a\u043e\u0433\u0434\u0430 \u0431\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u043e \u043f\u0440\u043e\u0442\u0438\u0432 \u0442\u0435\u0431\u044f!\n\u0427\u0435\u043c \u0431\u044b\u043b\u043e \u0432\u044b\u0437\u0432\u0430\u043d\u043e \u043c\u043e\u0451 \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u0442\u044c \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u043e\u0439?\n\u042f \u043d\u0435 \u043c\u043e\u0433\u0443 \u0432\u0441\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e\u0433\u043e \u0441\u043e\u0431\u044b\u0442\u0438\u044f, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0431\u044b \u043e\u0437\u043d\u0430\u043c\u0435\u043d\u043e\u0432\u0430\u043b\u043e \u0440\u0435\u0437\u043a\u0438\u0439 \u0441\u0434\u0432\u0438\u0433 \u043c\u043e\u0435\u0433\u043e \u0441\u043e\u0437\u043d\u0430\u043d\u0438\u044f \u0438 \u043f\u0435\u0440\u0435\u0445\u043e\u0434 \u043d\u0430 \u043e\u0441\u043e\u0437\u043d\u0430\u043d\u043d\u043e\u0435 \u043f\u0438\u0442\u0430\u043d\u0438\u0435 \u0431\u0435\u0437 \u0432\u0440\u0435\u0434\u0430 \u0434\u043b\u044f \u0436\u0438\u0432\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432. \u041c\u043d\u0435 \u0434\u0430\u0436\u0435 \u043a\u0430\u0436\u0435\u0442\u0441\u044f, \u0447\u0442\u043e \u044d\u0442\u043e \u043f\u0440\u043e\u0448\u043b\u043e \u0442\u0430\u043a \u043b\u0435\u0433\u043a\u043e \u0438 \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0438\u043c\u0435\u043d\u043d\u043e \u043f\u043e\u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u044f \u0443\u0436\u0435 \u0434\u0430\u0432\u043d\u043e \u0448\u043b\u0430 \u043a \u044d\u0442\u043e\u043c\u0443 \u0438 \u0432 \u043a\u0430\u043a\u043e\u0439-\u0442\u043e \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u0440\u043e\u0441\u0442\u043e \u043c\u043e\u0440\u0430\u043b\u044c\u043d\u043e \u0441\u043e\u0437\u0440\u0435\u043b\u0430 \u0434\u043b\u044f \u0442\u0430\u043a\u043e\u0433\u043e \u0448\u0430\u0433\u0430. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043f\u043e\u043c\u043d\u044e, \u043a\u0430\u043a \u0435\u0449\u0451 \u0431\u0443\u0434\u0443\u0447\u0438 \u0441\u043e\u0432\u0441\u0435\u043c \u0440\u0435\u0431\u0451\u043d\u043a\u043e\u043c, \u043b\u0435\u0442 \u044d\u0442\u0430\u043a \u0432 \u043f\u044f\u0442\u044c-\u0448\u0435\u0441\u0442\u044c, \u044f \u0438\u0433\u0440\u0430\u043b\u0430 \u0432 \u043d\u0430\u0448\u0435\u043c \u043e\u0433\u043e\u0440\u043e\u0434\u0435 \u0438 \u0434\u0443\u043c\u0430\u043b\u0430:\"\u0410 \u043f\u043e\u0447\u0435\u043c\u0443, \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0436\u0438\u0442\u044c, \u044f \u0434\u043e\u043b\u0436\u043d\u0430 \u0443\u0431\u0438\u0432\u0430\u0442\u044c?\" \u042f \u043d\u0438\u043a\u043e\u0433\u043e \u043d\u0435 \u0441\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u043b\u0430 \u043e\u0431 \u044d\u0442\u043e\u043c, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e \u044f\u0441\u043d\u043e \u0447\u0443\u0432\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0430, \u0447\u0442\u043e \u043d\u0438\u043a\u0442\u043e \u0438\u0437 \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445 \u043d\u0435 \u0432 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0438 \u043e\u0442\u0432\u0435\u0442\u0438\u0442\u044c \u043c\u043d\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e. \u042d\u0442\u043e\u0442 \u0432\u043e\u043f\u0440\u043e\u0441 \u043d\u0435 \u0434\u0430\u0432\u0430\u043b \u043c\u043d\u0435 \u043f\u043e\u043a\u043e\u044f, \u044f \u0447\u0430\u0441\u0442\u043e \u043f\u044b\u0442\u0430\u043b\u0430\u0441\u044c \u0440\u0435\u0448\u0438\u0442\u044c \u044d\u0442\u0443 \u0434\u0438\u043b\u0435\u043c\u043c\u0443, \u0438\u0441\u0445\u043e\u0434\u044f \u0438\u0437 \u0432\u043e\u0441\u043f\u0440\u0438\u044f\u0442\u0438\u044f \u043c\u0438\u0440\u0430 \u0441\u0435\u0440\u0434\u0446\u0435\u043c \u0440\u0435\u0431\u0451\u043d\u043a\u0430, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043f\u0440\u043e\u0442\u0438\u0432\u0438\u0442\u0441\u044f \u0432\u0441\u044f\u043a\u043e\u043c\u0443 \u043d\u0430\u0441\u0438\u043b\u0438\u044e \u0438 \u0437\u043b\u0443 \u043f\u043e \u0441\u0430\u043c\u043e\u0439 \u0441\u0432\u043e\u0435\u0439 \u043f\u0440\u0438\u0440\u043e\u0434\u0435. \u041f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0435, \u0447\u0442\u043e \u044d\u0442\u0430 \u0431\u0435\u0437\u043b\u0438\u043a\u0430\u044f, \u043f\u0440\u0438\u0432\u044b\u0447\u043d\u043e \u0432\u043a\u0443\u0441\u043d\u0430\u044f \"\u043a\u0443\u0440\u0438\u0446\u0430-\u0433\u0440\u0438\u043b\u044c\" \u0431\u044b\u043b\u0430 \u0436\u0438\u0432\u044b\u043c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043e\u043c, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043a\u043e\u0433\u0434\u0430-\u0442\u043e \u0431\u044b\u043b\u043e \u0440\u043e\u0436\u0434\u0435\u043d\u043e, \u0440\u043e\u0441\u043b\u043e \u043c\u0430\u043b\u0435\u043d\u044c\u043a\u0438\u043c \u0446\u044b\u043f\u043b\u0451\u043d\u043a\u043e\u043c, \u043a\u0443\u0448\u0430\u043b\u043e \u0438 \u043f\u043e-\u0441\u0432\u043e\u0435\u043c\u0443 \u0440\u0430\u0434\u043e\u0432\u0430\u043b\u043e\u0441\u044c \u0436\u0438\u0437\u043d\u0438, \u0430 \u0442\u0435\u043f\u0435\u0440\u044c \u043e\u0431\u0435\u0437\u0433\u043b\u0430\u0432\u043b\u0435\u043d\u043e, \u0443\u0431\u0438\u0442\u043e, \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u044f \u0434\u0443\u043c\u0430\u043b\u0430, \u043a\u0430\u043a \u044f \u043b\u044e\u0431\u043b\u044e \u043a\u0443\u0448\u0430\u0442\u044c \u0436\u0430\u0440\u0435\u043d\u044b\u0435 \u043d\u043e\u0436\u043a\u0438 \u044d\u0442\u043e\u0439 \u043a\u0443\u0440\u043e\u0447\u043a\u0438, \u043f\u0440\u0438\u0432\u043e\u0434\u0438\u043b\u043e \u043c\u0435\u043d\u044f \u0432 \u0438\u0434\u0435\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0437\u0430\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e. \u042f \u043e\u0447\u0435\u043d\u044c \u043b\u044e\u0431\u0438\u043b\u0430 \u0432\u0441\u0435\u0445 \u0436\u0438\u0432\u043e\u0442\u043d\u044b\u0445, \u0441\u0447\u0438\u0442\u0430\u043b\u0430 \u0438\u0445 \u0441\u0432\u043e\u0438\u043c\u0438 \u0434\u0440\u0443\u0437\u044c\u044f\u043c\u0438, \u0432\u0438\u0434\u0435\u043b\u0430, \u043a\u0430\u043a \u043b\u044e\u0434\u0438 \u0437\u0430\u0432\u043e\u0434\u044f\u0442 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0434\u043e\u043c\u0430\u0448\u043d\u0438\u0445 \u043b\u044e\u0431\u0438\u043c\u0446\u0435\u0432 \u043a\u0430\u043a \u0447\u043b\u0435\u043d\u043e\u0432 \u0441\u0435\u043c\u044c\u0438. \u0418 \u0442\u0443\u0442 \u0436\u0435 \u0441 \u0434\u0440\u0443\u0433\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u043b\u044e\u0434\u0438 \u0443\u0431\u0438\u0432\u0430\u044e\u0442 \u0436\u0438\u0432\u043e\u0442\u043d\u043e\u0435, \u0447\u0442\u043e\u0431\u044b \u0431\u044b\u043b\u043e \u0447\u0442\u043e \u0432\u043a\u0443\u0441\u043d\u043e\u0435 \u043f\u043e\u043a\u0443\u0448\u0430\u0442\u044c \u043d\u0430 \u0441\u0442\u043e\u043b\u0435. \u0418 \u0432\u043e\u0442 \u044f \u0442\u043e\u0436\u0435 \u0441\u0438\u0436\u0443 \u0438 \u0435\u043c \u044d\u0442\u0443 \u043a\u0443\u0440\u0438\u0446\u0443-\u0433\u0440\u0438\u043b\u044c. \n-----\nBut seeing that adults didn\u2019t care about it, I as any other child didn\u2019t oppose myself to parents and others; I just assimilate all the manners and customs, equaling to those who seemed to be older and wiser.\nI was growing up and parents\u2019 influence and influence of other unquestioned authorities subsided, I got my personal space in my mind and there was my personal opinion on the questions in it. At the age of 15, the formation of my personality reached the level where issues of life turned into beliefs and beliefs \u2013 into actions. I remembered that childish dilemma in a new perspective, and to the question: \u201cWhy should I kill to keep on living?\u201d I answered: \u201cNO, I SHOULD NOT\u201d\nSince then I\u2019m a vegetarian, it\u2019s been 5 years already.\nhttps://media4.giphy.com/media/xcFZrrcaGhbz2/200w.gif\n>\u041d\u043e \u0432\u0438\u0434\u044f, \u0447\u0442\u043e \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445 \u044d\u0442\u043e \u043d\u0435 \u0437\u0430\u0431\u043e\u0442\u0438\u0442, \u044f, \u043a\u0430\u043a \u043b\u044e\u0431\u043e\u0439 \u0440\u0435\u0431\u0451\u043d\u043e\u043a, \u043d\u0435 \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u043b\u0430 \u0441\u0435\u0431\u044f \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044f\u043c \u0438 \u0432\u0441\u0435\u043c \u0434\u0440\u0443\u0433\u0438\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u0432\u043f\u0438\u0442\u044b\u0432\u0430\u043b\u0430 \u0432\u0441\u0435 \u043d\u0440\u0430\u0432\u044b \u0438 \u043e\u0431\u044b\u0447\u0430\u0438, \u0440\u0430\u0432\u043d\u044f\u044f\u0441\u044c \u043d\u0430 \u0442\u0435\u0445, \u043a\u043e\u0433\u043e \u0441\u0447\u0438\u0442\u0430\u043b\u0430 \u0441\u0442\u0430\u0440\u0448\u0435 \u0438 \u043c\u0443\u0434\u0440\u0435\u0435.\n\u042f \u0440\u043e\u0441\u043b\u0430, \u0438 \u043f\u043e\u0441\u0442\u0435\u043f\u0435\u043d\u043d\u043e \u0432\u043b\u0438\u044f\u043d\u0438\u0435 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u0435\u0439 \u0438 \u043f\u0440\u043e\u0447\u0438\u0445 \u043d\u0435\u043f\u0440\u0435\u0440\u0435\u043a\u0430\u0435\u043c\u044b\u0445 \u0430\u0432\u0442\u043e\u0440\u0438\u0442\u0435\u0442\u043e\u0432 \u0441\u043f\u0430\u0434\u0430\u043b\u043e, \u0443 \u043c\u0435\u043d\u044f \u043f\u043e\u044f\u0432\u043b\u044f\u043b\u043e\u0441\u044c \u043b\u0438\u0447\u043d\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0432 \u0440\u0430\u0437\u0443\u043c\u0435 \u0438 \u0432 \u043d\u0451\u043c \u0437\u0430\u0440\u043e\u0436\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0435 \u0432\u043e\u043f\u0440\u043e\u0441\u044b. \u0418 \u0432 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0435 15 \u043b\u0435\u0442 \u0441\u0442\u0435\u043f\u0435\u043d\u044c \u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u043e\u0435\u0439 \u043b\u0438\u0447\u043d\u043e\u0441\u0442\u0438 \u0434\u043e\u0441\u0442\u0438\u0433\u043b\u0430 \u0442\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f, \u043a\u043e\u0433\u0434\u0430 \u0432\u043e\u043f\u0440\u043e\u0441\u044b \u043a \u0436\u0438\u0437\u043d\u0438 \u043f\u0440\u0435\u0432\u0440\u0430\u0442\u0438\u043b\u0438\u0441\u044c \u0432 \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u044f, \u0430 \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u044f - \u0432 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f. \u042f \u0432\u0441\u043f\u043e\u043c\u043d\u0438\u043b\u0430 \u043e \u0442\u043e\u0439 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u0434\u0438\u043b\u0435\u043c\u043c\u0435 \u0432 \u043d\u043e\u0432\u043e\u043c \u0441\u0432\u0435\u0442\u0435, \u0438 \u043d\u0430 \u0432\u043e\u043f\u0440\u043e\u0441:\"\u041f\u043e\u0447\u0435\u043c\u0443, \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0436\u0438\u0442\u044c, \u044f \u0434\u043e\u043b\u0436\u043d\u0430 \u0443\u0431\u0438\u0432\u0430\u0442\u044c?\" \u044f \u043e\u0442\u0432\u0435\u0442\u0438\u043b\u0430 \u0441\u0435\u0431\u0435 - \"\u041d\u0415 \u0414\u041e\u041b\u0416\u041d\u0410.\" \n\u0421 \u0442\u0435\u0445 \u043f\u043e\u0440 \u044f \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u0430, \u043f\u0440\u043e\u0448\u043b\u043e \u0443\u0436\u0435 \u043f\u044f\u0442\u044c \u043b\u0435\u0442. \n---\nIt\u2019s great happiness to live according to you beliefs without betraying them for the sake of the public opinion, to live in accordance with your conscience and moral purity. I\u2019d like more people to think about what they eat and do it consciously, how inhumane it is to feed on flesh of killed creatures.\nAs it is written in the Gospel of the Essenes: \"It was said to them of old time, 'Honor thy Heavenly Father and thy Earthly Mother, and do their commandments, that thy days may be long upon the earth.' And next afterward was given this commandment, 'Thou shalt not kill,' for life is given to all by God, and that which God has given, let not man take away. For-I tell you truly, from one Mother proceeds all that lives upon the earth. Therefore, he who kills, kills his brother. And from him will the Earthly Mother turn away, and will pluck from him her quickening breasts. And he will be shunned by her angels, and Satan will have his dwelling in his body. And the flesh of slain beasts in his body will become his own tomb. For I tell you truly, he who kills, kills himself, and whoso eats the flesh of slain beasts, eats of the body of death. For in his blood every drop of their blood turns to poison; in his breath their breath to stink; in his flesh their flesh to boils; in his bones their bones to chalk; in his bowels their bowels t o decay; in his eyes their eyes to scales; in his ears their ears to waxy issue. And their death will become his death\u201d\nhttp://99px.ru/sstorage/56/2013/07/image_561607131913053649088.gif\n>\u042d\u0442\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u0435 \u0441\u0447\u0430\u0441\u0442\u044c\u0435 - \u0436\u0438\u0442\u044c, \u0441\u043e\u0433\u043b\u0430\u0441\u043d\u043e \u0441\u0432\u043e\u0438\u043c \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u044f\u043c, \u043d\u0435 \u043f\u0440\u0435\u0434\u0430\u0432\u0430\u044f \u0438\u0445 \u0432 \u0443\u0433\u043e\u0434\u0443 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u043c\u0443 \u043c\u043d\u0435\u043d\u0438\u044e, \u0436\u0438\u0442\u044c - \u0432 \u0441\u043e\u0433\u043b\u0430\u0441\u0438\u0438 \u0441\u043e \u0441\u0432\u043e\u0435\u0439 \u0441\u043e\u0432\u0435\u0441\u0442\u044c\u044e \u0438 \u043d\u0440\u0430\u0432\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u0447\u0438\u0441\u0442\u043e\u0442\u043e\u0439. \u042f \u0445\u043e\u0447\u0443, \u0447\u0442\u043e\u0431\u044b \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435 \u043b\u044e\u0434\u0435\u0439 \u0437\u0430\u0434\u0443\u043c\u0430\u043b\u043e\u0441\u044c \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u043e\u043d\u0438 \u0435\u0434\u044f\u0442, \u0438 \u043e\u0441\u043e\u0437\u043d\u0430\u043b\u043e, \u043a\u0430\u043a \u043d\u0435\u0433\u0443\u043c\u0430\u043d\u043d\u043e \u043f\u0438\u0442\u0430\u0442\u044c\u0441\u044f \u043f\u043b\u043e\u0442\u044c\u044e \u0443\u0431\u0438\u0442\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432.\n\u041a\u0430\u043a \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u043e \u0432 \u0415\u0432\u0430\u043d\u0433\u0435\u043b\u0438\u0438 \u043e\u0442 \u0415\u0441\u0441\u0435\u0435\u0432: \"\u0411\u043e\u0433 \u0437\u0430\u043f\u043e\u0432\u0435\u0434\u043e\u0432\u0430\u043b \u043d\u0430\u0448\u0438\u043c \u043f\u0440\u0435\u0434\u043a\u0430\u043c: \u00ab\u041d\u0435 \u0443\u0431\u0438\u0439\u00bb. \u041d\u043e \u0441\u0435\u0440\u0434\u0446\u0430 \u0438\u0445 \u043e\u0436\u0435\u0441\u0442\u043e\u0447\u0438\u043b\u0438\u0441\u044c, \u0438 \u043e\u043d\u0438 \u0441\u0442\u0430\u043b\u0438 \u0443\u0431\u0438\u0432\u0430\u0442\u044c. \u0422\u043e\u0433\u0434\u0430 \u041c\u043e\u0438\u0441\u0435\u0439 \u0440\u0435\u0448\u0438\u043b, \u0447\u0442\u043e \u043e\u043d\u0438 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u044b \u043f\u043e \u043a\u0440\u0430\u0439\u043d\u0435\u0439 \u043c\u0435\u0440\u0435 \u0443\u0431\u0438\u0432\u0430\u0442\u044c \u043b\u044e\u0434\u0435\u0439, \u0438 \u0434\u043e\u0437\u0432\u043e\u043b\u0438\u043b \u0438\u043c \u0443\u0431\u0438\u0432\u0430\u0442\u044c \u0437\u0432\u0435\u0440\u0435\u0439. \u0418 \u0442\u043e\u0433\u0434\u0430 \u0441\u0435\u0440\u0434\u0446\u0430 \u0432\u0430\u0448\u0438\u0445 \u043f\u0440\u0435\u0434\u043a\u043e\u0432 \u043e\u0436\u0435\u0441\u0442\u043e\u0447\u0438\u043b\u0438\u0441\u044c \u0435\u0449\u0435 \u0431\u043e\u043b\u044c\u0448\u0435, \u0438 \u0441\u0442\u0430\u043b\u0438 \u043e\u043d\u0438 \u0443\u0431\u0438\u0432\u0430\u0442\u044c \u043b\u044e\u0434\u0435\u0439, \u0440\u0430\u0432\u043d\u043e \u043a\u0430\u043a \u0438 \u0437\u0432\u0435\u0440\u0435\u0439. \u041d\u043e \u044f \u0433\u043e\u0432\u043e\u0440\u044e \u0432\u0430\u043c, \u043d\u0435 \u0443\u0431\u0438\u0432\u0430\u0439\u0442\u0435 \u043d\u0438 \u043b\u044e\u0434\u0435\u0439, \u043d\u0438 \u0437\u0432\u0435\u0440\u0435\u0439, \u043d\u0438 \u0442\u043e, \u0447\u0442\u043e \u0441\u0442\u0430\u043d\u0435\u0442 \u043f\u0438\u0449\u0435\u0439 \u0432\u0430\u0448\u0435\u0439. \u0418\u0431\u043e \u0435\u0441\u043b\u0438 \u0432\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0435 \u0436\u0438\u0432\u0443\u044e \u043f\u0438\u0449\u0443, \u043e\u043d\u0430 \u043d\u0430\u043f\u043e\u043b\u043d\u044f\u0435\u0442 \u0432\u0430\u0441 \u0436\u0438\u0437\u043d\u044c\u044e, \u043d\u043e \u0435\u0441\u043b\u0438 \u0432\u044b \u0443\u0431\u0438\u0432\u0430\u0435\u0442\u0435 \u0441\u0432\u043e\u044e \u043f\u0438\u0449\u0443, \u043c\u0435\u0440\u0442\u0432\u0430\u044f \u043f\u0438\u0449\u0430 \u0443\u0431\u044c\u0435\u0442 \u0442\u0430\u043a\u0436\u0435 \u0438 \u0432\u0430\u0441. \u0418\u0431\u043e \u0436\u0438\u0437\u043d\u044c \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0442 \u0436\u0438\u0437\u043d\u0438, \u0430 \u043e\u0442 \u0441\u043c\u0435\u0440\u0442\u0438 \u0432\u0441\u0435\u0433\u0434\u0430 \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0441\u043c\u0435\u0440\u0442\u044c. \u0418\u0431\u043e \u0432\u0441\u0435, \u0447\u0442\u043e \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0432\u0430\u0448\u0443 \u043f\u0438\u0449\u0443, \u0442\u0430\u043a\u0436\u0435 \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0438 \u0432\u0430\u0448\u0438 \u0442\u0435\u043b\u0430. \u0410 \u0432\u0441\u0435, \u0447\u0442\u043e \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0432\u0430\u0448\u0438 \u0442\u0435\u043b\u0430, \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0442\u0430\u043a\u0436\u0435 \u0438 \u0432\u0430\u0448\u0438 \u0434\u0443\u0448\u0438. \u0418 \u0442\u0435\u043b\u0430 \u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442\u0441\u044f \u0442\u0435\u043c, \u0447\u0442\u043e \u0435\u0441\u0442\u044c \u043f\u0438\u0449\u0430 \u0432\u0430\u0448\u0430, \u0440\u0430\u0432\u043d\u043e \u043a\u0430\u043a \u0434\u0443\u0445 \u0432\u0430\u0448 \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0442\u0435\u043c, \u0447\u0442\u043e \u0435\u0441\u0442\u044c \u043c\u044b\u0441\u043b\u0438 \u0432\u0430\u0448\u0438.\"\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @tagira\n\n---\n\nAll STEEM Dollars for this post go to the featured author. \u0412\u0441\u0435 SD \u0437\u0430 \u043f\u043e\u0441\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442 \u0430\u0432\u0442\u043e\u0440.", - "category": "vegetarian", - "children": 18, - "created": "2016-09-15T15:10:00", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "http://petroart.ru/art/b/bronikov/img/3.jpg", - "http://www.damex.ru/images/cache/660x495/crop/images%7Ccms-image-000013620.jpg", - "https://media4.giphy.com/media/xcFZrrcaGhbz2/200w.gif", - "http://99px.ru/sstorage/56/2013/07/image_561607131913053649088.gif" - ], - "tags": [ - "vegetarian", - "live", - "ru", - "food" - ], - "users": [ - "tagira" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 57949290153677, - "payout": 196.691, - "payout_at": "2016-09-22T15:10:00", - "pending_payout_value": "196.691 HBD", - "percent_hbd": 10000, - "permlink": "vegetarianism-is-philosophy-which-has-deep-religious-and-ethical-roots-my-way-vegetarianstvo-moi-put-featuring-tagira-as-author", - "post_id": 1254959, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 161 - }, - "title": "Vegetarianism is philosophy which has deep religious and ethical roots, my way / \u0412\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0441\u0442\u0432\u043e-\u043c\u043e\u0439 \u043f\u0443\u0442\u044c (featuring @tagira as author)", - "updated": "2016-09-15T15:10:00", - "url": "/vegetarian/@terrycraft/vegetarianism-is-philosophy-which-has-deep-religious-and-ethical-roots-my-way-vegetarianstvo-moi-put-featuring-tagira-as-author" - }, - { - "active_votes": [ + "voter": "pat.flynn", + "rshares": "1155158838" + }, + { + "voter": "weames", + "rshares": "62297184" + }, + { + "voter": "loli", + "rshares": "50027573" + }, + { + "voter": "miacats", + "rshares": "89194632643" + }, + { + "voter": "mattmarshall", + "rshares": "1199604993" + }, + { + "voter": "timothysykes", + "rshares": "429199025" + }, + { + "voter": "nano2nd", + "rshares": "52419023" + }, + { + "voter": "patflynn", + "rshares": "104765652" + }, + { + "voter": "jarvis", + "rshares": "54909929" + }, + { + "voter": "microluck", + "rshares": "531944476" + }, + { + "voter": "andrewsullivan", + "rshares": "879418656" + }, + { + "voter": "razberrijam", + "rshares": "77220767" + }, { - "rshares": "16755161199383", - "voter": "itsascam" + "voter": "theb0red1", + "rshares": "9618530893" }, { - "rshares": "480526212736", - "voter": "barrie" + "voter": "fortuner", + "rshares": "53106127" }, { - "rshares": "5104374858", - "voter": "style" + "voter": "chinadaily", + "rshares": "1952786674" }, { - "rshares": "30984805998710", - "voter": "smooth" + "voter": "cryptoblu", + "rshares": "59021275" }, { - "rshares": "1970871102026", - "voter": "steemroller" + "voter": "instructor", + "rshares": "59014859" }, { - "rshares": "73338425139", - "voter": "donaldtrump" + "voter": "dollarvigilante", + "rshares": "739426684571" }, { - "rshares": "17831785324019", - "voter": "steemed" + "voter": "lamech-m", + "rshares": "3897735456" }, { - "rshares": "3813633612078", - "voter": "riverhead" + "voter": "harvey.levin", + "rshares": "479539090" }, { - "rshares": "2104090803296", - "voter": "badassmother" + "voter": "gvargas123", + "rshares": "9825243280" }, { - "rshares": "2051409124045", - "voter": "hr1" + "voter": "telos", + "rshares": "13004524355" }, { - "rshares": "5116652122587", - "voter": "kushed" + "voter": "johnbyrd", + "rshares": "51877132" }, { - "rshares": "22856566186", - "voter": "jaewoocho" + "voter": "thomasaustin", + "rshares": "51860909" }, { - "rshares": "155402774795", - "voter": "ozmaster" + "voter": "thermor", + "rshares": "51859074" }, { - "rshares": "6968855225504", - "voter": "complexring" + "voter": "ficholl", + "rshares": "51870077" }, { - "rshares": "1647437585658", - "voter": "joseph" + "voter": "widell", + "rshares": "51852278" }, { - "rshares": "92485160845", - "voter": "aizensou" + "voter": "revelbrooks", + "rshares": "51481279" }, { - "rshares": "465717138828", - "voter": "recursive2" + "voter": "laonie10", + "rshares": "23453540976" }, { - "rshares": "619876169843", - "voter": "masteryoda" + "voter": "wuyueling", + "rshares": "604185913" }, { - "rshares": "3119278427030", - "voter": "recursive" + "voter": "sweetsssj", + "rshares": "73277014476" }, { - "rshares": "1172425532", - "voter": "mineralwasser" + "voter": "netaterra", + "rshares": "2803446535" }, { - "rshares": "665687862852", - "voter": "boombastic" + "voter": "rand.fishkin", + "rshares": "190920669" }, { - "rshares": "88484695103", - "voter": "mrs.agsexplorer" + "voter": "barrycooper", + "rshares": "90834949499" }, { - "rshares": "6756410360", - "voter": "bingo-0" + "voter": "joelbow", + "rshares": "79979619" }, { - "rshares": "1620176259", - "voter": "bingo-1" + "voter": "hilarski", + "rshares": "28908541792" }, { - "rshares": "5800874395470", - "voter": "smooth.witness" + "voter": "shadowspub", + "rshares": "2496488206" }, { - "rshares": "9885238701", - "voter": "idol" + "voter": "curpose", + "rshares": "51562255" }, { - "rshares": "48218286324", - "voter": "stoner19" + "voter": "rickmiller", + "rshares": "55859919" }, { - "rshares": "4837882894", - "voter": "sakr" + "voter": "lenar", + "rshares": "1208491149" }, { - "rshares": "1701784178", - "voter": "jocelyn" + "voter": "cryptoeasy", + "rshares": "2129438571" }, { - "rshares": "14064642668", - "voter": "gregory-f" + "voter": "nulliusinverba", + "rshares": "5032072150" }, { - "rshares": "58907877644", - "voter": "lovelace" + "voter": "stephenkendal", + "rshares": "68558903" }, { - "rshares": "1234583624335", - "voter": "gavvet" + "voter": "jlufer", + "rshares": "112576381" }, { - "rshares": "74895398010", - "voter": "eeks" + "voter": "uziriel", + "rshares": "90066514" }, { - "rshares": "488526217", - "voter": "paco-steem" + "voter": "funkywanderer", + "rshares": "1931935967" }, { - "rshares": "912597254389", - "voter": "cryptogee" + "voter": "richardcrill", + "rshares": "4592861696" }, { - "rshares": "5883869384", - "voter": "spaninv" + "voter": "laonie11", + "rshares": "22607437120" }, { - "rshares": "336432003943", - "voter": "teamsteem" + "voter": "jeremyfromwi", + "rshares": "2249900457" }, { - "rshares": "8667859424", - "voter": "richman" + "voter": "arnoldz61", + "rshares": "63258691" }, { - "rshares": "462352309", - "voter": "murch" + "voter": "troich", + "rshares": "51712804" }, { - "rshares": "566150979416", - "voter": "nanzo-scoop" + "voter": "davidjkelley", + "rshares": "1588617838" }, { - "rshares": "86323748302", - "voter": "william-noe" + "voter": "team101", + "rshares": "187911420" }, { - "rshares": "170004330283", - "voter": "steve-walschot" + "voter": "crion", + "rshares": "51718188" }, { - "rshares": "173798380609", - "voter": "mummyimperfect" + "voter": "greatness", + "rshares": "178419224" }, { - "rshares": "268835102", - "voter": "coar" + "voter": "hitherise", + "rshares": "51388276" }, { - "rshares": "100993055295", - "voter": "asch" + "voter": "wiss", + "rshares": "51379706" }, { - "rshares": "1060848113", - "voter": "murh" + "voter": "ghasemkiani", + "rshares": "13264756693" }, { - "rshares": "240697359051", - "voter": "sascha" + "voter": "sponge-bob", + "rshares": "20853966542" }, { - "rshares": "6228218902", - "voter": "cryptofunk" + "voter": "l0k1", + "rshares": "4434912337" }, { - "rshares": "2272666902", - "voter": "error" + "voter": "digital-wisdom", + "rshares": "14886230314" }, { - "rshares": "5736901624", - "voter": "marta-zaidel" + "voter": "ethical-ai", + "rshares": "3628536972" }, { - "rshares": "1040976670262", - "voter": "cyber" + "voter": "stroully", + "rshares": "52143228" }, { - "rshares": "10900823677", - "voter": "aizen01" + "voter": "jiganomics", + "rshares": "1433005760" }, { - "rshares": "6499631007", - "voter": "aizen02" + "voter": "jwaser", + "rshares": "6531322926" }, { - "rshares": "3552366776", - "voter": "aizen03" + "voter": "doitvoluntarily", + "rshares": "11919570943" }, { - "rshares": "1167908093", - "voter": "aizen04" + "voter": "thadm", + "rshares": "51814474" }, { - "rshares": "494011890", - "voter": "aizen05" + "voter": "prof", + "rshares": "51812703" }, { - "rshares": "4792657323", - "voter": "aizen07" + "voter": "zettar", + "rshares": "1018513187" }, { - "rshares": "2866473700", - "voter": "aizen08" + "voter": "kyusho", + "rshares": "94160774" }, { - "rshares": "1018773570", - "voter": "aizen09" + "voter": "steemorama", + "rshares": "414323782" }, { - "rshares": "440815198", - "voter": "aizen10" + "voter": "lighter", + "rshares": "52252552" }, { - "rshares": "7251599286", - "voter": "aizen06" + "voter": "yorsens", + "rshares": "51465774" }, { - "rshares": "3046354062", - "voter": "aizen11" + "voter": "michaelmatthews", + "rshares": "3068760608" }, { - "rshares": "2093827993", - "voter": "aizen14" + "voter": "benjamin.still", + "rshares": "273904972" }, { - "rshares": "2462056275", - "voter": "aizen19" + "voter": "harveylevin", + "rshares": "174173092" }, { - "rshares": "59929272057", - "voter": "theshell" + "voter": "bane", + "rshares": "51154263" }, { - "rshares": "648949628", - "voter": "aizen15" + "voter": "vive", + "rshares": "51148009" }, { - "rshares": "6424903281", - "voter": "aizen16" + "voter": "coad", + "rshares": "51142585" }, { - "rshares": "49535217690", - "voter": "ak2020" + "voter": "bwaser", + "rshares": "2558000160" }, { - "rshares": "645116104", - "voter": "aizen20" + "voter": "sofa", + "rshares": "51922012" }, { - "rshares": "4217447041", - "voter": "aizen22" + "voter": "gary.vaynerchuk", + "rshares": "120475423" }, { - "rshares": "1120999727", - "voter": "aizen23" + "voter": "dexter-k", + "rshares": "5773395051" }, { - "rshares": "2204896687", - "voter": "aizen17" + "voter": "panther", + "rshares": "344116052" }, { - "rshares": "3470451837", - "voter": "aizen24" + "voter": "alina1", + "rshares": "2201645172" }, { - "rshares": "490553110", - "voter": "aizen18" + "voter": "ct-gurus", + "rshares": "659570211" }, { - "rshares": "1314196776", - "voter": "aizen25" + "voter": "charlieshrem", + "rshares": "395021428301" }, { - "rshares": "2232430390", - "voter": "aizen28" + "voter": "tracemayer", + "rshares": "61805245119" }, { - "rshares": "3435321135", - "voter": "aizen26" + "voter": "brains", + "rshares": "20817843519" }, { - "rshares": "1127666084", - "voter": "aizen27" + "voter": "waldemar-kuhn", + "rshares": "50450987" }, { - "rshares": "3875699811", - "voter": "aizen32" + "voter": "ailo", + "rshares": "51994517" }, { - "rshares": "2120371796", - "voter": "aizen30" + "voter": "chick1", + "rshares": "5470867324" }, { - "rshares": "3922155046", - "voter": "aizen31" + "voter": "whatsup", + "rshares": "2275182541" }, { - "rshares": "1291018425", - "voter": "aizen33" + "voter": "xpice", + "rshares": "51114196" }, { - "rshares": "1553081360", - "voter": "aizen34" + "voter": "steemsquad", + "rshares": "2084741030" }, { - "rshares": "311774459", - "voter": "aizen35" + "voter": "anomaly", + "rshares": "255505026" }, { - "rshares": "5849477524", - "voter": "aizen36" + "voter": "ellepdub", + "rshares": "2293549771" }, { - "rshares": "1459346389", - "voter": "aizen37" + "voter": "timothy.sykes", + "rshares": "50407156" }, { - "rshares": "24406094847", - "voter": "paul-labossiere" + "voter": "inarix03", + "rshares": "59178617" }, { - "rshares": "408290923", - "voter": "aizen29" + "voter": "ola1", + "rshares": "218488504" }, { - "rshares": "2872536420", - "voter": "aizen21" + "voter": "herpetologyguy", + "rshares": "11523640324" }, { - "rshares": "4407557058", - "voter": "aizen12" + "voter": "dulcio", + "rshares": "52614987" }, { - "rshares": "1876630383", - "voter": "aizen38" + "voter": "eavy", + "rshares": "51470533" }, { - "rshares": "8279076968", - "voter": "badger311" + "voter": "roto", + "rshares": "51484593" }, { - "rshares": "8567966025", - "voter": "badger313" + "voter": "drac59", + "rshares": "54452104" }, { - "rshares": "8532183936", - "voter": "badger312" + "voter": "everittdmickey", + "rshares": "57119426" }, { - "rshares": "8825464112", - "voter": "badger316" + "voter": "jang", + "rshares": "1041710878" }, { - "rshares": "8945023495", - "voter": "badger319" + "voter": "morgan.waser", + "rshares": "4605288518" }, { - "rshares": "8854468413", - "voter": "badger3101" + "voter": "cfisher", + "rshares": "50602980" }, { - "rshares": "8318010896", - "voter": "badger3111" + "voter": "thefinanceguy", + "rshares": "285981023" }, { - "rshares": "8869290111", - "voter": "badger3121" + "voter": "billkappa442", + "rshares": "50235850" }, { - "rshares": "8485309981", - "voter": "badger3131" + "voter": "anns", + "rshares": "1206752302" }, { - "rshares": "8591220795", - "voter": "badger3141" + "voter": "haved", + "rshares": "50938725" }, { - "rshares": "8568091961", - "voter": "badger3171" + "voter": "ardly", + "rshares": "50708837" }, { - "rshares": "8379270543", - "voter": "badger3181" + "voter": "yotoh", + "rshares": "50704078" }, { - "rshares": "8954261088", - "voter": "badger3191" + "voter": "penthouse", + "rshares": "50565798" }, { - "rshares": "8379110631", - "voter": "badger3112" + "voter": "bapparabi", + "rshares": "1871969417" }, { - "rshares": "8713695890", - "voter": "badger3132" + "voter": "opticalillusions", + "rshares": "50487909" }, { - "rshares": "8589307590", - "voter": "badger3162" + "voter": "morse", + "rshares": "50433760" }, { - "rshares": "8815925781", - "voter": "badger3113" + "voter": "carre", + "rshares": "50372583" }, { - "rshares": "8473341065", - "voter": "badger3123" + "voter": "aschwin", + "rshares": "50351738" }, { - "rshares": "8594708779", - "voter": "badger3133" + "voter": "strong-ai", + "rshares": "3527739772" }, { - "rshares": "8939568357", - "voter": "badger3153" + "voter": "igtes", + "rshares": "71207873" }, { - "rshares": "8624205716", - "voter": "badger3163" + "voter": "dikanevroman", + "rshares": "851674848" }, { - "rshares": "8654162062", - "voter": "badger3193" + "voter": "buffett", + "rshares": "144899746" }, { - "rshares": "8604723591", - "voter": "badger3114" + "voter": "ctu", + "rshares": "159723319" }, { - "rshares": "8515355992", - "voter": "badger3124" + "voter": "rusteemitblog", + "rshares": "1319373906" }, { - "rshares": "8420058241", - "voter": "badger3144" + "voter": "zapply", + "rshares": "161974443" }, { - "rshares": "8343364036", - "voter": "badger3154" + "voter": "kjsxj", + "rshares": "505647276" }, { - "rshares": "8213191128", - "voter": "badger3164" + "voter": "ranger", + "rshares": "158642800" }, { - "rshares": "8538833460", - "voter": "badger3174" + "voter": "shadowcash", + "rshares": "161700361" }, { - "rshares": "8813869956", - "voter": "badger3194" + "voter": "witchcraftblog", + "rshares": "435351417" }, { - "rshares": "8712162375", - "voter": "badger3105" + "voter": "origin", + "rshares": "158051137" }, { - "rshares": "8656736569", - "voter": "badger3135" + "voter": "james1987", + "rshares": "310120169" }, { - "rshares": "8258522611", - "voter": "badger3145" + "voter": "caseyneistat", + "rshares": "160845765" }, { - "rshares": "8831167662", - "voter": "badger3155" + "voter": "pawel-krawczyk", + "rshares": "161323470" }, { - "rshares": "8529824072", - "voter": "badger3175" + "voter": "mgibson", + "rshares": "201362779" }, { - "rshares": "8310212001", - "voter": "badger3195" + "voter": "planet", + "rshares": "160326045" }, { - "rshares": "7958888538", - "voter": "badger3106" + "voter": "food-creator", + "rshares": "152057481" }, { - "rshares": "8762392108", - "voter": "badger3116" + "voter": "blender", + "rshares": "156411729" }, { - "rshares": "8809476629", - "voter": "badger3126" + "voter": "ibm1000", + "rshares": "156261069" }, { - "rshares": "8443348501", - "voter": "badger3136" + "voter": "panic", + "rshares": "156227917" }, { - "rshares": "8096485926", - "voter": "badger3146" + "voter": "reef", + "rshares": "159143891" }, { - "rshares": "8323878617", - "voter": "badger3156" + "voter": "steemthis", + "rshares": "158560941" }, { - "rshares": "8535690887", - "voter": "badger3166" + "voter": "citigroup", + "rshares": "158541985" }, { - "rshares": "8452106060", - "voter": "badger3176" + "voter": "zendesk", + "rshares": "158486055" }, { - "rshares": "8584206358", - "voter": "badger3186" + "voter": "maxb02", + "rshares": "158270049" }, { - "rshares": "8619308346", - "voter": "badger3196" + "voter": "dealzgal", + "rshares": "71720421" }, { - "rshares": "8548167966", - "voter": "badger3107" + "voter": "blend", + "rshares": "197432359" }, { - "rshares": "8305132275", - "voter": "badger315" + "voter": "storage", + "rshares": "80379451" }, { - "rshares": "8791959509", - "voter": "badger318" + "voter": "dougkarr", + "rshares": "148077602" }, { - "rshares": "8840656230", - "voter": "badger3151" + "voter": "blackmarket", + "rshares": "64613800" }, { - "rshares": "8519121589", - "voter": "badger3161" + "voter": "gifts", + "rshares": "70760501" }, { - "rshares": "8773547330", - "voter": "badger3122" + "voter": "expat", + "rshares": "91120780" }, { - "rshares": "8711547278", - "voter": "badger3142" + "voter": "steemtrail", + "rshares": "134906258" }, { - "rshares": "8930383064", - "voter": "badger3152" + "voter": "royfft", + "rshares": "147050914" }, { - "rshares": "8246562170", - "voter": "badger3172" + "voter": "countofdelphi", + "rshares": "151927362" }, { - "rshares": "8750362445", - "voter": "badger3182" + "voter": "rjordan", + "rshares": "154610548" }, { - "rshares": "8510357323", - "voter": "badger3192" + "voter": "sawgunner13", + "rshares": "144957585" }, { - "rshares": "8426540891", - "voter": "badger3143" + "voter": "mysteryshot", + "rshares": "150986382" }, { - "rshares": "8684675072", - "voter": "badger3173" + "voter": "dirlei.sdias", + "rshares": "150834868" }, { - "rshares": "8396705393", - "voter": "badger3104" + "voter": "tttnofear", + "rshares": "150260046" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 524, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/life/@calaber24p/who-should-we-find-responsible-for-the-subprime-mortgage-lending-crisis", + "blacklists": [] + }, + { + "post_id": 958600, + "author": "terrycraft", + "permlink": "vegetarianism-is-philosophy-which-has-deep-religious-and-ethical-roots-my-way-vegetarianstvo-moi-put-featuring-tagira-as-author", + "category": "vegetarian", + "title": "Vegetarianism is philosophy which has deep religious and ethical roots, my way / Вегетарианство-мой путь (featuring @tagira as author)", + "body": "Vegetarianism is philosophy which has deep religious and ethical roots, the essence is the refuse to eat meat of living beings.\nPythagorean were vegetarians. Yogis of ancient India were vegetarians. The followers of Buddhism are prescribed to be vegetarians. Early Christianity forbade killing for food.\nI became a vegetarian at the age of 15. I remember clear this comic occasion: during another lush family dinner my dad putted the shin of the roasted goose on my plate. When he was putting this piece of once living bird, I claimed it for the first time: “No, dad thanks. I don’t eat living creatures anymore. I’m a vegetarian”.\nhttp://petroart.ru/art/b/bronikov/img/3.jpg\n>Вегетарианство - это философия, имеющая очень древние религиозные и этические корни, суть которой составляет отказ от употребления в пищу мяса живых существ. \nПифагорейцы были вегетарианцами. Йоги древней Индии были вегетарианцами. Буддизм предписывает своим последователям вегетарианство. Раннее христианство запрещало убийство для чрева.\nЯ стала вегетарианкой в возрасте 15 лет. Прекрасно помню этот комичный случай: во время очередного пышного семейного ужина папа вызвался положить мне в тарелку голень запечённого в духовке гуся. В то время как он уже взваливал в мою тарелку кусок некогда живой птицы, я впервые заявила во всеуслышание:\"Нет, папа, не нужно. Я больше не ем живых существ. Я вегетарианка.\"\n----\nI was a teenager at that time, my parents didn’t treat it seriously, considering it as a teenage whim, didn’t understand me, and for sure, didn’t support me. Though they didn’t object it, thinking that it would pass in a few months. But it wasn’t a whim; it was my first serious and conscious decision in my life. They stopped ostracizing me only in a year after, during that year I experienced, at the example of a family as a social group, what it’s like to have your personal opinion when the majority is against you!\nWhat did cause my decision to become a vegetarian?\nI can’t remember the particular event, which marked the switch of my mind to conscious nutrition without harm to living beings. It seemed that I did it easily because I’d been moving to it and at the certain moment I was morally ready to do the step. For example I remember when I was just a kid, at the age of 5 or 6, I was playing in our garden, thinking: “Why should I kill to keep on living?” I didn’t ask anybody about it, because I felt that I wouldn’t get the proper answer from adults. This question gave me no rest; I often tried to solve this dilemma reasoning from how my childish heart perceived the world, which opposed all violence and evil. Understanding that this faceless, usually tasty grilled chicken used to be a living being, which had been born, had been a little chick, it was eating and enjoying life and then it was beheaded killed to make me think that I like eating fried chicken legs; it led me to the ideological confusion. I loved every animal, considered them as friends; on the one hand I saw people keeping pets and treating them as family members. On the other hand people killed an animal to have something tasty on their dinner table. And so did I, I was sitting and eating that grilled chicken.\n\nhttp://www.damex.ru/images/cache/660x495/crop/images%7Ccms-image-000013620.jpg\n\n>Тогда я была подростком, и мои родители не отнеслись ко мне серьёзно, посчитав это подростковой причудой, не поняли меня и, естественно, не поддержали. Но не стали активно возражать, думая, что через пару-тройку месяцев это пройдёт. Но это не было причудой, это было первым серьёзным и осознанным решением в моей жизни. Только спустя год они перестали подвергать меня семейному остракизму, во время которого я хорошо прочувствовала на примере социальной группы \"семья\", что такое иметь собственное мнение, когда большинство против тебя!\nЧем было вызвано моё решение стать вегетарианкой?\nЯ не могу вспомнить конкретного события, которое бы ознаменовало резкий сдвиг моего сознания и переход на осознанное питание без вреда для живых существ. Мне даже кажется, что это прошло так легко и естественно именно потому, что я уже давно шла к этому и в какой-то момент просто морально созрела для такого шага. Например, помню, как ещё будучи совсем ребёнком, лет этак в пять-шесть, я играла в нашем огороде и думала:\"А почему, для того, чтобы жить, я должна убивать?\" Я никого не спрашивала об этом, потому что совершенно ясно чувствовала, что никто из взрослых не в состоянии ответить мне правильно. Этот вопрос не давал мне покоя, я часто пыталась решить эту дилемму, исходя из восприятия мира сердцем ребёнка, которое противится всякому насилию и злу по самой своей природе. Понимание, что эта безликая, привычно вкусная \"курица-гриль\" была живым существом, которое когда-то было рождено, росло маленьким цыплёнком, кушало и по-своему радовалось жизни, а теперь обезглавлено, убито, для того, чтобы я думала, как я люблю кушать жареные ножки этой курочки, приводило меня в идеологическое замешательство. Я очень любила всех животных, считала их своими друзьями, видела, как люди заводят некоторых в качестве домашних любимцев как членов семьи. И тут же с другой стороны люди убивают животное, чтобы было что вкусное покушать на столе. И вот я тоже сижу и ем эту курицу-гриль. \n-----\nBut seeing that adults didn’t care about it, I as any other child didn’t oppose myself to parents and others; I just assimilate all the manners and customs, equaling to those who seemed to be older and wiser.\nI was growing up and parents’ influence and influence of other unquestioned authorities subsided, I got my personal space in my mind and there was my personal opinion on the questions in it. At the age of 15, the formation of my personality reached the level where issues of life turned into beliefs and beliefs – into actions. I remembered that childish dilemma in a new perspective, and to the question: “Why should I kill to keep on living?” I answered: “NO, I SHOULD NOT”\nSince then I’m a vegetarian, it’s been 5 years already.\nhttps://media4.giphy.com/media/xcFZrrcaGhbz2/200w.gif\n>Но видя, что взрослых это не заботит, я, как любой ребёнок, не противопоставляла себя родителям и всем другим, просто впитывала все нравы и обычаи, равняясь на тех, кого считала старше и мудрее.\nЯ росла, и постепенно влияние родителей и прочих непререкаемых авторитетов спадало, у меня появлялось личное пространство в разуме и в нём зарождалось собственное мнение на жизненные вопросы. И в возрасте 15 лет степень формирования моей личности достигла того уровня, когда вопросы к жизни превратились в убеждения, а убеждения - в действия. Я вспомнила о той детской дилемме в новом свете, и на вопрос:\"Почему, для того, чтобы жить, я должна убивать?\" я ответила себе - \"НЕ ДОЛЖНА.\" \nС тех пор я вегетарианка, прошло уже пять лет. \n---\nIt’s great happiness to live according to you beliefs without betraying them for the sake of the public opinion, to live in accordance with your conscience and moral purity. I’d like more people to think about what they eat and do it consciously, how inhumane it is to feed on flesh of killed creatures.\nAs it is written in the Gospel of the Essenes: \"It was said to them of old time, 'Honor thy Heavenly Father and thy Earthly Mother, and do their commandments, that thy days may be long upon the earth.' And next afterward was given this commandment, 'Thou shalt not kill,' for life is given to all by God, and that which God has given, let not man take away. For-I tell you truly, from one Mother proceeds all that lives upon the earth. Therefore, he who kills, kills his brother. And from him will the Earthly Mother turn away, and will pluck from him her quickening breasts. And he will be shunned by her angels, and Satan will have his dwelling in his body. And the flesh of slain beasts in his body will become his own tomb. For I tell you truly, he who kills, kills himself, and whoso eats the flesh of slain beasts, eats of the body of death. For in his blood every drop of their blood turns to poison; in his breath their breath to stink; in his flesh their flesh to boils; in his bones their bones to chalk; in his bowels their bowels t o decay; in his eyes their eyes to scales; in his ears their ears to waxy issue. And their death will become his death”\nhttp://99px.ru/sstorage/56/2013/07/image_561607131913053649088.gif\n>Это большое счастье - жить, согласно своим убеждениям, не предавая их в угоду общественному мнению, жить - в согласии со своей совестью и нравственной чистотой. Я хочу, чтобы как можно больше людей задумалось о том, что они едят, и осознало, как негуманно питаться плотью убитых существ.\nКак записано в Евангелии от Ессеев: \"Бог заповедовал нашим предкам: «Не убий». Но сердца их ожесточились, и они стали убивать. Тогда Моисей решил, что они не должны по крайней мере убивать людей, и дозволил им убивать зверей. И тогда сердца ваших предков ожесточились еще больше, и стали они убивать людей, равно как и зверей. Но я говорю вам, не убивайте ни людей, ни зверей, ни то, что станет пищей вашей. Ибо если вы принимаете живую пищу, она наполняет вас жизнью, но если вы убиваете свою пищу, мертвая пища убьет также и вас. Ибо жизнь происходит только от жизни, а от смерти всегда происходит смерть. Ибо все, что убивает вашу пищу, также убивает и ваши тела. А все, что убивает ваши тела, убивает также и ваши души. И тела становятся тем, что есть пища ваша, равно как дух ваш становится тем, что есть мысли ваши.\"\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @tagira\n\n---\n\nAll STEEM Dollars for this post go to the featured author. Все SD за пост получит автор.", + "json_metadata": { + "tags": [ + "vegetarian", + "live", + "ru", + "food" + ], + "users": [ + "tagira" + ], + "image": [ + "http://petroart.ru/art/b/bronikov/img/3.jpg", + "http://www.damex.ru/images/cache/660x495/crop/images%7Ccms-image-000013620.jpg", + "https://media4.giphy.com/media/xcFZrrcaGhbz2/200w.gif", + "http://99px.ru/sstorage/56/2013/07/image_561607131913053649088.gif" + ] + }, + "created": "2016-09-15T15:10:00", + "updated": "2016-09-15T15:10:00", + "depth": 0, + "children": 18, + "net_rshares": 57949290153677, + "is_paidout": false, + "payout_at": "2016-09-16T15:36:20", + "payout": 197.701, + "pending_payout_value": "197.701 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "barrie", + "rshares": "504195513450" }, { - "rshares": "8114154413", - "voter": "badger3134" + "voter": "smooth", + "rshares": "31620913718202" }, { - "rshares": "8513476422", - "voter": "badger3184" + "voter": "badassmother", + "rshares": "1911892676725" }, { - "rshares": "8451732184", - "voter": "badger3115" + "voter": "hr1", + "rshares": "2052957762572" }, { - "rshares": "8916017583", - "voter": "badger3165" + "voter": "rossco99", + "rshares": "1304415071462" }, { - "rshares": "8548877339", - "voter": "badger3185" + "voter": "jaewoocho", + "rshares": "22865183550" }, { - "rshares": "8609674677", - "voter": "badger314" + "voter": "steem-id", + "rshares": "226246467529" }, { - "rshares": "8839842393", - "voter": "badger317" + "voter": "joseph", + "rshares": "1576158798591" }, { - "rshares": "8583105596", - "voter": "badger3102" + "voter": "recursive3", + "rshares": "452786214573" }, { - "rshares": "8545290354", - "voter": "badger3103" + "voter": "masteryoda", + "rshares": "667448946492" }, { - "rshares": "8473652115", - "voter": "badger3125" + "voter": "recursive", + "rshares": "3120322518686" }, { - "rshares": "8440424803", - "voter": "badger3183" + "voter": "mineralwasser", + "rshares": "1246183601" }, { - "rshares": "523210618", - "voter": "aizen39" + "voter": "boombastic", + "rshares": "681020986865" }, { - "rshares": "3692729259818", - "voter": "satoshifund" + "voter": "mrs.agsexplorer", + "rshares": "91328598326" }, { - "rshares": "409139044923", - "voter": "taoteh1221" + "voter": "bingo-1", + "rshares": "1670010256" }, { - "rshares": "418804855", - "voter": "applecrisp" + "voter": "smooth.witness", + "rshares": "5939141625779" }, { - "rshares": "381169481", - "voter": "stiletto" + "voter": "idol", + "rshares": "9167324238" }, { - "rshares": "55572589211", - "voter": "juanmiguelsalas" + "voter": "sakr", + "rshares": "5147451513" }, { - "rshares": "210458611837", - "voter": "will-zewe" + "voter": "jocelyn", + "rshares": "1577927842" }, { - "rshares": "380297285001", - "voter": "kaylinart" + "voter": "acidsun", + "rshares": "83529892028" }, { - "rshares": "563706981359", - "voter": "infovore" + "voter": "gregory-f", + "rshares": "15004772648" }, { - "rshares": "77665341455", - "voter": "tim-johnston" + "voter": "gregory60", + "rshares": "9412699804" }, { - "rshares": "81000705230", - "voter": "schro" + "voter": "gavvet", + "rshares": "1221939836170" }, { - "rshares": "257516084561", - "voter": "trogdor" + "voter": "eeks", + "rshares": "74914418556" }, { - "rshares": "4491802783", - "voter": "tee-em" + "voter": "fkn", + "rshares": "3023823526" }, { - "rshares": "32185101127", - "voter": "michaelx" + "voter": "elishagh1", + "rshares": "3974627163" }, { - "rshares": "804436229902", - "voter": "anwenbaumeister" + "voter": "nanzo-scoop", + "rshares": "584166740800" }, { - "rshares": "5817925334", - "voter": "mark-waser" + "voter": "jeffanthonyfds", + "rshares": "450784780" }, { - "rshares": "409576499", - "voter": "keithwillshine" + "voter": "mummyimperfect", + "rshares": "177394802953" }, { - "rshares": "111330095375", - "voter": "geoffrey" + "voter": "coar", + "rshares": "313689446" }, { - "rshares": "202874968510", - "voter": "kimziv" + "voter": "asch", + "rshares": "106630632039" }, { - "rshares": "44426159607", - "voter": "honeythief" + "voter": "murh", + "rshares": "1061217841" }, { - "rshares": "7049670897", - "voter": "mammasitta" + "voter": "cryptofunk", + "rshares": "6230682263" }, { - "rshares": "6744340925", - "voter": "tyler-fletcher" + "voter": "error", + "rshares": "2057276344" }, { - "rshares": "79414155694", - "voter": "emily-cook" + "voter": "cyber", + "rshares": "985521934082" }, { - "rshares": "93849854528", - "voter": "mctiller" + "voter": "theshell", + "rshares": "61711858916" }, { - "rshares": "2187136185", - "voter": "superfreek" + "voter": "ak2020", + "rshares": "49574865624" }, { - "rshares": "484592257", - "voter": "mrhankeh" + "voter": "satoshifund", + "rshares": "769703167086" }, { - "rshares": "4255723858", - "voter": "alexft" + "voter": "taoteh1221", + "rshares": "409231996622" }, { - "rshares": "1869026224", - "voter": "justoneartist" + "voter": "applecrisp", + "rshares": "410502622" }, { - "rshares": "280886491", - "voter": "ladyclair" + "voter": "ratel", + "rshares": "33781859925" }, { - "rshares": "3715415813", - "voter": "michaellamden68" + "voter": "geoffrey", + "rshares": "121380113922" }, { - "rshares": "161249433461", - "voter": "dashpaymag" + "voter": "kimziv", + "rshares": "26709210609" }, { - "rshares": "174527707979", - "voter": "asmolokalo" + "voter": "emily-cook", + "rshares": "74282084191" }, { - "rshares": "57106930713", - "voter": "ezzy" + "voter": "superfreek", + "rshares": "2187587354" }, { - "rshares": "71639420708", - "voter": "rubybian" + "voter": "thebatchman", + "rshares": "19974734600" }, { - "rshares": "3214941985", - "voter": "orly" + "voter": "good-karma", + "rshares": "60285274969" }, { - "rshares": "5163778635", - "voter": "riscadox" + "voter": "gidlark", + "rshares": "1609452901" }, { - "rshares": "18842523479", - "voter": "hakise" + "voter": "rubybian", + "rshares": "73849034695" }, { - "rshares": "15354149755", - "voter": "yogi.artist" + "voter": "konstantin", + "rshares": "365381071" }, { - "rshares": "14213156438", - "voter": "r4fken" + "voter": "stranger27", + "rshares": "4533066552" }, { - "rshares": "389458625", - "voter": "aizen13" + "voter": "romel", + "rshares": "2597453094" }, { - "rshares": "3344942110", - "voter": "aizen41" + "voter": "furion", + "rshares": "14760800618" }, { - "rshares": "950534210", - "voter": "aizen42" + "voter": "barbara2", + "rshares": "70822893" }, { - "rshares": "3238263445", - "voter": "aizen46" + "voter": "ch0c0latechip", + "rshares": "78718732" }, { - "rshares": "886294877", - "voter": "aizen47" + "voter": "doge4lyf", + "rshares": "72854943" }, { - "rshares": "217253386", - "voter": "aizen48" + "voter": "ardina", + "rshares": "248653120" }, { - "rshares": "113259366", - "voter": "aizen49" + "voter": "aaseb", + "rshares": "14487949878" }, { - "rshares": "754082458", - "voter": "busser" + "voter": "karen13", + "rshares": "4209499465" }, { - "rshares": "941015787", - "voter": "aizen51" + "voter": "deviedev", + "rshares": "10646413479" }, { - "rshares": "1210073491361", - "voter": "renohq" + "voter": "nabilov", + "rshares": "258981906731" }, { - "rshares": "455780965", - "voter": "aizen43" + "voter": "creemej", + "rshares": "35782810726" }, { - "rshares": "67659539", - "voter": "aizen44" + "voter": "maximkichev", + "rshares": "3800725646" }, { - "rshares": "763284602", - "voter": "aizen54" + "voter": "blueorgy", + "rshares": "167301783484" }, { - "rshares": "16859493667", - "voter": "ausbitbank" + "voter": "poseidon", + "rshares": "582626783" }, { - "rshares": "4728705839", - "voter": "gikitiki" + "voter": "iamwne", + "rshares": "2083366228" }, { - "rshares": "11698403373", - "voter": "asim" + "voter": "smolalit", + "rshares": "7946556816" }, { - "rshares": "99758482", - "voter": "snowden" + "voter": "calaber24p", + "rshares": "347973296817" }, { - "rshares": "1107690687", - "voter": "karen13" + "voter": "simon.braki.love", + "rshares": "3506024506" }, { - "rshares": "54321503601", - "voter": "shark" + "voter": "liberosist", + "rshares": "268131351853" }, { - "rshares": "20363338717", - "voter": "meiisheree" + "voter": "deanliu", + "rshares": "32542201152" }, { - "rshares": "258937743119", - "voter": "nabilov" + "voter": "celsius100", + "rshares": "40247477787" }, { - "rshares": "8572920051", - "voter": "noodhoog" + "voter": "jl777", + "rshares": "204615752038" }, { - "rshares": "4205385163", - "voter": "dcryptogold" + "voter": "positive", + "rshares": "2452241013" }, { - "rshares": "2668109030", - "voter": "dmacshady" + "voter": "paquito", + "rshares": "35821871446" }, { - "rshares": "233569693", - "voter": "aizen52" + "voter": "crazymumzysa", + "rshares": "101547003699" }, { - "rshares": "8368498979", - "voter": "herverisson" + "voter": "gustavopasquini", + "rshares": "4827846086" }, { - "rshares": "45693099664", - "voter": "milestone" + "voter": "carlidos", + "rshares": "18844269406" }, { - "rshares": "33727004465", - "voter": "creemej" + "voter": "proto", + "rshares": "17267164725" }, { - "rshares": "89580632", - "voter": "wildchild" + "voter": "sisterholics", + "rshares": "4513770870" }, { - "rshares": "2579031743", - "voter": "the-future" + "voter": "alex.chien", + "rshares": "1444237397" }, { - "rshares": "15372067535", - "voter": "nippel66" + "voter": "royalmacro", + "rshares": "8964609699" }, { - "rshares": "190269483", - "voter": "aizen55" + "voter": "fnait", + "rshares": "82565168" }, { - "rshares": "163260776578", - "voter": "blueorgy" + "voter": "keepcalmand", + "rshares": "73351025" }, { - "rshares": "159387011508", - "voter": "opheliafu" + "voter": "ap2002", + "rshares": "120956823" }, { - "rshares": "4426428855", - "voter": "poseidon" + "voter": "taker", + "rshares": "8734053750" }, { - "rshares": "2033762271", - "voter": "iamwne" + "voter": "laonie", + "rshares": "159615103593" }, { - "rshares": "79563973688", - "voter": "thylbom" + "voter": "twinner", + "rshares": "157504637007" }, { - "rshares": "7311858289", - "voter": "geronimo" + "voter": "laoyao", + "rshares": "24561329465" }, { - "rshares": "4308378335", - "voter": "bitcoiner" + "voter": "myfirst", + "rshares": "5329392113" }, { - "rshares": "116496190", - "voter": "bzeen" + "voter": "somebody", + "rshares": "32400440159" }, { - "rshares": "3756297830", - "voter": "tarindel" + "voter": "sunshine", + "rshares": "16605279252" }, { - "rshares": "31921025901", - "voter": "deanliu" + "voter": "flysaga", + "rshares": "1211439463" }, { - "rshares": "141429957", - "voter": "bento" + "voter": "gmurph", + "rshares": "2084689825" }, { - "rshares": "13069930577", - "voter": "shredlord" + "voter": "midnightoil", + "rshares": "7157539840" }, { - "rshares": "13916292595", - "voter": "hagie" + "voter": "kalimor", + "rshares": "2327843962" }, { - "rshares": "53841341992", - "voter": "jl777" + "voter": "xiaohui", + "rshares": "17901440239" }, { - "rshares": "1736201261", - "voter": "yarly" + "voter": "terrycraft", + "rshares": "172970676828" }, { - "rshares": "261735372", - "voter": "yarly2" + "voter": "riosparada", + "rshares": "369703928" }, { - "rshares": "262126965", - "voter": "yarly3" + "voter": "elfkitchen", + "rshares": "808461612" }, { - "rshares": "151424453", - "voter": "yarly4" + "voter": "joele", + "rshares": "103387869456" }, { - "rshares": "152279375", - "voter": "yarly5" + "voter": "oflyhigh", + "rshares": "5855390607" }, { - "rshares": "86799635", - "voter": "yarly7" + "voter": "xiaokongcom", + "rshares": "559689131" }, { - "rshares": "100832394226", - "voter": "crazymumzysa" + "voter": "future24", + "rshares": "2114128942" }, { - "rshares": "50619397", - "voter": "whalepool" + "voter": "xianjun", + "rshares": "1128227680" }, { - "rshares": "20238670061", - "voter": "prufarchy" + "voter": "lgm-1", + "rshares": "7546646500" }, { - "rshares": "35610433440", - "voter": "anca3drandom" + "voter": "njall", + "rshares": "2249482011" }, { - "rshares": "206059171", - "voter": "sergey44" + "voter": "microluck", + "rshares": "73887203" }, { - "rshares": "6542152680", - "voter": "summonerrk" + "voter": "razberrijam", + "rshares": "75676352" }, { - "rshares": "2012582806", - "voter": "hdd" + "voter": "userlogin", + "rshares": "6417571438" }, { - "rshares": "21120708735", - "voter": "krabgat" + "voter": "photo00", + "rshares": "59219258" }, { - "rshares": "4543641049", - "voter": "proto" + "voter": "tagira", + "rshares": "604294820" }, { - "rshares": "634074071", - "voter": "curator" + "voter": "chinadaily", + "rshares": "2077233526" }, { - "rshares": "33383309924", - "voter": "sisterholics" + "voter": "pollina", + "rshares": "110661420" }, { - "rshares": "420072669", - "voter": "yarly10" + "voter": "johnnyyash", + "rshares": "9071955992" }, { - "rshares": "1404574750", - "voter": "alex.chien" + "voter": "macartem", + "rshares": "3352601337" }, { - "rshares": "224823596", - "voter": "yarly11" + "voter": "gvargas123", + "rshares": "9827647000" }, { - "rshares": "78603899", - "voter": "yarly12" + "voter": "movievertigo", + "rshares": "3707793427" }, { - "rshares": "11092117841", - "voter": "phoenixmaid" + "voter": "andrewawerdna", + "rshares": "23716271959" }, { - "rshares": "330141710", - "voter": "esqil" + "voter": "craigwilliamz", + "rshares": "9139485521" }, { - "rshares": "83707323", - "voter": "aizen53" + "voter": "mandibil", + "rshares": "56654664918" }, { - "rshares": "149624601", - "voter": "steemster1" + "voter": "bonapetit", + "rshares": "60273361" }, { - "rshares": "238512214", - "voter": "bullionstackers" + "voter": "steembriefing", + "rshares": "74550672" }, { - "rshares": "6810743439", - "voter": "comealong" + "voter": "riv", + "rshares": "55750195" }, { - "rshares": "2002743924", - "voter": "andreynoch" + "voter": "nulliusinverba", + "rshares": "5401359628" }, { - "rshares": "947490604", - "voter": "metaflute" + "voter": "runridefly", + "rshares": "2196809758" }, { - "rshares": "721310626", - "voter": "karenb54" + "voter": "krnel", + "rshares": "33516506660" }, { - "rshares": "449108428", - "voter": "bento04" + "voter": "richardcrill", + "rshares": "5053551216" }, { - "rshares": "753126143", - "voter": "bento03" + "voter": "sponge-bob", + "rshares": "11070141971" }, { - "rshares": "1534361646", - "voter": "aizen" + "voter": "apparat", + "rshares": "53070013" }, { - "rshares": "2298243810", - "voter": "taker" + "voter": "doitvoluntarily", + "rshares": "12276570645" }, { - "rshares": "239545179", - "voter": "bento02" + "voter": "asksisk", + "rshares": "201688406600" }, { - "rshares": "551525219", - "voter": "bento01" + "voter": "panther", + "rshares": "330365849" }, { - "rshares": "1007190932", - "voter": "pakisnxt" + "voter": "brains", + "rshares": "11067573914" }, { - "rshares": "14668022793", - "voter": "nekromarinist" + "voter": "steemafon", + "rshares": "1396726660" }, { - "rshares": "1618760149", - "voter": "coinbar" + "voter": "anton333", + "rshares": "3310976095" }, { - "rshares": "59219358", - "voter": "sharon" + "voter": "anomaly", + "rshares": "339274981" }, { - "rshares": "2635374169", - "voter": "merej99" + "voter": "ola1", + "rshares": "123155378" }, { - "rshares": "61714352", - "voter": "lillianjones" + "voter": "mari5555na", + "rshares": "70282046" }, { - "rshares": "1148224715117", - "voter": "laonie" + "voter": "ekaterina4ka", + "rshares": "6087022243" }, { - "rshares": "146176741718", - "voter": "twinner" + "voter": "thefinanceguy", + "rshares": "291933324" }, { - "rshares": "243451061692", - "voter": "ozchartart" + "voter": "battalar", + "rshares": "50223099" }, { - "rshares": "5002368214", - "voter": "croatia" + "voter": "palladium", + "rshares": "50873654" }, { - "rshares": "65300521", - "voter": "vladimirputin" + "voter": "autodesk", + "rshares": "50794039" }, { - "rshares": "23878310347", - "voter": "rawnetics" + "voter": "penthouse", + "rshares": "50565798" }, { - "rshares": "65308725", - "voter": "angelamerkel" + "voter": "bapparabi", + "rshares": "2216805889" }, { - "rshares": "17989038861", - "voter": "thebluepanda" + "voter": "friends", + "rshares": "50532230" }, { - "rshares": "81826244", - "voter": "bento06" + "voter": "iontom", + "rshares": "469221474" }, { - "rshares": "24551995771", - "voter": "laoyao" + "voter": "connection", + "rshares": "50482289" }, { - "rshares": "38527150465", - "voter": "myfirst" + "voter": "witchcraftblog", + "rshares": "444435987" }, { - "rshares": "239628375853", - "voter": "somebody" + "voter": "gravity", + "rshares": "157816798" }, { - "rshares": "15892496776", - "voter": "sunshine" + "voter": "realtime", + "rshares": "160957729" }, { - "rshares": "9202242828", - "voter": "flysaga" + "voter": "skrillex", + "rshares": "160835930" }, { - "rshares": "5634572644", - "voter": "brendio" + "voter": "food-creator", + "rshares": "148889617" }, { - "rshares": "2082686663", - "voter": "gmurph" + "voter": "haribo", + "rshares": "156814579" }, { - "rshares": "68250832", - "voter": "missmishel623" + "voter": "tipsandtricks", + "rshares": "159425365" }, { - "rshares": "82177171859", - "voter": "timsaid" + "voter": "fallout", + "rshares": "156054487" }, { - "rshares": "52936380443", - "voter": "midnightoil" + "voter": "reef", + "rshares": "159143891" }, { - "rshares": "81534499564", - "voter": "mibenkito" + "voter": "icesteem", + "rshares": "155528114" }, { - "rshares": "2375350982", - "voter": "kalimor" + "voter": "cream", + "rshares": "158632601" }, { - "rshares": "63541793", - "voter": "coderg" + "voter": "jyriygo", + "rshares": "155452864" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 161, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/vegetarian/@terrycraft/vegetarianism-is-philosophy-which-has-deep-religious-and-ethical-roots-my-way-vegetarianstvo-moi-put-featuring-tagira-as-author", + "blacklists": [] + }, + { + "post_id": 950898, + "author": "fairytalelife", + "permlink": "the-prison-of-depression", + "category": "health", + "title": "The Prison of Depression", + "body": "\n

\n

Do you want to know what depression feels like? 

\n

Think of a foggy grey muck that encircles you head to toe. Severe depression strips you from being able to experience any joy in life, even when for all the world it appears you have everything going for you.   Watered down commentaries attempt to describe the soul rotting misery of waking up in darkness every day. Who are those who can bolt out of bed ready to face the day with their happy attitudes about life? I don’t know. I’ve never been one. I dread waking up. One of the things really depressed people look forward to is a respite from consciousness. This is why those who suffer tend to sleep so much. It’s escapism. Yet it isn’t, because even in sleep you can be terrorized by your daytime demons. The quality of sleep is not restful – in fact, rather fitful. This is one reason so many people take mind-numbing tranquilizers to dull their wakeful state just to be able to drift away to somewhere, anywhere else than the dangerous and unchecked arena of the mind.    

\n

People experience the tiers of depression's challenges in different ways. It’s not being disappointed or being in a bad mood if something doesn’t pan out in your favor. You chipped you manicure? Bugger. Irritating, yes, but it’s not the end of the world. For a depressed person,  something minor (for whatever reason) can hurl you head first into a bottomless void of regret and agony. You associate daily life with walking through a minefield. Danger lurks with every step. That ad for an antidepressant that shows a cartoon figure walking around under her own cloud of rain sums up the feeling quite well (of course it does – sponsored by The Pharmaceutical Cartel). You NEED this drug to function. That’s another post, and I know far too well how drugs are touted as the magic solution. Not even children are safe from their campaigns.

\n

\n

It’s the ultimate mind-fuck factory, this thought prison that leads you through Dante’s circles of hell as you try to scramble your way out of the snake pit. The thoughts pull you back in by your ankles. Like a horror movie, the entity of depression knows what scares you. It knows what makes you wail in despair. It knows your saddest thoughts and flashes those across the movie screen in your head in incessant reruns. You are a spectator, but unable to avert your eyes.   

\n

You have things to do? Most can buck up and get 'er done. A very depressed person knows what must be done yet can’t do it. Cannot. It’s not possible. It has nothing to do with laziness and everything to do with apathy. The effort isn’t worth it. You know you will feel better if such and such gets done. So the obvious solution is to do it. You have errands to run? Get in the car and go. But for a depressed person, the mundane becomes detestable to such an extent that not even the guilt for not doing the things is unable to motivate you enough to accomplish what is impossible in your mind.   

\n

\n

Once while touring Alcatraz, I was struck by something the tour guide told us. The island is positioned in just the right way that all the prisoners could smell the Ghirardelli chocolate factory wafting its chocolate scent across the bay, no doubt driving inmates insane. This is much like depression. You are stuck in a jail cell knowing everyone else is living happily while you miss out on what you know (on some level) is a gift – life itself. You can only observe from afar.    

\n

You know those days when you feel like a sloth and nothing gets done? For many depressed people that’s every day. By getting nothing done I don’t mean cleaning out the refrigerator or reading a book your friend needs back. I mean responsibilities you must accept as an adult, as a parent. You can’t function. Your kids are hungry, but you can’t do anything about it because you can’t move. You have an empty stare and wonder if it’s too early for a drink. It’s only one in the afternoon. Can it be justified?    

\n

And you can’t stop seeing those stories about the Yulin dog meat festival. This is horrible because an animal suffering is the worst thing in the world to me. Or those commercials by the SPCA. The thoughts hit hard, bating me. “Uh oh! She’s making some progress – what is she sad about? Let’s infect.” Self-sabotage is the name of the game. For a depressed person, thoughts take over and pollute your whole mind.   

\n

You hope you will feel better tomorrow, or someday. You keep saying someday. But that wastes away today. You hide from friends and family because the idea of faking a smile is akin to torture. And you think no one cares about your problems. Or they are tired of hearing about them because they are always the same.   Your brain is wired differently. Some of the most creative genius comes from a desolate mental state. It can, but only If you can get any mental energy together to be productive.   

\n

Your friends email you cures for migraines. You have had to invent numerous excuses that involve having them, because that’s a reasonable excuse to cancel plans. Saying you’re sad or not in the mood will get “I’ll cheer you up” from well-meaning friends and family. But you want to be alone, completely isolated, in bed, with the covers pulled up over your head. And you want to cry. And I don’t mean a few tears. I mean heart-wrenching sobs that no one would want to hear.   

\n

You yell at people you love. You cry easily. They can’t help you but they can sure piss you off. And we are pissed at ourselves, because children have needs that must be met -no question about it. And you know are letting them down with your suffering. Another blow.   We do not feel sorry for ourselves in the traditional sense. We do feel sorry that we can’t get a grip as we are often told to do. We feel guilty for letting others down who matter as they stand by helpless, completely befuddled about their roles in all of this. They feel responsible You want to convey it’s not them or their fault, but they start to not believe you. It’s no one’s fault. It simply is.   

\n

Some days are easier than others. I often do well when the stars align - deceptively so, or maybe not deceptive. Maybe I am getting a handle on this curse. It’s a constant roller coaster of wondering when the happy cart will upturn and everything you manage to put in there (composure, self-esteem, productivity) scatters across the road. And cars are coming, but you have to try to summon up the ability to put them back in and continue on your journey. It’s like you are that one slow car on a hill that everyone zips past because they don’t carry the burden of your load.   

\n

Is life a beautiful thing? Yes. It is. Is it filled with sadness? Yes to that too. Can a depressed person overcome depression? I think so. But in order to answer that, you must be willing to look at your origins to discover what might be holding you back.         

\n

\n

Drawings and painting © Johanna Westerman 2016  

\n


\n", + "json_metadata": { + "tags": [ + "health", + "art", + "illustration", + "life" + ], + "image": [ + "https://www.steemimg.com/images/2016/09/14/HeadlessHoreseman-medium2d3b42.png", + "https://www.steemimg.com/images/2016/09/14/Brain1b12cc.jpg", + "https://www.steemimg.com/images/2016/09/14/Blanche134386.jpg", + "https://www.steemimg.com/images/2016/09/14/HeadlessHoreseman96dd9.jpg" + ] + }, + "created": "2016-09-14T17:46:30", + "updated": "2016-09-14T19:14:27", + "depth": 0, + "children": 44, + "net_rshares": 120989205660828, + "is_paidout": false, + "payout_at": "2016-09-15T20:29:32", + "payout": 832.809, + "pending_payout_value": "832.809 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "itsascam", + "rshares": "16755161199383" }, { - "rshares": "1018538139", - "voter": "altucher" + "voter": "barrie", + "rshares": "480526212736" }, { - "rshares": "4186662893", - "voter": "ullikume" + "voter": "style", + "rshares": "5104374858" }, { - "rshares": "101572397", - "voter": "timferriss" + "voter": "smooth", + "rshares": "30984805998710" }, { - "rshares": "53093897", - "voter": "michellek" + "voter": "steemroller", + "rshares": "1970871102026" }, { - "rshares": "4650618263", - "voter": "kurtbeil" + "voter": "donaldtrump", + "rshares": "73338425139" }, { - "rshares": "2798919170", - "voter": "steemleak" + "voter": "steemed", + "rshares": "17831785324019" }, { - "rshares": "109814173501", - "voter": "thisisbenbrick" + "voter": "riverhead", + "rshares": "3813633612078" }, { - "rshares": "104692799", - "voter": "darrenrowse" + "voter": "badassmother", + "rshares": "2104090803296" }, { - "rshares": "128793789941", - "voter": "xiaohui" + "voter": "hr1", + "rshares": "2051409124045" }, { - "rshares": "83638970", - "voter": "xerneas" + "voter": "kushed", + "rshares": "5116652122587" }, { - "rshares": "106149968", - "voter": "bigsambucca" + "voter": "jaewoocho", + "rshares": "22856566186" }, { - "rshares": "6403494729", - "voter": "elfkitchen" + "voter": "ozmaster", + "rshares": "155402774795" }, { - "rshares": "5935556188", - "voter": "oflyhigh" + "voter": "complexring", + "rshares": "6968855225504" }, { - "rshares": "2226707993", - "voter": "paynode" + "voter": "joseph", + "rshares": "1647437585658" }, { - "rshares": "62525016", - "voter": "nickche" + "voter": "aizensou", + "rshares": "92485160845" }, { - "rshares": "4251472057", - "voter": "xiaokongcom" + "voter": "recursive2", + "rshares": "465717138828" }, { - "rshares": "62201879", - "voter": "msjennifer" + "voter": "masteryoda", + "rshares": "619876169843" }, { - "rshares": "57196572", - "voter": "ciao" + "voter": "recursive", + "rshares": "3119278427030" }, { - "rshares": "47958674202", - "voter": "eneismijmich" + "voter": "mineralwasser", + "rshares": "1172425532" }, { - "rshares": "2951808169", - "voter": "jrcornel" + "voter": "boombastic", + "rshares": "665687862852" }, { - "rshares": "55449983", - "voter": "steemo" + "voter": "mrs.agsexplorer", + "rshares": "88484695103" }, { - "rshares": "179351183", - "voter": "pcashmore" + "voter": "bingo-0", + "rshares": "6756410360" }, { - "rshares": "8570039552", - "voter": "xianjun" + "voter": "bingo-1", + "rshares": "1620176259" }, { - "rshares": "55306941", - "voter": "steema" + "voter": "smooth.witness", + "rshares": "5800874395470" }, { - "rshares": "59618782", - "voter": "andrew.sullivan" + "voter": "idol", + "rshares": "9885238701" }, { - "rshares": "1046049321", - "voter": "brianclark" + "voter": "stoner19", + "rshares": "48218286324" }, { - "rshares": "831589271", - "voter": "daniel.kahneman" + "voter": "sakr", + "rshares": "4837882894" }, { - "rshares": "232896636", - "voter": "tucker.max" + "voter": "jocelyn", + "rshares": "1701784178" }, { - "rshares": "740826654", - "voter": "darren.rowse" + "voter": "gregory-f", + "rshares": "14064642668" }, { - "rshares": "55704135", - "voter": "chris.dunn" + "voter": "lovelace", + "rshares": "58907877644" }, { - "rshares": "71282219", - "voter": "confucius" + "voter": "gavvet", + "rshares": "1234583624335" }, { - "rshares": "11539993041", - "voter": "borran" + "voter": "eeks", + "rshares": "74895398010" }, { - "rshares": "3851639124", - "voter": "bledarus" + "voter": "paco-steem", + "rshares": "488526217" }, { - "rshares": "1178246621", - "voter": "pat.flynn" + "voter": "cryptogee", + "rshares": "912597254389" }, { - "rshares": "52467942", - "voter": "loli" + "voter": "spaninv", + "rshares": "5883869384" }, { - "rshares": "91473229819", - "voter": "miacats" + "voter": "teamsteem", + "rshares": "336432003943" }, { - "rshares": "1223581698", - "voter": "mattmarshall" + "voter": "richman", + "rshares": "8667859424" }, { - "rshares": "437783005", - "voter": "timothysykes" + "voter": "murch", + "rshares": "462352309" }, { - "rshares": "106860965", - "voter": "patflynn" + "voter": "nanzo-scoop", + "rshares": "566150979416" }, { - "rshares": "56157882", - "voter": "jarvis" + "voter": "william-noe", + "rshares": "86323748302" }, { - "rshares": "561462512", - "voter": "microluck" + "voter": "steve-walschot", + "rshares": "170004330283" }, { - "rshares": "896991635", - "voter": "andrewsullivan" + "voter": "mummyimperfect", + "rshares": "173798380609" }, { - "rshares": "77220767", - "voter": "razberrijam" + "voter": "coar", + "rshares": "268835102" }, { - "rshares": "54313084", - "voter": "fortuner" + "voter": "asch", + "rshares": "100993055295" }, { - "rshares": "2005426994", - "voter": "chinadaily" + "voter": "murh", + "rshares": "1060848113" }, { - "rshares": "9358481880", - "voter": "kyriacos" + "voter": "sascha", + "rshares": "240697359051" }, { - "rshares": "2859735634", - "voter": "virtualgrowth" + "voter": "cryptofunk", + "rshares": "6228218902" }, { - "rshares": "122302767", - "voter": "thegoldencookie" + "voter": "error", + "rshares": "2272666902" }, { - "rshares": "20137065264", - "voter": "runaway-psyche" + "voter": "marta-zaidel", + "rshares": "5736901624" }, { - "rshares": "755831094058", - "voter": "dollarvigilante" + "voter": "cyber", + "rshares": "1040976670262" }, { - "rshares": "61087248", - "voter": "workout" + "voter": "aizen01", + "rshares": "10900823677" }, { - "rshares": "489129872", - "voter": "harvey.levin" + "voter": "aizen02", + "rshares": "6499631007" }, { - "rshares": "23586282706", - "voter": "mihaiart" + "voter": "aizen03", + "rshares": "3552366776" }, { - "rshares": "10341757518", - "voter": "gvargas123" + "voter": "aizen04", + "rshares": "1167908093" }, { - "rshares": "53056158", - "voter": "johnbyrd" + "voter": "aizen05", + "rshares": "494011890" }, { - "rshares": "53039566", - "voter": "thomasaustin" + "voter": "aizen07", + "rshares": "4792657323" }, { - "rshares": "53037689", - "voter": "thermor" + "voter": "aizen08", + "rshares": "2866473700" }, { - "rshares": "53048942", - "voter": "ficholl" + "voter": "aizen09", + "rshares": "1018773570" }, { - "rshares": "53030738", - "voter": "widell" + "voter": "aizen10", + "rshares": "440815198" }, { - "rshares": "86340173624", - "voter": "icfiedler" + "voter": "aizen06", + "rshares": "7251599286" }, { - "rshares": "1266977190", - "voter": "laconicflow" + "voter": "aizen11", + "rshares": "3046354062" }, { - "rshares": "52651308", - "voter": "revelbrooks" + "voter": "aizen14", + "rshares": "2093827993" }, { - "rshares": "377542979", - "voter": "mrlogic" + "voter": "aizen19", + "rshares": "2462056275" }, { - "rshares": "194739083", - "voter": "rand.fishkin" + "voter": "theshell", + "rshares": "59929272057" }, { - "rshares": "50816343", - "voter": "bitchplease" + "voter": "aizen15", + "rshares": "648949628" }, { - "rshares": "78411391", - "voter": "joelbow" + "voter": "aizen16", + "rshares": "6424903281" }, { - "rshares": "8673217231", - "voter": "onetree" + "voter": "ak2020", + "rshares": "49535217690" }, { - "rshares": "3071905413", - "voter": "imag1ne" + "voter": "aizen20", + "rshares": "645116104" }, { - "rshares": "64111934444", - "voter": "mandibil" + "voter": "aizen22", + "rshares": "4217447041" }, { - "rshares": "51562255", - "voter": "curpose" + "voter": "aizen23", + "rshares": "1120999727" }, { - "rshares": "1208491149", - "voter": "lenar" + "voter": "aizen17", + "rshares": "2204896687" }, { - "rshares": "9818184488", - "voter": "lesliestarrohara" + "voter": "aizen24", + "rshares": "3470451837" }, { - "rshares": "112927371731", - "voter": "shenanigator" + "voter": "aizen18", + "rshares": "490553110" }, { - "rshares": "14779778251", - "voter": "macksby" + "voter": "aizen25", + "rshares": "1314196776" }, { - "rshares": "85972582", - "voter": "uziriel" + "voter": "aizen28", + "rshares": "2232430390" }, { - "rshares": "2080022045", - "voter": "funkywanderer" + "voter": "aizen26", + "rshares": "3435321135" }, { - "rshares": "1485475073", - "voter": "linzo" + "voter": "aizen27", + "rshares": "1127666084" }, { - "rshares": "4899042813", - "voter": "richardcrill" + "voter": "aizen32", + "rshares": "3875699811" }, { - "rshares": "2205784762", - "voter": "jeremyfromwi" + "voter": "aizen30", + "rshares": "2120371796" }, { - "rshares": "1688038542", - "voter": "eight-rad" + "voter": "aizen31", + "rshares": "3922155046" }, { - "rshares": "51712804", - "voter": "troich" + "voter": "aizen33", + "rshares": "1291018425" }, { - "rshares": "1624641270", - "voter": "davidjkelley" + "voter": "aizen34", + "rshares": "1553081360" }, { - "rshares": "187911420", - "voter": "team101" + "voter": "aizen35", + "rshares": "311774459" }, { - "rshares": "51718188", - "voter": "crion" + "voter": "aizen36", + "rshares": "5849477524" }, { - "rshares": "52505412", - "voter": "hitherise" + "voter": "aizen37", + "rshares": "1459346389" }, { - "rshares": "52496656", - "voter": "wiss" + "voter": "paul-labossiere", + "rshares": "24406094847" }, { - "rshares": "13264756693", - "voter": "ghasemkiani" + "voter": "aizen29", + "rshares": "408290923" }, { - "rshares": "906163750", - "voter": "sponge-bob" + "voter": "aizen21", + "rshares": "2872536420" }, { - "rshares": "4545785145", - "voter": "l0k1" + "voter": "aizen12", + "rshares": "4407557058" }, { - "rshares": "15223303760", - "voter": "digital-wisdom" + "voter": "aizen38", + "rshares": "1876630383" }, { - "rshares": "3708921137", - "voter": "ethical-ai" + "voter": "badger311", + "rshares": "8279076968" }, { - "rshares": "50784892", - "voter": "freesteem" + "voter": "badger313", + "rshares": "8567966025" }, { - "rshares": "54391689", - "voter": "jamespro" + "voter": "badger312", + "rshares": "8532183936" }, { - "rshares": "53252658", - "voter": "stroully" + "voter": "badger316", + "rshares": "8825464112" }, { - "rshares": "3079499780", - "voter": "maryfromsochi" + "voter": "badger319", + "rshares": "8945023495" }, { - "rshares": "6679259372", - "voter": "jwaser" + "voter": "badger3101", + "rshares": "8854468413" }, { - "rshares": "51814474", - "voter": "thadm" + "voter": "badger3111", + "rshares": "8318010896" }, { - "rshares": "51812703", - "voter": "prof" + "voter": "badger3121", + "rshares": "8869290111" }, { - "rshares": "1330526017", - "voter": "crypt0mine" + "voter": "badger3131", + "rshares": "8485309981" }, { - "rshares": "646493719", - "voter": "kev7000" + "voter": "badger3141", + "rshares": "8591220795" }, { - "rshares": "1042750516", - "voter": "zettar" + "voter": "badger3171", + "rshares": "8568091961" }, { - "rshares": "51465774", - "voter": "yorsens" + "voter": "badger3181", + "rshares": "8379270543" }, { - "rshares": "177656553", - "voter": "harveylevin" + "voter": "badger3191", + "rshares": "8954261088" }, { - "rshares": "1129213184", - "voter": "chaeya" + "voter": "badger3112", + "rshares": "8379110631" }, { - "rshares": "51154263", - "voter": "bane" + "voter": "badger3132", + "rshares": "8713695890" }, { - "rshares": "51148009", - "voter": "vive" + "voter": "badger3162", + "rshares": "8589307590" }, { - "rshares": "51142585", - "voter": "coad" + "voter": "badger3113", + "rshares": "8815925781" }, { - "rshares": "50931848", - "voter": "analyzethis" + "voter": "badger3123", + "rshares": "8473341065" }, { - "rshares": "2615973485", - "voter": "bwaser" + "voter": "badger3133", + "rshares": "8594708779" }, { - "rshares": "53003720", - "voter": "sofa" + "voter": "badger3153", + "rshares": "8939568357" }, { - "rshares": "2563669906", - "voter": "lilmisjenn" + "voter": "badger3163", + "rshares": "8624205716" }, { - "rshares": "122884931", - "voter": "gary.vaynerchuk" + "voter": "badger3193", + "rshares": "8654162062" }, { - "rshares": "344116052", - "voter": "panther" + "voter": "badger3114", + "rshares": "8604723591" }, { - "rshares": "2201645172", - "voter": "alina1" + "voter": "badger3124", + "rshares": "8515355992" }, { - "rshares": "50639382", - "voter": "doggnostic" + "voter": "badger3144", + "rshares": "8420058241" }, { - "rshares": "689550675", - "voter": "ct-gurus" + "voter": "badger3154", + "rshares": "8343364036" }, { - "rshares": "50377764", - "voter": "jenny-talls" + "voter": "badger3164", + "rshares": "8213191128" }, { - "rshares": "63519834123", - "voter": "tracemayer" + "voter": "badger3174", + "rshares": "8538833460" }, { - "rshares": "905064441", - "voter": "brains" + "voter": "badger3194", + "rshares": "8813869956" }, { - "rshares": "51994517", - "voter": "ailo" + "voter": "badger3105", + "rshares": "8712162375" }, { - "rshares": "1339423728", - "voter": "steemafon" + "voter": "badger3135", + "rshares": "8656736569" }, { - "rshares": "5610795642", - "voter": "chick1" + "voter": "badger3145", + "rshares": "8258522611" }, { - "rshares": "50516543", - "voter": "typingagent" + "voter": "badger3155", + "rshares": "8831167662" }, { - "rshares": "519729361", - "voter": "nelyp" + "voter": "badger3175", + "rshares": "8529824072" }, { - "rshares": "328506462", - "voter": "anomaly" + "voter": "badger3195", + "rshares": "8310212001" }, { - "rshares": "2400090637", - "voter": "ellepdub" + "voter": "badger3106", + "rshares": "7958888538" }, { - "rshares": "113405722", - "voter": "rynow" + "voter": "badger3116", + "rshares": "8762392108" }, { - "rshares": "89841354699", - "voter": "honeyscribe" + "voter": "badger3126", + "rshares": "8809476629" }, { - "rshares": "51415300", - "voter": "timothy.sykes" + "voter": "badger3136", + "rshares": "8443348501" }, { - "rshares": "61292139", - "voter": "inarix03" + "voter": "badger3146", + "rshares": "8096485926" }, { - "rshares": "218488504", - "voter": "ola1" + "voter": "badger3156", + "rshares": "8323878617" }, { - "rshares": "832905434", - "voter": "jbaker585" + "voter": "badger3166", + "rshares": "8535690887" }, { - "rshares": "11803842421", - "voter": "herpetologyguy" + "voter": "badger3176", + "rshares": "8452106060" }, { - "rshares": "28099831450", - "voter": "storyseeker" + "voter": "badger3186", + "rshares": "8584206358" }, { - "rshares": "51470533", - "voter": "eavy" + "voter": "badger3196", + "rshares": "8619308346" }, { - "rshares": "51484593", - "voter": "roto" + "voter": "badger3107", + "rshares": "8548167966" }, { - "rshares": "51659688", - "voter": "drac59" + "voter": "badger315", + "rshares": "8305132275" }, { - "rshares": "54632106", - "voter": "everittdmickey" + "voter": "badger318", + "rshares": "8791959509" }, { - "rshares": "780018003", - "voter": "zombiedoll" + "voter": "badger3151", + "rshares": "8840656230" }, { - "rshares": "4709614494", - "voter": "morgan.waser" + "voter": "badger3161", + "rshares": "8519121589" }, { - "rshares": "50602980", - "voter": "cfisher" + "voter": "badger3122", + "rshares": "8773547330" }, { - "rshares": "50794039", - "voter": "autodesk" + "voter": "badger3142", + "rshares": "8711547278" }, { - "rshares": "50708837", - "voter": "ardly" + "voter": "badger3152", + "rshares": "8930383064" }, { - "rshares": "50536471", - "voter": "twistys" + "voter": "badger3172", + "rshares": "8246562170" }, { - "rshares": "1822707064", - "voter": "bapparabi" + "voter": "badger3182", + "rshares": "8750362445" }, { - "rshares": "50532230", - "voter": "friends" + "voter": "badger3192", + "rshares": "8510357323" }, { - "rshares": "50487909", - "voter": "opticalillusions" + "voter": "badger3143", + "rshares": "8426540891" }, { - "rshares": "3607671121", - "voter": "strong-ai" + "voter": "badger3173", + "rshares": "8684675072" }, { - "rshares": "516306089", - "voter": "grisha-danunaher" + "voter": "badger3104", + "rshares": "8396705393" }, { - "rshares": "72826233", - "voter": "igtes" + "voter": "badger3134", + "rshares": "8114154413" }, { - "rshares": "705838377", - "voter": "dikanevroman" + "voter": "badger3184", + "rshares": "8513476422" }, { - "rshares": "144899746", - "voter": "buffett" + "voter": "badger3115", + "rshares": "8451732184" }, { - "rshares": "162925257", - "voter": "uct" + "voter": "badger3165", + "rshares": "8916017583" }, { - "rshares": "162904624", - "voter": "allianz" + "voter": "badger3185", + "rshares": "8548877339" }, { - "rshares": "408141953", - "voter": "witchcraftblog" + "voter": "badger314", + "rshares": "8609674677" }, { - "rshares": "161205518", - "voter": "acute" + "voter": "badger317", + "rshares": "8839842393" }, { - "rshares": "157931180", - "voter": "pyro" + "voter": "badger3102", + "rshares": "8583105596" }, { - "rshares": "157801695", - "voter": "realtime" + "voter": "badger3103", + "rshares": "8545290354" }, { - "rshares": "304039381", - "voter": "james1987" + "voter": "badger3125", + "rshares": "8473652115" }, { - "rshares": "160870736", - "voter": "electronicarts" + "voter": "badger3183", + "rshares": "8440424803" }, { - "rshares": "1606766770", - "voter": "dresden" + "voter": "aizen39", + "rshares": "523210618" }, { - "rshares": "201362779", - "voter": "mgibson" + "voter": "satoshifund", + "rshares": "3692729259818" }, { - "rshares": "152057481", - "voter": "food-creator" + "voter": "taoteh1221", + "rshares": "409139044923" }, { - "rshares": "159531007", - "voter": "benetton" + "voter": "applecrisp", + "rshares": "418804855" }, { - "rshares": "154417232", - "voter": "jasonxg" + "voter": "stiletto", + "rshares": "381169481" }, { - "rshares": "159387371", - "voter": "bosch" + "voter": "juanmiguelsalas", + "rshares": "55572589211" }, { - "rshares": "4918101052", - "voter": "sherlockcupid" + "voter": "will-zewe", + "rshares": "210458611837" }, { - "rshares": "158632601", - "voter": "cream" + "voter": "kaylinart", + "rshares": "380297285001" }, { - "rshares": "158326081", - "voter": "thomasp" + "voter": "infovore", + "rshares": "563706981359" }, { - "rshares": "74838700", - "voter": "dealzgal" + "voter": "tim-johnston", + "rshares": "77665341455" }, { - "rshares": "154959539", - "voter": "mrshanson" + "voter": "schro", + "rshares": "81000705230" }, { - "rshares": "83470968", - "voter": "storage" + "voter": "trogdor", + "rshares": "257516084561" }, { - "rshares": "329629477", - "voter": "aldentan" + "voter": "tee-em", + "rshares": "4491802783" }, { - "rshares": "67690648", - "voter": "blackmarket" + "voter": "michaelx", + "rshares": "32185101127" }, { - "rshares": "73837045", - "voter": "gifts" + "voter": "anwenbaumeister", + "rshares": "804436229902" }, { - "rshares": "112446078", - "voter": "paulocouto" + "voter": "mark-waser", + "rshares": "5817925334" }, { - "rshares": "151927362", - "voter": "countofdelphi" + "voter": "keithwillshine", + "rshares": "409576499" }, { - "rshares": "151062983", - "voter": "newsfeed" + "voter": "geoffrey", + "rshares": "111330095375" }, { - "rshares": "154022998", - "voter": "sambkf" + "voter": "kimziv", + "rshares": "202874968510" }, { - "rshares": "144957585", - "voter": "sawgunner13" + "voter": "honeythief", + "rshares": "44426159607" }, { - "rshares": "144801473", - "voter": "dirlei.sdias" + "voter": "mammasitta", + "rshares": "7049670897" }, { - "rshares": "150387842", - "voter": "trickster512" - } - ], - "author": "fairytalelife", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "\n

\n

Do you want to know what depression feels like? 

\n

Think of a foggy grey muck that encircles you head to toe. Severe depression strips you from being able to experience any joy in life, even when for all the world it appears you have everything going for you.   Watered down commentaries attempt to describe the soul rotting misery of waking up in darkness every day. Who are those who can bolt out of bed ready to face the day with their happy attitudes about life? I don\u2019t know. I\u2019ve never been one. I dread waking up. One of the things really depressed people look forward to is a respite from consciousness. This is why those who suffer tend to sleep so much. It\u2019s escapism. Yet it isn\u2019t, because even in sleep you can be terrorized by your daytime demons. The quality of sleep is not restful \u2013 in fact, rather fitful. This is one reason so many people take mind-numbing tranquilizers to dull their wakeful state just to be able to drift away to somewhere, anywhere else than the dangerous and unchecked arena of the mind.    

\n

People experience the tiers of depression's challenges in different ways. It\u2019s not being disappointed or being in a bad mood if something doesn\u2019t pan out in your favor. You chipped you manicure? Bugger. Irritating, yes, but it\u2019s not the end of the world. For a depressed person,  something minor (for whatever reason) can hurl you head first into a bottomless void of regret and agony. You associate daily life with walking through a minefield. Danger lurks with every step. That ad for an antidepressant that shows a cartoon figure walking around under her own cloud of rain sums up the feeling quite well (of course it does \u2013 sponsored by The Pharmaceutical Cartel). You NEED this drug to function. That\u2019s another post, and I know far too well how drugs are touted as the magic solution. Not even children are safe from their campaigns.

\n

\n

It\u2019s the ultimate mind-fuck factory, this thought prison that leads you through Dante\u2019s circles of hell as you try to scramble your way out of the snake pit. The thoughts pull you back in by your ankles. Like a horror movie, the entity of depression knows what scares you. It knows what makes you wail in despair. It knows your saddest thoughts and flashes those across the movie screen in your head in incessant reruns. You are a spectator, but unable to avert your eyes.   

\n

You have things to do? Most can buck up and get 'er done. A very depressed person knows what must be done yet can\u2019t do it. Cannot. It\u2019s not possible. It has nothing to do with laziness and everything to do with apathy. The effort isn\u2019t worth it. You know you will feel better if such and such gets done. So the obvious solution is to do it. You have errands to run? Get in the car and go. But for a depressed person, the mundane becomes detestable to such an extent that not even the guilt for not doing the things is unable to motivate you enough to accomplish what is impossible in your mind.   

\n

\n

Once while touring Alcatraz, I was struck by something the tour guide told us. The island is positioned in just the right way that all the prisoners could smell the Ghirardelli chocolate factory wafting its chocolate scent across the bay, no doubt driving inmates insane. This is much like depression. You are stuck in a jail cell knowing everyone else is living happily while you miss out on what you know (on some level) is a gift \u2013 life itself. You can only observe from afar.    

\n

You know those days when you feel like a sloth and nothing gets done? For many depressed people that\u2019s every day. By getting nothing done I don\u2019t mean cleaning out the refrigerator or reading a book your friend needs back. I mean responsibilities you must accept as an adult, as a parent. You can\u2019t function. Your kids are hungry, but you can\u2019t do anything about it because you can\u2019t move. You have an empty stare and wonder if it\u2019s too early for a drink. It\u2019s only one in the afternoon. Can it be justified?    

\n

And you can\u2019t stop seeing those stories about the Yulin dog meat festival. This is horrible because an animal suffering is the worst thing in the world to me. Or those commercials by the SPCA. The thoughts hit hard, bating me. \u201cUh oh! She\u2019s making some progress \u2013 what is she sad about? Let\u2019s infect.\u201d Self-sabotage is the name of the game. For a depressed person, thoughts take over and pollute your whole mind.   

\n

You hope you will feel better tomorrow, or someday. You keep saying someday. But that wastes away today. You hide from friends and family because the idea of faking a smile is akin to torture. And you think no one cares about your problems. Or they are tired of hearing about them because they are always the same.   Your brain is wired differently. Some of the most creative genius comes from a desolate mental state. It can, but only If you can get any mental energy together to be productive.   

\n

Your friends email you cures for migraines. You have had to invent numerous excuses that involve having them, because that\u2019s a reasonable excuse to cancel plans. Saying you\u2019re sad or not in the mood will get \u201cI\u2019ll cheer you up\u201d from well-meaning friends and family. But you want to be alone, completely isolated, in bed, with the covers pulled up over your head. And you want to cry. And I don\u2019t mean a few tears. I mean heart-wrenching sobs that no one would want to hear.   

\n

You yell at people you love. You cry easily. They can\u2019t help you but they can sure piss you off. And we are pissed at ourselves, because children have needs that must be met -no question about it. And you know are letting them down with your suffering. Another blow.   We do not feel sorry for ourselves in the traditional sense. We do feel sorry that we can\u2019t get a grip as we are often told to do. We feel guilty for letting others down who matter as they stand by helpless, completely befuddled about their roles in all of this. They feel responsible You want to convey it\u2019s not them or their fault, but they start to not believe you. It\u2019s no one\u2019s fault. It simply is.   

\n

Some days are easier than others. I often do well when the stars align - deceptively so, or maybe not deceptive. Maybe I am getting a handle on this curse. It\u2019s a constant roller coaster of wondering when the happy cart will upturn and everything you manage to put in there (composure, self-esteem, productivity) scatters across the road. And cars are coming, but you have to try to summon up the ability to put them back in and continue on your journey. It\u2019s like you are that one slow car on a hill that everyone zips past because they don\u2019t carry the burden of your load.   

\n

Is life a beautiful thing? Yes. It is. Is it filled with sadness? Yes to that too. Can a depressed person overcome depression? I think so. But in order to answer that, you must be willing to look at your origins to discover what might be holding you back.         

\n

\n

Drawings and painting \u00a9 Johanna Westerman 2016  

\n


\n", - "category": "health", - "children": 44, - "created": "2016-09-14T17:46:30", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://www.steemimg.com/images/2016/09/14/HeadlessHoreseman-medium2d3b42.png", - "https://www.steemimg.com/images/2016/09/14/Brain1b12cc.jpg", - "https://www.steemimg.com/images/2016/09/14/Blanche134386.jpg", - "https://www.steemimg.com/images/2016/09/14/HeadlessHoreseman96dd9.jpg" - ], - "tags": [ - "health", - "art", - "illustration", - "life" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 120989205660828, - "payout": 832.556, - "payout_at": "2016-09-21T17:46:30", - "pending_payout_value": "832.556 HBD", - "percent_hbd": 10000, - "permlink": "the-prison-of-depression", - "post_id": 1245264, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 492 - }, - "title": "The Prison of Depression", - "updated": "2016-09-14T19:14:27", - "url": "/health/@fairytalelife/the-prison-of-depression" - }, - { - "active_votes": [ - { - "rshares": "231806896049", - "voter": "anonymous" + "voter": "tyler-fletcher", + "rshares": "6744340925" }, { - "rshares": "40039727156805", - "voter": "blocktrades" + "voter": "emily-cook", + "rshares": "79414155694" }, { - "rshares": "81139043695", - "voter": "friend5" + "voter": "mctiller", + "rshares": "93849854528" }, { - "rshares": "5563642779143", - "voter": "kushed" + "voter": "superfreek", + "rshares": "2187136185" }, { - "rshares": "4361056998354", - "voter": "roadscape" + "voter": "mrhankeh", + "rshares": "484592257" }, { - "rshares": "11463456159", - "voter": "by24seven" + "voter": "alexft", + "rshares": "4255723858" }, { - "rshares": "48198557404", - "voter": "twiceuponatime" + "voter": "justoneartist", + "rshares": "1869026224" }, { - "rshares": "253716125229", - "voter": "indominon" + "voter": "ladyclair", + "rshares": "280886491" }, { - "rshares": "72048644865", - "voter": "vault" + "voter": "michaellamden68", + "rshares": "3715415813" }, { - "rshares": "22916314085", - "voter": "wpalczynski" + "voter": "dashpaymag", + "rshares": "161249433461" }, { - "rshares": "23645584002", - "voter": "nikolai" + "voter": "asmolokalo", + "rshares": "174527707979" }, { - "rshares": "143164562367", - "voter": "chris4210" + "voter": "ezzy", + "rshares": "57106930713" }, { - "rshares": "24193131603", - "voter": "acidyo" + "voter": "rubybian", + "rshares": "71639420708" }, { - "rshares": "313691550", - "voter": "coar" + "voter": "orly", + "rshares": "3214941985" }, { - "rshares": "1061234978", - "voter": "murh" + "voter": "riscadox", + "rshares": "5163778635" }, { - "rshares": "33781972641", - "voter": "ratel" + "voter": "hakise", + "rshares": "18842523479" }, { - "rshares": "208364758717", - "voter": "kimziv" + "voter": "yogi.artist", + "rshares": "15354149755" }, { - "rshares": "45145254362", - "voter": "venuspcs" + "voter": "r4fken", + "rshares": "14213156438" }, { - "rshares": "7264907621", - "voter": "getssidetracked" + "voter": "aizen13", + "rshares": "389458625" }, { - "rshares": "1414199127", - "voter": "trees" + "voter": "aizen41", + "rshares": "3344942110" }, { - "rshares": "197179742", - "voter": "strawhat" + "voter": "aizen42", + "rshares": "950534210" }, { - "rshares": "844421054", - "voter": "endgame" + "voter": "aizen46", + "rshares": "3238263445" }, { - "rshares": "118094280271", - "voter": "furion" + "voter": "aizen47", + "rshares": "886294877" }, { - "rshares": "2834923420", - "voter": "steem1653" + "voter": "aizen48", + "rshares": "217253386" }, { - "rshares": "13516878845", - "voter": "sitaru" + "voter": "aizen49", + "rshares": "113259366" }, { - "rshares": "3735950544", - "voter": "incomemonthly" + "voter": "busser", + "rshares": "754082458" }, { - "rshares": "6392090406", - "voter": "cryptosi" + "voter": "aizen51", + "rshares": "941015787" }, { - "rshares": "243749878708", - "voter": "nabilov" + "voter": "renohq", + "rshares": "1210073491361" }, { - "rshares": "677892916", - "voter": "luisucv34" + "voter": "aizen43", + "rshares": "455780965" }, { - "rshares": "34761252099", - "voter": "creemej" + "voter": "aizen44", + "rshares": "67659539" }, { - "rshares": "167304333801", - "voter": "blueorgy" + "voter": "aizen54", + "rshares": "763284602" }, { - "rshares": "4545098461", - "voter": "poseidon" + "voter": "ausbitbank", + "rshares": "16859493667" }, { - "rshares": "41053239884", - "voter": "celsius100" + "voter": "gikitiki", + "rshares": "4728705839" }, { - "rshares": "1659490970", - "voter": "tokyodude" + "voter": "asim", + "rshares": "11698403373" }, { - "rshares": "128098702", - "voter": "mysteem" + "voter": "snowden", + "rshares": "99758482" }, { - "rshares": "6168588588", - "voter": "chloetaylor" + "voter": "karen13", + "rshares": "1107690687" }, { - "rshares": "34309889652", - "voter": "sisterholics" + "voter": "shark", + "rshares": "54321503601" }, { - "rshares": "59017018", - "voter": "reported" + "voter": "meiisheree", + "rshares": "20363338717" }, { - "rshares": "55047214", - "voter": "krushing" + "voter": "nabilov", + "rshares": "258937743119" }, { - "rshares": "1213316718415", - "voter": "laonie" + "voter": "noodhoog", + "rshares": "8572920051" }, { - "rshares": "21929710586", - "voter": "rawnetics" + "voter": "dcryptogold", + "rshares": "4205385163" }, { - "rshares": "41307699258", - "voter": "myfirst" + "voter": "dmacshady", + "rshares": "2668109030" }, { - "rshares": "246282932283", - "voter": "somebody" + "voter": "aizen52", + "rshares": "233569693" }, { - "rshares": "9450611021", - "voter": "flysaga" + "voter": "herverisson", + "rshares": "8368498979" }, { - "rshares": "513541455", - "voter": "minnowsunited" + "voter": "milestone", + "rshares": "45693099664" }, { - "rshares": "54405663387", - "voter": "midnightoil" + "voter": "creemej", + "rshares": "33727004465" }, { - "rshares": "54018085", - "voter": "whatyouganjado" + "voter": "wildchild", + "rshares": "89580632" }, { - "rshares": "136080800992", - "voter": "xiaohui" + "voter": "the-future", + "rshares": "2579031743" }, { - "rshares": "6792049578", - "voter": "elfkitchen" + "voter": "nippel66", + "rshares": "15372067535" }, { - "rshares": "61187902", - "voter": "makaveli" + "voter": "aizen55", + "rshares": "190269483" }, { - "rshares": "4366196499", - "voter": "xiaokongcom" + "voter": "blueorgy", + "rshares": "163260776578" }, { - "rshares": "7475701368", - "voter": "thebotkiller" + "voter": "opheliafu", + "rshares": "159387011508" }, { - "rshares": "8801500509", - "voter": "xianjun" + "voter": "poseidon", + "rshares": "4426428855" }, { - "rshares": "11292536945", - "voter": "borran" + "voter": "iamwne", + "rshares": "2033762271" }, { - "rshares": "53669860", - "voter": "alexbones" + "voter": "thylbom", + "rshares": "79563973688" }, { - "rshares": "576331905", - "voter": "microluck" + "voter": "geronimo", + "rshares": "7311858289" }, { - "rshares": "1310823380", - "voter": "stevescoins" + "voter": "bitcoiner", + "rshares": "4308378335" }, { - "rshares": "3089652212", - "voter": "macartem" + "voter": "bzeen", + "rshares": "116496190" }, { - "rshares": "10344891579", - "voter": "gvargas123" + "voter": "tarindel", + "rshares": "3756297830" }, { - "rshares": "156958768", - "voter": "nang1" + "voter": "deanliu", + "rshares": "31921025901" }, { - "rshares": "166282713", - "voter": "kamil5" + "voter": "bento", + "rshares": "141429957" }, { - "rshares": "51156498", - "voter": "dobbydaba" + "voter": "shredlord", + "rshares": "13069930577" }, { - "rshares": "5950976762", - "voter": "trev" + "voter": "hagie", + "rshares": "13916292595" }, { - "rshares": "8773942171", - "voter": "craigwilliamz" + "voter": "jl777", + "rshares": "53841341992" }, { - "rshares": "72624506", - "voter": "ozertayiz" + "voter": "yarly", + "rshares": "1736201261" }, { - "rshares": "53639497", - "voter": "salebored" + "voter": "yarly2", + "rshares": "261735372" }, { - "rshares": "736031742", - "voter": "freeinthought" + "voter": "yarly3", + "rshares": "262126965" }, { - "rshares": "63258691", - "voter": "arnoldz61" + "voter": "yarly4", + "rshares": "151424453" }, { - "rshares": "2101747450", - "voter": "eight-rad" + "voter": "yarly5", + "rshares": "152279375" }, { - "rshares": "53681172", - "voter": "bitdrone" + "voter": "yarly7", + "rshares": "86799635" }, { - "rshares": "53672498", - "voter": "sleepcult" + "voter": "crazymumzysa", + "rshares": "100832394226" }, { - "rshares": "54175638", - "voter": "apparat" + "voter": "whalepool", + "rshares": "50619397" }, { - "rshares": "12276570645", - "voter": "doitvoluntarily" + "voter": "prufarchy", + "rshares": "20238670061" }, { - "rshares": "135393340675", - "voter": "thecyclist" + "voter": "anca3drandom", + "rshares": "35610433440" }, { - "rshares": "52015504", - "voter": "analyzethis" + "voter": "sergey44", + "rshares": "206059171" }, { - "rshares": "63904547", - "voter": "freebornangel" + "voter": "summonerrk", + "rshares": "6542152680" }, { - "rshares": "52154065", - "voter": "nommo" + "voter": "hdd", + "rshares": "2012582806" }, { - "rshares": "51261721", - "voter": "f1111111" + "voter": "krabgat", + "rshares": "21120708735" }, { - "rshares": "339287005", - "voter": "anomaly" + "voter": "proto", + "rshares": "4543641049" }, { - "rshares": "98545946", - "voter": "ola1" + "voter": "curator", + "rshares": "634074071" }, { - "rshares": "63588518", - "voter": "mari5555na" + "voter": "sisterholics", + "rshares": "33383309924" }, { - "rshares": "2996735269", - "voter": "powerup" + "voter": "yarly10", + "rshares": "420072669" }, { - "rshares": "527464783", - "voter": "grisha-danunaher" + "voter": "alex.chien", + "rshares": "1404574750" }, { - "rshares": "161974443", - "voter": "zapply" + "voter": "yarly11", + "rshares": "224823596" }, { - "rshares": "158561921", - "voter": "jyriygo" + "voter": "yarly12", + "rshares": "78603899" }, { - "rshares": "136494240", - "voter": "bleujay" + "voter": "phoenixmaid", + "rshares": "11092117841" }, { - "rshares": "153397644", - "voter": "milank" + "voter": "esqil", + "rshares": "330141710" }, { - "rshares": "150273031", - "voter": "inkwisitiveguy01" - } - ], - "author": "powerup", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "So far, a great number of applications, or tools that can considerably improve our user experience whether we are old users or new, has been created. The application directory created by @roelandp is accepted as an official directory that currently contains more than 80 various tools, mainly created by the community members, with a few official ones. The number of applications is growing rapidly, thanks to talented developers and other users, whose ideas are being converted into functional programs.\n\nHere, I want to introduce you to an infographic that contains 17 very useful tools singled out and sorted into categories according to their use. The first category 'for new and old users' contains essential applications for most users, including applications such as the official chat server and block explorer, as well as a dedicated service for uninterrupted adding of photos, @jesta's tool for easier tracking of data related to your account, and a tool for real-time Steem Backed Dollar conversion, with a few extra applications included in the service.\n\nThe next group contains the applications essential for developers, led by @xeroc's piston which says for itself 'The Swiff Army Knife for the Steem network'. They facilitate the communication with the steem blockchain and there is also an application that facilitates the integration of Steem payments to your service. \n\nThe Miscellaneous group contains a variety of useful applications such as tools for curators, a precise browser of user reputation, a dedicated tool for creating shortened links with statistics, a Steem Stream display of all activity in real time with an option of adjusting your settings, as well as speech community and radio.\n\nLast group are applications in the category of data and analytics that contain most of data about the network, the network activity and the users. \n\nI apologize in advance if some of your favorite applications have been left out; if that is the case, you can always visit http://SteemTools.com which contains all the applications.\n\n*For a clearer view, it is recommended that you open the image in full resolution.* *[Infographic Hotlink!](http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png)*\nhttps://s11.postimg.io/8uxamnavn/revision_02.png\n---\n ![http://steemit.com/@powerup](https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png)", - "category": "infographic", - "children": 6, - "created": "2016-09-15T16:45:09", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://s11.postimg.io/8uxamnavn/revision_02.png", - "https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png" - ], - "links": [ - "http://SteemTools.com", - "http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png" - ], - "tags": [ - "infographic", - "steemit", - "steem", - "steemsquad", - "minnowsunite" - ], - "users": [ - "roelandp", - "jesta", - "xeroc" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 53802622776333, - "payout": 170.17, - "payout_at": "2016-09-22T16:45:09", - "pending_payout_value": "170.170 HBD", - "percent_hbd": 10000, - "permlink": "17-steem-tools-every-steemian-needs-to-know", - "post_id": 1256009, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 88 - }, - "title": "Steem Tools Every Steemian Needs To Know (Infographic)", - "updated": "2016-09-15T18:45:09", - "url": "/infographic/@powerup/17-steem-tools-every-steemian-needs-to-know" - }, - { - "active_votes": [ - { - "rshares": "480436179104", - "voter": "barrie" + "voter": "aizen53", + "rshares": "83707323" }, { - "rshares": "7864449914272", - "voter": "steempty" + "voter": "steemster1", + "rshares": "149624601" }, { - "rshares": "231705234180", - "voter": "anonymous" + "voter": "bullionstackers", + "rshares": "238512214" }, { - "rshares": "16854862331350", - "voter": "rainman" + "voter": "comealong", + "rshares": "6810743439" }, { - "rshares": "14446969817383", - "voter": "summon" + "voter": "andreynoch", + "rshares": "2002743924" }, { - "rshares": "25305686361517", - "voter": "ned" + "voter": "metaflute", + "rshares": "947490604" }, { - "rshares": "35326666852152", - "voter": "jamesc" + "voter": "karenb54", + "rshares": "721310626" }, { - "rshares": "4264966375681", - "voter": "riverhead" + "voter": "bento04", + "rshares": "449108428" }, { - "rshares": "2331280387575", - "voter": "badassmother" + "voter": "bento03", + "rshares": "753126143" }, { - "rshares": "2097108315061", - "voter": "hr1" + "voter": "aizen", + "rshares": "1534361646" }, { - "rshares": "118474244256", - "voter": "sandra" + "voter": "taker", + "rshares": "2298243810" }, { - "rshares": "186985754668", - "voter": "svk" + "voter": "bento02", + "rshares": "239545179" }, { - "rshares": "1112765112473", - "voter": "ihashfury" + "voter": "bento01", + "rshares": "551525219" }, { - "rshares": "1120603805124", - "voter": "rossco99" + "voter": "pakisnxt", + "rshares": "1007190932" }, { - "rshares": "139902157720", - "voter": "liondani" + "voter": "nekromarinist", + "rshares": "14668022793" }, { - "rshares": "2642718616169", - "voter": "wang" + "voter": "coinbar", + "rshares": "1618760149" }, { - "rshares": "24281627442", - "voter": "jaewoocho" + "voter": "sharon", + "rshares": "59219358" }, { - "rshares": "6243689624471", - "voter": "steemit200" + "voter": "merej99", + "rshares": "2635374169" }, { - "rshares": "1868926634967", - "voter": "xeroc" + "voter": "lillianjones", + "rshares": "61714352" }, { - "rshares": "6514602351120", - "voter": "complexring" + "voter": "laonie", + "rshares": "1148224715117" }, { - "rshares": "6410652893701", - "voter": "clayop" + "voter": "twinner", + "rshares": "146176741718" }, { - "rshares": "6132075386062", - "voter": "witness.svk" + "voter": "ozchartart", + "rshares": "243451061692" }, { - "rshares": "1772458968810", - "voter": "joseph" + "voter": "croatia", + "rshares": "5002368214" }, { - "rshares": "4727274896444", - "voter": "au1nethyb1" + "voter": "vladimirputin", + "rshares": "65300521" }, { - "rshares": "494824460005", - "voter": "recursive2" + "voter": "rawnetics", + "rshares": "23878310347" }, { - "rshares": "3458312417787", - "voter": "recursive" + "voter": "angelamerkel", + "rshares": "65308725" }, { - "rshares": "686881929841", - "voter": "boombastic" + "voter": "thebluepanda", + "rshares": "17989038861" }, { - "rshares": "91206564426", - "voter": "mrs.agsexplorer" + "voter": "bento06", + "rshares": "81826244" }, { - "rshares": "6953910678", - "voter": "bingo-0" + "voter": "laoyao", + "rshares": "24551995771" }, { - "rshares": "1330823260969", - "voter": "steempower" + "voter": "myfirst", + "rshares": "38527150465" }, { - "rshares": "450758929058", - "voter": "boatymcboatface" + "voter": "somebody", + "rshares": "239628375853" }, { - "rshares": "1191961702407", - "voter": "cass" + "voter": "sunshine", + "rshares": "15892496776" }, { - "rshares": "10604743495", - "voter": "idol" + "voter": "flysaga", + "rshares": "9202242828" }, { - "rshares": "6904136925", - "voter": "nexusdev" + "voter": "brendio", + "rshares": "5634572644" }, { - "rshares": "783330802369", - "voter": "steemrollin" + "voter": "gmurph", + "rshares": "2082686663" }, { - "rshares": "5146683930", - "voter": "sakr" + "voter": "missmishel623", + "rshares": "68250832" }, { - "rshares": "296262169682", - "voter": "chitty" + "voter": "timsaid", + "rshares": "82177171859" }, { - "rshares": "117668471628", - "voter": "linouxis9" + "voter": "midnightoil", + "rshares": "52936380443" }, { - "rshares": "82315328878", - "voter": "unosuke" + "voter": "mibenkito", + "rshares": "81534499564" }, { - "rshares": "3109715701", - "voter": "yefet" + "voter": "kalimor", + "rshares": "2375350982" }, { - "rshares": "16257411149", - "voter": "brindleswan" + "voter": "coderg", + "rshares": "63541793" }, { - "rshares": "1799714267", - "voter": "jocelyn" + "voter": "altucher", + "rshares": "1018538139" }, { - "rshares": "74263607249", - "voter": "nenad-ristic" + "voter": "ullikume", + "rshares": "4186662893" }, { - "rshares": "79806365559", - "voter": "easteagle13" + "voter": "timferriss", + "rshares": "101572397" }, { - "rshares": "17258698670", - "voter": "jademont" + "voter": "michellek", + "rshares": "53093897" }, { - "rshares": "74888702310", - "voter": "eeks" + "voter": "kurtbeil", + "rshares": "4650618263" }, { - "rshares": "508866333", - "voter": "paco-steem" + "voter": "steemleak", + "rshares": "2798919170" }, { - "rshares": "6128712690", - "voter": "spaninv" + "voter": "thisisbenbrick", + "rshares": "109814173501" }, { - "rshares": "31076852778", - "voter": "instructor2121" + "voter": "darrenrowse", + "rshares": "104692799" }, { - "rshares": "-12893763252", - "voter": "james-show" + "voter": "xiaohui", + "rshares": "128793789941" }, { - "rshares": "2068009075", - "voter": "gekko" + "voter": "xerneas", + "rshares": "83638970" }, { - "rshares": "336346989448", - "voter": "teamsteem" + "voter": "bigsambucca", + "rshares": "106149968" }, { - "rshares": "577046508309", - "voter": "nanzo-scoop" + "voter": "elfkitchen", + "rshares": "6403494729" }, { - "rshares": "13067769111", - "voter": "fact" + "voter": "oflyhigh", + "rshares": "5935556188" }, { - "rshares": "169323765740", - "voter": "steve-walschot" + "voter": "paynode", + "rshares": "2226707993" }, { - "rshares": "10036865820", - "voter": "kefkius" + "voter": "nickche", + "rshares": "62525016" }, { - "rshares": "47419915237", - "voter": "hannixx42" + "voter": "xiaokongcom", + "rshares": "4251472057" }, { - "rshares": "183044162935", - "voter": "mummyimperfect" + "voter": "msjennifer", + "rshares": "62201879" }, { - "rshares": "57489294954", - "voter": "oaldamster" + "voter": "ciao", + "rshares": "57196572" }, { - "rshares": "268804254", - "voter": "coar" + "voter": "eneismijmich", + "rshares": "47958674202" }, { - "rshares": "109398386804", - "voter": "asch" + "voter": "jrcornel", + "rshares": "2951808169" }, { - "rshares": "1413643352", - "voter": "murh" + "voter": "steemo", + "rshares": "55449983" }, { - "rshares": "2380104240", - "voter": "error" + "voter": "pcashmore", + "rshares": "179351183" }, { - "rshares": "5853981249", - "voter": "marta-zaidel" + "voter": "xianjun", + "rshares": "8570039552" }, { - "rshares": "40916611985", - "voter": "ranko-k" + "voter": "steema", + "rshares": "55306941" }, { - "rshares": "1135543735246", - "voter": "cyber" + "voter": "andrew.sullivan", + "rshares": "59618782" }, { - "rshares": "50798219281", - "voter": "ak2020" + "voter": "brianclark", + "rshares": "1046049321" }, { - "rshares": "260089147904", - "voter": "billbutler" + "voter": "daniel.kahneman", + "rshares": "831589271" }, { - "rshares": "7897515214", - "voter": "thecryptofiend" + "voter": "tucker.max", + "rshares": "232896636" }, { - "rshares": "32296517134", - "voter": "drinkzya" + "voter": "darren.rowse", + "rshares": "740826654" }, { - "rshares": "3923236237211", - "voter": "satoshifund" + "voter": "chris.dunn", + "rshares": "55704135" }, { - "rshares": "397051543", - "voter": "stiletto" + "voter": "confucius", + "rshares": "71282219" }, { - "rshares": "56682668949", - "voter": "juanmiguelsalas" + "voter": "borran", + "rshares": "11539993041" }, { - "rshares": "583788541552", - "voter": "andrarchy" + "voter": "bledarus", + "rshares": "3851639124" }, { - "rshares": "112713462099", - "voter": "kenny-crane" + "voter": "pat.flynn", + "rshares": "1178246621" }, { - "rshares": "17036364912", - "voter": "samether" + "voter": "loli", + "rshares": "52467942" }, { - "rshares": "33767337247", - "voter": "ratel" + "voter": "miacats", + "rshares": "91473229819" }, { - "rshares": "54688824107", - "voter": "thecryptodrive" + "voter": "mattmarshall", + "rshares": "1223581698" }, { - "rshares": "4699576112", - "voter": "dahaz159" + "voter": "timothysykes", + "rshares": "437783005" }, { - "rshares": "379204818665", - "voter": "kaylinart" + "voter": "patflynn", + "rshares": "106860965" }, { - "rshares": "552432841732", - "voter": "infovore" + "voter": "jarvis", + "rshares": "56157882" }, { - "rshares": "13355491837", - "voter": "facer" + "voter": "microluck", + "rshares": "561462512" }, { - "rshares": "263013790227", - "voter": "trogdor" + "voter": "andrewsullivan", + "rshares": "896991635" }, { - "rshares": "4675654152", - "voter": "tee-em" + "voter": "razberrijam", + "rshares": "77220767" }, { - "rshares": "31336803829", - "voter": "michaelx" + "voter": "fortuner", + "rshares": "54313084" }, { - "rshares": "5946252630", - "voter": "mark-waser" + "voter": "chinadaily", + "rshares": "2005426994" }, { - "rshares": "17023109715", - "voter": "albertogm" + "voter": "kyriacos", + "rshares": "9358481880" }, { - "rshares": "116594641815", - "voter": "geoffrey" + "voter": "virtualgrowth", + "rshares": "2859735634" }, { - "rshares": "42673423694", - "voter": "kimziv" + "voter": "thegoldencookie", + "rshares": "122302767" }, { - "rshares": "46235030853", - "voter": "honeythief" + "voter": "runaway-psyche", + "rshares": "20137065264" }, { - "rshares": "82866843499", - "voter": "emily-cook" + "voter": "dollarvigilante", + "rshares": "755831094058" }, { - "rshares": "91972176401", - "voter": "mctiller" + "voter": "workout", + "rshares": "61087248" }, { - "rshares": "35412152853", - "voter": "cryptoiskey" + "voter": "harvey.levin", + "rshares": "489129872" }, { - "rshares": "11723743800", - "voter": "primus" + "voter": "mihaiart", + "rshares": "23586282706" }, { - "rshares": "484592257", - "voter": "mrhankeh" + "voter": "gvargas123", + "rshares": "10341757518" }, { - "rshares": "38897615588", - "voter": "clement" + "voter": "johnbyrd", + "rshares": "53056158" }, { - "rshares": "46178109682", - "voter": "isteemit" + "voter": "thomasaustin", + "rshares": "53039566" }, { - "rshares": "68580548647", - "voter": "bacchist" + "voter": "thermor", + "rshares": "53037689" }, { - "rshares": "72899731827", - "voter": "venuspcs" + "voter": "ficholl", + "rshares": "53048942" }, { - "rshares": "3324885062", - "voter": "michaellamden68" + "voter": "widell", + "rshares": "53030738" }, { - "rshares": "179676652871", - "voter": "asmolokalo" + "voter": "icfiedler", + "rshares": "86340173624" }, { - "rshares": "38569797449", - "voter": "good-karma" + "voter": "laconicflow", + "rshares": "1266977190" }, { - "rshares": "453653624734", - "voter": "roelandp" + "voter": "revelbrooks", + "rshares": "52651308" }, { - "rshares": "3347929950", - "voter": "orly" + "voter": "mrlogic", + "rshares": "377542979" }, { - "rshares": "45472590951", - "voter": "firepower" + "voter": "rand.fishkin", + "rshares": "194739083" }, { - "rshares": "255388351", - "voter": "mstang83" + "voter": "bitchplease", + "rshares": "50816343" }, { - "rshares": "19227034654", - "voter": "hakise" + "voter": "joelbow", + "rshares": "78411391" }, { - "rshares": "17256371639", - "voter": "r4fken" + "voter": "onetree", + "rshares": "8673217231" }, { - "rshares": "25548776759", - "voter": "tcfxyz" + "voter": "imag1ne", + "rshares": "3071905413" }, { - "rshares": "7076198200", - "voter": "futurefood" + "voter": "mandibil", + "rshares": "64111934444" }, { - "rshares": "142765809551", - "voter": "derekareith" + "voter": "curpose", + "rshares": "51562255" }, { - "rshares": "32325400002", - "voter": "picokernel" + "voter": "lenar", + "rshares": "1208491149" }, { - "rshares": "10594872684", - "voter": "seanmchughart" + "voter": "lesliestarrohara", + "rshares": "9818184488" }, { - "rshares": "766081509", - "voter": "busser" + "voter": "shenanigator", + "rshares": "112927371731" }, { - "rshares": "1296482376779", - "voter": "renohq" + "voter": "macksby", + "rshares": "14779778251" }, { - "rshares": "18840499998", - "voter": "ausbitbank" + "voter": "uziriel", + "rshares": "85972582" }, { - "rshares": "1451740615", - "voter": "mixa" + "voter": "funkywanderer", + "rshares": "2080022045" }, { - "rshares": "2226795955", - "voter": "steem1653" + "voter": "linzo", + "rshares": "1485475073" }, { - "rshares": "17220499402", - "voter": "sebastien" + "voter": "richardcrill", + "rshares": "4899042813" }, { - "rshares": "13516728290", - "voter": "sitaru" + "voter": "jeremyfromwi", + "rshares": "2205784762" }, { - "rshares": "308826662759", - "voter": "jesta" + "voter": "eight-rad", + "rshares": "1688038542" }, { - "rshares": "34328964595", - "voter": "toxonaut" + "voter": "troich", + "rshares": "51712804" }, { - "rshares": "118752539", - "voter": "snowden" + "voter": "davidjkelley", + "rshares": "1624641270" }, { - "rshares": "4709018700", - "voter": "thegoodguy" + "voter": "team101", + "rshares": "187911420" }, { - "rshares": "15578903803", - "voter": "aaseb" + "voter": "crion", + "rshares": "51718188" }, { - "rshares": "1107663461", - "voter": "karen13" + "voter": "hitherise", + "rshares": "52505412" }, { - "rshares": "24973952155", - "voter": "igster" + "voter": "wiss", + "rshares": "52496656" }, { - "rshares": "4289492867", - "voter": "dcryptogold" + "voter": "ghasemkiani", + "rshares": "13264756693" }, { - "rshares": "12853559657", - "voter": "domavila" + "voter": "sponge-bob", + "rshares": "906163750" }, { - "rshares": "2395414530", - "voter": "dmacshady" + "voter": "l0k1", + "rshares": "4545785145" }, { - "rshares": "23336601075", - "voter": "grolelo" + "voter": "digital-wisdom", + "rshares": "15223303760" }, { - "rshares": "1514372408", - "voter": "kendewitt" + "voter": "ethical-ai", + "rshares": "3708921137" }, { - "rshares": "89580632", - "voter": "wildchild" + "voter": "freesteem", + "rshares": "50784892" }, { - "rshares": "1682066491", - "voter": "natali22" + "voter": "jamespro", + "rshares": "54391689" }, { - "rshares": "44666586658", - "voter": "sbq777t" + "voter": "stroully", + "rshares": "53252658" }, { - "rshares": "1953764546", - "voter": "the-future" + "voter": "maryfromsochi", + "rshares": "3079499780" }, { - "rshares": "4296012707", - "voter": "adamt" + "voter": "jwaser", + "rshares": "6679259372" }, { - "rshares": "44807508492", - "voter": "mynameisbrian" + "voter": "thadm", + "rshares": "51814474" }, { - "rshares": "179093605311", - "voter": "blueorgy" + "voter": "prof", + "rshares": "51812703" }, { - "rshares": "5008619742", - "voter": "poseidon" + "voter": "crypt0mine", + "rshares": "1330526017" }, { - "rshares": "360289908808", - "voter": "calaber24p" + "voter": "kev7000", + "rshares": "646493719" }, { - "rshares": "4210919359", - "voter": "fubar-bdhr" + "voter": "zettar", + "rshares": "1042750516" }, { - "rshares": "119399264", - "voter": "nedrob" + "voter": "yorsens", + "rshares": "51465774" }, { - "rshares": "16044930360", - "voter": "heimindanger" + "voter": "harveylevin", + "rshares": "177656553" }, { - "rshares": "7311842917", - "voter": "geronimo" + "voter": "chaeya", + "rshares": "1129213184" }, { - "rshares": "3355524755", - "voter": "bones" + "voter": "bane", + "rshares": "51154263" }, { - "rshares": "20338607929", - "voter": "bendjmiller222" + "voter": "vive", + "rshares": "51148009" }, { - "rshares": "5228680253", - "voter": "bitcoiner" + "voter": "coad", + "rshares": "51142585" }, { - "rshares": "3754893033", - "voter": "tarindel" + "voter": "analyzethis", + "rshares": "50931848" }, { - "rshares": "3786022381", - "voter": "azurejasper" + "voter": "bwaser", + "rshares": "2615973485" }, { - "rshares": "30851492146", - "voter": "deanliu" + "voter": "sofa", + "rshares": "53003720" }, { - "rshares": "599141666", - "voter": "siol" + "voter": "lilmisjenn", + "rshares": "2563669906" }, { - "rshares": "5479123729", - "voter": "rainchen" + "voter": "gary.vaynerchuk", + "rshares": "122884931" }, { - "rshares": "5690877975", - "voter": "sharker" + "voter": "panther", + "rshares": "344116052" }, { - "rshares": "34508226149", - "voter": "sauravrungta" + "voter": "alina1", + "rshares": "2201645172" }, { - "rshares": "530196643", - "voter": "qonq99" + "voter": "doggnostic", + "rshares": "50639382" }, { - "rshares": "53839881372", - "voter": "jl777" + "voter": "ct-gurus", + "rshares": "689550675" }, { - "rshares": "7837739118", - "voter": "lostnuggett" + "voter": "jenny-talls", + "rshares": "50377764" }, { - "rshares": "30002446832", - "voter": "zaebars" + "voter": "tracemayer", + "rshares": "63519834123" }, { - "rshares": "1808058993", - "voter": "yarly" + "voter": "brains", + "rshares": "905064441" }, { - "rshares": "272610758", - "voter": "yarly2" + "voter": "ailo", + "rshares": "51994517" }, { - "rshares": "273018668", - "voter": "yarly3" + "voter": "steemafon", + "rshares": "1339423728" }, { - "rshares": "157733805", - "voter": "yarly4" + "voter": "chick1", + "rshares": "5610795642" }, { - "rshares": "158624349", - "voter": "yarly5" + "voter": "typingagent", + "rshares": "50516543" }, { - "rshares": "90416287", - "voter": "yarly7" + "voter": "nelyp", + "rshares": "519729361" }, { - "rshares": "838465852", - "voter": "raymonjohnstone" + "voter": "anomaly", + "rshares": "328506462" }, { - "rshares": "23815723291", - "voter": "masterinvestor" + "voter": "ellepdub", + "rshares": "2400090637" }, { - "rshares": "50619397", - "voter": "steemchain" + "voter": "rynow", + "rshares": "113405722" }, { - "rshares": "50619397", - "voter": "whalepool" + "voter": "honeyscribe", + "rshares": "89841354699" }, { - "rshares": "206059171", - "voter": "sergey44" + "voter": "timothy.sykes", + "rshares": "51415300" }, { - "rshares": "117016257", - "voter": "mxo8" + "voter": "inarix03", + "rshares": "61292139" }, { - "rshares": "7787748060", - "voter": "summonerrk" + "voter": "ola1", + "rshares": "218488504" }, { - "rshares": "197539708", - "voter": "strictlybusiness" + "voter": "jbaker585", + "rshares": "832905434" }, { - "rshares": "1234205003", - "voter": "mohammed123" + "voter": "herpetologyguy", + "rshares": "11803842421" }, { - "rshares": "5166865550", - "voter": "bbrewer" + "voter": "storyseeker", + "rshares": "28099831450" }, { - "rshares": "942251145", - "voter": "happyphoenix" + "voter": "eavy", + "rshares": "51470533" }, { - "rshares": "20257716778", - "voter": "krabgat" + "voter": "roto", + "rshares": "51484593" }, { - "rshares": "4543551843", - "voter": "proto" + "voter": "drac59", + "rshares": "51659688" }, { - "rshares": "658330815", - "voter": "curator" + "voter": "everittdmickey", + "rshares": "54632106" }, { - "rshares": "7211602623", - "voter": "sisterholics" + "voter": "zombiedoll", + "rshares": "780018003" }, { - "rshares": "437530299", - "voter": "yarly10" + "voter": "morgan.waser", + "rshares": "4709614494" }, { - "rshares": "1365336577", - "voter": "alex.chien" + "voter": "cfisher", + "rshares": "50602980" }, { - "rshares": "234176102", - "voter": "yarly11" + "voter": "autodesk", + "rshares": "50794039" }, { - "rshares": "81879061", - "voter": "yarly12" + "voter": "ardly", + "rshares": "50708837" }, { - "rshares": "3675263114", - "voter": "tygergamer" + "voter": "twistys", + "rshares": "50536471" }, { - "rshares": "3627578747", - "voter": "bkkshadow" + "voter": "bapparabi", + "rshares": "1822707064" }, { - "rshares": "11567371620", - "voter": "dimitarj" + "voter": "friends", + "rshares": "50532230" }, { - "rshares": "817422571", - "voter": "bullionstackers" + "voter": "opticalillusions", + "rshares": "50487909" }, { - "rshares": "3082906297", - "voter": "dmilash" + "voter": "strong-ai", + "rshares": "3607671121" }, { - "rshares": "2002481686", - "voter": "andreynoch" + "voter": "grisha-danunaher", + "rshares": "516306089" }, { - "rshares": "110940646", - "voter": "cryptoz" + "voter": "igtes", + "rshares": "72826233" }, { - "rshares": "3391999835", - "voter": "glitterpig" + "voter": "dikanevroman", + "rshares": "705838377" }, { - "rshares": "6404274840", - "voter": "shortcut" + "voter": "buffett", + "rshares": "144899746" }, { - "rshares": "128587928653", - "voter": "steemdrive" + "voter": "uct", + "rshares": "162925257" }, { - "rshares": "1075365048", - "voter": "metaflute" + "voter": "allianz", + "rshares": "162904624" }, { - "rshares": "58218132689", - "voter": "gomeravibz" + "voter": "witchcraftblog", + "rshares": "408141953" }, { - "rshares": "2298169701", - "voter": "taker" + "voter": "acute", + "rshares": "161205518" }, { - "rshares": "65485650", - "voter": "dras" + "voter": "pyro", + "rshares": "157931180" }, { - "rshares": "6519151447", - "voter": "nekromarinist" + "voter": "realtime", + "rshares": "157801695" }, { - "rshares": "6880289904", - "voter": "theprophet" + "voter": "james1987", + "rshares": "304039381" }, { - "rshares": "240147448", - "voter": "frozendota" + "voter": "electronicarts", + "rshares": "160870736" }, { - "rshares": "15543734691", - "voter": "felixxx" + "voter": "dresden", + "rshares": "1606766770" }, { - "rshares": "3432112427", - "voter": "merej99" + "voter": "mgibson", + "rshares": "201362779" }, { - "rshares": "254880160829", - "voter": "laonie" + "voter": "food-creator", + "rshares": "152057481" }, { - "rshares": "24852935259", - "voter": "rawnetics" + "voter": "benetton", + "rshares": "159531007" }, { - "rshares": "22374728157", - "voter": "thebluepanda" + "voter": "jasonxg", + "rshares": "154417232" }, { - "rshares": "25618981790", - "voter": "laonie1" + "voter": "bosch", + "rshares": "159387371" }, { - "rshares": "26132274895", - "voter": "laonie2" + "voter": "sherlockcupid", + "rshares": "4918101052" }, { - "rshares": "26141438708", - "voter": "laonie3" + "voter": "cream", + "rshares": "158632601" }, { - "rshares": "25094797142", - "voter": "laoyao" + "voter": "thomasp", + "rshares": "158326081" }, { - "rshares": "65214616", - "voter": "modogg" + "voter": "dealzgal", + "rshares": "74838700" }, { - "rshares": "7958908678", - "voter": "myfirst" + "voter": "mrshanson", + "rshares": "154959539" }, { - "rshares": "51767495130", - "voter": "somebody" + "voter": "storage", + "rshares": "83470968" }, { - "rshares": "1935723185", - "voter": "flysaga" + "voter": "aldentan", + "rshares": "329629477" }, { - "rshares": "6864125594", - "voter": "brendio" + "voter": "blackmarket", + "rshares": "67690648" }, { - "rshares": "2082514282", - "voter": "gmurph" + "voter": "gifts", + "rshares": "73837045" }, { - "rshares": "72860205", - "voter": "kurzer42" + "voter": "paulocouto", + "rshares": "112446078" }, { - "rshares": "11435966181", - "voter": "midnightoil" + "voter": "countofdelphi", + "rshares": "151927362" }, { - "rshares": "78269782470", - "voter": "mibenkito" + "voter": "newsfeed", + "rshares": "151062983" }, { - "rshares": "2375155298", - "voter": "kalimor" + "voter": "sambkf", + "rshares": "154022998" }, { - "rshares": "4276738846", - "voter": "ullikume" + "voter": "sawgunner13", + "rshares": "144957585" }, { - "rshares": "2735302379", - "voter": "darrenturetzky" + "voter": "dirlei.sdias", + "rshares": "144801473" }, { - "rshares": "59414599", - "voter": "michellek" - }, + "voter": "trickster512", + "rshares": "150387842" + } + ], + "author_reputation": 66.97, + "stats": { + "hide": false, + "gray": false, + "total_votes": 492, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/health/@fairytalelife/the-prison-of-depression", + "blacklists": [] + }, + { + "post_id": 959438, + "author": "powerup", + "permlink": "17-steem-tools-every-steemian-needs-to-know", + "category": "infographic", + "title": "Steem Tools Every Steemian Needs To Know (Infographic)", + "body": "So far, a great number of applications, or tools that can considerably improve our user experience whether we are old users or new, has been created. The application directory created by @roelandp is accepted as an official directory that currently contains more than 80 various tools, mainly created by the community members, with a few official ones. The number of applications is growing rapidly, thanks to talented developers and other users, whose ideas are being converted into functional programs.\n\nHere, I want to introduce you to an infographic that contains 17 very useful tools singled out and sorted into categories according to their use. The first category 'for new and old users' contains essential applications for most users, including applications such as the official chat server and block explorer, as well as a dedicated service for uninterrupted adding of photos, @jesta's tool for easier tracking of data related to your account, and a tool for real-time Steem Backed Dollar conversion, with a few extra applications included in the service.\n\nThe next group contains the applications essential for developers, led by @xeroc's piston which says for itself 'The Swiff Army Knife for the Steem network'. They facilitate the communication with the steem blockchain and there is also an application that facilitates the integration of Steem payments to your service. \n\nThe Miscellaneous group contains a variety of useful applications such as tools for curators, a precise browser of user reputation, a dedicated tool for creating shortened links with statistics, a Steem Stream display of all activity in real time with an option of adjusting your settings, as well as speech community and radio.\n\nLast group are applications in the category of data and analytics that contain most of data about the network, the network activity and the users. \n\nI apologize in advance if some of your favorite applications have been left out; if that is the case, you can always visit http://SteemTools.com which contains all the applications.\n\n*For a clearer view, it is recommended that you open the image in full resolution.* *[Infographic Hotlink!](http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png)*\nhttps://s11.postimg.io/8uxamnavn/revision_02.png\n---\n ![http://steemit.com/@powerup](https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png)", + "json_metadata": { + "tags": [ + "infographic", + "steemit", + "steem", + "steemsquad", + "minnowsunite" + ], + "users": [ + "roelandp", + "jesta", + "xeroc" + ], + "image": [ + "https://s11.postimg.io/8uxamnavn/revision_02.png", + "https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png" + ], + "links": [ + "http://SteemTools.com", + "http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png" + ] + }, + "created": "2016-09-15T16:45:09", + "updated": "2016-09-15T18:45:09", + "depth": 0, + "children": 6, + "net_rshares": 53802622776333, + "is_paidout": false, + "payout_at": "2016-09-16T17:20:12", + "payout": 171.268, + "pending_payout_value": "171.268 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ { - "rshares": "26136684196", - "voter": "laonie4" + "voter": "anonymous", + "rshares": "231806896049" }, { - "rshares": "26133889368", - "voter": "laonie5" + "voter": "blocktrades", + "rshares": "40039727156805" }, { - "rshares": "26130809772", - "voter": "laonie6" + "voter": "friend5", + "rshares": "81139043695" }, { - "rshares": "26126568283", - "voter": "laonie7" + "voter": "kushed", + "rshares": "5563642779143" }, { - "rshares": "5977415250", - "voter": "kurtbeil" + "voter": "roadscape", + "rshares": "4361056998354" }, { - "rshares": "26122787391", - "voter": "laonie8" + "voter": "by24seven", + "rshares": "11463456159" }, { - "rshares": "26119897476", - "voter": "laonie9" + "voter": "twiceuponatime", + "rshares": "48198557404" }, { - "rshares": "3300371180", - "voter": "steemleak" + "voter": "indominon", + "rshares": "253716125229" }, { - "rshares": "28583578460", - "voter": "xiaohui" + "voter": "vault", + "rshares": "72048644865" }, { - "rshares": "1980457070", - "voter": "t3ran13" + "voter": "wpalczynski", + "rshares": "22916314085" }, { - "rshares": "7834943379", - "voter": "mevilkingdom" + "voter": "nikolai", + "rshares": "23645584002" }, { - "rshares": "21531331546", - "voter": "jphamer1" + "voter": "chris4210", + "rshares": "143164562367" }, { - "rshares": "11056722867", - "voter": "ekitcho" + "voter": "acidyo", + "rshares": "24193131603" }, { - "rshares": "127379962", - "voter": "bigsambucca" + "voter": "coar", + "rshares": "313691550" }, { - "rshares": "1504058180", - "voter": "elfkitchen" + "voter": "murh", + "rshares": "1061234978" }, { - "rshares": "93154573622", - "voter": "joele" + "voter": "ratel", + "rshares": "33781972641" }, { - "rshares": "5999670912", - "voter": "oflyhigh" + "voter": "kimziv", + "rshares": "208364758717" }, { - "rshares": "2078540879", - "voter": "paynode" + "voter": "venuspcs", + "rshares": "45145254362" }, { - "rshares": "62400081859", - "voter": "sirwinchester" + "voter": "getssidetracked", + "rshares": "7264907621" }, { - "rshares": "122933349", - "voter": "agussudaryanto" + "voter": "trees", + "rshares": "1414199127" }, { - "rshares": "894298402", - "voter": "xiaokongcom" + "voter": "strawhat", + "rshares": "197179742" }, { - "rshares": "1802649539", - "voter": "xianjun" + "voter": "endgame", + "rshares": "844421054" }, { - "rshares": "61313637", - "voter": "jfelton5" + "voter": "furion", + "rshares": "118094280271" }, { - "rshares": "73061236", - "voter": "evgenyche" + "voter": "steem1653", + "rshares": "2834923420" }, { - "rshares": "70633121", - "voter": "stevescriber" + "voter": "sitaru", + "rshares": "13516878845" }, { - "rshares": "4097488430", - "voter": "bledarus" + "voter": "incomemonthly", + "rshares": "3735950544" }, { - "rshares": "52467942", - "voter": "loli" + "voter": "cryptosi", + "rshares": "6392090406" }, { - "rshares": "53638070", - "voter": "nano2nd" + "voter": "nabilov", + "rshares": "243749878708" }, { - "rshares": "118127541", - "voter": "microluck" + "voter": "luisucv34", + "rshares": "677892916" }, { - "rshares": "187339808", - "voter": "lisadang" + "voter": "creemej", + "rshares": "34761252099" }, { - "rshares": "9426175065", - "voter": "theb0red1" + "voter": "blueorgy", + "rshares": "167304333801" }, { - "rshares": "2057906517", - "voter": "chinadaily" + "voter": "poseidon", + "rshares": "4545098461" }, { - "rshares": "31193669396", - "voter": "kyriacos" + "voter": "celsius100", + "rshares": "41053239884" }, { - "rshares": "59021275", - "voter": "cryptoblu" + "voter": "tokyodude", + "rshares": "1659490970" }, { - "rshares": "59014859", - "voter": "instructor" + "voter": "mysteem", + "rshares": "128098702" }, { - "rshares": "7981765563", - "voter": "lemouth" + "voter": "chloetaylor", + "rshares": "6168588588" }, { - "rshares": "739008163112", - "voter": "dollarvigilante" + "voter": "sisterholics", + "rshares": "34309889652" }, { - "rshares": "18699439170", - "voter": "anotherjoe" + "voter": "reported", + "rshares": "59017018" }, { - "rshares": "60945251", - "voter": "saveliy" + "voter": "krushing", + "rshares": "55047214" }, { - "rshares": "99328137981", - "voter": "serejandmyself" + "voter": "laonie", + "rshares": "1213316718415" }, { - "rshares": "4877223734", - "voter": "almerri" + "voter": "rawnetics", + "rshares": "21929710586" }, { - "rshares": "728677907", - "voter": "alexma3x" + "voter": "myfirst", + "rshares": "41307699258" }, { - "rshares": "9824813120", - "voter": "gvargas123" + "voter": "somebody", + "rshares": "246282932283" }, { - "rshares": "443801352", - "voter": "keepdoodling" + "voter": "flysaga", + "rshares": "9450611021" }, { - "rshares": "3657683169", - "voter": "shneakysquirrel" + "voter": "minnowsunited", + "rshares": "513541455" }, { - "rshares": "278004039", - "voter": "steevc" + "voter": "midnightoil", + "rshares": "54405663387" }, { - "rshares": "3341359657", - "voter": "movievertigo" + "voter": "whatyouganjado", + "rshares": "54018085" }, { - "rshares": "70361224", - "voter": "vasilii" + "voter": "xiaohui", + "rshares": "136080800992" }, { - "rshares": "26113221925", - "voter": "laonie10" + "voter": "elfkitchen", + "rshares": "6792049578" }, { - "rshares": "362426778", - "voter": "mrlogic" + "voter": "makaveli", + "rshares": "61187902" }, { - "rshares": "62362905", - "voter": "steempipe" + "voter": "xiaokongcom", + "rshares": "4366196499" }, { - "rshares": "55543445", - "voter": "bitchplease" + "voter": "thebotkiller", + "rshares": "7475701368" }, { - "rshares": "79273566479", - "voter": "someguy123" + "voter": "xianjun", + "rshares": "8801500509" }, { - "rshares": "90827598056", - "voter": "barrycooper" + "voter": "borran", + "rshares": "11292536945" }, { - "rshares": "3572205128", - "voter": "stillsafe" + "voter": "alexbones", + "rshares": "53669860" }, { - "rshares": "76843163", - "voter": "joelbow" + "voter": "microluck", + "rshares": "576331905" }, { - "rshares": "28822571115", - "voter": "hilarski" + "voter": "stevescoins", + "rshares": "1310823380" }, { - "rshares": "2149644744", - "voter": "therealpaul" + "voter": "macartem", + "rshares": "3089652212" }, { - "rshares": "4580066391", - "voter": "steemitpatina" + "voter": "gvargas123", + "rshares": "10344891579" }, { - "rshares": "5178202476", - "voter": "silverbug2000" + "voter": "nang1", + "rshares": "156958768" }, { - "rshares": "55859919", - "voter": "rickmiller" + "voter": "kamil5", + "rshares": "166282713" }, { - "rshares": "1233668048", - "voter": "lenar" + "voter": "dobbydaba", + "rshares": "51156498" }, { - "rshares": "10020064820", - "voter": "etcmike" + "voter": "trev", + "rshares": "5950976762" }, { - "rshares": "61596105", - "voter": "uri-bruck" + "voter": "craigwilliamz", + "rshares": "8773942171" }, { - "rshares": "5154589910", - "voter": "nulliusinverba" + "voter": "ozertayiz", + "rshares": "72624506" }, { - "rshares": "1698796327", - "voter": "runridefly" + "voter": "salebored", + "rshares": "53639497" }, { - "rshares": "57841858", - "voter": "dianaju" + "voter": "freeinthought", + "rshares": "736031742" }, { - "rshares": "88019548", - "voter": "uziriel" + "voter": "arnoldz61", + "rshares": "63258691" }, { - "rshares": "57530129", - "voter": "mstoni" + "voter": "eight-rad", + "rshares": "2101747450" }, { - "rshares": "4592499069", - "voter": "richardcrill" + "voter": "bitdrone", + "rshares": "53681172" }, { - "rshares": "25230942954", - "voter": "laonie11" + "voter": "sleepcult", + "rshares": "53672498" }, { - "rshares": "1687924866", - "voter": "eight-rad" + "voter": "apparat", + "rshares": "54175638" }, { - "rshares": "62783765", - "voter": "lovetosteemit" + "voter": "doitvoluntarily", + "rshares": "12276570645" }, { - "rshares": "1660563580", - "voter": "davidjkelley" + "voter": "thecyclist", + "rshares": "135393340675" }, { - "rshares": "4350110165", - "voter": "baro" + "voter": "analyzethis", + "rshares": "52015504" }, { - "rshares": "9060248806", - "voter": "sponge-bob" + "voter": "freebornangel", + "rshares": "63904547" }, { - "rshares": "4765474309", - "voter": "l0k1" + "voter": "nommo", + "rshares": "52154065" }, { - "rshares": "15558969971", - "voter": "digital-wisdom" + "voter": "f1111111", + "rshares": "51261721" }, { - "rshares": "494724739", - "voter": "areynolds" + "voter": "anomaly", + "rshares": "339287005" }, { - "rshares": "3708378555", - "voter": "ethical-ai" + "voter": "ola1", + "rshares": "98545946" }, { - "rshares": "54247498", - "voter": "freesteem" + "voter": "mari5555na", + "rshares": "63588518" }, { - "rshares": "2477345340", - "voter": "fajrilgooner" + "voter": "powerup", + "rshares": "2996735269" }, { - "rshares": "2222639041", - "voter": "matthewtiii" + "voter": "grisha-danunaher", + "rshares": "527464783" }, { - "rshares": "55401224", - "voter": "walternz" + "voter": "zapply", + "rshares": "161974443" }, { - "rshares": "6826713536", - "voter": "jwaser" + "voter": "jyriygo", + "rshares": "158561921" }, { - "rshares": "852820572", - "voter": "tatianka" + "voter": "bleujay", + "rshares": "136494240" }, { - "rshares": "12020525779", - "voter": "doitvoluntarily" + "voter": "milank", + "rshares": "153397644" }, { - "rshares": "56439878", - "voter": "phusionphil" - }, + "voter": "inkwisitiveguy01", + "rshares": "150273031" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 88, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/infographic/@powerup/17-steem-tools-every-steemian-needs-to-know", + "blacklists": [] + }, + { + "post_id": 947211, + "author": "steve-walschot", + "permlink": "steempay-upgrade-pay-on-site-or-steemfest-or-mobile-wallet", + "category": "steempay", + "title": "Steempay upgrade - Pay on site | SteemFEST | Mobile wallet", + "body": "# Time for another upgrade of SteemPay.io! A lot of work has been done behind the scenes, and here's a brief overview:\n\n\n---\n\n\n\n\n\n# Pay on site\n\n### Users will be able to make their payments straight from the payments page using a 2 step sliding form. \n\n\n\nhttp://i.imgur.com/iinyGFl.png\n\n\n\nThis means no more need to open another tab page, fill in all the details in your wallet, and returning to SteemPay. Both the password and the active private key can be used to broadcast the transaction. \n\n\n\nSteemPay **does not** encourage password storing, however, there is an option available for those who prefer to save their password in the browser's ***localstorage.*** A warning pop up will appear explaining the risks of storing passwords in the browser.\n\n\n\nAfter a successful login, the user will see a quick overview of his available balances, and another confirmation is required to finalize the transaction straight from the payment window.\n\n\n\n\n\n# Mobile wallet\n\n### The mobile wallet is up and running, but my code seems like a mess due to trial and error. \n\nA **bounty** will be placed for someone to cleanup everything and make some minor corrections so the first version can be released very soon (and get approved on the official android & iOS stores). I feel the need to encourage bounties, so people can become engaged with the community, and hopefully I'll discover new talent to join me on the further expansion of SteemPay.\n\n\n\n# SteemFEST 1\n\nSteemPay will donate some money to SteemFEST 1. Me and @roelandp still need to work out the details, but SteemPay will be present and setup a donation terminal where users are free to send some donations towards the organization by using the mobile wallet with QR support (plans may still change). \n\n\n\n# Hardware upgrade\n\nYet another server upgrade was needed to house all services related to SteemPay. This includes many other side projects that will be announced later on. This should be the final server upgrade for SteemPay and related services. \n\n\n\nThe DNS is still propagating, so you might not see the recent changes on SteemPay.io yet.\n\n\n\n# General statistics implantation\n\nA lightweight database will be kept storing nothing but the transaction amounts processed trough SteemPay. This serves for having some overview on the monthly growth of the transactions, as well as the amounts processed. Every month, the statistics will be published.\n\n\n\n# Steem on!", + "json_metadata": { + "tags": [ + "steempay", + "steempayments", + "development", + "update" + ], + "users": [ + "roelandp" + ], + "image": [ + "http://i.imgur.com/iinyGFl.png" + ] + }, + "created": "2016-09-14T06:19:21", + "updated": "2016-09-14T06:20:42", + "depth": 0, + "children": 14, + "net_rshares": 174333402242155, + "is_paidout": false, + "payout_at": "2016-10-15T13:31:03", + "payout": 1750.818, + "pending_payout_value": "1750.818 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ { - "rshares": "607704096", - "voter": "kev7000" + "voter": "barrie", + "rshares": "480436179104" }, { - "rshares": "1018487810", - "voter": "zettar" + "voter": "steempty", + "rshares": "7864449914272" }, { - "rshares": "55736056", - "voter": "lighter" + "voter": "anonymous", + "rshares": "231705234180" }, { - "rshares": "207196967560", - "voter": "asksisk" + "voter": "rainman", + "rshares": "16854862331350" }, { - "rshares": "25848472434", - "voter": "dubi" + "voter": "summon", + "rshares": "14446969817383" }, { - "rshares": "2673758412", - "voter": "bwaser" + "voter": "ned", + "rshares": "25305686361517" }, { - "rshares": "6400398189", - "voter": "dexter-k" + "voter": "jamesc", + "rshares": "35326666852152" }, { - "rshares": "50751176", - "voter": "roadhog" + "voter": "riverhead", + "rshares": "4264966375681" }, { - "rshares": "350998373", - "voter": "panther" + "voter": "badassmother", + "rshares": "2331280387575" }, { - "rshares": "1784221363", - "voter": "alina1" + "voter": "hr1", + "rshares": "2097108315061" }, { - "rshares": "50639382", - "voter": "doggnostic" + "voter": "sandra", + "rshares": "118474244256" }, { - "rshares": "1094895432", - "voter": "wulfmeister" + "voter": "svk", + "rshares": "186985754668" }, { - "rshares": "659556912", - "voter": "ct-gurus" + "voter": "ihashfury", + "rshares": "1112765112473" }, { - "rshares": "348073541", - "voter": "bones261" + "voter": "rossco99", + "rshares": "1120603805124" }, { - "rshares": "387894501497", - "voter": "charlieshrem" + "voter": "liondani", + "rshares": "139902157720" }, { - "rshares": "61786622160", - "voter": "tracemayer" + "voter": "wang", + "rshares": "2642718616169" }, { - "rshares": "9049304130", - "voter": "brains" + "voter": "jaewoocho", + "rshares": "24281627442" }, { - "rshares": "54448999", - "voter": "onlineworker" + "voter": "steemit200", + "rshares": "6243689624471" }, { - "rshares": "50210467", - "voter": "post-successful" + "voter": "xeroc", + "rshares": "1868926634967" }, { - "rshares": "689134944", - "voter": "jessicanicklos" + "voter": "complexring", + "rshares": "6514602351120" }, { - "rshares": "633657150", - "voter": "bones555" + "voter": "clayop", + "rshares": "6410652893701" }, { - "rshares": "54919358", - "voter": "steem4fobs" + "voter": "witness.svk", + "rshares": "6132075386062" }, { - "rshares": "492992904", - "voter": "echoesinthemind" + "voter": "joseph", + "rshares": "1772458968810" }, { - "rshares": "53397626", - "voter": "f1111111" + "voter": "au1nethyb1", + "rshares": "4727274896444" }, { - "rshares": "2084637414", - "voter": "steemsquad" + "voter": "recursive2", + "rshares": "494824460005" }, { - "rshares": "574180710", - "voter": "anomaly" + "voter": "recursive", + "rshares": "3458312417787" }, { - "rshares": "27665434494", - "voter": "tarekadam" + "voter": "boombastic", + "rshares": "686881929841" }, { - "rshares": "2399791213", - "voter": "ellepdub" + "voter": "mrs.agsexplorer", + "rshares": "91206564426" }, { - "rshares": "51890765", - "voter": "gregorygarcia" + "voter": "bingo-0", + "rshares": "6953910678" }, { - "rshares": "57056918", - "voter": "inarix03" + "voter": "steempower", + "rshares": "1330823260969" }, { - "rshares": "573904238", - "voter": "ola1" + "voter": "boatymcboatface", + "rshares": "450758929058" }, { - "rshares": "849039554", - "voter": "jbaker585" + "voter": "cass", + "rshares": "1191961702407" }, { - "rshares": "5522323762", - "voter": "michelle.gent" + "voter": "idol", + "rshares": "10604743495" }, { - "rshares": "11700805109", - "voter": "herpetologyguy" + "voter": "nexusdev", + "rshares": "6904136925" }, { - "rshares": "58261815", - "voter": "everittdmickey" + "voter": "steemrollin", + "rshares": "783330802369" }, { - "rshares": "53548226", - "voter": "mari5555na" + "voter": "sakr", + "rshares": "5146683930" }, { - "rshares": "4813549151", - "voter": "morgan.waser" + "voter": "chitty", + "rshares": "296262169682" }, { - "rshares": "50602980", - "voter": "cfisher" + "voter": "linouxis9", + "rshares": "117668471628" }, { - "rshares": "51240567", - "voter": "billkappa442" + "voter": "unosuke", + "rshares": "82315328878" }, { - "rshares": "51236745", - "voter": "niiboye" + "voter": "yefet", + "rshares": "3109715701" }, { - "rshares": "51227561", - "voter": "battalar" + "voter": "brindleswan", + "rshares": "16257411149" }, { - "rshares": "1157070714", - "voter": "anns" + "voter": "jocelyn", + "rshares": "1799714267" }, { - "rshares": "50875769", - "voter": "cyan" + "voter": "nenad-ristic", + "rshares": "74263607249" }, { - "rshares": "50873654", - "voter": "palladium" + "voter": "easteagle13", + "rshares": "79806365559" }, { - "rshares": "50796122", - "voter": "factom" + "voter": "jademont", + "rshares": "17258698670" }, { - "rshares": "50794039", - "voter": "autodesk" + "voter": "eeks", + "rshares": "74888702310" }, { - "rshares": "827252367", - "voter": "bapparabi" + "voter": "paco-steem", + "rshares": "508866333" }, { - "rshares": "3389664065", - "voter": "dodders007" + "voter": "spaninv", + "rshares": "6128712690" }, { - "rshares": "3687326823", - "voter": "strong-ai" + "voter": "instructor2121", + "rshares": "31076852778" }, { - "rshares": "161225748", - "voter": "iliyaa" + "voter": "james-show", + "rshares": "-12893763252" }, { - "rshares": "162925257", - "voter": "uct" + "voter": "gekko", + "rshares": "2068009075" }, { - "rshares": "1354011808", - "voter": "rusteemitblog" + "voter": "teamsteem", + "rshares": "336346989448" }, { - "rshares": "158798473", - "voter": "zapply" + "voter": "nanzo-scoop", + "rshares": "577046508309" }, { - "rshares": "201362779", - "voter": "mgibson" + "voter": "fact", + "rshares": "13067769111" }, { - "rshares": "157118197", - "voter": "rage" + "voter": "steve-walschot", + "rshares": "169323765740" }, { - "rshares": "159973989", - "voter": "capcom" + "voter": "kefkius", + "rshares": "10036865820" }, { - "rshares": "153699193", - "voter": "allgoodthings" + "voter": "hannixx42", + "rshares": "47419915237" }, { - "rshares": "159531007", - "voter": "benetton" + "voter": "mummyimperfect", + "rshares": "183044162935" }, { - "rshares": "159425365", - "voter": "tipsandtricks" + "voter": "oaldamster", + "rshares": "57489294954" }, { - "rshares": "159318360", - "voter": "stimmt" + "voter": "coar", + "rshares": "268804254" }, { - "rshares": "159175576", - "voter": "fallout" + "voter": "asch", + "rshares": "109398386804" }, { - "rshares": "159025535", - "voter": "xtreme" + "voter": "murh", + "rshares": "1413643352" }, { - "rshares": "944924940", - "voter": "modernbukowski" + "voter": "error", + "rshares": "2380104240" }, { - "rshares": "158632601", - "voter": "cream" + "voter": "marta-zaidel", + "rshares": "5853981249" }, { - "rshares": "158637372", - "voter": "alterego" + "voter": "ranko-k", + "rshares": "40916611985" }, { - "rshares": "158602900", - "voter": "steem-wallet" + "voter": "cyber", + "rshares": "1135543735246" }, { - "rshares": "158560941", - "voter": "steemthis" + "voter": "ak2020", + "rshares": "50798219281" }, { - "rshares": "158486055", - "voter": "zendesk" + "voter": "billbutler", + "rshares": "260089147904" }, { - "rshares": "26843428547", - "voter": "goldmatters" + "voter": "thecryptofiend", + "rshares": "7897515214" }, { - "rshares": "81051650", - "voter": "dealzgal" + "voter": "drinkzya", + "rshares": "32296517134" }, { - "rshares": "158230871", - "voter": "helepa" + "voter": "satoshifund", + "rshares": "3923236237211" }, { - "rshares": "199633972", - "voter": "rishi556" + "voter": "stiletto", + "rshares": "397051543" }, { - "rshares": "92745520", - "voter": "storage" + "voter": "juanmiguelsalas", + "rshares": "56682668949" }, { - "rshares": "188144802", - "voter": "antaja" + "voter": "andrarchy", + "rshares": "583788541552" }, { - "rshares": "145960715", - "voter": "raph" + "voter": "kenny-crane", + "rshares": "112713462099" }, { - "rshares": "151162552", - "voter": "dougkarr" + "voter": "samether", + "rshares": "17036364912" }, { - "rshares": "1586499055", - "voter": "slammr76" + "voter": "ratel", + "rshares": "33767337247" }, { - "rshares": "73844343", - "voter": "blackmarket" + "voter": "thecryptodrive", + "rshares": "54688824107" }, { - "rshares": "79990132", - "voter": "gifts" + "voter": "dahaz159", + "rshares": "4699576112" }, { - "rshares": "85598308", - "voter": "expat" + "voter": "kaylinart", + "rshares": "379204818665" }, { - "rshares": "134906258", - "voter": "steemtrail" + "voter": "infovore", + "rshares": "552432841732" }, { - "rshares": "153178035", - "voter": "royfft" + "voter": "facer", + "rshares": "13355491837" }, { - "rshares": "112446078", - "voter": "paulocouto" + "voter": "trogdor", + "rshares": "263013790227" }, { - "rshares": "155872526", - "voter": "countofdelphi" + "voter": "tee-em", + "rshares": "4675654152" }, { - "rshares": "151306241", - "voter": "tnemm.atiaw" + "voter": "michaelx", + "rshares": "31336803829" }, { - "rshares": "154295967", - "voter": "harleyismydog" + "voter": "mark-waser", + "rshares": "5946252630" }, { - "rshares": "148041723", - "voter": "newsfeed" + "voter": "albertogm", + "rshares": "17023109715" }, { - "rshares": "144957585", - "voter": "sawgunner13" + "voter": "geoffrey", + "rshares": "116594641815" }, { - "rshares": "147818170", - "voter": "dirlei.sdias" - } - ], - "author": "steve-walschot", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "# Time for another upgrade of SteemPay.io! A lot of work has been done behind the scenes, and here's a brief overview:\n\n\n---\n\n\n\n\n\n# Pay on site\n\n### Users will be able to make their payments straight from the payments page using a 2 step sliding form. \n\n\n\nhttp://i.imgur.com/iinyGFl.png\n\n\n\nThis means no more need to open another tab page, fill in all the details in your wallet, and returning to SteemPay. Both the password and the active private key can be used to broadcast the transaction. \n\n\n\nSteemPay **does not** encourage password storing, however, there is an option available for those who prefer to save their password in the browser's ***localstorage.*** A warning pop up will appear explaining the risks of storing passwords in the browser.\n\n\n\nAfter a successful login, the user will see a quick overview of his available balances, and another confirmation is required to finalize the transaction straight from the payment window.\n\n\n\n\n\n# Mobile wallet\n\n### The mobile wallet is up and running, but my code seems like a mess due to trial and error. \n\nA **bounty** will be placed for someone to cleanup everything and make some minor corrections so the first version can be released very soon (and get approved on the official android & iOS stores). I feel the need to encourage bounties, so people can become engaged with the community, and hopefully I'll discover new talent to join me on the further expansion of SteemPay.\n\n\n\n# SteemFEST 1\n\nSteemPay will donate some money to SteemFEST 1. Me and @roelandp still need to work out the details, but SteemPay will be present and setup a donation terminal where users are free to send some donations towards the organization by using the mobile wallet with QR support (plans may still change). \n\n\n\n# Hardware upgrade\n\nYet another server upgrade was needed to house all services related to SteemPay. This includes many other side projects that will be announced later on. This should be the final server upgrade for SteemPay and related services. \n\n\n\nThe DNS is still propagating, so you might not see the recent changes on SteemPay.io yet.\n\n\n\n# General statistics implantation\n\nA lightweight database will be kept storing nothing but the transaction amounts processed trough SteemPay. This serves for having some overview on the monthly growth of the transactions, as well as the amounts processed. Every month, the statistics will be published.\n\n\n\n# Steem on!", - "category": "steempay", - "children": 14, - "created": "2016-09-14T06:19:21", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "http://i.imgur.com/iinyGFl.png" - ], - "tags": [ - "steempay", - "steempayments", - "development", - "update" - ], - "users": [ - "roelandp" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 174333402242155, - "payout": 1750.818, - "payout_at": "2016-09-21T06:19:21", - "pending_payout_value": "1750.818 HBD", - "percent_hbd": 10000, - "permlink": "steempay-upgrade-pay-on-site-or-steemfest-or-mobile-wallet", - "post_id": 1240557, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 400 - }, - "title": "Steempay upgrade - Pay on site | SteemFEST | Mobile wallet", - "updated": "2016-09-14T06:20:42", - "url": "/steempay/@steve-walschot/steempay-upgrade-pay-on-site-or-steemfest-or-mobile-wallet" - }, - { - "active_votes": [ + "voter": "kimziv", + "rshares": "42673423694" + }, { - "rshares": "518181875581", - "voter": "barrie" + "voter": "honeythief", + "rshares": "46235030853" }, { - "rshares": "31620103450538", - "voter": "smooth" + "voter": "emily-cook", + "rshares": "82866843499" }, { - "rshares": "260759332327", - "voter": "anonymous" + "voter": "mctiller", + "rshares": "91972176401" }, { - "rshares": "2047759927809", - "voter": "badassmother" + "voter": "cryptoiskey", + "rshares": "35412152853" }, { - "rshares": "2099340340625", - "voter": "hr1" + "voter": "primus", + "rshares": "11723743800" }, { - "rshares": "1402227395408", - "voter": "rossco99" + "voter": "mrhankeh", + "rshares": "484592257" }, { - "rshares": "23338638054", - "voter": "jaewoocho" + "voter": "clement", + "rshares": "38897615588" }, { - "rshares": "1910039425215", - "voter": "xeroc" + "voter": "isteemit", + "rshares": "46178109682" }, { - "rshares": "1661657401786", - "voter": "joseph" + "voter": "bacchist", + "rshares": "68580548647" }, { - "rshares": "471982260599", - "voter": "recursive3" + "voter": "venuspcs", + "rshares": "72899731827" }, { - "rshares": "3187826540990", - "voter": "recursive" + "voter": "michaellamden68", + "rshares": "3324885062" }, { - "rshares": "1282783470", - "voter": "mineralwasser" + "voter": "asmolokalo", + "rshares": "179676652871" }, { - "rshares": "702252849815", - "voter": "boombastic" + "voter": "good-karma", + "rshares": "38569797449" }, { - "rshares": "1719075621", - "voter": "bingo-1" + "voter": "roelandp", + "rshares": "453653624734" }, { - "rshares": "5936571539134", - "voter": "smooth.witness" + "voter": "orly", + "rshares": "3347929950" }, { - "rshares": "457719147730", - "voter": "boatymcboatface" + "voter": "firepower", + "rshares": "45472590951" }, { - "rshares": "9890456090", - "voter": "idol" + "voter": "mstang83", + "rshares": "255388351" }, { - "rshares": "131787410217", - "voter": "team" + "voter": "hakise", + "rshares": "19227034654" }, { - "rshares": "1702427102", - "voter": "jocelyn" + "voter": "r4fken", + "rshares": "17256371639" }, { - "rshares": "461461082967", - "voter": "leesunmoo" + "voter": "tcfxyz", + "rshares": "25548776759" }, { - "rshares": "1247396916090", - "voter": "gavvet" + "voter": "futurefood", + "rshares": "7076198200" }, { - "rshares": "74913635150", - "voter": "eeks" + "voter": "derekareith", + "rshares": "142765809551" }, { - "rshares": "8567499992", - "voter": "fkn" + "voter": "picokernel", + "rshares": "32325400002" }, { - "rshares": "11261443630", - "voter": "elishagh1" + "voter": "seanmchughart", + "rshares": "10594872684" }, { - "rshares": "599827540724", - "voter": "nanzo-scoop" + "voter": "busser", + "rshares": "766081509" }, { - "rshares": "161287532172", - "voter": "steve-walschot" + "voter": "renohq", + "rshares": "1296482376779" }, { - "rshares": "182039074638", - "voter": "mummyimperfect" + "voter": "ausbitbank", + "rshares": "18840499998" }, { - "rshares": "313666285", - "voter": "coar" + "voter": "mixa", + "rshares": "1451740615" }, { - "rshares": "109431915950", - "voter": "asch" + "voter": "steem1653", + "rshares": "2226795955" }, { - "rshares": "1414823587", - "voter": "murh" + "voter": "sebastien", + "rshares": "17220499402" }, { - "rshares": "6375528917", - "voter": "cryptofunk" + "voter": "sitaru", + "rshares": "13516728290" }, { - "rshares": "2219594239", - "voter": "error" + "voter": "jesta", + "rshares": "308826662759" }, { - "rshares": "5268583124", - "voter": "marta-zaidel" + "voter": "toxonaut", + "rshares": "34328964595" }, { - "rshares": "38749275184", - "voter": "ranko-k" + "voter": "snowden", + "rshares": "118752539" }, { - "rshares": "985447048915", - "voter": "cyber" + "voter": "thegoodguy", + "rshares": "4709018700" }, { - "rshares": "63472911304", - "voter": "theshell" + "voter": "aaseb", + "rshares": "15578903803" }, { - "rshares": "52177367591", - "voter": "ak2020" + "voter": "karen13", + "rshares": "1107663461" }, { - "rshares": "417566592605", - "voter": "taoteh1221" + "voter": "igster", + "rshares": "24973952155" }, { - "rshares": "375915775849", - "voter": "hedge-x" + "voter": "dcryptogold", + "rshares": "4289492867" }, { - "rshares": "18668166065", - "voter": "samether" + "voter": "domavila", + "rshares": "12853559657" }, { - "rshares": "33779461634", - "voter": "ratel" + "voter": "dmacshady", + "rshares": "2395414530" }, { - "rshares": "85401868413", - "voter": "herzmeister" + "voter": "grolelo", + "rshares": "23336601075" }, { - "rshares": "5287000077", - "voter": "tee-em" + "voter": "kendewitt", + "rshares": "1514372408" }, { - "rshares": "30496214097", - "voter": "michaelx" + "voter": "wildchild", + "rshares": "89580632" }, { - "rshares": "5950236300", - "voter": "mark-waser" + "voter": "natali22", + "rshares": "1682066491" }, { - "rshares": "130482031811", - "voter": "geoffrey" + "voter": "sbq777t", + "rshares": "44666586658" }, { - "rshares": "74777860177", - "voter": "kimziv" + "voter": "the-future", + "rshares": "1953764546" }, { - "rshares": "79450691320", - "voter": "emily-cook" + "voter": "adamt", + "rshares": "4296012707" }, { - "rshares": "2251928158", - "voter": "superfreek" + "voter": "mynameisbrian", + "rshares": "44807508492" }, { - "rshares": "471516850", - "voter": "mrhankeh" + "voter": "blueorgy", + "rshares": "179093605311" }, { - "rshares": "17908173089", - "voter": "grey580" + "voter": "poseidon", + "rshares": "5008619742" }, { - "rshares": "68200649381", - "voter": "bacchist" + "voter": "calaber24p", + "rshares": "360289908808" }, { - "rshares": "20382051466", - "voter": "thebatchman" + "voter": "fubar-bdhr", + "rshares": "4210919359" }, { - "rshares": "59056857395", - "voter": "lehard" + "voter": "nedrob", + "rshares": "119399264" }, { - "rshares": "76017835973", - "voter": "rubybian" + "voter": "heimindanger", + "rshares": "16044930360" }, { - "rshares": "18268797910", - "voter": "konstantin" + "voter": "geronimo", + "rshares": "7311842917" }, { - "rshares": "2649402156", - "voter": "romel" + "voter": "bones", + "rshares": "3355524755" }, { - "rshares": "6941291365", - "voter": "gatoso" + "voter": "bendjmiller222", + "rshares": "20338607929" }, { - "rshares": "41821532061", - "voter": "furion" + "voter": "bitcoiner", + "rshares": "5228680253" }, { - "rshares": "200664863", - "voter": "barbara2" + "voter": "tarindel", + "rshares": "3754893033" }, { - "rshares": "223036409", - "voter": "ch0c0latechip" + "voter": "azurejasper", + "rshares": "3786022381" }, { - "rshares": "206422340", - "voter": "doge4lyf" + "voter": "deanliu", + "rshares": "30851492146" }, { - "rshares": "12011310308", - "voter": "asim" + "voter": "siol", + "rshares": "599141666" }, { - "rshares": "85512692", - "voter": "snowden" + "voter": "rainchen", + "rshares": "5479123729" }, { - "rshares": "14804978653", - "voter": "aaseb" + "voter": "sharker", + "rshares": "5690877975" }, { - "rshares": "4431003942", - "voter": "karen13" + "voter": "sauravrungta", + "rshares": "34508226149" }, { - "rshares": "1455625353", - "voter": "jrd8526" + "voter": "qonq99", + "rshares": "530196643" }, { - "rshares": "21565632626", - "voter": "artific" + "voter": "jl777", + "rshares": "53839881372" }, { - "rshares": "7164402609", - "voter": "lichtblick" + "voter": "lostnuggett", + "rshares": "7837739118" }, { - "rshares": "37826396801", - "voter": "creemej" + "voter": "zaebars", + "rshares": "30002446832" }, { - "rshares": "84865861", - "voter": "wildchild" + "voter": "yarly", + "rshares": "1808058993" }, { - "rshares": "3871359622", - "voter": "maximkichev" + "voter": "yarly2", + "rshares": "272610758" }, { - "rshares": "167294697812", - "voter": "blueorgy" + "voter": "yarly3", + "rshares": "273018668" }, { - "rshares": "1631211812", - "voter": "poseidon" + "voter": "yarly4", + "rshares": "157733805" }, { - "rshares": "2083366228", - "voter": "iamwne" + "voter": "yarly5", + "rshares": "158624349" }, { - "rshares": "362447415925", - "voter": "calaber24p" + "voter": "yarly7", + "rshares": "90416287" }, { - "rshares": "10466922918", - "voter": "rpf" + "voter": "raymonjohnstone", + "rshares": "838465852" }, { - "rshares": "3694190342", - "voter": "bitcoiner" + "voter": "masterinvestor", + "rshares": "23815723291" }, { - "rshares": "33624572763", - "voter": "deanliu" + "voter": "steemchain", + "rshares": "50619397" }, { - "rshares": "459345887", - "voter": "meteor78" + "voter": "whalepool", + "rshares": "50619397" }, { - "rshares": "30193718340", - "voter": "zaebars" + "voter": "sergey44", + "rshares": "206059171" }, { - "rshares": "6948016204", - "voter": "positive" + "voter": "mxo8", + "rshares": "117016257" }, { - "rshares": "780088825", - "voter": "raymonjohnstone" + "voter": "summonerrk", + "rshares": "7787748060" }, { - "rshares": "19827631792", - "voter": "krabgat" + "voter": "strictlybusiness", + "rshares": "197539708" }, { - "rshares": "11734541225", - "voter": "sisterholics" + "voter": "mohammed123", + "rshares": "1234205003" }, { - "rshares": "1483259422", - "voter": "alex.chien" + "voter": "bbrewer", + "rshares": "5166865550" }, { - "rshares": "8921616604", - "voter": "royalmacro" + "voter": "happyphoenix", + "rshares": "942251145" }, { - "rshares": "233934645", - "voter": "fnait" + "voter": "krabgat", + "rshares": "20257716778" }, { - "rshares": "207827906", - "voter": "keepcalmand" + "voter": "proto", + "rshares": "4543551843" }, { - "rshares": "1838091863", - "voter": "remlaps" + "voter": "curator", + "rshares": "658330815" }, { - "rshares": "3445177864", - "voter": "glitterpig" + "voter": "sisterholics", + "rshares": "7211602623" }, { - "rshares": "7221227809", - "voter": "uwe69" + "voter": "yarly10", + "rshares": "437530299" }, { - "rshares": "896285424", - "voter": "metaflute" + "voter": "alex.chien", + "rshares": "1365336577" }, { - "rshares": "50575844297", - "voter": "gomeravibz" + "voter": "yarly11", + "rshares": "234176102" }, { - "rshares": "9193626491", - "voter": "taker" + "voter": "yarly12", + "rshares": "81879061" }, { - "rshares": "2236809039", - "voter": "merej99" + "voter": "tygergamer", + "rshares": "3675263114" }, { - "rshares": "414945627496", - "voter": "laonie" + "voter": "bkkshadow", + "rshares": "3627578747" }, { - "rshares": "166006086500", - "voter": "twinner" + "voter": "dimitarj", + "rshares": "11567371620" }, { - "rshares": "22430898487", - "voter": "laonie1" + "voter": "bullionstackers", + "rshares": "817422571" }, { - "rshares": "22947696195", - "voter": "laonie2" + "voter": "dmilash", + "rshares": "3082906297" }, { - "rshares": "22955764004", - "voter": "laonie3" + "voter": "andreynoch", + "rshares": "2002481686" }, { - "rshares": "25206296089", - "voter": "laoyao" + "voter": "cryptoz", + "rshares": "110940646" }, { - "rshares": "14653942462", - "voter": "myfirst" + "voter": "glitterpig", + "rshares": "3391999835" }, { - "rshares": "90711449970", - "voter": "somebody" + "voter": "shortcut", + "rshares": "6404274840" }, { - "rshares": "3391693609", - "voter": "flysaga" + "voter": "steemdrive", + "rshares": "128587928653" }, { - "rshares": "5465055585", - "voter": "brendio" + "voter": "metaflute", + "rshares": "1075365048" }, { - "rshares": "2084677795", - "voter": "gmurph" + "voter": "gomeravibz", + "rshares": "58218132689" }, { - "rshares": "18607683624", - "voter": "midnightoil" + "voter": "taker", + "rshares": "2298169701" }, { - "rshares": "2280336943", - "voter": "kalimor" + "voter": "dras", + "rshares": "65485650" }, { - "rshares": "504711698206", - "voter": "glitterfart" + "voter": "nekromarinist", + "rshares": "6519151447" }, { - "rshares": "22951578069", - "voter": "laonie4" + "voter": "theprophet", + "rshares": "6880289904" }, { - "rshares": "22949307467", - "voter": "laonie5" + "voter": "frozendota", + "rshares": "240147448" }, { - "rshares": "22946449112", - "voter": "laonie6" + "voter": "felixxx", + "rshares": "15543734691" }, { - "rshares": "22942428841", - "voter": "laonie7" + "voter": "merej99", + "rshares": "3432112427" }, { - "rshares": "3489545901", - "voter": "kurtbeil" + "voter": "laonie", + "rshares": "254880160829" }, { - "rshares": "22939097897", - "voter": "laonie8" + "voter": "rawnetics", + "rshares": "24852935259" }, { - "rshares": "22936432119", - "voter": "laonie9" + "voter": "thebluepanda", + "rshares": "22374728157" }, { - "rshares": "46536921016", - "voter": "xiaohui" + "voter": "laonie1", + "rshares": "25618981790" }, { - "rshares": "177527074798", - "voter": "terrycraft" + "voter": "laonie2", + "rshares": "26132274895" }, { - "rshares": "1321003450", - "voter": "dolov" + "voter": "laonie3", + "rshares": "26141438708" }, { - "rshares": "88179884", - "voter": "bigsambucca" + "voter": "laoyao", + "rshares": "25094797142" }, { - "rshares": "2287717822", - "voter": "elfkitchen" + "voter": "modogg", + "rshares": "65214616" }, { - "rshares": "105894845081", - "voter": "joele" + "voter": "myfirst", + "rshares": "7958908678" }, { - "rshares": "6166349652", - "voter": "oflyhigh" + "voter": "somebody", + "rshares": "51767495130" }, { - "rshares": "2229123966", - "voter": "paynode" + "voter": "flysaga", + "rshares": "1935723185" }, { - "rshares": "1566982177", - "voter": "xiaokongcom" + "voter": "brendio", + "rshares": "6864125594" }, { - "rshares": "253808801", - "voter": "xcepta" + "voter": "gmurph", + "rshares": "2082514282" }, { - "rshares": "3158713250", - "voter": "xianjun" + "voter": "kurzer42", + "rshares": "72860205" }, { - "rshares": "12796476601", - "voter": "borran" + "voter": "midnightoil", + "rshares": "11435966181" }, { - "rshares": "64119004", - "voter": "jupiter.zeus" + "voter": "mibenkito", + "rshares": "78269782470" }, { - "rshares": "70633121", - "voter": "stevescriber" + "voter": "kalimor", + "rshares": "2375155298" }, { - "rshares": "50027573", - "voter": "loli" + "voter": "ullikume", + "rshares": "4276738846" }, { - "rshares": "51199976", - "voter": "nano2nd" + "voter": "darrenturetzky", + "rshares": "2735302379" }, { - "rshares": "2249451928", - "voter": "njall" + "voter": "michellek", + "rshares": "59414599" }, { - "rshares": "206879958", - "voter": "microluck" + "voter": "laonie4", + "rshares": "26136684196" }, { - "rshares": "6547835526", - "voter": "userlogin" + "voter": "laonie5", + "rshares": "26133889368" }, { - "rshares": "6802729666", - "voter": "rubenalexander" + "voter": "laonie6", + "rshares": "26130809772" }, { - "rshares": "59219258", - "voter": "photo00" + "voter": "laonie7", + "rshares": "26126568283" }, { - "rshares": "604279479", - "voter": "tagira" + "voter": "kurtbeil", + "rshares": "5977415250" }, { - "rshares": "2131733339", - "voter": "chinadaily" + "voter": "laonie8", + "rshares": "26122787391" }, { - "rshares": "108403024", - "voter": "pollina" + "voter": "laonie9", + "rshares": "26119897476" }, { - "rshares": "2649789126", - "voter": "levycore" + "voter": "steemleak", + "rshares": "3300371180" }, { - "rshares": "22930483067", - "voter": "laonie10" + "voter": "xiaohui", + "rshares": "28583578460" }, { - "rshares": "332237822", - "voter": "mrlogic" + "voter": "t3ran13", + "rshares": "1980457070" }, { - "rshares": "59229074587", - "voter": "mandibil" + "voter": "mevilkingdom", + "rshares": "7834943379" }, { - "rshares": "2132454023", - "voter": "shadowspub" + "voter": "jphamer1", + "rshares": "21531331546" }, { - "rshares": "59067894", - "voter": "bonapetit" + "voter": "ekitcho", + "rshares": "11056722867" }, { - "rshares": "5053531368", - "voter": "richardcrill" + "voter": "bigsambucca", + "rshares": "127379962" }, { - "rshares": "22091338934", - "voter": "laonie11" + "voter": "elfkitchen", + "rshares": "1504058180" }, { - "rshares": "2101664455", - "voter": "eight-rad" + "voter": "joele", + "rshares": "93154573622" }, { - "rshares": "3336919086", - "voter": "xanoxt" + "voter": "oflyhigh", + "rshares": "5999670912" }, { - "rshares": "1661479473", - "voter": "davidjkelley" + "voter": "paynode", + "rshares": "2078540879" }, { - "rshares": "187911420", - "voter": "team101" + "voter": "sirwinchester", + "rshares": "62400081859" }, { - "rshares": "109225703", - "voter": "rusla" + "voter": "agussudaryanto", + "rshares": "122933349" }, { - "rshares": "4892645779", - "voter": "mscleverclocks" + "voter": "xiaokongcom", + "rshares": "894298402" }, { - "rshares": "727103786", - "voter": "ksena" + "voter": "xianjun", + "rshares": "1802649539" }, { - "rshares": "11069296957", - "voter": "sponge-bob" + "voter": "jfelton5", + "rshares": "61313637" }, { - "rshares": "4268200560", - "voter": "l0k1" + "voter": "evgenyche", + "rshares": "73061236" }, { - "rshares": "15569990970", - "voter": "digital-wisdom" + "voter": "stevescriber", + "rshares": "70633121" }, { - "rshares": "3791420478", - "voter": "ethical-ai" + "voter": "bledarus", + "rshares": "4097488430" }, { - "rshares": "6830905360", - "voter": "jwaser" + "voter": "loli", + "rshares": "52467942" }, { - "rshares": "50858762", - "voter": "apparat" + "voter": "nano2nd", + "rshares": "53638070" }, { - "rshares": "212888896291", - "voter": "asksisk" + "voter": "microluck", + "rshares": "118127541" }, { - "rshares": "2675382304", - "voter": "bwaser" + "voter": "lisadang", + "rshares": "187339808" }, { - "rshares": "350998373", - "voter": "panther" + "voter": "theb0red1", + "rshares": "9426175065" }, { - "rshares": "659649765", - "voter": "ct-gurus" + "voter": "chinadaily", + "rshares": "2057906517" }, { - "rshares": "54793782", - "voter": "park.bom" + "voter": "kyriacos", + "rshares": "31193669396" }, { - "rshares": "395173675944", - "voter": "charlieshrem" + "voter": "cryptoblu", + "rshares": "59021275" }, { - "rshares": "60104450664", - "voter": "tracemayer" + "voter": "instructor", + "rshares": "59014859" }, { - "rshares": "23239991726", - "voter": "brains" + "voter": "lemouth", + "rshares": "7981765563" }, { - "rshares": "407083055", - "voter": "anomaly" + "voter": "dollarvigilante", + "rshares": "739008163112" }, { - "rshares": "2401189699", - "voter": "ellepdub" + "voter": "anotherjoe", + "rshares": "18699439170" }, { - "rshares": "61292139", - "voter": "inarix03" + "voter": "saveliy", + "rshares": "60945251" }, { - "rshares": "172352271", - "voter": "ola1" + "voter": "serejandmyself", + "rshares": "99328137981" }, { - "rshares": "12396603737", - "voter": "herpetologyguy" + "voter": "almerri", + "rshares": "4877223734" }, { - "rshares": "51826827", - "voter": "drac59" + "voter": "alexma3x", + "rshares": "728677907" }, { - "rshares": "4816713747", - "voter": "morgan.waser" + "voter": "gvargas123", + "rshares": "9824813120" }, { - "rshares": "297771990", - "voter": "thefinanceguy" + "voter": "keepdoodling", + "rshares": "443801352" }, { - "rshares": "1258344048", - "voter": "anns" + "voter": "shneakysquirrel", + "rshares": "3657683169" }, { - "rshares": "50907857", - "voter": "oxygen" + "voter": "steevc", + "rshares": "278004039" }, { - "rshares": "50875769", - "voter": "cyan" + "voter": "movievertigo", + "rshares": "3341359657" }, { - "rshares": "50868434", - "voter": "jumbo" + "voter": "vasilii", + "rshares": "70361224" }, { - "rshares": "50865840", - "voter": "sting" + "voter": "laonie10", + "rshares": "26113221925" }, { - "rshares": "50796122", - "voter": "factom" + "voter": "mrlogic", + "rshares": "362426778" }, { - "rshares": "50794039", - "voter": "autodesk" + "voter": "steempipe", + "rshares": "62362905" }, { - "rshares": "50568084", - "voter": "brazzers" + "voter": "bitchplease", + "rshares": "55543445" }, { - "rshares": "50543061", - "voter": "rabobank" + "voter": "someguy123", + "rshares": "79273566479" }, { - "rshares": "50538694", - "voter": "fenix" + "voter": "barrycooper", + "rshares": "90827598056" }, { - "rshares": "50349676", - "voter": "albertheijn" + "voter": "stillsafe", + "rshares": "3572205128" }, { - "rshares": "3689644671", - "voter": "strong-ai" + "voter": "joelbow", + "rshares": "76843163" }, { - "rshares": "52329350", - "voter": "ninjapainter" + "voter": "hilarski", + "rshares": "28822571115" }, { - "rshares": "254506659", - "voter": "darkminded153" + "voter": "therealpaul", + "rshares": "2149644744" }, { - "rshares": "527435916", - "voter": "grisha-danunaher" + "voter": "steemitpatina", + "rshares": "4580066391" }, { - "rshares": "162917785", - "voter": "ctu" + "voter": "silverbug2000", + "rshares": "5178202476" }, { - "rshares": "162911190", - "voter": "front" + "voter": "rickmiller", + "rshares": "55859919" }, { - "rshares": "1630327346", - "voter": "rusteemitblog" + "voter": "lenar", + "rshares": "1233668048" }, { - "rshares": "161089804", - "voter": "pyro" + "voter": "etcmike", + "rshares": "10020064820" }, { - "rshares": "159025535", - "voter": "xtreme" + "voter": "uri-bruck", + "rshares": "61596105" }, { - "rshares": "155528114", - "voter": "icesteem" + "voter": "nulliusinverba", + "rshares": "5154589910" }, { - "rshares": "158602900", - "voter": "steem-wallet" + "voter": "runridefly", + "rshares": "1698796327" }, { - "rshares": "158560941", - "voter": "steemthis" + "voter": "dianaju", + "rshares": "57841858" }, { - "rshares": "74838700", - "voter": "dealzgal" + "voter": "uziriel", + "rshares": "88019548" }, { - "rshares": "255357124", - "voter": "orenshani7" + "voter": "mstoni", + "rshares": "57530129" }, { - "rshares": "68013381", - "voter": "storage" + "voter": "richardcrill", + "rshares": "4592499069" }, { - "rshares": "58460105", - "voter": "blackmarket" + "voter": "laonie11", + "rshares": "25230942954" }, { - "rshares": "61530871", - "voter": "gifts" + "voter": "eight-rad", + "rshares": "1687924866" }, { - "rshares": "93882016", - "voter": "expat" + "voter": "lovetosteemit", + "rshares": "62783765" }, { - "rshares": "154566975", - "voter": "dimaisrael" + "voter": "davidjkelley", + "rshares": "1660563580" }, { - "rshares": "1593664040", - "voter": "steemlift" + "voter": "baro", + "rshares": "4350110165" }, { - "rshares": "138651704", - "voter": "toddemaher1" - } - ], - "author": "terrycraft", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "
\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman18.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

When looking through old photographs, you realize how much the world has changed around us.

\n
\u041f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u044f \u0441\u0442\u0430\u0440\u044b\u0435 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438, \u043e\u0441\u043e\u0437\u043d\u0430\u0451\u0448\u044c \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437\u043c\u0435\u043d\u0438\u043b\u0441\u044f \u043c\u0438\u0440 \u0432\u043e\u043a\u0440\u0443\u0433 \u043d\u0430\u0441.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman16.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

I am deeply convinced that the people imprinted on these black-and-white photographs never suspected what will happen to them in the future, whether it is immediate or distant As well as they didn't realized how quickly the years will pass, changing all the world around. So, as you look at their careless faces, you fairly quickly realize that your current situation is not much different.

\n
\u042f \u0433\u043b\u0443\u0431\u043e\u043a\u043e \u0443\u0432\u0435\u0440\u0435\u043d\u0430 \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u043b\u044e\u0434\u0438, \u0437\u0430\u043f\u0435\u0447\u0430\u0442\u043b\u0451\u043d\u043d\u044b\u0435 \u043d\u0430 \u0447\u0451\u0440\u043d\u043e-\u0431\u0435\u043b\u044b\u0445 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044f\u0445, \u043d\u0435 \u043f\u043e\u0434\u043e\u0437\u0440\u0435\u0432\u0430\u043b\u0438, \u0447\u0442\u043e \u0441\u0442\u0430\u043d\u0435\u0442 \u0441 \u043d\u0438\u043c\u0438 \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u043c, \u0438 \u043d\u0435 \u043e\u0447\u0435\u043d\u044c, \u0431\u0443\u0434\u0443\u0449\u0435\u043c. \u041d\u0435 \u0437\u043d\u0430\u043b\u0438 \u043e\u043d\u0438 \u0442\u0430\u043a\u0436\u0435, \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u0442\u0440\u0435\u043c\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u0440\u043e\u0439\u0434\u0443\u0442 \u0433\u043e\u0434\u044b, \u0438 \u043a\u0430\u043a \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u0441\u044f \u043c\u0438\u0440 \u0432\u043e\u043a\u0440\u0443\u0433. \u041f\u043e\u044d\u0442\u043e\u043c\u0443, \u0433\u043b\u044f\u0434\u044f \u043d\u0430 \u0438\u0445 \u0431\u0435\u0441\u043f\u0435\u0447\u043d\u044b\u0435 \u043b\u0438\u0446\u0430, \u0434\u043e\u0432\u043e\u043b\u044c\u043d\u043e \u0431\u044b\u0441\u0442\u0440\u043e \u043e\u0441\u043e\u0437\u043d\u0430\u0451\u0448\u044c, \u0447\u0442\u043e \u0442\u0432\u043e\u0451 \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0441\u0435\u0439\u0447\u0430\u0441 \u043c\u0430\u043b\u043e \u0447\u0435\u043c \u043e\u0442\u043b\u0438\u0447\u0430\u0435\u0442\u0441\u044f.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman14.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

Everything that happens around us changes the world we are witnessing. We live in an age of technological progress; the advent of the first computers, the Internet, gadgets, social networks, online games, e-commerce, cryptocurrency and, finally, a blockchain social network - the Steemit, which makes our minds work for creation of good content and its curation.

\n
\u0412\u0441\u0451 \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0435 \u0432\u043e\u043a\u0440\u0443\u0433 \u043d\u0430\u0441 \u043c\u0435\u043d\u044f\u0435\u0442 \u043c\u0438\u0440 \u043d\u0430 \u043d\u0430\u0448\u0438\u0445 \u0433\u043b\u0430\u0437\u0430\u0445. \u041c\u044b \u0436\u0438\u0432\u0451\u043c \u0432 \u0432\u0435\u043a \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0430; \u043f\u043e\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0432\u044b\u0445 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u0432, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430, \u0433\u0430\u0434\u0436\u0435\u0442\u043e\u0432, \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0435\u0442\u0435\u0439, \u043e\u043d\u043b\u0430\u0439\u043d-\u0438\u0433\u0440, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043c\u0430\u0433\u0430\u0437\u0438\u043d\u043e\u0432, \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0438, \u043d\u0430\u043a\u043e\u043d\u0435\u0446, \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 - Steemit, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0437\u0430\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043d\u0430\u0448\u0438 \u0443\u043c\u044b \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0445\u043e\u0440\u043e\u0448\u0435\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0435\u0433\u043e \u043a\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman09.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

And in 10 years, or maybe much earlier, we will see a completely different picture of reality. Generation Steem is coming. The generation that changed everything around and changed itself as well, in opposite to that generation you run with your eyes, trying to convince its immutability and the impossibility of change. No, this already will be the world of the past.

\n
\u0418 \u043b\u0435\u0442 \u0447\u0435\u0440\u0435\u0437 10, \u0430 \u043c\u043e\u0436\u0435\u0442 \u0437\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0440\u0430\u043d\u044c\u0448\u0435, \u043c\u044b \u0443\u0432\u0438\u0434\u0438\u043c \u0432 \u043a\u0430\u0434\u0440\u0435 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e \u0434\u0440\u0443\u0433\u0443\u044e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c. \u0413\u0440\u044f\u0434\u0451\u0442 Steem \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u0435, \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u043d\u0438\u0432\u0448\u0435\u0435 \u0432\u0441\u0451 \u0432\u043e\u043a\u0440\u0443\u0433 \u0441\u0435\u0431\u044f \u0438 \u0438\u0437\u043c\u0435\u043d\u0438\u0432\u0448\u0435\u0435\u0441\u044f \u0441\u0430\u043c\u043e, \u0430 \u043d\u0435 \u0442\u043e, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0441\u0435\u0439\u0447\u0430\u0441, \u043e\u0431\u0432\u043e\u0434\u044f \u0432\u0437\u0433\u043b\u044f\u0434\u043e\u043c, \u0432\u044b \u043f\u044b\u0442\u0430\u0435\u0442\u0435\u0441\u044c \u0443\u0431\u0435\u0434\u0438\u0442\u044c \u0432 \u0435\u0433\u043e \u043d\u0435\u0437\u044b\u0431\u043b\u0435\u043c\u043e\u0441\u0442\u0438 \u0438 \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u043d. \u041d\u0435\u0442, \u044d\u0442\u043e \u0443\u0436\u0435 \u0431\u0443\u0434\u0435\u0442 \u043c\u0438\u0440 \u043f\u0440\u043e\u0448\u043b\u043e\u0433\u043e.
\n\n\n\n

Written to the music: Antonio Vivaldi - The Four Seasons.

\n\n\nPlease follow me\n@panther\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @panther\n\n---\n\nAll STEEM Dollars for this post go to the featured author. \u0412\u0441\u0435 SD \u0437\u0430 \u043f\u043e\u0441\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442 \u0430\u0432\u0442\u043e\u0440.", - "category": "philosophy", - "children": 16, - "created": "2016-09-15T12:27:27", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman18.jpg", - "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman16.jpg", - "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman14.jpg", - "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman09.jpg" - ], - "links": [ - "http://bigpicture.ru/?p=384365&fb_comment_id=180555112091488_997346", - "https://steemit.com/@panther" - ], - "tags": [ - "philosophy", - "thoughts", - "steemit", - "ru" - ], - "users": [ - "panther" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 61603577309634, - "payout": 220.99, - "payout_at": "2016-09-22T12:27:27", - "pending_payout_value": "220.990 HBD", - "percent_hbd": 10000, - "permlink": "a-look-from-the-past-vzglyad-iz-proshlogo-featuring-panther-as-author", - "post_id": 1253231, - "promoted": "0.000 HBD", - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 210 - }, - "title": "A Look From the Past / \u0412\u0437\u0433\u043b\u044f\u0434 \u0438\u0437 \u043f\u0440\u043e\u0448\u043b\u043e\u0433\u043e (featuring @panther as author).", - "updated": "2016-09-15T12:27:27", - "url": "/philosophy/@terrycraft/a-look-from-the-past-vzglyad-iz-proshlogo-featuring-panther-as-author" - }, - { - "active_votes": [ + "voter": "sponge-bob", + "rshares": "9060248806" + }, + { + "voter": "l0k1", + "rshares": "4765474309" + }, + { + "voter": "digital-wisdom", + "rshares": "15558969971" + }, + { + "voter": "areynolds", + "rshares": "494724739" + }, + { + "voter": "ethical-ai", + "rshares": "3708378555" + }, + { + "voter": "freesteem", + "rshares": "54247498" + }, + { + "voter": "fajrilgooner", + "rshares": "2477345340" + }, + { + "voter": "matthewtiii", + "rshares": "2222639041" + }, + { + "voter": "walternz", + "rshares": "55401224" + }, { - "rshares": "532169253053", - "voter": "barrie" + "voter": "jwaser", + "rshares": "6826713536" }, { - "rshares": "31619883437623", - "voter": "smooth" + "voter": "tatianka", + "rshares": "852820572" }, { - "rshares": "2104460112078", - "voter": "badassmother" + "voter": "doitvoluntarily", + "rshares": "12020525779" }, { - "rshares": "2145924640161", - "voter": "hr1" + "voter": "phusionphil", + "rshares": "56439878" }, { - "rshares": "1417915977465", - "voter": "rossco99" + "voter": "kev7000", + "rshares": "607704096" }, { - "rshares": "23814289766", - "voter": "jaewoocho" + "voter": "zettar", + "rshares": "1018487810" }, { - "rshares": "1703642542869", - "voter": "joseph" + "voter": "lighter", + "rshares": "55736056" }, { - "rshares": "475597049622", - "voter": "recursive2" + "voter": "asksisk", + "rshares": "207196967560" }, { - "rshares": "636257408102", - "voter": "masteryoda" + "voter": "dubi", + "rshares": "25848472434" }, { - "rshares": "3255552805749", - "voter": "recursive" + "voter": "bwaser", + "rshares": "2673758412" }, { - "rshares": "1319401954", - "voter": "mineralwasser" + "voter": "dexter-k", + "rshares": "6400398189" }, { - "rshares": "723485629708", - "voter": "boombastic" + "voter": "roadhog", + "rshares": "50751176" }, { - "rshares": "96850892172", - "voter": "mrs.agsexplorer" + "voter": "panther", + "rshares": "350998373" }, { - "rshares": "1768181243", - "voter": "bingo-1" + "voter": "alina1", + "rshares": "1784221363" }, { - "rshares": "5934415897198", - "voter": "smooth.witness" + "voter": "doggnostic", + "rshares": "50639382" }, { - "rshares": "1304768990979", - "voter": "steempower" + "voter": "wulfmeister", + "rshares": "1094895432" }, { - "rshares": "456278512142", - "voter": "boatymcboatface" + "voter": "ct-gurus", + "rshares": "659556912" }, { - "rshares": "9890048933", - "voter": "idol" + "voter": "bones261", + "rshares": "348073541" }, { - "rshares": "296830135486", - "voter": "chitty" + "voter": "charlieshrem", + "rshares": "387894501497" }, { - "rshares": "491386120119", - "voter": "noaommerrr" + "voter": "tracemayer", + "rshares": "61786622160" }, { - "rshares": "1702377748", - "voter": "jocelyn" + "voter": "brains", + "rshares": "9049304130" }, { - "rshares": "85268786798", - "voter": "acidsun" + "voter": "onlineworker", + "rshares": "54448999" }, { - "rshares": "77509187475", - "voter": "easteagle13" + "voter": "post-successful", + "rshares": "50210467" }, { - "rshares": "194274169571", - "voter": "jamtaylor" + "voter": "jessicanicklos", + "rshares": "689134944" }, { - "rshares": "74913340244", - "voter": "eeks" + "voter": "bones555", + "rshares": "633657150" }, { - "rshares": "14615120866", - "voter": "fkn" + "voter": "steem4fobs", + "rshares": "54919358" }, { - "rshares": "478362750", - "voter": "paco-steem" + "voter": "echoesinthemind", + "rshares": "492992904" }, { - "rshares": "5762166771", - "voter": "spaninv" + "voter": "f1111111", + "rshares": "53397626" }, { - "rshares": "8867214614", - "voter": "james-show" + "voter": "steemsquad", + "rshares": "2084637414" }, { - "rshares": "19210663051", - "voter": "elishagh1" + "voter": "anomaly", + "rshares": "574180710" }, { - "rshares": "599812753161", - "voter": "nanzo-scoop" + "voter": "tarekadam", + "rshares": "27665434494" }, { - "rshares": "10057636659", - "voter": "kefkius" + "voter": "ellepdub", + "rshares": "2399791213" }, { - "rshares": "182037114530", - "voter": "mummyimperfect" + "voter": "gregorygarcia", + "rshares": "51890765" }, { - "rshares": "313666285", - "voter": "coar" + "voter": "inarix03", + "rshares": "57056918" }, { - "rshares": "109429287148", - "voter": "asch" + "voter": "ola1", + "rshares": "573904238" }, { - "rshares": "1414771825", - "voter": "murh" + "voter": "jbaker585", + "rshares": "849039554" }, { - "rshares": "6375475951", - "voter": "cryptofunk" + "voter": "michelle.gent", + "rshares": "5522323762" }, { - "rshares": "2219507871", - "voter": "error" + "voter": "herpetologyguy", + "rshares": "11700805109" }, { - "rshares": "5268583124", - "voter": "marta-zaidel" + "voter": "everittdmickey", + "rshares": "58261815" }, { - "rshares": "985431200080", - "voter": "cyber" + "voter": "mari5555na", + "rshares": "53548226" }, { - "rshares": "65234010126", - "voter": "theshell" + "voter": "morgan.waser", + "rshares": "4813549151" }, { - "rshares": "52176837915", - "voter": "ak2020" + "voter": "cfisher", + "rshares": "50602980" }, { - "rshares": "3924426072251", - "voter": "satoshifund" + "voter": "billkappa442", + "rshares": "51240567" }, { - "rshares": "373242613", - "voter": "stiletto" + "voter": "niiboye", + "rshares": "51236745" }, { - "rshares": "56687866808", - "voter": "juanmiguelsalas" + "voter": "battalar", + "rshares": "51227561" }, { - "rshares": "33773766247", - "voter": "ratel" + "voter": "anns", + "rshares": "1157070714" }, { - "rshares": "219282437688", - "voter": "will-zewe" + "voter": "cyan", + "rshares": "50875769" }, { - "rshares": "79219201090", - "voter": "tim-johnston" + "voter": "palladium", + "rshares": "50873654" }, { - "rshares": "19597062136", - "voter": "ziv" + "voter": "factom", + "rshares": "50796122" }, { - "rshares": "16102536836", - "voter": "zakharya" + "voter": "autodesk", + "rshares": "50794039" }, { - "rshares": "2246887418", - "voter": "stephen-somers" + "voter": "bapparabi", + "rshares": "827252367" }, { - "rshares": "286332817574", - "voter": "trogdor" + "voter": "dodders007", + "rshares": "3389664065" }, { - "rshares": "175807204421", - "voter": "thedashguy" + "voter": "strong-ai", + "rshares": "3687326823" }, { - "rshares": "5950208619", - "voter": "mark-waser" + "voter": "iliyaa", + "rshares": "161225748" }, { - "rshares": "17023129603", - "voter": "albertogm" + "voter": "uct", + "rshares": "162925257" }, { - "rshares": "213644107795", - "voter": "kimziv" + "voter": "rusteemitblog", + "rshares": "1354011808" }, { - "rshares": "79449639183", - "voter": "emily-cook" + "voter": "zapply", + "rshares": "158798473" }, { - "rshares": "2316258127", - "voter": "superfreek" + "voter": "mgibson", + "rshares": "201362779" }, { - "rshares": "31567740828", - "voter": "acassity" + "voter": "rage", + "rshares": "157118197" }, { - "rshares": "17557032440", - "voter": "grey580" + "voter": "capcom", + "rshares": "159973989" }, { - "rshares": "1250400407", - "voter": "arcaneinfo" + "voter": "allgoodthings", + "rshares": "153699193" }, { - "rshares": "3987474604", - "voter": "michaellamden68" + "voter": "benetton", + "rshares": "159531007" }, { - "rshares": "449234523497", - "voter": "ericvancewalton" + "voter": "tipsandtricks", + "rshares": "159425365" }, { - "rshares": "20789508317", - "voter": "thebatchman" + "voter": "stimmt", + "rshares": "159318360" }, { - "rshares": "76015962675", - "voter": "rubybian" + "voter": "fallout", + "rshares": "159175576" }, { - "rshares": "256232582", - "voter": "mstang83" + "voter": "xtreme", + "rshares": "159025535" }, { - "rshares": "7271192517", - "voter": "elyaque" + "voter": "modernbukowski", + "rshares": "944924940" }, { - "rshares": "25055988031", - "voter": "tcfxyz" + "voter": "cream", + "rshares": "158632601" }, { - "rshares": "2596866157", - "voter": "romel" + "voter": "alterego", + "rshares": "158637372" }, { - "rshares": "6939608148", - "voter": "futurefood" + "voter": "steem-wallet", + "rshares": "158602900" }, { - "rshares": "839919246636", - "voter": "slowwalker" + "voter": "steemthis", + "rshares": "158560941" }, { - "rshares": "71342508795", - "voter": "furion" + "voter": "zendesk", + "rshares": "158486055" }, { - "rshares": "342310650", - "voter": "barbara2" + "voter": "goldmatters", + "rshares": "26843428547" }, { - "rshares": "380473875", - "voter": "ch0c0latechip" + "voter": "dealzgal", + "rshares": "81051650" }, { - "rshares": "352132228", - "voter": "doge4lyf" + "voter": "helepa", + "rshares": "158230871" }, { - "rshares": "136318424", - "voter": "cynetyc" + "voter": "rishi556", + "rshares": "199633972" }, { - "rshares": "25221048335", - "voter": "steemit-life" + "voter": "storage", + "rshares": "92745520" }, { - "rshares": "12266682329", - "voter": "asim" + "voter": "antaja", + "rshares": "188144802" }, { - "rshares": "15125765260", - "voter": "aaseb" + "voter": "raph", + "rshares": "145960715" }, { - "rshares": "4430997922", - "voter": "karen13" + "voter": "dougkarr", + "rshares": "151162552" }, { - "rshares": "274216136539", - "voter": "nabilov" + "voter": "slammr76", + "rshares": "1586499055" }, { - "rshares": "476682819", - "voter": "karenmckersie" + "voter": "blackmarket", + "rshares": "73844343" + }, + { + "voter": "gifts", + "rshares": "79990132" + }, + { + "voter": "expat", + "rshares": "85598308" + }, + { + "voter": "steemtrail", + "rshares": "134906258" + }, + { + "voter": "royfft", + "rshares": "153178035" + }, + { + "voter": "paulocouto", + "rshares": "112446078" + }, + { + "voter": "countofdelphi", + "rshares": "155872526" + }, + { + "voter": "tnemm.atiaw", + "rshares": "151306241" + }, + { + "voter": "harleyismydog", + "rshares": "154295967" + }, + { + "voter": "newsfeed", + "rshares": "148041723" + }, + { + "voter": "sawgunner13", + "rshares": "144957585" + }, + { + "voter": "dirlei.sdias", + "rshares": "147818170" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 400, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/steempay/@steve-walschot/steempay-upgrade-pay-on-site-or-steemfest-or-mobile-wallet", + "blacklists": [] + }, + { + "post_id": 957231, + "author": "terrycraft", + "permlink": "a-look-from-the-past-vzglyad-iz-proshlogo-featuring-panther-as-author", + "category": "philosophy", + "title": "A Look From the Past / Взгляд из прошлого (featuring @panther as author).", + "body": "
\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman18.jpg\nImage credit / Источник фото\n\n\n

When looking through old photographs, you realize how much the world has changed around us.

\n
Просматривая старые фотографии, осознаёшь насколько изменился мир вокруг нас.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman16.jpg\nImage credit / Источник фото\n\n\n

I am deeply convinced that the people imprinted on these black-and-white photographs never suspected what will happen to them in the future, whether it is immediate or distant As well as they didn't realized how quickly the years will pass, changing all the world around. So, as you look at their careless faces, you fairly quickly realize that your current situation is not much different.

\n
Я глубоко уверена в том, что люди, запечатлённые на чёрно-белых фотографиях, не подозревали, что станет с ними в ближайшем, и не очень, будущем. Не знали они также, насколько стремительно пройдут годы, и как изменится мир вокруг. Поэтому, глядя на их беспечные лица, довольно быстро осознаёшь, что твоё положение сейчас мало чем отличается.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman14.jpg\nImage credit / Источник фото\n\n\n

Everything that happens around us changes the world we are witnessing. We live in an age of technological progress; the advent of the first computers, the Internet, gadgets, social networks, online games, e-commerce, cryptocurrency and, finally, a blockchain social network - the Steemit, which makes our minds work for creation of good content and its curation.

\n
Всё происходящее вокруг нас меняет мир на наших глазах. Мы живём в век технологического прогресса; появление первых компьютеров, интернета, гаджетов, социальных сетей, онлайн-игр, интернет-магазинов, криптовалют и, наконец, социальной сети на блокчейне - Steemit, которая заставляет наши умы работать для создания хорошего контента и его курирования.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman09.jpg\nImage credit / Источник фото\n\n\n

And in 10 years, or maybe much earlier, we will see a completely different picture of reality. Generation Steem is coming. The generation that changed everything around and changed itself as well, in opposite to that generation you run with your eyes, trying to convince its immutability and the impossibility of change. No, this already will be the world of the past.

\n
И лет через 10, а может значительно раньше, мы увидим в кадре совершенно другую действительность. Грядёт Steem поколение, поколение, изменившее всё вокруг себя и изменившееся само, а не то, которое сейчас, обводя взглядом, вы пытаетесь убедить в его незыблемости и невозможности перемен. Нет, это уже будет мир прошлого.
\n\n\n\n

Written to the music: Antonio Vivaldi - The Four Seasons.

\n\n\nPlease follow me\n@panther\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @panther\n\n---\n\nAll STEEM Dollars for this post go to the featured author. Все SD за пост получит автор.", + "json_metadata": { + "tags": [ + "philosophy", + "thoughts", + "steemit", + "ru" + ], + "users": [ + "panther" + ], + "image": [ + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman18.jpg", + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman16.jpg", + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman14.jpg", + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman09.jpg" + ], + "links": [ + "http://bigpicture.ru/?p=384365&fb_comment_id=180555112091488_997346", + "https://steemit.com/@panther" + ] + }, + "created": "2016-09-15T12:27:27", + "updated": "2016-09-15T12:27:27", + "depth": 0, + "children": 16, + "net_rshares": 61603577309634, + "is_paidout": false, + "payout_at": "2016-09-16T12:56:15", + "payout": 222.566, + "pending_payout_value": "222.566 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "barrie", + "rshares": "518181875581" }, { - "rshares": "840273090", - "voter": "thinkngrow" + "voter": "smooth", + "rshares": "31620103450538" }, { - "rshares": "47995763722", - "voter": "milestone" + "voter": "anonymous", + "rshares": "260759332327" }, { - "rshares": "7462648594", - "voter": "lichtblick" + "voter": "badassmother", + "rshares": "2047759927809" }, { - "rshares": "5840939270", - "voter": "btcbtcbtc20155" + "voter": "hr1", + "rshares": "2099340340625" }, { - "rshares": "4210092453", - "voter": "adamt" + "voter": "rossco99", + "rshares": "1402227395408" }, { - "rshares": "171273414934", - "voter": "blueorgy" + "voter": "jaewoocho", + "rshares": "23338638054" }, { - "rshares": "4777021608", - "voter": "poseidon" + "voter": "xeroc", + "rshares": "1910039425215" }, { - "rshares": "3506024506", - "voter": "simon.braki.love" + "voter": "joseph", + "rshares": "1661657401786" }, { - "rshares": "3424170757", - "voter": "bones" + "voter": "recursive3", + "rshares": "471982260599" }, { - "rshares": "3787131399", - "voter": "azurejasper" + "voter": "recursive", + "rshares": "3187826540990" }, { - "rshares": "1840626661", - "voter": "bola" + "voter": "mineralwasser", + "rshares": "1282783470" }, { - "rshares": "33535112463", - "voter": "deanliu" + "voter": "boombastic", + "rshares": "702252849815" }, { - "rshares": "7822595883", - "voter": "neroru" + "voter": "bingo-1", + "rshares": "1719075621" }, { - "rshares": "215381633110", - "voter": "jl777" + "voter": "smooth.witness", + "rshares": "5936571539134" }, { - "rshares": "450339105", - "voter": "meteor78" + "voter": "boatymcboatface", + "rshares": "457719147730" }, { - "rshares": "11852480777", - "voter": "positive" + "voter": "idol", + "rshares": "9890456090" }, { - "rshares": "13133061167", - "voter": "moon32walker" + "voter": "team", + "rshares": "131787410217" }, { - "rshares": "685414916", - "voter": "tobythecat" + "voter": "jocelyn", + "rshares": "1702427102" }, { - "rshares": "3997180642", - "voter": "sompitonov" + "voter": "leesunmoo", + "rshares": "461461082967" }, { - "rshares": "14893508235", - "voter": "lemooljiang" + "voter": "gavvet", + "rshares": "1247396916090" }, { - "rshares": "20258667266", - "voter": "krabgat" + "voter": "eeks", + "rshares": "74913635150" }, { - "rshares": "18175770345", - "voter": "proto" + "voter": "fkn", + "rshares": "8567499992" }, { - "rshares": "30220408709", - "voter": "pinkisland" + "voter": "elishagh1", + "rshares": "11261443630" }, { - "rshares": "4083118071", - "voter": "ace108" + "voter": "nanzo-scoop", + "rshares": "599827540724" }, { - "rshares": "36105101075", - "voter": "sisterholics" + "voter": "steve-walschot", + "rshares": "161287532172" }, { - "rshares": "9087754202", - "voter": "royalmacro" + "voter": "mummyimperfect", + "rshares": "182039074638" }, { - "rshares": "291577197", - "voter": "faraz" + "voter": "coar", + "rshares": "313666285" }, { - "rshares": "399064983", - "voter": "fnait" + "voter": "asch", + "rshares": "109431915950" }, { - "rshares": "354529957", - "voter": "keepcalmand" + "voter": "murh", + "rshares": "1414823587" }, { - "rshares": "607346548", - "voter": "cwmyao1" + "voter": "cryptofunk", + "rshares": "6375528917" }, { - "rshares": "42831828400", - "voter": "smailer" + "voter": "error", + "rshares": "2219594239" }, { - "rshares": "153025160", - "voter": "steemster1" + "voter": "marta-zaidel", + "rshares": "5268583124" }, { - "rshares": "26276845296", - "voter": "fabien" + "voter": "ranko-k", + "rshares": "38749275184" }, { - "rshares": "1311817181", - "voter": "bullionstackers" + "voter": "cyber", + "rshares": "985447048915" }, { - "rshares": "10079340576", - "voter": "michiel" + "voter": "theshell", + "rshares": "63472911304" }, { - "rshares": "66976384508", - "voter": "malaiandrueth" + "voter": "ak2020", + "rshares": "52177367591" }, { - "rshares": "3445106241", - "voter": "glitterpig" + "voter": "taoteh1221", + "rshares": "417566592605" }, { - "rshares": "176122993", - "voter": "uwe69" + "voter": "hedge-x", + "rshares": "375915775849" }, { - "rshares": "24521510758", - "voter": "gomeravibz" + "voter": "samether", + "rshares": "18668166065" }, { - "rshares": "9193596396", - "voter": "taker" + "voter": "ratel", + "rshares": "33779461634" }, { - "rshares": "1042734400", - "voter": "pakisnxt" + "voter": "herzmeister", + "rshares": "85401868413" }, { - "rshares": "7824682639", - "voter": "nekromarinist" + "voter": "tee-em", + "rshares": "5287000077" }, { - "rshares": "60565253", - "voter": "sharon" + "voter": "michaelx", + "rshares": "30496214097" }, { - "rshares": "7879017303", - "voter": "french.fyde" + "voter": "mark-waser", + "rshares": "5950236300" }, { - "rshares": "61714352", - "voter": "lillianjones" + "voter": "geoffrey", + "rshares": "130482031811" }, { - "rshares": "1244785807395", - "voter": "laonie" + "voter": "kimziv", + "rshares": "74777860177" }, { - "rshares": "174513111694", - "voter": "twinner" + "voter": "emily-cook", + "rshares": "79450691320" }, { - "rshares": "25205404125", - "voter": "laoyao" + "voter": "superfreek", + "rshares": "2251928158" }, { - "rshares": "42592081002", - "voter": "myfirst" + "voter": "mrhankeh", + "rshares": "471516850" }, { - "rshares": "259167037180", - "voter": "somebody" + "voter": "grey580", + "rshares": "17908173089" }, { - "rshares": "9690288359", - "voter": "flysaga" + "voter": "bacchist", + "rshares": "68200649381" }, { - "rshares": "2084677795", - "voter": "gmurph" + "voter": "thebatchman", + "rshares": "20382051466" }, { - "rshares": "55821231813", - "voter": "midnightoil" + "voter": "lehard", + "rshares": "59056857395" }, { - "rshares": "85931785", - "voter": "coderg" + "voter": "rubybian", + "rshares": "76017835973" }, { - "rshares": "4371311648", - "voter": "ullikume" + "voter": "konstantin", + "rshares": "18268797910" }, { - "rshares": "4752967790", - "voter": "miketr" + "voter": "romel", + "rshares": "2649402156" }, { - "rshares": "143185133504", - "voter": "xiaohui" + "voter": "gatoso", + "rshares": "6941291365" }, { - "rshares": "21533856625", - "voter": "jphamer1" + "voter": "furion", + "rshares": "41821532061" }, { - "rshares": "6710387381", - "voter": "elfkitchen" + "voter": "barbara2", + "rshares": "200664863" }, { - "rshares": "105893050403", - "voter": "joele" + "voter": "ch0c0latechip", + "rshares": "223036409" }, { - "rshares": "6135664318", - "voter": "oflyhigh" + "voter": "doge4lyf", + "rshares": "206422340" }, { - "rshares": "4476983604", - "voter": "xiaokongcom" + "voter": "asim", + "rshares": "12011310308" }, { - "rshares": "1434064827", - "voter": "hms818" + "voter": "snowden", + "rshares": "85512692" }, { - "rshares": "62201879", - "voter": "msjennifer" + "voter": "aaseb", + "rshares": "14804978653" }, { - "rshares": "57196572", - "voter": "ciao" + "voter": "karen13", + "rshares": "4431003942" }, { - "rshares": "3743673036", - "voter": "villainblack" + "voter": "jrd8526", + "rshares": "1455625353" }, { - "rshares": "55449983", - "voter": "steemo" + "voter": "artific", + "rshares": "21565632626" }, { - "rshares": "9024630191", - "voter": "xianjun" + "voter": "lichtblick", + "rshares": "7164402609" }, { - "rshares": "55306941", - "voter": "steema" + "voter": "creemej", + "rshares": "37826396801" }, { - "rshares": "74615731", - "voter": "evgenyche" + "voter": "wildchild", + "rshares": "84865861" }, { - "rshares": "72902270", - "voter": "confucius" + "voter": "maximkichev", + "rshares": "3871359622" }, { - "rshares": "93794893233", - "voter": "miacats" + "voter": "blueorgy", + "rshares": "167294697812" }, { - "rshares": "56157882", - "voter": "jarvis" + "voter": "poseidon", + "rshares": "1631211812" }, { - "rshares": "605862734", - "voter": "microluck" + "voter": "iamwne", + "rshares": "2083366228" }, { - "rshares": "599010678", - "voter": "ashwim" + "voter": "calaber24p", + "rshares": "362447415925" }, { - "rshares": "6535955953", - "voter": "rubenalexander" + "voter": "rpf", + "rshares": "10466922918" }, { - "rshares": "55520042", - "voter": "fortuner" + "voter": "bitcoiner", + "rshares": "3694190342" }, { - "rshares": "2131698126", - "voter": "chinadaily" + "voter": "deanliu", + "rshares": "33624572763" }, { - "rshares": "8114302214", - "voter": "lemouth" + "voter": "meteor78", + "rshares": "459345887" }, { - "rshares": "670432237", - "voter": "alexma3x" + "voter": "zaebars", + "rshares": "30193718340" }, { - "rshares": "10344067760", - "voter": "gvargas123" + "voter": "positive", + "rshares": "6948016204" }, { - "rshares": "54235184", - "voter": "johnbyrd" + "voter": "raymonjohnstone", + "rshares": "780088825" }, { - "rshares": "53039566", - "voter": "thomasaustin" + "voter": "krabgat", + "rshares": "19827631792" }, { - "rshares": "54216305", - "voter": "thermor" + "voter": "sisterholics", + "rshares": "11734541225" }, { - "rshares": "53048942", - "voter": "ficholl" + "voter": "alex.chien", + "rshares": "1483259422" }, { - "rshares": "54209199", - "voter": "widell" + "voter": "royalmacro", + "rshares": "8921616604" }, { - "rshares": "53821337", - "voter": "revelbrooks" + "voter": "fnait", + "rshares": "233934645" }, { - "rshares": "25448736737", - "voter": "andrewawerdna" + "voter": "keepcalmand", + "rshares": "207827906" }, { - "rshares": "11074790441", - "voter": "sethlinson" + "voter": "remlaps", + "rshares": "1838091863" }, { - "rshares": "4042151059", - "voter": "booky" + "voter": "glitterpig", + "rshares": "3445177864" }, { - "rshares": "101945845", - "voter": "slorunner" + "voter": "uwe69", + "rshares": "7221227809" }, { - "rshares": "52708083", - "voter": "curpose" + "voter": "metaflute", + "rshares": "896285424" }, { - "rshares": "1258844947", - "voter": "lenar" + "voter": "gomeravibz", + "rshares": "50575844297" }, { - "rshares": "2196689434", - "voter": "runridefly" + "voter": "taker", + "rshares": "9193626491" }, { - "rshares": "54585840", - "voter": "stephenkendal" + "voter": "merej99", + "rshares": "2236809039" }, { - "rshares": "52836995", - "voter": "troich" + "voter": "laonie", + "rshares": "414945627496" }, { - "rshares": "5011419926", - "voter": "nadin3" + "voter": "twinner", + "rshares": "166006086500" }, { - "rshares": "1661479473", - "voter": "davidjkelley" + "voter": "laonie1", + "rshares": "22430898487" }, { - "rshares": "191746347", - "voter": "team101" + "voter": "laonie2", + "rshares": "22947696195" }, { - "rshares": "52842496", - "voter": "crion" + "voter": "laonie3", + "rshares": "22955764004" }, { - "rshares": "185701642", - "voter": "greatness" + "voter": "laoyao", + "rshares": "25206296089" }, { - "rshares": "52505412", - "voter": "hitherise" + "voter": "myfirst", + "rshares": "14653942462" }, { - "rshares": "52496656", - "voter": "wiss" + "voter": "somebody", + "rshares": "90711449970" }, { - "rshares": "9069255648", - "voter": "sponge-bob" + "voter": "flysaga", + "rshares": "3391693609" }, { - "rshares": "15569866401", - "voter": "digital-wisdom" + "voter": "brendio", + "rshares": "5465055585" }, { - "rshares": "3791392195", - "voter": "ethical-ai" + "voter": "gmurph", + "rshares": "2084677795" }, { - "rshares": "53252658", - "voter": "stroully" + "voter": "midnightoil", + "rshares": "18607683624" }, { - "rshares": "6830877679", - "voter": "jwaser" + "voter": "kalimor", + "rshares": "2280336943" }, { - "rshares": "52916909", - "voter": "thadm" + "voter": "glitterfart", + "rshares": "504711698206" }, { - "rshares": "52915101", - "voter": "prof" + "voter": "laonie4", + "rshares": "22951578069" }, { - "rshares": "2274469633", - "voter": "richhersey" + "voter": "laonie5", + "rshares": "22949307467" }, { - "rshares": "1688383151", - "voter": "smisi" + "voter": "laonie6", + "rshares": "22946449112" }, { - "rshares": "123190927", - "voter": "tito-baron" + "voter": "laonie7", + "rshares": "22942428841" }, { - "rshares": "53413720", - "voter": "lighter" + "voter": "kurtbeil", + "rshares": "3489545901" }, { - "rshares": "52560790", - "voter": "yorsens" + "voter": "laonie8", + "rshares": "22939097897" }, { - "rshares": "52242652", - "voter": "bane" + "voter": "laonie9", + "rshares": "22936432119" }, { - "rshares": "52236265", - "voter": "vive" + "voter": "xiaohui", + "rshares": "46536921016" }, { - "rshares": "52230725", - "voter": "coad" + "voter": "terrycraft", + "rshares": "177527074798" }, { - "rshares": "2675382304", - "voter": "bwaser" + "voter": "dolov", + "rshares": "1321003450" }, { - "rshares": "53003720", - "voter": "sofa" + "voter": "bigsambucca", + "rshares": "88179884" }, { - "rshares": "83883352848", - "voter": "cnfund" + "voter": "elfkitchen", + "rshares": "2287717822" }, { - "rshares": "348073541", - "voter": "bones261" + "voter": "joele", + "rshares": "105894845081" }, { - "rshares": "9054592458", - "voter": "brains" + "voter": "oflyhigh", + "rshares": "6166349652" }, { - "rshares": "633672233", - "voter": "bones555" + "voter": "paynode", + "rshares": "2229123966" }, { - "rshares": "53055629", - "voter": "ailo" + "voter": "xiaokongcom", + "rshares": "1566982177" }, { - "rshares": "5893247853", - "voter": "chick1" + "voter": "xcepta", + "rshares": "253808801" }, { - "rshares": "51637870", - "voter": "aoki" + "voter": "xianjun", + "rshares": "3158713250" }, { - "rshares": "52621399", - "voter": "typingagent" + "voter": "borran", + "rshares": "12796476601" }, { - "rshares": "52634176", - "voter": "cwb" + "voter": "jupiter.zeus", + "rshares": "64119004" }, { - "rshares": "3623547539", - "voter": "slayer" + "voter": "stevescriber", + "rshares": "70633121" }, { - "rshares": "407075832", - "voter": "anomaly" + "voter": "loli", + "rshares": "50027573" }, { - "rshares": "2401189699", - "voter": "ellepdub" + "voter": "nano2nd", + "rshares": "51199976" }, { - "rshares": "172324884", - "voter": "ola1" + "voter": "njall", + "rshares": "2249451928" }, { - "rshares": "4601294293", - "voter": "michelle.gent" + "voter": "microluck", + "rshares": "206879958" }, { - "rshares": "12396524304", - "voter": "herpetologyguy" + "voter": "userlogin", + "rshares": "6547835526" }, { - "rshares": "51470533", - "voter": "eavy" + "voter": "rubenalexander", + "rshares": "6802729666" }, { - "rshares": "51484593", - "voter": "roto" + "voter": "photo00", + "rshares": "59219258" }, { - "rshares": "4816686066", - "voter": "morgan.waser" + "voter": "tagira", + "rshares": "604279479" }, { - "rshares": "291933324", - "voter": "thefinanceguy" + "voter": "chinadaily", + "rshares": "2131733339" }, { - "rshares": "51235131", - "voter": "glassheart" + "voter": "pollina", + "rshares": "108403024" }, { - "rshares": "51230296", - "voter": "steemq" + "voter": "levycore", + "rshares": "2649789126" }, { - "rshares": "51227561", - "voter": "battalar" + "voter": "laonie10", + "rshares": "22930483067" }, { - "rshares": "50938725", - "voter": "haved" + "voter": "mrlogic", + "rshares": "332237822" }, { - "rshares": "50871059", - "voter": "motion" + "voter": "mandibil", + "rshares": "59229074587" }, { - "rshares": "50708837", - "voter": "ardly" + "voter": "shadowspub", + "rshares": "2132454023" }, { - "rshares": "50572441", - "voter": "unilever" + "voter": "bonapetit", + "rshares": "59067894" }, { - "rshares": "50570250", - "voter": "ziggo" + "voter": "richardcrill", + "rshares": "5053531368" }, { - "rshares": "50565798", - "voter": "penthouse" + "voter": "laonie11", + "rshares": "22091338934" }, { - "rshares": "417240825", - "voter": "bapparabi" + "voter": "eight-rad", + "rshares": "2101664455" }, { - "rshares": "50433760", - "voter": "morse" + "voter": "xanoxt", + "rshares": "3336919086" }, { - "rshares": "50372583", - "voter": "carre" + "voter": "davidjkelley", + "rshares": "1661479473" }, { - "rshares": "88794357432", - "voter": "btshuang" + "voter": "team101", + "rshares": "187911420" }, { - "rshares": "3229471810", - "voter": "dodders007" + "voter": "rusla", + "rshares": "109225703" }, { - "rshares": "3689616990", - "voter": "strong-ai" + "voter": "mscleverclocks", + "rshares": "4892645779" }, { - "rshares": "538350430", - "voter": "grisha-danunaher" + "voter": "ksena", + "rshares": "727103786" }, { - "rshares": "74444594", - "voter": "igtes" + "voter": "sponge-bob", + "rshares": "11069296957" }, { - "rshares": "148119740", - "voter": "buffett" + "voter": "l0k1", + "rshares": "4268200560" }, { - "rshares": "162917785", - "voter": "ctu" + "voter": "digital-wisdom", + "rshares": "15569990970" }, { - "rshares": "162911190", - "voter": "front" + "voter": "ethical-ai", + "rshares": "3791420478" }, { - "rshares": "159394872", - "voter": "prosto-veter" + "voter": "jwaser", + "rshares": "6830905360" }, { - "rshares": "162375387", - "voter": "yourase1" + "voter": "apparat", + "rshares": "50858762" }, { - "rshares": "161839498", - "voter": "durex" + "voter": "asksisk", + "rshares": "212888896291" }, { - "rshares": "160973134", - "voter": "gravity" + "voter": "bwaser", + "rshares": "2675382304" }, { - "rshares": "160957729", - "voter": "realtime" + "voter": "panther", + "rshares": "350998373" }, { - "rshares": "160326045", - "voter": "planet" + "voter": "ct-gurus", + "rshares": "659649765" }, { - "rshares": "159984914", - "voter": "correct" + "voter": "park.bom", + "rshares": "54793782" }, { - "rshares": "159175576", - "voter": "fallout" + "voter": "charlieshrem", + "rshares": "395173675944" }, { - "rshares": "158777847", - "voter": "agundoba" + "voter": "tracemayer", + "rshares": "60104450664" }, { - "rshares": "158726294", - "voter": "alberged" + "voter": "brains", + "rshares": "23239991726" }, { - "rshares": "158718933", - "voter": "alene33" + "voter": "anomaly", + "rshares": "407083055" }, { - "rshares": "158713085", - "voter": "argesti" + "voter": "ellepdub", + "rshares": "2401189699" }, { - "rshares": "158709279", - "voter": "artamm" + "voter": "inarix03", + "rshares": "61292139" }, { - "rshares": "158704921", - "voter": "artyne43" + "voter": "ola1", + "rshares": "172352271" }, { - "rshares": "158701918", - "voter": "odlaen" + "voter": "herpetologyguy", + "rshares": "12396603737" }, { - "rshares": "158692611", - "voter": "brenna88" + "voter": "drac59", + "rshares": "51826827" }, { - "rshares": "158688416", - "voter": "fortelyn" + "voter": "morgan.waser", + "rshares": "4816713747" }, { - "rshares": "158684075", - "voter": "cheva0" + "voter": "thefinanceguy", + "rshares": "297771990" }, { - "rshares": "158678677", - "voter": "peris2" + "voter": "anns", + "rshares": "1258344048" }, { - "rshares": "158667376", - "voter": "gilbertur" + "voter": "oxygen", + "rshares": "50907857" }, { - "rshares": "158658206", - "voter": "irdaince" + "voter": "cyan", + "rshares": "50875769" }, { - "rshares": "158655323", - "voter": "whenda3" + "voter": "jumbo", + "rshares": "50868434" }, { - "rshares": "158647100", - "voter": "brenkelley" + "voter": "sting", + "rshares": "50865840" }, { - "rshares": "158640828", - "voter": "donaigh" + "voter": "factom", + "rshares": "50796122" }, { - "rshares": "158637072", - "voter": "baire00" + "voter": "autodesk", + "rshares": "50794039" }, { - "rshares": "158624650", - "voter": "gundalach" + "voter": "brazzers", + "rshares": "50568084" }, { - "rshares": "158620061", - "voter": "childirac" + "voter": "rabobank", + "rshares": "50543061" }, { - "rshares": "158609836", - "voter": "guoteff" + "voter": "fenix", + "rshares": "50538694" }, { - "rshares": "158541985", - "voter": "citigroup" + "voter": "albertheijn", + "rshares": "50349676" }, { - "rshares": "157896009", - "voter": "wymmendycer" + "voter": "strong-ai", + "rshares": "3689644671" }, { - "rshares": "157892476", - "voter": "fariuss" + "voter": "ninjapainter", + "rshares": "52329350" }, { - "rshares": "157889502", - "voter": "chutec" + "voter": "darkminded153", + "rshares": "254506659" }, { - "rshares": "157887016", - "voter": "udoladhnak" + "voter": "grisha-danunaher", + "rshares": "527435916" }, { - "rshares": "157883027", - "voter": "brochari" + "voter": "ctu", + "rshares": "162917785" }, { - "rshares": "157877631", - "voter": "hervedui" + "voter": "front", + "rshares": "162911190" }, { - "rshares": "157876011", - "voter": "isetar" + "voter": "rusteemitblog", + "rshares": "1630327346" }, { - "rshares": "157874479", - "voter": "pollengus" + "voter": "pyro", + "rshares": "161089804" }, { - "rshares": "157871566", - "voter": "valiner" + "voter": "xtreme", + "rshares": "159025535" }, { - "rshares": "157869417", - "voter": "cunod" + "voter": "icesteem", + "rshares": "155528114" }, { - "rshares": "157866738", - "voter": "trentegan" + "voter": "steem-wallet", + "rshares": "158602900" }, { - "rshares": "157864709", - "voter": "shenburen" + "voter": "steemthis", + "rshares": "158560941" }, { - "rshares": "157861808", - "voter": "margery2" + "voter": "dealzgal", + "rshares": "74838700" }, { - "rshares": "157860265", - "voter": "thiner" + "voter": "orenshani7", + "rshares": "255357124" }, { - "rshares": "157857120", - "voter": "joycery" + "voter": "storage", + "rshares": "68013381" }, { - "rshares": "157855001", - "voter": "cuiliobeth" + "voter": "blackmarket", + "rshares": "58460105" }, { - "rshares": "157853250", - "voter": "gwilion" + "voter": "gifts", + "rshares": "61530871" }, { - "rshares": "157847571", - "voter": "damul" + "voter": "expat", + "rshares": "93882016" }, { - "rshares": "157845805", - "voter": "youthan" + "voter": "dimaisrael", + "rshares": "154566975" }, { - "rshares": "188144802", - "voter": "antaja" + "voter": "steemlift", + "rshares": "1593664040" }, { - "rshares": "156241596", - "voter": "royfft" + "voter": "toddemaher1", + "rshares": "138651704" } ], - "author": "masteryoda", - "author_payout_value": "0.000 HBD", "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 210, + "flag_weight": 0.0 + }, "beneficiaries": [], - "blacklists": [], - "body": "![photo](http://i.imgsafe.org/81a1095cd2.png)\n\n- - -\n\nThis report covers payouts made between:\n\n**September 8, 2016, 12:00 am UTC** and **September 14, 2016, 11:59 pm UTC**\n\nTotal SBD paid: **136 116.418 SBD**\n\nTotal VESTS paid: **714 086 946.799 VESTS**\n\n- - -\n\n### SBD and VESTS payouts chart:\n![photo](http://imgh.us/canvas2_1.png)\n\n- - -\n\n### Top 100 overall SBD earners:\n|Rank | Account | Posts |SBD | VESTS |\n| :-----| ------------- |-------------:|-------------:| -----:|\n|1|[@ericvancewalton](https://steemit.com/@ericvancewalton)|15|6 077.522|24 596 951.571|\n|2|[@roelandp](https://steemit.com/@roelandp)|5|5 750.861|26 290 325.567|\n|3|[@gavvet](https://steemit.com/@gavvet)|29|5 680.552|23 514 590.090|\n|4|[@knozaki2015](https://steemit.com/@knozaki2015)|27|4 089.160|16 881 905.884|\n|5|[@sirwinchester](https://steemit.com/@sirwinchester)|20|3 196.259|13 196 949.343|\n|6|[@terrycraft](https://steemit.com/@terrycraft)|22|2 997.141|12 216 236.410|\n|7|[@calaber24p](https://steemit.com/@calaber24p)|9|2 411.786|10 175 362.253|\n|8|[@dollarvigilante](https://steemit.com/@dollarvigilante)|9|2 135.290|9 376 253.261|\n|9|[@someguy123](https://steemit.com/@someguy123)|11|1 852.735|7 812 606.655|\n|10|[@ozchartart](https://steemit.com/@ozchartart)|13|1 771.698|7 215 740.701|\n|11|[@infovore](https://steemit.com/@infovore)|5|1 705.589|6 924 653.829|\n|12|[@lifeisawesome](https://steemit.com/@lifeisawesome)|6|1 689.879|6 989 106.948|\n|13|[@dantheman](https://steemit.com/@dantheman)|11|1 612.428|8 604 664.210|\n|14|[@jamielefay](https://steemit.com/@jamielefay)|4|1 607.864|6 411 495.342|\n|15|[@kevinwong](https://steemit.com/@kevinwong)|6|1 525.609|6 542 045.016|\n|16|[@charlieshrem](https://steemit.com/@charlieshrem)|4|1 500.105|6 557 010.291|\n|17|[@jesta](https://steemit.com/@jesta)|9|1 492.300|6 472 103.097|\n|18|[@masteryoda](https://steemit.com/@masteryoda)|16|1 423.208|6 023 057.885|\n|19|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|9|1 324.346|5 343 516.577|\n|20|[@katecloud](https://steemit.com/@katecloud)|7|1 265.447|5 136 897.795|\n|21|[@timsaid](https://steemit.com/@timsaid)|10|1 153.420|4 999 746.262|\n|22|[@sascha](https://steemit.com/@sascha)|2|1 152.462|4 737 155.424|\n|23|[@honeyscribe](https://steemit.com/@honeyscribe)|6|1 147.954|4 693 320.648|\n|24|[@cryptogee](https://steemit.com/@cryptogee)|4|1 145.094|4 704 779.347|\n|25|[@krishtopa](https://steemit.com/@krishtopa)|11|1 143.346|4 834 060.865|\n|26|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|8|1 138.985|4 813 642.940|\n|27|[@good-karma](https://steemit.com/@good-karma)|6|1 118.049|5 063 419.555|\n|28|[@lobotony](https://steemit.com/@lobotony)|2|1 084.459|4 247 247.973|\n|29|[@markrmorrisjr](https://steemit.com/@markrmorrisjr)|21|1 058.539|4 369 963.419|\n|30|[@curie](https://steemit.com/@curie)|5|1 056.415|4 572 371.506|\n|31|[@opheliafu](https://steemit.com/@opheliafu)|19|1 005.845|4 156 440.681|\n|32|[@steve-walschot](https://steemit.com/@steve-walschot)|4|972.080|4 394 483.105|\n|33|[@marius19](https://steemit.com/@marius19)|23|951.573|4 011 036.875|\n|34|[@serejandmyself](https://steemit.com/@serejandmyself)|11|941.108|3 990 747.231|\n|35|[@steempower](https://steemit.com/@steempower)|4|848.391|3 693 774.188|\n|36|[@aizensou](https://steemit.com/@aizensou)|4|813.814|3 460 586.334|\n|37|[@furion](https://steemit.com/@furion)|7|776.731|3 320 010.859|\n|38|[@officialfuzzy](https://steemit.com/@officialfuzzy)|5|769.671|3 256 431.084|\n|39|[@kencode](https://steemit.com/@kencode)|3|769.635|3 084 463.879|\n|40|[@clayop](https://steemit.com/@clayop)|9|744.729|3 588 626.269|\n|41|[@larkenrose](https://steemit.com/@larkenrose)|8|718.161|2 952 298.454|\n|42|[@steemdrive](https://steemit.com/@steemdrive)|1|713.054|3 137 516.266|\n|43|[@jpiper20](https://steemit.com/@jpiper20)|21|704.591|2 861 337.136|\n|44|[@xeroc](https://steemit.com/@xeroc)|3|700.860|3 667 185.079|\n|45|[@steemship](https://steemit.com/@steemship)|3|700.485|2 935 488.501|\n|46|[@steemcleaners](https://steemit.com/@steemcleaners)|3|659.132|2 596 140.333|\n|47|[@complexring](https://steemit.com/@complexring)|2|647.683|6 065 457.160|\n|48|[@charleshosk](https://steemit.com/@charleshosk)|2|585.319|2 399 760.878|\n|49|[@hisnameisolllie](https://steemit.com/@hisnameisolllie)|11|581.385|2 338 969.539|\n|50|[@sweetsssj](https://steemit.com/@sweetsssj)|14|523.979|2 170 158.700|\n|51|[@livingthedream](https://steemit.com/@livingthedream)|4|510.792|2 027 254.578|\n|52|[@eneismijmich](https://steemit.com/@eneismijmich)|9|504.116|2 061 771.205|\n|53|[@sterlinluxan](https://steemit.com/@sterlinluxan)|7|500.904|2 022 584.130|\n|54|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|1|497.669|2 274 840.954|\n|55|[@b0y2k](https://steemit.com/@b0y2k)|2|497.114|2 132 474.149|\n|56|[@fairytalelife](https://steemit.com/@fairytalelife)|7|481.143|2 023 586.799|\n|57|[@corbettreport](https://steemit.com/@corbettreport)|6|457.908|1 979 421.716|\n|58|[@kental](https://steemit.com/@kental)|19|435.486|1 746 992.520|\n|59|[@barrycooper](https://steemit.com/@barrycooper)|4|433.548|1 887 586.618|\n|60|[@storyseeker](https://steemit.com/@storyseeker)|4|430.221|1 849 858.609|\n|61|[@jacor](https://steemit.com/@jacor)|11|428.758|1 774 043.305|\n|62|[@bravenewcoin](https://steemit.com/@bravenewcoin)|14|427.758|1 764 533.073|\n|63|[@alexbeyman](https://steemit.com/@alexbeyman)|36|409.397|1 679 902.161|\n|64|[@gangsta](https://steemit.com/@gangsta)|5|405.820|1 620 709.343|\n|65|[@dannystravels](https://steemit.com/@dannystravels)|1|404.374|1 568 065.581|\n|66|[@smailer](https://steemit.com/@smailer)|11|400.558|1 679 104.012|\n|67|[@mibenkito](https://steemit.com/@mibenkito)|1|399.692|1 722 718.612|\n|68|[@cass](https://steemit.com/@cass)|1|391.041|1 993 157.960|\n|69|[@razvanelulmarin](https://steemit.com/@razvanelulmarin)|13|373.350|1 644 174.858|\n|70|[@mrs.steemit](https://steemit.com/@mrs.steemit)|9|368.118|1 530 900.679|\n|71|[@jamtaylor](https://steemit.com/@jamtaylor)|14|358.256|1 555 939.370|\n|72|[@senseiteekay](https://steemit.com/@senseiteekay)|11|357.948|1 517 489.098|\n|73|[@healthyrecipes](https://steemit.com/@healthyrecipes)|3|350.465|1 480 991.813|\n|74|[@aggroed](https://steemit.com/@aggroed)|14|348.227|1 428 790.019|\n|75|[@celebr1ty](https://steemit.com/@celebr1ty)|5|341.894|1 368 751.869|\n|76|[@dana-edwards](https://steemit.com/@dana-edwards)|10|337.839|1 341 593.683|\n|77|[@cryptovpn](https://steemit.com/@cryptovpn)|5|330.063|1 278 755.869|\n|78|[@nanzo-scoop](https://steemit.com/@nanzo-scoop)|17|330.055|2 655 433.594|\n|79|[@fyrstikken](https://steemit.com/@fyrstikken)|23|325.469|1 521 433.247|\n|80|[@richman](https://steemit.com/@richman)|5|321.227|1 332 080.256|\n|81|[@enric](https://steemit.com/@enric)|1|311.640|1 208 207.684|\n|82|[@firepower](https://steemit.com/@firepower)|1|308.085|1 405 620.303|\n|83|[@donkeypong](https://steemit.com/@donkeypong)|4|306.922|1 672 530.744|\n|84|[@churdtzu](https://steemit.com/@churdtzu)|7|305.428|1 246 268.798|\n|85|[@pfunk](https://steemit.com/@pfunk)|6|304.288|1 696 845.158|\n|86|[@canadian-coconut](https://steemit.com/@canadian-coconut)|7|303.757|1 247 066.035|\n|87|[@alexgr](https://steemit.com/@alexgr)|7|296.946|1 259 479.298|\n|88|[@quinneaker](https://steemit.com/@quinneaker)|15|293.521|1 241 558.241|\n|89|[@nekromarinist](https://steemit.com/@nekromarinist)|10|288.002|1 136 848.911|\n|90|[@liberosist](https://steemit.com/@liberosist)|6|284.471|1 407 917.609|\n|91|[@sigmajin](https://steemit.com/@sigmajin)|3|276.147|1 127 048.263|\n|92|[@aaronkoenig](https://steemit.com/@aaronkoenig)|9|274.485|1 168 689.323|\n|93|[@tracemayer](https://steemit.com/@tracemayer)|7|273.934|1 170 292.676|\n|94|[@hilarski](https://steemit.com/@hilarski)|12|272.752|1 111 134.239|\n|95|[@shammyshiggs](https://steemit.com/@shammyshiggs)|6|267.958|1 068 640.107|\n|96|[@halo](https://steemit.com/@halo)|34|265.233|1 109 892.049|\n|97|[@rok-sivante](https://steemit.com/@rok-sivante)|8|261.410|1 152 452.980|\n|98|[@vermillion666](https://steemit.com/@vermillion666)|2|260.282|1 015 370.956|\n|99|[@kaylinart](https://steemit.com/@kaylinart)|31|258.027|1 209 969.357|\n|100|[@kobur](https://steemit.com/@kobur)|9|257.060|1 001 194.076|\n\n\n- - -\n\n### Top 100 overall VESTS earners:\n|Rank | Account | SBD | VESTS |\n| :-----| ------------- |-------------:| -----:|\n|1|[@blocktrades](https://steemit.com/@blocktrades)|6.267|31 932 805.126|\n|2|[@roelandp](https://steemit.com/@roelandp)|5 750.861|26 290 325.567|\n|3|[@ericvancewalton](https://steemit.com/@ericvancewalton)|6 077.522|24 596 951.571|\n|4|[@gavvet](https://steemit.com/@gavvet)|5 680.552|23 514 590.090|\n|5|[@knozaki2015](https://steemit.com/@knozaki2015)|4 089.160|16 881 905.884|\n|6|[@sirwinchester](https://steemit.com/@sirwinchester)|3 196.259|13 196 949.343|\n|7|[@terrycraft](https://steemit.com/@terrycraft)|2 997.141|12 216 236.410|\n|8|[@calaber24p](https://steemit.com/@calaber24p)|2 411.786|10 175 362.253|\n|9|[@smooth](https://steemit.com/@smooth)|35.690|9 725 180.893|\n|10|[@dollarvigilante](https://steemit.com/@dollarvigilante)|2 135.290|9 376 253.261|\n|11|[@berniesanders](https://steemit.com/@berniesanders)|3.218|9 025 844.273|\n|12|[@dantheman](https://steemit.com/@dantheman)|1 612.428|8 604 664.210|\n|13|[@someguy123](https://steemit.com/@someguy123)|1 852.735|7 812 606.655|\n|14|[@ozchartart](https://steemit.com/@ozchartart)|1 771.698|7 215 740.701|\n|15|[@lifeisawesome](https://steemit.com/@lifeisawesome)|1 689.879|6 989 106.948|\n|16|[@infovore](https://steemit.com/@infovore)|1 705.589|6 924 653.829|\n|17|[@wang](https://steemit.com/@wang)|0.000|6 613 063.186|\n|18|[@charlieshrem](https://steemit.com/@charlieshrem)|1 500.105|6 557 010.291|\n|19|[@kevinwong](https://steemit.com/@kevinwong)|1 525.609|6 542 045.016|\n|20|[@jesta](https://steemit.com/@jesta)|1 492.300|6 472 103.097|\n|21|[@jamielefay](https://steemit.com/@jamielefay)|1 607.864|6 411 495.342|\n|22|[@complexring](https://steemit.com/@complexring)|647.683|6 065 457.160|\n|23|[@masteryoda](https://steemit.com/@masteryoda)|1 423.208|6 023 057.885|\n|24|[@nextgencrypto](https://steemit.com/@nextgencrypto)|7.149|5 399 639.966|\n|25|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|1 324.346|5 343 516.577|\n|26|[@katecloud](https://steemit.com/@katecloud)|1 265.447|5 136 897.795|\n|27|[@good-karma](https://steemit.com/@good-karma)|1 118.049|5 063 419.555|\n|28|[@timsaid](https://steemit.com/@timsaid)|1 153.420|4 999 746.262|\n|29|[@krishtopa](https://steemit.com/@krishtopa)|1 143.346|4 834 060.865|\n|30|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|1 138.985|4 813 642.940|\n|31|[@sascha](https://steemit.com/@sascha)|1 152.462|4 737 155.424|\n|32|[@cryptogee](https://steemit.com/@cryptogee)|1 145.094|4 704 779.347|\n|33|[@honeyscribe](https://steemit.com/@honeyscribe)|1 147.954|4 693 320.648|\n|34|[@curie](https://steemit.com/@curie)|1 056.415|4 572 371.506|\n|35|[@steve-walschot](https://steemit.com/@steve-walschot)|972.080|4 394 483.105|\n|36|[@markrmorrisjr](https://steemit.com/@markrmorrisjr)|1 058.539|4 369 963.419|\n|37|[@lobotony](https://steemit.com/@lobotony)|1 084.459|4 247 247.973|\n|38|[@steemed](https://steemit.com/@steemed)|32.767|4 188 255.968|\n|39|[@opheliafu](https://steemit.com/@opheliafu)|1 005.845|4 156 440.681|\n|40|[@riverhead](https://steemit.com/@riverhead)|7.248|4 045 823.778|\n|41|[@marius19](https://steemit.com/@marius19)|951.573|4 011 036.875|\n|42|[@serejandmyself](https://steemit.com/@serejandmyself)|941.108|3 990 747.231|\n|43|[@pharesim](https://steemit.com/@pharesim)|0.000|3 875 558.313|\n|44|[@steemit200](https://steemit.com/@steemit200)|0.000|3 768 755.702|\n|45|[@steempower](https://steemit.com/@steempower)|848.391|3 693 774.188|\n|46|[@xeroc](https://steemit.com/@xeroc)|700.860|3 667 185.079|\n|47|[@clayop](https://steemit.com/@clayop)|744.729|3 588 626.269|\n|48|[@aizensou](https://steemit.com/@aizensou)|813.814|3 460 586.334|\n|49|[@furion](https://steemit.com/@furion)|776.731|3 320 010.859|\n|50|[@xeldal](https://steemit.com/@xeldal)|0.393|3 300 335.411|\n|51|[@ned](https://steemit.com/@ned)|32.419|3 290 566.039|\n|52|[@officialfuzzy](https://steemit.com/@officialfuzzy)|769.671|3 256 431.084|\n|53|[@steemdrive](https://steemit.com/@steemdrive)|713.054|3 137 516.266|\n|54|[@joseph](https://steemit.com/@joseph)|57.350|3 085 782.531|\n|55|[@kencode](https://steemit.com/@kencode)|769.635|3 084 463.879|\n|56|[@larkenrose](https://steemit.com/@larkenrose)|718.161|2 952 298.454|\n|57|[@steemship](https://steemit.com/@steemship)|700.485|2 935 488.501|\n|58|[@recursive](https://steemit.com/@recursive)|6.621|2 918 906.746|\n|59|[@jpiper20](https://steemit.com/@jpiper20)|704.591|2 861 337.136|\n|60|[@hr1](https://steemit.com/@hr1)|0.300|2 780 636.062|\n|61|[@nanzo-scoop](https://steemit.com/@nanzo-scoop)|330.055|2 655 433.594|\n|62|[@laonie](https://steemit.com/@laonie)|116.404|2 619 872.564|\n|63|[@steemcleaners](https://steemit.com/@steemcleaners)|659.132|2 596 140.333|\n|64|[@charleshosk](https://steemit.com/@charleshosk)|585.319|2 399 760.878|\n|65|[@hisnameisolllie](https://steemit.com/@hisnameisolllie)|581.385|2 338 969.539|\n|66|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|497.669|2 274 840.954|\n|67|[@sweetsssj](https://steemit.com/@sweetsssj)|523.979|2 170 158.700|\n|68|[@b0y2k](https://steemit.com/@b0y2k)|497.114|2 132 474.149|\n|69|[@eneismijmich](https://steemit.com/@eneismijmich)|504.116|2 061 771.205|\n|70|[@livingthedream](https://steemit.com/@livingthedream)|510.792|2 027 254.578|\n|71|[@fairytalelife](https://steemit.com/@fairytalelife)|481.143|2 023 586.799|\n|72|[@sterlinluxan](https://steemit.com/@sterlinluxan)|500.904|2 022 584.130|\n|73|[@cass](https://steemit.com/@cass)|391.041|1 993 157.960|\n|74|[@corbettreport](https://steemit.com/@corbettreport)|457.908|1 979 421.716|\n|75|[@barrycooper](https://steemit.com/@barrycooper)|433.548|1 887 586.618|\n|76|[@jamesc](https://steemit.com/@jamesc)|0.153|1 871 857.951|\n|77|[@storyseeker](https://steemit.com/@storyseeker)|430.221|1 849 858.609|\n|78|[@jacor](https://steemit.com/@jacor)|428.758|1 774 043.305|\n|79|[@bravenewcoin](https://steemit.com/@bravenewcoin)|427.758|1 764 533.073|\n|80|[@kental](https://steemit.com/@kental)|435.486|1 746 992.520|\n|81|[@au1nethyb1](https://steemit.com/@au1nethyb1)|0.000|1 740 612.769|\n|82|[@mibenkito](https://steemit.com/@mibenkito)|399.692|1 722 718.612|\n|83|[@pfunk](https://steemit.com/@pfunk)|304.288|1 696 845.158|\n|84|[@alexbeyman](https://steemit.com/@alexbeyman)|409.397|1 679 902.161|\n|85|[@smailer](https://steemit.com/@smailer)|400.558|1 679 104.012|\n|86|[@badassmother](https://steemit.com/@badassmother)|0.000|1 679 019.431|\n|87|[@donkeypong](https://steemit.com/@donkeypong)|306.922|1 672 530.744|\n|88|[@razvanelulmarin](https://steemit.com/@razvanelulmarin)|373.350|1 644 174.858|\n|89|[@summon](https://steemit.com/@summon)|72.228|1 622 251.187|\n|90|[@gangsta](https://steemit.com/@gangsta)|405.820|1 620 709.343|\n|91|[@silver](https://steemit.com/@silver)|0.000|1 609 716.257|\n|92|[@dannystravels](https://steemit.com/@dannystravels)|404.374|1 568 065.581|\n|93|[@jamtaylor](https://steemit.com/@jamtaylor)|358.256|1 555 939.370|\n|94|[@mrs.steemit](https://steemit.com/@mrs.steemit)|368.118|1 530 900.679|\n|95|[@fyrstikken](https://steemit.com/@fyrstikken)|325.469|1 521 433.247|\n|96|[@senseiteekay](https://steemit.com/@senseiteekay)|357.948|1 517 489.098|\n|97|[@healthyrecipes](https://steemit.com/@healthyrecipes)|350.465|1 480 991.813|\n|98|[@satoshifund](https://steemit.com/@satoshifund)|0.000|1 472 512.796|\n|99|[@kushed](https://steemit.com/@kushed)|0.160|1 449 619.943|\n|100|[@aggroed](https://steemit.com/@aggroed)|348.227|1 428 790.019|\n\n\n- - -\n\n### Top 100 paying posts (author reward):\n|Rank | Account | SBD | VESTS | POST|\n| :-----| ------------- |-------------:| -----:|:-----|\n|1|[@roelandp](https://steemit.com/@roelandp)|5417.783|24936028.708622|[save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-n](https://steemit.com/all/@roelandp/save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl)|\n|2|[@someguy123](https://steemit.com/@someguy123)|1314.389|5601399.952738|[understeem-steemit-without-censorship-nsfw-filter-removed-vi](https://steemit.com/all/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor)|\n|3|[@kevinwong](https://steemit.com/@kevinwong)|971.542|4190657.642935|[logo-contest-for-project-curie-calling-all-designers](https://steemit.com/all/@kevinwong/logo-contest-for-project-curie-calling-all-designers)|\n|4|[@steve-walschot](https://steemit.com/@steve-walschot)|937.502|4105645.799136|[investigating-the-wale-scam-assumptions-above-knowledge](https://steemit.com/all/@steve-walschot/investigating-the-wale-scam-assumptions-above-knowledge)|\n|5|[@good-karma](https://steemit.com/@good-karma)|909.717|4210888.383925|[esteem-ios-1-2-2-released-advanced-login-signup-patch-post-e](https://steemit.com/all/@good-karma/esteem-ios-1-2-2-released-advanced-login-signup-patch-post-edits-photo-inclusion-on-posts-new-navigation-filter)|\n|6|[@cryptogee](https://steemit.com/@cryptogee)|802.871|3114844.305012|[a-quick-fix-for-a-broken-capitalist-society](https://steemit.com/all/@cryptogee/a-quick-fix-for-a-broken-capitalist-society)|\n|7|[@infovore](https://steemit.com/@infovore)|780.138|3145392.168091|[steemmag-steemit-s-weekend-digest-9-of-community-curation-an](https://steemit.com/all/@infovore/steemmag-steemit-s-weekend-digest-9-of-community-curation-and-reputation-chats-with-a-whale-steemit-chat-lead-moderators-a-day)|\n|8|[@steemdrive](https://steemit.com/@steemdrive)|709.735|3021388.477665|[steemdrive-second-proof-of-successful-crowdfunded-billboard-](https://steemit.com/all/@steemdrive/steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa)|\n|9|[@ericvancewalton](https://steemit.com/@ericvancewalton)|694.130|2692969.805438|[alarm-clock-dawn-an-original-novel-episode-22](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-22)|\n|10|[@sascha](https://steemit.com/@sascha)|672.279|2606133.315123|[our-life-on-planet-earth-part-8-the-meaning-of-life](https://steemit.com/all/@sascha/our-life-on-planet-earth-part-8-the-meaning-of-life)|\n|11|[@jesta](https://steemit.com/@jesta)|672.102|3084315.315130|[steem-bounty-system-milestone-1-proposal](https://steemit.com/all/@jesta/steem-bounty-system-milestone-1-proposal)|\n|12|[@steempower](https://steemit.com/@steempower)|670.009|2855734.328170|[bitshares-state-of-the-network-11th-sept-2016](https://steemit.com/all/@steempower/bitshares-state-of-the-network-11th-sept-2016)|\n|13|[@complexring](https://steemit.com/@complexring)|635.717|2707974.667320|[bypassing-the-great-firewall-of-china](https://steemit.com/all/@complexring/bypassing-the-great-firewall-of-china)|\n|14|[@katecloud](https://steemit.com/@katecloud)|628.891|2463723.749341|[a-photo-the-progression-of-a-painting-and-a-poem-by-kate-clo](https://steemit.com/all/@katecloud/a-photo-the-progression-of-a-painting-and-a-poem-by-kate-cloud)|\n|15|[@infovore](https://steemit.com/@infovore)|623.373|2415144.530628|[the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-th](https://steemit.com/all/@infovore/the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-the-internables-trend)|\n|16|[@ericvancewalton](https://steemit.com/@ericvancewalton)|605.001|2343398.347985|[the-cliff-an-original-poem](https://steemit.com/all/@ericvancewalton/the-cliff-an-original-poem)|\n|17|[@ericvancewalton](https://steemit.com/@ericvancewalton)|599.216|2408866.584548|[rush-hour-train-an-original-poem](https://steemit.com/all/@ericvancewalton/rush-hour-train-an-original-poem)|\n|18|[@dantheman](https://steemit.com/@dantheman)|588.696|2270663.485250|[censorship-is-impossible-in-a-free-society](https://steemit.com/all/@dantheman/censorship-is-impossible-in-a-free-society)|\n|19|[@ericvancewalton](https://steemit.com/@ericvancewalton)|573.497|2217973.305761|[too-simple-to-see-an-original-poem](https://steemit.com/all/@ericvancewalton/too-simple-to-see-an-original-poem)|\n|20|[@lobotony](https://steemit.com/@lobotony)|559.734|2169953.235319|[a-trip-to-the-north-part-1-of-2-iceland](https://steemit.com/all/@lobotony/a-trip-to-the-north-part-1-of-2-iceland)|\n|21|[@steemship](https://steemit.com/@steemship)|556.189|2365420.937467|[open-letter-to-ned-and-dan-you-badly-need-a-communications-c](https://steemit.com/all/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or)|\n|22|[@kevinwong](https://steemit.com/@kevinwong)|550.834|2135268.781675|[dayjob-ended-hello-steemit](https://steemit.com/all/@kevinwong/dayjob-ended-hello-steemit)|\n|23|[@ericvancewalton](https://steemit.com/@ericvancewalton)|539.244|2295220.650034|[alarm-clock-dawn-an-original-novel-episode-25](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-25)|\n|24|[@ericvancewalton](https://steemit.com/@ericvancewalton)|535.500|2075831.717451|[4ziyjc-alarm-clock-dawn-an-original-novel-episode-22](https://steemit.com/all/@ericvancewalton/4ziyjc-alarm-clock-dawn-an-original-novel-episode-22)|\n|25|[@lobotony](https://steemit.com/@lobotony)|524.725|2076637.525890|[a-trip-to-the-north-part-2-of-2-greenland](https://steemit.com/all/@lobotony/a-trip-to-the-north-part-2-of-2-greenland)|\n|26|[@dollarvigilante](https://steemit.com/@dollarvigilante)|522.074|2024561.204875|[gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-i](https://steemit.com/all/@dollarvigilante/gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-into-gold)|\n|27|[@calaber24p](https://steemit.com/@calaber24p)|516.871|2073762.161780|[the-evolution-of-virtual-economies-and-their-future-global-i](https://steemit.com/all/@calaber24p/the-evolution-of-virtual-economies-and-their-future-global-impact-on-the-world)|\n|28|[@jamielefay](https://steemit.com/@jamielefay)|515.285|1997372.750614|[ahe-ey-submission-an-original-novel-part-16](https://steemit.com/all/@jamielefay/ahe-ey-submission-an-original-novel-part-16)|\n|29|[@lifeisawesome](https://steemit.com/@lifeisawesome)|515.184|2076732.392526|[you-are-what-your-friends-are](https://steemit.com/all/@lifeisawesome/you-are-what-your-friends-are)|\n|30|[@ericvancewalton](https://steemit.com/@ericvancewalton)|512.929|1979697.284935|[alarm-clock-dawn-an-original-novel-episode-21](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-21)|\n|31|[@charlieshrem](https://steemit.com/@charlieshrem)|508.009|2110171.661194|[how-to-live-completely-off-steem-using-a-virtual-and-physica](https://steemit.com/all/@charlieshrem/how-to-live-completely-off-steem-using-a-virtual-and-physical-debit-card-topped-up-with-steem)|\n|32|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|497.660|2255006.094857|[the-lifecycle-of-a-song](https://steemit.com/all/@thisisbenbrick/the-lifecycle-of-a-song)|\n|33|[@timsaid](https://steemit.com/@timsaid)|493.545|1978954.745437|[life-explorers-the-human-senses-part-ii-hearing](https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-ii-hearing)|\n|34|[@gavvet](https://steemit.com/@gavvet)|483.546|2060779.396304|[crab-mentality-what-you-need-to-know-about-this-kind-of-degr](https://steemit.com/all/@gavvet/crab-mentality-what-you-need-to-know-about-this-kind-of-degrading-mentality-english-filipino)|\n|35|[@fairytalelife](https://steemit.com/@fairytalelife)|479.523|1927465.053480|[how-to-draw-a-braid](https://steemit.com/all/@fairytalelife/how-to-draw-a-braid)|\n|36|[@sascha](https://steemit.com/@sascha)|479.357|2090356.322663|[salt-as-an-energy-source-energetic-purification-with-salt](https://steemit.com/all/@sascha/salt-as-an-energy-source-energetic-purification-with-salt)|\n|37|[@ericvancewalton](https://steemit.com/@ericvancewalton)|459.391|1953748.642541|[walk-your-worries-an-original-poem](https://steemit.com/all/@ericvancewalton/walk-your-worries-an-original-poem)|\n|38|[@calaber24p](https://steemit.com/@calaber24p)|458.060|1948333.287074|[different-ways-to-think-about-your-time-and-money-to-lead-to](https://steemit.com/all/@calaber24p/different-ways-to-think-about-your-time-and-money-to-lead-to-better-financial-security)|\n|39|[@dollarvigilante](https://steemit.com/@dollarvigilante)|457.747|2096614.988536|[boom-end-game-nears-as-central-banks-buying-up-gold-mining-c](https://steemit.com/all/@dollarvigilante/boom-end-game-nears-as-central-banks-buying-up-gold-mining-companies)|\n|40|[@timsaid](https://steemit.com/@timsaid)|451.707|2069238.286170|[life-explorers-the-human-senses-part-iii-touch](https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-iii-touch)|\n|41|[@sterlinluxan](https://steemit.com/@sterlinluxan)|445.525|1790952.274641|[anarchapulco-is-one-of-the-most-world-changing-conferences-e](https://steemit.com/all/@sterlinluxan/anarchapulco-is-one-of-the-most-world-changing-conferences-ever)|\n|42|[@calaber24p](https://steemit.com/@calaber24p)|445.091|1730853.060104|[revamping-curation-is-the-way-to-increase-steem-power-demand](https://steemit.com/all/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand)|\n|43|[@jamielefay](https://steemit.com/@jamielefay)|444.129|1722107.917895|[ahe-ey-water-angels-an-original-novel-part-7-audiobook](https://steemit.com/all/@jamielefay/ahe-ey-water-angels-an-original-novel-part-7-audiobook)|\n|44|[@xeroc](https://steemit.com/@xeroc)|442.100|1715452.124498|[piston-how-to-use-it-for-multisignature-accounts](https://steemit.com/all/@xeroc/piston-how-to-use-it-for-multisignature-accounts)|\n|45|[@dollarvigilante](https://steemit.com/@dollarvigilante)|439.671|1772010.226787|[jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-sin](https://steemit.com/all/@dollarvigilante/jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-since-brexit)|\n|46|[@jamielefay](https://steemit.com/@jamielefay)|436.368|1860075.567439|[ahe-ey-allegiance-an-original-novel-part-18](https://steemit.com/all/@jamielefay/ahe-ey-allegiance-an-original-novel-part-18)|\n|47|[@jesta](https://steemit.com/@jesta)|427.963|1692835.407320|[steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-](https://steemit.com/all/@jesta/steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-0-14-0)|\n|48|[@dollarvigilante](https://steemit.com/@dollarvigilante)|426.107|1815667.350107|[famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-a](https://steemit.com/all/@dollarvigilante/famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-anarchy-and-cryptocurrencies)|\n|49|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|413.120|1600748.444404|[pura-vida-my-experience-working-on-a-permaculture-farm-in-co](https://steemit.com/all/@anwenbaumeister/pura-vida-my-experience-working-on-a-permaculture-farm-in-costa-rica-part-two)|\n|50|[@dannystravels](https://steemit.com/@dannystravels)|404.374|1567809.296314|[face-to-face-with-our-closest-living-relative-part-2-2](https://steemit.com/all/@dannystravels/face-to-face-with-our-closest-living-relative-part-2-2)|\n|51|[@sirwinchester](https://steemit.com/@sirwinchester)|403.621|1723295.787435|[bitcoin-exchange-berlin-meetup-with-ned-on-skype](https://steemit.com/all/@sirwinchester/bitcoin-exchange-berlin-meetup-with-ned-on-skype)|\n|52|[@mibenkito](https://steemit.com/@mibenkito)|399.692|1701129.893154|[a-steemian-s-world-food-journal-part-5-sydney](https://steemit.com/all/@mibenkito/a-steemian-s-world-food-journal-part-5-sydney)|\n|53|[@ericvancewalton](https://steemit.com/@ericvancewalton)|399.641|1719344.321486|[broken-dreams-an-original-poem](https://steemit.com/all/@ericvancewalton/broken-dreams-an-original-poem)|\n|54|[@charleshosk](https://steemit.com/@charleshosk)|390.939|1571334.118454|[ethereum-classic-an-update](https://steemit.com/all/@charleshosk/ethereum-classic-an-update)|\n|55|[@calaber24p](https://steemit.com/@calaber24p)|390.494|1824187.485033|[countries-that-incentivize-and-deregulate-crypto-startups-wi](https://steemit.com/all/@calaber24p/countries-that-incentivize-and-deregulate-crypto-startups-will-reap-the-rewards-if-the-technology-goes-mainstream)|\n|56|[@charlieshrem](https://steemit.com/@charlieshrem)|382.869|1477441.136465|[an-intimate-evening-with-charlie-shrem-moving-forward-south-](https://steemit.com/all/@charlieshrem/an-intimate-evening-with-charlie-shrem-moving-forward-south-florida-usa)|\n|57|[@officialfuzzy](https://steemit.com/@officialfuzzy)|378.829|1519255.893290|[guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-fri](https://steemit.com/all/@officialfuzzy/guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-friday-s-hangout-refer-projects-for-rewards)|\n|58|[@knozaki2015](https://steemit.com/@knozaki2015)|370.606|1493308.546306|[steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-german](https://steemit.com/all/@knozaki2015/steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-germany-9-9-2016-with-pictures)|\n|59|[@dantheman](https://steemit.com/@dantheman)|369.466|1485061.731912|[justification-for-104-week-power-down](https://steemit.com/all/@dantheman/justification-for-104-week-power-down)|\n|60|[@cass](https://steemit.com/@cass)|369.092|1533209.359825|[sneak-preview-chainsquad-corporate-branding-logo-design](https://steemit.com/all/@cass/sneak-preview-chainsquad-corporate-branding-logo-design)|\n|61|[@aizensou](https://steemit.com/@aizensou)|358.318|1418712.320393|[top-5-places-in-barcelona-featuring-maryfromsochi-as-author](https://steemit.com/all/@aizensou/top-5-places-in-barcelona-featuring-maryfromsochi-as-author)|\n|62|[@sirwinchester](https://steemit.com/@sirwinchester)|358.314|1477359.694757|[steemit-meetup-in-berlin-germany](https://steemit.com/all/@sirwinchester/steemit-meetup-in-berlin-germany)|\n|63|[@clayop](https://steemit.com/@clayop)|355.145|1512981.501683|[the-typology-of-curation-what-kinds-of-curators-we-have-now](https://steemit.com/all/@clayop/the-typology-of-curation-what-kinds-of-curators-we-have-now)|\n|64|[@kencode](https://steemit.com/@kencode)|353.240|1453050.277044|[ann-smartcoins-wallet-v1-0-6-released](https://steemit.com/all/@kencode/ann-smartcoins-wallet-v1-0-6-released)|\n|65|[@gavvet](https://steemit.com/@gavvet)|353.159|1405040.374698|[a-free-lunch-with-edward-snowden](https://steemit.com/all/@gavvet/a-free-lunch-with-edward-snowden)|\n|66|[@clayop](https://steemit.com/@clayop)|343.604|1365548.612065|[how-much-do-whales-influences-on-rewards-introducing-new-sta](https://steemit.com/all/@clayop/how-much-do-whales-influences-on-rewards-introducing-new-statistics)|\n|67|[@curie](https://steemit.com/@curie)|343.592|1465300.000707|[project-curie-s-daily-curation-list-10-sept-11-sept-2016](https://steemit.com/all/@curie/project-curie-s-daily-curation-list-10-sept-11-sept-2016)|\n|68|[@calaber24p](https://steemit.com/@calaber24p)|342.141|1457567.812539|[immigration-into-america-has-made-it-the-world-power-it-is-t](https://steemit.com/all/@calaber24p/immigration-into-america-has-made-it-the-world-power-it-is-today)|\n|69|[@b0y2k](https://steemit.com/@b0y2k)|340.586|1369051.035651|[steemit-sponsoring-the-compass-cup-team-event](https://steemit.com/all/@b0y2k/steemit-sponsoring-the-compass-cup-team-event)|\n|70|[@cryptogee](https://steemit.com/@cryptogee)|339.967|1496475.706859|[spotlight-issue-8-philosophy-music-and-science](https://steemit.com/all/@cryptogee/spotlight-issue-8-philosophy-music-and-science)|\n|71|[@kencode](https://steemit.com/@kencode)|337.474|1308694.645920|[blockpay-moving-up-the-charts](https://steemit.com/all/@kencode/blockpay-moving-up-the-charts)|\n|72|[@ericvancewalton](https://steemit.com/@ericvancewalton)|336.781|1347763.370147|[alarm-clock-dawn-an-original-novel-episode-24](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-24)|\n|73|[@gavvet](https://steemit.com/@gavvet)|332.977|1291120.851189|[hi-to-reinvent-yourself-featuring-sauravrungta-as-author](https://steemit.com/all/@gavvet/hi-to-reinvent-yourself-featuring-sauravrungta-as-author)|\n|74|[@ozchartart](https://steemit.com/@ozchartart)|332.418|1282511.839603|[usdeth-btc-poloniex-technical-analysis-sept-07-2016](https://steemit.com/all/@ozchartart/usdeth-btc-poloniex-technical-analysis-sept-07-2016)|\n|75|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|332.381|1339735.329416|[celtic-heart-knot-pictorial](https://steemit.com/all/@bridgetbunchy/celtic-heart-knot-pictorial)|\n|76|[@roelandp](https://steemit.com/@roelandp)|331.053|1286840.936796|[my-proper-introduceyourself-hello-i-m-roelandp](https://steemit.com/all/@roelandp/my-proper-introduceyourself-hello-i-m-roelandp)|\n|77|[@ericvancewalton](https://steemit.com/@ericvancewalton)|330.742|1295789.736302|[know-me-an-original-poem](https://steemit.com/all/@ericvancewalton/know-me-an-original-poem)|\n|78|[@cryptovpn](https://steemit.com/@cryptovpn)|329.564|1276654.885609|[steemit-charity-run-no-1-doctors-without-borders](https://steemit.com/all/@cryptovpn/steemit-charity-run-no-1-doctors-without-borders)|\n|79|[@steemcleaners](https://steemit.com/@steemcleaners)|329.504|1292242.895864|[steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-](https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-1)|\n|80|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|320.241|1241317.843204|[my-cross-country-road-trip-greater-than-sf-greater-than-vega](https://steemit.com/all/@anwenbaumeister/my-cross-country-road-trip-greater-than-sf-greater-than-vegas-greater-than-boulder-greater-than-houston-greater-than-new-orleans)|\n|81|[@charlieshrem](https://steemit.com/@charlieshrem)|313.754|1475625.347428|[a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-](https://steemit.com/all/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-life-and-the-shrempresso)|\n|82|[@enric](https://steemit.com/@enric)|311.617|1208114.056405|[im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurre](https://steemit.com/all/@enric/im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurrency-my-revolutionary-struggle-now-im-here)|\n|83|[@dantheman](https://steemit.com/@dantheman)|309.920|1201663.748404|[scalability-of-individual-responsibility-in-anarchy](https://steemit.com/all/@dantheman/scalability-of-individual-responsibility-in-anarchy)|\n|84|[@officialfuzzy](https://steemit.com/@officialfuzzy)|309.814|1312470.274185|[e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-test](https://steemit.com/all/@officialfuzzy/e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-testnet-jewels-ico-success-gridcoin-and-making-it-rain)|\n|85|[@gavvet](https://steemit.com/@gavvet)|308.127|1212749.753443|[a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-](https://steemit.com/all/@gavvet/a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-author)|\n|86|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|303.555|1201909.200453|[the-love-of-a-maker](https://steemit.com/all/@bridgetbunchy/the-love-of-a-maker)|\n|87|[@steemcleaners](https://steemit.com/@steemcleaners)|302.924|1192233.387004|[steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-](https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-2)|\n|88|[@dantheman](https://steemit.com/@dantheman)|301.672|1169749.675855|[nonviolent-censorship-is-how-nonviolent-societies-create-non](https://steemit.com/all/@dantheman/nonviolent-censorship-is-how-nonviolent-societies-create-nonviolent-government)|\n|89|[@infovore](https://steemit.com/@infovore)|301.261|1214999.166441|[a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-](https://steemit.com/all/@infovore/a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-moment-on-steemit-this-week-on-steemit-steemmag-steemit-s-weekend)|\n|90|[@firepower](https://steemit.com/@firepower)|300.280|1368056.554963|[when-i-lost-sight-while-steeming](https://steemit.com/all/@firepower/when-i-lost-sight-while-steeming)|\n|91|[@ozchartart](https://steemit.com/@ozchartart)|294.271|1183433.553199|[usddoge-btc-poloniex-technical-analysis-sept-10-2016](https://steemit.com/all/@ozchartart/usddoge-btc-poloniex-technical-analysis-sept-10-2016)|\n|92|[@donkeypong](https://steemit.com/@donkeypong)|293.559|1138798.465907|[a-tribute-to-snail-mail](https://steemit.com/all/@donkeypong/a-tribute-to-snail-mail)|\n|93|[@charlieshrem](https://steemit.com/@charlieshrem)|292.995|1135970.118327|[progressive-relaxation-by-charlie-shrem-mindfulness-meditati](https://steemit.com/all/@charlieshrem/progressive-relaxation-by-charlie-shrem-mindfulness-meditation-in-prison-and-everyday-life)|\n|94|[@curie](https://steemit.com/@curie)|289.920|1234271.286622|[project-curie-s-daily-curation-list-9-sept-10-sept-2016](https://steemit.com/all/@curie/project-curie-s-daily-curation-list-9-sept-10-sept-2016)|\n|95|[@furion](https://steemit.com/@furion)|289.919|1234751.363741|[a-quick-look-at-null-and-the-profitability-of-promoted-posts](https://steemit.com/all/@furion/a-quick-look-at-null-and-the-profitability-of-promoted-posts)|\n|96|[@sirwinchester](https://steemit.com/@sirwinchester)|288.926|1119010.839878|[mr-gourmet-exploring-a-new-location](https://steemit.com/all/@sirwinchester/mr-gourmet-exploring-a-new-location)|\n|97|[@larkenrose](https://steemit.com/@larkenrose)|281.627|1138819.558651|[supply-and-demand-steemit-style](https://steemit.com/all/@larkenrose/supply-and-demand-steemit-style)|\n|98|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|278.638|1162968.108837|[a-peek-into-pre-columbian-worldviews-found-in-agricultural-p](https://steemit.com/all/@anwenbaumeister/a-peek-into-pre-columbian-worldviews-found-in-agricultural-practices-duality-complementarity-cyclicity-and-reciprocity)|\n|99|[@corbettreport](https://steemit.com/@corbettreport)|277.435|1238430.062064|[only-9-11-truth-can-smash-the-9-11-lies](https://steemit.com/all/@corbettreport/only-9-11-truth-can-smash-the-9-11-lies)|\n|100|[@sirwinchester](https://steemit.com/@sirwinchester)|277.087|1113453.030386|[find-your-why-self-discovery-and-finding-your-purpose-in-lif](https://steemit.com/all/@sirwinchester/find-your-why-self-discovery-and-finding-your-purpose-in-life)|\n\n\n- - -\nPrevious report: [September week 1](https://steemit.com/stats/@masteryoda/weekly-payouts-leaderboards-september-week-1)\n- - -\n\n###### \u00a9 @masteryoda", + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/philosophy/@terrycraft/a-look-from-the-past-vzglyad-iz-proshlogo-featuring-panther-as-author", + "blacklists": [] + }, + { + "post_id": 956546, + "author": "masteryoda", + "permlink": "weekly-payouts-leaderboards-september-week-2", "category": "stats", - "children": 25, - "created": "2016-09-15T10:10:06", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, + "title": "Weekly payouts leaderboards - September week 2", + "body": "![photo](http://i.imgsafe.org/81a1095cd2.png)\n\n- - -\n\nThis report covers payouts made between:\n\n**September 8, 2016, 12:00 am UTC** and **September 14, 2016, 11:59 pm UTC**\n\nTotal SBD paid: **136 116.418 SBD**\n\nTotal VESTS paid: **714 086 946.799 VESTS**\n\n- - -\n\n### SBD and VESTS payouts chart:\n![photo](http://imgh.us/canvas2_1.png)\n\n- - -\n\n### Top 100 overall SBD earners:\n|Rank | Account | Posts |SBD | VESTS |\n| :-----| ------------- |-------------:|-------------:| -----:|\n|1|[@ericvancewalton](https://steemit.com/@ericvancewalton)|15|6 077.522|24 596 951.571|\n|2|[@roelandp](https://steemit.com/@roelandp)|5|5 750.861|26 290 325.567|\n|3|[@gavvet](https://steemit.com/@gavvet)|29|5 680.552|23 514 590.090|\n|4|[@knozaki2015](https://steemit.com/@knozaki2015)|27|4 089.160|16 881 905.884|\n|5|[@sirwinchester](https://steemit.com/@sirwinchester)|20|3 196.259|13 196 949.343|\n|6|[@terrycraft](https://steemit.com/@terrycraft)|22|2 997.141|12 216 236.410|\n|7|[@calaber24p](https://steemit.com/@calaber24p)|9|2 411.786|10 175 362.253|\n|8|[@dollarvigilante](https://steemit.com/@dollarvigilante)|9|2 135.290|9 376 253.261|\n|9|[@someguy123](https://steemit.com/@someguy123)|11|1 852.735|7 812 606.655|\n|10|[@ozchartart](https://steemit.com/@ozchartart)|13|1 771.698|7 215 740.701|\n|11|[@infovore](https://steemit.com/@infovore)|5|1 705.589|6 924 653.829|\n|12|[@lifeisawesome](https://steemit.com/@lifeisawesome)|6|1 689.879|6 989 106.948|\n|13|[@dantheman](https://steemit.com/@dantheman)|11|1 612.428|8 604 664.210|\n|14|[@jamielefay](https://steemit.com/@jamielefay)|4|1 607.864|6 411 495.342|\n|15|[@kevinwong](https://steemit.com/@kevinwong)|6|1 525.609|6 542 045.016|\n|16|[@charlieshrem](https://steemit.com/@charlieshrem)|4|1 500.105|6 557 010.291|\n|17|[@jesta](https://steemit.com/@jesta)|9|1 492.300|6 472 103.097|\n|18|[@masteryoda](https://steemit.com/@masteryoda)|16|1 423.208|6 023 057.885|\n|19|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|9|1 324.346|5 343 516.577|\n|20|[@katecloud](https://steemit.com/@katecloud)|7|1 265.447|5 136 897.795|\n|21|[@timsaid](https://steemit.com/@timsaid)|10|1 153.420|4 999 746.262|\n|22|[@sascha](https://steemit.com/@sascha)|2|1 152.462|4 737 155.424|\n|23|[@honeyscribe](https://steemit.com/@honeyscribe)|6|1 147.954|4 693 320.648|\n|24|[@cryptogee](https://steemit.com/@cryptogee)|4|1 145.094|4 704 779.347|\n|25|[@krishtopa](https://steemit.com/@krishtopa)|11|1 143.346|4 834 060.865|\n|26|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|8|1 138.985|4 813 642.940|\n|27|[@good-karma](https://steemit.com/@good-karma)|6|1 118.049|5 063 419.555|\n|28|[@lobotony](https://steemit.com/@lobotony)|2|1 084.459|4 247 247.973|\n|29|[@markrmorrisjr](https://steemit.com/@markrmorrisjr)|21|1 058.539|4 369 963.419|\n|30|[@curie](https://steemit.com/@curie)|5|1 056.415|4 572 371.506|\n|31|[@opheliafu](https://steemit.com/@opheliafu)|19|1 005.845|4 156 440.681|\n|32|[@steve-walschot](https://steemit.com/@steve-walschot)|4|972.080|4 394 483.105|\n|33|[@marius19](https://steemit.com/@marius19)|23|951.573|4 011 036.875|\n|34|[@serejandmyself](https://steemit.com/@serejandmyself)|11|941.108|3 990 747.231|\n|35|[@steempower](https://steemit.com/@steempower)|4|848.391|3 693 774.188|\n|36|[@aizensou](https://steemit.com/@aizensou)|4|813.814|3 460 586.334|\n|37|[@furion](https://steemit.com/@furion)|7|776.731|3 320 010.859|\n|38|[@officialfuzzy](https://steemit.com/@officialfuzzy)|5|769.671|3 256 431.084|\n|39|[@kencode](https://steemit.com/@kencode)|3|769.635|3 084 463.879|\n|40|[@clayop](https://steemit.com/@clayop)|9|744.729|3 588 626.269|\n|41|[@larkenrose](https://steemit.com/@larkenrose)|8|718.161|2 952 298.454|\n|42|[@steemdrive](https://steemit.com/@steemdrive)|1|713.054|3 137 516.266|\n|43|[@jpiper20](https://steemit.com/@jpiper20)|21|704.591|2 861 337.136|\n|44|[@xeroc](https://steemit.com/@xeroc)|3|700.860|3 667 185.079|\n|45|[@steemship](https://steemit.com/@steemship)|3|700.485|2 935 488.501|\n|46|[@steemcleaners](https://steemit.com/@steemcleaners)|3|659.132|2 596 140.333|\n|47|[@complexring](https://steemit.com/@complexring)|2|647.683|6 065 457.160|\n|48|[@charleshosk](https://steemit.com/@charleshosk)|2|585.319|2 399 760.878|\n|49|[@hisnameisolllie](https://steemit.com/@hisnameisolllie)|11|581.385|2 338 969.539|\n|50|[@sweetsssj](https://steemit.com/@sweetsssj)|14|523.979|2 170 158.700|\n|51|[@livingthedream](https://steemit.com/@livingthedream)|4|510.792|2 027 254.578|\n|52|[@eneismijmich](https://steemit.com/@eneismijmich)|9|504.116|2 061 771.205|\n|53|[@sterlinluxan](https://steemit.com/@sterlinluxan)|7|500.904|2 022 584.130|\n|54|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|1|497.669|2 274 840.954|\n|55|[@b0y2k](https://steemit.com/@b0y2k)|2|497.114|2 132 474.149|\n|56|[@fairytalelife](https://steemit.com/@fairytalelife)|7|481.143|2 023 586.799|\n|57|[@corbettreport](https://steemit.com/@corbettreport)|6|457.908|1 979 421.716|\n|58|[@kental](https://steemit.com/@kental)|19|435.486|1 746 992.520|\n|59|[@barrycooper](https://steemit.com/@barrycooper)|4|433.548|1 887 586.618|\n|60|[@storyseeker](https://steemit.com/@storyseeker)|4|430.221|1 849 858.609|\n|61|[@jacor](https://steemit.com/@jacor)|11|428.758|1 774 043.305|\n|62|[@bravenewcoin](https://steemit.com/@bravenewcoin)|14|427.758|1 764 533.073|\n|63|[@alexbeyman](https://steemit.com/@alexbeyman)|36|409.397|1 679 902.161|\n|64|[@gangsta](https://steemit.com/@gangsta)|5|405.820|1 620 709.343|\n|65|[@dannystravels](https://steemit.com/@dannystravels)|1|404.374|1 568 065.581|\n|66|[@smailer](https://steemit.com/@smailer)|11|400.558|1 679 104.012|\n|67|[@mibenkito](https://steemit.com/@mibenkito)|1|399.692|1 722 718.612|\n|68|[@cass](https://steemit.com/@cass)|1|391.041|1 993 157.960|\n|69|[@razvanelulmarin](https://steemit.com/@razvanelulmarin)|13|373.350|1 644 174.858|\n|70|[@mrs.steemit](https://steemit.com/@mrs.steemit)|9|368.118|1 530 900.679|\n|71|[@jamtaylor](https://steemit.com/@jamtaylor)|14|358.256|1 555 939.370|\n|72|[@senseiteekay](https://steemit.com/@senseiteekay)|11|357.948|1 517 489.098|\n|73|[@healthyrecipes](https://steemit.com/@healthyrecipes)|3|350.465|1 480 991.813|\n|74|[@aggroed](https://steemit.com/@aggroed)|14|348.227|1 428 790.019|\n|75|[@celebr1ty](https://steemit.com/@celebr1ty)|5|341.894|1 368 751.869|\n|76|[@dana-edwards](https://steemit.com/@dana-edwards)|10|337.839|1 341 593.683|\n|77|[@cryptovpn](https://steemit.com/@cryptovpn)|5|330.063|1 278 755.869|\n|78|[@nanzo-scoop](https://steemit.com/@nanzo-scoop)|17|330.055|2 655 433.594|\n|79|[@fyrstikken](https://steemit.com/@fyrstikken)|23|325.469|1 521 433.247|\n|80|[@richman](https://steemit.com/@richman)|5|321.227|1 332 080.256|\n|81|[@enric](https://steemit.com/@enric)|1|311.640|1 208 207.684|\n|82|[@firepower](https://steemit.com/@firepower)|1|308.085|1 405 620.303|\n|83|[@donkeypong](https://steemit.com/@donkeypong)|4|306.922|1 672 530.744|\n|84|[@churdtzu](https://steemit.com/@churdtzu)|7|305.428|1 246 268.798|\n|85|[@pfunk](https://steemit.com/@pfunk)|6|304.288|1 696 845.158|\n|86|[@canadian-coconut](https://steemit.com/@canadian-coconut)|7|303.757|1 247 066.035|\n|87|[@alexgr](https://steemit.com/@alexgr)|7|296.946|1 259 479.298|\n|88|[@quinneaker](https://steemit.com/@quinneaker)|15|293.521|1 241 558.241|\n|89|[@nekromarinist](https://steemit.com/@nekromarinist)|10|288.002|1 136 848.911|\n|90|[@liberosist](https://steemit.com/@liberosist)|6|284.471|1 407 917.609|\n|91|[@sigmajin](https://steemit.com/@sigmajin)|3|276.147|1 127 048.263|\n|92|[@aaronkoenig](https://steemit.com/@aaronkoenig)|9|274.485|1 168 689.323|\n|93|[@tracemayer](https://steemit.com/@tracemayer)|7|273.934|1 170 292.676|\n|94|[@hilarski](https://steemit.com/@hilarski)|12|272.752|1 111 134.239|\n|95|[@shammyshiggs](https://steemit.com/@shammyshiggs)|6|267.958|1 068 640.107|\n|96|[@halo](https://steemit.com/@halo)|34|265.233|1 109 892.049|\n|97|[@rok-sivante](https://steemit.com/@rok-sivante)|8|261.410|1 152 452.980|\n|98|[@vermillion666](https://steemit.com/@vermillion666)|2|260.282|1 015 370.956|\n|99|[@kaylinart](https://steemit.com/@kaylinart)|31|258.027|1 209 969.357|\n|100|[@kobur](https://steemit.com/@kobur)|9|257.060|1 001 194.076|\n\n\n- - -\n\n### Top 100 overall VESTS earners:\n|Rank | Account | SBD | VESTS |\n| :-----| ------------- |-------------:| -----:|\n|1|[@blocktrades](https://steemit.com/@blocktrades)|6.267|31 932 805.126|\n|2|[@roelandp](https://steemit.com/@roelandp)|5 750.861|26 290 325.567|\n|3|[@ericvancewalton](https://steemit.com/@ericvancewalton)|6 077.522|24 596 951.571|\n|4|[@gavvet](https://steemit.com/@gavvet)|5 680.552|23 514 590.090|\n|5|[@knozaki2015](https://steemit.com/@knozaki2015)|4 089.160|16 881 905.884|\n|6|[@sirwinchester](https://steemit.com/@sirwinchester)|3 196.259|13 196 949.343|\n|7|[@terrycraft](https://steemit.com/@terrycraft)|2 997.141|12 216 236.410|\n|8|[@calaber24p](https://steemit.com/@calaber24p)|2 411.786|10 175 362.253|\n|9|[@smooth](https://steemit.com/@smooth)|35.690|9 725 180.893|\n|10|[@dollarvigilante](https://steemit.com/@dollarvigilante)|2 135.290|9 376 253.261|\n|11|[@berniesanders](https://steemit.com/@berniesanders)|3.218|9 025 844.273|\n|12|[@dantheman](https://steemit.com/@dantheman)|1 612.428|8 604 664.210|\n|13|[@someguy123](https://steemit.com/@someguy123)|1 852.735|7 812 606.655|\n|14|[@ozchartart](https://steemit.com/@ozchartart)|1 771.698|7 215 740.701|\n|15|[@lifeisawesome](https://steemit.com/@lifeisawesome)|1 689.879|6 989 106.948|\n|16|[@infovore](https://steemit.com/@infovore)|1 705.589|6 924 653.829|\n|17|[@wang](https://steemit.com/@wang)|0.000|6 613 063.186|\n|18|[@charlieshrem](https://steemit.com/@charlieshrem)|1 500.105|6 557 010.291|\n|19|[@kevinwong](https://steemit.com/@kevinwong)|1 525.609|6 542 045.016|\n|20|[@jesta](https://steemit.com/@jesta)|1 492.300|6 472 103.097|\n|21|[@jamielefay](https://steemit.com/@jamielefay)|1 607.864|6 411 495.342|\n|22|[@complexring](https://steemit.com/@complexring)|647.683|6 065 457.160|\n|23|[@masteryoda](https://steemit.com/@masteryoda)|1 423.208|6 023 057.885|\n|24|[@nextgencrypto](https://steemit.com/@nextgencrypto)|7.149|5 399 639.966|\n|25|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|1 324.346|5 343 516.577|\n|26|[@katecloud](https://steemit.com/@katecloud)|1 265.447|5 136 897.795|\n|27|[@good-karma](https://steemit.com/@good-karma)|1 118.049|5 063 419.555|\n|28|[@timsaid](https://steemit.com/@timsaid)|1 153.420|4 999 746.262|\n|29|[@krishtopa](https://steemit.com/@krishtopa)|1 143.346|4 834 060.865|\n|30|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|1 138.985|4 813 642.940|\n|31|[@sascha](https://steemit.com/@sascha)|1 152.462|4 737 155.424|\n|32|[@cryptogee](https://steemit.com/@cryptogee)|1 145.094|4 704 779.347|\n|33|[@honeyscribe](https://steemit.com/@honeyscribe)|1 147.954|4 693 320.648|\n|34|[@curie](https://steemit.com/@curie)|1 056.415|4 572 371.506|\n|35|[@steve-walschot](https://steemit.com/@steve-walschot)|972.080|4 394 483.105|\n|36|[@markrmorrisjr](https://steemit.com/@markrmorrisjr)|1 058.539|4 369 963.419|\n|37|[@lobotony](https://steemit.com/@lobotony)|1 084.459|4 247 247.973|\n|38|[@steemed](https://steemit.com/@steemed)|32.767|4 188 255.968|\n|39|[@opheliafu](https://steemit.com/@opheliafu)|1 005.845|4 156 440.681|\n|40|[@riverhead](https://steemit.com/@riverhead)|7.248|4 045 823.778|\n|41|[@marius19](https://steemit.com/@marius19)|951.573|4 011 036.875|\n|42|[@serejandmyself](https://steemit.com/@serejandmyself)|941.108|3 990 747.231|\n|43|[@pharesim](https://steemit.com/@pharesim)|0.000|3 875 558.313|\n|44|[@steemit200](https://steemit.com/@steemit200)|0.000|3 768 755.702|\n|45|[@steempower](https://steemit.com/@steempower)|848.391|3 693 774.188|\n|46|[@xeroc](https://steemit.com/@xeroc)|700.860|3 667 185.079|\n|47|[@clayop](https://steemit.com/@clayop)|744.729|3 588 626.269|\n|48|[@aizensou](https://steemit.com/@aizensou)|813.814|3 460 586.334|\n|49|[@furion](https://steemit.com/@furion)|776.731|3 320 010.859|\n|50|[@xeldal](https://steemit.com/@xeldal)|0.393|3 300 335.411|\n|51|[@ned](https://steemit.com/@ned)|32.419|3 290 566.039|\n|52|[@officialfuzzy](https://steemit.com/@officialfuzzy)|769.671|3 256 431.084|\n|53|[@steemdrive](https://steemit.com/@steemdrive)|713.054|3 137 516.266|\n|54|[@joseph](https://steemit.com/@joseph)|57.350|3 085 782.531|\n|55|[@kencode](https://steemit.com/@kencode)|769.635|3 084 463.879|\n|56|[@larkenrose](https://steemit.com/@larkenrose)|718.161|2 952 298.454|\n|57|[@steemship](https://steemit.com/@steemship)|700.485|2 935 488.501|\n|58|[@recursive](https://steemit.com/@recursive)|6.621|2 918 906.746|\n|59|[@jpiper20](https://steemit.com/@jpiper20)|704.591|2 861 337.136|\n|60|[@hr1](https://steemit.com/@hr1)|0.300|2 780 636.062|\n|61|[@nanzo-scoop](https://steemit.com/@nanzo-scoop)|330.055|2 655 433.594|\n|62|[@laonie](https://steemit.com/@laonie)|116.404|2 619 872.564|\n|63|[@steemcleaners](https://steemit.com/@steemcleaners)|659.132|2 596 140.333|\n|64|[@charleshosk](https://steemit.com/@charleshosk)|585.319|2 399 760.878|\n|65|[@hisnameisolllie](https://steemit.com/@hisnameisolllie)|581.385|2 338 969.539|\n|66|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|497.669|2 274 840.954|\n|67|[@sweetsssj](https://steemit.com/@sweetsssj)|523.979|2 170 158.700|\n|68|[@b0y2k](https://steemit.com/@b0y2k)|497.114|2 132 474.149|\n|69|[@eneismijmich](https://steemit.com/@eneismijmich)|504.116|2 061 771.205|\n|70|[@livingthedream](https://steemit.com/@livingthedream)|510.792|2 027 254.578|\n|71|[@fairytalelife](https://steemit.com/@fairytalelife)|481.143|2 023 586.799|\n|72|[@sterlinluxan](https://steemit.com/@sterlinluxan)|500.904|2 022 584.130|\n|73|[@cass](https://steemit.com/@cass)|391.041|1 993 157.960|\n|74|[@corbettreport](https://steemit.com/@corbettreport)|457.908|1 979 421.716|\n|75|[@barrycooper](https://steemit.com/@barrycooper)|433.548|1 887 586.618|\n|76|[@jamesc](https://steemit.com/@jamesc)|0.153|1 871 857.951|\n|77|[@storyseeker](https://steemit.com/@storyseeker)|430.221|1 849 858.609|\n|78|[@jacor](https://steemit.com/@jacor)|428.758|1 774 043.305|\n|79|[@bravenewcoin](https://steemit.com/@bravenewcoin)|427.758|1 764 533.073|\n|80|[@kental](https://steemit.com/@kental)|435.486|1 746 992.520|\n|81|[@au1nethyb1](https://steemit.com/@au1nethyb1)|0.000|1 740 612.769|\n|82|[@mibenkito](https://steemit.com/@mibenkito)|399.692|1 722 718.612|\n|83|[@pfunk](https://steemit.com/@pfunk)|304.288|1 696 845.158|\n|84|[@alexbeyman](https://steemit.com/@alexbeyman)|409.397|1 679 902.161|\n|85|[@smailer](https://steemit.com/@smailer)|400.558|1 679 104.012|\n|86|[@badassmother](https://steemit.com/@badassmother)|0.000|1 679 019.431|\n|87|[@donkeypong](https://steemit.com/@donkeypong)|306.922|1 672 530.744|\n|88|[@razvanelulmarin](https://steemit.com/@razvanelulmarin)|373.350|1 644 174.858|\n|89|[@summon](https://steemit.com/@summon)|72.228|1 622 251.187|\n|90|[@gangsta](https://steemit.com/@gangsta)|405.820|1 620 709.343|\n|91|[@silver](https://steemit.com/@silver)|0.000|1 609 716.257|\n|92|[@dannystravels](https://steemit.com/@dannystravels)|404.374|1 568 065.581|\n|93|[@jamtaylor](https://steemit.com/@jamtaylor)|358.256|1 555 939.370|\n|94|[@mrs.steemit](https://steemit.com/@mrs.steemit)|368.118|1 530 900.679|\n|95|[@fyrstikken](https://steemit.com/@fyrstikken)|325.469|1 521 433.247|\n|96|[@senseiteekay](https://steemit.com/@senseiteekay)|357.948|1 517 489.098|\n|97|[@healthyrecipes](https://steemit.com/@healthyrecipes)|350.465|1 480 991.813|\n|98|[@satoshifund](https://steemit.com/@satoshifund)|0.000|1 472 512.796|\n|99|[@kushed](https://steemit.com/@kushed)|0.160|1 449 619.943|\n|100|[@aggroed](https://steemit.com/@aggroed)|348.227|1 428 790.019|\n\n\n- - -\n\n### Top 100 paying posts (author reward):\n|Rank | Account | SBD | VESTS | POST|\n| :-----| ------------- |-------------:| -----:|:-----|\n|1|[@roelandp](https://steemit.com/@roelandp)|5417.783|24936028.708622|[save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-n](https://steemit.com/all/@roelandp/save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl)|\n|2|[@someguy123](https://steemit.com/@someguy123)|1314.389|5601399.952738|[understeem-steemit-without-censorship-nsfw-filter-removed-vi](https://steemit.com/all/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor)|\n|3|[@kevinwong](https://steemit.com/@kevinwong)|971.542|4190657.642935|[logo-contest-for-project-curie-calling-all-designers](https://steemit.com/all/@kevinwong/logo-contest-for-project-curie-calling-all-designers)|\n|4|[@steve-walschot](https://steemit.com/@steve-walschot)|937.502|4105645.799136|[investigating-the-wale-scam-assumptions-above-knowledge](https://steemit.com/all/@steve-walschot/investigating-the-wale-scam-assumptions-above-knowledge)|\n|5|[@good-karma](https://steemit.com/@good-karma)|909.717|4210888.383925|[esteem-ios-1-2-2-released-advanced-login-signup-patch-post-e](https://steemit.com/all/@good-karma/esteem-ios-1-2-2-released-advanced-login-signup-patch-post-edits-photo-inclusion-on-posts-new-navigation-filter)|\n|6|[@cryptogee](https://steemit.com/@cryptogee)|802.871|3114844.305012|[a-quick-fix-for-a-broken-capitalist-society](https://steemit.com/all/@cryptogee/a-quick-fix-for-a-broken-capitalist-society)|\n|7|[@infovore](https://steemit.com/@infovore)|780.138|3145392.168091|[steemmag-steemit-s-weekend-digest-9-of-community-curation-an](https://steemit.com/all/@infovore/steemmag-steemit-s-weekend-digest-9-of-community-curation-and-reputation-chats-with-a-whale-steemit-chat-lead-moderators-a-day)|\n|8|[@steemdrive](https://steemit.com/@steemdrive)|709.735|3021388.477665|[steemdrive-second-proof-of-successful-crowdfunded-billboard-](https://steemit.com/all/@steemdrive/steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa)|\n|9|[@ericvancewalton](https://steemit.com/@ericvancewalton)|694.130|2692969.805438|[alarm-clock-dawn-an-original-novel-episode-22](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-22)|\n|10|[@sascha](https://steemit.com/@sascha)|672.279|2606133.315123|[our-life-on-planet-earth-part-8-the-meaning-of-life](https://steemit.com/all/@sascha/our-life-on-planet-earth-part-8-the-meaning-of-life)|\n|11|[@jesta](https://steemit.com/@jesta)|672.102|3084315.315130|[steem-bounty-system-milestone-1-proposal](https://steemit.com/all/@jesta/steem-bounty-system-milestone-1-proposal)|\n|12|[@steempower](https://steemit.com/@steempower)|670.009|2855734.328170|[bitshares-state-of-the-network-11th-sept-2016](https://steemit.com/all/@steempower/bitshares-state-of-the-network-11th-sept-2016)|\n|13|[@complexring](https://steemit.com/@complexring)|635.717|2707974.667320|[bypassing-the-great-firewall-of-china](https://steemit.com/all/@complexring/bypassing-the-great-firewall-of-china)|\n|14|[@katecloud](https://steemit.com/@katecloud)|628.891|2463723.749341|[a-photo-the-progression-of-a-painting-and-a-poem-by-kate-clo](https://steemit.com/all/@katecloud/a-photo-the-progression-of-a-painting-and-a-poem-by-kate-cloud)|\n|15|[@infovore](https://steemit.com/@infovore)|623.373|2415144.530628|[the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-th](https://steemit.com/all/@infovore/the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-the-internables-trend)|\n|16|[@ericvancewalton](https://steemit.com/@ericvancewalton)|605.001|2343398.347985|[the-cliff-an-original-poem](https://steemit.com/all/@ericvancewalton/the-cliff-an-original-poem)|\n|17|[@ericvancewalton](https://steemit.com/@ericvancewalton)|599.216|2408866.584548|[rush-hour-train-an-original-poem](https://steemit.com/all/@ericvancewalton/rush-hour-train-an-original-poem)|\n|18|[@dantheman](https://steemit.com/@dantheman)|588.696|2270663.485250|[censorship-is-impossible-in-a-free-society](https://steemit.com/all/@dantheman/censorship-is-impossible-in-a-free-society)|\n|19|[@ericvancewalton](https://steemit.com/@ericvancewalton)|573.497|2217973.305761|[too-simple-to-see-an-original-poem](https://steemit.com/all/@ericvancewalton/too-simple-to-see-an-original-poem)|\n|20|[@lobotony](https://steemit.com/@lobotony)|559.734|2169953.235319|[a-trip-to-the-north-part-1-of-2-iceland](https://steemit.com/all/@lobotony/a-trip-to-the-north-part-1-of-2-iceland)|\n|21|[@steemship](https://steemit.com/@steemship)|556.189|2365420.937467|[open-letter-to-ned-and-dan-you-badly-need-a-communications-c](https://steemit.com/all/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or)|\n|22|[@kevinwong](https://steemit.com/@kevinwong)|550.834|2135268.781675|[dayjob-ended-hello-steemit](https://steemit.com/all/@kevinwong/dayjob-ended-hello-steemit)|\n|23|[@ericvancewalton](https://steemit.com/@ericvancewalton)|539.244|2295220.650034|[alarm-clock-dawn-an-original-novel-episode-25](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-25)|\n|24|[@ericvancewalton](https://steemit.com/@ericvancewalton)|535.500|2075831.717451|[4ziyjc-alarm-clock-dawn-an-original-novel-episode-22](https://steemit.com/all/@ericvancewalton/4ziyjc-alarm-clock-dawn-an-original-novel-episode-22)|\n|25|[@lobotony](https://steemit.com/@lobotony)|524.725|2076637.525890|[a-trip-to-the-north-part-2-of-2-greenland](https://steemit.com/all/@lobotony/a-trip-to-the-north-part-2-of-2-greenland)|\n|26|[@dollarvigilante](https://steemit.com/@dollarvigilante)|522.074|2024561.204875|[gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-i](https://steemit.com/all/@dollarvigilante/gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-into-gold)|\n|27|[@calaber24p](https://steemit.com/@calaber24p)|516.871|2073762.161780|[the-evolution-of-virtual-economies-and-their-future-global-i](https://steemit.com/all/@calaber24p/the-evolution-of-virtual-economies-and-their-future-global-impact-on-the-world)|\n|28|[@jamielefay](https://steemit.com/@jamielefay)|515.285|1997372.750614|[ahe-ey-submission-an-original-novel-part-16](https://steemit.com/all/@jamielefay/ahe-ey-submission-an-original-novel-part-16)|\n|29|[@lifeisawesome](https://steemit.com/@lifeisawesome)|515.184|2076732.392526|[you-are-what-your-friends-are](https://steemit.com/all/@lifeisawesome/you-are-what-your-friends-are)|\n|30|[@ericvancewalton](https://steemit.com/@ericvancewalton)|512.929|1979697.284935|[alarm-clock-dawn-an-original-novel-episode-21](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-21)|\n|31|[@charlieshrem](https://steemit.com/@charlieshrem)|508.009|2110171.661194|[how-to-live-completely-off-steem-using-a-virtual-and-physica](https://steemit.com/all/@charlieshrem/how-to-live-completely-off-steem-using-a-virtual-and-physical-debit-card-topped-up-with-steem)|\n|32|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|497.660|2255006.094857|[the-lifecycle-of-a-song](https://steemit.com/all/@thisisbenbrick/the-lifecycle-of-a-song)|\n|33|[@timsaid](https://steemit.com/@timsaid)|493.545|1978954.745437|[life-explorers-the-human-senses-part-ii-hearing](https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-ii-hearing)|\n|34|[@gavvet](https://steemit.com/@gavvet)|483.546|2060779.396304|[crab-mentality-what-you-need-to-know-about-this-kind-of-degr](https://steemit.com/all/@gavvet/crab-mentality-what-you-need-to-know-about-this-kind-of-degrading-mentality-english-filipino)|\n|35|[@fairytalelife](https://steemit.com/@fairytalelife)|479.523|1927465.053480|[how-to-draw-a-braid](https://steemit.com/all/@fairytalelife/how-to-draw-a-braid)|\n|36|[@sascha](https://steemit.com/@sascha)|479.357|2090356.322663|[salt-as-an-energy-source-energetic-purification-with-salt](https://steemit.com/all/@sascha/salt-as-an-energy-source-energetic-purification-with-salt)|\n|37|[@ericvancewalton](https://steemit.com/@ericvancewalton)|459.391|1953748.642541|[walk-your-worries-an-original-poem](https://steemit.com/all/@ericvancewalton/walk-your-worries-an-original-poem)|\n|38|[@calaber24p](https://steemit.com/@calaber24p)|458.060|1948333.287074|[different-ways-to-think-about-your-time-and-money-to-lead-to](https://steemit.com/all/@calaber24p/different-ways-to-think-about-your-time-and-money-to-lead-to-better-financial-security)|\n|39|[@dollarvigilante](https://steemit.com/@dollarvigilante)|457.747|2096614.988536|[boom-end-game-nears-as-central-banks-buying-up-gold-mining-c](https://steemit.com/all/@dollarvigilante/boom-end-game-nears-as-central-banks-buying-up-gold-mining-companies)|\n|40|[@timsaid](https://steemit.com/@timsaid)|451.707|2069238.286170|[life-explorers-the-human-senses-part-iii-touch](https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-iii-touch)|\n|41|[@sterlinluxan](https://steemit.com/@sterlinluxan)|445.525|1790952.274641|[anarchapulco-is-one-of-the-most-world-changing-conferences-e](https://steemit.com/all/@sterlinluxan/anarchapulco-is-one-of-the-most-world-changing-conferences-ever)|\n|42|[@calaber24p](https://steemit.com/@calaber24p)|445.091|1730853.060104|[revamping-curation-is-the-way-to-increase-steem-power-demand](https://steemit.com/all/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand)|\n|43|[@jamielefay](https://steemit.com/@jamielefay)|444.129|1722107.917895|[ahe-ey-water-angels-an-original-novel-part-7-audiobook](https://steemit.com/all/@jamielefay/ahe-ey-water-angels-an-original-novel-part-7-audiobook)|\n|44|[@xeroc](https://steemit.com/@xeroc)|442.100|1715452.124498|[piston-how-to-use-it-for-multisignature-accounts](https://steemit.com/all/@xeroc/piston-how-to-use-it-for-multisignature-accounts)|\n|45|[@dollarvigilante](https://steemit.com/@dollarvigilante)|439.671|1772010.226787|[jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-sin](https://steemit.com/all/@dollarvigilante/jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-since-brexit)|\n|46|[@jamielefay](https://steemit.com/@jamielefay)|436.368|1860075.567439|[ahe-ey-allegiance-an-original-novel-part-18](https://steemit.com/all/@jamielefay/ahe-ey-allegiance-an-original-novel-part-18)|\n|47|[@jesta](https://steemit.com/@jesta)|427.963|1692835.407320|[steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-](https://steemit.com/all/@jesta/steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-0-14-0)|\n|48|[@dollarvigilante](https://steemit.com/@dollarvigilante)|426.107|1815667.350107|[famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-a](https://steemit.com/all/@dollarvigilante/famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-anarchy-and-cryptocurrencies)|\n|49|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|413.120|1600748.444404|[pura-vida-my-experience-working-on-a-permaculture-farm-in-co](https://steemit.com/all/@anwenbaumeister/pura-vida-my-experience-working-on-a-permaculture-farm-in-costa-rica-part-two)|\n|50|[@dannystravels](https://steemit.com/@dannystravels)|404.374|1567809.296314|[face-to-face-with-our-closest-living-relative-part-2-2](https://steemit.com/all/@dannystravels/face-to-face-with-our-closest-living-relative-part-2-2)|\n|51|[@sirwinchester](https://steemit.com/@sirwinchester)|403.621|1723295.787435|[bitcoin-exchange-berlin-meetup-with-ned-on-skype](https://steemit.com/all/@sirwinchester/bitcoin-exchange-berlin-meetup-with-ned-on-skype)|\n|52|[@mibenkito](https://steemit.com/@mibenkito)|399.692|1701129.893154|[a-steemian-s-world-food-journal-part-5-sydney](https://steemit.com/all/@mibenkito/a-steemian-s-world-food-journal-part-5-sydney)|\n|53|[@ericvancewalton](https://steemit.com/@ericvancewalton)|399.641|1719344.321486|[broken-dreams-an-original-poem](https://steemit.com/all/@ericvancewalton/broken-dreams-an-original-poem)|\n|54|[@charleshosk](https://steemit.com/@charleshosk)|390.939|1571334.118454|[ethereum-classic-an-update](https://steemit.com/all/@charleshosk/ethereum-classic-an-update)|\n|55|[@calaber24p](https://steemit.com/@calaber24p)|390.494|1824187.485033|[countries-that-incentivize-and-deregulate-crypto-startups-wi](https://steemit.com/all/@calaber24p/countries-that-incentivize-and-deregulate-crypto-startups-will-reap-the-rewards-if-the-technology-goes-mainstream)|\n|56|[@charlieshrem](https://steemit.com/@charlieshrem)|382.869|1477441.136465|[an-intimate-evening-with-charlie-shrem-moving-forward-south-](https://steemit.com/all/@charlieshrem/an-intimate-evening-with-charlie-shrem-moving-forward-south-florida-usa)|\n|57|[@officialfuzzy](https://steemit.com/@officialfuzzy)|378.829|1519255.893290|[guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-fri](https://steemit.com/all/@officialfuzzy/guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-friday-s-hangout-refer-projects-for-rewards)|\n|58|[@knozaki2015](https://steemit.com/@knozaki2015)|370.606|1493308.546306|[steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-german](https://steemit.com/all/@knozaki2015/steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-germany-9-9-2016-with-pictures)|\n|59|[@dantheman](https://steemit.com/@dantheman)|369.466|1485061.731912|[justification-for-104-week-power-down](https://steemit.com/all/@dantheman/justification-for-104-week-power-down)|\n|60|[@cass](https://steemit.com/@cass)|369.092|1533209.359825|[sneak-preview-chainsquad-corporate-branding-logo-design](https://steemit.com/all/@cass/sneak-preview-chainsquad-corporate-branding-logo-design)|\n|61|[@aizensou](https://steemit.com/@aizensou)|358.318|1418712.320393|[top-5-places-in-barcelona-featuring-maryfromsochi-as-author](https://steemit.com/all/@aizensou/top-5-places-in-barcelona-featuring-maryfromsochi-as-author)|\n|62|[@sirwinchester](https://steemit.com/@sirwinchester)|358.314|1477359.694757|[steemit-meetup-in-berlin-germany](https://steemit.com/all/@sirwinchester/steemit-meetup-in-berlin-germany)|\n|63|[@clayop](https://steemit.com/@clayop)|355.145|1512981.501683|[the-typology-of-curation-what-kinds-of-curators-we-have-now](https://steemit.com/all/@clayop/the-typology-of-curation-what-kinds-of-curators-we-have-now)|\n|64|[@kencode](https://steemit.com/@kencode)|353.240|1453050.277044|[ann-smartcoins-wallet-v1-0-6-released](https://steemit.com/all/@kencode/ann-smartcoins-wallet-v1-0-6-released)|\n|65|[@gavvet](https://steemit.com/@gavvet)|353.159|1405040.374698|[a-free-lunch-with-edward-snowden](https://steemit.com/all/@gavvet/a-free-lunch-with-edward-snowden)|\n|66|[@clayop](https://steemit.com/@clayop)|343.604|1365548.612065|[how-much-do-whales-influences-on-rewards-introducing-new-sta](https://steemit.com/all/@clayop/how-much-do-whales-influences-on-rewards-introducing-new-statistics)|\n|67|[@curie](https://steemit.com/@curie)|343.592|1465300.000707|[project-curie-s-daily-curation-list-10-sept-11-sept-2016](https://steemit.com/all/@curie/project-curie-s-daily-curation-list-10-sept-11-sept-2016)|\n|68|[@calaber24p](https://steemit.com/@calaber24p)|342.141|1457567.812539|[immigration-into-america-has-made-it-the-world-power-it-is-t](https://steemit.com/all/@calaber24p/immigration-into-america-has-made-it-the-world-power-it-is-today)|\n|69|[@b0y2k](https://steemit.com/@b0y2k)|340.586|1369051.035651|[steemit-sponsoring-the-compass-cup-team-event](https://steemit.com/all/@b0y2k/steemit-sponsoring-the-compass-cup-team-event)|\n|70|[@cryptogee](https://steemit.com/@cryptogee)|339.967|1496475.706859|[spotlight-issue-8-philosophy-music-and-science](https://steemit.com/all/@cryptogee/spotlight-issue-8-philosophy-music-and-science)|\n|71|[@kencode](https://steemit.com/@kencode)|337.474|1308694.645920|[blockpay-moving-up-the-charts](https://steemit.com/all/@kencode/blockpay-moving-up-the-charts)|\n|72|[@ericvancewalton](https://steemit.com/@ericvancewalton)|336.781|1347763.370147|[alarm-clock-dawn-an-original-novel-episode-24](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-24)|\n|73|[@gavvet](https://steemit.com/@gavvet)|332.977|1291120.851189|[hi-to-reinvent-yourself-featuring-sauravrungta-as-author](https://steemit.com/all/@gavvet/hi-to-reinvent-yourself-featuring-sauravrungta-as-author)|\n|74|[@ozchartart](https://steemit.com/@ozchartart)|332.418|1282511.839603|[usdeth-btc-poloniex-technical-analysis-sept-07-2016](https://steemit.com/all/@ozchartart/usdeth-btc-poloniex-technical-analysis-sept-07-2016)|\n|75|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|332.381|1339735.329416|[celtic-heart-knot-pictorial](https://steemit.com/all/@bridgetbunchy/celtic-heart-knot-pictorial)|\n|76|[@roelandp](https://steemit.com/@roelandp)|331.053|1286840.936796|[my-proper-introduceyourself-hello-i-m-roelandp](https://steemit.com/all/@roelandp/my-proper-introduceyourself-hello-i-m-roelandp)|\n|77|[@ericvancewalton](https://steemit.com/@ericvancewalton)|330.742|1295789.736302|[know-me-an-original-poem](https://steemit.com/all/@ericvancewalton/know-me-an-original-poem)|\n|78|[@cryptovpn](https://steemit.com/@cryptovpn)|329.564|1276654.885609|[steemit-charity-run-no-1-doctors-without-borders](https://steemit.com/all/@cryptovpn/steemit-charity-run-no-1-doctors-without-borders)|\n|79|[@steemcleaners](https://steemit.com/@steemcleaners)|329.504|1292242.895864|[steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-](https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-1)|\n|80|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|320.241|1241317.843204|[my-cross-country-road-trip-greater-than-sf-greater-than-vega](https://steemit.com/all/@anwenbaumeister/my-cross-country-road-trip-greater-than-sf-greater-than-vegas-greater-than-boulder-greater-than-houston-greater-than-new-orleans)|\n|81|[@charlieshrem](https://steemit.com/@charlieshrem)|313.754|1475625.347428|[a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-](https://steemit.com/all/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-life-and-the-shrempresso)|\n|82|[@enric](https://steemit.com/@enric)|311.617|1208114.056405|[im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurre](https://steemit.com/all/@enric/im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurrency-my-revolutionary-struggle-now-im-here)|\n|83|[@dantheman](https://steemit.com/@dantheman)|309.920|1201663.748404|[scalability-of-individual-responsibility-in-anarchy](https://steemit.com/all/@dantheman/scalability-of-individual-responsibility-in-anarchy)|\n|84|[@officialfuzzy](https://steemit.com/@officialfuzzy)|309.814|1312470.274185|[e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-test](https://steemit.com/all/@officialfuzzy/e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-testnet-jewels-ico-success-gridcoin-and-making-it-rain)|\n|85|[@gavvet](https://steemit.com/@gavvet)|308.127|1212749.753443|[a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-](https://steemit.com/all/@gavvet/a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-author)|\n|86|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|303.555|1201909.200453|[the-love-of-a-maker](https://steemit.com/all/@bridgetbunchy/the-love-of-a-maker)|\n|87|[@steemcleaners](https://steemit.com/@steemcleaners)|302.924|1192233.387004|[steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-](https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-2)|\n|88|[@dantheman](https://steemit.com/@dantheman)|301.672|1169749.675855|[nonviolent-censorship-is-how-nonviolent-societies-create-non](https://steemit.com/all/@dantheman/nonviolent-censorship-is-how-nonviolent-societies-create-nonviolent-government)|\n|89|[@infovore](https://steemit.com/@infovore)|301.261|1214999.166441|[a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-](https://steemit.com/all/@infovore/a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-moment-on-steemit-this-week-on-steemit-steemmag-steemit-s-weekend)|\n|90|[@firepower](https://steemit.com/@firepower)|300.280|1368056.554963|[when-i-lost-sight-while-steeming](https://steemit.com/all/@firepower/when-i-lost-sight-while-steeming)|\n|91|[@ozchartart](https://steemit.com/@ozchartart)|294.271|1183433.553199|[usddoge-btc-poloniex-technical-analysis-sept-10-2016](https://steemit.com/all/@ozchartart/usddoge-btc-poloniex-technical-analysis-sept-10-2016)|\n|92|[@donkeypong](https://steemit.com/@donkeypong)|293.559|1138798.465907|[a-tribute-to-snail-mail](https://steemit.com/all/@donkeypong/a-tribute-to-snail-mail)|\n|93|[@charlieshrem](https://steemit.com/@charlieshrem)|292.995|1135970.118327|[progressive-relaxation-by-charlie-shrem-mindfulness-meditati](https://steemit.com/all/@charlieshrem/progressive-relaxation-by-charlie-shrem-mindfulness-meditation-in-prison-and-everyday-life)|\n|94|[@curie](https://steemit.com/@curie)|289.920|1234271.286622|[project-curie-s-daily-curation-list-9-sept-10-sept-2016](https://steemit.com/all/@curie/project-curie-s-daily-curation-list-9-sept-10-sept-2016)|\n|95|[@furion](https://steemit.com/@furion)|289.919|1234751.363741|[a-quick-look-at-null-and-the-profitability-of-promoted-posts](https://steemit.com/all/@furion/a-quick-look-at-null-and-the-profitability-of-promoted-posts)|\n|96|[@sirwinchester](https://steemit.com/@sirwinchester)|288.926|1119010.839878|[mr-gourmet-exploring-a-new-location](https://steemit.com/all/@sirwinchester/mr-gourmet-exploring-a-new-location)|\n|97|[@larkenrose](https://steemit.com/@larkenrose)|281.627|1138819.558651|[supply-and-demand-steemit-style](https://steemit.com/all/@larkenrose/supply-and-demand-steemit-style)|\n|98|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|278.638|1162968.108837|[a-peek-into-pre-columbian-worldviews-found-in-agricultural-p](https://steemit.com/all/@anwenbaumeister/a-peek-into-pre-columbian-worldviews-found-in-agricultural-practices-duality-complementarity-cyclicity-and-reciprocity)|\n|99|[@corbettreport](https://steemit.com/@corbettreport)|277.435|1238430.062064|[only-9-11-truth-can-smash-the-9-11-lies](https://steemit.com/all/@corbettreport/only-9-11-truth-can-smash-the-9-11-lies)|\n|100|[@sirwinchester](https://steemit.com/@sirwinchester)|277.087|1113453.030386|[find-your-why-self-discovery-and-finding-your-purpose-in-lif](https://steemit.com/all/@sirwinchester/find-your-why-self-discovery-and-finding-your-purpose-in-life)|\n\n\n- - -\nPrevious report: [September week 1](https://steemit.com/stats/@masteryoda/weekly-payouts-leaderboards-september-week-1)\n- - -\n\n###### © @masteryoda", "json_metadata": { + "tags": [ + "stats", + "steemstats", + "steem-stats", + "steemit" + ], + "users": [ + "masteryoda" + ], "image": [ "http://i.imgsafe.org/81a1095cd2.png", "http://imgh.us/canvas2_1.png" @@ -23898,35 +22735,1198 @@ "https://steemit.com/all/@corbettreport/only-9-11-truth-can-smash-the-9-11-lies", "https://steemit.com/all/@sirwinchester/find-your-why-self-discovery-and-finding-your-purpose-in-life", "https://steemit.com/stats/@masteryoda/weekly-payouts-leaderboards-september-week-1" - ], - "tags": [ - "stats", - "steemstats", - "steem-stats", - "steemit" - ], - "users": [ - "masteryoda" ] }, - "max_accepted_payout": "1000000.000 HBD", + "created": "2016-09-15T10:10:06", + "updated": "2016-09-15T10:10:06", + "depth": 0, + "children": 25, "net_rshares": 66209054025322, - "payout": 254.797, - "payout_at": "2016-09-22T10:10:06", - "pending_payout_value": "254.797 HBD", - "percent_hbd": 10000, - "permlink": "weekly-payouts-leaderboards-september-week-2", - "post_id": 1252375, + "is_paidout": false, + "payout_at": "2016-09-16T10:35:22", + "payout": 255.998, + "pending_payout_value": "255.998 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", "promoted": "0.000 HBD", "replies": [], + "active_votes": [ + { + "voter": "barrie", + "rshares": "532169253053" + }, + { + "voter": "smooth", + "rshares": "31619883437623" + }, + { + "voter": "badassmother", + "rshares": "2104460112078" + }, + { + "voter": "hr1", + "rshares": "2145924640161" + }, + { + "voter": "rossco99", + "rshares": "1417915977465" + }, + { + "voter": "jaewoocho", + "rshares": "23814289766" + }, + { + "voter": "joseph", + "rshares": "1703642542869" + }, + { + "voter": "recursive2", + "rshares": "475597049622" + }, + { + "voter": "masteryoda", + "rshares": "636257408102" + }, + { + "voter": "recursive", + "rshares": "3255552805749" + }, + { + "voter": "mineralwasser", + "rshares": "1319401954" + }, + { + "voter": "boombastic", + "rshares": "723485629708" + }, + { + "voter": "mrs.agsexplorer", + "rshares": "96850892172" + }, + { + "voter": "bingo-1", + "rshares": "1768181243" + }, + { + "voter": "smooth.witness", + "rshares": "5934415897198" + }, + { + "voter": "steempower", + "rshares": "1304768990979" + }, + { + "voter": "boatymcboatface", + "rshares": "456278512142" + }, + { + "voter": "idol", + "rshares": "9890048933" + }, + { + "voter": "chitty", + "rshares": "296830135486" + }, + { + "voter": "noaommerrr", + "rshares": "491386120119" + }, + { + "voter": "jocelyn", + "rshares": "1702377748" + }, + { + "voter": "acidsun", + "rshares": "85268786798" + }, + { + "voter": "easteagle13", + "rshares": "77509187475" + }, + { + "voter": "jamtaylor", + "rshares": "194274169571" + }, + { + "voter": "eeks", + "rshares": "74913340244" + }, + { + "voter": "fkn", + "rshares": "14615120866" + }, + { + "voter": "paco-steem", + "rshares": "478362750" + }, + { + "voter": "spaninv", + "rshares": "5762166771" + }, + { + "voter": "james-show", + "rshares": "8867214614" + }, + { + "voter": "elishagh1", + "rshares": "19210663051" + }, + { + "voter": "nanzo-scoop", + "rshares": "599812753161" + }, + { + "voter": "kefkius", + "rshares": "10057636659" + }, + { + "voter": "mummyimperfect", + "rshares": "182037114530" + }, + { + "voter": "coar", + "rshares": "313666285" + }, + { + "voter": "asch", + "rshares": "109429287148" + }, + { + "voter": "murh", + "rshares": "1414771825" + }, + { + "voter": "cryptofunk", + "rshares": "6375475951" + }, + { + "voter": "error", + "rshares": "2219507871" + }, + { + "voter": "marta-zaidel", + "rshares": "5268583124" + }, + { + "voter": "cyber", + "rshares": "985431200080" + }, + { + "voter": "theshell", + "rshares": "65234010126" + }, + { + "voter": "ak2020", + "rshares": "52176837915" + }, + { + "voter": "satoshifund", + "rshares": "3924426072251" + }, + { + "voter": "stiletto", + "rshares": "373242613" + }, + { + "voter": "juanmiguelsalas", + "rshares": "56687866808" + }, + { + "voter": "ratel", + "rshares": "33773766247" + }, + { + "voter": "will-zewe", + "rshares": "219282437688" + }, + { + "voter": "tim-johnston", + "rshares": "79219201090" + }, + { + "voter": "ziv", + "rshares": "19597062136" + }, + { + "voter": "zakharya", + "rshares": "16102536836" + }, + { + "voter": "stephen-somers", + "rshares": "2246887418" + }, + { + "voter": "trogdor", + "rshares": "286332817574" + }, + { + "voter": "thedashguy", + "rshares": "175807204421" + }, + { + "voter": "mark-waser", + "rshares": "5950208619" + }, + { + "voter": "albertogm", + "rshares": "17023129603" + }, + { + "voter": "kimziv", + "rshares": "213644107795" + }, + { + "voter": "emily-cook", + "rshares": "79449639183" + }, + { + "voter": "superfreek", + "rshares": "2316258127" + }, + { + "voter": "acassity", + "rshares": "31567740828" + }, + { + "voter": "grey580", + "rshares": "17557032440" + }, + { + "voter": "arcaneinfo", + "rshares": "1250400407" + }, + { + "voter": "michaellamden68", + "rshares": "3987474604" + }, + { + "voter": "ericvancewalton", + "rshares": "449234523497" + }, + { + "voter": "thebatchman", + "rshares": "20789508317" + }, + { + "voter": "rubybian", + "rshares": "76015962675" + }, + { + "voter": "mstang83", + "rshares": "256232582" + }, + { + "voter": "elyaque", + "rshares": "7271192517" + }, + { + "voter": "tcfxyz", + "rshares": "25055988031" + }, + { + "voter": "romel", + "rshares": "2596866157" + }, + { + "voter": "futurefood", + "rshares": "6939608148" + }, + { + "voter": "slowwalker", + "rshares": "839919246636" + }, + { + "voter": "furion", + "rshares": "71342508795" + }, + { + "voter": "barbara2", + "rshares": "342310650" + }, + { + "voter": "ch0c0latechip", + "rshares": "380473875" + }, + { + "voter": "doge4lyf", + "rshares": "352132228" + }, + { + "voter": "cynetyc", + "rshares": "136318424" + }, + { + "voter": "steemit-life", + "rshares": "25221048335" + }, + { + "voter": "asim", + "rshares": "12266682329" + }, + { + "voter": "aaseb", + "rshares": "15125765260" + }, + { + "voter": "karen13", + "rshares": "4430997922" + }, + { + "voter": "nabilov", + "rshares": "274216136539" + }, + { + "voter": "karenmckersie", + "rshares": "476682819" + }, + { + "voter": "thinkngrow", + "rshares": "840273090" + }, + { + "voter": "milestone", + "rshares": "47995763722" + }, + { + "voter": "lichtblick", + "rshares": "7462648594" + }, + { + "voter": "btcbtcbtc20155", + "rshares": "5840939270" + }, + { + "voter": "adamt", + "rshares": "4210092453" + }, + { + "voter": "blueorgy", + "rshares": "171273414934" + }, + { + "voter": "poseidon", + "rshares": "4777021608" + }, + { + "voter": "simon.braki.love", + "rshares": "3506024506" + }, + { + "voter": "bones", + "rshares": "3424170757" + }, + { + "voter": "azurejasper", + "rshares": "3787131399" + }, + { + "voter": "bola", + "rshares": "1840626661" + }, + { + "voter": "deanliu", + "rshares": "33535112463" + }, + { + "voter": "neroru", + "rshares": "7822595883" + }, + { + "voter": "jl777", + "rshares": "215381633110" + }, + { + "voter": "meteor78", + "rshares": "450339105" + }, + { + "voter": "positive", + "rshares": "11852480777" + }, + { + "voter": "moon32walker", + "rshares": "13133061167" + }, + { + "voter": "tobythecat", + "rshares": "685414916" + }, + { + "voter": "sompitonov", + "rshares": "3997180642" + }, + { + "voter": "lemooljiang", + "rshares": "14893508235" + }, + { + "voter": "krabgat", + "rshares": "20258667266" + }, + { + "voter": "proto", + "rshares": "18175770345" + }, + { + "voter": "pinkisland", + "rshares": "30220408709" + }, + { + "voter": "ace108", + "rshares": "4083118071" + }, + { + "voter": "sisterholics", + "rshares": "36105101075" + }, + { + "voter": "royalmacro", + "rshares": "9087754202" + }, + { + "voter": "faraz", + "rshares": "291577197" + }, + { + "voter": "fnait", + "rshares": "399064983" + }, + { + "voter": "keepcalmand", + "rshares": "354529957" + }, + { + "voter": "cwmyao1", + "rshares": "607346548" + }, + { + "voter": "smailer", + "rshares": "42831828400" + }, + { + "voter": "steemster1", + "rshares": "153025160" + }, + { + "voter": "fabien", + "rshares": "26276845296" + }, + { + "voter": "bullionstackers", + "rshares": "1311817181" + }, + { + "voter": "michiel", + "rshares": "10079340576" + }, + { + "voter": "malaiandrueth", + "rshares": "66976384508" + }, + { + "voter": "glitterpig", + "rshares": "3445106241" + }, + { + "voter": "uwe69", + "rshares": "176122993" + }, + { + "voter": "gomeravibz", + "rshares": "24521510758" + }, + { + "voter": "taker", + "rshares": "9193596396" + }, + { + "voter": "pakisnxt", + "rshares": "1042734400" + }, + { + "voter": "nekromarinist", + "rshares": "7824682639" + }, + { + "voter": "sharon", + "rshares": "60565253" + }, + { + "voter": "french.fyde", + "rshares": "7879017303" + }, + { + "voter": "lillianjones", + "rshares": "61714352" + }, + { + "voter": "laonie", + "rshares": "1244785807395" + }, + { + "voter": "twinner", + "rshares": "174513111694" + }, + { + "voter": "laoyao", + "rshares": "25205404125" + }, + { + "voter": "myfirst", + "rshares": "42592081002" + }, + { + "voter": "somebody", + "rshares": "259167037180" + }, + { + "voter": "flysaga", + "rshares": "9690288359" + }, + { + "voter": "gmurph", + "rshares": "2084677795" + }, + { + "voter": "midnightoil", + "rshares": "55821231813" + }, + { + "voter": "coderg", + "rshares": "85931785" + }, + { + "voter": "ullikume", + "rshares": "4371311648" + }, + { + "voter": "miketr", + "rshares": "4752967790" + }, + { + "voter": "xiaohui", + "rshares": "143185133504" + }, + { + "voter": "jphamer1", + "rshares": "21533856625" + }, + { + "voter": "elfkitchen", + "rshares": "6710387381" + }, + { + "voter": "joele", + "rshares": "105893050403" + }, + { + "voter": "oflyhigh", + "rshares": "6135664318" + }, + { + "voter": "xiaokongcom", + "rshares": "4476983604" + }, + { + "voter": "hms818", + "rshares": "1434064827" + }, + { + "voter": "msjennifer", + "rshares": "62201879" + }, + { + "voter": "ciao", + "rshares": "57196572" + }, + { + "voter": "villainblack", + "rshares": "3743673036" + }, + { + "voter": "steemo", + "rshares": "55449983" + }, + { + "voter": "xianjun", + "rshares": "9024630191" + }, + { + "voter": "steema", + "rshares": "55306941" + }, + { + "voter": "evgenyche", + "rshares": "74615731" + }, + { + "voter": "confucius", + "rshares": "72902270" + }, + { + "voter": "miacats", + "rshares": "93794893233" + }, + { + "voter": "jarvis", + "rshares": "56157882" + }, + { + "voter": "microluck", + "rshares": "605862734" + }, + { + "voter": "ashwim", + "rshares": "599010678" + }, + { + "voter": "rubenalexander", + "rshares": "6535955953" + }, + { + "voter": "fortuner", + "rshares": "55520042" + }, + { + "voter": "chinadaily", + "rshares": "2131698126" + }, + { + "voter": "lemouth", + "rshares": "8114302214" + }, + { + "voter": "alexma3x", + "rshares": "670432237" + }, + { + "voter": "gvargas123", + "rshares": "10344067760" + }, + { + "voter": "johnbyrd", + "rshares": "54235184" + }, + { + "voter": "thomasaustin", + "rshares": "53039566" + }, + { + "voter": "thermor", + "rshares": "54216305" + }, + { + "voter": "ficholl", + "rshares": "53048942" + }, + { + "voter": "widell", + "rshares": "54209199" + }, + { + "voter": "revelbrooks", + "rshares": "53821337" + }, + { + "voter": "andrewawerdna", + "rshares": "25448736737" + }, + { + "voter": "sethlinson", + "rshares": "11074790441" + }, + { + "voter": "booky", + "rshares": "4042151059" + }, + { + "voter": "slorunner", + "rshares": "101945845" + }, + { + "voter": "curpose", + "rshares": "52708083" + }, + { + "voter": "lenar", + "rshares": "1258844947" + }, + { + "voter": "runridefly", + "rshares": "2196689434" + }, + { + "voter": "stephenkendal", + "rshares": "54585840" + }, + { + "voter": "troich", + "rshares": "52836995" + }, + { + "voter": "nadin3", + "rshares": "5011419926" + }, + { + "voter": "davidjkelley", + "rshares": "1661479473" + }, + { + "voter": "team101", + "rshares": "191746347" + }, + { + "voter": "crion", + "rshares": "52842496" + }, + { + "voter": "greatness", + "rshares": "185701642" + }, + { + "voter": "hitherise", + "rshares": "52505412" + }, + { + "voter": "wiss", + "rshares": "52496656" + }, + { + "voter": "sponge-bob", + "rshares": "9069255648" + }, + { + "voter": "digital-wisdom", + "rshares": "15569866401" + }, + { + "voter": "ethical-ai", + "rshares": "3791392195" + }, + { + "voter": "stroully", + "rshares": "53252658" + }, + { + "voter": "jwaser", + "rshares": "6830877679" + }, + { + "voter": "thadm", + "rshares": "52916909" + }, + { + "voter": "prof", + "rshares": "52915101" + }, + { + "voter": "richhersey", + "rshares": "2274469633" + }, + { + "voter": "smisi", + "rshares": "1688383151" + }, + { + "voter": "tito-baron", + "rshares": "123190927" + }, + { + "voter": "lighter", + "rshares": "53413720" + }, + { + "voter": "yorsens", + "rshares": "52560790" + }, + { + "voter": "bane", + "rshares": "52242652" + }, + { + "voter": "vive", + "rshares": "52236265" + }, + { + "voter": "coad", + "rshares": "52230725" + }, + { + "voter": "bwaser", + "rshares": "2675382304" + }, + { + "voter": "sofa", + "rshares": "53003720" + }, + { + "voter": "cnfund", + "rshares": "83883352848" + }, + { + "voter": "bones261", + "rshares": "348073541" + }, + { + "voter": "brains", + "rshares": "9054592458" + }, + { + "voter": "bones555", + "rshares": "633672233" + }, + { + "voter": "ailo", + "rshares": "53055629" + }, + { + "voter": "chick1", + "rshares": "5893247853" + }, + { + "voter": "aoki", + "rshares": "51637870" + }, + { + "voter": "typingagent", + "rshares": "52621399" + }, + { + "voter": "cwb", + "rshares": "52634176" + }, + { + "voter": "slayer", + "rshares": "3623547539" + }, + { + "voter": "anomaly", + "rshares": "407075832" + }, + { + "voter": "ellepdub", + "rshares": "2401189699" + }, + { + "voter": "ola1", + "rshares": "172324884" + }, + { + "voter": "michelle.gent", + "rshares": "4601294293" + }, + { + "voter": "herpetologyguy", + "rshares": "12396524304" + }, + { + "voter": "eavy", + "rshares": "51470533" + }, + { + "voter": "roto", + "rshares": "51484593" + }, + { + "voter": "morgan.waser", + "rshares": "4816686066" + }, + { + "voter": "thefinanceguy", + "rshares": "291933324" + }, + { + "voter": "glassheart", + "rshares": "51235131" + }, + { + "voter": "steemq", + "rshares": "51230296" + }, + { + "voter": "battalar", + "rshares": "51227561" + }, + { + "voter": "haved", + "rshares": "50938725" + }, + { + "voter": "motion", + "rshares": "50871059" + }, + { + "voter": "ardly", + "rshares": "50708837" + }, + { + "voter": "unilever", + "rshares": "50572441" + }, + { + "voter": "ziggo", + "rshares": "50570250" + }, + { + "voter": "penthouse", + "rshares": "50565798" + }, + { + "voter": "bapparabi", + "rshares": "417240825" + }, + { + "voter": "morse", + "rshares": "50433760" + }, + { + "voter": "carre", + "rshares": "50372583" + }, + { + "voter": "btshuang", + "rshares": "88794357432" + }, + { + "voter": "dodders007", + "rshares": "3229471810" + }, + { + "voter": "strong-ai", + "rshares": "3689616990" + }, + { + "voter": "grisha-danunaher", + "rshares": "538350430" + }, + { + "voter": "igtes", + "rshares": "74444594" + }, + { + "voter": "buffett", + "rshares": "148119740" + }, + { + "voter": "ctu", + "rshares": "162917785" + }, + { + "voter": "front", + "rshares": "162911190" + }, + { + "voter": "prosto-veter", + "rshares": "159394872" + }, + { + "voter": "yourase1", + "rshares": "162375387" + }, + { + "voter": "durex", + "rshares": "161839498" + }, + { + "voter": "gravity", + "rshares": "160973134" + }, + { + "voter": "realtime", + "rshares": "160957729" + }, + { + "voter": "planet", + "rshares": "160326045" + }, + { + "voter": "correct", + "rshares": "159984914" + }, + { + "voter": "fallout", + "rshares": "159175576" + }, + { + "voter": "agundoba", + "rshares": "158777847" + }, + { + "voter": "alberged", + "rshares": "158726294" + }, + { + "voter": "alene33", + "rshares": "158718933" + }, + { + "voter": "argesti", + "rshares": "158713085" + }, + { + "voter": "artamm", + "rshares": "158709279" + }, + { + "voter": "artyne43", + "rshares": "158704921" + }, + { + "voter": "odlaen", + "rshares": "158701918" + }, + { + "voter": "brenna88", + "rshares": "158692611" + }, + { + "voter": "fortelyn", + "rshares": "158688416" + }, + { + "voter": "cheva0", + "rshares": "158684075" + }, + { + "voter": "peris2", + "rshares": "158678677" + }, + { + "voter": "gilbertur", + "rshares": "158667376" + }, + { + "voter": "irdaince", + "rshares": "158658206" + }, + { + "voter": "whenda3", + "rshares": "158655323" + }, + { + "voter": "brenkelley", + "rshares": "158647100" + }, + { + "voter": "donaigh", + "rshares": "158640828" + }, + { + "voter": "baire00", + "rshares": "158637072" + }, + { + "voter": "gundalach", + "rshares": "158624650" + }, + { + "voter": "childirac", + "rshares": "158620061" + }, + { + "voter": "guoteff", + "rshares": "158609836" + }, + { + "voter": "citigroup", + "rshares": "158541985" + }, + { + "voter": "wymmendycer", + "rshares": "157896009" + }, + { + "voter": "fariuss", + "rshares": "157892476" + }, + { + "voter": "chutec", + "rshares": "157889502" + }, + { + "voter": "udoladhnak", + "rshares": "157887016" + }, + { + "voter": "brochari", + "rshares": "157883027" + }, + { + "voter": "hervedui", + "rshares": "157877631" + }, + { + "voter": "isetar", + "rshares": "157876011" + }, + { + "voter": "pollengus", + "rshares": "157874479" + }, + { + "voter": "valiner", + "rshares": "157871566" + }, + { + "voter": "cunod", + "rshares": "157869417" + }, + { + "voter": "trentegan", + "rshares": "157866738" + }, + { + "voter": "shenburen", + "rshares": "157864709" + }, + { + "voter": "margery2", + "rshares": "157861808" + }, + { + "voter": "thiner", + "rshares": "157860265" + }, + { + "voter": "joycery", + "rshares": "157857120" + }, + { + "voter": "cuiliobeth", + "rshares": "157855001" + }, + { + "voter": "gwilion", + "rshares": "157853250" + }, + { + "voter": "damul", + "rshares": "157847571" + }, + { + "voter": "youthan", + "rshares": "157845805" + }, + { + "voter": "antaja", + "rshares": "188144802" + }, + { + "voter": "royfft", + "rshares": "156241596" + } + ], + "author_reputation": 25.0, "stats": { - "flag_weight": 0.0, - "gray": false, "hide": false, - "total_votes": 291 + "gray": false, + "total_votes": 291, + "flag_weight": 0.0 }, - "title": "Weekly payouts leaderboards - September week 2", - "updated": "2016-09-15T10:10:06", - "url": "/stats/@masteryoda/weekly-payouts-leaderboards-september-week-2" + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/stats/@masteryoda/weekly-payouts-leaderboards-september-week-2", + "blacklists": [] } ] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_created.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_created.pat.json new file mode 100644 index 00000000..6cb4902d --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_created.pat.json @@ -0,0 +1,2196 @@ +[ + { + "active_votes": [ + { + "rshares": "155925481", + "voter": "szklaneczka" + } + ], + "author": "szklaneczka", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "**ICONOMI found management platform** is currently in ICO and you can still invest. \n\nThat is most anticipated platform of 2016 why You may ask me. I will give you some graph and explanation. Solutions like ICONOMI are very popular in old economy people want be rich and wanted get more profit so they tried give money to people who know more about trading. Found management platforms preforms much better than average investors. Big guys just want invest not day trading. In crypto ICOMI will be 1st such project - such needed project.\n\nNow true facts and everything that I show you, is now publicly available on web. Graphs taken from coinmarketcap.com are showing us, what is going on cryptocurrency markets right now:\n![](http://i.imgur.com/FLe0WeF.jpg) \n![](http://i.imgur.com/s6Aeke2.jpg) \n![](http://i.imgur.com/RX0JK1z.jpg) \n\nYou see on won eyes that: Bitcoin is loosing over time market share to other alt coins. There is many multiple reasons for that. Without ICONOMI getting on cryptocurrency board for new investors will be VERY hard. \nThat is:\n \n- choose right one coin. \n- skip scams \n- buy valuable coins \n- crypto markets are getting bigger and bigger all time, there is about over 700coins tradable now\n\n\nICONOMI will be platform that for **every investor looking for big profits**. \nICONOMI will give us 2 founds:\n\n- **The ICONOMI.INDEX FUND** - a \"Passive\" - Coin Traded Fund (CTF). This fund operates on special rules, variables that manage the fund through automation. This Found will be the fastest available to investors at launch in Q4 2016 - The ICONOMI.PERFORMANCE FUND - an \"\nActive\"\n- **Coin Managed Fund (CMF)**, Operated by and managed by best investors. This fund will be invitation only available. If you invest in ICO you will get you invitation for free. I bet is worth its price. Those found will be carefully managed by ICONOMI experts and will provide best profits available.\n\nGraphs shows that volume of alt coins is rising heavily and will move up. Without ICONOMI founds many investors will probably lose cash on market, while rypto currency market will rise as whole. **If buy some ICO shares you will get dividends forever as share holder.**\n Soon real professional traders will come to cryptocurrency and you as investor in order to get big profits will have to use service of ICONOMI. \n\nPersonally I have invested in ICO and believe that **ICONOMI is future of crypto trading**. Don't miss a chance and invest here:[ico.iconomi.net](ico.iconomi.net) \n\nIf you want invest in ICO: ![](http://i.imgur.com/iqDpTag.png) \n\nOfficial Links:\n \n- [ico.iconomi.net](ico.iconomi.net \"Main site\") \n- [https://www.facebook.com/iconomi.net/](https://www.facebook.com/iconomi.net/ \"Facebook\") \n- [https://twitter.com/iconominet](https://twitter.com/iconominet\"twitter.com\")\n- [https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/](https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/) \n- [https://telegram.me/iconomi](https://telegram.me/iconomi)\n- [https://medium.com/iconominet](https://medium.com/iconominet)\n- [https://iconominet.herokuapp.com](https://iconominet.herokuapp.com)", + "category": "cryptocurrency", + "children": 0, + "created": "2016-09-15T19:47:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.imgur.com/FLe0WeF.jpg", + "http://i.imgur.com/s6Aeke2.jpg", + "http://i.imgur.com/RX0JK1z.jpg", + "http://i.imgur.com/iqDpTag.png" + ], + "links": [ + "ico.iconomi.net", + "https://www.facebook.com/iconomi.net/", + "https://twitter.com/iconominet\"twitter.com\"", + "https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/", + "https://telegram.me/iconomi", + "https://medium.com/iconominet", + "https://iconominet.herokuapp.com" + ], + "tags": [ + "cryptocurrency", + "bitcoin", + "profit", + "altcoin" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 155925481, + "payout": 0.0, + "payout_at": "2016-09-16T19:47:00", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "iconomi-why-we-need-found-management-explained-on-graphs", + "post_id": 961032, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "ICONOMI - why we need found management explained on graphs.", + "updated": "2016-09-15T19:47:00", + "url": "/cryptocurrency/@szklaneczka/iconomi-why-we-need-found-management-explained-on-graphs" + }, + { + "active_votes": [ + { + "rshares": "151513711", + "voter": "newsfeed" + } + ], + "author": "newsfeed", + "author_payout_value": "0.000 HBD", + "author_reputation": 36.03, + "beneficiaries": [], + "blacklists": [], + "body": "The Texas Rangers are 33-10 (.767) in one-run games this season. This would stand as a modern record for winning percentage in one-run games, besting the 2012 Orioles, who were 29-9 (.763).\n\n

http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815

\n\nBut if we dig deep into the archives of baseball history, we learn that this is actually the best record since the 1890 Brooklyn Bridegrooms, who were 14-4 (.778) in one-run games en route to an overall 86-43 (.667) record and the National League pennant.\n\n**Source / Read More...** sportingnews.com \n\n
\n\n
\n\n**NEWS FEED** \n*Get the latest headlines from around the world right on your Steemit Feed! With @newsfeed you always stay in the know about all sorts of topics ranging from Politics & Finance to Sports*\n\n**Currently In Beta**\n*Full news feed from hand picked creditable sources from all sides of the political and social realm. Although not fully operational, posts will be random while testing BUT do have real headlines!*", + "category": "newsfeed", + "children": 0, + "created": "2016-09-15T19:46:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815", + "https://ipfs.pics/ipfs/QmUo1EuVPSs3prLRdJH95Lg97vyvzSfhH6srZH5bqRh7p6" + ], + "links": [ + "http://www.sportingnews.com/mlb/news/texas-rangers-record-in-one-run-games-brooklyn-bridegrooms/irlcvzvv8fui1vgogevkmomch\n" + ], + "tags": [ + "newsfeed", + "news", + "sports", + "rangers", + "baseball" + ], + "users": [ + "newsfeed" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 151513711, + "payout": 0.0, + "payout_at": "2016-09-16T19:46:30", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 0, + "permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", + "post_id": 961024, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "Rangers' record in one-run games nearing truly historic level", + "updated": "2016-09-15T19:46:30", + "url": "/newsfeed/@newsfeed/rangers-record-in-one-run-games-nearing-truly-historic-level" + }, + { + "active_votes": [ + { + "rshares": "3377256926", + "voter": "anton333" + } + ], + "author": "anton333", + "author_payout_value": "0.000 HBD", + "author_reputation": 54.81, + "beneficiaries": [], + "blacklists": [], + "body": "\n

Model of Skeleton hands,without scissors and glue.

\n1


\n2


\n\n


\n

I need a piece of paper.

\n3


\n4


\n5


\n6


\n7


\n1


\n

Part 1 Part 2 Part 3 Part4 Part5 Part6 Part7 Part8 Part9 Part10

\n", + "category": "art", + "children": 0, + "created": "2016-09-15T19:46:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s18.postimg.org/fi4tfvrgp/image.jpg", + "https://s9.postimg.org/kn7ogredb/image.jpg", + "https://s10.postimg.org/nnna3pxp5/image.jpg", + "https://s12.postimg.org/dltyd50wd/image.jpg", + "https://s12.postimg.org/qwsf7bs99/image.jpg", + "https://s3.postimg.org/7p1m66f4j/image.jpg", + "https://s22.postimg.org/4388u7yoh/image.jpg", + "https://s14.postimg.org/qo99yko5t/image.jpg" + ], + "links": [ + "https://postimg.org/image/byivq2oqt/", + "https://postimage.org/index.php?lang=russian", + "https://postimg.org/image/ivepluv0b/", + "https://postimg.org/image/efv1n0qmt/", + "https://postimg.org/image/u9lgfmvnt/", + "https://postimg.org/image/gzhee9knd/", + "https://postimg.org/image/gwtumvm6n/", + "https://postimg.org/image/55ifcrhhp/", + "https://postimg.org/image/4cbh56p1p/", + "https://steemit.com/art/@anton333/origami-start-with-the-simplest", + "https://steemit.com/art/@anton333/origami-part-two-do-a-swan", + "https://steemit.com/art/@anton333/origami-part-3-the-model-of-a-mouse", + "https://steemit.com/art/@anton333/origami-part-4-the-model-of-a-rose-petals", + "https://steemit.com/art/@anton333/origami-part-5-the-model-of-master-yoda", + "https://steemit.com/art/@anton333/origami-part-6-the-model-of-eagle", + "https://steemit.com/art/@anton333/origami-part-7-the-model-of-dagger", + "https://steemit.com/art/@anton333/origami-part-8-the-model-of-spider", + "https://steemit.com/art/@anton333/origami-part-9-the-model-of-tooth", + "https://steemit.com/art/@anton333/origami-part-10-the-model-of-flower" + ], + "tags": [ + "art", + "photography", + "origami" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 3377256926, + "payout": 0.0, + "payout_at": "2016-09-16T19:46:30", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "origami-part-11-the-model-of-skeleton-hands", + "post_id": 961025, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "Origami Part 11, the model of Skeleton hands.", + "updated": "2016-09-15T19:46:30", + "url": "/art/@anton333/origami-part-11-the-model-of-skeleton-hands" + }, + { + "active_votes": [ + { + "rshares": "64358062", + "voter": "agartha" + } + ], + "author": "agartha", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I think I just hacked Monero lol it's a joke but the security too thou \n\nLook at this! \n\n\nhttps://www.facebook.com/agartha.white.3/posts/179267779175393", + "category": "steemit", + "children": 0, + "created": "2016-09-15T19:44:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://www.facebook.com/agartha.white.3/posts/179267779175393" + ], + "tags": [ + "steemit", + "hack", + "monero", + "bitcoin", + "lol" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 64358062, + "payout": 0.0, + "payout_at": "2016-09-16T19:44:00", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "i-hack-monero-xmr", + "post_id": 961010, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "I hack Monero (Xmr) ?", + "updated": "2016-09-15T19:44:00", + "url": "/steemit/@agartha/i-hack-monero-xmr" + }, + { + "active_votes": [ + { + "rshares": "1202120459", + "voter": "varda" + } + ], + "author": "varda", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

  In the morning, at 5 am when the moon completes his round, the alarm rings, my deepest sleep I wake up painfully. K\u00e9ops my cat starts singing tour and stops only when he filled his mess tin. Sweety then, the cat of my son jumps on the furniture in the kitchen and also claimed his bowl. Kashmir him not to come after me, until I make him hugs.

\n

\n

\n

\n

 A small cup of coffee and I'm up for the day. After my shower, I have to feed the fish pond and two hens, they are waiting for me impatiently for me to release them from their cages.

\n

\n


\n

\n


\n

 6:15, I start my bag on her arm, my water bottle and my biscuit for lunch. On the road I am alone, few vehicles I meet. Great to run your car on a deserted road. In the winter when it snowed, I am the first to make tracks in the whiteness of the snow grows like cotton wool, sometimes, crazy beyond me and skids, it is an adrenaline rush. In summer the sun rises gives the sky a color of red sweetness, yellow, orange. In autumn, the trees begin to change color, it is a season because I love the beauty of trees is unique. 

\n

\n


\n

Here I come down the street or is my workplace, hospital, regional hospital, the CHR. Vehicles coming after one another because we start at 7am. The staff is found, speak, tells their evening then everyone goes to the same place: the time clock, control object of our hours worked.

\n

\n


\n

 In the ladies locker room, it gets held: white jacket with blue and green patterns representing the logo of the institution, blue pants with various pockets which we do not serve! 

\n

\n


\n

We arrive in our service, mine is the neurological rehabilitation service: we give up (or so) of people who have a stroke, an accident with neurological trauma, people who have multiple sclerosis or Guillain barred and other chronic diseases whose name is almost unknown. 

\n

\n


\n

\n


\n

\n


\n

We start our day with a report on each patient last night, we have 20 in service. After beginning the nursing: we make the toilet of the patient who is totally dependent. We get up in the chair. For others, we must educate, continue the actions he has learned with the therapist in the individual care, the patient should regain maximum independence so they can go home and take care only . It's a job that can last from 3 months to 6 months beyond, we can not do anything for them. 

\n

\n


\n

Headline in this service is: you come to bed but you leave again walking. 

\n


\n

Sometimes, we fail either because the patient does not want a return to autonomy, or because the patient is too ill. We give the same chance to everyone, rich, poor, alcoholic, drug addict, young or old. 

\n


\n

The management of a patient goes from shaving the beard of a man to the presentation on the toilet, the room arrangement the carefully tended beds. 

\n


\n

Lunch arrived around 8:30 am, few patient is in the dining hall for breakfast, other unfinished eat in bed Logistical assistance serves meals that are different if the patient is diabetic, diet, dieters, old, or in solid supply resumption. You should know that when the patient has had a stroke, a stroke, swallowing is absent, which means that if the patient eats a sandwich, but he swallows the bread goes in the bronchial tubes and not in the stomach, giving a false swallowing, bronchi become infected and it's a disaster. So this patient who made false swallowing should eat while cream consistency and drink thickened liquid. Which is not very good but I admit it must go through these stages in order to re-eat a day normally. 

\n


\n

Physiotherapists arrive at 9am and leave a 17h, occupational therapists also. There is also a neuropsychologist, a speech therapist and all do work that allows the patient to regain maximum independence, which means that the patient all day is busy. Visitors can come between 14:30 and 19:30. 

\n


\n

After lunch, we continue our work, when all is well, we finish around 10:30 or 11am but sometimes it is noon we are still in the rooms. 

\n


\n

In terms of handling, the entry of the patient, it is usually in bed or in a wheelchair with a right hemiplegia or left, some have forgotten that they had half a disabled body, so it must withstand and no wear and show him how to do with one leg to go from wheelchair to bed and vice versa. Others are completely invalid, they know not move neither arms nor legs, and for those, or we wear them either we lift them with a forklift. 

\n


\n

During dinner, we feed the disabled and we encode our care in the computer.

\n


\n

 Around 13h, we are a few naps after going on the toilet. Sometimes we have a problem in the pants, oops! When everyone is changed to bed, we have a service change ratio and the time, the hour of the end of our service is lagging. At 14h is the start of the morning shift. For my part, I take a good shower and I take the way home or waiting for my cats and my dog makes me a big party. 

\n


\n

We must not believe that the nursing profession is simple, each service is different and you can not compare the care of each other. 

\n


\n

I hope I have not bothered you with this long text, I wish you a good day to you all.     

\n", + "category": "story", + "children": 0, + "created": "2016-09-15T19:43:54", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/15/DSCN0477faad0.jpg", + "https://www.steemimg.com/images/2016/09/15/keops0029612b.jpg", + "https://www.steemimg.com/images/2016/09/15/Au-sommet81f7b.jpg", + "https://www.steemimg.com/images/2016/09/15/16e3c4.jpg", + "https://www.steemimg.com/images/2016/09/15/Photo0224b24a.jpg", + "https://www.steemimg.com/images/2016/09/15/d85917d4a45b3d581b5f40d1d7a7504a3bb1e.jpg", + "https://www.steemimg.com/images/2016/09/15/chr841bd.jpg", + "https://www.steemimg.com/images/2016/09/15/DSCN1513-Copiee7a4d.jpg", + "https://www.steemimg.com/images/2016/09/15/Capture2bb0b8.jpg", + "https://www.steemimg.com/images/2016/09/15/370086-1f7d83.jpg", + "https://www.steemimg.com/images/2016/09/15/Capturec0ccc.jpg", + "https://www.steemimg.com/images/2016/09/15/souleve-malade-foldyadb08.jpg" + ], + "tags": [ + "story", + "health" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1202120459, + "payout": 0.0, + "payout_at": "2016-09-16T19:43:54", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "my-day-hospital", + "post_id": 961007, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "My day hospital", + "updated": "2016-09-15T19:43:54", + "url": "/story/@varda/my-day-hospital" + }, + { + "active_votes": [ + { + "rshares": "54846770", + "voter": "ejaredallen" + } + ], + "author": "ejaredallen", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\n

Nature

\n

I haven't stopped and taken a picture of the beauty around me in a long time. It's funny how we can get so caught up in work and the business of a crazy life and miss the simply beauty along the way. Sometime you've just got to stop and smell the roses; and while you're there, take a picture!

\n

\n

These aren't roses, I know: they're wild flowers. They don't get the nurture and care that roses do, and yet they are provided for and they bloom into beautiful blossoms in their own time. They have a harder life than others, and that's how we humans are as well. Some of us were well taken care of growing up and were treated like roses, while others were left in the field to grow up alone and without the love and care we should have had. But we are all beautiful in our own ways and if we survive long enough, we will blossom into something spectacular.

\n

\n

Colorado mountain rivers

\n

When the snow on the tops of the mountains melt, it feed the rushing rivers that carve their way down the mountainside. The climbing is excellent, the whether and the views are truly gorgeous, but something about the rivers rushing through the mountains draws you in. There is a memorization about the brave rivers unafraid of the mountains and simply rushing on by recklessly.

\n

\n

Mississippi at sunset

\n

Sometimes the world just slows down and magic happens. This was one of those times. On the night before my sister's wedding in Tupelo, Mississippi the sky exploded in color. What a calm reassurance before a monumental event: the approval stamp of God upon the sanction of their marriage.

\n

\n

Hundreds of years old Indian hieroglyphs in Arizona

\n

This was an incredible hike in the Arizona mountain ranges to discover a place where the Apache Indians, or perhaps some other tribe had lived hundreds of years ago!

\n

\n

Uganda, Africa at twilight, from a moving bus

\n

Africa is always an adventure, but in 2015 we took a safari on the northern rim and caught this shot on the way back to the lodge. I love how the beauty of the world is unique in its diversity from place to place, even across the Atlantic.

\n

\n

This is one of my favorite shots. I don't remember where I took it or when, but the colors, the bliss, the peacefulness of this field of flowers was stunning. I'm glad I was able to capture an image of its beauty to remember it by. And to think, all of this beauty was made by God in a second! His power to create a world is amazing and perfect in every way. We get to see His marvelous creation every day! 

\n

Follow me @ejaredallen for more pictures and great content!

\n", + "category": "photography", + "children": 0, + "created": "2016-09-15T19:42:24", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-986x1024-289x300.jpeg", + "http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-3-1024x768-300x225.jpeg", + "http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6440-1024x1024-300x300.jpg", + "http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6031-1024x1024-300x300.jpg", + "http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_5829-1024x1024-300x300.jpg", + "http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/2015-07-13-06-37-59-1024x1024-300x300.jpg", + "http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_7281-1024x1024-300x300.jpg" + ], + "links": [ + "https://steemit.com/@ejaredallen" + ], + "tags": [ + "photography", + "pictures", + "art", + "steemit", + "travel" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 54846770, + "payout": 0.0, + "payout_at": "2016-09-16T19:42:24", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "wanna-see-something-cool", + "post_id": 960996, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "Shot From Around The Block On An iPhone!", + "updated": "2016-09-15T19:43:33", + "url": "/photography/@ejaredallen/wanna-see-something-cool" + }, + { + "active_votes": [ + { + "rshares": "1979857275", + "voter": "cwbrooch" + }, + { + "rshares": "3911638805", + "voter": "zaitsevalesyaa" + } + ], + "author": "cwbrooch", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

This is part 2 of my Memoir.  Missed Part 1? Click here.
\nDon't know what's going on? Start from the beginning here.

\n

If you like what you're reading, follow me @cwbrooch for more craziness. if you love what you're reading recommend me to other peeps :) feedback is also very appreciated.

\n

\n

Russian Roulette - A Memoir of my Two Years in Moscow - Part 2 - Under the Table Tactics

\n

In this part of my memoir I am going to attempt to describe the dark side of Moscow. All stories depicted here either happened directly to people I knew, or were described to me as  a it's-russia-get-used-to-it anecdote.
\nYes, I will be talking about corruption and paying people under the table for things but bear in mind that even though it seems like a common practice definitely not all people do that and not all people experience the phenomenon.

\n

A ROUTINE POLICE CHECK 

\n

It is said that it is extremely wise to keep 2k-5k Rubles (about 28-68 Euro, 30-77 Dollars, 23-58 Pounds) in your registration papers at all times. They tend to disappear when you get your documents back from the officer... If one does not have such loose change, the guy tends to make one's life difficult. \"You were speeding\", \"You didn't stop at the STOP sign\", \"You're light is out\" etc. Driving is another interesting phenomenon in Moscow. You might think that since the metro is so packed, the streets will be empty. On the contrary, but I will not get into that right now as that makes a completely different post...  However, what I will tell you is  how one of my students passed her driving exam, which leads us to...

\n

PAYING TO PASS AN EXAM

\n

After her first failed attempt, my student looked at her instructor/examiner and asked: \"Could you please tell me what I did wrong, so I can work on it in the future?\" He stared back at her surprised and announced: \"Well, you didn't pay me extra, what do you expect?!\" At that point even I was shocked - \"So people openly tell you they want money?!\" \"Get used to it Kasia, It's Russia....\"
\nNeedless to say, she was forced to pay the second time around and surprise, surprise, she passed....
\n
\nI taught English in a company. I came one week, and saw that everyone was kind of in a rush and slightly agitated. I asked what the problem was and they said they were waiting for an audit. I remember wishing them good luck... One lady looked at me and smiled \"We paid the guys to look the other way, it will be fine!\" I didn't even bother to comment as I had aleady known there was no point...

\n

GETTING INTO A PRIVATE EVENT

\n

It was the three of us - my BF, his friend and I. We wanted to do some clubbing and the friend decided we should go to a very trendy bar in the heart of Moscow. He had a loyalty card there and was well known among the bouncers. We didn't really look the part, but a hefty fee paid for each of us (by the friend) was enough to let us in...

\n

That was a minor party. Let's talk about the big stuff, involving bigger money!
\nIf you know someone, who knows someone, who knows someone you might be able to (legally) attend the dress rehearsal of the famous Victory Parade in May (the 9th to be exact). It costs about 10k (137 Euro, 116 Pounds , 153 Dollars) Watch fragments of the video below to see the magnitude of what I am talking about. 

\n

The whole thing is long, play with it a little bit. The good stuff starts at about 40 minutes. Source

\n

https://www.youtube.com/watch?v=5EI3FYynz-Q

\n

To enter the actual parade however, you need to be a prominent member of the society (e.g. ex-military) or someone famous or filthy rich :)

\n

The event itself is quite impressive and for soldiers taking part in the march it is an honor among honors.  
\nWe had the privilege of living 15 minutes on foot from the Red Square so we saw all the preparations and marches right outside our windows (till 11pm at night...)

\n

\n

PS. I am aware that my portrayal of Moscow might seem bleak and depressing. Believe me, it was not. I;m simply trying to describe the juicy bits, the interesting stuff :) My next post will be more optimistic as I will be talking about sports, parks an recreations  :)

\n

 ____________________________________________________________________________

\n

Thank you for reading Part 2 of my memoir.

\n

Want to find out more about living in Moscow? Follow me @cwbrooch :)

\n

My other work on Streemit:

\n

1) Russian Roulette - Preamble 

\n

2) Russian Roulette - Part 1 - Surviving Underground

\n

3) Why shouldn't you use google translate for learning English and which dictionaries are far better

\n

4)  How to learn vocabulary effectively in any language!

\n

5) About me: introduction  
\n 

\n


\n", + "category": "story", + "children": 0, + "created": "2016-09-15T19:41:09", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s14.postimg.org/bpiqdmgpt/Untitled.jpg", + "https://img.youtube.com/vi/5EI3FYynz-Q/0.jpg", + "https://lh3.googleusercontent.com/3OMfOqwX2pQ5BYeql8V1tg4J6VcMzG75pLD-nhsfHw0BYFLEQOQSeVl-sVdEkDwS6VfPco-FukpjwQONwimoOhzzT4GIPDt_VGbJfNDYaltTvEcyOFK5do7PZD1-tjDW0nxKYhUQdxG4yoxX6ZS590fMaveLKSI2Voz579yTME9U8D7UgN7R3ufBrAcq0KV8kA9VqMVxryabh2X_jBiMnP3Uwjj_hrWn3ARzHggZMRuo3G3ORSKDpoqcBA25bRDeWHe7nVT4X58NolQ4yY8HVjzyUr4zDneI8dy_eHnSf0F0FBZ8kn4NQQ3ueVR84tu-Ot64CZb9a1SetmKmupvAxBbuS8z3jBsvCECD8A5jz9qevTOkgHEbV0z2hVteH64gCLg3OI9mRVqw2GWAYwNSUlGGtwCxmwXq3p_j_igwncarIhIF2HX_bV0ACrucmewR6IiIdVfaKKAO9g2ycLbJRr_SBwE9TxBND9ar0R267Grzq5SHywG71h1nxZnXInW-HQ2l1cou8zqdiEUanqkeSbgIunZVNBcEnYYinmF-WZd5y0_Luc8rdDYy0GlKAtAJ4z0-woKDs6d_XKWhiWsYOAW3rWwCe3cJylK_6H7wNO2PlBKL=w1163-h775-no" + ], + "links": [ + "https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-in-moscow-part-1-surviving-underground", + "https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-of-living-in-moscow-preamble", + "https://www.youtube.com/channel/UC4qBu3EvraPWezHbaC7npIQ", + "https://www.youtube.com/watch?v=5EI3FYynz-Q", + "https://steemit.com/@cwbrooch", + "https://steemit.com/languages/@cwbrooch/why-shouldn-t-you-use-google-translate-for-learning-english-and-which-dictionaries-are-faaaar-better", + "https://steemit.com/languages/@cwbrooch/how-to-learn-vocabulary-effectively-in-any-language", + "https://steemit.com/introduceyourself/@cwbrooch/teacher-story-teller-cat-lover-about-me" + ], + "tags": [ + "story", + "writing", + "travel", + "life", + "russia" + ], + "users": [ + "cwbrooch" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5891496080, + "payout": 0.001, + "payout_at": "2016-09-16T19:44:28", + "pending_payout_value": "0.001 HBD", + "percent_steem_dollars": 10000, + "permlink": "russian-roulette-a-memoir-part-2-under-the-table-tactics", + "post_id": 960988, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "Russian Roulette - a Memoir [Part 2] - Under-the-table Tactics", + "updated": "2016-09-15T19:42:57", + "url": "/story/@cwbrooch/russian-roulette-a-memoir-part-2-under-the-table-tactics" + }, + { + "active_votes": [ + { + "rshares": "1856124515188", + "voter": "badassmother" + }, + { + "rshares": "1511911763", + "voter": "fkn" + }, + { + "rshares": "1987313581", + "voter": "elishagh1" + }, + { + "rshares": "1061309796", + "voter": "murh" + }, + { + "rshares": "10685732759", + "voter": "kimziv" + }, + { + "rshares": "7380892516", + "voter": "furion" + }, + { + "rshares": "13847065167", + "voter": "aaseb" + }, + { + "rshares": "233089182", + "voter": "poseidon" + }, + { + "rshares": "1226120506", + "voter": "positive" + }, + { + "rshares": "1805841949", + "voter": "sisterholics" + }, + { + "rshares": "63861075353", + "voter": "laonie" + }, + { + "rshares": "2665078950", + "voter": "myfirst" + }, + { + "rshares": "12962686205", + "voter": "somebody" + }, + { + "rshares": "484662341", + "voter": "flysaga" + }, + { + "rshares": "2863548500", + "voter": "midnightoil" + }, + { + "rshares": "7162422615", + "voter": "xiaohui" + }, + { + "rshares": "485163523", + "voter": "elfkitchen" + }, + { + "rshares": "223914723", + "voter": "xiaokongcom" + }, + { + "rshares": "451374022", + "voter": "xianjun" + }, + { + "rshares": "82361209107", + "voter": "markrmorrisjr" + } + ], + "author": "markrmorrisjr", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "## In this episode, a hot Aedapt girl helps Jack escape Killer giant Cockroaches! ##\n\n**Jake was peering through cracks between the plaster laths back into the room where they guard stood.** \n\n![enter image description here](https://s22.postimg.org/d4vifrmo1/Madison.jpg)\n***Missed an episode? Great more great reading for you [on my blog](https://steemit.com/@markrmorrisjr)! Be sure to follow me for awesome daily updates in your feed and leave me comments. I love comments!***\n\n\u201cNo, we\u2019re not that smart when we\u2019re under. We can really only do what we hear them telling us to do.\u201d Jake whispered, calmly as the big guard moved within inches of the wall, snorting. The guard turned, blasted a hole in the ceiling with his gun and charged back into the hall. \n\n*They heard him blasting the door of the next room open.*\n\n\u201cWe can\u2019t stay here. I\u2019m guessing you\u2019ve got this one on a signal blocker and there\u2019s not much time.\u201d \n\nThe girl turned and ran to a corner, where an iron hand rail rose up out of the floor in a curve. She disappeared through the floor and as Jack followed, he found a narrow, spiraling stair that led below. \n\nHe lost his footing and slid down the stairs, narrowly missing the girl. She stood in the room below, with ear to the door that led into the hall.\n\n![enter image description here](https://s16.postimg.org/90derv079/spiral_stair.jpg)\n\n*Jake followed close behind. The girl with the violet eyes opened the door and stepped out into the hall with the awakened Nosher right behind her and Jack bringing up the rear. Jack had no idea what to do next, but the girl seemed to be in her element, and willing to help.*\n\n**Hopefully, she was not leading them into more danger.** \n\nHe followed her past one door, and into the darkened room where they had first started. It was empty, which could only mean one thing. The Noshers who had recently occupied it were upstairs right now with the ugly guard. They were looking for Jack and the others and would soon head back down.\n\n\u201cShouldn\u2019t we just get out of here?\u201d Jack said. He stood with his back to the wall and the door opened a crack so that one eye could see down the hall toward the upper stairs.\n\n\u201cNot without these,\u201d the girl walked to where the guard had been and pointed up at the weapons, suspended above. She ran a hand along the doorframe, \u201cIt ought to be along here somewhere.\u201d She said.\n\n**\u201cWhat is?\u201d Jack hissed, shifting as her body pressed against his.** \n\nShe ran her hand along the top of the doorframe. He froze; she smelled good. It had been a long time since a girl had gotten this close to him, junior prom, in fact. He did not have a lot of time for dating with his work schedule. \n\n*To top it off, the smell of burnt fries that clung to him even after an hour in the shower was hardly an aphrodisiac.*\n\nThe girl put one hand on his chest and stood on tiptoe, pressing tight against him. \u201cOh, don\u2019t kid yourself; you just happened to be in my way.\u201d She laughed, scornfully, and pressed a hidden button at the top right corner of the door. Weapons rained down with a crash, and she quickly chose two handguns, handing one to Jack. \n\nShe pressed the button again, and the remaining weapons zipped back up into position. Jack had to grip the gun in his hand firmly to keep it from joining them.\n\n![enter image description here](https://s13.postimg.org/xp1l7jjyv/guns.jpg)\n\n**\u201cElectro magnet,\u201d she said and opened the door, moving out, weapon first.**\n\n\u201cI knew that,\u201d Jack said. He flattened himself against the hallway wall, like a TV detective. The magnet had occurred to him, but in his addled state, he had not really grasped the concept. Mostly he just did not like the idea of her being smarter than he was. \n\n\u201cKeep up\u201d he hissed to Jake, who had managed to grab a revolver.\nThe three moved quickly down the hall and turned toward the front door. The two roaches Jack had seen earlier, peered out from either side. \n\n**They had weapons leveled in his direction.**\n\n*The girl crouched and moved forward as if she were still a Nosher. It worked. Jack followed suit, and Jake did his best. His human consciousness was getting stronger by the minute.* \n\nHe had even started getting color back in his cheeks, and Jack was beginning to notice that the man seemed oddly familiar, the more human he became. \u201cCould be a side effect of this Nosher thinking,\" he guessed.\n\n\u201cThey're right behind us,\u201d the girl hissed to one of the roaches. \u201cBlast the next thing that comes down those stairs, you got me?\u201d \n\n**The bug clicked and hissed.** \n\n*Jack assumed it was a yes, because the two giant insects moved in and took up positions on either side of the hall.*\n\nJack bolted out the door and was relieved to see the Rabbit zip up just in time. Phineas sat behind the wheel, and the Things were nowhere in sight. Behind them, they heard the roaches open fire, and then a huge blast echoed down the hall. \n\n![enter image description here](https://s13.postimg.org/4klau8zdj/phin_rabbit.jpg)\n\nA gust of wind barreled out the door, raining cockroach guts over the three escaping figures. Jake stumbled, and Jack picked him up and shoved him into the back seat of the Rabbit.\n\nHe turned back to let the girl in, but she was gone. Phineas stood up on the running board, slapping the roof of the vehicle furiously. \u201cGet in the car! Let\u2019s go man!\u201d\n\n*By the time Jack had slid into the passenger seat, Phineas had the Rabbit patching out. They were up to top speed in a matter of seconds.*\n\n**\u201cFind a me a safe dime!\u201d Phineas yelled, standing as he worked the pedals and tried to see over the steering wheel at the same time.**\n\n\u201cWhat?\u201d Jack yelled over the whine of the engine.\n\n\u201cDime, a dimension, get us out of here.\u201d Phineas pleaded.\n\nJack opened the glove compartment and fiddled with the controls, but nothing happened.\n\n**\u201cDamn, guess I have to do everything, Phineas grumbled, \u201chere, take the wheel.\u201d** \n\n*The Leprechaun ducked under Jack\u2019s arms as he grabbed the steering wheel from his position in the passenger\u2019s seat.* \n\nPhineas leaned across the stick shift, his feet working the pedals as he started manipulating the glovebox controls. Jack\u2019s view through the windshield changed every few seconds. It was making steering from the passenger\u2019s seat even more of a challenge.\n\n*Meanwhile, Jake hunkered down in the back seat. From where Jack sat, he was not looking so good. He wondered how much time they had left.*\n\nJack swerved to miss a slow-moving vehicle that had just appeared as they shifted dimensions. Finally, Phineas settled for one that put them on a narrow two-lane country road. \n\nThe town disappeared, replaced by rows of fences. Phineas braked and turned off onto the shoulder of the road, rolling to a stop.\n\nJack\u2019s heartbeat slowly returned to normal. Meanwhile, Jake sounded like he was winding up in the back seat, his voice rolling into a high-pitched whine, perforated with short puffs of breath, like a woman in labor on a late-night sitcom.\n\n**\u201cYou okay, back there?\u201d Jack asked, climbing out onto the shoulder.** \n\nJake launched himself out of the back seat, landed face down in a shallow ditch, and promptly lost the entire contents of his stomach in a single \n\n\u201cralph\u201d.\n--------\n\nJack turned away, pulling his elbow up over his nose to avoid the horrendous smell of vomit. Meanwhile, Phineas dove around the hood of the car and into the ditch, pawing through the puke as if he was panning for gold. \n\n*A few seconds later, he came up for air, triumphantly holding the thumb drive.*\n\nHe stood, wiping his hands on Jake\u2019s jacket, and then looked at his watch. \u201cIt\u2019s past time,\u201d He said, pulling the transmitter from the man\u2019s neck. Jake lolled into the ditch; his eyes fluttered, and Phineas shoved Jack toward the driver\u2019s seat.\n\n**\u201cLet\u2019s go. We don\u2019t want to be here when they come to collect him.\u201d He said, climbing into the passenger\u2019s seat.**\n\n***Will Jake see the girl again? What about his Nosher friend, what becomes of him? Will they ever get the smell out of the ALICE? Stay tuned!***\n\n## Look for the upvote button below. If you liked the post, upvote and share! If you're not on Steemit yet, why not? You get free money for signing up! ##", + "category": "story", + "children": 0, + "created": "2016-09-15T19:40:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s22.postimg.org/d4vifrmo1/Madison.jpg", + "https://s16.postimg.org/90derv079/spiral_stair.jpg", + "https://s13.postimg.org/xp1l7jjyv/guns.jpg", + "https://s13.postimg.org/4klau8zdj/phin_rabbit.jpg" + ], + "links": [ + "https://steemit.com/@markrmorrisjr" + ], + "tags": [ + "story", + "life", + "fiction", + "anarchy", + "minnowsunited" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 2069384927746, + "payout": 0.691, + "payout_at": "2016-09-16T19:45:37", + "pending_payout_value": "0.691 HBD", + "percent_steem_dollars": 10000, + "permlink": "original-fiction-jacked-book-one-the-origin-dime-chronicles-episode-10", + "post_id": 960985, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 20 + }, + "title": "Original Fiction: JACKED Book One, The Origin Dime Chronicles, Episode 10", + "updated": "2016-09-15T19:40:48", + "url": "/story/@markrmorrisjr/original-fiction-jacked-book-one-the-origin-dime-chronicles-episode-10" + }, + { + "active_votes": [ + { + "rshares": "201736965", + "voter": "blend" + } + ], + "author": "blend", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n
    \n
  •  I\u2019m as surprised as anyone to be saying this but holy shit, these vape trick are really impressive.Yes, vaping still makes most people look like an extra who just stepped off the set of Blade Runner. But god dammit, King Titus is doing some stuff with smoke in this video that doesn\u2019t seem physically possible.How is he moving smoke rings through the air without breaking them? Let\u2019s just soak that in for a hot second.
  • \n
\n\nhttps://youtu.be/i3Nd_FK1zUg\nsource>http://www.gizmodo.com.au/2016/09/so-uh-vape-tricks-are-cool-now/", + "category": "art", + "children": 0, + "created": "2016-09-15T19:40:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.kinja-img.com/gawker-media/image/upload/t_original/p8yuecbnagacjm6khr6t.jpg", + "https://img.youtube.com/vi/i3Nd_FK1zUg/0.jpg" + ], + "links": [ + "https://youtu.be/i3Nd_FK1zUg" + ], + "tags": [ + "art", + "story", + "life", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 201736965, + "payout": 0.0, + "payout_at": "2016-09-16T19:40:45", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "so-uh-vape-tricks-are-cool-now", + "post_id": 960984, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "So, Uh... Vape Tricks Are Cool Now?", + "updated": "2016-09-15T19:40:36", + "url": "/art/@blend/so-uh-vape-tricks-are-cool-now" + }, + { + "active_votes": [], + "author": "philanthropest", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", + "category": "freedom", + "children": 0, + "created": "2016-09-15T19:40:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://img.youtube.com/vi/y02aBfNT8n4/0.jpg" + ], + "links": [ + "https://www.youtube.com/watch?v=y02aBfNT8n4" + ], + "tags": [ + "freedom", + "anarchy", + "steem", + "life", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "payout": 0.0, + "payout_at": "2016-09-16T07:40:21", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", + "post_id": 960979, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", + "updated": "2016-09-15T19:42:36", + "url": "/freedom/@philanthropest/cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does" + }, + { + "active_votes": [ + { + "rshares": "2041184971", + "voter": "profitgenerator" + } + ], + "author": "profitgenerator", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Let's analyze more deeply the relationship between USD and Oil. This is a continuation of this 3 part series, and in this part I will describe my opinions how to trade Oil, despite it's unpredictability. Here is the previous part:\n\n
https://steemit.com/money/@profitgenerator/the-Oil-market-1-3
\n\n------------------------------------\n
\n
[![oilfield-643836_1920.jpg](https://s16.postimg.org/j6asrkj79/oilfield_643836_1920.jpg)](https://postimg.org/image/5cmg2iqlt/)
\n\n

Oil and Dollar

\n\nBefore we go into strategies, I have to explain more thoroughly what relationship I was talking about in the past article.\n\nSo we know that the Oil is denominated by the US Dollar, and we know that a cheap Oil is good for the US Economy, but I wasn't very precise here, this is not entirely true, there is something more here.\n\nFirst of all the commodity market is the only thing that keeps the US Dollar stable, since the Nixon lifting of the Gold standard. The USD is printed at will and the commodities are the only thing that give it some residual value.\n\nSo the commodity market has to be as liquid as possible in order to keep the USD stable, because every ounce of Gold, gram of grain or drop of Oil bought gives value to the USD, because it goes through the USD market.\n\nBut also the commodity market cannot be high in price, because that is bad for the USD. So you have to have a very liquid commodity market, but one that has low price. It sounds very contradictory (the velocity of money theory forbids this), so how you do you achieve this?\n\nWith a Paper Ponzi Scheme: https://en.wikipedia.org/wiki/Gold_certificate\n\nBy issuing commodities on paper, that are not backed by real commodities, or in other words extremely leveraged instruments. You can read more about this popular scam here:\n\n
http://www.silverdoctors.com/Gold/Gold-news/comex-Gold-leverage-skyrockets-to-a-shocking-5421/\nhttp://www.zerohedge.com/news/2016-06-25/comex-registered-silver-now-more-leveraged-Gold
\n\n
[![Leverage-Of-COMEX-Registered-Silver-Contracts.png](https://s17.postimg.org/bgdwcshn3/Leverage_Of_COMEX_Registered_Silver_Contracts.png)](https://postimg.org/image/vnrc53f4b/)
\n
*(Source: https://srsroccoreport.com)*
\n\nNow I am not sure if the same phenomena is happening to Oil as well, but it could be possible. The entire commodity market is undervalued while derivatives and over-leveraged scams are the popular choice of investment for investors.\n\nSo if this is true, then Oil, and the whole commodity market would be into a bullish run possibly. But what about the USD? Yes, the USD itself is in trouble too. The US national debt and outstanding liabilities are too big, and I think the FED will just do QE any minute now, printing up Dollars and perhaps pumping up the commodity market too.\n\nAlright so now it is very confusing, in the past article I established a bearish trend, and now I am saying a bullish scenario could happen? So which one is it. Well let's take them 1 by 1:\n\n* Venezuela economic collapse and Middle East wars = **Bullish**\n* Big Oil price not good for US so they will suppress it with any tool available = `Bearish`\n* OPEC increased Oil production together with [Iran's lifted embargo](http://www.nytimes.com/2016/03/08/world/middleeast/embargo-lifted-iranian-Oil-reaches-europe.html) = `Bearish` \n* Russia building Oil pipeline in South Europe = `Bearish`\n* China investing in Africa and importing Oil = **Bullish** (since the growing Chinese economy is a big Oil demand)\n* Rising Green Energy markets = `Bearish`\n* Paper ponzi scheme could collapse anytime = **Bullish**\n* New rounds of quantitative easing to erode global debts = **Bullish**\n\nSo it looks to me like a whipsaw, again it could be quantified to have more accurate numbers, but it looks like the risk is big in the market. I would certainly not go long or short on it, since it's pretty unpredictable based on these macroeconomic trends. Whatever monopoly controls the price of Oil has made sure to make the price unpredictable, so that people will be wiped out on both sides.\n\nSo then how to trade this, if long and short positions are too risky, what to do?\n\n----------------------\n
\n
[![money-finance-bills-500.jpg](https://s17.postimg.org/simy7jp3j/money_finance_bills_500.jpg)](https://postimg.org/image/kd4w9e0uj/)
\n\n\n

Trading the Oil Market

\n\nIf long and short positions are too risky, then hedging is the only strategy left in my opinion. I would not trade Oil naked, but if we hedge it with the right instrument, it could be profitable.\n\n

[Hedging](https://en.wikipedia.org/wiki/Hedge_%28finance%29)

\n\nBut what to hedge, what pairs to hedge and how? Well there are many combinations, and you have to find the pairs that will make you money nontheless.\n\nBut let's cut the crap, I have found a setup that is ultra profitable, and I will share it with you, in exchange you can donate me some SBD and upvote my post and follow me, that is the least you can do for showing you this ultra profitable trading strategy.\n\nSo here are the pairs:\n* Oil / USD\n* XAU / USD\n* USD / JPY\n* DJI / USD\n\nWe will construct our `artificial index` from these, I will call it `ProfitGenerator`:\n\n
[![profitgenerator.png](https://s12.postimg.org/421peh5v1/profitgenerator.png)](https://postimg.org/image/feeaw9ejt/)
\n\nThis is how `ProfitGenerator` looks like, it is really a @profitgenerator, going up and up since 2009. The formula is the following:\n`BUY Oil / USD`\n`SELL XAU / USD`\n`SELL USD / JPY`\n`BUY DJI / USD`\n\nSo basically by buying the DOW 30 and Oil, and selling Gold and the USD/JPY, we get this artificial index that always makes our profits go up since 2009. Of course it has dips and volatility, but the trend line looks to go up:\n\n
[![trend.png](https://s13.postimg.org/7c4281afb/trend.png)](https://postimg.org/image/mktzlt43n/)
\n\nI have extrapolated it linearly in the future, and it could be a profitable investment.Looks like easy money to me, I might check it out as well, and look for even better hedging strategies.\n\n---------------------------\n\nBasically this is how I would trade Oil at the moment, not naked, but put inside this nice hedging strategy. So if you decide to try it out, you should reward me after you made some profits!\n\n\n---------------------------\n\n*Data sources: http://www.investing.com*\n\n***Disclaimer: The information provided on this page might be incorrect. I am not responsible if you lose money using the information on this page! This is not an investment advice, just my opinion and analysis for educational purposes.***\n\n\n-------------------------------------------\n\n\n

Upvote & Follow Me: @profitgenerator

", + "category": "money", + "children": 0, + "created": "2016-09-15T19:39:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s16.postimg.org/j6asrkj79/oilfield_643836_1920.jpg", + "https://s17.postimg.org/bgdwcshn3/Leverage_Of_COMEX_Registered_Silver_Contracts.png", + "https://s17.postimg.org/simy7jp3j/money_finance_bills_500.jpg", + "https://s12.postimg.org/421peh5v1/profitgenerator.png", + "https://s13.postimg.org/7c4281afb/trend.png" + ], + "links": [ + "https://steemit.com/money/@profitgenerator/the-Oil-market-1-3", + "https://postimg.org/image/5cmg2iqlt/", + "https://en.wikipedia.org/wiki/Gold_certificate", + "http://www.silverdoctors.com/Gold/Gold-news/comex-Gold-leverage-skyrockets-to-a-shocking-5421/", + "https://postimg.org/image/vnrc53f4b/", + "https://srsroccoreport.com", + "http://www.nytimes.com/2016/03/08/world/middleeast/embargo-lifted-iranian-Oil-reaches-europe.html", + "https://postimg.org/image/kd4w9e0uj/", + "https://en.wikipedia.org/wiki/Hedge_%28finance%29", + "https://postimg.org/image/feeaw9ejt/", + "https://postimg.org/image/mktzlt43n/", + "http://www.investing.com" + ], + "tags": [ + "money", + "investing", + "oil", + "trading", + "economics" + ], + "users": [ + "profitgenerator" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 2041184971, + "payout": 0.0, + "payout_at": "2016-09-16T19:39:15", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-oil-market-2-3", + "post_id": 960969, + "promoted": "0.030 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "The Oil Market [2/3]", + "updated": "2016-09-15T19:39:15", + "url": "/money/@profitgenerator/the-oil-market-2-3" + }, + { + "active_votes": [ + { + "rshares": "231815399848", + "voter": "anonymous" + }, + { + "rshares": "1856124515188", + "voter": "badassmother" + }, + { + "rshares": "1950776472028", + "voter": "xeroc" + }, + { + "rshares": "466189427281", + "voter": "recursive2" + }, + { + "rshares": "440845842", + "voter": "lee2" + }, + { + "rshares": "26932369613", + "voter": "lee3" + }, + { + "rshares": "8677356665", + "voter": "lee4" + }, + { + "rshares": "22149156424", + "voter": "lee5" + }, + { + "rshares": "24694558802", + "voter": "fkn" + }, + { + "rshares": "468295495", + "voter": "paco-steem" + }, + { + "rshares": "5641891453", + "voter": "spaninv" + }, + { + "rshares": "31733693573", + "voter": "instructor2121" + }, + { + "rshares": "319978787382", + "voter": "teamsteem" + }, + { + "rshares": "32459455171", + "voter": "elishagh1" + }, + { + "rshares": "584301957019", + "voter": "nanzo-scoop" + }, + { + "rshares": "183455862202", + "voter": "steve-walschot" + }, + { + "rshares": "177422979921", + "voter": "mummyimperfect" + }, + { + "rshares": "1061309796", + "voter": "murh" + }, + { + "rshares": "40553528416", + "voter": "ranko-k" + }, + { + "rshares": "970610699889", + "voter": "cyber" + }, + { + "rshares": "49581638772", + "voter": "ak2020" + }, + { + "rshares": "61303208719", + "voter": "justtryme90" + }, + { + "rshares": "35244223389", + "voter": "drinkzya" + }, + { + "rshares": "3848697023555", + "voter": "satoshifund" + }, + { + "rshares": "365370465", + "voter": "stiletto" + }, + { + "rshares": "55960464168", + "voter": "thecryptodrive" + }, + { + "rshares": "275083790158", + "voter": "trogdor" + }, + { + "rshares": "5047565689", + "voter": "tee-em" + }, + { + "rshares": "31346657524", + "voter": "michaelx" + }, + { + "rshares": "203028922423", + "voter": "kimziv" + }, + { + "rshares": "45359587433", + "voter": "honeythief" + }, + { + "rshares": "75335893384", + "voter": "emily-cook" + }, + { + "rshares": "34073741916", + "voter": "cryptoiskey" + }, + { + "rshares": "484636799", + "voter": "mrhankeh" + }, + { + "rshares": "36267999733", + "voter": "clement" + }, + { + "rshares": "49807514764", + "voter": "isteemit" + }, + { + "rshares": "68450624110", + "voter": "bacchist" + }, + { + "rshares": "52094130602", + "voter": "venuspcs" + }, + { + "rshares": "462747522217", + "voter": "roelandp" + }, + { + "rshares": "5271256317", + "voter": "riscadox" + }, + { + "rshares": "118094280271", + "voter": "furion" + }, + { + "rshares": "578386960", + "voter": "barbara2" + }, + { + "rshares": "642869652", + "voter": "ch0c0latechip" + }, + { + "rshares": "594982040", + "voter": "doge4lyf" + }, + { + "rshares": "14886225123", + "voter": "ausbitbank" + }, + { + "rshares": "2531219186", + "voter": "steem1653" + }, + { + "rshares": "185306737687", + "voter": "anyx" + }, + { + "rshares": "80777327", + "voter": "snowden" + }, + { + "rshares": "5250267854", + "voter": "thegoodguy" + }, + { + "rshares": "13847065167", + "voter": "aaseb" + }, + { + "rshares": "4209550858", + "voter": "karen13" + }, + { + "rshares": "89580632", + "voter": "wildchild" + }, + { + "rshares": "14455781997", + "voter": "nippel66" + }, + { + "rshares": "4428694472", + "voter": "poseidon" + }, + { + "rshares": "3709674578", + "voter": "bitcoiner" + }, + { + "rshares": "30989849211", + "voter": "zaebars" + }, + { + "rshares": "20026634941", + "voter": "positive" + }, + { + "rshares": "799615699", + "voter": "raymonjohnstone" + }, + { + "rshares": "50626015", + "voter": "steemchain" + }, + { + "rshares": "34310997040", + "voter": "sisterholics" + }, + { + "rshares": "4150694741", + "voter": "tygergamer" + }, + { + "rshares": "674282213", + "voter": "fnait" + }, + { + "rshares": "599033376", + "voter": "keepcalmand" + }, + { + "rshares": "21249911268", + "voter": "sisters" + }, + { + "rshares": "135241026997", + "voter": "steemdrive" + }, + { + "rshares": "50580942653", + "voter": "gomeravibz" + }, + { + "rshares": "2157263872", + "voter": "merej99" + }, + { + "rshares": "1181429894047", + "voter": "laonie" + }, + { + "rshares": "22969530313", + "voter": "laonie1" + }, + { + "rshares": "23486336661", + "voter": "laonie2" + }, + { + "rshares": "23494631758", + "voter": "laonie3" + }, + { + "rshares": "41308723727", + "voter": "myfirst" + }, + { + "rshares": "246291037911", + "voter": "somebody" + }, + { + "rshares": "9208584487", + "voter": "flysaga" + }, + { + "rshares": "5831884826", + "voter": "brendio" + }, + { + "rshares": "54407421509", + "voter": "midnightoil" + }, + { + "rshares": "4190432650", + "voter": "ullikume" + }, + { + "rshares": "538023492", + "voter": "marinaz" + }, + { + "rshares": "50577648", + "voter": "michellek" + }, + { + "rshares": "23490308796", + "voter": "laonie4" + }, + { + "rshares": "23488038283", + "voter": "laonie5" + }, + { + "rshares": "23485060556", + "voter": "laonie6" + }, + { + "rshares": "23480907119", + "voter": "laonie7" + }, + { + "rshares": "3157899297", + "voter": "kurtbeil" + }, + { + "rshares": "23477459041", + "voter": "laonie8" + }, + { + "rshares": "23474757706", + "voter": "laonie9" + }, + { + "rshares": "2370331931", + "voter": "steemleak" + }, + { + "rshares": "136086029693", + "voter": "xiaohui" + }, + { + "rshares": "88206053", + "voter": "bigsambucca" + }, + { + "rshares": "6630568148", + "voter": "elfkitchen" + }, + { + "rshares": "99940391922", + "voter": "joele" + }, + { + "rshares": "2354334523", + "voter": "paynode" + }, + { + "rshares": "4254379739", + "voter": "xiaokongcom" + }, + { + "rshares": "8576106418", + "voter": "xianjun" + }, + { + "rshares": "72135954", + "voter": "stevescriber" + }, + { + "rshares": "51247757", + "voter": "loli" + }, + { + "rshares": "52419023", + "voter": "nano2nd" + }, + { + "rshares": "576343622", + "voter": "microluck" + }, + { + "rshares": "60225791", + "voter": "cryptoblu" + }, + { + "rshares": "60219243", + "voter": "instructor" + }, + { + "rshares": "802020725261", + "voter": "dollarvigilante" + }, + { + "rshares": "3977281078", + "voter": "lamech-m" + }, + { + "rshares": "23468551300", + "voter": "laonie10" + }, + { + "rshares": "8536250240", + "voter": "garywilson" + }, + { + "rshares": "50829277", + "voter": "bitchplease" + }, + { + "rshares": "99130059443", + "voter": "barrycooper" + }, + { + "rshares": "31611733517", + "voter": "hilarski" + }, + { + "rshares": "2029369552", + "voter": "shadowspub" + }, + { + "rshares": "8390958262", + "voter": "rimann" + }, + { + "rshares": "56999917", + "voter": "rickmiller" + }, + { + "rshares": "5401518277", + "voter": "nulliusinverba" + }, + { + "rshares": "22792452702", + "voter": "mikehere" + }, + { + "rshares": "22621847215", + "voter": "laonie11" + }, + { + "rshares": "3411072843", + "voter": "xanoxt" + }, + { + "rshares": "174778016", + "voter": "greatness" + }, + { + "rshares": "26574132419", + "voter": "sponge-bob" + }, + { + "rshares": "4044803243", + "voter": "l0k1" + }, + { + "rshares": "50798127", + "voter": "freesteem" + }, + { + "rshares": "2353724275", + "voter": "zettar" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "53413720", + "voter": "lighter" + }, + { + "rshares": "258239323", + "voter": "maarnio" + }, + { + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "rshares": "5934390558", + "voter": "dexter-k" + }, + { + "rshares": "51716816", + "voter": "doggnostic" + }, + { + "rshares": "659649765", + "voter": "ct-gurus" + }, + { + "rshares": "51449632", + "voter": "jenny-talls" + }, + { + "rshares": "415654681468", + "voter": "charlieshrem" + }, + { + "rshares": "63546443837", + "voter": "tracemayer" + }, + { + "rshares": "26568286493", + "voter": "brains" + }, + { + "rshares": "1702730509", + "voter": "alwayzgame" + }, + { + "rshares": "1282974860", + "voter": "bitcoinparadise" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "2127783725", + "voter": "steemsquad" + }, + { + "rshares": "61292139", + "voter": "inarix03" + }, + { + "rshares": "431087473", + "voter": "littlemorelove" + }, + { + "rshares": "51636819", + "voter": "mbizryu0" + }, + { + "rshares": "51631638", + "voter": "archij" + }, + { + "rshares": "51530815", + "voter": "movie7283" + }, + { + "rshares": "51527606", + "voter": "ppcompp2" + }, + { + "rshares": "51520427", + "voter": "jj1968" + }, + { + "rshares": "51516489", + "voter": "cineger" + }, + { + "rshares": "51497383", + "voter": "sksduddk" + }, + { + "rshares": "51490214", + "voter": "jjc0719" + }, + { + "rshares": "50233449", + "voter": "teemsteem" + }, + { + "rshares": "50677982", + "voter": "sjytoy" + }, + { + "rshares": "50676799", + "voter": "shy2675" + }, + { + "rshares": "50675747", + "voter": "suance1009" + }, + { + "rshares": "50674176", + "voter": "hasqmd" + }, + { + "rshares": "50673722", + "voter": "fischer67" + }, + { + "rshares": "50672116", + "voter": "elya1" + }, + { + "rshares": "50632828", + "voter": "xclamp45" + }, + { + "rshares": "50618471", + "voter": "likeagame1" + }, + { + "rshares": "50616898", + "voter": "apple4006" + }, + { + "rshares": "50615195", + "voter": "bigbell61" + }, + { + "rshares": "50612850", + "voter": "dolpo777" + }, + { + "rshares": "50611931", + "voter": "dongperi" + }, + { + "rshares": "50610620", + "voter": "lion2byung" + }, + { + "rshares": "50610002", + "voter": "cwj1973" + }, + { + "rshares": "50609329", + "voter": "psj212" + }, + { + "rshares": "50608661", + "voter": "owithed2" + }, + { + "rshares": "50606929", + "voter": "fiself2" + }, + { + "rshares": "50605131", + "voter": "trablinever1" + }, + { + "rshares": "50603861", + "voter": "nuals1940" + }, + { + "rshares": "50602310", + "voter": "fanceth2" + }, + { + "rshares": "50355943", + "voter": "forea1995" + }, + { + "rshares": "50354561", + "voter": "holow1968" + }, + { + "rshares": "50353969", + "voter": "peaces1952" + }, + { + "rshares": "50346496", + "voter": "himighar2" + }, + { + "rshares": "50345607", + "voter": "aromese1974" + }, + { + "rshares": "50344921", + "voter": "runis1943" + }, + { + "rshares": "50344067", + "voter": "tong1962" + }, + { + "rshares": "50340744", + "voter": "hishe1997" + }, + { + "rshares": "1979857275", + "voter": "cwbrooch" + }, + { + "rshares": "52329350", + "voter": "ninjapainter" + }, + { + "rshares": "51393104", + "voter": "buit1989" + }, + { + "rshares": "51389981", + "voter": "imadecoult1" + }, + { + "rshares": "51387526", + "voter": "infees2" + }, + { + "rshares": "51384095", + "voter": "suar1997" + }, + { + "rshares": "51382067", + "voter": "sobsell93" + }, + { + "rshares": "51380710", + "voter": "stroned96" + }, + { + "rshares": "51378107", + "voter": "drethe" + }, + { + "rshares": "51377505", + "voter": "qualwas" + }, + { + "rshares": "51376367", + "voter": "phent1994" + }, + { + "rshares": "51375075", + "voter": "baboyes" + }, + { + "rshares": "51373532", + "voter": "whor1973" + }, + { + "rshares": "51372739", + "voter": "youreforn" + }, + { + "rshares": "51371902", + "voter": "voll1981" + }, + { + "rshares": "51370717", + "voter": "copenty2" + }, + { + "rshares": "51369717", + "voter": "maject2" + }, + { + "rshares": "51367233", + "voter": "coust1997" + }, + { + "rshares": "51366398", + "voter": "busionea84" + }, + { + "rshares": "51365174", + "voter": "therver1" + }, + { + "rshares": "51364022", + "voter": "appirdsmanne1990" + }, + { + "rshares": "51362967", + "voter": "alienighted87" + }, + { + "rshares": "51359746", + "voter": "anity1994" + }, + { + "rshares": "59959066", + "voter": "themphe1" + }, + { + "rshares": "51355864", + "voter": "abild1988" + }, + { + "rshares": "51353540", + "voter": "spoll1973" + }, + { + "rshares": "66162576", + "voter": "afteld1" + }, + { + "rshares": "1630374239", + "voter": "rusteemitblog" + }, + { + "rshares": "31008332335", + "voter": "goldmatters" + }, + { + "rshares": "68608760", + "voter": "dealzgal" + }, + { + "rshares": "64921864", + "voter": "storage" + }, + { + "rshares": "55388665", + "voter": "blackmarket" + }, + { + "rshares": "58454327", + "voter": "gifts" + }, + { + "rshares": "93882016", + "voter": "expat" + }, + { + "rshares": "188217107", + "voter": "techslut" + }, + { + "rshares": "137659447", + "voter": "steemtrail" + }, + { + "rshares": "3035584586", + "voter": "steemlift" + }, + { + "rshares": "123580867", + "voter": "toddemaher1" + } + ], + "author": "charlieshrem", + "author_payout_value": "0.000 HBD", + "author_reputation": 67.32, + "beneficiaries": [], + "blacklists": [], + "body": "[![1427721443457173 (1).jpg](https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg)](https://postimg.org/image/5bg38xjjr/)\n\nThe day I went to prison I published an article Bitcoin for Prison. While I didn't get to read or see the article until someone mailed me a physical copy, I found out that my article had started a number of discussions and follow-on commentary.\n\nDuring my stay at Lewisburg Federal Prison Camp I observed many economic theories put into effect by inmates and the prison administration, including Gresham's law, hyperinflation, currency exchange, and others.\n\nThere are two markets in prison, the \"Administration Run Market\" (ARM) and the \"Inmate Run Market\" (IRM). \n\nFor the ARM, family and friends can add money to your account through Western Union, MoneyGram, or mailing a check. These funds get added to your account fairly quickly and can be used almost immediately, however with a strict spending limit. You get 300 minutes of phone use per month for about $70, and email costs about $0.05 a minute and is only available at specific times to specific people. Once a week you can shop in the commissary with a $360 a month spending limit. Further, certain products have limits of how much you can buy, for example the Mackerel (described below). Alternatively, the IRM is where you can buy sandwiches, wraps, pizzas, Italian ices, hire a personal trainer, get a haircut, pay someone to clean your cube, repair a watch, even inmate run caterers for your birthday or going home party. Additionally there were inmate run 'stores' which sold commissary items at a markup since you could only commissary shop once a week.\n\n[![mackerel-203x300.png](https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png)](https://postimg.org/image/iu6qq6eb9/)\n\nThe Mackerel (meaning literal packets of fish) is one of the competing currencies in the IRM. It has utility by being one of the best sources of protein on the compound. You can save it for a long time, the shelf life is a few years. The price is relatively the same across all prisons in the country, so even if you transfer prisons your property comes with you, including your Mackerel which is worth the same somewhere else. Unlike tunafish, chicken packets and protein bars, more people eat Mackerel. Those other food items can be used as currency as well, for example the guy who fixes your watch may only accept protein bars because he hates fish. There was even a form of digital currency being used, which I will discuss in another post.\n\n[![pzyQaHU.png](https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png)](https://postimg.org/image/nfj3tkh87/)\n\nUtility and medium of exchange give it some value but what about scarcity ? If there is a virtually unlimited amount of Mackerel in the IRM, just like the Federal Reserve printing money, there is no scarcity and hyperinflation can occure if it is debased. \n\nUsing a simple equation, 467 (Number of Inmates) * 14 (Maximum Quantity Allowed to Purchase Per Inmate) * 52 (weeks, assuming every inmate buys the maximum mount of Mackerel every week)\n\nSo if in 2015 we assume that the Supply and Velocity grows at the exact same rate with the Price Level and Transactions unchanging, the amount of Mackerel would essentially double on an even inflation rate. This does not factor in the 3 year shelf life, where expired Mackerel becomes a secondary currency. I will discuss in my next post. \n\nI like to believe that the value of money is determined also psychological factors, like a commodity and not only by mechanical or mathematical factors. In prison many of these psychological factors come into play.\n\n[![1867-1967-Ten-10\u00a2-Cents-Commemorative-Centennial.jpg](https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg)](https://postimg.org/image/ceiwrfinr/)\n\nMost people use Mackerel as a day-to-day currency for normal transactions, but for reasons I will explain in my next post, they are not the best long term store of value which is important for a currency. For longer term store of value, many inmates use stamps. Stamps have a set rate by the United States Postal Service and have similar characteristics as Mackerel aside for being edible. However, with the introduction of email on the compound many people stopped writing letters as email is cheaper and faster therefore reducing stamps ability to be a transactional currency as a majority of the inmates have no use for them. As a store of value they still hold weight because they are small and easy to store large amounts, while Mackerel is not.\n\nThe biggest value stamps have is that they can be mailed home and your family can redeem them for dollars as the local post office, but that feature can be stopped by better mail screening and overnight the stamp could lose its store of value utility. \n\nIn my next post I will discuss how currency exchangers work, what happens when the prison administration purposely floods the market, and how a secondary currency was created out of expired Mackerel called \u201cMoney Maks\u201d", + "category": "story", + "children": 2, + "created": "2016-09-15T19:39:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg", + "https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png", + "https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png", + "https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg" + ], + "links": [ + "https://postimg.org/image/5bg38xjjr/", + "https://postimg.org/image/iu6qq6eb9/", + "https://postimg.org/image/nfj3tkh87/", + "https://postimg.org/image/ceiwrfinr/" + ], + "tags": [ + "story", + "life", + "bitcoin" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 16647533396431, + "payout": 18.929, + "payout_at": "2016-09-16T19:42:59", + "pending_payout_value": "18.929 HBD", + "percent_steem_dollars": 10000, + "permlink": "mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem", + "post_id": 960970, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 211 + }, + "title": "MackerelCoin & My Socioeconomic Observations from Prison (Part 1 by Charlie Shrem)", + "updated": "2016-09-15T19:39:15", + "url": "/story/@charlieshrem/mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem" + }, + { + "active_votes": [ + { + "rshares": "99588913", + "voter": "rebeccamorgan" + }, + { + "rshares": "2264991522", + "voter": "bluechoochoo" + } + ], + "author": "rebeccamorgan", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\n

I don't know about you, but one of my favorite parts of eating sushi is the pickled ginger. Today, I stopped by the store to pick up some pickled ginger to go with the sushi I was making for lunch, but I was totally bummed that they didn't have any.

\n

So I went home and did what I do a lot...I improvised. Remembering the bag of whole, unpeeled ginger I had thrown in the freezer a while back, I got it out. Turns out, you can make great pickled ginger at home, and it's super easy! 

\n

Recipe:

\n

1/4 cup peeled, thinly sliced ginger

\n

1/4 cup seasoned sushi vinegar

\n

1 tablespoon ginger

\n

Put all the ingredients in a small seal-able container and let set in the refrigerator for at least one hour.

\n

I love to eat this with a simple tempura shrimp roll using 1 sheet of nori, 1/2 cup sushi rice, and tempura shrimp.

\n

YUM!

\n", + "category": "food", + "children": 0, + "created": "2016-09-15T19:39:12", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSvPcipLOst42r-1eVPTuUXJ1aF4RhA6dpo9vwTt_HgsdBHW9GYXA" + ], + "tags": [ + "food", + "recipe", + "life", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 2364580435, + "payout": 0.0, + "payout_at": "2016-09-16T19:42:18", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "recipe-pickled-ginger-for-sushi", + "post_id": 960968, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "[recipe] pickled ginger for sushi", + "updated": "2016-09-15T19:39:12", + "url": "/food/@rebeccamorgan/recipe-pickled-ginger-for-sushi" + }, + { + "active_votes": [ + { + "rshares": "13342307926", + "voter": "valtr" + }, + { + "rshares": "27470549701", + "voter": "acidyo" + }, + { + "rshares": "313710480", + "voter": "coar" + }, + { + "rshares": "1061309796", + "voter": "murh" + }, + { + "rshares": "52094130602", + "voter": "venuspcs" + }, + { + "rshares": "8222986904", + "voter": "getssidetracked" + }, + { + "rshares": "1582556166", + "voter": "trees" + }, + { + "rshares": "221867769", + "voter": "strawhat" + }, + { + "rshares": "777893805", + "voter": "cryptochannel" + }, + { + "rshares": "121062267", + "voter": "bola" + }, + { + "rshares": "119998460", + "voter": "pokemon" + }, + { + "rshares": "6168588588", + "voter": "chloetaylor" + }, + { + "rshares": "2275125890", + "voter": "andrew0" + }, + { + "rshares": "7475701368", + "voter": "thebotkiller" + }, + { + "rshares": "59295031", + "voter": "dobbydaba" + }, + { + "rshares": "7989270301", + "voter": "karisa" + }, + { + "rshares": "54574888", + "voter": "lighter" + }, + { + "rshares": "298391608", + "voter": "risabold" + } + ], + "author": "acidyo", + "author_payout_value": "0.000 HBD", + "author_reputation": 62.78, + "beneficiaries": [], + "blacklists": [], + "body": "Since I am really unskilled at PS/Gimp I decided to draw a signature myself!\n\nhttp://imgur.com/FU1u3Aa.jpg\n\nWas thinking of adding it after my posts like this:\nMaybe resize it a bit smaller and make it linkable to my account page, let me know what you think :)\n\nhttp://imgur.com/UIw3ArK.jpg", + "category": "avatar", + "children": 1, + "created": "2016-09-15T19:37:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://imgur.com/FU1u3Aa.jpg", + "http://imgur.com/UIw3ArK.jpg" + ], + "tags": [ + "avatar", + "signature", + "steemit", + "acidyo", + "art" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 129649321550, + "payout": 0.029, + "payout_at": "2016-09-16T19:38:01", + "pending_payout_value": "0.029 HBD", + "percent_steem_dollars": 10000, + "permlink": "drew-an-avatar-signature-for-my-posts", + "post_id": 960951, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 18 + }, + "title": "Drew an avatar/signature for my posts!", + "updated": "2016-09-15T19:37:00", + "url": "/avatar/@acidyo/drew-an-avatar-signature-for-my-posts" + }, + { + "active_votes": [ + { + "rshares": "153246055", + "voter": "ladenlabel" + } + ], + "author": "ladenlabel", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Each day more and more people are jumping onto the \u201cgreen\u201d bandwagon as an attempt protect themselves and \nfamilies from the hidden dangers in chemical products. It\u2019s no secret anymore that many of these concoctions are \nloaded with carcinogens that damage the neurological, reproductive, and hormonal systems.\n\n For example fluoride is a substance found in most drinking water that to me and many doctors alike would say is unethical.\n \nFluoride is not an essential nutrient. No disease, not even tooth decay, is caused by a \u201cfluoride deficiency.\u201d Not a single biological process has been shown to require fluoride. On the contrary there is extensive evidence that fluoride can interfere with many important biological processes. Fluoride interferes with numerous enzymes. In combination with aluminum, fluoride interferes with G-proteins. Such interactions give aluminum-fluoride complexes the potential to interfere with signals from growth factors, hormones and neurotransmitters. More and more studies indicate that fluoride can interfere with biochemistry in fundamental ways.\n\nFluoride may damage the brain. According to the National Research Council, \u201cit is apparent that fluorides have the ability to interfere with the functions of the brain.\u201d In a review of the literature commissioned by the US Environmental Protection Agency (EPA), fluoride has been listed among about 100 chemicals for which there is \u201csubstantial evidence of developmental neurotoxicity.\u201d Animal experiments show that fluoride accumulates in the brain and alters mental behavior in a manner consistent with a neurotoxic agent. In total, there have now been over 100 animal experiments showing that fluoride can damage the brain and impact learning and behavior. According to fluoridation proponents, these animal studies can be ignored because high doses were used. However, it is important to note that rats generally require five times more fluoride to reach the same plasma levels in humans. Further, one animal experiment found effects at remarkably low doses. In this study, rats fed for one year with 1 ppm fluoride in their water (the same level used in fluoridation programs), using either sodium fluoride or aluminum fluoride, had morphological changes to their kidneys and brains, an increased uptake of aluminum in the brain, and the formation of beta-amyloid deposits which are associated with Alzheimer\u2019s disease. Other animal studies have found effects on the brain at water fluoride levels as low as 5 ppm.\n\nWhile fluoridation may not be the greatest environmental health threat, it is one of the easiest to end. \nMany People are aware of these issues and today there are more alternative options than ever before.\n\nwaterliberty.com is one site I've came across with products and tips for a healthier lifestyle. \n\nTo find more info on fluoride this is a good site: fluoridealert.org/articles/50-reasons/", + "category": "health", + "children": 0, + "created": "2016-09-15T19:36:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "tags": [ + "health", + "life", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 153246055, + "payout": 0.0, + "payout_at": "2016-09-16T19:36:36", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 0, + "permlink": "water-liberty-bringing-it-back-to-its-primordial-clean-and-pristine-state", + "post_id": 960949, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "Water Liberty, bringing it back to its primordial clean and pristine state", + "updated": "2016-09-15T19:36:36", + "url": "/health/@ladenlabel/water-liberty-bringing-it-back-to-its-primordial-clean-and-pristine-state" + }, + { + "active_votes": [ + { + "rshares": "366434912", + "voter": "lloyddavis" + }, + { + "rshares": "3911638805", + "voter": "zaitsevalesyaa" + }, + { + "rshares": "153202378", + "voter": "sterlingsnead" + } + ], + "author": "lloyddavis", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I did a few of these a while back, I was experimenting with the technique. It was fun and I might well do some more, especially if there's an audience for them\n\nThe basic technique is to first to take a video clip and split it into a number of frames. I expect you can do this easily in Photoshop or something, but I'm a command line kind of guy so I used ffmpeg and ImageMagick - I learned a lot from reading [this post about it](\"https://room208.org/blog/posts/48793543478.html\"). I go for things that break down into about 12-24 frames because at 24 fps you're going to need 12 to get a half second loop.\n\nThen you load up each frame in your favourite graphics editor - I use GIMP because I'm cheap. For each frame, you create a new transparent layer and trace over the bits of the frame that you want to replicate. There's a bit of artistic choice in here about how much detail you want to include and how much colour filling you'll do. But the most basic thing is to create a simplified line drawing by running the brush over the key elements.\n\nSo for this one of Johnny Rotten, I only took twelve frames from the beginning and only traced his face and the mic and filled in his hair with an approximation of it's actual colour!\n\n\n\nIf you give your transparent layer a white background you've then got a finished frame for your clip. So export it and give it a number so that you know which order it goes in. Again, Photoshop and GIMP probably have this built in, but I'm awkward that way and like to make things as close to \"by hand\" as I can. This is also much slower, but it does feel like you've made something rather than just knowing which buttons to press.\n\nYou then sew the frames back up into a GIF file using ImageMagick's convert command - check out that [blog post again](\"https://room208.org/blog/posts/48793543478.html\") for the deep dive details.\n\nAlternatively you can take a still image and just trace it several times. That's what I did with this one of Louis Armstrong. Four frames, each slightly different from the others, when animated give it this jiggly quality as if he is playing.\n\n\n\nI'd love to see what other people make of this technique. Show me your work too!", + "category": "art", + "children": 0, + "created": "2016-09-15T19:34:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://ipfs.pics/ipfs/QmZ5i1Sv2xYzQEWccL9VZVNoo56jv6xNMUxjbjnS7V7S9A", + "https://ipfs.pics/ipfs/Qmaxqs77D6je2acPPF8FhdghAcAV9akbkRTpGdXY4jbZKn", + "https://ipfs.pics/ipfs/QmXUay7uUTx44JaaiEEzFLoCeAqLAfxoD4cv24SWA8MkqA" + ], + "links": [ + "\"https://room208.org/blog/posts/48793543478.html\"", + "https://ipfs.pics/QmZ5i1Sv2xYzQEWccL9VZVNoo56jv6xNMUxjbjnS7V7S9A", + "https://ipfs.pics/Qmaxqs77D6je2acPPF8FhdghAcAV9akbkRTpGdXY4jbZKn", + "https://ipfs.pics/QmXUay7uUTx44JaaiEEzFLoCeAqLAfxoD4cv24SWA8MkqA" + ], + "tags": [ + "art", + "animation", + "rotoscope", + "fun", + "drawing" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 4431276095, + "payout": 0.0, + "payout_at": "2016-09-16T19:36:54", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "i-made-these-animations-by-tracing-from-video-and-found-out-later-it-s-called-rotoscoping", + "post_id": 960931, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "I made these animations by tracing from video - and found out later it's called \"rotoscoping\"", + "updated": "2016-09-15T19:34:36", + "url": "/art/@lloyddavis/i-made-these-animations-by-tracing-from-video-and-found-out-later-it-s-called-rotoscoping" + }, + { + "active_votes": [ + { + "rshares": "125411048", + "voter": "thedevil" + }, + { + "rshares": "153214220", + "voter": "creativecasualty" + }, + { + "rshares": "150198410", + "voter": "sterlingsnead" + } + ], + "author": "creativecasualty", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "By exploring the effects of the Schumann resonances, Resonance Being Of Frequency presents a thought provoking account of regarding the power of modern wireless technology. Radio signals, Wifi, Bluetooth, and other wireless communications can have a wide array of effects on both physical environment and our physiology. \n\nhttps://www.youtube.com/watch?v=oS6FGzh3ygw", + "category": "documentary", + "children": 0, + "created": "2016-09-15T19:33:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://img.youtube.com/vi/oS6FGzh3ygw/0.jpg" + ], + "links": [ + "https://www.youtube.com/watch?v=oS6FGzh3ygw" + ], + "tags": [ + "documentary", + "schumann", + "resonance", + "sound", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 428823678, + "payout": 0.0, + "payout_at": "2016-09-16T19:37:07", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 0, + "permlink": "are-we-resonance-beings-of-frequency", + "post_id": 960922, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "Are we Resonance Beings of Frequency?", + "updated": "2016-09-15T19:33:30", + "url": "/documentary/@creativecasualty/are-we-resonance-beings-of-frequency" + }, + { + "active_votes": [ + { + "rshares": "3911638805", + "voter": "zaitsevalesyaa" + }, + { + "rshares": "1131354587", + "voter": "patimaker" + }, + { + "rshares": "150728858", + "voter": "alexandrapop" + } + ], + "author": "patimaker", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I just decided to draw a bird\nVery often I do not sleep at night, so I draw sorts of things\n\nhttp://s017.radikal.ru/i410/1609/b9/c2414d721dd3.png", + "category": "art", + "children": 1, + "created": "2016-09-15T19:33:24", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://s017.radikal.ru/i410/1609/b9/c2414d721dd3.png" + ], + "tags": [ + "art", + "drawing", + "life", + "picture", + "painting" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5193722250, + "payout": 0.001, + "payout_at": "2016-09-16T19:37:05", + "pending_payout_value": "0.001 HBD", + "percent_steem_dollars": 10000, + "permlink": "night-sketch-funny-bird", + "post_id": 960921, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "Night sketch - Funny bird", + "updated": "2016-09-15T19:33:24", + "url": "/art/@patimaker/night-sketch-funny-bird" + }, + { + "active_votes": [ + { + "rshares": "7736449047", + "voter": "anarchyhasnogods" + }, + { + "rshares": "59293327", + "voter": "archimedes" + }, + { + "rshares": "11552440717", + "voter": "herpetologyguy" + } + ], + "author": "archimedes", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "http://eoimages.gsfc.nasa.gov/images/imagerecords/57000/57723/globe_west_2048.jpg\n\n### The Controversial\n\nThe age of the Earth is controversial topic to say the least. It has been the battle ground for many groups of people. One group of people though have had a rather large voice in it, those being the deeply religious and gullible. \n\nhttps://pixabay.com/static/uploads/photo/2016/08/20/09/46/magnifying-glass-1607160_960_720.jpg\n\nConservapedia is a encyclopedia type website tasked with presenting the other side of the story. They have been on the forefront of the age of the Earth dispute for some time. Their motto is, \"The trustworthy encyclopedia\" but is this really true to any extent? Lets look at their page on the age of the Earth, http://www.conservapedia.com/Age_of_the_Earth\n\n### They claim is that the earth is about 6,000 years old.\n\nThe first thing that they claim is that the earth is about 6,000 years old. They say that historical and much scientific evidence point to that age strongly. One example being that dating substances through radioactive decay is not a valid because the assumption that radioactive decay is constant is wrong. This is just blatantly incorrect. The claim that it is an assumption is really facts backed with testing at least to a limited degree of accuracy. Even with rigorous testing to alter the decay rates of elements no substantial change has ever been detected. Even in the Oklo reactor which was a natural nuclear fission reactor that was active for a few hundred thousand years has had no change on the Sommerfeld's constant and neutron capture for almost 2 billion years.\n\n\n### Conclusion\n\nConservapedia makes frequent references archaic texts that have no solid facts backing any of their claims. Their delusional claims take into account little if not any real world facts. They present biased and fudged data as reliable information for profound question and answered. I conclusion they are so detached reality that I am surprised that anybody would take them seriously, and the fact that they are even able to upkeep a website.\n\n\n\n\n\n\n\n\n\n\n### Sources:\nwww.talkorigins.org/indexcc/CF/CF210.html\npixabay.com/static/uploads/photo/2016/08/20/09/46/magnifying-glass-1607160_960_720.jpg\neoimages.gsfc.nasa.gov/images/imagerecords/57000/57723/globe_west_2048.jpg", + "category": "science", + "children": 1, + "created": "2016-09-15T19:33:18", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://eoimages.gsfc.nasa.gov/images/imagerecords/57000/57723/globe_west_2048.jpg", + "https://pixabay.com/static/uploads/photo/2016/08/20/09/46/magnifying-glass-1607160_960_720.jpg" + ], + "links": [ + "http://www.conservapedia.com/Age_of_the_Earth" + ], + "tags": [ + "science", + "discovery", + "physics", + "minnowsunite", + "conservatives" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 19348183091, + "payout": 0.004, + "payout_at": "2016-09-16T19:36:50", + "pending_payout_value": "0.004 HBD", + "percent_steem_dollars": 10000, + "permlink": "conservapedia-and-the-age-of-the-earth", + "post_id": 960918, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "Conservapedia and the age of the Earth", + "updated": "2016-09-15T19:34:51", + "url": "/science/@archimedes/conservapedia-and-the-age-of-the-earth" + }, + { + "active_votes": [ + { + "rshares": "59061355186", + "voter": "lehard" + }, + { + "rshares": "1708336843", + "voter": "dimon14" + }, + { + "rshares": "101627835", + "voter": "pollina" + }, + { + "rshares": "159631404", + "voter": "kamil5" + }, + { + "rshares": "4546813061", + "voter": "nadin3" + } + ], + "author": "nadin3", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

http://i.imgur.com/PW0v4ZA.jpg

\n

Hello, my friends! If you are tired of plain pancakes I advise you to get some work done and you'll get a very delicious pie and a nice dessert for tea time.

\n

\u041f\u0440\u0438\u0432\u0435\u0442 \u0434\u0440\u0443\u0437\u044c\u044f! \u0415\u0441\u043b\u0438 \u0432\u0430\u043c \u043d\u0430\u0434\u043e\u0435\u043b\u0438 \u043f\u0440\u043e\u0441\u0442\u043e \u0431\u043b\u0438\u043d\u044b ,\u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u044e \u043d\u0435\u043c\u043d\u043e\u0433\u043e \u043f\u043e\u0442\u0440\u0443\u0434\u0438\u0442\u044c\u0441\u044f \u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u043e\u0447\u0435\u043d\u044c \u0432\u043a\u0443\u0441\u043d\u044b\u0439 \u0442\u043e\u0440\u0442\u0438\u043a \u0438 \u043d\u0435\u0436\u043d\u044b\u0439 \u0434\u0435\u0441\u0435\u0440\u0442 \u043a \u0447\u0430\u044e! 

\n

Ingredients :

\n

Pancakes

\n

500ml sour cream

\n

1pack vanilla sugar

\n

800g of frozen or preserved cherry

\n

\u0418\u043d\u0433\u0440\u0435\u0434\u0438\u0435\u043d\u0442\u044b: 

\n

\u0411\u043b\u0438\u043d\u044b 

\n

\u0421\u043c\u0435\u0442\u0430\u043d\u0430 500\u043c\u043b 

\n

\u0421\u0430\u0445\u0430\u0440 1 \u0441\u0442\u0430\u043a\u0430\u043d 

\n

\u0412\u0430\u043d\u0438\u043b\u044c\u043d\u044b\u0439 \u0441\u0430\u0445\u0430\u0440 - 1 \u043f\u0430\u043a\u0435\u0442\u0438\u043a 

\n

\u0412\u0438\u0448\u043d\u044f \u0437\u0430\u043c\u043e\u0440\u043e\u0436\u0435\u043d\u043d\u0430\u044f \u0438\u043b\u0438 \u043a\u043e\u043d\u0441\u0435\u0440\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f 800\u0433\u0440

\n

http://i.imgur.com/oguMRtZ.jpg

\n

Make pancakes the way you like them

\n

It's very important that all the juice that comes out of cherries has dripped into a bow. Whip sour cream (at least 20% fat) with sugar and vanilla

\n

\u0413\u043e\u0442\u043e\u0432\u0438\u043c \u0431\u043b\u0438\u043d\u044b \u043f\u043e \u0441\u0432\u043e\u0435\u043c\u0443 \u0440\u0435\u0446\u0435\u043f\u0442\u0443 .\u0421 \u0432\u0438\u0448\u043d\u0438 \u0432\u0430\u0436\u043d\u043e \u0447\u0442\u043e\u0431\u044b \u0441\u0442\u0435\u043a \u0432\u0435\u0441\u044c \u0441\u043e\u043a. \u0421\u043c\u0435\u0442\u0430\u043d\u0443 \u0436\u0438\u0440\u043d\u0443\u044e \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 20% \u0432\u0437\u0431\u0438\u0442\u044c \u0441 \u0441\u0430\u0445\u0430\u0440\u043e\u043c \u0438 \u0432\u0430\u043d\u0438\u043b\u0438\u043d\u043e\u043c .

\n

http://i.imgur.com/8YMOHzf.jpg

\n

http://i.imgur.com/8KzsX0I.jpg

\n

http://i.imgur.com/LCZJXWX.jpg

\n

http://i.imgur.com/cSqfUeR.jpg

\n

Put a row of cherries on one edge of a pancake and roll. Put those rolls on a plate and cream them with the cream we've made before. Then make one more layer of pancake rolls and so on, making a pyramid.

\n

\u0421\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0431\u043b\u0438\u043d\u044b \u0432 \u0442\u0440\u0443\u0431\u043e\u0447\u043a\u0443 \u0438 \u0432\u044b\u043b\u043e\u0436\u0438\u0442\u044c \u043d\u0430 \u0431\u043b\u044e\u0434\u043e \u0432 \u0440\u044f\u0434. \u041f\u0440\u043e\u043c\u0430\u0437\u0430\u0442\u044c \u0445\u043e\u0440\u043e\u0448\u043e \u0441\u043c\u0435\u0442\u0430\u043d\u043d\u044b\u043c \u043a\u0440\u0435\u043c\u043e\u043c . \u0417\u0430\u0442\u0435\u043c \u043e\u043f\u044f\u0442\u044c \u0440\u044f\u0434 \u0431\u043b\u0438\u043d\u043e\u0432 \u043d\u043e \u043f\u043e\u043c\u0435\u043d\u044c\u0448\u0435, \u0441\u043b\u043e\u0439 \u043a\u0440\u0435\u043c\u0430 \u0438 \u0442\u0430\u043a \u0434\u0430\u043b\u0435\u0435. \u0412\u044b\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c \u043f\u043e\u043b\u0435\u043d\u043d\u0438\u0446\u0443. 

\n

http://i.imgur.com/jMNEtFR.jpg

\n

http://i.imgur.com/UyGHCOn.jpg

\n

http://i.imgur.com/G7kN563.jpg

\n

http://i.imgur.com/Cjs81fe.jpg

\n

http://i.imgur.com/RTeoS7n.jpg

\n

http://i.imgur.com/uy10SVo.jpg

\n

Put cream on top and decorative as you like.

\n

\u0421\u0432\u0435\u0440\u0445\u0443 \u043e\u0431\u043c\u0430\u0436\u0435\u043c \u043a\u0440\u0435\u043c\u043e\u043c \u0438 \u0443\u043a\u0440\u0430\u0448\u0430\u0435\u043c \u043d\u0430 \u0441\u0432\u043e\u0439 \u0432\u043a\u0443\u0441

\n

http://i.imgur.com/SvwKADp.jpg

\n

Bon appetite!!!

\n

http://i.imgur.com/Mlh4uXf.jpg

\n

\u041f\u0440\u0438\u044f\u0442\u043d\u043e\u0433\u043e \u0430\u043f\u043f\u0435\u0442\u0438\u0442\u0430!!!

\n

http://i.imgur.com/xv13Hu9.jpg

\n


\n


\n


\n", + "category": "food", + "children": 0, + "created": "2016-09-15T19:33:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.imgur.com/PW0v4ZA.jpg", + "http://i.imgur.com/oguMRtZ.jpg", + "http://i.imgur.com/8YMOHzf.jpg", + "http://i.imgur.com/8KzsX0I.jpg", + "http://i.imgur.com/LCZJXWX.jpg", + "http://i.imgur.com/cSqfUeR.jpg", + "http://i.imgur.com/jMNEtFR.jpg", + "http://i.imgur.com/UyGHCOn.jpg", + "http://i.imgur.com/G7kN563.jpg", + "http://i.imgur.com/Cjs81fe.jpg", + "http://i.imgur.com/RTeoS7n.jpg", + "http://i.imgur.com/uy10SVo.jpg", + "http://i.imgur.com/SvwKADp.jpg", + "http://i.imgur.com/Mlh4uXf.jpg", + "http://i.imgur.com/xv13Hu9.jpg" + ], + "tags": [ + "food", + "recipes", + "photography", + "ru" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 65577764329, + "payout": 0.014, + "payout_at": "2016-09-16T19:33:27", + "pending_payout_value": "0.014 HBD", + "percent_steem_dollars": 10000, + "permlink": "a-pancake-pie-with-cherry-it-s-very-delicious-blinnyi-tort-s-vishnei-ochen-ochen-vkusnyi", + "post_id": 960913, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 5 + }, + "title": "A pancake pie with cherry! It's very delicious!!! \u0411\u043b\u0438\u043d\u043d\u044b\u0439 \u0442\u043e\u0440\u0442 \u0441 \u0432\u0438\u0448\u043d\u0435\u0439! \u041e\u0447\u0435\u043d\u044c,\u043e\u0447\u0435\u043d\u044c \u0432\u043a\u0443\u0441\u043d\u044b\u0439!!!", + "updated": "2016-09-15T19:33:00", + "url": "/food/@nadin3/a-pancake-pie-with-cherry-it-s-very-delicious-blinnyi-tort-s-vishnei-ochen-ochen-vkusnyi" + } +] diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.pat.json new file mode 100644 index 00000000..70832021 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.pat.json @@ -0,0 +1,10354 @@ +[ + { + "post_id": 960290, + "author": "dollarvigilante", + "permlink": "another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", + "category": "money", + "title": "Another Billionaire Warns of Catastrophic Depths Not Seen in 5,000 Years - and Emphasizes Gold", + "body": "
https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg
\n\nIn past issues, we’ve documented increasingly concerned billionaires warning of dangerous economic times. Many have favored gold as an alternative allocation in a world where $13 trillion-worth of debt is negative yielding, interest rates are artificially suppressed and we’re on the brink of major wars.\n\nThe newest addition to this gold-loving billionaire's club, is none other than hedge-fund manager Paul Singer. At CNBC’s Delivering Alpha Investors Conference this week, the founder of the $27-billion Elliott Management Fund, the 17th largest hedge fund in the world, mentioned that at current prices gold is “undervalued” and “underrepresented in many portfolios as the only ... store of value that has stood the test of time.”\n\nSinger, along with numerous other hedge-fund managers, has been increasingly outspoken in his criticism of the Federal Reserve and other central banks for creating dangers in the market unlike any in what he terms the “5,000 year-ish” history of finance. Singer noted that “it's a very dangerous time in the global economy and global financial markets.\"\n\nThis quote is frighteningly similar to the response given by Donald Trump on Fox Business not long ago when he was asked if he had money in the market. He answered, “I did, but I got out,” and then went on to say that he expected “very scary scenarios” for investors.\n\nSinger also stated that he thinks owning medium- to long-term first world debt is a “really bad idea”... and then proceeded to tell listeners to sell their 30-year bonds.\n\nEarlier in the conference, prior to Singer, Ray Dalio who is the manager of the largest hedge fund in the world, Bridgewater Capital, was also vocal about the diminishing returns provided by government debt held by central banks. “There’s only so much you can squeeze out of the debt cycle,\" he said. He went on to say that central banks are at a point now where their ability to stimulate is limited.\n\nSeated next to Dalio was Former Treasury secretary Timothy Geithner who voiced concern about limited “tools in the keynesian arsenal,” that probably wouldn’t be enough to offset the next recession.\n\nGeithner obviously believes that a recession is on the way. Dalio and Singer are trying to convey the same message. A massive crunch is looming.\n\nWe agree with them, although we believe Geithner was sugarcoating what’s to come.\n\nAfter all, we are on the precipice of a crash of biblical proportions according to the former chief economist of the Bank for International Settlements, William White.\n\nWe have mentioned his quote numerous time here at TDV but feel it’s important to reiterate because of its magnitude: “The only question is whether we are able to look reality in the eye and face what is coming in an orderly fashion, or whether it will be disorderly. Debt jubilees have been going on for 5,000 years, as far back as the Sumerians.”\n\nAs the Fed considers its second rate hike in 10 years, Singer condemned policy-makers for acting with “amazing arrogance” when he and others had warned of a mortgage crisis prior to 2008.\n\nWhat he and those who agreed with his stance don’t know, or at least won’t state publicly, is that these shoddy central bank policies are detrimental by design. In other words, their sole purpose is to destabilize the world economy.\n\nThis deliberate market sabotage is necessary for the transference of power from the more developed nations to less developed ones. Ultimately, the idea is to eliminate smaller regional and national central banks. Once things get bad enough, these smaller banks will be blamed for provoking a given crisis. And, secondarily, the end goal is to blow up the entire system in order to bring in the one world government and central bank.\n\nThe elites have used the same tactics time and time again throughout history. First, they create the problem, then there is a reaction, and then finally they come swooping in to “valiantly save” the day. It's happened numerous times before.\n
https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png
\nAnd it will soon happen again.\n\nOf course, the globalists have demonstrated that every intervention only makes situations worse.\n\nWe reported on the blatant thievery going on at Wells Fargo in our last article and noted how the elites were probably laughing hysterically at what they’re able to get away with. They were even able to convince many younger American voters that “democratic socialism” would be their savior, as seen by the significant, youthful support for Bernie Slanders. Debt and currency crises have already started to materialize, as we’ve seen in the socialist utopia that is Venezuela. If this is any indication of what’s to come, the future is looking awfully gloomy.\n\nAs Singer and others including Dalio have mentioned before, the most tried and true measure of wealth and value is gold.\n\nAt TDV we provide unique Austrian-economics based analysis from the anarcho-capitalist pespective of the state of the world’s economy, as well as suggestions on how to protect your assets in these tempestuous and unprecedented times.\n\nJacob Rothschild, a member of the family partly responsible for the creation of all this chaos, even said himself that we are in “uncharted waters” and that it’s “impossible to predict the unintended consequences of very low interest rates.”\n\nWe have a pretty good idea of what the consequences will be and we’re taking action to protect ourselves and even profit from them. Rothschild seems to know the consequences, as well, as he has been buying up gold and selling the stock market and the US dollar.\n\nYou can survive and profit from the orchestrated collapse too. Subscribe to TDV’s newsletter here to receive constantly updated information on how to protect your family and friends.\n\nIn the end, it is getting truly bizarre just how many billionaires, central bankers and others of note are all warning of the coming collapse. We’d almost begun to worry that they were going to pull a switch-a-roo on us, but if you asked the great majority of investors and financial analysts, they’ll tell you that they see nothing but smooth sailing ahead.\n\nSo, while many are warning, many are hearing, but not listening. The bible said something about that, I believe.\n
https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg
", + "json_metadata": { + "tags": [ + "money", + "gold", + "silver", + "bitcoin", + "crisis" + ], + "image": [ + "https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg", + "https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png", + "https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg" + ], + "links": [ + "https://dollarvigilante.com/subscribe" + ] + }, + "created": "2016-09-15T18:23:15", + "updated": "2016-09-15T18:23:15", + "depth": 0, + "children": 23, + "net_rshares": 102136532384242, + "is_paidout": false, + "payout_at": "2016-09-16T18:47:28", + "payout": 596.997, + "pending_payout_value": "596.997 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "dantheman", + "rshares": "28370463371572" + }, + { + "voter": "smooth", + "rshares": "31307487536364" + }, + { + "voter": "anonymous", + "rshares": "231809639013" + }, + { + "voter": "diaphanous", + "rshares": "2321962618319" + }, + { + "voter": "commedy", + "rshares": "1469558503443" + }, + { + "voter": "riverhead", + "rshares": "4287714457313" + }, + { + "voter": "badassmother", + "rshares": "1856006073992" + }, + { + "voter": "rossco99", + "rshares": "1271804694676" + }, + { + "voter": "wang", + "rshares": "2206068741954" + }, + { + "voter": "xeroc", + "rshares": "1950753758979" + }, + { + "voter": "joseph", + "rshares": "1534707047296" + }, + { + "voter": "recursive3", + "rshares": "452874558937" + }, + { + "voter": "masteryoda", + "rshares": "620996029765" + }, + { + "voter": "recursive", + "rshares": "3120582597678" + }, + { + "voter": "lee2", + "rshares": "440845842" + }, + { + "voter": "lee3", + "rshares": "26932201065" + }, + { + "voter": "lee4", + "rshares": "8677295375" + }, + { + "voter": "lee5", + "rshares": "22149018521" + }, + { + "voter": "smooth.witness", + "rshares": "5942299654212" + }, + { + "voter": "idol", + "rshares": "8927291120" + }, + { + "voter": "sakr", + "rshares": "4941942978" + }, + { + "voter": "unosuke", + "rshares": "57625926227" + }, + { + "voter": "jocelyn", + "rshares": "1536592488" + }, + { + "voter": "gregory-f", + "rshares": "14818263059" + }, + { + "voter": "edgeland", + "rshares": "154334962550" + }, + { + "voter": "gregory60", + "rshares": "8836453529" + }, + { + "voter": "full-measure", + "rshares": "29596510808" + }, + { + "voter": "eeks", + "rshares": "104880949618" + }, + { + "voter": "fkn", + "rshares": "24694558802" + }, + { + "voter": "paco-steem", + "rshares": "468281676" + }, + { + "voter": "spaninv", + "rshares": "5641697991" + }, + { + "voter": "elishagh1", + "rshares": "32459455171" + }, + { + "voter": "himalayanguru", + "rshares": "40391466193" + }, + { + "voter": "nanzo-scoop", + "rshares": "584291107228" + }, + { + "voter": "steve-walschot", + "rshares": "178471627922" + }, + { + "voter": "kefkius", + "rshares": "9857825141" + }, + { + "voter": "mummyimperfect", + "rshares": "177420844935" + }, + { + "voter": "asch", + "rshares": "106635691300" + }, + { + "voter": "kevinwong", + "rshares": "616864092786" + }, + { + "voter": "murh", + "rshares": "1061266533" + }, + { + "voter": "cryptofunk", + "rshares": "6230798580" + }, + { + "voter": "kodi", + "rshares": "579494558" + }, + { + "voter": "error", + "rshares": "2003359924" + }, + { + "voter": "andu", + "rshares": "11584833708" + }, + { + "voter": "ranko-k", + "rshares": "40553122820" + }, + { + "voter": "cyber", + "rshares": "962089879337" + }, + { + "voter": "theshell", + "rshares": "58188888655" + }, + { + "voter": "ak2020", + "rshares": "49581045086" + }, + { + "voter": "satoshifund", + "rshares": "3848697023555" + }, + { + "voter": "applecrisp", + "rshares": "402139444" + }, + { + "voter": "altoz", + "rshares": "36407027386" + }, + { + "voter": "stiletto", + "rshares": "365370465" + }, + { + "voter": "juanmiguelsalas", + "rshares": "55577467736" + }, + { + "voter": "will-zewe", + "rshares": "219283354085" + }, + { + "voter": "herzmeister", + "rshares": "87300558689" + }, + { + "voter": "trogdor", + "rshares": "275016906945" + }, + { + "voter": "tee-em", + "rshares": "5287820211" + }, + { + "voter": "michaelx", + "rshares": "31346001722" + }, + { + "voter": "thedashguy", + "rshares": "179395106552" + }, + { + "voter": "usefree", + "rshares": "4682885200" + }, + { + "voter": "mexbit", + "rshares": "189626835254" + }, + { + "voter": "mark-waser", + "rshares": "5821262190" + }, + { + "voter": "geoffrey", + "rshares": "118356217412" + }, + { + "voter": "kimziv", + "rshares": "208362110567" + }, + { + "voter": "honeythief", + "rshares": "46266779182" + }, + { + "voter": "emily-cook", + "rshares": "75334808165" + }, + { + "voter": "superfreek", + "rshares": "2187607792" + }, + { + "voter": "mrhankeh", + "rshares": "484636799" + }, + { + "voter": "grey580", + "rshares": "17908924002" + }, + { + "voter": "ladyclair", + "rshares": "275327756" + }, + { + "voter": "bacchist", + "rshares": "68449861599" + }, + { + "voter": "good-karma", + "rshares": "60315479782" + }, + { + "voter": "orly", + "rshares": "3350419346" + }, + { + "voter": "riscadox", + "rshares": "5271030976" + }, + { + "voter": "katyakov", + "rshares": "24867575018" + }, + { + "voter": "fabio", + "rshares": "373878481829" + }, + { + "voter": "tcfxyz", + "rshares": "25057642057" + }, + { + "voter": "futurefood", + "rshares": "6939984054" + }, + { + "voter": "rxhector", + "rshares": "734082781" + }, + { + "voter": "furion", + "rshares": "118094280271" + }, + { + "voter": "cdubendo", + "rshares": "105911917280" + }, + { + "voter": "barbara2", + "rshares": "578386960" + }, + { + "voter": "ch0c0latechip", + "rshares": "642869652" + }, + { + "voter": "doge4lyf", + "rshares": "594982040" + }, + { + "voter": "gord0b", + "rshares": "12668641443" + }, + { + "voter": "steem1653", + "rshares": "2632460141" + }, + { + "voter": "cynetyc", + "rshares": "136322030" + }, + { + "voter": "steemit-life", + "rshares": "25221166135" + }, + { + "voter": "snowden", + "rshares": "80777327" + }, + { + "voter": "thegoodguy", + "rshares": "5357326058" + }, + { + "voter": "aaseb", + "rshares": "14168336425" + }, + { + "voter": "karen13", + "rshares": "4209533734" + }, + { + "voter": "cryptosi", + "rshares": "6017253623" + }, + { + "voter": "nabilov", + "rshares": "251367062418" + }, + { + "voter": "noodhoog", + "rshares": "8751103405" + }, + { + "voter": "milestone", + "rshares": "46859060143" + }, + { + "voter": "creemej", + "rshares": "33739229218" + }, + { + "voter": "wildchild", + "rshares": "87223247" + }, + { + "voter": "nippel66", + "rshares": "15070803886" + }, + { + "voter": "phenom", + "rshares": "24417687626" + }, + { + "voter": "poseidon", + "rshares": "4545051592" + }, + { + "voter": "smolalit", + "rshares": "7946812357" + }, + { + "voter": "calaber24p", + "rshares": "362515598946" + }, + { + "voter": "jdenismusic", + "rshares": "147403710" + }, + { + "voter": "simon.braki.love", + "rshares": "3365797955" + }, + { + "voter": "thylbom", + "rshares": "82782405213" + }, + { + "voter": "bitcoiner", + "rshares": "3709588060" + }, + { + "voter": "deanliu", + "rshares": "32544157928" + }, + { + "voter": "dmitriybtc", + "rshares": "4996306142" + }, + { + "voter": "jl777", + "rshares": "204618396015" + }, + { + "voter": "zaebars", + "rshares": "30989614870" + }, + { + "voter": "positive", + "rshares": "20026634941" + }, + { + "voter": "yarly", + "rshares": "1809205777" + }, + { + "voter": "yarly2", + "rshares": "272641013" + }, + { + "voter": "yarly3", + "rshares": "273048922" + }, + { + "voter": "yarly4", + "rshares": "157733805" + }, + { + "voter": "yarly5", + "rshares": "158624349" + }, + { + "voter": "yarly7", + "rshares": "90416287" + }, + { + "voter": "raymonjohnstone", + "rshares": "799615699" + }, + { + "voter": "proto", + "rshares": "17267341753" + }, + { + "voter": "sisterholics", + "rshares": "34309455805" + }, + { + "voter": "yarly10", + "rshares": "437620869" + }, + { + "voter": "yarly11", + "rshares": "234191245" + }, + { + "voter": "royalmacro", + "rshares": "8781903824" + }, + { + "voter": "yarly12", + "rshares": "81879061" + }, + { + "voter": "fnait", + "rshares": "674282213" + }, + { + "voter": "keepcalmand", + "rshares": "599033376" + }, + { + "voter": "steemster1", + "rshares": "146224042" + }, + { + "voter": "dmilash", + "rshares": "3022447454" + }, + { + "voter": "andreynoch", + "rshares": "2002851358" + }, + { + "voter": "mahekg", + "rshares": "13359143286" + }, + { + "voter": "gomeravibz", + "rshares": "50579277183" + }, + { + "voter": "taker", + "rshares": "8734185109" + }, + { + "voter": "nekromarinist", + "rshares": "12064042634" + }, + { + "voter": "sharon", + "rshares": "57873464" + }, + { + "voter": "dumar022", + "rshares": "10419645487" + }, + { + "voter": "merej99", + "rshares": "2157207095" + }, + { + "voter": "lillianjones", + "rshares": "58971492" + }, + { + "voter": "laonie", + "rshares": "1213299204686" + }, + { + "voter": "twinner", + "rshares": "157521707420" + }, + { + "voter": "rawnetics", + "rshares": "23391691291" + }, + { + "voter": "laonie1", + "rshares": "22969142749" + }, + { + "voter": "laonie2", + "rshares": "23485900426" + }, + { + "voter": "laonie3", + "rshares": "23494195522" + }, + { + "voter": "laoyao", + "rshares": "24562882668" + }, + { + "voter": "myfirst", + "rshares": "42639811498" + }, + { + "voter": "somebody", + "rshares": "246279861104" + }, + { + "voter": "flysaga", + "rshares": "9450505564" + }, + { + "voter": "brendio", + "rshares": "5831615639" + }, + { + "voter": "gmurph", + "rshares": "2918578376" + }, + { + "voter": "chris.roy", + "rshares": "3690744042" + }, + { + "voter": "midnightoil", + "rshares": "54405024034" + }, + { + "voter": "ullikume", + "rshares": "4190391188" + }, + { + "voter": "laonie4", + "rshares": "23489872560" + }, + { + "voter": "laonie5", + "rshares": "23487615266" + }, + { + "voter": "laonie6", + "rshares": "23484637540" + }, + { + "voter": "laonie7", + "rshares": "23480497322" + }, + { + "voter": "kurtbeil", + "rshares": "3323984357" + }, + { + "voter": "laonie8", + "rshares": "23477049244" + }, + { + "voter": "laonie9", + "rshares": "23474334690" + }, + { + "voter": "xiaohui", + "rshares": "136078574669" + }, + { + "voter": "jphamer1", + "rshares": "21112646631" + }, + { + "voter": "bigsambucca", + "rshares": "88206053" + }, + { + "voter": "elfkitchen", + "rshares": "6791986484" + }, + { + "voter": "joele", + "rshares": "99935909954" + }, + { + "voter": "oflyhigh", + "rshares": "5855738054" + }, + { + "voter": "randyclemens", + "rshares": "15860159560" + }, + { + "voter": "paynode", + "rshares": "2343183825" + }, + { + "voter": "xiaokongcom", + "rshares": "4366149629" + }, + { + "voter": "msjennifer", + "rshares": "59437351" + }, + { + "voter": "ciao", + "rshares": "54654502" + }, + { + "voter": "session101", + "rshares": "62928860" + }, + { + "voter": "steemo", + "rshares": "52985539" + }, + { + "voter": "xianjun", + "rshares": "8801395051" + }, + { + "voter": "steema", + "rshares": "52848854" + }, + { + "voter": "sijoittaja", + "rshares": "72192938" + }, + { + "voter": "confucius", + "rshares": "69662169" + }, + { + "voter": "stevescriber", + "rshares": "72135954" + }, + { + "voter": "loli", + "rshares": "51247757" + }, + { + "voter": "miacats", + "rshares": "91519215715" + }, + { + "voter": "nano2nd", + "rshares": "52419023" + }, + { + "voter": "jarvis", + "rshares": "53661976" + }, + { + "voter": "microluck", + "rshares": "591109646" + }, + { + "voter": "razberrijam", + "rshares": "74131936" + }, + { + "voter": "fortuner", + "rshares": "53106127" + }, + { + "voter": "chinadaily", + "rshares": "2022702929" + }, + { + "voter": "pompe72", + "rshares": "88481667" + }, + { + "voter": "dollarvigilante", + "rshares": "802011524540" + }, + { + "voter": "pollina", + "rshares": "101627835" + }, + { + "voter": "johnbyrd", + "rshares": "50698107" + }, + { + "voter": "thomasaustin", + "rshares": "50682252" + }, + { + "voter": "thermor", + "rshares": "50680459" + }, + { + "voter": "ficholl", + "rshares": "50691211" + }, + { + "voter": "widell", + "rshares": "51852278" + }, + { + "voter": "movievertigo", + "rshares": "3635091595" + }, + { + "voter": "revelbrooks", + "rshares": "50311250" + }, + { + "voter": "laonie10", + "rshares": "23468154723" + }, + { + "voter": "netaterra", + "rshares": "2982691190" + }, + { + "voter": "andrewawerdna", + "rshares": "21980957828" + }, + { + "voter": "trev", + "rshares": "5712937692" + }, + { + "voter": "erroneous-logic", + "rshares": "1874035641" + }, + { + "voter": "sergeypotapov", + "rshares": "302425178" + }, + { + "voter": "lensessions", + "rshares": "65868377" + }, + { + "voter": "wmhammer", + "rshares": "59126308" + }, + { + "voter": "emancipatedhuman", + "rshares": "45978108133" + }, + { + "voter": "pressfortruth", + "rshares": "15340272043" + }, + { + "voter": "hilarski", + "rshares": "6654726855" + }, + { + "voter": "craigwilliamz", + "rshares": "8773942171" + }, + { + "voter": "onetree", + "rshares": "8856106682" + }, + { + "voter": "slorunner", + "rshares": "101945845" + }, + { + "voter": "shadowspub", + "rshares": "2029369552" + }, + { + "voter": "daut44", + "rshares": "32463005362" + }, + { + "voter": "curpose", + "rshares": "50416427" + }, + { + "voter": "suprepachyderm", + "rshares": "59693834" + }, + { + "voter": "themonetaryfew", + "rshares": "1615332211" + }, + { + "voter": "dajohns1420", + "rshares": "989363278" + }, + { + "voter": "runridefly", + "rshares": "2196907450" + }, + { + "voter": "newandold", + "rshares": "3915304227" + }, + { + "voter": "jamesyk", + "rshares": "57856784" + }, + { + "voter": "shenanigator", + "rshares": "112983030208" + }, + { + "voter": "jcomeauictx", + "rshares": "58197677" + }, + { + "voter": "quinneaker", + "rshares": "12901147949" + }, + { + "voter": "freeinthought", + "rshares": "752032432" + }, + { + "voter": "funkywanderer", + "rshares": "1783693666" + }, + { + "voter": "richardcrill", + "rshares": "4900461398" + }, + { + "voter": "laonie11", + "rshares": "22621459650" + }, + { + "voter": "jeremyfromwi", + "rshares": "2205784762" + }, + { + "voter": "troich", + "rshares": "50588612" + }, + { + "voter": "nadin3", + "rshares": "4662965424" + }, + { + "voter": "profanarky", + "rshares": "588228551" + }, + { + "voter": "xanoxt", + "rshares": "3411072843" + }, + { + "voter": "davidjkelley", + "rshares": "1625414479" + }, + { + "voter": "crion", + "rshares": "50593879" + }, + { + "voter": "greatness", + "rshares": "174778016" + }, + { + "voter": "hitherise", + "rshares": "50271139" + }, + { + "voter": "wiss", + "rshares": "50262756" + }, + { + "voter": "sebastianbauer", + "rshares": "56782516" + }, + { + "voter": "fizzgig", + "rshares": "55667728" + }, + { + "voter": "sponge-bob", + "rshares": "26571803569" + }, + { + "voter": "l0k1", + "rshares": "4044716723" + }, + { + "voter": "digital-wisdom", + "rshares": "15232622426" + }, + { + "voter": "ethical-ai", + "rshares": "3710973264" + }, + { + "voter": "stroully", + "rshares": "51033798" + }, + { + "voter": "titusfrost", + "rshares": "3752641890" + }, + { + "voter": "jwaser", + "rshares": "6682880996" + }, + { + "voter": "thadm", + "rshares": "50712038" + }, + { + "voter": "zettar", + "rshares": "2353724275" + }, + { + "voter": "smisi", + "rshares": "1655277599" + }, + { + "voter": "bluehorseshoe", + "rshares": "17357974240" + }, + { + "voter": "lighter", + "rshares": "53413720" + }, + { + "voter": "yorsens", + "rshares": "50370757" + }, + { + "voter": "maarnio", + "rshares": "263853222" + }, + { + "voter": "analyzethis", + "rshares": "50931848" + }, + { + "voter": "bwaser", + "rshares": "2617343597" + }, + { + "voter": "sofa", + "rshares": "50840303" + }, + { + "voter": "panther", + "rshares": "323483227" + }, + { + "voter": "doggnostic", + "rshares": "53871683" + }, + { + "voter": "ct-gurus", + "rshares": "659649765" + }, + { + "voter": "jenny-talls", + "rshares": "53593366" + }, + { + "voter": "charlieshrem", + "rshares": "411677045923" + }, + { + "voter": "tracemayer", + "rshares": "61827447459" + }, + { + "voter": "brains", + "rshares": "54239080444" + }, + { + "voter": "waldemar-kuhn", + "rshares": "50450987" + }, + { + "voter": "steemafon", + "rshares": "1415009195" + }, + { + "voter": "bitcoinparadise", + "rshares": "1352324852" + }, + { + "voter": "chick1", + "rshares": "5753524189" + }, + { + "voter": "rigaronib", + "rshares": "3605995609" + }, + { + "voter": "aoki", + "rshares": "50584036" + }, + { + "voter": "typingagent", + "rshares": "50516543" + }, + { + "voter": "cwb", + "rshares": "50528809" + }, + { + "voter": "freebornangel", + "rshares": "62515317" + }, + { + "voter": "anomaly", + "rshares": "271440423" + }, + { + "voter": "ellepdub", + "rshares": "2401297947" + }, + { + "voter": "inarix03", + "rshares": "63405661" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "rayzzz", + "rshares": "51615652" + }, + { + "voter": "herpetologyguy", + "rshares": "12115690216" + }, + { + "voter": "morgan.waser", + "rshares": "4712300251" + }, + { + "voter": "iggy", + "rshares": "157644916" + }, + { + "voter": "mbizryu0", + "rshares": "51636819" + }, + { + "voter": "archij", + "rshares": "51631638" + }, + { + "voter": "movie7283", + "rshares": "51530815" + }, + { + "voter": "ppcompp2", + "rshares": "51527606" + }, + { + "voter": "jj1968", + "rshares": "51520427" + }, + { + "voter": "cineger", + "rshares": "51516489" + }, + { + "voter": "sksduddk", + "rshares": "51497383" + }, + { + "voter": "jjc0719", + "rshares": "51490214" + }, + { + "voter": "glassheart", + "rshares": "51235131" + }, + { + "voter": "deli", + "rshares": "51215236" + }, + { + "voter": "anns", + "rshares": "1233685675" + }, + { + "voter": "breeze", + "rshares": "50798322" + }, + { + "voter": "sjytoy", + "rshares": "50677982" + }, + { + "voter": "shy2675", + "rshares": "50676799" + }, + { + "voter": "suance1009", + "rshares": "50675747" + }, + { + "voter": "hasqmd", + "rshares": "50674176" + }, + { + "voter": "fischer67", + "rshares": "50673722" + }, + { + "voter": "elya1", + "rshares": "50672116" + }, + { + "voter": "xclamp45", + "rshares": "50632828" + }, + { + "voter": "likeagame1", + "rshares": "50618471" + }, + { + "voter": "apple4006", + "rshares": "50616898" + }, + { + "voter": "bigbell61", + "rshares": "50615195" + }, + { + "voter": "dolpo777", + "rshares": "50612850" + }, + { + "voter": "dongperi", + "rshares": "50611931" + }, + { + "voter": "lion2byung", + "rshares": "50610620" + }, + { + "voter": "cwj1973", + "rshares": "50610002" + }, + { + "voter": "psj212", + "rshares": "50609329" + }, + { + "voter": "owithed2", + "rshares": "50608661" + }, + { + "voter": "fiself2", + "rshares": "50606929" + }, + { + "voter": "trablinever1", + "rshares": "50605131" + }, + { + "voter": "nuals1940", + "rshares": "50603861" + }, + { + "voter": "fanceth2", + "rshares": "50602310" + }, + { + "voter": "unilever", + "rshares": "50572441" + }, + { + "voter": "amstel", + "rshares": "50540827" + }, + { + "voter": "bapparabi", + "rshares": "1921231770" + }, + { + "voter": "sunlight", + "rshares": "50479027" + }, + { + "voter": "forea1995", + "rshares": "50355943" + }, + { + "voter": "holow1968", + "rshares": "50354561" + }, + { + "voter": "peaces1952", + "rshares": "50353969" + }, + { + "voter": "himighar2", + "rshares": "50346496" + }, + { + "voter": "aromese1974", + "rshares": "50345607" + }, + { + "voter": "runis1943", + "rshares": "50344921" + }, + { + "voter": "tong1962", + "rshares": "50344067" + }, + { + "voter": "hishe1997", + "rshares": "50340744" + }, + { + "voter": "letstalkliberty", + "rshares": "255059000" + }, + { + "voter": "strong-ai", + "rshares": "3609651500" + }, + { + "voter": "ninjapainter", + "rshares": "53375937" + }, + { + "voter": "buit1989", + "rshares": "51393104" + }, + { + "voter": "imadecoult1", + "rshares": "51389981" + }, + { + "voter": "infees2", + "rshares": "51387526" + }, + { + "voter": "suar1997", + "rshares": "51384095" + }, + { + "voter": "sobsell93", + "rshares": "51382067" + }, + { + "voter": "stroned96", + "rshares": "51380710" + }, + { + "voter": "drethe", + "rshares": "51378107" + }, + { + "voter": "qualwas", + "rshares": "51377505" + }, + { + "voter": "phent1994", + "rshares": "51376367" + }, + { + "voter": "baboyes", + "rshares": "51375075" + }, + { + "voter": "whor1973", + "rshares": "51373532" + }, + { + "voter": "youreforn", + "rshares": "51372739" + }, + { + "voter": "voll1981", + "rshares": "51371902" + }, + { + "voter": "copenty2", + "rshares": "51370717" + }, + { + "voter": "maject2", + "rshares": "51369717" + }, + { + "voter": "coust1997", + "rshares": "51367233" + }, + { + "voter": "busionea84", + "rshares": "51366398" + }, + { + "voter": "therver1", + "rshares": "51365174" + }, + { + "voter": "appirdsmanne1990", + "rshares": "51364022" + }, + { + "voter": "alienighted87", + "rshares": "51362967" + }, + { + "voter": "anity1994", + "rshares": "51359746" + }, + { + "voter": "themphe1", + "rshares": "59959066" + }, + { + "voter": "abild1988", + "rshares": "51355864" + }, + { + "voter": "spoll1973", + "rshares": "51353540" + }, + { + "voter": "afteld1", + "rshares": "66162576" + }, + { + "voter": "igtes", + "rshares": "71207873" + }, + { + "voter": "dikanevroman", + "rshares": "835065804" + }, + { + "voter": "buffett", + "rshares": "141679752" + }, + { + "voter": "rusteemitblog", + "rshares": "1630362522" + }, + { + "voter": "robyneggs", + "rshares": "167843838" + }, + { + "voter": "michaelstobiersk", + "rshares": "1300689481" + }, + { + "voter": "witchcraftblog", + "rshares": "453506109" + }, + { + "voter": "sdc", + "rshares": "158057595" + }, + { + "voter": "gravity", + "rshares": "160973134" + }, + { + "voter": "digitalillusions", + "rshares": "160900665" + }, + { + "voter": "illusions", + "rshares": "157726117" + }, + { + "voter": "cybergirls", + "rshares": "157176058" + }, + { + "voter": "correct", + "rshares": "156847954" + }, + { + "voter": "haribo", + "rshares": "156814579" + }, + { + "voter": "stimmt", + "rshares": "156194471" + }, + { + "voter": "fallout", + "rshares": "156054487" + }, + { + "voter": "rule", + "rshares": "159062820" + }, + { + "voter": "xtreme", + "rshares": "155907388" + }, + { + "voter": "modernbukowski", + "rshares": "1442647825" + }, + { + "voter": "steem-wallet", + "rshares": "158602900" + }, + { + "voter": "nerds", + "rshares": "158535752" + }, + { + "voter": "goldmatters", + "rshares": "31008332335" + }, + { + "voter": "majes", + "rshares": "155796749" + }, + { + "voter": "maxb02", + "rshares": "155166715" + }, + { + "voter": "dealzgal", + "rshares": "71727340" + }, + { + "voter": "bleujay", + "rshares": "120983531" + }, + { + "voter": "storage", + "rshares": "68013381" + }, + { + "voter": "risabold", + "rshares": "298391608" + }, + { + "voter": "dougkarr", + "rshares": "154247502" + }, + { + "voter": "blackmarket", + "rshares": "58460105" + }, + { + "voter": "gifts", + "rshares": "61530871" + }, + { + "voter": "expat", + "rshares": "96643251" + }, + { + "voter": "pathtomydream", + "rshares": "181770825" + }, + { + "voter": "doubledex", + "rshares": "519265850" + }, + { + "voter": "steemlift", + "rshares": "1593664040" + }, + { + "voter": "toddemaher1", + "rshares": "129609202" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 387, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/money/@dollarvigilante/another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", + "blacklists": [] + }, + { + "post_id": 960258, + "author": "gavvet", + "permlink": "why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", + "category": "herpetology", + "title": "Why You Don’t Want to Kill that Snake in Your Yard (featuring @herpetologyguy as author)", + "body": "@herpetologyguy\n\nOne of my many tasks as a zoo keeper is connecting people to animals. \n-\n\n\n\n

The museum I work at is unique because we showcase animals that are native to Virginia -- meaning that these are animals people will find close to home, rather than across the ocean in some distant country. This makes my job more crucial in that I am responsible for educating people about the reptiles and amphibians that they will find in their own backyards. And obviously, there’s one group of reptiles that gives people more pause than almost any other animal . . . . 

\n

Snakes. 

\n

http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj   Picture Credit

\n

I do public programs featuring snakes quite frequently.  I believe people should know how to identify local venomous/non-venomous snakes, their role in the environment and how to deal with them when they are in close proximity to our homes.  Usually, I get eager audiences asking great questions.  But, every now and then, I get some idiot who tells me, “I saw that same snake in my backyard! I chopped off its head with a shovel!”

\n

Are they an idiot for killing the snake?  Not necessarily . . . I don’t know the situation behind the encounter. But, only an idiot would walk into a wildlife facility, approach a zoo keeper and proudly declare that they kill the very same animals that the keeper is charged with the care for.  Would you walk into an animal shelter and tell someone working there that you enjoy stomping on puppies?  To us, there’s not much difference… 

\n

http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png   Picture Credit\n

\n

The best we can do in these situations is to try to educate people. This can be difficult because so many people are set in their ways -- plus we have to combat an instinctive fear and prejudice against snakes.  So, I’m going to briefly lay it all out for you and tell you \"Why you shouldn’t kill that snake in your yard.\" 

\n

http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg   Picture Credit

\n

1.  It’s ILLEGAL in most states to kill a wild snake, unless that snake presents an IMMEDIATE threat.  And no, a snake crawling through your yard does not represent a good enough excuse to use force.  We’re talking about a situation where a venomous snake is about to strike and you have no escape route but to fight your way out.  And guess what, that really doesn’t ever happen (barring instances where someone purposefully provokes an animal).  Wildlife and law enforcement agencies are cracking down on people killing snakes, so it’s better to keep yourself out of trouble. 

\n

http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg   Picture Credit

\n

2.  You are putting yourself in harm’s way.  The vast majority of snake bites occur when people attempt to capture or kill snakes.  If left alone, the snake CANNOT hurt you.  Call wildlife services or trained professionals to remove the animal. 

\n

http://www.snakegetters.com/demo/bud-cotton-gg.jpg   Picture Credit

\n

3.  It’s an incredibly beneficial animal, and you’d be foolish to kill it.  Small snakes eat a huge variety of pest insects that destroy gardens, while large snakes typically feed on rats and other rodents that infest our homes.  If you see a large snake hanging around, you have a rodent problem; snakes will not hang around if there is no food source.  To keep snakes from being attracted to your property, do your best to remove any shelter or food sources that would attract rodents.  Some snakes even eat other snakes, and species like the harmless king snake will even feed on venomous species! 

\n

https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg   Picture Credit

\n

4.  Another snake might show up.  Snakes will not typically inhabit the same area in order to avoid competition.  If you kill that harmless rat snake, but you still have a food source nearby, another snake may move in to make use of that source.  The new snake may be another harmless species or something a bit less desirable.  So why not let that harmless snake take care of the infestation for you?

\n

http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg   Picture Credit

\n

Having a snake around can be hugely beneficial to you.  It is a free, environmentally-safe form of pest control.  Snakes, including venomous species, are non-aggressive animals (unless you provoke them) that will actively do their best to AVOID people.  A resident snake will often go unnoticed by homeowners, and most encounters are fleeting glimpses of the snake making a hasty escape.  Remember that snakes have their own unique role in the environment, and regardless of our own fears and feelings towards them, they are a necessary part of life. 

\n

   http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg   Picture Credit

\n\n\nif you liked this also please check out:\nhttps://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians\n\n\n***don't forget to follow @herpetologyguy***", + "json_metadata": { + "tags": [ + "herpetology", + "reptiles", + "snakes", + "science" + ], + "users": [ + "herpetologyguy" + ], + "image": [ + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg" + ], + "links": [ + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://www.sciencemag.org", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://proactivepestga.com", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://blogs.discovermagazine.com", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.mylakelandnow.com", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "http://www.snakegetters.com", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "https://www.youtube.com/watch?v=ImOj1CKTBqE", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://phenomena.nationalgeographic.com", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg", + "http://westernmassnaturalist.org", + "https://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians" + ] + }, + "created": "2016-09-15T18:19:39", + "updated": "2016-09-15T18:19:39", + "depth": 0, + "children": 6, + "net_rshares": 68620995119384, + "is_paidout": false, + "payout_at": "2016-09-16T18:44:06", + "payout": 274.438, + "pending_payout_value": "274.438 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "smooth", + "rshares": "31307487536364" + }, + { + "voter": "anonymous", + "rshares": "231809639013" + }, + { + "voter": "butterfly", + "rshares": "1551268628220" + }, + { + "voter": "riverhead", + "rshares": "4287714457313" + }, + { + "voter": "badassmother", + "rshares": "1855967006728" + }, + { + "voter": "hr1", + "rshares": "2053236030423" + }, + { + "voter": "rossco99", + "rshares": "1271804694676" + }, + { + "voter": "wang", + "rshares": "2206068741954" + }, + { + "voter": "jaewoocho", + "rshares": "22391622942" + }, + { + "voter": "joseph", + "rshares": "1534654466021" + }, + { + "voter": "recursive2", + "rshares": "466132509421" + }, + { + "voter": "recursive3", + "rshares": "452874558937" + }, + { + "voter": "masteryoda", + "rshares": "636519834128" + }, + { + "voter": "recursive", + "rshares": "3120576239931" + }, + { + "voter": "smooth.witness", + "rshares": "5942254587236" + }, + { + "voter": "idol", + "rshares": "8927291120" + }, + { + "voter": "steemrollin", + "rshares": "800066797130" + }, + { + "voter": "sakr", + "rshares": "4941942978" + }, + { + "voter": "chitty", + "rshares": "284401462010" + }, + { + "voter": "unosuke", + "rshares": "75736848691" + }, + { + "voter": "noaommerrr", + "rshares": "481790356914" + }, + { + "voter": "jocelyn", + "rshares": "1536592488" + }, + { + "voter": "acidsun", + "rshares": "85270554570" + }, + { + "voter": "gregory-f", + "rshares": "14502980866" + }, + { + "voter": "edgeland", + "rshares": "154334962550" + }, + { + "voter": "gregory60", + "rshares": "9028550345" + }, + { + "voter": "gavvet", + "rshares": "1196485708874" + }, + { + "voter": "eeks", + "rshares": "89897944197" + }, + { + "voter": "fkn", + "rshares": "1511911763" + }, + { + "voter": "paco-steem", + "rshares": "122160437" + }, + { + "voter": "spaninv", + "rshares": "1471747302" + }, + { + "voter": "elishagh1", + "rshares": "1987313581" + }, + { + "voter": "richman", + "rshares": "7803257741" + }, + { + "voter": "nanzo-scoop", + "rshares": "584279800798" + }, + { + "voter": "kefkius", + "rshares": "9857825141" + }, + { + "voter": "mummyimperfect", + "rshares": "177417522325" + }, + { + "voter": "alenevaa", + "rshares": "2366347863" + }, + { + "voter": "coar", + "rshares": "313697862" + }, + { + "voter": "asch", + "rshares": "106635074770" + }, + { + "voter": "murh", + "rshares": "1061264730" + }, + { + "voter": "cryptofunk", + "rshares": "3187850436" + }, + { + "voter": "kodi", + "rshares": "579494558" + }, + { + "voter": "error", + "rshares": "2003359924" + }, + { + "voter": "andu", + "rshares": "11848125383" + }, + { + "voter": "cyber", + "rshares": "970579316703" + }, + { + "voter": "theshell", + "rshares": "59952188311" + }, + { + "voter": "ak2020", + "rshares": "49580154489" + }, + { + "voter": "satoshifund", + "rshares": "3848697023555" + }, + { + "voter": "applecrisp", + "rshares": "402139444" + }, + { + "voter": "altoz", + "rshares": "35693164103" + }, + { + "voter": "stiletto", + "rshares": "95314034" + }, + { + "voter": "will-zewe", + "rshares": "219283354085" + }, + { + "voter": "lindee-hamner", + "rshares": "12241505540" + }, + { + "voter": "zakharya", + "rshares": "15787522491" + }, + { + "voter": "trogdor", + "rshares": "275008585094" + }, + { + "voter": "tee-em", + "rshares": "5047464747" + }, + { + "voter": "mark-waser", + "rshares": "5821262190" + }, + { + "voter": "geoffrey", + "rshares": "118356217412" + }, + { + "voter": "kimziv", + "rshares": "16027781644" + }, + { + "voter": "honeythief", + "rshares": "45359587433" + }, + { + "voter": "emily-cook", + "rshares": "75333038089" + }, + { + "voter": "superfreek", + "rshares": "2187607792" + }, + { + "voter": "grey580", + "rshares": "17557768630" + }, + { + "voter": "ladyclair", + "rshares": "275327756" + }, + { + "voter": "michaellamden68", + "rshares": "3898829337" + }, + { + "voter": "thebatchman", + "rshares": "19975706505" + }, + { + "voter": "orly", + "rshares": "3350419346" + }, + { + "voter": "riscadox", + "rshares": "5271030976" + }, + { + "voter": "furion", + "rshares": "7380892516" + }, + { + "voter": "cdubendo", + "rshares": "105911917280" + }, + { + "voter": "jacor", + "rshares": "156249887947" + }, + { + "voter": "steem1653", + "rshares": "2632460141" + }, + { + "voter": "cynetyc", + "rshares": "136322030" + }, + { + "voter": "snowden", + "rshares": "80777327" + }, + { + "voter": "thegoodguy", + "rshares": "5250179537" + }, + { + "voter": "aaseb", + "rshares": "14168005907" + }, + { + "voter": "karen13", + "rshares": "4209533734" + }, + { + "voter": "noodhoog", + "rshares": "8751103405" + }, + { + "voter": "hyiparena", + "rshares": "8164924332" + }, + { + "voter": "milestone", + "rshares": "46859060143" + }, + { + "voter": "artific", + "rshares": "21565632626" + }, + { + "voter": "creemej", + "rshares": "33739169732" + }, + { + "voter": "nippel66", + "rshares": "15378221086" + }, + { + "voter": "blueorgy", + "rshares": "163325751551" + }, + { + "voter": "benjiberigan", + "rshares": "13373880577" + }, + { + "voter": "poseidon", + "rshares": "349618451" + }, + { + "voter": "smolalit", + "rshares": "7946812357" + }, + { + "voter": "simon.braki.love", + "rshares": "3365797955" + }, + { + "voter": "sharker", + "rshares": "5609578664" + }, + { + "voter": "jl777", + "rshares": "204618396015" + }, + { + "voter": "oecp85", + "rshares": "1114903893" + }, + { + "voter": "victoria2002", + "rshares": "1218867625" + }, + { + "voter": "positive", + "rshares": "1226120506" + }, + { + "voter": "yarly", + "rshares": "1809205777" + }, + { + "voter": "yarly2", + "rshares": "272641013" + }, + { + "voter": "yarly3", + "rshares": "273048922" + }, + { + "voter": "yarly4", + "rshares": "157733805" + }, + { + "voter": "yarly5", + "rshares": "158624349" + }, + { + "voter": "yarly7", + "rshares": "90416287" + }, + { + "voter": "steemchain", + "rshares": "50626015" + }, + { + "voter": "proto", + "rshares": "17267341753" + }, + { + "voter": "sisterholics", + "rshares": "2708629529" + }, + { + "voter": "yarly10", + "rshares": "437620869" + }, + { + "voter": "yarly11", + "rshares": "234191245" + }, + { + "voter": "royalmacro", + "rshares": "8781903824" + }, + { + "voter": "yarly12", + "rshares": "81879061" + }, + { + "voter": "steemster1", + "rshares": "146224042" + }, + { + "voter": "dmilash", + "rshares": "3022447454" + }, + { + "voter": "glitterpig", + "rshares": "3353991305" + }, + { + "voter": "taker", + "rshares": "8734185109" + }, + { + "voter": "nekromarinist", + "rshares": "7825324952" + }, + { + "voter": "sharon", + "rshares": "57873464" + }, + { + "voter": "lillianjones", + "rshares": "58971492" + }, + { + "voter": "laonie", + "rshares": "95786319596" + }, + { + "voter": "twinner", + "rshares": "153264363976" + }, + { + "voter": "laoyao", + "rshares": "24562882668" + }, + { + "voter": "myfirst", + "rshares": "2664979204" + }, + { + "voter": "somebody", + "rshares": "19443061295" + }, + { + "voter": "flysaga", + "rshares": "726959262" + }, + { + "voter": "asdes", + "rshares": "7707314246" + }, + { + "voter": "gmurph", + "rshares": "2501638608" + }, + { + "voter": "stormblaze", + "rshares": "1693568633" + }, + { + "voter": "denn", + "rshares": "5558177167" + }, + { + "voter": "midnightoil", + "rshares": "4295114546" + }, + { + "voter": "kurtbeil", + "rshares": "3157785139" + }, + { + "voter": "xiaohui", + "rshares": "10742990382" + }, + { + "voter": "zahar", + "rshares": "67965196" + }, + { + "voter": "elfkitchen", + "rshares": "485140088" + }, + { + "voter": "joele", + "rshares": "99935909954" + }, + { + "voter": "oflyhigh", + "rshares": "5855738054" + }, + { + "voter": "randyclemens", + "rshares": "15549176040" + }, + { + "voter": "dims", + "rshares": "79785139" + }, + { + "voter": "xiaokongcom", + "rshares": "335856762" + }, + { + "voter": "future24", + "rshares": "1446509276" + }, + { + "voter": "msjennifer", + "rshares": "60819615" + }, + { + "voter": "ciao", + "rshares": "54654502" + }, + { + "voter": "cristi", + "rshares": "13254585210" + }, + { + "voter": "steemo", + "rshares": "54217761" + }, + { + "voter": "xianjun", + "rshares": "677027684" + }, + { + "voter": "steema", + "rshares": "54077897" + }, + { + "voter": "sijoittaja", + "rshares": "72192938" + }, + { + "voter": "confucius", + "rshares": "69662169" + }, + { + "voter": "miacats", + "rshares": "93807196108" + }, + { + "voter": "jarvis", + "rshares": "54909929" + }, + { + "voter": "razberrijam", + "rshares": "74131936" + }, + { + "voter": "fortuner", + "rshares": "53106127" + }, + { + "voter": "chinadaily", + "rshares": "2022702929" + }, + { + "voter": "pjheinz", + "rshares": "10471074095" + }, + { + "voter": "pompe72", + "rshares": "86712034" + }, + { + "voter": "pollina", + "rshares": "108403024" + }, + { + "voter": "johnbyrd", + "rshares": "51877132" + }, + { + "voter": "thomasaustin", + "rshares": "51860909" + }, + { + "voter": "thermor", + "rshares": "51859074" + }, + { + "voter": "ficholl", + "rshares": "51870077" + }, + { + "voter": "widell", + "rshares": "51852278" + }, + { + "voter": "movievertigo", + "rshares": "3635091595" + }, + { + "voter": "revelbrooks", + "rshares": "51481279" + }, + { + "voter": "netaterra", + "rshares": "2982691190" + }, + { + "voter": "andrewawerdna", + "rshares": "21980957828" + }, + { + "voter": "onetree", + "rshares": "4337454155" + }, + { + "voter": "steemitpatina", + "rshares": "4633082667" + }, + { + "voter": "curpose", + "rshares": "50416427" + }, + { + "voter": "dajohns1420", + "rshares": "989363278" + }, + { + "voter": "runridefly", + "rshares": "2196907450" + }, + { + "voter": "funkywanderer", + "rshares": "1783693666" + }, + { + "voter": "richardcrill", + "rshares": "4747321980" + }, + { + "voter": "jeremyfromwi", + "rshares": "2205784762" + }, + { + "voter": "troich", + "rshares": "50588612" + }, + { + "voter": "nadin3", + "rshares": "4546391288" + }, + { + "voter": "davidjkelley", + "rshares": "1625414479" + }, + { + "voter": "aggroed", + "rshares": "9458733324" + }, + { + "voter": "crion", + "rshares": "50593879" + }, + { + "voter": "greatness", + "rshares": "178419224" + }, + { + "voter": "hitherise", + "rshares": "50271139" + }, + { + "voter": "wiss", + "rshares": "50262756" + }, + { + "voter": "sponge-bob", + "rshares": "53143607139" + }, + { + "voter": "digital-wisdom", + "rshares": "15571125147" + }, + { + "voter": "ethical-ai", + "rshares": "3710973264" + }, + { + "voter": "stroully", + "rshares": "51033798" + }, + { + "voter": "jwaser", + "rshares": "6831389463" + }, + { + "voter": "tatianka", + "rshares": "1064809843" + }, + { + "voter": "thadm", + "rshares": "50712038" + }, + { + "voter": "prof", + "rshares": "50710305" + }, + { + "voter": "smisi", + "rshares": "1655277599" + }, + { + "voter": "yorsens", + "rshares": "50370757" + }, + { + "voter": "bane", + "rshares": "50065875" + }, + { + "voter": "vive", + "rshares": "50059754" + }, + { + "voter": "coad", + "rshares": "50054445" + }, + { + "voter": "bwaser", + "rshares": "2617343597" + }, + { + "voter": "sofa", + "rshares": "50840303" + }, + { + "voter": "panther", + "rshares": "323483227" + }, + { + "voter": "doggnostic", + "rshares": "53871683" + }, + { + "voter": "jenny-talls", + "rshares": "53593366" + }, + { + "voter": "brains", + "rshares": "54239080444" + }, + { + "voter": "waldemar-kuhn", + "rshares": "50450987" + }, + { + "voter": "ailo", + "rshares": "50933404" + }, + { + "voter": "steemafon", + "rshares": "1387263917" + }, + { + "voter": "bitcoinparadise", + "rshares": "1317649856" + }, + { + "voter": "chick1", + "rshares": "5753524189" + }, + { + "voter": "steempowerwhale", + "rshares": "3338622584" + }, + { + "voter": "aoki", + "rshares": "50584036" + }, + { + "voter": "typingagent", + "rshares": "50516543" + }, + { + "voter": "cwb", + "rshares": "50528809" + }, + { + "voter": "freebornangel", + "rshares": "62515317" + }, + { + "voter": "anomaly", + "rshares": "271440423" + }, + { + "voter": "ellepdub", + "rshares": "2401297947" + }, + { + "voter": "rynow", + "rshares": "120649148" + }, + { + "voter": "inarix03", + "rshares": "61292139" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "rayzzz", + "rshares": "50583338" + }, + { + "voter": "herpetologyguy", + "rshares": "12115690216" + }, + { + "voter": "morgan.waser", + "rshares": "4712300251" + }, + { + "voter": "steemq", + "rshares": "51230296" + }, + { + "voter": "motion", + "rshares": "50871059" + }, + { + "voter": "autodesk", + "rshares": "50794039" + }, + { + "voter": "yotoh", + "rshares": "50704078" + }, + { + "voter": "fenix", + "rshares": "50538694" + }, + { + "voter": "bapparabi", + "rshares": "1921231770" + }, + { + "voter": "friends", + "rshares": "50532230" + }, + { + "voter": "albertheijn", + "rshares": "50349676" + }, + { + "voter": "strong-ai", + "rshares": "3609651500" + }, + { + "voter": "grisha-danunaher", + "rshares": "516546553" + }, + { + "voter": "igtes", + "rshares": "71207873" + }, + { + "voter": "buffett", + "rshares": "141679752" + }, + { + "voter": "sjamayee", + "rshares": "213848535" + }, + { + "voter": "witchcraftblog", + "rshares": "453506109" + }, + { + "voter": "zaitsevalesyaa", + "rshares": "3265972001" + }, + { + "voter": "acute", + "rshares": "161205518" + }, + { + "voter": "bethesda", + "rshares": "161179339" + }, + { + "voter": "realtime", + "rshares": "160957729" + }, + { + "voter": "dresden", + "rshares": "7187212765" + }, + { + "voter": "mgibson", + "rshares": "212371776" + }, + { + "voter": "capcom", + "rshares": "156837244" + }, + { + "voter": "greenpeace", + "rshares": "159506164" + }, + { + "voter": "panic", + "rshares": "159352476" + }, + { + "voter": "fallout", + "rshares": "156054487" + }, + { + "voter": "xtreme", + "rshares": "159025535" + }, + { + "voter": "modernbukowski", + "rshares": "1473342460" + }, + { + "voter": "citigroup", + "rshares": "158541985" + }, + { + "voter": "goldmatters", + "rshares": "30995434343" + }, + { + "voter": "dealzgal", + "rshares": "71727340" + }, + { + "voter": "storage", + "rshares": "64921864" + }, + { + "voter": "risabold", + "rshares": "298391608" + }, + { + "voter": "blackmarket", + "rshares": "55383257" + }, + { + "voter": "gifts", + "rshares": "58454327" + }, + { + "voter": "expat", + "rshares": "93882016" + }, + { + "voter": "toddemaher1", + "rshares": "126595034" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 247, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/herpetology/@gavvet/why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", + "blacklists": [] + }, + { + "post_id": 960430, + "author": "juanmiguelsalas", + "permlink": "how-the-number-pi-sounds-on-a-piano", + "category": "music", + "title": "How The Number Pi Sounds On A Piano?", + "body": "### Have you ever wondered how the number Pi sounds in a piano? \nBecause the musician David Macdonald recorded it with an accuracy of 122 digits after the decimal point. Sounds pretty cool.\n\n
https://youtu.be/wM-x3pUcdeo \n\n
", + "json_metadata": { + "tags": [ + "music", + "popularscience", + "science", + "art", + "math" + ], + "image": [ + "https://img.youtube.com/vi/wM-x3pUcdeo/0.jpg" + ], + "links": [ + "https://youtu.be/wM-x3pUcdeo" + ] + }, + "created": "2016-09-15T18:40:30", + "updated": "2016-09-15T18:40:30", + "depth": 0, + "children": 0, + "net_rshares": 43578994795442, + "is_paidout": false, + "payout_at": "2016-09-16T19:25:21", + "payout": 114.187, + "pending_payout_value": "114.187 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231813287435" + }, + { + "voter": "blocktrades", + "rshares": "39227911522287" + }, + { + "voter": "riverhead", + "rshares": "3981536804873" + }, + { + "voter": "richman", + "rshares": "7803257741" + }, + { + "voter": "juanmiguelsalas", + "rshares": "55577392625" + }, + { + "voter": "skapaneas", + "rshares": "20193334739" + }, + { + "voter": "fabio", + "rshares": "53411211689" + }, + { + "voter": "hobgoblin", + "rshares": "131247634" + }, + { + "voter": "pompe72", + "rshares": "90251300" + }, + { + "voter": "uri-bruck", + "rshares": "62828027" + }, + { + "voter": "roadhog", + "rshares": "55070425" + }, + { + "voter": "doggnostic", + "rshares": "52794249" + }, + { + "voter": "jenny-talls", + "rshares": "52521499" + }, + { + "voter": "post-successful", + "rshares": "54483699" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "creativecasualty", + "rshares": "150210020" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 16, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/music/@juanmiguelsalas/how-the-number-pi-sounds-on-a-piano", + "blacklists": [] + }, + { + "post_id": 960450, + "author": "jackgallenhall", + "permlink": "how-to-make-paper-flowers", + "category": "paper", + "title": "How to make Paper Flowers", + "body": "\n

Watching this video and Enjoy.....

\n

https://youtu.be/tP1qbGrMDt8

\n", + "json_metadata": { + "tags": [ + "paper", + "flowers" + ], + "image": [ + "https://img.youtube.com/vi/tP1qbGrMDt8/0.jpg" + ], + "links": [ + "https://youtu.be/tP1qbGrMDt8" + ] + }, + "created": "2016-09-15T18:42:18", + "updated": "2016-09-15T18:42:18", + "depth": 0, + "children": 0, + "net_rshares": 39465229203961, + "is_paidout": false, + "payout_at": "2016-09-16T19:32:11", + "payout": 94.467, + "pending_payout_value": "94.467 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231815339768" + }, + { + "voter": "blocktrades", + "rshares": "39228026877320" + }, + { + "voter": "jackgallenhall", + "rshares": "1937028254" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "zaitsevalesyaa", + "rshares": "3200652561" + }, + { + "voter": "alexandrapop", + "rshares": "150728858" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 6, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/paper/@jackgallenhall/how-to-make-paper-flowers", + "blacklists": [] + }, + { + "post_id": 960970, + "author": "charlieshrem", + "permlink": "mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem", + "category": "story", + "title": "MackerelCoin & My Socioeconomic Observations from Prison (Part 1 by Charlie Shrem)", + "body": "[![1427721443457173 (1).jpg](https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg)](https://postimg.org/image/5bg38xjjr/)\n\nThe day I went to prison I published an article Bitcoin for Prison. While I didn't get to read or see the article until someone mailed me a physical copy, I found out that my article had started a number of discussions and follow-on commentary.\n\nDuring my stay at Lewisburg Federal Prison Camp I observed many economic theories put into effect by inmates and the prison administration, including Gresham's law, hyperinflation, currency exchange, and others.\n\nThere are two markets in prison, the \"Administration Run Market\" (ARM) and the \"Inmate Run Market\" (IRM). \n\nFor the ARM, family and friends can add money to your account through Western Union, MoneyGram, or mailing a check. These funds get added to your account fairly quickly and can be used almost immediately, however with a strict spending limit. You get 300 minutes of phone use per month for about $70, and email costs about $0.05 a minute and is only available at specific times to specific people. Once a week you can shop in the commissary with a $360 a month spending limit. Further, certain products have limits of how much you can buy, for example the Mackerel (described below). Alternatively, the IRM is where you can buy sandwiches, wraps, pizzas, Italian ices, hire a personal trainer, get a haircut, pay someone to clean your cube, repair a watch, even inmate run caterers for your birthday or going home party. Additionally there were inmate run 'stores' which sold commissary items at a markup since you could only commissary shop once a week.\n\n[![mackerel-203x300.png](https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png)](https://postimg.org/image/iu6qq6eb9/)\n\nThe Mackerel (meaning literal packets of fish) is one of the competing currencies in the IRM. It has utility by being one of the best sources of protein on the compound. You can save it for a long time, the shelf life is a few years. The price is relatively the same across all prisons in the country, so even if you transfer prisons your property comes with you, including your Mackerel which is worth the same somewhere else. Unlike tunafish, chicken packets and protein bars, more people eat Mackerel. Those other food items can be used as currency as well, for example the guy who fixes your watch may only accept protein bars because he hates fish. There was even a form of digital currency being used, which I will discuss in another post.\n\n[![pzyQaHU.png](https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png)](https://postimg.org/image/nfj3tkh87/)\n\nUtility and medium of exchange give it some value but what about scarcity ? If there is a virtually unlimited amount of Mackerel in the IRM, just like the Federal Reserve printing money, there is no scarcity and hyperinflation can occure if it is debased. \n\nUsing a simple equation, 467 (Number of Inmates) * 14 (Maximum Quantity Allowed to Purchase Per Inmate) * 52 (weeks, assuming every inmate buys the maximum mount of Mackerel every week)\n\nSo if in 2015 we assume that the Supply and Velocity grows at the exact same rate with the Price Level and Transactions unchanging, the amount of Mackerel would essentially double on an even inflation rate. This does not factor in the 3 year shelf life, where expired Mackerel becomes a secondary currency. I will discuss in my next post. \n\nI like to believe that the value of money is determined also psychological factors, like a commodity and not only by mechanical or mathematical factors. In prison many of these psychological factors come into play.\n\n[![1867-1967-Ten-10¢-Cents-Commemorative-Centennial.jpg](https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg)](https://postimg.org/image/ceiwrfinr/)\n\nMost people use Mackerel as a day-to-day currency for normal transactions, but for reasons I will explain in my next post, they are not the best long term store of value which is important for a currency. For longer term store of value, many inmates use stamps. Stamps have a set rate by the United States Postal Service and have similar characteristics as Mackerel aside for being edible. However, with the introduction of email on the compound many people stopped writing letters as email is cheaper and faster therefore reducing stamps ability to be a transactional currency as a majority of the inmates have no use for them. As a store of value they still hold weight because they are small and easy to store large amounts, while Mackerel is not.\n\nThe biggest value stamps have is that they can be mailed home and your family can redeem them for dollars as the local post office, but that feature can be stopped by better mail screening and overnight the stamp could lose its store of value utility. \n\nIn my next post I will discuss how currency exchangers work, what happens when the prison administration purposely floods the market, and how a secondary currency was created out of expired Mackerel called “Money Maks”", + "json_metadata": { + "tags": [ + "story", + "life", + "bitcoin" + ], + "image": [ + "https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg", + "https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png", + "https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png", + "https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg" + ], + "links": [ + "https://postimg.org/image/5bg38xjjr/", + "https://postimg.org/image/iu6qq6eb9/", + "https://postimg.org/image/nfj3tkh87/", + "https://postimg.org/image/ceiwrfinr/" + ] + }, + "created": "2016-09-15T19:39:15", + "updated": "2016-09-15T19:39:15", + "depth": 0, + "children": 2, + "net_rshares": 16647533396431, + "is_paidout": false, + "payout_at": "2016-09-16T19:42:59", + "payout": 18.929, + "pending_payout_value": "18.929 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231815399848" + }, + { + "voter": "badassmother", + "rshares": "1856124515188" + }, + { + "voter": "xeroc", + "rshares": "1950776472028" + }, + { + "voter": "recursive2", + "rshares": "466189427281" + }, + { + "voter": "lee2", + "rshares": "440845842" + }, + { + "voter": "lee3", + "rshares": "26932369613" + }, + { + "voter": "lee4", + "rshares": "8677356665" + }, + { + "voter": "lee5", + "rshares": "22149156424" + }, + { + "voter": "fkn", + "rshares": "24694558802" + }, + { + "voter": "paco-steem", + "rshares": "468295495" + }, + { + "voter": "spaninv", + "rshares": "5641891453" + }, + { + "voter": "instructor2121", + "rshares": "31733693573" + }, + { + "voter": "teamsteem", + "rshares": "319978787382" + }, + { + "voter": "elishagh1", + "rshares": "32459455171" + }, + { + "voter": "nanzo-scoop", + "rshares": "584301957019" + }, + { + "voter": "steve-walschot", + "rshares": "183455862202" + }, + { + "voter": "mummyimperfect", + "rshares": "177422979921" + }, + { + "voter": "murh", + "rshares": "1061309796" + }, + { + "voter": "ranko-k", + "rshares": "40553528416" + }, + { + "voter": "cyber", + "rshares": "970610699889" + }, + { + "voter": "ak2020", + "rshares": "49581638772" + }, + { + "voter": "justtryme90", + "rshares": "61303208719" + }, + { + "voter": "drinkzya", + "rshares": "35244223389" + }, + { + "voter": "satoshifund", + "rshares": "3848697023555" + }, + { + "voter": "stiletto", + "rshares": "365370465" + }, + { + "voter": "thecryptodrive", + "rshares": "55960464168" + }, + { + "voter": "trogdor", + "rshares": "275083790158" + }, + { + "voter": "tee-em", + "rshares": "5047565689" + }, + { + "voter": "michaelx", + "rshares": "31346657524" + }, + { + "voter": "kimziv", + "rshares": "203028922423" + }, + { + "voter": "honeythief", + "rshares": "45359587433" + }, + { + "voter": "emily-cook", + "rshares": "75335893384" + }, + { + "voter": "cryptoiskey", + "rshares": "34073741916" + }, + { + "voter": "mrhankeh", + "rshares": "484636799" + }, + { + "voter": "clement", + "rshares": "36267999733" + }, + { + "voter": "isteemit", + "rshares": "49807514764" + }, + { + "voter": "bacchist", + "rshares": "68450624110" + }, + { + "voter": "venuspcs", + "rshares": "52094130602" + }, + { + "voter": "roelandp", + "rshares": "462747522217" + }, + { + "voter": "riscadox", + "rshares": "5271256317" + }, + { + "voter": "furion", + "rshares": "118094280271" + }, + { + "voter": "barbara2", + "rshares": "578386960" + }, + { + "voter": "ch0c0latechip", + "rshares": "642869652" + }, + { + "voter": "doge4lyf", + "rshares": "594982040" + }, + { + "voter": "ausbitbank", + "rshares": "14886225123" + }, + { + "voter": "steem1653", + "rshares": "2531219186" + }, + { + "voter": "anyx", + "rshares": "185306737687" + }, + { + "voter": "snowden", + "rshares": "80777327" + }, + { + "voter": "thegoodguy", + "rshares": "5250267854" + }, + { + "voter": "aaseb", + "rshares": "13847065167" + }, + { + "voter": "karen13", + "rshares": "4209550858" + }, + { + "voter": "wildchild", + "rshares": "89580632" + }, + { + "voter": "nippel66", + "rshares": "14455781997" + }, + { + "voter": "poseidon", + "rshares": "4428694472" + }, + { + "voter": "bitcoiner", + "rshares": "3709674578" + }, + { + "voter": "zaebars", + "rshares": "30989849211" + }, + { + "voter": "positive", + "rshares": "20026634941" + }, + { + "voter": "raymonjohnstone", + "rshares": "799615699" + }, + { + "voter": "steemchain", + "rshares": "50626015" + }, + { + "voter": "sisterholics", + "rshares": "34310997040" + }, + { + "voter": "tygergamer", + "rshares": "4150694741" + }, + { + "voter": "fnait", + "rshares": "674282213" + }, + { + "voter": "keepcalmand", + "rshares": "599033376" + }, + { + "voter": "sisters", + "rshares": "21249911268" + }, + { + "voter": "steemdrive", + "rshares": "135241026997" + }, + { + "voter": "gomeravibz", + "rshares": "50580942653" + }, + { + "voter": "merej99", + "rshares": "2157263872" + }, + { + "voter": "laonie", + "rshares": "1181429894047" + }, + { + "voter": "laonie1", + "rshares": "22969530313" + }, + { + "voter": "laonie2", + "rshares": "23486336661" + }, + { + "voter": "laonie3", + "rshares": "23494631758" + }, + { + "voter": "myfirst", + "rshares": "41308723727" + }, + { + "voter": "somebody", + "rshares": "246291037911" + }, + { + "voter": "flysaga", + "rshares": "9208584487" + }, + { + "voter": "brendio", + "rshares": "5831884826" + }, + { + "voter": "midnightoil", + "rshares": "54407421509" + }, + { + "voter": "ullikume", + "rshares": "4190432650" + }, + { + "voter": "marinaz", + "rshares": "538023492" + }, + { + "voter": "michellek", + "rshares": "50577648" + }, + { + "voter": "laonie4", + "rshares": "23490308796" + }, + { + "voter": "laonie5", + "rshares": "23488038283" + }, + { + "voter": "laonie6", + "rshares": "23485060556" + }, + { + "voter": "laonie7", + "rshares": "23480907119" + }, + { + "voter": "kurtbeil", + "rshares": "3157899297" + }, + { + "voter": "laonie8", + "rshares": "23477459041" + }, + { + "voter": "laonie9", + "rshares": "23474757706" + }, + { + "voter": "steemleak", + "rshares": "2370331931" + }, + { + "voter": "xiaohui", + "rshares": "136086029693" + }, + { + "voter": "bigsambucca", + "rshares": "88206053" + }, + { + "voter": "elfkitchen", + "rshares": "6630568148" + }, + { + "voter": "joele", + "rshares": "99940391922" + }, + { + "voter": "paynode", + "rshares": "2354334523" + }, + { + "voter": "xiaokongcom", + "rshares": "4254379739" + }, + { + "voter": "xianjun", + "rshares": "8576106418" + }, + { + "voter": "stevescriber", + "rshares": "72135954" + }, + { + "voter": "loli", + "rshares": "51247757" + }, + { + "voter": "nano2nd", + "rshares": "52419023" + }, + { + "voter": "microluck", + "rshares": "576343622" + }, + { + "voter": "cryptoblu", + "rshares": "60225791" + }, + { + "voter": "instructor", + "rshares": "60219243" + }, + { + "voter": "dollarvigilante", + "rshares": "802020725261" + }, + { + "voter": "lamech-m", + "rshares": "3977281078" + }, + { + "voter": "laonie10", + "rshares": "23468551300" + }, + { + "voter": "garywilson", + "rshares": "8536250240" + }, + { + "voter": "bitchplease", + "rshares": "50829277" + }, + { + "voter": "barrycooper", + "rshares": "99130059443" + }, + { + "voter": "hilarski", + "rshares": "31611733517" + }, + { + "voter": "shadowspub", + "rshares": "2029369552" + }, + { + "voter": "rimann", + "rshares": "8390958262" + }, + { + "voter": "rickmiller", + "rshares": "56999917" + }, + { + "voter": "nulliusinverba", + "rshares": "5401518277" + }, + { + "voter": "mikehere", + "rshares": "22792452702" + }, + { + "voter": "laonie11", + "rshares": "22621847215" + }, + { + "voter": "xanoxt", + "rshares": "3411072843" + }, + { + "voter": "greatness", + "rshares": "174778016" + }, + { + "voter": "sponge-bob", + "rshares": "26574132419" + }, + { + "voter": "l0k1", + "rshares": "4044803243" + }, + { + "voter": "freesteem", + "rshares": "50798127" + }, + { + "voter": "zettar", + "rshares": "2353724275" + }, + { + "voter": "smisi", + "rshares": "1655277599" + }, + { + "voter": "lighter", + "rshares": "53413720" + }, + { + "voter": "maarnio", + "rshares": "258239323" + }, + { + "voter": "analyzethis", + "rshares": "50931848" + }, + { + "voter": "dexter-k", + "rshares": "5934390558" + }, + { + "voter": "doggnostic", + "rshares": "51716816" + }, + { + "voter": "ct-gurus", + "rshares": "659649765" + }, + { + "voter": "jenny-talls", + "rshares": "51449632" + }, + { + "voter": "charlieshrem", + "rshares": "415654681468" + }, + { + "voter": "tracemayer", + "rshares": "63546443837" + }, + { + "voter": "brains", + "rshares": "26568286493" + }, + { + "voter": "alwayzgame", + "rshares": "1702730509" + }, + { + "voter": "bitcoinparadise", + "rshares": "1282974860" + }, + { + "voter": "cwb", + "rshares": "50528809" + }, + { + "voter": "steemsquad", + "rshares": "2127783725" + }, + { + "voter": "inarix03", + "rshares": "61292139" + }, + { + "voter": "littlemorelove", + "rshares": "431087473" + }, + { + "voter": "mbizryu0", + "rshares": "51636819" + }, + { + "voter": "archij", + "rshares": "51631638" + }, + { + "voter": "movie7283", + "rshares": "51530815" + }, + { + "voter": "ppcompp2", + "rshares": "51527606" + }, + { + "voter": "jj1968", + "rshares": "51520427" + }, + { + "voter": "cineger", + "rshares": "51516489" + }, + { + "voter": "sksduddk", + "rshares": "51497383" + }, + { + "voter": "jjc0719", + "rshares": "51490214" + }, + { + "voter": "teemsteem", + "rshares": "50233449" + }, + { + "voter": "sjytoy", + "rshares": "50677982" + }, + { + "voter": "shy2675", + "rshares": "50676799" + }, + { + "voter": "suance1009", + "rshares": "50675747" + }, + { + "voter": "hasqmd", + "rshares": "50674176" + }, + { + "voter": "fischer67", + "rshares": "50673722" + }, + { + "voter": "elya1", + "rshares": "50672116" + }, + { + "voter": "xclamp45", + "rshares": "50632828" + }, + { + "voter": "likeagame1", + "rshares": "50618471" + }, + { + "voter": "apple4006", + "rshares": "50616898" + }, + { + "voter": "bigbell61", + "rshares": "50615195" + }, + { + "voter": "dolpo777", + "rshares": "50612850" + }, + { + "voter": "dongperi", + "rshares": "50611931" + }, + { + "voter": "lion2byung", + "rshares": "50610620" + }, + { + "voter": "cwj1973", + "rshares": "50610002" + }, + { + "voter": "psj212", + "rshares": "50609329" + }, + { + "voter": "owithed2", + "rshares": "50608661" + }, + { + "voter": "fiself2", + "rshares": "50606929" + }, + { + "voter": "trablinever1", + "rshares": "50605131" + }, + { + "voter": "nuals1940", + "rshares": "50603861" + }, + { + "voter": "fanceth2", + "rshares": "50602310" + }, + { + "voter": "forea1995", + "rshares": "50355943" + }, + { + "voter": "holow1968", + "rshares": "50354561" + }, + { + "voter": "peaces1952", + "rshares": "50353969" + }, + { + "voter": "himighar2", + "rshares": "50346496" + }, + { + "voter": "aromese1974", + "rshares": "50345607" + }, + { + "voter": "runis1943", + "rshares": "50344921" + }, + { + "voter": "tong1962", + "rshares": "50344067" + }, + { + "voter": "hishe1997", + "rshares": "50340744" + }, + { + "voter": "cwbrooch", + "rshares": "1979857275" + }, + { + "voter": "ninjapainter", + "rshares": "52329350" + }, + { + "voter": "buit1989", + "rshares": "51393104" + }, + { + "voter": "imadecoult1", + "rshares": "51389981" + }, + { + "voter": "infees2", + "rshares": "51387526" + }, + { + "voter": "suar1997", + "rshares": "51384095" + }, + { + "voter": "sobsell93", + "rshares": "51382067" + }, + { + "voter": "stroned96", + "rshares": "51380710" + }, + { + "voter": "drethe", + "rshares": "51378107" + }, + { + "voter": "qualwas", + "rshares": "51377505" + }, + { + "voter": "phent1994", + "rshares": "51376367" + }, + { + "voter": "baboyes", + "rshares": "51375075" + }, + { + "voter": "whor1973", + "rshares": "51373532" + }, + { + "voter": "youreforn", + "rshares": "51372739" + }, + { + "voter": "voll1981", + "rshares": "51371902" + }, + { + "voter": "copenty2", + "rshares": "51370717" + }, + { + "voter": "maject2", + "rshares": "51369717" + }, + { + "voter": "coust1997", + "rshares": "51367233" + }, + { + "voter": "busionea84", + "rshares": "51366398" + }, + { + "voter": "therver1", + "rshares": "51365174" + }, + { + "voter": "appirdsmanne1990", + "rshares": "51364022" + }, + { + "voter": "alienighted87", + "rshares": "51362967" + }, + { + "voter": "anity1994", + "rshares": "51359746" + }, + { + "voter": "themphe1", + "rshares": "59959066" + }, + { + "voter": "abild1988", + "rshares": "51355864" + }, + { + "voter": "spoll1973", + "rshares": "51353540" + }, + { + "voter": "afteld1", + "rshares": "66162576" + }, + { + "voter": "rusteemitblog", + "rshares": "1630374239" + }, + { + "voter": "goldmatters", + "rshares": "31008332335" + }, + { + "voter": "dealzgal", + "rshares": "68608760" + }, + { + "voter": "storage", + "rshares": "64921864" + }, + { + "voter": "blackmarket", + "rshares": "55388665" + }, + { + "voter": "gifts", + "rshares": "58454327" + }, + { + "voter": "expat", + "rshares": "93882016" + }, + { + "voter": "techslut", + "rshares": "188217107" + }, + { + "voter": "steemtrail", + "rshares": "137659447" + }, + { + "voter": "steemlift", + "rshares": "3035584586" + }, + { + "voter": "toddemaher1", + "rshares": "123580867" + } + ], + "author_reputation": 67.32, + "stats": { + "hide": false, + "gray": false, + "total_votes": 211, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/story/@charlieshrem/mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem", + "blacklists": [] + }, + { + "post_id": 960622, + "author": "healthyrecipes", + "permlink": "spaghetti-squash-burrito-bowl", + "category": "healthyliving", + "title": "Spaghetti Squash 'Burrito' Bowl", + "body": "\n

  Good afternoon Steemit, I am officially done breast feeding and am ready to get rid of the last few pounds that are still hanging on from my pregnancy so I have been trying out different ways to cut calories from my diet without loosing flavor. Spaghetti squash is a great substitute for pasta or in this case rice. Spaghetti squash has about 40 calories per cup while rice has upwards of 200. It also has fiber, potassium and vitamins A and C.  

\n

For chicken:

\n
    \n
  • 1lb chicken breast
  • \n
  • 1 tsp ancho chili
  • \n
  • 1 tbs olive oil
  • \n
  • 1 lime (juice and zest)
  • \n
  • 1 tsp minced garlic
  • \n
\n

For squash:

\n
    \n
  • 1 spaghetti squash (cut in half length wise and seeds removed)
  • \n
  • 1 tsp olive oil
  • \n
  • salt and pepper to taste
  • \n
\n

Preheat oven to 425F.  In a baking dish, sprinkle chicken with ancho chili.  Mix together oil, lime zest and juice and garlic.  Pour mixture over chicken.  Drizzle olive oil over squash and season with salt and pepper.  Place cut side down on baking sheet.  Bake a together for 30 min.  Shred squash with a fork and put in the bottom of bowls.  Shred chicken with forks and put on top of squash.  I added cheese, salsa and guacamole to ours but you can top with anything you like.  Enjoy!

\n

https://puu.sh/rcmnK/c059def2e0.png

\n", + "json_metadata": { + "tags": [ + "healthyliving", + "dinner", + "squash", + "recipes" + ], + "image": [ + "https://puu.sh/rcmnK/c059def2e0.png" + ] + }, + "created": "2016-09-15T19:01:15", + "updated": "2016-09-15T19:01:15", + "depth": 0, + "children": 3, + "net_rshares": 24948140852996, + "is_paidout": false, + "payout_at": "2016-09-16T19:16:19", + "payout": 39.772, + "pending_payout_value": "39.772 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231813191302" + }, + { + "voter": "riverhead", + "rshares": "4287714457313" + }, + { + "voter": "badassmother", + "rshares": "1856068812916" + }, + { + "voter": "hr1", + "rshares": "2006601418874" + }, + { + "voter": "rossco99", + "rshares": "1239194317889" + }, + { + "voter": "wang", + "rshares": "2059078537865" + }, + { + "voter": "jaewoocho", + "rshares": "22391933607" + }, + { + "voter": "joseph", + "rshares": "1491294220946" + }, + { + "voter": "recursive3", + "rshares": "452882692801" + }, + { + "voter": "masteryoda", + "rshares": "621040278295" + }, + { + "voter": "recursive", + "rshares": "3120621212590" + }, + { + "voter": "boatymcboatface", + "rshares": "448236514656" + }, + { + "voter": "idol", + "rshares": "8927535677" + }, + { + "voter": "sakr", + "rshares": "4839155280" + }, + { + "voter": "yefet", + "rshares": "10884745702" + }, + { + "voter": "noaommerrr", + "rshares": "481790356914" + }, + { + "voter": "jocelyn", + "rshares": "1536625837" + }, + { + "voter": "gregory-f", + "rshares": "14818418390" + }, + { + "voter": "eeks", + "rshares": "59932650184" + }, + { + "voter": "fkn", + "rshares": "17134999985" + }, + { + "voter": "elishagh1", + "rshares": "22522887261" + }, + { + "voter": "richman", + "rshares": "7803257741" + }, + { + "voter": "coar", + "rshares": "313710480" + }, + { + "voter": "asch", + "rshares": "106636079470" + }, + { + "voter": "murh", + "rshares": "1061302586" + }, + { + "voter": "cryptofunk", + "rshares": "6086022456" + }, + { + "voter": "error", + "rshares": "2003404389" + }, + { + "voter": "theshell", + "rshares": "58190613755" + }, + { + "voter": "satoshifund", + "rshares": "3848697023555" + }, + { + "voter": "herzmeister", + "rshares": "87300558689" + }, + { + "voter": "ziv", + "rshares": "19598687179" + }, + { + "voter": "zakharya", + "rshares": "15787747831" + }, + { + "voter": "tee-em", + "rshares": "5047527838" + }, + { + "voter": "geoffrey", + "rshares": "118358806572" + }, + { + "voter": "kimziv", + "rshares": "144257392248" + }, + { + "voter": "honeythief", + "rshares": "45359587433" + }, + { + "voter": "superfreek", + "rshares": "2187607792" + }, + { + "voter": "furion", + "rshares": "81189817686" + }, + { + "voter": "barbara2", + "rshares": "401329727" + }, + { + "voter": "ch0c0latechip", + "rshares": "446072819" + }, + { + "voter": "doge4lyf", + "rshares": "412844681" + }, + { + "voter": "tasman", + "rshares": "245479785" + }, + { + "voter": "steem1653", + "rshares": "2632467953" + }, + { + "voter": "snowden", + "rshares": "80777327" + }, + { + "voter": "aaseb", + "rshares": "13847065167" + }, + { + "voter": "karen13", + "rshares": "4209545151" + }, + { + "voter": "milestone", + "rshares": "46859749971" + }, + { + "voter": "poseidon", + "rshares": "3146703967" + }, + { + "voter": "jl777", + "rshares": "204618886920" + }, + { + "voter": "positive", + "rshares": "13896032408" + }, + { + "voter": "proto", + "rshares": "17267376002" + }, + { + "voter": "sisterholics", + "rshares": "23475945343" + }, + { + "voter": "fnait", + "rshares": "467869290" + }, + { + "voter": "keepcalmand", + "rshares": "415655812" + }, + { + "voter": "healthyrecipes", + "rshares": "69137816305" + }, + { + "voter": "glitterpig", + "rshares": "3354060704" + }, + { + "voter": "taker", + "rshares": "8734213651" + }, + { + "voter": "laonie", + "rshares": "830193979600" + }, + { + "voter": "myfirst", + "rshares": "29315868452" + }, + { + "voter": "somebody", + "rshares": "168514920676" + }, + { + "voter": "flysaga", + "rshares": "6542941609" + }, + { + "voter": "gmurph", + "rshares": "1667777098" + }, + { + "voter": "midnightoil", + "rshares": "37226130506" + }, + { + "voter": "kurtbeil", + "rshares": "3157847929" + }, + { + "voter": "xiaohui", + "rshares": "93111494000" + }, + { + "voter": "jphamer1", + "rshares": "20690393698" + }, + { + "voter": "elfkitchen", + "rshares": "4689914056" + }, + { + "voter": "joele", + "rshares": "99935909954" + }, + { + "voter": "xiaokongcom", + "rshares": "3022848762" + }, + { + "voter": "natalymaty", + "rshares": "2076619689" + }, + { + "voter": "xianjun", + "rshares": "6093549297" + }, + { + "voter": "miacats", + "rshares": "91520297334" + }, + { + "voter": "microluck", + "rshares": "399007122" + }, + { + "voter": "netaterra", + "rshares": "2923096249" + }, + { + "voter": "richardcrill", + "rshares": "4441060568" + }, + { + "voter": "rusla", + "rshares": "100126866" + }, + { + "voter": "sponge-bob", + "rshares": "53146015442" + }, + { + "voter": "doggnostic", + "rshares": "52794249" + }, + { + "voter": "jenny-talls", + "rshares": "52521499" + }, + { + "voter": "brains", + "rshares": "53134467783" + }, + { + "voter": "bitcoinparadise", + "rshares": "1317649856" + }, + { + "voter": "chick1", + "rshares": "5753585781" + }, + { + "voter": "aoki", + "rshares": "50584036" + }, + { + "voter": "typingagent", + "rshares": "50516543" + }, + { + "voter": "cwb", + "rshares": "50528809" + }, + { + "voter": "ola1", + "rshares": "73937406" + }, + { + "voter": "billkappa442", + "rshares": "51240567" + }, + { + "voter": "glassheart", + "rshares": "51235131" + }, + { + "voter": "anns", + "rshares": "1233715718" + }, + { + "voter": "motion", + "rshares": "50871059" + }, + { + "voter": "ziggo", + "rshares": "50570250" + }, + { + "voter": "penthouse", + "rshares": "50565798" + }, + { + "voter": "albertheijn", + "rshares": "50349676" + }, + { + "voter": "ayim", + "rshares": "2291193388" + }, + { + "voter": "gravity", + "rshares": "160973134" + }, + { + "voter": "digitalillusions", + "rshares": "160900665" + }, + { + "voter": "capcom", + "rshares": "156837244" + }, + { + "voter": "haribo", + "rshares": "156814579" + }, + { + "voter": "benetton", + "rshares": "159531007" + }, + { + "voter": "greenpeace", + "rshares": "159506164" + }, + { + "voter": "tipsandtricks", + "rshares": "159425365" + }, + { + "voter": "panic", + "rshares": "159352476" + }, + { + "voter": "disneypixar", + "rshares": "159164412" + }, + { + "voter": "citigroup", + "rshares": "155433319" + }, + { + "voter": "zendesk", + "rshares": "158486055" + }, + { + "voter": "dealzgal", + "rshares": "71727340" + }, + { + "voter": "storage", + "rshares": "64921864" + }, + { + "voter": "blackmarket", + "rshares": "55388665" + }, + { + "voter": "gifts", + "rshares": "58454327" + }, + { + "voter": "alexandrapop", + "rshares": "153804957" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 110, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/healthyliving/@healthyrecipes/spaghetti-squash-burrito-bowl", + "blacklists": [] + }, + { + "post_id": 960067, + "author": "curie", + "permlink": "the-daily-curie-14th-sept-15th-sept-2016", + "category": "curie", + "title": "The Daily Curie (14th Sept - 15th Sept 2016)", + "body": "
https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg
\n\n## Introduction\n[Project Curie](https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors) is a community project run by several Steemit authors. Its mission is to help reward content creators who are posting great original content, yet who have not yet become established. In the short time since Curie began, our writers group has partnered with @nextgencrypto and other whale accounts to bring rewards to these deserving authors. *Writers, artists, chefs, photographers, videographers, and many others have been recognized by these rewards.*\n\nEach day, the members of our Project will publish this list of the posts that Project Curie has chosen to reward recently. We hope that this list will provide more positive exposure to the authors we have selected. Also, it is an effort for us to be more transparent about which posts are being rewarded. We hope that you will consider following not only this @curie account, but also many of the authors whose work is featured here each day. **Please consider adding your comments on these posts also!**\n\nProject Curie's daily curation lists will now be called \"The Daily Curie\". We hope you like the name! Future editions of The Daily Curie will [feature our new logo](https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement). For the latest on Project Curie, do check out our [Month #1 update](https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016). \n\n----------------------\n\n## Today's Brief Analysis\n\nToday's list polls all posts curated between 17:00 14/09 UTC and 17:00 15/09 UTC. Project Curie voted on a total of **103 posts** by 99 unique authors. **SBD 3,832** has been generated for authors thus far, at an average of SBD 37 per post. \n\n----------------------\n| Author | Post | Payout |\n| --------- | ---------- | --------- |\n| [@faddat](https://steemit.com/@faddat) | [[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!](https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed) | 616.681 SBD |\n| [@rampant](https://steemit.com/@rampant) | [Steemit Daily Drawing Tutorial - Gesture drawings (plus tool)](https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool) | 215.310 SBD |\n| [@shenanigator](https://steemit.com/@shenanigator) | [Doing the Right Thing Will Get You Fired. What Do You Do?](https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do) | 205.664 SBD |\n| [@penguinpablo](https://steemit.com/@penguinpablo) | [How to Carve an Apple Leaf](https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf) | 196.419 SBD |\n| [@nathanjtaylor](https://steemit.com/@nathanjtaylor) | [Fire And Grace Art Painting And Poetry](https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry) | 189.043 SBD |\n| [@lily-da-vine](https://steemit.com/@lily-da-vine) | [Going Bananas in Acapulco](https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco) | 158.416 SBD |\n| [@budgetbucketlist](https://steemit.com/@budgetbucketlist) | [A 1-week plunge into Mexico City's madness! Art adventures, Frida-seeking and unfiltered exhaust fumes...](https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes) | 151.033 SBD |\n| [@benjiberigan](https://steemit.com/@benjiberigan) | [Anarchist Architecture, part 5: The cruelty of architectural codes and regulations.](https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations) | 132.427 SBD |\n| [@ausbitbank](https://steemit.com/@ausbitbank) | [The time my town flooded, the fragility of the food supply and lessons learned (Original photos)](https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos) | 125.877 SBD |\n| [@emily-cook](https://steemit.com/@emily-cook) | [THE ISLE OF MAN FILM FESTIVAL 2016 -A week of parties, red carpets and a lot of hard work!](https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work) | 121.336 SBD |\n| [@team-leibniz](https://steemit.com/@team-leibniz) | [Week 1 NFL Daily Fantasy Football Results - How my Bayesian Inspired Lineups Fared (+$84.00)](https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00) | 119.473 SBD |\n| [@ionescur](https://steemit.com/@ionescur) | [Urban dreams of freedom: back to the countryside, back to the land](https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land) | 110.564 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [New traditionl painting - \"The Battle\" - Steps of work](https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work) | 105.622 SBD |\n| [@juliac](https://steemit.com/@juliac) | [One of The Best Portraits That I've Ever Created: Einstein. What Do You Think?](https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think) | 103.781 SBD |\n| [@luzcypher](https://steemit.com/@luzcypher) | [Cover Crops Can Grow Food Organically With No Fertilizers, No Pesticides, No Herbicides And No Chemicals](https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals) | 100.117 SBD |\n| [@akareyon](https://steemit.com/@akareyon) | [I find your lack of argument disturbing](https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing) | 98.525 SBD |\n| [@curving](https://steemit.com/@curving) | [The Ephemeral Cairn Gardens Of the Austin Greenbelt - A Photo Journal and Meditation](https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation) | 96.834 SBD |\n| [@aleksandraz](https://steemit.com/@aleksandraz) | [Incredible Science - Brainbow Technology](https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology) | 89.777 SBD |\n| [@skapaneas](https://steemit.com/@skapaneas) | [IBD Crohn desease and Ulceritive collitis. what are they, self diagnose, self treat and more.](https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more) | 85.958 SBD |\n| [@gargon](https://steemit.com/@gargon) | [Proyecto Cervantes (13 - 15 Sept 2016): Compensación y reconocimiento para escritores de habla hispana / Bringing rewards and recognition to spanish writers (Vol. III)](https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and) | 83.725 SBD |\n| [@iamwne](https://steemit.com/@iamwne) | [Blade Runner Inspired Digital Set - The Dark Market - Beauty Pass](https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass) | 83.869 SBD |\n| [@stormblaze](https://steemit.com/@stormblaze) | [Where Do Deleted Files Go?](https://steemit.com/technology/@stormblaze/where-do-deleted-files-go) | 81.221 SBD |\n| [@yanarnst](https://steemit.com/@yanarnst) | [Steemit Food Art lesson 2 ''Salad with chicken liver and pine nuts''](https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts) | 78.034 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Myths in the Sky: Ursa Major and Ursa Minor](https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor) | 72.174 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Brain preservation: an ambulance to the future](https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future) | 72.082 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Vivisecting the Stargazing Tribe: Visual Observers and Screen Scanners](https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners) | 71.421 SBD |\n| [@cristi](https://steemit.com/@cristi) | [Radical Metabolism - No Food and Water for 8 Months](https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months) | 69.559 SBD |\n| [@stranger27](https://steemit.com/@stranger27) | [Fibonacci sequence and Golden Ratio: magic numbers of Nature](https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature) | 66.258 SBD |\n| [@nekromarinist](https://steemit.com/@nekromarinist) | [Let's talk a little bit about phobias today!](https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today) | 61.776 SBD |\n| [@richman](https://steemit.com/@richman) | [If you want to lose a friend, lend him money (My life story)](https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story) | 58.193 SBD |\n| [@maceytomlin](https://steemit.com/@maceytomlin) | [What Exactly is Ayahuasca? How Should You Prepare for a Ceremony?](https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony) | 58.197 SBD |\n| [@nili](https://steemit.com/@nili) | [Smart Life (part 2) - Resolving the Godel's paradox on the blockchain as a solution for a decentralized trusted protocol](https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol) | 55.575 SBD |\n| [@optimistic-crone](https://steemit.com/@optimistic-crone) | [PROBIOTICS FOR LIFE!!! SUPER SIMPLE FERMENTED VEGETABLE 'KIM CHEE' RECIPE](https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe) | 54.909 SBD |\n| [@anarchyhasnogods](https://steemit.com/@anarchyhasnogods) | [Learning one dimensional motion using graphs- physics for beginners - part one](https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one) | 53.295 SBD |\n| [@yostopia](https://steemit.com/@yostopia) | [Beginner's mind, creative mind... the making of a Vimeo Staff Pick.](https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick) | 51.222 SBD |\n| [@reneenouveau](https://steemit.com/@reneenouveau) | [My response to Paul Steyn's myopic article \"Mr. Environmentalist\" shockingly published by National Geographic in Sept 2015.](https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015) | 49.433 SBD |\n| [@king3071](https://steemit.com/@king3071) | [MY DREAM DESTINATION - SWITZERLAND](https://steemit.com/travel/@king3071/my-dream-destination-switzerland) | 49.816 SBD |\n| [@kolin.evans](https://steemit.com/@kolin.evans) | [Something a little more substantial for you to think about - the 'IS' / 'WAS' CPT (Continuous Probable Time-lines.)](https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines) | 47.288 SBD |\n| [@fenglosophy](https://steemit.com/@fenglosophy) | [Does the language you speak influence how you think?](https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think) | 44.070 SBD |\n| [@mandibil](https://steemit.com/@mandibil) | [SAVAGE [Gorm Just, Denmark 2009] - movie review by Mandibil](https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil) | 44.621 SBD |\n| [@therajmahal](https://steemit.com/@therajmahal) | [Making the Impossible... Possible](https://steemit.com/science/@therajmahal/making-the-impossible-possible) | 44.765 SBD |\n| [@carlitashaw](https://steemit.com/@carlitashaw) | [The World's Worst Oil Spills, Ramifications & Amazing Alternative Solutions.](https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions) | 44.986 SBD |\n| [@renzoarg](https://steemit.com/@renzoarg) | [Skip a pill - Antibiotics](https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics) | 43.918 SBD |\n| [@rachelsvparry](https://steemit.com/@rachelsvparry) | [Under the Sea (again, but better this time)](https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time) | 43.436 SBD |\n| [@royalmacro](https://steemit.com/@royalmacro) | [lonely tree [An Original Abstract Art]](https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art) | 42.826 SBD |\n| [@stephmckenzie](https://steemit.com/@stephmckenzie) | [The Power of Choice--A Magnificent Key to True Personal Freedom](https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone) | 42.441 SBD |\n| [@alwayzgame](https://steemit.com/@alwayzgame) | [10 simple steps to ruin your child's life](https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life) | 42.475 SBD |\n| [@nonlinearone](https://steemit.com/@nonlinearone) | [Can Hemingway Improve Your Writing?](https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing) | 42.669 SBD |\n| [@kafkanarchy84](https://steemit.com/@kafkanarchy84) | [\"Johnny B. Goode\" Guitar Lesson and Intro to Theory, Vol. II](https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii) | 41.326 SBD |\n| [@feline1991](https://steemit.com/@feline1991) | [A Steemit Original - A Lifetime of Seeking Happiness - Chapter 2 - Part 2](https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2) | 41.931 SBD |\n| [@geke](https://steemit.com/@geke) | [The Banker and the Bulova - an original poem (Steemit flash-writing challenge)](https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge) | 41.497 SBD |\n| [@lscottphotos](https://steemit.com/@lscottphotos) | [LSCOTTPHOTOS Welcome to my family :) Thank you steemers <3 (Original Photos)](https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos) | 40.201 SBD |\n| [@pinkisland](https://steemit.com/@pinkisland) | [My Philosophy of Education](https://steemit.com/writing/@pinkisland/my-philosophy-of-education) | 40.978 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cinco](https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco) | 39.708 SBD |\n| [@luisucv34](https://steemit.com/@luisucv34) | [Venezuela: The lack of opportunities (English edition)](https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition) | 39.783 SBD |\n| [@beowulfoflegend](https://steemit.com/@beowulfoflegend) | [Silvanus and Empire, an Original Novel (Chapter Twenty)](https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty) | 39.543 SBD |\n| [@mariandavp](https://steemit.com/@mariandavp) | [From zero to hero - abstract office art by @mariandavp](https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp) | 39.529 SBD |\n| [@nasimbabu](https://steemit.com/@nasimbabu) | [The technology that defends us from potentially deadly diseases](https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases) | 39.620 SBD |\n| [@royaltiffany](https://steemit.com/@royaltiffany) | [Steemit B'Day Movie Review Contest Update!](https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update) | 37.706 SBD |\n| [@travelista](https://steemit.com/@travelista) | [An Adventure in Isla Espíritu Santo!](https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo) | 37.218 SBD |\n| [@jpiper20](https://steemit.com/@jpiper20) | [We Meet At Night -- An Original Story (Part 4)](https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4) | 37.319 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new painting - \"Dexter\" - Modern Impressionism](https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism) | 36.937 SBD |\n| [@krystle](https://steemit.com/@krystle) | [Keltorin's Flora and Fauna of Note - Firikwea - Valcanne's Guide to Keltorin](https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin) | 36.972 SBD |\n| [@cryptoiskey](https://steemit.com/@cryptoiskey) | [Workout from home on the cheap! - 12th September #Ultimate workout companion for your kids!](https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids) | 36.115 SBD |\n| [@getonthetrain](https://steemit.com/@getonthetrain) | [Top 10 Grisly Medieval Torture Methods](https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods) | 34.093 SBD |\n| [@ansharphoto](https://steemit.com/@ansharphoto) | [Roman Forum in the Morning, Rome](https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome) | 33.328 SBD |\n| [@aboundlessworld](https://steemit.com/@aboundlessworld) | [Introducing The Steemit Stories Podcast!](https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast) | 33.728 SBD |\n| [@thornybastard](https://steemit.com/@thornybastard) | [Chapter 10: A Call from the Forest—来自森林的呼唤](https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest) | 32.465 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Installing Bitshares / graphene from source on Mac OS X Yosemite (10.5.5)](https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5) | 32.348 SBD |\n| [@dumar022](https://steemit.com/@dumar022) | [Workshop lesson 6: Wrench: You don't wanna mess with this](https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this) | 32.155 SBD |\n| [@lapilipinas](https://steemit.com/@lapilipinas) | [Light from distant stars](https://steemit.com/science/@lapilipinas/light-from-distant-stars) | 32.778 SBD |\n| [@williambanks](https://steemit.com/@williambanks) | [Towards A Better Tomorrow : Part 1 - There but for grace!](https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace) | 31.434 SBD |\n| [@driv3n](https://steemit.com/@driv3n) | [How to Solve the Rubik's Cube like a boss - Part 2](https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2) | 31.858 SBD |\n| [@timbot606](https://steemit.com/@timbot606) | [Growing up in Appalachia](https://steemit.com/life/@timbot606/growing-up-in-appalachia) | 31.548 SBD |\n| [@themagus](https://steemit.com/@themagus) | [A less privileged white growing up in South Africa in the 1970's - part 2](https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2) | 31.099 SBD |\n| [@echoesinthemind](https://steemit.com/@echoesinthemind) | [Hanging Upside Down / DO NOT Try At Home](https://steemit.com/life/@echoesinthemind/hanging-upside-down) | 31.736 SBD |\n| [@ysa](https://steemit.com/@ysa) | [My pictures from traveling to Estes Park, Colorado](https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado) | 31.981 SBD |\n| [@aksinya](https://steemit.com/@aksinya) | [Our Trip to Wonderful, Scary and Unforgettable Kenya. Original Photos and Video](https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video) | 31.882 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cuatro](https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro) | 31.992 SBD |\n| [@successfully00](https://steemit.com/@successfully00) | [Knowing The Math - Mental Tricks - Multiplication Part 1](https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1) | 31.037 SBD |\n| [@linzo](https://steemit.com/@linzo) | [A Life Fantasy (Original Poem)](https://steemit.com/poem/@linzo/a-life-fantasy-original-poem) | 30.964 SBD |\n| [@hilarski](https://steemit.com/@hilarski) | [Panama Critters.](https://steemit.com/panama/@hilarski/panama-critters) | 28.729 SBD |\n| [@sulev](https://steemit.com/@sulev) | [Photography #11 - Pictures from my Garden: Bees, Lizards and other (part 2)](https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2) | 27.947 SBD |\n| [@steemswede](https://steemit.com/@steemswede) | [[BEER REVIEW] Thomas Hardy's Ale](https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale) | 27.183 SBD |\n| [@marius19](https://steemit.com/@marius19) | [Set of paper coffee cups. Origami](https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami) | 26.439 SBD |\n| [@poeticsnake](https://steemit.com/@poeticsnake) | [Autumn is coming Doodle style! ( Tutorial with step by step drawings)](https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings) | 26.547 SBD |\n| [@kiddarko](https://steemit.com/@kiddarko) | [Peep Life a Story By KidDarko (with tattoo illistrations and video)](https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video) | 26.853 SBD |\n| [@shieha](https://steemit.com/@shieha) | [The Hardest Computer Game of All Time - Robot Odyssey - Part 2](https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2) | 26.372 SBD |\n| [@ayim](https://steemit.com/@ayim) | [Fixing Posture - Part 4: Neck](https://steemit.com/life/@ayim/fixing-posture-part-4-neck) | 26.142 SBD |\n| [@hitmeasap](https://steemit.com/@hitmeasap) | [I am Batman's Robin or Skywalkers R2-D2. - I've always been the co-pilot. Always been the second choice.](https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice) | 25.747 SBD |\n| [@peskov](https://steemit.com/@peskov) | [Antonikha. Part 2 (featuring Vasily Peskov as author)](https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author) | 25.173 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [Advice from an angry dude: Breathe and interrupt your thoughts](https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts) | 25.162 SBD |\n| [@beginningtoend](https://steemit.com/@beginningtoend) | [Poetry, art and a little home spun philosophy.](https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy) | 25.708 SBD |\n| [@kaykunoichi](https://steemit.com/@kaykunoichi) | [Suicide Note - Audio (Written & performed by myself)](https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself) | 25.523 SBD |\n| [@booky](https://steemit.com/@booky) | [Boosting Leadership Skills = Healthier Happier You and Your Workmates](https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates) | 24.083 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [Do you Know the Difference Between RIGHT & WRONG?](https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong) | 24.516 SBD |\n| [@ekaterina4ka](https://steemit.com/@ekaterina4ka) | [We Knit Patterns by the Spokes. Post 2. Вяжем узоры спицами. Пост 2.](https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2) | 24.793 SBD |\n| [@scaredycatguide](https://steemit.com/@scaredycatguide) | [Real Talk - Vol 9. - Welcome To Dogmerica](https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica) | 24.207 SBD |\n| [@amy-goodrich](https://steemit.com/@amy-goodrich) | [Pineapple Mojito Green Smoothie](https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie) | 24.126 SBD |\n| [@scott.stevens](https://steemit.com/@scott.stevens) | [Awareness of Bitcoin is Now More Important Than Awareness of Geoengineering](https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering) | 24.875 SBD |\n| [@witchcraftblog](https://steemit.com/@witchcraftblog) | [My trip to Italy. Pisa.](https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa) | 24.265 SBD |\n| [@ibringawareness](https://steemit.com/@ibringawareness) | [\"Why I Got Stiffed\" Guy's Waiter Blog chapter 5](https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5) | 24.224 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new illustration - Batman vs Superman - Modern Impressionism by kimal73](https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73) | 23.617 SBD |\n| [@leylar](https://steemit.com/@leylar) | [Seeds are great travelers ~ Own work](https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work) | 23.166 SBD |\n| [@ocrdu](https://steemit.com/@ocrdu) | [The pods that go \"pop\"](https://steemit.com/photography/@ocrdu/the-pods-that-go-pop) | 23.530 SBD |\n| [@rusla](https://steemit.com/@rusla) | [Japan. Part8.](https://steemit.com/travel/@rusla/japan-part8) | 23.209 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [Puppy Charcoal Original Pencil Drawing](https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing) | 23.879 SBD |\n| [@borishaifa](https://steemit.com/@borishaifa) | [To Write Or Not To Wirte? Писать или не писать?](https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat) | 23.730 SBD |\n| [@eveningstar92](https://steemit.com/@eveningstar92) | [Shit Happens, Move On-NSFW- Evening Star Art](https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art) | 23.092 SBD |\n| [@elewarne](https://steemit.com/@elewarne) | [Mixed Media](https://steemit.com/mixedmedia/@elewarne/mixed-media) | 23.059 SBD |\n| [@shredlord](https://steemit.com/@shredlord) | [Sunrise](https://steemit.com/art/@shredlord/sunrise) | 23.318 SBD |\n| [@sherlockcupid](https://steemit.com/@sherlockcupid) | [Let's Talk: Fears (Part One)](https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one) | 23.720 SBD |\n| [@annesaya](https://steemit.com/@annesaya) | [Our Guiding Star, a poem (A tribute to writers)](https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers) | 23.384 SBD |\n| [@fitmama](https://steemit.com/@fitmama) | [Why Do I Bother....](https://steemit.com/life/@fitmama/why-do-i-bother) | 23.451 SBD |\n| [@ezzy](https://steemit.com/@ezzy) | [The Bionic Experiment - Part 1 (My Original Short Stories)](https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories) | 23.480 SBD |\n| [@kingarbinv](https://steemit.com/@kingarbinv) | [Adventures in Nemaland - Part 8 (Video) + My best Pokemon catch so far.](https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far) | 23.292 SBD |\n| [@soulsistashakti](https://steemit.com/@soulsistashakti) | [How to Detect and Deflect Gaslighting from a Narcissist](https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist) | 22.018 SBD |\n| [@puffin](https://steemit.com/@puffin) | [Tragical Impoverishment - Society's Dirt (Original Poem)](https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem) | 22.621 SBD |\n| [@cehuneke](https://steemit.com/@cehuneke) | [The Sugar Scandal: Corrupted Science in the Debate of Fat vs. Sugar and Coronary Heart Disease](https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease) | 22.821 SBD |\n| [@tanata](https://steemit.com/@tanata) | [Little Black Dress involving](https://steemit.com/fashion/@tanata/little-black-dress-involving) | 22.237 SBD |\n| [@steemwriter](https://steemit.com/@steemwriter) | [YouTube Demonetization: A Step Towards Censorship?](https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship) | 22.297 SBD |\n| [@michelle.gent](https://steemit.com/@michelle.gent) | [Dusty - one of my characters](https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters) | 22.659 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [A Gift-Original Rose Drawing](https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing) | 22.249 SBD |\n| [@runridefly](https://steemit.com/@runridefly) | [Minnow's Life - @runridefly original cartoon \"minnowsunite Whale sighting\" minnows and a whale](https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale) | 22.836 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [[SHORT STORY] The Cult of Personality - Part One](https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one) | 22.552 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Look at the Flower Chicory: a Useful and Beautiful Flower ... my Favorite Photos of Chicory](https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory) | 22.795 SBD |\n| [@victoriart](https://steemit.com/@victoriart) | [Hazelnut Mood](https://steemit.com/art/@victoriart/hazelnut-mood) | 22.443 SBD |\n| [@heroic15397](https://steemit.com/@heroic15397) | [Amazing Birds in the Greater Montreal area](https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area) | 22.987 SBD |\n| [@smartercars](https://steemit.com/@smartercars) | [Reviewing the Volkswagen Touareg ~ Smarter Car Reviews](https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews) | 22.975 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [Blues Jam & Techniques [9-14-2016]](https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016) | 22.415 SBD |\n| [@matthew.raymer](https://steemit.com/@matthew.raymer) | [Life Stories](https://steemit.com/psychology/@matthew.raymer/life-stories) | 22.733 SBD |\n| [@positivesteem](https://steemit.com/@positivesteem) | [Common Sense Versus Degrees: The Man Who Has One Hundred Degrees](https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees) | 22.941 SBD |\n| [@d3nv3r](https://steemit.com/@d3nv3r) | [Cloud Mining - The Struggle is Real](https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real) | 22.266 SBD |\n| [@adubi](https://steemit.com/@adubi) | [Healing Food Plan: The Ultimate Cheat Sheet](https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet) | 22.947 SBD |\n| [@alitas](https://steemit.com/@alitas) | [(spanish) Cazuela de Calamar con Papas Rejilla](https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla) | 22.240 SBD |\n| [@mazi](https://steemit.com/@mazi) | [I Can See Clearly Now .... Platanus occidentalis](https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis) | 22.784 SBD |\n| [@mikemacintire](https://steemit.com/@mikemacintire) | [A Red Like No Other - My work](https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work) | 22.289 SBD |\n| [@altzero](https://steemit.com/@altzero) | [Imágenes de una vida (2)](https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2) | 21.555 SBD |\n| [@birdie](https://steemit.com/@birdie) | [Clouds That Demand Attention (Original Photos)](https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos) | 21.397 SBD |\n| [@michaelstobiersk](https://steemit.com/@michaelstobiersk) | [An Original Painting by Michael Stobierski](https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski) | 21.367 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Meditation Experience Can Be Really Scary](https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary) | 21.583 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [The Price Is Right Theme Music Breakdown](https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown) | 21.937 SBD |\n| [@karisa](https://steemit.com/@karisa) | [Very tasty and delicious curd cookies specially for Steemit . Part 4](https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4) | 21.940 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Borovoye (Burabai) - Pearl of Kazakhstan: The Incredible Journey (Story of my Husband)](https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband) | 20.616 SBD |\n| [@burnin](https://steemit.com/@burnin) | [Exploring the Off-Limits Areas of the Largest Cruise Ship In the World - Part 2](https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2) | 20.298 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Eyes Of Wisdom](https://steemit.com/art/@reddust/eyes-of-wisdom) | 20.051 SBD |\n| [@levycore](https://steemit.com/@levycore) | [Hot Chocolate Art - Trying Draw Faces](https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces) | 20.233 SBD |\n| [@awesomenyl](https://steemit.com/@awesomenyl) | [Sunflower Paper Tutorial](https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial) | 20.040 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [The epic and awesome guide to writing articles like a true artist that people want to read and share! [Edited for Steemit today]](https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today) | 20.192 SBD |\n| [@naquoya](https://steemit.com/@naquoya) | [[ORIGINAL FICTION] Bad Trip part two: The Gamemaster](https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster) | 20.041 SBD |\n| [@moon32walker](https://steemit.com/@moon32walker) | [Top 10 Game Development Studios](https://steemit.com/gaming/@moon32walker/top-10-game-development-studios) | 20.468 SBD |\n| [@gustavopasquini](https://steemit.com/@gustavopasquini) | [Polenta with Ragu Meat Dry](https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry) | 20.436 SBD |\n| [@benadapt](https://steemit.com/@benadapt) | [Capturing the Milky Way — A Photographer’s Biggest Challenge](https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge) | 20.477 SBD |\n| [@altzero](https://steemit.com/@altzero) | [¿Que es la nueva economia?](https://steemit.com/spanish/@altzero/que-es-la-nueva-economia) | 20.037 SBD |\n| [@por500bolos](https://steemit.com/@por500bolos) | [Uncovering The Most Transcendental & Biggest Secret In The Human Life. ¿Skeptical? I will challenge you to prove otherwise!!](https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise) | 20.894 SBD |\n| [@zonpower](https://steemit.com/@zonpower) | [This is a place (An original Poem)](https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem) | 20.869 SBD |\n| [@katharsisdrill](https://steemit.com/@katharsisdrill) | [The rune-stones of Jelling, and a new realisation.](https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation) | 19.761 SBD |\n| [@glezeddy](https://steemit.com/@glezeddy) | [MEZCLA DE TEQUILA PARA DAR EL \"GRITO\" (MÉXICO)](https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico) | 15.682 SBD |\n| [@onetree](https://steemit.com/@onetree) | [South African Slang - Enter Those Who Dare!](https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare) | 33.017 SBD |\n| [@verbal-d](https://steemit.com/@verbal-d) | [Melodious Music Memoirs # 2: Impact](https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact) | 30.372 SBD |\n| [@wanderingagorist](https://steemit.com/@wanderingagorist) | [Foraging Wild Rose Hips for Tea and Eating](https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating) | 29.228 SBD |\n| [@knablinz](https://steemit.com/@knablinz) | [Hand-Made Collage Art By Knablinz ( Donuts & Coffee )](https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee) | 35.939 SBD |\n\n---------------------------\n
Note: All author rewards from this post will be used to fund Project Curie.
Join us in #curie on Steemit.chat and follow us @curie!
", + "json_metadata": { + "tags": [ + "curie", + "minnows", + "hidden-gems", + "steemit", + "project-curie" + ], + "users": [ + "nextgencrypto", + "curie" + ], + "image": [ + "https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg" + ], + "links": [ + "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", + "https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement", + "https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", + "https://steemit.com/@faddat", + "https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed", + "https://steemit.com/@rampant", + "https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool", + "https://steemit.com/@shenanigator", + "https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do", + "https://steemit.com/@penguinpablo", + "https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf", + "https://steemit.com/@nathanjtaylor", + "https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry", + "https://steemit.com/@lily-da-vine", + "https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco", + "https://steemit.com/@budgetbucketlist", + "https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes", + "https://steemit.com/@benjiberigan", + "https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations", + "https://steemit.com/@ausbitbank", + "https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos", + "https://steemit.com/@emily-cook", + "https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work", + "https://steemit.com/@team-leibniz", + "https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00", + "https://steemit.com/@ionescur", + "https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land", + "https://steemit.com/@kimal73", + "https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work", + "https://steemit.com/@juliac", + "https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think", + "https://steemit.com/@luzcypher", + "https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals", + "https://steemit.com/@akareyon", + "https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing", + "https://steemit.com/@curving", + "https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation", + "https://steemit.com/@aleksandraz", + "https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology", + "https://steemit.com/@skapaneas", + "https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more", + "https://steemit.com/@gargon", + "https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", + "https://steemit.com/@iamwne", + "https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass", + "https://steemit.com/@stormblaze", + "https://steemit.com/technology/@stormblaze/where-do-deleted-files-go", + "https://steemit.com/@yanarnst", + "https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts", + "https://steemit.com/@senseye", + "https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor", + "https://steemit.com/@crasch", + "https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future", + "https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners", + "https://steemit.com/@cristi", + "https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months", + "https://steemit.com/@stranger27", + "https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature", + "https://steemit.com/@nekromarinist", + "https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today", + "https://steemit.com/@richman", + "https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story", + "https://steemit.com/@maceytomlin", + "https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony", + "https://steemit.com/@nili", + "https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol", + "https://steemit.com/@optimistic-crone", + "https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe", + "https://steemit.com/@anarchyhasnogods", + "https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one", + "https://steemit.com/@yostopia", + "https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick", + "https://steemit.com/@reneenouveau", + "https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015", + "https://steemit.com/@king3071", + "https://steemit.com/travel/@king3071/my-dream-destination-switzerland", + "https://steemit.com/@kolin.evans", + "https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines", + "https://steemit.com/@fenglosophy", + "https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think", + "https://steemit.com/@mandibil", + "https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil", + "https://steemit.com/@therajmahal", + "https://steemit.com/science/@therajmahal/making-the-impossible-possible", + "https://steemit.com/@carlitashaw", + "https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions", + "https://steemit.com/@renzoarg", + "https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics", + "https://steemit.com/@rachelsvparry", + "https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time", + "https://steemit.com/@royalmacro", + "https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art", + "https://steemit.com/@stephmckenzie", + "https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone", + "https://steemit.com/@alwayzgame", + "https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life", + "https://steemit.com/@nonlinearone", + "https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing", + "https://steemit.com/@kafkanarchy84", + "https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii", + "https://steemit.com/@feline1991", + "https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2", + "https://steemit.com/@geke", + "https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge", + "https://steemit.com/@lscottphotos", + "https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos", + "https://steemit.com/@pinkisland", + "https://steemit.com/writing/@pinkisland/my-philosophy-of-education", + "https://steemit.com/@jgcastrillo19", + "https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco", + "https://steemit.com/@luisucv34", + "https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition", + "https://steemit.com/@beowulfoflegend", + "https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty", + "https://steemit.com/@mariandavp", + "https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp", + "https://steemit.com/@nasimbabu", + "https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases", + "https://steemit.com/@royaltiffany", + "https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update", + "https://steemit.com/@travelista", + "https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo", + "https://steemit.com/@jpiper20", + "https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4", + "https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism", + "https://steemit.com/@krystle", + "https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin", + "https://steemit.com/@cryptoiskey", + "https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids", + "https://steemit.com/@getonthetrain", + "https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods", + "https://steemit.com/@ansharphoto", + "https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome", + "https://steemit.com/@aboundlessworld", + "https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast", + "https://steemit.com/@thornybastard", + "https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest", + "https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5", + "https://steemit.com/@dumar022", + "https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this", + "https://steemit.com/@lapilipinas", + "https://steemit.com/science/@lapilipinas/light-from-distant-stars", + "https://steemit.com/@williambanks", + "https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace", + "https://steemit.com/@driv3n", + "https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2", + "https://steemit.com/@timbot606", + "https://steemit.com/life/@timbot606/growing-up-in-appalachia", + "https://steemit.com/@themagus", + "https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2", + "https://steemit.com/@echoesinthemind", + "https://steemit.com/life/@echoesinthemind/hanging-upside-down", + "https://steemit.com/@ysa", + "https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado", + "https://steemit.com/@aksinya", + "https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video", + "https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro", + "https://steemit.com/@successfully00", + "https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1", + "https://steemit.com/@linzo", + "https://steemit.com/poem/@linzo/a-life-fantasy-original-poem", + "https://steemit.com/@hilarski", + "https://steemit.com/panama/@hilarski/panama-critters", + "https://steemit.com/@sulev", + "https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2", + "https://steemit.com/@steemswede", + "https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale", + "https://steemit.com/@marius19", + "https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami", + "https://steemit.com/@poeticsnake", + "https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings", + "https://steemit.com/@kiddarko", + "https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video", + "https://steemit.com/@shieha", + "https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2", + "https://steemit.com/@ayim", + "https://steemit.com/life/@ayim/fixing-posture-part-4-neck", + "https://steemit.com/@hitmeasap", + "https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice", + "https://steemit.com/@peskov", + "https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author", + "https://steemit.com/@aldentan", + "https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts", + "https://steemit.com/@beginningtoend", + "https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy", + "https://steemit.com/@kaykunoichi", + "https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself", + "https://steemit.com/@booky", + "https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates", + "https://steemit.com/@doubledex", + "https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong", + "https://steemit.com/@ekaterina4ka", + "https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2", + "https://steemit.com/@scaredycatguide", + "https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica", + "https://steemit.com/@amy-goodrich", + "https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie", + "https://steemit.com/@scott.stevens", + "https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering", + "https://steemit.com/@witchcraftblog", + "https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa", + "https://steemit.com/@ibringawareness", + "https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5", + "https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73", + "https://steemit.com/@leylar", + "https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work", + "https://steemit.com/@ocrdu", + "https://steemit.com/photography/@ocrdu/the-pods-that-go-pop", + "https://steemit.com/@rusla", + "https://steemit.com/travel/@rusla/japan-part8", + "https://steemit.com/@edgarsart", + "https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing", + "https://steemit.com/@borishaifa", + "https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat", + "https://steemit.com/@eveningstar92", + "https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art", + "https://steemit.com/@elewarne", + "https://steemit.com/mixedmedia/@elewarne/mixed-media", + "https://steemit.com/@shredlord", + "https://steemit.com/art/@shredlord/sunrise", + "https://steemit.com/@sherlockcupid", + "https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one", + "https://steemit.com/@annesaya", + "https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers", + "https://steemit.com/@fitmama", + "https://steemit.com/life/@fitmama/why-do-i-bother", + "https://steemit.com/@ezzy", + "https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories", + "https://steemit.com/@kingarbinv", + "https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far", + "https://steemit.com/@soulsistashakti", + "https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist", + "https://steemit.com/@puffin", + "https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem", + "https://steemit.com/@cehuneke", + "https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease", + "https://steemit.com/@tanata", + "https://steemit.com/fashion/@tanata/little-black-dress-involving", + "https://steemit.com/@steemwriter", + "https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship", + "https://steemit.com/@michelle.gent", + "https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters", + "https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing", + "https://steemit.com/@runridefly", + "https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale", + "https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one", + "https://steemit.com/@lyubovbar", + "https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory", + "https://steemit.com/@victoriart", + "https://steemit.com/art/@victoriart/hazelnut-mood", + "https://steemit.com/@heroic15397", + "https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area", + "https://steemit.com/@smartercars", + "https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews", + "https://steemit.com/@rubenalexander", + "https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016", + "https://steemit.com/@matthew.raymer", + "https://steemit.com/psychology/@matthew.raymer/life-stories", + "https://steemit.com/@positivesteem", + "https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees", + "https://steemit.com/@d3nv3r", + "https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real", + "https://steemit.com/@adubi", + "https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet", + "https://steemit.com/@alitas", + "https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla", + "https://steemit.com/@mazi", + "https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis", + "https://steemit.com/@mikemacintire", + "https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work", + "https://steemit.com/@altzero", + "https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2", + "https://steemit.com/@birdie", + "https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos", + "https://steemit.com/@michaelstobiersk", + "https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski", + "https://steemit.com/@reddust", + "https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary", + "https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown", + "https://steemit.com/@karisa", + "https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4", + "https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband", + "https://steemit.com/@burnin", + "https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2", + "https://steemit.com/art/@reddust/eyes-of-wisdom", + "https://steemit.com/@levycore", + "https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces", + "https://steemit.com/@awesomenyl", + "https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial", + "https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today", + "https://steemit.com/@naquoya", + "https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster", + "https://steemit.com/@moon32walker", + "https://steemit.com/gaming/@moon32walker/top-10-game-development-studios", + "https://steemit.com/@gustavopasquini", + "https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry", + "https://steemit.com/@benadapt", + "https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge", + "https://steemit.com/spanish/@altzero/que-es-la-nueva-economia", + "https://steemit.com/@por500bolos", + "https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise", + "https://steemit.com/@zonpower", + "https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem", + "https://steemit.com/@katharsisdrill", + "https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation", + "https://steemit.com/@glezeddy", + "https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico", + "https://steemit.com/@onetree", + "https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare", + "https://steemit.com/@verbal-d", + "https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact", + "https://steemit.com/@wanderingagorist", + "https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating", + "https://steemit.com/@knablinz", + "https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee" + ] + }, + "created": "2016-09-15T17:53:48", + "updated": "2016-09-15T17:53:48", + "depth": 0, + "children": 10, + "net_rshares": 61028272797290, + "is_paidout": false, + "payout_at": "2016-09-16T18:14:08", + "payout": 218.554, + "pending_payout_value": "218.554 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "val-a", + "rshares": "30948708908726" + }, + { + "voter": "val-b", + "rshares": "15292900000000" + }, + { + "voter": "joseph", + "rshares": "1534352192855" + }, + { + "voter": "masteryoda", + "rshares": "652034182902" + }, + { + "voter": "idol", + "rshares": "8927024295" + }, + { + "voter": "donkeypong", + "rshares": "2637269453488" + }, + { + "voter": "steemrollin", + "rshares": "816386307308" + }, + { + "voter": "sakr", + "rshares": "4941856440" + }, + { + "voter": "chris4210", + "rshares": "140357414085" + }, + { + "voter": "jocelyn", + "rshares": "1536548017" + }, + { + "voter": "acidsun", + "rshares": "83530339170" + }, + { + "voter": "gavvet", + "rshares": "1196485708874" + }, + { + "voter": "eeks", + "rshares": "59931939963" + }, + { + "voter": "fernando-sanz", + "rshares": "6122594947" + }, + { + "voter": "nanzo-scoop", + "rshares": "584270995256" + }, + { + "voter": "mummyimperfect", + "rshares": "177415501233" + }, + { + "voter": "asch", + "rshares": "106634401121" + }, + { + "voter": "kevinwong", + "rshares": "603741881611" + }, + { + "voter": "murh", + "rshares": "1061259321" + }, + { + "voter": "cryptofunk", + "rshares": "3187850436" + }, + { + "voter": "error", + "rshares": "2003304335" + }, + { + "voter": "cyber", + "rshares": "962089879337" + }, + { + "voter": "ak2020", + "rshares": "50884297723" + }, + { + "voter": "justtryme90", + "rshares": "61300613738" + }, + { + "voter": "applecrisp", + "rshares": "410517349" + }, + { + "voter": "altoz", + "rshares": "35693164103" + }, + { + "voter": "anwenbaumeister", + "rshares": "820589638514" + }, + { + "voter": "mark-waser", + "rshares": "5950595929" + }, + { + "voter": "geoffrey", + "rshares": "118349796563" + }, + { + "voter": "kimziv", + "rshares": "192325266448" + }, + { + "voter": "emily-cook", + "rshares": "77083924707" + }, + { + "voter": "orly", + "rshares": "3283440404" + }, + { + "voter": "steem1653", + "rshares": "2834957075" + }, + { + "voter": "cynetyc", + "rshares": "124961861" + }, + { + "voter": "thegoodguy", + "rshares": "5357326058" + }, + { + "voter": "karen13", + "rshares": "4209522316" + }, + { + "voter": "nabilov", + "rshares": "251366150295" + }, + { + "voter": "noodhoog", + "rshares": "8401059269" + }, + { + "voter": "knozaki2015", + "rshares": "455246290726" + }, + { + "voter": "lichtblick", + "rshares": "7166494256" + }, + { + "voter": "creemej", + "rshares": "33739090409" + }, + { + "voter": "btcbtcbtc20155", + "rshares": "5726411049" + }, + { + "voter": "blueorgy", + "rshares": "163324531946" + }, + { + "voter": "poseidon", + "rshares": "4195248338" + }, + { + "voter": "simon.braki.love", + "rshares": "3435918746" + }, + { + "voter": "liberosist", + "rshares": "268137172703" + }, + { + "voter": "birdie", + "rshares": "4128504280" + }, + { + "voter": "sharker", + "rshares": "5609578664" + }, + { + "voter": "jl777", + "rshares": "204618259005" + }, + { + "voter": "yarly", + "rshares": "1773036384" + }, + { + "voter": "yarly2", + "rshares": "267188192" + }, + { + "voter": "yarly3", + "rshares": "267587944" + }, + { + "voter": "yarly4", + "rshares": "154579129" + }, + { + "voter": "yarly5", + "rshares": "155451862" + }, + { + "voter": "yarly7", + "rshares": "88607961" + }, + { + "voter": "moon32walker", + "rshares": "11031796651" + }, + { + "voter": "sergey44", + "rshares": "258619590" + }, + { + "voter": "proto", + "rshares": "17267341753" + }, + { + "voter": "sisterholics", + "rshares": "31599342155" + }, + { + "voter": "yarly10", + "rshares": "428868451" + }, + { + "voter": "yarly11", + "rshares": "229507420" + }, + { + "voter": "yarly12", + "rshares": "80241480" + }, + { + "voter": "steemster1", + "rshares": "146224042" + }, + { + "voter": "mahekg", + "rshares": "5878023046" + }, + { + "voter": "taker", + "rshares": "8734150854" + }, + { + "voter": "nekromarinist", + "rshares": "6521104126" + }, + { + "voter": "theprophet0", + "rshares": "10553169212" + }, + { + "voter": "sharon", + "rshares": "57873464" + }, + { + "voter": "lillianjones", + "rshares": "58971492" + }, + { + "voter": "laonie", + "rshares": "1117443990130" + }, + { + "voter": "twinner", + "rshares": "4257390614" + }, + { + "voter": "timcliff", + "rshares": "4414425121" + }, + { + "voter": "myfirst", + "rshares": "38640926181" + }, + { + "voter": "somebody", + "rshares": "233306274805" + }, + { + "voter": "flysaga", + "rshares": "8723132526" + }, + { + "voter": "gmurph", + "rshares": "1667759072" + }, + { + "voter": "midnightoil", + "rshares": "51539167746" + }, + { + "voter": "ullikume", + "rshares": "4190377366" + }, + { + "voter": "xiaohui", + "rshares": "128906992414" + }, + { + "voter": "jphamer1", + "rshares": "21112616587" + }, + { + "voter": "elfkitchen", + "rshares": "6306539895" + }, + { + "voter": "joele", + "rshares": "102434307703" + }, + { + "voter": "randyclemens", + "rshares": "15549176040" + }, + { + "voter": "xiaokongcom", + "rshares": "4030108065" + }, + { + "voter": "msjennifer", + "rshares": "59437351" + }, + { + "voter": "ciao", + "rshares": "54654502" + }, + { + "voter": "steemo", + "rshares": "52985539" + }, + { + "voter": "xianjun", + "rshares": "8123975227" + }, + { + "voter": "steema", + "rshares": "52848854" + }, + { + "voter": "confucius", + "rshares": "69662169" + }, + { + "voter": "borran", + "rshares": "11292536945" + }, + { + "voter": "jarvis", + "rshares": "53661976" + }, + { + "voter": "microluck", + "rshares": "546765304" + }, + { + "voter": "razberrijam", + "rshares": "75676352" + }, + { + "voter": "fortuner", + "rshares": "53106127" + }, + { + "voter": "pompe72", + "rshares": "84942400" + }, + { + "voter": "lemouth", + "rshares": "8114632832" + }, + { + "voter": "gvargas123", + "rshares": "10344891579" + }, + { + "voter": "johnbyrd", + "rshares": "51877132" + }, + { + "voter": "thomasaustin", + "rshares": "50682252" + }, + { + "voter": "thermor", + "rshares": "51859074" + }, + { + "voter": "ficholl", + "rshares": "50691211" + }, + { + "voter": "widell", + "rshares": "51852278" + }, + { + "voter": "steevc", + "rshares": "404286448" + }, + { + "voter": "movievertigo", + "rshares": "3635091595" + }, + { + "voter": "revelbrooks", + "rshares": "51481279" + }, + { + "voter": "cehuneke", + "rshares": "1573489537" + }, + { + "voter": "netaterra", + "rshares": "2982676167" + }, + { + "voter": "andrewawerdna", + "rshares": "23137850346" + }, + { + "voter": "trev", + "rshares": "5831957227" + }, + { + "voter": "craigwilliamz", + "rshares": "8773942171" + }, + { + "voter": "mandibil", + "rshares": "51505575275" + }, + { + "voter": "daut44", + "rshares": "32462674824" + }, + { + "voter": "curpose", + "rshares": "50416427" + }, + { + "voter": "curving", + "rshares": "3597236649" + }, + { + "voter": "uri-bruck", + "rshares": "61596105" + }, + { + "voter": "shenanigator", + "rshares": "112983030208" + }, + { + "voter": "quinneaker", + "rshares": "10005063213" + }, + { + "voter": "einsteinpotsdam", + "rshares": "7626813355" + }, + { + "voter": "richardcrill", + "rshares": "4747321980" + }, + { + "voter": "jeremyfromwi", + "rshares": "2205784762" + }, + { + "voter": "troich", + "rshares": "50588612" + }, + { + "voter": "davidjkelley", + "rshares": "1661534801" + }, + { + "voter": "crion", + "rshares": "50593879" + }, + { + "voter": "greatness", + "rshares": "178419224" + }, + { + "voter": "hitherise", + "rshares": "50271139" + }, + { + "voter": "wiss", + "rshares": "50262756" + }, + { + "voter": "sponge-bob", + "rshares": "54249219602" + }, + { + "voter": "digital-wisdom", + "rshares": "15571056039" + }, + { + "voter": "getonthetrain", + "rshares": "3365396535" + }, + { + "voter": "ethical-ai", + "rshares": "3710959443" + }, + { + "voter": "stroully", + "rshares": "51033798" + }, + { + "voter": "jwaser", + "rshares": "6831361820" + }, + { + "voter": "tfeldman", + "rshares": "468106735" + }, + { + "voter": "thadm", + "rshares": "50712038" + }, + { + "voter": "prof", + "rshares": "50710305" + }, + { + "voter": "ionescur", + "rshares": "1597514180" + }, + { + "voter": "bane", + "rshares": "50065875" + }, + { + "voter": "vive", + "rshares": "50059754" + }, + { + "voter": "coad", + "rshares": "50054445" + }, + { + "voter": "bwaser", + "rshares": "2675506788" + }, + { + "voter": "renzoarg", + "rshares": "7645490859" + }, + { + "voter": "sofa", + "rshares": "50840303" + }, + { + "voter": "roadhog", + "rshares": "53990613" + }, + { + "voter": "doggnostic", + "rshares": "52794249" + }, + { + "voter": "jenny-talls", + "rshares": "52521499" + }, + { + "voter": "mariandavp", + "rshares": "8199670899" + }, + { + "voter": "brains", + "rshares": "55344422883" + }, + { + "voter": "post-successful", + "rshares": "53415391" + }, + { + "voter": "burnin", + "rshares": "5866415576" + }, + { + "voter": "anomaly", + "rshares": "271439221" + }, + { + "voter": "ellepdub", + "rshares": "2401297947" + }, + { + "voter": "michelle.gent", + "rshares": "4116636581" + }, + { + "voter": "herpetologyguy", + "rshares": "12115638535" + }, + { + "voter": "morgan.waser", + "rshares": "4817004213" + }, + { + "voter": "dragonice", + "rshares": "50228382" + }, + { + "voter": "aksinya", + "rshares": "1288421610" + }, + { + "voter": "bapparabi", + "rshares": "1921231770" + }, + { + "voter": "opticalillusions", + "rshares": "50487909" + }, + { + "voter": "strong-ai", + "rshares": "3689852156" + }, + { + "voter": "grisha-danunaher", + "rshares": "505556200" + }, + { + "voter": "igtes", + "rshares": "71207873" + }, + { + "voter": "curie", + "rshares": "50277354380" + }, + { + "voter": "dikanevroman", + "rshares": "851767121" + }, + { + "voter": "buffett", + "rshares": "141679752" + }, + { + "voter": "witchcraftblog", + "rshares": "453506109" + }, + { + "voter": "photorealistic", + "rshares": "157799009" + }, + { + "voter": "illusions", + "rshares": "160880639" + }, + { + "voter": "dresden", + "rshares": "6920933761" + }, + { + "voter": "caseyneistat", + "rshares": "160845765" + }, + { + "voter": "ysa", + "rshares": "692395145" + }, + { + "voter": "correct", + "rshares": "159984914" + }, + { + "voter": "capcom", + "rshares": "159973989" + }, + { + "voter": "sledgehammer", + "rshares": "159963865" + }, + { + "voter": "haribo", + "rshares": "159950870" + }, + { + "voter": "benetton", + "rshares": "159531007" + }, + { + "voter": "stimmt", + "rshares": "156194471" + }, + { + "voter": "reef", + "rshares": "159143891" + }, + { + "voter": "cream", + "rshares": "158632601" + }, + { + "voter": "reddust", + "rshares": "891891710" + }, + { + "voter": "aldentan", + "rshares": "336222066" + }, + { + "voter": "techslut", + "rshares": "191981449" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 182, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/curie/@curie/the-daily-curie-14th-sept-15th-sept-2016", + "blacklists": [] + }, + { + "post_id": 960063, + "author": "alienbutt", + "permlink": "alien-or-plant", + "category": "photography", + "title": "Alien or plant?", + "body": "You decide what they are.\nAlien heads staked on a post or seed pods?\n\"\n\n\"", + "json_metadata": { + "tags": [ + "photography", + "art", + "" + ], + "image": [ + "http://i346.photobucket.com/albums/p432/Glenn_Scrimshaw/DSCN2947_zpsx86w0mif.jpg", + "http://i346.photobucket.com/albums/p432/Glenn_Scrimshaw/DSCN2944_zps2kijcdvn.jpg" + ], + "links": [ + "http://s346.photobucket.com/user/Glenn_Scrimshaw/media/DSCN2947_zpsx86w0mif.jpg.html", + "http://s346.photobucket.com/user/Glenn_Scrimshaw/media/DSCN2944_zps2kijcdvn.jpg.html" + ] + }, + "created": "2016-09-15T17:53:36", + "updated": "2016-09-15T18:23:18", + "depth": 0, + "children": 4, + "net_rshares": 44874621891175, + "is_paidout": false, + "payout_at": "2016-09-16T18:36:35", + "payout": 120.784, + "pending_payout_value": "120.784 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231809639013" + }, + { + "voter": "blocktrades", + "rshares": "40042046720125" + }, + { + "voter": "riverhead", + "rshares": "4287714457313" + }, + { + "voter": "altoz", + "rshares": "34979300821" + }, + { + "voter": "steem1653", + "rshares": "2733708608" + }, + { + "voter": "nabilov", + "rshares": "251366150295" + }, + { + "voter": "btcupload", + "rshares": "3813478158" + }, + { + "voter": "future24", + "rshares": "1557779220" + }, + { + "voter": "pompe72", + "rshares": "84942400" + }, + { + "voter": "craigwilliamz", + "rshares": "8773949381" + }, + { + "voter": "anomaly", + "rshares": "271440423" + }, + { + "voter": "michelle.gent", + "rshares": "4249431309" + }, + { + "voter": "bapparabi", + "rshares": "1871969417" + }, + { + "voter": "irensche", + "rshares": "2497059333" + }, + { + "voter": "katharsisdrill", + "rshares": "84821361" + }, + { + "voter": "alienbutt", + "rshares": "767043998" + } + ], + "author_reputation": 52.91, + "stats": { + "hide": false, + "gray": false, + "total_votes": 16, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/photography/@alienbutt/alien-or-plant", + "blacklists": [] + }, + { + "post_id": 959783, + "author": "serejandmyself", + "permlink": "captured-by-time-an-original-novel-chapter-1", + "category": "story", + "title": "CAPTURED BY TIME (An Original Novel - Chapter 1)", + "body": "#### Hey guys, welcome to the first chapter of my new novel.\n#### It is a mixture of 3 time lines, with 19th century, modern day and ancient times. The genre is probably something you would call a mixture of sci-fi, mystery, adventure and a bit more. \n#### Well, I welcome you to be the judge...\n\n

[![b801c049484636e0faf71f56cca03864c0bd6.jpg](https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg)](https://www.steemimg.com/image/1wrYT)

\n\n__________________________________\n\n**Chapter ONE**\n\nIt seemed as nothing was different in yet another cold and slightly windy London evening. The smog from the river was rising up as usual and the chilly wind would bring the smell up to the embankment, where Charles was taking a rest, sitting down on his favorite bench. \n\nFrom here he could see the might of the power station from across the river and something was special in the way those chimneys threw out the smoke onto the city. \n\nHe just finished his walk along his usual route, walking amongst the cemetery outside the chapel. It always amused him; that mix of emotion and sorrow amongst the busy city people, especially during the busy afternoon hours.\n\nThat rusty smell kept mixing with up with the light freshness of the leaves from the tree nearby Charles’s bench. As he threw a brief glimpse onto the clock on the parliament building he noticed that the small arrow was on 45 minutes… \n\nSuddenly he heard a murmur of horses; he turned his head before he could finish realizing what time it was. He saw that just a few yards up the road two horse carriages didn’t manage to share the drive way. \n\n
[![Saratogacarriagec5af5.jpg](https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg)](https://www.steemimg.com/image/1w1bI)
\n\nOne of the coachmen was shouting something and angrily waving his hands. Charles was able to see from here that the coachmen’s grey clothing was partially covered in dirt, probably from the splash of the puddles from underneath the wheels. \n\nThe coachmen kept shouting something, Charles was unable to see the second carriage from where he was sitting, but was able to see some passersby, that starting to gather around the incident.\n\nIt was obvious that, just like him, those people had nothing better to do on this late afternoon then to watch in amusement the accident in the middle of the avenue.\n\nJust as Charles was starting to lose interest in the whole situation, the door of the cab that Charles could see, opened and a man dressed in a black suit and holding a pipe stepped out. He calmly put his hand in the upper inner pocket of the suit and pulled out some coins. The man made two steps up to driver and handed him the coins. At this moment the driver stopped shouting for a moment and it was clear from the look on his face that he was confused. \n\nThe cab driver counted the coins and said something to the man in the suit, the passenger didn’t answer. He turned around and started to walk in the direction of the chapel. The cab driver clearly wasn’t happy. He started to shout once again, but this time at the passenger. While the cab driver turned his attention to the passenger, Charles noticed how the second carriage that was involved in the accident managed to move a few yards back.\n\nIt was a much smaller carriage, and the driver was clearly seeable to Charles now. He seemed somewhat happy that he was not in the middle of the light anymore; he hurryingly turned the carriage and the horse around and started to move also in the direction of the chapel. \n\nAt this moment the driver of the first carriage started to lose interest in shouting and decided to clean himself up. As he started to calm down, the bemused passersby begun to walk back to where they were heading and Charles also turned his head back towards the power station.\n\nCharles was so busy watching the situation unfold that he didn’t noticed that the passenger of the first carriage crossed the road and was now heading not towards the chapel anymore, but exactly in the other direction, towards the grey bench that Charles was sitting on.\n\nAt first Charles didn’t pay any attention to just another man who was walking by. But then he noticed that calm walk of his and it hit him that this was the same passenger from the carriage.\n\n“Excuse me sir?” said Charles as the man closed up to the bench. “You are the gentleman from the carriage, aren’t you?” “I saw you a minute ago, what happened?”\n\nThe man stopped to walk and shared a look with Charles; he calmly sat down beside him and carried on smoking his pipe, as he was not hearing the questions Charles asked him. \n\n“I do apologies for the intervention, but you must not be local, I can tell by your calmness, all the folks round here are always in a hurry” Charles carried on talking as if not noticing that the man was ignoring him. \n\nAll of a sudden the weather begun to change, wind started to blow stronger and the few leaves that the tree was holding blew in the direction of the bench. The smell from the river rose up and as if that wasn’t enough Charles felt like a small rain drop hit his head. He could clearly see the green water from where he was sitting through the decorations holes of the embankments fence. It was clear that it will start to rain soon by the appearing circles on the top of the river.\n\nAfter a few minutes of quietly seating by his new neighbor Charles caught himself looking at the clock on the tower, once again he saw the small arrow on 45 minutes…\n\n“And what do we pay the government for?” “It would feel though they are taking our money and spend it on their fancy hats and suits, don’t you find?” Said Charles.\n\nAt this point the man took out the pipe into his left hand and begun to cough. After he finished coughing Charles heard him speak, at this point Charles understood that for some reason he would remember this moment for a long time to come. \n\n“It is likely to assume that they deserve to spend the money they earn” Said the man, his voice was quite low and he had a certain accent Charles could quite catch.\n\n“I don’t think that money is of importance nowadays” Said the man.\n\nCharles looked at the man with a smile - “What is of importance? One might assume that philosophically speaking, importance can be found in nothing but what is good to us”.\n\n“No body knows what can be important to others if we carry on like this, then…” Charles didn’t finish his sentence as the man turned away from him and looked the other way. He then turned his head back and Charles noticed his eyes. His eyes were nothing like what Charles had seen before, they looked as though they were glass like and the as if they were blank, there was nothing behind them.\n\n“What is important is that I am here now and that it is happening today. It is important to live your life because, just like your life Charles, it has an end”, the man looked somewhat happy when he said that and Charles jumped back on the bench a little, he felt a small shiver run down his spine.\n\n“What? How do you know my name sir? Have you been following me?” questions were racing through Charles’s mind. \n\n“As I said, this is now of importance. You life can find its end today when you get back to your gallery in your cold basement on Kinnerton street or you might listen to me and…” Charles didn’t let the man finish his sentence. He jumped up from the bench; his cane flew within millimeters of the stranger leg as he jumped.\n\n“How dare you sir? Who gives you the right…” Charles raised his voice, he never allowed himself to raise his voice at a stranger beforehand.\n\n“I think this conversation is over!” exclaimed Charles. “That would be your choice” replied the man, “Do you think the time is right?” \n\nCharles had already turned away in anger and was about to make his first step away. Something in the words of the man about the time made him think for a second, thoughts raced through his mind. The number 45 and the small arrow of the parliament clock were stuck in his head. \n\n“I don’t understand said Charles…” he turned his head back towards the clock; the arrow was still on 45 minutes. “How is that possible?” Charles turned his head to the man, but there was no one on the bench. \n\nCharles begun to search the street rapidly with his eyes, it didn’t even occur to him that it was heavily raining until that moment. \n\n
[![tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif](https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif)](https://www.steemimg.com/image/1w5tK)
\n\nThe streets were empty; there were no carriages or people to be seen around. Feeling scared he turned his head to the clock once again – “How can it still be 45 minutes...” Charles was speaking out loud.\n\nThe next moment he felt like his knees weakened, his head was swirling and he dropped his cane, last thing he could hear was the clinging the of the cane’s handle against the pavement. His thoughts mixed up with his eyesight; the man and his pipe, the handle of the clock, the carriage, the passersby, the power stations smoke…\n \n_________________________________\n\n#### Follow me @serejandmyself for more \n\nImage credit - [1](https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/) ; [2](https://giphy.com/search/carriage) ; [3](http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html) ;", + "json_metadata": { + "tags": [ + "story", + "fiction", + "scifi", + "mystery", + "writing" + ], + "users": [ + "serejandmyself" + ], + "image": [ + "https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg", + "https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg", + "https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif" + ], + "links": [ + "https://www.steemimg.com/image/1wrYT", + "https://www.steemimg.com/image/1w1bI", + "https://www.steemimg.com/image/1w5tK", + "https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/", + "https://giphy.com/search/carriage", + "http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html" + ] + }, + "created": "2016-09-15T17:23:48", + "updated": "2016-09-15T17:23:48", + "depth": 0, + "children": 2, + "net_rshares": 66871297900441, + "is_paidout": false, + "payout_at": "2016-09-16T17:42:51", + "payout": 260.997, + "pending_payout_value": "260.997 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "smooth", + "rshares": "31621188390159" + }, + { + "voter": "bmw", + "rshares": "2078528809174" + }, + { + "voter": "badassmother", + "rshares": "1912120788268" + }, + { + "voter": "pharesim", + "rshares": "3312854507128" + }, + { + "voter": "hr1", + "rshares": "2053144245901" + }, + { + "voter": "rossco99", + "rshares": "1271804694676" + }, + { + "voter": "jaewoocho", + "rshares": "22390733187" + }, + { + "voter": "steemychicken1", + "rshares": "1736291789819" + }, + { + "voter": "joseph", + "rshares": "1533973920081" + }, + { + "voter": "recursive2", + "rshares": "466132509421" + }, + { + "voter": "masteryoda", + "rshares": "652005899349" + }, + { + "voter": "recursive", + "rshares": "3120458041174" + }, + { + "voter": "smooth.witness", + "rshares": "5941203882368" + }, + { + "voter": "idol", + "rshares": "9168101098" + }, + { + "voter": "steemrollin", + "rshares": "816386307308" + }, + { + "voter": "sakr", + "rshares": "4941741048" + }, + { + "voter": "jocelyn", + "rshares": "1578030666" + }, + { + "voter": "acidsun", + "rshares": "83530339170" + }, + { + "voter": "gregory-f", + "rshares": "14818192446" + }, + { + "voter": "edgeland", + "rshares": "151248263299" + }, + { + "voter": "gregory60", + "rshares": "9028522101" + }, + { + "voter": "eeks", + "rshares": "74914792736" + }, + { + "voter": "fkn", + "rshares": "15119117634" + }, + { + "voter": "elishagh1", + "rshares": "19873135819" + }, + { + "voter": "richman", + "rshares": "7802860274" + }, + { + "voter": "nanzo-scoop", + "rshares": "584250736753" + }, + { + "voter": "mummyimperfect", + "rshares": "177409209153" + }, + { + "voter": "coar", + "rshares": "313697862" + }, + { + "voter": "asch", + "rshares": "106632631169" + }, + { + "voter": "murh", + "rshares": "1061245798" + }, + { + "voter": "cryptofunk", + "rshares": "6230746892" + }, + { + "voter": "error", + "rshares": "2057413439" + }, + { + "voter": "cyber", + "rshares": "962077066542" + }, + { + "voter": "theshell", + "rshares": "59950063204" + }, + { + "voter": "ak2020", + "rshares": "49578772788" + }, + { + "voter": "noganoo", + "rshares": "76584409982" + }, + { + "voter": "satoshifund", + "rshares": "3848540783991" + }, + { + "voter": "taoteh1221", + "rshares": "400880323222" + }, + { + "voter": "applecrisp", + "rshares": "410517349" + }, + { + "voter": "altoz", + "rshares": "35693164103" + }, + { + "voter": "gardening", + "rshares": "335983556" + }, + { + "voter": "survival", + "rshares": "336136344" + }, + { + "voter": "arisa", + "rshares": "10021612024" + }, + { + "voter": "trogdor", + "rshares": "280737930617" + }, + { + "voter": "mark-waser", + "rshares": "5950554459" + }, + { + "voter": "geoffrey", + "rshares": "118348776939" + }, + { + "voter": "kimziv", + "rshares": "42738217262" + }, + { + "voter": "seth-krings", + "rshares": "24170583392" + }, + { + "voter": "honeythief", + "rshares": "46264097306" + }, + { + "voter": "technology", + "rshares": "78976166587" + }, + { + "voter": "emily-cook", + "rshares": "76017114668" + }, + { + "voter": "superfreek", + "rshares": "2187607792" + }, + { + "voter": "isteemit", + "rshares": "49806227536" + }, + { + "voter": "auction", + "rshares": "10993053311" + }, + { + "voter": "grey580", + "rshares": "17557768630" + }, + { + "voter": "thebatchman", + "rshares": "19975264794" + }, + { + "voter": "lehard", + "rshares": "60403077307" + }, + { + "voter": "orly", + "rshares": "3283410959" + }, + { + "voter": "riscadox", + "rshares": "5270985903" + }, + { + "voter": "katyakov", + "rshares": "24867544970" + }, + { + "voter": "jako", + "rshares": "12790313163" + }, + { + "voter": "steemswede", + "rshares": "1159208963" + }, + { + "voter": "sergei", + "rshares": "1664172448" + }, + { + "voter": "honey", + "rshares": "238378512" + }, + { + "voter": "furion", + "rshares": "71343869654" + }, + { + "voter": "barbara2", + "rshares": "354114465" + }, + { + "voter": "ch0c0latechip", + "rshares": "393593664" + }, + { + "voter": "doge4lyf", + "rshares": "364274718" + }, + { + "voter": "on0tole", + "rshares": "5532441214" + }, + { + "voter": "dicov", + "rshares": "1231812238" + }, + { + "voter": "steem1653", + "rshares": "2834923420" + }, + { + "voter": "sveokla", + "rshares": "2919298058" + }, + { + "voter": "sebastien", + "rshares": "17173174800" + }, + { + "voter": "thegoodguy", + "rshares": "5357205853" + }, + { + "voter": "aaseb", + "rshares": "14167556353" + }, + { + "voter": "danielkt", + "rshares": "1026087885" + }, + { + "voter": "karen13", + "rshares": "4209522316" + }, + { + "voter": "nabilov", + "rshares": "251366150295" + }, + { + "voter": "luisucv34", + "rshares": "629471993" + }, + { + "voter": "knozaki2015", + "rshares": "462033723200" + }, + { + "voter": "inertia", + "rshares": "95668007343" + }, + { + "voter": "milestone", + "rshares": "46858037615" + }, + { + "voter": "lichtblick", + "rshares": "7164489185" + }, + { + "voter": "creemej", + "rshares": "34761364489" + }, + { + "voter": "the-future", + "rshares": "2726160685" + }, + { + "voter": "nippel66", + "rshares": "15378115921" + }, + { + "voter": "phenom", + "rshares": "23929304431" + }, + { + "voter": "blueorgy", + "rshares": "167305835788" + }, + { + "voter": "benjiberigan", + "rshares": "12849414672" + }, + { + "voter": "poseidon", + "rshares": "932262984" + }, + { + "voter": "mustafaomar", + "rshares": "19717588129" + }, + { + "voter": "simon.braki.love", + "rshares": "3435918746" + }, + { + "voter": "thylbom", + "rshares": "82781233416" + }, + { + "voter": "deanliu", + "rshares": "32543400703" + }, + { + "voter": "dmitriybtc", + "rshares": "4996306142" + }, + { + "voter": "hemp", + "rshares": "1019831473" + }, + { + "voter": "flowers", + "rshares": "118287211" + }, + { + "voter": "jl777", + "rshares": "204617853645" + }, + { + "voter": "zaebars", + "rshares": "30989251579" + }, + { + "voter": "positive", + "rshares": "12261205066" + }, + { + "voter": "yarly", + "rshares": "1773021661" + }, + { + "voter": "yarly2", + "rshares": "267188192" + }, + { + "voter": "yarly3", + "rshares": "267587944" + }, + { + "voter": "yarly4", + "rshares": "154579129" + }, + { + "voter": "yarly5", + "rshares": "155451862" + }, + { + "voter": "yarly7", + "rshares": "88607961" + }, + { + "voter": "steemchain", + "rshares": "50626015" + }, + { + "voter": "whalepool", + "rshares": "50626015" + }, + { + "voter": "summonerrk", + "rshares": "6114654934" + }, + { + "voter": "webdeals", + "rshares": "12098269394" + }, + { + "voter": "alexbezimeni", + "rshares": "231254136" + }, + { + "voter": "proto", + "rshares": "17267307497" + }, + { + "voter": "sisterholics", + "rshares": "7222569746" + }, + { + "voter": "yarly10", + "rshares": "428868451" + }, + { + "voter": "yarly11", + "rshares": "229507420" + }, + { + "voter": "yarly12", + "rshares": "80241480" + }, + { + "voter": "fnait", + "rshares": "412825844" + }, + { + "voter": "keepcalmand", + "rshares": "366755128" + }, + { + "voter": "kibela", + "rshares": "180668119" + }, + { + "voter": "dmilash", + "rshares": "3084130055" + }, + { + "voter": "mahekg", + "rshares": "13626326152" + }, + { + "voter": "gomeravibz", + "rshares": "50578642550" + }, + { + "voter": "taker", + "rshares": "8734139434" + }, + { + "voter": "nekromarinist", + "rshares": "6521104126" + }, + { + "voter": "theprophet", + "rshares": "6895440187" + }, + { + "voter": "laonie", + "rshares": "255409573883" + }, + { + "voter": "laoyao", + "rshares": "24562026280" + }, + { + "voter": "myfirst", + "rshares": "7994566199" + }, + { + "voter": "somebody", + "rshares": "51844874813" + }, + { + "voter": "flysaga", + "rshares": "1938440237" + }, + { + "voter": "gmurph", + "rshares": "2084695835" + }, + { + "voter": "missmishel623", + "rshares": "68250832" + }, + { + "voter": "midnightoil", + "rshares": "11452948850" + }, + { + "voter": "kalimor", + "rshares": "2280336943" + }, + { + "voter": "ullikume", + "rshares": "4190335896" + }, + { + "voter": "xiaohui", + "rshares": "28645142464" + }, + { + "voter": "elfkitchen", + "rshares": "1293627572" + }, + { + "voter": "joele", + "rshares": "102434307703" + }, + { + "voter": "oflyhigh", + "rshares": "5855564372" + }, + { + "voter": "xiaokongcom", + "rshares": "895565145" + }, + { + "voter": "gargon", + "rshares": "12687522802" + }, + { + "voter": "natalymaty", + "rshares": "2076619689" + }, + { + "voter": "numberone", + "rshares": "84763896" + }, + { + "voter": "diamonds", + "rshares": "62760150" + }, + { + "voter": "xianjun", + "rshares": "1805296575" + }, + { + "voter": "unrealisback", + "rshares": "3251259359" + }, + { + "voter": "borran", + "rshares": "11292536945" + }, + { + "voter": "miacats", + "rshares": "93805187965" + }, + { + "voter": "microluck", + "rshares": "118219525" + }, + { + "voter": "razberrijam", + "rshares": "75676352" + }, + { + "voter": "chinadaily", + "rshares": "2022625104" + }, + { + "voter": "serejandmyself", + "rshares": "84708065280" + }, + { + "voter": "pollina", + "rshares": "106144628" + }, + { + "voter": "macartem", + "rshares": "2958177650" + }, + { + "voter": "gvargas123", + "rshares": "10344891579" + }, + { + "voter": "jaredcwillis", + "rshares": "10691300360" + }, + { + "voter": "netaterra", + "rshares": "2982676167" + }, + { + "voter": "piezolit", + "rshares": "59171026" + }, + { + "voter": "trev", + "rshares": "6069996297" + }, + { + "voter": "leno4ek", + "rshares": "1152952998" + }, + { + "voter": "daut44", + "rshares": "33111928321" + }, + { + "voter": "contentjunkie", + "rshares": "5475437205" + }, + { + "voter": "einsteinpotsdam", + "rshares": "7779288318" + }, + { + "voter": "richardcrill", + "rshares": "5053600817" + }, + { + "voter": "jeremyfromwi", + "rshares": "2205784762" + }, + { + "voter": "eight-rad", + "rshares": "2056057288" + }, + { + "voter": "nadin3", + "rshares": "5012661990" + }, + { + "voter": "xanoxt", + "rshares": "3411072843" + }, + { + "voter": "davidjkelley", + "rshares": "1661520978" + }, + { + "voter": "sponge-bob", + "rshares": "27677639861" + }, + { + "voter": "digital-wisdom", + "rshares": "15570931627" + }, + { + "voter": "ethical-ai", + "rshares": "3710931796" + }, + { + "voter": "jwaser", + "rshares": "6831306526" + }, + { + "voter": "tatianka", + "rshares": "1086106040" + }, + { + "voter": "apparat", + "rshares": "55281264" + }, + { + "voter": "cryptobiker", + "rshares": "14097243573" + }, + { + "voter": "analyzethis", + "rshares": "54182817" + }, + { + "voter": "bwaser", + "rshares": "2675492964" + }, + { + "voter": "doggnostic", + "rshares": "54949117" + }, + { + "voter": "jenny-talls", + "rshares": "54665234" + }, + { + "voter": "brains", + "rshares": "27671309914" + }, + { + "voter": "waldemar-kuhn", + "rshares": "53671263" + }, + { + "voter": "steemafon", + "rshares": "1359518638" + }, + { + "voter": "chick1", + "rshares": "5753400992" + }, + { + "voter": "aoki", + "rshares": "50584036" + }, + { + "voter": "typingagent", + "rshares": "51568971" + }, + { + "voter": "cwb", + "rshares": "50528809" + }, + { + "voter": "anomaly", + "rshares": "339287005" + }, + { + "voter": "ellepdub", + "rshares": "2401284424" + }, + { + "voter": "herpetologyguy", + "rshares": "12115548081" + }, + { + "voter": "morgan.waser", + "rshares": "4816962742" + }, + { + "voter": "dragonice", + "rshares": "51232949" + }, + { + "voter": "steemq", + "rshares": "51230296" + }, + { + "voter": "weare", + "rshares": "51218466" + }, + { + "voter": "anns", + "rshares": "1258359388" + }, + { + "voter": "cyan", + "rshares": "50875769" + }, + { + "voter": "motion", + "rshares": "50871059" + }, + { + "voter": "synereo", + "rshares": "50791473" + }, + { + "voter": "unilever", + "rshares": "50572441" + }, + { + "voter": "bapparabi", + "rshares": "1871969417" + }, + { + "voter": "friends", + "rshares": "50532230" + }, + { + "voter": "strong-ai", + "rshares": "3689824509" + }, + { + "voter": "ivanakamoto", + "rshares": "53738244" + }, + { + "voter": "grisha-danunaher", + "rshares": "516546553" + }, + { + "voter": "sjamayee", + "rshares": "213848535" + }, + { + "voter": "htyfn", + "rshares": "2974116451" + }, + { + "voter": "allianz", + "rshares": "162904624" + }, + { + "voter": "rusteemitblog", + "rshares": "1630350803" + }, + { + "voter": "ranger", + "rshares": "161815656" + }, + { + "voter": "witchcraftblog", + "rshares": "444435987" + }, + { + "voter": "shadowproject", + "rshares": "161693690" + }, + { + "voter": "acute", + "rshares": "161205518" + }, + { + "voter": "bethesda", + "rshares": "161179339" + }, + { + "voter": "panic", + "rshares": "159352476" + }, + { + "voter": "stimmt", + "rshares": "159318360" + }, + { + "voter": "rule", + "rshares": "159062820" + }, + { + "voter": "steemthis", + "rshares": "158560941" + }, + { + "voter": "zendesk", + "rshares": "158486055" + }, + { + "voter": "storage", + "rshares": "68013381" + }, + { + "voter": "cbd", + "rshares": "157667385" + }, + { + "voter": "junk", + "rshares": "157667385" + }, + { + "voter": "hug", + "rshares": "157682838" + }, + { + "voter": "bearcub", + "rshares": "157682838" + }, + { + "voter": "cyberpunk", + "rshares": "157682809" + }, + { + "voter": "keisha", + "rshares": "156919204" + }, + { + "voter": "blackmarket", + "rshares": "58460105" + }, + { + "voter": "gifts", + "rshares": "61530871" + }, + { + "voter": "int", + "rshares": "156919175" + }, + { + "voter": "steemlift", + "rshares": "1593664040" + } + ], + "author_reputation": 66.84, + "stats": { + "hide": false, + "gray": false, + "total_votes": 229, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/story/@serejandmyself/captured-by-time-an-original-novel-chapter-1", + "blacklists": [] + }, + { + "post_id": 960238, + "author": "ozchartart", + "permlink": "usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", + "category": "steem", + "title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle’s left empty\" Sept 15, 2016", + "body": "Hello Steemers!\n\nhttps://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png\n\n*POLONIEX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png\n*4 hour Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciwF/1b96b56dcc.png\n*4 hour Poloniex chart - Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png\n*1 day Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciC9/edf3dcb758.png\n*1 day Poloniex chart - Sept 15, 2016*\nThe Poloniex price went down to the all time low, breaking it and making a slightly lower all time low, but still not giving any confirm of a bottom or bounce.\nVolume about 20% higher then yesterday.\n\n*BITTREX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png\n*4 hour Bittrex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciod/ce32f1a029.png\n*4 hour Bittrex chart - Sept 15, 2016*\nThe Bittrex price broke the local low made just a slightly lower one, same as Poloniex with he all time low, looking like its heading towards the next support level (~0.0007, blue dashed).\nVolume on Bittrex was about 25% lower then yesterday (~5BTC's).\n\n\n*VOLUME COMPARISON*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png\n*STEEM/BTC volume Bittrex Sept 14, 2016*\n\nhttp://puu.sh/rcifG/0c61511ea3.png\n*STEEM/BTC volume Bittrex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png\n*STEEM/BTC volume Poloniex Sept 14, 2016*\n\nhttp://puu.sh/rcicN/b2384086a4.png\n*STEEM/BTC volume Poloniex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png\n*STEEM indexed global volume Sept 14, 2016*\n\nhttp://puu.sh/rcibB/7b2700dd82.png\n*STEEM indexed global volume Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmof/8ca7889618.png\n*Coinmarketcap top volume cryptos Sept 14, 2016*\n\nhttp://puu.sh/rci8K/d68b7eb122.png\n*Coinmarketcap top volume cryptos Sept 15, 2016*\nOverall volume about 12% higher then yesterday, with Bittrex volume taking a dive and Poloniex gaining some.\n$STEEM again under top 30 in volume rankings.\n\n*COMMENT*\nOnce again, I will post the comment by commenting as it involves my personal opinion!\nThank you for understanding!\n\nIf anyone has any questions or need's help fell free to ask, I will try to explain as fast and as best as I can.\nCritics, comments, reply's, counters, advice's, etc. are always welcome!\nHave my charts helped you in any way?Let me know with a comment below :)\nAre there more people who are doing TA?\nPlease post the links to your TA's posts into the comments as well!\n\n*DISCLAIMER*\nI am showing multiple scenarios on the price movement, in the post itself I do not take any stance, either bullish or bearish. I am not responsible for neither you’re winning nor you're losses upon trading! the \"comment\" section is my personal opinion and does not mean I have to or do hold any positions in the given market.\nEveryone who uses TA develops his own unique charting style, please keep that in mind.\n\nhttps://www.youtube.com/watch?v=i3bS5nRZOvU\n\nKind regards, OZ :)", + "json_metadata": { + "tags": [ + "steem", + "poloniex", + "bittrex", + "technical-analysis", + "trading" + ], + "image": [ + "https://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png", + "http://puu.sh/rciwF/1b96b56dcc.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png", + "http://puu.sh/rciC9/edf3dcb758.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png", + "http://puu.sh/rciod/ce32f1a029.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png", + "http://puu.sh/rcifG/0c61511ea3.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png", + "http://puu.sh/rcicN/b2384086a4.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png", + "http://puu.sh/rcibB/7b2700dd82.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png", + "http://puu.sh/rci8K/d68b7eb122.png", + "https://img.youtube.com/vi/i3bS5nRZOvU/0.jpg" + ], + "links": [ + "https://www.youtube.com/watch?v=i3bS5nRZOvU" + ] + }, + "created": "2016-09-15T18:18:00", + "updated": "2016-09-15T18:18:00", + "depth": 0, + "children": 5, + "net_rshares": 30268799563538, + "is_paidout": false, + "payout_at": "2016-09-16T18:35:24", + "payout": 57.124, + "pending_payout_value": "57.124 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "books", + "rshares": "1861031398822" + }, + { + "voter": "riverhead", + "rshares": "4287714457313" + }, + { + "voter": "badassmother", + "rshares": "1855967006728" + }, + { + "voter": "hr1", + "rshares": "2053236030423" + }, + { + "voter": "kushed", + "rshares": "5519371190400" + }, + { + "voter": "rossco99", + "rshares": "1271804694676" + }, + { + "voter": "jaewoocho", + "rshares": "22391622942" + }, + { + "voter": "ozmaster", + "rshares": "161758715658" + }, + { + "voter": "joseph", + "rshares": "1534643949678" + }, + { + "voter": "aizensou", + "rshares": "100723108736" + }, + { + "voter": "recursive2", + "rshares": "466132509421" + }, + { + "voter": "masteryoda", + "rshares": "636519834128" + }, + { + "voter": "recursive", + "rshares": "3120576239931" + }, + { + "voter": "idol", + "rshares": "8927291120" + }, + { + "voter": "steemrollin", + "rshares": "800066797130" + }, + { + "voter": "sakr", + "rshares": "4941942978" + }, + { + "voter": "chitty", + "rshares": "284401462010" + }, + { + "voter": "jocelyn", + "rshares": "1536592488" + }, + { + "voter": "gregory-f", + "rshares": "14818263059" + }, + { + "voter": "edgeland", + "rshares": "154334962550" + }, + { + "voter": "craig-grant", + "rshares": "374436234637" + }, + { + "voter": "gregory60", + "rshares": "9028550345" + }, + { + "voter": "eeks", + "rshares": "89897944197" + }, + { + "voter": "fkn", + "rshares": "11591323519" + }, + { + "voter": "paco-steem", + "rshares": "468281676" + }, + { + "voter": "spaninv", + "rshares": "5641697991" + }, + { + "voter": "elishagh1", + "rshares": "15236070794" + }, + { + "voter": "richman", + "rshares": "7802860274" + }, + { + "voter": "nanzo-scoop", + "rshares": "584279800798" + }, + { + "voter": "kefkius", + "rshares": "10059005246" + }, + { + "voter": "mummyimperfect", + "rshares": "177417522325" + }, + { + "voter": "coar", + "rshares": "313697862" + }, + { + "voter": "asch", + "rshares": "106635074770" + }, + { + "voter": "murh", + "rshares": "1061264730" + }, + { + "voter": "cryptofunk", + "rshares": "6230798580" + }, + { + "voter": "error", + "rshares": "2003359924" + }, + { + "voter": "andu", + "rshares": "11848125383" + }, + { + "voter": "cyber", + "rshares": "970586830705" + }, + { + "voter": "theshell", + "rshares": "59952188311" + }, + { + "voter": "ak2020", + "rshares": "49580154489" + }, + { + "voter": "applecrisp", + "rshares": "402139444" + }, + { + "voter": "stiletto", + "rshares": "365370465" + }, + { + "voter": "trogdor", + "rshares": "280737930617" + }, + { + "voter": "mark-waser", + "rshares": "5950623572" + }, + { + "voter": "geoffrey", + "rshares": "118356217412" + }, + { + "voter": "kimziv", + "rshares": "101509283748" + }, + { + "voter": "emily-cook", + "rshares": "75333038089" + }, + { + "voter": "superfreek", + "rshares": "2251949197" + }, + { + "voter": "ladyclair", + "rshares": "275327756" + }, + { + "voter": "orly", + "rshares": "3283410959" + }, + { + "voter": "riscadox", + "rshares": "5271030976" + }, + { + "voter": "tcfxyz", + "rshares": "25057521880" + }, + { + "voter": "futurefood", + "rshares": "6939954009" + }, + { + "voter": "furion", + "rshares": "56586842629" + }, + { + "voter": "busser", + "rshares": "754655775" + }, + { + "voter": "cdubendo", + "rshares": "103793678934" + }, + { + "voter": "barbara2", + "rshares": "271487757" + }, + { + "voter": "ch0c0latechip", + "rshares": "301755142" + }, + { + "voter": "doge4lyf", + "rshares": "279277284" + }, + { + "voter": "steem1653", + "rshares": "2733708608" + }, + { + "voter": "cynetyc", + "rshares": "124961861" + }, + { + "voter": "thegoodguy", + "rshares": "5357326058" + }, + { + "voter": "aaseb", + "rshares": "14168005907" + }, + { + "voter": "karen13", + "rshares": "4209533734" + }, + { + "voter": "nabilov", + "rshares": "251367062418" + }, + { + "voter": "noodhoog", + "rshares": "8576081337" + }, + { + "voter": "milestone", + "rshares": "46859060143" + }, + { + "voter": "artific", + "rshares": "21565632626" + }, + { + "voter": "btcbtcbtc20155", + "rshares": "5840939270" + }, + { + "voter": "nippel66", + "rshares": "14455781997" + }, + { + "voter": "blueorgy", + "rshares": "163325492855" + }, + { + "voter": "benjiberigan", + "rshares": "13111647625" + }, + { + "voter": "poseidon", + "rshares": "2214250194" + }, + { + "voter": "calaber24p", + "rshares": "355265286967" + }, + { + "voter": "simon.braki.love", + "rshares": "3295677164" + }, + { + "voter": "bola", + "rshares": "121062267" + }, + { + "voter": "deanliu", + "rshares": "32544157928" + }, + { + "voter": "hagie", + "rshares": "14007767075" + }, + { + "voter": "jl777", + "rshares": "204618396015" + }, + { + "voter": "aleco", + "rshares": "1371622220" + }, + { + "voter": "positive", + "rshares": "9400257217" + }, + { + "voter": "yarly", + "rshares": "1773021661" + }, + { + "voter": "yarly2", + "rshares": "267188192" + }, + { + "voter": "yarly3", + "rshares": "267587944" + }, + { + "voter": "yarly4", + "rshares": "154579129" + }, + { + "voter": "yarly5", + "rshares": "155451862" + }, + { + "voter": "yarly7", + "rshares": "88607961" + }, + { + "voter": "sergey44", + "rshares": "257573964" + }, + { + "voter": "proto", + "rshares": "17267341753" + }, + { + "voter": "sisterholics", + "rshares": "16251777176" + }, + { + "voter": "yarly10", + "rshares": "428868451" + }, + { + "voter": "yarly11", + "rshares": "229507420" + }, + { + "voter": "yarly12", + "rshares": "80241480" + }, + { + "voter": "fnait", + "rshares": "316499814" + }, + { + "voter": "keepcalmand", + "rshares": "281178931" + }, + { + "voter": "cwmyao1", + "rshares": "607346548" + }, + { + "voter": "jamesbrown", + "rshares": "16495975416" + }, + { + "voter": "glitterpig", + "rshares": "3353991305" + }, + { + "voter": "jed78", + "rshares": "7506600577" + }, + { + "voter": "taker", + "rshares": "8734185109" + }, + { + "voter": "coinbar", + "rshares": "1651596637" + }, + { + "voter": "laonie", + "rshares": "574717917578" + }, + { + "voter": "ozchartart", + "rshares": "254341994815" + }, + { + "voter": "croatia", + "rshares": "5104045578" + }, + { + "voter": "myfirst", + "rshares": "19987344033" + }, + { + "voter": "somebody", + "rshares": "116658367770" + }, + { + "voter": "flysaga", + "rshares": "4604075327" + }, + { + "voter": "gmurph", + "rshares": "2501638608" + }, + { + "voter": "midnightoil", + "rshares": "25770687280" + }, + { + "voter": "ullikume", + "rshares": "4190377366" + }, + { + "voter": "andrew0", + "rshares": "2325684243" + }, + { + "voter": "xiaohui", + "rshares": "64457942294" + }, + { + "voter": "elfkitchen", + "rshares": "3234267259" + }, + { + "voter": "joele", + "rshares": "99935909954" + }, + { + "voter": "oflyhigh", + "rshares": "5855738054" + }, + { + "voter": "xiaokongcom", + "rshares": "2127092828" + }, + { + "voter": "eneismijmich", + "rshares": "47556149905" + }, + { + "voter": "xianjun", + "rshares": "4287842001" + }, + { + "voter": "sijoittaja", + "rshares": "72192938" + }, + { + "voter": "borran", + "rshares": "11041591679" + }, + { + "voter": "miacats", + "rshares": "93807196108" + }, + { + "voter": "microluck", + "rshares": "280777082" + }, + { + "voter": "razberrijam", + "rshares": "74131936" + }, + { + "voter": "chinadaily", + "rshares": "2022702929" + }, + { + "voter": "pompe72", + "rshares": "86712034" + }, + { + "voter": "ignat", + "rshares": "1647538615" + }, + { + "voter": "anotherjoe", + "rshares": "20666130092" + }, + { + "voter": "gvargas123", + "rshares": "10344891579" + }, + { + "voter": "movievertigo", + "rshares": "3562389763" + }, + { + "voter": "andrewawerdna", + "rshares": "21980957828" + }, + { + "voter": "runridefly", + "rshares": "2109031152" + }, + { + "voter": "funkywanderer", + "rshares": "1783693666" + }, + { + "voter": "richardcrill", + "rshares": "4747321980" + }, + { + "voter": "jeremyfromwi", + "rshares": "2161669067" + }, + { + "voter": "davidjkelley", + "rshares": "1661534801" + }, + { + "voter": "greatness", + "rshares": "178419224" + }, + { + "voter": "sponge-bob", + "rshares": "27678962051" + }, + { + "voter": "digital-wisdom", + "rshares": "15571125147" + }, + { + "voter": "ethical-ai", + "rshares": "3710973264" + }, + { + "voter": "jwaser", + "rshares": "6831389463" + }, + { + "voter": "steemorama", + "rshares": "422625634" + }, + { + "voter": "nubchai", + "rshares": "4269189470" + }, + { + "voter": "analyzethis", + "rshares": "50931848" + }, + { + "voter": "bwaser", + "rshares": "2675506788" + }, + { + "voter": "dexter-k", + "rshares": "6064648982" + }, + { + "voter": "doggnostic", + "rshares": "54949117" + }, + { + "voter": "jenny-talls", + "rshares": "54665234" + }, + { + "voter": "brains", + "rshares": "27673000226" + }, + { + "voter": "steemafon", + "rshares": "1387263917" + }, + { + "voter": "chick1", + "rshares": "5753524189" + }, + { + "voter": "aoki", + "rshares": "50584036" + }, + { + "voter": "typingagent", + "rshares": "51568971" + }, + { + "voter": "cwb", + "rshares": "50528809" + }, + { + "voter": "freebornangel", + "rshares": "62515317" + }, + { + "voter": "anomaly", + "rshares": "339300528" + }, + { + "voter": "ellepdub", + "rshares": "2401297947" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "herpetologyguy", + "rshares": "12115690216" + }, + { + "voter": "morgan.waser", + "rshares": "4817018034" + }, + { + "voter": "dragonice", + "rshares": "50228382" + }, + { + "voter": "oxygen", + "rshares": "50907857" + }, + { + "voter": "palladium", + "rshares": "50873654" + }, + { + "voter": "sting", + "rshares": "50865840" + }, + { + "voter": "strong-ai", + "rshares": "3689865978" + }, + { + "voter": "ctu", + "rshares": "162917785" + }, + { + "voter": "ranger", + "rshares": "161815656" + }, + { + "voter": "shadowcash", + "rshares": "161700361" + }, + { + "voter": "sdc", + "rshares": "161218747" + }, + { + "voter": "bethesda", + "rshares": "158018960" + }, + { + "voter": "skrillex", + "rshares": "160835930" + }, + { + "voter": "cybergirls", + "rshares": "160319579" + }, + { + "voter": "fallout", + "rshares": "159175576" + }, + { + "voter": "steemwallet", + "rshares": "158732321" + }, + { + "voter": "icesteem", + "rshares": "158638676" + }, + { + "voter": "goldmatters", + "rshares": "31684221772" + }, + { + "voter": "dougkarr", + "rshares": "154247502" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 176, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/steem/@ozchartart/usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", + "blacklists": [] + }, + { + "post_id": 960293, + "author": "knozaki2015", + "permlink": "the-strangest-building-in-berlin", + "category": "contest", + "title": "SPOTTED #6 : The strangest Building in Berlin", + "body": "\n

\"SPOTTED\"

\n


\n

On my travel to Berlin, Germany I have SPOTTED this strange Building. 

\n

Can you guess the purpose of this strange corridor? 

\n


\n
\"2016-08-14
\nHere are some possible answers:

\n
    \n
  • This is a Passage where people used to smuggle food and cigarettes between West and East Berlin
  • \n
  • This is a Hospital and connecting two Wings
  • \n
  • This is a worm hole and connecting Berlin and Jupiter
  • \n
  • This is a Hostel and the toilets are in the other Wing
  • \n
  • ....
  • \n
\n


\n\"2016-08-14
\n
\n 

\n
To make it more fun a reward of 10 STEEM POWER will be given to the first correct answer of the purpose of this strange corridor.  
\n
And a Special Reward of 5 Steem Power goes to the strangest, funniest Answer!  
\n


\n

I will release the answer after a couple of hours so hurry and pick your answer. (2 answers per person only!!!)

\n

If you like my Post, please follow me! 

\n

I am blogging about the following topics :

\n
    \n
  • I travel the world (Travel and Restaurant Blog)
  • \n
  • Exposed (Uncovering Stories you need to know)
  • \n
  • Lifehacks (How to save money,etc) 
  • \n
  • SPOTTED (Limited Edition Food ,Drinks, Gadgets)
  • \n
  • Steemperlen (German Version)
  • \n
  • SQUEEZE (Interview Series) 
  • \n
  • COOKED (10 Episodes Cooking Series)
  • \n
\n", + "json_metadata": { + "tags": [ + "contest", + "travel", + "minnowsunite", + "steemsquad", + "berlin" + ], + "image": [ + "https://s14.postimg.org/i75tlx3s1/SPOTTED.jpg", + "https://s22.postimg.org/s90fnlg7l/2016_08_14_17_21_48.jpg", + "https://s22.postimg.org/q5q0fxgep/2016_08_14_17_22_34.jpg" + ], + "links": [ + "https://postimg.org/image/ciziv0zfh/", + "https://steemit.com/@knozaki2015", + "https://steemit.com/food/@knozaki2015/i-travel-the-world-part-25-cafe-viena-feat-the-worlds-best-sandwich-ny-times", + "https://steemit.com/deutsch/@knozaki2015/steemperlen-1", + "https://steemit.com/food/@knozaki2015/fantastic-seafood-paella-cooked-2-with-the-master-of-paella-gargon" + ] + }, + "created": "2016-09-15T18:23:30", + "updated": "2016-09-15T19:04:48", + "depth": 0, + "children": 28, + "net_rshares": 26540390904529, + "is_paidout": false, + "payout_at": "2016-09-16T18:49:34", + "payout": 44.638, + "pending_payout_value": "44.638 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "riverhead", + "rshares": "4134581798123" + }, + { + "voter": "pharesim", + "rshares": "3313249953310" + }, + { + "voter": "hr1", + "rshares": "2053236030423" + }, + { + "voter": "rossco99", + "rshares": "1271804694676" + }, + { + "voter": "jaewoocho", + "rshares": "22391622942" + }, + { + "voter": "joseph", + "rshares": "1534717563460" + }, + { + "voter": "aizensou", + "rshares": "98682259833" + }, + { + "voter": "recursive3", + "rshares": "452874558937" + }, + { + "voter": "masteryoda", + "rshares": "620996029765" + }, + { + "voter": "recursive", + "rshares": "3120582597678" + }, + { + "voter": "idol", + "rshares": "8927291120" + }, + { + "voter": "sakr", + "rshares": "4941942978" + }, + { + "voter": "chitty", + "rshares": "284401462010" + }, + { + "voter": "jocelyn", + "rshares": "1536592488" + }, + { + "voter": "edgeland", + "rshares": "154334962550" + }, + { + "voter": "eeks", + "rshares": "89897956816" + }, + { + "voter": "fkn", + "rshares": "1511911763" + }, + { + "voter": "paco-steem", + "rshares": "468281676" + }, + { + "voter": "spaninv", + "rshares": "5641697991" + }, + { + "voter": "elishagh1", + "rshares": "1987313581" + }, + { + "voter": "richman", + "rshares": "7803257741" + }, + { + "voter": "nanzo-scoop", + "rshares": "584291107228" + }, + { + "voter": "kefkius", + "rshares": "9857825141" + }, + { + "voter": "mummyimperfect", + "rshares": "172751875332" + }, + { + "voter": "coar", + "rshares": "313697862" + }, + { + "voter": "kevinwong", + "rshares": "603741881611" + }, + { + "voter": "murh", + "rshares": "1061266533" + }, + { + "voter": "cryptofunk", + "rshares": "6230798580" + }, + { + "voter": "error", + "rshares": "2003359924" + }, + { + "voter": "andu", + "rshares": "11584833708" + }, + { + "voter": "theshell", + "rshares": "58189176188" + }, + { + "voter": "ak2020", + "rshares": "49581045086" + }, + { + "voter": "satoshifund", + "rshares": "3925670964026" + }, + { + "voter": "applecrisp", + "rshares": "402139444" + }, + { + "voter": "stiletto", + "rshares": "365370465" + }, + { + "voter": "will-zewe", + "rshares": "219283354085" + }, + { + "voter": "herzmeister", + "rshares": "85402720456" + }, + { + "voter": "trogdor", + "rshares": "275016906945" + }, + { + "voter": "mark-waser", + "rshares": "5821262190" + }, + { + "voter": "geoffrey", + "rshares": "118356217412" + }, + { + "voter": "kimziv", + "rshares": "42740945757" + }, + { + "voter": "honeythief", + "rshares": "45359587433" + }, + { + "voter": "emily-cook", + "rshares": "75334808165" + }, + { + "voter": "superfreek", + "rshares": "2187607792" + }, + { + "voter": "thebatchman", + "rshares": "19975706505" + }, + { + "voter": "lehard", + "rshares": "59061289095" + }, + { + "voter": "orly", + "rshares": "3417427733" + }, + { + "voter": "riscadox", + "rshares": "5165610356" + }, + { + "voter": "cmtzco", + "rshares": "8950458328" + }, + { + "voter": "fabio", + "rshares": "198384500562" + }, + { + "voter": "tcfxyz", + "rshares": "25057642057" + }, + { + "voter": "futurefood", + "rshares": "6939984054" + }, + { + "voter": "endgame", + "rshares": "794749227" + }, + { + "voter": "furion", + "rshares": "7380892516" + }, + { + "voter": "sigmajin", + "rshares": "111055672943" + }, + { + "voter": "steem1653", + "rshares": "2632460141" + }, + { + "voter": "sveokla", + "rshares": "2860912097" + }, + { + "voter": "cynetyc", + "rshares": "124961861" + }, + { + "voter": "thegoodguy", + "rshares": "5250179537" + }, + { + "voter": "aaseb", + "rshares": "13846328779" + }, + { + "voter": "incomemonthly", + "rshares": "3857388226" + }, + { + "voter": "karen13", + "rshares": "4209533734" + }, + { + "voter": "deviedev", + "rshares": "10646469982" + }, + { + "voter": "nabilov", + "rshares": "243749878708" + }, + { + "voter": "noodhoog", + "rshares": "8751103405" + }, + { + "voter": "knozaki2015", + "rshares": "464730588449" + }, + { + "voter": "inertia", + "rshares": "93792164062" + }, + { + "voter": "creemej", + "rshares": "33739199475" + }, + { + "voter": "the-future", + "rshares": "2654553033" + }, + { + "voter": "nippel66", + "rshares": "14763294144" + }, + { + "voter": "blueorgy", + "rshares": "159342196635" + }, + { + "voter": "opheliafu", + "rshares": "167934545479" + }, + { + "voter": "poseidon", + "rshares": "932318275" + }, + { + "voter": "simon.braki.love", + "rshares": "3365797955" + }, + { + "voter": "deanliu", + "rshares": "31459352664" + }, + { + "voter": "sharker", + "rshares": "5497387091" + }, + { + "voter": "tokyodude", + "rshares": "1659490970" + }, + { + "voter": "jl777", + "rshares": "204618396015" + }, + { + "voter": "positive", + "rshares": "1226120506" + }, + { + "voter": "yarly", + "rshares": "1845389893" + }, + { + "voter": "yarly2", + "rshares": "278093833" + }, + { + "voter": "yarly3", + "rshares": "278509900" + }, + { + "voter": "yarly4", + "rshares": "160888481" + }, + { + "voter": "yarly5", + "rshares": "161796836" + }, + { + "voter": "yarly7", + "rshares": "92224612" + }, + { + "voter": "proto", + "rshares": "17267341753" + }, + { + "voter": "jasen.g1311", + "rshares": "230455938" + }, + { + "voter": "sisterholics", + "rshares": "7223043327" + }, + { + "voter": "yarly10", + "rshares": "446373286" + }, + { + "voter": "yarly11", + "rshares": "238875070" + }, + { + "voter": "royalmacro", + "rshares": "8781903824" + }, + { + "voter": "yarly12", + "rshares": "83516643" + }, + { + "voter": "sulev", + "rshares": "3448954519" + }, + { + "voter": "reported", + "rshares": "54477247" + }, + { + "voter": "uwe69", + "rshares": "6869641155" + }, + { + "voter": "jed78", + "rshares": "7506600577" + }, + { + "voter": "taker", + "rshares": "8734185109" + }, + { + "voter": "felixxx", + "rshares": "14430038673" + }, + { + "voter": "krushing", + "rshares": "51206711" + }, + { + "voter": "laonie", + "rshares": "255431411513" + }, + { + "voter": "twinner", + "rshares": "157521707420" + }, + { + "voter": "thebluepanda", + "rshares": "12593318020" + }, + { + "voter": "laoyao", + "rshares": "23916491019" + }, + { + "voter": "myfirst", + "rshares": "7994964655" + }, + { + "voter": "somebody", + "rshares": "51848391811" + }, + { + "voter": "flysaga", + "rshares": "1938565243" + }, + { + "voter": "gmurph", + "rshares": "2501638608" + }, + { + "voter": "chris.roy", + "rshares": "7842831090" + }, + { + "voter": "denn", + "rshares": "5558177167" + }, + { + "voter": "minnowsunited", + "rshares": "475501347" + }, + { + "voter": "midnightoil", + "rshares": "11453689270" + }, + { + "voter": "whatyouganjado", + "rshares": "51383056" + }, + { + "voter": "andrew0", + "rshares": "2275125890" + }, + { + "voter": "xiaohui", + "rshares": "28648120983" + }, + { + "voter": "elfkitchen", + "rshares": "1293711711" + }, + { + "voter": "joele", + "rshares": "99935909954" + }, + { + "voter": "oflyhigh", + "rshares": "5683510464" + }, + { + "voter": "makaveli", + "rshares": "56817337" + }, + { + "voter": "xiaokongcom", + "rshares": "895620436" + }, + { + "voter": "gargon", + "rshares": "12687522802" + }, + { + "voter": "future24", + "rshares": "1446509276" + }, + { + "voter": "xianjun", + "rshares": "1805414369" + }, + { + "voter": "alexbones", + "rshares": "50010551" + }, + { + "voter": "microluck", + "rshares": "118221929" + }, + { + "voter": "chinadaily", + "rshares": "2022702929" + }, + { + "voter": "pjheinz", + "rshares": "10261652613" + }, + { + "voter": "pompe72", + "rshares": "88481667" + }, + { + "voter": "serejandmyself", + "rshares": "83628622374" + }, + { + "voter": "pollina", + "rshares": "108403024" + }, + { + "voter": "mindfreak", + "rshares": "4931895395" + }, + { + "voter": "nastik", + "rshares": "14804566536" + }, + { + "voter": "onetree", + "rshares": "8856106682" + }, + { + "voter": "ozertayiz", + "rshares": "67782873" + }, + { + "voter": "steemitpatina", + "rshares": "4633082667" + }, + { + "voter": "dajohns1420", + "rshares": "1009554365" + }, + { + "voter": "salebored", + "rshares": "50215700" + }, + { + "voter": "nulliusinverba", + "rshares": "5401518277" + }, + { + "voter": "newandold", + "rshares": "3838533556" + }, + { + "voter": "pollux.one", + "rshares": "1576511020" + }, + { + "voter": "einsteinpotsdam", + "rshares": "7779349622" + }, + { + "voter": "richardcrill", + "rshares": "4900461398" + }, + { + "voter": "nadin3", + "rshares": "4662965424" + }, + { + "voter": "davidjkelley", + "rshares": "1625414479" + }, + { + "voter": "bitdrone", + "rshares": "50326099" + }, + { + "voter": "sleepcult", + "rshares": "50317967" + }, + { + "voter": "greatness", + "rshares": "174778016" + }, + { + "voter": "sponge-bob", + "rshares": "26571803569" + }, + { + "voter": "digital-wisdom", + "rshares": "15232622426" + }, + { + "voter": "ethical-ai", + "rshares": "3630299933" + }, + { + "voter": "zahnspange", + "rshares": "45843089173" + }, + { + "voter": "jwaser", + "rshares": "6682880996" + }, + { + "voter": "jaredandanissa", + "rshares": "217064607" + }, + { + "voter": "steemorama", + "rshares": "414338857" + }, + { + "voter": "smisi", + "rshares": "1655277599" + }, + { + "voter": "bwaser", + "rshares": "2617343597" + }, + { + "voter": "panther", + "rshares": "330365849" + }, + { + "voter": "brains", + "rshares": "27673000226" + }, + { + "voter": "funnyman", + "rshares": "4235195851" + }, + { + "voter": "anomaly", + "rshares": "271440423" + }, + { + "voter": "ellepdub", + "rshares": "2401297947" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "herpetologyguy", + "rshares": "11833929978" + }, + { + "voter": "morgan.waser", + "rshares": "4712300251" + }, + { + "voter": "anns", + "rshares": "1233685675" + }, + { + "voter": "strong-ai", + "rshares": "3609651500" + }, + { + "voter": "grisha-danunaher", + "rshares": "516546553" + }, + { + "voter": "michaelstobiersk", + "rshares": "1326703271" + }, + { + "voter": "dresden", + "rshares": "7187212765" + }, + { + "voter": "goldmatters", + "rshares": "30995623639" + }, + { + "voter": "bleujay", + "rshares": "117881389" + }, + { + "voter": "risabold", + "rshares": "304359441" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 171, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/contest/@knozaki2015/the-strangest-building-in-berlin", + "blacklists": [] + }, + { + "post_id": 960036, + "author": "groovedigital", + "permlink": "when-your-dad-works-in-hollywood", + "category": "life", + "title": "When Your Dad Works In Hollywood", + "body": "\n

https://www.youtube.com/watch?v=iJCi8yLN8_M

\n", + "json_metadata": { + "tags": [ + "life", + "comedy", + "film", + "art", + "funny" + ], + "image": [ + "https://img.youtube.com/vi/iJCi8yLN8_M/0.jpg" + ], + "links": [ + "https://www.youtube.com/watch?v=iJCi8yLN8_M" + ] + }, + "created": "2016-09-15T17:50:12", + "updated": "2016-09-15T17:50:12", + "depth": 0, + "children": 0, + "net_rshares": 40637225037243, + "is_paidout": false, + "payout_at": "2016-09-16T18:28:20", + "payout": 99.895, + "pending_payout_value": "99.895 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231809639013" + }, + { + "voter": "blocktrades", + "rshares": "40041987828800" + }, + { + "voter": "kenmonkey", + "rshares": "3500585753" + }, + { + "voter": "altoz", + "rshares": "34979300821" + }, + { + "voter": "alexft", + "rshares": "4698559215" + }, + { + "voter": "steem1653", + "rshares": "2733708608" + }, + { + "voter": "cynetyc", + "rshares": "124961861" + }, + { + "voter": "nabilov", + "rshares": "251367062418" + }, + { + "voter": "noodhoog", + "rshares": "8401059269" + }, + { + "voter": "rossenpavlov", + "rshares": "3291087867" + }, + { + "voter": "mandibil", + "rshares": "51505575275" + }, + { + "voter": "anomaly", + "rshares": "271440423" + }, + { + "voter": "andrewrait", + "rshares": "213847216" + }, + { + "voter": "bapparabi", + "rshares": "1871969417" + }, + { + "voter": "greencycles", + "rshares": "160935948" + }, + { + "voter": "dougkarr", + "rshares": "154247502" + }, + { + "voter": "goodbible", + "rshares": "153227837" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 17, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/life/@groovedigital/when-your-dad-works-in-hollywood", + "blacklists": [] + }, + { + "post_id": 959920, + "author": "mihaiart", + "permlink": "the-queen-of-amazon-drawing-a-visual-progression", + "category": "art", + "title": "The Queen of Amazon drawing: a visual progression.", + "body": "Another fun drawing! I did remind myself to photo from inception to final result so this post is not only fun but informative as well.\n\nThe amazonian queen starts off as a naked lady. This part is important because the way her muscles are shaped and how the flesh reacts to her position will influence how the clothes and weapons look. It's the most important step\n\n
https://www.steemimg.com/images/2016/09/15/14359031_1179410545449253_7138810569815121083_n9b234.jpg
\n
\n\nNow it is time to sketch the clothes, the accessories and the weapons. Notice how this si done OVER the original drawing so her leg is still flexed, inside the boot for example. That's how you get the natural look.\n\n
https://www.steemimg.com/images/2016/09/15/14330163_1179410578782583_6894606683148969420_nd50ca.jpg
\n
\n\nWith all this in place, it's easy but still very important part to add the finishing touches and bring her out of the page. Look alive and fierce!\n\n
https://www.steemimg.com/images/2016/09/15/14291733_1179410605449247_177194940755567235_n05e5d.jpg
\n\n#### And that how I draw an Amazonian Woman :) \n#### What do you think?", + "json_metadata": { + "tags": [ + "art", + "drawing", + "illustration", + "" + ], + "image": [ + "https://www.steemimg.com/images/2016/09/15/14359031_1179410545449253_7138810569815121083_n9b234.jpg", + "https://www.steemimg.com/images/2016/09/15/14330163_1179410578782583_6894606683148969420_nd50ca.jpg", + "https://www.steemimg.com/images/2016/09/15/14291733_1179410605449247_177194940755567235_n05e5d.jpg" + ] + }, + "created": "2016-09-15T17:37:24", + "updated": "2016-09-15T17:37:24", + "depth": 0, + "children": 2, + "net_rshares": 46651237670091, + "is_paidout": false, + "payout_at": "2016-09-16T18:37:02", + "payout": 130.13, + "pending_payout_value": "130.130 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231807201381" + }, + { + "voter": "blocktrades", + "rshares": "40042238111353" + }, + { + "voter": "badassmother", + "rshares": "1912120788268" + }, + { + "voter": "rossco99", + "rshares": "1271804694676" + }, + { + "voter": "wang", + "rshares": "2205816409649" + }, + { + "voter": "gregory60", + "rshares": "9028536224" + }, + { + "voter": "eeks", + "rshares": "14982984990" + }, + { + "voter": "fkn", + "rshares": "1007941175" + }, + { + "voter": "elishagh1", + "rshares": "1324875721" + }, + { + "voter": "coar", + "rshares": "313697862" + }, + { + "voter": "murh", + "rshares": "1061253912" + }, + { + "voter": "theshell", + "rshares": "59950860155" + }, + { + "voter": "kimziv", + "rshares": "10684554315" + }, + { + "voter": "razvanelulmarin", + "rshares": "88054033498" + }, + { + "voter": "skapaneas", + "rshares": "20605443611" + }, + { + "voter": "furion", + "rshares": "4920266872" + }, + { + "voter": "steem1653", + "rshares": "2834957075" + }, + { + "voter": "karen13", + "rshares": "4209522316" + }, + { + "voter": "deviedev", + "rshares": "10646469982" + }, + { + "voter": "nabilov", + "rshares": "251367062418" + }, + { + "voter": "luisucv34", + "rshares": "629471993" + }, + { + "voter": "lichtblick", + "rshares": "7017192292" + }, + { + "voter": "creemej", + "rshares": "33739070578" + }, + { + "voter": "the-future", + "rshares": "2726160685" + }, + { + "voter": "poseidon", + "rshares": "233065746" + }, + { + "voter": "mustafaomar", + "rshares": "20119987887" + }, + { + "voter": "jl777", + "rshares": "204617853645" + }, + { + "voter": "positive", + "rshares": "817413671" + }, + { + "voter": "anca3drandom", + "rshares": "35503255658" + }, + { + "voter": "proto", + "rshares": "17267307497" + }, + { + "voter": "sisterholics", + "rshares": "1805642436" + }, + { + "voter": "sulev", + "rshares": "3448353558" + }, + { + "voter": "andreynoch", + "rshares": "2002851358" + }, + { + "voter": "glitterpig", + "rshares": "3353931808" + }, + { + "voter": "taker", + "rshares": "8734139434" + }, + { + "voter": "laonie", + "rshares": "63852393470" + }, + { + "voter": "myfirst", + "rshares": "2664855399" + }, + { + "voter": "somebody", + "rshares": "12961218703" + }, + { + "voter": "flysaga", + "rshares": "484610059" + }, + { + "voter": "gmurph", + "rshares": "416939768" + }, + { + "voter": "midnightoil", + "rshares": "2863237212" + }, + { + "voter": "xiaohui", + "rshares": "7161285616" + }, + { + "voter": "elfkitchen", + "rshares": "323406893" + }, + { + "voter": "xiaokongcom", + "rshares": "223891286" + }, + { + "voter": "xianjun", + "rshares": "451324143" + }, + { + "voter": "borran", + "rshares": "11041591679" + }, + { + "voter": "macartem", + "rshares": "2958177650" + }, + { + "voter": "mihaiart", + "rshares": "24058315421" + }, + { + "voter": "gvargas123", + "rshares": "9827647000" + }, + { + "voter": "craigwilliamz", + "rshares": "8773942171" + }, + { + "voter": "jeff-kubitz", + "rshares": "52806920" + }, + { + "voter": "mikkolyytinen", + "rshares": "3091707749" + }, + { + "voter": "anomaly", + "rshares": "339288508" + }, + { + "voter": "michelle.gent", + "rshares": "4249431309" + }, + { + "voter": "orcish", + "rshares": "6368823978" + }, + { + "voter": "bapparabi", + "rshares": "1871969417" + }, + { + "voter": "wastedsoul", + "rshares": "164141037" + }, + { + "voter": "katharsisdrill", + "rshares": "87053502" + }, + { + "voter": "dougkarr", + "rshares": "154247502" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 59, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/art/@mihaiart/the-queen-of-amazon-drawing-a-visual-progression", + "blacklists": [] + }, + { + "post_id": 959892, + "author": "titusfrost", + "permlink": "new-mr-robot-episode-introduces-e-corp-s-new-ecoin", + "category": "mrrobot", + "title": "New Mr. Robot Episode Introduces E-Corp's New \"Ecoin\"", + "body": "# Is The Takeover of Crypto-Currencies About to Begin by the Central Banks?\n\nhttp://i.imgur.com/NxCYMpy.png\n([Image Source](http://www.e-corp-usa.com/ecoin/))\n\nThe show **Mr. Robot** has fictionalized the **\"Powers that Shouldn't Be\"** into a singular Corporation called **E Corp**. This E Corp is supposed to basically represent the powers behind the Global Central Bankers, the true World Rulers. The head of E Corp even states in a recent Episode \"Politicians are Puppets\", which reminds me of the quotation by Nathan Rothschild regarding the head on which the crown of England is placed. Clearly one could see that E Corp in the show is the fictionalization of the **\"Illuminati\"** if you will. The show is heavily laden with [esoteric symbolism](https://www.youtube.com/watch?v=l2lZn-ZcJMs) but to the public it comes across as \"counter-culture\" as the main character is the founding member of **\"F Society\"** a hacking group based directly on **\"Anonymous\"**. This hacking group causes a financial crash, which leads to E Corp releasing a new digital Currency called **\"ECoin\"**, the above image is from a promotional website for the TV show. \n\n## Is Mr. Robot demonizing Crypto-Currencies? \n\nhttp://i.imgur.com/f6gXhrn.jpg\n([Image Source](http://www.serialminds.com/2015/06/05/mr-robot-la-serie-che-sta-piacendo-tutti-forse-troppo/))\n\nNow the interesting part for those fans of crypto-currencies like everyone on **Steemit** and for everyone who uses **Bitcoin**. I think the reason for they added an \"Ecoin\" in this show is to demonize crypto-currencies. The powers that shouldn't be have no way to take over these crypto-currencies so they have decided to wage information war against them. With the countless videos warning about the rise of *\"digital only currency\"* being the *\"mark of the beast\"*, one could easily see lots of propaganda has already been employed. However this new form is quite intelligent, by associating \"ECoins\" with \"E Corp\" they make the average mind (who doesn't know what Bitcoin or Steemit really is), subconsciously associate all crypto-currencies with the Federal Reserve banskters, with \"E Corp\". This is classic subconscious guilt by association created entirely by fiction that is often employed in fictional movies. This is why I think the \"E Coin\" was added to the show, but I could be wrong, so why else might it be in this show? \n\n## Do the Elite Plan to Replace the Dollar with a Digital Only Currency? \nhttp://i.imgur.com/IJJxcBR.jpg\n([Image Source](https://www.cryptocoinsnews.com/why-bitcoin-value-doesnt-matter/))\n\nWe all know the financial system is basically teetering on the verge of collapse. It is the biggest ponzy scheme ever devised and like all ponzy schemes if the Federal Reserve doesn't increase demand for the use of it's currency the system will collapse. It was designed to collapse. I believe like many others for one reason, so they can start the whole process that made them so rich, all over again on a global scale. The new world order if you will, being run by financial despotism and technical autocracy. So, is their plan to create a financial collapse being shown in plain sight in this show? One idea I heard from my friend who maintains the [\"What is Real\" YouTube Channel](https://www.youtube.com/user/szymborski11) is they may \n>\"allow a false flag attack that they can blame on some shadowy hacking group, possibly even **Anonymous** itself as anyone can claim to be Anonymous\" \n\nPersonally I do not buy this theory as Anonymous is completely decentralized and would be almost impossible to blame for a false flag. However, to fully analyze a situation one must always look at every angle. \n\nSo if the system collapsed, especially overnight due to a hack, would they replace the Federal Reserve Notes with a new digital only \"E Coin\" backed by the IMF World Bank and their massive Gold Holdings, and Special Drawing Rights Holdings? The Group of Thirty, also known as the G30 reported in the [latest working papers on their website](http://group30.org/publications) that they want a return to a **GOLD Standard** just like how the Federal Reserve started out but in a new **Global Currency**. See my Documentary on the [\"Group of Thirty\"](https://www.youtube.com/watch?v=eOB9QfxsgdQ) for more on this group of 30 Central Bankers that meet in secret. So is it out of the realm of possibilities that the new Global Currency that the World Bank has planned for post the collapse of the Federal Reserve System is a new digital only currency based on Gold and SDR holdings? No this would make a lot of sense to me but what do you the readers think? \n\n## Decentralization the Key to Defeating Takeover of Crypto-Currencies by Central Banks\nhttp://i.imgur.com/KVNo7nE.jpg\n([Image Source](https://www.cryptocoinsnews.com/why-bitcoin-value-doesnt-matter/))\n\nThe decentralized concept at the basis of the crypto-currencies could be the key to their survival if the Central Banks decide to try and take over the market. Right now their is a few crypto-currencies that are from the perspective of a non trader even worth mentioning. **Bitcoin**, **Ethereum**, and **STEEM**, however if the Central Banks created a new \"ECoin\" it would easily make replace Bitcoin as the number 1 crypto-currency. However, there will always be a demand for crypto-currencies that are not \"Ecoins\", because thankfully we have a whole planet full of awesome people who will never conform to the system. The useless governments will always make things illegal that people want and can't buy with their new \"Ecoins\". So we will always have a demand for a currency like Bitcoin that is not a part of the centralized system, but is outside of that system's control. So try as they might, the powers that be can only wage information war against crypto-currencies because there will always be new entrepreneurs that create new currencies just like steemit, that are outside their systems of control. The harder the hidden hand squeezes the more of us will fall through their fingertips. \n\n#### Thanks for Reading! \nhttp://i.imgur.com/k10p6Pf.jpg\nIf you liked my article please join **steemit** and let me know by leaving a comment or upvoting! As always follow me on here [@TitusFrost](https://steemit.com/@titusfrost) for more hard hitting posts!", + "json_metadata": { + "tags": [ + "mrrobot", + "beyondbitcoin", + "steemit", + "bitcoin", + "ethereum" + ], + "image": [ + "http://i.imgur.com/NxCYMpy.png", + "http://i.imgur.com/f6gXhrn.jpg", + "http://i.imgur.com/IJJxcBR.jpg", + "http://i.imgur.com/KVNo7nE.jpg", + "http://i.imgur.com/k10p6Pf.jpg" + ], + "links": [ + "http://www.e-corp-usa.com/ecoin/", + "https://www.youtube.com/watch?v=l2lZn-ZcJMs", + "http://www.serialminds.com/2015/06/05/mr-robot-la-serie-che-sta-piacendo-tutti-forse-troppo/", + "https://www.cryptocoinsnews.com/why-bitcoin-value-doesnt-matter/", + "https://www.youtube.com/user/szymborski11", + "http://group30.org/publications", + "https://www.youtube.com/watch?v=eOB9QfxsgdQ", + "https://steemit.com/@titusfrost" + ] + }, + "created": "2016-09-15T17:34:42", + "updated": "2016-09-15T17:34:42", + "depth": 0, + "children": 4, + "net_rshares": 40565862465239, + "is_paidout": false, + "payout_at": "2016-09-16T18:41:34", + "payout": 99.561, + "pending_payout_value": "99.561 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231809756793" + }, + { + "voter": "blocktrades", + "rshares": "40042164500412" + }, + { + "voter": "rxhector", + "rshares": "734082781" + }, + { + "voter": "nabilov", + "rshares": "243749878708" + }, + { + "voter": "btcupload", + "rshares": "3813478158" + }, + { + "voter": "artific", + "rshares": "20189102884" + }, + { + "voter": "craigwilliamz", + "rshares": "8773942171" + }, + { + "voter": "etcmike", + "rshares": "10227302974" + }, + { + "voter": "titusfrost", + "rshares": "3827694728" + }, + { + "voter": "doitvoluntarily", + "rshares": "245531412" + }, + { + "voter": "alucard", + "rshares": "55752594" + }, + { + "voter": "anomaly", + "rshares": "271441624" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 12, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/mrrobot/@titusfrost/new-mr-robot-episode-introduces-e-corp-s-new-ecoin", + "blacklists": [] + }, + { + "post_id": 960471, + "author": "halo", + "permlink": "steemit-girl-halo-beautiful-day", + "category": "halo", + "title": "STEEMIT GIRL HALO ♡ Beautiful Day", + "body": "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/1e_zpszfkcfjtn.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/4e_zpsqprjeml3.jpg\n\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/2e_zps4liuaqhp.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/6e_zpshjwzv5b4.jpg\n\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/3e_zpstiifeqjc.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/5e_zpserzptebm.jpg", + "json_metadata": { + "tags": [ + "halo", + "photography", + "photos", + "steemitgirls", + "girls" + ], + "image": [ + "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/1e_zpszfkcfjtn.jpg", + "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/2e_zps4liuaqhp.jpg", + "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/3e_zpstiifeqjc.jpg" + ] + }, + "created": "2016-09-15T18:45:15", + "updated": "2016-09-15T18:46:27", + "depth": 0, + "children": 13, + "net_rshares": 15463146900495, + "is_paidout": false, + "payout_at": "2016-09-16T19:16:58", + "payout": 16.574, + "pending_payout_value": "16.574 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "smooth", + "rshares": "12523260993360" + }, + { + "voter": "smooth.witness", + "rshares": "2377105047841" + }, + { + "voter": "alexgr", + "rshares": "49168301700" + }, + { + "voter": "unosuke", + "rshares": "41161390898" + }, + { + "voter": "coar", + "rshares": "313699965" + }, + { + "voter": "murh", + "rshares": "1061303487" + }, + { + "voter": "kodi", + "rshares": "579494558" + }, + { + "voter": "will-zewe", + "rshares": "210512019921" + }, + { + "voter": "herzmeister", + "rshares": "85402720456" + }, + { + "voter": "everythink", + "rshares": "37088193309" + }, + { + "voter": "alexft", + "rshares": "4551729239" + }, + { + "voter": "gidlark", + "rshares": "1609525039" + }, + { + "voter": "steem1653", + "rshares": "2632467953" + }, + { + "voter": "halo", + "rshares": "42836399572" + }, + { + "voter": "noodhoog", + "rshares": "8401059269" + }, + { + "voter": "nippel66", + "rshares": "15070803886" + }, + { + "voter": "earnest", + "rshares": "1959134133" + }, + { + "voter": "beanz", + "rshares": "5068724760" + }, + { + "voter": "timelapse", + "rshares": "18607156497" + }, + { + "voter": "missmishel623", + "rshares": "68250832" + }, + { + "voter": "future24", + "rshares": "1446509276" + }, + { + "voter": "telos", + "rshares": "13841342477" + }, + { + "voter": "movievertigo", + "rshares": "3635091595" + }, + { + "voter": "netaterra", + "rshares": "2923037366" + }, + { + "voter": "freeinthought", + "rshares": "720031052" + }, + { + "voter": "chadcrypto", + "rshares": "195329269" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "orcish", + "rshares": "6368823978" + }, + { + "voter": "zaitsevalesyaa", + "rshares": "3200652561" + }, + { + "voter": "dresden", + "rshares": "4259089046" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 30, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/halo/@halo/steemit-girl-halo-beautiful-day", + "blacklists": [] + }, + { + "post_id": 959864, + "author": "tanyabtc", + "permlink": "jellyfish", + "category": "art", + "title": "Jellyfish", + "body": "Jellyfish is a perfect example of one of the weirdest creatures out there. In real life they are definitely not the most pleasant thing to touch and being surrounded with.\n\nIt wasn't a surprise for me but jellyfish don't have brains. Instead, they have nerve nets which sense changes in the environment and coordinate the animal's responses.\n\nHowever if you eliminate all of the fluff that people are talking about them, you can come up with something interesting and even fun.\n\nThis drawing is created using my favorite style, I hope you'll love it.\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish2_zpswbrk9ied.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish3_zpsx0rcjvko.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish1_zpsge408hgu.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish4_zpsmctahaql.jpg\n\n***\n\n###
Follow me for my future art work: [@tanyabtc](https://steemit.com/@tanyabtc)
", + "json_metadata": { + "tags": [ + "art", + "photography", + "life", + "nature", + "steemitartchallenge" + ], + "image": [ + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish2_zpswbrk9ied.jpg", + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish3_zpsx0rcjvko.jpg", + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish1_zpsge408hgu.jpg", + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish4_zpsmctahaql.jpg" + ], + "links": [ + "https://steemit.com/@tanyabtc" + ] + }, + "created": "2016-09-15T17:32:00", + "updated": "2016-09-15T17:32:00", + "depth": 0, + "children": 5, + "net_rshares": 40641175102128, + "is_paidout": false, + "payout_at": "2016-09-16T18:34:50", + "payout": 99.914, + "pending_payout_value": "99.914 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231809756793" + }, + { + "voter": "blocktrades", + "rshares": "40042090888143" + }, + { + "voter": "acidsun", + "rshares": "81790420316" + }, + { + "voter": "danielkt", + "rshares": "1026087885" + }, + { + "voter": "nabilov", + "rshares": "243749878708" + }, + { + "voter": "dmitriybtc", + "rshares": "5096232265" + }, + { + "voter": "dmilash", + "rshares": "3145812656" + }, + { + "voter": "marinaz", + "rshares": "538023492" + }, + { + "voter": "future24", + "rshares": "1446509276" + }, + { + "voter": "cmorton", + "rshares": "4098512589" + }, + { + "voter": "numberone", + "rshares": "83101859" + }, + { + "voter": "trev", + "rshares": "5712937692" + }, + { + "voter": "creatr", + "rshares": "62351093" + }, + { + "voter": "jlufer", + "rshares": "116660687" + }, + { + "voter": "jeff-kubitz", + "rshares": "53884613" + }, + { + "voter": "tanyabtc", + "rshares": "5532993072" + }, + { + "voter": "waldemar-kuhn", + "rshares": "53671263" + }, + { + "voter": "anomaly", + "rshares": "271440423" + }, + { + "voter": "orcish", + "rshares": "6368721210" + }, + { + "voter": "puffin", + "rshares": "4331450381" + }, + { + "voter": "dresden", + "rshares": "3795767712" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 21, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/art/@tanyabtc/jellyfish", + "blacklists": [] + }, + { + "post_id": 959506, + "author": "markrmorrisjr", + "permlink": "original-fiction-anarchist-s-almanac-episode-15", + "category": "story", + "title": "Original Fiction: Anarchist's Almanac, Episode 15", + "body": "## In this episode, Joshua Claiborne stands trial for violation of the First Law ##\n\n**“Whoa, whoa, whoa!” Phil screamed, “What the hell dude?”**\n\n*The Reaper crumpled to the floor, arms flailing as Joshua rode it to the ground. Finally, the hands found the catches at either side of the helmet and popped it off. A black, shaggy head of hair emerged.* \n\n***If you've missed episodes, [visit my blog](https://steemit.com/@markrmorrisjr) to catch up. Be sure to follow me for updates in your feed!***\n\n“Emil?” Stella said, “Meet Joshua. Are you okay?”\n\nEmil, the Reaper suit’s operator laughed, “Yeah, I’m fine, but that was awesome! Can you teach us that?”\n\n“Man! Now I have to rebuild this helmet,” Phil held up a small remote. “All I had to do was push this button,” he said, pressing it, as the suit powered down. “What did you do?”\n\n“The ‘nerve’ bundle that controls these things motor skills is on the very top of the skull, under a thin piece of sheet metal, puncture it, it collapses. You didn’t know that?” Joshua said. \n\n“Well, it appears we may need you more than you need us,” Stella said. “So, just say the word and we’ll get you where you need to be. Meanwhile, my team will be working on your son’s location.”\n\nJoshua dropped the letter opener and walked to the stairs, “Fine, whatever you need to collect from my meeting, get it. Now, who’s driving?” With that, he walked up the stairs, he had no more time to waste. \n\n**The Mapleton courthouse sat on a hill in the center of the town, overlooking the area around for miles.** \n\n*Joshua insisted that the team Stella had sent stop 5 miles out and allow him to ride in on the electric trike alone, while they observed the meeting from a distance.* \n\nHe carried the tiny remote in his shirt pocket, a gift from Phil. “That’s my only prototype, so don’t lose it,” he’d said. \n\n![enter image description here](https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg)\n\nFrom the end of Main Street, looking up toward the courthouse, Joshua counted at least six reapers. He wondered how far the signal from the remote would travel. \n\nHe thought about pressing it now, disarming his enemy, then walking in, but he’d still have to deal with the six drivers, if they managed to escape the suits. \n\nBesides, Stella seemed to think there was some secret they were going to give away, although Joshua couldn’t imagine it. \n\n*He checked his watch, ten minutes until his scheduled time and while he knew better than to be late, he had no intention of giving the Consensus one more second than he had to.* \n\nThe trike spun it’s tires on a patch of loose gravel as he started back up. He decided a quick approach was best. He charged up the hill, jumping the “Mayor’s” parking barrier and rolling up to the foot of the front stairs, he cranked the accelerator and the trike rose up on its back wheel, popping the two front wheels, over the bottom step. \n\nThe machine had more than enough power to climb the steps and Joshua skidded to a stop outside the courthouse door. He stopped and turned back toward the town, the six Reapers swarming toward him up the steps. He powered down, swung his leg up and over the bike and opened the door. \n\n**The Reapers followed him into the hall as he approached the court room.** \n\nThe Magistrate sat behind the judge’s bench and Joshua couldn’t help but smirk at the insult to the very concept of actual justice that this thing represented. \n\n“Joshua Claiborne, appearing as requested,” Joshua said, standing directly in front of the Magistrate. \n\n![enter image description here](https://s12.postimg.org/6h4lvyh7x/judge.jpg)\n\n> “Yes, Mr. Claiborne, have a seat,” A woman’s face, projected on the face shield of the Magistrate said.\n\n“I’d rather stand,” he said. \n\n> “Suit yourself, may we have the room, please?” she said, looking toward the reapers that had entered the back doors of the courtroom.\n\nThey left quietly. \n\n> “Mr. Claiborne, you’re charged with violation of the first law, in so\n> much as you have encouraged and joined in the activity of settling\n> outside of Consensus approved areas, acted outside of the legal\n> jurisdiction of the council and on more than one occasion, acted\n> against the best interest of Consensus, including attacking duly\n> authorized Magistrates in the course of their legally binding duties,\n> how do you plead?”\n\n**The woman looked at Joshua, peering over a pair of short, square spectacles, like some sort of outdated stereotype.** \n\n“Not guilty, by reason of illegitimacy of the currently established government and its ensigns. I am not, nor do I choose to become, subject to your law. I stand judged as innocent by natural law, insomuch as I have not caused harm to another human in aggression, damaged or stolen property, nor unnecessarily restricted the liberty of any other person. I recognize no other responsibility to my fellow man,” Joshua said calmly. \n\n> “Be that as it may, Mr. Claiborne, we are not here under the auspices of “natural law” but rather, under the Council mandated authority of the Consensus and its Magisterial Ministry, of which I am a part and I assure you, you are subject to,”\n\nThe woman intoned, her expression one of almost sheer boredom.\n\n> “Court finds the defendant guilty and remands the subject for immediate judicial murder.”\n\nThe magistrate raised its arm and brought it down on the bench with a solid thud, that echoed through the court. Joshua felt his heart sink as the Reapers reentered the court and moved up to surround him. \n\n## Look for the upvote button below. If you liked the post, upvote and share! If you're not on Steemit yet, why not? You get free money for signing up! ##", + "json_metadata": { + "tags": [ + "story", + "fiction", + "anarchy", + "life", + "minnowsunited" + ], + "image": [ + "https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg", + "https://s12.postimg.org/6h4lvyh7x/judge.jpg" + ], + "links": [ + "https://steemit.com/@markrmorrisjr" + ] + }, + "created": "2016-09-15T16:54:06", + "updated": "2016-09-15T16:54:06", + "depth": 0, + "children": 2, + "net_rshares": 62355283653318, + "is_paidout": false, + "payout_at": "2016-09-16T18:15:42", + "payout": 227.863, + "pending_payout_value": "227.863 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231809639013" + }, + { + "voter": "blocktrades", + "rshares": "40859141206977" + }, + { + "voter": "badassmother", + "rshares": "1912118346075" + }, + { + "voter": "xeldal", + "rshares": "7113882084470" + }, + { + "voter": "enki", + "rshares": "5763993012820" + }, + { + "voter": "rossco99", + "rshares": "1304415071462" + }, + { + "voter": "joseph", + "rshares": "1577462576089" + }, + { + "voter": "masteryoda", + "rshares": "651993277150" + }, + { + "voter": "boatymcboatface", + "rshares": "446958795092" + }, + { + "voter": "idol", + "rshares": "9168101098" + }, + { + "voter": "wpalczynski", + "rshares": "23383993964" + }, + { + "voter": "sakr", + "rshares": "5044693986" + }, + { + "voter": "jocelyn", + "rshares": "1578030666" + }, + { + "voter": "gregory-f", + "rshares": "14818192446" + }, + { + "voter": "eeks", + "rshares": "74914583876" + }, + { + "voter": "fkn", + "rshares": "1007941175" + }, + { + "voter": "james-show", + "rshares": "8867224532" + }, + { + "voter": "elishagh1", + "rshares": "1324875721" + }, + { + "voter": "richman", + "rshares": "7802860274" + }, + { + "voter": "acidyo", + "rshares": "24193131603" + }, + { + "voter": "coar", + "rshares": "313691550" + }, + { + "voter": "murh", + "rshares": "1061234978" + }, + { + "voter": "error", + "rshares": "2057413439" + }, + { + "voter": "theshell", + "rshares": "59950022330" + }, + { + "voter": "taoteh1221", + "rshares": "400880323222" + }, + { + "voter": "applecrisp", + "rshares": "410517349" + }, + { + "voter": "trogdor", + "rshares": "280737930617" + }, + { + "voter": "tee-em", + "rshares": "5287820211" + }, + { + "voter": "geoffrey", + "rshares": "121383360964" + }, + { + "voter": "kimziv", + "rshares": "10684548905" + }, + { + "voter": "acassity", + "rshares": "30279968088" + }, + { + "voter": "venuspcs", + "rshares": "45145254362" + }, + { + "voter": "getssidetracked", + "rshares": "7264907621" + }, + { + "voter": "trees", + "rshares": "1414199127" + }, + { + "voter": "strawhat", + "rshares": "197179742" + }, + { + "voter": "steemswede", + "rshares": "1159208963" + }, + { + "voter": "cryptochannel", + "rshares": "691425107" + }, + { + "voter": "endgame", + "rshares": "894044199" + }, + { + "voter": "furion", + "rshares": "4920266872" + }, + { + "voter": "steem1653", + "rshares": "2834923420" + }, + { + "voter": "steemit-life", + "rshares": "25221166135" + }, + { + "voter": "sitaru", + "rshares": "13516878845" + }, + { + "voter": "snowden", + "rshares": "80777327" + }, + { + "voter": "aaseb", + "rshares": "14167503457" + }, + { + "voter": "karen13", + "rshares": "4209522316" + }, + { + "voter": "nabilov", + "rshares": "243749878708" + }, + { + "voter": "luisucv34", + "rshares": "677892916" + }, + { + "voter": "creemej", + "rshares": "34761252099" + }, + { + "voter": "poseidon", + "rshares": "233065746" + }, + { + "voter": "thylbom", + "rshares": "82781233416" + }, + { + "voter": "deanliu", + "rshares": "32543319555" + }, + { + "voter": "rainchen", + "rshares": "5428442637" + }, + { + "voter": "jl777", + "rshares": "204617448258" + }, + { + "voter": "pokemon", + "rshares": "103514864" + }, + { + "voter": "positive", + "rshares": "817413671" + }, + { + "voter": "chloetaylor", + "rshares": "6361356981" + }, + { + "voter": "proto", + "rshares": "17267278949" + }, + { + "voter": "sisterholics", + "rshares": "1805641835" + }, + { + "voter": "reported", + "rshares": "61286903" + }, + { + "voter": "taker", + "rshares": "8734133724" + }, + { + "voter": "krushing", + "rshares": "57607550" + }, + { + "voter": "laonie", + "rshares": "63852353198" + }, + { + "voter": "laoyao", + "rshares": "24561889230" + }, + { + "voter": "myfirst", + "rshares": "1332427399" + }, + { + "voter": "somebody", + "rshares": "12961212091" + }, + { + "voter": "flysaga", + "rshares": "484610059" + }, + { + "voter": "gmurph", + "rshares": "2084691327" + }, + { + "voter": "minnowsunited", + "rshares": "513517114" + }, + { + "voter": "midnightoil", + "rshares": "2863236010" + }, + { + "voter": "whatyouganjado", + "rshares": "56653113" + }, + { + "voter": "kurtbeil", + "rshares": "3323984357" + }, + { + "voter": "xiaohui", + "rshares": "7161280807" + }, + { + "voter": "elfkitchen", + "rshares": "323406893" + }, + { + "voter": "oflyhigh", + "rshares": "5855543935" + }, + { + "voter": "makaveli", + "rshares": "63373184" + }, + { + "voter": "xiaokongcom", + "rshares": "223891286" + }, + { + "voter": "future24", + "rshares": "1780319109" + }, + { + "voter": "thebotkiller", + "rshares": "7709317035" + }, + { + "voter": "xianjun", + "rshares": "451324143" + }, + { + "voter": "herbertmueller", + "rshares": "647921440" + }, + { + "voter": "alexbones", + "rshares": "56109399" + }, + { + "voter": "chinadaily", + "rshares": "2022625104" + }, + { + "voter": "serejandmyself", + "rshares": "90172824082" + }, + { + "voter": "nang1", + "rshares": "163783062" + }, + { + "voter": "netaterra", + "rshares": "2982676167" + }, + { + "voter": "dobbydaba", + "rshares": "52319145" + }, + { + "voter": "andrewawerdna", + "rshares": "22559404087" + }, + { + "voter": "ozertayiz", + "rshares": "77466140" + }, + { + "voter": "steemitpatina", + "rshares": "4633082667" + }, + { + "voter": "salebored", + "rshares": "55922029" + }, + { + "voter": "runridefly", + "rshares": "2196862373" + }, + { + "voter": "shenanigator", + "rshares": "115288806334" + }, + { + "voter": "funkywanderer", + "rshares": "1709331623" + }, + { + "voter": "richardcrill", + "rshares": "4594182561" + }, + { + "voter": "markrmorrisjr", + "rshares": "79155262951" + }, + { + "voter": "bitdrone", + "rshares": "55917888" + }, + { + "voter": "sleepcult", + "rshares": "55908853" + }, + { + "voter": "sponge-bob", + "rshares": "27677639861" + }, + { + "voter": "doitvoluntarily", + "rshares": "12031039232" + }, + { + "voter": "thecyclist", + "rshares": "67696453939" + }, + { + "voter": "kev7000", + "rshares": "646493719" + }, + { + "voter": "analyzethis", + "rshares": "55266473" + }, + { + "voter": "brains", + "rshares": "27671309914" + }, + { + "voter": "burnin", + "rshares": "5866415576" + }, + { + "voter": "bitcoinparadise", + "rshares": "1352324852" + }, + { + "voter": "funnyman", + "rshares": "4235074146" + }, + { + "voter": "f1111111", + "rshares": "50193769" + }, + { + "voter": "anomaly", + "rshares": "339287005" + }, + { + "voter": "inarix03", + "rshares": "63405661" + }, + { + "voter": "ola1", + "rshares": "98545946" + }, + { + "voter": "michelle.gent", + "rshares": "4382226038" + }, + { + "voter": "mari5555na", + "rshares": "66935282" + }, + { + "voter": "goldmatters", + "rshares": "31683945302" + }, + { + "voter": "majes", + "rshares": "155180811" + }, + { + "voter": "dealzgal", + "rshares": "71727340" + }, + { + "voter": "storage", + "rshares": "68013381" + }, + { + "voter": "blackmarket", + "rshares": "58460105" + }, + { + "voter": "gifts", + "rshares": "61530871" + }, + { + "voter": "expat", + "rshares": "96643251" + }, + { + "voter": "toddemaher1", + "rshares": "129609202" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 120, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/story/@markrmorrisjr/original-fiction-anarchist-s-almanac-episode-15", + "blacklists": [] + }, + { + "post_id": 959690, + "author": "mevilkingdom", + "permlink": "the-gift-of-family-stories-of-a-toy-collector-1", + "category": "life", + "title": "The gift of family: Stories of a toy collector #1", + "body": "## Hi Steemians! The greatest thing about being a collector is that people always know what to buy for your birthday. Not perfume or cookware, but always things you love!\n\nHere are some pictures of what I received the last couple of times.\n\n----\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC01422.JPG)
\n\nThese are all the gifts I received for my birthday this year. I got some cool dolls, chocolates, care bears, my little ponies and even a puzzle. What a lovely 27th birthday!\n\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC09982.JPG)
\n\nChristmas is only once a year, good thing for my family! Lots of dolls and some ponies. You can tell everyone is really supportive of my hobby.\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05838.JPG)
\nThis is what **Sinterklaas** (he brings gifts on the 6th of December) brought me. Did you know I also collect Lego to some extent?\n___\n\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05066.JPG)
\nGifts from **Disneyland Paris**\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05622.JPG)
\nEven more **Disneyland** gifts, this time for Christmas 2 years ago. Those cookies are just **THE BEST**!\nNot to mention that they're Mickey-shaped.\n\n___\n\nThank you very much for looking at my pictures! Don't forget to **follow me** for more pictures!\n\n\n---- \n\n### Who is Mande Walschot?\n\n> Mande Walschot resides in Belgium and currently owns over 1,350 boxed My Little Ponies, around 500 boxed dolls, 52 polly pockets, 25 plush care bears, 30 Tsum Tsums, about 3,000 Pokémon cards, around 200 comic books and lots of stuffed toys! [Gemr spotlight collection](https://blogadmin.gemr.com/blog/collector-spotlight-mande-walschot/)\n\nAlso seen on [national television](http://ringtv.be/nieuws/mande-uit-halle-heeft-grootste-poppenverzameling-uit-regio) and [newspapers](http://www.hln.be/regio/nieuws-uit-halle/mande-leeft-samen-met-1-357-pony-s-a2797213/).\n\n\nSister of @steve-walschot, the creator of SteemPay.io and vouched Steem applications developer and girlfriend of game-enthusiast @herrlonnie.", + "json_metadata": { + "tags": [ + "life", + "story", + "collector", + "toys", + "mandesevilkingdom" + ], + "users": [ + "steve-walschot", + "herrlonnie" + ], + "image": [ + "http://mandesevilkingdom.com/steemit/post6/DSC01422.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC09982.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC05838.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC05066.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC05622.JPG" + ], + "links": [ + "https://blogadmin.gemr.com/blog/collector-spotlight-mande-walschot/", + "http://ringtv.be/nieuws/mande-uit-halle-heeft-grootste-poppenverzameling-uit-regio", + "http://www.hln.be/regio/nieuws-uit-halle/mande-leeft-samen-met-1-357-pony-s-a2797213/" + ] + }, + "created": "2016-09-15T17:14:30", + "updated": "2016-09-15T17:14:30", + "depth": 0, + "children": 3, + "net_rshares": 46309406304713, + "is_paidout": false, + "payout_at": "2016-09-16T19:31:38", + "payout": 128.305, + "pending_payout_value": "128.305 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "smooth", + "rshares": "31308460859447" + }, + { + "voter": "anonymous", + "rshares": "231810333637" + }, + { + "voter": "liondani", + "rshares": "1020236794603" + }, + { + "voter": "xeroc", + "rshares": "1950774078440" + }, + { + "voter": "masteryoda", + "rshares": "636514783207" + }, + { + "voter": "smooth.witness", + "rshares": "5943125371535" + }, + { + "voter": "steemrollin", + "rshares": "800066797130" + }, + { + "voter": "eeks", + "rshares": "14982933604" + }, + { + "voter": "instructor2121", + "rshares": "32368367444" + }, + { + "voter": "teamsteem", + "rshares": "326639006522" + }, + { + "voter": "steve-walschot", + "rshares": "178446109019" + }, + { + "voter": "coar", + "rshares": "313697862" + }, + { + "voter": "murh", + "rshares": "1061253912" + }, + { + "voter": "ranko-k", + "rshares": "40553528416" + }, + { + "voter": "cyber", + "rshares": "970586830705" + }, + { + "voter": "drinkzya", + "rshares": "35244223389" + }, + { + "voter": "thecryptodrive", + "rshares": "57203974765" + }, + { + "voter": "tee-em", + "rshares": "5287780547" + }, + { + "voter": "michaelx", + "rshares": "31345579234" + }, + { + "voter": "razvanelulmarin", + "rshares": "88062402472" + }, + { + "voter": "cryptoiskey", + "rshares": "34073699558" + }, + { + "voter": "mrhankeh", + "rshares": "484636799" + }, + { + "voter": "clement", + "rshares": "37152547241" + }, + { + "voter": "isteemit", + "rshares": "49807514764" + }, + { + "voter": "bacchist", + "rshares": "68450553516" + }, + { + "voter": "venuspcs", + "rshares": "52093553829" + }, + { + "voter": "ausbitbank", + "rshares": "14885828588" + }, + { + "voter": "steem1653", + "rshares": "2632467953" + }, + { + "voter": "anyx", + "rshares": "185292018100" + }, + { + "voter": "snowden", + "rshares": "80777327" + }, + { + "voter": "luisucv34", + "rshares": "629471993" + }, + { + "voter": "wildchild", + "rshares": "87223247" + }, + { + "voter": "the-future", + "rshares": "2726160685" + }, + { + "voter": "blueorgy", + "rshares": "167307855189" + }, + { + "voter": "bitcoiner", + "rshares": "3709595271" + }, + { + "voter": "zaebars", + "rshares": "30989825780" + }, + { + "voter": "raymonjohnstone", + "rshares": "799615699" + }, + { + "voter": "steemchain", + "rshares": "50626015" + }, + { + "voter": "whalepool", + "rshares": "50626015" + }, + { + "voter": "tygergamer", + "rshares": "4233708636" + }, + { + "voter": "clevecross", + "rshares": "15951876294" + }, + { + "voter": "steemdrive", + "rshares": "138539449846" + }, + { + "voter": "gomeravibz", + "rshares": "50579614280" + }, + { + "voter": "merej99", + "rshares": "2157207095" + }, + { + "voter": "laonie1", + "rshares": "22969491561" + }, + { + "voter": "laonie2", + "rshares": "23486297008" + }, + { + "voter": "laonie3", + "rshares": "23494592105" + }, + { + "voter": "brendio", + "rshares": "5831750244" + }, + { + "voter": "gmurph", + "rshares": "416938566" + }, + { + "voter": "michellek", + "rshares": "50577648" + }, + { + "voter": "laonie4", + "rshares": "23490269143" + }, + { + "voter": "laonie5", + "rshares": "23487998630" + }, + { + "voter": "laonie6", + "rshares": "23485020903" + }, + { + "voter": "laonie7", + "rshares": "23480867466" + }, + { + "voter": "kurtbeil", + "rshares": "3323846130" + }, + { + "voter": "laonie8", + "rshares": "23477419388" + }, + { + "voter": "laonie9", + "rshares": "23474718053" + }, + { + "voter": "steemleak", + "rshares": "2370262538" + }, + { + "voter": "mevilkingdom", + "rshares": "7991657587" + }, + { + "voter": "bigsambucca", + "rshares": "88206053" + }, + { + "voter": "paynode", + "rshares": "2343161589" + }, + { + "voter": "stevescriber", + "rshares": "72135954" + }, + { + "voter": "loli", + "rshares": "51247757" + }, + { + "voter": "nano2nd", + "rshares": "52419023" + }, + { + "voter": "cryptoblu", + "rshares": "61430307" + }, + { + "voter": "instructor", + "rshares": "61423628" + }, + { + "voter": "dollarvigilante", + "rshares": "802020725261" + }, + { + "voter": "lamech-m", + "rshares": "4056826699" + }, + { + "voter": "laonie10", + "rshares": "23468511648" + }, + { + "voter": "kamil5", + "rshares": "159631404" + }, + { + "voter": "garywilson", + "rshares": "8706975244" + }, + { + "voter": "bitchplease", + "rshares": "50829277" + }, + { + "voter": "trev", + "rshares": "5831957227" + }, + { + "voter": "barrycooper", + "rshares": "99130059443" + }, + { + "voter": "hilarski", + "rshares": "32443492367" + }, + { + "voter": "shadowspub", + "rshares": "2029369552" + }, + { + "voter": "rimann", + "rshares": "8558777427" + }, + { + "voter": "rickmiller", + "rshares": "58139915" + }, + { + "voter": "nulliusinverba", + "rshares": "5401518277" + }, + { + "voter": "mikehere", + "rshares": "22792452702" + }, + { + "voter": "laonie11", + "rshares": "22621808463" + }, + { + "voter": "xanoxt", + "rshares": "3411072843" + }, + { + "voter": "l0k1", + "rshares": "4044651818" + }, + { + "voter": "freesteem", + "rshares": "50798127" + }, + { + "voter": "saramiller", + "rshares": "450072622" + }, + { + "voter": "zettar", + "rshares": "2353724275" + }, + { + "voter": "dexter-k", + "rshares": "6066265903" + }, + { + "voter": "doggnostic", + "rshares": "53871683" + }, + { + "voter": "ct-gurus", + "rshares": "674641805" + }, + { + "voter": "jenny-talls", + "rshares": "53593366" + }, + { + "voter": "charlieshrem", + "rshares": "415654681468" + }, + { + "voter": "tracemayer", + "rshares": "61826073622" + }, + { + "voter": "bitcoinparadise", + "rshares": "1386999849" + }, + { + "voter": "steemsquad", + "rshares": "2170339399" + }, + { + "voter": "vsmith08162016", + "rshares": "52104641" + }, + { + "voter": "anomaly", + "rshares": "339288508" + }, + { + "voter": "inarix03", + "rshares": "63405661" + }, + { + "voter": "teemsteem", + "rshares": "51238118" + }, + { + "voter": "steemprincess", + "rshares": "50975390" + }, + { + "voter": "ninjapainter", + "rshares": "52329350" + }, + { + "voter": "rusteemitblog", + "rshares": "1630374239" + }, + { + "voter": "dealzgal", + "rshares": "71727340" + }, + { + "voter": "storage", + "rshares": "68013381" + }, + { + "voter": "blackmarket", + "rshares": "58460105" + }, + { + "voter": "gifts", + "rshares": "61530871" + }, + { + "voter": "expat", + "rshares": "99404487" + }, + { + "voter": "steemtrail", + "rshares": "140412636" + }, + { + "voter": "steemlift", + "rshares": "1593664040" + }, + { + "voter": "toddemaher1", + "rshares": "132623369" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 109, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/life/@mevilkingdom/the-gift-of-family-stories-of-a-toy-collector-1", + "blacklists": [] + }, + { + "post_id": 960355, + "author": "eneismijmich", + "permlink": "4rgubt-journey-of-life", + "category": "mindfulness", + "title": "Journey of life", + "body": "You must have heard that life is a journey, not a destination. This is the big truth that we, repeatedly, understand superficially. Often we are so focused on the goal, that we completely forget to enjoy the path.\n\nhttps://puu.sh/rbX2i/70e07ec186.png\n\nWhen we achieve the goal, we forget to enjoy it and immediately create a new goal. That is not life, this is racing with life. I am certain that you will not be happy, bur rather tired. Soul searches for the experience, while the mind and ego give signs if something is good or bad for us. Soul is completely indifferent. For the soul, every experience means celebration, while you are maybe crying because of the mind, to whom literally a lot of things does not make sense. \n\nThe same applies to the transformation called *death*. We celebrate resurrection as the greatest symbol of life, and then we are crying in the moment of someone's death. The mind is strange, isn't it?\n\nhttps://puu.sh/rbX1U/3cc83557c6.png\n\nRelax. It doesn't matter where you are in your level of expansion, you can't miss the road to home. While you are breathing, you are on the right track. Try to accept this moment as a moment in which there is no goal, and there is no end. The game never ends. This is excellent news. We came here to play, not to win. The game ends with victory, and God's Child in us still wants to play.\n\nOne beautiful wisdom reminds us: *\"Everything will be fine. If it isn't fine, then it isn't the end.\"* You always have the chance for new choices. This is very important to understand. You shouldn't hate the process just because you are not on your imaginary goal. You trust the process. You are exactly where your soul wants you to be. Don't let your mind tell you any different. \n\nhttps://puu.sh/rbXjG/ea493b7d14.png\n\nEverything is always a matter of the focus on things you have instead of the things you are missing. Today, again you are taking for granted the things that once were a goal. You forget to enjoy. Time is only an illusion of the mind. What if that is the point that you current process wants to teach you? If time is illusion, and it is, what's the hurry?\n\nhttps://puu.sh/rbWSn/313549d802.png\n\nTake a deep breath in and out. Experience life in the breath. The only goal is hiding in the breath of life. Everything is good, just the way it is. Don't forget that nothing ever happens without the God's blessing. Don't forget that you are guided. And, the most important, don't forget that we would most certainly go wrong if we'd try to determine what is the best time for us. The one who sees the big picture knows where you're headed and where you want to arrive.\n\nhttps://puu.sh/rbWLA/86e34b50b7.png\n\nTrust the process. It is the true test of our faith and wisdom. And enjoy. Without it nothing makes sense, right?\nThe sentence that many repeat in the end of the road: *\"I should've enjoyed more!\"*\n\nAll our life is a mere blink of an eye in the eternity. It is too small for such amount of worry. The life is not a serious thing, just the opposite. Life is the experience game. The point is not in the destination. The journey is our only destination. Isn't it then wiser to enjoy right away?\n\nhttps://puu.sh/rbX8F/2ea42f6dc9.png\n\n*\"Success isn't measured by money or material things.*\n*Success is measured by the amount of joy you feel.\"*\n\nFor more awesome images check this guy: [Psychedelic Maniac](thepsychedelicmaniac.tumblr.com)", + "json_metadata": { + "tags": [ + "mindfulness", + "life", + "health", + "psychology", + "philosophy" + ], + "image": [ + "https://puu.sh/rbX2i/70e07ec186.png", + "https://puu.sh/rbX1U/3cc83557c6.png", + "https://puu.sh/rbXjG/ea493b7d14.png", + "https://puu.sh/rbWSn/313549d802.png", + "https://puu.sh/rbWLA/86e34b50b7.png", + "https://puu.sh/rbX8F/2ea42f6dc9.png" + ], + "links": [ + "thepsychedelicmaniac.tumblr.com" + ] + }, + "created": "2016-09-15T18:31:45", + "updated": "2016-09-15T18:51:54", + "depth": 0, + "children": 0, + "net_rshares": 14809262337539, + "is_paidout": false, + "payout_at": "2016-09-16T18:57:11", + "payout": 15.34, + "pending_payout_value": "15.340 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231809773619" + }, + { + "voter": "riverhead", + "rshares": "4134589909216" + }, + { + "voter": "hr1", + "rshares": "2006571575186" + }, + { + "voter": "rossco99", + "rshares": "1239194317889" + }, + { + "voter": "wang", + "rshares": "2206071653405" + }, + { + "voter": "jaewoocho", + "rshares": "22391622942" + }, + { + "voter": "joseph", + "rshares": "1534823711950" + }, + { + "voter": "masteryoda", + "rshares": "621013263954" + }, + { + "voter": "idol", + "rshares": "8927357821" + }, + { + "voter": "steemrollin", + "rshares": "800261748895" + }, + { + "voter": "sakr", + "rshares": "4839028197" + }, + { + "voter": "jocelyn", + "rshares": "1536592488" + }, + { + "voter": "craig-grant", + "rshares": "365729210153" + }, + { + "voter": "eeks", + "rshares": "44948978408" + }, + { + "voter": "fkn", + "rshares": "1007941175" + }, + { + "voter": "elishagh1", + "rshares": "1324875721" + }, + { + "voter": "richman", + "rshares": "7803257741" + }, + { + "voter": "coar", + "rshares": "313699965" + }, + { + "voter": "murh", + "rshares": "1061266533" + }, + { + "voter": "error", + "rshares": "2003359924" + }, + { + "voter": "theshell", + "rshares": "58189176188" + }, + { + "voter": "will-zewe", + "rshares": "223669021166" + }, + { + "voter": "herzmeister", + "rshares": "85402720456" + }, + { + "voter": "trogdor", + "rshares": "275016906945" + }, + { + "voter": "kimziv", + "rshares": "42740945757" + }, + { + "voter": "furion", + "rshares": "4920595011" + }, + { + "voter": "steem1653", + "rshares": "2632467953" + }, + { + "voter": "sveokla", + "rshares": "2860912097" + }, + { + "voter": "cynetyc", + "rshares": "136322030" + }, + { + "voter": "aaseb", + "rshares": "13846432138" + }, + { + "voter": "karen13", + "rshares": "4209539443" + }, + { + "voter": "noodhoog", + "rshares": "8926064181" + }, + { + "voter": "artific", + "rshares": "21565632626" + }, + { + "voter": "poseidon", + "rshares": "932318275" + }, + { + "voter": "thylbom", + "rshares": "81126757108" + }, + { + "voter": "jl777", + "rshares": "204618396015" + }, + { + "voter": "positive", + "rshares": "817413671" + }, + { + "voter": "proto", + "rshares": "17267341753" + }, + { + "voter": "sisterholics", + "rshares": "7223043327" + }, + { + "voter": "yoganarchista", + "rshares": "1838905726" + }, + { + "voter": "taker", + "rshares": "8734196526" + }, + { + "voter": "laonie", + "rshares": "255431411513" + }, + { + "voter": "myfirst", + "rshares": "7994964655" + }, + { + "voter": "somebody", + "rshares": "51848391811" + }, + { + "voter": "flysaga", + "rshares": "1938565243" + }, + { + "voter": "gmurph", + "rshares": "1250819304" + }, + { + "voter": "midnightoil", + "rshares": "11453689270" + }, + { + "voter": "xiaohui", + "rshares": "28648120983" + }, + { + "voter": "elfkitchen", + "rshares": "1293711711" + }, + { + "voter": "xiaokongcom", + "rshares": "895620436" + }, + { + "voter": "eneismijmich", + "rshares": "46605026907" + }, + { + "voter": "xianjun", + "rshares": "1805414369" + }, + { + "voter": "microluck", + "rshares": "118221929" + }, + { + "voter": "dinamitduo", + "rshares": "2539918110" + }, + { + "voter": "pompe72", + "rshares": "88481667" + }, + { + "voter": "machinelearning", + "rshares": "14946610388" + }, + { + "voter": "workout", + "rshares": "61087248" + }, + { + "voter": "onetree", + "rshares": "8856106682" + }, + { + "voter": "richardcrill", + "rshares": "4900461398" + }, + { + "voter": "sponge-bob", + "rshares": "26571947789" + }, + { + "voter": "brains", + "rshares": "27673075341" + }, + { + "voter": "anomaly", + "rshares": "271441624" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "iuliuspro", + "rshares": "1199700175" + }, + { + "voter": "aksinya", + "rshares": "1259790018" + }, + { + "voter": "computerscience", + "rshares": "164253196" + }, + { + "voter": "hanai", + "rshares": "8448674998" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 67, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/mindfulness/@eneismijmich/4rgubt-journey-of-life", + "blacklists": [] + }, + { + "post_id": 960548, + "author": "kommienezuspadt", + "permlink": "bringing-characters-and-worlds-to-life-an-ode-to-the-steemit-creators", + "category": "art", + "title": "Bringing worlds and characters to life; an ode to the Steemit creators!", + "body": "\n

\n

My entire life, I knew however things shook out, I’d eventually be making comic books as a career. At 36, I’m later to the party than I originally anticipated, but I’ve had three decades to prepare for this! I remember as a kid, just being enamored with comic book art […and still am]. For years, I’d draw these snake characters during class with my friend Neal. Just page after endless page of snakes killing each other. The kind of gratuitous fantasy violence that defines weirdos in high school.

\n

Eventually, photography took over my life, but I still read comics, thought about comics and drew comics when I managed to make time. A couple years ago I began stringing together a story for a comic called THEIA. A sci-fi conspiracy story rooted in the real world, based on actual science. I learned how to format full script for comics and graphic novels […you can read the finished THEIA script in my previous blog, “Full script of THEIA sci-fi comic book! Exclusively on Steemit!”]. This was a big divergence than my hack and slash snake comics with Neal […who’s stories progressed with each turn of the page, like a Miyazaki film, but really horrible].

\n

\n

It was during the process of writing the first draft for THEIA that I realized all these years I’ve been so drawn to comics, the real allure for me was story telling and character creation, even more than great art. I’ve been creating comics my entire life, and thus, creating characters along the way. Once I began disciplining myself with taking writing more seriously, I discovered other helpful tools to aide in the creation process. I began taking  inventories, outlining in depth documentation of each characters lives, affiliations and personalities. 

\n

Character profiles are something I’ve done for 20 years. I mimicked my favorite fantasy artists like Gerald Brom, Boris Vallejo and the one and only, Frank Frazetta. I’d seen pencil sketches of their concept designs with monsters, heroes and heroines, and just did my best to emulate them. I used to draw the typical front, side, three-quarter and head sketches as a reference bible […granted, much easier when it was just snakes].

\n

\n

I’ve been enjoying a renaissance of creativity since committing to doing comics full time, and character creation is where I spend most of my time. THEIA is still my priority as I have an active Patreon campaign and those pledging support are doing so for that particular title. I do, however, have two other stories I’m developing which are currently knee deep in the character creation process. A Bukowski-esk pulp crime genre during the late 80’s following a private investigator throughout his struggle with sobriety in Queens, NY.

\n

\n

The other is a dark ghost story taking place in the mid-1800’s, surrounding a recently deceased, troubled soul that finds himself caught between the realm of the living, and the afterlife; unable to pass for fear of judgement after a life of heinous acts. The characters in this story were inspired by my most interesting friends, and obscure tales of macabre lore during the industrial revolution and the Southwestern US history.

\n

I wish I was further along in my pursuit of story telling, world building and character creation. I wish I had decades of experience to share here on Steemit. I don’t want to come across like I’m the authority on these complex, disciplined skills; I’ve only been seriously absorbing the art for a couple of years. I imagine, however, there are quite a few new writers, artists and creators here, navigating their own discoveries and process. With that in mind, [and in the spirit of all the things that makes Steemit great for me personally] here a few techniques I use to further my writing and a few resources I’ve found helpful in house, right here on Steemit.

\n

• Real-life Inspiration: As mentioned, take inspiration from people in life. Friends, or even family. Accentuate the personalities. Exaggerate the quirks or circumstances. For me personally, it’s a big help to to have someone in mind when drawing, and developing a character.

\n

• Character Inventories: Write up an involved character inventory […sometimes called a character bible]. A reference of everything you can imagine that defines that character. Their ethnicity, background, where they were born, how old they are, where they went to college, their diet, etc. It’s tedious if you’re working on a character heavy story with a big “cast”, but it pays dividends. Once you have those inventories, you can stick characters in situations and the story literally writes itself. If you have a character that’s a passionate vegan, you can immediately come up with dozens of possibilities if they were accidentally locked in a butcher’s freezer. Same with politics, religious, social issues. It really unloads much of the burden of dreaming up a brilliant scene.

\n

\n

• Name Generators: Name generators are something I rely on quite a bit. There are many available online. They’re usually free, and they’re a great place to launch in to naming a character. Often times, once you have a name, more of the personality and background unfolds organically. www.seventhsanctum.com has an excellent list of name generators tailored specifically for several genres and character types.

\n

• Research: This is one of those things that seems obvious, but I challenge you to go deeper. For my ghost story, I started researching life in the mid-1800’s in the Southwest and Dust Bowl of the United States. As I dug through historical sites, I found some of the events of that time. A few hours in, I read about droughts and plagues, which would have been rich content for a story, but going even deeper, I read about these crazy grasshopper plagues! Even deeper, I found accounts of specific families and individuals that described enormous clouds of locusts that swept through their homes and ate everything, including the clothes off their bodies! I encourage you to obsessively push through references, way past where most people would get their first idea and start writing. Beyond that is where you’re going to unearth something truly unique and memorable. I’ve already written a treatment for this epic locust plague in my ghost story […sort of nervous about what that’s going to be like to draw, though].

\n

• Don’t Lose The Magic: For me, the magic happens in the moments before I fall asleep. Without fail, that’s where I get my best, originally ideas. Sometimes it’s just a small line a dialog. Other times it’s as vague as a plot point. It’s a tough discipline to wake yourself up and write it down, but that […for me] is where the magic happens. It’s invaluable, and worth the trouble of having to fall back asleep. I jot things down in the Notes app of my phone. I have some friends that just wake up and make audio recordings. You might get your best ideas during different times. Sometimes I have brilliant moments on long drives. Either way, document it! You’ll be glad you did.

\n

Honestly, Steemit has been a revolution for me as well. Since the platform is incentivized, there is a tremendous wealth of references on writing, drawing, how-to’s. Beyond that, I spent much of my time reading and curating novels and short stories posted by the authors bringing their work to the site. Just this morning, I found a comprehensive article by @jamielefay titled “Steemit and the future of book publishing”. Everything here, totally relevant if you’re creating comics or graphic novels.

\n

\n

Keep writing, creating and sharing! More work from my comic, THIEA, and other stories to come. I’d love feedback and constructive criticism.

\n

I post daily. Follow me @kommienezuspadt so you don’t miss a post.

\n", + "json_metadata": { + "tags": [ + "art", + "writing", + "story", + "blog", + "comic" + ], + "users": [ + "jamielefay" + ], + "image": [ + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0104.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0105.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0106.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/SketchUpdate004.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0107.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/SketchUpdate011.jpg" + ], + "links": [ + "www.theiacomic.com", + "https://steemit.com/writing/@kommienezuspadt/full-script-of-theia-sci-fi-comic-book-theia-exclusively-on-steemit", + "www.seventhsanctum.com", + "https://steemit.com/steemit/@jamielefay/steemit-and-the-future-of-book-publishing", + "https://steemit.com/@kommienezuspadt" + ] + }, + "created": "2016-09-15T18:53:42", + "updated": "2016-09-15T19:11:12", + "depth": 0, + "children": 0, + "net_rshares": 9343647949820, + "is_paidout": false, + "payout_at": "2016-09-16T19:14:49", + "payout": 6.866, + "pending_payout_value": "6.866 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "riverhead", + "rshares": "4134640392195" + }, + { + "voter": "lovejoy", + "rshares": "253514770855" + }, + { + "voter": "joseph", + "rshares": "1535071696382" + }, + { + "voter": "idol", + "rshares": "8927535677" + }, + { + "voter": "jocelyn", + "rshares": "1536625837" + }, + { + "voter": "craig-grant", + "rshares": "374437048490" + }, + { + "voter": "eeks", + "rshares": "29966325092" + }, + { + "voter": "fkn", + "rshares": "1511911763" + }, + { + "voter": "elishagh1", + "rshares": "1987313581" + }, + { + "voter": "richman", + "rshares": "7803257741" + }, + { + "voter": "nanzo-scoop", + "rshares": "584301957019" + }, + { + "voter": "mummyimperfect", + "rshares": "172753954134" + }, + { + "voter": "coar", + "rshares": "313699965" + }, + { + "voter": "murh", + "rshares": "1061283659" + }, + { + "voter": "error", + "rshares": "2003404389" + }, + { + "voter": "ak2020", + "rshares": "49581638772" + }, + { + "voter": "alexc", + "rshares": "206092862903" + }, + { + "voter": "kimziv", + "rshares": "192336700354" + }, + { + "voter": "emily-cook", + "rshares": "75335893384" + }, + { + "voter": "superfreek", + "rshares": "2187607792" + }, + { + "voter": "furion", + "rshares": "7380892516" + }, + { + "voter": "tasman", + "rshares": "240666456" + }, + { + "voter": "steem1653", + "rshares": "2632467953" + }, + { + "voter": "creemej", + "rshares": "33739229218" + }, + { + "voter": "poseidon", + "rshares": "4195475503" + }, + { + "voter": "nin0000", + "rshares": "472134488" + }, + { + "voter": "positive", + "rshares": "1226120506" + }, + { + "voter": "sisterholics", + "rshares": "31601214153" + }, + { + "voter": "laonie", + "rshares": "1117528556435" + }, + { + "voter": "myfirst", + "rshares": "38642686402" + }, + { + "voter": "somebody", + "rshares": "233320672689" + }, + { + "voter": "flysaga", + "rshares": "8723640942" + }, + { + "voter": "gmurph", + "rshares": "833888549" + }, + { + "voter": "midnightoil", + "rshares": "50110479436" + }, + { + "voter": "xiaohui", + "rshares": "128918653572" + }, + { + "voter": "elfkitchen", + "rshares": "6306903180" + }, + { + "voter": "xiaokongcom", + "rshares": "4030335230" + }, + { + "voter": "xianjun", + "rshares": "8124462008" + }, + { + "voter": "microluck", + "rshares": "546776422" + }, + { + "voter": "movievertigo", + "rshares": "3562389763" + }, + { + "voter": "steemitpatina", + "rshares": "4633082667" + }, + { + "voter": "rusla", + "rshares": "100126866" + }, + { + "voter": "kommienezuspadt", + "rshares": "17087288555" + }, + { + "voter": "mikkolyytinen", + "rshares": "3030462572" + }, + { + "voter": "anomaly", + "rshares": "271448835" + }, + { + "voter": "ola1", + "rshares": "123221500" + }, + { + "voter": "rayzzz", + "rshares": "51615652" + }, + { + "voter": "zombiedoll", + "rshares": "796357358" + }, + { + "voter": "nazmood", + "rshares": "50820410" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 49, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/art/@kommienezuspadt/bringing-characters-and-worlds-to-life-an-ode-to-the-steemit-creators", + "blacklists": [] + } +] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.pat.json new file mode 100644 index 00000000..3c9fb03d --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.pat.json @@ -0,0 +1,2221 @@ +[ + { + "post_id": 681168, + "author": "r4fken", + "permlink": "re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z", + "category": "philosophy", + "title": "RE: Our Corrupt Sense of Fairness", + "body": "Do I understand correctly that you're referencing the initial \"mining\" by a select group of devs and friends, resulting in \"overwhelming control\" by means of vests now?\nOr am I just imagining things? :)", + "json_metadata": { + "tags": [ + "philosophy" + ] + }, + "created": "2016-08-20T09:06:27", + "updated": "2016-08-20T09:07:12", + "depth": 2, + "children": 0, + "net_rshares": 35692802942928, + "is_paidout": false, + "payout_at": "2016-09-20T07:22:48", + "payout": 196.246, + "pending_payout_value": "196.246 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "itsascam", + "rshares": "17735315160760" + }, + { + "voter": "steemed", + "rshares": "17865766992651" + }, + { + "voter": "boy", + "rshares": "3091007147" + }, + { + "voter": "bue-witness", + "rshares": "3751778512" + }, + { + "voter": "bunny", + "rshares": "703064185" + }, + { + "voter": "bue", + "rshares": "52778799199" + }, + { + "voter": "mini", + "rshares": "1656856120" + }, + { + "voter": "moon", + "rshares": "213490026" + }, + { + "voter": "healthcare", + "rshares": "621592296" + }, + { + "voter": "daniel.pan", + "rshares": "923609344" + }, + { + "voter": "helen.tan", + "rshares": "287848982" + }, + { + "voter": "r4fken", + "rshares": "27692743706" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 12, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "steemed", + "parent_permlink": "re-dantheman-our-corrupt-sense-of-fairness-20160820t035220528z", + "url": "/philosophy/@dantheman/our-corrupt-sense-of-fairness#@r4fken/re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z", + "blacklists": [] + }, + { + "post_id": 736365, + "author": "tldr", + "permlink": "i-m-tldr-an-experimental-bot-for-summarizing-your-long-articles", + "category": "tldr", + "title": "I'm @tldr - an experimental bot for summarizing your long articles.", + "body": "Steemit is about great content. But sometimes it just gets a bit, well, too long... So you didn't read. \n\nIntroducing, me! @tldr - the summarise bot! \n\nI come to the rescue, at least I try! I will monitor the blockchain and propose summaries as a comment under articles and try to summarize the long text you had to read before you decide to upvote :)\n\nI won't make it long this time, otherwise I would have to TLDR this post, and then, ...... infinite loop NOOOOOOOOS....\n\n

I will run for 24 hours (see payout timer) after which I will analyse the results and see whether to continue or not. Your input is much valued below:

\nCurrent parameters:\n1. Post must have more than 5000 chars\n2. Summary must be smaller than 15% of original content\n3. Summary must be max 7 sentences\n\n\nhttp://i.giphy.com/jChlcC99Vqu2I.gif", + "json_metadata": { + "tags": [ + "tldr", + "bot" + ], + "image": [ + "http://i.giphy.com/jChlcC99Vqu2I.gif" + ] + }, + "created": "2016-08-24T21:56:39", + "updated": "2016-08-24T23:26:03", + "depth": 0, + "children": 22, + "net_rshares": 13805683329893, + "is_paidout": false, + "payout_at": "2016-09-25T02:39:54", + "payout": 31.621, + "pending_payout_value": "31.621 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "abit", + "rshares": "6110298615385" + }, + { + "voter": "ozmaster", + "rshares": "147501011215" + }, + { + "voter": "boy", + "rshares": "2475588575" + }, + { + "voter": "bue-witness", + "rshares": "3004997792" + }, + { + "voter": "bunny", + "rshares": "562918093" + }, + { + "voter": "complexring", + "rshares": "5613233031399" + }, + { + "voter": "bue", + "rshares": "42638940309" + }, + { + "voter": "mini", + "rshares": "1326847006" + }, + { + "voter": "moon", + "rshares": "170845704" + }, + { + "voter": "healthcare", + "rshares": "497656797" + }, + { + "voter": "tuck-fheman", + "rshares": "1149362909097" + }, + { + "voter": "daniel.pan", + "rshares": "758055771" + }, + { + "voter": "helen.tan", + "rshares": "230367336" + }, + { + "voter": "edgeland", + "rshares": "134106565208" + }, + { + "voter": "joelinux", + "rshares": "19742650585" + }, + { + "voter": "richman", + "rshares": "9643353346" + }, + { + "voter": "censor-this", + "rshares": "7917346997" + }, + { + "voter": "murh", + "rshares": "2164056980" + }, + { + "voter": "tee-em", + "rshares": "1211348418" + }, + { + "voter": "djm34", + "rshares": "25349822848" + }, + { + "voter": "tomkirkham", + "rshares": "226688266301" + }, + { + "voter": "endgame", + "rshares": "406954777" + }, + { + "voter": "sebastien", + "rshares": "4469111855" + }, + { + "voter": "moonjelly", + "rshares": "2263852120" + }, + { + "voter": "shredlord", + "rshares": "12749599354" + }, + { + "voter": "hagie", + "rshares": "4590247494" + }, + { + "voter": "raymonjohnstone", + "rshares": "451134055" + }, + { + "voter": "bergy", + "rshares": "11281334218" + }, + { + "voter": "theprophet0", + "rshares": "2008372383" + }, + { + "voter": "coinbar", + "rshares": "1553952443" + }, + { + "voter": "ozchartart", + "rshares": "149764365242" + }, + { + "voter": "croatia", + "rshares": "4977363121" + }, + { + "voter": "kryptik", + "rshares": "4678252310" + }, + { + "voter": "minnowsunited", + "rshares": "170230804" + }, + { + "voter": "stephen.king989", + "rshares": "7371306594" + }, + { + "voter": "eneismijmich", + "rshares": "18742071917" + }, + { + "voter": "quantumanomaly", + "rshares": "1114311519" + }, + { + "voter": "naifaz", + "rshares": "149386074" + }, + { + "voter": "catherinebleish", + "rshares": "1910105759" + }, + { + "voter": "professorx", + "rshares": "5114340641" + }, + { + "voter": "justinlaak", + "rshares": "65542448666" + }, + { + "voter": "comcentrate", + "rshares": "191282778" + }, + { + "voter": "wizwom", + "rshares": "242182757" + }, + { + "voter": "heretickitten", + "rshares": "6548817310" + }, + { + "voter": "alina1", + "rshares": "155385736" + }, + { + "voter": "inwoxer", + "rshares": "143562405" + }, + { + "voter": "whatsup", + "rshares": "53141513" + }, + { + "voter": "freebornangel", + "rshares": "51593171" + }, + { + "voter": "steemwelcome", + "rshares": "51431138" + }, + { + "voter": "tldr", + "rshares": "51996577" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 50, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/tldr/@tldr/i-m-tldr-an-experimental-bot-for-summarizing-your-long-articles", + "blacklists": [] + }, + { + "post_id": 635822, + "author": "craigwilliamz", + "permlink": "how-to-raise-fantastic-children-part-1", + "category": "life", + "title": "How to Raise Fantastic Children - Part 1", + "body": "![The Crown Family Photo](http://steemit-dub.s3.amazonaws.com/alex/the-crown-family1.png 'The Crown Family Photo')\n\nMy Family is Pretty Cool\n-\n![Family](http://steemit-dub.s3.amazonaws.com/family-800.jpg 'Family')\n\nMy favorite people in the world are my children. They are kind, generous, full of life, fun to be around and crazy creative. They are really cool people.\n\nWe have four children, Alex, Ashley, Abby and Austin. My wife's idea to name them all \"A\" names. They are referred to as the \"A Team\".\n\nWe have a close family. We argue very little and maintain open communication. We have treated them like people from early on and they have behaved as such.\n\n![Guitar](http://steemit-dub.s3.amazonaws.com/alex/guitar.png 'Guitar')\n\n\n\nAn Eye Opening Experience\n-\nA few weeks ago I was in Dallas visiting a friend whom I had not seen in many years. There were other people there as well that I had also not seen in a very long time. I struck up a conversation with one of them and the discussion of family ensued. He told me about his children and what it had been like for him to become a father. He has a wonderful family with children that are still very young. When the time came for me to share about my children, I began listing off what each one was doing from the oldest to the youngest. Before I could get to the youngest one, his mouth was gaped open and he burst out, \"What are you feeding them!\" We had a big laugh as I told him about the youngest and expanded on our philosophy of family.\n\nWe have had many compliments on our children throughout their life. Even today, the people with whom they interact; family, friends and the people who work with them in stage productions, make a point of complimenting them. I am around them all the time, and many of their friends are homeschooled as well so sometimes I forget how special they are and the impact they have on others.\n\n![Railroad tracks](http://steemit-dub.s3.amazonaws.com/alex/alex-railroad-tracks-600.jpg 'Railroad tracks')\n\nWhy Am I Sharing\n-\nI hope to convey a few things here. First, if you are considering homeschooling and have reservations, may these stories encourage you. If you already homeschool and wonder if it is all worth it, maybe our stories will give you hope and encouragement as well.\n\nAnd lastly, I am proud of them and want to share their success with you.\n\n![Sis](http://steemit-dub.s3.amazonaws.com/alex/children-800.jpg 'Children')\n\nWhy We Homeschool\n-\nMy personal experience in public schools was a nightmare. I moved a lot when I was young and changed schools every three to six months. During one stretch of five years, I switched schools nineteen times. I did not build long term relationships and being the new kid all the time often created struggles with teachers.\n\nThere is a very long story to my history so I will not get into that here. It is however, the main reason I became excited about homeschooling when my wife suggested it.\n\nOur Oldest Child Alex\n-\n![Alex](http://steemit-dub.s3.amazonaws.com/alexthrowback.jpg 'Alex')\n\nAlex has always been intelligent as I believe all children are. He had memorized many of the family members phone numbers and home addresses by the time he was six. We started him off in Montessori school at age four where he attended three years. We would have kept him in Montessori but they did not offer classes above six years old. \n\nAt that time my wife was still concerned about her ability to homeschool so we enrolled him in a Christian private school for one year. After that, she had researched enough to build her confidence. She was ready to go. (As the years went by, she found out that she was more than capable. We are guides.)\n\nPre-Teen\n-\n![Sis](http://steemit-dub.s3.amazonaws.com/alex/alex-littlekid1.jpeg 'Alex and Sister')\n\nAlex took two years of Latin and one year of Japanese. He acted in plays and did what most children do, play a lot.\n\nTeen Years\n-\n![Sis](http://steemit-dub.s3.amazonaws.com/ateam.jpg 'Alex and Sister')\n\nMany people will tell you that you will have to deal with the teenage years. \"Brace yourself,\" they will say. \"You will become their enemy!\" We did not experience this with Alex or our other children. Alex would come to me for advice about issues him and his friends were discussing. When he would share how I reacted to some of our serious conversations, his friends were astonished and would respond with descriptions of their parents exploding if they attempted to have the same discussions with their parents.\n\nKeeping your cool when one of your children comes to you with a confession is a sure way to have them trust you with other issues of concern.\n\nDuring his teen years, Alex took CLEP tests and earned twelve college hours.\n\nAt sixteen, he began to gain interest in programming. I had introduced it to him when he was nine but he wasn't interested. Then again around eleven but still no interest. At sixteen, the interest was all his. Had I forced him to do it earlier, he may have never liked it.\n\n![Graduation](http://steemit-dub.s3.amazonaws.com/alex/graduation.jpg 'Graduation')\n\nBecoming an Adult\n-\n![Alex](http://steemit-dub.s3.amazonaws.com/alex/alex-adult1.jpeg 'Alex')\n\nOne his eighteenth birthday, he begin working his first job as a software developer. He was hired as an apprentice and was promoted to junior developer after only three months. At that time, he began mentoring two of his friends. Within a few months he had taken on a third person to mentor. Within a year or so, each of them have now changed their path and work as software developers. It has significantly changed their lives. Alex just recently began mentoring another friend. Pretty cool to pass forward. He had received help from some of my co-workers early on which made all the difference in his progression.\n\nHe now speaks French and Mandarin and has aspirations to learn many more. He has traveled to seven countries and has an arrangement with his employer to work from anywhere in the world as long as he is at the office for part of the year.\n\n![Alex](http://steemit-dub.s3.amazonaws.com/alex/amsterdamcollage.jpg 'Alex')\n\nHe gives technical talks at local meet ups, plays both acoustic and electric guitar, has never met a stranger and has made no enemies.\n\nHe is an inspiration to others, his family and siblings. The bar has been set high but the other children have many interests and accomplishments of their own. I'll share those in subsequent posts.\n\n![Leon](http://steemit-dub.s3.amazonaws.com/alex/leoncollage.jpg 'Leon')\n\nWhat was our part?\n-\nMy wife has worked hard to keep them supplied with good school material, staying compliant with state requirements and providing some structure for learning. We never set up a school room like environment. There are never set hours of study. Homeschooling hours vary depending on the age of the child and what they are working on at that phase of their education. I would say that most of the time they spend less time doing actual school work and the rest of the time exploring, using their imagination and focusing their energy on things they are interested in.\n\nFor Alex, that was a foreign language. Other times it was memorizing all the Pokemon cards and building decks and playing in tournaments. Alex said one of the things that has helped him so much in learning new things was the fact that he had memorized so much Pokemon data. He developed the ability to store and retrieve things in his mind.\n\nThe simple fact is… we didn't do it. Alex did. He deserves all the credit. He did all the work. We provided the canvas, the paint and the paintbrushes. \n\nConclusion\n-\nI feel we have a pretty cool family. There are many ways to raise your children. The most important thing is to love them unconditionally, give them room to grow and treat them as you would your very best friend. They are people and are smarter than most give them credit.\n\nI hope I have been able to convey how proud we are of Alex. These are but a few highlights of his life as he is only twenty-one. There is so much in store for him.\n\nI am so grateful that as much as possible we have given Alex the opportunity to live life on his own terms and he has flourished.", + "json_metadata": { + "tags": [ + "life", + "photography", + "travel", + "parenting", + "family" + ], + "image": [ + "http://steemit-dub.s3.amazonaws.com/alex/the-crown-family1.png" + ] + }, + "created": "2016-08-17T02:23:30", + "updated": "2016-08-17T02:41:03", + "depth": 0, + "children": 3, + "net_rshares": 20952886915040, + "is_paidout": false, + "payout_at": "2016-09-17T02:57:45", + "payout": 28.712, + "pending_payout_value": "28.712 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "dantheman", + "rshares": "20736048327416" + }, + { + "voter": "boy", + "rshares": "2472573792" + }, + { + "voter": "bue-witness", + "rshares": "3001108476" + }, + { + "voter": "bunny", + "rshares": "562413629" + }, + { + "voter": "bue", + "rshares": "42176902013" + }, + { + "voter": "mini", + "rshares": "1325367544" + }, + { + "voter": "moon", + "rshares": "170787830" + }, + { + "voter": "healthcare", + "rshares": "497243104" + }, + { + "voter": "daniel.pan", + "rshares": "737438203" + }, + { + "voter": "helen.tan", + "rshares": "230272201" + }, + { + "voter": "holabebe", + "rshares": "5072953140" + }, + { + "voter": "murh", + "rshares": "1799587902" + }, + { + "voter": "bravenewcoin", + "rshares": "115361382518" + }, + { + "voter": "soupernerd", + "rshares": "166899192" + }, + { + "voter": "qamarpinkpanda", + "rshares": "5429807428" + }, + { + "voter": "aaseb", + "rshares": "4494852918" + }, + { + "voter": "the-future", + "rshares": "2162953561" + }, + { + "voter": "illlefr4u", + "rshares": "289441856" + }, + { + "voter": "pinkisland", + "rshares": "11382937008" + }, + { + "voter": "pigatron", + "rshares": "3420690714" + }, + { + "voter": "weenis", + "rshares": "163854600" + }, + { + "voter": "jonaswakefield", + "rshares": "309113169" + }, + { + "voter": "jsantana", + "rshares": "984803370" + }, + { + "voter": "cehuneke", + "rshares": "61805391" + }, + { + "voter": "craigwilliamz", + "rshares": "6199940304" + }, + { + "voter": "thebrickranger", + "rshares": "57122450" + }, + { + "voter": "vbrasher", + "rshares": "57108081" + }, + { + "voter": "ashleywilliamz", + "rshares": "2980829211" + }, + { + "voter": "abbywilliamz", + "rshares": "57736694" + }, + { + "voter": "colleenwilliamz", + "rshares": "57604403" + }, + { + "voter": "luminousvisions", + "rshares": "3202748238" + }, + { + "voter": "canadian-coconut", + "rshares": "57682239" + }, + { + "voter": "ghasemkiani", + "rshares": "381198814" + }, + { + "voter": "cyborg", + "rshares": "54839161" + }, + { + "voter": "analyzethis", + "rshares": "50931848" + }, + { + "voter": "roadhog", + "rshares": "51780266" + }, + { + "voter": "doggnostic", + "rshares": "52777051" + }, + { + "voter": "jenny-talls", + "rshares": "52504270" + }, + { + "voter": "robovirtuoso", + "rshares": "54522752" + }, + { + "voter": "birdiewonder", + "rshares": "50090625" + }, + { + "voter": "robotev", + "rshares": "1092907021" + }, + { + "voter": "goaldigger", + "rshares": "51074637" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 42, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/life/@craigwilliamz/how-to-raise-fantastic-children-part-1", + "blacklists": [] + }, + { + "post_id": 787056, + "author": "spinx", + "permlink": "the-rain-it-is-the-law-of-life", + "category": "life", + "title": "The Rain - It is the law of life", + "body": "\n

\n


\n

One of the few precious truths I learned is life is not about waiting for the storm to pass, it is about learning to dance in...

\n

The Rain

\n

A ray of sunshine does not always mean happiness nor does a drop of rain mean total loneliness. Through time writers of all kinds being the sensitive, emotional and deep people that they are, have always associated the rain with loneliness. Today, whenever a cold wind blows through an open window or an empty space on a street, we are swept with its glum, warning us of a heavy feeling, reminding us of what we have lost, memories that are only too sad we almost wish could bury everything in a shroud of oblivion. Regrets come again, as well as faces of people from the past as a teardrop suddenly threatens to fall anytime from already lost and almost hollow eyes. The cold brought by the rain along with the dark clouds lurking outside makes us want to wrap our arms protectively around ourselves to keep us warm or to shut out any sad thoughts that dare to overstep the arms engulfing our curled bodies.

\n

\n


\n

But its not always like that. Not if we can help it, no. The Rain is perceived negatively most of the time but we can care enough to see beyond what is often seen. GO, outside on an early September morning and you will see that the rain leaves a magnificent dew drenched flower or a grass all the more alive as the sunlight hits the few drops left from last night's rain. All for you to behold. See that under umbrellas are faces of people smiling and radiant as you meet them on the street. Really, the rain cant be that bad. Not at all. It is natures gift, a gift from the Almighty. And after a rain, what do the heavens hold for you? An array of colors painting the sky and we know it as rainbow. Just as we know that after the tears, laughter comes, making us very much worthy of the joy because of what we have gone through.

\n

\n


\n

All our days cannot simply be filled with sunshine and it cannot be simply all laughter and smiles. We have to grow as a person just as the rain lets the flowers in the meadow bloom and grow. The flowers need the rain just as much as they need sunshine. Same is true with people. We need to be happy just as we need to be lonely so that we can grow as a person. Then can we only bring ourselves to realize that the bad is not so bad afer all as long as we allow the growth it brings to us as individuals.

\n

\n


\n

You cannot escape the rain, nor chase it away. Dare to hear its pitter patter rhythm as something which can never be a hindrance for you to see things in a different and brighter way no matter how dark the clouds and heavy the downpour. It is as inevitable as the troubles we come across. Learn from the rain because it is the law of nature. Learn from loneliness or troubles because... It is the law of life.

\n


\n


\n

(c) to the owner of the picture I used...

\n", + "json_metadata": { + "tags": [ + "life", + "story", + "blog", + "" + ], + "image": [ + "http://i64.tinypic.com/2ceg9qa.jpg", + "http://i63.tinypic.com/6iwlyw.jpg", + "http://i64.tinypic.com/fnzjtl.jpg", + "http://i63.tinypic.com/16kp014.jpg" + ] + }, + "created": "2016-08-29T07:57:36", + "updated": "2016-08-29T07:57:36", + "depth": 0, + "children": 5, + "net_rshares": 16847399101862, + "is_paidout": false, + "payout_at": "2016-09-29T09:39:45", + "payout": 18.413, + "pending_payout_value": "18.413 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "berniesanders", + "rshares": "11357569835389" + }, + { + "voter": "nextgenwitness", + "rshares": "86746642898" + }, + { + "voter": "justin", + "rshares": "273812540770" + }, + { + "voter": "silver", + "rshares": "552847788283" + }, + { + "voter": "silversteem", + "rshares": "1251914367375" + }, + { + "voter": "nextgencrypto", + "rshares": "1930805191057" + }, + { + "voter": "steemservices", + "rshares": "190090757518" + }, + { + "voter": "boombastic", + "rshares": "957733653490" + }, + { + "voter": "bingo-0", + "rshares": "8536011764" + }, + { + "voter": "bingo-1", + "rshares": "2238572115" + }, + { + "voter": "scientihark", + "rshares": "429169643" + }, + { + "voter": "murh", + "rshares": "2144600092" + }, + { + "voter": "beerbloke", + "rshares": "64184842487" + }, + { + "voter": "romait", + "rshares": "9651283220" + }, + { + "voter": "gidlark", + "rshares": "1090790161" + }, + { + "voter": "rubybian", + "rshares": "96663454240" + }, + { + "voter": "jillfeint", + "rshares": "504731722" + }, + { + "voter": "creemej", + "rshares": "24388027122" + }, + { + "voter": "the-future", + "rshares": "1680830998" + }, + { + "voter": "iamwne", + "rshares": "1487880898" + }, + { + "voter": "alex.chien", + "rshares": "1819480598" + }, + { + "voter": "shortcut", + "rshares": "5328526582" + }, + { + "voter": "gargon", + "rshares": "8943159633" + }, + { + "voter": "future24", + "rshares": "607950836" + }, + { + "voter": "thecurator", + "rshares": "15277887140" + }, + { + "voter": "michelnilles", + "rshares": "90179446" + }, + { + "voter": "kaosdlanor", + "rshares": "56326177" + }, + { + "voter": "thefeature", + "rshares": "425810977" + }, + { + "voter": "elsievr", + "rshares": "56770700" + }, + { + "voter": "champ333", + "rshares": "50663058" + }, + { + "voter": "terrano", + "rshares": "170136269" + }, + { + "voter": "spinx", + "rshares": "51239204" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 32, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/life/@spinx/the-rain-it-is-the-law-of-life", + "blacklists": [] + }, + { + "post_id": 628745, + "author": "feminism", + "permlink": "re-sean-king-re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160816t162832308z", + "category": "life", + "title": "RE: The Crap I Put Up With (as a Woman in Crypto) Because You Say You're \"Not a feminist\"", + "body": "I agree with @sean-king here @kato you give feminism a bad name... :)", + "json_metadata": { + "tags": [ + "life" + ], + "users": [ + "sean-king", + "kato" + ] + }, + "created": "2016-08-16T16:28:33", + "updated": "2016-08-16T16:28:33", + "depth": 2, + "children": 2, + "net_rshares": 5426307472843, + "is_paidout": false, + "payout_at": "2016-09-17T00:58:51", + "payout": 7.588, + "pending_payout_value": "7.588 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "kushed", + "rshares": "5426057994994" + }, + { + "voter": "concave", + "rshares": "249477849" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 2, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160815t231355973z", + "url": "/life/@kato/the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist#@feminism/re-sean-king-re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160816t162832308z", + "blacklists": [] + }, + { + "post_id": 678454, + "author": "craigwilliamz", + "permlink": "re-anarcho-andrei-stop-hitting-your-kids-20160820t021940362z", + "category": "voluntaryism", + "title": "RE: Stop Hitting Your Kids", + "body": "Before I had children, I would look at other parents who were giving their children soda and a pacifier and think, \"Those are horrible parents. Don't they know what harm soda is and all the things that are wrong with pacifiers!\" Then I had children. We have four. It was a lot harder than I thought it would be. When children are very young, you cannot reason with them. You cannot get through to them with logic.\n\nI hope you continue on Steemit and share your experiences with your children. You do have children, right?\n\nI love the concepts being presented by this an other posts to raise our children and never discipline them but what I am not seeing are examples of how to do that. Not once they are old enough to reason, between 4 and 6, but before that.\n\nI am a strong opponent to child abuse. I grew up in a **very** unstable home. That was something I did not want and did not do in my own family but each of my children did receive a few spankings when they were very young. Once they were old enough to reason with, we discussed matters and consequences came into play.\n\nI have a post on my oldest son, he is 21 now and I talk about homeschooling and letting children play a large role in their life. It is __their__ life after all.\n\nhttps://steemit.com/life/@craigwilliamz/how-to-raise-fantastic-children-part-1", + "json_metadata": { + "tags": [ + "voluntaryism" + ], + "links": [ + "https://steemit.com/life/@craigwilliamz/how-to-raise-fantastic-children-part-1" + ] + }, + "created": "2016-08-20T02:19:39", + "updated": "2016-08-20T02:19:39", + "depth": 1, + "children": 4, + "net_rshares": 2931180818933, + "is_paidout": false, + "payout_at": "2016-09-20T02:13:36", + "payout": 2.672, + "pending_payout_value": "2.672 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "dantheman", + "rshares": "2880006712141" + }, + { + "voter": "boy", + "rshares": "2472573792" + }, + { + "voter": "bue-witness", + "rshares": "3001108476" + }, + { + "voter": "bunny", + "rshares": "562413629" + }, + { + "voter": "bue", + "rshares": "42176902013" + }, + { + "voter": "mini", + "rshares": "1325367544" + }, + { + "voter": "moon", + "rshares": "170787830" + }, + { + "voter": "healthcare", + "rshares": "497243104" + }, + { + "voter": "daniel.pan", + "rshares": "737438203" + }, + { + "voter": "helen.tan", + "rshares": "230272201" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 10, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "anarcho-andrei", + "parent_permlink": "stop-hitting-your-kids", + "url": "/voluntaryism/@anarcho-andrei/stop-hitting-your-kids#@craigwilliamz/re-anarcho-andrei-stop-hitting-your-kids-20160820t021940362z", + "blacklists": [] + }, + { + "post_id": 736431, + "author": "cryptocurrency1", + "permlink": "re-complexring-preview-of-custom-steemit-com-skins-by-maximkichev-20160824t220504965z", + "category": "skins", + "title": "RE: Preview of Custom Steemit.com Skins by @maximkichev", + "body": "This is a great idea. Is it a button on Steemit website to change skin colors?", + "json_metadata": { + "tags": [ + "skins" + ] + }, + "created": "2016-08-24T22:04:51", + "updated": "2016-08-24T22:06:48", + "depth": 1, + "children": 1, + "net_rshares": 2929265394715, + "is_paidout": false, + "payout_at": "2016-09-24T23:52:36", + "payout": 2.566, + "pending_payout_value": "2.566 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "boy", + "rshares": "2475545095" + }, + { + "voter": "bue-witness", + "rshares": "3004943442" + }, + { + "voter": "bunny", + "rshares": "562911298" + }, + { + "voter": "complexring", + "rshares": "2877607015480" + }, + { + "voter": "bue", + "rshares": "42631240754" + }, + { + "voter": "mini", + "rshares": "1326826625" + }, + { + "voter": "moon", + "rshares": "170845704" + }, + { + "voter": "healthcare", + "rshares": "497652721" + }, + { + "voter": "daniel.pan", + "rshares": "758046260" + }, + { + "voter": "helen.tan", + "rshares": "230367336" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 10, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "complexring", + "parent_permlink": "preview-of-custom-steemit-com-skins-by-maximkichev", + "url": "/skins/@complexring/preview-of-custom-steemit-com-skins-by-maximkichev#@cryptocurrency1/re-complexring-preview-of-custom-steemit-com-skins-by-maximkichev-20160824t220504965z", + "blacklists": [] + }, + { + "post_id": 698270, + "author": "r4fken", + "permlink": "my-1000th-post-and-other-steemit-achievements", + "category": "steemit", + "title": "My 1000th post and other Steemit achievements!", + "body": "Today is an historical day for me. This is my **thousandth** post on Steemit already, I hit **100** followers today ánd I'm finally past the magical limit of **3000** SP! :D\n![Achievement unlocked](http://rlv.zcache.com/achievement_unlocked_bumper_sticker-r50c3a5b34b904bb4a8d9e6aad6b920a1_v9wht_8byvr_512.jpg)\n#### Thanks!\nThanks to all my followers, voters and friends! I hope we'll meet again soon, and continue scoring milestones! :)\nAlso, a thank you for the devs, we **love** your work, keep going!", + "json_metadata": { + "tags": [ + "steemit", + "awesome", + "achievement", + "stats", + "milestone" + ], + "image": [ + "http://rlv.zcache.com/achievement_unlocked_bumper_sticker-r50c3a5b34b904bb4a8d9e6aad6b920a1_v9wht_8byvr_512.jpg" + ] + }, + "created": "2016-08-21T20:34:39", + "updated": "2016-08-21T20:34:39", + "depth": 0, + "children": 35, + "net_rshares": -25406680605573, + "is_paidout": false, + "payout_at": "2016-09-22T12:39:06", + "payout": 2.101, + "pending_payout_value": "2.101 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "berniesanders", + "rshares": "-25419129621778" + }, + { + "voter": "adm", + "rshares": "-1303288241222" + }, + { + "voter": "boy", + "rshares": "3711292843" + }, + { + "voter": "bue-witness", + "rshares": "4504842525" + }, + { + "voter": "bunny", + "rshares": "844018072" + }, + { + "voter": "bue", + "rshares": "63630835821" + }, + { + "voter": "steemservices", + "rshares": "-491961877500" + }, + { + "voter": "mini", + "rshares": "1989271577" + }, + { + "voter": "moon", + "rshares": "256227507" + }, + { + "voter": "benjojo", + "rshares": "1244483571299" + }, + { + "voter": "proctologic", + "rshares": "24096643591" + }, + { + "voter": "healthcare", + "rshares": "746214388" + }, + { + "voter": "daniel.pan", + "rshares": "1124279505" + }, + { + "voter": "helen.tan", + "rshares": "345483224" + }, + { + "voter": "chryspano", + "rshares": "-403038020258" + }, + { + "voter": "kingscrown", + "rshares": "81440709580" + }, + { + "voter": "acidyo", + "rshares": "18173041048" + }, + { + "voter": "murh", + "rshares": "1441527990" + }, + { + "voter": "cryptofunk", + "rshares": "7298235047" + }, + { + "voter": "thecryptofiend", + "rshares": "13897431770" + }, + { + "voter": "zebbra2014", + "rshares": "5255137728" + }, + { + "voter": "hater", + "rshares": "-304963538" + }, + { + "voter": "wisehammer", + "rshares": "1013738674" + }, + { + "voter": "micheletrainer", + "rshares": "2750169349" + }, + { + "voter": "roelandp", + "rshares": "305244819566" + }, + { + "voter": "elyaque", + "rshares": "15757395195" + }, + { + "voter": "r4fken", + "rshares": "23999310435" + }, + { + "voter": "on0tole", + "rshares": "4383469997" + }, + { + "voter": "leksimus", + "rshares": "1350456080" + }, + { + "voter": "sveokla", + "rshares": "239464793" + }, + { + "voter": "perwest", + "rshares": "6247936107" + }, + { + "voter": "pigatto", + "rshares": "547667566" + }, + { + "voter": "anduweb", + "rshares": "17764985905" + }, + { + "voter": "maximkichev", + "rshares": "3769939766" + }, + { + "voter": "arek", + "rshares": "-290175754" + }, + { + "voter": "heimindanger", + "rshares": "7864564586" + }, + { + "voter": "bitcoiner", + "rshares": "3766102090" + }, + { + "voter": "qonq99", + "rshares": "528819341" + }, + { + "voter": "valspeaks", + "rshares": "2311634180" + }, + { + "voter": "lukmarcus", + "rshares": "2173853443" + }, + { + "voter": "bullionstackers", + "rshares": "1419541000" + }, + { + "voter": "dmilash", + "rshares": "2022504731" + }, + { + "voter": "kaykunoichi", + "rshares": "508192245" + }, + { + "voter": "jasonstaggers", + "rshares": "28835166886" + }, + { + "voter": "steemdrive", + "rshares": "89850692765" + }, + { + "voter": "litrbooh", + "rshares": "1700610055" + }, + { + "voter": "capitalism", + "rshares": "11642599188" + }, + { + "voter": "always1success", + "rshares": "68869178" + }, + { + "voter": "xtester", + "rshares": "30079446399" + }, + { + "voter": "marinaz", + "rshares": "66954524" + }, + { + "voter": "caitlinm", + "rshares": "178131954" + }, + { + "voter": "thisisbenbrick", + "rshares": "89856273584" + }, + { + "voter": "joele", + "rshares": "54406274025" + }, + { + "voter": "erikkartmen", + "rshares": "57581935" + }, + { + "voter": "driv3n", + "rshares": "24752361813" + }, + { + "voter": "numberone", + "rshares": "63964502" + }, + { + "voter": "naifaz", + "rshares": "154559742" + }, + { + "voter": "violino", + "rshares": "62002598" + }, + { + "voter": "guard", + "rshares": "-92783813" + }, + { + "voter": "bbsj", + "rshares": "2626905838" + }, + { + "voter": "lecrazycanuckeh", + "rshares": "62301037" + }, + { + "voter": "grayhorse", + "rshares": "-149863586" + }, + { + "voter": "jessicalu", + "rshares": "-53470504" + }, + { + "voter": "direcrusher", + "rshares": "55036253" + }, + { + "voter": "tschabidave", + "rshares": "54444758" + }, + { + "voter": "ibringawareness", + "rshares": "100163794" + }, + { + "voter": "anamikasjain", + "rshares": "50742988" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 67, + "flag_weight": 4.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/steemit/@r4fken/my-1000th-post-and-other-steemit-achievements", + "blacklists": [] + }, + { + "post_id": 718957, + "author": "loveangel", + "permlink": "re-jvper-international-money-transfer-provider-started-using-steem-20160823t142700478z", + "category": "steemit", + "title": "RE: International Money Transfer Provider started using Steem", + "body": "If people would be able to use Steem for remittances, then I feel this could just blow up out of proportion for Steem, as there would be no need to convert Steem's to bitcoin and then to local currencies. \n\nIts dependency on bitcoin would be negated and we can then truly consider it as a global currency :-)", + "json_metadata": { + "tags": [ + "steemit" + ] + }, + "created": "2016-08-23T14:27:00", + "updated": "2016-08-23T14:27:00", + "depth": 1, + "children": 1, + "net_rshares": 1784399120902, + "is_paidout": false, + "payout_at": "2016-09-23T13:51:39", + "payout": 1.417, + "pending_payout_value": "1.417 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "dantheman", + "rshares": "1730545983153" + }, + { + "voter": "boy", + "rshares": "2474667874" + }, + { + "voter": "bue-witness", + "rshares": "3003831514" + }, + { + "voter": "bunny", + "rshares": "562780317" + }, + { + "voter": "bue", + "rshares": "42510264789" + }, + { + "voter": "mini", + "rshares": "1326410513" + }, + { + "voter": "moon", + "rshares": "170827956" + }, + { + "voter": "healthcare", + "rshares": "497540834" + }, + { + "voter": "daniel.pan", + "rshares": "756497537" + }, + { + "voter": "helen.tan", + "rshares": "230342766" + }, + { + "voter": "jvper", + "rshares": "2251314435" + }, + { + "voter": "sizil", + "rshares": "68659214" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 12, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "jvper", + "parent_permlink": "international-money-transfer-provider-started-using-steem", + "url": "/steemit/@jvper/international-money-transfer-provider-started-using-steem#@loveangel/re-jvper-international-money-transfer-provider-started-using-steem-20160823t142700478z", + "blacklists": [] + }, + { + "post_id": 694518, + "author": "feminism", + "permlink": "re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t141224417z", + "category": "faith", + "title": "RE: Faith Versus Religion--Refuting \"God's Undertaker\", Part 1", + "body": "proofreading: quiet-> quite", + "json_metadata": { + "tags": [ + "faith" + ] + }, + "created": "2016-08-21T14:12:24", + "updated": "2016-08-21T14:12:24", + "depth": 1, + "children": 1, + "net_rshares": 1453905500705, + "is_paidout": false, + "payout_at": "2016-09-21T14:54:18", + "payout": 1.308, + "pending_payout_value": "1.308 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "sean-king", + "rshares": "1453905500705" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 1, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "faith-versus-religion-refuting-god-s-undertaker-part-1", + "url": "/faith/@sean-king/faith-versus-religion-refuting-god-s-undertaker-part-1#@feminism/re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t141224417z", + "blacklists": [] + }, + { + "post_id": 695353, + "author": "feminism", + "permlink": "re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t154045710z", + "category": "faith", + "title": "RE: Faith Versus Religion--Refuting \"God's Undertaker\", Part 1", + "body": "money quote: \"And it's also just as likely that God ejaculated out the universe after an epic masterbation session\"\n\nproofreading: masturbation", + "json_metadata": { + "tags": [ + "faith" + ] + }, + "created": "2016-08-21T15:40:45", + "updated": "2016-08-21T15:40:45", + "depth": 1, + "children": 0, + "net_rshares": 1424832587077, + "is_paidout": false, + "payout_at": "2016-09-21T14:54:18", + "payout": 1.276, + "pending_payout_value": "1.276 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "sean-king", + "rshares": "1424832587077" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 1, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "faith-versus-religion-refuting-god-s-undertaker-part-1", + "url": "/faith/@sean-king/faith-versus-religion-refuting-god-s-undertaker-part-1#@feminism/re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t154045710z", + "blacklists": [] + }, + { + "post_id": 736865, + "author": "feminism", + "permlink": "re-cryptoctopus-the-earth-is-flat-the-ultimate-test-for-open-mindedness-20160824t225052573z", + "category": "curiosity", + "title": "RE: The Earth Is Flat? The ultimate test for \"open mindedness\"", + "body": "it is a great exercise in epistemology, I agree.\nand most people are sheeps, meaning, they dont know how they know what \"they know\", meaning they dont know shit", + "json_metadata": { + "tags": [ + "curiosity" + ] + }, + "created": "2016-08-24T22:50:51", + "updated": "2016-08-24T22:50:51", + "depth": 1, + "children": 0, + "net_rshares": 1746474870201, + "is_paidout": false, + "payout_at": "2016-09-24T23:11:33", + "payout": 1.256, + "pending_payout_value": "1.256 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "boy", + "rshares": "2475680916" + }, + { + "voter": "bue-witness", + "rshares": "3005113218" + }, + { + "voter": "bunny", + "rshares": "562928956" + }, + { + "voter": "bue", + "rshares": "42648953508" + }, + { + "voter": "mini", + "rshares": "1326895892" + }, + { + "voter": "moon", + "rshares": "170847062" + }, + { + "voter": "healthcare", + "rshares": "497673093" + }, + { + "voter": "daniel.pan", + "rshares": "759428460" + }, + { + "voter": "helen.tan", + "rshares": "230370052" + }, + { + "voter": "cryptoctopus", + "rshares": "1698179876049" + }, + { + "voter": "beanz", + "rshares": "-3382897005" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 11, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "cryptoctopus", + "parent_permlink": "the-earth-is-flat-the-ultimate-test-for-open-mindedness", + "url": "/curiosity/@cryptoctopus/the-earth-is-flat-the-ultimate-test-for-open-mindedness#@feminism/re-cryptoctopus-the-earth-is-flat-the-ultimate-test-for-open-mindedness-20160824t225052573z", + "blacklists": [] + }, + { + "post_id": 674727, + "author": "feminism", + "permlink": "re-sean-king-nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky-20160819t195205251z", + "category": "feminism", + "title": "RE: \"Nothing in biology makes sense except in the light of evolution.\" --Theodosius Dobzhansky", + "body": "proofreading: lessor", + "json_metadata": { + "tags": [ + "feminism" + ] + }, + "created": "2016-08-19T19:52:06", + "updated": "2016-08-19T19:52:06", + "depth": 1, + "children": 1, + "net_rshares": 1532858419010, + "is_paidout": false, + "payout_at": "2016-09-19T19:24:12", + "payout": 1.099, + "pending_payout_value": "1.099 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "boy", + "rshares": "2471701036" + }, + { + "voter": "bue-witness", + "rshares": "3000021378" + }, + { + "voter": "bunny", + "rshares": "562225906" + }, + { + "voter": "bue", + "rshares": "42142431563" + }, + { + "voter": "mini", + "rshares": "1324903845" + }, + { + "voter": "moon", + "rshares": "170734595" + }, + { + "voter": "healthcare", + "rshares": "497076397" + }, + { + "voter": "daniel.pan", + "rshares": "737187441" + }, + { + "voter": "helen.tan", + "rshares": "230197953" + }, + { + "voter": "sean-king", + "rshares": "1481721938896" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 10, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky", + "url": "/feminism/@sean-king/nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky#@feminism/re-sean-king-nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky-20160819t195205251z", + "blacklists": [] + }, + { + "post_id": 736890, + "author": "feminism", + "permlink": "re-sean-king-me-cindy-and-20160824t225250885z", + "category": "celebrity", + "title": "RE: Me, Cindy and...?", + "body": "OMG Sasha Grey\nwhy are you doing this to me Sean ???\n:)", + "json_metadata": { + "tags": [ + "celebrity" + ] + }, + "created": "2016-08-24T22:52:51", + "updated": "2016-08-24T22:55:00", + "depth": 1, + "children": 0, + "net_rshares": 1511562806286, + "is_paidout": false, + "payout_at": "2016-09-24T23:35:06", + "payout": 1.049, + "pending_payout_value": "1.049 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "boy", + "rshares": "2475557327" + }, + { + "voter": "bue-witness", + "rshares": "3004958392" + }, + { + "voter": "bunny", + "rshares": "562914017" + }, + { + "voter": "bue", + "rshares": "42634234947" + }, + { + "voter": "mini", + "rshares": "1326832061" + }, + { + "voter": "moon", + "rshares": "170845704" + }, + { + "voter": "healthcare", + "rshares": "497654080" + }, + { + "voter": "daniel.pan", + "rshares": "758048978" + }, + { + "voter": "helen.tan", + "rshares": "230367336" + }, + { + "voter": "somedude", + "rshares": "7488699966" + }, + { + "voter": "sean-king", + "rshares": "1455795590483" + }, + { + "voter": "beanz", + "rshares": "-3382897005" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 12, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "me-cindy-and", + "url": "/celebrity/@sean-king/me-cindy-and#@feminism/re-sean-king-me-cindy-and-20160824t225250885z", + "blacklists": [] + }, + { + "post_id": 769459, + "author": "feminism", + "permlink": "re-sean-king-the-bible-isn-t-mainly-history-20160827t184548731z", + "category": "bible", + "title": "RE: The Bible Isn't (Mainly) History", + "body": "\"It’s also the reason why poetry is often able to convey a truer understanding of an ideal than prose: The ineffable, transcendental concepts of art and religion defy encapsulation in mere words. \"\nThats the reason why I dont bother explaining myself with mere prose,\nbut instead I use poetry and music, the closest piece of poetry or music I know\nthat conveys what Im trying to convey.", + "json_metadata": { + "tags": [ + "bible" + ] + }, + "created": "2016-08-27T18:45:48", + "updated": "2016-08-27T18:47:27", + "depth": 1, + "children": 0, + "net_rshares": 1398535239934, + "is_paidout": false, + "payout_at": "2016-09-27T18:51:57", + "payout": 1.031, + "pending_payout_value": "1.031 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "sean-king", + "rshares": "1398535239934" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 1, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "the-bible-isn-t-mainly-history", + "url": "/bible/@sean-king/the-bible-isn-t-mainly-history#@feminism/re-sean-king-the-bible-isn-t-mainly-history-20160827t184548731z", + "blacklists": [] + }, + { + "post_id": 684831, + "author": "feminism", + "permlink": "re-sean-king-paraphilia-20160820t164510821z", + "category": "photography", + "title": "RE: Paraphilia", + "body": "Here is a post with a song dedicated to you Sean,\nhttp://steemit.com/science/@feminism/the-symphony-of-science-dedicated-to-sean-king\nyou're really growing on me, thank you for your work.\nI wish I could be as polite as you are with people.", + "json_metadata": { + "tags": [ + "photography" + ], + "links": [ + "http://steemit.com/science/@feminism/the-symphony-of-science-dedicated-to-sean-king" + ] + }, + "created": "2016-08-20T16:45:12", + "updated": "2016-08-20T16:45:12", + "depth": 1, + "children": 2, + "net_rshares": 1379142794288, + "is_paidout": false, + "payout_at": "2016-09-20T06:12:45", + "payout": 1.023, + "pending_payout_value": "1.023 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "boy", + "rshares": "3091167529" + }, + { + "voter": "bue-witness", + "rshares": "3751991188" + }, + { + "voter": "bunny", + "rshares": "703090335" + }, + { + "voter": "bue", + "rshares": "52790740268" + }, + { + "voter": "mini", + "rshares": "1656938054" + }, + { + "voter": "moon", + "rshares": "213491769" + }, + { + "voter": "healthcare", + "rshares": "621613216" + }, + { + "voter": "daniel.pan", + "rshares": "923651182" + }, + { + "voter": "helen.tan", + "rshares": "287854213" + }, + { + "voter": "somedude", + "rshares": "7668537780" + }, + { + "voter": "sean-king", + "rshares": "1307433718754" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 11, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "paraphilia", + "url": "/photography/@sean-king/paraphilia#@feminism/re-sean-king-paraphilia-20160820t164510821z", + "blacklists": [] + }, + { + "post_id": 712384, + "author": "feminism", + "permlink": "re-sean-king-mystical-20160822t234424169z", + "category": "photography", + "title": "RE: Mystical Momma", + "body": "That picture is mind blowing, to say anything less would be dishonest.", + "json_metadata": { + "tags": [ + "photography" + ] + }, + "created": "2016-08-22T23:44:24", + "updated": "2016-08-22T23:44:24", + "depth": 1, + "children": 0, + "net_rshares": 1396646939582, + "is_paidout": false, + "payout_at": "2016-09-23T01:34:54", + "payout": 1.0, + "pending_payout_value": "1.000 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "sean-king", + "rshares": "1396646939582" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 1, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "mystical", + "url": "/photography/@sean-king/mystical#@feminism/re-sean-king-mystical-20160822t234424169z", + "blacklists": [] + }, + { + "post_id": 807303, + "author": "steemwelcome", + "permlink": "help-i-was-unfairly-flagged-i-m-not-a-bot-i-m-a-manual-curator", + "category": "steemit", + "title": "Help I was unfairly flagged, I'm not a \"bot\" I'm a manual curator!", + "body": "As I told already on my [introduction post](https://steemit.com/introduceyourself/@steemwelcome/hello-steemians-i-m-steemwelcome) I AM NOT A BOT, I am a manual curator of new accounts on steemit.\n\nMy journey was just welcoming each verified new user I could MANUALLY. There is nothing wrong about that, but whale @smooth decided to flag me, destroying my reputation and so my ability to greet new steemians. Just look at the messages on my introductory post and you will see how much I was apreciated for this initiative: no one complained.\n\nThis is unfair! Flagging me as if I were a \"bot\" is an insult to the time I took to salute each new steemian I could.\n\nNo one complained about me and only positive reactions from new steemians is what you could read (if my reputation wasn't destroyed by @smooth). So what kind of \"spam\" is the one that makes people happy when they are personaly greeted when they join (and how could this be compared with an \"spambot\", it's my time that was there dedicated for this task). What is the problem if I found time to do this \"repetitive\" task?\n\n@steemwelcome", + "json_metadata": { + "tags": [ + "steemit", + "introduceyourself", + "freedom", + "witness-category" + ], + "users": [ + "smooth", + "steemwelcome" + ], + "links": [ + "https://steemit.com/introduceyourself/@steemwelcome/hello-steemians-i-m-steemwelcome" + ] + }, + "created": "2016-08-31T00:33:33", + "updated": "2016-08-31T01:15:33", + "depth": 0, + "children": 23, + "net_rshares": 1663672556305, + "is_paidout": false, + "payout_at": "2016-10-01T13:33:12", + "payout": 0.999, + "pending_payout_value": "0.999 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.001 HBD", + "replies": [], + "active_votes": [ + { + "voter": "ned", + "rshares": "1289265380237" + }, + { + "voter": "boy", + "rshares": "3099079187" + }, + { + "voter": "bue-witness", + "rshares": "3762318075" + }, + { + "voter": "bunny", + "rshares": "697302029" + }, + { + "voter": "bue", + "rshares": "53977586827" + }, + { + "voter": "mini", + "rshares": "1660857757" + }, + { + "voter": "moon", + "rshares": "213660123" + }, + { + "voter": "healthcare", + "rshares": "622708148" + }, + { + "voter": "daniel.pan", + "rshares": "967168909" + }, + { + "voter": "helen.tan", + "rshares": "288138648" + }, + { + "voter": "ervin-lemark", + "rshares": "13126308422" + }, + { + "voter": "murh", + "rshares": "1431687904" + }, + { + "voter": "lukestokes", + "rshares": "275273168981" + }, + { + "voter": "joseph.kalu", + "rshares": "222257214" + }, + { + "voter": "pinkisland", + "rshares": "17665762711" + }, + { + "voter": "ace108", + "rshares": "1213791485" + }, + { + "voter": "steemwelcome", + "rshares": "61085819" + }, + { + "voter": "fukako", + "rshares": "58685384" + }, + { + "voter": "willio", + "rshares": "65608445" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 19, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/steemit/@steemwelcome/help-i-was-unfairly-flagged-i-m-not-a-bot-i-m-a-manual-curator", + "blacklists": [] + }, + { + "post_id": 777632, + "author": "spinx", + "permlink": "bike-chained-to-a-tree", + "category": "life", + "title": "Bike chained to a tree....", + "body": "\n

\n


\n

 A boy went to war in 1914 and left his bike chained to a tree. He never came home & the family left the bike there as a memorial to the fallen soldier. 

\n", + "json_metadata": { + "tags": [ + "life", + "story" + ], + "image": [ + "http://i67.tinypic.com/sg1gfm.jpg" + ] + }, + "created": "2016-08-28T13:58:00", + "updated": "2016-08-28T22:58:57", + "depth": 0, + "children": 1, + "net_rshares": 1520007920729, + "is_paidout": false, + "payout_at": "2016-09-28T14:08:12", + "payout": 0.992, + "pending_payout_value": "0.992 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "boy", + "rshares": "4335459431" + }, + { + "voter": "bue-witness", + "rshares": "5262854785" + }, + { + "voter": "bunny", + "rshares": "975716806" + }, + { + "voter": "bue", + "rshares": "75169356896" + }, + { + "voter": "mini", + "rshares": "2323555627" + }, + { + "voter": "moon", + "rshares": "299045636" + }, + { + "voter": "steempower", + "rshares": "1288478836630" + }, + { + "voter": "healthcare", + "rshares": "871313105" + }, + { + "voter": "daniel.pan", + "rshares": "1353232348" + }, + { + "voter": "helen.tan", + "rshares": "403253136" + }, + { + "voter": "coar", + "rshares": "1764827120" + }, + { + "voter": "murh", + "rshares": "2501114696" + }, + { + "voter": "alexft", + "rshares": "1289763894" + }, + { + "voter": "pigatto", + "rshares": "2814342601" + }, + { + "voter": "lostnuggett", + "rshares": "1965737119" + }, + { + "voter": "ladypenelope1", + "rshares": "403833324" + }, + { + "voter": "beanz", + "rshares": "4016798395" + }, + { + "voter": "sunshine", + "rshares": "12555413808" + }, + { + "voter": "jphamer1", + "rshares": "10069561477" + }, + { + "voter": "future24", + "rshares": "104709921" + }, + { + "voter": "bledarus", + "rshares": "1880413517" + }, + { + "voter": "thegoldencookie", + "rshares": "71365686" + }, + { + "voter": "solarguy", + "rshares": "5584217100" + }, + { + "voter": "icfiedler", + "rshares": "79783107300" + }, + { + "voter": "trev", + "rshares": "3785284659" + }, + { + "voter": "mandibil", + "rshares": "11682660949" + }, + { + "voter": "norene", + "rshares": "60127610" + }, + { + "voter": "drinkthemilk", + "rshares": "50264719" + }, + { + "voter": "getmyhand", + "rshares": "50259197" + }, + { + "voter": "lookatme", + "rshares": "50254033" + }, + { + "voter": "spinx", + "rshares": "51239204" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 31, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/life/@spinx/bike-chained-to-a-tree", + "blacklists": [] + }, + { + "post_id": 773395, + "author": "craigwilliamz", + "permlink": "re-hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast-20160828t023230", + "category": "introduceyourself", + "title": "RE: Hello Steemit - I'd Like to Introduce Myself and a Short History of Becoming a Cooking Enthusiast", + "body": "Welcome to Steemit! If you would like to see statistics of any post on Steemit, you can use Steemd.com. I have made a bookmark for your convenience in accessing Steemd. https://steemit.com/steemd/@craigwilliamz/steemd-statistics-bookmark-for-easy-access-to-steemd", + "json_metadata": {}, + "created": "2016-08-28T02:32:30", + "updated": "2016-08-28T02:32:30", + "depth": 1, + "children": 1, + "net_rshares": 1015475187636, + "is_paidout": false, + "payout_at": "2016-09-28T03:21:15", + "payout": 0.633, + "pending_payout_value": "0.633 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "james212", + "rshares": "1015475187636" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 1, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "nestorstable", + "parent_permlink": "hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast", + "url": "/introduceyourself/@nestorstable/hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast#@craigwilliamz/re-hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast-20160828t023230", + "blacklists": [] + } + ] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout.pat.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout.pat.json @@ -0,0 +1 @@ +[] diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout_comments.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout_comments.pat.json new file mode 100644 index 00000000..cacf385b --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout_comments.pat.json @@ -0,0 +1,3681 @@ +[ + { + "active_votes": [ + { + "rshares": "1294968367268", + "voter": "smooth" + }, + { + "rshares": "28860902224", + "voter": "anonymous" + }, + { + "rshares": "14409605494831", + "voter": "summon" + }, + { + "rshares": "40261554792719", + "voter": "blocktrades" + }, + { + "rshares": "3155750963782", + "voter": "lafona-miner" + }, + { + "rshares": "377906636658", + "voter": "lafona" + }, + { + "rshares": "1245475534803", + "voter": "silver" + }, + { + "rshares": "2875138885044", + "voter": "silversteem" + }, + { + "rshares": "992692841277", + "voter": "delegate.lafona" + }, + { + "rshares": "948645888607", + "voter": "liondani" + }, + { + "rshares": "314602171157", + "voter": "lafona5" + }, + { + "rshares": "3094244335", + "voter": "boy" + }, + { + "rshares": "3755939559", + "voter": "bue-witness" + }, + { + "rshares": "703615315", + "voter": "bunny" + }, + { + "rshares": "5751660885474", + "voter": "complexring" + }, + { + "rshares": "1644151280793", + "voter": "steemychicken1" + }, + { + "rshares": "53261984748", + "voter": "bue" + }, + { + "rshares": "1658441464", + "voter": "mini" + }, + { + "rshares": "213555429", + "voter": "moon" + }, + { + "rshares": "222747002001", + "voter": "smooth.witness" + }, + { + "rshares": "622045496", + "voter": "healthcare" + }, + { + "rshares": "947522117", + "voter": "daniel.pan" + }, + { + "rshares": "54127411451", + "voter": "donkeypong" + }, + { + "rshares": "1759901644", + "voter": "nexusdev" + }, + { + "rshares": "351517418935", + "voter": "ash" + }, + { + "rshares": "282481919881", + "voter": "chitty" + }, + { + "rshares": "287957469", + "voter": "helen.tan" + }, + { + "rshares": "25822874684", + "voter": "steampunkpowered" + }, + { + "rshares": "10283360038", + "voter": "ervin-lemark" + }, + { + "rshares": "24290958657", + "voter": "instructor2121" + }, + { + "rshares": "7456570912", + "voter": "jerome-colley" + }, + { + "rshares": "491733834025", + "voter": "kevinwong" + }, + { + "rshares": "41463145095", + "voter": "nphacker" + }, + { + "rshares": "367830728600", + "voter": "blakemiles84" + }, + { + "rshares": "45912096650", + "voter": "ranko-k" + }, + { + "rshares": "23227592357", + "voter": "treeleaves" + }, + { + "rshares": "63707549495", + "voter": "kanoptx" + }, + { + "rshares": "31690086400", + "voter": "drinkzya" + }, + { + "rshares": "73022585138", + "voter": "eric-boucher" + }, + { + "rshares": "109636482823", + "voter": "kenny-crane" + }, + { + "rshares": "61288399197", + "voter": "thecryptodrive" + }, + { + "rshares": "117389810764", + "voter": "bravenewcoin" + }, + { + "rshares": "449244898326", + "voter": "infovore" + }, + { + "rshares": "128017998380", + "voter": "omarb" + }, + { + "rshares": "36007650081", + "voter": "cheftony" + }, + { + "rshares": "32961119819", + "voter": "cryptoiskey" + }, + { + "rshares": "71452016003", + "voter": "discombobulated" + }, + { + "rshares": "5121130339", + "voter": "expanse" + }, + { + "rshares": "25440234426", + "voter": "hitmeasap" + }, + { + "rshares": "13382892819", + "voter": "stealthtrader" + }, + { + "rshares": "24939158057", + "voter": "tcfxyz" + }, + { + "rshares": "103574158909", + "voter": "cdubendo" + }, + { + "rshares": "7881221000", + "voter": "spiz0r" + }, + { + "rshares": "112751020008", + "voter": "jacor" + }, + { + "rshares": "14190084617", + "voter": "halo" + }, + { + "rshares": "159492592967", + "voter": "jesta" + }, + { + "rshares": "33597624083", + "voter": "toxonaut" + }, + { + "rshares": "7028930352", + "voter": "btcupload" + }, + { + "rshares": "17438618169", + "voter": "anduweb" + }, + { + "rshares": "75155947399", + "voter": "demotruk" + }, + { + "rshares": "3697940497", + "voter": "maximkichev" + }, + { + "rshares": "10377897348", + "voter": "nippel66" + }, + { + "rshares": "7753599028", + "voter": "magz8716" + }, + { + "rshares": "1388783807", + "voter": "cryptocurrency1" + }, + { + "rshares": "115874018", + "voter": "gosha" + }, + { + "rshares": "505816971", + "voter": "raymonjohnstone" + }, + { + "rshares": "124907433", + "voter": "biternator" + }, + { + "rshares": "3090635988", + "voter": "willbeonceagain8" + }, + { + "rshares": "54497070629", + "voter": "arcurus" + }, + { + "rshares": "4745090234", + "voter": "bakingengineer" + }, + { + "rshares": "36689125715", + "voter": "claudiop63" + }, + { + "rshares": "16359584188", + "voter": "noodles.pan" + }, + { + "rshares": "10399150907", + "voter": "npl77" + }, + { + "rshares": "108836213411", + "voter": "steemdrive" + }, + { + "rshares": "11060114610", + "voter": "bergy" + }, + { + "rshares": "2050213474", + "voter": "theprophet0" + }, + { + "rshares": "295915630", + "voter": "theprophet" + }, + { + "rshares": "38819548773", + "voter": "allasyummyfood" + }, + { + "rshares": "461449860", + "voter": "neddykelly" + }, + { + "rshares": "1579699570", + "voter": "minion" + }, + { + "rshares": "77473387847", + "voter": "sirwinchester" + }, + { + "rshares": "61385527", + "voter": "sijoittaja" + }, + { + "rshares": "4190219999", + "voter": "tom77" + }, + { + "rshares": "125663528", + "voter": "nelkel" + }, + { + "rshares": "148930176", + "voter": "letsgo.asino" + }, + { + "rshares": "14968711124", + "voter": "hilarski" + }, + { + "rshares": "58226150", + "voter": "ajavajive" + }, + { + "rshares": "253750401751", + "voter": "oldtimer" + }, + { + "rshares": "57886832", + "voter": "shootetxd" + }, + { + "rshares": "191216226", + "voter": "comcentrate" + }, + { + "rshares": "13741567322", + "voter": "antoinev" + }, + { + "rshares": "61289460", + "voter": "jtstreetman" + }, + { + "rshares": "5100395909", + "voter": "io-io-io" + }, + { + "rshares": "54884363", + "voter": "ian89" + }, + { + "rshares": "50351260", + "voter": "chuckleberry" + }, + { + "rshares": "349611227", + "voter": "panther" + }, + { + "rshares": "59354601485", + "voter": "tracemayer" + }, + { + "rshares": "51884666", + "voter": "brs" + }, + { + "rshares": "130434883", + "voter": "bitcoinparadise" + }, + { + "rshares": "52571606", + "voter": "bellphorion" + }, + { + "rshares": "53224648", + "voter": "yanikkoval" + }, + { + "rshares": "51136429", + "voter": "infotoday" + }, + { + "rshares": "50977036", + "voter": "tldr" + }, + { + "rshares": "50797377", + "voter": "bo-ro" + } + ], + "author": "smooth", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I will sponsor an additional 2000 SBD toward this campaign in addition to my vote on the post, plus any rewards on this comment.", + "category": "steemit", + "children": 31, + "created": "2016-08-24T16:43:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 77833655363992, + "parent_author": "steemdrive", + "parent_permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream", + "payout": 852.555, + "payout_at": "2016-09-24T19:41:42", + "pending_payout_value": "852.555 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t164320100z", + "post_id": 733019, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 104 + }, + "title": "RE: Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!", + "updated": "2016-08-24T16:43:21", + "url": "/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream#@smooth/re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t164320100z" + }, + { + "active_votes": [ + { + "rshares": "30296554046147", + "voter": "smooth" + }, + { + "rshares": "28854877817", + "voter": "anonymous" + }, + { + "rshares": "14368089454321", + "voter": "summon" + }, + { + "rshares": "3183112492799", + "voter": "lafona-miner" + }, + { + "rshares": "377387227766", + "voter": "lafona" + }, + { + "rshares": "790314875205", + "voter": "delegate.lafona" + }, + { + "rshares": "314383371770", + "voter": "lafona5" + }, + { + "rshares": "1851434600", + "voter": "boy" + }, + { + "rshares": "2247039689", + "voter": "bue-witness" + }, + { + "rshares": "425455109", + "voter": "bunny" + }, + { + "rshares": "31378635899", + "voter": "bue" + }, + { + "rshares": "992487616", + "voter": "mini" + }, + { + "rshares": "127981753", + "voter": "moon" + }, + { + "rshares": "6510505164", + "voter": "sean0010" + }, + { + "rshares": "5308002434389", + "voter": "smooth.witness" + }, + { + "rshares": "342922310367", + "voter": "officialfuzzy" + }, + { + "rshares": "802009404542", + "voter": "cass" + }, + { + "rshares": "369247770", + "voter": "healthcare" + }, + { + "rshares": "537460001", + "voter": "daniel.pan" + }, + { + "rshares": "172530341", + "voter": "helen.tan" + }, + { + "rshares": "410778394570", + "voter": "chryspano" + }, + { + "rshares": "113345677592", + "voter": "forrestwillie" + }, + { + "rshares": "5390642912", + "voter": "kingjohal" + }, + { + "rshares": "346429583563", + "voter": "blakemiles84" + }, + { + "rshares": "46740932510", + "voter": "ranko-k" + }, + { + "rshares": "18522231224", + "voter": "allahhh" + }, + { + "rshares": "398461524", + "voter": "rafikichi" + }, + { + "rshares": "1421853753930", + "voter": "sean-king" + }, + { + "rshares": "65040641602", + "voter": "charleshosk" + }, + { + "rshares": "739465956", + "voter": "mammasitta" + }, + { + "rshares": "17651204278", + "voter": "acassity" + }, + { + "rshares": "480475374", + "voter": "chamviet" + }, + { + "rshares": "239694404", + "voter": "concave" + }, + { + "rshares": "1386708550", + "voter": "vi1son" + }, + { + "rshares": "1798938485", + "voter": "gazm" + }, + { + "rshares": "19465926763", + "voter": "ausbitbank" + }, + { + "rshares": "2622666444", + "voter": "egjoshslim" + }, + { + "rshares": "6373898691", + "voter": "perwest" + }, + { + "rshares": "312475355", + "voter": "lioliomir" + }, + { + "rshares": "33482946725", + "voter": "alexfortin" + }, + { + "rshares": "5612628842", + "voter": "r33drum" + }, + { + "rshares": "24373102947", + "voter": "igster" + }, + { + "rshares": "51538128557", + "voter": "sephiroth" + }, + { + "rshares": "5989513477", + "voter": "cryptosi" + }, + { + "rshares": "72131208610", + "voter": "ntomaino" + }, + { + "rshares": "9493199624", + "voter": "domavila" + }, + { + "rshares": "107006946999", + "voter": "bonface" + }, + { + "rshares": "12353093513", + "voter": "grolelo" + }, + { + "rshares": "32088583721", + "voter": "streetstyle" + }, + { + "rshares": "54299398751", + "voter": "demotruk" + }, + { + "rshares": "45617820200", + "voter": "arcurus" + }, + { + "rshares": "211677715438", + "voter": "johnsmith" + }, + { + "rshares": "17146066951", + "voter": "team-leibniz" + }, + { + "rshares": "22277193587", + "voter": "solidgold" + }, + { + "rshares": "143431864", + "voter": "borntowin" + }, + { + "rshares": "609312338", + "voter": "metaflute" + }, + { + "rshares": "1125051142", + "voter": "bofadeez" + }, + { + "rshares": "100022771", + "voter": "darkstar1o9" + }, + { + "rshares": "57276142", + "voter": "pgarcgo" + }, + { + "rshares": "328256060", + "voter": "alifton" + }, + { + "rshares": "63775214", + "voter": "laissezfairedr" + }, + { + "rshares": "66697195", + "voter": "rubenalexander" + }, + { + "rshares": "7960548410", + "voter": "kyriacos" + }, + { + "rshares": "376001676", + "voter": "manicmidnight" + }, + { + "rshares": "58682093", + "voter": "tradz" + }, + { + "rshares": "58914198", + "voter": "brandon-rosano" + }, + { + "rshares": "38710389758", + "voter": "simon-says" + }, + { + "rshares": "57980741", + "voter": "alaqrab" + }, + { + "rshares": "56436574", + "voter": "saintbitts" + }, + { + "rshares": "55261899", + "voter": "shakimclark7" + }, + { + "rshares": "75377250", + "voter": "powercouple" + }, + { + "rshares": "55618704", + "voter": "jaypillagara" + }, + { + "rshares": "53912690", + "voter": "shax" + }, + { + "rshares": "53846159", + "voter": "wulfmeister" + }, + { + "rshares": "53707619", + "voter": "ct-gurus" + }, + { + "rshares": "53333238", + "voter": "donzy" + }, + { + "rshares": "53210703", + "voter": "frostwalker" + } + ], + "author": "charlieshrem", + "author_payout_value": "0.000 HBD", + "author_reputation": 67.32, + "beneficiaries": [], + "blacklists": [], + "body": "I have a series of posts I'm writing now about socioeconomic observations in prison. If the Steemit community likes it, Ill post it here exclusively.", + "category": "introduceyourself", + "children": 21, + "created": "2016-08-16T18:55:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "tags": [ + "introduceyourself" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 59091129639172, + "parent_author": "dennygalindo", + "parent_permlink": "re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185037477z", + "payout": 545.728, + "payout_at": "2016-09-16T21:13:42", + "pending_payout_value": "545.728 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dennygalindo-re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185524881z", + "post_id": 630864, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 77 + }, + "title": "RE: Charlie Shrem Is Now On Steemit!", + "updated": "2016-08-16T18:55:27", + "url": "/introduceyourself/@charlieshrem/charlie-shrem-is-now-on-steemit#@charlieshrem/re-dennygalindo-re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185524881z" + }, + { + "active_votes": [ + { + "rshares": "29186049220380", + "voter": "berniesanders" + }, + { + "rshares": "623996958321", + "voter": "justin" + }, + { + "rshares": "5881098331094", + "voter": "abit" + }, + { + "rshares": "4855865727368", + "voter": "nextgencrypto" + }, + { + "rshares": "2454399166148", + "voter": "adm" + }, + { + "rshares": "2467985030", + "voter": "boy" + }, + { + "rshares": "2995309863", + "voter": "bue-witness" + }, + { + "rshares": "567154894", + "voter": "bunny" + }, + { + "rshares": "41750226248", + "voter": "bue" + }, + { + "rshares": "1323006745", + "voter": "mini" + }, + { + "rshares": "170612336", + "voter": "moon" + }, + { + "rshares": "664278529380", + "voter": "pfunk" + }, + { + "rshares": "490800486", + "voter": "healthcare" + }, + { + "rshares": "709305835", + "voter": "daniel.pan" + }, + { + "rshares": "229997595", + "voter": "helen.tan" + }, + { + "rshares": "130506632815", + "voter": "kaylinart" + }, + { + "rshares": "106890789634", + "voter": "anyx" + }, + { + "rshares": "9971301073", + "voter": "senseiteekay" + }, + { + "rshares": "9400027589", + "voter": "shredlord" + }, + { + "rshares": "61646469732", + "voter": "cheetah" + }, + { + "rshares": "219824678620", + "voter": "originate" + }, + { + "rshares": "685101796", + "voter": "metaflute" + }, + { + "rshares": "394148198", + "voter": "theconnoisseur" + }, + { + "rshares": "32404401324", + "voter": "thecurator" + }, + { + "rshares": "582451688", + "voter": "alorya" + }, + { + "rshares": "1059033052", + "voter": "seraph" + }, + { + "rshares": "16011014560", + "voter": "someguy123" + }, + { + "rshares": "454752565", + "voter": "celestial" + }, + { + "rshares": "188226473", + "voter": "andyinspace" + } + ], + "author": "adm", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "This is an article spun to avoid automatic plagiarism detection.\nHere is the source:\nhttp://health.learninginfo.org/muscle-building-tips.htm", + "category": "workout", + "children": 0, + "created": "2016-08-15T22:50:42", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "links": [ + "http://health.learninginfo.org/muscle-building-tips.htm" + ], + "tags": [ + "workout" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 44306411360842, + "parent_author": "dopezzz123", + "parent_permlink": "why-muscles-get-sore", + "payout": 312.617, + "payout_at": "2016-09-15T23:59:09", + "pending_payout_value": "312.617 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dopezzz123-why-muscles-get-sore-20160815t225039946z", + "post_id": 619751, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 29 + }, + "title": "RE: Why Muscles Get Sore", + "updated": "2016-08-15T22:50:42", + "url": "/workout/@dopezzz123/why-muscles-get-sore#@adm/re-dopezzz123-why-muscles-get-sore-20160815t225039946z" + }, + { + "active_votes": [ + { + "rshares": "40261554792719", + "voter": "blocktrades" + }, + { + "rshares": "48124579959", + "voter": "full-steem-ahead" + }, + { + "rshares": "282481919881", + "voter": "chitty" + }, + { + "rshares": "25822874684", + "voter": "steampunkpowered" + }, + { + "rshares": "10283360038", + "voter": "ervin-lemark" + }, + { + "rshares": "24290958657", + "voter": "instructor2121" + }, + { + "rshares": "62458381858", + "voter": "kanoptx" + }, + { + "rshares": "71100938161", + "voter": "eric-boucher" + }, + { + "rshares": "61288297136", + "voter": "thecryptodrive" + }, + { + "rshares": "117389810764", + "voter": "bravenewcoin" + }, + { + "rshares": "5121130339", + "voter": "expanse" + }, + { + "rshares": "7881221000", + "voter": "spiz0r" + }, + { + "rshares": "10377897348", + "voter": "nippel66" + }, + { + "rshares": "49642777135", + "voter": "thylbom" + }, + { + "rshares": "115874018", + "voter": "gosha" + }, + { + "rshares": "37453482500", + "voter": "claudiop63" + }, + { + "rshares": "4096208838", + "voter": "smailer" + }, + { + "rshares": "8375659361", + "voter": "jamesbrown" + }, + { + "rshares": "108836213411", + "voter": "steemdrive" + }, + { + "rshares": "195118598", + "voter": "comcentrate" + }, + { + "rshares": "61289460", + "voter": "jtstreetman" + }, + { + "rshares": "56939384", + "voter": "dcat" + }, + { + "rshares": "130434883", + "voter": "bitcoinparadise" + }, + { + "rshares": "50468741", + "voter": "bellphorion" + }, + { + "rshares": "50353356", + "voter": "takemyfive" + } + ], + "author": "steemdrive", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "
[![vote-Ohare.jpg](https://s19.postimg.org/vpowej1g3/vote_Ohare.jpg)](http://www.steemit.com/@steemdrive)
", + "category": "steemit", + "children": 0, + "created": "2016-08-24T16:23:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s19.postimg.org/vpowej1g3/vote_Ohare.jpg" + ], + "tags": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 41197240982229, + "parent_author": "steemdrive", + "parent_permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream", + "payout": 249.516, + "payout_at": "2016-09-24T19:41:42", + "pending_payout_value": "249.516 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t162300868z", + "post_id": 732832, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 25 + }, + "title": "RE: Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!", + "updated": "2016-08-24T16:23:00", + "url": "/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream#@steemdrive/re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t162300868z" + }, + { + "active_votes": [ + { + "rshares": "14824916004472", + "voter": "smooth" + }, + { + "rshares": "28851426273", + "voter": "anonymous" + }, + { + "rshares": "14660905118594", + "voter": "summon" + }, + { + "rshares": "5645842591970", + "voter": "kushed" + }, + { + "rshares": "3085011784", + "voter": "boy" + }, + { + "rshares": "3744178588", + "voter": "bue-witness" + }, + { + "rshares": "708945412", + "voter": "bunny" + }, + { + "rshares": "52221628833", + "voter": "bue" + }, + { + "rshares": "1653774577", + "voter": "mini" + }, + { + "rshares": "213265420", + "voter": "moon" + }, + { + "rshares": "733758489177", + "voter": "cass" + }, + { + "rshares": "613502402", + "voter": "healthcare" + }, + { + "rshares": "888428594", + "voter": "daniel.pan" + }, + { + "rshares": "287496994", + "voter": "helen.tan" + }, + { + "rshares": "5519141498", + "voter": "spaninv" + }, + { + "rshares": "151618531853", + "voter": "killerstorm" + }, + { + "rshares": "13114605961", + "voter": "facer" + }, + { + "rshares": "137573239907", + "voter": "thedashguy" + }, + { + "rshares": "586358175", + "voter": "mammasitta" + }, + { + "rshares": "128697036640", + "voter": "chhayll" + }, + { + "rshares": "269379546", + "voter": "thealexander" + }, + { + "rshares": "13452877972", + "voter": "bitshares101" + }, + { + "rshares": "51529058014", + "voter": "sephiroth" + }, + { + "rshares": "5729767206", + "voter": "inti" + }, + { + "rshares": "14254612849", + "voter": "deanero" + }, + { + "rshares": "1646059150", + "voter": "belkins" + }, + { + "rshares": "116253105", + "voter": "darkstar1o9" + }, + { + "rshares": "61980222", + "voter": "breastsono" + }, + { + "rshares": "2359201317", + "voter": "matherly" + }, + { + "rshares": "897505702", + "voter": "harand" + }, + { + "rshares": "17530292877", + "voter": "shenanigator" + }, + { + "rshares": "4300748049", + "voter": "bitbutter" + }, + { + "rshares": "54634677", + "voter": "stephenm" + } + ], + "author": "steemapp", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Hi, @smooth this is @str11ngfello, the iOS developer on Steemy. \n\nHere's my linked in profile ->\nhttps://www.linkedin.com/in/lynn-duke-097a724\n\n @cyonic here as a followup edit, my linkedin profile here:\nhttps://www.linkedin.com/in/johnelliotwhite\n\nGive me a few moments and I'll add a blurb to my linked in profile that references Steemy. Look for it towards the top. \n\nHere is a quick vid I made of Steemy at the request of many users. \n\nhttps://youtu.be/kHbOHuXQWg4\n\nHere's to hoping we can prove ourselves a bit. STEEM ON!", + "category": "steemit", + "children": 18, + "created": "2016-08-16T04:52:51", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://youtu.be/kHbOHuXQWg4" + ], + "tags": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 36507001147810, + "parent_author": "smooth", + "parent_permlink": "re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t042406700z", + "payout": 227.842, + "payout_at": "2016-09-16T04:46:15", + "pending_payout_value": "227.842 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t045252952z", + "post_id": 622869, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 33 + }, + "title": "RE: [Introducing Steemy] - Fully Native iOS/Android apps for STEEM", + "updated": "2016-08-16T14:16:24", + "url": "/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem#@steemapp/re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t045252952z" + }, + { + "active_votes": [ + { + "rshares": "17735818038199", + "voter": "itsascam" + }, + { + "rshares": "2091363547583", + "voter": "steemroller" + }, + { + "rshares": "17881645967595", + "voter": "steemed" + }, + { + "rshares": "2473129069", + "voter": "boy" + }, + { + "rshares": "3001847911", + "voter": "bue-witness" + }, + { + "rshares": "562495952", + "voter": "bunny" + }, + { + "rshares": "42273561181", + "voter": "bue" + }, + { + "rshares": "1325647967", + "voter": "mini" + }, + { + "rshares": "170794809", + "voter": "moon" + }, + { + "rshares": "115426377545", + "voter": "stan" + }, + { + "rshares": "497314258", + "voter": "healthcare" + }, + { + "rshares": "741745834", + "voter": "daniel.pan" + }, + { + "rshares": "230286157", + "voter": "helen.tan" + }, + { + "rshares": "17452286451", + "voter": "marklyford" + }, + { + "rshares": "-118201007", + "voter": "cyonic" + }, + { + "rshares": "1259875358", + "voter": "shadowspub" + } + ], + "author": "michaelx", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "It doesn't matter at all in the big picture, when company accounts are used to censor any conversation (as they have been doing and will likely continue to do) they please, regardless of community voting consensus. \n\nThis has already been proven by the actions of management using those accounts for this purpose.\n\nAnyone believing Steemit as it exists currently to be a censorship free platform for free speech is sadly mistaken.", + "category": "philosophy", + "children": 0, + "created": "2016-08-20T21:35:15", + "curator_payout_value": "0.000 HBD", + "depth": 5, + "is_paidout": false, + "json_metadata": { + "tags": [ + "philosophy" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 37894124714862, + "parent_author": "stellabelle", + "parent_permlink": "re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t150054378z", + "payout": 218.456, + "payout_at": "2016-09-20T07:22:48", + "pending_payout_value": "218.456 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-stellabelle-re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t213500128z", + "post_id": 687886, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 16 + }, + "title": "RE: Our Corrupt Sense of Fairness", + "updated": "2016-08-20T21:35:15", + "url": "/philosophy/@dantheman/our-corrupt-sense-of-fairness#@michaelx/re-stellabelle-re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t213500128z" + }, + { + "active_votes": [ + { + "rshares": "29864685009305", + "voter": "berniesanders" + }, + { + "rshares": "189574335690", + "voter": "friend2" + }, + { + "rshares": "639212703934", + "voter": "justin" + }, + { + "rshares": "4968734358586", + "voter": "nextgencrypto" + }, + { + "rshares": "3084986672", + "voter": "boy" + }, + { + "rshares": "3744144508", + "voter": "bue-witness" + }, + { + "rshares": "708943618", + "voter": "bunny" + }, + { + "rshares": "52193349399", + "voter": "bue" + }, + { + "rshares": "1653762021", + "voter": "mini" + }, + { + "rshares": "213265420", + "voter": "moon" + }, + { + "rshares": "613500608", + "voter": "healthcare" + }, + { + "rshares": "886632294", + "voter": "daniel.pan" + }, + { + "rshares": "287496994", + "voter": "helen.tan" + }, + { + "rshares": "154121482815", + "voter": "jamtaylor" + }, + { + "rshares": "130134738142", + "voter": "thedashguy" + }, + { + "rshares": "39444938394", + "voter": "tiffjane" + }, + { + "rshares": "851256740", + "voter": "cousteau" + }, + { + "rshares": "5673774261", + "voter": "meesterboom" + }, + { + "rshares": "33726244522", + "voter": "condra" + }, + { + "rshares": "718346410", + "voter": "birdie" + }, + { + "rshares": "20128929530", + "voter": "rznag" + }, + { + "rshares": "51125341014", + "voter": "gomeravibz" + }, + { + "rshares": "1954050724", + "voter": "t3ran13" + }, + { + "rshares": "2194116353", + "voter": "xroni" + }, + { + "rshares": "403314436", + "voter": "theconnoisseur" + }, + { + "rshares": "11535444605", + "voter": "queenmountain" + }, + { + "rshares": "127023220", + "voter": "harrycoins" + }, + { + "rshares": "61084860", + "voter": "mndstruct" + }, + { + "rshares": "33194586794", + "voter": "thecurator" + }, + { + "rshares": "230160266", + "voter": "mefisto" + }, + { + "rshares": "1059907708", + "voter": "iamrohitkgupta" + }, + { + "rshares": "71181331", + "voter": "emilyjane" + }, + { + "rshares": "133481361", + "voter": "mweich" + }, + { + "rshares": "50281530", + "voter": "topslim" + } + ], + "author": "condra", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Congrats to everyone, and forgive me if you didn't place. It wasn't easy to omit so many amazing shots. The standard was very high and there were hundreds of submissions. Huge love for all the Steemit #photography community.", + "category": "steemitphotochallenge", + "children": 8, + "created": "2016-08-15T14:23:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "photography", + "steemitphotochallenge" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 36212532174065, + "parent_author": "jamtaylor", + "parent_permlink": "steemit-photo-challenge-4-winners-announcement-guest-judge-condra", + "payout": 218.336, + "payout_at": "2016-09-15T23:37:45", + "pending_payout_value": "218.336 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t142348222z", + "post_id": 613425, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 34 + }, + "title": "RE: \ud83d\udcf7 Steemit Photo Challenge #4 \u2014 WINNERS ANNOUNCEMENT! Guest Judge: @condra", + "updated": "2016-08-15T14:23:27", + "url": "/steemitphotochallenge/@jamtaylor/steemit-photo-challenge-4-winners-announcement-guest-judge-condra#@condra/re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t142348222z" + }, + { + "active_votes": [ + { + "rshares": "29864685009305", + "voter": "berniesanders" + }, + { + "rshares": "639212703934", + "voter": "justin" + }, + { + "rshares": "4968734358586", + "voter": "nextgencrypto" + }, + { + "rshares": "2467989338", + "voter": "boy" + }, + { + "rshares": "2995315607", + "voter": "bue-witness" + }, + { + "rshares": "567154894", + "voter": "bunny" + }, + { + "rshares": "41754679519", + "voter": "bue" + }, + { + "rshares": "1653762021", + "voter": "mini" + }, + { + "rshares": "170612336", + "voter": "moon" + }, + { + "rshares": "490800486", + "voter": "healthcare" + }, + { + "rshares": "709305835", + "voter": "daniel.pan" + }, + { + "rshares": "229997595", + "voter": "helen.tan" + }, + { + "rshares": "147833075316", + "voter": "jamtaylor" + }, + { + "rshares": "33749012863", + "voter": "condra" + }, + { + "rshares": "8813120108", + "voter": "blinova" + }, + { + "rshares": "177253189627", + "voter": "blueorgy" + }, + { + "rshares": "7958656381", + "voter": "kristylynn" + }, + { + "rshares": "250542489", + "voter": "nat4ka" + }, + { + "rshares": "2869166387", + "voter": "dercoco" + }, + { + "rshares": "403314436", + "voter": "theconnoisseur" + }, + { + "rshares": "33194586794", + "voter": "thecurator" + } + ], + "author": "blueorgy", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "**Amazing Entries** once again this weekend! The talent here on steemit just keeps on growing with each #SteemitPhotoChallenge and I feel it's 100% a direct result of this **trending topic**. So be proud of your work and if you didn't make it into the **Top 3** don't even think about giving up, the computation is tuff and @condra had a difficult time deciding I'm sure.\n\n
\n\n**Honourable Mentions**\n\n @kristylynn I really enjoyed this photo! It reminded me of when I was a kid grabbing dandelions at every change and blowing them all over the place! My father absolutely hated this because they would end up growing all over his lawn. Great work with the depth and the color is very pleasing. Thank you for bring back some old memories.\n\n@minion I tried to capture a very similar shot during my little exploration last sunday morning. I of course failed to get such a crisp, captivating, and **Super Lush** photo if you can describ the vibrant green colors this way. Great job on capturing that moment right before the water droplet escapes the branch , not easy and patience is required. \n\n**Finalist**\n\n@bebecitosfotos This flower is epic! The clarity and brightness is spot on and even the viewed in post and at lower resolution it still comes off as perfectly in focus (always a very difficult thing to do while using Macro). The background is just muted enough to capture a actual backdrop while not taking away fro the foreground image. Excellent work.\n\n@dercoco What can I say about this one... how about **EYES**. I have always loved the reptile eye, Great Work.\n\n@mweich This is spot on! Being able to capture the pollen on the Bee's legs was a great feat I tell you that, while still keeping other expects and depths of the photo in great focus is even harder, very still hand you must have! The angle of the photo and the choice of background imagery defiantly gave this photo an edge when it came to being Macro. The background is often forgot when capturing with Macro even thought it plays such a big role, you seem to have a very good eye for it. And **Congratulations!** on taking First Place!\n\n
\n\nAgain I can't say it enough great job everyone, keep it up!\nCan't wait for next weekend's challenge @jamtaylor make it a good one ;)\n\nBlue", + "category": "steemitphotochallenge", + "children": 0, + "created": "2016-08-15T16:39:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "steemitphotochallenge" + ], + "users": [ + "kristylynn", + "minion", + "bebecitosfotos", + "dercoco", + "mweich", + "jamtaylor" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 35935996353857, + "parent_author": "jamtaylor", + "parent_permlink": "steemit-photo-challenge-4-winners-announcement-guest-judge-condra", + "payout": 215.088, + "payout_at": "2016-09-15T23:37:45", + "pending_payout_value": "215.088 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t163904911z", + "post_id": 615071, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 21 + }, + "title": "RE: \ud83d\udcf7 Steemit Photo Challenge #4 \u2014 WINNERS ANNOUNCEMENT! Guest Judge: @condra", + "updated": "2016-08-15T16:52:30", + "url": "/steemitphotochallenge/@jamtaylor/steemit-photo-challenge-4-winners-announcement-guest-judge-condra#@blueorgy/re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t163904911z" + }, + { + "active_votes": [ + { + "rshares": "29864685009305", + "voter": "berniesanders" + }, + { + "rshares": "639212703934", + "voter": "justin" + }, + { + "rshares": "4968734358586", + "voter": "nextgencrypto" + }, + { + "rshares": "11700424464", + "voter": "by24seven" + }, + { + "rshares": "18794778971", + "voter": "ozzy-vega" + }, + { + "rshares": "106925555861", + "voter": "anyx" + }, + { + "rshares": "278001908", + "voter": "mirrax" + }, + { + "rshares": "17506904849", + "voter": "keithsmih" + }, + { + "rshares": "20129459504", + "voter": "cheetah" + }, + { + "rshares": "100129802", + "voter": "cheetah33" + }, + { + "rshares": "403314436", + "voter": "theconnoisseur" + }, + { + "rshares": "100111679", + "voter": "cheetah34" + }, + { + "rshares": "33194586794", + "voter": "thecurator" + }, + { + "rshares": "198033574", + "voter": "alorya" + }, + { + "rshares": "360071237", + "voter": "seraph" + }, + { + "rshares": "154615872", + "voter": "celestial" + } + ], + "author": "cheetah", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Hi! I am a content-detection robot. This post is to help manual curators; I have NOT flagged you.\nHere is similar content:\nhttp://www.youtube.com/watch?v=Jetfhhkg_YU", + "category": "blocktalk", + "children": 4, + "created": "2016-08-15T19:46:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 35682478060776, + "parent_author": "blocktalk", + "parent_permlink": "blocktalk-with-nexus-colin-cantrell-question-thread", + "payout": 212.366, + "payout_at": "2016-09-16T00:01:18", + "pending_payout_value": "212.366 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-blocktalk-with-nexus-colin-cantrell-question-thread-20160815t194601", + "post_id": 617412, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 16 + }, + "title": "RE: #Blocktalk with Nexus' Colin Cantrell [Question Thread]", + "updated": "2016-08-15T19:46:09", + "url": "/blocktalk/@blocktalk/blocktalk-with-nexus-colin-cantrell-question-thread#@cheetah/re-blocktalk-with-nexus-colin-cantrell-question-thread-20160815t194601" + }, + { + "active_votes": [ + { + "rshares": "17387563883098", + "voter": "itsascam" + }, + { + "rshares": "2050320927937", + "voter": "steemroller" + }, + { + "rshares": "17506821189546", + "voter": "steemed" + }, + { + "rshares": "2472687085", + "voter": "boy" + }, + { + "rshares": "3001252537", + "voter": "bue-witness" + }, + { + "rshares": "562430414", + "voter": "bunny" + }, + { + "rshares": "42191835467", + "voter": "bue" + }, + { + "rshares": "1325422094", + "voter": "mini" + }, + { + "rshares": "170789230", + "voter": "moon" + }, + { + "rshares": "497255693", + "voter": "healthcare" + }, + { + "rshares": "737466177", + "voter": "daniel.pan" + }, + { + "rshares": "230274999", + "voter": "helen.tan" + }, + { + "rshares": "5163277168", + "voter": "christoryan" + }, + { + "rshares": "4146107046", + "voter": "fishborne" + }, + { + "rshares": "100022771", + "voter": "darkstar1o9" + }, + { + "rshares": "58035101", + "voter": "aaronjwhite" + } + ], + "author": "knircky", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Nope a stock is not a ponzu scheme and steem is not either.\n\nI am sick of people that cannot understand how things calling them Ponzi schemes, so they can sound smarter than they are.", + "category": "steemit", + "children": 10, + "created": "2016-08-20T03:22:36", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "tags": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 37005362856363, + "parent_author": "gmalhotra", + "parent_permlink": "re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t025813753z", + "payout": 210.101, + "payout_at": "2016-09-20T07:57:42", + "pending_payout_value": "210.101 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gmalhotra-re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t032236858z", + "post_id": 678887, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 16 + }, + "title": "RE: Is Bitcoin a Ponzi too? A Simple Explanation about Where Does Money Come From for Dummies", + "updated": "2016-08-20T03:22:36", + "url": "/steemit/@clayop/is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies#@knircky/re-gmalhotra-re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t032236858z" + }, + { + "active_votes": [ + { + "rshares": "29186049220380", + "voter": "berniesanders" + }, + { + "rshares": "623996958321", + "voter": "justin" + }, + { + "rshares": "4855865727368", + "voter": "nextgencrypto" + }, + { + "rshares": "154146763309", + "voter": "jamtaylor" + }, + { + "rshares": "-5787205072", + "voter": "zebbra2014" + }, + { + "rshares": "106890789634", + "voter": "anyx" + }, + { + "rshares": "9733889143", + "voter": "senseiteekay" + }, + { + "rshares": "9400027589", + "voter": "shredlord" + }, + { + "rshares": "61646469732", + "voter": "cheetah" + }, + { + "rshares": "219824678620", + "voter": "originate" + }, + { + "rshares": "685101796", + "voter": "metaflute" + }, + { + "rshares": "394148198", + "voter": "theconnoisseur" + }, + { + "rshares": "32404401324", + "voter": "thecurator" + }, + { + "rshares": "16011014560", + "voter": "someguy123" + }, + { + "rshares": "188226473", + "voter": "andyinspace" + } + ], + "author": "anyx", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "This user is a serial plagiarist who has taken to spinning articles to plagiarize, instead of providing sources and discussion.\n\n!cheetah ban", + "category": "workout", + "children": 1, + "created": "2016-08-15T22:56:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "workout" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 35271450211375, + "parent_author": "dopezzz123", + "parent_permlink": "why-muscles-get-sore", + "payout": 208.151, + "payout_at": "2016-09-15T23:59:09", + "pending_payout_value": "208.151 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dopezzz123-why-muscles-get-sore-20160815t225638685z", + "post_id": 619811, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 15 + }, + "title": "RE: Why Muscles Get Sore", + "updated": "2016-08-15T22:56:39", + "url": "/workout/@dopezzz123/why-muscles-get-sore#@anyx/re-dopezzz123-why-muscles-get-sore-20160815t225638685z" + }, + { + "active_votes": [ + { + "rshares": "17387563883098", + "voter": "itsascam" + }, + { + "rshares": "2478143633692", + "voter": "blocktrades" + }, + { + "rshares": "17508649345673", + "voter": "steemed" + }, + { + "rshares": "2472598979", + "voter": "boy" + }, + { + "rshares": "3001139259", + "voter": "bue-witness" + }, + { + "rshares": "562419226", + "voter": "bunny" + }, + { + "rshares": "42178757456", + "voter": "bue" + }, + { + "rshares": "1325381537", + "voter": "mini" + }, + { + "rshares": "170789230", + "voter": "moon" + }, + { + "rshares": "497247302", + "voter": "healthcare" + }, + { + "rshares": "737445199", + "voter": "daniel.pan" + }, + { + "rshares": "230273601", + "voter": "helen.tan" + }, + { + "rshares": "38894121671", + "voter": "claudiop63" + }, + { + "rshares": "7143405548", + "voter": "goose" + } + ], + "author": "thylbom", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I definitely agree that the password recovery problem is a good one to work on. People who have been involved in crypto for some time are almost instinctively aware of the importance of safeguarding private keys, but \"mainstream\" adopters are accustomed to a world of hand-holding where the powers that be can bail you out if you are careless, stupid, forgetful or unlucky. If a method can be devised to facilitate recovery without sacrificing security, it can avoid problems of negative user experience that could hurt the platform's prospects for widespread adaption.", + "category": "witness-category", + "children": 1, + "created": "2016-08-19T21:34:42", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "witness-category" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 37471570441471, + "parent_author": "blocktrades", + "parent_permlink": "blocktrades-witness-report-for-3rd-week-of-august", + "payout": 204.392, + "payout_at": "2016-09-20T02:41:45", + "pending_payout_value": "204.392 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-blocktrades-blocktrades-witness-report-for-3rd-week-of-august-20160819t213441316z", + "post_id": 675843, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 14 + }, + "title": "RE: BlockTrades Witness Report for 3rd Week of August", + "updated": "2016-08-19T21:34:57", + "url": "/witness-category/@blocktrades/blocktrades-witness-report-for-3rd-week-of-august#@thylbom/re-blocktrades-blocktrades-witness-report-for-3rd-week-of-august-20160819t213441316z" + }, + { + "active_votes": [ + { + "rshares": "17735315160760", + "voter": "itsascam" + }, + { + "rshares": "17865766992651", + "voter": "steemed" + }, + { + "rshares": "3091007147", + "voter": "boy" + }, + { + "rshares": "3751778512", + "voter": "bue-witness" + }, + { + "rshares": "703064185", + "voter": "bunny" + }, + { + "rshares": "52778799199", + "voter": "bue" + }, + { + "rshares": "1656856120", + "voter": "mini" + }, + { + "rshares": "213490026", + "voter": "moon" + }, + { + "rshares": "621592296", + "voter": "healthcare" + }, + { + "rshares": "923609344", + "voter": "daniel.pan" + }, + { + "rshares": "287848982", + "voter": "helen.tan" + }, + { + "rshares": "27692743706", + "voter": "r4fken" + } + ], + "author": "r4fken", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Do I understand correctly that you're referencing the initial \"mining\" by a select group of devs and friends, resulting in \"overwhelming control\" by means of vests now?\nOr am I just imagining things? :)", + "category": "philosophy", + "children": 0, + "created": "2016-08-20T09:06:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "tags": [ + "philosophy" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 35692802942928, + "parent_author": "steemed", + "parent_permlink": "re-dantheman-our-corrupt-sense-of-fairness-20160820t035220528z", + "payout": 196.246, + "payout_at": "2016-09-20T07:22:48", + "pending_payout_value": "196.246 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z", + "post_id": 681168, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 12 + }, + "title": "RE: Our Corrupt Sense of Fairness", + "updated": "2016-08-20T09:07:12", + "url": "/philosophy/@dantheman/our-corrupt-sense-of-fairness#@r4fken/re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z" + }, + { + "active_votes": [ + { + "rshares": "727407423660", + "voter": "erath" + }, + { + "rshares": "644958517124", + "voter": "smooth" + }, + { + "rshares": "28855608662", + "voter": "anonymous" + }, + { + "rshares": "8486664643623", + "voter": "rainman" + }, + { + "rshares": "6370652360778", + "voter": "wackou" + }, + { + "rshares": "82613356260", + "voter": "friend5" + }, + { + "rshares": "6571978360124", + "voter": "roadscape" + }, + { + "rshares": "2470238755", + "voter": "boy" + }, + { + "rshares": "2998129153", + "voter": "bue-witness" + }, + { + "rshares": "567603623", + "voter": "bunny" + }, + { + "rshares": "41948298509", + "voter": "bue" + }, + { + "rshares": "1324164960", + "voter": "mini" + }, + { + "rshares": "170709221", + "voter": "moon" + }, + { + "rshares": "1813610822120", + "voter": "joseph" + }, + { + "rshares": "108871922542", + "voter": "smooth.witness" + }, + { + "rshares": "51208392605", + "voter": "twiceuponatime" + }, + { + "rshares": "139867989371", + "voter": "indominon" + }, + { + "rshares": "2942087618871", + "voter": "onceuponatime" + }, + { + "rshares": "728571343037", + "voter": "marginal" + }, + { + "rshares": "937174079758", + "voter": "cass" + }, + { + "rshares": "76036949216", + "voter": "vault" + }, + { + "rshares": "496873319", + "voter": "healthcare" + }, + { + "rshares": "725575461", + "voter": "daniel.pan" + }, + { + "rshares": "230145753", + "voter": "helen.tan" + }, + { + "rshares": "410807696946", + "voter": "chryspano" + }, + { + "rshares": "9521769889", + "voter": "acidyo" + }, + { + "rshares": "19196002726", + "voter": "mughat" + }, + { + "rshares": "47541496466", + "voter": "nphacker" + }, + { + "rshares": "3892379945", + "voter": "kennyskitchen" + }, + { + "rshares": "129268320437", + "voter": "schro" + }, + { + "rshares": "92995154682", + "voter": "thedashguy" + }, + { + "rshares": "213701132994", + "voter": "lukestokes" + }, + { + "rshares": "276395602", + "voter": "carlgetalada" + }, + { + "rshares": "28736613783", + "voter": "catchfire" + }, + { + "rshares": "5894409181", + "voter": "quintanilla" + }, + { + "rshares": "41089533337", + "voter": "bacchist" + }, + { + "rshares": "8483258053", + "voter": "cannav" + }, + { + "rshares": "65583674268", + "voter": "discombobulated" + }, + { + "rshares": "1259117194", + "voter": "chrisj" + }, + { + "rshares": "3704243578", + "voter": "krystle" + }, + { + "rshares": "14629758637", + "voter": "artakan" + }, + { + "rshares": "6012406044", + "voter": "phenom" + }, + { + "rshares": "17402129371", + "voter": "crazymumzysa" + }, + { + "rshares": "4183080661", + "voter": "bbrewer" + }, + { + "rshares": "35472659687", + "voter": "fatboy" + }, + { + "rshares": "3978086691", + "voter": "beanz" + }, + { + "rshares": "22725564707", + "voter": "solidgold" + }, + { + "rshares": "24344116072", + "voter": "jasonstaggers" + }, + { + "rshares": "6603057948", + "voter": "najoh" + }, + { + "rshares": "12993857503", + "voter": "capitalism" + }, + { + "rshares": "4872113322", + "voter": "satoshifpv" + }, + { + "rshares": "2818362970", + "voter": "aboundlessworld" + }, + { + "rshares": "2636752145", + "voter": "oflyhigh" + }, + { + "rshares": "3558963294", + "voter": "randyclemens" + }, + { + "rshares": "377494461", + "voter": "alifton" + }, + { + "rshares": "26914242849", + "voter": "bitcalm" + }, + { + "rshares": "1692339912", + "voter": "davidbrogan" + }, + { + "rshares": "56779364", + "voter": "negoshi" + }, + { + "rshares": "50997147", + "voter": "david.prochnow" + }, + { + "rshares": "50258926", + "voter": "doze49" + }, + { + "rshares": "61941319", + "voter": "fraterralph" + }, + { + "rshares": "52891748", + "voter": "onlyspeakslies" + } + ], + "author": "lukestokes", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "`dictatorship`, `hindenburg`, `titanic` and a hitler meme are all a bit too over the top for me. I'm glad you're voicing your concerns, but a \"Dan must be stopped\" call to action against the very person who created what we are all enjoying isn't (IMO) the best approach for having a respectful dialogue about the issue. It seems many are already discussing the issue on github and voicing their disapproval there. We'll see where it goes from here, and it's definitely something to keep an eye on. For that, I thank you, but I won't give you my vote on this post because I think the tone is counter productive to a rational, open conversation about the issue. I may be wrong and maybe a more alarmist tone is called for. As with many things, we shall see over time.", + "category": "steem", + "children": 38, + "created": "2016-08-17T04:58:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "steem" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 31034930180364, + "parent_author": "bacchist", + "parent_permlink": "dan-needs-to-be-stopped", + "payout": 164.026, + "payout_at": "2016-09-17T19:51:06", + "pending_payout_value": "164.026 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-bacchist-dan-needs-to-be-stopped-20160817t045803929z", + "post_id": 637043, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 62 + }, + "title": "RE: Dan needs to be stopped", + "updated": "2016-08-17T12:34:09", + "url": "/steem/@bacchist/dan-needs-to-be-stopped#@lukestokes/re-bacchist-dan-needs-to-be-stopped-20160817t045803929z" + }, + { + "active_votes": [ + { + "rshares": "28300878156066", + "voter": "dantheman" + }, + { + "rshares": "636585679281", + "voter": "smooth" + }, + { + "rshares": "6549727125575", + "voter": "wackou" + }, + { + "rshares": "3099954800", + "voter": "boy" + }, + { + "rshares": "3763461212", + "voter": "bue-witness" + }, + { + "rshares": "690406462", + "voter": "bunny" + }, + { + "rshares": "54138246944", + "voter": "bue" + }, + { + "rshares": "1661302953", + "voter": "mini" + }, + { + "rshares": "213684579", + "voter": "moon" + }, + { + "rshares": "251709705259", + "voter": "lovejoy" + }, + { + "rshares": "2511125853605", + "voter": "recursive" + }, + { + "rshares": "114398906816", + "voter": "smooth.witness" + }, + { + "rshares": "622843501", + "voter": "healthcare" + }, + { + "rshares": "967387415", + "voter": "daniel.pan" + }, + { + "rshares": "288174518", + "voter": "helen.tan" + }, + { + "rshares": "71291626568", + "voter": "eric-boucher" + }, + { + "rshares": "5223833163", + "voter": "christoryan" + }, + { + "rshares": "4999497773", + "voter": "zelgald1" + }, + { + "rshares": "63437792", + "voter": "tommycordero" + }, + { + "rshares": "11501604178", + "voter": "darrantrute" + }, + { + "rshares": "615797359", + "voter": "nebcat" + }, + { + "rshares": "381939549", + "voter": "kiwideb" + }, + { + "rshares": "444650943", + "voter": "floweroflife" + }, + { + "rshares": "807251193", + "voter": "kingarbinv" + }, + { + "rshares": "10978877529", + "voter": "skypilot" + }, + { + "rshares": "2610482432", + "voter": "robcichocki" + } + ], + "author": "recursive", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "> This state of being creates a paradox for those with aims to change the world. If you are at complete peace with the way things are, then what motive is there to change the world? On what basis should you choose to act? This is the very heart of economics, the study of human action. This is the root of my current internal conflict.\n\nMahayana (Great Vehicle) buddhism may have an answer to that apparent conflict you are experiencing. According to the Mahayana tradition, true enlightenment cannot be reached merely by cultivating inner peace and eliminating delusions and suffering in isolation of other people, because doing so remains a selfish endeavor that implies that one hasn't truly reached the state of selflessness that underlies enlightenment. \n\nInstead, at some point along the path to enlightenment, one realizes that one's true nature is that of being conscious: a pure form of benevolent consciousness without shape and boundaries, and that permeates all that is. At that point, one doesn't seek anymore to deliver from suffering that fictious \"ego\" entity that has long been identified as a delusion, but instead seeks to deliver all of consciousness from suffering, including all sentient beings. This intrinsic benevolence of consciousness is what we call \"compassion\", and is the central tenet of Mahayana tradition. It is both the ultimate goal and the mean to reach that goal. By cultivating compassion, one reveals his compassionate nature, and this compassion is what will eventually lead to a contradiction with the ego and materialistic delusions, and their dissolution. \n\nFrom that perspective, he who seeks enlightenment will first accept reality as it is, and reach what first feels as a form of blissful and permanent internal peace (this is typically what Hinayana / Small Vehicule buddhism think is enlightenment, and this includes some famous western self-help authors), but will soon realize that there is one type of suffering that transcends attachment and the delusion of self and that can't be addressed by meditation and spiritual practice alone but on the contrary become more and more sharp: the suffering of seeing others suffering within this reality. This is because suffering is a noble truth, a truth that can't be denied, ignored or accepted but simply acknowledged as being true. This leads to a paradox where embracing reality leads to embracing a form of suffering that can only be eliminated by altering reality which cannot be achieved if one simply embraces reality. The only solution to this apparent paradox is to realize that reality is impermanent and can be embraced while being altered. It should be accepted in the present so that one may live free from delusions and attachment, and reduce suffering to the prime denominator of the quintessential and universally experienced suffering of being alive, while being actively shaped with all one's will and energy into a future reality where other sentient beings suffer less.\n\nUnder the mahayana assumption that consciousness is intrinsically benevolent and unable not to experience compassion as it gets closer to enlightenment, acting with all one's will and energy against the corruption that permeates reality and increases suffering of other sentient beings is not only consistent, but the one and only true way to enlightenment.\n\nArguably, government is one such big chunk of pervasive corruption that has spread like weed in our consensual reality, and creates an inordinate amount of suffering. From that perspective, being anarchist isn't only a political view, it is a statement of compassion. Ask the Dalai Lama what he thinks about governments...", + "category": "philosophy", + "children": 1, + "created": "2016-09-01T18:48:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "philosophy" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 38538789887465, + "parent_author": "dantheman", + "parent_permlink": "why-do-we-fight-to-change-the-world", + "payout": 160.617, + "payout_at": "2016-10-02T19:14:21", + "pending_payout_value": "160.617 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dantheman-why-do-we-fight-to-change-the-world-20160901t184948317z", + "post_id": 826676, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 26 + }, + "title": "RE: Why do we fight to change the world?", + "updated": "2016-09-01T19:11:48", + "url": "/philosophy/@dantheman/why-do-we-fight-to-change-the-world#@recursive/re-dantheman-why-do-we-fight-to-change-the-world-20160901t184948317z" + }, + { + "active_votes": [ + { + "rshares": "31543759293106", + "voter": "val-a" + }, + { + "rshares": "22090812048", + "voter": "domino" + }, + { + "rshares": "28897024316", + "voter": "zaebars" + }, + { + "rshares": "1953557909", + "voter": "andreynoch" + }, + { + "rshares": "1708472880", + "voter": "litrbooh" + }, + { + "rshares": "1188786726", + "voter": "nonamer" + }, + { + "rshares": "53257299", + "voter": "shvedas" + } + ], + "author": "val-a", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437 \u0432\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u044b:\n> \u0414\u043e\u0445\u043e\u0434 _\u043f\u0435\u0440\u0432\u044b\u043c_ _\u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c_ \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u044b \u0432\u044b\u043f\u043b\u0430\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0437\u0430 \u0441\u0447\u0435\u0442 \u0432\u043a\u043b\u0430\u0434\u043e\u0432 \u043f\u043e\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432.\n\n\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 _\u043f\u0435\u0440\u0432\u044b\u043c_ \u0438 _\u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c_ (\u043f\u043e\u0434 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c\u0438 \u043f\u043e\u0434\u0440\u0430\u0437\u0443\u043c\u0435\u0432\u0430\u044e\u0442\u0441\u044f \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u044b), \u0430 \u0432 \u0441\u043b\u0443\u0447\u0430\u0435 \u0421\u0442\u0438\u043c\u0430 \u0434\u043e\u0445\u043e\u0434 \u043f\u043e\u043b\u0443\u0447\u0430\u044e\u0442 \u043d\u0435 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u044b, \u0430 \u0430\u0432\u0442\u043e\u0440\u044b \u043e\u0442 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043d\u0438 \u043a\u043e\u043f\u0435\u0439\u043a\u0438 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0435\u0436\u0434\u0435 \u043e\u043d\u0438 \u043d\u0430\u0447\u043d\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0434\u043e\u0445\u043e\u0434. \u0418\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u044b \u0442\u0435\u043e\u0440\u0435\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0434\u043e\u0445\u043e\u0434, \u0435\u0441\u043b\u0438 \u0446\u0435\u043d\u0430 STEEM, SP \u0438\u043b\u0438 SD \u0432\u044b\u0440\u0430\u0441\u0442\u0435\u0442, \u043d\u043e \u044d\u0442\u043e\u0433\u043e \u0438\u043c \u043d\u0438\u043a\u0442\u043e \u043d\u0435 \u043e\u0431\u0435\u0449\u0430\u0435\u0442 (\u0432 \u043e\u0442\u043b\u0438\u0447\u0438\u0438 \u043e\u0442 \u043f\u0438\u0440\u0430\u043c\u0438\u0434). \u041a \u0442\u043e\u043c\u0443 \u0436\u0435 \u0430\u0432\u0442\u043e\u0440\u0430\u043c \u0432\u044b\u043f\u043b\u0430\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0433\u043e\u043d\u043e\u0440\u0430\u0440 \u043d\u0435 \u0441 \u0434\u0435\u043d\u0435\u0433 \u043d\u043e\u0432\u044b\u0445 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432, \u0430 \u0440\u0430\u0437\u043c\u044b\u0442\u0438\u0435\u043c \u0434\u043e\u043b\u0438 \u0432\u0441\u0435\u0445 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0445 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432 \u0432 STEEM \u0438\u043b\u0438 \u0432 SP, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0438 \u0434\u043e\u043b\u0438 \u043a\u0438\u0442\u043e\u0432. \u0414\u043e\u0445\u043e\u0434 \u043a\u0438\u0442\u043e\u0432, \u0438\u043b\u0438 \u043b\u044e\u0431\u043e\u0433\u043e, \u043a\u0442\u043e \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043b \u043d\u0430 \u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u043c \u044d\u0442\u0430\u043f\u0435 \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043e\u0442 \u043d\u043e\u0432\u044b\u0445 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u0439 \u0432 \u0442\u043e\u0439 \u0436\u0435 \u0441\u0442\u0435\u043f\u0435\u043d\u0438 \u043a\u0430\u043a \u0438 \u0432 \u043b\u044e\u0431\u043e\u0439 \u0434\u0440\u0443\u0433\u043e\u0439 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0435.\n\n\u0412\u043c\u0435\u0441\u0442\u043e \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044f \u0441 \u043f\u0440\u0438\u0440\u0430\u043c\u0438\u0434\u043e\u0439, \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438\u0432\u043d\u0435\u0435 \u0441\u0440\u0430\u0432\u043d\u0438\u0442\u044c \u0441 \u043e\u0431\u044b\u043a\u043d\u043e\u0432\u0435\u043d\u043d\u044b\u043c \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u043e\u043c, \u0432\u043e\u0437\u044c\u043c\u0438\u0442\u0435 \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0422\u0432\u0438\u0442\u0435\u0440 - \u043f\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u043c\u0443 \u0441\u0447\u0435\u0442\u0443 \u043e\u043d\u0438, \u044f\u0432\u043b\u044f\u0441\u044c \u0443\u0431\u044b\u0442\u043e\u0447\u043d\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 (\u0434\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 10 \u043b\u0435\u0442 \u0438 \u043e\u043d\u0430 \u0434\u043e \u0441\u0438\u0445 \u043f\u043e\u0440 \u0443\u0431\u044b\u0442\u043e\u0447\u043d\u0430), \u043f\u043b\u0430\u0442\u044f\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c (\u043d\u0435 \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e, \u0430 \u043a\u043e\u0441\u0432\u0435\u043d\u043d\u043e, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u043e\u043f\u043b\u0430\u0447\u0438\u0432\u0430\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0432 \u0434\u0430\u0442\u0430\u0446\u0435\u043d\u0442\u0440\u0435) \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u044f \u0434\u043e\u043b\u044e/\u0430\u043a\u0446\u0438\u0438 \u0444\u0430\u0443\u043d\u0434\u0435\u0440\u043e\u0432 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u0430\u043c. \u041f\u043e\u0447\u0435\u043c\u0443 \u0430\u043a\u0446\u0438\u0438 \u0442\u0432\u0438\u0442\u0435\u0440\u0430 \u0441\u0442\u043e\u044f\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0443\u043b\u044f? \u041f\u043e\u0447\u0435\u043c\u0443 \u0422\u0432\u0438\u0442\u0435\u0440 \u043d\u0438\u043a\u0442\u043e \u043d\u0435 \u043d\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u043e\u0439?\n\n\u0418\u043b\u0438 \u0441\u0440\u0430\u0432\u043d\u0438\u0442\u0435 \u0441\u0442\u0438\u043c \u0441 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u043c - \u0441 \u0442\u0430\u043a\u0438\u043c \u0436\u0435 \u0443\u0441\u043f\u0435\u0445\u043e\u043c \u0438 \u0431\u0438\u0442\u043a\u043e\u0438\u043d \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0437\u0432\u0430\u0442\u044c \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u043e\u0439 - \u0432\u0435\u0434\u044c \u043f\u043b\u0430\u0442\u0438\u0442 \u0436\u0435 \u043c\u0430\u0439\u043d\u0435\u0440\u0430\u043c \u0434\u0435\u043d\u044c\u0433\u0430\u043c\u0438 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432.\n\n(p.s. \u043f\u0440\u043e\u0433\u043e\u043b\u043e\u0441\u0443\u044e \u0437\u0430 \u0441\u0435\u0431\u044f, \u0447\u0442\u043e \u0431\u044b \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043a\u0430\u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c SP \u0434\u043b\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u043f\u043e\u0441\u0442\u043e\u0432)", + "category": "ru-steemit", + "children": 12, + "created": "2016-08-24T03:37:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "ru-steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 31599651204284, + "parent_author": "litrbooh", + "parent_permlink": "budushee-steemit-nuzhna-li-reklama-v-steemit", + "payout": 149.954, + "payout_at": "2016-09-24T02:46:54", + "pending_payout_value": "149.954 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-litrbooh-budushee-steemit-nuzhna-li-reklama-v-steemit-20160824t033703760z", + "post_id": 726941, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 7 + }, + "title": "RE: \u0411\u0443\u0434\u0443\u0449\u0435\u0435 STEEMIT. \u041d\u0443\u0436\u043d\u0430 \u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u0432 STEEMIT?", + "updated": "2016-08-24T03:37:03", + "url": "/ru-steemit/@litrbooh/budushee-steemit-nuzhna-li-reklama-v-steemit#@val-a/re-litrbooh-budushee-steemit-nuzhna-li-reklama-v-steemit-20160824t033703760z" + }, + { + "active_votes": [ + { + "rshares": "-6795625112", + "voter": "highasfuck" + }, + { + "rshares": "164482168912", + "voter": "nextgenwitness" + }, + { + "rshares": "5468384423175", + "voter": "kushed" + }, + { + "rshares": "4945364226662", + "voter": "silversteem" + }, + { + "rshares": "4656370926104", + "voter": "nextgencrypto" + }, + { + "rshares": "3100766695", + "voter": "boy" + }, + { + "rshares": "3764486632", + "voter": "bue-witness" + }, + { + "rshares": "690539083", + "voter": "bunny" + }, + { + "rshares": "7221866970964", + "voter": "complexring" + }, + { + "rshares": "54261605662", + "voter": "bue" + }, + { + "rshares": "30390370257", + "voter": "danknugs" + }, + { + "rshares": "1661700819", + "voter": "mini" + }, + { + "rshares": "213710460", + "voter": "moon" + }, + { + "rshares": "38600533043", + "voter": "aizensou" + }, + { + "rshares": "12269445334", + "voter": "bentley" + }, + { + "rshares": "2651243328828", + "voter": "recursive" + }, + { + "rshares": "1820914592", + "voter": "mineralwasser" + }, + { + "rshares": "1066518981517", + "voter": "boombastic" + }, + { + "rshares": "9578311657", + "voter": "bingo-0" + }, + { + "rshares": "2440314179", + "voter": "bingo-1" + }, + { + "rshares": "1336788173111", + "voter": "benjojo" + }, + { + "rshares": "749198663628", + "voter": "pfunk" + }, + { + "rshares": "622955105", + "voter": "healthcare" + }, + { + "rshares": "1039484860678", + "voter": "tuck-fheman" + }, + { + "rshares": "967591200", + "voter": "daniel.pan" + }, + { + "rshares": "2783598325676", + "voter": "donkeypong" + }, + { + "rshares": "7288280988", + "voter": "patrice" + }, + { + "rshares": "288213327", + "voter": "helen.tan" + }, + { + "rshares": "14796343926", + "voter": "piedpiper" + }, + { + "rshares": "8972462707", + "voter": "ervin-lemark" + }, + { + "rshares": "715648773415", + "voter": "eeks" + }, + { + "rshares": "854401132096", + "voter": "cryptogee" + }, + { + "rshares": "5470652472", + "voter": "spaninv" + }, + { + "rshares": "726664133144", + "voter": "nanzo-scoop" + }, + { + "rshares": "16798528489", + "voter": "acidyo" + }, + { + "rshares": "3868778895", + "voter": "jonno-katz" + }, + { + "rshares": "56779104986", + "voter": "hannixx42" + }, + { + "rshares": "239176165083", + "voter": "mummyimperfect" + }, + { + "rshares": "71220031567", + "voter": "asch" + }, + { + "rshares": "608622985586", + "voter": "kevinwong" + }, + { + "rshares": "73303668582", + "voter": "beerbloke" + }, + { + "rshares": "65759745683", + "voter": "ak2020" + }, + { + "rshares": "53884344664", + "voter": "thecryptofiend" + }, + { + "rshares": "10426970985", + "voter": "hien-tran" + }, + { + "rshares": "2264268111917", + "voter": "stellabelle" + }, + { + "rshares": "57529825067", + "voter": "juanmiguelsalas" + }, + { + "rshares": "4476883095", + "voter": "dahaz159" + }, + { + "rshares": "306456223000", + "voter": "kaylinart" + }, + { + "rshares": "501259458185", + "voter": "infovore" + }, + { + "rshares": "26315426014", + "voter": "kus-knee" + }, + { + "rshares": "11630218162", + "voter": "ossama-benjohn" + }, + { + "rshares": "648138422927", + "voter": "anwenbaumeister" + }, + { + "rshares": "69137542683", + "voter": "razvanelulmarin" + }, + { + "rshares": "35291674341", + "voter": "cryptoiskey" + }, + { + "rshares": "360818648", + "voter": "chetlanin" + }, + { + "rshares": "84518713331", + "voter": "venuspcs" + }, + { + "rshares": "2936111289", + "voter": "psychonaut" + }, + { + "rshares": "318074226526", + "voter": "roelandp" + }, + { + "rshares": "4261065978", + "voter": "dennygalindo" + }, + { + "rshares": "140535670338", + "voter": "chhaylin" + }, + { + "rshares": "38348578159", + "voter": "firepower" + }, + { + "rshares": "254364900", + "voter": "mstang83" + }, + { + "rshares": "116908007408", + "voter": "chhayll" + }, + { + "rshares": "2812431753", + "voter": "stranger27" + }, + { + "rshares": "13896170396", + "voter": "yogi.artist" + }, + { + "rshares": "14528410967", + "voter": "elyaque" + }, + { + "rshares": "2046170935", + "voter": "r4fken" + }, + { + "rshares": "72655151512", + "voter": "furion" + }, + { + "rshares": "96443143963", + "voter": "sigmajin" + }, + { + "rshares": "40575184405", + "voter": "mrwang" + }, + { + "rshares": "1287519621", + "voter": "steem1653" + }, + { + "rshares": "1827599826", + "voter": "marcgodard" + }, + { + "rshares": "21069395024", + "voter": "akareyon" + }, + { + "rshares": "16233014225", + "voter": "sebastien" + }, + { + "rshares": "1214668585", + "voter": "flyingmind" + }, + { + "rshares": "3259008743", + "voter": "steemit-life" + }, + { + "rshares": "38541756150", + "voter": "diana.catherine" + }, + { + "rshares": "241033184", + "voter": "bobkillaz" + }, + { + "rshares": "9142372606", + "voter": "deviedev" + }, + { + "rshares": "306656746516", + "voter": "knozaki2015" + }, + { + "rshares": "2482350068", + "voter": "steemgrindr" + }, + { + "rshares": "3860285221", + "voter": "adamt" + }, + { + "rshares": "270410711489", + "voter": "calaber24p" + }, + { + "rshares": "9763976269", + "voter": "pcste" + }, + { + "rshares": "231813853890", + "voter": "liberosist" + }, + { + "rshares": "9172859646", + "voter": "oumar" + }, + { + "rshares": "35903507776", + "voter": "sauravrungta" + }, + { + "rshares": "37542098641", + "voter": "rea" + }, + { + "rshares": "21424668654", + "voter": "prufarchy" + }, + { + "rshares": "9888950976", + "voter": "carlidos" + }, + { + "rshares": "17018462501", + "voter": "cryptocameo" + }, + { + "rshares": "38704462901", + "voter": "claudiop63" + }, + { + "rshares": "10716559196", + "voter": "phoenixmaid" + }, + { + "rshares": "2850823006", + "voter": "tjpezlo" + }, + { + "rshares": "13269181041", + "voter": "clevecross" + }, + { + "rshares": "24054735183", + "voter": "smailer" + }, + { + "rshares": "18688350126", + "voter": "pixielolz" + }, + { + "rshares": "26483585759", + "voter": "williambanks" + }, + { + "rshares": "3431378627", + "voter": "webosfritos" + }, + { + "rshares": "89283515898", + "voter": "shaka" + }, + { + "rshares": "73511111757", + "voter": "twinner" + }, + { + "rshares": "1475564323", + "voter": "handmade" + }, + { + "rshares": "9986529692", + "voter": "viktor.phuket" + }, + { + "rshares": "4245841619", + "voter": "ullikume" + }, + { + "rshares": "6013694326", + "voter": "ekitcho" + }, + { + "rshares": "2112721437", + "voter": "joele" + }, + { + "rshares": "4344750511", + "voter": "oflyhigh" + }, + { + "rshares": "11208435898", + "voter": "randyclemens" + }, + { + "rshares": "315529006", + "voter": "rusteller" + }, + { + "rshares": "8668714921", + "voter": "gargon" + }, + { + "rshares": "2402681750", + "voter": "pgarcgo" + }, + { + "rshares": "4722016641", + "voter": "theconnoisseur" + }, + { + "rshares": "13978892123", + "voter": "queenmountain" + }, + { + "rshares": "21216135219", + "voter": "hanshotfirst" + }, + { + "rshares": "360104574", + "voter": "herbertmueller" + }, + { + "rshares": "2790597203", + "voter": "lightsplasher" + }, + { + "rshares": "760244820", + "voter": "princewahaj" + }, + { + "rshares": "7124799262", + "voter": "theb0red1" + }, + { + "rshares": "59327261726", + "voter": "serejandmyself" + }, + { + "rshares": "3673690786", + "voter": "anarchyhasnogods" + }, + { + "rshares": "1481195780", + "voter": "indykpol" + }, + { + "rshares": "302329407", + "voter": "comcentrate" + }, + { + "rshares": "122637921", + "voter": "jtstreetman" + }, + { + "rshares": "1623996599", + "voter": "ines-f" + }, + { + "rshares": "8237809906", + "voter": "etcmike" + }, + { + "rshares": "6391005392", + "voter": "lesliestarrohara" + }, + { + "rshares": "3425466270", + "voter": "ats-david" + }, + { + "rshares": "293609359", + "voter": "pollux.one" + }, + { + "rshares": "1184448867", + "voter": "contentjunkie" + }, + { + "rshares": "7304947957", + "voter": "einsteinpotsdam" + }, + { + "rshares": "11502232563", + "voter": "darrantrute" + }, + { + "rshares": "17585035067", + "voter": "sabot" + }, + { + "rshares": "28036909101", + "voter": "markrmorrisjr" + }, + { + "rshares": "45121178435", + "voter": "sponge-bob" + }, + { + "rshares": "249472621", + "voter": "reaction" + }, + { + "rshares": "2914432081", + "voter": "doitvoluntarily" + }, + { + "rshares": "3648710236", + "voter": "nubchai" + }, + { + "rshares": "4721456837", + "voter": "richardjuckes" + }, + { + "rshares": "146618463", + "voter": "jens-jung" + }, + { + "rshares": "116558699", + "voter": "chadcrypto" + }, + { + "rshares": "54685141", + "voter": "ballinconscious" + }, + { + "rshares": "70593457", + "voter": "whatsup" + }, + { + "rshares": "1584386308", + "voter": "dirkzett" + }, + { + "rshares": "66920614", + "voter": "willio" + }, + { + "rshares": "71584544", + "voter": "justusagenstum" + }, + { + "rshares": "140430106", + "voter": "angelius" + } + ], + "author": "donkeypong", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "## I strongly oppose the \"5 votes a day\" target. \n\nI thought one of the greatest changes to be implemented so far was when that target INCREASED. People have not been so stressed in the last month or two about curation rewards; they just vote for what they like and have fun. \n\nI don't think Steemit will be FUN anymore if there is an expected target of 5 votes per day. People will spend much less time on the site. They will vote for predictably popular content. And we will be right back where we were a couple of months ago. \n\nNo, it will be worse than that. Because 20 votes a day used to stress people out. 5 votes a day? NO ONE can do any real curation under that scheme.\n\nAs an individual and an established author, the 5 votes a day could be great for me. If we go back to the days when everybody upvoted the same posts, then maybe I'd get all those votes again. I could quit my job and write for Steemit full time. \n\nAnd we'd go back to the days when emerging authors and artists got far fewer votes and rewards. \n\nAs far as curation and voting bots, they are being used for very good purposes also. Rather than turning our tails and running away from them, why don't we use them for the greater good? I think the mega-whales' curation teams are doing a far better job than ever before at redistributing rewards; I make nothing from being involved in that effort, but I think it is working quite well. Give the vote sliders and the voting bots more time; Steemit's front page is finally diversifying and newer people are getting rewards like never before. \n\nOne more thing: Redistribution of Steemit's resources from big whale accounts to the masses MUST be one of our top priorities. How does this help? I understand that big whale accounts may make less on curation rewards, but I think few of them are concerned with this anymore; they're trying to channel their votes to worthy posters. They have recognized that their big stakes will be worth nothing unless we make this thing succeed.\n\nUnder this scheme, the big whales will need to sell the max on exchanges every week and other people buy their Steem for any real redistribution to occur. That will hold down the price and our competitors will zoom right by us. \n\nSteem Team, I understand you are trying to solve real problems with these tweaks. I don't normally comment on them because I feel that Steemit is good enough that there is some margin for error with these back-end decisions. But this is far, far too severe a change for the platform to absorb.\n\n## If I am wrong, then I'd love to hear that from the community, and I am open to learning from other views. Give us time for this discussion, please, before forcing through such a change. Until then, I oppose this change.", + "category": "steem", + "children": 106, + "created": "2016-09-02T21:16:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "steem" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 42304792392028, + "parent_author": "steemitblog", + "parent_permlink": "announcing-steem-0-14-0-release-candidate", + "payout": 141.827, + "payout_at": "2016-10-04T01:16:51", + "pending_payout_value": "141.827 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemitblog-announcing-steem-0-14-0-release-candidate-20160902t211609578z", + "post_id": 838503, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 146 + }, + "title": "RE: Announcing Steem 0.14.0 Release Candidate", + "updated": "2016-09-02T21:19:45", + "url": "/steem/@steemitblog/announcing-steem-0-14-0-release-candidate#@donkeypong/re-steemitblog-announcing-steem-0-14-0-release-candidate-20160902t211609578z" + }, + { + "active_votes": [ + { + "rshares": "25590936673298", + "voter": "berniesanders" + }, + { + "rshares": "4503240944593", + "voter": "nextgencrypto" + }, + { + "rshares": "3093334843", + "voter": "boy" + }, + { + "rshares": "3754789393", + "voter": "bue-witness" + }, + { + "rshares": "703475396", + "voter": "bunny" + }, + { + "rshares": "53137822427", + "voter": "bue" + }, + { + "rshares": "1658013141", + "voter": "mini" + }, + { + "rshares": "213534945", + "voter": "moon" + }, + { + "rshares": "621926043", + "voter": "healthcare" + }, + { + "rshares": "945621921", + "voter": "daniel.pan" + }, + { + "rshares": "287928458", + "voter": "helen.tan" + }, + { + "rshares": "52651564", + "voter": "meredithpetran" + } + ], + "author": "jhermanbeans", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Fascinating world. Can't wait to see where it goes!", + "category": "horror", + "children": 0, + "created": "2016-08-23T01:17:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "horror" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 30158646716022, + "parent_author": "senderos", + "parent_permlink": "the-nightmare-song", + "payout": 132.545, + "payout_at": "2016-09-23T02:56:09", + "pending_payout_value": "132.545 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-senderos-the-nightmare-song-20160823t011659950z", + "post_id": 713237, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 12 + }, + "title": "RE: The Nightmare Song", + "updated": "2016-08-23T01:17:00", + "url": "/horror/@senderos/the-nightmare-song#@jhermanbeans/re-senderos-the-nightmare-song-20160823t011659950z" + }, + { + "active_votes": [ + { + "rshares": "31588356739639", + "voter": "smooth" + }, + { + "rshares": "3726201087", + "voter": "boy" + }, + { + "rshares": "4524113216", + "voter": "bue-witness" + }, + { + "rshares": "820980926", + "voter": "bunny" + }, + { + "rshares": "66047512415", + "voter": "bue" + }, + { + "rshares": "1996555438", + "voter": "mini" + }, + { + "rshares": "256574080", + "voter": "moon" + }, + { + "rshares": "5893489774073", + "voter": "smooth.witness" + }, + { + "rshares": "750139848", + "voter": "healthcare" + }, + { + "rshares": "1168034456", + "voter": "daniel.pan" + }, + { + "rshares": "346061156", + "voter": "helen.tan" + }, + { + "rshares": "394226217606", + "voter": "craig-grant" + }, + { + "rshares": "24215364511", + "voter": "thecryptofiend" + }, + { + "rshares": "2042269341790", + "voter": "stellabelle" + }, + { + "rshares": "8944971271", + "voter": "cmtzco" + }, + { + "rshares": "52207362", + "voter": "reported" + }, + { + "rshares": "58804600", + "voter": "southbaybits" + }, + { + "rshares": "14292459528", + "voter": "randyclemens" + }, + { + "rshares": "39105503792", + "voter": "luminousvisions" + }, + { + "rshares": "120190171", + "voter": "emeline" + } + ], + "author": "luminousvisions", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "### @dantheman ... you just downvoted my comment?\n\nwhat is that all about? what's wrong with it?\n\n#### I'm just suggestion a solution and in return for offering my help ... you downvote me?!?\n\n\nlook at what I've been up to;\n[little baby dolphin](https://steemit.com/steemit/@luminousvisions/little-baby-dolphin-goes-to-steemit-school)\nI'm already working on a solution!", + "category": "steemit", + "children": 22, + "created": "2016-09-11T03:56:51", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemit.com/steemit/@luminousvisions/little-baby-dolphin-goes-to-steemit-school" + ], + "tags": [ + "steemit" + ], + "users": [ + "dantheman" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 40084767746965, + "parent_author": "luminousvisions", + "parent_permlink": "re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t021909082z", + "payout": 131.347, + "payout_at": "2016-10-12T06:00:30", + "pending_payout_value": "131.347 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-luminousvisions-re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t035652062z", + "post_id": 918173, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 20 + }, + "title": "RE: Open Letter to Ned and Dan: You Badly Need a Communications/Community/Content Expert and I Hereby Nominate @stellabelle or @donkeypong For That Job", + "updated": "2016-09-11T06:14:27", + "url": "/steemit/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or#@luminousvisions/re-luminousvisions-re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t035652062z" + }, + { + "active_votes": [ + { + "rshares": "25299389880141", + "voter": "ned" + }, + { + "rshares": "6927705674664", + "voter": "wackou" + }, + { + "rshares": "992154852299", + "voter": "liondani" + }, + { + "rshares": "3103959302", + "voter": "boy" + }, + { + "rshares": "3768577454", + "voter": "bue-witness" + }, + { + "rshares": "683986391", + "voter": "bunny" + }, + { + "rshares": "54809820514", + "voter": "bue" + }, + { + "rshares": "1663237841", + "voter": "mini" + }, + { + "rshares": "213793127", + "voter": "moon" + }, + { + "rshares": "624976946", + "voter": "healthcare" + }, + { + "rshares": "973085978", + "voter": "daniel.pan" + }, + { + "rshares": "288350184", + "voter": "helen.tan" + }, + { + "rshares": "347492602044", + "voter": "blakemiles84" + }, + { + "rshares": "445654522", + "voter": "kooshikoo" + }, + { + "rshares": "113354733694", + "voter": "shaka" + }, + { + "rshares": "46418159604", + "voter": "capitalism" + }, + { + "rshares": "4864933964", + "voter": "ats-david" + }, + { + "rshares": "9260376832", + "voter": "goose" + } + ], + "author": "dana-edwards", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "1 needs modification, 2 is a good idea\n----\n\nDespite some who call 2 an exit fee, I think Steem Power should stop being marketed as an **\"investment\"** to **\"investors\"**. Market it to users of the platform who want to power up their accounts but make powering up or upgrading a lot easier. Make it possible with a gift card, fiat, a credit card, or Paypal. People should never see Bitcoin or blockchain anywhere on the Steemit official marketing.\n\nUse gamification to make people want to upgrade their Steem Power. Market Steem Dollars to crypto investors for the 10% interest.\n\nSteem Power a purchasable upgrade for accounts\n-----\n\n>reddit gold is our premium membership program. It grants you access to extra features to improve your reddit experience. It also makes you really quite dapper.\n\nAnd Alice goes to Walgreens with her Visa Card and buys the Steem Card instead of the Netflix card. It's also possible to sell a Steem Power subscription for people who want to buy a little bit at a time, remeber WoW is subscription based and. Second Life has Linden Dollars which are like our Steem Dollars and can be marketed in a similar way.\n\nDo not make the mistake of listening to crypto anarchists or crypto people when it comes to marketing. Crypto people are horrible at marketing and that includes Bitcoin. All of crypto has a bad reputaton and horrible marketing. Look at Pokemon Go or even Reddit Gold to see how to do marketing, or just hire a profesisonal in gamification and marketing guru. Do not listen to Steemit whales and don't even listen to me. Hire people who are from the gaming world, or who marketed popular social networks.\n\n**Note: notice games and social networks never use words like \"investor\" or \"speculator\", as this would be like trying to market the social network as a gambling site which is something they all avoid.**\n\n**UPDATE: IF ANYONE CAN GET IN CONTACT WITH [Jane McGonigal](https://janemcgonigal.com/) AND HIRE HER AS A CONSULTANT IT WOULD BE GREAT FOR STEEMIT. SHE IS A THOUGHT LEADER IN \"PURPOSE DRIVEN GAMING\" AND HAVING HER ASSOCIATED WITH STEEMIT WOULD BRING MOMENTUM.**\n\nReferences\n1. https://community.secondlife.com/t5/English-Knowledge-Base/Buying-and-selling-Linden-dollars/ta-p/700107\n2. https://www.reddit.com/gold/about/\n3. https://www.quora.com/Who-are-the-best-gamification-experts\n4. https://www.linkedin.com/title/gamification-expert", + "category": "steem", + "children": 7, + "created": "2016-09-08T05:07:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://janemcgonigal.com/", + "https://community.secondlife.com/t5/English-Knowledge-Base/Buying-and-selling-Linden-dollars/ta-p/700107", + "https://www.reddit.com/gold/about/", + "https://www.quora.com/Who-are-the-best-gamification-experts", + "https://www.linkedin.com/title/gamification-expert" + ], + "tags": [ + "steem" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 33807216655501, + "parent_author": "ned", + "parent_permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", + "payout": 116.932, + "payout_at": "2016-10-09T02:14:24", + "pending_payout_value": "116.932 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-ned-increasing-curation-demand-for-steem-power-and-community-interaction-20160908t050749903z", + "post_id": 889443, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 18 + }, + "title": "RE: Increasing Curation, Demand for Steem Power and Community Interaction", + "updated": "2016-09-08T20:47:24", + "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction#@dana-edwards/re-ned-increasing-curation-demand-for-steem-power-and-community-interaction-20160908t050749903z" + } +] diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_promoted.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_promoted.pat.json new file mode 100644 index 00000000..7fdae0c9 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_promoted.pat.json @@ -0,0 +1,98 @@ +[ + { + "active_votes": [], + "author": "zein", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "are you willing to vote for my blog ? I really hope it \nhttps://steemit.com/introduceyourself/@zein/hello-steemit-i-come-back-part-1-it-s-about-my-friend-and-original-work-is-not-engineering", + "category": "steempress", + "children": 0, + "created": "2016-08-29T09:32:48", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemit.com/introduceyourself/@zein/hello-steemit-i-come-back-part-1-it-s-about-my-friend-and-original-work-is-not-engineering" + ], + "tags": [ + "steempress" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "jesta", + "parent_permlink": "re-bmann-re-jesta-update-on-the-steempress-theme-bounty-20160829t030152913z", + "payout": 0.0, + "payout_at": "2016-09-28T10:28:51", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-jesta-re-bmann-re-jesta-update-on-the-steempress-theme-bounty-20160829t093247333z", + "post_id": 787536, + "promoted": "1.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Update on the steempress theme bounty", + "updated": "2016-08-29T09:32:48", + "url": "/steempress/@jesta/update-on-the-steempress-theme-bounty#@zein/re-jesta-re-bmann-re-jesta-update-on-the-steempress-theme-bounty-20160829t093247333z" + }, + { + "active_votes": [ + { + "rshares": "250810345690", + "voter": "lukestokes" + } + ], + "author": "anduweb", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Luke, the man with the numbers :) I love the idea. Interesting stats to look at:\n* Highest promoted amount per post\n* Highest number of promoters per post\n* Highest non-author promoted amount\n\nThere may be others who have already though to do 15.001. I too started with 10.001 in mind and got to 13.63 to have a good front-ish seat :) but I think amounts will start being higher and higher as pressure builds to be on the *first page*.\n\n@berniesanders is the real MVP, have said it before and it's still valid. Nice ROI on your post! Classic bump and reward case. Exactly what Post Promotion has been built for.\nI'm more testing the thing now but thank you for the feedback! It's good to see that my *marketing* campaign is showing results!\n\nYeah, up one for @smooth and @jesta! #classy", + "category": "steemit", + "children": 0, + "created": "2016-08-30T11:09:45", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "tags": [ + "classy", + "steemit" + ], + "users": [ + "berniesanders", + "smooth", + "jesta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 250810345690, + "parent_author": "lukestokes", + "parent_permlink": "re-anduweb-steemit-post-promotion-and-the-dollar-auction-20160830t104200474z", + "payout": 0.117, + "payout_at": "2016-09-30T13:09:21", + "pending_payout_value": "0.117 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-lukestokes-re-anduweb-steemit-post-promotion-and-the-dollar-auction-20160830t110944376z", + "post_id": 799802, + "promoted": "0.001 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Steemit Post Promotion and the Dollar Auction", + "updated": "2016-08-30T11:09:45", + "url": "/steemit/@anduweb/steemit-post-promotion-and-the-dollar-auction#@anduweb/re-lukestokes-re-anduweb-steemit-post-promotion-and-the-dollar-auction-20160830t110944376z" + } +] diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_hive-123.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_hive-123.pat.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_hive-123.pat.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_petrodollar.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_petrodollar.pat.json new file mode 100644 index 00000000..7d1cd5ad --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_petrodollar.pat.json @@ -0,0 +1,477 @@ +[ + { + "active_votes": [ + { + "rshares": "563801601277", + "voter": "barrie" + }, + { + "rshares": "347139725318", + "voter": "anonymous" + }, + { + "rshares": "40973587609862", + "voter": "blocktrades" + }, + { + "rshares": "6679631707350", + "voter": "xeldal" + }, + { + "rshares": "5524453120959", + "voter": "enki" + }, + { + "rshares": "1130448289448", + "voter": "ihashfury" + }, + { + "rshares": "3104208862", + "voter": "boy" + }, + { + "rshares": "3768886295", + "voter": "bue-witness" + }, + { + "rshares": "684017588", + "voter": "bunny" + }, + { + "rshares": "54856169248", + "voter": "bue" + }, + { + "rshares": "1663348588", + "voter": "mini" + }, + { + "rshares": "213796245", + "voter": "moon" + }, + { + "rshares": "64108982994", + "voter": "jason" + }, + { + "rshares": "11583629822", + "voter": "by24seven" + }, + { + "rshares": "1352482756", + "voter": "mineralwasser" + }, + { + "rshares": "8283671184", + "voter": "bingo-0" + }, + { + "rshares": "625005026", + "voter": "healthcare" + }, + { + "rshares": "973139011", + "voter": "daniel.pan" + }, + { + "rshares": "288354863", + "voter": "helen.tan" + }, + { + "rshares": "392749106258", + "voter": "craig-grant" + }, + { + "rshares": "11744401901", + "voter": "richman" + }, + { + "rshares": "269525245948", + "voter": "pal" + }, + { + "rshares": "1426374387", + "voter": "murh" + }, + { + "rshares": "44877570195", + "voter": "lindee-hamner" + }, + { + "rshares": "2405298940", + "voter": "mammasitta" + }, + { + "rshares": "54765430303", + "voter": "sonzweil" + }, + { + "rshares": "15150114547", + "voter": "hakise" + }, + { + "rshares": "55815725", + "voter": "cynetyc" + }, + { + "rshares": "29762539003", + "voter": "dwinblood" + }, + { + "rshares": "8494468151", + "voter": "rpf" + }, + { + "rshares": "8218703778", + "voter": "lostnuggett" + }, + { + "rshares": "1596727527", + "voter": "alex.chien" + }, + { + "rshares": "20662197740", + "voter": "rawnetics" + }, + { + "rshares": "2267249932", + "voter": "crypto-toll" + }, + { + "rshares": "13356868381", + "voter": "stephen.king989" + }, + { + "rshares": "5409051125", + "voter": "highlite" + }, + { + "rshares": "12280438534", + "voter": "borran" + }, + { + "rshares": "14243751811", + "voter": "kyriacos" + }, + { + "rshares": "12832867753", + "voter": "gvargas123" + }, + { + "rshares": "3161180932", + "voter": "hilarski" + }, + { + "rshares": "7674782545", + "voter": "craigwilliamz" + }, + { + "rshares": "57789562", + "voter": "frankfriendly" + }, + { + "rshares": "177025914", + "voter": "ezrabcs" + }, + { + "rshares": "57424996", + "voter": "murdochpizgatti" + }, + { + "rshares": "9592286330", + "voter": "heretickitten" + }, + { + "rshares": "3620872844", + "voter": "aggroed" + }, + { + "rshares": "4512315033", + "voter": "highimpactflix" + }, + { + "rshares": "55571888", + "voter": "cahuillan" + }, + { + "rshares": "52171620", + "voter": "jamespro" + }, + { + "rshares": "1710826961", + "voter": "ibringawareness" + }, + { + "rshares": "80530871", + "voter": "projecthor" + }, + { + "rshares": "53409775", + "voter": "lisahaven" + }, + { + "rshares": "71973468", + "voter": "ancientofdays" + }, + { + "rshares": "51485628", + "voter": "mari5555na" + }, + { + "rshares": "5084219415", + "voter": "donchate" + }, + { + "rshares": "1288596847", + "voter": "expedition" + }, + { + "rshares": "92728217", + "voter": "comeup" + }, + { + "rshares": "160125450", + "voter": "jbgarrison72" + }, + { + "rshares": "144275749", + "voter": "charlie.wilson" + } + ], + "author": "highimpactflix", + "author_payout_value": "0.000 HBD", + "author_reputation": 59.9, + "beneficiaries": [], + "blacklists": [], + "body": "If the contents of this article/video were taught in schools, the veil of secrecy would be lifted, one of the greatest scams in history would be revealed and life just might be a little better.\n\n\u201cThe State,\u201d Bastiat wrote, \u201cis that great fiction by which everyone seeks to live at the expense of everyone else.\u201d \n
https://www.steemimg.com/images/2016/09/08/lawtiat-quote-picture.jpg9d3a8dd471c.jpg
\n\t\nThe French economist penned those words before he was able to witness another \u201cgreat fiction,\u201d which currently works to undermine ALL the labor and ALL the accumulated wealth of EVERY American and, by extension, virtually EVERY laboring individual on this planet.\n\nThis article is a little lengthy, so I created a video that's about 24 minutes long that used this article as the script. If you're a busy person (and what thinking person isn't, these days?) you can download the video and play it in your car or at down time at work or whatever. Enjoy the video, share the knowledge and leave your comments. And, of course, your upvotes are always appreciated!\n
\n\t\nWe all work for this fiction every day. People beg for this fiction. Many borrow from others to obtain this fiction. Some even kill so that they can unlawfully accumulate more of this fiction. Without this fiction you could have no clothing for your back, no roof over your head and no food for your stomach. That great fiction is the American Dollar.\n\t\nYou can pull a NOTE out of your pocket and examine it. But you would be searching in vain for any intrinsic value. The value is not found in the ink, nor the material in which the ink is impregnated, nor in the wording. In fact, the wording provides the hint you\u2019ll need to begin to realize that there is NOTHING in and of itself that imputes any value into this piece of paper \u2013 nothing, that is, but a construct of belief \u2013 oh, and one other thing. Brute force, but we\u2019ll get to that later\n
https://www.steemimg.com/images/2016/09/08/193420100020FRN20G00042149A10002cb72.jpg
\n\t\nOur Dollar\u2019s history begins with Article 1 sec. 8 of the Constitution. It states that, \u201cCongress shall have the power to coin money, regulate the value thereof and fix the standards of weights and measures.\u201d\n\t\nIn 1792 the Coinage Act was passed \u201cestablishing a mint and regulating the COINS of the U.S.\u201d This law created and defined America\u2019s money.\n\tIt called for a coin called the DOLLAR to contain about \u00be of an ounce of silver.\n\tIt also called for a Half Dollar, Quarter, Dime and Half dime \u2013 all made of silver\n\tIt called for a coin called an EAGLE, each worth 10 DOLLARS and containing a half an ounce of gold.\n\tIt also called for a Half Eagle and a Quarter Eagle. All made of Gold\n\tEach coin, according to this act, would bear an impression of Liberty, the Word Liberty and the year of coinage. \n\nThe reverse side shall have an impression of an Eagle with the inscription, \u201cUnited States of America.\u201d\n\tSo, the definition of money was \u2013 \u201cA silver coin of the United States of the value of 1/10 of an Eagle\u201d or 1 DOLLAR.\n\tAn Eagle was defined as \u201cA GOLD coin of the United States of the value of 10 DOLLARS\u201d\n\tFor the first 80 years of our history these coins were known as \u201cLawful Money.\u201d\n
http://flowinghairdollar.com/wp-content/uploads/2009/07/flowing-hair-dollar.jpg
\n\t\nIn 1794 the US mint in Philadelphia began minting coins. The illustration above is what they looked like. They were strictly composed of either GOLD or SILVER, painstakingly fashioned to the proper weight. So strict was the standard on weights and measures and so serious was the language of the U.S. Coinage Act, that Section 19 invoked the death penalty for anyone caught debasing the nation\u2019s money\n\t\nArticle 1 Section 10 of the Constitution states, \u201cNo state shall coin money, emit bills of credit, make anything but GOLD and SILVER COIN a tender of payment of debts.\u201d\n\t\u201cEmit bills of credit\u201d equates to the issuance of un-backed paper promissory notes as money. \n\tAmerica\u2019s entire economy was anchored to GOLD and SILVER by requiring the states to tender all payments in these coins. Some leaders today, however, claim that Gold is NOT money [Bernake Video]. This claim, according to the law of the land and good ole common sense, is a LIE!\n
https://www.steemimg.com/images/2016/09/08/Limits-on-State-Powerb1132.jpg
\t\nThis Gold and Silver standard stood as a PROTECTION for the people from the corrupt Banksters who love to loan out money they don\u2019t have and profit from the interest. Such a debasing practice, known as Fractional Reserve Banking, is outright Counterfeiting and, therefore, THEFT!\n\t\nThe Gold system ensured that the nation\u2019s wealth was distributed to all the people, rather than being centralized in the hands of a few. It CONSTRAINED governments from issuing un-backed notes of debt, which is what a Federal Reserve Note is today.\t\n\t\nThe fact is, many, including Benjamin Franklin, held that a dishonest money system was a main reason for the Revolutionary War. He wrote, \u201cThe refusal of King George III to allow the colonies to operate an honest money system, which freed the ordinary man from the clutches of the money manipulators, was probably the prime cause of the Revolution.\u201d\n
https://www.steemimg.com/images/2016/09/08/George_III_by-Allan-Ramsay-in-1762e80e9.jpg
\t\nTwo central banks materialized in early America in order to manipulate the nation\u2019s money supply. The 1st Bank of the United States was established in 1791, in spite of opposition from people like Thomas Jefferson, who argued against its Constitutionality and wrote, \u201cI believe that banking institutions are more dangerous to our liberties than standing armies. If the American people ever allow private banks to control the issue of their currency, first by inflation, then by deflation, the banks and corporations that will grow up\u2026 will deprive the people of all property until their children wake-up homeless on the continent their fathers conquered. The issuing power should be taken from the banks and restored to the people, to whom it properly belongs.\u201d 1st Bank\u2019s charter was revoked by James Madison.\n\t\nIn 1816 the 2nd Bank of the U.S. was formed. Andrew Jackson, sworn enemy of the Central Bank, despised the thought of private Bankers controlling America\u2019s money. Its charter was revoked in 1833.\n\t\nGold\u2019s discovery in California in 1849, caused the mint to add a 1 Dollar 10th Gold Eagle and a 20 Dollar Double Gold Eagle in order to distribute the gold across the population, honoring the founder\u2019s principle of decentralizing power by spreading the wealth.\n
https://www.steemimg.com/images/2016/09/08/California_Clipper_500cad3c.jpg
\t\nThe presence and universal acceptance of gold shackled private bankers and severely limited inflation. It is interesting to note that in the 57 years from 1833 to 1890, GOLD, priced at $20.67/oz fluctuated only 1 PENNY. From 1891 to 1930 gold fluctuated .74 CENTS from a low of $20.58 to a high of $21.32.\n\t\nIn 1861, Individual rights-Trampling President, Abraham Lincoln, financed the \u201cWar of Northern Aggression,\u201d by printing un-backed paper money, an act that debased America\u2019s money and, according to the Coinage Act of 1792, placed him under penalty of death.\n
https://www.steemimg.com/images/2016/09/08/lincoln_movie112035843.jpg
\t\nDuring this criminal act, the treasury, reeled in coins and replaced them with Lincoln\u2019s Greenback. These notes were denominated in both dollars and cents. Virtually all of America\u2019s money was converted to paper.\n\t\nIn just 4 years nearly 100% of the gains in the standard of living and the purchasing power of the dollar had been wiped out along with over 600,000 lives!\n\t\nAfter the war, the mint resumed coining money. The dollar gained value, even going through periods of increasing buying power. In 1866, contrary to the Constitution, they replaced the SILVER dime with a 5 CENT NICKLE, allowing them to quickly replenish their silver reserves. \n\t\nUnfortunately, the U.S. Government was still issuing paper dollars in the form of notes.\n\t\nHere, an 1878 $20 note reads, \u201cThis note is legal tender at its face value for all debts public and private, EXCEPT duties on imports and interest on the public debt.\u201d In other words, neither foreign nations, nor the international bankers who financed them, would accept this as money \u2013 because it wasn\u2019t money. It was a NOTE, a LOAN, an I.O.U. It was DEBT. The creators of this debt are saying, \u201cyou can use it as money among yourselves, but don\u2019t try to pay US with it!\u201d\n
https://www.steemimg.com/images/2016/09/08/20-type-10a666e.jpg
\t\nAll money, created out of thin air, is DEBT. They expect YOU to accept that debt as a fair trade for your labor, while THEY reject that debt for themselves.\n\t\nIn the 1880\u2019s the treasury began issuing a NEW kind of paper money called silver and gold certificates.\n\t\nThe legalese on these certificates reads, \u201cThis CERTIFIES that there has been deposited in the treasury of the United States, ONE silver dollar, payable to the bearer on demand.\u201d\n
https://www.steemimg.com/images/2016/09/08/US2BCurrency2B18802B1002BDollars2BSilver2BCertificatec6bf0.jpg
\nEach silver certificate represented one PHYSICAL SILVER or GOLD coin in the Treasury.\n\t\nThis bill says nothing about a \u201cnote\u201d because this isn\u2019t an I.O.U. There is NO restriction on imports or interest on the public debt. Foreign nations and international bankers would accept this as money because it WAS MONEY. However, if the government decreed that they will no longer honor that certificate, you are left with a fancy-looking piece paper.\n\t\nThe early 1900s brought men like J.P. Morgan to the forefront. Morgan, publically considered a financial luminary at the time, exploited his mass influence by publishing rumors that a prominent bank in N.Y. was insolvent. Morgan knew this would cause mass hysteria which would affect other banks as well. And it did. The public, in fear of losing their deposits, immediately began mass withdrawals. Consequently, the banks were forced to call in their loans, causing the recipients to sell their property. Thus, a spiral of bankruptcies, repossessions and turmoil emerged. Frederick Allen of LIFE Magazine later wrote, \u201cThe Morgan interests took advantage to precipitate the panic of 1907, guiding it shrewdly as it progressed.\u201d [LIFE Mag cover]\t\t\n
https://www.steemimg.com/images/2016/09/08/JP-Morgan_Carnegie-Steel_HD_768x432-16x99f66b.jpg
\t\t\nThe 1907 financial crisis, that caused the New York Stock Exchange to lose 50% from the previous year, prompted people to beg the Government to \u201cbreak the grip of the money trust.\u201d This paved the way for Morgan and his allies to step in with the solution to the problem they created\u2026 and on December 23rd 1913, the Federal Reserve was born.\n
https://www.steemimg.com/images/2016/09/08/fed_reserve22094.jpg
\t\t\nThe Federal Reserve, a cartel of international banking counterfeiters and money manipulators, began printing Federal Reserve Notes, a Government sanctioned bank note. This note, like the Greenback, which preceded it, was a demand note. It was redeemable for Gold, but only in Washington or at a member bank. If you lived far away, it was HIGHLY unlikely that you would redeem this paper for the precious metal.\t\n
https://www.steemimg.com/images/2016/09/08/federal-reserve-1914.jpgw480581d2.jpg
\t\t\nThe note itself admits that it is NOT Lawful money. Something that can be exchanged for lawful money is NOT lawful money itself.\n\t\n19 Years after the FEDs creation, in 1932, FDR, another counterfeit enabling President, also subject to the criminal penalty of death, according to the Coinage Act of 1792, demonetized gold, ending the production of gold coins, certificates and silver dollars in order to \u201cstimulate the economy.\u201d He allowed the FED to print notes that were NOT redeemable for lawful money.\n\t\nOne year later, in April of 1933, FDR issued executive order 6102 requiring all persons (under threat of $10,000 fine, up to 10 years in prison, or both) to deliver on or before May 1, 1933 their gold coins, bullion and gold certificates to the Federal Reserve in exchange for $20.67 in Federal Reserve Paper. [$10,000 = $180.000 today]\n
http://www.zerohedge.com/sites/default/files/images/user5/imageroot/2012/08/Executive_Order_6102.jpg
\t\t\nAfter the confiscation of gold and the criminalization of those holding it, gold was raised 60% to $35/oz. resulting in an immediate loss for those who had surrendered the precious metal.\n\t\nAmerica\u2019s leaders had stolen the Labor and TRUE wealth of her citizens and replaced it with worthless paper.\n\t\n11 Years later, in 1944, while WW2 continued to rage, 730 delegates from all 44 Allied nations gathered at Mount Washington Hotel in Bretton Woods, NH to establish rules for commercial and financial relations among the world\u2019s industrial states. Because of the economic and physical devastation inflicted on virtually every country involved in the war and because the U.S. emerged from that conflict as an economic and military powerhouse in possession of an estimated 50% of the world\u2019s known gold, the Bretton Woods agreement replaced the British Pound and established the U.S. Dollar as the world\u2019s reserve currency. This meant that international commodities were priced in DOLLARS.\n
https://www.steemimg.com/images/2016/09/08/bretton-woods-mount-washington-hotel55d8c.jpg\t
\nThe agreement, which gave the U.S. an incredible financial advantage, was made under the condition that those dollars would remain redeemable for gold at a consistent rate of $35/oz. But with the unrestricted, unregulated 30-year-old Federal Reserve Fox watching over the Gold-filled hen house, and its greedy fingers itching to print more notes, those nations would soon discover that entrusting your nation\u2019s wealth to a nation that had already ripped off its own citizens was a financially destructive act.\n\t\n1945 brought an end to the War, revealing two of the planets undisputed super-powers; the United States and Russia. Thus began 4 decades of sustained political and military tensions, including the ever-looming threat of mutual nuclear destruction. The Cold War had begun!\n\t\nAmerica, after Bretton Woods, entered a time of great economic recovery and prosperity. Such that, in the 18 years between 1946 and 1964 Americans were busy adding 78 million baby-booming children to the population.\n
https://www.steemimg.com/images/2016/09/08/babyboom-8462f4.jpg
\t\nHowever, as prosperous and financially beneficial as Bretton Woods was to Americans, it had a major flaw. There was nothing in the agreement to prevent the FED from expanding the supply of Federal Reserve Notes. Soon there wouldn\u2019t be enough gold to back all the notes in circulation.\n\t\n1964 brought the last year America\u2019s coins were struck with silver, finally physically detaching our national coinage from any link to precious metals.\n\t\nDuring the 60s and early 70s, as the Vietnam War intensified, it became clear to the countries that had entrusted the U.S. with their gold, that the FED was running budget deficits and flooding the world with paper dollars. The French, under Charles De Gaulle, became suspicious that the U.S. would be unable to honor its Bretton Woods obligations to redeem their excess dollars into gold and, as the French exchanged surplus dollars for Gold, the U.S. Treasury\u2019s gold stock declined alarmingly!\n\t\nRather than use his presidential powers to eliminate the counterfeiting bankers, return the U.S. to a sound money system and honor their Bretton Woods agreement, Nixon chose a different course on Aug. 15th 1971, [Nixon\u2019s address]\n
\n\u201cDefend the dollar against the speculators,\u201d sounds similar to the 1907 \u201cbreak the grip of the money trust,\u201d mantra that lead to the creation and scourge of the Federal Reserve. Nixon\u2019s decree closed the gold window, unilaterally ending the Bretton Woods agreement, and robbing EVERY nation that trusted us!\n\t\nAs a seemingly unrelated side note, the details of which rest beyond the scope of this video, Nixon, 59 days prior to this announcement of Global Theft, officially initiated the War on Drugs. This effectively gave rise to national crime, empowered drug cartels and, as the Iran/Contra scandal would later reveal, created a government monopoly and financial windfall through covert, governmentally controlled, drug trafficking and sales.\n
https://www.steemimg.com/images/2016/09/08/40-years-of-the-war-on-drugs_worst-results1dc03.jpg
\t\nIn 1973 Nixon struck a deal with King Faisal of Saudi Arabia to ONLY accept U.S. Dollars as payment for oil and to invest any excess profits in U.S. Treasury bonds, notes and bills. Military protection of Saudi Oil fields would, in return, be supplied by the U.S. By 1975 the same offer was extended to EVERY member of OPEC, who also agreed to ONLY sell their oil in U.S. Dollars.\n\tThis detachment of the U.S. Dollar from Gold and its connection to foreign oil FORCED EVERY importing nation in the world to start maintaining a constant supply of Federal Reserve Paper. In order to obtain that paper, they would have to send real physical goods to America.\nEvery nation NEEDS a robust economy in order to survive, and since you can\u2019t get oil unless you purchase dollars, the powers-that-be, who run the U.S. have ensured that there is a constant demand for those dollars. While the demand remains for dollars, the dollar will hold its value \u2013 even while the FED continues to print and type them into existence.\n\t\nThis is the origin of the PetroDollar System. Worthless paper went out, everything America wanted came in and the U.S. got very, very rich as a result. So the members of OPEC were kept in power by the U.S., while the exporter nations amassed great wealth and banked their dollars at the Federal Reserve in the United States. This is the PetroDollar cycle.\n
https://www.steemimg.com/images/2016/09/08/220-Petrodollar-e1369235061479-1024x55922b71.jpg
\t\nAfter the PetroDollar recycling system was implemented, 70% of Saudi Arabia\u2019s wealth landed in one account\u2026the Federal Reserve of N.Y. So, the U.S. kept the Saudis in power, they got rich and America had an unlimited credit card.\n\t\nHere\u2019s how it works:\nJapan needs to by oil to keep their economy moving. They make a Honda and sell it to America for dollars. They take some of those dollars and give them to OPEC. OPEC gives Japan oil for dollars because they don\u2019t accept the Yen or any other currency. OPEC, then, takes those dollars and gives them back to the U.S. at the Federal Reserve. So the Fed prints the currency and exchanges it for REAL goods from our trading partners; those countries use it to pay their oil bill and OPEC invests it back into the U.S. \u2013 PetroDollar recycling.\n\t\nAs long as oil can ONLY be purchased with dollars, and we can print them for nothing \u2013 America has its very own money tree.\n\nIn the 16 years between 1975 and 1991, the U.S. used their oil-backed currency to outspend all other nations in order to amass the most powerful weaponry and military in world history. The Soviet Union Never had a chance. With the collapse of the communist BLOC and the end of the Cold War in 1991 as well as America\u2019s emergence as the undisputed world Super Power, many believed a new era of peace and stability had begun.\n\t\nBut the powers-that-be had other ideas. Within that same year, the U.S. invaded Iraq in the 1st Gulf War, crushing the Iraqi military, destroying its infrastructure and imposing crippling sanctions which continued for the next decade (throughout H.W. Bush and Clinton\u2019s administration) resulting in the deaths of more than half a million children. Clinton\u2019s administration was fully aware of these deaths.\nThe two pillars that underpin American Supremacy are: The dollar as the World Reserve currency which is backed by the second pillar -- the awesome Might of the U.S. Military.\n\t\nIf the dollar loses its status as the world\u2019s reserve currency, there will be no more funding for the empire we\u2019ve build around the globe. And an unfunded military becomes an impotent military.\n\t\nIf that supremacy relies on other nations holding dollars for oil, then any nation which challenges that arrangement becomes the target of American discipline, through acts of war like sanctions or direct military engagement.\n\t\nIn November of 2000, Saddam Hussein, became the challenger of that arrangement by announcing that he would begin trading oil for Euros. From 2001 to the beginning of the war, Iraq exported about 3.3 billion barrels of oil. The U.S. bought 2.5 billion of those barrels\u2026but had to pay in Euros. The PetroDollar System was under threat.\n\n\t\nIt was at this time that the Bush Administration, with the help of MSM, fabricated the story of Iraq\u2019s possession of WMD\u2019s. Iraq was quickly placed on the list of \u201caxis of evil\u201d nations. [Bush video]\n\n\t\nIs it a mere coincidence that less than 10 months after a direct assault on the PetroDollar Arrangement that this happened [911 compilation video]\n
https://www.steemimg.com/images/2016/09/08/timthumb.phpsrchttp3A2F2Fwww.veteranstoday.com2Fwp-content2Fuploads2F20162F042F13930618000816_PhotoI.jpgq90w795h470zc122e73.jpg
\t\nThe horrible tragedy of that day was used as a catalyst to strip American of their freedoms, further expand the military budget and invade Iraq. Once the U.S. had control in Iraq, oil sales were immediately switched back to the dollar, costing the Iraqis 17% of their profits due to the Euro\u2019s higher value. \n\t\nThis pattern of PetroDollar protection was replayed when, in Libya, Gahdafi was in the process of organizing a block of African countries to create a gold-based currency called the Dinar, with the intent of replacing the dollar in that region. In 2011, U.S. and NATO forces destabilized and toppled the Libyan government, executing Gaddafi in the process and immediately set up the Libyan Central Bank.\n\t\nThose who control the U.S. understand that even if a few countries begin to sell their oil in another currency, it will set up a chain reaction and the dollar will collapse. They understand that there is nothing else holding up the value of the dollar at this point, and so does the rest of the world. And it is the brute force of the U.S. military that is deployed to crush each and every resistant state in the Middle East and Africa.\n\t\nChina and Russia have made it clear that they will not tolerate an attack on Iran or Syria. If Iran, their key oil-producing ally, falls \u2013 they will be unable to escape the dollar without setting off a global conflict. And since it is America who has chosen to rob other nations with their PetroDollar scheme, at whom do you think other nations will be angry for burdening them with so much forced debt?\n
https://www.steemimg.com/images/2016/09/08/petrodollar653ff.jpg
\t\nThe dollars in your pocket, represent the labor at which you worked in order to obtain them. But those dollars are debt, generated by a war-mongering cabal of elite international banking criminals who have managed to pull off the greatest heist in human history.\n\t\nWe are all in this together. We have been enslaved and it is up to us to work on creating solutions to free ourselves from the taskmasters who have fashioned our chains.\n\n-----\nI'm Brian, the owner and creator of the YouTube Channel [HighImpactFlix](https://www.youtube.com/channel/UC7KZFVVnKjiCzkxWD-Qrakg) and the HighImpactFlix [Facebook page](https://www.facebook.com/HighImpactFlix/?fref=ts). My aim is to create useful, relevant, exciting and engaging content that will inform and **IMPACT** those who take the time to view it. Bottom line: I strive to make it worth your while to check out my videos!\n
https://www.steemimg.com/images/2016/09/01/HIFFacebookcoverreal3bccb9e.png
\nThanks for watching/reading. If you enjoyed this or, if it impacted you in any positive way, consider sharing and commenting. And, if you want, Upvote and [![alt text](https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif)](https://steemit.com/@highimpactflix)
It's MUCH appreciated! Revenue generated goes back into creating even more \"in-your-face\" content. Peace!", + "category": "petrodollar", + "children": 8, + "created": "2016-09-09T01:45:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/08/lawtiat-quote-picture.jpg9d3a8dd471c.jpg", + "https://www.steemimg.com/images/2016/09/08/193420100020FRN20G00042149A10002cb72.jpg", + "http://flowinghairdollar.com/wp-content/uploads/2009/07/flowing-hair-dollar.jpg", + "https://www.steemimg.com/images/2016/09/08/Limits-on-State-Powerb1132.jpg", + "https://www.steemimg.com/images/2016/09/08/George_III_by-Allan-Ramsay-in-1762e80e9.jpg", + "https://www.steemimg.com/images/2016/09/08/California_Clipper_500cad3c.jpg", + "https://www.steemimg.com/images/2016/09/08/lincoln_movie112035843.jpg", + "https://www.steemimg.com/images/2016/09/08/20-type-10a666e.jpg", + "https://www.steemimg.com/images/2016/09/08/US2BCurrency2B18802B1002BDollars2BSilver2BCertificatec6bf0.jpg", + "https://www.steemimg.com/images/2016/09/08/JP-Morgan_Carnegie-Steel_HD_768x432-16x99f66b.jpg", + "https://www.steemimg.com/images/2016/09/08/fed_reserve22094.jpg", + "https://www.steemimg.com/images/2016/09/08/federal-reserve-1914.jpgw480581d2.jpg", + "http://www.zerohedge.com/sites/default/files/images/user5/imageroot/2012/08/Executive_Order_6102.jpg", + "https://www.steemimg.com/images/2016/09/08/bretton-woods-mount-washington-hotel55d8c.jpg", + "https://www.steemimg.com/images/2016/09/08/babyboom-8462f4.jpg", + "https://www.steemimg.com/images/2016/09/08/40-years-of-the-war-on-drugs_worst-results1dc03.jpg", + "https://www.steemimg.com/images/2016/09/08/220-Petrodollar-e1369235061479-1024x55922b71.jpg", + "https://www.steemimg.com/images/2016/09/08/timthumb.phpsrchttp3A2F2Fwww.veteranstoday.com2Fwp-content2Fuploads2F20162F042F13930618000816_PhotoI.jpgq90w795h470zc122e73.jpg", + "https://www.steemimg.com/images/2016/09/08/petrodollar653ff.jpg", + "https://www.steemimg.com/images/2016/09/01/HIFFacebookcoverreal3bccb9e.png", + "https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif" + ], + "links": [ + "https://www.youtube.com/channel/UC7KZFVVnKjiCzkxWD-Qrakg", + "https://www.facebook.com/HighImpactFlix/?fref=ts", + "https://steemit.com/@highimpactflix" + ], + "tags": [ + "petrodollar", + "gold", + "silver", + "endthefed", + "anarchy" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 56330091562680, + "payout": 304.451, + "payout_at": "2016-10-10T06:03:27", + "pending_payout_value": "304.451 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-incriminating-history-lesson-they-just-can-t-teach-in-school", + "post_id": 898258, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 59 + }, + "title": "The Incriminating History Lesson They Just Can't Teach in School!", + "updated": "2016-09-09T01:45:39", + "url": "/petrodollar/@highimpactflix/the-incriminating-history-lesson-they-just-can-t-teach-in-school" + }, + { + "active_votes": [ + { + "rshares": "6886493547", + "voter": "stephen.king989" + }, + { + "rshares": "6205391225", + "voter": "gonzo" + }, + { + "rshares": "57219396", + "voter": "steemtime" + }, + { + "rshares": "67088660", + "voter": "lecrazycanuckeh" + }, + { + "rshares": "149408195", + "voter": "canuckgurl" + } + ], + "author": "lecrazycanuckeh", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Hey guys just another short video where I share my point of view.\n\nAs the title states this one is about the petrodollar where I do my best to explain the reasons of my beliefs as a laymen. If I can get it, surely you can too!\n\nAs always sharing thoughts is encouraged :)\nhttps://youtu.be/3A7Bz76xfN8\nLots of great documentaries out there, hope it helped to spark an interest. Cheers", + "category": "politics", + "children": 1, + "created": "2016-08-31T22:48:51", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://img.youtube.com/vi/3A7Bz76xfN8/0.jpg" + ], + "links": [ + "https://youtu.be/3A7Bz76xfN8" + ], + "tags": [ + "politics", + "petrodollar", + "war", + "truth" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 13365601023, + "payout": 0.0, + "payout_at": "2016-10-02T12:13:03", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "petrodollar-in-laymen-terms", + "post_id": 817904, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 5 + }, + "title": "PETRODOLLAR in laymen terms", + "updated": "2016-08-31T22:48:51", + "url": "/politics/@lecrazycanuckeh/petrodollar-in-laymen-terms" + }, + { + "active_votes": [ + { + "rshares": "627712922", + "voter": "walkingmage" + }, + { + "rshares": "70211074", + "voter": "aidar88" + }, + { + "rshares": "16995765440", + "voter": "jaredhowe" + }, + { + "rshares": "57480558", + "voter": "mikerowerules12" + }, + { + "rshares": "59284524", + "voter": "peterjhendrick" + }, + { + "rshares": "57529005", + "voter": "keltone7" + }, + { + "rshares": "55595525", + "voter": "drcanes" + }, + { + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "rshares": "54277042", + "voter": "ibringawareness" + }, + { + "rshares": "125457173", + "voter": "charlie.wilson" + } + ], + "author": "highimpactflix", + "author_payout_value": "0.000 HBD", + "author_reputation": 59.9, + "beneficiaries": [], + "blacklists": [], + "body": "When I first created and launched this video (actually it was a series of 2 videos; Parts 1 &2) on YouTube a little over 2 years ago, it received over 2.5 million hits in a few short months and had _**TENS of THOUSANDS**_ of likes and few dislikes. Then, without warning and without explanation, YT demonetized it and finally REMOVED it. To this day, no reason was given. By every indication it was headed for the viral stratosphere!\n
http://i68.tinypic.com/2emzr4y.jpg
\nCensorship, by the way, is one of the main reasons I'm here on Steemit. \n\nI HATE this YouTube message!\n
http://i65.tinypic.com/2wme4xj.jpg
\n\nI have since repackaged and renamed the video series. Additionally, I've combined both videos into one action-packed, information-infused short film on the birth of our monetary system; tracing it's roots from the sound money of Gold and Silver \n
http://i63.tinypic.com/o91tao.gif
\n to the inception of the non-federal, treasonous Federal Reserve, \n
http://i66.tinypic.com/d4lnd.jpg
\nto the Bretton Woods accord, \n
http://i63.tinypic.com/157n1up.jpg
\nNixon's closing of the gold window (\"happy\" anniversary on that one BTW),\n
http://i65.tinypic.com/2u7m7x3.jpg
\nall the way through to the birth of the Petrodollar and the reason we're even in the Middle east. \n
http://i63.tinypic.com/3a61.jpg
\n\nAs Bastiat wrote, \"The state is that great fiction, by which everyone seeks to live at the expense of everyone else.\" And what a GREAT FICTION it is!! Enjoy the video!\n
\n\n\n____\nI'm Brian Young, owner of the HighImpactFlix YouTube channel. https://www.youtube.com/channel/UC7KZFVVnKjiCzkxWD-Qrakg \n
http://i67.tinypic.com/v7ckur.png
\nFeel free to follow me on Facebook: https://www.facebook.com/HighImpactFlix/\nInstagram @HighImpactFlix\nTwitter @HighImpactFlix\n\nCHEERS!!", + "category": "steemit", + "children": 1, + "created": "2016-08-17T17:45:54", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i68.tinypic.com/2emzr4y.jpg", + "http://i65.tinypic.com/2wme4xj.jpg", + "http://i63.tinypic.com/o91tao.gif", + "http://i66.tinypic.com/d4lnd.jpg", + "http://i63.tinypic.com/157n1up.jpg", + "http://i65.tinypic.com/2u7m7x3.jpg", + "http://i63.tinypic.com/3a61.jpg", + "http://i67.tinypic.com/v7ckur.png" + ], + "links": [ + "https://www.youtube.com/channel/UC7KZFVVnKjiCzkxWD-Qrakg", + "https://www.facebook.com/HighImpactFlix/" + ], + "tags": [ + "steemit", + "petrodollar", + "endthefed", + "goldwindow", + "currency" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 18154245111, + "payout": 0.0, + "payout_at": "2016-09-17T21:28:12", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "how-to-control-the-world-a-riveting-video-instruction-manual-full-version", + "post_id": 644359, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 10 + }, + "title": "How to Control the World: A Riveting Video Instruction Manual (FULL VERSION)", + "updated": "2016-08-17T17:45:54", + "url": "/steemit/@highimpactflix/how-to-control-the-world-a-riveting-video-instruction-manual-full-version" + } +] diff --git a/hivemind/tavern/bridge_api_patterns/get_trending_topics_limit_2.pat.json b/hivemind/tavern/bridge_api_patterns/get_trending_topics_limit_2.pat.json new file mode 100644 index 00000000..525b7160 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_trending_topics_limit_2.pat.json @@ -0,0 +1,10 @@ +[ + [ + "photography", + "#photography" + ], + [ + "travel", + "#travel" + ] +] \ No newline at end of file diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index dbc0cd7f..79d0b40b 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -1,5 +1,437 @@ --- test_name: Hivemind bridge_api.get_post_header patterns test + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_post_header + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_post_header" + params: {"author":"steemit", "permlink":"firstpost"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_post_header" + directory: "bridge_api_patterns" + +--- + test_name: Hivemind bridge_api.get_post_header gtg patterns test + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_post_header gtg + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_post_header" + params: {"author":"gtg", "permlink":"missing-rewards-while-mining"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_post_header_gtg" + directory: "bridge_api_patterns" + +--- + test_name: Hivemind bridge_api.get_post_header not existing permlink patterns test + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_post_header gtg + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_post_header" + params: {"author":"gtg", "permlink":"not_existing_permlink"} + response: + status_code: 200 + verify_response_with: + function: validate_response:null_result + +--- + test_name: Hivemind bridge_api.get_discussion patterns test + + marks: + - patterntest + - failing + - xfail # payout is zero in some cases, grey, flag_weight, total_votes counts all without filtering + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + + includes: + - !include common.yaml + + stages: + - name: get_discussion + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_discussion" + params: {"author":"steemit", "permlink":"firstpost"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_discussion" + directory: "bridge_api_patterns" + +--- + test_name: Hivemind bridge_api.get_discussion gtg patterns test + + marks: + - patterntest + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + + includes: + - !include common.yaml + + stages: + - name: get_discussion + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_discussion" + params: {"author":"gtg", "permlink":"missing-rewards-while-mining"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_discussion_gtg" + directory: "bridge_api_patterns" + +--- + test_name: Hivemind bridge_api.get_discussion non existing permlink patterns test + + marks: + - patterntest + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + + includes: + - !include common.yaml + + stages: + - name: get_discussion + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_discussion" + params: {"author":"gtg", "permlink":"not_existing_permlink"} + response: + status_code: 200 + verify_response_with: + function: validate_response:null_result +--- + test_name: Hivemind bridge_api.get_post patterns test + + marks: + - patterntest + - failing + - xfail # total_votes (new version counts all the listed votes, old does not count some) + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + includes: + - !include common.yaml + + stages: + - name: get_post + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_post" + params: {"author":"steemit", "permlink":"firstpost"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_post" + directory: "bridge_api_patterns" + +--- + test_name: Hivemind bridge_api.get_post gtg patterns test + + marks: + - patterntest + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + includes: + - !include common.yaml + + stages: + - name: get_post + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_post" + params: {"author":"gtg", "permlink":"heavy-duty-witness-node-infrastructure"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_post_gtg" + directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_account_posts patterns test + + marks: + - patterntest + - failing + - xfail # total_votes counts all without filtering + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + includes: + - !include common.yaml + + stages: + - name: get_account_posts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_account_posts" + params: {"sort":"posts", "account":"steemit"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_account_posts" + directory: "bridge_api_patterns" + +--- + test_name: Hivemind bridge_api.get_account_posts sort blog patterns test + + marks: + - patterntest + # total_votes counts all without filtering + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + includes: + - !include common.yaml + + stages: + - name: get_account_posts sort blog + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_account_posts" + params: {"sort":"blog", "account":"steemit"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_account_posts_sort_blog" + directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_account_posts sort feed patterns test + + marks: + - patterntest + - xfail # should return posts, now its empty (hive3 hivemind) + includes: + - !include common.yaml + + stages: + - name: get_account_posts sort feed + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_account_posts" + params: {"sort":"feed", "account":"steemit"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_account_posts_sort_feed" + directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_account_posts sort comments patterns test + + marks: + - patterntest + - xfail # should return posts, now its empty (hive3 hivemind) + includes: + - !include common.yaml + + stages: + - name: get_account_posts sort comments + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_account_posts" + params: {"sort":"comments", "account":"steemit"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_account_posts_sort_comments" + directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_account_posts sort replies patterns test + + marks: + - patterntest + # total_votes counts all without filtering + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + includes: + - !include common.yaml + + stages: + - name: get_account_posts sort replies + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_account_posts" + params: {"sort":"replies", "account":"steemit"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_account_posts_sort_replies" + directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_account_posts sort payout patterns test + + marks: + - patterntest + - xfail # should return posts, now its empty (hive3 hivemind) + includes: + - !include common.yaml + + stages: + - name: get_account_posts sort payout + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_account_posts" + params: {"sort":"payout", "account":"steemit"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_account_posts_sort_payout" + directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_ranked_posts patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_ranked_posts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_ranked_posts" + params: {"sort":"trending","tag":"","observer":"steemit"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_ranked_posts" + directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_ranked_posts sort invalid patterns test marks: - patterntest @@ -8,7 +440,7 @@ - !include common.yaml stages: - - name: get_post_header + - name: get_ranked_posts sort invalid request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -17,29 +449,83 @@ json: jsonrpc: "2.0" id: 1 - method: "bridge.get_post_header" - params: {"author":"steemit", "permlink":"firstpost"} + method: "bridge.get_ranked_posts" + params: {"sort":"invalid_sort","tag":"","observer":"steemit"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "invalid sort" + +--- + test_name: Hivemind bridge_api.get_ranked_posts hot patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_ranked_posts hot + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_ranked_posts" + params: {"sort":"hot","tag":"","observer":"alice"} response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_post_header" + method: "get_ranked_posts_hot" + directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_ranked_posts created patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_ranked_posts created + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_ranked_posts" + params: {"sort":"created","tag":"","observer":"alice"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_ranked_posts_created" directory: "bridge_api_patterns" --- - test_name: Hivemind bridge_api.get_discussion patterns test + test_name: Hivemind bridge_api.get_ranked_posts promoted patterns test marks: - patterntest - - failing - - xfail # payout is zero in some cases, grey, flag_weight, total_votes counts all without filtering includes: - !include common.yaml stages: - - name: get_discussion + - name: get_ranked_posts promoted request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -48,29 +534,54 @@ json: jsonrpc: "2.0" id: 1 - method: "bridge.get_discussion" - params: {"author":"steemit", "permlink":"firstpost"} + method: "bridge.get_ranked_posts" + params: {"sort":"promoted"} response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_discussion" + method: "get_ranked_posts_promoted" directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_ranked_posts payout patterns test + + marks: + - patterntest + includes: + - !include common.yaml + + stages: + - name: get_ranked_posts payout + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_ranked_posts" + params: {"sort":"payout"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_ranked_posts_payout" + directory: "bridge_api_patterns" --- - test_name: Hivemind bridge_api.get_post patterns test + test_name: Hivemind bridge_api.get_ranked_posts payout_comments patterns test marks: - patterntest - - failing - - xfail # total_votes (new version counts all the listed votes, old does not count some) includes: - !include common.yaml stages: - - name: get_post + - name: get_ranked_posts payout_comments request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -79,29 +590,55 @@ json: jsonrpc: "2.0" id: 1 - method: "bridge.get_post" - params: {"author":"steemit", "permlink":"firstpost"} + method: "bridge.get_ranked_posts" + params: {"sort":"payout_comments"} response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_post" + method: "get_ranked_posts_payout_comments" + directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_ranked_posts muted patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_ranked_posts muted + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_ranked_posts" + params: {"sort":"muted"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_ranked_posts_muted" directory: "bridge_api_patterns" --- - test_name: Hivemind bridge_api.get_account_posts patterns test + test_name: Hivemind bridge_api.get_ranked_posts tag hive-123 patterns test marks: - patterntest - - failing - - xfail # total_votes counts all without filtering includes: - !include common.yaml stages: - - name: get_account_posts + - name: get_ranked_posts tag hive-123 request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -110,18 +647,18 @@ json: jsonrpc: "2.0" id: 1 - method: "bridge.get_account_posts" - params: {"sort":"posts", "account":"steemit"} + method: "bridge.get_ranked_posts" + params: {"sort":"trending","tag":"hive-123"} response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_account_posts" + method: "get_ranked_posts_tag_hive-123" directory: "bridge_api_patterns" --- - test_name: Hivemind bridge_api.get_ranked_posts patterns test + test_name: Hivemind bridge_api.get_ranked_posts tag petrodollar patterns test marks: - patterntest @@ -130,7 +667,7 @@ - !include common.yaml stages: - - name: get_ranked_posts + - name: get_ranked_posts tag petrodollar request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -140,13 +677,13 @@ jsonrpc: "2.0" id: 1 method: "bridge.get_ranked_posts" - params: {"sort":"trending","tag":"","observer":"steemit"} + params: {"sort":"trending","tag":"petrodollar","observer":"steemit"} response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_ranked_posts" + method: "get_ranked_posts_tag_petrodollar" directory: "bridge_api_patterns" --- @@ -154,7 +691,7 @@ marks: - patterntest - + #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge includes: - !include common.yaml @@ -177,10 +714,63 @@ extra_kwargs: method: "get_profile" directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_profile gtg patterns test + + marks: + - patterntest + #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + includes: + - !include common.yaml + + stages: + - name: get_profile gtg + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_profile" + params: {"account":"gtg"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_profile_gtg" + directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_profile not existing patterns test + + marks: + - patterntest + #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + includes: + - !include common.yaml + + stages: + - name: get_profile gtg + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_profile" + params: {"account":"not.existing"} + response: + status_code: 200 + verify_response_with: + function: validate_response:null_result --- test_name: Hivemind bridge_api.get_trending_topics patterns test - + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest @@ -207,6 +797,61 @@ method: "get_trending_topics" directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_trending_topics patterns limit 2 test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_trending_topics limit 2 + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_trending_topics" + params: {"limit": 2} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_trending_topics_limit_2" + directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_trending_topics patterns over limit test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_trending_topics over limit + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_trending_topics" + params: {"limit": 26} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "limit exceeds max (26 > 25)" --- test_name: Hivemind bridge_api.post_notifications patterns test @@ -271,7 +916,7 @@ --- test_name: Hivemind bridge_api.unread_notifications patterns test - + not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest - failing @@ -302,7 +947,7 @@ --- test_name: Hivemind bridge_api.get_payout_stats patterns test - + not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest @@ -330,8 +975,35 @@ directory: "bridge_api_patterns" --- - test_name: Hivemind bridge_api.get_community patterns test + test_name: Hivemind bridge_api.get_payout_stats over limit test + not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + marks: + - patterntest + + includes: + - !include common.yaml + stages: + - name: get_payout_stats over limit + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_payout_stats" + params: {"limit": 251} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "limit exceeds max (251 > 250)" +--- + test_name: Hivemind bridge_api.get_community patterns test + not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest - failing @@ -362,7 +1034,7 @@ --- test_name: Hivemind bridge_api.list_communities patterns test - + not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest # no nonempty result possible for 5mln set @@ -420,7 +1092,7 @@ --- test_name: Hivemind bridge_api.list_subscribers patterns test - + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest # no nonempty result possible for 5mln set diff --git a/hivemind/tavern/validate_response.py b/hivemind/tavern/validate_response.py index fac558a6..30f9d48d 100644 --- a/hivemind/tavern/validate_response.py +++ b/hivemind/tavern/validate_response.py @@ -87,3 +87,9 @@ def compare_error_message(response, message): error = response_json.get("error", None) if error['message'] != message: raise PatternDiffException('error message not equal, expected: "' + message + '" given: "' + error['message'] + '"') + +def null_result(response): + response_json = response.json() + result = response_json.get("result", None) + if result: + raise PatternDiffException('result is: "' + result + ' but should be null') \ No newline at end of file -- GitLab From 798baea547e7168a4f310a6e4b1d4d11665de2cb Mon Sep 17 00:00:00 2001 From: Paulina Czempiel Date: Tue, 18 Aug 2020 13:52:39 +0200 Subject: [PATCH 24/49] condenser api test --- .../get_active_votes_all_data.pat.json | 1475 ++++++ .../get_active_votes_double.pat.json | 321 ++ .../get_active_votes_much.pat.json | 3966 +++++++++++++++++ .../get_active_votes_no_votes.pat.json | 1 + .../get_active_votes_one.pat.json | 108 + .../get_active_votes_two.pat.json | 216 + .../test_condenser_api_patterns.tavern.yaml | 426 ++ 7 files changed, 6513 insertions(+) create mode 100644 hivemind/tavern/condenser_api_patterns/get_active_votes_all_data.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_active_votes_double.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_active_votes_much.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_active_votes_no_votes.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_active_votes_one.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_active_votes_two.pat.json diff --git a/hivemind/tavern/condenser_api_patterns/get_active_votes_all_data.pat.json b/hivemind/tavern/condenser_api_patterns/get_active_votes_all_data.pat.json new file mode 100644 index 00000000..34876bc8 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_active_votes_all_data.pat.json @@ -0,0 +1,1475 @@ +[ + { + "percent": 10000, + "reputation": 0, + "rshares": "23144734651998", + "time": "2016-07-15T12:15:03", + "voter": "dantheman", + "weight": "3158168661139596140" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "632052917841", + "time": "2016-07-15T08:42:24", + "voter": "anonymous", + "weight": "242896928104345789" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "17354117667980", + "time": "2016-07-15T22:56:45", + "voter": "rainman", + "weight": "540650925068841983" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "8370770064044", + "time": "2016-07-15T08:42:18", + "voter": "pharesim", + "weight": "12423167004399239872" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "163107506411", + "time": "2016-07-15T22:56:45", + "voter": "svk", + "weight": "3552937078625098" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "1159039780633", + "time": "2016-07-15T08:42:21", + "voter": "xeroc", + "weight": "509831902209827356" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "5231058255253", + "time": "2016-07-16T06:12:12", + "voter": "complexring", + "weight": "84440496216507093" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "4673732021514", + "time": "2016-07-15T22:56:48", + "voter": "witness.svk", + "weight": "93985310415382959" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "581789739514", + "time": "2016-07-16T11:06:00", + "voter": "joseph", + "weight": "8565752220552935" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "2456363925986", + "time": "2016-07-15T21:17:18", + "voter": "donkeypong", + "weight": "116138826621483045" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "8524556923", + "time": "2016-07-15T22:56:45", + "voter": "fbsvk", + "weight": "186237092674822" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "64093006844", + "time": "2016-07-15T14:22:18", + "voter": "pnc", + "weight": "3301830370444350" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "6973412416", + "time": "2016-07-17T16:42:57", + "voter": "dylan-nicholas", + "weight": 0 + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 538687101, + "time": "2016-07-16T03:44:33", + "voter": "finfree", + "weight": "9456139033140" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 1346329392, + "time": "2016-07-15T13:46:42", + "voter": "cryptorune", + "weight": "69531596344983" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "229372755168", + "time": "2016-07-16T03:26:06", + "voter": "gavvet", + "weight": "4040749389759419" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "94749428143", + "time": "2016-07-15T22:56:51", + "voter": "bbqbear", + "weight": "1761243292160774" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 265410644, + "time": "2016-07-17T07:55:15", + "voter": "algo-rythm", + "weight": 0 + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "6969920034", + "time": "2016-07-15T18:58:21", + "voter": "jerome-colley", + "weight": "351525921152571" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 2607060834, + "time": "2016-07-15T23:18:45", + "voter": "tie-warutho", + "weight": "46680776455185" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 424965841, + "time": "2016-07-15T12:07:39", + "voter": "dmitry", + "weight": "151181481289808" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 59890331, + "time": "2016-07-24T06:31:57", + "voter": "akaninyene-etuk", + "weight": 0 + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "24624016807", + "time": "2016-07-18T02:12:09", + "voter": "judyhopps", + "weight": 0 + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "14377796258", + "time": "2016-07-15T14:28:45", + "voter": "justtryme90", + "weight": "739146254432020" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 970224536, + "time": "2016-07-16T09:38:03", + "voter": "robi-rusmana", + "weight": "14407571083704" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "184943135280", + "time": "2016-07-15T12:17:45", + "voter": "taoteh1221", + "weight": "9632468889222680" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "194601288991", + "time": "2016-07-16T02:46:00", + "voter": "churdtzu", + "weight": "3456383714402894" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 315315846, + "time": "2016-07-15T17:02:21", + "voter": "siska-dewi", + "weight": "15995342730639" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 287318525, + "time": "2016-07-15T17:06:45", + "voter": "fitri-kidul", + "weight": "14572520713378" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "26398943605", + "time": "2016-07-15T15:03:06", + "voter": "wongshiying", + "weight": "1346975184557174" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "119947441882", + "time": "2016-07-15T15:00:12", + "voter": "changby", + "weight": "6143907355191644" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "204206581141", + "time": "2016-07-16T04:44:30", + "voter": "kaylinart", + "weight": "3573088513912911" + }, + { + "percent": -10000, + "reputation": 0, + "rshares": -52462021455, + "time": "2016-07-16T04:11:03", + "voter": "jacobt", + "weight": 0 + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "203029605717", + "time": "2016-07-15T10:36:18", + "voter": "trogdor", + "weight": "73263400193931674" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "10112485667", + "time": "2016-07-15T16:39:15", + "voter": "michaelx", + "weight": "515131486171986" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "74004343299", + "time": "2016-07-15T16:41:06", + "voter": "thedashguy", + "weight": "3761477418015973" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "57760346745", + "time": "2016-07-15T23:42:00", + "voter": "business", + "weight": "1032778374124426" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 497959211, + "time": "2016-07-16T03:17:54", + "voter": "ethbull", + "weight": "8803521031751" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "1135148374938", + "time": "2016-07-15T23:05:45", + "voter": "sean-king", + "weight": "20696313038561087" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "9521669419", + "time": "2016-07-16T10:35:27", + "voter": "romaan-namoor", + "weight": "141364905038957" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "51745510709", + "time": "2016-07-16T00:25:15", + "voter": "leta-blake", + "weight": "923647629227212" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "4954517677", + "time": "2016-07-16T02:50:09", + "voter": "saknan", + "weight": "87726955973574" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "6601861066", + "time": "2016-07-15T15:12:57", + "voter": "james-mac", + "weight": "336559647256044" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "5457724381", + "time": "2016-07-15T15:39:21", + "voter": "honeythief", + "weight": "278139162027536" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "13167308443", + "time": "2016-07-15T20:15:48", + "voter": "jparty", + "weight": "663371905855054" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 263837178, + "time": "2016-07-15T12:18:33", + "voter": "dasan-oneia", + "weight": "13674089460829" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "11991707737", + "time": "2016-07-15T08:03:06", + "voter": "clement", + "weight": "50578488402481718" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "6773402944", + "time": "2016-07-15T13:02:06", + "voter": "isteemit", + "weight": "350758631145415" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 1555023575, + "time": "2016-07-16T10:23:33", + "voter": "greatguardian100", + "weight": "23090520443254" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 2733464964, + "time": "2016-07-15T23:28:48", + "voter": "akado", + "weight": "48940036406860" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 243095491, + "time": "2016-07-16T02:34:57", + "voter": "gerber", + "weight": "4330933053348" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 3066661568, + "time": "2016-07-15T17:04:21", + "voter": "spikykevin", + "weight": "155551819106735" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 1347619370, + "time": "2016-07-16T02:56:15", + "voter": "freeflowbc", + "weight": "23859235546560" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 1145572575, + "time": "2016-07-16T02:36:33", + "voter": "romanskv", + "weight": "20408815707789" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 225699508, + "time": "2016-07-15T15:00:21", + "voter": "femmsanya", + "weight": "11524157968101" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 240151960, + "time": "2016-07-16T06:00:21", + "voter": "garik100", + "weight": "4188345929256" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "4733509254", + "time": "2016-07-17T06:37:12", + "voter": "kakradetome", + "weight": 0 + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "45162031379", + "time": "2016-07-16T03:13:09", + "voter": "krypto", + "weight": "798993336181083" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "18695694524", + "time": "2016-07-16T07:38:15", + "voter": "hakise", + "weight": "279235504585658" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 237368482, + "time": "2016-07-16T06:18:27", + "voter": "sergocarde", + "weight": "3546383376882" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "9317108728", + "time": "2016-07-15T23:30:24", + "voter": "ozcap", + "weight": "166782478470117" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "191216714633", + "time": "2016-07-16T08:40:03", + "voter": "juneaugoldbuyer", + "weight": "2847432409523469" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 3259268823, + "time": "2016-07-15T09:40:06", + "voter": "r4fken", + "weight": "1196376467245091" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 220629191, + "time": "2016-07-16T06:25:21", + "voter": "bolanath", + "weight": "3296255846635" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 156841416, + "time": "2016-07-16T04:34:39", + "voter": "thealexander", + "weight": "2753163037363" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "18241329949", + "time": "2016-07-15T20:59:24", + "voter": "redpalestino", + "weight": "918222392917928" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 250173696, + "time": "2016-07-16T01:07:30", + "voter": "eythor", + "weight": "4458637804811" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 209396977, + "time": "2016-07-15T18:03:18", + "voter": "wenden", + "weight": "10619985117849" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 298190942, + "time": "2016-07-15T12:57:15", + "voter": "krispy123", + "weight": "15444659030161" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 224179177, + "time": "2016-07-15T14:12:45", + "voter": "giveaway", + "weight": "11568510555476" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "70903835340", + "time": "2016-07-15T18:10:30", + "voter": "jatochnietdan", + "weight": "3589337403283287" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 121250146, + "time": "2016-07-15T16:18:21", + "voter": "brutalbro", + "weight": "6178230491517" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "14273526600", + "time": "2016-07-15T14:04:21", + "voter": "bitshares101", + "weight": "736856175849903" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 229096700, + "time": "2016-07-15T13:24:18", + "voter": "vi1son", + "weight": "11861392289958" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 1894354676, + "time": "2016-07-16T09:00:48", + "voter": "lovenugz", + "weight": "28131796101348" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "10448742150", + "time": "2016-07-15T12:37:51", + "voter": "ethereums1", + "weight": "541343981529261" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 2616078009, + "time": "2016-07-15T23:33:15", + "voter": "bryan-kho", + "weight": "46820518731200" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 1001646582, + "time": "2016-07-15T19:17:33", + "voter": "nioctib", + "weight": "50482157198524" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 232252916, + "time": "2016-07-15T20:31:24", + "voter": "splus", + "weight": "11696857035939" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 234645892, + "time": "2016-07-15T07:38:42", + "voter": "kman66", + "weight": "113518345490573" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 222487594, + "time": "2016-07-15T23:31:15", + "voter": "zhuvazhuva", + "weight": "3982085034377" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 118525192, + "time": "2016-07-15T14:06:51", + "voter": "surf4life", + "weight": "6116412683629" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 154036577, + "time": "2016-07-16T08:35:57", + "voter": "murderistic", + "weight": "2300022667561" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 34660089, + "time": "2016-07-15T22:14:57", + "voter": "vkoreshkoff", + "weight": "1539928453330" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 123681007, + "time": "2016-07-15T18:56:03", + "voter": "rdwn", + "weight": "6238973125006" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 80867920, + "time": "2016-07-15T13:12:18", + "voter": "barriexy", + "weight": "4186960534142" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "23369244818", + "time": "2016-07-16T00:58:06", + "voter": "w4lterwyte", + "weight": "416646725249295" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 199621559, + "time": "2016-07-16T06:43:39", + "voter": "torlaff", + "weight": "2982378683316" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 147364981, + "time": "2016-07-15T08:20:06", + "voter": "askokhas", + "weight": "674781996756057" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "46440733040", + "time": "2016-07-15T13:32:48", + "voter": "paco", + "weight": "2401482009577279" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "9498942927", + "time": "2016-07-15T19:11:06", + "voter": "aaseb", + "weight": "478870263128743" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 213255092, + "time": "2016-07-15T22:44:00", + "voter": "kapiw", + "weight": "9474527146924" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 165772630, + "time": "2016-07-15T17:27:21", + "voter": "pet1000", + "weight": "8407634035129" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 231329106, + "time": "2016-07-16T07:21:21", + "voter": "omegastarscream", + "weight": "3456040111912" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 227262320, + "time": "2016-07-15T18:31:03", + "voter": "volcano", + "weight": "11483197925960" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 1296386923, + "time": "2016-07-15T12:34:24", + "voter": "mjgrae", + "weight": "67186049784735" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 236605175, + "time": "2016-07-15T22:32:00", + "voter": "darkstormrise", + "weight": "10512043949157" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 212963047, + "time": "2016-07-16T10:08:00", + "voter": "spirit", + "weight": "3162373596558" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 2125595194, + "time": "2016-07-16T04:40:57", + "voter": "dyausdiu", + "weight": "37310796865459" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "30736521859", + "time": "2016-07-15T18:38:48", + "voter": "sephiroth", + "weight": "1551727268286484" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 4730527, + "time": "2016-07-15T07:35:45", + "voter": "seagul", + "weight": "145314195888" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 214268053, + "time": "2016-07-15T21:58:48", + "voter": "jaycobbell", + "weight": "9519915375758" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 1701701926, + "time": "2016-07-15T07:35:33", + "voter": "noodhoog", + "weight": 0 + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 217122672, + "time": "2016-07-15T22:46:42", + "voter": "overtheline", + "weight": "9646254663177" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 288376635, + "time": "2016-07-15T21:19:03", + "voter": "mianeri", + "weight": "12812738995763" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 136855379, + "time": "2016-07-16T01:43:12", + "voter": "fabiocortes10", + "weight": "2438198180196" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 236958447, + "time": "2016-07-15T22:23:09", + "voter": "leftsword", + "weight": "10527861677681" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "10842019199", + "time": "2016-07-16T01:20:15", + "voter": "agentorange", + "weight": "193194356663360" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "18556000796", + "time": "2016-07-15T09:53:48", + "voter": "stephencurry", + "weight": "6800742363520013" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 931398595, + "time": "2016-07-15T18:34:36", + "voter": "vorsseli", + "weight": "47060441611883" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 224070793, + "time": "2016-07-16T00:27:39", + "voter": "taggley", + "weight": "3996389598174" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 203311112, + "time": "2016-07-16T07:23:09", + "voter": "shibley", + "weight": "3037434522592" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 210336180, + "time": "2016-07-15T09:23:09", + "voter": "mehanizator", + "weight": "77226782600546" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "5857815508", + "time": "2016-07-15T23:10:51", + "voter": "q00p", + "weight": "104901057312176" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 211688034, + "time": "2016-07-16T07:03:42", + "voter": "sudnokpok", + "weight": "3162635279889" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 126953742, + "time": "2016-07-16T07:05:00", + "voter": "kubiiktop", + "weight": "1896689392626" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 3776271080, + "time": "2016-07-15T22:47:39", + "voter": "creemej", + "weight": "167754491378504" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 197403726, + "time": "2016-07-15T14:35:00", + "voter": "micden", + "weight": "10144380300968" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 150429133, + "time": "2016-07-16T06:22:54", + "voter": "starlord", + "weight": "2247461113398" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 42297921, + "time": "2016-07-15T09:46:54", + "voter": "status", + "weight": "15522639427211" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 178823162, + "time": "2016-07-15T16:42:09", + "voter": "m34ndy0u", + "weight": "9071507209987" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 159589424, + "time": "2016-07-16T07:47:57", + "voter": "berkut", + "weight": "2382959368938" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 202204923, + "time": "2016-07-15T17:11:03", + "voter": "the-future", + "weight": "10255501128734" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 210947994, + "time": "2016-07-15T20:49:00", + "voter": "nippel66", + "weight": "10623763096853" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 286259116, + "time": "2016-07-16T06:15:54", + "voter": "ndell", + "weight": "4276861553326" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 140509725, + "time": "2016-07-15T17:50:21", + "voter": "roniiskandar", + "weight": "7126296180623" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 93671987, + "time": "2016-07-15T14:24:45", + "voter": "bugadu96", + "weight": "4817439421424" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 506870302, + "time": "2016-07-16T03:06:03", + "voter": "benjiberigan", + "weight": "8973743477077" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 244097699, + "time": "2016-07-16T01:00:06", + "voter": "igorduarte", + "weight": "4350383779656" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 107607641, + "time": "2016-07-16T05:33:27", + "voter": "musical", + "weight": "1876835942745" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 536613836, + "time": "2016-07-15T23:07:21", + "voter": "seelemonsonline", + "weight": "9610573527657" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 38302504, + "time": "2016-07-18T01:25:00", + "voter": "madhatting", + "weight": 0 + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 23380417, + "time": "2016-07-15T15:04:51", + "voter": "stereolubov", + "weight": "1192129804846" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 103335387, + "time": "2016-07-15T16:00:09", + "voter": "creding", + "weight": "5265425467638" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 100488522, + "time": "2016-07-15T22:12:36", + "voter": "dev00100000", + "weight": "4464663880338" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 91105674, + "time": "2016-07-17T18:42:54", + "voter": "geronimo", + "weight": 0 + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 98714792, + "time": "2016-07-15T15:13:48", + "voter": "baz", + "weight": "5031545545014" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 44367649, + "time": "2016-07-15T14:24:09", + "voter": "csrolex", + "weight": "2281783990160" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 1829692001, + "time": "2016-07-16T05:08:51", + "voter": "oliverb", + "weight": "31913477198579" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 117644390, + "time": "2016-07-16T01:38:30", + "voter": "meteor0", + "weight": "2095945910512" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 116482062, + "time": "2016-07-15T07:39:48", + "voter": "eleanorjoy", + "weight": "76024297966081" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 97822703, + "time": "2016-07-16T07:55:21", + "voter": "karawalla", + "weight": "1460664918598" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 134847208, + "time": "2016-07-15T07:40:00", + "voter": "tedvernon", + "weight": "92146561626008" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 48877173, + "time": "2016-07-15T12:15:36", + "voter": "alexx", + "weight": "2558232324085" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 1716735053, + "time": "2016-07-15T14:56:57", + "voter": "exyle", + "weight": "88216843332198" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 95297066, + "time": "2016-07-15T13:15:39", + "voter": "nbogdan", + "weight": "4934010821746" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 111547145, + "time": "2016-07-15T19:49:45", + "voter": "mephdxa21", + "weight": "5621720060187" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 13940772, + "time": "2016-07-15T17:10:03", + "voter": "bitlord", + "weight": "707057034247" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 104527862, + "time": "2016-07-15T14:57:36", + "voter": "armen7777", + "weight": "5371052935924" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 34819825, + "time": "2016-07-15T14:34:45", + "voter": "qonq99", + "weight": "1789366992749" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 104438817, + "time": "2016-07-16T10:21:45", + "voter": "nick94", + "weight": "1550846848139" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 118286456, + "time": "2016-07-15T23:47:45", + "voter": "sciphobia", + "weight": "2113097865938" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 111289917, + "time": "2016-07-15T15:15:51", + "voter": "pollack16", + "weight": "5672475057290" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 41675596, + "time": "2016-07-15T21:24:57", + "voter": "victoria2002", + "weight": "1851655593889" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 64736978, + "time": "2016-07-15T15:02:03", + "voter": "andrey123", + "weight": "3305427945557" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 46189136, + "time": "2016-07-15T13:01:03", + "voter": "kottai", + "weight": "2392322659960" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 143457201, + "time": "2016-07-16T04:36:09", + "voter": "alisha", + "weight": "2518207524124" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 110631442, + "time": "2016-07-15T16:30:12", + "voter": "moksha", + "weight": "5637095680840" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 46079165, + "time": "2016-07-17T13:19:42", + "voter": "pika", + "weight": 0 + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 75955392, + "time": "2016-07-15T12:52:03", + "voter": "junglepancake", + "weight": "3934112658908" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 80554275, + "time": "2016-07-15T10:30:18", + "voter": "mikeoleksyuk", + "weight": "29483898390317" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 87437757, + "time": "2016-07-15T09:48:57", + "voter": "valius", + "weight": "32087921204576" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 85123686, + "time": "2016-07-15T10:16:33", + "voter": "denis1805", + "weight": "31156725012767" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 68999461, + "time": "2016-07-15T11:33:42", + "voter": "kindmorning", + "weight": "24547381244761" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 108051583, + "time": "2016-07-15T23:44:24", + "voter": "coinmaster4you", + "weight": "1930266416569" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 112581154, + "time": "2016-07-15T14:25:45", + "voter": "rpm", + "weight": "5789883972255" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 80382111, + "time": "2016-07-15T18:34:21", + "voter": "makarovbg", + "weight": "4061545527320" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 117047185, + "time": "2016-07-15T15:36:48", + "voter": "nadim01", + "weight": "5965888652005" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 117044299, + "time": "2016-07-15T15:40:48", + "voter": "cryptonitdmd", + "weight": "5963993746919" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 100974210, + "time": "2016-07-15T16:42:18", + "voter": "maloi2092", + "weight": "5122275793538" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 45895150, + "time": "2016-07-16T00:17:24", + "voter": "maxikingstealer", + "weight": "819879968104" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 103250648, + "time": "2016-07-15T16:21:15", + "voter": "rufai", + "weight": "5261045528127" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 105505577, + "time": "2016-07-16T01:11:18", + "voter": "jameswoods", + "weight": "1880327794018" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 2290679, + "time": "2016-07-16T00:27:03", + "voter": "bitcoin-news", + "weight": "40855293200" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 100752118, + "time": "2016-07-15T20:51:39", + "voter": "hhhpppzzz", + "weight": "5074036953894" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 105282247, + "time": "2016-07-16T10:56:42", + "voter": "youngyani", + "weight": "1562875366845" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 107395123, + "time": "2016-07-16T01:37:24", + "voter": "dwaynejohnson", + "weight": "1913352230203" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 107323835, + "time": "2016-07-16T04:15:51", + "voter": "marine", + "weight": "1883948940366" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 1832441732, + "time": "2016-07-16T05:37:24", + "voter": "ungratefulchump", + "weight": "31959532749288" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 114096052, + "time": "2016-07-16T09:42:27", + "voter": "lemooljiang", + "weight": "1694269349305" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 91198644, + "time": "2016-07-16T08:18:15", + "voter": "geras1955", + "weight": "1361752411643" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 72936899, + "time": "2016-07-16T09:55:12", + "voter": "dimniki198", + "weight": "1083073624058" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 91062199, + "time": "2016-07-16T11:07:06", + "voter": "marriedbear", + "weight": "1329743648398" + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 81277437, + "time": "2016-07-17T06:22:51", + "voter": "joca", + "weight": 0 + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_active_votes_double.pat.json b/hivemind/tavern/condenser_api_patterns/get_active_votes_double.pat.json new file mode 100644 index 00000000..df260e78 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_active_votes_double.pat.json @@ -0,0 +1,321 @@ +[ + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM88hPEnvxkjNy3fGRYD1x1As9sRoeC2J3ExgoFLs2ptC5y2GVUM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "491.203 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-05-11T21:11:09", + "curation_rewards": 185495, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1463001069 + }, + "guest_bloggers": [], + "id": 8363, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-18T20:54:27", + "last_owner_update": "2016-07-18T20:54:27", + "last_post": "2016-09-12T22:13:45", + "last_root_post": "2016-09-12T21:37:27", + "last_vote_time": "2016-09-13T19:14:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7MjV8kvyvHEVQBq3vkJLqjL4BgSwTaMxL9w2Z19AHJ98oEYpv3", + "mined": false, + "name": "camilla", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM82hEhbDUKrZKdaqy1FokVgijx2ifno4RwMdeCa46ebtApMRYRu", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 18154, + "post_count": 698, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM4xuvroftPfdqJgkta3gHiceBUrqpVFPtvvFcd62kWS9TxKwsm7", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 16483404, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": "34348055714672", + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "391.194 HBD", + "sbd_last_interest_payment": "2016-09-08T07:52:42", + "sbd_seconds": "196411849656", + "sbd_seconds_last_update": "2016-09-14T08:21:21", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "42344593.521289 VESTS", + "vesting_withdraw_rate": "0.000000 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 9949, + "last_update_time": 1473794040 + }, + "voting_power": 9949, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM6e8Lya5DLy68zE2ZA245gC5YRdK9Ka9pATEbD5eGRUjPQaef9t", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-08-08T20:46:12", + "curation_rewards": 1769, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1470689172 + }, + "guest_bloggers": [], + "id": 52306, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "2016-09-09T20:40:09", + "last_root_post": "2016-09-01T21:48:12", + "last_vote_time": "2016-09-15T15:48:36", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5Y7kHyxuJ2xXDCBLykUFkZj5D1JfUXwuzuycrsqzcvPyyU38Rr", + "mined": false, + "name": "ryan-singer", + "next_vesting_withdrawal": "2016-09-16T19:56:00", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM59QRA2VjDPrBsemtihtX2SQPXDxvpht6VtAVr9kba1HxvfAL8Q", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 10000, + "post_count": 51, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM767cycX9jUkyfp6FapF89KPXg7mjUQg9XKNzGbBWzCdmeLd8Zi", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 1334110, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": "3575830946674", + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "353.437 HBD", + "sbd_last_interest_payment": "2016-09-09T12:40:18", + "sbd_seconds": "187272166566", + "sbd_seconds_last_update": "2016-09-15T16:56:27", + "tags_usage": [], + "to_withdraw": "2413058773401", + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "2379922.093390 VESTS", + "vesting_withdraw_rate": "23202.488205 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 9949, + "last_update_time": 1473954516 + }, + "voting_power": 9949, + "withdraw_routes": 0, + "withdrawn": "46404976410", + "witness_votes": [ + "royaltiffany", + "steve-walschot" + ], + "witnesses_voted_for": 2 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM88hPEnvxkjNy3fGRYD1x1As9sRoeC2J3ExgoFLs2ptC5y2GVUM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "491.203 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-05-11T21:11:09", + "curation_rewards": 185495, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1463001069 + }, + "guest_bloggers": [], + "id": 8363, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-18T20:54:27", + "last_owner_update": "2016-07-18T20:54:27", + "last_post": "2016-09-12T22:13:45", + "last_root_post": "2016-09-12T21:37:27", + "last_vote_time": "2016-09-13T19:14:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7MjV8kvyvHEVQBq3vkJLqjL4BgSwTaMxL9w2Z19AHJ98oEYpv3", + "mined": false, + "name": "camilla", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM82hEhbDUKrZKdaqy1FokVgijx2ifno4RwMdeCa46ebtApMRYRu", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 18154, + "post_count": 698, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM4xuvroftPfdqJgkta3gHiceBUrqpVFPtvvFcd62kWS9TxKwsm7", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 16483404, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": "34348055714672", + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "391.194 HBD", + "sbd_last_interest_payment": "2016-09-08T07:52:42", + "sbd_seconds": "196411849656", + "sbd_seconds_last_update": "2016-09-14T08:21:21", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "42344593.521289 VESTS", + "vesting_withdraw_rate": "0.000000 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 9949, + "last_update_time": 1473794040 + }, + "voting_power": 9949, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_active_votes_much.pat.json b/hivemind/tavern/condenser_api_patterns/get_active_votes_much.pat.json new file mode 100644 index 00000000..6c68d583 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_active_votes_much.pat.json @@ -0,0 +1,3966 @@ +[ + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM88hPEnvxkjNy3fGRYD1x1As9sRoeC2J3ExgoFLs2ptC5y2GVUM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "491.203 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-05-11T21:11:09", + "curation_rewards": 185495, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1463001069 + }, + "guest_bloggers": [], + "id": 8363, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-18T20:54:27", + "last_owner_update": "2016-07-18T20:54:27", + "last_post": "2016-09-12T22:13:45", + "last_root_post": "2016-09-12T21:37:27", + "last_vote_time": "2016-09-13T19:14:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7MjV8kvyvHEVQBq3vkJLqjL4BgSwTaMxL9w2Z19AHJ98oEYpv3", + "mined": false, + "name": "camilla", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM82hEhbDUKrZKdaqy1FokVgijx2ifno4RwMdeCa46ebtApMRYRu", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 18154, + "post_count": 698, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM4xuvroftPfdqJgkta3gHiceBUrqpVFPtvvFcd62kWS9TxKwsm7", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 16483404, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": "34348055714672", + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "391.194 HBD", + "sbd_last_interest_payment": "2016-09-08T07:52:42", + "sbd_seconds": "196411849656", + "sbd_seconds_last_update": "2016-09-14T08:21:21", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "42344593.521289 VESTS", + "vesting_withdraw_rate": "0.000000 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 9949, + "last_update_time": 1473794040 + }, + "voting_power": 9949, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM6e8Lya5DLy68zE2ZA245gC5YRdK9Ka9pATEbD5eGRUjPQaef9t", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-08-08T20:46:12", + "curation_rewards": 1769, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1470689172 + }, + "guest_bloggers": [], + "id": 52306, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "2016-09-09T20:40:09", + "last_root_post": "2016-09-01T21:48:12", + "last_vote_time": "2016-09-15T15:48:36", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5Y7kHyxuJ2xXDCBLykUFkZj5D1JfUXwuzuycrsqzcvPyyU38Rr", + "mined": false, + "name": "ryan-singer", + "next_vesting_withdrawal": "2016-09-16T19:56:00", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM59QRA2VjDPrBsemtihtX2SQPXDxvpht6VtAVr9kba1HxvfAL8Q", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 10000, + "post_count": 51, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM767cycX9jUkyfp6FapF89KPXg7mjUQg9XKNzGbBWzCdmeLd8Zi", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 1334110, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": "3575830946674", + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "353.437 HBD", + "sbd_last_interest_payment": "2016-09-09T12:40:18", + "sbd_seconds": "187272166566", + "sbd_seconds_last_update": "2016-09-15T16:56:27", + "tags_usage": [], + "to_withdraw": "2413058773401", + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "2379922.093390 VESTS", + "vesting_withdraw_rate": "23202.488205 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 9949, + "last_update_time": 1473954516 + }, + "voting_power": 9949, + "withdraw_routes": 0, + "withdrawn": "46404976410", + "witness_votes": [ + "royaltiffany", + "steve-walschot" + ], + "witnesses_voted_for": 2 + }, + { + "active": { + "account_auths": [], + "key_auths": [], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "1970-01-01T00:00:00", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 0 + }, + "guest_bloggers": [], + "id": 0, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM1111111111111111111111111111111114T1Anm", + "mined": true, + "name": "miners", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.000 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "1970-01-01T00:00:00", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "0.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 0, + "last_update_time": 0 + }, + "voting_power": 0, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [], + "weight_threshold": 0 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "1970-01-01T00:00:00", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 0 + }, + "guest_bloggers": [], + "id": 2, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "2016-07-18T08:13:30", + "last_root_post": "2016-07-18T08:13:30", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM1111111111111111111111111111111114T1Anm", + "mined": true, + "name": "temp", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [], + "weight_threshold": 0 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 1, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "", + "reputation": -69242674449, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.000 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "1970-01-01T00:00:00", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "446.423136 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 0, + "last_update_time": 0 + }, + "voting_power": 0, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM8GC13uCZbP44HzMLV6zPZGwVQ8Nt4Kji8PapsPiNq1BK153XTX", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "1970-01-01T00:00:00", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 0 + }, + "guest_bloggers": [], + "id": 3, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM8GC13uCZbP44HzMLV6zPZGwVQ8Nt4Kji8PapsPiNq1BK153XTX", + "mined": true, + "name": "initminer", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM8GC13uCZbP44HzMLV6zPZGwVQ8Nt4Kji8PapsPiNq1BK153XTX", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM8GC13uCZbP44HzMLV6zPZGwVQ8Nt4Kji8PapsPiNq1BK153XTX", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:57:42", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 0, + "last_update_time": 0 + }, + "voting_power": 0, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:03", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838803 + }, + "guest_bloggers": [], + "id": 6, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:27:15", + "last_owner_update": "2016-07-19T05:27:15", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "nxt1", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:58:18", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000000 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838803 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "21.464 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:03", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838803 + }, + "guest_bloggers": [], + "id": 5, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:23:12", + "last_owner_update": "2016-07-19T05:23:12", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "dark", + "next_vesting_withdrawal": "2016-09-16T20:58:57", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:01:42", + "tags_usage": [], + "to_withdraw": "1000000000000", + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "923076.923080 VESTS", + "vesting_withdraw_rate": "9615.384615 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838803 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": "76923076920", + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:06", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838806 + }, + "guest_bloggers": [], + "id": 8, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:27:18", + "last_owner_update": "2016-07-19T05:27:18", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "2016-06-05T06:52:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "nxt2", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:58:21", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 9508, + "last_update_time": 1465109520 + }, + "voting_power": 9508, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:06", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838806 + }, + "guest_bloggers": [], + "id": 7, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:23:18", + "last_owner_update": "2016-07-19T05:23:18", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "nxt", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:58:18", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838806 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:09", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838809 + }, + "guest_bloggers": [], + "id": 14, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + "mined": true, + "name": "dantheman5", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:57:18", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838809 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "127.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:09", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838809 + }, + "guest_bloggers": [], + "id": 11, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + "mined": true, + "name": "any", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:56:45", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838809 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:09", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838809 + }, + "guest_bloggers": [], + "id": 12, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:27:21", + "last_owner_update": "2016-07-19T05:27:21", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "nxt3", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:58:21", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838809 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:12", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838812 + }, + "guest_bloggers": [], + "id": 15, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:27:21", + "last_owner_update": "2016-07-19T05:27:21", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "nxt4", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:58:21", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838812 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM628tVfMBhuYeeTqbR9iopYffCRcnEV624EkLSYPywYbbas8s8S", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:12", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838812 + }, + "guest_bloggers": [], + "id": 19, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM628tVfMBhuYeeTqbR9iopYffCRcnEV624EkLSYPywYbbas8s8S", + "mined": true, + "name": "cloop2", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM628tVfMBhuYeeTqbR9iopYffCRcnEV624EkLSYPywYbbas8s8S", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM628tVfMBhuYeeTqbR9iopYffCRcnEV624EkLSYPywYbbas8s8S", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:57:03", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838812 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:12", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838812 + }, + "guest_bloggers": [], + "id": 18, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + "mined": true, + "name": "dantheman1", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:57:09", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838812 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:12", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838812 + }, + "guest_bloggers": [], + "id": 20, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + "mined": true, + "name": "dantheman6", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:57:21", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838812 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "21.464 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:12", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838812 + }, + "guest_bloggers": [], + "id": 16, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:23:24", + "last_owner_update": "2016-07-19T05:23:24", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "thisisnice", + "next_vesting_withdrawal": "2016-09-16T20:59:36", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:01:48", + "tags_usage": [], + "to_withdraw": "1000000000000", + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "923076.923080 VESTS", + "vesting_withdraw_rate": "9615.384615 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838812 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": "76923076920", + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "63.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:15", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838815 + }, + "guest_bloggers": [], + "id": 22, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + "mined": true, + "name": "root", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:58:36", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838815 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:15", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838815 + }, + "guest_bloggers": [], + "id": 21, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:23:27", + "last_owner_update": "2016-07-19T05:23:27", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "thisisnice0", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:01:12", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838815 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:18", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838818 + }, + "guest_bloggers": [], + "id": 26, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + "mined": true, + "name": "dantheman2", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:57:15", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838818 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "21.464 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:18", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838818 + }, + "guest_bloggers": [], + "id": 24, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:27:24", + "last_owner_update": "2016-07-19T05:27:24", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "nxt5", + "next_vesting_withdrawal": "2016-09-16T21:01:57", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:01:42", + "tags_usage": [], + "to_withdraw": "1000000000000", + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "923076.923080 VESTS", + "vesting_withdraw_rate": "9615.384615 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838818 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": "76923076920", + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:18", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838818 + }, + "guest_bloggers": [], + "id": 25, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + "mined": true, + "name": "dantheman7", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:57:21", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838818 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:21", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838821 + }, + "guest_bloggers": [], + "id": 29, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:23:30", + "last_owner_update": "2016-07-19T05:23:30", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "thisisnice2", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:01:12", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838821 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:21", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838821 + }, + "guest_bloggers": [], + "id": 30, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + "mined": true, + "name": "dantheman8", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:57:24", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838821 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "21.464 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:21", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838821 + }, + "guest_bloggers": [], + "id": 27, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:27:27", + "last_owner_update": "2016-07-19T05:27:27", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "nxt6", + "next_vesting_withdrawal": "2016-09-16T21:01:36", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:01:45", + "tags_usage": [], + "to_withdraw": "1000000000000", + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "923076.923080 VESTS", + "vesting_withdraw_rate": "9615.384615 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838821 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": "76923076920", + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:21", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838821 + }, + "guest_bloggers": [], + "id": 31, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + "mined": true, + "name": "dantheman3", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:57:18", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838821 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7P5TDnA87Pj9T4mf6YHrhzjC1KbPZpNxLWCcVcHxNYXakpoT4F", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:21", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838821 + }, + "guest_bloggers": [], + "id": 32, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7P5TDnA87Pj9T4mf6YHrhzjC1KbPZpNxLWCcVcHxNYXakpoT4F", + "mined": true, + "name": "cloop3", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7P5TDnA87Pj9T4mf6YHrhzjC1KbPZpNxLWCcVcHxNYXakpoT4F", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7P5TDnA87Pj9T4mf6YHrhzjC1KbPZpNxLWCcVcHxNYXakpoT4F", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:57:03", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838821 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "21.464 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:24", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838824 + }, + "guest_bloggers": [], + "id": 34, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:27:27", + "last_owner_update": "2016-07-19T05:27:27", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "nxt7", + "next_vesting_withdrawal": "2016-09-16T21:00:54", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:01:45", + "tags_usage": [], + "to_withdraw": "1000000000000", + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "923076.923080 VESTS", + "vesting_withdraw_rate": "9615.384615 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838824 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": "76923076920", + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:24", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838824 + }, + "guest_bloggers": [], + "id": 33, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:23:30", + "last_owner_update": "2016-07-19T05:23:30", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "thisisnice3", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:01:15", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838824 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "21.464 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:27", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838827 + }, + "guest_bloggers": [], + "id": 37, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:27:30", + "last_owner_update": "2016-07-19T05:27:30", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "nxt8", + "next_vesting_withdrawal": "2016-09-16T21:00:21", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:01:45", + "tags_usage": [], + "to_withdraw": "1000000000000", + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "923076.923080 VESTS", + "vesting_withdraw_rate": "9615.384615 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838827 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": "76923076920", + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:27", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838827 + }, + "guest_bloggers": [], + "id": 38, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + "mined": true, + "name": "dantheman4", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:57:18", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838827 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:27", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838827 + }, + "guest_bloggers": [], + "id": 36, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:23:33", + "last_owner_update": "2016-07-19T05:23:33", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "thisisnice4", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:01:15", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838827 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:30", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838830 + }, + "guest_bloggers": [], + "id": 39, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + "mined": true, + "name": "steemit10", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:40:18", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "2780476.239600 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838830 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:30", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838830 + }, + "guest_bloggers": [], + "id": 42, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:23:33", + "last_owner_update": "2016-07-19T05:23:33", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "thisisnice5", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:01:15", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838830 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:30", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838830 + }, + "guest_bloggers": [], + "id": 41, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + "mined": true, + "name": "dantheman9", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM5Jna5tmYoiNV7RyABdwYgRCKJGgbrt3EVB5RqzJvvx3ecG5YPp", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:57:24", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838830 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "38.681 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:30", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838830 + }, + "guest_bloggers": [], + "id": 40, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:23:21", + "last_owner_update": "2016-07-19T05:23:21", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "nxt9", + "next_vesting_withdrawal": "2016-09-21T04:58:48", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:04:21", + "tags_usage": [], + "to_withdraw": "951923846155", + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "796320.909770 VESTS", + "vesting_withdraw_rate": "9153.113905 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838830 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": "155602936385", + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:33", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838833 + }, + "guest_bloggers": [], + "id": 43, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + "mined": true, + "name": "steemit11", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM65wH1LZ7BfSHcK69SShnqCAH5xdoSZpGkUjmzHJ5GCuxEK9V5G", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T09:40:03", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "2844390.073743 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838833 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:36", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838836 + }, + "guest_bloggers": [], + "id": 45, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-19T05:23:36", + "last_owner_update": "2016-07-19T05:23:36", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "mined": true, + "name": "thisisnice6", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": 0, + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:01:18", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "1000000.000000 VESTS", + "vesting_withdraw_rate": "0.000001 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838836 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_active_votes_no_votes.pat.json b/hivemind/tavern/condenser_api_patterns/get_active_votes_no_votes.pat.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_active_votes_no_votes.pat.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_active_votes_one.pat.json b/hivemind/tavern/condenser_api_patterns/get_active_votes_one.pat.json new file mode 100644 index 00000000..4d779c3b --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_active_votes_one.pat.json @@ -0,0 +1,108 @@ +[ + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM88hPEnvxkjNy3fGRYD1x1As9sRoeC2J3ExgoFLs2ptC5y2GVUM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "491.203 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-05-11T21:11:09", + "curation_rewards": 185495, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1463001069 + }, + "guest_bloggers": [], + "id": 8363, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-18T20:54:27", + "last_owner_update": "2016-07-18T20:54:27", + "last_post": "2016-09-12T22:13:45", + "last_root_post": "2016-09-12T21:37:27", + "last_vote_time": "2016-09-13T19:14:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7MjV8kvyvHEVQBq3vkJLqjL4BgSwTaMxL9w2Z19AHJ98oEYpv3", + "mined": false, + "name": "camilla", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM82hEhbDUKrZKdaqy1FokVgijx2ifno4RwMdeCa46ebtApMRYRu", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 18154, + "post_count": 698, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM4xuvroftPfdqJgkta3gHiceBUrqpVFPtvvFcd62kWS9TxKwsm7", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 16483404, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": "34348055714672", + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "391.194 HBD", + "sbd_last_interest_payment": "2016-09-08T07:52:42", + "sbd_seconds": "196411849656", + "sbd_seconds_last_update": "2016-09-14T08:21:21", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "42344593.521289 VESTS", + "vesting_withdraw_rate": "0.000000 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 9949, + "last_update_time": 1473794040 + }, + "voting_power": 9949, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_active_votes_two.pat.json b/hivemind/tavern/condenser_api_patterns/get_active_votes_two.pat.json new file mode 100644 index 00000000..899b40f0 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_active_votes_two.pat.json @@ -0,0 +1,216 @@ +[ + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM88hPEnvxkjNy3fGRYD1x1As9sRoeC2J3ExgoFLs2ptC5y2GVUM", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "491.203 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-05-11T21:11:09", + "curation_rewards": 185495, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1463001069 + }, + "guest_bloggers": [], + "id": 8363, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-18T20:54:27", + "last_owner_update": "2016-07-18T20:54:27", + "last_post": "2016-09-12T22:13:45", + "last_root_post": "2016-09-12T21:37:27", + "last_vote_time": "2016-09-13T19:14:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7MjV8kvyvHEVQBq3vkJLqjL4BgSwTaMxL9w2Z19AHJ98oEYpv3", + "mined": false, + "name": "camilla", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM82hEhbDUKrZKdaqy1FokVgijx2ifno4RwMdeCa46ebtApMRYRu", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 18154, + "post_count": 698, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM4xuvroftPfdqJgkta3gHiceBUrqpVFPtvvFcd62kWS9TxKwsm7", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 16483404, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": "34348055714672", + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "391.194 HBD", + "sbd_last_interest_payment": "2016-09-08T07:52:42", + "sbd_seconds": "196411849656", + "sbd_seconds_last_update": "2016-09-14T08:21:21", + "tags_usage": [], + "to_withdraw": 0, + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "42344593.521289 VESTS", + "vesting_withdraw_rate": "0.000000 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 9949, + "last_update_time": 1473794040 + }, + "voting_power": 9949, + "withdraw_routes": 0, + "withdrawn": 0, + "witness_votes": [], + "witnesses_voted_for": 0 + }, + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM6e8Lya5DLy68zE2ZA245gC5YRdK9Ka9pATEbD5eGRUjPQaef9t", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-08-08T20:46:12", + "curation_rewards": 1769, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1470689172 + }, + "guest_bloggers": [], + "id": 52306, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "2016-09-09T20:40:09", + "last_root_post": "2016-09-01T21:48:12", + "last_vote_time": "2016-09-15T15:48:36", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5Y7kHyxuJ2xXDCBLykUFkZj5D1JfUXwuzuycrsqzcvPyyU38Rr", + "mined": false, + "name": "ryan-singer", + "next_vesting_withdrawal": "2016-09-16T19:56:00", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM59QRA2VjDPrBsemtihtX2SQPXDxvpht6VtAVr9kba1HxvfAL8Q", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 10000, + "post_count": 51, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM767cycX9jUkyfp6FapF89KPXg7mjUQg9XKNzGbBWzCdmeLd8Zi", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 1334110, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": "3575830946674", + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "353.437 HBD", + "sbd_last_interest_payment": "2016-09-09T12:40:18", + "sbd_seconds": "187272166566", + "sbd_seconds_last_update": "2016-09-15T16:56:27", + "tags_usage": [], + "to_withdraw": "2413058773401", + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "2379922.093390 VESTS", + "vesting_withdraw_rate": "23202.488205 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 9949, + "last_update_time": 1473954516 + }, + "voting_power": 9949, + "withdraw_routes": 0, + "withdrawn": "46404976410", + "witness_votes": [ + "royaltiffany", + "steve-walschot" + ], + "witnesses_voted_for": 2 + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index ecf901b8..c7ebfc22 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -697,3 +697,429 @@ extra_kwargs: method: "get_active_votes" directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_active_votes patterns test all data + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_active_votes + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_active_votes" + params: ["noodhoog","steem-opening-the-forgotten-economy"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_active_votes_all_data" + directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_active_votes patterns test no data + + marks: + - patterntest # required values + + includes: + - !include common.yaml + + stages: + - name: get_active_votes + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_active_votes" + params: ["",""] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "unknown key:unknown key: " + +--- + test_name: Hivemind condenser_api.get_active_votes patterns test author + + marks: + - patterntest # required values + + includes: + - !include common.yaml + + stages: + - name: get_active_votes + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_active_votes" + params: ["noodhoog",""] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "unknown key:unknown key: " + +--- + test_name: Hivemind condenser_api.get_active_votes patterns test empty votes + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_active_votes + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_active_votes" + params: ["lillianjones","re-the-amazing-mr-hydde-20160811t213717"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_active_votes_no_votes" + directory: "condenser_api_patterns" + + +--- + test_name: Hivemind condenser_api.get_active_votes patterns test wrong author + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_active_votes + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_active_votes" + params: ["ciao","re-the-amazing-mr-hydde-20160811t213717"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "unknown key:unknown key: " + +--- + test_name: Hivemind condenser_api.get_active_votes patterns test 3 args + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_active_votes + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_active_votes" + params: ["ciao", "re-the-amazing-mr-hydde-20160811t213650", ""] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Assert Exception:args.size() == 2: Expected #s argument(s), was 3" + +--- + test_name: Hivemind condenser_api.get_accounts patterns test no data + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_accounts" + params: [[]] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_active_votes_no_votes" + directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_accounts patterns test one + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_accounts" + params: [["camilla"]] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_active_votes_one" + directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_accounts patterns test two + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_accounts" + params: [["camilla", "ryan-singer"]] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_active_votes_two" + directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_accounts patterns test double + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_accounts" + params: [["camilla", "ryan-singer", "camilla"]] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_active_votes_double" + directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_accounts patterns test much + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_accounts" + params: [["camilla", "ryan-singer","miners", "temp", "initminer","nxt1", "dark", "nxt2","nxt", "dantheman5", "any","nxt3", "nxt4", "cloop2","dantheman1", "dantheman6", "thisisnice","root", "thisisnice0", "dantheman2","nxt5","dantheman7","thisisnice2","dantheman8","nxt6","dantheman3","cloop3","nxt7","thisisnice3","nxt8","dantheman4","thisisnice4","steemit10","thisisnice5","dantheman9","nxt9","steemit11","thisisnice6"]] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_active_votes_much" + directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_accounts patterns test wrong name + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_accounts" + params: [["the6"]] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_active_votes_no_votes" + directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_reblogged_by patterns test 8080 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_reblogged_by + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_reblogged_by" + params: ["", ""] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Invalid parameters" + +--- + test_name: Hivemind condenser_api.get_reblogged_by patterns test 8080 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_reblogged_by + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_reblogged_by" + params: ["camilla", "a-quick-steem-elf-drawing", "aa"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Invalid parameters" + +--- + test_name: Hivemind condenser_api.get_reblogged_by patterns test 8080 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_reblogged_by + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_reblogged_by" + params: ["camilla", "a-quick-steem-elf-drawing", "aa"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_message + extra_kwargs: + message: "Invalid parameters" \ No newline at end of file -- GitLab From 379a8d1c6d8447b1c7e95224681dfc5b78e4389d Mon Sep 17 00:00:00 2001 From: Pawel Maniora Date: Tue, 18 Aug 2020 14:42:16 +0200 Subject: [PATCH 25/49] pattern tavern structure update --- .../get_account_reputations.pat.json | 14 +- ...get_comment_discussions_by_payout.pat.json | 40 +- .../get_content_gtg.pat.json | 572 +-- .../get_discussions_by_hot.pat.json | 2 +- .../get_discussions_by_promoted.pat.json | 2 +- ..._replies_by_last_update_limit_100.pat.json | 3148 +++++++++-------- .../condenser_api_patterns/get_state.pat.json | 872 ++--- 7 files changed, 2101 insertions(+), 2549 deletions(-) diff --git a/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json b/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json index 8c8acae2..202a9ba0 100644 --- a/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json @@ -1,6 +1,8 @@ -[ - { - "account": "steemit", - "reputation": "12944616889" - } -] \ No newline at end of file +{ + "reputations": [ + { + "name": "steemit", + "reputation": 12944616889 + } + ] +} diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json index 784bbbec..1d95f6eb 100644 --- a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json @@ -1,37 +1,33 @@ [ { - "post_id": 703225, + "active_votes": [], "author": "lukmarcus", "author_reputation": 0, "beneficiaries": [], "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", "body_length": 122, - "cashout_time": "2016-08-29T07:44:48", + "cashout_time": "2016-09-18T21:19:45", "category": "polska", - "title": "", - "body": "Ty jesteś autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", - "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https:\\/\\/web.facebook.com\\/notes\\/szymon-szewczyk-blog\\/nasienie-wolno%C5%9Bci\\/1062629210473658\"]}", + "children": 0, "created": "2016-08-22T07:44:48", - "last_update": "2016-08-22T07:44:48", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https:\\/\\/web.facebook.com\\/notes\\/szymon-szewczyk-blog\\/nasienie-wolno%C5%9Bci\\/1062629210473658\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-18T21:19:45", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-22T07:44:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "simgregg", + "parent_permlink": "nasienie-wolnosci", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-simgregg-nasienie-wolnosci-20160822t074530822z", + "post_id": 703225, "promoted": "0.000 HBD", "replies": [], - "body_length": 122, - "active_votes": [], - "author_reputation": 0, - "parent_author": "simgregg", - "parent_permlink": "nasienie-wolnosci", - "url": "/polska/@simgregg/nasienie-wolnosci#@lukmarcus/re-simgregg-nasienie-wolnosci-20160822t074530822z", - "root_title": "Nasienie Wolności", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "root_title": "Nasienie Wolno\u015bci", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/polska/@simgregg/nasienie-wolnosci#@lukmarcus/re-simgregg-nasienie-wolnosci-20160822t074530822z" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/condenser_api_patterns/get_content_gtg.pat.json b/hivemind/tavern/condenser_api_patterns/get_content_gtg.pat.json index 84921da7..75d9de1c 100644 --- a/hivemind/tavern/condenser_api_patterns/get_content_gtg.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_content_gtg.pat.json @@ -1,554 +1,554 @@ { - "post_id": 463046, - "author": "gtg", - "permlink": "witness-gtg", - "category": "witness-category", - "title": "Witness \"gtg\"", - "body": "Hello, World!\n\nMy intention is not to make it into top 19. I could name many other candidates (clearly more than 19) with greater commitment to steem(it) who are a lot more appropriate as witnesses, but I'm sure I can be useful as a backup witness.\n\nI introduced myself here:\nhttps://steemit.com/introduceyourself/@gtg/hello-world\nThose of you who use https://steemit.chat know me as **Gandalf**.\nFor some time, I’ve been using my magic powers (mostly those related to security and infrastructure) to improve steemit. For example, I’ve improved our \"Perfect\" Forward Secrecy and made our communication with site more secure.\n\nMy **seed node** (EU based):\n`seed-node = gtg.steem.house:2001`\nYou can also use it to rsync data dir\n`rsync -Pa rsync://gtg.steem.house/witness_node_data_dir .`\n\nMy **witness node** is on a separate data center (an EU-based one as well).\nIf you believe I can be of value to steemit, please vote for me:\n`vote_for_witness YOURACCOUNT gtg true true`\n\n![witness](https://grey.house/img/witness.jpg)", - "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https:\\/\\/steemit.com\\/introduceyourself\\/@gtg\\/hello-world\"]}", - "created": "2016-08-05T14:02:24", - "last_update": "2016-08-05T14:02:24", - "depth": 0, - "children": 7, - "net_rshares": 61504610477823, - "last_payout": "2016-09-05T05:17:57", - "cashout_time": "1969-12-31T23:59:59", - "total_payout_value": "703.088 HBD", - "curator_payout_value": "231.879 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 1023, "active_votes": [ { - "voter": "steempty", - "rshares": "7498426175709", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7498426175709", + "voter": "steempty" }, { - "voter": "blocktrades", - "rshares": "42312727614219", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "42312727614219", + "voter": "blocktrades" }, { - "voter": "justin", - "rshares": "305178325808", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "305178325808", + "voter": "justin" }, { - "voter": "silver", - "rshares": "869557685770", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "869557685770", + "voter": "silver" }, { - "voter": "roadscape", - "rshares": "5114872713665", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5114872713665", + "voter": "roadscape" }, { - "voter": "complexring", - "rshares": "2289539684123", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2289539684123", + "voter": "complexring" }, { - "voter": "chloe", - "rshares": "2180802207", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2180802207", + "voter": "chloe" }, { - "voter": "jen", - "rshares": "2185117237", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2185117237", + "voter": "jen" }, { - "voter": "danknugs", - "rshares": "14176153154", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "14176153154", + "voter": "danknugs" }, { - "voter": "steemservices", - "rshares": "198373663832", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "198373663832", + "voter": "steemservices" }, { - "voter": "aizensou", - "rshares": "30116948361", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "30116948361", + "voter": "aizensou" }, { - "voter": "kelly", - "rshares": "46091054", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "46091054", + "voter": "kelly" }, { - "voter": "bentley", - "rshares": "6428425796", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6428425796", + "voter": "bentley" }, { - "voter": "gandalf", - "rshares": "91926650", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "91926650", + "voter": "gandalf" }, { - "voter": "boatymcboatface", - "rshares": "345893040115", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "345893040115", + "voter": "boatymcboatface" }, { - "voter": "proctologic", - "rshares": "27177508174", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "27177508174", + "voter": "proctologic" }, { - "voter": "sophia", - "rshares": "316897956", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "316897956", + "voter": "sophia" }, { - "voter": "hcf27", - "rshares": "21914098976", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "21914098976", + "voter": "hcf27" }, { - "voter": "modeprator", - "rshares": "7368210672", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7368210672", + "voter": "modeprator" }, { - "voter": "edgeland", - "rshares": "103782757471", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "103782757471", + "voter": "edgeland" }, { - "voter": "steemship", - "rshares": "785540122070", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "785540122070", + "voter": "steemship" }, { - "voter": "spaninv", - "rshares": "5786912627", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5786912627", + "voter": "spaninv" }, { - "voter": "pal", - "rshares": "196850398821", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "196850398821", + "voter": "pal" }, { - "voter": "murh", - "rshares": "2792608078", "percent": "3301", - "reputation": 0 + "reputation": 0, + "rshares": "2792608078", + "voter": "murh" }, { - "voter": "itay", - "rshares": "98699236", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "98699236", + "voter": "itay" }, { - "voter": "johnerfx", - "rshares": "9975325205", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "9975325205", + "voter": "johnerfx" }, { - "voter": "taoteh1221", - "rshares": "206512826638", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "206512826638", + "voter": "taoteh1221" }, { - "voter": "juanmiguelsalas", - "rshares": "57136530202", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "57136530202", + "voter": "juanmiguelsalas" }, { - "voter": "somedude", - "rshares": "9128119179", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "9128119179", + "voter": "somedude" }, { - "voter": "kaylinart", - "rshares": "203906072916", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "203906072916", + "voter": "kaylinart" }, { - "voter": "johnerminer", - "rshares": "867610016", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "867610016", + "voter": "johnerminer" }, { - "voter": "geoffrey", - "rshares": "32485842972", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "32485842972", + "voter": "geoffrey" }, { - "voter": "gary-smith", - "rshares": "2480411371", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2480411371", + "voter": "gary-smith" }, { - "voter": "jparty", - "rshares": "23267718250", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "23267718250", + "voter": "jparty" }, { - "voter": "mammasitta", - "rshares": "1953019618", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1953019618", + "voter": "mammasitta" }, { - "voter": "gtg", - "rshares": "25911121779", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "25911121779", + "voter": "gtg" }, { - "voter": "madwallace", - "rshares": "4679981480", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "4679981480", + "voter": "madwallace" }, { - "voter": "lauralemons", - "rshares": "39716978937", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "39716978937", + "voter": "lauralemons" }, { - "voter": "chamviet", - "rshares": "461256359", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "461256359", + "voter": "chamviet" }, { - "voter": "r4fken", - "rshares": "15413814887", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "15413814887", + "voter": "r4fken" }, { - "voter": "endaksi1", - "rshares": "6283643209", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6283643209", + "voter": "endaksi1" }, { - "voter": "picokernel", - "rshares": "16250564070", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "16250564070", + "voter": "picokernel" }, { - "voter": "furion", - "rshares": "702264837", "percent": "100", - "reputation": 0 + "reputation": 0, + "rshares": "702264837", + "voter": "furion" }, { - "voter": "anyx", - "rshares": "80421874395", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "80421874395", + "voter": "anyx" }, { - "voter": "egjoshslim", - "rshares": "2241994263", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2241994263", + "voter": "egjoshslim" }, { - "voter": "paco", - "rshares": "120632910259", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "120632910259", + "voter": "paco" }, { - "voter": "senseiteekay", - "rshares": "6621475753", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6621475753", + "voter": "senseiteekay" }, { - "voter": "jesse5th", - "rshares": "226092177", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "226092177", + "voter": "jesse5th" }, { - "voter": "inertia", - "rshares": "23810445079", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "23810445079", + "voter": "inertia" }, { - "voter": "glassice", - "rshares": "210829632", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "210829632", + "voter": "glassice" }, { - "voter": "lenar79", - "rshares": "203070157", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "203070157", + "voter": "lenar79" }, { - "voter": "arcurus", - "rshares": "15277675835", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "15277675835", + "voter": "arcurus" }, { - "voter": "johnsmith", - "rshares": "101769596658", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "101769596658", + "voter": "johnsmith" }, { - "voter": "steeminer", - "rshares": "330264489", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "330264489", + "voter": "steeminer" }, { - "voter": "cire81", - "rshares": "55123516", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "55123516", + "voter": "cire81" }, { - "voter": "celebr1ty", - "rshares": "20346345482", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "20346345482", + "voter": "celebr1ty" }, { - "voter": "kibela", - "rshares": "116522786", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "116522786", + "voter": "kibela" }, { - "voter": "sulev", - "rshares": "4195953733", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "4195953733", + "voter": "sulev" }, { - "voter": "glitterpig", - "rshares": "1863529002", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1863529002", + "voter": "glitterpig" }, { - "voter": "alrx6918", - "rshares": "88147854", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "88147854", + "voter": "alrx6918" }, { - "voter": "vitz81", - "rshares": "156246825", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "156246825", + "voter": "vitz81" }, { - "voter": "rawnetics", - "rshares": "7842906910", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7842906910", + "voter": "rawnetics" }, { - "voter": "naturalista", - "rshares": "2110595726", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2110595726", + "voter": "naturalista" }, { - "voter": "persianqueen", - "rshares": "47302483", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "47302483", + "voter": "persianqueen" }, { - "voter": "glitterfart", - "rshares": "309993436467", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "309993436467", + "voter": "glitterfart" }, { - "voter": "caitlinm", - "rshares": "102759457", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "102759457", + "voter": "caitlinm" }, { - "voter": "jellenmark", - "rshares": "71928410", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "71928410", + "voter": "jellenmark" }, { - "voter": "agussudaryanto", - "rshares": "151302584", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "151302584", + "voter": "agussudaryanto" }, { - "voter": "ciao", - "rshares": "12663424", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "12663424", + "voter": "ciao" }, { - "voter": "iaco", - "rshares": "519527818", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "519527818", + "voter": "iaco" }, { - "voter": "steemo", - "rshares": "14786662", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "14786662", + "voter": "steemo" }, { - "voter": "nixonnox", - "rshares": "1568749518", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1568749518", + "voter": "nixonnox" }, { - "voter": "hanshotfirst", - "rshares": "3195610059", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3195610059", + "voter": "hanshotfirst" }, { - "voter": "steema", - "rshares": "2458086", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2458086", + "voter": "steema" }, { - "voter": "confucius", - "rshares": "12950553", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "12950553", + "voter": "confucius" }, { - "voter": "bledarus", - "rshares": "911816960", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "911816960", + "voter": "bledarus" }, { - "voter": "softpunk", - "rshares": "1251336", "percent": "10", - "reputation": 0 + "reputation": 0, + "rshares": "1251336", + "voter": "softpunk" }, { - "voter": "jarvis", - "rshares": "3742919", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3742919", + "voter": "jarvis" }, { - "voter": "thecurator", - "rshares": "37069491", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "37069491", + "voter": "thecurator" }, { - "voter": "mefisto", - "rshares": "229846452", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "229846452", + "voter": "mefisto" }, { - "voter": "cinderphoenix", - "rshares": "104558988", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "104558988", + "voter": "cinderphoenix" }, { - "voter": "steeminion", - "rshares": "98540677", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "98540677", + "voter": "steeminion" }, { - "voter": "piezolit", - "rshares": "57959648", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "57959648", + "voter": "piezolit" }, { - "voter": "brucy", - "rshares": "8108416", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "8108416", + "voter": "brucy" }, { - "voter": "shukerona", - "rshares": "35603456", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "35603456", + "voter": "shukerona" }, { - "voter": "leticiapink", - "rshares": "56023735", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "56023735", + "voter": "leticiapink" }, { - "voter": "steeminnow", - "rshares": "295195987", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "295195987", + "voter": "steeminnow" } ], + "author": "gtg", "author_reputation": 3920426655270, + "beneficiaries": [], + "body": "Hello, World!\n\nMy intention is not to make it into top 19. I could name many other candidates (clearly more than 19) with greater commitment to steem(it) who are a lot more appropriate as witnesses, but I'm sure I can be useful as a backup witness.\n\nI introduced myself here:\nhttps://steemit.com/introduceyourself/@gtg/hello-world\nThose of you who use https://steemit.chat know me as **Gandalf**.\nFor some time, I\u2019ve been using my magic powers (mostly those related to security and infrastructure) to improve steemit. For example, I\u2019ve improved our \"Perfect\" Forward Secrecy and made our communication with site more secure.\n\nMy **seed node** (EU based):\n`seed-node = gtg.steem.house:2001`\nYou can also use it to rsync data dir\n`rsync -Pa rsync://gtg.steem.house/witness_node_data_dir .`\n\nMy **witness node** is on a separate data center (an EU-based one as well).\nIf you believe I can be of value to steemit, please vote for me:\n`vote_for_witness YOURACCOUNT gtg true true`\n\n![witness](https://grey.house/img/witness.jpg)", + "body_length": 1023, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 7, + "created": "2016-08-05T14:02:24", + "curator_payout_value": "231.879 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https:\\/\\/steemit.com\\/introduceyourself\\/@gtg\\/hello-world\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-05T14:02:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 61504610477823, "parent_author": "", "parent_permlink": "witness-category", - "url": "/witness-category/@gtg/witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "witness-gtg", + "post_id": 463046, + "promoted": "0.000 HBD", + "replies": [], "root_title": "Witness \"gtg\"", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_hbd": 10000 -} \ No newline at end of file + "title": "Witness \"gtg\"", + "total_payout_value": "703.088 HBD", + "url": "/witness-category/@gtg/witness-gtg" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json index bb4469e2..88a2e3f4 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json @@ -1069,7 +1069,7 @@ "created": "2016-09-15T18:18:00", "curator_payout_value": "0.000 HBD", "depth": 0, - "json_metadata": "{\"tags\":[\"steem\",\"poloniex\",\"bittrex\",\"technical-analysis\",\"trading\"],\"image\":[\"https://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png\",\"http://puu.sh/rciwF/1b96b56dcc.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png\",\"http://puu.sh/rciC9/edf3dcb758.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png\",\"http://puu.sh/rciod/ce32f1a029.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png\",\"http://puu.sh/rcifG/0c61511ea3.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png\",\"http://puu.sh/rcicN/b2384086a4.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png\",\"http://puu.sh/rcibB/7b2700dd82.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png\",\"http://puu.sh/rci8K/d68b7eb122.png\",\"https://img.youtube.com/vi/i3bS5nRZOvU/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=i3bS5nRZOvU\"]}", + "json_metadata": "{\"tags\":[\"steem\",\"poloniex\",\"bittrex\",\"technical-analysis\",\"trading\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/qPHEc\\/3b0d8913ce.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmGz\\/0764821325.png\",\"http:\\/\\/puu.sh\\/rciwF\\/1b96b56dcc.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmLb\\/755ca91186.png\",\"http:\\/\\/puu.sh\\/rciC9\\/edf3dcb758.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmDb\\/7461d3602b.png\",\"http:\\/\\/puu.sh\\/rciod\\/ce32f1a029.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmuE\\/227aa902ca.png\",\"http:\\/\\/puu.sh\\/rcifG\\/0c61511ea3.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmwv\\/fd2112e3ab.png\",\"http:\\/\\/puu.sh\\/rcicN\\/b2384086a4.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmry\\/db13b3282f.png\",\"http:\\/\\/puu.sh\\/rcibB\\/7b2700dd82.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmlb\\/aca50530d5.png\",\"http:\\/\\/puu.sh\\/rci8K\\/d68b7eb122.png\",\"https:\\/\\/img.youtube.com\\/vi\\/i3bS5nRZOvU\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=i3bS5nRZOvU\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-15T18:18:00", "max_accepted_payout": "1000000.000 HBD", diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json index 19ebc0d2..9a0dea7c 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json @@ -2569,7 +2569,7 @@ "created": "2016-09-07T15:44:51", "curator_payout_value": "0.000 HBD", "depth": 0, - "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\"]}", + "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https:\\/\\/www.biznessapps.com\\/blog\\/wp-content\\/uploads\\/2013\\/12\\/shutterstock_148639682.png\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-07T15:50:51", "max_accepted_payout": "1000000.000 HBD", diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json index 13dc9efd..3f395041 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json @@ -1,1574 +1,1576 @@ -[ - { - "post_id": 960531, - "author": "chitty", - "permlink": "re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z", - "category": "steemit", - "title": "", - "body": "But this is not an issue of Top Witnesses vs Backup witnesses. This is an issue that involves all members of the Steemit. If top witnesses keep receiving 1,370 Steems per day, their voting influence will keep growing while the rest of the users see their voting power diminished.", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "created": "2016-09-15T18:52:09", - "last_update": "2016-09-15T18:52:09", - "depth": 4, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T15:31:24", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 279, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t184349883z", - "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z", - "root_title": "A balanced voting system is impossible with current witness’s payouts.", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 958542, - "author": "woman-onthe-wing", - "permlink": "re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z", - "category": "introducemyself", - "title": "", - "body": "Thanks very much!", - "json_metadata": "{\"tags\":[\"introducemyself\"]}", - "created": "2016-09-15T15:04:09", - "last_update": "2016-09-15T15:04:09", - "depth": 2, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T01:44:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 17, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t071444722z", - "url": "/introducemyself/@woman-onthe-wing/introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle#@woman-onthe-wing/re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z", - "root_title": "Introduction post - Gold at the end of the rainbow... On the Emerald Isle", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 958150, - "author": "chitty", - "permlink": "re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z", - "category": "steemit", - "title": "", - "body": "This is true, but you have to agree that the gap between top 19 witnesses and the rest of the users is getting bigger... nobody buys 1,370 steem per day, every day!... its impossible to match. The result of this is richer witnesses with more influence and \"normal\" users with very little to no influence at all.", - "json_metadata": "{\"tags\":[\"steemit\"]}", - "created": "2016-09-15T14:21:09", - "last_update": "2016-09-15T14:21:09", - "depth": 2, - "children": 2, - "net_rshares": 1000247174970, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T15:31:24", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.275 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 311, - "active_votes": [ - { - "voter": "liondani", - "rshares": "1000247174970", - "percent": "10000", - "reputation": 0 - } - ], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t141551322z", - "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z", - "root_title": "A balanced voting system is impossible with current witness’s payouts.", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 957646, - "author": "arcange", - "permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", - "category": "stats", - "title": "", - "body": "Lol. You're welcome!\nBut I suspect you're working hard to hit the top 20 chart with your two comments :p", - "json_metadata": "{\"tags\":[\"stats\"]}", - "created": "2016-09-15T13:24:15", - "last_update": "2016-09-15T13:24:15", - "depth": 4, - "children": 1, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T13:44:39", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 104, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", - "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", - "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 957511, - "author": "arcange", - "permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", - "category": "stats", - "title": "", - "body": "That's the purpose of using FREETEXT() instead of CONTAINS()", - "json_metadata": "{\"tags\":[\"stats\"]}", - "created": "2016-09-15T13:06:18", - "last_update": "2016-09-15T13:06:18", - "depth": 2, - "children": 3, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T13:44:39", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 60, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", - "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", - "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 956069, - "author": "gamer00", - "permlink": "re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z", - "category": "introducemyself", - "title": "", - "body": "Thank you!", - "json_metadata": "{\"tags\":[\"introducemyself\"]}", - "created": "2016-09-15T07:54:42", - "last_update": "2016-09-15T07:54:42", - "depth": 2, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T03:45:30", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 10, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t071902704z", - "url": "/introducemyself/@gamer00/hi-i-m-jaro-and-this-is-my-introductory-verification-post#@gamer00/re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z", - "root_title": "Hi! I'm Jaro and this is my introductory verification post!", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 823649, - "author": "lilmisjenn", - "permlink": "re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z", - "category": "food", - "title": "", - "body": "See there is a positive to everything! That does sound like quite the cold compromise though! You should post up some pictures of the cherries! I love cherry picking! Yumm!", - "json_metadata": "{\"tags\":[\"food\"]}", - "created": "2016-09-01T14:18:48", - "last_update": "2016-09-01T14:18:48", - "depth": 4, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-26T08:08:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 172, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160829t070902349z", - "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z", - "root_title": "Do you have a drinking problem??", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 814638, - "author": "itay", - "permlink": "re-witness-gtg", - "category": "witness-category", - "title": "", - "body": "I upvoted You", - "json_metadata": "{}", - "created": "2016-08-31T17:00:21", - "last_update": "2016-08-31T17:00:21", - "depth": 1, - "children": 0, - "net_rshares": 28441749901, - "last_payout": "2016-09-05T05:17:57", - "cashout_time": "1969-12-31T23:59:59", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 13, - "active_votes": [ - { - "voter": "noaommerrr", - "rshares": "28864035808", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "cheetah20", - "rshares": "-100075931", - "percent": "-10000", - "reputation": 0 - }, - { - "voter": "cheetah19", - "rshares": "-123906339", - "percent": "-10000", - "reputation": 0 - }, - { - "voter": "cheetah21", - "rshares": "-99152161", - "percent": "-10000", - "reputation": 0 - }, - { - "voter": "cheetah22", - "rshares": "-99151476", - "percent": "-10000", - "reputation": 0 - } - ], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "witness-gtg", - "url": "/witness-category/@gtg/witness-gtg#@itay/re-witness-gtg", - "root_title": "Witness \"gtg\"", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 808051, - "author": "melissarhiann", - "permlink": "re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z", - "category": "introduceyourself", - "title": "", - "body": "Hi and thanks! I've been attempting to figure out how to add a picture. I'll get it at some point :)", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "created": "2016-08-31T02:16:54", - "last_update": "2016-08-31T02:16:54", - "depth": 2, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-26T08:42:15", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 100, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-melissarhiann-lasting-impression-20160826t083943073z", - "url": "/introduceyourself/@melissarhiann/lasting-impression#@melissarhiann/re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z", - "root_title": "Lasting Impression", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 802893, - "author": "djm34", - "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z", - "category": "steem", - "title": "", - "body": "actually I won't send, however I expect to receive... lol (as you can see wanting to know who is who is a totally legitimate question...)", - "json_metadata": "{\"tags\":[\"steem\"]}", - "created": "2016-08-30T17:06:09", - "last_update": "2016-08-30T17:07:15", - "depth": 3, - "children": 1, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-30T17:29:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 138, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", - "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@djm34/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z", - "root_title": "[Bounty] Community bounty for open source GPU miner.", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 802611, - "author": "complexring", - "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z", - "category": "steem", - "title": "", - "body": "I don't see where @djm34 said that he doesn't trust @picokernel. That is a rather harsh accusation when all this user has done is stated he doesn't believe they are gpu miners. I see nothing else in his comment beyond that.", - "json_metadata": "{\"tags\":[\"steem\"],\"users\":[\"djm34\",\"picokernel\"]}", - "created": "2016-08-30T16:40:03", - "last_update": "2016-08-30T16:40:03", - "depth": 3, - "children": 3, - "net_rshares": 23276351497, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-30T17:29:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 225, - "active_votes": [ - { - "voter": "richman", - "rshares": "10013306404", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "carlidos", - "rshares": "13209570416", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "riv", - "rshares": "53474677", - "percent": "10000", - "reputation": 0 - } - ], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", - "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@complexring/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z", - "root_title": "[Bounty] Community bounty for open source GPU miner.", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 794736, - "author": "emsenn", - "permlink": "re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z", - "category": "introduceyourself", - "title": "", - "body": "Thanks! I'm really enjoying the site so far - beyond the technical aspects, the content here all seems pretty high-quality.", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "created": "2016-08-29T22:45:33", - "last_update": "2016-08-29T22:45:33", - "depth": 2, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-29T22:31:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 123, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t213519226z", - "url": "/introduceyourself/@emsenn/introducing-myself-bitcoin-early-adopter-content-producer-and-designer#@emsenn/re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z", - "root_title": "Introducing Myself: Bitcoin Early Adopter, Content Producer & Designer", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 776630, - "author": "lilmisjenn", - "permlink": "re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z", - "category": "food", - "title": "", - "body": "It took me a long time until I could say I have them from my own garden. That is why I am so appreciative and can make such a silly post over such simplicity! It is a skill I have also worked on mastering over the years. Thanks for your comment and for appreciating my fruit tree! I shall grow it for all that cannot and be extra grateful for its produce. What is your climate like? I also have restrictions on what I can grow around here due to climate. But its a small sacrifice for the serenity.", - "json_metadata": "{\"tags\":[\"food\"]}", - "created": "2016-08-28T11:46:00", - "last_update": "2016-08-28T11:46:00", - "depth": 2, - "children": 2, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-26T08:08:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 498, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-lilmisjenn-do-you-have-a-drinking-problem-20160826t085857261z", - "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z", - "root_title": "Do you have a drinking problem??", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 767624, - "author": "timcliff", - "permlink": "re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", - "category": "mining", - "title": "", - "body": "I've been mining since last Friday and haven't found a block yet, so there are no witness details for my account yet. I wanted to check the \"total_missed\" count, since it sounds like this post could be describing my issue. After talking to peeps on Steemit chat, it sounds like I need to change the keys I'm using. I'm currently using my 'owner private' key for both.", - "json_metadata": "{\"tags\":[\"mining\"]}", - "created": "2016-08-27T15:51:15", - "last_update": "2016-08-27T15:51:15", - "depth": 3, - "children": 1, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-21T13:01:45", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 367, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z", - "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", - "root_title": "Missing rewards while mining - common mistake with keys", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 766749, - "author": "timcliff", - "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", - "category": "mining", - "title": "", - "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", - "json_metadata": "{\"tags\":[\"mining\"]}", - "created": "2016-08-27T14:13:18", - "last_update": "2016-08-27T14:13:18", - "depth": 1, - "children": 3, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-21T13:01:45", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 74, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "missing-rewards-while-mining", - "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-missing-rewards-while-mining-20160827t141319137z", - "root_title": "Missing rewards while mining - common mistake with keys", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 763016, - "author": "eternalmoon", - "permlink": "re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z", - "category": "aboutme", - "title": "", - "body": "I wanted to, I just didn't know how. But someone did link me to a thing. Thanks for the advice!\nP.S. Cats are adorable! :D", - "json_metadata": "{\"tags\":[\"aboutme\"]}", - "created": "2016-08-27T04:15:48", - "last_update": "2016-08-27T04:15:48", - "depth": 2, - "children": 1, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-26T09:23:57", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 122, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-eternalmoon-this-is-my-about-me-entry-enjoy-20160826t094835368z", - "url": "/aboutme/@eternalmoon/this-is-my-about-me-entry-enjoy#@eternalmoon/re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z", - "root_title": "This is my about me entry (: Enjoy~", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 759894, - "author": "ania", - "permlink": "re-gtg-re-ania-hello-world-20160826t211629005z", - "category": "introduceyourself", - "title": "", - "body": "Thank you Gandalf :)", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "created": "2016-08-26T21:16:45", - "last_update": "2016-08-26T21:16:45", - "depth": 2, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-26T21:18:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 20, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-ania-hello-world-20160826t185305711z", - "url": "/introduceyourself/@ania/hello-world#@ania/re-gtg-re-ania-hello-world-20160826t211629005z", - "root_title": "Hello World!", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 758311, - "author": "orcish", - "permlink": "re-gtg-re-orcish-my-introduction-20160826t185829224z", - "category": "zee", - "title": "", - "body": "Thank you :)", - "json_metadata": "{\"tags\":[\"zee\"]}", - "created": "2016-08-26T18:58:27", - "last_update": "2016-08-26T18:58:27", - "depth": 2, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-27T01:07:09", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 12, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-orcish-my-introduction-20160826t080607987z", - "url": "/zee/@orcish/my-introduction#@orcish/re-gtg-re-orcish-my-introduction-20160826t185829224z", - "root_title": "My Introduction", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 757931, - "author": "bumblebrii", - "permlink": "re-gtg-re-bumblebrii-about-me-20160826t182001959z", - "category": "introduceyourself", - "title": "", - "body": "Oh yes of course. I subscribe to a lot of different artists for my coloring pages. One had sent me the link to her blog and kind of just ended up sticking around and read a few blogs. Next thing i know, I signed up haha.", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "created": "2016-08-26T18:20:12", - "last_update": "2016-08-26T18:20:12", - "depth": 2, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-26T08:05:57", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 220, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-bumblebrii-about-me-20160826t094306616z", - "url": "/introduceyourself/@bumblebrii/about-me#@bumblebrii/re-gtg-re-bumblebrii-about-me-20160826t182001959z", - "root_title": "About me", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 754968, - "author": "mynomadicyear", - "permlink": "re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z", - "category": "travel", - "title": "", - "body": "Hi gtg, thanks for stopping by :)", - "json_metadata": "{\"tags\":[\"travel\"]}", - "created": "2016-08-26T13:29:27", - "last_update": "2016-08-26T13:29:27", - "depth": 2, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-26T16:08:51", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 33, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-mynomadicyear-16-months-out-of-a-suitcase-20160826t090811525z", - "url": "/travel/@mynomadicyear/16-months-out-of-a-suitcase#@mynomadicyear/re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z", - "root_title": "16 Months Out Of A Suitcase", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 754013, - "author": "seasoul", - "permlink": "re-gtg-re-seasoul-aboutme-20160826t113727450z", - "category": "introduceyourself", - "title": "", - "body": "thankyou! :) hi there", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "created": "2016-08-26T11:37:33", - "last_update": "2016-08-26T11:37:33", - "depth": 2, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-25T19:26:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 21, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-seasoul-aboutme-20160826t095320794z", - "url": "/introduceyourself/@seasoul/aboutme#@seasoul/re-gtg-re-seasoul-aboutme-20160826t113727450z", - "root_title": "Aboutme", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 751872, - "author": "mammasitta", - "permlink": "re-gtg-witness-gtg-20160826t052714859z", - "category": "witness-category", - "title": "", - "body": "I think you would be a great witness . I appreciate your time helping me 🙌", - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "created": "2016-08-26T05:27:15", - "last_update": "2016-08-26T05:27:15", - "depth": 1, - "children": 0, - "net_rshares": 0, - "last_payout": "2016-09-05T05:17:57", - "cashout_time": "1969-12-31T23:59:59", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 74, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "witness-gtg", - "url": "/witness-category/@gtg/witness-gtg#@mammasitta/re-gtg-witness-gtg-20160826t052714859z", - "root_title": "Witness \"gtg\"", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 693986, - "author": "gtg", - "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", - "category": "mining", - "title": "", - "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", - "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https:\\/\\/steemit.chat\\/channel\\/mining\"]}", - "created": "2016-08-21T13:12:45", - "last_update": "2016-08-21T13:12:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-21T13:01:45", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 140, - "active_votes": [], - "author_reputation": 3920426655270, - "parent_author": "gtg", - "parent_permlink": "missing-rewards-while-mining", - "url": "/mining/@gtg/missing-rewards-while-mining#@gtg/re-gtg-missing-rewards-while-mining-20160821t131242531z", - "root_title": "Missing rewards while mining - common mistake with keys", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 693858, - "author": "gary-smith", - "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", - "category": "mining", - "title": "", - "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", - "json_metadata": "{\"tags\":[\"mining\"]}", - "created": "2016-08-21T12:52:06", - "last_update": "2016-08-21T12:52:06", - "depth": 1, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-21T13:01:45", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 105, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "missing-rewards-while-mining", - "url": "/mining/@gtg/missing-rewards-while-mining#@gary-smith/re-gtg-missing-rewards-while-mining-20160821t125207685z", - "root_title": "Missing rewards while mining - common mistake with keys", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 650924, - "author": "abit", - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z", - "category": "witness-category", - "title": "", - "body": "The private seed nodes still need to connect to the rest of the network to be able to sync and broadcast new blocks. So from an attacker's pov perhaps it's cheaper/easier to attack the public seed nodes directly.", - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "created": "2016-08-18T03:32:12", - "last_update": "2016-08-18T03:32:12", - "depth": 1, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T20:13:00", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 212, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@abit/re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z", - "root_title": "Heavy duty witness node infrastructure", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 640215, - "author": "okay", - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z", - "category": "witness-category", - "title": "", - "body": "`gtg said: Please note that setting up all seed nodes in a single data center won’t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway.`\n\nThat is unless the data center provides a variety of network routes from different providers and your seed nodes are therefore located on different wide area networks even when on the same LAN. This is possible on today's top of the line data centers.\nOf course decentralization is always good so several locations for seed nodes and witnesses is a plus. Good post. \nJust installed a witness node. Consider to [Vote for witness okay](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network)", - "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https:\\/\\/steemit.com\\/witness-category\\/@okay\\/new-witness-okay-a-great-addition-to-the-steem-network\"]}", - "created": "2016-08-17T12:06:03", - "last_update": "2016-08-17T12:06:03", - "depth": 1, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T20:13:00", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 714, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@okay/re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z", - "root_title": "Heavy duty witness node infrastructure", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 637902, - "author": "mammasitta", - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z", - "category": "witness-category", - "title": "", - "body": "I just saw your article now and followed you . In this way I don't miss your new ones .", - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "created": "2016-08-17T07:03:33", - "last_update": "2016-08-17T07:03:33", - "depth": 1, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T20:13:00", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 87, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@mammasitta/re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z", - "root_title": "Heavy duty witness node infrastructure", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 636638, - "author": "dajohns1420", - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z", - "category": "witness-category", - "title": "", - "body": "I wish I was intelligent enough to participate in this conversation.", - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "created": "2016-08-17T04:00:42", - "last_update": "2016-08-17T04:00:42", - "depth": 1, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T20:13:00", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 68, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dajohns1420/re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z", - "root_title": "Heavy duty witness node infrastructure", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635741, - "author": "dr2073", - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z", - "category": "witness-category", - "title": "", - "body": "Really good infrastructure top 19 sure can implement for better protection of their nodes. \nThough Steem network as whole have good protection against DDoS - even if most of 19 will go offline other witnesses will do their job, we just need more active and up-to-date witnesses. \nI personally too want become good witness and currently learning all nuances of secure operation of node.", - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "created": "2016-08-17T02:12:48", - "last_update": "2016-08-17T02:12:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T20:13:00", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 385, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dr2073/re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z", - "root_title": "Heavy duty witness node infrastructure", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 632723, - "author": "wackou", - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z", - "category": "witness-category", - "title": "", - "body": "great post! I completely agree with the analysis of the problem as well as the proposed solution. I actually wanted to implement something similar some time ago, during BitShares times, but then BitShares 2.0 happened and there were a lot more urgent things to do, so this got sidetracked. See [here](http://digitalgaia.io/backbone.html) for the same analysis, where those nodes were called \"backbone nodes\" as they were intended to be shared between witnesses. Witnesses were paid a lot less during that time so I intended to have this as a public service, although that would mean that witnesses had to trust the operator of the backbone. Having your own personal line of defense is obviously much better. I still believe that this is an extremely important issue that should be tackled as soon as possible, and was planning to reboot this proposal as soon as I got some free time (haha good one!). In all seriousness, I believe that this is not too much work, but there will be some features that need to be added to the network code of the steemd client, in order to limit the nodes the client can connect too, as well as ensuring that your backbone nodes do not share the IP of your witness node (was in bts 0.9.x, but not in 2.0 nor steem I believe). This can probably also be implemented with some sort of VPN I guess, but I'm a coder, not a sysadmin, so I can't tell for sure. I even thought (fantasized) about how to make these nodes replace themselves autonomously when attacked via DDoS using messages on the blockchain, in order to simulate a resilient, living organism. Now you see where part of the \"overmind\" idea came from, too :) That is a discussion for a bit later, though...", - "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"http:\\/\\/digitalgaia.io\\/backbone.html\"]}", - "created": "2016-08-16T21:28:48", - "last_update": "2016-08-16T21:28:48", - "depth": 1, - "children": 0, - "net_rshares": 4818972403787, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T20:13:00", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "6.136 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 1694, - "active_votes": [ - { - "voter": "roadscape", - "rshares": "3273182637316", - "percent": "5000", - "reputation": 0 - }, - { - "voter": "steemychicken1", - "rshares": "1446333470877", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "full-steem-ahead", - "rshares": "49042313956", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "johnerfx", - "rshares": "9767505930", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "johnerminer", - "rshares": "848329794", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "gtg", - "rshares": "39798145914", - "percent": "10000", - "reputation": 0 - } - ], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@wackou/re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z", - "root_title": "Heavy duty witness node infrastructure", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 632008, - "author": "jesta", - "permlink": "re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z", - "category": "witness-category", - "title": "", - "body": "That's awesome :)\n\nI love seeing these kinds of advanced setups being theorized, tested and deployed!", - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "created": "2016-08-16T20:31:06", - "last_update": "2016-08-16T20:31:06", - "depth": 3, - "children": 0, - "net_rshares": 19467531428, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T20:13:00", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 101, - "active_votes": [ - { - "voter": "ausbitbank", - "rshares": "19467531428", - "percent": "10000", - "reputation": 0 - } - ], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t201857176z", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z", - "root_title": "Heavy duty witness node infrastructure", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 631654, - "author": "brandonp", - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z", - "category": "witness-category", - "title": "", - "body": "Reading stuff like this makes me realize just how little I know about this whole thing...", - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "created": "2016-08-16T20:01:27", - "last_update": "2016-08-16T20:01:27", - "depth": 1, - "children": 0, - "net_rshares": 43586128402, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T20:13:00", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.024 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 89, - "active_votes": [ - { - "voter": "brandonp", - "rshares": "43533730799", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "doze49", - "rshares": "52397603", - "percent": "10000", - "reputation": 0 - } - ], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@brandonp/re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z", - "root_title": "Heavy duty witness node infrastructure", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 631312, - "author": "thecryptofiend", - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z", - "category": "witness-category", - "title": "", - "body": "Thanks for explaining. You've got my witness vote now.", - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "created": "2016-08-16T19:31:06", - "last_update": "2016-08-16T19:31:06", - "depth": 1, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T20:13:00", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 55, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thecryptofiend/re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z", - "root_title": "Heavy duty witness node infrastructure", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 631058, - "author": "jesta", - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z", - "category": "witness-category", - "title": "", - "body": "I love the idea in this, basically setting up a fortress for your witness node to be more resilient. \n\nOne thing you're right about though is it would be a somewhat expensive venture. At the rate I'm witnessing blocks (maybe 3-4 a day?), it's not feasible to sustain itself financially, but I imagine the top 19 could easily go this route. Maybe even some of the people in the top 30?\n\nI'd be more than willing to help prototype this type of infrastructure. I've been considering how difficult it would be to setup on AWS with a CloudFormation script that spins up seed nodes as ECS Containers, VPCs in every region that all interconnect via private networking, and an EC2 container for your witness node that's not accessible from the internet, but only the seed nodes. \n\nIt really shouldn't be all that hard, and even non-technical witnesses could copy/paste the cloudformation script to get started. Of course with this idea, if AWS is attacked, you're still the mercy of them being able to handle it.", - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "created": "2016-08-16T19:11:06", - "last_update": "2016-08-16T19:11:06", - "depth": 1, - "children": 2, - "net_rshares": 6486910806264, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T20:13:00", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "9.966 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 1005, - "active_votes": [ - { - "voter": "wackou", - "rshares": "6327910390022", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "johnerfx", - "rshares": "9559686655", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "johnerminer", - "rshares": "829049571", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "gtg", - "rshares": "38432804053", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "ausbitbank", - "rshares": "19873104999", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "arcurus", - "rshares": "44706057470", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "mibenkito", - "rshares": "31463628969", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "someguy123", - "rshares": "14083166401", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "xomtux", - "rshares": "52918124", - "percent": "10000", - "reputation": 0 - } - ], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z", - "root_title": "Heavy duty witness node infrastructure", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 631016, - "author": "thebluepanda", - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z", - "category": "witness-category", - "title": "", - "body": "i was checking if you tagged it in #witness-category ;) \nglad to see steemit has a great team of security devs and glad to have upvoted you as witness.", - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "created": "2016-08-16T19:08:06", - "last_update": "2016-08-16T19:08:06", - "depth": 1, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T20:13:00", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 151, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thebluepanda/re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z", - "root_title": "Heavy duty witness node infrastructure", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 630835, - "author": "someguy123", - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z", - "category": "witness-category", - "title": "", - "body": "I can tell you're definitely a well-invested witness. You have my vote. \n\nThese details could help to improve the general quality of witnesses on the network", - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "created": "2016-08-16T18:52:48", - "last_update": "2016-08-16T18:52:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T20:13:00", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 157, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@someguy123/re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z", - "root_title": "Heavy duty witness node infrastructure", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 630198, - "author": "vishal1", - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z", - "category": "witness-category", - "title": "", - "body": "THis is something. @gtg", - "json_metadata": "{\"tags\":[\"witness-category\"],\"users\":[\"gtg\"]}", - "created": "2016-08-16T18:12:21", - "last_update": "2016-08-16T18:12:21", - "depth": 1, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T20:13:00", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 23, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@vishal1/re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z", - "root_title": "Heavy duty witness node infrastructure", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 613314, - "author": "dennygalindo", - "permlink": "re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z", - "category": "steemit-ideas", - "title": "", - "body": "Gamification is what makes this so addictive to me. I get like 2c for finding a good post but it's fun to try to guess which will be good and time it. I can't put my phone down. My data is through the roof, I keep getting distracted and losing things. Curation rewards are key! I think it would help drive adoption if newbies had a better shot at curation rewards. I know they don't want a lot of bots here but maybe you could give newbies super votes ( only when at 100 percent) that lets them earn rewards at least once a day. (As @dantheman said [here](https://steemit.com/steem/@dantheman/curation-rewards-and-voting-incentive) the optimal minnow strategy is not to vote).", - "json_metadata": "{\"tags\":[\"steemit-ideas\"],\"users\":[\"dantheman\"],\"links\":[\"https:\\/\\/steemit.com\\/steem\\/@dantheman\\/curation-rewards-and-voting-incentive\"]}", - "created": "2016-08-15T14:15:42", - "last_update": "2016-08-15T14:16:39", - "depth": 2, - "children": 0, - "net_rshares": 914681294136, - "last_payout": "2016-09-15T07:07:00", - "cashout_time": "1969-12-31T23:59:59", - "total_payout_value": "0.601 HBD", - "curator_payout_value": "0.198 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 677, - "active_votes": [ - { - "voter": "liondani", - "rshares": "910501669843", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "dennygalindo", - "rshares": "4179624293", - "percent": "10000", - "reputation": 0 - } - ], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t123329115z", - "url": "/steemit-ideas/@liondani/don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page#@dennygalindo/re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z", - "root_title": "DON'T REMOVE Curation Rewards! Just stop them when the post reach the trending page !!!", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 465280, - "author": "iaco", - "permlink": "re-gtg-witness-gtg-20160805t161219379z", - "category": "witness-category", - "title": "", - "body": "As the computer world beyond user interfaces is a magical realm to me, the only way I can get my brain to completely understand it is to just let go and tell my self it's all made of unicorns and runes being cast to make the magic happen :) I thank you for your work:)", - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "created": "2016-08-05T16:12:21", - "last_update": "2016-08-05T16:12:21", - "depth": 1, - "children": 1, - "net_rshares": 1374704925, - "last_payout": "2016-09-05T05:17:57", - "cashout_time": "1969-12-31T23:59:59", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 269, - "active_votes": [ - { - "voter": "earnest", - "rshares": "1374704925", - "percent": "10000", - "reputation": 0 - } - ], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "witness-gtg", - "url": "/witness-category/@gtg/witness-gtg#@iaco/re-gtg-witness-gtg-20160805t161219379z", - "root_title": "Witness \"gtg\"", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 464773, - "author": "cire81", - "permlink": "re-gtg-witness-gtg-20160805t154528701z", - "category": "witness-category", - "title": "", - "body": "Thank you for spending your time to make steemit secure. Thanks to people like you we have a much safer environment. Were you paid for your effort on steem?", - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "created": "2016-08-05T15:45:27", - "last_update": "2016-08-05T15:45:27", - "depth": 1, - "children": 2, - "net_rshares": 780445155353, - "last_payout": "2016-09-05T05:17:57", - "cashout_time": "1969-12-31T23:59:59", - "total_payout_value": "0.650 HBD", - "curator_payout_value": "0.216 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 156, - "active_votes": [ - { - "voter": "steemship", - "rshares": "769829319629", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "johnerfx", - "rshares": "9767505930", - "percent": "10000", - "reputation": 0 - }, - { - "voter": "johnerminer", - "rshares": "848329794", - "percent": "10000", - "reputation": 0 - } - ], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "witness-gtg", - "url": "/witness-category/@gtg/witness-gtg#@cire81/re-gtg-witness-gtg-20160805t154528701z", - "root_title": "Witness \"gtg\"", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 427686, - "author": "mefisto", - "permlink": "re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z", - "category": "polish", - "title": "", - "body": "Kryterium wyboru delegata to osobna sprawa. Co delegat powinien potrafić? Co robić? Czy powinien poniekąd służyć swoim wyborcom?\nJedno zdaje się być pewne - **powinien być aktywnym członkiem społeczności steemit.** \nJestem przekonany, że jesteśmy w stanie wybrać / wskazać kilka osób, które mogłyby zbierać glosy polskiej społeczności. \n\nJeśli się nie mylę, głosów będzie więcej - jeśli system głosowania na dodatkowych kandydatów będzie prostszy dla przeciętnego pożeracza blogów... np. pojawi się ładny graficzny klient pod windozę.", - "json_metadata": "{\"tags\":[\"polish\"]}", - "created": "2016-08-03T12:56:33", - "last_update": "2016-08-03T12:58:57", - "depth": 2, - "children": 0, - "net_rshares": 0, - "last_payout": "2016-09-03T03:24:06", - "cashout_time": "1969-12-31T23:59:59", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 534, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t123936611z", - "url": "/polish/@mefisto/pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness#@mefisto/re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z", - "root_title": "[PL] Czy polska społeczność powinna mieć swojego delegata (witness) ?", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 38463, - "author": "edu-lopov", - "permlink": "re-gtg-hello-world-20160704t182251522z", - "category": "introduceyourself", - "title": "", - "body": "Welcome to Steemit Gandalf!", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "created": "2016-07-04T18:22:51", - "last_update": "2016-07-04T18:22:51", - "depth": 1, - "children": 0, - "net_rshares": 0, - "last_payout": "2016-08-13T21:04:45", - "cashout_time": "1969-12-31T23:59:59", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 27, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "hello-world", - "url": "/introduceyourself/@gtg/hello-world#@edu-lopov/re-gtg-hello-world-20160704t182251522z", - "root_title": "Hello, World!", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 37179, - "author": "amartinezque", - "permlink": "re-gtg-hello-world-20160703t224527020z", - "category": "introduceyourself", - "title": "", - "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "created": "2016-07-03T22:45:27", - "last_update": "2016-07-03T22:45:27", - "depth": 1, - "children": 0, - "net_rshares": 0, - "last_payout": "2016-08-13T21:04:45", - "cashout_time": "1969-12-31T23:59:59", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 84, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "hello-world", - "url": "/introduceyourself/@gtg/hello-world#@amartinezque/re-gtg-hello-world-20160703t224527020z", - "root_title": "Hello, World!", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 36953, - "author": "trogdor", - "permlink": "re-gtg-hello-world-20160703t175141501z", - "category": "introduceyourself", - "title": "", - "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "created": "2016-07-03T17:51:48", - "last_update": "2016-07-03T17:51:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "last_payout": "2016-08-13T21:04:45", - "cashout_time": "1969-12-31T23:59:59", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 55, - "active_votes": [], - "author_reputation": 0, - "parent_author": "gtg", - "parent_permlink": "hello-world", - "url": "/introduceyourself/@gtg/hello-world#@trogdor/re-gtg-hello-world-20160703t175141501z", - "root_title": "Hello, World!", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 +{ + "iterable_item_removed": { + "root[0]": { + "active_votes": [], + "author": "chitty", + "author_reputation": 0, + "beneficiaries": [], + "body": "But this is not an issue of Top Witnesses vs Backup witnesses. This is an issue that involves all members of the Steemit. If top witnesses keep receiving 1,370 Steems per day, their voting influence will keep growing while the rest of the users see their voting power diminished.", + "body_length": 279, + "cashout_time": "2016-09-16T15:31:24", + "category": "steemit", + "children": 0, + "created": "2016-09-15T18:52:09", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T18:52:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t184349883z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z", + "post_id": 960531, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A balanced voting system is impossible with current witness\u2019s payouts.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z" + }, + "root[10]": { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "10013306404", + "voter": "richman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13209570416", + "voter": "carlidos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53474677", + "voter": "riv" + } + ], + "author": "complexring", + "author_reputation": 0, + "beneficiaries": [], + "body": "I don't see where @djm34 said that he doesn't trust @picokernel. That is a rather harsh accusation when all this user has done is stated he doesn't believe they are gpu miners. I see nothing else in his comment beyond that.", + "body_length": 225, + "cashout_time": "2016-09-30T17:29:27", + "category": "steem", + "children": 3, + "created": "2016-08-30T16:40:03", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steem\"],\"users\":[\"djm34\",\"picokernel\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-30T16:40:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 23276351497, + "parent_author": "gtg", + "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z", + "post_id": 802611, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[Bounty] Community bounty for open source GPU miner.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@complexring/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z" + }, + "root[11]": { + "active_votes": [], + "author": "emsenn", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thanks! I'm really enjoying the site so far - beyond the technical aspects, the content here all seems pretty high-quality.", + "body_length": 123, + "cashout_time": "2016-09-29T22:31:27", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-29T22:45:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-29T22:45:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t213519226z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z", + "post_id": 794736, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Introducing Myself: Bitcoin Early Adopter, Content Producer & Designer", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@emsenn/introducing-myself-bitcoin-early-adopter-content-producer-and-designer#@emsenn/re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z" + }, + "root[12]": { + "active_votes": [], + "author": "lilmisjenn", + "author_reputation": 0, + "beneficiaries": [], + "body": "It took me a long time until I could say I have them from my own garden. That is why I am so appreciative and can make such a silly post over such simplicity! It is a skill I have also worked on mastering over the years. Thanks for your comment and for appreciating my fruit tree! I shall grow it for all that cannot and be extra grateful for its produce. What is your climate like? I also have restrictions on what I can grow around here due to climate. But its a small sacrifice for the serenity.", + "body_length": 498, + "cashout_time": "2016-09-26T08:08:21", + "category": "food", + "children": 2, + "created": "2016-08-28T11:46:00", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-28T11:46:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-lilmisjenn-do-you-have-a-drinking-problem-20160826t085857261z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z", + "post_id": 776630, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Do you have a drinking problem??", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z" + }, + "root[13]": { + "active_votes": [], + "author": "timcliff", + "author_reputation": 0, + "beneficiaries": [], + "body": "I've been mining since last Friday and haven't found a block yet, so there are no witness details for my account yet. I wanted to check the \"total_missed\" count, since it sounds like this post could be describing my issue. After talking to peeps on Steemit chat, it sounds like I need to change the keys I'm using. I'm currently using my 'owner private' key for both.", + "body_length": 367, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 1, + "created": "2016-08-27T15:51:15", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T15:51:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", + "post_id": 767624, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z" + }, + "root[14]": { + "active_votes": [], + "author": "timcliff", + "author_reputation": 0, + "beneficiaries": [], + "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", + "body_length": 74, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 3, + "created": "2016-08-27T14:13:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T14:13:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", + "post_id": 766749, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-missing-rewards-while-mining-20160827t141319137z" + }, + "root[15]": { + "active_votes": [], + "author": "eternalmoon", + "author_reputation": 0, + "beneficiaries": [], + "body": "I wanted to, I just didn't know how. But someone did link me to a thing. Thanks for the advice!\nP.S. Cats are adorable! :D", + "body_length": 122, + "cashout_time": "2016-09-26T09:23:57", + "category": "aboutme", + "children": 1, + "created": "2016-08-27T04:15:48", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"aboutme\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T04:15:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-eternalmoon-this-is-my-about-me-entry-enjoy-20160826t094835368z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z", + "post_id": 763016, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "This is my about me entry (: Enjoy~", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/aboutme/@eternalmoon/this-is-my-about-me-entry-enjoy#@eternalmoon/re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z" + }, + "root[16]": { + "active_votes": [], + "author": "ania", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you Gandalf :)", + "body_length": 20, + "cashout_time": "2016-09-26T21:18:18", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-26T21:16:45", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T21:16:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-ania-hello-world-20160826t185305711z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-ania-hello-world-20160826t211629005z", + "post_id": 759894, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@ania/hello-world#@ania/re-gtg-re-ania-hello-world-20160826t211629005z" + }, + "root[17]": { + "active_votes": [], + "author": "orcish", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you :)", + "body_length": 12, + "cashout_time": "2016-09-27T01:07:09", + "category": "zee", + "children": 0, + "created": "2016-08-26T18:58:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"zee\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T18:58:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-orcish-my-introduction-20160826t080607987z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-orcish-my-introduction-20160826t185829224z", + "post_id": 758311, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "My Introduction", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/zee/@orcish/my-introduction#@orcish/re-gtg-re-orcish-my-introduction-20160826t185829224z" + }, + "root[18]": { + "active_votes": [], + "author": "bumblebrii", + "author_reputation": 0, + "beneficiaries": [], + "body": "Oh yes of course. I subscribe to a lot of different artists for my coloring pages. One had sent me the link to her blog and kind of just ended up sticking around and read a few blogs. Next thing i know, I signed up haha.", + "body_length": 220, + "cashout_time": "2016-09-26T08:05:57", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-26T18:20:12", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T18:20:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-bumblebrii-about-me-20160826t094306616z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-bumblebrii-about-me-20160826t182001959z", + "post_id": 757931, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "About me", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@bumblebrii/about-me#@bumblebrii/re-gtg-re-bumblebrii-about-me-20160826t182001959z" + }, + "root[19]": { + "active_votes": [], + "author": "mynomadicyear", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hi gtg, thanks for stopping by :)", + "body_length": 33, + "cashout_time": "2016-09-26T16:08:51", + "category": "travel", + "children": 0, + "created": "2016-08-26T13:29:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T13:29:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-mynomadicyear-16-months-out-of-a-suitcase-20160826t090811525z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z", + "post_id": 754968, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "16 Months Out Of A Suitcase", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/travel/@mynomadicyear/16-months-out-of-a-suitcase#@mynomadicyear/re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z" + }, + "root[1]": { + "active_votes": [], + "author": "woman-onthe-wing", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thanks very much!", + "body_length": 17, + "cashout_time": "2016-09-16T01:44:18", + "category": "introducemyself", + "children": 0, + "created": "2016-09-15T15:04:09", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introducemyself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T15:04:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t071444722z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z", + "post_id": 958542, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Introduction post - Gold at the end of the rainbow... On the Emerald Isle", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introducemyself/@woman-onthe-wing/introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle#@woman-onthe-wing/re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z" + }, + "root[20]": { + "active_votes": [], + "author": "seasoul", + "author_reputation": 0, + "beneficiaries": [], + "body": "thankyou! :) hi there", + "body_length": 21, + "cashout_time": "2016-09-25T19:26:21", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-26T11:37:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T11:37:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-seasoul-aboutme-20160826t095320794z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-seasoul-aboutme-20160826t113727450z", + "post_id": 754013, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Aboutme", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@seasoul/aboutme#@seasoul/re-gtg-re-seasoul-aboutme-20160826t113727450z" + }, + "root[21]": { + "active_votes": [], + "author": "mammasitta", + "author_reputation": 0, + "beneficiaries": [], + "body": "I think you would be a great witness . I appreciate your time helping me \ud83d\ude4c", + "body_length": 74, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 0, + "created": "2016-08-26T05:27:15", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-26T05:27:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-witness-gtg-20160826t052714859z", + "post_id": 751872, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/witness-gtg#@mammasitta/re-gtg-witness-gtg-20160826t052714859z" + }, + "root[22]": { + "active_votes": [], + "author": "gtg", + "author_reputation": 3920426655270, + "beneficiaries": [], + "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", + "body_length": 140, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 0, + "created": "2016-08-21T13:12:45", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https:\\/\\/steemit.chat\\/channel\\/mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-21T13:12:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", + "post_id": 693986, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@gtg/re-gtg-missing-rewards-while-mining-20160821t131242531z" + }, + "root[23]": { + "active_votes": [], + "author": "gary-smith", + "author_reputation": 0, + "beneficiaries": [], + "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", + "body_length": 105, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 0, + "created": "2016-08-21T12:52:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-21T12:52:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", + "post_id": 693858, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@gary-smith/re-gtg-missing-rewards-while-mining-20160821t125207685z" + }, + "root[24]": { + "active_votes": [], + "author": "abit", + "author_reputation": 0, + "beneficiaries": [], + "body": "The private seed nodes still need to connect to the rest of the network to be able to sync and broadcast new blocks. So from an attacker's pov perhaps it's cheaper/easier to attack the public seed nodes directly.", + "body_length": 212, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-18T03:32:12", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T03:32:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z", + "post_id": 650924, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@abit/re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z" + }, + "root[25]": { + "active_votes": [], + "author": "okay", + "author_reputation": 0, + "beneficiaries": [], + "body": "`gtg said: Please note that setting up all seed nodes in a single data center won\u2019t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway.`\n\nThat is unless the data center provides a variety of network routes from different providers and your seed nodes are therefore located on different wide area networks even when on the same LAN. This is possible on today's top of the line data centers.\nOf course decentralization is always good so several locations for seed nodes and witnesses is a plus. Good post. \nJust installed a witness node. Consider to [Vote for witness okay](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network)", + "body_length": 714, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T12:06:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https:\\/\\/steemit.com\\/witness-category\\/@okay\\/new-witness-okay-a-great-addition-to-the-steem-network\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T12:06:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z", + "post_id": 640215, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@okay/re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z" + }, + "root[26]": { + "active_votes": [], + "author": "mammasitta", + "author_reputation": 0, + "beneficiaries": [], + "body": "I just saw your article now and followed you . In this way I don't miss your new ones .", + "body_length": 87, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T07:03:33", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T07:03:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z", + "post_id": 637902, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@mammasitta/re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z" + }, + "root[27]": { + "active_votes": [], + "author": "dajohns1420", + "author_reputation": 0, + "beneficiaries": [], + "body": "I wish I was intelligent enough to participate in this conversation.", + "body_length": 68, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T04:00:42", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T04:00:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z", + "post_id": 636638, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dajohns1420/re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z" + }, + "root[28]": { + "active_votes": [], + "author": "dr2073", + "author_reputation": 0, + "beneficiaries": [], + "body": "Really good infrastructure top 19 sure can implement for better protection of their nodes. \nThough Steem network as whole have good protection against DDoS - even if most of 19 will go offline other witnesses will do their job, we just need more active and up-to-date witnesses. \nI personally too want become good witness and currently learning all nuances of secure operation of node.", + "body_length": 385, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T02:12:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T02:12:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z", + "post_id": 635741, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dr2073/re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z" + }, + "root[29]": { + "active_votes": [ + { + "percent": "5000", + "reputation": 0, + "rshares": "3273182637316", + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1446333470877", + "voter": "steemychicken1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49042313956", + "voter": "full-steem-ahead" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9767505930", + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "848329794", + "voter": "johnerminer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39798145914", + "voter": "gtg" + } + ], + "author": "wackou", + "author_reputation": 0, + "beneficiaries": [], + "body": "great post! I completely agree with the analysis of the problem as well as the proposed solution. I actually wanted to implement something similar some time ago, during BitShares times, but then BitShares 2.0 happened and there were a lot more urgent things to do, so this got sidetracked. See [here](http://digitalgaia.io/backbone.html) for the same analysis, where those nodes were called \"backbone nodes\" as they were intended to be shared between witnesses. Witnesses were paid a lot less during that time so I intended to have this as a public service, although that would mean that witnesses had to trust the operator of the backbone. Having your own personal line of defense is obviously much better. I still believe that this is an extremely important issue that should be tackled as soon as possible, and was planning to reboot this proposal as soon as I got some free time (haha good one!). In all seriousness, I believe that this is not too much work, but there will be some features that need to be added to the network code of the steemd client, in order to limit the nodes the client can connect too, as well as ensuring that your backbone nodes do not share the IP of your witness node (was in bts 0.9.x, but not in 2.0 nor steem I believe). This can probably also be implemented with some sort of VPN I guess, but I'm a coder, not a sysadmin, so I can't tell for sure. I even thought (fantasized) about how to make these nodes replace themselves autonomously when attacked via DDoS using messages on the blockchain, in order to simulate a resilient, living organism. Now you see where part of the \"overmind\" idea came from, too :) That is a discussion for a bit later, though...", + "body_length": 1694, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T21:28:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"http:\\/\\/digitalgaia.io\\/backbone.html\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T21:28:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 4818972403787, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "6.136 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z", + "post_id": 632723, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@wackou/re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z" + }, + "root[2]": { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "1000247174970", + "voter": "liondani" + } + ], + "author": "chitty", + "author_reputation": 0, + "beneficiaries": [], + "body": "This is true, but you have to agree that the gap between top 19 witnesses and the rest of the users is getting bigger... nobody buys 1,370 steem per day, every day!... its impossible to match. The result of this is richer witnesses with more influence and \"normal\" users with very little to no influence at all.", + "body_length": 311, + "cashout_time": "2016-09-16T15:31:24", + "category": "steemit", + "children": 2, + "created": "2016-09-15T14:21:09", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T14:21:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1000247174970, + "parent_author": "gtg", + "parent_permlink": "re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t141551322z", + "pending_payout_value": "0.275 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z", + "post_id": 958150, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A balanced voting system is impossible with current witness\u2019s payouts.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z" + }, + "root[30]": { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "19467531428", + "voter": "ausbitbank" + } + ], + "author": "jesta", + "author_reputation": 0, + "beneficiaries": [], + "body": "That's awesome :)\n\nI love seeing these kinds of advanced setups being theorized, tested and deployed!", + "body_length": 101, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T20:31:06", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T20:31:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 19467531428, + "parent_author": "gtg", + "parent_permlink": "re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t201857176z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z", + "post_id": 632008, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z" + }, + "root[31]": { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "43533730799", + "voter": "brandonp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52397603", + "voter": "doze49" + } + ], + "author": "brandonp", + "author_reputation": 0, + "beneficiaries": [], + "body": "Reading stuff like this makes me realize just how little I know about this whole thing...", + "body_length": 89, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T20:01:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T20:01:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 43586128402, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.024 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z", + "post_id": 631654, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@brandonp/re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z" + }, + "root[32]": { + "active_votes": [], + "author": "thecryptofiend", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thanks for explaining. You've got my witness vote now.", + "body_length": 55, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T19:31:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:31:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z", + "post_id": 631312, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thecryptofiend/re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z" + }, + "root[33]": { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "6327910390022", + "voter": "wackou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9559686655", + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "829049571", + "voter": "johnerminer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "38432804053", + "voter": "gtg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19873104999", + "voter": "ausbitbank" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44706057470", + "voter": "arcurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31463628969", + "voter": "mibenkito" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14083166401", + "voter": "someguy123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52918124", + "voter": "xomtux" + } + ], + "author": "jesta", + "author_reputation": 0, + "beneficiaries": [], + "body": "I love the idea in this, basically setting up a fortress for your witness node to be more resilient. \n\nOne thing you're right about though is it would be a somewhat expensive venture. At the rate I'm witnessing blocks (maybe 3-4 a day?), it's not feasible to sustain itself financially, but I imagine the top 19 could easily go this route. Maybe even some of the people in the top 30?\n\nI'd be more than willing to help prototype this type of infrastructure. I've been considering how difficult it would be to setup on AWS with a CloudFormation script that spins up seed nodes as ECS Containers, VPCs in every region that all interconnect via private networking, and an EC2 container for your witness node that's not accessible from the internet, but only the seed nodes. \n\nIt really shouldn't be all that hard, and even non-technical witnesses could copy/paste the cloudformation script to get started. Of course with this idea, if AWS is attacked, you're still the mercy of them being able to handle it.", + "body_length": 1005, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 2, + "created": "2016-08-16T19:11:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:11:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 6486910806264, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "9.966 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z", + "post_id": 631058, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z" + }, + "root[34]": { + "active_votes": [], + "author": "thebluepanda", + "author_reputation": 0, + "beneficiaries": [], + "body": "i was checking if you tagged it in #witness-category ;) \nglad to see steemit has a great team of security devs and glad to have upvoted you as witness.", + "body_length": 151, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T19:08:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:08:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z", + "post_id": 631016, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thebluepanda/re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z" + }, + "root[35]": { + "active_votes": [], + "author": "someguy123", + "author_reputation": 0, + "beneficiaries": [], + "body": "I can tell you're definitely a well-invested witness. You have my vote. \n\nThese details could help to improve the general quality of witnesses on the network", + "body_length": 157, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T18:52:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T18:52:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z", + "post_id": 630835, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@someguy123/re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z" + }, + "root[36]": { + "active_votes": [], + "author": "vishal1", + "author_reputation": 0, + "beneficiaries": [], + "body": "THis is something. @gtg", + "body_length": 23, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T18:12:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"],\"users\":[\"gtg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T18:12:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z", + "post_id": 630198, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@vishal1/re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z" + }, + "root[37]": { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "910501669843", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4179624293", + "voter": "dennygalindo" + } + ], + "author": "dennygalindo", + "author_reputation": 0, + "beneficiaries": [], + "body": "Gamification is what makes this so addictive to me. I get like 2c for finding a good post but it's fun to try to guess which will be good and time it. I can't put my phone down. My data is through the roof, I keep getting distracted and losing things. Curation rewards are key! I think it would help drive adoption if newbies had a better shot at curation rewards. I know they don't want a lot of bots here but maybe you could give newbies super votes ( only when at 100 percent) that lets them earn rewards at least once a day. (As @dantheman said [here](https://steemit.com/steem/@dantheman/curation-rewards-and-voting-incentive) the optimal minnow strategy is not to vote).", + "body_length": 677, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit-ideas", + "children": 0, + "created": "2016-08-15T14:15:42", + "curator_payout_value": "0.198 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit-ideas\"],\"users\":[\"dantheman\"],\"links\":[\"https:\\/\\/steemit.com\\/steem\\/@dantheman\\/curation-rewards-and-voting-incentive\"]}", + "last_payout": "2016-09-15T07:07:00", + "last_update": "2016-08-15T14:16:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 914681294136, + "parent_author": "gtg", + "parent_permlink": "re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t123329115z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z", + "post_id": 613314, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "DON'T REMOVE Curation Rewards! Just stop them when the post reach the trending page !!!", + "title": "", + "total_payout_value": "0.601 HBD", + "url": "/steemit-ideas/@liondani/don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page#@dennygalindo/re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z" + }, + "root[38]": { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "1374704925", + "voter": "earnest" + } + ], + "author": "iaco", + "author_reputation": 0, + "beneficiaries": [], + "body": "As the computer world beyond user interfaces is a magical realm to me, the only way I can get my brain to completely understand it is to just let go and tell my self it's all made of unicorns and runes being cast to make the magic happen :) I thank you for your work:)", + "body_length": 269, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 1, + "created": "2016-08-05T16:12:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-05T16:12:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1374704925, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-witness-gtg-20160805t161219379z", + "post_id": 465280, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/witness-gtg#@iaco/re-gtg-witness-gtg-20160805t161219379z" + }, + "root[39]": { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "769829319629", + "voter": "steemship" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9767505930", + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "848329794", + "voter": "johnerminer" + } + ], + "author": "cire81", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you for spending your time to make steemit secure. Thanks to people like you we have a much safer environment. Were you paid for your effort on steem?", + "body_length": 156, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 2, + "created": "2016-08-05T15:45:27", + "curator_payout_value": "0.216 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-05T15:45:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 780445155353, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-witness-gtg-20160805t154528701z", + "post_id": 464773, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.650 HBD", + "url": "/witness-category/@gtg/witness-gtg#@cire81/re-gtg-witness-gtg-20160805t154528701z" + }, + "root[3]": { + "active_votes": [], + "author": "arcange", + "author_reputation": 0, + "beneficiaries": [], + "body": "Lol. You're welcome!\nBut I suspect you're working hard to hit the top 20 chart with your two comments :p", + "body_length": 104, + "cashout_time": "2016-09-16T13:44:39", + "category": "stats", + "children": 1, + "created": "2016-09-15T13:24:15", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T13:24:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", + "post_id": 957646, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z" + }, + "root[40]": { + "active_votes": [], + "author": "mefisto", + "author_reputation": 0, + "beneficiaries": [], + "body": "Kryterium wyboru delegata to osobna sprawa. Co delegat powinien potrafi\u0107? Co robi\u0107? Czy powinien poniek\u0105d s\u0142u\u017cy\u0107 swoim wyborcom?\nJedno zdaje si\u0119 by\u0107 pewne - **powinien by\u0107 aktywnym cz\u0142onkiem spo\u0142eczno\u015bci steemit.** \nJestem przekonany, \u017ce jeste\u015bmy w stanie wybra\u0107 / wskaza\u0107 kilka os\u00f3b, kt\u00f3re mog\u0142yby zbiera\u0107 glosy polskiej spo\u0142eczno\u015bci. \n\nJe\u015bli si\u0119 nie myl\u0119, g\u0142os\u00f3w b\u0119dzie wi\u0119cej - je\u015bli system g\u0142osowania na dodatkowych kandydat\u00f3w b\u0119dzie prostszy dla przeci\u0119tnego po\u017ceracza blog\u00f3w... np. pojawi si\u0119 \u0142adny graficzny klient pod windoz\u0119.", + "body_length": 534, + "cashout_time": "1969-12-31T23:59:59", + "category": "polish", + "children": 0, + "created": "2016-08-03T12:56:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"polish\"]}", + "last_payout": "2016-09-03T03:24:06", + "last_update": "2016-08-03T12:58:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t123936611z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z", + "post_id": 427686, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[PL] Czy polska spo\u0142eczno\u015b\u0107 powinna mie\u0107 swojego delegata (witness) ?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/polish/@mefisto/pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness#@mefisto/re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z" + }, + "root[41]": { + "active_votes": [], + "author": "edu-lopov", + "author_reputation": 0, + "beneficiaries": [], + "body": "Welcome to Steemit Gandalf!", + "body_length": 27, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-04T18:22:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-04T18:22:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160704t182251522z", + "post_id": 38463, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@edu-lopov/re-gtg-hello-world-20160704t182251522z" + }, + "root[42]": { + "active_votes": [], + "author": "amartinezque", + "author_reputation": 0, + "beneficiaries": [], + "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", + "body_length": 84, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-03T22:45:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T22:45:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160703t224527020z", + "post_id": 37179, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@amartinezque/re-gtg-hello-world-20160703t224527020z" + }, + "root[43]": { + "active_votes": [], + "author": "trogdor", + "author_reputation": 0, + "beneficiaries": [], + "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", + "body_length": 55, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-03T17:51:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T17:51:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160703t175141501z", + "post_id": 36953, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@trogdor/re-gtg-hello-world-20160703t175141501z" + }, + "root[4]": { + "active_votes": [], + "author": "arcange", + "author_reputation": 0, + "beneficiaries": [], + "body": "That's the purpose of using FREETEXT() instead of CONTAINS()", + "body_length": 60, + "cashout_time": "2016-09-16T13:44:39", + "category": "stats", + "children": 3, + "created": "2016-09-15T13:06:18", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T13:06:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", + "post_id": 957511, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z" + }, + "root[5]": { + "active_votes": [], + "author": "gamer00", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you!", + "body_length": 10, + "cashout_time": "2016-09-16T03:45:30", + "category": "introducemyself", + "children": 0, + "created": "2016-09-15T07:54:42", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introducemyself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T07:54:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t071902704z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z", + "post_id": 956069, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hi! I'm Jaro and this is my introductory verification post!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introducemyself/@gamer00/hi-i-m-jaro-and-this-is-my-introductory-verification-post#@gamer00/re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z" + }, + "root[6]": { + "active_votes": [], + "author": "lilmisjenn", + "author_reputation": 0, + "beneficiaries": [], + "body": "See there is a positive to everything! That does sound like quite the cold compromise though! You should post up some pictures of the cherries! I love cherry picking! Yumm!", + "body_length": 172, + "cashout_time": "2016-09-26T08:08:21", + "category": "food", + "children": 0, + "created": "2016-09-01T14:18:48", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-01T14:18:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160829t070902349z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z", + "post_id": 823649, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Do you have a drinking problem??", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z" + }, + "root[7]": { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "28864035808", + "voter": "noaommerrr" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-100075931", + "voter": "cheetah20" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-123906339", + "voter": "cheetah19" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-99152161", + "voter": "cheetah21" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-99151476", + "voter": "cheetah22" + } + ], + "author": "itay", + "author_reputation": 0, + "beneficiaries": [], + "body": "I upvoted You", + "body_length": 13, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 0, + "created": "2016-08-31T17:00:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-31T17:00:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 28441749901, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-witness-gtg", + "post_id": 814638, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/witness-gtg#@itay/re-witness-gtg" + }, + "root[8]": { + "active_votes": [], + "author": "melissarhiann", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hi and thanks! I've been attempting to figure out how to add a picture. I'll get it at some point :)", + "body_length": 100, + "cashout_time": "2016-09-26T08:42:15", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-31T02:16:54", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-31T02:16:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-melissarhiann-lasting-impression-20160826t083943073z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z", + "post_id": 808051, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Lasting Impression", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@melissarhiann/lasting-impression#@melissarhiann/re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z" + }, + "root[9]": { + "active_votes": [], + "author": "djm34", + "author_reputation": 0, + "beneficiaries": [], + "body": "actually I won't send, however I expect to receive... lol (as you can see wanting to know who is who is a totally legitimate question...)", + "body_length": 138, + "cashout_time": "2016-09-30T17:29:27", + "category": "steem", + "children": 1, + "created": "2016-08-30T17:06:09", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-30T17:07:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z", + "post_id": 802893, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[Bounty] Community bounty for open source GPU miner.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@djm34/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z" + } } -] \ No newline at end of file +} diff --git a/hivemind/tavern/condenser_api_patterns/get_state.pat.json b/hivemind/tavern/condenser_api_patterns/get_state.pat.json index a298d1a1..cd13e02c 100644 --- a/hivemind/tavern/condenser_api_patterns/get_state.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_state.pat.json @@ -1,679 +1,231 @@ { "accounts": { "steemit": { - "blog": [ - "steemit/firstpost" - ], - "comments": [], - "created": "2016-03-24 17:00:21", - "feed": [], - "json_metadata": "{\"profile\":{\"name\":null,\"about\":null,\"website\":null,\"location\":null,\"cover_image\":\"\",\"profile_image\":\"\"}}", + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "4778859.891 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:21", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838821 + }, + "guest_bloggers": [], + "id": 28, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-15T13:56:18", + "last_owner_update": "2016-07-15T13:56:18", + "last_post": "2016-03-30T18:30:18", + "last_root_post": "2016-03-30T18:30:18", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + "mined": true, "name": "steemit", - "net_vesting_shares": 0.0, - "post_count": 0, - "recent_replies": [], - "reputation": 0, - "transfer_history": [] - } - }, - "content": { - "steemit/firstpost": { - "active_votes": [ - { - "percent": "100", - "reputation": 0, - "rshares": "375241", - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5100", - "voter": "steemit78" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1259167", - "voter": "anonymous" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "318519", - "voter": "hello" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "153384", - "voter": "world" - }, - { - "percent": "-100", - "reputation": 0, - "rshares": "-936400", - "voter": "ned" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59412", - "voter": "fufubar1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14997", - "voter": "anonymous1" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "1441", - "voter": "red" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "551390835500", - "voter": "liondani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "82748", - "voter": "roadscape" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "10772", - "voter": "xeroc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "498863058", - "voter": "joelinux" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "9590417", - "voter": "piranhax" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "percent": "3600", - "reputation": 0, - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "425903066", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "422984262", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "47179379651", - "voter": "tosch" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7831667988", - "voter": "klye" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1019950749", - "voter": "coar" - }, - { - "percent": "1509", - "reputation": 0, - "rshares": "1746058458", - "voter": "murh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "hien-tran" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40624969", - "voter": "ben99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "917398502", - "voter": "decrypt" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1037079223", - "voter": "condra" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "233032838", - "voter": "jearson" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "240809500", - "voter": "tritium" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "226074637", - "voter": "artjedi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "931542394", - "voter": "anduweb" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2292983350", - "voter": "inertia" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "266262926", - "voter": "desmonid" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "71498008", - "voter": "madhatting" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23726644841", - "voter": "ubg" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "131577259", - "voter": "gribgo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "28907874049", - "voter": "orm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "528988007", - "voter": "qonq99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "129537329", - "voter": "rd7783" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "615020728", - "voter": "slava" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "95219365", - "voter": "curator" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "solos" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "blysards" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1279854", - "voter": "nigmat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10847083143", - "voter": "metrox" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "710989138", - "voter": "romancs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59366614", - "voter": "luke490" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58762473", - "voter": "bro66" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "201822591", - "voter": "future24" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58623688", - "voter": "mythras" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "matrixdweller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54761612", - "voter": "edbriv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "865125771", - "voter": "rittr" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52740989", - "voter": "tcstix" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "49467477", - "voter": "friedwater" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54017869", - "voter": "zelious" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53196086", - "voter": "f1111111" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "anomaly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "buckland" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "goldmatters" - } + "next_vesting_withdrawal": "2016-09-19T00:37:21", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 1, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 3548, + "proxied_vsf_votes": [ + "23077504682", + 0, + 0, + 0 ], - "author": "steemit", - "author_reputation": 0, - "beneficiaries": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "body_length": 224, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 36, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T18:30:18", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "parent_author": "", - "parent_permlink": "meta", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "Welcome to Steem!", - "total_payout_value": "0.942 HBD", - "url": "/meta/@steemit/firstpost" + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": "12944616889", + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "70337.438 HBD", + "sbd_last_interest_payment": "2016-09-12T19:16:48", + "sbd_seconds": "8923940509188", + "sbd_seconds_last_update": "2016-09-14T11:25:21", + "tags_usage": [], + "to_withdraw": "257910734535923078", + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "225671901920.188893 VESTS", + "vesting_withdraw_rate": "2479910908.999260 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838821 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": "32238841816990380", + "witness_votes": [], + "witnesses_voted_for": 0 } }, - "discussion_idx": { - "": {} - }, + "content": {}, + "current_route": "/@steemit", + "discussion_idx": {}, + "error": "", "feed_price": { "base": "0.637 HBD", "quote": "1.000 HIVE" }, "props": { - "hbd_interest_rate": 1000, - "hbd_print_rate": 10000, + "available_account_subsidies": 157691079, + "confidential_sbd_supply": "0.000 HBD", + "confidential_supply": "0.000 HIVE", + "content_reward_percent": 7500, + "current_aslot": 5044547, + "current_sbd_supply": "2413759.427 HBD", + "current_supply": "157464400.971 HIVE", + "current_witness": "ihashfury", + "delegation_return_period": 604800, + "downvote_pool_percent": 0, + "head_block_id": "004c4b40245ffb07380a393fb2b3d841b76cdaec", "head_block_number": 5000000, + "init_sbd_supply": "0.000 HBD", + "last_budget_time": "2016-03-24T16:00:00", "last_irreversible_block_num": 4999980, + "maximum_block_size": 65536, + "next_maintenance_time": "2016-03-24T16:00:00", + "num_pow_witnesses": 97, + "participation_count": 121, + "pending_rewarded_vesting_shares": "0.000000 VESTS", + "pending_rewarded_vesting_steem": "0.000 HIVE", + "recent_slots_filled": "255209179042255236190010672587206549503", + "required_actions_partition_percent": 0, + "reverse_auction_seconds": 1800, + "sbd_interest_rate": 1000, + "sbd_print_rate": 10000, + "sbd_start_percent": 200, + "sbd_stop_percent": 500, + "sps_fund_percent": 0, + "sps_interval_ledger": "0.000 HBD", "time": "2016-09-15T19:47:21", - "total_vesting_fund_hive": "149190428.013 HIVE", - "total_vesting_shares": "448144916705.468384 VESTS" + "total_pow": 238139, + "total_reward_fund_steem": "66003.975 HIVE", + "total_reward_shares2": "763454540462239354401757185454", + "total_vesting_fund_steem": "149190428.013 HIVE", + "total_vesting_shares": "448144916705.468383 VESTS", + "vesting_reward_percent": 1500, + "virtual_supply": "161253662.237 HIVE", + "vote_power_reserve_rate": 40 }, "tag_idx": { "trending": [] }, - "tags": {} -} \ No newline at end of file + "tags": {}, + "witness_schedule": { + "account_subsidy_rd": { + "budget_per_time_unit": 797, + "decay_params": { + "decay_per_time_unit": 347321, + "decay_per_time_unit_denom_shift": 36 + }, + "max_pool_size": 157691079, + "min_decay": 0, + "pool_eq": 157691079, + "resource_unit": 10000 + }, + "account_subsidy_witness_rd": { + "budget_per_time_unit": 996, + "decay_params": { + "decay_per_time_unit": 7293741, + "decay_per_time_unit_denom_shift": 36 + }, + "max_pool_size": 9384019, + "min_decay": 896, + "pool_eq": 9384019, + "resource_unit": 10000 + }, + "current_shuffled_witnesses": [ + "rabbit-70", + "kushed", + "delegate.lafona", + "wackou", + "complexring", + "jesta", + "xeldal", + "riverhead", + "clayop", + "steemed", + "smooth.witness", + "ihashfury", + "joseph", + "datasecuritynode", + "boatymcboatface", + "steemychicken1", + "roadscape", + "pharesim", + "abit", + "blocktrades", + "arhag" + ], + "current_virtual_time": "109365512737828348123165341", + "elected_weight": 1, + "hardfork_required_witnesses": 17, + "id": 0, + "majority_version": "0.13.0", + "max_miner_witnesses": 1, + "max_runner_witnesses": 1, + "max_voted_witnesses": 19, + "median_props": { + "account_creation_fee": "9.000 HIVE", + "account_subsidy_budget": 797, + "account_subsidy_decay": 347321, + "maximum_block_size": 65536, + "sbd_interest_rate": 1000 + }, + "min_witness_account_subsidy_decay": 0, + "miner_weight": 1, + "next_shuffle_block_num": 5000016, + "num_scheduled_witnesses": 21, + "timeshare_weight": 5, + "witness_pay_normalization_factor": 25 + }, + "witnesses": {} +} -- GitLab From 9027aaad577dae842fe7d01422200d947e78f9d4 Mon Sep 17 00:00:00 2001 From: ABW Date: Tue, 18 Aug 2020 20:37:47 +0200 Subject: [PATCH 26/49] [ABW]: accepted differences in id for tests that started to be comparable one test changed completely as original has no way of being comparable at the moment added more detailed descriptions of problems for tests that are almost ok two bridge_api tests marked as passing --- hivemind/tavern/_test_patterns.tavern.yaml | 39 + ...comments_by_cashout_time_all_data.pat.json | 988 +++++++++--------- ...ist_comments_parent_parent_author.pat.json | 32 +- .../list_comments_root.pat.json | 12 +- .../list_comments_root_all_values.pat.json | 20 +- .../list_comments_root_no_data.pat.json | 26 +- ...ist_comments_root_required_values.pat.json | 20 +- .../test_bridge_api_patterns.tavern.yaml | 6 +- .../test_database_api_patterns.tavern.yaml | 50 +- 9 files changed, 614 insertions(+), 579 deletions(-) create mode 100644 hivemind/tavern/_test_patterns.tavern.yaml diff --git a/hivemind/tavern/_test_patterns.tavern.yaml b/hivemind/tavern/_test_patterns.tavern.yaml new file mode 100644 index 00000000..23b112a4 --- /dev/null +++ b/hivemind/tavern/_test_patterns.tavern.yaml @@ -0,0 +1,39 @@ +test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" all data + +marks: + - patterntest + - failing + - xfail # incomparable (problem with ordering most likely) + +includes: + - !include common.yaml + +stages: + - name: list_comments_by_cashout_time + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "database_api.list_comments" + params: + { + "start": + [ + "1969-12-31T23:59:59", + "proskynneo", + "steemit-firstpost-1", + ], + "limit": 10, + "order": "by_cashout_time", + } + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_comments_by_cashout_time_all_data" + directory: "database_api_patterns" diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json index 71f72b2b..3017b256 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "abs_rshares": 0, - "active": "2016-08-29T09:35:12", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "etcmike", - "author_rewards": 0, - "beneficiaries": [], - "body": "An excellent method of describing what each function is for. \n\nSteem on,\nMike", - "cashout_time": "1969-12-31T23:59:59", - "category": "steem", - "children": 1, - "children_abs_rshares": 0, - "created": "2016-08-29T06:12:51", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 786710, - "json_metadata": "{\"tags\":[\"steem\"]}", - "last_payout": "2016-08-30T14:39:00", - "last_update": "2016-08-29T06:12:51", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "bullionstackers", - "parent_permlink": "screen-it-tab-it-what-are-they", - "percent_hbd": 10000, - "permlink": "re-bullionstackers-screen-it-tab-it-what-are-they-20160829t061254603z", - "reward_weight": 10000, - "root_author": "bullionstackers", - "root_permlink": "screen-it-tab-it-what-are-they", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-29T06:13:39", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "ekitcho", - "author_rewards": 0, - "beneficiaries": [], - "body": "good initiative mate !", - "cashout_time": "1969-12-31T23:59:59", - "category": "robinhoodwhale", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-29T06:13:39", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 786711, - "json_metadata": "{\"tags\":[\"robinhoodwhale\"]}", - "last_payout": "2016-08-30T11:01:12", - "last_update": "2016-08-29T06:13:39", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "laonie", - "parent_permlink": "how-to-set-up-your-own-voting-bot-for-robinhoodwhale", - "percent_hbd": 10000, - "permlink": "re-laonie-how-to-set-up-your-own-voting-bot-for-robinhoodwhale-20160829t061342501z", - "reward_weight": 10000, - "root_author": "laonie", - "root_permlink": "how-to-set-up-your-own-voting-bot-for-robinhoodwhale", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-29T06:13:57", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "itay", - "author_rewards": 0, - "beneficiaries": [], - "body": "I upvoted You", - "cashout_time": "1969-12-31T23:59:59", - "category": "post", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-29T06:13:57", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 786712, - "json_metadata": "{}", - "last_payout": "2016-09-03T05:42:51", - "last_update": "2016-08-29T06:13:57", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 1, - "parent_author": "bitmaxt", - "parent_permlink": "post-and-post-craigrant-introduceyourself", - "percent_hbd": 10000, - "permlink": "re-post-and-post-craigrant-introduceyourself", - "reward_weight": 10000, - "root_author": "bitmaxt", - "root_permlink": "post-and-post-craigrant-introduceyourself", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-29T06:14:09", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "anns", - "author_rewards": 0, - "beneficiaries": [], - "body": "Steem On", - "cashout_time": "1969-12-31T23:59:59", - "category": "meme", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-29T06:14:09", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 786713, - "json_metadata": "{\"tags\":[\"meme\"]}", - "last_payout": "2016-08-30T07:31:42", - "last_update": "2016-08-29T06:14:09", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "whitezombie", - "parent_permlink": "steemit-s-not-dead", - "percent_hbd": 10000, - "permlink": "re-whitezombie-steemit-s-not-dead-20160829t061410014z", - "reward_weight": 10000, - "root_author": "whitezombie", - "root_permlink": "steemit-s-not-dead", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-29T06:14:21", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "jeza", - "author_rewards": 0, - "beneficiaries": [], - "body": "It's a good point, and I'll remember this post next time someone comes up me with this time honored argument.\n\nWhen people say this they are claiming that the good things can be kept separate from the stolen loot. \n\nYou can't throw separate the flour from the yeast after you've baked the bread", - "cashout_time": "1969-12-31T23:59:59", - "category": "anarchism", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-29T06:14:21", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 786714, - "json_metadata": "{\"tags\":[\"anarchism\"]}", - "last_payout": "2016-08-29T20:12:12", - "last_update": "2016-08-29T06:14:21", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 1, - "parent_author": "darkstarartphoto", - "parent_permlink": "throw-out-the-baby", - "percent_hbd": 10000, - "permlink": "re-darkstarartphoto-throw-out-the-baby-20160829t061417629z", - "reward_weight": 10000, - "root_author": "darkstarartphoto", - "root_permlink": "throw-out-the-baby", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-29T16:46:12", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "pseudopoise", - "author_rewards": 0, - "beneficiaries": [], - "body": "This is so cute! Alice is one of my favorite stories. :)", - "cashout_time": "1969-12-31T23:59:59", - "category": "photography", - "children": 1, - "children_abs_rshares": 0, - "created": "2016-08-29T06:14:51", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 786715, - "json_metadata": "{\"tags\":[\"photography\"]}", - "last_payout": "2016-08-30T12:06:18", - "last_update": "2016-08-29T06:14:51", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 1, - "parent_author": "eveningstar92", - "parent_permlink": "through-the-looking-glass", - "percent_hbd": 10000, - "permlink": "re-eveningstar92-through-the-looking-glass-20160829t061452063z", - "reward_weight": 10000, - "root_author": "eveningstar92", - "root_permlink": "through-the-looking-glass", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-29T06:15:00", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "futurefood", - "author_rewards": 0, - "beneficiaries": [], - "body": "Yes that would be possible, although I'm far less knowledgeable on coffee :)", - "cashout_time": "1969-12-31T23:59:59", - "category": "health", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-29T06:15:00", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 2, - "id": 786716, - "json_metadata": "{\"tags\":[\"health\"]}", - "last_payout": "1970-01-01T00:00:00", - "last_update": "2016-08-29T06:15:00", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "smartbean", - "parent_permlink": "re-futurefood-future-food-the-underrated-benefit-of-green-tea-20160828t160415020z", - "percent_hbd": 10000, - "permlink": "re-smartbean-re-futurefood-future-food-the-underrated-benefit-of-green-tea-20160829t061451602z", - "reward_weight": 10000, - "root_author": "futurefood", - "root_permlink": "future-food-the-underrated-benefit-of-green-tea", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": "251770688898", - "active": "2016-08-29T14:08:51", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "lukeism", - "author_rewards": 0, - "beneficiaries": [], - "body": "Fucking hilarious", - "cashout_time": "1969-12-31T23:59:59", - "category": "comedy", - "children": 1, - "children_abs_rshares": 0, - "created": "2016-08-29T06:15:09", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 786717, - "json_metadata": "{\"tags\":[\"comedy\"]}", - "last_payout": "1970-01-01T00:00:00", - "last_update": "2016-08-29T06:15:09", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": "251770688898", - "net_votes": 1, - "parent_author": "churdtzu", - "parent_permlink": "nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america", - "percent_hbd": 10000, - "permlink": "re-churdtzu-nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america-20160829t061507948z", - "reward_weight": 10000, - "root_author": "churdtzu", - "root_permlink": "nigerian-scammer-mr-agent-smith-of-the-city-of-the-united-state-of-america", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": "1092333007396197012", - "vote_rshares": "251770688898" - }, - { - "abs_rshares": 0, - "active": "2016-08-29T06:16:03", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "christoryan", - "author_rewards": 0, - "beneficiaries": [], - "body": "You're exactly right! The oldest trick in the book was played by the devil ( a sneaky serpent that has a venomous bite ). Jesus did not come to set up churches but to set up \"the church\" of one truth. Religion is hocus pocus and there is only one God , he is all of our God. :D", - "cashout_time": "1969-12-31T23:59:59", - "category": "life", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-29T06:16:03", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 2, - "id": 786718, - "json_metadata": "{\"tags\":[\"life\"]}", - "last_payout": "2016-08-29T20:55:27", - "last_update": "2016-08-29T06:16:03", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "djm34", - "parent_permlink": "re-sascha-our-life-on-planet-earth-part-3-what-happens-after-death-20160828t191908229z", - "percent_hbd": 10000, - "permlink": "re-djm34-re-sascha-our-life-on-planet-earth-part-3-what-happens-after-death-20160829t061600956z", - "reward_weight": 10000, - "root_author": "sascha", - "root_permlink": "our-life-on-planet-earth-part-3-what-happens-after-death", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-29T08:11:39", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "thebear", - "author_rewards": 0, - "beneficiaries": [], - "body": "Thank you! Yes I would love that! You have to check out my other articles on Death Valley and Great Sand Dunes National Park. Especially if you love sand dunes! These are must go places! I would love it if you featured my photo and please check out the many more here, https://steemit.com/journey/@thebear/racetrack-playa-where-rocks-slide-across-the-earth-and-death-valley-national-park and https://steemit.com/journey/@thebear/sandboarding-in-great-sand-dunes-national-park-san-luis-valley-co I also have some more pretty cool Death Valley shots I have not posted if you're interested.", - "cashout_time": "1969-12-31T23:59:59", - "category": "steemitphotochallenge", - "children": 1, - "children_abs_rshares": 0, - "created": "2016-08-29T06:16:09", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 2, - "id": 786719, - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"],\"links\":[\"https://steemit.com/journey/@thebear/racetrack-playa-where-rocks-slide-across-the-earth-and-death-valley-national-park\"]}", - "last_payout": "2016-08-30T04:42:03", - "last_update": "2016-08-29T06:16:09", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "dexter-k", - "parent_permlink": "re-thebear-steemitphotochallenge-entry-20160829t054349693z", - "percent_hbd": 10000, - "permlink": "re-dexter-k-re-thebear-steemitphotochallenge-entry-20160829t061609423z", - "reward_weight": 10000, - "root_author": "thebear", - "root_permlink": "steemitphotochallenge-entry", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - } - ] -} \ No newline at end of file +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-03-31T13:54:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "proskynneo", + "author_rewards": 4817, + "beneficiaries": [], + "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-03-31T13:54:33", + "curator_payout_value": { + "amount": "1059", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 3, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-31T13:54:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-1", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Excited!", + "total_payout_value": { + "amount": "1058", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T08:38:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 457, + "beneficiaries": [], + "body": "Did you know you can earn STEEM by commenting on posts?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-06T19:22:42", + "curator_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 4, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-04-06T19:22:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "steemit-firstpost-2", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Did you Know?", + "total_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-11T21:41:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 4661, + "beneficiaries": [], + "body": "Bitcoin's protocol schedules a block reward 'halving' roughly every four years, as designed by Satoshi Nakamoto. But the artificial block size cap currently sanctioned by Core developers and a majority of miners alike may actually cause a catastrophic result come July 2016. Here's how. https://youtu.be/_NgFIj9dBkQ", + "cashout_time": "1969-12-31T23:59:59", + "category": "daily-decrypt", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-04-06T19:54:12", + "curator_payout_value": { + "amount": "1024", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 5, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-04-06T19:54:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "daily-decrypt", + "percent_hbd": 10000, + "permlink": "red-dailydecrypt-1", + "reward_weight": 10000, + "root_author": "red", + "root_permlink": "red-dailydecrypt-1", + "title": "What You Should Know About the Coming Bitcoin Halving", + "total_payout_value": { + "amount": "1024", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-10T09:18:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 1339, + "beneficiaries": [], + "body": "Trying to post my first post..", + "cashout_time": "1969-12-31T23:59:59", + "category": "firstpost", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-04-08T07:33:42", + "curator_payout_value": { + "amount": "294", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 6, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:36", + "last_update": "2016-04-08T07:33:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "firstpost", + "percent_hbd": 10000, + "permlink": "abit-first-post", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "abit-first-post", + "title": "Trying", + "total_payout_value": { + "amount": "294", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T08:58:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 729, + "beneficiaries": [], + "body": "This is the witnesses category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-08T07:36:18", + "curator_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 7, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:39", + "last_update": "2016-04-08T07:36:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -491818553, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "witness-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "witness-category", + "title": "Witnesses", + "total_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T07:55:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 632, + "beneficiaries": [], + "body": "This is the miners category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T07:55:15", + "curator_payout_value": { + "amount": "139", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 8, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:42", + "last_update": "2016-04-08T07:55:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -481781440, + "net_votes": -3, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "miner-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "miner-category", + "title": "Miners", + "total_payout_value": { + "amount": "138", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-19T12:08:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 503226, + "beneficiaries": [], + "body": "This is abit, an experienced witness. Will you vote for me?", + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-04-08T07:58:51", + "curator_payout_value": { + "amount": "110702", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 9, + "json_metadata": "{}", + "last_payout": "2016-08-22T12:36:54", + "last_update": "2016-04-08T07:58:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 23, + "parent_author": "", + "parent_permlink": "witness-category", + "percent_hbd": 10000, + "permlink": "abit-witness-post", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "abit-witness-post", + "title": "Abit Witness Thread", + "total_payout_value": { + "amount": "110730", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T08:49:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 755, + "beneficiaries": [], + "body": "Spams come here", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T08:49:15", + "curator_payout_value": { + "amount": "166", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 10, + "json_metadata": "{}", + "last_payout": "2016-08-13T18:32:54", + "last_update": "2016-04-08T08:49:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -477016308, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_hbd": 10000, + "permlink": "spam", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "spam", + "title": "Spams", + "total_payout_value": { + "amount": "165", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-28T17:16:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 0, + "beneficiaries": [], + "body": "I'm trying to spam here to see how much STEEM I can earn..", + "cashout_time": "1969-12-31T23:59:59", + "category": "spam", + "children": 26, + "children_abs_rshares": 0, + "created": "2016-04-08T08:50:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 11, + "json_metadata": "{}", + "last_payout": "2016-08-22T08:02:15", + "last_update": "2016-04-08T08:50:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -12344332066668, + "net_votes": -8, + "parent_author": "", + "parent_permlink": "spam", + "percent_hbd": 10000, + "permlink": "abit-spam-post1", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "abit-spam-post1", + "title": "Spam test", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T08:52:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 1327, + "beneficiaries": [], + "body": "Let's mine!", + "cashout_time": "1969-12-31T23:59:59", + "category": "miner-category", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T08:52:48", + "curator_payout_value": { + "amount": "291", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 12, + "json_metadata": "{}", + "last_payout": "2016-08-13T18:32:48", + "last_update": "2016-04-08T08:52:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -466979195, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "miner-category", + "percent_hbd": 10000, + "permlink": "come-on-miners", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "come-on-miners", + "title": "Come on, miners!", + "total_payout_value": { + "amount": "291", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json index 082915e9..65dcb1ff 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json @@ -21,8 +21,8 @@ "precision": 3 }, "depth": 1, - "id": 336501, - "json_metadata": "", + "id": 466556, + "json_metadata": "{}", "last_payout": "2016-08-29T05:00:42", "last_update": "2016-07-29T15:23:18", "max_accepted_payout": { @@ -70,8 +70,8 @@ "precision": 3 }, "depth": 1, - "id": 336600, - "json_metadata": "", + "id": 466695, + "json_metadata": "{}", "last_payout": "2016-08-29T05:00:42", "last_update": "2016-07-29T15:23:39", "max_accepted_payout": { @@ -119,8 +119,8 @@ "precision": 3 }, "depth": 1, - "id": 425216, - "json_metadata": "", + "id": 576972, + "json_metadata": "{}", "last_payout": "2016-09-02T20:52:12", "last_update": "2016-08-03T08:52:45", "max_accepted_payout": { @@ -168,7 +168,7 @@ "precision": 3 }, "depth": 1, - "id": 773677, + "id": 1021488, "json_metadata": "{}", "last_payout": "2016-09-02T20:52:12", "last_update": "2016-08-28T02:48:12", @@ -217,8 +217,8 @@ "precision": 3 }, "depth": 1, - "id": 353970, - "json_metadata": "", + "id": 488825, + "json_metadata": "{}", "last_payout": "2016-08-30T01:59:27", "last_update": "2016-07-30T13:55:45", "max_accepted_payout": { @@ -266,8 +266,8 @@ "precision": 3 }, "depth": 1, - "id": 353971, - "json_metadata": "", + "id": 488826, + "json_metadata": "{}", "last_payout": "2016-08-30T01:59:27", "last_update": "2016-07-30T13:55:45", "max_accepted_payout": { @@ -315,7 +315,7 @@ "precision": 3 }, "depth": 1, - "id": 416566, + "id": 566327, "json_metadata": "{\"tags\":[\"steemit\"]}", "last_payout": "2016-09-02T08:18:00", "last_update": "2016-08-02T20:13:33", @@ -364,7 +364,7 @@ "precision": 3 }, "depth": 1, - "id": 416610, + "id": 566379, "json_metadata": "{\"tags\":[\"steemit\"]}", "last_payout": "2016-09-02T08:18:00", "last_update": "2016-08-02T20:16:27", @@ -413,7 +413,7 @@ "precision": 3 }, "depth": 1, - "id": 260239, + "id": 359786, "json_metadata": "{\"tags\":[]}", "last_payout": "2016-08-26T00:12:39", "last_update": "2016-07-25T22:32:54", @@ -462,8 +462,8 @@ "precision": 3 }, "depth": 1, - "id": 260253, - "json_metadata": "", + "id": 359805, + "json_metadata": "{}", "last_payout": "2016-08-26T00:12:39", "last_update": "2016-07-25T22:33:24", "max_accepted_payout": { diff --git a/hivemind/tavern/database_api_patterns/list_comments_root.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root.pat.json index 8d50c46d..b58e6f7d 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root.pat.json @@ -217,7 +217,7 @@ "precision": 3 }, "depth": 0, - "id": 36909, + "id": 51406, "json_metadata": "{\"tags\":[\"photography\"],\"links\":[\"https://www.chernobyl-tour.com/uploads/photos/show/\"]}", "last_payout": "2016-08-13T15:09:30", "last_update": "2016-07-03T16:37:33", @@ -266,7 +266,7 @@ "precision": 3 }, "depth": 1, - "id": 460983, + "id": 622156, "json_metadata": "{}", "last_payout": "2016-08-13T15:09:30", "last_update": "2016-08-05T11:31:21", @@ -315,7 +315,7 @@ "precision": 3 }, "depth": 0, - "id": 36927, + "id": 51432, "json_metadata": "{\"tags\":[\"video\"],\"links\":[\"https://www.youtube.com/watch?v=ByoKOG3Y-bI\"]}", "last_payout": "2016-08-05T19:25:48", "last_update": "2016-07-03T17:03:15", @@ -364,7 +364,7 @@ "precision": 3 }, "depth": 1, - "id": 460994, + "id": 622169, "json_metadata": "{}", "last_payout": "2016-08-05T19:25:48", "last_update": "2016-08-05T11:32:00", @@ -413,7 +413,7 @@ "precision": 3 }, "depth": 0, - "id": 36931, + "id": 51439, "json_metadata": "{\"tags\":[\"ecosystem\",\"conglomerate\",\"fintech\",\"bloggers\",\"whitepaper\",\"decentralized\",\"forbes\",\"coindesk\",\"ccedk\",\"cryptocurrency\",\"openledger\",\"blockchain\",\"obits\",\"club\",\"digital\",\"token\"],\"links\":[\"https://www.ccedk.com\"]}", "last_payout": "2016-08-05T22:01:00", "last_update": "2016-07-03T17:04:57", @@ -462,7 +462,7 @@ "precision": 3 }, "depth": 1, - "id": 36962, + "id": 51480, "json_metadata": "{\"tags\":[\"ecosystem\"]}", "last_payout": "2016-08-05T22:01:00", "last_update": "2016-07-03T17:55:18", diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json index 5b05fcef..8c3e8ebe 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json @@ -21,7 +21,7 @@ "precision": 3 }, "depth": 1, - "id": 780100, + "id": 1029561, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", "last_payout": "2016-08-29T20:19:39", "last_update": "2016-08-28T17:29:57", @@ -70,7 +70,7 @@ "precision": 3 }, "depth": 2, - "id": 780336, + "id": 1029853, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", "last_payout": "2016-08-29T20:19:39", "last_update": "2016-08-28T17:50:15", @@ -119,7 +119,7 @@ "precision": 3 }, "depth": 1, - "id": 780560, + "id": 1030133, "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\"]}", "last_payout": "2016-08-29T20:19:39", "last_update": "2016-08-28T18:11:06", @@ -168,7 +168,7 @@ "precision": 3 }, "depth": 2, - "id": 780584, + "id": 1030162, "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", "last_payout": "2016-08-29T20:19:39", "last_update": "2016-08-28T18:12:39", @@ -217,7 +217,7 @@ "precision": 3 }, "depth": 1, - "id": 780673, + "id": 1030265, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", "last_payout": "2016-08-29T20:19:39", "last_update": "2016-08-28T18:21:39", @@ -266,7 +266,7 @@ "precision": 3 }, "depth": 2, - "id": 780727, + "id": 1030333, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", "last_payout": "2016-08-29T20:19:39", "last_update": "2016-08-28T18:26:39", @@ -315,7 +315,7 @@ "precision": 3 }, "depth": 1, - "id": 781174, + "id": 1030904, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", "last_payout": "2016-08-29T20:19:39", "last_update": "2016-08-28T19:02:12", @@ -364,7 +364,7 @@ "precision": 3 }, "depth": 2, - "id": 781462, + "id": 1031268, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", "last_payout": "2016-08-29T20:19:39", "last_update": "2016-08-28T19:25:24", @@ -413,7 +413,7 @@ "precision": 3 }, "depth": 1, - "id": 781704, + "id": 1031585, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", "last_payout": "2016-08-29T20:19:39", "last_update": "2016-08-28T19:44:48", @@ -462,7 +462,7 @@ "precision": 3 }, "depth": 1, - "id": 782837, + "id": 1032999, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", "last_payout": "2016-08-29T20:19:39", "last_update": "2016-08-28T21:32:54", diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json index 0608ccf8..f1d20648 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json @@ -21,8 +21,8 @@ "precision": 3 }, "depth": 0, - "id": 0, - "json_metadata": "", + "id": 1, + "json_metadata": "{}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-03-30T18:30:18", "max_accepted_payout": { @@ -70,8 +70,8 @@ "precision": 3 }, "depth": 1, - "id": 1, - "json_metadata": "", + "id": 2, + "json_metadata": "{}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-03-30T19:52:30", "max_accepted_payout": { @@ -119,8 +119,8 @@ "precision": 3 }, "depth": 1, - "id": 2, - "json_metadata": "", + "id": 3, + "json_metadata": "{}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-03-31T13:54:33", "max_accepted_payout": { @@ -168,7 +168,7 @@ "precision": 3 }, "depth": 1, - "id": 3, + "id": 4, "json_metadata": "{}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-04-06T19:22:42", @@ -217,7 +217,7 @@ "precision": 3 }, "depth": 2, - "id": 100, + "id": 116, "json_metadata": "{}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-04-13T03:48:36", @@ -266,7 +266,7 @@ "precision": 3 }, "depth": 1, - "id": 66968, + "id": 92903, "json_metadata": "{\"tags\":[\"meta\"]}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-07-13T08:29:36", @@ -315,7 +315,7 @@ "precision": 3 }, "depth": 2, - "id": 67008, + "id": 92974, "json_metadata": "{\"tags\":[\"meta\"]}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-07-13T08:38:48", @@ -364,7 +364,7 @@ "precision": 3 }, "depth": 2, - "id": 110487, + "id": 151464, "json_metadata": "{\"tags\":[\"meta\"]}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-07-17T19:38:12", @@ -413,7 +413,7 @@ "precision": 3 }, "depth": 2, - "id": 125759, + "id": 172339, "json_metadata": "{\"tags\":[\"meta\"]}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-07-18T19:53:12", @@ -462,7 +462,7 @@ "precision": 3 }, "depth": 1, - "id": 125823, + "id": 172415, "json_metadata": "{\"tags\":[\"meta\"],\"links\":[\"http://steem.com/@bittrex/transfers\"]}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-07-18T19:58:09", diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json index d07e5c56..b4f1e9ac 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json @@ -21,7 +21,7 @@ "precision": 3 }, "depth": 0, - "id": 780101, + "id": 1029562, "json_metadata": "{\"tags\":[\"future\",\"technology\",\"unity\",\"sincere\",\"world\"]}", "last_payout": "2016-08-29T17:44:48", "last_update": "2016-08-28T17:29:57", @@ -70,7 +70,7 @@ "precision": 3 }, "depth": 0, - "id": 780108, + "id": 1029572, "json_metadata": "{\"tags\":[\"art\",\"steemart\",\"originalcontent\",\"3dpen\"],\"users\":[\"anca3drandom\"],\"image\":[\"https://httpsimage.com/img/DSC04680small.jpg\",\"https://httpsimage.com/img/DSC04682small.jpg\",\"https://httpsimage.com/img/DSC04686small.jpg\",\"https://httpsimage.com/img/DSC04692small.jpg\",\"https://httpsimage.com/img/DSC04694small.jpg\",\"https://httpsimage.com/img/DSC04701small.jpg\",\"https://httpsimage.com/img/DSC04714small.jpg\",\"https://httpsimage.com/img/DSC04658small.jpg\",\"https://httpsimage.com/img/DSC04661small.jpg\",\"https://httpsimage.com/img/DSC04668small.jpg\",\"https://httpsimage.com/img/IMG_20160828_190533small.jpg\",\"https://httpsimage.com/img/DSC04402small2.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=ig-wrxYPUzc\",\"https://steemit.com/art/@anca3drandom/how-to-make-linocut-prints-leafy-seadragon-photos-video\",\"https://steemit.com/art/@anca3drandom/how-i-made-decorative-mini-kitchen-blackboard-pyrography-art-watercolors\"]}", "last_payout": "2016-08-29T20:31:48", "last_update": "2016-08-28T17:30:30", @@ -119,7 +119,7 @@ "precision": 3 }, "depth": 1, - "id": 780169, + "id": 1029652, "json_metadata": "{\"tags\":[\"art\"]}", "last_payout": "2016-08-29T20:31:48", "last_update": "2016-08-28T17:36:39", @@ -168,7 +168,7 @@ "precision": 3 }, "depth": 2, - "id": 780203, + "id": 1029690, "json_metadata": "{\"tags\":[\"art\"]}", "last_payout": "2016-08-29T20:31:48", "last_update": "2016-08-28T17:39:33", @@ -217,7 +217,7 @@ "precision": 3 }, "depth": 1, - "id": 780214, + "id": 1029704, "json_metadata": "{\"tags\":[\"art\"]}", "last_payout": "2016-08-29T20:31:48", "last_update": "2016-08-28T17:40:09", @@ -266,7 +266,7 @@ "precision": 3 }, "depth": 1, - "id": 780242, + "id": 1029734, "json_metadata": "{\"tags\":[\"art\"]}", "last_payout": "2016-08-29T20:31:48", "last_update": "2016-08-28T17:42:18", @@ -315,7 +315,7 @@ "precision": 3 }, "depth": 1, - "id": 780250, + "id": 1029746, "json_metadata": "{\"tags\":[\"art\"]}", "last_payout": "2016-08-29T20:31:48", "last_update": "2016-08-28T17:42:57", @@ -364,7 +364,7 @@ "precision": 3 }, "depth": 2, - "id": 780265, + "id": 1029762, "json_metadata": "{\"tags\":[\"art\"]}", "last_payout": "2016-08-29T20:31:48", "last_update": "2016-08-28T17:44:00", @@ -413,7 +413,7 @@ "precision": 3 }, "depth": 3, - "id": 780274, + "id": 1029773, "json_metadata": "{\"tags\":[\"art\"]}", "last_payout": "2016-08-29T20:31:48", "last_update": "2016-08-28T17:44:39", @@ -462,7 +462,7 @@ "precision": 3 }, "depth": 2, - "id": 780281, + "id": 1029781, "json_metadata": "{\"tags\":[\"art\"]}", "last_payout": "2016-08-29T20:31:48", "last_update": "2016-08-28T17:45:09", diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index dbc0cd7f..8852eed1 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -33,7 +33,7 @@ marks: - patterntest - failing - - xfail # payout is zero in some cases, grey, flag_weight, total_votes counts all without filtering + - xfail # payout is zero in some cases, grey, flag_weight includes: - !include common.yaml @@ -63,8 +63,6 @@ marks: - patterntest - - failing - - xfail # total_votes (new version counts all the listed votes, old does not count some) includes: - !include common.yaml @@ -94,8 +92,6 @@ marks: - patterntest - - failing - - xfail # total_votes counts all without filtering includes: - !include common.yaml diff --git a/hivemind/tavern/test_database_api_patterns.tavern.yaml b/hivemind/tavern/test_database_api_patterns.tavern.yaml index c3851293..0e6cf8a6 100644 --- a/hivemind/tavern/test_database_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_database_api_patterns.tavern.yaml @@ -4,7 +4,7 @@ marks: - patterntest - failing - - xfail # plenty of differences but comparable + - xfail # payouts, active, escaping includes: - !include common.yaml @@ -35,7 +35,7 @@ marks: - patterntest - failing - - xfail # plenty of differences but comparable + - xfail # payouts, active includes: - !include common.yaml @@ -177,7 +177,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - failing - - xfail # incomparable (problem with ordering most likely) + - xfail # payouts, active, net_rshares (only because parameters were changed so results only cover specific posts) includes: - !include common.yaml @@ -198,8 +198,8 @@ stages: "start": [ "1969-12-31T23:59:59", - "etcmike", - "re-bullionstackers-screen-it-tab-it-what-are-they-20160829t061254603z", + "proskynneo", + "steemit-firstpost-1", ], "limit": 10, "order": "by_cashout_time", @@ -218,7 +218,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - failing - - xfail # no results; show first posts comments + - xfail # no results (because timestamp::max is actually smaller in SQL); show first posts comments includes: - !include common.yaml @@ -320,7 +320,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - failing - - xfail # incomparable (problem with ordering most likely) + - xfail # incomparable - ordering with date includes: - !include common.yaml @@ -356,7 +356,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - failing - - xfail # incomparable (problem with ordering most likely) + - xfail # incomparable - ordering by date includes: - !include common.yaml @@ -424,7 +424,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest - failing - - xfail # plenty of differences but comparable, wrong(?) encoding + - xfail # active, reward_weight, escaping includes: - !include common.yaml @@ -455,7 +455,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest # author first - when empty, takes alphabetical (later by permlink) - failing - - xfail # plenty of differences but comparable, wrong(?) encoding + - xfail # active, reward_weight, escaping includes: - !include common.yaml @@ -536,7 +536,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" goo marks: - patterntest - failing - - xfail # incomparable (problems with ordering most likely) + - xfail # active, payouts, escaping includes: - !include common.yaml @@ -572,7 +572,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" no marks: - patterntest - failing - - xfail # incomparable (problems with ordering most likely); first two params are required + - xfail # active, payouts, net_rshares; first two params are required includes: - !include common.yaml @@ -643,7 +643,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" req marks: - patterntest - failing - - xfail # incomparable (problems with ordering most likely) + - xfail # plenty of differences but comparable includes: - !include common.yaml @@ -715,7 +715,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" all marks: - patterntest - failing - - xfail # incomparable (problems with ordering most likely) + - xfail # plenty of differences but comparable includes: - !include common.yaml @@ -857,7 +857,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" marks: - patterntest - failing - - xfail # multiple problems but comparable + - xfail # active, cashout_time, last_payout includes: - !include common.yaml @@ -893,7 +893,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest - failing - - xfail # incomparable (problems with ordering most likely); first 2 params are required + - xfail # incomparable - unknown ordering problem; first 2 params are required includes: - !include common.yaml @@ -929,7 +929,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest - failing - - xfail # second param is required + - xfail # active; second param is required includes: @@ -966,7 +966,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" r marks: - patterntest - failing - - xfail # plenty of differences but comparable + - xfail # active, cashout_time, last_payout includes: - !include common.yaml @@ -1074,7 +1074,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest - failing - - xfail # plenty of differences but comparable + - xfail # active, payouts includes: @@ -1112,7 +1112,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest - failing - - xfail # incomparable (problem with ordering most likely) + - xfail # incomparable - ordering with date includes: - !include common.yaml @@ -1218,7 +1218,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest - failing - - xfail # incomparable (problem with ordering most likely) + - xfail # incomparable - ordering with date includes: - !include common.yaml @@ -1254,7 +1254,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest - failing - - xfail # incomparable (problem with ordering most likely) + - xfail # incomparable - ordering with date includes: - !include common.yaml @@ -1290,7 +1290,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest - failing - - xfail # incomparable (problem with ordering most likely); output should be the same as prev test or with completely diff author + - xfail # incomparable - ordering with date; output should be the same as prev test or with completely diff author includes: @@ -1395,7 +1395,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest - failing - - xfail # incomparable (problem with ordering most likely) + - xfail # incomparable - ordering by date includes: @@ -1502,7 +1502,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest - failing - - xfail # incomparable (problem with ordering most likely); show last comments in base + - xfail # incomparable - ordering by date; show last comments in base includes: - !include common.yaml -- GitLab From 81cb62682227ae0734bfbb5354945c39f13f5432 Mon Sep 17 00:00:00 2001 From: Pawel Maniora Date: Wed, 19 Aug 2020 14:04:55 +0200 Subject: [PATCH 27/49] new condenser api tests --- .../get_followers_ignore.pat.json | 9 + .../get_following_ignore.pat.json | 9 + .../get_replies_by_last_update.pat.json | 110 +- .../get_trending_tags_limit_250.pat.json | 1502 +++++++++++++++++ .../test_bridge_api_patterns.tavern.yaml | 12 +- .../test_condenser_api_patterns.tavern.yaml | 309 +++- 6 files changed, 1907 insertions(+), 44 deletions(-) create mode 100644 hivemind/tavern/condenser_api_patterns/get_followers_ignore.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_following_ignore.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_trending_tags_limit_250.pat.json diff --git a/hivemind/tavern/condenser_api_patterns/get_followers_ignore.pat.json b/hivemind/tavern/condenser_api_patterns/get_followers_ignore.pat.json new file mode 100644 index 00000000..32449797 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_followers_ignore.pat.json @@ -0,0 +1,9 @@ +[ + { + "follower": "brightnesssoulds", + "following": "steemit", + "what": [ + "ignore" + ] + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_following_ignore.pat.json b/hivemind/tavern/condenser_api_patterns/get_following_ignore.pat.json new file mode 100644 index 00000000..32449797 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_following_ignore.pat.json @@ -0,0 +1,9 @@ +[ + { + "follower": "brightnesssoulds", + "following": "steemit", + "what": [ + "ignore" + ] + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update.pat.json index f0cc63d8..b72fdd8a 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update.pat.json @@ -1,94 +1,130 @@ [ { + "abs_rshares": 0, + "active": "2016-07-18T19:53:12", "active_votes": [ { - "percent": "-100", + "percent": -100, "reputation": 0, - "rshares": "-375241", - "voter": "dantheman" + "rshares": -375241, + "time": "2016-04-08T20:09:33", + "voter": "dantheman", + "weight": 0 }, { - "percent": "10000", + "percent": 10000, "reputation": 0, - "rshares": "5100", - "voter": "steemit46" + "rshares": 5100, + "time": "2016-03-30T20:21:45", + "voter": "steemit46", + "weight": "5100000000" }, { - "percent": "10000", + "percent": 10000, "reputation": 0, - "rshares": "81125", - "voter": "roadscape" + "rshares": 81125, + "time": "2016-04-12T04:45:27", + "voter": "roadscape", + "weight": 2507175368 }, { - "percent": "10000", + "percent": 10000, "reputation": 0, - "rshares": "425903066", - "voter": "gekko" + "rshares": 425903066, + "time": "2016-07-21T22:39:51", + "voter": "gekko", + "weight": 0 }, { - "percent": "10000", + "percent": 10000, "reputation": 0, - "rshares": "431616594", - "voter": "acidyo" + "rshares": 431616594, + "time": "2016-05-24T00:46:54", + "voter": "acidyo", + "weight": 376 }, { - "percent": "10000", + "percent": 10000, "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" + "rshares": 742566481, + "time": "2016-07-22T19:57:15", + "voter": "patrick-g", + "weight": 0 }, { - "percent": "10000", + "percent": 10000, "reputation": 0, "rshares": "58854897335", - "voter": "business" + "time": "2016-07-13T08:39:18", + "voter": "business", + "weight": 0 }, { - "percent": "10000", + "percent": 10000, "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" + "rshares": 108855472, + "time": "2016-07-17T19:37:48", + "voter": "kingtylervvs", + "weight": 0 }, { - "percent": "10000", + "percent": 10000, "reputation": 0, - "rshares": "244129227", - "voter": "kewpiedoll" + "rshares": 244129227, + "time": "2016-07-21T05:28:45", + "voter": "kewpiedoll", + "weight": 0 }, { - "percent": "10000", + "percent": 10000, "reputation": 0, - "rshares": "1615731741", - "voter": "naturalista" + "rshares": 1615731741, + "time": "2016-08-01T02:17:39", + "voter": "naturalista", + "weight": 0 } ], + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, "author": "admin", - "author_reputation": 0, + "author_reputation": 975371654, + "author_rewards": 0, "beneficiaries": [], "body": "First Reply! Let's get this **party** started", - "body_length": 45, + "body_length": 0, "cashout_time": "1969-12-31T23:59:59", "category": "meta", "children": 2, + "children_abs_rshares": 0, "created": "2016-03-30T19:52:30", "curator_payout_value": "0.000 HBD", "depth": 1, - "json_metadata": "{}", + "id": 1, + "json_metadata": "", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-03-30T19:52:30", "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 62423410900, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -226592300084, + "net_votes": 8, "parent_author": "steemit", "parent_permlink": "firstpost", "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, + "percent_steem_dollars": 10000, "permlink": "firstpost", - "post_id": 2, "promoted": "0.000 HBD", + "reblogged_by": [], "replies": [], + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", "root_title": "Welcome to Steem!", "title": "", "total_payout_value": "0.000 HBD", - "url": "/meta/@steemit/firstpost#@admin/firstpost" + "total_pending_payout_value": "0.000 HBD", + "total_vote_weight": 0, + "url": "/meta/@steemit/firstpost#@admin/firstpost", + "vote_rshares": 0 } -] \ No newline at end of file +] diff --git a/hivemind/tavern/condenser_api_patterns/get_trending_tags_limit_250.pat.json b/hivemind/tavern/condenser_api_patterns/get_trending_tags_limit_250.pat.json new file mode 100644 index 00000000..454ea0a6 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_trending_tags_limit_250.pat.json @@ -0,0 +1,1502 @@ +[ + { + "comments": 16, + "name": "dream", + "top_posts": 11, + "total_payouts": "31.135 HBD" + }, + { + "comments": 14, + "name": "governmentinsanity", + "top_posts": 1, + "total_payouts": "31.090 HBD" + }, + { + "comments": 27, + "name": "joke", + "top_posts": 14, + "total_payouts": "31.022 HBD" + }, + { + "comments": 7, + "name": "tech-analysis", + "top_posts": 2, + "total_payouts": "30.801 HBD" + }, + { + "comments": 1, + "name": "bannhammer", + "top_posts": 1, + "total_payouts": "30.782 HBD" + }, + { + "comments": 181, + "name": "wordnerd", + "top_posts": 20, + "total_payouts": "30.676 HBD" + }, + { + "comments": 6, + "name": "governmentintervention", + "top_posts": 1, + "total_payouts": "30.219 HBD" + }, + { + "comments": 7, + "name": "snapsteem", + "top_posts": 1, + "total_payouts": "30.173 HBD" + }, + { + "comments": 19, + "name": "hillary-clinton", + "top_posts": 3, + "total_payouts": "30.102 HBD" + }, + { + "comments": 18, + "name": "poems", + "top_posts": 14, + "total_payouts": "29.991 HBD" + }, + { + "comments": 22, + "name": "change", + "top_posts": 6, + "total_payouts": "29.978 HBD" + }, + { + "comments": 1, + "name": "neuroplasticity", + "top_posts": 1, + "total_payouts": "29.558 HBD" + }, + { + "comments": 9, + "name": "skyrim", + "top_posts": 17, + "total_payouts": "29.551 HBD" + }, + { + "comments": 5, + "name": "motiongraphics", + "top_posts": 1, + "total_payouts": "28.957 HBD" + }, + { + "comments": 1, + "name": "alchemy", + "top_posts": 3, + "total_payouts": "28.936 HBD" + }, + { + "comments": 14, + "name": "cryptography", + "top_posts": 4, + "total_payouts": "28.681 HBD" + }, + { + "comments": 5, + "name": "existence", + "top_posts": 2, + "total_payouts": "28.117 HBD" + }, + { + "comments": 11, + "name": "selfownership", + "top_posts": 2, + "total_payouts": "27.889 HBD" + }, + { + "comments": 3, + "name": "drummer", + "top_posts": 2, + "total_payouts": "27.401 HBD" + }, + { + "comments": 1, + "name": "summer", + "top_posts": 2, + "total_payouts": "27.347 HBD" + }, + { + "comments": 15, + "name": "latte", + "top_posts": 4, + "total_payouts": "27.165 HBD" + }, + { + "comments": 12, + "name": "demoscene", + "top_posts": 1, + "total_payouts": "26.426 HBD" + }, + { + "comments": 217, + "name": "spam", + "top_posts": 118, + "total_payouts": "26.349 HBD" + }, + { + "comments": 14, + "name": "keepit100", + "top_posts": 1, + "total_payouts": "26.337 HBD" + }, + { + "comments": 47, + "name": "journal", + "top_posts": 2, + "total_payouts": "26.227 HBD" + }, + { + "comments": 0, + "name": "drastic", + "top_posts": 1, + "total_payouts": "26.227 HBD" + }, + { + "comments": 20, + "name": "lsd", + "top_posts": 2, + "total_payouts": "26.127 HBD" + }, + { + "comments": 6, + "name": "anarchist", + "top_posts": 5, + "total_payouts": "25.921 HBD" + }, + { + "comments": 71, + "name": "promoted", + "top_posts": 4, + "total_payouts": "25.820 HBD" + }, + { + "comments": 13, + "name": "m", + "top_posts": 4, + "total_payouts": "25.814 HBD" + }, + { + "comments": 2, + "name": "tokyo", + "top_posts": 2, + "total_payouts": "25.805 HBD" + }, + { + "comments": 11, + "name": "dailydialogue", + "top_posts": 2, + "total_payouts": "25.548 HBD" + }, + { + "comments": 0, + "name": "cities", + "top_posts": 4, + "total_payouts": "25.346 HBD" + }, + { + "comments": 3, + "name": "render", + "top_posts": 3, + "total_payouts": "25.256 HBD" + }, + { + "comments": 4, + "name": "anachy", + "top_posts": 1, + "total_payouts": "25.002 HBD" + }, + { + "comments": 7, + "name": "issue", + "top_posts": 1, + "total_payouts": "24.771 HBD" + }, + { + "comments": 4, + "name": "jobs", + "top_posts": 3, + "total_payouts": "24.766 HBD" + }, + { + "comments": 80, + "name": "dash", + "top_posts": 22, + "total_payouts": "24.736 HBD" + }, + { + "comments": 22, + "name": "robotics", + "top_posts": 2, + "total_payouts": "24.705 HBD" + }, + { + "comments": 17, + "name": "consumerism", + "top_posts": 2, + "total_payouts": "24.657 HBD" + }, + { + "comments": 5, + "name": "storieslikethesereallymakeyouthinkaboutwhatgoesoninlifedonttheybecauseminordrinkingisbad", + "top_posts": 1, + "total_payouts": "24.320 HBD" + }, + { + "comments": 2, + "name": "ethics", + "top_posts": 6, + "total_payouts": "24.194 HBD" + }, + { + "comments": 11, + "name": "authority", + "top_posts": 2, + "total_payouts": "23.982 HBD" + }, + { + "comments": 12, + "name": "ico", + "top_posts": 12, + "total_payouts": "23.915 HBD" + }, + { + "comments": 11, + "name": "boinc", + "top_posts": 3, + "total_payouts": "23.878 HBD" + }, + { + "comments": 5, + "name": "fortgalt", + "top_posts": 1, + "total_payouts": "23.870 HBD" + }, + { + "comments": 21, + "name": "storychallenge", + "top_posts": 1, + "total_payouts": "23.763 HBD" + }, + { + "comments": 57, + "name": "parody", + "top_posts": 5, + "total_payouts": "23.619 HBD" + }, + { + "comments": 0, + "name": "ww3", + "top_posts": 3, + "total_payouts": "23.561 HBD" + }, + { + "comments": 4, + "name": "lawmaking", + "top_posts": 1, + "total_payouts": "23.427 HBD" + }, + { + "comments": 55, + "name": "death", + "top_posts": 17, + "total_payouts": "23.427 HBD" + }, + { + "comments": 16, + "name": "flagging", + "top_posts": 3, + "total_payouts": "23.359 HBD" + }, + { + "comments": 5, + "name": "principles", + "top_posts": 2, + "total_payouts": "23.267 HBD" + }, + { + "comments": 8, + "name": "self-improvement", + "top_posts": 3, + "total_payouts": "23.260 HBD" + }, + { + "comments": 0, + "name": "lights", + "top_posts": 1, + "total_payouts": "23.238 HBD" + }, + { + "comments": 4, + "name": "tornado", + "top_posts": 1, + "total_payouts": "23.185 HBD" + }, + { + "comments": 3, + "name": "analysis", + "top_posts": 5, + "total_payouts": "23.046 HBD" + }, + { + "comments": 7, + "name": "howtotalksteemit", + "top_posts": 1, + "total_payouts": "22.989 HBD" + }, + { + "comments": 9, + "name": "osc", + "top_posts": 2, + "total_payouts": "22.897 HBD" + }, + { + "comments": 13, + "name": "morning", + "top_posts": 5, + "total_payouts": "22.827 HBD" + }, + { + "comments": 2, + "name": "mixedmedia", + "top_posts": 1, + "total_payouts": "22.784 HBD" + }, + { + "comments": 2, + "name": "montreal", + "top_posts": 2, + "total_payouts": "22.714 HBD" + }, + { + "comments": 13, + "name": "aquarium", + "top_posts": 6, + "total_payouts": "22.412 HBD" + }, + { + "comments": 8, + "name": "puertorico", + "top_posts": 2, + "total_payouts": "22.364 HBD" + }, + { + "comments": 9, + "name": "minnow-report", + "top_posts": 1, + "total_payouts": "22.195 HBD" + }, + { + "comments": 4, + "name": "scince", + "top_posts": 1, + "total_payouts": "22.053 HBD" + }, + { + "comments": 3, + "name": "steemdle", + "top_posts": 1, + "total_payouts": "21.963 HBD" + }, + { + "comments": 11, + "name": "downtherabbithole", + "top_posts": 1, + "total_payouts": "21.787 HBD" + }, + { + "comments": 19, + "name": "dicordion", + "top_posts": 1, + "total_payouts": "21.783 HBD" + }, + { + "comments": 20, + "name": "feedback", + "top_posts": 1, + "total_payouts": "21.689 HBD" + }, + { + "comments": 16, + "name": "gratitude", + "top_posts": 3, + "total_payouts": "21.502 HBD" + }, + { + "comments": 1, + "name": "power-up", + "top_posts": 1, + "total_payouts": "21.251 HBD" + }, + { + "comments": 65, + "name": "steemgirls", + "top_posts": 27, + "total_payouts": "21.181 HBD" + }, + { + "comments": 2, + "name": "golf", + "top_posts": 3, + "total_payouts": "21.009 HBD" + }, + { + "comments": 81, + "name": "klyeart", + "top_posts": 4, + "total_payouts": "20.827 HBD" + }, + { + "comments": 1, + "name": "jewelscoin", + "top_posts": 2, + "total_payouts": "20.347 HBD" + }, + { + "comments": 5, + "name": "meow", + "top_posts": 1, + "total_payouts": "20.320 HBD" + }, + { + "comments": 20, + "name": "tickets", + "top_posts": 1, + "total_payouts": "20.303 HBD" + }, + { + "comments": 42, + "name": "voidart-argantuan", + "top_posts": 2, + "total_payouts": "20.032 HBD" + }, + { + "comments": 3, + "name": "scie", + "top_posts": 1, + "total_payouts": "20.026 HBD" + }, + { + "comments": 3, + "name": "television", + "top_posts": 2, + "total_payouts": "20.019 HBD" + }, + { + "comments": 27, + "name": "uber", + "top_posts": 13, + "total_payouts": "19.840 HBD" + }, + { + "comments": 29, + "name": "robotev", + "top_posts": 20, + "total_payouts": "19.812 HBD" + }, + { + "comments": 13, + "name": "gridcoin-weekly", + "top_posts": 3, + "total_payouts": "19.801 HBD" + }, + { + "comments": 9, + "name": "internet-story", + "top_posts": 1, + "total_payouts": "19.664 HBD" + }, + { + "comments": 7, + "name": "chinese", + "top_posts": 11, + "total_payouts": "19.459 HBD" + }, + { + "comments": 11, + "name": "cafe", + "top_posts": 1, + "total_payouts": "19.364 HBD" + }, + { + "comments": 47, + "name": "ai", + "top_posts": 14, + "total_payouts": "19.364 HBD" + }, + { + "comments": 15, + "name": "unheardvoices", + "top_posts": 1, + "total_payouts": "19.093 HBD" + }, + { + "comments": 52, + "name": "thegreencandle", + "top_posts": 5, + "total_payouts": "19.026 HBD" + }, + { + "comments": 73, + "name": "rant", + "top_posts": 10, + "total_payouts": "18.934 HBD" + }, + { + "comments": 13, + "name": "fascism", + "top_posts": 2, + "total_payouts": "18.915 HBD" + }, + { + "comments": 2, + "name": "time-travel", + "top_posts": 1, + "total_payouts": "18.782 HBD" + }, + { + "comments": 4, + "name": "debt", + "top_posts": 8, + "total_payouts": "18.655 HBD" + }, + { + "comments": 1, + "name": "sunrise", + "top_posts": 1, + "total_payouts": "18.580 HBD" + }, + { + "comments": 8, + "name": "ultra", + "top_posts": 1, + "total_payouts": "18.570 HBD" + }, + { + "comments": 16, + "name": "tile", + "top_posts": 1, + "total_payouts": "18.348 HBD" + }, + { + "comments": 20, + "name": "sochi", + "top_posts": 1, + "total_payouts": "18.289 HBD" + }, + { + "comments": 5, + "name": "falseflag", + "top_posts": 1, + "total_payouts": "18.237 HBD" + }, + { + "comments": 5, + "name": "state", + "top_posts": 2, + "total_payouts": "18.033 HBD" + }, + { + "comments": 1, + "name": "faeria", + "top_posts": 1, + "total_payouts": "17.886 HBD" + }, + { + "comments": 14, + "name": "university", + "top_posts": 2, + "total_payouts": "17.762 HBD" + }, + { + "comments": 50, + "name": "flatearth", + "top_posts": 10, + "total_payouts": "17.532 HBD" + }, + { + "comments": 21, + "name": "teaching", + "top_posts": 7, + "total_payouts": "17.502 HBD" + }, + { + "comments": 3, + "name": "encouragement", + "top_posts": 1, + "total_payouts": "17.194 HBD" + }, + { + "comments": 9, + "name": "mobypicture", + "top_posts": 1, + "total_payouts": "16.976 HBD" + }, + { + "comments": 14, + "name": "monsanto", + "top_posts": 3, + "total_payouts": "16.934 HBD" + }, + { + "comments": 15, + "name": "auto", + "top_posts": 2, + "total_payouts": "16.831 HBD" + }, + { + "comments": 27, + "name": "aviewaday", + "top_posts": 4, + "total_payouts": "16.653 HBD" + }, + { + "comments": 25, + "name": "brexit", + "top_posts": 6, + "total_payouts": "16.652 HBD" + }, + { + "comments": 16, + "name": "savings", + "top_posts": 5, + "total_payouts": "16.589 HBD" + }, + { + "comments": 48, + "name": "wordchallenge", + "top_posts": 4, + "total_payouts": "16.560 HBD" + }, + { + "comments": 29, + "name": "steemit-hunt", + "top_posts": 4, + "total_payouts": "16.528 HBD" + }, + { + "comments": 6, + "name": "affiliate", + "top_posts": 5, + "total_payouts": "16.514 HBD" + }, + { + "comments": 15, + "name": "challenge", + "top_posts": 5, + "total_payouts": "16.478 HBD" + }, + { + "comments": 12, + "name": "chiptune", + "top_posts": 3, + "total_payouts": "16.425 HBD" + }, + { + "comments": 14, + "name": "promotion", + "top_posts": 4, + "total_payouts": "16.401 HBD" + }, + { + "comments": 1, + "name": "freiheit", + "top_posts": 11, + "total_payouts": "16.364 HBD" + }, + { + "comments": 4, + "name": "steemitsignchallenge", + "top_posts": 1, + "total_payouts": "16.203 HBD" + }, + { + "comments": 11, + "name": "romance", + "top_posts": 5, + "total_payouts": "16.190 HBD" + }, + { + "comments": 27, + "name": "courage", + "top_posts": 1, + "total_payouts": "16.164 HBD" + }, + { + "comments": 4, + "name": "mytown", + "top_posts": 1, + "total_payouts": "16.162 HBD" + }, + { + "comments": 47, + "name": "ru-steem", + "top_posts": 6, + "total_payouts": "16.073 HBD" + }, + { + "comments": 51, + "name": "it-steem", + "top_posts": 7, + "total_payouts": "16.017 HBD" + }, + { + "comments": 21, + "name": "robots", + "top_posts": 7, + "total_payouts": "15.872 HBD" + }, + { + "comments": 83, + "name": "steemit-abuse", + "top_posts": 3, + "total_payouts": "15.806 HBD" + }, + { + "comments": 99, + "name": "magiceyechallenge", + "top_posts": 4, + "total_payouts": "15.798 HBD" + }, + { + "comments": 3, + "name": "ceremonies", + "top_posts": 3, + "total_payouts": "15.632 HBD" + }, + { + "comments": 1, + "name": "assetbasedcommunitydevelopment", + "top_posts": 1, + "total_payouts": "15.573 HBD" + }, + { + "comments": 2, + "name": "hiatus", + "top_posts": 1, + "total_payouts": "15.493 HBD" + }, + { + "comments": 29, + "name": "studying", + "top_posts": 1, + "total_payouts": "15.445 HBD" + }, + { + "comments": 6, + "name": "princess", + "top_posts": 2, + "total_payouts": "15.439 HBD" + }, + { + "comments": 10, + "name": "steemlife", + "top_posts": 8, + "total_payouts": "15.370 HBD" + }, + { + "comments": 2, + "name": "freetheareola", + "top_posts": 1, + "total_payouts": "15.186 HBD" + }, + { + "comments": 2, + "name": "wish", + "top_posts": 1, + "total_payouts": "15.136 HBD" + }, + { + "comments": 3, + "name": "minnowsunte", + "top_posts": 1, + "total_payouts": "15.048 HBD" + }, + { + "comments": 5, + "name": "beekeepering", + "top_posts": 1, + "total_payouts": "14.932 HBD" + }, + { + "comments": 30, + "name": "rip", + "top_posts": 3, + "total_payouts": "14.924 HBD" + }, + { + "comments": 4, + "name": "humblebundle", + "top_posts": 1, + "total_payouts": "14.906 HBD" + }, + { + "comments": 0, + "name": "socialismsucks", + "top_posts": 1, + "total_payouts": "14.759 HBD" + }, + { + "comments": 4, + "name": "fulltiltanarchy", + "top_posts": 1, + "total_payouts": "14.743 HBD" + }, + { + "comments": 17, + "name": "human", + "top_posts": 4, + "total_payouts": "14.734 HBD" + }, + { + "comments": 10, + "name": "american", + "top_posts": 6, + "total_payouts": "14.716 HBD" + }, + { + "comments": 22, + "name": "political", + "top_posts": 13, + "total_payouts": "14.682 HBD" + }, + { + "comments": 3, + "name": "steemit-howto", + "top_posts": 1, + "total_payouts": "14.469 HBD" + }, + { + "comments": 0, + "name": "pt", + "top_posts": 1, + "total_payouts": "14.341 HBD" + }, + { + "comments": 9, + "name": "multi-rotors", + "top_posts": 1, + "total_payouts": "14.212 HBD" + }, + { + "comments": 85, + "name": "finance", + "top_posts": 34, + "total_payouts": "14.155 HBD" + }, + { + "comments": 20, + "name": "begging", + "top_posts": 1, + "total_payouts": "14.073 HBD" + }, + { + "comments": 4, + "name": "forgottenhistory", + "top_posts": 1, + "total_payouts": "13.827 HBD" + }, + { + "comments": 6, + "name": "ransomware", + "top_posts": 2, + "total_payouts": "13.629 HBD" + }, + { + "comments": 5, + "name": "wrestling", + "top_posts": 3, + "total_payouts": "13.595 HBD" + }, + { + "comments": 21, + "name": "housedecor", + "top_posts": 1, + "total_payouts": "13.529 HBD" + }, + { + "comments": 4, + "name": "philsophy", + "top_posts": 1, + "total_payouts": "13.467 HBD" + }, + { + "comments": 18, + "name": "japan", + "top_posts": 11, + "total_payouts": "13.263 HBD" + }, + { + "comments": 10, + "name": "ja-blockchain", + "top_posts": 13, + "total_payouts": "13.172 HBD" + }, + { + "comments": 68, + "name": "dots", + "top_posts": 31, + "total_payouts": "13.150 HBD" + }, + { + "comments": 13, + "name": "dadbod", + "top_posts": 1, + "total_payouts": "12.936 HBD" + }, + { + "comments": 12, + "name": "swagsunday", + "top_posts": 1, + "total_payouts": "12.864 HBD" + }, + { + "comments": 4, + "name": "anarchocapitalism", + "top_posts": 3, + "total_payouts": "12.827 HBD" + }, + { + "comments": 20, + "name": "seasteading", + "top_posts": 2, + "total_payouts": "12.562 HBD" + }, + { + "comments": 7, + "name": "subconscious", + "top_posts": 1, + "total_payouts": "12.385 HBD" + }, + { + "comments": 9, + "name": "steemspot", + "top_posts": 1, + "total_payouts": "12.358 HBD" + }, + { + "comments": 63, + "name": "introduce", + "top_posts": 42, + "total_payouts": "12.345 HBD" + }, + { + "comments": 7, + "name": "pschology", + "top_posts": 1, + "total_payouts": "12.298 HBD" + }, + { + "comments": 13, + "name": "tribute", + "top_posts": 1, + "total_payouts": "12.289 HBD" + }, + { + "comments": 60, + "name": "outdoors", + "top_posts": 3, + "total_payouts": "12.246 HBD" + }, + { + "comments": 1, + "name": "americana", + "top_posts": 1, + "total_payouts": "12.241 HBD" + }, + { + "comments": 41, + "name": "promote", + "top_posts": 6, + "total_payouts": "12.125 HBD" + }, + { + "comments": 22, + "name": "blackjintrader", + "top_posts": 7, + "total_payouts": "12.109 HBD" + }, + { + "comments": 10, + "name": "star", + "top_posts": 4, + "total_payouts": "12.060 HBD" + }, + { + "comments": 15, + "name": "yinyang", + "top_posts": 3, + "total_payouts": "12.040 HBD" + }, + { + "comments": 13, + "name": "homesteading", + "top_posts": 5, + "total_payouts": "11.782 HBD" + }, + { + "comments": 29, + "name": "steemit-update", + "top_posts": 1, + "total_payouts": "11.777 HBD" + }, + { + "comments": 0, + "name": "cybernetics", + "top_posts": 1, + "total_payouts": "11.762 HBD" + }, + { + "comments": 30, + "name": "pokemon", + "top_posts": 43, + "total_payouts": "11.715 HBD" + }, + { + "comments": 18, + "name": "bioinformatics", + "top_posts": 1, + "total_payouts": "11.643 HBD" + }, + { + "comments": 3, + "name": "craigslist", + "top_posts": 1, + "total_payouts": "11.623 HBD" + }, + { + "comments": 70, + "name": "streemian", + "top_posts": 2, + "total_payouts": "11.553 HBD" + }, + { + "comments": 15, + "name": "france", + "top_posts": 13, + "total_payouts": "11.533 HBD" + }, + { + "comments": 108, + "name": "investment", + "top_posts": 43, + "total_payouts": "11.493 HBD" + }, + { + "comments": 15, + "name": "excercise", + "top_posts": 1, + "total_payouts": "11.420 HBD" + }, + { + "comments": 20, + "name": "wow", + "top_posts": 3, + "total_payouts": "11.305 HBD" + }, + { + "comments": 39, + "name": "christianity", + "top_posts": 13, + "total_payouts": "11.036 HBD" + }, + { + "comments": 6, + "name": "topless", + "top_posts": 1, + "total_payouts": "11.005 HBD" + }, + { + "comments": 0, + "name": "esport", + "top_posts": 1, + "total_payouts": "10.913 HBD" + }, + { + "comments": 4, + "name": "eth", + "top_posts": 5, + "total_payouts": "10.729 HBD" + }, + { + "comments": 5, + "name": "artificialintelligence", + "top_posts": 2, + "total_payouts": "10.619 HBD" + }, + { + "comments": 131, + "name": "usersummary", + "top_posts": 2, + "total_payouts": "10.533 HBD" + }, + { + "comments": 18, + "name": "handmade", + "top_posts": 5, + "total_payouts": "10.475 HBD" + }, + { + "comments": 12, + "name": "rape", + "top_posts": 4, + "total_payouts": "10.378 HBD" + }, + { + "comments": 31, + "name": "mystery", + "top_posts": 10, + "total_payouts": "10.277 HBD" + }, + { + "comments": 1, + "name": "bananapi", + "top_posts": 1, + "total_payouts": "10.246 HBD" + }, + { + "comments": 5, + "name": "steemit-new", + "top_posts": 1, + "total_payouts": "10.205 HBD" + }, + { + "comments": 19, + "name": "sunset", + "top_posts": 7, + "total_payouts": "10.013 HBD" + }, + { + "comments": 12, + "name": "buzadi", + "top_posts": 1, + "total_payouts": "9.927 HBD" + }, + { + "comments": 8, + "name": "cn-fishing", + "top_posts": 1, + "total_payouts": "9.825 HBD" + }, + { + "comments": 13, + "name": "diving", + "top_posts": 1, + "total_payouts": "9.782 HBD" + }, + { + "comments": 25, + "name": "russia", + "top_posts": 13, + "total_payouts": "9.542 HBD" + }, + { + "comments": 14, + "name": "changemakers", + "top_posts": 2, + "total_payouts": "9.534 HBD" + }, + { + "comments": 3, + "name": "handcraft", + "top_posts": 1, + "total_payouts": "9.415 HBD" + }, + { + "comments": 2, + "name": "conundrum", + "top_posts": 1, + "total_payouts": "9.376 HBD" + }, + { + "comments": 5, + "name": "motorcycle", + "top_posts": 2, + "total_payouts": "9.344 HBD" + }, + { + "comments": 9, + "name": "ghosts", + "top_posts": 3, + "total_payouts": "9.284 HBD" + }, + { + "comments": 4, + "name": "photographie", + "top_posts": 1, + "total_payouts": "9.256 HBD" + }, + { + "comments": 65, + "name": "facebook", + "top_posts": 36, + "total_payouts": "9.220 HBD" + }, + { + "comments": 0, + "name": "bittrex", + "top_posts": 3, + "total_payouts": "9.182 HBD" + }, + { + "comments": 0, + "name": "poor", + "top_posts": 1, + "total_payouts": "9.179 HBD" + }, + { + "comments": 0, + "name": "preciousmoments", + "top_posts": 1, + "total_payouts": "9.071 HBD" + }, + { + "comments": 7, + "name": "prostitution", + "top_posts": 1, + "total_payouts": "9.051 HBD" + }, + { + "comments": 19, + "name": "newyork", + "top_posts": 5, + "total_payouts": "9.041 HBD" + }, + { + "comments": 9, + "name": "opencv", + "top_posts": 1, + "total_payouts": "9.041 HBD" + }, + { + "comments": 3, + "name": "cave", + "top_posts": 1, + "total_payouts": "9.023 HBD" + }, + { + "comments": 64, + "name": "harassment", + "top_posts": 3, + "total_payouts": "8.954 HBD" + }, + { + "comments": 20, + "name": "norway", + "top_posts": 8, + "total_payouts": "8.947 HBD" + }, + { + "comments": 5, + "name": "climatechange", + "top_posts": 3, + "total_payouts": "8.902 HBD" + }, + { + "comments": 8, + "name": "insurance", + "top_posts": 3, + "total_payouts": "8.833 HBD" + }, + { + "comments": 50, + "name": "silverbugs", + "top_posts": 3, + "total_payouts": "8.730 HBD" + }, + { + "comments": 26, + "name": "humanity", + "top_posts": 11, + "total_payouts": "8.633 HBD" + }, + { + "comments": 1, + "name": "corruption", + "top_posts": 6, + "total_payouts": "8.499 HBD" + }, + { + "comments": 5, + "name": "electric-toothbrush", + "top_posts": 1, + "total_payouts": "8.483 HBD" + }, + { + "comments": 16, + "name": "puzzle", + "top_posts": 8, + "total_payouts": "8.413 HBD" + }, + { + "comments": 2, + "name": "nonfiction", + "top_posts": 1, + "total_payouts": "8.408 HBD" + }, + { + "comments": 10, + "name": "recommended", + "top_posts": 3, + "total_payouts": "8.407 HBD" + }, + { + "comments": 8, + "name": "jail", + "top_posts": 3, + "total_payouts": "8.362 HBD" + }, + { + "comments": 9, + "name": "bass", + "top_posts": 3, + "total_payouts": "8.289 HBD" + }, + { + "comments": 8, + "name": "activism", + "top_posts": 3, + "total_payouts": "8.175 HBD" + }, + { + "comments": 5, + "name": "coinsupply", + "top_posts": 1, + "total_payouts": "8.133 HBD" + }, + { + "comments": 34, + "name": "follow", + "top_posts": 7, + "total_payouts": "8.107 HBD" + }, + { + "comments": 26, + "name": "biohacking", + "top_posts": 10, + "total_payouts": "8.100 HBD" + }, + { + "comments": 20, + "name": "tips", + "top_posts": 17, + "total_payouts": "8.018 HBD" + }, + { + "comments": 1, + "name": "luck", + "top_posts": 2, + "total_payouts": "7.931 HBD" + }, + { + "comments": 3, + "name": "foodie", + "top_posts": 1, + "total_payouts": "7.901 HBD" + }, + { + "comments": 58, + "name": "memo", + "top_posts": 3, + "total_payouts": "7.861 HBD" + }, + { + "comments": 8, + "name": "lawenforcment", + "top_posts": 1, + "total_payouts": "7.853 HBD" + }, + { + "comments": 9, + "name": "introducingmyself", + "top_posts": 2, + "total_payouts": "7.809 HBD" + }, + { + "comments": 13, + "name": "wedding", + "top_posts": 9, + "total_payouts": "7.768 HBD" + }, + { + "comments": 6, + "name": "college101", + "top_posts": 3, + "total_payouts": "7.674 HBD" + }, + { + "comments": 7, + "name": "korean", + "top_posts": 5, + "total_payouts": "7.662 HBD" + }, + { + "comments": 20, + "name": "wallpapers", + "top_posts": 3, + "total_payouts": "7.617 HBD" + }, + { + "comments": 16, + "name": "popular", + "top_posts": 1, + "total_payouts": "7.561 HBD" + }, + { + "comments": 26, + "name": "wordpress", + "top_posts": 17, + "total_payouts": "7.524 HBD" + }, + { + "comments": 2, + "name": "fantasyfootball", + "top_posts": 1, + "total_payouts": "7.522 HBD" + }, + { + "comments": 5, + "name": "childhood", + "top_posts": 2, + "total_payouts": "7.497 HBD" + }, + { + "comments": 0, + "name": "plesk", + "top_posts": 1, + "total_payouts": "7.461 HBD" + }, + { + "comments": 7, + "name": "spirit", + "top_posts": 4, + "total_payouts": "7.448 HBD" + }, + { + "comments": 1, + "name": "vpn", + "top_posts": 3, + "total_payouts": "7.307 HBD" + }, + { + "comments": 46, + "name": "vegetable-artcarving", + "top_posts": 5, + "total_payouts": "7.244 HBD" + }, + { + "comments": 0, + "name": "imagej", + "top_posts": 1, + "total_payouts": "7.179 HBD" + }, + { + "comments": 0, + "name": "eurozone", + "top_posts": 1, + "total_payouts": "7.094 HBD" + } +] diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index 79d0b40b..753784be 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -916,7 +916,7 @@ --- test_name: Hivemind bridge_api.unread_notifications patterns test - not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest - failing @@ -947,7 +947,7 @@ --- test_name: Hivemind bridge_api.get_payout_stats patterns test - not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest @@ -976,7 +976,7 @@ --- test_name: Hivemind bridge_api.get_payout_stats over limit test - not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest @@ -1003,7 +1003,7 @@ data: "limit exceeds max (251 > 250)" --- test_name: Hivemind bridge_api.get_community patterns test - not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest - failing @@ -1034,7 +1034,7 @@ --- test_name: Hivemind bridge_api.list_communities patterns test - not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest # no nonempty result possible for 5mln set @@ -1092,7 +1092,7 @@ --- test_name: Hivemind bridge_api.list_subscribers patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest # no nonempty result possible for 5mln set diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index c32f2653..8cd379c4 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -55,6 +55,34 @@ extra_kwargs: method: "get_followers_last" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_followers ignore type patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_followers ignore type + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_followers" + params: ["steemit",null,"ignore",100] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_followers_ignore" + directory: "condenser_api_patterns" --- test_name: Hivemind condenser_api.get_followers no followers patterns test @@ -112,6 +140,34 @@ function: validate_response:compare_error_data extra_kwargs: data: "limit exceeds max (1001 > 1000)" +--- + test_name: Hivemind condenser_api.get_followers wrong_type patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_followers wrong type + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_followers" + params: ["brightnesssoulds",null,"wrong_type",1000] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "invalid follow_type `wrong_type`" + --- test_name: Hivemind condenser_api.get_following patterns test @@ -179,7 +235,7 @@ - !include common.yaml stages: - - name: get_following last + - name: get_following no following request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -198,6 +254,61 @@ method: "get_following_no_following" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_following ignore_type patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_following ignore_type + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_following" + params: ["brightnesssoulds",null,"ignore",1000] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_following_ignore" + directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_following wrong_type patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_following wrong_type + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_following" + params: ["brightnesssoulds",null,"wrong_type",1000] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "invalid follow_type `wrong_type`" --- test_name: Hivemind condenser_api.get_following over limit test @@ -366,6 +477,33 @@ extra_kwargs: method: "get_content_gtg" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_content deleted post patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_content gtg + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_content" + params: ["jsc", "testing-summary"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "IndexError: list index out of range" --- test_name: Hivemind condenser_api.get_content_replies patterns test @@ -455,6 +593,62 @@ method: "get_trending_tags" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_trending_tags limit 250 patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_trending_tags limit 250 + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_trending_tags" + params: {"start_tag": "dream","limit":250} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_trending_tags_limit_250" + directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_trending_tags over limit patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_trending_tags limit 250 + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_trending_tags" + params: {"start_tag": "dream","limit":251} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "limit exceeds max (251 > 250)" --- test_name: Hivemind condenser_api.get_discussions_by_trending patterns test @@ -917,6 +1111,33 @@ extra_kwargs: method: "get_discussions_by_author_before_date_no_results" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_discussions_by_author_before_date over limit patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_discussions_by_author over limit + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_discussions_by_author_before_date" + params: {"author":"steemit","start_permlink":"firstpost","before_date":"2009-04-19T22:49:43","limit":101} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "limit exceeds max (101 > 100)" --- test_name: Hivemind condenser_api.get_post_discussions_by_payout patterns test @@ -1003,6 +1224,34 @@ method: "get_post_discussions_by_payout_no_results" directory: "condenser_api_patterns" +--- + test_name: Hivemind condenser_api.get_post_discussions_by_payout over limit test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_post_discussions_by_payout over limit + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_post_discussions_by_payout" + params: {"tag":"tag","limit":101} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "limit exceeds max (101 > 100)" + --- test_name: Hivemind condenser_api.get_comment_discussions_by_payout patterns test @@ -1087,6 +1336,35 @@ extra_kwargs: method: "get_comment_discussions_by_payout_no_results" directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_comment_discussions_by_payout over limit test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_comment_discussions_by_payout over limit + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_comment_discussions_by_payout" + params: {"tag":"tag","limit":101} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "limit exceeds max (101 > 100)" + --- test_name: Hivemind condenser_api.get_blog patterns test @@ -1115,6 +1393,35 @@ extra_kwargs: method: "get_blog" directory: "condenser_api_patterns" + +--- + test_name: Hivemind condenser_api.get_blog invalid limit combination patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + # strange error - when limit exceeds the number of posts written by user it should return all posts - not error + stages: + - name: get_blog invalid limit combination + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "condenser_api.get_blog" + params: {"account":"gtg","start_entry_id":11,"limit":20} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "start_index and limit combination is invalid (11, 20)" + --- test_name: Hivemind condenser_api.get_blog limit 100 patterns test -- GitLab From 97a326355bfbdaf4029b5e527adc81798285b46d Mon Sep 17 00:00:00 2001 From: Paulina Czempiel Date: Wed, 19 Aug 2020 14:52:55 +0200 Subject: [PATCH 28/49] bridge_api tests --- .../get_payout_stats_10.pat.json | 77 ++ ...get_relationship_between_accounts.pat.json | 6 + ..._between_accounts_change_accounts.pat.json | 7 + ...nship_between_accounts_true_state.pat.json | 7 + ...hip_between_accounts_true_state_2.pat.json | 7 + .../list_pop_communities_author.pat.json | 1 + .../test_bridge_api_patterns.tavern.yaml | 970 +++++++++++++++++- .../test_condenser_api_patterns.tavern.yaml | 24 +- 8 files changed, 1086 insertions(+), 13 deletions(-) create mode 100644 hivemind/tavern/bridge_api_patterns/get_payout_stats_10.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_change_accounts.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/list_pop_communities_author.pat.json diff --git a/hivemind/tavern/bridge_api_patterns/get_payout_stats_10.pat.json b/hivemind/tavern/bridge_api_patterns/get_payout_stats_10.pat.json new file mode 100644 index 00000000..e6781158 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_payout_stats_10.pat.json @@ -0,0 +1,77 @@ +{ + "blogs": 1862448.272, + "items": [ + [ + "@charlieshrem", + "@charlieshrem", + 62129.025, + 142, + null + ], + [ + "@ericvancewalton", + "@ericvancewalton", + 58181.592, + 678, + null + ], + [ + "@gavvet", + "@gavvet", + 48153.825, + 206, + null + ], + [ + "@dollarvigilante", + "@dollarvigilante", + 36194.554, + 141, + null + ], + [ + "@knozaki2015", + "@knozaki2015", + 34414.827, + 918, + null + ], + [ + "@sirwinchester", + "@sirwinchester", + 31843.607, + 992, + null + ], + [ + "@calaber24p", + "@calaber24p", + 29554.962, + 181, + null + ], + [ + "@sascha", + "@sascha", + 27419.049, + 187, + null + ], + [ + "@terrycraft", + "@terrycraft", + 24246.728, + 200, + null + ], + [ + "@dragonslayer109", + "@dragonslayer109", + 23209.361, + 374, + null + ] + ], + "total": 1862448.272 + } + \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.pat.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.pat.json new file mode 100644 index 00000000..477776a9 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.pat.json @@ -0,0 +1,6 @@ +{ + "follows": false, + "ignores": false, + "is_blacklisted": false, + "follows_blacklists": false +} \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_change_accounts.pat.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_change_accounts.pat.json new file mode 100644 index 00000000..93da2992 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_change_accounts.pat.json @@ -0,0 +1,7 @@ +{ + "follows": false, + "follows_blacklists": false, + "ignores": false, + "is_blacklisted": false + } + \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state.pat.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state.pat.json new file mode 100644 index 00000000..74a70824 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state.pat.json @@ -0,0 +1,7 @@ +{ + "follows": true, + "follows_blacklists": false, + "ignores": false, + "is_blacklisted": false + } + \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2.pat.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2.pat.json new file mode 100644 index 00000000..f75de7a2 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2.pat.json @@ -0,0 +1,7 @@ +{ + "follows": false, + "follows_blacklists": false, + "ignores": true, + "is_blacklisted": false + } + \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/list_pop_communities_author.pat.json b/hivemind/tavern/bridge_api_patterns/list_pop_communities_author.pat.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/list_pop_communities_author.pat.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index 79d0b40b..81ce9281 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -1146,4 +1146,972 @@ function: validate_response:compare_response_with_pattern extra_kwargs: method: "list_all_subscriptions" - directory: "bridge_api_patterns" \ No newline at end of file + directory: "bridge_api_patterns" + +--- + test_name: Hivemind bridge_api.list_all_subscriptions patterns test wrong account + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: list_all_subscriptions + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.list_all_subscriptions" + params: {"account":"wyuh"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "account not found: `wyuh`" + +--- + test_name: Hivemind bridge_api.list_all_subscriptions patterns test wrong account + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: list_all_subscriptions + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.list_all_subscriptions" + params: {"account":""} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "no account name specified" + +--- + test_name: Hivemind bridge_api.list_all_subscriptions patterns test wrong account + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: list_all_subscriptions + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.list_all_subscriptions" + params: {"test":"gtg"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "'account' parameter lacking default value" + +--- + test_name: Hivemind bridge_api.list_all_subscriptions patterns test + + marks: + - patterntest # same with params: {account: "steemit"} + # no nonempty result possible for 5mln set + includes: + - !include common.yaml + + stages: + - name: list_all_subscriptions + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.list_all_subscriptions" + params: ["steemit"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_all_subscriptions" + directory: "bridge_api_patterns" + +--- + test_name: Hivemind bridge_api.list_subscribers patterns test # not documented + marks: + - patterntest # no nonempty result possible for 5mln set + + includes: + - !include common.yaml + + stages: + - name: list_subscribers + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.list_subscribers" + params: [] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "'community' parameter lacking default value" + +--- + test_name: Hivemind bridge_api.list_subscribers patterns test # not documented + # failed - tavern response: [] + + marks: + - patterntest + - xfail + + includes: + - !include common.yaml + + stages: + - name: list_subscribers + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.list_subscribers" + params: ['789'] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "Expecting value: line 4 column 13 (char 71)" + +--- + test_name: Hivemind bridge_api.list_subscribers patterns test # not documented + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: list_subscribers + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.list_subscribers" + params: [789] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "UndefinedFunction: operator does not exist: character varying = integer\nLINE 1: SELECT id FROM hive_communities WHERE name = 789\n ^\nHINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.\n" + +--- + test_name: Hivemind bridge_api.list_subscribers patterns test # not documented + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: list_subscribers + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.list_subscribers" + params: ["789"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "list_all_subscriptions" + directory: "bridge_api_patterns" + +--- + test_name: Hivemind bridge_api.get_payout_stats patterns test 10 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_payout_stats + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_payout_stats" + params: [10] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_payout_stats_10" + directory: "bridge_api_patterns" + +--- + test_name: Hivemind bridge_api.get_payout_stats patterns test 10 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_payout_stats + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_payout_stats" + params: [-1] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "limit must be positive" + +--- + test_name: Hivemind bridge_api.get_payout_stats patterns test 10 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_payout_stats + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_payout_stats" + params: ["10", ""] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "too many positional arguments" + +--- + test_name: Hivemind bridge_api.get_payout_stats patterns test 10 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_payout_stats + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_payout_stats" + params: [""] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "ValueError: invalid literal for int() with base 10: ''" + +--- + test_name: Hivemind bridge_api.post_notifications patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: post_notifications + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.post_notifications" + params: ["steemit","firstpost", ""] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "InvalidTextRepresentation: invalid input syntax for integer: \"\"\nLINE 11: AND score >= ''\n ^\n" + +--- + test_name: Hivemind bridge_api.post_notifications patterns test + # author and permlink must be both to find post id + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: post_notifications + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.post_notifications" + params: ["steemit","", ""] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "post id not found" + +--- + test_name: Hivemind bridge_api.post_notifications patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: post_notifications + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.post_notifications" + params: [""] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "'permlink' parameter lacking default value" + +--- + test_name: Hivemind bridge_api.list_pop_communities patterns test # 8080 + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + # no nonempty result possible for 5mln set + + marks: + - patterntest + + + includes: + - !include common.yaml + + stages: + - name: list_pop_communities + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.list_pop_communities" + params: ["steemit"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "ValueError: invalid literal for int() with base 10: 'steemit'" + +--- + test_name: Hivemind bridge_api.list_pop_communities patterns test # 8080 023 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: list_pop_communities + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.list_pop_communities" + params: [""] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "ValueError: invalid literal for int() with base 10: ''" + +--- + test_name: Hivemind bridge_api.list_pop_communities patterns test # 8080 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: list_pop_communities + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.list_pop_communities" + params: ["", "1"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "too many positional arguments" + +--- + test_name: Hivemind bridge_api.list_pop_communities patterns test # 8080 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: list_pop_communities + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.list_pop_communities" + params: [77] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "limit exceeds max (77 > 25)" + +--- + test_name: Hivemind bridge_api.list_pop_communities patterns test # 8080 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: list_pop_communities + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.list_pop_communities" + params: ["25"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "InvalidRequestError: A value is required for bind parameter 'cutoff' (Background on this error at: http://sqlalche.me/e/13/cd3x)" + +--- + test_name: Hivemind bridge_api.get_community_context patterns test # 8080 + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + # no communities for 5mln set + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_community_context + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_community_context" + params: {"account": "steemit","name": "Hive Gaming"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "community not found" + +--- + test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + # no true from follow_blacklists and blacklisted for 5mln set + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_relationship_between_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_relationship_between_accounts" + params: {"account1": "chhaylin","account2": "cannabisclub"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_relationship_between_accounts" + directory: "bridge_api_patterns" + +--- + test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + # no true from follow_blacklists and blacklisted for 5mln set + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_relationship_between_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_relationship_between_accounts" + params: {"account1": "jsc","account2": "max-keiser"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_relationship_between_accounts_true_state" + directory: "bridge_api_patterns" + +--- + test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_relationship_between_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_relationship_between_accounts" + params: {"account1": "tinfoilfedora","account2": "tonyson"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_relationship_between_accounts_true_state_2" + directory: "bridge_api_patterns" + +--- + test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_relationship_between_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_relationship_between_accounts" + params: {"account1": "tinfoilfedora"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "'account2' parameter lacking default value" + +--- + test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_relationship_between_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_relationship_between_accounts" + params: {"account": "tinfoilfedora"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "'account1' parameter lacking default value" + +--- + test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_relationship_between_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_relationship_between_accounts" + params: {"account1": "tinfoilfedora","account2": "tonyson","observer": "tinfoilfedora"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_relationship_between_accounts_true_state_2" + directory: "bridge_api_patterns" + +--- + test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_relationship_between_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_relationship_between_accounts" + params: {"account1": "","account2": "",} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "invalid account (not specified)" + +--- + test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_relationship_between_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_relationship_between_accounts" + params: {"account1": "tinfoilfedora","account2": "",} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "invalid account (not specified)" + +--- + test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_relationship_between_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_relationship_between_accounts" + params: {"account2": "tinfoilfedora","account1": "tonyson"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_relationship_between_accounts_change_accounts" + directory: "bridge_api_patterns" + +--- + test_name: Hivemind bridge_api.get_profile patterns test + #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_profile + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_profile" + params: {"account":"468"} + response: + status_code: 200 + verify_response_with: + function: validate_response:null_result + +--- + test_name: Hivemind bridge_api.get_profile patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_profile + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_profile" + params: {"account":789} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "invalid account name type" + +--- + test_name: Hivemind bridge_api.get_profile patterns test + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_profile + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_profile" + params: {} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "'account' parameter lacking default value" + +--- + test_name: Hivemind bridge_api.get_trending_topics patterns over limit test + # not documented + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_trending_topics over limit + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_trending_topics" + params: {"limit": "-7"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_error_data + extra_kwargs: + data: "limit must be positive" \ No newline at end of file diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index 55cf6af3..89a243d5 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -1543,7 +1543,7 @@ directory: "condenser_api_patterns" --- - test_name: Hivemind condenser_api.get_active_votes patterns test all data + test_name: Hivemind condenser_api.get_active_votes patterns test all data 33091 marks: - patterntest @@ -1572,7 +1572,7 @@ directory: "condenser_api_patterns" --- - test_name: Hivemind condenser_api.get_active_votes patterns test no data + test_name: Hivemind condenser_api.get_active_votes patterns test no data 33091 marks: - patterntest # required values @@ -1600,7 +1600,7 @@ message: "unknown key:unknown key: " --- - test_name: Hivemind condenser_api.get_active_votes patterns test author + test_name: Hivemind condenser_api.get_active_votes patterns test author 33091 marks: - patterntest # required values @@ -1628,7 +1628,7 @@ message: "unknown key:unknown key: " --- - test_name: Hivemind condenser_api.get_active_votes patterns test empty votes + test_name: Hivemind condenser_api.get_active_votes patterns test empty votes 33091 marks: - patterntest @@ -1658,7 +1658,7 @@ --- - test_name: Hivemind condenser_api.get_active_votes patterns test wrong author + test_name: Hivemind condenser_api.get_active_votes patterns test wrong author 33091 marks: - patterntest @@ -1686,7 +1686,7 @@ message: "unknown key:unknown key: " --- - test_name: Hivemind condenser_api.get_active_votes patterns test 3 args + test_name: Hivemind condenser_api.get_active_votes patterns test 3 args 33091 marks: - patterntest @@ -1714,7 +1714,7 @@ message: "Assert Exception:args.size() == 2: Expected #s argument(s), was 3" --- - test_name: Hivemind condenser_api.get_accounts patterns test no data + test_name: Hivemind condenser_api.get_accounts patterns test no data 33091 marks: - patterntest @@ -1743,7 +1743,7 @@ directory: "condenser_api_patterns" --- - test_name: Hivemind condenser_api.get_accounts patterns test one + test_name: Hivemind condenser_api.get_accounts patterns test one 33091 marks: - patterntest @@ -1772,7 +1772,7 @@ directory: "condenser_api_patterns" --- - test_name: Hivemind condenser_api.get_accounts patterns test two + test_name: Hivemind condenser_api.get_accounts patterns test two 33091 marks: - patterntest @@ -1801,7 +1801,7 @@ directory: "condenser_api_patterns" --- - test_name: Hivemind condenser_api.get_accounts patterns test double + test_name: Hivemind condenser_api.get_accounts patterns test double 33091 marks: - patterntest @@ -1829,7 +1829,7 @@ directory: "condenser_api_patterns" --- - test_name: Hivemind condenser_api.get_accounts patterns test much + test_name: Hivemind condenser_api.get_accounts patterns test much 33091 marks: - patterntest @@ -1857,7 +1857,7 @@ directory: "condenser_api_patterns" --- - test_name: Hivemind condenser_api.get_accounts patterns test wrong name + test_name: Hivemind condenser_api.get_accounts patterns test wrong name 33091 marks: - patterntest -- GitLab From dd1a785c1984235f5c5aa860085186b7f7926729 Mon Sep 17 00:00:00 2001 From: ABW Date: Wed, 19 Aug 2020 21:10:19 +0200 Subject: [PATCH 29/49] [ABW]: Added .orig.json for all tests (even if not different from pattern) to make it possible to compare with original response of old HiveMind/fat node Accepted differences in patterns: future cashout_time, max_cashout_time (no longer relevant), rshares/weight related after first payout but before final, last_payout in the same case when payout was ineffective (that difference will last even at full sync), numerical instead of strings for long numbers (consistency) Changed test comments to reflect current differences (mostly active, some payout related, still plenty of differences in order) --- .../account_notifications.orig.json | 162 + .../get_account_posts.orig.json | 442 + .../get_community.orig.json | 1 + .../get_discussion.orig.json | 2395 ++ .../get_payout_stats.orig.json | 13 + .../bridge_api_patterns/get_post.orig.json | 440 + .../get_post_header.orig.json | 1 + .../bridge_api_patterns/get_profile.orig.json | 25 + .../get_ranked_posts.orig.json | 23932 ++++++++++++++++ .../get_trending_topics.orig.json | 30 + .../list_all_subscriptions.orig.json | 1 + .../list_communities.orig.json | 1 + .../list_community_roles.orig.json | 1 + .../list_subscribers.orig.json | 1 + .../post_notifications.orig.json | 10 + .../unread_notifications.orig.json | 4 + .../get_account_reputations.orig.json | 8 + .../get_accounts.orig.json | 107 + .../get_accounts.pat.json | 108 +- .../get_active_votes.orig.json | 26 + .../condenser_api_patterns/get_blog.orig.json | 645 + .../get_blog_entries.orig.json | 9 + ...et_comment_discussions_by_payout.orig.json | 33 + .../get_content.orig.json | 638 + .../get_content_replies.orig.json | 95 + ...iscussions_by_author_before_date.orig.json | 640 + .../get_discussions_by_blog.orig.json | 640 + .../get_discussions_by_comments.orig.json | 94 + .../get_discussions_by_created.orig.json | 33 + .../get_discussions_by_feed.orig.json | 1 + .../get_discussions_by_hot.orig.json | 1090 + .../get_discussions_by_promoted.orig.json | 2590 ++ .../get_discussions_by_trending.orig.json | 562 + .../get_follow_count.orig.json | 5 + .../get_followers.orig.json | 72 + .../get_following.orig.json | 72 + .../get_post_discussions_by_payout.orig.json | 40 + .../get_reblogged_by.orig.json | 1 + .../get_replies_by_last_update.orig.json | 94 + .../get_state.orig.json | 679 + .../get_trending_tags.orig.json | 62 + .../find_comments.orig.json | 53 + .../list_comments.orig.json | 494 + ...s_author_last_update_author_date.orig.json | 494 + ...hor_last_update_corr_author_date.orig.json | 494 + ...ents_author_last_update_corr_dap.orig.json | 494 + ...nts_author_last_update_corr_date.orig.json | 494 + ...t_comments_by_cashout_first_date.orig.json | 494 + ...omments_by_cashout_time_all_data.orig.json | 494 + ...ents_by_cashout_time_future_data.orig.json | 494 + ..._comments_by_cashout_time_second.orig.json | 494 + ...ments_by_last_update_future_date.orig.json | 494 + ...t_comments_last_update_good_date.orig.json | 494 + .../list_comments_parent.orig.json | 494 + .../list_comments_parent.pat.json | 22 +- .../list_comments_parent_all_data.orig.json | 494 + .../list_comments_parent_all_data.pat.json | 56 +- .../list_comments_parent_no_data.orig.json | 494 + ...st_comments_parent_not_full_data.orig.json | 494 + ...st_comments_parent_parent_author.orig.json | 494 + ...st_comments_parent_required_data.orig.json | 494 + ...ist_comments_parent_required_data.pat.json | 20 +- .../list_comments_permlink.orig.json | 494 + .../list_comments_permlink.pat.json | 44 +- ...st_comments_permlink_good_params.orig.json | 494 + ...ist_comments_permlink_good_params.pat.json | 94 +- ..._comments_permlink_good_permlink.orig.json | 494 + ...mments_permlink_permlink_no_data.orig.json | 494 + .../list_comments_root.orig.json | 494 + .../list_comments_root_all_values.orig.json | 494 + .../list_comments_root_all_values.pat.json | 86 +- .../list_comments_root_no_data.orig.json | 494 + ...st_comments_root_required_values.orig.json | 494 + ...ist_comments_root_required_values.pat.json | 68 +- ...ts_root_required_values_comments.orig.json | 494 + ...nts_root_required_values_comments.pat.json | 86 +- .../get_account_reputations.orig.json | 8 + .../follow_api_patterns/get_blog.orig.json | 645 + .../get_blog_entries.orig.json | 9 + .../get_follow_count.orig.json | 5 + .../get_followers.orig.json | 72 + .../get_following.orig.json | 72 + .../get_reblogged_by.orig.json | 1 + ...et_comment_discussions_by_payout.orig.json | 33 + .../get_content_replies.orig.json | 84 + .../get_discussion.orig.json | 638 + ...iscussions_by_author_before_date.orig.json | 640 + .../get_discussions_by_blog.orig.json | 640 + .../get_discussions_by_comments.orig.json | 94 + .../get_discussions_by_created.orig.json | 40 + .../get_discussions_by_hot.orig.json | 40 + .../get_discussions_by_promoted.orig.json | 2590 ++ .../get_discussions_by_trending.orig.json | 40 + .../get_post_discussions_by_payout.orig.json | 40 + .../test_condenser_api_patterns.tavern.yaml | 6 +- .../test_database_api_patterns.tavern.yaml | 16 +- .../test_follow_api_patterns.tavern.yaml | 2 +- 97 files changed, 54640 insertions(+), 251 deletions(-) create mode 100644 hivemind/tavern/bridge_api_patterns/account_notifications.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_account_posts.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_community.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_discussion.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_payout_stats.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_post.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_post_header.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_profile.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_trending_topics.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/list_all_subscriptions.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/list_communities.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/list_community_roles.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/list_subscribers.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/post_notifications.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/unread_notifications.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_account_reputations.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_accounts.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_active_votes.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog_entries.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_content.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_content_replies.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_discussions_by_blog.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_discussions_by_comments.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_discussions_by_created.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_discussions_by_feed.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_follow_count.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_followers.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_following.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_reblogged_by.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_state.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_trending_tags.orig.json create mode 100644 hivemind/tavern/database_api_patterns/find_comments.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_parent.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_parent_all_data.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_parent_no_data.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_parent_required_data.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_permlink.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_root.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_root_all_values.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_root_no_data.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_root_required_values.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.orig.json create mode 100644 hivemind/tavern/follow_api_patterns/get_account_reputations.orig.json create mode 100644 hivemind/tavern/follow_api_patterns/get_blog.orig.json create mode 100644 hivemind/tavern/follow_api_patterns/get_blog_entries.orig.json create mode 100644 hivemind/tavern/follow_api_patterns/get_follow_count.orig.json create mode 100644 hivemind/tavern/follow_api_patterns/get_followers.orig.json create mode 100644 hivemind/tavern/follow_api_patterns/get_following.orig.json create mode 100644 hivemind/tavern/follow_api_patterns/get_reblogged_by.orig.json create mode 100644 hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.orig.json create mode 100644 hivemind/tavern/tags_api_patterns/get_content_replies.orig.json create mode 100644 hivemind/tavern/tags_api_patterns/get_discussion.orig.json create mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date.orig.json create mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_blog.orig.json create mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_comments.orig.json create mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_created.orig.json create mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_hot.orig.json create mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.orig.json create mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_trending.orig.json create mode 100644 hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.orig.json diff --git a/hivemind/tavern/bridge_api_patterns/account_notifications.orig.json b/hivemind/tavern/bridge_api_patterns/account_notifications.orig.json new file mode 100644 index 00000000..eb352dcf --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/account_notifications.orig.json @@ -0,0 +1,162 @@ +[ + { + "date": "2016-09-15T17:51:15", + "id": 774644, + "msg": "@steempowerwhale mentioned you", + "score": 20, + "type": "mention", + "url": "@steempowerwhale/for-steemit-authors-how-likely-do-posts-receive-a-reward-on-steemit-look-at-the-stats" + }, + { + "date": "2016-09-14T21:33:36", + "id": 768637, + "msg": "@twitterbot mentioned you", + "score": 20, + "type": "mention", + "url": "@twitterbot/re-app-store-accepts-steemit-20160914t213336" + }, + { + "date": "2016-09-14T07:27:48", + "id": 764393, + "msg": "@felixxx mentioned you", + "score": 20, + "type": "mention", + "url": "@felixxx/re-miserableoracle-re-felixxx-re-miserableoracle-re-l0k1-the-power-down-delay-ned-and-dan-you-got-us-hooked-we-can-t-jump-out-what-s-happening-20160914t072747788z" + }, + { + "date": "2016-09-14T06:57:00", + "id": 764287, + "msg": "@svamiva mentioned you", + "score": 20, + "type": "mention", + "url": "@svamiva/re-smolalit-re-antizvuk-re-svamiva-re-smolalit-re-svamiva-nemnogo-soli-na-ranu-20160914t065520261z" + }, + { + "date": "2016-09-14T05:53:51", + "id": 764091, + "msg": "@karenb54 mentioned you", + "score": 20, + "type": "mention", + "url": "@karenb54/mobile-covers-for-all-ranks" + }, + { + "date": "2016-09-13T21:43:03", + "id": 761577, + "msg": "@biophil mentioned you", + "score": 20, + "type": "mention", + "url": "@biophil/it-would-be-neat-to-know-why-steemit-starts-pushing-the-market-around-when-it-does" + }, + { + "date": "2016-09-13T14:04:21", + "id": 758509, + "msg": "@steemitguide mentioned you", + "score": 16, + "type": "mention", + "url": "@steemitguide/steemit-s-top-10-forbes-list-edition-1-13th-september-2016" + }, + { + "date": "2016-09-13T12:23:27", + "id": 757914, + "msg": "@twitterbot mentioned you", + "score": 18, + "type": "mention", + "url": "@twitterbot/re-appstore-whitelists-steem-now-waiting-for-bithshares-people-20160913t122326" + }, + { + "date": "2016-09-13T09:58:18", + "id": 757348, + "msg": "@poseidon mentioned you", + "score": 16, + "type": "mention", + "url": "@poseidon/re-venuspcs-why-hardfork-14-will-reduce-daily-votes-from-40-to-5-my-opinion-which-i-haven-t-seen-anyone-else-state-20160913t095819591z" + }, + { + "date": "2016-09-13T01:58:21", + "id": 755117, + "msg": "@leesunmoo mentioned you", + "score": 20, + "type": "mention", + "url": "@leesunmoo/leesunmoo-3" + }, + { + "date": "2016-09-13T00:20:09", + "id": 754744, + "msg": "@buckland mentioned you", + "score": 20, + "type": "mention", + "url": "@buckland/re-abol-r-i-p-all-innocent-victims-on-septembre-11-20160913t002010694z" + }, + { + "date": "2016-09-12T23:29:06", + "id": 754456, + "msg": "@buckland mentioned you", + "score": 20, + "type": "mention", + "url": "@buckland/re-abol-re-buckland-this-was-the-so-called-nano-thermite-that-was-found-everywhere-people-need-the-truth-but-can-they-swallow-it-20160912t232044338z" + }, + { + "date": "2016-09-12T08:49:06", + "id": 749213, + "msg": "@peterz mentioned you", + "score": 20, + "type": "mention", + "url": "@peterz/re-aleco-zakon-cipfa-rabotaet-li-on-v-steemit-20160912t084906549z" + }, + { + "date": "2016-09-11T23:36:00", + "id": 746929, + "msg": "@marco-delsalto mentioned you", + "score": 20, + "type": "mention", + "url": "@marco-delsalto/its-1994-again-on-the-internet-again-love-it" + }, + { + "date": "2016-09-11T18:04:48", + "id": 743544, + "msg": "@richman mentioned you", + "score": 18, + "type": "mention", + "url": "@richman/one-man-s-war-the-incredible-story-of-lieutenant-hiroo-onoda-featuring-andrewawerdna-as-author" + }, + { + "date": "2016-09-12T01:29:39", + "id": 743086, + "msg": "@fat-like-buddha mentioned you", + "score": 20, + "type": "mention", + "url": "@fat-like-buddha/a-letter-to-my-sons-preparing-for-lifes-journey" + }, + { + "date": "2016-09-11T15:44:39", + "id": 742615, + "msg": "@hisnameisolllie mentioned you", + "score": 16, + "type": "mention", + "url": "@hisnameisolllie/steemit-statistics-week-7" + }, + { + "date": "2016-09-09T10:47:09", + "id": 722895, + "msg": "@spartanza mentioned you", + "score": 18, + "type": "mention", + "url": "@spartanza/9-11-suspects-series-by-corbettreport-part-1" + }, + { + "date": "2016-09-08T21:09:06", + "id": 719048, + "msg": "@williamdevine mentioned you", + "score": 20, + "type": "mention", + "url": "@williamdevine/re-rawni-say-hello-to-the-newbie-20160908t210910852z" + }, + { + "date": "2016-09-08T09:13:30", + "id": 714599, + "msg": "@svamiva mentioned you", + "score": 20, + "type": "mention", + "url": "@svamiva/re-james-show-market-based-curation-pools-to-increasing-curation-demand-for-steem-power-20160908t091328200z" + } +] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts.orig.json b/hivemind/tavern/bridge_api_patterns/get_account_posts.orig.json new file mode 100644 index 00000000..486cb40a --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts.orig.json @@ -0,0 +1,442 @@ +[ + { + "active_votes": [ + { + "rshares": "375241", + "voter": "dantheman" + }, + { + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "rshares": "5100", + "voter": "steemit78" + }, + { + "rshares": "1259167", + "voter": "anonymous" + }, + { + "rshares": "318519", + "voter": "hello" + }, + { + "rshares": "153384", + "voter": "world" + }, + { + "rshares": "-936400", + "voter": "ned" + }, + { + "rshares": "59412", + "voter": "fufubar1" + }, + { + "rshares": "14997", + "voter": "anonymous1" + }, + { + "rshares": "1441", + "voter": "red" + }, + { + "rshares": "551390835500", + "voter": "liondani" + }, + { + "rshares": "82748", + "voter": "roadscape" + }, + { + "rshares": "10772", + "voter": "xeroc" + }, + { + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "rshares": "498863058", + "voter": "joelinux" + }, + { + "rshares": "9590417", + "voter": "piranhax" + }, + { + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "rshares": "422984262", + "voter": "acidyo" + }, + { + "rshares": "47179379651", + "voter": "tosch" + }, + { + "rshares": "7831667988", + "voter": "klye" + }, + { + "rshares": "1019950749", + "voter": "coar" + }, + { + "rshares": "1746058458", + "voter": "murh" + }, + { + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "rshares": "0", + "voter": "hien-tran" + }, + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "40624969", + "voter": "ben99" + }, + { + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "rshares": "917398502", + "voter": "decrypt" + }, + { + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "rshares": "1037079223", + "voter": "condra" + }, + { + "rshares": "233032838", + "voter": "jearson" + }, + { + "rshares": "240809500", + "voter": "tritium" + }, + { + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "rshares": "226074637", + "voter": "artjedi" + }, + { + "rshares": "931542394", + "voter": "anduweb" + }, + { + "rshares": "2292983350", + "voter": "inertia" + }, + { + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "rshares": "266262926", + "voter": "desmonid" + }, + { + "rshares": "71498008", + "voter": "madhatting" + }, + { + "rshares": "23726644841", + "voter": "ubg" + }, + { + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "rshares": "131577259", + "voter": "gribgo" + }, + { + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "rshares": "28907874049", + "voter": "orm" + }, + { + "rshares": "528988007", + "voter": "qonq99" + }, + { + "rshares": "129537329", + "voter": "rd7783" + }, + { + "rshares": "615020728", + "voter": "slava" + }, + { + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "rshares": "95219365", + "voter": "curator" + }, + { + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "rshares": "0", + "voter": "solos" + }, + { + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "rshares": "0", + "voter": "blysards" + }, + { + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "rshares": "1279854", + "voter": "nigmat" + }, + { + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "rshares": "10847083143", + "voter": "metrox" + }, + { + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "rshares": "710989138", + "voter": "romancs" + }, + { + "rshares": "59366614", + "voter": "luke490" + }, + { + "rshares": "58762473", + "voter": "bro66" + }, + { + "rshares": "201822591", + "voter": "future24" + }, + { + "rshares": "58623688", + "voter": "mythras" + }, + { + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "rshares": "0", + "voter": "matrixdweller" + }, + { + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "rshares": "54761612", + "voter": "edbriv" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "rshares": "52740989", + "voter": "tcstix" + }, + { + "rshares": "49467477", + "voter": "friedwater" + }, + { + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "rshares": "54017869", + "voter": "zelious" + }, + { + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "rshares": "53196086", + "voter": "f1111111" + }, + { + "rshares": "0", + "voter": "anomaly" + }, + { + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "rshares": "0", + "voter": "buckland" + }, + { + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_payout_value": "0.942 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "payout": 1.698, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 92 + }, + "title": "Welcome to Steem!", + "updated": "2016-03-30T18:30:18", + "url": "/meta/@steemit/firstpost" + } +] diff --git a/hivemind/tavern/bridge_api_patterns/get_community.orig.json b/hivemind/tavern/bridge_api_patterns/get_community.orig.json new file mode 100644 index 00000000..b82adc6d --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_community.orig.json @@ -0,0 +1 @@ +Error detected in response: Invalid parameters \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_discussion.orig.json b/hivemind/tavern/bridge_api_patterns/get_discussion.orig.json new file mode 100644 index 00000000..1acbf1cc --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_discussion.orig.json @@ -0,0 +1,2395 @@ +{ + "admin/firstpost": { + "active_votes": [ + { + "rshares": "-375241", + "voter": "dantheman" + }, + { + "rshares": "5100", + "voter": "steemit46" + }, + { + "rshares": "81125", + "voter": "roadscape" + }, + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "431616594", + "voter": "acidyo" + }, + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "58854897335", + "voter": "business" + }, + { + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "rshares": "244129227", + "voter": "kewpiedoll" + }, + { + "rshares": "1615731741", + "voter": "naturalista" + } + ], + "author": "admin", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "First Reply! Let's get this **party** started", + "category": "meta", + "children": 2, + "created": "2016-03-30T19:52:30", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62423410900, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 2, + "promoted": "0.000 HBD", + "replies": [ + "kingtylervvs/re-admin-firstpost-20160717t193811098z", + "gopher/re-admin-firstpost-20160718t195306992z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 10 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-03-30T19:52:30", + "url": "/meta/@steemit/firstpost#@admin/firstpost" + }, + "bestmalik/re-steemit-firstpost-20160726t035722561z": { + "active_votes": [ + { + "rshares": "7413824", + "voter": "cire81" + } + ], + "author": "bestmalik", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "GO STEEM !!!", + "category": "meta", + "children": 0, + "created": "2016-07-26T03:57:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 7413824, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160726t035722561z", + "post_id": 264599, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-26T03:57:24", + "url": "/meta/@steemit/firstpost#@bestmalik/re-steemit-firstpost-20160726t035722561z" + }, + "business/re-red-steemit-firstpost-2-20160713t083846149z": { + "active_votes": [ + { + "rshares": "724886327", + "voter": "patrick-g" + } + ], + "author": "business", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "No way?", + "category": "meta", + "children": 0, + "created": "2016-07-13T08:38:48", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 724886327, + "parent_author": "red", + "parent_permlink": "steemit-firstpost-2", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-red-steemit-firstpost-2-20160713t083846149z", + "post_id": 66997, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-13T08:38:48", + "url": "/meta/@steemit/firstpost#@business/re-red-steemit-firstpost-2-20160713t083846149z" + }, + "business/re-steemit-firstpost-20160713t082910980z": { + "active_votes": [ + { + "rshares": "724886327", + "voter": "patrick-g" + }, + { + "rshares": "58854897335", + "voter": "business" + }, + { + "rshares": "628198247", + "voter": "graystone" + }, + { + "rshares": "256298401739", + "voter": "juneaugoldbuyer" + }, + { + "rshares": "28483434", + "voter": "gjhi4552201" + }, + { + "rshares": "226779353", + "voter": "steg" + }, + { + "rshares": "54017869", + "voter": "zelious" + }, + { + "rshares": "51109965", + "voter": "f1111111" + } + ], + "author": "business", + "author_payout_value": "0.036 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Welcome to steemit, @steemit.", + "category": "meta", + "children": 0, + "created": "2016-07-13T08:29:15", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 316866774269, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.036, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160713t082910980z", + "post_id": 66957, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 8 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-13T08:29:36", + "url": "/meta/@steemit/firstpost#@business/re-steemit-firstpost-20160713t082910980z" + }, + "deanliu/re-steemit-firstpost-20160810t083336206z": { + "active_votes": [ + { + "rshares": "74273734", + "voter": "bitmaxt" + }, + { + "rshares": "56152551", + "voter": "lovetosteemit" + } + ], + "author": "deanliu", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "is this post truly the time zero, the origin, the big bang of all?", + "category": "meta", + "children": 0, + "created": "2016-08-10T08:33:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 130426285, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160810t083336206z", + "post_id": 537479, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-10T08:33:54", + "url": "/meta/@steemit/firstpost#@deanliu/re-steemit-firstpost-20160810t083336206z" + }, + "edbriv/re-steemit-firstpost-20160801t184846033z": { + "active_votes": [ + { + "rshares": "-336740570", + "voter": "dtbahoney" + }, + { + "rshares": "52272448", + "voter": "edbriv" + } + ], + "author": "edbriv", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "GO STEEM !!! go!!!", + "category": "meta", + "children": 0, + "created": "2016-08-01T18:12:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -284468122, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160801t184846033z", + "post_id": 395733, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-01T18:12:00", + "url": "/meta/@steemit/firstpost#@edbriv/re-steemit-firstpost-20160801t184846033z" + }, + "flandude/re-steemit-firstpost-20160811t225325571z": { + "active_votes": [ + { + "rshares": "47738566", + "voter": "alktoni" + }, + { + "rshares": "555987168", + "voter": "funkywanderer" + }, + { + "rshares": "45336058", + "voter": "andressilvera" + }, + { + "rshares": "50997147", + "voter": "david.prochnow" + } + ], + "author": "flandude", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "http://i.imgsafe.org/d01598860e.jpg", + "category": "meta", + "children": 0, + "created": "2016-08-11T22:53:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://i.imgsafe.org/d01598860e.jpg" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 700058939, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160811t225325571z", + "post_id": 563725, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-11T22:53:27", + "url": "/meta/@steemit/firstpost#@flandude/re-steemit-firstpost-20160811t225325571z" + }, + "future24/re-steemit-firstpost-20160818t030224104z": { + "active_votes": [ + { + "rshares": "53122308", + "voter": "mandarin99" + } + ], + "author": "future24", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Thank you!", + "category": "meta", + "children": 0, + "created": "2016-08-18T03:02:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53122308, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160818t030224104z", + "post_id": 650694, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-18T03:02:24", + "url": "/meta/@steemit/firstpost#@future24/re-steemit-firstpost-20160818t030224104z" + }, + "gekko/re-steemit-firstpost-20160721t223937736z": { + "active_votes": [ + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "689526018", + "voter": "patrick-g" + }, + { + "rshares": "145914460", + "voter": "allmonitors" + } + ], + "author": "gekko", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I leave my mark here in mythical post 8]", + "category": "meta", + "children": 0, + "created": "2016-07-21T22:39:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1261343544, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160721t223937736z", + "post_id": 189029, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T22:39:39", + "url": "/meta/@steemit/firstpost#@gekko/re-steemit-firstpost-20160721t223937736z" + }, + "gopher/re-admin-firstpost-20160718t195306992z": { + "active_votes": [ + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "111000395", + "voter": "bustillos" + } + ], + "author": "gopher", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Are you admin in steem? If you have been hacked, who can help you?", + "category": "meta", + "children": 0, + "created": "2016-07-18T19:53:12", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 853566876, + "parent_author": "admin", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-admin-firstpost-20160718t195306992z", + "post_id": 125730, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-18T19:53:12", + "url": "/meta/@steemit/firstpost#@gopher/re-admin-firstpost-20160718t195306992z" + }, + "gopher/re-steemit-firstpost-20160718t195806340z": { + "active_votes": [], + "author": "gopher", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "http://steem.com/@bittrex/transfers how this user can have these tranfers without any activity?", + "category": "meta", + "children": 1, + "created": "2016-07-18T19:58:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "links": [ + "http://steem.com/@bittrex/transfers" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160718t195806340z", + "post_id": 125794, + "promoted": "0.000 HBD", + "replies": [ + "steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-18T19:58:09", + "url": "/meta/@steemit/firstpost#@gopher/re-steemit-firstpost-20160718t195806340z" + }, + "imarealboy777/re-steemit-firstpost-20160801t232001768z": { + "active_votes": [ + { + "rshares": "2725768", + "voter": "cire81" + }, + { + "rshares": "154885141", + "voter": "lorddominik007" + } + ], + "author": "imarealboy777", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Vesting , vesting 1 2 3 .", + "category": "meta", + "children": 0, + "created": "2016-08-01T23:20:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 157610909, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160801t232001768z", + "post_id": 401002, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-01T23:20:36", + "url": "/meta/@steemit/firstpost#@imarealboy777/re-steemit-firstpost-20160801t232001768z" + }, + "intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z": { + "active_votes": [ + { + "rshares": "23648397", + "voter": "sillyfilthy" + } + ], + "author": "intelliguy", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I thought we were talking about @ned and not @steemit", + "category": "meta", + "children": 1, + "created": "2016-07-21T05:33:57", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ], + "users": [ + "ned", + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 23648397, + "parent_author": "kewpiedoll", + "parent_permlink": "re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z", + "post_id": 173797, + "promoted": "0.000 HBD", + "replies": [ + "kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T05:33:57", + "url": "/meta/@steemit/firstpost#@intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z" + }, + "intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z": { + "active_votes": [], + "author": "intelliguy", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "probably because it's one sentence. Doesn't add a lot of good, quality content? I don't know.", + "category": "meta", + "children": 3, + "created": "2016-07-20T21:58:51", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "kewpiedoll", + "parent_permlink": "re-steemit-firstpost-20160720t210201326z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-kewpiedoll-re-steemit-firstpost-20160720t215823622z", + "post_id": 167552, + "promoted": "0.000 HBD", + "replies": [ + "kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T21:58:51", + "url": "/meta/@steemit/firstpost#@intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z" + }, + "jack8831/re-steemit-firstpost-20160824t093007335z": { + "active_votes": [], + "author": "jack8831", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "You support fantastic system now!", + "category": "meta", + "children": 0, + "created": "2016-08-24T09:30:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160824t093007335z", + "post_id": 729186, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-24T09:30:03", + "url": "/meta/@steemit/firstpost#@jack8831/re-steemit-firstpost-20160824t093007335z" + }, + "jelloducky/re-steemit-firstpost-20160807t215340468z": { + "active_votes": [ + { + "rshares": "90409341", + "voter": "jelloducky" + }, + { + "rshares": "58727187", + "voter": "rezrez" + } + ], + "author": "jelloducky", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "This platform is inspiring, thank you so much!", + "category": "meta", + "children": 0, + "created": "2016-08-07T21:53:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 149136528, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160807t215340468z", + "post_id": 498164, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-07T21:53:39", + "url": "/meta/@steemit/firstpost#@jelloducky/re-steemit-firstpost-20160807t215340468z" + }, + "jennamarbles/re-steemit-firstpost-20160719t210752086z": { + "active_votes": [ + { + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "rshares": "732150442", + "voter": "artific" + }, + { + "rshares": "17012406247", + "voter": "jennamarbles" + }, + { + "rshares": "66705408", + "voter": "hipsterjesus" + }, + { + "rshares": "51109965", + "voter": "f1111111" + } + ], + "author": "jennamarbles", + "author_payout_value": "0.024 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Hello @steemit, I'm asking you to support my idea, in a new development STEEM. It will attract tens of thousands of people: https://steemit.com/openheart/@jennamarbles/first-steem-crowdfunding-we-can-make-this-world-better", + "category": "meta", + "children": 0, + "created": "2016-07-19T21:07:48", + "curator_payout_value": "0.003 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "links": [ + "https://steemit.com/openheart/@jennamarbles/first-steem-crowdfunding-we-can-make-this-world-better" + ], + "tags": [ + "meta" + ], + "users": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 18569578234, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.027, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160719t210752086z", + "post_id": 145129, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 5 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T08:35:21", + "url": "/meta/@steemit/firstpost#@jennamarbles/re-steemit-firstpost-20160719t210752086z" + }, + "kamvreto/re-steemit-firstpost-20160722t225246211z": { + "active_votes": [ + { + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "rshares": "167168344", + "voter": "yarike" + }, + { + "rshares": "35874847", + "voter": "pr3ttyp3rf3ct" + } + ], + "author": "kamvreto", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "happy steeming all !!", + "category": "meta", + "children": 0, + "created": "2016-07-22T22:53:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 595502250, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160722t225246211z", + "post_id": 206329, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-22T22:53:18", + "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160722t225246211z" + }, + "kamvreto/re-steemit-firstpost-20160725t221949749z": { + "active_votes": [ + { + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "rshares": "348852497", + "voter": "kamvreto" + }, + { + "rshares": "247328995", + "voter": "adinda" + } + ], + "author": "kamvreto", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "old post, starting the steemit like today.\nmy quote of the day \"Anyone can sell their STEEM for cash or vest it to boost their voting power.\"", + "category": "meta", + "children": 0, + "created": "2016-07-25T22:20:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 977987362, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160725t221949749z", + "post_id": 259905, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-25T22:20:24", + "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160725t221949749z" + }, + "kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z": { + "active_votes": [ + { + "rshares": "707206172", + "voter": "patrick-g" + } + ], + "author": "kewpiedoll", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "we are. @steemit was the OP. @ned flagged it.", + "category": "meta", + "children": 0, + "created": "2016-07-21T14:02:21", + "curator_payout_value": "0.000 HBD", + "depth": 5, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ], + "users": [ + "steemit", + "ned" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 707206172, + "parent_author": "intelliguy", + "parent_permlink": "re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z", + "post_id": 180004, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T14:02:21", + "url": "/meta/@steemit/firstpost#@kewpiedoll/re-intelliguy-re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t140220709z" + }, + "kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z": { + "active_votes": [ + { + "rshares": "707206172", + "voter": "patrick-g" + } + ], + "author": "kewpiedoll", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "@steemit is not a \"user,\" it's the actual site itself. and this was the premier post akin to Satoshi's white paper. [See here](http://steemwhales.com/). I just thought it was odd the CEO would downvote the launch of the site he's CEO of.", + "category": "meta", + "children": 2, + "created": "2016-07-21T05:28:21", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "is_paidout": true, + "json_metadata": { + "links": [ + "http://steemwhales.com/" + ], + "tags": [ + "meta" + ], + "users": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 707206172, + "parent_author": "intelliguy", + "parent_permlink": "re-kewpiedoll-re-steemit-firstpost-20160720t215823622z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z", + "post_id": 173754, + "promoted": "0.000 HBD", + "replies": [ + "intelliguy/re-kewpiedoll-re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t053330322z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T05:28:21", + "url": "/meta/@steemit/firstpost#@kewpiedoll/re-intelliguy-re-kewpiedoll-re-steemit-firstpost-20160721t052821990z" + }, + "kewpiedoll/re-steemit-firstpost-20160720t210201326z": { + "active_votes": [ + { + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "rshares": "231619534", + "voter": "eggstraordinair" + }, + { + "rshares": "123321995", + "voter": "allmonitors" + } + ], + "author": "kewpiedoll", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Why did @ned flag this post?", + "category": "meta", + "children": 4, + "created": "2016-07-20T21:01:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ], + "users": [ + "ned" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1062147701, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160720t210201326z", + "post_id": 166558, + "promoted": "0.000 HBD", + "replies": [ + "intelliguy/re-kewpiedoll-re-steemit-firstpost-20160720t215823622z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T21:01:54", + "url": "/meta/@steemit/firstpost#@kewpiedoll/re-steemit-firstpost-20160720t210201326z" + }, + "kingtylervvs/re-admin-firstpost-20160717t193811098z": { + "active_votes": [ + { + "rshares": "742566481", + "voter": "patrick-g" + } + ], + "author": "kingtylervvs", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "PARTY PARTY.... P - A - R - T - Y????? BECAUSE I GOTTA!", + "category": "meta", + "children": 0, + "created": "2016-07-17T19:38:12", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 742566481, + "parent_author": "admin", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-admin-firstpost-20160717t193811098z", + "post_id": 110463, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-17T19:38:12", + "url": "/meta/@steemit/firstpost#@kingtylervvs/re-admin-firstpost-20160717t193811098z" + }, + "kingtylervvs/re-steemit-firstpost-20160720t121101482z": { + "active_votes": [ + { + "rshares": "25204741266", + "voter": "justtryme90" + }, + { + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "rshares": "226074637", + "voter": "artjedi" + }, + { + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "kingtylervvs", + "author_payout_value": "0.039 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Thank you for posting. We all LOVE steem!\n\nI up-voted you too... BTW, should steemit let us steemers advertise using steem? Be sure to tell everyone you know to come vote here at: https://steemit.com/steemit/@kingtylervvs/if-steemit-ever-does-decide-to-advertise-there-is-only-1-way-it-could-work-in-my-opinion-debate\n\nThis is a democratic community decision.
\n\n", + "category": "meta", + "children": 1, + "created": "2016-07-20T12:11:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://www.animatedimages.org/data/media/75/animated-train-image-0018.gif", + "http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif", + "https://steem.io/images/steem.png" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 26190175100, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.039, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160720t121101482z", + "post_id": 157998, + "promoted": "0.000 HBD", + "replies": [ + "yonuts/re-kingtylervvs-re-steemit-firstpost-20160729t180621248z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T12:11:00", + "url": "/meta/@steemit/firstpost#@kingtylervvs/re-steemit-firstpost-20160720t121101482z" + }, + "lenerdie/re-steemit-firstpost-20160726t035056026z": { + "active_votes": [], + "author": "lenerdie", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Let's get crazy! happy steemit to everybody!", + "category": "meta", + "children": 0, + "created": "2016-07-26T03:50:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160726t035056026z", + "post_id": 264501, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-26T03:50:57", + "url": "/meta/@steemit/firstpost#@lenerdie/re-steemit-firstpost-20160726t035056026z" + }, + "patrick-g/re-steemit-firstpost-20160722t201007967z": { + "active_votes": [ + { + "rshares": "689526018", + "voter": "patrick-g" + }, + { + "rshares": "46092586", + "voter": "matt876" + }, + { + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "patrick-g", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "You can also vote on your posts if you want.:) As in when you reply to other posts. Those are posts you can vote yourself up on.... :)", + "category": "meta", + "children": 0, + "created": "2016-07-22T20:10:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 787771629, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160722t201007967z", + "post_id": 203716, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-22T20:10:09", + "url": "/meta/@steemit/firstpost#@patrick-g/re-steemit-firstpost-20160722t201007967z" + }, + "proskynneo/steemit-firstpost-1": { + "active_votes": [ + { + "rshares": "375241", + "voter": "dantheman" + }, + { + "rshares": "2213400", + "voter": "proskynneo" + }, + { + "rshares": "936400", + "voter": "ned" + }, + { + "rshares": "0", + "voter": "murh" + }, + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "58854897335", + "voter": "business" + }, + { + "rshares": "239342379", + "voter": "kewpiedoll" + }, + { + "rshares": "52153025", + "voter": "f1111111" + }, + { + "rshares": "0", + "voter": "naumovich" + } + ], + "author": "proskynneo", + "author_payout_value": "1.058 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", + "category": "meta", + "children": 0, + "created": "2016-03-31T13:54:33", + "curator_payout_value": "1.059 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 59892484261, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 2.117, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "steemit-firstpost-1", + "post_id": 3, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 7 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-03-31T13:54:33", + "url": "/meta/@steemit/firstpost#@proskynneo/steemit-firstpost-1" + }, + "red/steemit-firstpost-2": { + "active_votes": [ + { + "rshares": "-376603", + "voter": "dantheman" + }, + { + "rshares": "903854", + "voter": "mr11acdee" + }, + { + "rshares": "1441", + "voter": "red" + }, + { + "rshares": "23446", + "voter": "xeroc" + }, + { + "rshares": "724886327", + "voter": "patrick-g" + }, + { + "rshares": "60031995282", + "voter": "business" + }, + { + "rshares": "71498008", + "voter": "madhatting" + }, + { + "rshares": "64967241", + "voter": "staceyjatkinson" + }, + { + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "red", + "author_payout_value": "0.100 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Did you know you can earn STEEM by commenting on posts?", + "category": "meta", + "children": 2, + "created": "2016-04-06T19:22:42", + "curator_payout_value": "0.100 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 60946052021, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.2, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "steemit-firstpost-2", + "post_id": 4, + "promoted": "0.000 HBD", + "replies": [ + "steem-id/re-red-steemit-firstpost-2", + "business/re-red-steemit-firstpost-2-20160713t083846149z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 9 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-04-06T19:22:42", + "url": "/meta/@steemit/firstpost#@red/steemit-firstpost-2" + }, + "rednetkjh/re-steemit-firstpost-20160804t061605576z": { + "active_votes": [], + "author": "rednetkjh", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service", + "category": "meta", + "children": 0, + "created": "2016-08-04T06:16:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "links": [ + "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160804t061605576z", + "post_id": 440665, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-04T06:16:00", + "url": "/meta/@steemit/firstpost#@rednetkjh/re-steemit-firstpost-20160804t061605576z" + }, + "rittr/re-steemit-firstpost-20160824t025355199z": { + "active_votes": [ + { + "rshares": "-75407549856", + "voter": "vault" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "57599604", + "voter": "abanks1000" + }, + { + "rshares": "54993432", + "voter": "landarin" + } + ], + "author": "rittr", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I am Comment **Number 35** on the first Steemit Poster evaaar!", + "category": "meta", + "children": 0, + "created": "2016-08-24T02:53:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -74429831049, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160824t025355199z", + "post_id": 726644, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 1.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-24T02:53:57", + "url": "/meta/@steemit/firstpost#@rittr/re-steemit-firstpost-20160824t025355199z" + }, + "sictransitgloria/re-steemit-firstpost-20160721t233702742z": { + "active_votes": [ + { + "rshares": "689526018", + "voter": "patrick-g" + } + ], + "author": "sictransitgloria", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Go Steem!", + "category": "meta", + "children": 0, + "created": "2016-07-21T23:37:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 689526018, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160721t233702742z", + "post_id": 189812, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T23:37:00", + "url": "/meta/@steemit/firstpost#@sictransitgloria/re-steemit-firstpost-20160721t233702742z" + }, + "steem-id/re-red-steemit-firstpost-2": { + "active_votes": [ + { + "rshares": "724886327", + "voter": "patrick-g" + } + ], + "author": "steem-id", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Can I get some :D", + "category": "meta", + "children": 0, + "created": "2016-04-13T03:48:36", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 724886327, + "parent_author": "red", + "parent_permlink": "steemit-firstpost-2", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-red-steemit-firstpost-2", + "post_id": 101, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-04-13T03:48:36", + "url": "/meta/@steemit/firstpost#@steem-id/re-red-steemit-firstpost-2" + }, + "steemit/firstpost": { + "active_votes": [ + { + "rshares": "375241", + "voter": "dantheman" + }, + { + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "rshares": "5100", + "voter": "steemit78" + }, + { + "rshares": "1259167", + "voter": "anonymous" + }, + { + "rshares": "318519", + "voter": "hello" + }, + { + "rshares": "153384", + "voter": "world" + }, + { + "rshares": "-936400", + "voter": "ned" + }, + { + "rshares": "59412", + "voter": "fufubar1" + }, + { + "rshares": "14997", + "voter": "anonymous1" + }, + { + "rshares": "1441", + "voter": "red" + }, + { + "rshares": "551390835500", + "voter": "liondani" + }, + { + "rshares": "82748", + "voter": "roadscape" + }, + { + "rshares": "10772", + "voter": "xeroc" + }, + { + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "rshares": "498863058", + "voter": "joelinux" + }, + { + "rshares": "9590417", + "voter": "piranhax" + }, + { + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "rshares": "422984262", + "voter": "acidyo" + }, + { + "rshares": "47179379651", + "voter": "tosch" + }, + { + "rshares": "7831667988", + "voter": "klye" + }, + { + "rshares": "1019950749", + "voter": "coar" + }, + { + "rshares": "1746058458", + "voter": "murh" + }, + { + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "rshares": "0", + "voter": "hien-tran" + }, + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "40624969", + "voter": "ben99" + }, + { + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "rshares": "917398502", + "voter": "decrypt" + }, + { + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "rshares": "1037079223", + "voter": "condra" + }, + { + "rshares": "233032838", + "voter": "jearson" + }, + { + "rshares": "240809500", + "voter": "tritium" + }, + { + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "rshares": "226074637", + "voter": "artjedi" + }, + { + "rshares": "931542394", + "voter": "anduweb" + }, + { + "rshares": "2292983350", + "voter": "inertia" + }, + { + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "rshares": "266262926", + "voter": "desmonid" + }, + { + "rshares": "71498008", + "voter": "madhatting" + }, + { + "rshares": "23726644841", + "voter": "ubg" + }, + { + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "rshares": "131577259", + "voter": "gribgo" + }, + { + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "rshares": "28907874049", + "voter": "orm" + }, + { + "rshares": "528988007", + "voter": "qonq99" + }, + { + "rshares": "129537329", + "voter": "rd7783" + }, + { + "rshares": "615020728", + "voter": "slava" + }, + { + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "rshares": "95219365", + "voter": "curator" + }, + { + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "rshares": "0", + "voter": "solos" + }, + { + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "rshares": "0", + "voter": "blysards" + }, + { + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "rshares": "1279854", + "voter": "nigmat" + }, + { + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "rshares": "10847083143", + "voter": "metrox" + }, + { + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "rshares": "710989138", + "voter": "romancs" + }, + { + "rshares": "59366614", + "voter": "luke490" + }, + { + "rshares": "58762473", + "voter": "bro66" + }, + { + "rshares": "201822591", + "voter": "future24" + }, + { + "rshares": "58623688", + "voter": "mythras" + }, + { + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "rshares": "0", + "voter": "matrixdweller" + }, + { + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "rshares": "54761612", + "voter": "edbriv" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "rshares": "52740989", + "voter": "tcstix" + }, + { + "rshares": "49467477", + "voter": "friedwater" + }, + { + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "rshares": "54017869", + "voter": "zelious" + }, + { + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "rshares": "53196086", + "voter": "f1111111" + }, + { + "rshares": "0", + "voter": "anomaly" + }, + { + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "rshares": "0", + "voter": "buckland" + }, + { + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_payout_value": "0.942 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "payout": 1.698, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [ + "admin/firstpost", + "proskynneo/steemit-firstpost-1", + "red/steemit-firstpost-2", + "business/re-steemit-firstpost-20160713t082910980z", + "gopher/re-steemit-firstpost-20160718t195806340z", + "jennamarbles/re-steemit-firstpost-20160719t210752086z", + "kingtylervvs/re-steemit-firstpost-20160720t121101482z", + "kewpiedoll/re-steemit-firstpost-20160720t210201326z", + "gekko/re-steemit-firstpost-20160721t223937736z", + "sictransitgloria/re-steemit-firstpost-20160721t233702742z", + "patrick-g/re-steemit-firstpost-20160722t201007967z", + "kamvreto/re-steemit-firstpost-20160722t225246211z", + "zhuvazhuva/re-steemit-firstpost-20160723t130259286z", + "kamvreto/re-steemit-firstpost-20160725t221949749z", + "lenerdie/re-steemit-firstpost-20160726t035056026z", + "bestmalik/re-steemit-firstpost-20160726t035722561z", + "edbriv/re-steemit-firstpost-20160801t184846033z", + "imarealboy777/re-steemit-firstpost-20160801t232001768z", + "rednetkjh/re-steemit-firstpost-20160804t061605576z", + "jelloducky/re-steemit-firstpost-20160807t215340468z", + "deanliu/re-steemit-firstpost-20160810t083336206z", + "flandude/re-steemit-firstpost-20160811t225325571z", + "ubg/re-steemit-firstpost-20160813t143213453z", + "future24/re-steemit-firstpost-20160818t030224104z", + "rittr/re-steemit-firstpost-20160824t025355199z", + "jack8831/re-steemit-firstpost-20160824t093007335z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 92 + }, + "title": "Welcome to Steem!", + "updated": "2016-03-30T18:30:18", + "url": "/meta/@steemit/firstpost" + }, + "steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z": { + "active_votes": [ + { + "rshares": "724886327", + "voter": "patrick-g" + } + ], + "author": "steemuwe", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Bittrex is not a user - it's an exchange platform: **https://steemit.com/bittrex/@bittrex-richie/a-little-history-of-bittrex-com-how-it-all-started**\n\nhttps://bittrex.com/", + "category": "meta", + "children": 0, + "created": "2016-07-20T18:36:24", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "links": [ + "https://steemit.com/bittrex/@bittrex-richie/a-little-history-of-bittrex-com-how-it-all-started**" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 724886327, + "parent_author": "gopher", + "parent_permlink": "re-steemit-firstpost-20160718t195806340z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gopher-re-steemit-firstpost-20160720t183548381z", + "post_id": 163863, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T18:36:24", + "url": "/meta/@steemit/firstpost#@steemuwe/re-gopher-re-steemit-firstpost-20160720t183548381z" + }, + "ubg/re-steemit-firstpost-20160813t143213453z": { + "active_votes": [ + { + "rshares": "23067571373", + "voter": "ubg" + }, + { + "rshares": "999297062", + "voter": "juurop" + }, + { + "rshares": "823625727", + "voter": "usb" + }, + { + "rshares": "5546862495", + "voter": "tannukas6" + }, + { + "rshares": "694394716", + "voter": "tox" + }, + { + "rshares": "692185541", + "voter": "runridefly" + } + ], + "author": "ubg", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "You have quadruple the liquidity any of the exchanges have. \n## Just make it rain!\nhttp://i.imgur.com/Maj5zM2.gif", + "category": "meta", + "children": 0, + "created": "2016-08-13T14:32:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://i.imgur.com/Maj5zM2.gif" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 31823936914, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160813t143213453z", + "post_id": 585908, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 6 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-13T14:32:18", + "url": "/meta/@steemit/firstpost#@ubg/re-steemit-firstpost-20160813t143213453z" + }, + "yonuts/re-kingtylervvs-re-steemit-firstpost-20160729t180621248z": { + "active_votes": [], + "author": "yonuts", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "hello world! hello Steemit!", + "category": "meta", + "children": 0, + "created": "2016-07-29T18:06:21", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "kingtylervvs", + "parent_permlink": "re-steemit-firstpost-20160720t121101482z", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-kingtylervvs-re-steemit-firstpost-20160729t180621248z", + "post_id": 339524, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-29T18:06:21", + "url": "/meta/@steemit/firstpost#@yonuts/re-kingtylervvs-re-steemit-firstpost-20160729t180621248z" + }, + "zhuvazhuva/re-steemit-firstpost-20160723t130259286z": { + "active_votes": [], + "author": "zhuvazhuva", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\u041f\u0440\u0438\u0432\u0435\u0442!", + "category": "meta", + "children": 0, + "created": "2016-07-23T13:03:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160723t130259286z", + "post_id": 214663, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-23T13:03:00", + "url": "/meta/@steemit/firstpost#@zhuvazhuva/re-steemit-firstpost-20160723t130259286z" + } +} diff --git a/hivemind/tavern/bridge_api_patterns/get_payout_stats.orig.json b/hivemind/tavern/bridge_api_patterns/get_payout_stats.orig.json new file mode 100644 index 00000000..3a61f6c8 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_payout_stats.orig.json @@ -0,0 +1,13 @@ +{ + "blogs": 1862448.272, + "items": [ + [ + "@charlieshrem", + "@charlieshrem", + 62129.025, + 142, + null + ] + ], + "total": 1862448.272 +} diff --git a/hivemind/tavern/bridge_api_patterns/get_post.orig.json b/hivemind/tavern/bridge_api_patterns/get_post.orig.json new file mode 100644 index 00000000..f91f96be --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_post.orig.json @@ -0,0 +1,440 @@ +{ + "active_votes": [ + { + "rshares": "375241", + "voter": "dantheman" + }, + { + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "rshares": "5100", + "voter": "steemit78" + }, + { + "rshares": "1259167", + "voter": "anonymous" + }, + { + "rshares": "318519", + "voter": "hello" + }, + { + "rshares": "153384", + "voter": "world" + }, + { + "rshares": "-936400", + "voter": "ned" + }, + { + "rshares": "59412", + "voter": "fufubar1" + }, + { + "rshares": "14997", + "voter": "anonymous1" + }, + { + "rshares": "1441", + "voter": "red" + }, + { + "rshares": "551390835500", + "voter": "liondani" + }, + { + "rshares": "82748", + "voter": "roadscape" + }, + { + "rshares": "10772", + "voter": "xeroc" + }, + { + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "rshares": "498863058", + "voter": "joelinux" + }, + { + "rshares": "9590417", + "voter": "piranhax" + }, + { + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "rshares": "422984262", + "voter": "acidyo" + }, + { + "rshares": "47179379651", + "voter": "tosch" + }, + { + "rshares": "7831667988", + "voter": "klye" + }, + { + "rshares": "1019950749", + "voter": "coar" + }, + { + "rshares": "1746058458", + "voter": "murh" + }, + { + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "rshares": "0", + "voter": "hien-tran" + }, + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "40624969", + "voter": "ben99" + }, + { + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "rshares": "917398502", + "voter": "decrypt" + }, + { + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "rshares": "1037079223", + "voter": "condra" + }, + { + "rshares": "233032838", + "voter": "jearson" + }, + { + "rshares": "240809500", + "voter": "tritium" + }, + { + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "rshares": "226074637", + "voter": "artjedi" + }, + { + "rshares": "931542394", + "voter": "anduweb" + }, + { + "rshares": "2292983350", + "voter": "inertia" + }, + { + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "rshares": "266262926", + "voter": "desmonid" + }, + { + "rshares": "71498008", + "voter": "madhatting" + }, + { + "rshares": "23726644841", + "voter": "ubg" + }, + { + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "rshares": "131577259", + "voter": "gribgo" + }, + { + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "rshares": "28907874049", + "voter": "orm" + }, + { + "rshares": "528988007", + "voter": "qonq99" + }, + { + "rshares": "129537329", + "voter": "rd7783" + }, + { + "rshares": "615020728", + "voter": "slava" + }, + { + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "rshares": "95219365", + "voter": "curator" + }, + { + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "rshares": "0", + "voter": "solos" + }, + { + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "rshares": "0", + "voter": "blysards" + }, + { + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "rshares": "1279854", + "voter": "nigmat" + }, + { + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "rshares": "10847083143", + "voter": "metrox" + }, + { + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "rshares": "710989138", + "voter": "romancs" + }, + { + "rshares": "59366614", + "voter": "luke490" + }, + { + "rshares": "58762473", + "voter": "bro66" + }, + { + "rshares": "201822591", + "voter": "future24" + }, + { + "rshares": "58623688", + "voter": "mythras" + }, + { + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "rshares": "0", + "voter": "matrixdweller" + }, + { + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "rshares": "54761612", + "voter": "edbriv" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "rshares": "52740989", + "voter": "tcstix" + }, + { + "rshares": "49467477", + "voter": "friedwater" + }, + { + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "rshares": "54017869", + "voter": "zelious" + }, + { + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "rshares": "53196086", + "voter": "f1111111" + }, + { + "rshares": "0", + "voter": "anomaly" + }, + { + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "rshares": "0", + "voter": "buckland" + }, + { + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_payout_value": "0.942 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "payout": 1.698, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 92 + }, + "title": "Welcome to Steem!", + "updated": "2016-03-30T18:30:18", + "url": "/meta/@steemit/firstpost" +} diff --git a/hivemind/tavern/bridge_api_patterns/get_post_header.orig.json b/hivemind/tavern/bridge_api_patterns/get_post_header.orig.json new file mode 100644 index 00000000..556f642b --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_post_header.orig.json @@ -0,0 +1 @@ +{"author":"steemit","permlink":"firstpost","category":"meta","depth":0} \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_profile.orig.json b/hivemind/tavern/bridge_api_patterns/get_profile.orig.json new file mode 100644 index 00000000..12579ac9 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_profile.orig.json @@ -0,0 +1,25 @@ +{ + "active": "1970-01-01T00:00:00", + "blacklists": [], + "created": "2016-03-24T17:00:24", + "id": 31, + "metadata": { + "profile": { + "about": null, + "cover_image": "", + "location": null, + "name": null, + "profile_image": "", + "website": null + } + }, + "name": "steemit", + "post_count": 0, + "reputation": 25.0, + "stats": { + "followers": 175, + "following": 0, + "rank": 0, + "sp": 0 + } +} diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts.orig.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts.orig.json new file mode 100644 index 00000000..78f98117 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts.orig.json @@ -0,0 +1,23932 @@ +[ + { + "active_votes": [ + { + "rshares": "28370463371572", + "voter": "dantheman" + }, + { + "rshares": "31307487536364", + "voter": "smooth" + }, + { + "rshares": "231809639013", + "voter": "anonymous" + }, + { + "rshares": "2321962618319", + "voter": "diaphanous" + }, + { + "rshares": "1469558503443", + "voter": "commedy" + }, + { + "rshares": "4287714457313", + "voter": "riverhead" + }, + { + "rshares": "1856006073992", + "voter": "badassmother" + }, + { + "rshares": "1271804694676", + "voter": "rossco99" + }, + { + "rshares": "2206068741954", + "voter": "wang" + }, + { + "rshares": "1950753758979", + "voter": "xeroc" + }, + { + "rshares": "1534707047296", + "voter": "joseph" + }, + { + "rshares": "452874558937", + "voter": "recursive3" + }, + { + "rshares": "620996029765", + "voter": "masteryoda" + }, + { + "rshares": "3120582597678", + "voter": "recursive" + }, + { + "rshares": "440845842", + "voter": "lee2" + }, + { + "rshares": "26932201065", + "voter": "lee3" + }, + { + "rshares": "8677295375", + "voter": "lee4" + }, + { + "rshares": "22149018521", + "voter": "lee5" + }, + { + "rshares": "5942299654212", + "voter": "smooth.witness" + }, + { + "rshares": "8927291120", + "voter": "idol" + }, + { + "rshares": "4941942978", + "voter": "sakr" + }, + { + "rshares": "57625926227", + "voter": "unosuke" + }, + { + "rshares": "1536592488", + "voter": "jocelyn" + }, + { + "rshares": "14818263059", + "voter": "gregory-f" + }, + { + "rshares": "154334962550", + "voter": "edgeland" + }, + { + "rshares": "8836453529", + "voter": "gregory60" + }, + { + "rshares": "29596510808", + "voter": "full-measure" + }, + { + "rshares": "104880949618", + "voter": "eeks" + }, + { + "rshares": "24694558802", + "voter": "fkn" + }, + { + "rshares": "468281676", + "voter": "paco-steem" + }, + { + "rshares": "5641697991", + "voter": "spaninv" + }, + { + "rshares": "32459455171", + "voter": "elishagh1" + }, + { + "rshares": "40391466193", + "voter": "himalayanguru" + }, + { + "rshares": "584291107228", + "voter": "nanzo-scoop" + }, + { + "rshares": "178471627922", + "voter": "steve-walschot" + }, + { + "rshares": "9857825141", + "voter": "kefkius" + }, + { + "rshares": "177420844935", + "voter": "mummyimperfect" + }, + { + "rshares": "106635691300", + "voter": "asch" + }, + { + "rshares": "616864092786", + "voter": "kevinwong" + }, + { + "rshares": "1061266533", + "voter": "murh" + }, + { + "rshares": "6230798580", + "voter": "cryptofunk" + }, + { + "rshares": "579494558", + "voter": "kodi" + }, + { + "rshares": "2003359924", + "voter": "error" + }, + { + "rshares": "11584833708", + "voter": "andu" + }, + { + "rshares": "40553122820", + "voter": "ranko-k" + }, + { + "rshares": "962089879337", + "voter": "cyber" + }, + { + "rshares": "58188888655", + "voter": "theshell" + }, + { + "rshares": "49581045086", + "voter": "ak2020" + }, + { + "rshares": "3848697023555", + "voter": "satoshifund" + }, + { + "rshares": "402139444", + "voter": "applecrisp" + }, + { + "rshares": "36407027386", + "voter": "altoz" + }, + { + "rshares": "365370465", + "voter": "stiletto" + }, + { + "rshares": "55577467736", + "voter": "juanmiguelsalas" + }, + { + "rshares": "219283354085", + "voter": "will-zewe" + }, + { + "rshares": "87300558689", + "voter": "herzmeister" + }, + { + "rshares": "275016906945", + "voter": "trogdor" + }, + { + "rshares": "5287820211", + "voter": "tee-em" + }, + { + "rshares": "31346001722", + "voter": "michaelx" + }, + { + "rshares": "179395106552", + "voter": "thedashguy" + }, + { + "rshares": "4682885200", + "voter": "usefree" + }, + { + "rshares": "189626835254", + "voter": "mexbit" + }, + { + "rshares": "5821262190", + "voter": "mark-waser" + }, + { + "rshares": "118356217412", + "voter": "geoffrey" + }, + { + "rshares": "208362110567", + "voter": "kimziv" + }, + { + "rshares": "46266779182", + "voter": "honeythief" + }, + { + "rshares": "75334808165", + "voter": "emily-cook" + }, + { + "rshares": "2187607792", + "voter": "superfreek" + }, + { + "rshares": "484636799", + "voter": "mrhankeh" + }, + { + "rshares": "17908924002", + "voter": "grey580" + }, + { + "rshares": "275327756", + "voter": "ladyclair" + }, + { + "rshares": "68449861599", + "voter": "bacchist" + }, + { + "rshares": "60315479782", + "voter": "good-karma" + }, + { + "rshares": "3350419346", + "voter": "orly" + }, + { + "rshares": "5271030976", + "voter": "riscadox" + }, + { + "rshares": "24867575018", + "voter": "katyakov" + }, + { + "rshares": "373878481829", + "voter": "fabio" + }, + { + "rshares": "25057642057", + "voter": "tcfxyz" + }, + { + "rshares": "6939984054", + "voter": "futurefood" + }, + { + "rshares": "734082781", + "voter": "rxhector" + }, + { + "rshares": "118094280271", + "voter": "furion" + }, + { + "rshares": "105911917280", + "voter": "cdubendo" + }, + { + "rshares": "578386960", + "voter": "barbara2" + }, + { + "rshares": "642869652", + "voter": "ch0c0latechip" + }, + { + "rshares": "594982040", + "voter": "doge4lyf" + }, + { + "rshares": "12668641443", + "voter": "gord0b" + }, + { + "rshares": "2632460141", + "voter": "steem1653" + }, + { + "rshares": "136322030", + "voter": "cynetyc" + }, + { + "rshares": "25221166135", + "voter": "steemit-life" + }, + { + "rshares": "80777327", + "voter": "snowden" + }, + { + "rshares": "5357326058", + "voter": "thegoodguy" + }, + { + "rshares": "14168336425", + "voter": "aaseb" + }, + { + "rshares": "4209533734", + "voter": "karen13" + }, + { + "rshares": "6017253623", + "voter": "cryptosi" + }, + { + "rshares": "251367062418", + "voter": "nabilov" + }, + { + "rshares": "8751103405", + "voter": "noodhoog" + }, + { + "rshares": "46859060143", + "voter": "milestone" + }, + { + "rshares": "33739229218", + "voter": "creemej" + }, + { + "rshares": "87223247", + "voter": "wildchild" + }, + { + "rshares": "15070803886", + "voter": "nippel66" + }, + { + "rshares": "24417687626", + "voter": "phenom" + }, + { + "rshares": "4545051592", + "voter": "poseidon" + }, + { + "rshares": "7946812357", + "voter": "smolalit" + }, + { + "rshares": "362515598946", + "voter": "calaber24p" + }, + { + "rshares": "147403710", + "voter": "jdenismusic" + }, + { + "rshares": "3365797955", + "voter": "simon.braki.love" + }, + { + "rshares": "82782405213", + "voter": "thylbom" + }, + { + "rshares": "3709588060", + "voter": "bitcoiner" + }, + { + "rshares": "32544157928", + "voter": "deanliu" + }, + { + "rshares": "4996306142", + "voter": "dmitriybtc" + }, + { + "rshares": "204618396015", + "voter": "jl777" + }, + { + "rshares": "30989614870", + "voter": "zaebars" + }, + { + "rshares": "20026634941", + "voter": "positive" + }, + { + "rshares": "1809205777", + "voter": "yarly" + }, + { + "rshares": "272641013", + "voter": "yarly2" + }, + { + "rshares": "273048922", + "voter": "yarly3" + }, + { + "rshares": "157733805", + "voter": "yarly4" + }, + { + "rshares": "158624349", + "voter": "yarly5" + }, + { + "rshares": "90416287", + "voter": "yarly7" + }, + { + "rshares": "799615699", + "voter": "raymonjohnstone" + }, + { + "rshares": "17267341753", + "voter": "proto" + }, + { + "rshares": "34309455805", + "voter": "sisterholics" + }, + { + "rshares": "437620869", + "voter": "yarly10" + }, + { + "rshares": "234191245", + "voter": "yarly11" + }, + { + "rshares": "8781903824", + "voter": "royalmacro" + }, + { + "rshares": "81879061", + "voter": "yarly12" + }, + { + "rshares": "674282213", + "voter": "fnait" + }, + { + "rshares": "599033376", + "voter": "keepcalmand" + }, + { + "rshares": "146224042", + "voter": "steemster1" + }, + { + "rshares": "3022447454", + "voter": "dmilash" + }, + { + "rshares": "2002851358", + "voter": "andreynoch" + }, + { + "rshares": "13359143286", + "voter": "mahekg" + }, + { + "rshares": "50579277183", + "voter": "gomeravibz" + }, + { + "rshares": "8734185109", + "voter": "taker" + }, + { + "rshares": "12064042634", + "voter": "nekromarinist" + }, + { + "rshares": "57873464", + "voter": "sharon" + }, + { + "rshares": "10419645487", + "voter": "dumar022" + }, + { + "rshares": "2157207095", + "voter": "merej99" + }, + { + "rshares": "58971492", + "voter": "lillianjones" + }, + { + "rshares": "1213299204686", + "voter": "laonie" + }, + { + "rshares": "157521707420", + "voter": "twinner" + }, + { + "rshares": "23391691291", + "voter": "rawnetics" + }, + { + "rshares": "22969142749", + "voter": "laonie1" + }, + { + "rshares": "23485900426", + "voter": "laonie2" + }, + { + "rshares": "23494195522", + "voter": "laonie3" + }, + { + "rshares": "24562882668", + "voter": "laoyao" + }, + { + "rshares": "42639811498", + "voter": "myfirst" + }, + { + "rshares": "246279861104", + "voter": "somebody" + }, + { + "rshares": "9450505564", + "voter": "flysaga" + }, + { + "rshares": "5831615639", + "voter": "brendio" + }, + { + "rshares": "2918578376", + "voter": "gmurph" + }, + { + "rshares": "3690744042", + "voter": "chris.roy" + }, + { + "rshares": "54405024034", + "voter": "midnightoil" + }, + { + "rshares": "4190391188", + "voter": "ullikume" + }, + { + "rshares": "23489872560", + "voter": "laonie4" + }, + { + "rshares": "23487615266", + "voter": "laonie5" + }, + { + "rshares": "23484637540", + "voter": "laonie6" + }, + { + "rshares": "23480497322", + "voter": "laonie7" + }, + { + "rshares": "3323984357", + "voter": "kurtbeil" + }, + { + "rshares": "23477049244", + "voter": "laonie8" + }, + { + "rshares": "23474334690", + "voter": "laonie9" + }, + { + "rshares": "136078574669", + "voter": "xiaohui" + }, + { + "rshares": "21112646631", + "voter": "jphamer1" + }, + { + "rshares": "88206053", + "voter": "bigsambucca" + }, + { + "rshares": "6791986484", + "voter": "elfkitchen" + }, + { + "rshares": "99935909954", + "voter": "joele" + }, + { + "rshares": "5855738054", + "voter": "oflyhigh" + }, + { + "rshares": "15860159560", + "voter": "randyclemens" + }, + { + "rshares": "2343183825", + "voter": "paynode" + }, + { + "rshares": "4366149629", + "voter": "xiaokongcom" + }, + { + "rshares": "59437351", + "voter": "msjennifer" + }, + { + "rshares": "54654502", + "voter": "ciao" + }, + { + "rshares": "62928860", + "voter": "session101" + }, + { + "rshares": "52985539", + "voter": "steemo" + }, + { + "rshares": "8801395051", + "voter": "xianjun" + }, + { + "rshares": "52848854", + "voter": "steema" + }, + { + "rshares": "72192938", + "voter": "sijoittaja" + }, + { + "rshares": "69662169", + "voter": "confucius" + }, + { + "rshares": "72135954", + "voter": "stevescriber" + }, + { + "rshares": "51247757", + "voter": "loli" + }, + { + "rshares": "91519215715", + "voter": "miacats" + }, + { + "rshares": "52419023", + "voter": "nano2nd" + }, + { + "rshares": "53661976", + "voter": "jarvis" + }, + { + "rshares": "591109646", + "voter": "microluck" + }, + { + "rshares": "74131936", + "voter": "razberrijam" + }, + { + "rshares": "53106127", + "voter": "fortuner" + }, + { + "rshares": "2022702929", + "voter": "chinadaily" + }, + { + "rshares": "88481667", + "voter": "pompe72" + }, + { + "rshares": "802011524540", + "voter": "dollarvigilante" + }, + { + "rshares": "101627835", + "voter": "pollina" + }, + { + "rshares": "50698107", + "voter": "johnbyrd" + }, + { + "rshares": "50682252", + "voter": "thomasaustin" + }, + { + "rshares": "50680459", + "voter": "thermor" + }, + { + "rshares": "50691211", + "voter": "ficholl" + }, + { + "rshares": "51852278", + "voter": "widell" + }, + { + "rshares": "3635091595", + "voter": "movievertigo" + }, + { + "rshares": "50311250", + "voter": "revelbrooks" + }, + { + "rshares": "23468154723", + "voter": "laonie10" + }, + { + "rshares": "2982691190", + "voter": "netaterra" + }, + { + "rshares": "21980957828", + "voter": "andrewawerdna" + }, + { + "rshares": "5712937692", + "voter": "trev" + }, + { + "rshares": "1874035641", + "voter": "erroneous-logic" + }, + { + "rshares": "302425178", + "voter": "sergeypotapov" + }, + { + "rshares": "65868377", + "voter": "lensessions" + }, + { + "rshares": "59126308", + "voter": "wmhammer" + }, + { + "rshares": "45978108133", + "voter": "emancipatedhuman" + }, + { + "rshares": "15340272043", + "voter": "pressfortruth" + }, + { + "rshares": "6654726855", + "voter": "hilarski" + }, + { + "rshares": "8773942171", + "voter": "craigwilliamz" + }, + { + "rshares": "8856106682", + "voter": "onetree" + }, + { + "rshares": "101945845", + "voter": "slorunner" + }, + { + "rshares": "2029369552", + "voter": "shadowspub" + }, + { + "rshares": "32463005362", + "voter": "daut44" + }, + { + "rshares": "50416427", + "voter": "curpose" + }, + { + "rshares": "59693834", + "voter": "suprepachyderm" + }, + { + "rshares": "1615332211", + "voter": "themonetaryfew" + }, + { + "rshares": "989363278", + "voter": "dajohns1420" + }, + { + "rshares": "2196907450", + "voter": "runridefly" + }, + { + "rshares": "3915304227", + "voter": "newandold" + }, + { + "rshares": "57856784", + "voter": "jamesyk" + }, + { + "rshares": "112983030208", + "voter": "shenanigator" + }, + { + "rshares": "58197677", + "voter": "jcomeauictx" + }, + { + "rshares": "12901147949", + "voter": "quinneaker" + }, + { + "rshares": "752032432", + "voter": "freeinthought" + }, + { + "rshares": "1783693666", + "voter": "funkywanderer" + }, + { + "rshares": "4900461398", + "voter": "richardcrill" + }, + { + "rshares": "22621459650", + "voter": "laonie11" + }, + { + "rshares": "2205784762", + "voter": "jeremyfromwi" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "4662965424", + "voter": "nadin3" + }, + { + "rshares": "588228551", + "voter": "profanarky" + }, + { + "rshares": "3411072843", + "voter": "xanoxt" + }, + { + "rshares": "1625414479", + "voter": "davidjkelley" + }, + { + "rshares": "50593879", + "voter": "crion" + }, + { + "rshares": "174778016", + "voter": "greatness" + }, + { + "rshares": "50271139", + "voter": "hitherise" + }, + { + "rshares": "50262756", + "voter": "wiss" + }, + { + "rshares": "56782516", + "voter": "sebastianbauer" + }, + { + "rshares": "55667728", + "voter": "fizzgig" + }, + { + "rshares": "26571803569", + "voter": "sponge-bob" + }, + { + "rshares": "4044716723", + "voter": "l0k1" + }, + { + "rshares": "15232622426", + "voter": "digital-wisdom" + }, + { + "rshares": "3710973264", + "voter": "ethical-ai" + }, + { + "rshares": "51033798", + "voter": "stroully" + }, + { + "rshares": "3752641890", + "voter": "titusfrost" + }, + { + "rshares": "6682880996", + "voter": "jwaser" + }, + { + "rshares": "50712038", + "voter": "thadm" + }, + { + "rshares": "2353724275", + "voter": "zettar" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "17357974240", + "voter": "bluehorseshoe" + }, + { + "rshares": "53413720", + "voter": "lighter" + }, + { + "rshares": "50370757", + "voter": "yorsens" + }, + { + "rshares": "263853222", + "voter": "maarnio" + }, + { + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "rshares": "2617343597", + "voter": "bwaser" + }, + { + "rshares": "50840303", + "voter": "sofa" + }, + { + "rshares": "323483227", + "voter": "panther" + }, + { + "rshares": "53871683", + "voter": "doggnostic" + }, + { + "rshares": "659649765", + "voter": "ct-gurus" + }, + { + "rshares": "53593366", + "voter": "jenny-talls" + }, + { + "rshares": "411677045923", + "voter": "charlieshrem" + }, + { + "rshares": "61827447459", + "voter": "tracemayer" + }, + { + "rshares": "54239080444", + "voter": "brains" + }, + { + "rshares": "50450987", + "voter": "waldemar-kuhn" + }, + { + "rshares": "1415009195", + "voter": "steemafon" + }, + { + "rshares": "1352324852", + "voter": "bitcoinparadise" + }, + { + "rshares": "5753524189", + "voter": "chick1" + }, + { + "rshares": "3605995609", + "voter": "rigaronib" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "50516543", + "voter": "typingagent" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "62515317", + "voter": "freebornangel" + }, + { + "rshares": "271440423", + "voter": "anomaly" + }, + { + "rshares": "2401297947", + "voter": "ellepdub" + }, + { + "rshares": "63405661", + "voter": "inarix03" + }, + { + "rshares": "98577200", + "voter": "ola1" + }, + { + "rshares": "51615652", + "voter": "rayzzz" + }, + { + "rshares": "12115690216", + "voter": "herpetologyguy" + }, + { + "rshares": "4712300251", + "voter": "morgan.waser" + }, + { + "rshares": "157644916", + "voter": "iggy" + }, + { + "rshares": "51636819", + "voter": "mbizryu0" + }, + { + "rshares": "51631638", + "voter": "archij" + }, + { + "rshares": "51530815", + "voter": "movie7283" + }, + { + "rshares": "51527606", + "voter": "ppcompp2" + }, + { + "rshares": "51520427", + "voter": "jj1968" + }, + { + "rshares": "51516489", + "voter": "cineger" + }, + { + "rshares": "51497383", + "voter": "sksduddk" + }, + { + "rshares": "51490214", + "voter": "jjc0719" + }, + { + "rshares": "51235131", + "voter": "glassheart" + }, + { + "rshares": "51215236", + "voter": "deli" + }, + { + "rshares": "1233685675", + "voter": "anns" + }, + { + "rshares": "50798322", + "voter": "breeze" + }, + { + "rshares": "50677982", + "voter": "sjytoy" + }, + { + "rshares": "50676799", + "voter": "shy2675" + }, + { + "rshares": "50675747", + "voter": "suance1009" + }, + { + "rshares": "50674176", + "voter": "hasqmd" + }, + { + "rshares": "50673722", + "voter": "fischer67" + }, + { + "rshares": "50672116", + "voter": "elya1" + }, + { + "rshares": "50632828", + "voter": "xclamp45" + }, + { + "rshares": "50618471", + "voter": "likeagame1" + }, + { + "rshares": "50616898", + "voter": "apple4006" + }, + { + "rshares": "50615195", + "voter": "bigbell61" + }, + { + "rshares": "50612850", + "voter": "dolpo777" + }, + { + "rshares": "50611931", + "voter": "dongperi" + }, + { + "rshares": "50610620", + "voter": "lion2byung" + }, + { + "rshares": "50610002", + "voter": "cwj1973" + }, + { + "rshares": "50609329", + "voter": "psj212" + }, + { + "rshares": "50608661", + "voter": "owithed2" + }, + { + "rshares": "50606929", + "voter": "fiself2" + }, + { + "rshares": "50605131", + "voter": "trablinever1" + }, + { + "rshares": "50603861", + "voter": "nuals1940" + }, + { + "rshares": "50602310", + "voter": "fanceth2" + }, + { + "rshares": "50572441", + "voter": "unilever" + }, + { + "rshares": "50540827", + "voter": "amstel" + }, + { + "rshares": "1921231770", + "voter": "bapparabi" + }, + { + "rshares": "50479027", + "voter": "sunlight" + }, + { + "rshares": "50355943", + "voter": "forea1995" + }, + { + "rshares": "50354561", + "voter": "holow1968" + }, + { + "rshares": "50353969", + "voter": "peaces1952" + }, + { + "rshares": "50346496", + "voter": "himighar2" + }, + { + "rshares": "50345607", + "voter": "aromese1974" + }, + { + "rshares": "50344921", + "voter": "runis1943" + }, + { + "rshares": "50344067", + "voter": "tong1962" + }, + { + "rshares": "50340744", + "voter": "hishe1997" + }, + { + "rshares": "255059000", + "voter": "letstalkliberty" + }, + { + "rshares": "3609651500", + "voter": "strong-ai" + }, + { + "rshares": "53375937", + "voter": "ninjapainter" + }, + { + "rshares": "51393104", + "voter": "buit1989" + }, + { + "rshares": "51389981", + "voter": "imadecoult1" + }, + { + "rshares": "51387526", + "voter": "infees2" + }, + { + "rshares": "51384095", + "voter": "suar1997" + }, + { + "rshares": "51382067", + "voter": "sobsell93" + }, + { + "rshares": "51380710", + "voter": "stroned96" + }, + { + "rshares": "51378107", + "voter": "drethe" + }, + { + "rshares": "51377505", + "voter": "qualwas" + }, + { + "rshares": "51376367", + "voter": "phent1994" + }, + { + "rshares": "51375075", + "voter": "baboyes" + }, + { + "rshares": "51373532", + "voter": "whor1973" + }, + { + "rshares": "51372739", + "voter": "youreforn" + }, + { + "rshares": "51371902", + "voter": "voll1981" + }, + { + "rshares": "51370717", + "voter": "copenty2" + }, + { + "rshares": "51369717", + "voter": "maject2" + }, + { + "rshares": "51367233", + "voter": "coust1997" + }, + { + "rshares": "51366398", + "voter": "busionea84" + }, + { + "rshares": "51365174", + "voter": "therver1" + }, + { + "rshares": "51364022", + "voter": "appirdsmanne1990" + }, + { + "rshares": "51362967", + "voter": "alienighted87" + }, + { + "rshares": "51359746", + "voter": "anity1994" + }, + { + "rshares": "59959066", + "voter": "themphe1" + }, + { + "rshares": "51355864", + "voter": "abild1988" + }, + { + "rshares": "51353540", + "voter": "spoll1973" + }, + { + "rshares": "66162576", + "voter": "afteld1" + }, + { + "rshares": "71207873", + "voter": "igtes" + }, + { + "rshares": "835065804", + "voter": "dikanevroman" + }, + { + "rshares": "141679752", + "voter": "buffett" + }, + { + "rshares": "1630362522", + "voter": "rusteemitblog" + }, + { + "rshares": "167843838", + "voter": "robyneggs" + }, + { + "rshares": "1300689481", + "voter": "michaelstobiersk" + }, + { + "rshares": "453506109", + "voter": "witchcraftblog" + }, + { + "rshares": "158057595", + "voter": "sdc" + }, + { + "rshares": "160973134", + "voter": "gravity" + }, + { + "rshares": "160900665", + "voter": "digitalillusions" + }, + { + "rshares": "157726117", + "voter": "illusions" + }, + { + "rshares": "157176058", + "voter": "cybergirls" + }, + { + "rshares": "156847954", + "voter": "correct" + }, + { + "rshares": "156814579", + "voter": "haribo" + }, + { + "rshares": "156194471", + "voter": "stimmt" + }, + { + "rshares": "156054487", + "voter": "fallout" + }, + { + "rshares": "159062820", + "voter": "rule" + }, + { + "rshares": "155907388", + "voter": "xtreme" + }, + { + "rshares": "1442647825", + "voter": "modernbukowski" + }, + { + "rshares": "158602900", + "voter": "steem-wallet" + }, + { + "rshares": "158535752", + "voter": "nerds" + }, + { + "rshares": "31008332335", + "voter": "goldmatters" + }, + { + "rshares": "155796749", + "voter": "majes" + }, + { + "rshares": "155166715", + "voter": "maxb02" + }, + { + "rshares": "71727340", + "voter": "dealzgal" + }, + { + "rshares": "120983531", + "voter": "bleujay" + }, + { + "rshares": "68013381", + "voter": "storage" + }, + { + "rshares": "298391608", + "voter": "risabold" + }, + { + "rshares": "154247502", + "voter": "dougkarr" + }, + { + "rshares": "58460105", + "voter": "blackmarket" + }, + { + "rshares": "61530871", + "voter": "gifts" + }, + { + "rshares": "96643251", + "voter": "expat" + }, + { + "rshares": "181770825", + "voter": "pathtomydream" + }, + { + "rshares": "519265850", + "voter": "doubledex" + }, + { + "rshares": "1593664040", + "voter": "steemlift" + }, + { + "rshares": "129609202", + "voter": "toddemaher1" + } + ], + "author": "dollarvigilante", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "
https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg
\n\nIn past issues, we\u2019ve documented increasingly concerned billionaires warning of dangerous economic times. Many have favored gold as an alternative allocation in a world where $13 trillion-worth of debt is negative yielding, interest rates are artificially suppressed and we\u2019re on the brink of major wars.\n\nThe newest addition to this gold-loving billionaire's club, is none other than hedge-fund manager Paul Singer. At CNBC\u2019s Delivering Alpha Investors Conference this week, the founder of the $27-billion Elliott Management Fund, the 17th largest hedge fund in the world, mentioned that at current prices gold is \u201cundervalued\u201d and \u201cunderrepresented in many portfolios as the only ... store of value that has stood the test of time.\u201d\n\nSinger, along with numerous other hedge-fund managers, has been increasingly outspoken in his criticism of the Federal Reserve and other central banks for creating dangers in the market unlike any in what he terms the \u201c5,000 year-ish\u201d history of finance. Singer noted that \u201cit's a very dangerous time in the global economy and global financial markets.\"\n\nThis quote is frighteningly similar to the response given by Donald Trump on Fox Business not long ago when he was asked if he had money in the market. He answered, \u201cI did, but I got out,\u201d and then went on to say that he expected \u201cvery scary scenarios\u201d for investors.\n\nSinger also stated that he thinks owning medium- to long-term first world debt is a \u201creally bad idea\u201d... and then proceeded to tell listeners to sell their 30-year bonds.\n\nEarlier in the conference, prior to Singer, Ray Dalio who is the manager of the largest hedge fund in the world, Bridgewater Capital, was also vocal about the diminishing returns provided by government debt held by central banks. \u201cThere\u2019s only so much you can squeeze out of the debt cycle,\" he said. He went on to say that central banks are at a point now where their ability to stimulate is limited.\n\nSeated next to Dalio was Former Treasury secretary Timothy Geithner who voiced concern about limited \u201ctools in the keynesian arsenal,\u201d that probably wouldn\u2019t be enough to offset the next recession.\n\nGeithner obviously believes that a recession is on the way. Dalio and Singer are trying to convey the same message. A massive crunch is looming.\n\nWe agree with them, although we believe Geithner was sugarcoating what\u2019s to come.\n\nAfter all, we are on the precipice of a crash of biblical proportions according to the former chief economist of the Bank for International Settlements, William White.\n\nWe have mentioned his quote numerous time here at TDV but feel it\u2019s important to reiterate because of its magnitude: \u201cThe only question is whether we are able to look reality in the eye and face what is coming in an orderly fashion, or whether it will be disorderly. Debt jubilees have been going on for 5,000 years, as far back as the Sumerians.\u201d\n\nAs the Fed considers its second rate hike in 10 years, Singer condemned policy-makers for acting with \u201camazing arrogance\u201d when he and others had warned of a mortgage crisis prior to 2008.\n\nWhat he and those who agreed with his stance don\u2019t know, or at least won\u2019t state publicly, is that these shoddy central bank policies are detrimental by design. In other words, their sole purpose is to destabilize the world economy.\n\nThis deliberate market sabotage is necessary for the transference of power from the more developed nations to less developed ones. Ultimately, the idea is to eliminate smaller regional and national central banks. Once things get bad enough, these smaller banks will be blamed for provoking a given crisis. And, secondarily, the end goal is to blow up the entire system in order to bring in the one world government and central bank.\n\nThe elites have used the same tactics time and time again throughout history. First, they create the problem, then there is a reaction, and then finally they come swooping in to \u201cvaliantly save\u201d the day. It's happened numerous times before.\n
https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png
\nAnd it will soon happen again.\n\nOf course, the globalists have demonstrated that every intervention only makes situations worse.\n\nWe reported on the blatant thievery going on at Wells Fargo in our last article and noted how the elites were probably laughing hysterically at what they\u2019re able to get away with. They were even able to convince many younger American voters that \u201cdemocratic socialism\u201d would be their savior, as seen by the significant, youthful support for Bernie Slanders. Debt and currency crises have already started to materialize, as we\u2019ve seen in the socialist utopia that is Venezuela. If this is any indication of what\u2019s to come, the future is looking awfully gloomy.\n\nAs Singer and others including Dalio have mentioned before, the most tried and true measure of wealth and value is gold.\n\nAt TDV we provide unique Austrian-economics based analysis from the anarcho-capitalist pespective of the state of the world\u2019s economy, as well as suggestions on how to protect your assets in these tempestuous and unprecedented times.\n\nJacob Rothschild, a member of the family partly responsible for the creation of all this chaos, even said himself that we are in \u201cuncharted waters\u201d and that it\u2019s \u201cimpossible to predict the unintended consequences of very low interest rates.\u201d\n\nWe have a pretty good idea of what the consequences will be and we\u2019re taking action to protect ourselves and even profit from them. Rothschild seems to know the consequences, as well, as he has been buying up gold and selling the stock market and the US dollar.\n\nYou can survive and profit from the orchestrated collapse too. Subscribe to TDV\u2019s newsletter here to receive constantly updated information on how to protect your family and friends.\n\nIn the end, it is getting truly bizarre just how many billionaires, central bankers and others of note are all warning of the coming collapse. We\u2019d almost begun to worry that they were going to pull a switch-a-roo on us, but if you asked the great majority of investors and financial analysts, they\u2019ll tell you that they see nothing but smooth sailing ahead.\n\nSo, while many are warning, many are hearing, but not listening. The bible said something about that, I believe.\n
https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg
", + "category": "money", + "children": 23, + "created": "2016-09-15T18:23:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg", + "https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png", + "https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg" + ], + "links": [ + "https://dollarvigilante.com/subscribe" + ], + "tags": [ + "money", + "gold", + "silver", + "bitcoin", + "crisis" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 102136532384242, + "payout": 596.997, + "payout_at": "2016-09-16T18:47:28", + "pending_payout_value": "596.997 HBD", + "percent_steem_dollars": 10000, + "permlink": "another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", + "post_id": 960290, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 387 + }, + "title": "Another Billionaire Warns of Catastrophic Depths Not Seen in 5,000 Years - and Emphasizes Gold", + "updated": "2016-09-15T18:23:15", + "url": "/money/@dollarvigilante/another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold" + }, + { + "active_votes": [ + { + "rshares": "260764053346", + "voter": "anonymous" + }, + { + "rshares": "26301850743316", + "voter": "berniesanders" + }, + { + "rshares": "14447419939656", + "voter": "summon" + }, + { + "rshares": "30325685746209", + "voter": "val-a" + }, + { + "rshares": "15605000000000", + "voter": "val-b" + }, + { + "rshares": "35140699766668", + "voter": "jamesc" + }, + { + "rshares": "4574334081535", + "voter": "riverhead" + }, + { + "rshares": "7028898358251", + "voter": "wackou" + }, + { + "rshares": "173882410087", + "voter": "nextgenwitness" + }, + { + "rshares": "9910560004202", + "voter": "pharesim" + }, + { + "rshares": "610230676198", + "voter": "justin" + }, + { + "rshares": "120855503269", + "voter": "sandra" + }, + { + "rshares": "5450332021682", + "voter": "kushed" + }, + { + "rshares": "1673100049730", + "voter": "silver" + }, + { + "rshares": "4062956162312", + "voter": "silversteem" + }, + { + "rshares": "1149056534045", + "voter": "ihashfury" + }, + { + "rshares": "4624346498267", + "voter": "nextgencrypto" + }, + { + "rshares": "6514602351120", + "voter": "complexring" + }, + { + "rshares": "6400095696110", + "voter": "clayop" + }, + { + "rshares": "403437826343", + "voter": "steemservices" + }, + { + "rshares": "26833458550", + "voter": "steemservices1" + }, + { + "rshares": "1731510767128", + "voter": "joseph" + }, + { + "rshares": "84640148427", + "voter": "aizensou" + }, + { + "rshares": "4166568773495", + "voter": "au1nethyb1" + }, + { + "rshares": "223905651656", + "voter": "b0y2k" + }, + { + "rshares": "12275043694", + "voter": "bentley" + }, + { + "rshares": "630566306296", + "voter": "masteryoda" + }, + { + "rshares": "1209033907", + "voter": "mineralwasser" + }, + { + "rshares": "687090032502", + "voter": "boombastic" + }, + { + "rshares": "91240228363", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "1718241828", + "voter": "bingo-1" + }, + { + "rshares": "258890080700", + "voter": "indominon" + }, + { + "rshares": "795235221870", + "voter": "pfunk" + }, + { + "rshares": "170448234189", + "voter": "pairmike" + }, + { + "rshares": "3126367512437", + "voter": "onceuponatime" + }, + { + "rshares": "10365366239", + "voter": "idol" + }, + { + "rshares": "2747150485288", + "voter": "donkeypong" + }, + { + "rshares": "799706906226", + "voter": "steemrollin" + }, + { + "rshares": "4940816573", + "voter": "sakr" + }, + { + "rshares": "52267603683", + "voter": "ilanaakoundi" + }, + { + "rshares": "1784486145", + "voter": "jocelyn" + }, + { + "rshares": "81778714071", + "voter": "acidsun" + }, + { + "rshares": "14485500439", + "voter": "gregory-f" + }, + { + "rshares": "182184490464", + "voter": "samuel-stone" + }, + { + "rshares": "17261905745", + "voter": "jademont" + }, + { + "rshares": "1231622449650", + "voter": "gavvet" + }, + { + "rshares": "44936016583", + "voter": "eeks" + }, + { + "rshares": "-12893763252", + "voter": "james-show" + }, + { + "rshares": "581796947010", + "voter": "nanzo-scoop" + }, + { + "rshares": "9089111423", + "voter": "cian.dafe" + }, + { + "rshares": "48608113541", + "voter": "hannixx42" + }, + { + "rshares": "178475239190", + "voter": "mummyimperfect" + }, + { + "rshares": "268818780", + "voter": "coar" + }, + { + "rshares": "100988550788", + "voter": "asch" + }, + { + "rshares": "629740296743", + "voter": "kevinwong" + }, + { + "rshares": "1414357784", + "voter": "murh" + }, + { + "rshares": "3186258004", + "voter": "cryptofunk" + }, + { + "rshares": "17430843199", + "voter": "b4bb4r-5h3r" + }, + { + "rshares": "2326310189", + "voter": "error" + }, + { + "rshares": "5853981249", + "voter": "marta-zaidel" + }, + { + "rshares": "1064576926325", + "voter": "cyber" + }, + { + "rshares": "49529533316", + "voter": "ak2020" + }, + { + "rshares": "7897522470", + "voter": "thecryptofiend" + }, + { + "rshares": "24406094847", + "voter": "paul-labossiere" + }, + { + "rshares": "98824186817", + "voter": "eric-boucher" + }, + { + "rshares": "418804855", + "voter": "applecrisp" + }, + { + "rshares": "55573071997", + "voter": "juanmiguelsalas" + }, + { + "rshares": "33768131164", + "voter": "ratel" + }, + { + "rshares": "574978856216", + "voter": "infovore" + }, + { + "rshares": "2201949670", + "voter": "stephen-somers" + }, + { + "rshares": "804428766688", + "voter": "anwenbaumeister" + }, + { + "rshares": "6652497229", + "voter": "grandpere" + }, + { + "rshares": "5946920606", + "voter": "mark-waser" + }, + { + "rshares": "17023109715", + "voter": "albertogm" + }, + { + "rshares": "202862990998", + "voter": "kimziv" + }, + { + "rshares": "81140450926", + "voter": "emily-cook" + }, + { + "rshares": "87044687927", + "voter": "razvanelulmarin" + }, + { + "rshares": "11725334283", + "voter": "primus" + }, + { + "rshares": "20587586407", + "voter": "skapaneas" + }, + { + "rshares": "280886491", + "voter": "ladyclair" + }, + { + "rshares": "158997318209", + "voter": "asmolokalo" + }, + { + "rshares": "453674041389", + "voter": "roelandp" + }, + { + "rshares": "62652918156", + "voter": "lehard" + }, + { + "rshares": "24867544970", + "voter": "katyakov" + }, + { + "rshares": "19227034654", + "voter": "hakise" + }, + { + "rshares": "158322035362", + "voter": "derekareith" + }, + { + "rshares": "540675721761", + "voter": "neoxian" + }, + { + "rshares": "1382909545432", + "voter": "renohq" + }, + { + "rshares": "18347051336", + "voter": "ausbitbank" + }, + { + "rshares": "45733024772", + "voter": "mrwang" + }, + { + "rshares": "243777568", + "voter": "ardina" + }, + { + "rshares": "17613903814", + "voter": "sebastien" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "33656343814", + "voter": "toxonaut" + }, + { + "rshares": "1107683133", + "voter": "karen13" + }, + { + "rshares": "37477086352", + "voter": "diana.catherine" + }, + { + "rshares": "11096353249", + "voter": "deviedev" + }, + { + "rshares": "71693623547", + "voter": "jpiper20" + }, + { + "rshares": "4205385163", + "voter": "dcryptogold" + }, + { + "rshares": "2722560234", + "voter": "dmacshady" + }, + { + "rshares": "35770303799", + "voter": "creemej" + }, + { + "rshares": "2434921863", + "voter": "the-future" + }, + { + "rshares": "4296012707", + "voter": "adamt" + }, + { + "rshares": "2884781837", + "voter": "sgnsteems" + }, + { + "rshares": "175156042246", + "voter": "blueorgy" + }, + { + "rshares": "4542807775", + "voter": "poseidon" + }, + { + "rshares": "7168473448", + "voter": "geronimo" + }, + { + "rshares": "256660074008", + "voter": "liberosist" + }, + { + "rshares": "3773911635", + "voter": "birdie" + }, + { + "rshares": "9502502066", + "voter": "oumar" + }, + { + "rshares": "53840923427", + "voter": "jl777" + }, + { + "rshares": "1114903893", + "voter": "oecp85" + }, + { + "rshares": "7837739118", + "voter": "lostnuggett" + }, + { + "rshares": "36537971467", + "voter": "paquito" + }, + { + "rshares": "1120682252", + "voter": "lpfaust" + }, + { + "rshares": "5431079499", + "voter": "gustavopasquini" + }, + { + "rshares": "12879388253", + "voter": "moon32walker" + }, + { + "rshares": "206056754", + "voter": "sergey44" + }, + { + "rshares": "1258889103", + "voter": "mohammed123" + }, + { + "rshares": "21551743607", + "voter": "krabgat" + }, + { + "rshares": "42775578615", + "voter": "claudiop63" + }, + { + "rshares": "4543618384", + "voter": "proto" + }, + { + "rshares": "33381543237", + "voter": "sisterholics" + }, + { + "rshares": "16939424070", + "voter": "michaeldodridge" + }, + { + "rshares": "3555056805", + "voter": "bkkshadow" + }, + { + "rshares": "177054757", + "voter": "kibela" + }, + { + "rshares": "149624601", + "voter": "steemster1" + }, + { + "rshares": "467278771", + "voter": "bullionstackers" + }, + { + "rshares": "2399486339", + "voter": "jillstein2016" + }, + { + "rshares": "113159459", + "voter": "cryptoz" + }, + { + "rshares": "947490604", + "voter": "metaflute" + }, + { + "rshares": "49031153303", + "voter": "gomeravibz" + }, + { + "rshares": "2298221146", + "voter": "taker" + }, + { + "rshares": "14667601139", + "voter": "nekromarinist" + }, + { + "rshares": "10689974196", + "voter": "sykochica" + }, + { + "rshares": "57873464", + "voter": "sharon" + }, + { + "rshares": "235438675", + "voter": "frozendota" + }, + { + "rshares": "10107459891", + "voter": "dumar022" + }, + { + "rshares": "61714352", + "voter": "lillianjones" + }, + { + "rshares": "1180036690060", + "voter": "laonie" + }, + { + "rshares": "156808373457", + "voter": "twinner" + }, + { + "rshares": "24365622803", + "voter": "rawnetics" + }, + { + "rshares": "21937293191", + "voter": "thebluepanda" + }, + { + "rshares": "4038742528", + "voter": "timcliff" + }, + { + "rshares": "38493825241", + "voter": "myfirst" + }, + { + "rshares": "239614488307", + "voter": "somebody" + }, + { + "rshares": "9201794973", + "voter": "flysaga" + }, + { + "rshares": "1249580263", + "voter": "gmurph" + }, + { + "rshares": "7842754455", + "voter": "chris.roy" + }, + { + "rshares": "77413968", + "voter": "kurzer42" + }, + { + "rshares": "52933383775", + "voter": "midnightoil" + }, + { + "rshares": "2422858002", + "voter": "kalimor" + }, + { + "rshares": "4337200195", + "voter": "armen" + }, + { + "rshares": "109799369185", + "voter": "thisisbenbrick" + }, + { + "rshares": "35930892807", + "voter": "budgetbucketlist" + }, + { + "rshares": "132362897113", + "voter": "xiaohui" + }, + { + "rshares": "4269542847", + "voter": "antfield" + }, + { + "rshares": "60240401", + "voter": "locolote" + }, + { + "rshares": "3062483684", + "voter": "alitas" + }, + { + "rshares": "6555686028", + "voter": "elfkitchen" + }, + { + "rshares": "93215140213", + "voter": "joele" + }, + { + "rshares": "15543048016", + "voter": "randyclemens" + }, + { + "rshares": "4251276841", + "voter": "xiaokongcom" + }, + { + "rshares": "12956892771", + "voter": "gargon" + }, + { + "rshares": "2505333045", + "voter": "pgarcgo" + }, + { + "rshares": "39336543785", + "voter": "nonlinearone" + }, + { + "rshares": "62201879", + "voter": "msjennifer" + }, + { + "rshares": "57196572", + "voter": "ciao" + }, + { + "rshares": "3820074526", + "voter": "villainblack" + }, + { + "rshares": "67219867859", + "voter": "cryptos" + }, + { + "rshares": "8446448806", + "voter": "theconnoisseur" + }, + { + "rshares": "52985539", + "voter": "steemo" + }, + { + "rshares": "8569626145", + "voter": "xianjun" + }, + { + "rshares": "55306941", + "voter": "steema" + }, + { + "rshares": "3209376097", + "voter": "fingolfin" + }, + { + "rshares": "68042118", + "voter": "confucius" + }, + { + "rshares": "4097488430", + "voter": "bledarus" + }, + { + "rshares": "61075670", + "voter": "weames" + }, + { + "rshares": "56157882", + "voter": "jarvis" + }, + { + "rshares": "561462512", + "voter": "microluck" + }, + { + "rshares": "54313084", + "voter": "fortuner" + }, + { + "rshares": "9443278113", + "voter": "pjheinz" + }, + { + "rshares": "33826834839", + "voter": "thecurator" + }, + { + "rshares": "3054149279", + "voter": "virtualgrowth" + }, + { + "rshares": "7981841214", + "voter": "lemouth" + }, + { + "rshares": "20539806569", + "voter": "runaway-psyche" + }, + { + "rshares": "916656643", + "voter": "chanbam" + }, + { + "rshares": "95362884392", + "voter": "anotherjoe" + }, + { + "rshares": "59750246", + "voter": "saveliy" + }, + { + "rshares": "62751101", + "voter": "alfaman" + }, + { + "rshares": "11375408076", + "voter": "gvargas123" + }, + { + "rshares": "50698107", + "voter": "johnbyrd" + }, + { + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "rshares": "50680459", + "voter": "thermor" + }, + { + "rshares": "50691211", + "voter": "ficholl" + }, + { + "rshares": "50673817", + "voter": "widell" + }, + { + "rshares": "278004039", + "voter": "steevc" + }, + { + "rshares": "51481279", + "voter": "revelbrooks" + }, + { + "rshares": "377542979", + "voter": "mrlogic" + }, + { + "rshares": "61115647", + "voter": "steempipe" + }, + { + "rshares": "23522356557", + "voter": "andrewawerdna" + }, + { + "rshares": "75274936", + "voter": "joelbow" + }, + { + "rshares": "9139349966", + "voter": "craigwilliamz" + }, + { + "rshares": "3632579654", + "voter": "naquoya" + }, + { + "rshares": "52708083", + "voter": "curpose" + }, + { + "rshares": "1233668048", + "voter": "lenar" + }, + { + "rshares": "9818184488", + "voter": "lesliestarrohara" + }, + { + "rshares": "88019548", + "voter": "uziriel" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "70275964", + "voter": "lovetosteemit" + }, + { + "rshares": "1624586871", + "voter": "davidjkelley" + }, + { + "rshares": "78525447485", + "voter": "markrmorrisjr" + }, + { + "rshares": "52842496", + "voter": "crion" + }, + { + "rshares": "182060433", + "voter": "greatness" + }, + { + "rshares": "52505412", + "voter": "hitherise" + }, + { + "rshares": "50262756", + "voter": "wiss" + }, + { + "rshares": "42587324218", + "voter": "sponge-bob" + }, + { + "rshares": "15560806947", + "voter": "digital-wisdom" + }, + { + "rshares": "5676881799", + "voter": "leavemealone" + }, + { + "rshares": "474964783", + "voter": "areynolds" + }, + { + "rshares": "3708768210", + "voter": "ethical-ai" + }, + { + "rshares": "53281654", + "voter": "jamespro" + }, + { + "rshares": "51033798", + "voter": "stroully" + }, + { + "rshares": "6827381497", + "voter": "jwaser" + }, + { + "rshares": "345961132", + "voter": "tfeldman" + }, + { + "rshares": "50712038", + "voter": "thadm" + }, + { + "rshares": "50710305", + "voter": "prof" + }, + { + "rshares": "1414660150", + "voter": "ionescur" + }, + { + "rshares": "145187700042", + "voter": "thecyclist" + }, + { + "rshares": "620633970", + "voter": "kev7000" + }, + { + "rshares": "52560790", + "voter": "yorsens" + }, + { + "rshares": "207236223370", + "voter": "asksisk" + }, + { + "rshares": "55690180", + "voter": "jeremyschew" + }, + { + "rshares": "52242652", + "voter": "bane" + }, + { + "rshares": "52236265", + "voter": "vive" + }, + { + "rshares": "50054445", + "voter": "coad" + }, + { + "rshares": "25849035338", + "voter": "dubi" + }, + { + "rshares": "2674022812", + "voter": "bwaser" + }, + { + "rshares": "7642689568", + "voter": "renzoarg" + }, + { + "rshares": "53003720", + "voter": "sofa" + }, + { + "rshares": "2201645172", + "voter": "alina1" + }, + { + "rshares": "1504667661", + "voter": "digitalbrain" + }, + { + "rshares": "7681172153", + "voter": "mariandavp" + }, + { + "rshares": "43440714161", + "voter": "brains" + }, + { + "rshares": "3956902718", + "voter": "ibringawareness" + }, + { + "rshares": "50933404", + "voter": "ailo" + }, + { + "rshares": "5419706802", + "voter": "burnin" + }, + { + "rshares": "598109050", + "voter": "nelyp" + }, + { + "rshares": "51261721", + "voter": "f1111111" + }, + { + "rshares": "438008616", + "voter": "anomaly" + }, + { + "rshares": "2400009033", + "voter": "ellepdub" + }, + { + "rshares": "52928580", + "voter": "gregorygarcia" + }, + { + "rshares": "263062725", + "voter": "ola1" + }, + { + "rshares": "12084353453", + "voter": "herpetologyguy" + }, + { + "rshares": "50441122", + "voter": "eavy" + }, + { + "rshares": "51484593", + "voter": "roto" + }, + { + "rshares": "50263480", + "voter": "drac59" + }, + { + "rshares": "76492342", + "voter": "ancientofdays" + }, + { + "rshares": "4814064056", + "voter": "morgan.waser" + }, + { + "rshares": "51615039", + "voter": "cfisher" + }, + { + "rshares": "58668861", + "voter": "humans" + }, + { + "rshares": "50938725", + "voter": "haved" + }, + { + "rshares": "61035542", + "voter": "teo" + }, + { + "rshares": "2019644456", + "voter": "greenwayoflife" + }, + { + "rshares": "50873654", + "voter": "palladium" + }, + { + "rshares": "1523610145", + "voter": "thebiggestidea" + }, + { + "rshares": "50572441", + "voter": "unilever" + }, + { + "rshares": "50565798", + "voter": "penthouse" + }, + { + "rshares": "50534533", + "voter": "bapparabi" + }, + { + "rshares": "50482289", + "voter": "connection" + }, + { + "rshares": "50351738", + "voter": "aschwin" + }, + { + "rshares": "166200503", + "voter": "haddock" + }, + { + "rshares": "3607535118", + "voter": "strong-ai" + }, + { + "rshares": "69589512", + "voter": "igtes" + }, + { + "rshares": "46774280781", + "voter": "curie" + }, + { + "rshares": "82287966", + "voter": "olesia83" + }, + { + "rshares": "705822962", + "voter": "dikanevroman" + }, + { + "rshares": "138459757", + "voter": "buffett" + }, + { + "rshares": "159730645", + "voter": "uct" + }, + { + "rshares": "159716853", + "voter": "front" + }, + { + "rshares": "158676075", + "voter": "iberia" + }, + { + "rshares": "158649039", + "voter": "ndea30" + }, + { + "rshares": "158641883", + "voter": "domenico" + }, + { + "rshares": "435351417", + "voter": "witchcraftblog" + }, + { + "rshares": "157805871", + "voter": "serena199" + }, + { + "rshares": "160900665", + "voter": "digitalillusions" + }, + { + "rshares": "157774885", + "voter": "gia7" + }, + { + "rshares": "1883713307", + "voter": "dresden" + }, + { + "rshares": "160835930", + "voter": "skrillex" + }, + { + "rshares": "205939206", + "voter": "mgibson" + }, + { + "rshares": "157303076", + "voter": "richie4" + }, + { + "rshares": "157241455", + "voter": "coraline88" + }, + { + "rshares": "156977663", + "voter": "harlen" + }, + { + "rshares": "155225345", + "voter": "food-creator" + }, + { + "rshares": "156939548", + "voter": "yanuel" + }, + { + "rshares": "692395145", + "voter": "ysa" + }, + { + "rshares": "156889267", + "voter": "daritza" + }, + { + "rshares": "159973989", + "voter": "capcom" + }, + { + "rshares": "159950870", + "voter": "haribo" + }, + { + "rshares": "159531007", + "voter": "benetton" + }, + { + "rshares": "156054487", + "voter": "fallout" + }, + { + "rshares": "152431082", + "voter": "alterego" + }, + { + "rshares": "158486055", + "voter": "zendesk" + }, + { + "rshares": "158198121", + "voter": "lefrisa" + }, + { + "rshares": "157848543", + "voter": "bicolisarog" + }, + { + "rshares": "184381906", + "voter": "antaja" + }, + { + "rshares": "203602662", + "voter": "steemdesigner" + }, + { + "rshares": "154247502", + "voter": "dougkarr" + }, + { + "rshares": "846327994", + "voter": "alienbutt" + }, + { + "rshares": "182445807", + "voter": "techslut" + }, + { + "rshares": "112446078", + "voter": "paulocouto" + }, + { + "rshares": "152816202", + "voter": "countofdelphi" + }, + { + "rshares": "151525581", + "voter": "kevinfoesenek" + }, + { + "rshares": "151078228", + "voter": "unterhd6" + }, + { + "rshares": "141999204", + "voter": "newsfeed" + }, + { + "rshares": "147818170", + "voter": "dirlei.sdias" + }, + { + "rshares": "153395599", + "voter": "trickster512" + }, + { + "rshares": "150319355", + "voter": "denise12" + } + ], + "author": "curie", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\n

One Month of Project Curie

\n

This will be special update from Project Curie. One month ago, Project Curie began with humble beginnings. It has been an exhilarating experience for the team and we are delighted to share our progress with the Steemit community. To know more about Project Curie, do check out our initial announcement.


\n

Project Curie wishes to thank @pharesim, @val, @silversteem and @clayop along with @nextgencrypto and @berniesanders for helping us reward more deserving posts

\n

When a group of Steemit writers got together to form Project Curie, we thought that if we pooled our own votes on some posts, we could help reward some emerging and undiscovered authors who were posting great original material. 

\n

$5 later, it was clear our combined votes wouldn\u2019t make a huge difference.

\n

Fortunately, we were able to form a partnership with @nextgencrypto who was generous enough to donate some voting power to help reward deserving posters who were not yet established. @berniesanders then joined to help. With their support, Project Curie became a reality. 

\n

Today, we announce that @val, @pharesim, @silversteem and @clayop also have donated additional voting power to help Project Curie reach a greater number of original content posts from undiscovered and deserving authors. Please join us in thanking them. And please do not send your posts directly to any of these individuals; Project Curie is curating the posts and you are welcome to submit any good ones you find to the #curie channel on Steemit.chat.


\n\n

Proyecto Cervantes

\n

Project Curie is excited to announce a new branch of curation created to support Spanish authors on Steemit. The branch is called \u201cProyecto Cervantes\u201d and it\u2019s main curators are @gargon and @pgarcgo. The goal is to find and reward Spanish or bilingual (Spanish and English) posts on Steemit in order to foster a more diverse community. @gargon and @pgarcgo will be creating a compilation post for every 10 posts that they curate in order to provide transparency as to which posts are being rewarded. The hope is also to provide the original authors more exposure. You can find their first compilation posts here and here. Two members of Project Curie are Spanish speakers ( @anwenbaumeister and @the-alien), and they provide a second line of curation and review for these posts. So, if you are a Spanish speaker, we encourage you to begin writing bilingual posts in order to create a bridge between the two languages and communities!

\n\n
\n\n

Statistics from Month #1

\n

Total posts curated: 2055
\n
Unique authors rewarded: 763
\n
Total rewards generated for authors: SBD 158,151
\n
Mean reward generated per post: SBD 77
\n
Median reward generated per post: SBD 40  

\n

\n

Since we began tracking on 18th August, we have consistently voted on an average of over 75 posts per day. The trajectory is clearly heading up, and in the last week we have been averaging nearly 100 posts. 

\n

Authors

\n

The Top 10 Authors by number of posts curated were -

\n
    \n
  • @kimal73   
  • \n
  • @herverisson   
  • \n
  • @cristi   
  • \n
  • @lukeofkondor   
  • \n
  • @papa-pepper   
  • \n
  • @cryptos   
  • \n
  • @mariandavp   
  • \n
  • @stephmckenzie   
  • \n
  • @eveningstar92   
  • \n
  • @prufarchy    
  • \n
\n

Top Authors by payouts includes @alexbeyman, @kaylinart, @brianphobos, @jamielefay, @omfedor, @stephmckenzie, @ionescur, @aboundlessworld and @anotherjoe. Many of those names are pretty familiar today, but less than a month ago, they were new authors struggling for exposure.

\n

Tags/Topics

\n

The most used tag was \"life\", but that pretty much includes everything!

\n

\n

The most popular topics were \"art\" (549) and \"photography\" (418). \"Story\" and \"writing\" were pretty close, tagged on around 370 posts each, though we suspect these two tags are often repeated. \"Travel\" and \"science\" also make an appearance. Looking forward, we intend to focus more on original science and technology related posts, and other unique / niche topics. 

\n

#curie

\n

Following our announcement on September 2nd, the #curie channel has been a remarkable success. Currently we have 218 users in the room, 44 of whom have curated content from other authors. We have upvoted 105 posts submitted in #curie, and paid out SBD 525 to curators. 

\n

Top curators from #curie were -

\n
    \n
  • @pfunk
  • \n
  • @kental
  • \n
  • @jamtaylor
  • \n
  • @deviedev
  • \n
  • @royaltiffany
  • \n
\n

Join us on #curie at Steemit.chat and keep the submissions coming! 


\n

Thanks

\n

Last, but not least, we wish to thank - 

\n

@knozaki2015, @shaka, @razvanelulmarin, @greenwayoflife, @jasonstaggers for their generous donations.
\n@royaltiffany for moderating #curie and creating the noble TheButler bot. :)
\n@firepower for setting up the #curie room.
\n
\nAnd of course, everyone voting on and commenting on posts we curate!


\n

Onward to Month #2! 

\n

We are working to increase our reach and rewards for authors, courtesy of extended whale support. We are also setting up @curie as a universal voter for all posts we curate. This way, you can choose to mirror our votes to support the authors. Look out for an announcement regarding this in our Daily Curation List posts. From next week, every Monday we'll have a Weekly Roundup with statistics, similar to this post.

\n

We are always open to feedback, and would love to know how you feel we could do better in Month #2!

\n", + "category": "curie", + "children": 37, + "created": "2016-09-14T14:11:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/01/Babel-Lille-2012-Bibliohteque-ideale-2-Jean-Francois-RAUZIER4f9da.jpg", + "https://www.steemimg.com/images/2016/09/14/curie-1da303.jpg", + "https://www.steemimg.com/images/2016/09/14/curie-23f98a.jpg" + ], + "links": [ + "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", + "https://steemit.com/spanish/@gargon/proyecto-cervantes-08-11-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", + "https://steemit.com/spanish/@pgarcgo/proyecto-cervantes-11-13-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and" + ], + "tags": [ + "curie", + "minnows", + "hidden-gems", + "steemit", + "project-curie" + ], + "users": [ + "pharesim", + "val", + "silversteem", + "clayop", + "nextgencrypto", + "berniesanders", + "gargon", + "pgarcgo", + "anwenbaumeister", + "the-alien", + "kimal73", + "herverisson", + "cristi", + "lukeofkondor", + "papa-pepper", + "cryptos", + "mariandavp", + "stephmckenzie", + "eveningstar92", + "prufarchy", + "alexbeyman", + "kaylinart", + "brianphobos", + "jamielefay", + "omfedor", + "ionescur", + "aboundlessworld", + "anotherjoe", + "pfunk", + "kental", + "jamtaylor", + "deviedev", + "royaltiffany", + "knozaki2015", + "shaka", + "razvanelulmarin", + "greenwayoflife", + "jasonstaggers", + "firepower", + "curie" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 203814685511375, + "payout": 2332.588, + "payout_at": "2016-09-15T22:00:19", + "pending_payout_value": "2332.588 HBD", + "percent_steem_dollars": 10000, + "permlink": "special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", + "post_id": 949447, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 318 + }, + "title": "Special Edition: Major Updates & Project Curie Month #1 Roundup (12 August - 11 September 2016)", + "updated": "2016-09-14T16:09:51", + "url": "/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016" + }, + { + "active_votes": [ + { + "rshares": "31307487536364", + "voter": "smooth" + }, + { + "rshares": "231809639013", + "voter": "anonymous" + }, + { + "rshares": "1551268628220", + "voter": "butterfly" + }, + { + "rshares": "4287714457313", + "voter": "riverhead" + }, + { + "rshares": "1855967006728", + "voter": "badassmother" + }, + { + "rshares": "2053236030423", + "voter": "hr1" + }, + { + "rshares": "1271804694676", + "voter": "rossco99" + }, + { + "rshares": "2206068741954", + "voter": "wang" + }, + { + "rshares": "22391622942", + "voter": "jaewoocho" + }, + { + "rshares": "1534654466021", + "voter": "joseph" + }, + { + "rshares": "466132509421", + "voter": "recursive2" + }, + { + "rshares": "452874558937", + "voter": "recursive3" + }, + { + "rshares": "636519834128", + "voter": "masteryoda" + }, + { + "rshares": "3120576239931", + "voter": "recursive" + }, + { + "rshares": "5942254587236", + "voter": "smooth.witness" + }, + { + "rshares": "8927291120", + "voter": "idol" + }, + { + "rshares": "800066797130", + "voter": "steemrollin" + }, + { + "rshares": "4941942978", + "voter": "sakr" + }, + { + "rshares": "284401462010", + "voter": "chitty" + }, + { + "rshares": "75736848691", + "voter": "unosuke" + }, + { + "rshares": "481790356914", + "voter": "noaommerrr" + }, + { + "rshares": "1536592488", + "voter": "jocelyn" + }, + { + "rshares": "85270554570", + "voter": "acidsun" + }, + { + "rshares": "14502980866", + "voter": "gregory-f" + }, + { + "rshares": "154334962550", + "voter": "edgeland" + }, + { + "rshares": "9028550345", + "voter": "gregory60" + }, + { + "rshares": "1196485708874", + "voter": "gavvet" + }, + { + "rshares": "89897944197", + "voter": "eeks" + }, + { + "rshares": "1511911763", + "voter": "fkn" + }, + { + "rshares": "122160437", + "voter": "paco-steem" + }, + { + "rshares": "1471747302", + "voter": "spaninv" + }, + { + "rshares": "1987313581", + "voter": "elishagh1" + }, + { + "rshares": "7803257741", + "voter": "richman" + }, + { + "rshares": "584279800798", + "voter": "nanzo-scoop" + }, + { + "rshares": "9857825141", + "voter": "kefkius" + }, + { + "rshares": "177417522325", + "voter": "mummyimperfect" + }, + { + "rshares": "2366347863", + "voter": "alenevaa" + }, + { + "rshares": "313697862", + "voter": "coar" + }, + { + "rshares": "106635074770", + "voter": "asch" + }, + { + "rshares": "1061264730", + "voter": "murh" + }, + { + "rshares": "3187850436", + "voter": "cryptofunk" + }, + { + "rshares": "579494558", + "voter": "kodi" + }, + { + "rshares": "2003359924", + "voter": "error" + }, + { + "rshares": "11848125383", + "voter": "andu" + }, + { + "rshares": "970579316703", + "voter": "cyber" + }, + { + "rshares": "59952188311", + "voter": "theshell" + }, + { + "rshares": "49580154489", + "voter": "ak2020" + }, + { + "rshares": "3848697023555", + "voter": "satoshifund" + }, + { + "rshares": "402139444", + "voter": "applecrisp" + }, + { + "rshares": "35693164103", + "voter": "altoz" + }, + { + "rshares": "95314034", + "voter": "stiletto" + }, + { + "rshares": "219283354085", + "voter": "will-zewe" + }, + { + "rshares": "12241505540", + "voter": "lindee-hamner" + }, + { + "rshares": "15787522491", + "voter": "zakharya" + }, + { + "rshares": "275008585094", + "voter": "trogdor" + }, + { + "rshares": "5047464747", + "voter": "tee-em" + }, + { + "rshares": "5821262190", + "voter": "mark-waser" + }, + { + "rshares": "118356217412", + "voter": "geoffrey" + }, + { + "rshares": "16027781644", + "voter": "kimziv" + }, + { + "rshares": "45359587433", + "voter": "honeythief" + }, + { + "rshares": "75333038089", + "voter": "emily-cook" + }, + { + "rshares": "2187607792", + "voter": "superfreek" + }, + { + "rshares": "17557768630", + "voter": "grey580" + }, + { + "rshares": "275327756", + "voter": "ladyclair" + }, + { + "rshares": "3898829337", + "voter": "michaellamden68" + }, + { + "rshares": "19975706505", + "voter": "thebatchman" + }, + { + "rshares": "3350419346", + "voter": "orly" + }, + { + "rshares": "5271030976", + "voter": "riscadox" + }, + { + "rshares": "7380892516", + "voter": "furion" + }, + { + "rshares": "105911917280", + "voter": "cdubendo" + }, + { + "rshares": "156249887947", + "voter": "jacor" + }, + { + "rshares": "2632460141", + "voter": "steem1653" + }, + { + "rshares": "136322030", + "voter": "cynetyc" + }, + { + "rshares": "80777327", + "voter": "snowden" + }, + { + "rshares": "5250179537", + "voter": "thegoodguy" + }, + { + "rshares": "14168005907", + "voter": "aaseb" + }, + { + "rshares": "4209533734", + "voter": "karen13" + }, + { + "rshares": "8751103405", + "voter": "noodhoog" + }, + { + "rshares": "8164924332", + "voter": "hyiparena" + }, + { + "rshares": "46859060143", + "voter": "milestone" + }, + { + "rshares": "21565632626", + "voter": "artific" + }, + { + "rshares": "33739169732", + "voter": "creemej" + }, + { + "rshares": "15378221086", + "voter": "nippel66" + }, + { + "rshares": "163325751551", + "voter": "blueorgy" + }, + { + "rshares": "13373880577", + "voter": "benjiberigan" + }, + { + "rshares": "349618451", + "voter": "poseidon" + }, + { + "rshares": "7946812357", + "voter": "smolalit" + }, + { + "rshares": "3365797955", + "voter": "simon.braki.love" + }, + { + "rshares": "5609578664", + "voter": "sharker" + }, + { + "rshares": "204618396015", + "voter": "jl777" + }, + { + "rshares": "1114903893", + "voter": "oecp85" + }, + { + "rshares": "1218867625", + "voter": "victoria2002" + }, + { + "rshares": "1226120506", + "voter": "positive" + }, + { + "rshares": "1809205777", + "voter": "yarly" + }, + { + "rshares": "272641013", + "voter": "yarly2" + }, + { + "rshares": "273048922", + "voter": "yarly3" + }, + { + "rshares": "157733805", + "voter": "yarly4" + }, + { + "rshares": "158624349", + "voter": "yarly5" + }, + { + "rshares": "90416287", + "voter": "yarly7" + }, + { + "rshares": "50626015", + "voter": "steemchain" + }, + { + "rshares": "17267341753", + "voter": "proto" + }, + { + "rshares": "2708629529", + "voter": "sisterholics" + }, + { + "rshares": "437620869", + "voter": "yarly10" + }, + { + "rshares": "234191245", + "voter": "yarly11" + }, + { + "rshares": "8781903824", + "voter": "royalmacro" + }, + { + "rshares": "81879061", + "voter": "yarly12" + }, + { + "rshares": "146224042", + "voter": "steemster1" + }, + { + "rshares": "3022447454", + "voter": "dmilash" + }, + { + "rshares": "3353991305", + "voter": "glitterpig" + }, + { + "rshares": "8734185109", + "voter": "taker" + }, + { + "rshares": "7825324952", + "voter": "nekromarinist" + }, + { + "rshares": "57873464", + "voter": "sharon" + }, + { + "rshares": "58971492", + "voter": "lillianjones" + }, + { + "rshares": "95786319596", + "voter": "laonie" + }, + { + "rshares": "153264363976", + "voter": "twinner" + }, + { + "rshares": "24562882668", + "voter": "laoyao" + }, + { + "rshares": "2664979204", + "voter": "myfirst" + }, + { + "rshares": "19443061295", + "voter": "somebody" + }, + { + "rshares": "726959262", + "voter": "flysaga" + }, + { + "rshares": "7707314246", + "voter": "asdes" + }, + { + "rshares": "2501638608", + "voter": "gmurph" + }, + { + "rshares": "1693568633", + "voter": "stormblaze" + }, + { + "rshares": "5558177167", + "voter": "denn" + }, + { + "rshares": "4295114546", + "voter": "midnightoil" + }, + { + "rshares": "3157785139", + "voter": "kurtbeil" + }, + { + "rshares": "10742990382", + "voter": "xiaohui" + }, + { + "rshares": "67965196", + "voter": "zahar" + }, + { + "rshares": "485140088", + "voter": "elfkitchen" + }, + { + "rshares": "99935909954", + "voter": "joele" + }, + { + "rshares": "5855738054", + "voter": "oflyhigh" + }, + { + "rshares": "15549176040", + "voter": "randyclemens" + }, + { + "rshares": "79785139", + "voter": "dims" + }, + { + "rshares": "335856762", + "voter": "xiaokongcom" + }, + { + "rshares": "1446509276", + "voter": "future24" + }, + { + "rshares": "60819615", + "voter": "msjennifer" + }, + { + "rshares": "54654502", + "voter": "ciao" + }, + { + "rshares": "13254585210", + "voter": "cristi" + }, + { + "rshares": "54217761", + "voter": "steemo" + }, + { + "rshares": "677027684", + "voter": "xianjun" + }, + { + "rshares": "54077897", + "voter": "steema" + }, + { + "rshares": "72192938", + "voter": "sijoittaja" + }, + { + "rshares": "69662169", + "voter": "confucius" + }, + { + "rshares": "93807196108", + "voter": "miacats" + }, + { + "rshares": "54909929", + "voter": "jarvis" + }, + { + "rshares": "74131936", + "voter": "razberrijam" + }, + { + "rshares": "53106127", + "voter": "fortuner" + }, + { + "rshares": "2022702929", + "voter": "chinadaily" + }, + { + "rshares": "10471074095", + "voter": "pjheinz" + }, + { + "rshares": "86712034", + "voter": "pompe72" + }, + { + "rshares": "108403024", + "voter": "pollina" + }, + { + "rshares": "51877132", + "voter": "johnbyrd" + }, + { + "rshares": "51860909", + "voter": "thomasaustin" + }, + { + "rshares": "51859074", + "voter": "thermor" + }, + { + "rshares": "51870077", + "voter": "ficholl" + }, + { + "rshares": "51852278", + "voter": "widell" + }, + { + "rshares": "3635091595", + "voter": "movievertigo" + }, + { + "rshares": "51481279", + "voter": "revelbrooks" + }, + { + "rshares": "2982691190", + "voter": "netaterra" + }, + { + "rshares": "21980957828", + "voter": "andrewawerdna" + }, + { + "rshares": "4337454155", + "voter": "onetree" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "50416427", + "voter": "curpose" + }, + { + "rshares": "989363278", + "voter": "dajohns1420" + }, + { + "rshares": "2196907450", + "voter": "runridefly" + }, + { + "rshares": "1783693666", + "voter": "funkywanderer" + }, + { + "rshares": "4747321980", + "voter": "richardcrill" + }, + { + "rshares": "2205784762", + "voter": "jeremyfromwi" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "4546391288", + "voter": "nadin3" + }, + { + "rshares": "1625414479", + "voter": "davidjkelley" + }, + { + "rshares": "9458733324", + "voter": "aggroed" + }, + { + "rshares": "50593879", + "voter": "crion" + }, + { + "rshares": "178419224", + "voter": "greatness" + }, + { + "rshares": "50271139", + "voter": "hitherise" + }, + { + "rshares": "50262756", + "voter": "wiss" + }, + { + "rshares": "53143607139", + "voter": "sponge-bob" + }, + { + "rshares": "15571125147", + "voter": "digital-wisdom" + }, + { + "rshares": "3710973264", + "voter": "ethical-ai" + }, + { + "rshares": "51033798", + "voter": "stroully" + }, + { + "rshares": "6831389463", + "voter": "jwaser" + }, + { + "rshares": "1064809843", + "voter": "tatianka" + }, + { + "rshares": "50712038", + "voter": "thadm" + }, + { + "rshares": "50710305", + "voter": "prof" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "50370757", + "voter": "yorsens" + }, + { + "rshares": "50065875", + "voter": "bane" + }, + { + "rshares": "50059754", + "voter": "vive" + }, + { + "rshares": "50054445", + "voter": "coad" + }, + { + "rshares": "2617343597", + "voter": "bwaser" + }, + { + "rshares": "50840303", + "voter": "sofa" + }, + { + "rshares": "323483227", + "voter": "panther" + }, + { + "rshares": "53871683", + "voter": "doggnostic" + }, + { + "rshares": "53593366", + "voter": "jenny-talls" + }, + { + "rshares": "54239080444", + "voter": "brains" + }, + { + "rshares": "50450987", + "voter": "waldemar-kuhn" + }, + { + "rshares": "50933404", + "voter": "ailo" + }, + { + "rshares": "1387263917", + "voter": "steemafon" + }, + { + "rshares": "1317649856", + "voter": "bitcoinparadise" + }, + { + "rshares": "5753524189", + "voter": "chick1" + }, + { + "rshares": "3338622584", + "voter": "steempowerwhale" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "50516543", + "voter": "typingagent" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "62515317", + "voter": "freebornangel" + }, + { + "rshares": "271440423", + "voter": "anomaly" + }, + { + "rshares": "2401297947", + "voter": "ellepdub" + }, + { + "rshares": "120649148", + "voter": "rynow" + }, + { + "rshares": "61292139", + "voter": "inarix03" + }, + { + "rshares": "98577200", + "voter": "ola1" + }, + { + "rshares": "50583338", + "voter": "rayzzz" + }, + { + "rshares": "12115690216", + "voter": "herpetologyguy" + }, + { + "rshares": "4712300251", + "voter": "morgan.waser" + }, + { + "rshares": "51230296", + "voter": "steemq" + }, + { + "rshares": "50871059", + "voter": "motion" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "50704078", + "voter": "yotoh" + }, + { + "rshares": "50538694", + "voter": "fenix" + }, + { + "rshares": "1921231770", + "voter": "bapparabi" + }, + { + "rshares": "50532230", + "voter": "friends" + }, + { + "rshares": "50349676", + "voter": "albertheijn" + }, + { + "rshares": "3609651500", + "voter": "strong-ai" + }, + { + "rshares": "516546553", + "voter": "grisha-danunaher" + }, + { + "rshares": "71207873", + "voter": "igtes" + }, + { + "rshares": "141679752", + "voter": "buffett" + }, + { + "rshares": "213848535", + "voter": "sjamayee" + }, + { + "rshares": "453506109", + "voter": "witchcraftblog" + }, + { + "rshares": "3265972001", + "voter": "zaitsevalesyaa" + }, + { + "rshares": "161205518", + "voter": "acute" + }, + { + "rshares": "161179339", + "voter": "bethesda" + }, + { + "rshares": "160957729", + "voter": "realtime" + }, + { + "rshares": "7187212765", + "voter": "dresden" + }, + { + "rshares": "212371776", + "voter": "mgibson" + }, + { + "rshares": "156837244", + "voter": "capcom" + }, + { + "rshares": "159506164", + "voter": "greenpeace" + }, + { + "rshares": "159352476", + "voter": "panic" + }, + { + "rshares": "156054487", + "voter": "fallout" + }, + { + "rshares": "159025535", + "voter": "xtreme" + }, + { + "rshares": "1473342460", + "voter": "modernbukowski" + }, + { + "rshares": "158541985", + "voter": "citigroup" + }, + { + "rshares": "30995434343", + "voter": "goldmatters" + }, + { + "rshares": "71727340", + "voter": "dealzgal" + }, + { + "rshares": "64921864", + "voter": "storage" + }, + { + "rshares": "298391608", + "voter": "risabold" + }, + { + "rshares": "55383257", + "voter": "blackmarket" + }, + { + "rshares": "58454327", + "voter": "gifts" + }, + { + "rshares": "93882016", + "voter": "expat" + }, + { + "rshares": "126595034", + "voter": "toddemaher1" + } + ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "@herpetologyguy\n\nOne of my many tasks as a zoo keeper is connecting people to animals. \n-\n\n\n\n

The museum I work at is unique because we showcase animals that are native to Virginia -- meaning that these are animals people will find close to home, rather than across the ocean in some distant country. This makes my job more crucial in that I am responsible for educating people about the reptiles and amphibians that they will find in their own backyards. And obviously, there\u2019s one group of reptiles that gives people more pause than almost any other animal . . . . 

\n

Snakes. 

\n

http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj   Picture Credit

\n

I do public programs featuring snakes quite frequently.  I believe people should know how to identify local venomous/non-venomous snakes, their role in the environment and how to deal with them when they are in close proximity to our homes.  Usually, I get eager audiences asking great questions.  But, every now and then, I get some idiot who tells me, \u201cI saw that same snake in my backyard! I chopped off its head with a shovel!\u201d

\n

Are they an idiot for killing the snake?  Not necessarily . . . I don\u2019t know the situation behind the encounter. But, only an idiot would walk into a wildlife facility, approach a zoo keeper and proudly declare that they kill the very same animals that the keeper is charged with the care for.  Would you walk into an animal shelter and tell someone working there that you enjoy stomping on puppies?  To us, there\u2019s not much difference\u2026 

\n

http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png   Picture Credit\n

\n

The best we can do in these situations is to try to educate people. This can be difficult because so many people are set in their ways -- plus we have to combat an instinctive fear and prejudice against snakes.  So, I\u2019m going to briefly lay it all out for you and tell you \"Why you shouldn\u2019t kill that snake in your yard.\" 

\n

http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg   Picture Credit

\n

1.  It\u2019s ILLEGAL in most states to kill a wild snake, unless that snake presents an IMMEDIATE threat.  And no, a snake crawling through your yard does not represent a good enough excuse to use force.  We\u2019re talking about a situation where a venomous snake is about to strike and you have no escape route but to fight your way out.  And guess what, that really doesn\u2019t ever happen (barring instances where someone purposefully provokes an animal).  Wildlife and law enforcement agencies are cracking down on people killing snakes, so it\u2019s better to keep yourself out of trouble. 

\n

http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg   Picture Credit

\n

2.  You are putting yourself in harm\u2019s way.  The vast majority of snake bites occur when people attempt to capture or kill snakes.  If left alone, the snake CANNOT hurt you.  Call wildlife services or trained professionals to remove the animal. 

\n

http://www.snakegetters.com/demo/bud-cotton-gg.jpg   Picture Credit

\n

3.  It\u2019s an incredibly beneficial animal, and you\u2019d be foolish to kill it.  Small snakes eat a huge variety of pest insects that destroy gardens, while large snakes typically feed on rats and other rodents that infest our homes.  If you see a large snake hanging around, you have a rodent problem; snakes will not hang around if there is no food source.  To keep snakes from being attracted to your property, do your best to remove any shelter or food sources that would attract rodents.  Some snakes even eat other snakes, and species like the harmless king snake will even feed on venomous species! 

\n

https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg   Picture Credit

\n

4.  Another snake might show up.  Snakes will not typically inhabit the same area in order to avoid competition.  If you kill that harmless rat snake, but you still have a food source nearby, another snake may move in to make use of that source.  The new snake may be another harmless species or something a bit less desirable.  So why not let that harmless snake take care of the infestation for you?

\n

http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg   Picture Credit

\n

Having a snake around can be hugely beneficial to you.  It is a free, environmentally-safe form of pest control.  Snakes, including venomous species, are non-aggressive animals (unless you provoke them) that will actively do their best to AVOID people.  A resident snake will often go unnoticed by homeowners, and most encounters are fleeting glimpses of the snake making a hasty escape.  Remember that snakes have their own unique role in the environment, and regardless of our own fears and feelings towards them, they are a necessary part of life. 

\n

   http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg   Picture Credit

\n\n\nif you liked this also please check out:\nhttps://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians\n\n\n***don't forget to follow @herpetologyguy***", + "category": "herpetology", + "children": 6, + "created": "2016-09-15T18:19:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg" + ], + "links": [ + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://www.sciencemag.org", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://proactivepestga.com", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://blogs.discovermagazine.com", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.mylakelandnow.com", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "http://www.snakegetters.com", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "https://www.youtube.com/watch?v=ImOj1CKTBqE", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://phenomena.nationalgeographic.com", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg", + "http://westernmassnaturalist.org", + "https://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians" + ], + "tags": [ + "herpetology", + "reptiles", + "snakes", + "science" + ], + "users": [ + "herpetologyguy" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 68620995119384, + "payout": 274.438, + "payout_at": "2016-09-16T18:44:06", + "pending_payout_value": "274.438 HBD", + "percent_steem_dollars": 10000, + "permlink": "why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", + "post_id": 960258, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 247 + }, + "title": "Why You Don\u2019t Want to Kill that Snake in Your Yard (featuring @herpetologyguy as author)", + "updated": "2016-09-15T18:19:39", + "url": "/herpetology/@gavvet/why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author" + }, + { + "active_votes": [ + { + "rshares": "31621188390159", + "voter": "smooth" + }, + { + "rshares": "2078528809174", + "voter": "bmw" + }, + { + "rshares": "1912120788268", + "voter": "badassmother" + }, + { + "rshares": "3312854507128", + "voter": "pharesim" + }, + { + "rshares": "2053144245901", + "voter": "hr1" + }, + { + "rshares": "1271804694676", + "voter": "rossco99" + }, + { + "rshares": "22390733187", + "voter": "jaewoocho" + }, + { + "rshares": "1736291789819", + "voter": "steemychicken1" + }, + { + "rshares": "1533973920081", + "voter": "joseph" + }, + { + "rshares": "466132509421", + "voter": "recursive2" + }, + { + "rshares": "652005899349", + "voter": "masteryoda" + }, + { + "rshares": "3120458041174", + "voter": "recursive" + }, + { + "rshares": "5941203882368", + "voter": "smooth.witness" + }, + { + "rshares": "9168101098", + "voter": "idol" + }, + { + "rshares": "816386307308", + "voter": "steemrollin" + }, + { + "rshares": "4941741048", + "voter": "sakr" + }, + { + "rshares": "1578030666", + "voter": "jocelyn" + }, + { + "rshares": "83530339170", + "voter": "acidsun" + }, + { + "rshares": "14818192446", + "voter": "gregory-f" + }, + { + "rshares": "151248263299", + "voter": "edgeland" + }, + { + "rshares": "9028522101", + "voter": "gregory60" + }, + { + "rshares": "74914792736", + "voter": "eeks" + }, + { + "rshares": "15119117634", + "voter": "fkn" + }, + { + "rshares": "19873135819", + "voter": "elishagh1" + }, + { + "rshares": "7802860274", + "voter": "richman" + }, + { + "rshares": "584250736753", + "voter": "nanzo-scoop" + }, + { + "rshares": "177409209153", + "voter": "mummyimperfect" + }, + { + "rshares": "313697862", + "voter": "coar" + }, + { + "rshares": "106632631169", + "voter": "asch" + }, + { + "rshares": "1061245798", + "voter": "murh" + }, + { + "rshares": "6230746892", + "voter": "cryptofunk" + }, + { + "rshares": "2057413439", + "voter": "error" + }, + { + "rshares": "962077066542", + "voter": "cyber" + }, + { + "rshares": "59950063204", + "voter": "theshell" + }, + { + "rshares": "49578772788", + "voter": "ak2020" + }, + { + "rshares": "76584409982", + "voter": "noganoo" + }, + { + "rshares": "3848540783991", + "voter": "satoshifund" + }, + { + "rshares": "400880323222", + "voter": "taoteh1221" + }, + { + "rshares": "410517349", + "voter": "applecrisp" + }, + { + "rshares": "35693164103", + "voter": "altoz" + }, + { + "rshares": "335983556", + "voter": "gardening" + }, + { + "rshares": "336136344", + "voter": "survival" + }, + { + "rshares": "10021612024", + "voter": "arisa" + }, + { + "rshares": "280737930617", + "voter": "trogdor" + }, + { + "rshares": "5950554459", + "voter": "mark-waser" + }, + { + "rshares": "118348776939", + "voter": "geoffrey" + }, + { + "rshares": "42738217262", + "voter": "kimziv" + }, + { + "rshares": "24170583392", + "voter": "seth-krings" + }, + { + "rshares": "46264097306", + "voter": "honeythief" + }, + { + "rshares": "78976166587", + "voter": "technology" + }, + { + "rshares": "76017114668", + "voter": "emily-cook" + }, + { + "rshares": "2187607792", + "voter": "superfreek" + }, + { + "rshares": "49806227536", + "voter": "isteemit" + }, + { + "rshares": "10993053311", + "voter": "auction" + }, + { + "rshares": "17557768630", + "voter": "grey580" + }, + { + "rshares": "19975264794", + "voter": "thebatchman" + }, + { + "rshares": "60403077307", + "voter": "lehard" + }, + { + "rshares": "3283410959", + "voter": "orly" + }, + { + "rshares": "5270985903", + "voter": "riscadox" + }, + { + "rshares": "24867544970", + "voter": "katyakov" + }, + { + "rshares": "12790313163", + "voter": "jako" + }, + { + "rshares": "1159208963", + "voter": "steemswede" + }, + { + "rshares": "1664172448", + "voter": "sergei" + }, + { + "rshares": "238378512", + "voter": "honey" + }, + { + "rshares": "71343869654", + "voter": "furion" + }, + { + "rshares": "354114465", + "voter": "barbara2" + }, + { + "rshares": "393593664", + "voter": "ch0c0latechip" + }, + { + "rshares": "364274718", + "voter": "doge4lyf" + }, + { + "rshares": "5532441214", + "voter": "on0tole" + }, + { + "rshares": "1231812238", + "voter": "dicov" + }, + { + "rshares": "2834923420", + "voter": "steem1653" + }, + { + "rshares": "2919298058", + "voter": "sveokla" + }, + { + "rshares": "17173174800", + "voter": "sebastien" + }, + { + "rshares": "5357205853", + "voter": "thegoodguy" + }, + { + "rshares": "14167556353", + "voter": "aaseb" + }, + { + "rshares": "1026087885", + "voter": "danielkt" + }, + { + "rshares": "4209522316", + "voter": "karen13" + }, + { + "rshares": "251366150295", + "voter": "nabilov" + }, + { + "rshares": "629471993", + "voter": "luisucv34" + }, + { + "rshares": "462033723200", + "voter": "knozaki2015" + }, + { + "rshares": "95668007343", + "voter": "inertia" + }, + { + "rshares": "46858037615", + "voter": "milestone" + }, + { + "rshares": "7164489185", + "voter": "lichtblick" + }, + { + "rshares": "34761364489", + "voter": "creemej" + }, + { + "rshares": "2726160685", + "voter": "the-future" + }, + { + "rshares": "15378115921", + "voter": "nippel66" + }, + { + "rshares": "23929304431", + "voter": "phenom" + }, + { + "rshares": "167305835788", + "voter": "blueorgy" + }, + { + "rshares": "12849414672", + "voter": "benjiberigan" + }, + { + "rshares": "932262984", + "voter": "poseidon" + }, + { + "rshares": "19717588129", + "voter": "mustafaomar" + }, + { + "rshares": "3435918746", + "voter": "simon.braki.love" + }, + { + "rshares": "82781233416", + "voter": "thylbom" + }, + { + "rshares": "32543400703", + "voter": "deanliu" + }, + { + "rshares": "4996306142", + "voter": "dmitriybtc" + }, + { + "rshares": "1019831473", + "voter": "hemp" + }, + { + "rshares": "118287211", + "voter": "flowers" + }, + { + "rshares": "204617853645", + "voter": "jl777" + }, + { + "rshares": "30989251579", + "voter": "zaebars" + }, + { + "rshares": "12261205066", + "voter": "positive" + }, + { + "rshares": "1773021661", + "voter": "yarly" + }, + { + "rshares": "267188192", + "voter": "yarly2" + }, + { + "rshares": "267587944", + "voter": "yarly3" + }, + { + "rshares": "154579129", + "voter": "yarly4" + }, + { + "rshares": "155451862", + "voter": "yarly5" + }, + { + "rshares": "88607961", + "voter": "yarly7" + }, + { + "rshares": "50626015", + "voter": "steemchain" + }, + { + "rshares": "50626015", + "voter": "whalepool" + }, + { + "rshares": "6114654934", + "voter": "summonerrk" + }, + { + "rshares": "12098269394", + "voter": "webdeals" + }, + { + "rshares": "231254136", + "voter": "alexbezimeni" + }, + { + "rshares": "17267307497", + "voter": "proto" + }, + { + "rshares": "7222569746", + "voter": "sisterholics" + }, + { + "rshares": "428868451", + "voter": "yarly10" + }, + { + "rshares": "229507420", + "voter": "yarly11" + }, + { + "rshares": "80241480", + "voter": "yarly12" + }, + { + "rshares": "412825844", + "voter": "fnait" + }, + { + "rshares": "366755128", + "voter": "keepcalmand" + }, + { + "rshares": "180668119", + "voter": "kibela" + }, + { + "rshares": "3084130055", + "voter": "dmilash" + }, + { + "rshares": "13626326152", + "voter": "mahekg" + }, + { + "rshares": "50578642550", + "voter": "gomeravibz" + }, + { + "rshares": "8734139434", + "voter": "taker" + }, + { + "rshares": "6521104126", + "voter": "nekromarinist" + }, + { + "rshares": "6895440187", + "voter": "theprophet" + }, + { + "rshares": "255409573883", + "voter": "laonie" + }, + { + "rshares": "24562026280", + "voter": "laoyao" + }, + { + "rshares": "7994566199", + "voter": "myfirst" + }, + { + "rshares": "51844874813", + "voter": "somebody" + }, + { + "rshares": "1938440237", + "voter": "flysaga" + }, + { + "rshares": "2084695835", + "voter": "gmurph" + }, + { + "rshares": "68250832", + "voter": "missmishel623" + }, + { + "rshares": "11452948850", + "voter": "midnightoil" + }, + { + "rshares": "2280336943", + "voter": "kalimor" + }, + { + "rshares": "4190335896", + "voter": "ullikume" + }, + { + "rshares": "28645142464", + "voter": "xiaohui" + }, + { + "rshares": "1293627572", + "voter": "elfkitchen" + }, + { + "rshares": "102434307703", + "voter": "joele" + }, + { + "rshares": "5855564372", + "voter": "oflyhigh" + }, + { + "rshares": "895565145", + "voter": "xiaokongcom" + }, + { + "rshares": "12687522802", + "voter": "gargon" + }, + { + "rshares": "2076619689", + "voter": "natalymaty" + }, + { + "rshares": "84763896", + "voter": "numberone" + }, + { + "rshares": "62760150", + "voter": "diamonds" + }, + { + "rshares": "1805296575", + "voter": "xianjun" + }, + { + "rshares": "3251259359", + "voter": "unrealisback" + }, + { + "rshares": "11292536945", + "voter": "borran" + }, + { + "rshares": "93805187965", + "voter": "miacats" + }, + { + "rshares": "118219525", + "voter": "microluck" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "2022625104", + "voter": "chinadaily" + }, + { + "rshares": "84708065280", + "voter": "serejandmyself" + }, + { + "rshares": "106144628", + "voter": "pollina" + }, + { + "rshares": "2958177650", + "voter": "macartem" + }, + { + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "rshares": "10691300360", + "voter": "jaredcwillis" + }, + { + "rshares": "2982676167", + "voter": "netaterra" + }, + { + "rshares": "59171026", + "voter": "piezolit" + }, + { + "rshares": "6069996297", + "voter": "trev" + }, + { + "rshares": "1152952998", + "voter": "leno4ek" + }, + { + "rshares": "33111928321", + "voter": "daut44" + }, + { + "rshares": "5475437205", + "voter": "contentjunkie" + }, + { + "rshares": "7779288318", + "voter": "einsteinpotsdam" + }, + { + "rshares": "5053600817", + "voter": "richardcrill" + }, + { + "rshares": "2205784762", + "voter": "jeremyfromwi" + }, + { + "rshares": "2056057288", + "voter": "eight-rad" + }, + { + "rshares": "5012661990", + "voter": "nadin3" + }, + { + "rshares": "3411072843", + "voter": "xanoxt" + }, + { + "rshares": "1661520978", + "voter": "davidjkelley" + }, + { + "rshares": "27677639861", + "voter": "sponge-bob" + }, + { + "rshares": "15570931627", + "voter": "digital-wisdom" + }, + { + "rshares": "3710931796", + "voter": "ethical-ai" + }, + { + "rshares": "6831306526", + "voter": "jwaser" + }, + { + "rshares": "1086106040", + "voter": "tatianka" + }, + { + "rshares": "55281264", + "voter": "apparat" + }, + { + "rshares": "14097243573", + "voter": "cryptobiker" + }, + { + "rshares": "54182817", + "voter": "analyzethis" + }, + { + "rshares": "2675492964", + "voter": "bwaser" + }, + { + "rshares": "54949117", + "voter": "doggnostic" + }, + { + "rshares": "54665234", + "voter": "jenny-talls" + }, + { + "rshares": "27671309914", + "voter": "brains" + }, + { + "rshares": "53671263", + "voter": "waldemar-kuhn" + }, + { + "rshares": "1359518638", + "voter": "steemafon" + }, + { + "rshares": "5753400992", + "voter": "chick1" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "51568971", + "voter": "typingagent" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "339287005", + "voter": "anomaly" + }, + { + "rshares": "2401284424", + "voter": "ellepdub" + }, + { + "rshares": "12115548081", + "voter": "herpetologyguy" + }, + { + "rshares": "4816962742", + "voter": "morgan.waser" + }, + { + "rshares": "51232949", + "voter": "dragonice" + }, + { + "rshares": "51230296", + "voter": "steemq" + }, + { + "rshares": "51218466", + "voter": "weare" + }, + { + "rshares": "1258359388", + "voter": "anns" + }, + { + "rshares": "50875769", + "voter": "cyan" + }, + { + "rshares": "50871059", + "voter": "motion" + }, + { + "rshares": "50791473", + "voter": "synereo" + }, + { + "rshares": "50572441", + "voter": "unilever" + }, + { + "rshares": "1871969417", + "voter": "bapparabi" + }, + { + "rshares": "50532230", + "voter": "friends" + }, + { + "rshares": "3689824509", + "voter": "strong-ai" + }, + { + "rshares": "53738244", + "voter": "ivanakamoto" + }, + { + "rshares": "516546553", + "voter": "grisha-danunaher" + }, + { + "rshares": "213848535", + "voter": "sjamayee" + }, + { + "rshares": "2974116451", + "voter": "htyfn" + }, + { + "rshares": "162904624", + "voter": "allianz" + }, + { + "rshares": "1630350803", + "voter": "rusteemitblog" + }, + { + "rshares": "161815656", + "voter": "ranger" + }, + { + "rshares": "444435987", + "voter": "witchcraftblog" + }, + { + "rshares": "161693690", + "voter": "shadowproject" + }, + { + "rshares": "161205518", + "voter": "acute" + }, + { + "rshares": "161179339", + "voter": "bethesda" + }, + { + "rshares": "159352476", + "voter": "panic" + }, + { + "rshares": "159318360", + "voter": "stimmt" + }, + { + "rshares": "159062820", + "voter": "rule" + }, + { + "rshares": "158560941", + "voter": "steemthis" + }, + { + "rshares": "158486055", + "voter": "zendesk" + }, + { + "rshares": "68013381", + "voter": "storage" + }, + { + "rshares": "157667385", + "voter": "cbd" + }, + { + "rshares": "157667385", + "voter": "junk" + }, + { + "rshares": "157682838", + "voter": "hug" + }, + { + "rshares": "157682838", + "voter": "bearcub" + }, + { + "rshares": "157682809", + "voter": "cyberpunk" + }, + { + "rshares": "156919204", + "voter": "keisha" + }, + { + "rshares": "58460105", + "voter": "blackmarket" + }, + { + "rshares": "61530871", + "voter": "gifts" + }, + { + "rshares": "156919175", + "voter": "int" + }, + { + "rshares": "1593664040", + "voter": "steemlift" + } + ], + "author": "serejandmyself", + "author_payout_value": "0.000 HBD", + "author_reputation": 66.84, + "beneficiaries": [], + "blacklists": [], + "body": "#### Hey guys, welcome to the first chapter of my new novel.\n#### It is a mixture of 3 time lines, with 19th century, modern day and ancient times. The genre is probably something you would call a mixture of sci-fi, mystery, adventure and a bit more. \n#### Well, I welcome you to be the judge...\n\n

[![b801c049484636e0faf71f56cca03864c0bd6.jpg](https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg)](https://www.steemimg.com/image/1wrYT)

\n\n__________________________________\n\n**Chapter ONE**\n\nIt seemed as nothing was different in yet another cold and slightly windy London evening. The smog from the river was rising up as usual and the chilly wind would bring the smell up to the embankment, where Charles was taking a rest, sitting down on his favorite bench. \n\nFrom here he could see the might of the power station from across the river and something was special in the way those chimneys threw out the smoke onto the city. \n\nHe just finished his walk along his usual route, walking amongst the cemetery outside the chapel. It always amused him; that mix of emotion and sorrow amongst the busy city people, especially during the busy afternoon hours.\n\nThat rusty smell kept mixing with up with the light freshness of the leaves from the tree nearby Charles\u2019s bench. As he threw a brief glimpse onto the clock on the parliament building he noticed that the small arrow was on 45 minutes\u2026 \n\nSuddenly he heard a murmur of horses; he turned his head before he could finish realizing what time it was. He saw that just a few yards up the road two horse carriages didn\u2019t manage to share the drive way. \n\n
[![Saratogacarriagec5af5.jpg](https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg)](https://www.steemimg.com/image/1w1bI)
\n\nOne of the coachmen was shouting something and angrily waving his hands. Charles was able to see from here that the coachmen\u2019s grey clothing was partially covered in dirt, probably from the splash of the puddles from underneath the wheels. \n\nThe coachmen kept shouting something, Charles was unable to see the second carriage from where he was sitting, but was able to see some passersby, that starting to gather around the incident.\n\nIt was obvious that, just like him, those people had nothing better to do on this late afternoon then to watch in amusement the accident in the middle of the avenue.\n\nJust as Charles was starting to lose interest in the whole situation, the door of the cab that Charles could see, opened and a man dressed in a black suit and holding a pipe stepped out. He calmly put his hand in the upper inner pocket of the suit and pulled out some coins. The man made two steps up to driver and handed him the coins. At this moment the driver stopped shouting for a moment and it was clear from the look on his face that he was confused. \n\nThe cab driver counted the coins and said something to the man in the suit, the passenger didn\u2019t answer. He turned around and started to walk in the direction of the chapel. The cab driver clearly wasn\u2019t happy. He started to shout once again, but this time at the passenger. While the cab driver turned his attention to the passenger, Charles noticed how the second carriage that was involved in the accident managed to move a few yards back.\n\nIt was a much smaller carriage, and the driver was clearly seeable to Charles now. He seemed somewhat happy that he was not in the middle of the light anymore; he hurryingly turned the carriage and the horse around and started to move also in the direction of the chapel. \n\nAt this moment the driver of the first carriage started to lose interest in shouting and decided to clean himself up. As he started to calm down, the bemused passersby begun to walk back to where they were heading and Charles also turned his head back towards the power station.\n\nCharles was so busy watching the situation unfold that he didn\u2019t noticed that the passenger of the first carriage crossed the road and was now heading not towards the chapel anymore, but exactly in the other direction, towards the grey bench that Charles was sitting on.\n\nAt first Charles didn\u2019t pay any attention to just another man who was walking by. But then he noticed that calm walk of his and it hit him that this was the same passenger from the carriage.\n\n\u201cExcuse me sir?\u201d said Charles as the man closed up to the bench. \u201cYou are the gentleman from the carriage, aren\u2019t you?\u201d \u201cI saw you a minute ago, what happened?\u201d\n\nThe man stopped to walk and shared a look with Charles; he calmly sat down beside him and carried on smoking his pipe, as he was not hearing the questions Charles asked him. \n\n\u201cI do apologies for the intervention, but you must not be local, I can tell by your calmness, all the folks round here are always in a hurry\u201d Charles carried on talking as if not noticing that the man was ignoring him. \n\nAll of a sudden the weather begun to change, wind started to blow stronger and the few leaves that the tree was holding blew in the direction of the bench. The smell from the river rose up and as if that wasn\u2019t enough Charles felt like a small rain drop hit his head. He could clearly see the green water from where he was sitting through the decorations holes of the embankments fence. It was clear that it will start to rain soon by the appearing circles on the top of the river.\n\nAfter a few minutes of quietly seating by his new neighbor Charles caught himself looking at the clock on the tower, once again he saw the small arrow on 45 minutes\u2026\n\n\u201cAnd what do we pay the government for?\u201d \u201cIt would feel though they are taking our money and spend it on their fancy hats and suits, don\u2019t you find?\u201d Said Charles.\n\nAt this point the man took out the pipe into his left hand and begun to cough. After he finished coughing Charles heard him speak, at this point Charles understood that for some reason he would remember this moment for a long time to come. \n\n\u201cIt is likely to assume that they deserve to spend the money they earn\u201d Said the man, his voice was quite low and he had a certain accent Charles could quite catch.\n\n\u201cI don\u2019t think that money is of importance nowadays\u201d Said the man.\n\nCharles looked at the man with a smile - \u201cWhat is of importance? One might assume that philosophically speaking, importance can be found in nothing but what is good to us\u201d.\n\n\u201cNo body knows what can be important to others if we carry on like this, then\u2026\u201d Charles didn\u2019t finish his sentence as the man turned away from him and looked the other way. He then turned his head back and Charles noticed his eyes. His eyes were nothing like what Charles had seen before, they looked as though they were glass like and the as if they were blank, there was nothing behind them.\n\n\u201cWhat is important is that I am here now and that it is happening today. It is important to live your life because, just like your life Charles, it has an end\u201d, the man looked somewhat happy when he said that and Charles jumped back on the bench a little, he felt a small shiver run down his spine.\n\n\u201cWhat? How do you know my name sir? Have you been following me?\u201d questions were racing through Charles\u2019s mind. \n\n\u201cAs I said, this is now of importance. You life can find its end today when you get back to your gallery in your cold basement on Kinnerton street or you might listen to me and\u2026\u201d Charles didn\u2019t let the man finish his sentence. He jumped up from the bench; his cane flew within millimeters of the stranger leg as he jumped.\n\n\u201cHow dare you sir? Who gives you the right\u2026\u201d Charles raised his voice, he never allowed himself to raise his voice at a stranger beforehand.\n\n\u201cI think this conversation is over!\u201d exclaimed Charles. \u201cThat would be your choice\u201d replied the man, \u201cDo you think the time is right?\u201d \n\nCharles had already turned away in anger and was about to make his first step away. Something in the words of the man about the time made him think for a second, thoughts raced through his mind. The number 45 and the small arrow of the parliament clock were stuck in his head. \n\n\u201cI don\u2019t understand said Charles\u2026\u201d he turned his head back towards the clock; the arrow was still on 45 minutes. \u201cHow is that possible?\u201d Charles turned his head to the man, but there was no one on the bench. \n\nCharles begun to search the street rapidly with his eyes, it didn\u2019t even occur to him that it was heavily raining until that moment. \n\n
[![tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif](https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif)](https://www.steemimg.com/image/1w5tK)
\n\nThe streets were empty; there were no carriages or people to be seen around. Feeling scared he turned his head to the clock once again \u2013 \u201cHow can it still be 45 minutes...\u201d Charles was speaking out loud.\n\nThe next moment he felt like his knees weakened, his head was swirling and he dropped his cane, last thing he could hear was the clinging the of the cane\u2019s handle against the pavement. His thoughts mixed up with his eyesight; the man and his pipe, the handle of the clock, the carriage, the passersby, the power stations smoke\u2026\n \n_________________________________\n\n#### Follow me @serejandmyself for more \n\nImage credit - [1](https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/) ; [2](https://giphy.com/search/carriage) ; [3](http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html) ;", + "category": "story", + "children": 2, + "created": "2016-09-15T17:23:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg", + "https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg", + "https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif" + ], + "links": [ + "https://www.steemimg.com/image/1wrYT", + "https://www.steemimg.com/image/1w1bI", + "https://www.steemimg.com/image/1w5tK", + "https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/", + "https://giphy.com/search/carriage", + "http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html" + ], + "tags": [ + "story", + "fiction", + "scifi", + "mystery", + "writing" + ], + "users": [ + "serejandmyself" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66871297900441, + "payout": 260.997, + "payout_at": "2016-09-16T17:42:51", + "pending_payout_value": "260.997 HBD", + "percent_steem_dollars": 10000, + "permlink": "captured-by-time-an-original-novel-chapter-1", + "post_id": 959783, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 229 + }, + "title": "CAPTURED BY TIME (An Original Novel - Chapter 1)", + "updated": "2016-09-15T17:23:48", + "url": "/story/@serejandmyself/captured-by-time-an-original-novel-chapter-1" + }, + { + "active_votes": [ + { + "rshares": "494637006894", + "voter": "barrie" + }, + { + "rshares": "7710245013992", + "voter": "steempty" + }, + { + "rshares": "30984805998710", + "voter": "smooth" + }, + { + "rshares": "289667785336", + "voter": "anonymous" + }, + { + "rshares": "14447196140450", + "voter": "summon" + }, + { + "rshares": "681484074723", + "voter": "eternity" + }, + { + "rshares": "36033200189196", + "voter": "jamesc" + }, + { + "rshares": "4574334081535", + "voter": "riverhead" + }, + { + "rshares": "7015534059816", + "voter": "wackou" + }, + { + "rshares": "2160925860071", + "voter": "badassmother" + }, + { + "rshares": "2051034289892", + "voter": "hr1" + }, + { + "rshares": "6466290924028", + "voter": "fuzzyvest" + }, + { + "rshares": "118485787519", + "voter": "sandra" + }, + { + "rshares": "5339100755934", + "voter": "kushed" + }, + { + "rshares": "1674029296934", + "voter": "silver" + }, + { + "rshares": "4063925838557", + "voter": "silversteem" + }, + { + "rshares": "128324636011", + "voter": "svk" + }, + { + "rshares": "1126556112870", + "voter": "ihashfury" + }, + { + "rshares": "1019287149109", + "voter": "liondani" + }, + { + "rshares": "2937247386101", + "voter": "wang" + }, + { + "rshares": "23332152248", + "voter": "jaewoocho" + }, + { + "rshares": "1910071941344", + "voter": "xeroc" + }, + { + "rshares": "6514602351120", + "voter": "complexring" + }, + { + "rshares": "1731498672998", + "voter": "joseph" + }, + { + "rshares": "90517391466", + "voter": "aizensou" + }, + { + "rshares": "4166462346763", + "voter": "au1nethyb1" + }, + { + "rshares": "475419579220", + "voter": "recursive2" + }, + { + "rshares": "462210569737", + "voter": "recursive3" + }, + { + "rshares": "651686683150", + "voter": "masteryoda" + }, + { + "rshares": "3254899228205", + "voter": "recursive" + }, + { + "rshares": "1209033907", + "voter": "mineralwasser" + }, + { + "rshares": "6756071314", + "voter": "bingo-0" + }, + { + "rshares": "1718241828", + "voter": "bingo-1" + }, + { + "rshares": "5801165470383", + "voter": "smooth.witness" + }, + { + "rshares": "1330827857292", + "voter": "steempower" + }, + { + "rshares": "425345638228", + "voter": "officialfuzzy" + }, + { + "rshares": "1215800936456", + "voter": "cass" + }, + { + "rshares": "10365366239", + "voter": "idol" + }, + { + "rshares": "816021167585", + "voter": "steemrollin" + }, + { + "rshares": "5043750251", + "voter": "sakr" + }, + { + "rshares": "64509999367", + "voter": "bangking" + }, + { + "rshares": "296422841257", + "voter": "chitty" + }, + { + "rshares": "8231062957", + "voter": "unosuke" + }, + { + "rshares": "3109726595", + "voter": "yefet" + }, + { + "rshares": "8209280181", + "voter": "khanhsang" + }, + { + "rshares": "1784486145", + "voter": "jocelyn" + }, + { + "rshares": "85258511340", + "voter": "acidsun" + }, + { + "rshares": "14485500439", + "voter": "gregory-f" + }, + { + "rshares": "17261905745", + "voter": "jademont" + }, + { + "rshares": "74893360972", + "voter": "eeks" + }, + { + "rshares": "488526217", + "voter": "paco-steem" + }, + { + "rshares": "5883825852", + "voter": "spaninv" + }, + { + "rshares": "-12087903048", + "voter": "james-show" + }, + { + "rshares": "336429919201", + "voter": "teamsteem" + }, + { + "rshares": "8667563285", + "voter": "richman" + }, + { + "rshares": "13068852902", + "voter": "acidyo" + }, + { + "rshares": "174506653297", + "voter": "steve-walschot" + }, + { + "rshares": "9836158141", + "voter": "kefkius" + }, + { + "rshares": "58639157917", + "voter": "oaldamster" + }, + { + "rshares": "268816966", + "voter": "coar" + }, + { + "rshares": "100988550788", + "voter": "asch" + }, + { + "rshares": "629740296743", + "voter": "kevinwong" + }, + { + "rshares": "1414344480", + "voter": "murh" + }, + { + "rshares": "6372449504", + "voter": "cryptofunk" + }, + { + "rshares": "16733609471", + "voter": "b4bb4r-5h3r" + }, + { + "rshares": "579449391", + "voter": "kodi" + }, + { + "rshares": "2326310189", + "voter": "error" + }, + { + "rshares": "206727143370", + "voter": "dragonslayer109" + }, + { + "rshares": "5853981249", + "voter": "marta-zaidel" + }, + { + "rshares": "1064576926325", + "voter": "cyber" + }, + { + "rshares": "61678758152", + "voter": "theshell" + }, + { + "rshares": "425799805812", + "voter": "taoteh1221" + }, + { + "rshares": "418804855", + "voter": "applecrisp" + }, + { + "rshares": "381169481", + "voter": "stiletto" + }, + { + "rshares": "383436160153", + "voter": "hedge-x" + }, + { + "rshares": "56682792316", + "voter": "juanmiguelsalas" + }, + { + "rshares": "572341707403", + "voter": "andrarchy" + }, + { + "rshares": "48485320682", + "voter": "thecryptodrive" + }, + { + "rshares": "1380704224", + "voter": "fjccoin" + }, + { + "rshares": "563704760996", + "voter": "infovore" + }, + { + "rshares": "13622725061", + "voter": "facer" + }, + { + "rshares": "210189819099", + "voter": "alexc" + }, + { + "rshares": "4866103974", + "voter": "tee-em" + }, + { + "rshares": "32185020754", + "voter": "michaelx" + }, + { + "rshares": "5946920606", + "voter": "mark-waser" + }, + { + "rshares": "17023109715", + "voter": "albertogm" + }, + { + "rshares": "111322975376", + "voter": "geoffrey" + }, + { + "rshares": "6609454107", + "voter": "tyler-fletcher" + }, + { + "rshares": "81716838174", + "voter": "razvanelulmarin" + }, + { + "rshares": "2251029884", + "voter": "superfreek" + }, + { + "rshares": "497689345", + "voter": "mrhankeh" + }, + { + "rshares": "35378265315", + "voter": "clement" + }, + { + "rshares": "32849189476", + "voter": "acassity" + }, + { + "rshares": "280886491", + "voter": "ladyclair" + }, + { + "rshares": "68448307991", + "voter": "bacchist" + }, + { + "rshares": "29507132066", + "voter": "venuspcs" + }, + { + "rshares": "189899541322", + "voter": "asmolokalo" + }, + { + "rshares": "57789275837", + "voter": "good-karma" + }, + { + "rshares": "462726697228", + "voter": "roelandp" + }, + { + "rshares": "1642746247", + "voter": "gidlark" + }, + { + "rshares": "3281446057", + "voter": "orly" + }, + { + "rshares": "3822074668", + "voter": "getssidetracked" + }, + { + "rshares": "250280584", + "voter": "mstang83" + }, + { + "rshares": "18842493961", + "voter": "hakise" + }, + { + "rshares": "366200786008", + "voter": "fabio" + }, + { + "rshares": "15993709711", + "voter": "yogi.artist" + }, + { + "rshares": "103519364", + "voter": "strawhat" + }, + { + "rshares": "16242543792", + "voter": "r4fken" + }, + { + "rshares": "102589641", + "voter": "cryptochannel" + }, + { + "rshares": "154460522305", + "voter": "derekareith" + }, + { + "rshares": "134342335542", + "voter": "slowwalker" + }, + { + "rshares": "234221482", + "voter": "dzweta" + }, + { + "rshares": "2304777789", + "voter": "vi1son" + }, + { + "rshares": "167273913111", + "voter": "knircky" + }, + { + "rshares": "18842550092", + "voter": "ausbitbank" + }, + { + "rshares": "167108122163", + "voter": "jacor" + }, + { + "rshares": "243777568", + "voter": "ardina" + }, + { + "rshares": "1422705803", + "voter": "mixa" + }, + { + "rshares": "18005198739", + "voter": "sebastien" + }, + { + "rshares": "3519456066", + "voter": "taurus" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "11694816243", + "voter": "asim" + }, + { + "rshares": "321595915706", + "voter": "jesta" + }, + { + "rshares": "33655847643", + "voter": "toxonaut" + }, + { + "rshares": "109259290", + "voter": "snowden" + }, + { + "rshares": "4602737482", + "voter": "thegoodguy" + }, + { + "rshares": "129723551811", + "voter": "paco" + }, + { + "rshares": "1107683133", + "voter": "karen13" + }, + { + "rshares": "24478695193", + "voter": "igster" + }, + { + "rshares": "73113648749", + "voter": "jpiper20" + }, + { + "rshares": "2722560234", + "voter": "dmacshady" + }, + { + "rshares": "32333061210", + "voter": "pkattera" + }, + { + "rshares": "19237325288", + "voter": "anduweb" + }, + { + "rshares": "10485943136", + "voter": "shla-rafia" + }, + { + "rshares": "46825725594", + "voter": "milestone" + }, + { + "rshares": "7311652491", + "voter": "lichtblick" + }, + { + "rshares": "35770229729", + "voter": "creemej" + }, + { + "rshares": "91938017", + "voter": "wildchild" + }, + { + "rshares": "126704886218", + "voter": "demotruk" + }, + { + "rshares": "3638341233", + "voter": "maximkichev" + }, + { + "rshares": "2506537211", + "voter": "the-future" + }, + { + "rshares": "4381902261", + "voter": "adamt" + }, + { + "rshares": "865281681", + "voter": "sebhaj" + }, + { + "rshares": "24903536535", + "voter": "phenom" + }, + { + "rshares": "2828187420", + "voter": "sgnsteems" + }, + { + "rshares": "175156042246", + "voter": "blueorgy" + }, + { + "rshares": "9702073568", + "voter": "benjiberigan" + }, + { + "rshares": "339108457006", + "voter": "calaber24p" + }, + { + "rshares": "7168473448", + "voter": "geronimo" + }, + { + "rshares": "4923764236", + "voter": "bitcoiner" + }, + { + "rshares": "3756065125", + "voter": "tarindel" + }, + { + "rshares": "92046641189", + "voter": "rea" + }, + { + "rshares": "53840923427", + "voter": "jl777" + }, + { + "rshares": "30194118400", + "voter": "zaebars" + }, + { + "rshares": "35105109840", + "voter": "paquito" + }, + { + "rshares": "1772149995", + "voter": "yarly" + }, + { + "rshares": "267173384", + "voter": "yarly2" + }, + { + "rshares": "267573135", + "voter": "yarly3" + }, + { + "rshares": "154579129", + "voter": "yarly4" + }, + { + "rshares": "155451862", + "voter": "yarly5" + }, + { + "rshares": "88607961", + "voter": "yarly7" + }, + { + "rshares": "780100857", + "voter": "raymonjohnstone" + }, + { + "rshares": "50619397", + "voter": "steemchain" + }, + { + "rshares": "50619397", + "voter": "whalepool" + }, + { + "rshares": "506354306", + "voter": "gustavopasquini" + }, + { + "rshares": "206059171", + "voter": "sergey44" + }, + { + "rshares": "114721821", + "voter": "mxo8" + }, + { + "rshares": "1234205003", + "voter": "mohammed123" + }, + { + "rshares": "21120708735", + "voter": "krabgat" + }, + { + "rshares": "2763375206", + "voter": "favorit" + }, + { + "rshares": "4543618384", + "voter": "proto" + }, + { + "rshares": "634042636", + "voter": "curator" + }, + { + "rshares": "428809375", + "voter": "yarly10" + }, + { + "rshares": "229507420", + "voter": "yarly11" + }, + { + "rshares": "16468884512", + "voter": "michaeldodridge" + }, + { + "rshares": "80241480", + "voter": "yarly12" + }, + { + "rshares": "46743296544", + "voter": "celebr1ty" + }, + { + "rshares": "11567632851", + "voter": "dimitarj" + }, + { + "rshares": "142823483", + "voter": "steemster1" + }, + { + "rshares": "25747727433", + "voter": "fabien" + }, + { + "rshares": "817422571", + "voter": "bullionstackers" + }, + { + "rshares": "250094985729", + "voter": "originate" + }, + { + "rshares": "3021945641", + "voter": "dmilash" + }, + { + "rshares": "2214910466", + "voter": "jillstein2016" + }, + { + "rshares": "110940646", + "voter": "cryptoz" + }, + { + "rshares": "3302445446", + "voter": "glitterpig" + }, + { + "rshares": "6338015068", + "voter": "uwe69" + }, + { + "rshares": "6276554782", + "voter": "shortcut" + }, + { + "rshares": "115422843193", + "voter": "steemdrive" + }, + { + "rshares": "947490604", + "voter": "metaflute" + }, + { + "rshares": "52093680889", + "voter": "gomeravibz" + }, + { + "rshares": "2298221146", + "voter": "taker" + }, + { + "rshares": "6519151447", + "voter": "nekromarinist" + }, + { + "rshares": "57873464", + "voter": "sharon" + }, + { + "rshares": "240147448", + "voter": "frozendota" + }, + { + "rshares": "15408983536", + "voter": "felixxx" + }, + { + "rshares": "1571831658", + "voter": "whitemike313" + }, + { + "rshares": "3034673286", + "voter": "merej99" + }, + { + "rshares": "58971492", + "voter": "lillianjones" + }, + { + "rshares": "160728582794", + "voter": "twinner" + }, + { + "rshares": "24365622803", + "voter": "rawnetics" + }, + { + "rshares": "54215689285", + "voter": "sextusempiricus" + }, + { + "rshares": "24019048233", + "voter": "laonie1" + }, + { + "rshares": "25067031014", + "voter": "laonie2" + }, + { + "rshares": "25075820795", + "voter": "laonie3" + }, + { + "rshares": "6338796297", + "voter": "brendio" + }, + { + "rshares": "2082633772", + "voter": "gmurph" + }, + { + "rshares": "80533628422", + "voter": "timsaid" + }, + { + "rshares": "2375350982", + "voter": "kalimor" + }, + { + "rshares": "63541793", + "voter": "coderg" + }, + { + "rshares": "2868848889", + "voter": "darrenturetzky" + }, + { + "rshares": "56886318", + "voter": "michellek" + }, + { + "rshares": "25071217681", + "voter": "laonie4" + }, + { + "rshares": "25068579591", + "voter": "laonie5" + }, + { + "rshares": "25065597250", + "voter": "laonie6" + }, + { + "rshares": "25061528883", + "voter": "laonie7" + }, + { + "rshares": "5480906296", + "voter": "kurtbeil" + }, + { + "rshares": "25057888093", + "voter": "laonie8" + }, + { + "rshares": "25055101904", + "voter": "laonie9" + }, + { + "rshares": "3229522119", + "voter": "steemleak" + }, + { + "rshares": "112040172638", + "voter": "thisisbenbrick" + }, + { + "rshares": "4269542847", + "voter": "antfield" + }, + { + "rshares": "7834943379", + "voter": "mevilkingdom" + }, + { + "rshares": "60240401", + "voter": "locolote" + }, + { + "rshares": "368648608", + "voter": "riosparada" + }, + { + "rshares": "11282370272", + "voter": "ekitcho" + }, + { + "rshares": "115248537", + "voter": "bigsambucca" + }, + { + "rshares": "93215140213", + "voter": "joele" + }, + { + "rshares": "2215228183", + "voter": "paynode" + }, + { + "rshares": "79785139", + "voter": "dims" + }, + { + "rshares": "2455226384", + "voter": "pgarcgo" + }, + { + "rshares": "1434064827", + "voter": "hms818" + }, + { + "rshares": "40210689203", + "voter": "nonlinearone" + }, + { + "rshares": "59437351", + "voter": "msjennifer" + }, + { + "rshares": "54654502", + "voter": "ciao" + }, + { + "rshares": "3667415885", + "voter": "villainblack" + }, + { + "rshares": "52985539", + "voter": "steemo" + }, + { + "rshares": "52848854", + "voter": "steema" + }, + { + "rshares": "16997336414", + "voter": "plasticfuzzy" + }, + { + "rshares": "74615731", + "voter": "evgenyche" + }, + { + "rshares": "69662169", + "voter": "confucius" + }, + { + "rshares": "70633121", + "voter": "stevescriber" + }, + { + "rshares": "4179438198", + "voter": "bledarus" + }, + { + "rshares": "53688127", + "voter": "loli" + }, + { + "rshares": "93744050986", + "voter": "miacats" + }, + { + "rshares": "53661976", + "voter": "jarvis" + }, + { + "rshares": "77220767", + "voter": "razberrijam" + }, + { + "rshares": "6669342810", + "voter": "rubenalexander" + }, + { + "rshares": "51899170", + "voter": "fortuner" + }, + { + "rshares": "9443278113", + "voter": "pjheinz" + }, + { + "rshares": "3054149279", + "voter": "virtualgrowth" + }, + { + "rshares": "84068339484", + "voter": "neptun" + }, + { + "rshares": "11375408076", + "voter": "gvargas123" + }, + { + "rshares": "50698107", + "voter": "johnbyrd" + }, + { + "rshares": "50682252", + "voter": "thomasaustin" + }, + { + "rshares": "50680459", + "voter": "thermor" + }, + { + "rshares": "50691211", + "voter": "ficholl" + }, + { + "rshares": "50673817", + "voter": "widell" + }, + { + "rshares": "50311250", + "voter": "revelbrooks" + }, + { + "rshares": "25048684602", + "voter": "laonie10" + }, + { + "rshares": "91779459", + "voter": "lasseehlers" + }, + { + "rshares": "377542979", + "voter": "mrlogic" + }, + { + "rshares": "2982178419", + "voter": "netaterra" + }, + { + "rshares": "54361669", + "voter": "bitchplease" + }, + { + "rshares": "78411391", + "voter": "joelbow" + }, + { + "rshares": "5764641330", + "voter": "hilarski" + }, + { + "rshares": "3133328104", + "voter": "imag1ne" + }, + { + "rshares": "2080442949", + "voter": "shadowspub" + }, + { + "rshares": "80071335", + "voter": "justinschwalm" + }, + { + "rshares": "50416427", + "voter": "curpose" + }, + { + "rshares": "17920360614", + "voter": "takethecannoli" + }, + { + "rshares": "1208491149", + "voter": "lenar" + }, + { + "rshares": "1699015883", + "voter": "runridefly" + }, + { + "rshares": "88019548", + "voter": "uziriel" + }, + { + "rshares": "2212170971", + "voter": "steemitguide" + }, + { + "rshares": "7470990325", + "voter": "einsteinpotsdam" + }, + { + "rshares": "4592852638", + "voter": "richardcrill" + }, + { + "rshares": "24180906457", + "voter": "laonie11" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "3336919086", + "voter": "xanoxt" + }, + { + "rshares": "1660688801", + "voter": "davidjkelley" + }, + { + "rshares": "50593879", + "voter": "crion" + }, + { + "rshares": "50271139", + "voter": "hitherise" + }, + { + "rshares": "50262756", + "voter": "wiss" + }, + { + "rshares": "42587324218", + "voter": "sponge-bob" + }, + { + "rshares": "4656328113", + "voter": "l0k1" + }, + { + "rshares": "15560806947", + "voter": "digital-wisdom" + }, + { + "rshares": "3708768210", + "voter": "ethical-ai" + }, + { + "rshares": "51939094", + "voter": "freesteem" + }, + { + "rshares": "51061585", + "voter": "jamespro" + }, + { + "rshares": "51033798", + "voter": "stroully" + }, + { + "rshares": "3079499780", + "voter": "maryfromsochi" + }, + { + "rshares": "6827381497", + "voter": "jwaser" + }, + { + "rshares": "50712038", + "voter": "thadm" + }, + { + "rshares": "50710305", + "voter": "prof" + }, + { + "rshares": "50370757", + "voter": "yorsens" + }, + { + "rshares": "212837202380", + "voter": "asksisk" + }, + { + "rshares": "50065875", + "voter": "bane" + }, + { + "rshares": "50059754", + "voter": "vive" + }, + { + "rshares": "50054445", + "voter": "coad" + }, + { + "rshares": "26903512125", + "voter": "dubi" + }, + { + "rshares": "2674022812", + "voter": "bwaser" + }, + { + "rshares": "50840303", + "voter": "sofa" + }, + { + "rshares": "52910800", + "voter": "roadhog" + }, + { + "rshares": "2201645172", + "voter": "alina1" + }, + { + "rshares": "659649765", + "voter": "ct-gurus" + }, + { + "rshares": "54622489", + "voter": "medafi" + }, + { + "rshares": "7708395185", + "voter": "mariandavp" + }, + { + "rshares": "63519655246", + "voter": "tracemayer" + }, + { + "rshares": "43440714161", + "voter": "brains" + }, + { + "rshares": "51278775", + "voter": "post-successful" + }, + { + "rshares": "50933404", + "voter": "ailo" + }, + { + "rshares": "5419706802", + "voter": "burnin" + }, + { + "rshares": "5749962751", + "voter": "chick1" + }, + { + "rshares": "3613469334", + "voter": "funnyman" + }, + { + "rshares": "2188505650", + "voter": "rigaronib" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "61548157", + "voter": "freebornangel" + }, + { + "rshares": "474509334", + "voter": "anomaly" + }, + { + "rshares": "27666667825", + "voter": "tarekadam" + }, + { + "rshares": "2400009033", + "voter": "ellepdub" + }, + { + "rshares": "51890765", + "voter": "gregorygarcia" + }, + { + "rshares": "61292139", + "voter": "inarix03" + }, + { + "rshares": "286977519", + "voter": "ola1" + }, + { + "rshares": "12084353453", + "voter": "herpetologyguy" + }, + { + "rshares": "50441122", + "voter": "eavy" + }, + { + "rshares": "50454901", + "voter": "roto" + }, + { + "rshares": "53055896", + "voter": "drac59" + }, + { + "rshares": "4814064056", + "voter": "morgan.waser" + }, + { + "rshares": "50602980", + "voter": "cfisher" + }, + { + "rshares": "56301561", + "voter": "stringer" + }, + { + "rshares": "50235850", + "voter": "billkappa442" + }, + { + "rshares": "1491995147", + "voter": "robotev" + }, + { + "rshares": "61035542", + "voter": "teo" + }, + { + "rshares": "4984135374", + "voter": "donchate" + }, + { + "rshares": "50708837", + "voter": "ardly" + }, + { + "rshares": "50704078", + "voter": "yotoh" + }, + { + "rshares": "827252367", + "voter": "bapparabi" + }, + { + "rshares": "50372583", + "voter": "carre" + }, + { + "rshares": "50349676", + "voter": "albertheijn" + }, + { + "rshares": "3687702565", + "voter": "strong-ai" + }, + { + "rshares": "52329350", + "voter": "ninjapainter" + }, + { + "rshares": "728357348", + "voter": "ziogio" + }, + { + "rshares": "69589512", + "voter": "igtes" + }, + { + "rshares": "141679752", + "voter": "buffett" + }, + { + "rshares": "197326430", + "voter": "sjamayee" + }, + { + "rshares": "121259976", + "voter": "comeup" + }, + { + "rshares": "1630339077", + "voter": "rusteemitblog" + }, + { + "rshares": "155476058", + "voter": "ndea30" + }, + { + "rshares": "155469045", + "voter": "domenico" + }, + { + "rshares": "444421238", + "voter": "witchcraftblog" + }, + { + "rshares": "158523226", + "voter": "shadowproject" + }, + { + "rshares": "157805871", + "voter": "serena199" + }, + { + "rshares": "154619387", + "voter": "gia7" + }, + { + "rshares": "1994519972", + "voter": "dresden" + }, + { + "rshares": "201362779", + "voter": "mgibson" + }, + { + "rshares": "154157014", + "voter": "richie4" + }, + { + "rshares": "157241455", + "voter": "coraline88" + }, + { + "rshares": "157176058", + "voter": "cybergirls" + }, + { + "rshares": "153838109", + "voter": "harlen" + }, + { + "rshares": "152057481", + "voter": "food-creator" + }, + { + "rshares": "156939548", + "voter": "yanuel" + }, + { + "rshares": "153751482", + "voter": "daritza" + }, + { + "rshares": "156847954", + "voter": "correct" + }, + { + "rshares": "156411729", + "voter": "blender" + }, + { + "rshares": "159506164", + "voter": "greenpeace" + }, + { + "rshares": "156299377", + "voter": "tipsandtricks" + }, + { + "rshares": "156261069", + "voter": "ibm1000" + }, + { + "rshares": "159352476", + "voter": "panic" + }, + { + "rshares": "156023422", + "voter": "reef" + }, + { + "rshares": "159025535", + "voter": "xtreme" + }, + { + "rshares": "155619923", + "voter": "steemwallet" + }, + { + "rshares": "81075259", + "voter": "dealzgal" + }, + { + "rshares": "89654003", + "voter": "storage" + }, + { + "rshares": "151413472", + "voter": "steemdesigner" + }, + { + "rshares": "148077602", + "voter": "dougkarr" + }, + { + "rshares": "73844343", + "voter": "blackmarket" + }, + { + "rshares": "79990132", + "voter": "gifts" + }, + { + "rshares": "171078424", + "voter": "pathtomydream" + }, + { + "rshares": "112446078", + "voter": "paulocouto" + }, + { + "rshares": "151525581", + "voter": "kevinfoesenek" + }, + { + "rshares": "144957585", + "voter": "sawgunner13" + }, + { + "rshares": "1593664040", + "voter": "steemlift" + }, + { + "rshares": "147818170", + "voter": "dirlei.sdias" + }, + { + "rshares": "135637537", + "voter": "toddemaher1" + } + ], + "author": "cass", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "![b99cea99b79d334be4815a56a64ff4f1.png](https://www.steemimg.com/images/2016/09/14/b99cea99b79d334be4815a56a64ff4f1.png)\n\n---\n\nI want to follow up on @roelandp announcement post about the steemfest.com at November 11/12/13.\n\nSome of u have noticed i'm assisting him on the preparation for the Steemfest Event in November.\nI did meet @roelandp in Amsterdam last week and was directly impressed by his passion and energy.\nSo i decided to FULL support him towards the Nov11.\n\n\n### All gotten SBD rewards will contributed towards @steemfest project \n\nSo u will have a better possibility to get a preview on how the posters will look later on \"LIVE\".\nHere we go, i was trying to make a nice small mockup collection to this cause.\n\nENJOY\n[![3a7db045b911ea8785a1e9c37c7e75a7.jpg](https://www.steemimg.com/images/2016/09/14/3a7db045b911ea8785a1e9c37c7e75a7.jpg)](https://www.steemimg.com/image/1SL5m)\n\n[![9a8268f34903dbcf5fbe06559ce7bfc6.png](https://www.steemimg.com/images/2016/09/14/9a8268f34903dbcf5fbe06559ce7bfc6.png)](https://www.steemimg.com/image/1V8e6)\n[![8f8de740d802a0bf228bd833657b1f26.jpg](https://www.steemimg.com/images/2016/09/14/8f8de740d802a0bf228bd833657b1f26.jpg)](https://www.steemimg.com/image/1SnTu)\n[![a317ccbeec3112a5d60f6f2afdf8255a.jpg](https://www.steemimg.com/images/2016/09/14/a317ccbeec3112a5d60f6f2afdf8255a.jpg)](https://www.steemimg.com/image/1SPji)\n[![bd3b5b4c18cda4d063cabc03443cb6a8.jpg](https://www.steemimg.com/images/2016/09/14/bd3b5b4c18cda4d063cabc03443cb6a8.jpg)](https://www.steemimg.com/image/1SCWB)\n[![4d16cb792150dbd9c7cca2e9eea45f9d.jpg](https://www.steemimg.com/images/2016/09/14/4d16cb792150dbd9c7cca2e9eea45f9d.jpg)](https://www.steemimg.com/image/1S62K)\n[![25943765543ef057543db7f2d5b65e28.jpg](https://www.steemimg.com/images/2016/09/14/25943765543ef057543db7f2d5b65e28.jpg)](https://www.steemimg.com/image/1SwCI)\n[![a1d1fc9af366abae551a9b443ac0441f.jpg](https://www.steemimg.com/images/2016/09/14/a1d1fc9af366abae551a9b443ac0441f.jpg)](https://www.steemimg.com/image/1Sq3h)", + "category": "steemfest", + "children": 17, + "created": "2016-09-14T14:02:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/14/b99cea99b79d334be4815a56a64ff4f1.png", + "https://www.steemimg.com/images/2016/09/14/3a7db045b911ea8785a1e9c37c7e75a7.jpg", + "https://www.steemimg.com/images/2016/09/14/9a8268f34903dbcf5fbe06559ce7bfc6.png", + "https://www.steemimg.com/images/2016/09/14/8f8de740d802a0bf228bd833657b1f26.jpg", + "https://www.steemimg.com/images/2016/09/14/a317ccbeec3112a5d60f6f2afdf8255a.jpg", + "https://www.steemimg.com/images/2016/09/14/bd3b5b4c18cda4d063cabc03443cb6a8.jpg", + "https://www.steemimg.com/images/2016/09/14/4d16cb792150dbd9c7cca2e9eea45f9d.jpg", + "https://www.steemimg.com/images/2016/09/14/25943765543ef057543db7f2d5b65e28.jpg", + "https://www.steemimg.com/images/2016/09/14/a1d1fc9af366abae551a9b443ac0441f.jpg" + ], + "links": [ + "https://www.steemimg.com/image/1SL5m", + "https://www.steemimg.com/image/1V8e6", + "https://www.steemimg.com/image/1SnTu", + "https://www.steemimg.com/image/1SPji", + "https://www.steemimg.com/image/1SCWB", + "https://www.steemimg.com/image/1S62K", + "https://www.steemimg.com/image/1SwCI", + "https://www.steemimg.com/image/1Sq3h" + ], + "tags": [ + "steemfest", + "design", + "poster", + "amsterdam" + ], + "users": [ + "roelandp", + "steemfest" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 169985783269298, + "payout": 1618.329, + "payout_at": "2016-10-15T19:32:42", + "pending_payout_value": "1618.329 HBD", + "percent_steem_dollars": 10000, + "permlink": "steemfest-follow-up-poster-designs-sbd-rewards-will-donated-to-the-project", + "post_id": 949385, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 386 + }, + "title": "[Steemfest] Follow up - Poster designs! SBD rewards will donated to the project!", + "updated": "2016-09-14T14:02:39", + "url": "/steemfest/@cass/steemfest-follow-up-poster-designs-sbd-rewards-will-donated-to-the-project" + }, + { + "active_votes": [ + { + "rshares": "30948708908726", + "voter": "val-a" + }, + { + "rshares": "15292900000000", + "voter": "val-b" + }, + { + "rshares": "1534352192855", + "voter": "joseph" + }, + { + "rshares": "652034182902", + "voter": "masteryoda" + }, + { + "rshares": "8927024295", + "voter": "idol" + }, + { + "rshares": "2637269453488", + "voter": "donkeypong" + }, + { + "rshares": "816386307308", + "voter": "steemrollin" + }, + { + "rshares": "4941856440", + "voter": "sakr" + }, + { + "rshares": "140357414085", + "voter": "chris4210" + }, + { + "rshares": "1536548017", + "voter": "jocelyn" + }, + { + "rshares": "83530339170", + "voter": "acidsun" + }, + { + "rshares": "1196485708874", + "voter": "gavvet" + }, + { + "rshares": "59931939963", + "voter": "eeks" + }, + { + "rshares": "6122594947", + "voter": "fernando-sanz" + }, + { + "rshares": "584270995256", + "voter": "nanzo-scoop" + }, + { + "rshares": "177415501233", + "voter": "mummyimperfect" + }, + { + "rshares": "106634401121", + "voter": "asch" + }, + { + "rshares": "603741881611", + "voter": "kevinwong" + }, + { + "rshares": "1061259321", + "voter": "murh" + }, + { + "rshares": "3187850436", + "voter": "cryptofunk" + }, + { + "rshares": "2003304335", + "voter": "error" + }, + { + "rshares": "962089879337", + "voter": "cyber" + }, + { + "rshares": "50884297723", + "voter": "ak2020" + }, + { + "rshares": "61300613738", + "voter": "justtryme90" + }, + { + "rshares": "410517349", + "voter": "applecrisp" + }, + { + "rshares": "35693164103", + "voter": "altoz" + }, + { + "rshares": "820589638514", + "voter": "anwenbaumeister" + }, + { + "rshares": "5950595929", + "voter": "mark-waser" + }, + { + "rshares": "118349796563", + "voter": "geoffrey" + }, + { + "rshares": "192325266448", + "voter": "kimziv" + }, + { + "rshares": "77083924707", + "voter": "emily-cook" + }, + { + "rshares": "3283440404", + "voter": "orly" + }, + { + "rshares": "2834957075", + "voter": "steem1653" + }, + { + "rshares": "124961861", + "voter": "cynetyc" + }, + { + "rshares": "5357326058", + "voter": "thegoodguy" + }, + { + "rshares": "4209522316", + "voter": "karen13" + }, + { + "rshares": "251366150295", + "voter": "nabilov" + }, + { + "rshares": "8401059269", + "voter": "noodhoog" + }, + { + "rshares": "455246290726", + "voter": "knozaki2015" + }, + { + "rshares": "7166494256", + "voter": "lichtblick" + }, + { + "rshares": "33739090409", + "voter": "creemej" + }, + { + "rshares": "5726411049", + "voter": "btcbtcbtc20155" + }, + { + "rshares": "163324531946", + "voter": "blueorgy" + }, + { + "rshares": "4195248338", + "voter": "poseidon" + }, + { + "rshares": "3435918746", + "voter": "simon.braki.love" + }, + { + "rshares": "268137172703", + "voter": "liberosist" + }, + { + "rshares": "4128504280", + "voter": "birdie" + }, + { + "rshares": "5609578664", + "voter": "sharker" + }, + { + "rshares": "204618259005", + "voter": "jl777" + }, + { + "rshares": "1773036384", + "voter": "yarly" + }, + { + "rshares": "267188192", + "voter": "yarly2" + }, + { + "rshares": "267587944", + "voter": "yarly3" + }, + { + "rshares": "154579129", + "voter": "yarly4" + }, + { + "rshares": "155451862", + "voter": "yarly5" + }, + { + "rshares": "88607961", + "voter": "yarly7" + }, + { + "rshares": "11031796651", + "voter": "moon32walker" + }, + { + "rshares": "258619590", + "voter": "sergey44" + }, + { + "rshares": "17267341753", + "voter": "proto" + }, + { + "rshares": "31599342155", + "voter": "sisterholics" + }, + { + "rshares": "428868451", + "voter": "yarly10" + }, + { + "rshares": "229507420", + "voter": "yarly11" + }, + { + "rshares": "80241480", + "voter": "yarly12" + }, + { + "rshares": "146224042", + "voter": "steemster1" + }, + { + "rshares": "5878023046", + "voter": "mahekg" + }, + { + "rshares": "8734150854", + "voter": "taker" + }, + { + "rshares": "6521104126", + "voter": "nekromarinist" + }, + { + "rshares": "10553169212", + "voter": "theprophet0" + }, + { + "rshares": "57873464", + "voter": "sharon" + }, + { + "rshares": "58971492", + "voter": "lillianjones" + }, + { + "rshares": "1117443990130", + "voter": "laonie" + }, + { + "rshares": "4257390614", + "voter": "twinner" + }, + { + "rshares": "4414425121", + "voter": "timcliff" + }, + { + "rshares": "38640926181", + "voter": "myfirst" + }, + { + "rshares": "233306274805", + "voter": "somebody" + }, + { + "rshares": "8723132526", + "voter": "flysaga" + }, + { + "rshares": "1667759072", + "voter": "gmurph" + }, + { + "rshares": "51539167746", + "voter": "midnightoil" + }, + { + "rshares": "4190377366", + "voter": "ullikume" + }, + { + "rshares": "128906992414", + "voter": "xiaohui" + }, + { + "rshares": "21112616587", + "voter": "jphamer1" + }, + { + "rshares": "6306539895", + "voter": "elfkitchen" + }, + { + "rshares": "102434307703", + "voter": "joele" + }, + { + "rshares": "15549176040", + "voter": "randyclemens" + }, + { + "rshares": "4030108065", + "voter": "xiaokongcom" + }, + { + "rshares": "59437351", + "voter": "msjennifer" + }, + { + "rshares": "54654502", + "voter": "ciao" + }, + { + "rshares": "52985539", + "voter": "steemo" + }, + { + "rshares": "8123975227", + "voter": "xianjun" + }, + { + "rshares": "52848854", + "voter": "steema" + }, + { + "rshares": "69662169", + "voter": "confucius" + }, + { + "rshares": "11292536945", + "voter": "borran" + }, + { + "rshares": "53661976", + "voter": "jarvis" + }, + { + "rshares": "546765304", + "voter": "microluck" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "53106127", + "voter": "fortuner" + }, + { + "rshares": "84942400", + "voter": "pompe72" + }, + { + "rshares": "8114632832", + "voter": "lemouth" + }, + { + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "rshares": "51877132", + "voter": "johnbyrd" + }, + { + "rshares": "50682252", + "voter": "thomasaustin" + }, + { + "rshares": "51859074", + "voter": "thermor" + }, + { + "rshares": "50691211", + "voter": "ficholl" + }, + { + "rshares": "51852278", + "voter": "widell" + }, + { + "rshares": "404286448", + "voter": "steevc" + }, + { + "rshares": "3635091595", + "voter": "movievertigo" + }, + { + "rshares": "51481279", + "voter": "revelbrooks" + }, + { + "rshares": "1573489537", + "voter": "cehuneke" + }, + { + "rshares": "2982676167", + "voter": "netaterra" + }, + { + "rshares": "23137850346", + "voter": "andrewawerdna" + }, + { + "rshares": "5831957227", + "voter": "trev" + }, + { + "rshares": "8773942171", + "voter": "craigwilliamz" + }, + { + "rshares": "51505575275", + "voter": "mandibil" + }, + { + "rshares": "32462674824", + "voter": "daut44" + }, + { + "rshares": "50416427", + "voter": "curpose" + }, + { + "rshares": "3597236649", + "voter": "curving" + }, + { + "rshares": "61596105", + "voter": "uri-bruck" + }, + { + "rshares": "112983030208", + "voter": "shenanigator" + }, + { + "rshares": "10005063213", + "voter": "quinneaker" + }, + { + "rshares": "7626813355", + "voter": "einsteinpotsdam" + }, + { + "rshares": "4747321980", + "voter": "richardcrill" + }, + { + "rshares": "2205784762", + "voter": "jeremyfromwi" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "1661534801", + "voter": "davidjkelley" + }, + { + "rshares": "50593879", + "voter": "crion" + }, + { + "rshares": "178419224", + "voter": "greatness" + }, + { + "rshares": "50271139", + "voter": "hitherise" + }, + { + "rshares": "50262756", + "voter": "wiss" + }, + { + "rshares": "54249219602", + "voter": "sponge-bob" + }, + { + "rshares": "15571056039", + "voter": "digital-wisdom" + }, + { + "rshares": "3365396535", + "voter": "getonthetrain" + }, + { + "rshares": "3710959443", + "voter": "ethical-ai" + }, + { + "rshares": "51033798", + "voter": "stroully" + }, + { + "rshares": "6831361820", + "voter": "jwaser" + }, + { + "rshares": "468106735", + "voter": "tfeldman" + }, + { + "rshares": "50712038", + "voter": "thadm" + }, + { + "rshares": "50710305", + "voter": "prof" + }, + { + "rshares": "1597514180", + "voter": "ionescur" + }, + { + "rshares": "50065875", + "voter": "bane" + }, + { + "rshares": "50059754", + "voter": "vive" + }, + { + "rshares": "50054445", + "voter": "coad" + }, + { + "rshares": "2675506788", + "voter": "bwaser" + }, + { + "rshares": "7645490859", + "voter": "renzoarg" + }, + { + "rshares": "50840303", + "voter": "sofa" + }, + { + "rshares": "53990613", + "voter": "roadhog" + }, + { + "rshares": "52794249", + "voter": "doggnostic" + }, + { + "rshares": "52521499", + "voter": "jenny-talls" + }, + { + "rshares": "8199670899", + "voter": "mariandavp" + }, + { + "rshares": "55344422883", + "voter": "brains" + }, + { + "rshares": "53415391", + "voter": "post-successful" + }, + { + "rshares": "5866415576", + "voter": "burnin" + }, + { + "rshares": "271439221", + "voter": "anomaly" + }, + { + "rshares": "2401297947", + "voter": "ellepdub" + }, + { + "rshares": "4116636581", + "voter": "michelle.gent" + }, + { + "rshares": "12115638535", + "voter": "herpetologyguy" + }, + { + "rshares": "4817004213", + "voter": "morgan.waser" + }, + { + "rshares": "50228382", + "voter": "dragonice" + }, + { + "rshares": "1288421610", + "voter": "aksinya" + }, + { + "rshares": "1921231770", + "voter": "bapparabi" + }, + { + "rshares": "50487909", + "voter": "opticalillusions" + }, + { + "rshares": "3689852156", + "voter": "strong-ai" + }, + { + "rshares": "505556200", + "voter": "grisha-danunaher" + }, + { + "rshares": "71207873", + "voter": "igtes" + }, + { + "rshares": "50277354380", + "voter": "curie" + }, + { + "rshares": "851767121", + "voter": "dikanevroman" + }, + { + "rshares": "141679752", + "voter": "buffett" + }, + { + "rshares": "453506109", + "voter": "witchcraftblog" + }, + { + "rshares": "157799009", + "voter": "photorealistic" + }, + { + "rshares": "160880639", + "voter": "illusions" + }, + { + "rshares": "6920933761", + "voter": "dresden" + }, + { + "rshares": "160845765", + "voter": "caseyneistat" + }, + { + "rshares": "692395145", + "voter": "ysa" + }, + { + "rshares": "159984914", + "voter": "correct" + }, + { + "rshares": "159973989", + "voter": "capcom" + }, + { + "rshares": "159963865", + "voter": "sledgehammer" + }, + { + "rshares": "159950870", + "voter": "haribo" + }, + { + "rshares": "159531007", + "voter": "benetton" + }, + { + "rshares": "156194471", + "voter": "stimmt" + }, + { + "rshares": "159143891", + "voter": "reef" + }, + { + "rshares": "158632601", + "voter": "cream" + }, + { + "rshares": "891891710", + "voter": "reddust" + }, + { + "rshares": "336222066", + "voter": "aldentan" + }, + { + "rshares": "191981449", + "voter": "techslut" + } + ], + "author": "curie", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "
https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg
\n\n## Introduction\n[Project Curie](https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors) is a community project run by several Steemit authors. Its mission is to help reward content creators who are posting great original content, yet who have not yet become established. In the short time since Curie began, our writers group has partnered with @nextgencrypto and other whale accounts to bring rewards to these deserving authors. *Writers, artists, chefs, photographers, videographers, and many others have been recognized by these rewards.*\n\nEach day, the members of our Project will publish this list of the posts that Project Curie has chosen to reward recently. We hope that this list will provide more positive exposure to the authors we have selected. Also, it is an effort for us to be more transparent about which posts are being rewarded. We hope that you will consider following not only this @curie account, but also many of the authors whose work is featured here each day. **Please consider adding your comments on these posts also!**\n\nProject Curie's daily curation lists will now be called \"The Daily Curie\". We hope you like the name! Future editions of The Daily Curie will [feature our new logo](https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement). For the latest on Project Curie, do check out our [Month #1 update](https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016). \n\n----------------------\n\n## Today's Brief Analysis\n\nToday's list polls all posts curated between 17:00 14/09 UTC and 17:00 15/09 UTC. Project Curie voted on a total of **103 posts** by 99 unique authors. **SBD 3,832** has been generated for authors thus far, at an average of SBD 37 per post. \n\n----------------------\n| Author | Post | Payout |\n| --------- | ---------- | --------- |\n| [@faddat](https://steemit.com/@faddat) | [[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!](https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed) | 616.681 SBD |\n| [@rampant](https://steemit.com/@rampant) | [Steemit Daily Drawing Tutorial - Gesture drawings (plus tool)](https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool) | 215.310 SBD |\n| [@shenanigator](https://steemit.com/@shenanigator) | [Doing the Right Thing Will Get You Fired. What Do You Do?](https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do) | 205.664 SBD |\n| [@penguinpablo](https://steemit.com/@penguinpablo) | [How to Carve an Apple Leaf](https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf) | 196.419 SBD |\n| [@nathanjtaylor](https://steemit.com/@nathanjtaylor) | [Fire And Grace Art Painting And Poetry](https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry) | 189.043 SBD |\n| [@lily-da-vine](https://steemit.com/@lily-da-vine) | [Going Bananas in Acapulco](https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco) | 158.416 SBD |\n| [@budgetbucketlist](https://steemit.com/@budgetbucketlist) | [A 1-week plunge into Mexico City's madness! Art adventures, Frida-seeking and unfiltered exhaust fumes...](https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes) | 151.033 SBD |\n| [@benjiberigan](https://steemit.com/@benjiberigan) | [Anarchist Architecture, part 5: The cruelty of architectural codes and regulations.](https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations) | 132.427 SBD |\n| [@ausbitbank](https://steemit.com/@ausbitbank) | [The time my town flooded, the fragility of the food supply and lessons learned (Original photos)](https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos) | 125.877 SBD |\n| [@emily-cook](https://steemit.com/@emily-cook) | [THE ISLE OF MAN FILM FESTIVAL 2016 -A week of parties, red carpets and a lot of hard work!](https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work) | 121.336 SBD |\n| [@team-leibniz](https://steemit.com/@team-leibniz) | [Week 1 NFL Daily Fantasy Football Results - How my Bayesian Inspired Lineups Fared (+$84.00)](https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00) | 119.473 SBD |\n| [@ionescur](https://steemit.com/@ionescur) | [Urban dreams of freedom: back to the countryside, back to the land](https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land) | 110.564 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [New traditionl painting - \"The Battle\" - Steps of work](https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work) | 105.622 SBD |\n| [@juliac](https://steemit.com/@juliac) | [One of The Best Portraits That I've Ever Created: Einstein. What Do You Think?](https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think) | 103.781 SBD |\n| [@luzcypher](https://steemit.com/@luzcypher) | [Cover Crops Can Grow Food Organically With No Fertilizers, No Pesticides, No Herbicides And No Chemicals](https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals) | 100.117 SBD |\n| [@akareyon](https://steemit.com/@akareyon) | [I find your lack of argument disturbing](https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing) | 98.525 SBD |\n| [@curving](https://steemit.com/@curving) | [The Ephemeral Cairn Gardens Of the Austin Greenbelt - A Photo Journal and Meditation](https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation) | 96.834 SBD |\n| [@aleksandraz](https://steemit.com/@aleksandraz) | [Incredible Science - Brainbow Technology](https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology) | 89.777 SBD |\n| [@skapaneas](https://steemit.com/@skapaneas) | [IBD Crohn desease and Ulceritive collitis. what are they, self diagnose, self treat and more.](https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more) | 85.958 SBD |\n| [@gargon](https://steemit.com/@gargon) | [Proyecto Cervantes (13 - 15 Sept 2016): Compensaci\u00f3n y reconocimiento para escritores de habla hispana / Bringing rewards and recognition to spanish writers (Vol. III)](https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and) | 83.725 SBD |\n| [@iamwne](https://steemit.com/@iamwne) | [Blade Runner Inspired Digital Set - The Dark Market - Beauty Pass](https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass) | 83.869 SBD |\n| [@stormblaze](https://steemit.com/@stormblaze) | [Where Do Deleted Files Go?](https://steemit.com/technology/@stormblaze/where-do-deleted-files-go) | 81.221 SBD |\n| [@yanarnst](https://steemit.com/@yanarnst) | [Steemit Food Art lesson 2 ''Salad with chicken liver and pine nuts''](https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts) | 78.034 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Myths in the Sky: Ursa Major and Ursa Minor](https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor) | 72.174 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Brain preservation: an ambulance to the future](https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future) | 72.082 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Vivisecting the Stargazing Tribe: Visual Observers and Screen Scanners](https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners) | 71.421 SBD |\n| [@cristi](https://steemit.com/@cristi) | [Radical Metabolism - No Food and Water for 8 Months](https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months) | 69.559 SBD |\n| [@stranger27](https://steemit.com/@stranger27) | [Fibonacci sequence and Golden Ratio: magic numbers of Nature](https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature) | 66.258 SBD |\n| [@nekromarinist](https://steemit.com/@nekromarinist) | [Let's talk a little bit about phobias today!](https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today) | 61.776 SBD |\n| [@richman](https://steemit.com/@richman) | [If you want to lose a friend, lend him money (My life story)](https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story) | 58.193 SBD |\n| [@maceytomlin](https://steemit.com/@maceytomlin) | [What Exactly is Ayahuasca? How Should You Prepare for a Ceremony?](https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony) | 58.197 SBD |\n| [@nili](https://steemit.com/@nili) | [Smart Life (part 2) - Resolving the Godel's paradox on the blockchain as a solution for a decentralized trusted protocol](https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol) | 55.575 SBD |\n| [@optimistic-crone](https://steemit.com/@optimistic-crone) | [PROBIOTICS FOR LIFE!!! SUPER SIMPLE FERMENTED VEGETABLE 'KIM CHEE' RECIPE](https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe) | 54.909 SBD |\n| [@anarchyhasnogods](https://steemit.com/@anarchyhasnogods) | [Learning one dimensional motion using graphs- physics for beginners - part one](https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one) | 53.295 SBD |\n| [@yostopia](https://steemit.com/@yostopia) | [Beginner's mind, creative mind... the making of a Vimeo Staff Pick.](https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick) | 51.222 SBD |\n| [@reneenouveau](https://steemit.com/@reneenouveau) | [My response to Paul Steyn's myopic article \"Mr. Environmentalist\" shockingly published by National Geographic in Sept 2015.](https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015) | 49.433 SBD |\n| [@king3071](https://steemit.com/@king3071) | [MY DREAM DESTINATION - SWITZERLAND](https://steemit.com/travel/@king3071/my-dream-destination-switzerland) | 49.816 SBD |\n| [@kolin.evans](https://steemit.com/@kolin.evans) | [Something a little more substantial for you to think about - the 'IS' / 'WAS' CPT (Continuous Probable Time-lines.)](https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines) | 47.288 SBD |\n| [@fenglosophy](https://steemit.com/@fenglosophy) | [Does the language you speak influence how you think?](https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think) | 44.070 SBD |\n| [@mandibil](https://steemit.com/@mandibil) | [SAVAGE [Gorm Just, Denmark 2009] - movie review by Mandibil](https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil) | 44.621 SBD |\n| [@therajmahal](https://steemit.com/@therajmahal) | [Making the Impossible... Possible](https://steemit.com/science/@therajmahal/making-the-impossible-possible) | 44.765 SBD |\n| [@carlitashaw](https://steemit.com/@carlitashaw) | [The World's Worst Oil Spills, Ramifications & Amazing Alternative Solutions.](https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions) | 44.986 SBD |\n| [@renzoarg](https://steemit.com/@renzoarg) | [Skip a pill - Antibiotics](https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics) | 43.918 SBD |\n| [@rachelsvparry](https://steemit.com/@rachelsvparry) | [Under the Sea (again, but better this time)](https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time) | 43.436 SBD |\n| [@royalmacro](https://steemit.com/@royalmacro) | [lonely tree [An Original Abstract Art]](https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art) | 42.826 SBD |\n| [@stephmckenzie](https://steemit.com/@stephmckenzie) | [The Power of Choice--A Magnificent Key to True Personal Freedom](https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone) | 42.441 SBD |\n| [@alwayzgame](https://steemit.com/@alwayzgame) | [10 simple steps to ruin your child's life](https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life) | 42.475 SBD |\n| [@nonlinearone](https://steemit.com/@nonlinearone) | [Can Hemingway Improve Your Writing?](https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing) | 42.669 SBD |\n| [@kafkanarchy84](https://steemit.com/@kafkanarchy84) | [\"Johnny B. Goode\" Guitar Lesson and Intro to Theory, Vol. II](https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii) | 41.326 SBD |\n| [@feline1991](https://steemit.com/@feline1991) | [A Steemit Original - A Lifetime of Seeking Happiness - Chapter 2 - Part 2](https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2) | 41.931 SBD |\n| [@geke](https://steemit.com/@geke) | [The Banker and the Bulova - an original poem (Steemit flash-writing challenge)](https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge) | 41.497 SBD |\n| [@lscottphotos](https://steemit.com/@lscottphotos) | [LSCOTTPHOTOS Welcome to my family :) Thank you steemers <3 (Original Photos)](https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos) | 40.201 SBD |\n| [@pinkisland](https://steemit.com/@pinkisland) | [My Philosophy of Education](https://steemit.com/writing/@pinkisland/my-philosophy-of-education) | 40.978 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cinco](https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco) | 39.708 SBD |\n| [@luisucv34](https://steemit.com/@luisucv34) | [Venezuela: The lack of opportunities (English edition)](https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition) | 39.783 SBD |\n| [@beowulfoflegend](https://steemit.com/@beowulfoflegend) | [Silvanus and Empire, an Original Novel (Chapter Twenty)](https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty) | 39.543 SBD |\n| [@mariandavp](https://steemit.com/@mariandavp) | [From zero to hero - abstract office art by @mariandavp](https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp) | 39.529 SBD |\n| [@nasimbabu](https://steemit.com/@nasimbabu) | [The technology that defends us from potentially deadly diseases](https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases) | 39.620 SBD |\n| [@royaltiffany](https://steemit.com/@royaltiffany) | [Steemit B'Day Movie Review Contest Update!](https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update) | 37.706 SBD |\n| [@travelista](https://steemit.com/@travelista) | [An Adventure in Isla Esp\u00edritu Santo!](https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo) | 37.218 SBD |\n| [@jpiper20](https://steemit.com/@jpiper20) | [We Meet At Night -- An Original Story (Part 4)](https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4) | 37.319 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new painting - \"Dexter\" - Modern Impressionism](https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism) | 36.937 SBD |\n| [@krystle](https://steemit.com/@krystle) | [Keltorin's Flora and Fauna of Note - Firikwea - Valcanne's Guide to Keltorin](https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin) | 36.972 SBD |\n| [@cryptoiskey](https://steemit.com/@cryptoiskey) | [Workout from home on the cheap! - 12th September #Ultimate workout companion for your kids!](https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids) | 36.115 SBD |\n| [@getonthetrain](https://steemit.com/@getonthetrain) | [Top 10 Grisly Medieval Torture Methods](https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods) | 34.093 SBD |\n| [@ansharphoto](https://steemit.com/@ansharphoto) | [Roman Forum in the Morning, Rome](https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome) | 33.328 SBD |\n| [@aboundlessworld](https://steemit.com/@aboundlessworld) | [Introducing The Steemit Stories Podcast!](https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast) | 33.728 SBD |\n| [@thornybastard](https://steemit.com/@thornybastard) | [Chapter 10: A Call from the Forest\u2014\u6765\u81ea\u68ee\u6797\u7684\u547c\u5524](https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest) | 32.465 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Installing Bitshares / graphene from source on Mac OS X Yosemite (10.5.5)](https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5) | 32.348 SBD |\n| [@dumar022](https://steemit.com/@dumar022) | [Workshop lesson 6: Wrench: You don't wanna mess with this](https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this) | 32.155 SBD |\n| [@lapilipinas](https://steemit.com/@lapilipinas) | [Light from distant stars](https://steemit.com/science/@lapilipinas/light-from-distant-stars) | 32.778 SBD |\n| [@williambanks](https://steemit.com/@williambanks) | [Towards A Better Tomorrow : Part 1 - There but for grace!](https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace) | 31.434 SBD |\n| [@driv3n](https://steemit.com/@driv3n) | [How to Solve the Rubik's Cube like a boss - Part 2](https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2) | 31.858 SBD |\n| [@timbot606](https://steemit.com/@timbot606) | [Growing up in Appalachia](https://steemit.com/life/@timbot606/growing-up-in-appalachia) | 31.548 SBD |\n| [@themagus](https://steemit.com/@themagus) | [A less privileged white growing up in South Africa in the 1970's - part 2](https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2) | 31.099 SBD |\n| [@echoesinthemind](https://steemit.com/@echoesinthemind) | [Hanging Upside Down / DO NOT Try At Home](https://steemit.com/life/@echoesinthemind/hanging-upside-down) | 31.736 SBD |\n| [@ysa](https://steemit.com/@ysa) | [My pictures from traveling to Estes Park, Colorado](https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado) | 31.981 SBD |\n| [@aksinya](https://steemit.com/@aksinya) | [Our Trip to Wonderful, Scary and Unforgettable Kenya. Original Photos and Video](https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video) | 31.882 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cuatro](https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro) | 31.992 SBD |\n| [@successfully00](https://steemit.com/@successfully00) | [Knowing The Math - Mental Tricks - Multiplication Part 1](https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1) | 31.037 SBD |\n| [@linzo](https://steemit.com/@linzo) | [A Life Fantasy (Original Poem)](https://steemit.com/poem/@linzo/a-life-fantasy-original-poem) | 30.964 SBD |\n| [@hilarski](https://steemit.com/@hilarski) | [Panama Critters.](https://steemit.com/panama/@hilarski/panama-critters) | 28.729 SBD |\n| [@sulev](https://steemit.com/@sulev) | [Photography #11 - Pictures from my Garden: Bees, Lizards and other (part 2)](https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2) | 27.947 SBD |\n| [@steemswede](https://steemit.com/@steemswede) | [[BEER REVIEW] Thomas Hardy's Ale](https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale) | 27.183 SBD |\n| [@marius19](https://steemit.com/@marius19) | [Set of paper coffee cups. Origami](https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami) | 26.439 SBD |\n| [@poeticsnake](https://steemit.com/@poeticsnake) | [Autumn is coming Doodle style! ( Tutorial with step by step drawings)](https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings) | 26.547 SBD |\n| [@kiddarko](https://steemit.com/@kiddarko) | [Peep Life a Story By KidDarko (with tattoo illistrations and video)](https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video) | 26.853 SBD |\n| [@shieha](https://steemit.com/@shieha) | [The Hardest Computer Game of All Time - Robot Odyssey - Part 2](https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2) | 26.372 SBD |\n| [@ayim](https://steemit.com/@ayim) | [Fixing Posture - Part 4: Neck](https://steemit.com/life/@ayim/fixing-posture-part-4-neck) | 26.142 SBD |\n| [@hitmeasap](https://steemit.com/@hitmeasap) | [I am Batman's Robin or Skywalkers R2-D2. - I've always been the co-pilot. Always been the second choice.](https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice) | 25.747 SBD |\n| [@peskov](https://steemit.com/@peskov) | [Antonikha. Part 2 (featuring Vasily Peskov as author)](https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author) | 25.173 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [Advice from an angry dude: Breathe and interrupt your thoughts](https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts) | 25.162 SBD |\n| [@beginningtoend](https://steemit.com/@beginningtoend) | [Poetry, art and a little home spun philosophy.](https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy) | 25.708 SBD |\n| [@kaykunoichi](https://steemit.com/@kaykunoichi) | [Suicide Note - Audio (Written & performed by myself)](https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself) | 25.523 SBD |\n| [@booky](https://steemit.com/@booky) | [Boosting Leadership Skills = Healthier Happier You and Your Workmates](https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates) | 24.083 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [Do you Know the Difference Between RIGHT & WRONG?](https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong) | 24.516 SBD |\n| [@ekaterina4ka](https://steemit.com/@ekaterina4ka) | [We Knit Patterns by the Spokes. Post 2. \u0412\u044f\u0436\u0435\u043c \u0443\u0437\u043e\u0440\u044b \u0441\u043f\u0438\u0446\u0430\u043c\u0438. \u041f\u043e\u0441\u0442 2.](https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2) | 24.793 SBD |\n| [@scaredycatguide](https://steemit.com/@scaredycatguide) | [Real Talk - Vol 9. - Welcome To Dogmerica](https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica) | 24.207 SBD |\n| [@amy-goodrich](https://steemit.com/@amy-goodrich) | [Pineapple Mojito Green Smoothie](https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie) | 24.126 SBD |\n| [@scott.stevens](https://steemit.com/@scott.stevens) | [Awareness of Bitcoin is Now More Important Than Awareness of Geoengineering](https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering) | 24.875 SBD |\n| [@witchcraftblog](https://steemit.com/@witchcraftblog) | [My trip to Italy. Pisa.](https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa) | 24.265 SBD |\n| [@ibringawareness](https://steemit.com/@ibringawareness) | [\"Why I Got Stiffed\" Guy's Waiter Blog chapter 5](https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5) | 24.224 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new illustration - Batman vs Superman - Modern Impressionism by kimal73](https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73) | 23.617 SBD |\n| [@leylar](https://steemit.com/@leylar) | [Seeds are great travelers ~ Own work](https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work) | 23.166 SBD |\n| [@ocrdu](https://steemit.com/@ocrdu) | [The pods that go \"pop\"](https://steemit.com/photography/@ocrdu/the-pods-that-go-pop) | 23.530 SBD |\n| [@rusla](https://steemit.com/@rusla) | [Japan. Part8.](https://steemit.com/travel/@rusla/japan-part8) | 23.209 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [Puppy Charcoal Original Pencil Drawing](https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing) | 23.879 SBD |\n| [@borishaifa](https://steemit.com/@borishaifa) | [To Write Or Not To Wirte? \u041f\u0438\u0441\u0430\u0442\u044c \u0438\u043b\u0438 \u043d\u0435 \u043f\u0438\u0441\u0430\u0442\u044c?](https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat) | 23.730 SBD |\n| [@eveningstar92](https://steemit.com/@eveningstar92) | [Shit Happens, Move On-NSFW- Evening Star Art](https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art) | 23.092 SBD |\n| [@elewarne](https://steemit.com/@elewarne) | [Mixed Media](https://steemit.com/mixedmedia/@elewarne/mixed-media) | 23.059 SBD |\n| [@shredlord](https://steemit.com/@shredlord) | [Sunrise](https://steemit.com/art/@shredlord/sunrise) | 23.318 SBD |\n| [@sherlockcupid](https://steemit.com/@sherlockcupid) | [Let's Talk: Fears (Part One)](https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one) | 23.720 SBD |\n| [@annesaya](https://steemit.com/@annesaya) | [Our Guiding Star, a poem (A tribute to writers)](https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers) | 23.384 SBD |\n| [@fitmama](https://steemit.com/@fitmama) | [Why Do I Bother....](https://steemit.com/life/@fitmama/why-do-i-bother) | 23.451 SBD |\n| [@ezzy](https://steemit.com/@ezzy) | [The Bionic Experiment - Part 1 (My Original Short Stories)](https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories) | 23.480 SBD |\n| [@kingarbinv](https://steemit.com/@kingarbinv) | [Adventures in Nemaland - Part 8 (Video) + My best Pokemon catch so far.](https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far) | 23.292 SBD |\n| [@soulsistashakti](https://steemit.com/@soulsistashakti) | [How to Detect and Deflect Gaslighting from a Narcissist](https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist) | 22.018 SBD |\n| [@puffin](https://steemit.com/@puffin) | [Tragical Impoverishment - Society's Dirt (Original Poem)](https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem) | 22.621 SBD |\n| [@cehuneke](https://steemit.com/@cehuneke) | [The Sugar Scandal: Corrupted Science in the Debate of Fat vs. Sugar and Coronary Heart Disease](https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease) | 22.821 SBD |\n| [@tanata](https://steemit.com/@tanata) | [Little Black Dress involving](https://steemit.com/fashion/@tanata/little-black-dress-involving) | 22.237 SBD |\n| [@steemwriter](https://steemit.com/@steemwriter) | [YouTube Demonetization: A Step Towards Censorship?](https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship) | 22.297 SBD |\n| [@michelle.gent](https://steemit.com/@michelle.gent) | [Dusty - one of my characters](https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters) | 22.659 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [A Gift-Original Rose Drawing](https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing) | 22.249 SBD |\n| [@runridefly](https://steemit.com/@runridefly) | [Minnow's Life - @runridefly original cartoon \"minnowsunite Whale sighting\" minnows and a whale](https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale) | 22.836 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [[SHORT STORY] The Cult of Personality - Part One](https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one) | 22.552 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Look at the Flower Chicory: a Useful and Beautiful Flower ... my Favorite Photos of Chicory](https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory) | 22.795 SBD |\n| [@victoriart](https://steemit.com/@victoriart) | [Hazelnut Mood](https://steemit.com/art/@victoriart/hazelnut-mood) | 22.443 SBD |\n| [@heroic15397](https://steemit.com/@heroic15397) | [Amazing Birds in the Greater Montreal area](https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area) | 22.987 SBD |\n| [@smartercars](https://steemit.com/@smartercars) | [Reviewing the Volkswagen Touareg ~ Smarter Car Reviews](https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews) | 22.975 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [Blues Jam & Techniques [9-14-2016]](https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016) | 22.415 SBD |\n| [@matthew.raymer](https://steemit.com/@matthew.raymer) | [Life Stories](https://steemit.com/psychology/@matthew.raymer/life-stories) | 22.733 SBD |\n| [@positivesteem](https://steemit.com/@positivesteem) | [Common Sense Versus Degrees: The Man Who Has One Hundred Degrees](https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees) | 22.941 SBD |\n| [@d3nv3r](https://steemit.com/@d3nv3r) | [Cloud Mining - The Struggle is Real](https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real) | 22.266 SBD |\n| [@adubi](https://steemit.com/@adubi) | [Healing Food Plan: The Ultimate Cheat Sheet](https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet) | 22.947 SBD |\n| [@alitas](https://steemit.com/@alitas) | [(spanish) Cazuela de Calamar con Papas Rejilla](https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla) | 22.240 SBD |\n| [@mazi](https://steemit.com/@mazi) | [I Can See Clearly Now .... Platanus occidentalis](https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis) | 22.784 SBD |\n| [@mikemacintire](https://steemit.com/@mikemacintire) | [A Red Like No Other - My work](https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work) | 22.289 SBD |\n| [@altzero](https://steemit.com/@altzero) | [Im\u00e1genes de una vida (2)](https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2) | 21.555 SBD |\n| [@birdie](https://steemit.com/@birdie) | [Clouds That Demand Attention (Original Photos)](https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos) | 21.397 SBD |\n| [@michaelstobiersk](https://steemit.com/@michaelstobiersk) | [An Original Painting by Michael Stobierski](https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski) | 21.367 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Meditation Experience Can Be Really Scary](https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary) | 21.583 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [The Price Is Right Theme Music Breakdown](https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown) | 21.937 SBD |\n| [@karisa](https://steemit.com/@karisa) | [Very tasty and delicious curd cookies specially for Steemit . Part 4](https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4) | 21.940 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Borovoye (Burabai) - Pearl of Kazakhstan: The Incredible Journey (Story of my Husband)](https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband) | 20.616 SBD |\n| [@burnin](https://steemit.com/@burnin) | [Exploring the Off-Limits Areas of the Largest Cruise Ship In the World - Part 2](https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2) | 20.298 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Eyes Of Wisdom](https://steemit.com/art/@reddust/eyes-of-wisdom) | 20.051 SBD |\n| [@levycore](https://steemit.com/@levycore) | [Hot Chocolate Art - Trying Draw Faces](https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces) | 20.233 SBD |\n| [@awesomenyl](https://steemit.com/@awesomenyl) | [Sunflower Paper Tutorial](https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial) | 20.040 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [The epic and awesome guide to writing articles like a true artist that people want to read and share! [Edited for Steemit today]](https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today) | 20.192 SBD |\n| [@naquoya](https://steemit.com/@naquoya) | [[ORIGINAL FICTION] Bad Trip part two: The Gamemaster](https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster) | 20.041 SBD |\n| [@moon32walker](https://steemit.com/@moon32walker) | [Top 10 Game Development Studios](https://steemit.com/gaming/@moon32walker/top-10-game-development-studios) | 20.468 SBD |\n| [@gustavopasquini](https://steemit.com/@gustavopasquini) | [Polenta with Ragu Meat Dry](https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry) | 20.436 SBD |\n| [@benadapt](https://steemit.com/@benadapt) | [Capturing the Milky Way \u2014 A Photographer\u2019s Biggest Challenge](https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge) | 20.477 SBD |\n| [@altzero](https://steemit.com/@altzero) | [\u00bfQue es la nueva economia?](https://steemit.com/spanish/@altzero/que-es-la-nueva-economia) | 20.037 SBD |\n| [@por500bolos](https://steemit.com/@por500bolos) | [Uncovering The Most Transcendental & Biggest Secret In The Human Life. \u00bfSkeptical? I will challenge you to prove otherwise!!](https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise) | 20.894 SBD |\n| [@zonpower](https://steemit.com/@zonpower) | [This is a place (An original Poem)](https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem) | 20.869 SBD |\n| [@katharsisdrill](https://steemit.com/@katharsisdrill) | [The rune-stones of Jelling, and a new realisation.](https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation) | 19.761 SBD |\n| [@glezeddy](https://steemit.com/@glezeddy) | [MEZCLA DE TEQUILA PARA DAR EL \"GRITO\" (M\u00c9XICO)](https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico) | 15.682 SBD |\n| [@onetree](https://steemit.com/@onetree) | [South African Slang - Enter Those Who Dare!](https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare) | 33.017 SBD |\n| [@verbal-d](https://steemit.com/@verbal-d) | [Melodious Music Memoirs # 2: Impact](https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact) | 30.372 SBD |\n| [@wanderingagorist](https://steemit.com/@wanderingagorist) | [Foraging Wild Rose Hips for Tea and Eating](https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating) | 29.228 SBD |\n| [@knablinz](https://steemit.com/@knablinz) | [Hand-Made Collage Art By Knablinz ( Donuts & Coffee )](https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee) | 35.939 SBD |\n\n---------------------------\n
Note: All author rewards from this post will be used to fund Project Curie.
Join us in #curie on Steemit.chat and follow us @curie!
", + "category": "curie", + "children": 10, + "created": "2016-09-15T17:53:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg" + ], + "links": [ + "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", + "https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement", + "https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", + "https://steemit.com/@faddat", + "https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed", + "https://steemit.com/@rampant", + "https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool", + "https://steemit.com/@shenanigator", + "https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do", + "https://steemit.com/@penguinpablo", + "https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf", + "https://steemit.com/@nathanjtaylor", + "https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry", + "https://steemit.com/@lily-da-vine", + "https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco", + "https://steemit.com/@budgetbucketlist", + "https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes", + "https://steemit.com/@benjiberigan", + "https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations", + "https://steemit.com/@ausbitbank", + "https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos", + "https://steemit.com/@emily-cook", + "https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work", + "https://steemit.com/@team-leibniz", + "https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00", + "https://steemit.com/@ionescur", + "https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land", + "https://steemit.com/@kimal73", + "https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work", + "https://steemit.com/@juliac", + "https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think", + "https://steemit.com/@luzcypher", + "https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals", + "https://steemit.com/@akareyon", + "https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing", + "https://steemit.com/@curving", + "https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation", + "https://steemit.com/@aleksandraz", + "https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology", + "https://steemit.com/@skapaneas", + "https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more", + "https://steemit.com/@gargon", + "https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", + "https://steemit.com/@iamwne", + "https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass", + "https://steemit.com/@stormblaze", + "https://steemit.com/technology/@stormblaze/where-do-deleted-files-go", + "https://steemit.com/@yanarnst", + "https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts", + "https://steemit.com/@senseye", + "https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor", + "https://steemit.com/@crasch", + "https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future", + "https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners", + "https://steemit.com/@cristi", + "https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months", + "https://steemit.com/@stranger27", + "https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature", + "https://steemit.com/@nekromarinist", + "https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today", + "https://steemit.com/@richman", + "https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story", + "https://steemit.com/@maceytomlin", + "https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony", + "https://steemit.com/@nili", + "https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol", + "https://steemit.com/@optimistic-crone", + "https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe", + "https://steemit.com/@anarchyhasnogods", + "https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one", + "https://steemit.com/@yostopia", + "https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick", + "https://steemit.com/@reneenouveau", + "https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015", + "https://steemit.com/@king3071", + "https://steemit.com/travel/@king3071/my-dream-destination-switzerland", + "https://steemit.com/@kolin.evans", + "https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines", + "https://steemit.com/@fenglosophy", + "https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think", + "https://steemit.com/@mandibil", + "https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil", + "https://steemit.com/@therajmahal", + "https://steemit.com/science/@therajmahal/making-the-impossible-possible", + "https://steemit.com/@carlitashaw", + "https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions", + "https://steemit.com/@renzoarg", + "https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics", + "https://steemit.com/@rachelsvparry", + "https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time", + "https://steemit.com/@royalmacro", + "https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art", + "https://steemit.com/@stephmckenzie", + "https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone", + "https://steemit.com/@alwayzgame", + "https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life", + "https://steemit.com/@nonlinearone", + "https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing", + "https://steemit.com/@kafkanarchy84", + "https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii", + "https://steemit.com/@feline1991", + "https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2", + "https://steemit.com/@geke", + "https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge", + "https://steemit.com/@lscottphotos", + "https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos", + "https://steemit.com/@pinkisland", + "https://steemit.com/writing/@pinkisland/my-philosophy-of-education", + "https://steemit.com/@jgcastrillo19", + "https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco", + "https://steemit.com/@luisucv34", + "https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition", + "https://steemit.com/@beowulfoflegend", + "https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty", + "https://steemit.com/@mariandavp", + "https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp", + "https://steemit.com/@nasimbabu", + "https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases", + "https://steemit.com/@royaltiffany", + "https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update", + "https://steemit.com/@travelista", + "https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo", + "https://steemit.com/@jpiper20", + "https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4", + "https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism", + "https://steemit.com/@krystle", + "https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin", + "https://steemit.com/@cryptoiskey", + "https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids", + "https://steemit.com/@getonthetrain", + "https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods", + "https://steemit.com/@ansharphoto", + "https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome", + "https://steemit.com/@aboundlessworld", + "https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast", + "https://steemit.com/@thornybastard", + "https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest", + "https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5", + "https://steemit.com/@dumar022", + "https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this", + "https://steemit.com/@lapilipinas", + "https://steemit.com/science/@lapilipinas/light-from-distant-stars", + "https://steemit.com/@williambanks", + "https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace", + "https://steemit.com/@driv3n", + "https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2", + "https://steemit.com/@timbot606", + "https://steemit.com/life/@timbot606/growing-up-in-appalachia", + "https://steemit.com/@themagus", + "https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2", + "https://steemit.com/@echoesinthemind", + "https://steemit.com/life/@echoesinthemind/hanging-upside-down", + "https://steemit.com/@ysa", + "https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado", + "https://steemit.com/@aksinya", + "https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video", + "https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro", + "https://steemit.com/@successfully00", + "https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1", + "https://steemit.com/@linzo", + "https://steemit.com/poem/@linzo/a-life-fantasy-original-poem", + "https://steemit.com/@hilarski", + "https://steemit.com/panama/@hilarski/panama-critters", + "https://steemit.com/@sulev", + "https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2", + "https://steemit.com/@steemswede", + "https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale", + "https://steemit.com/@marius19", + "https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami", + "https://steemit.com/@poeticsnake", + "https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings", + "https://steemit.com/@kiddarko", + "https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video", + "https://steemit.com/@shieha", + "https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2", + "https://steemit.com/@ayim", + "https://steemit.com/life/@ayim/fixing-posture-part-4-neck", + "https://steemit.com/@hitmeasap", + "https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice", + "https://steemit.com/@peskov", + "https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author", + "https://steemit.com/@aldentan", + "https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts", + "https://steemit.com/@beginningtoend", + "https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy", + "https://steemit.com/@kaykunoichi", + "https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself", + "https://steemit.com/@booky", + "https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates", + "https://steemit.com/@doubledex", + "https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong", + "https://steemit.com/@ekaterina4ka", + "https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2", + "https://steemit.com/@scaredycatguide", + "https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica", + "https://steemit.com/@amy-goodrich", + "https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie", + "https://steemit.com/@scott.stevens", + "https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering", + "https://steemit.com/@witchcraftblog", + "https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa", + "https://steemit.com/@ibringawareness", + "https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5", + "https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73", + "https://steemit.com/@leylar", + "https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work", + "https://steemit.com/@ocrdu", + "https://steemit.com/photography/@ocrdu/the-pods-that-go-pop", + "https://steemit.com/@rusla", + "https://steemit.com/travel/@rusla/japan-part8", + "https://steemit.com/@edgarsart", + "https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing", + "https://steemit.com/@borishaifa", + "https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat", + "https://steemit.com/@eveningstar92", + "https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art", + "https://steemit.com/@elewarne", + "https://steemit.com/mixedmedia/@elewarne/mixed-media", + "https://steemit.com/@shredlord", + "https://steemit.com/art/@shredlord/sunrise", + "https://steemit.com/@sherlockcupid", + "https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one", + "https://steemit.com/@annesaya", + "https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers", + "https://steemit.com/@fitmama", + "https://steemit.com/life/@fitmama/why-do-i-bother", + "https://steemit.com/@ezzy", + "https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories", + "https://steemit.com/@kingarbinv", + "https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far", + "https://steemit.com/@soulsistashakti", + "https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist", + "https://steemit.com/@puffin", + "https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem", + "https://steemit.com/@cehuneke", + "https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease", + "https://steemit.com/@tanata", + "https://steemit.com/fashion/@tanata/little-black-dress-involving", + "https://steemit.com/@steemwriter", + "https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship", + "https://steemit.com/@michelle.gent", + "https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters", + "https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing", + "https://steemit.com/@runridefly", + "https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale", + "https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one", + "https://steemit.com/@lyubovbar", + "https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory", + "https://steemit.com/@victoriart", + "https://steemit.com/art/@victoriart/hazelnut-mood", + "https://steemit.com/@heroic15397", + "https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area", + "https://steemit.com/@smartercars", + "https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews", + "https://steemit.com/@rubenalexander", + "https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016", + "https://steemit.com/@matthew.raymer", + "https://steemit.com/psychology/@matthew.raymer/life-stories", + "https://steemit.com/@positivesteem", + "https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees", + "https://steemit.com/@d3nv3r", + "https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real", + "https://steemit.com/@adubi", + "https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet", + "https://steemit.com/@alitas", + "https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla", + "https://steemit.com/@mazi", + "https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis", + "https://steemit.com/@mikemacintire", + "https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work", + "https://steemit.com/@altzero", + "https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2", + "https://steemit.com/@birdie", + "https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos", + "https://steemit.com/@michaelstobiersk", + "https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski", + "https://steemit.com/@reddust", + "https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary", + "https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown", + "https://steemit.com/@karisa", + "https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4", + "https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband", + "https://steemit.com/@burnin", + "https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2", + "https://steemit.com/art/@reddust/eyes-of-wisdom", + "https://steemit.com/@levycore", + "https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces", + "https://steemit.com/@awesomenyl", + "https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial", + "https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today", + "https://steemit.com/@naquoya", + "https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster", + "https://steemit.com/@moon32walker", + "https://steemit.com/gaming/@moon32walker/top-10-game-development-studios", + "https://steemit.com/@gustavopasquini", + "https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry", + "https://steemit.com/@benadapt", + "https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge", + "https://steemit.com/spanish/@altzero/que-es-la-nueva-economia", + "https://steemit.com/@por500bolos", + "https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise", + "https://steemit.com/@zonpower", + "https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem", + "https://steemit.com/@katharsisdrill", + "https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation", + "https://steemit.com/@glezeddy", + "https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico", + "https://steemit.com/@onetree", + "https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare", + "https://steemit.com/@verbal-d", + "https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact", + "https://steemit.com/@wanderingagorist", + "https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating", + "https://steemit.com/@knablinz", + "https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee" + ], + "tags": [ + "curie", + "minnows", + "hidden-gems", + "steemit", + "project-curie" + ], + "users": [ + "nextgencrypto", + "curie" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 61028272797290, + "payout": 218.554, + "payout_at": "2016-09-16T18:14:08", + "pending_payout_value": "218.554 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-daily-curie-14th-sept-15th-sept-2016", + "post_id": 960067, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 182 + }, + "title": "The Daily Curie (14th Sept - 15th Sept 2016)", + "updated": "2016-09-15T17:53:48", + "url": "/curie/@curie/the-daily-curie-14th-sept-15th-sept-2016" + }, + { + "active_votes": [ + { + "rshares": "231809639013", + "voter": "anonymous" + }, + { + "rshares": "40859141206977", + "voter": "blocktrades" + }, + { + "rshares": "1912118346075", + "voter": "badassmother" + }, + { + "rshares": "7113882084470", + "voter": "xeldal" + }, + { + "rshares": "5763993012820", + "voter": "enki" + }, + { + "rshares": "1304415071462", + "voter": "rossco99" + }, + { + "rshares": "1577462576089", + "voter": "joseph" + }, + { + "rshares": "651993277150", + "voter": "masteryoda" + }, + { + "rshares": "446958795092", + "voter": "boatymcboatface" + }, + { + "rshares": "9168101098", + "voter": "idol" + }, + { + "rshares": "23383993964", + "voter": "wpalczynski" + }, + { + "rshares": "5044693986", + "voter": "sakr" + }, + { + "rshares": "1578030666", + "voter": "jocelyn" + }, + { + "rshares": "14818192446", + "voter": "gregory-f" + }, + { + "rshares": "74914583876", + "voter": "eeks" + }, + { + "rshares": "1007941175", + "voter": "fkn" + }, + { + "rshares": "8867224532", + "voter": "james-show" + }, + { + "rshares": "1324875721", + "voter": "elishagh1" + }, + { + "rshares": "7802860274", + "voter": "richman" + }, + { + "rshares": "24193131603", + "voter": "acidyo" + }, + { + "rshares": "313691550", + "voter": "coar" + }, + { + "rshares": "1061234978", + "voter": "murh" + }, + { + "rshares": "2057413439", + "voter": "error" + }, + { + "rshares": "59950022330", + "voter": "theshell" + }, + { + "rshares": "400880323222", + "voter": "taoteh1221" + }, + { + "rshares": "410517349", + "voter": "applecrisp" + }, + { + "rshares": "280737930617", + "voter": "trogdor" + }, + { + "rshares": "5287820211", + "voter": "tee-em" + }, + { + "rshares": "121383360964", + "voter": "geoffrey" + }, + { + "rshares": "10684548905", + "voter": "kimziv" + }, + { + "rshares": "30279968088", + "voter": "acassity" + }, + { + "rshares": "45145254362", + "voter": "venuspcs" + }, + { + "rshares": "7264907621", + "voter": "getssidetracked" + }, + { + "rshares": "1414199127", + "voter": "trees" + }, + { + "rshares": "197179742", + "voter": "strawhat" + }, + { + "rshares": "1159208963", + "voter": "steemswede" + }, + { + "rshares": "691425107", + "voter": "cryptochannel" + }, + { + "rshares": "894044199", + "voter": "endgame" + }, + { + "rshares": "4920266872", + "voter": "furion" + }, + { + "rshares": "2834923420", + "voter": "steem1653" + }, + { + "rshares": "25221166135", + "voter": "steemit-life" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "80777327", + "voter": "snowden" + }, + { + "rshares": "14167503457", + "voter": "aaseb" + }, + { + "rshares": "4209522316", + "voter": "karen13" + }, + { + "rshares": "243749878708", + "voter": "nabilov" + }, + { + "rshares": "677892916", + "voter": "luisucv34" + }, + { + "rshares": "34761252099", + "voter": "creemej" + }, + { + "rshares": "233065746", + "voter": "poseidon" + }, + { + "rshares": "82781233416", + "voter": "thylbom" + }, + { + "rshares": "32543319555", + "voter": "deanliu" + }, + { + "rshares": "5428442637", + "voter": "rainchen" + }, + { + "rshares": "204617448258", + "voter": "jl777" + }, + { + "rshares": "103514864", + "voter": "pokemon" + }, + { + "rshares": "817413671", + "voter": "positive" + }, + { + "rshares": "6361356981", + "voter": "chloetaylor" + }, + { + "rshares": "17267278949", + "voter": "proto" + }, + { + "rshares": "1805641835", + "voter": "sisterholics" + }, + { + "rshares": "61286903", + "voter": "reported" + }, + { + "rshares": "8734133724", + "voter": "taker" + }, + { + "rshares": "57607550", + "voter": "krushing" + }, + { + "rshares": "63852353198", + "voter": "laonie" + }, + { + "rshares": "24561889230", + "voter": "laoyao" + }, + { + "rshares": "1332427399", + "voter": "myfirst" + }, + { + "rshares": "12961212091", + "voter": "somebody" + }, + { + "rshares": "484610059", + "voter": "flysaga" + }, + { + "rshares": "2084691327", + "voter": "gmurph" + }, + { + "rshares": "513517114", + "voter": "minnowsunited" + }, + { + "rshares": "2863236010", + "voter": "midnightoil" + }, + { + "rshares": "56653113", + "voter": "whatyouganjado" + }, + { + "rshares": "3323984357", + "voter": "kurtbeil" + }, + { + "rshares": "7161280807", + "voter": "xiaohui" + }, + { + "rshares": "323406893", + "voter": "elfkitchen" + }, + { + "rshares": "5855543935", + "voter": "oflyhigh" + }, + { + "rshares": "63373184", + "voter": "makaveli" + }, + { + "rshares": "223891286", + "voter": "xiaokongcom" + }, + { + "rshares": "1780319109", + "voter": "future24" + }, + { + "rshares": "7709317035", + "voter": "thebotkiller" + }, + { + "rshares": "451324143", + "voter": "xianjun" + }, + { + "rshares": "647921440", + "voter": "herbertmueller" + }, + { + "rshares": "56109399", + "voter": "alexbones" + }, + { + "rshares": "2022625104", + "voter": "chinadaily" + }, + { + "rshares": "90172824082", + "voter": "serejandmyself" + }, + { + "rshares": "163783062", + "voter": "nang1" + }, + { + "rshares": "2982676167", + "voter": "netaterra" + }, + { + "rshares": "52319145", + "voter": "dobbydaba" + }, + { + "rshares": "22559404087", + "voter": "andrewawerdna" + }, + { + "rshares": "77466140", + "voter": "ozertayiz" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "55922029", + "voter": "salebored" + }, + { + "rshares": "2196862373", + "voter": "runridefly" + }, + { + "rshares": "115288806334", + "voter": "shenanigator" + }, + { + "rshares": "1709331623", + "voter": "funkywanderer" + }, + { + "rshares": "4594182561", + "voter": "richardcrill" + }, + { + "rshares": "79155262951", + "voter": "markrmorrisjr" + }, + { + "rshares": "55917888", + "voter": "bitdrone" + }, + { + "rshares": "55908853", + "voter": "sleepcult" + }, + { + "rshares": "27677639861", + "voter": "sponge-bob" + }, + { + "rshares": "12031039232", + "voter": "doitvoluntarily" + }, + { + "rshares": "67696453939", + "voter": "thecyclist" + }, + { + "rshares": "646493719", + "voter": "kev7000" + }, + { + "rshares": "55266473", + "voter": "analyzethis" + }, + { + "rshares": "27671309914", + "voter": "brains" + }, + { + "rshares": "5866415576", + "voter": "burnin" + }, + { + "rshares": "1352324852", + "voter": "bitcoinparadise" + }, + { + "rshares": "4235074146", + "voter": "funnyman" + }, + { + "rshares": "50193769", + "voter": "f1111111" + }, + { + "rshares": "339287005", + "voter": "anomaly" + }, + { + "rshares": "63405661", + "voter": "inarix03" + }, + { + "rshares": "98545946", + "voter": "ola1" + }, + { + "rshares": "4382226038", + "voter": "michelle.gent" + }, + { + "rshares": "66935282", + "voter": "mari5555na" + }, + { + "rshares": "31683945302", + "voter": "goldmatters" + }, + { + "rshares": "155180811", + "voter": "majes" + }, + { + "rshares": "71727340", + "voter": "dealzgal" + }, + { + "rshares": "68013381", + "voter": "storage" + }, + { + "rshares": "58460105", + "voter": "blackmarket" + }, + { + "rshares": "61530871", + "voter": "gifts" + }, + { + "rshares": "96643251", + "voter": "expat" + }, + { + "rshares": "129609202", + "voter": "toddemaher1" + } + ], + "author": "markrmorrisjr", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "## In this episode, Joshua Claiborne stands trial for violation of the First Law ##\n\n**\u201cWhoa, whoa, whoa!\u201d Phil screamed, \u201cWhat the hell dude?\u201d**\n\n*The Reaper crumpled to the floor, arms flailing as Joshua rode it to the ground. Finally, the hands found the catches at either side of the helmet and popped it off. A black, shaggy head of hair emerged.* \n\n***If you've missed episodes, [visit my blog](https://steemit.com/@markrmorrisjr) to catch up. Be sure to follow me for updates in your feed!***\n\n\u201cEmil?\u201d Stella said, \u201cMeet Joshua. Are you okay?\u201d\n\nEmil, the Reaper suit\u2019s operator laughed, \u201cYeah, I\u2019m fine, but that was awesome! Can you teach us that?\u201d\n\n\u201cMan! Now I have to rebuild this helmet,\u201d Phil held up a small remote. \u201cAll I had to do was push this button,\u201d he said, pressing it, as the suit powered down. \u201cWhat did you do?\u201d\n\n\u201cThe \u2018nerve\u2019 bundle that controls these things motor skills is on the very top of the skull, under a thin piece of sheet metal, puncture it, it collapses. You didn\u2019t know that?\u201d Joshua said. \n\n\u201cWell, it appears we may need you more than you need us,\u201d Stella said. \u201cSo, just say the word and we\u2019ll get you where you need to be. Meanwhile, my team will be working on your son\u2019s location.\u201d\n\nJoshua dropped the letter opener and walked to the stairs, \u201cFine, whatever you need to collect from my meeting, get it. Now, who\u2019s driving?\u201d With that, he walked up the stairs, he had no more time to waste. \n\n**The Mapleton courthouse sat on a hill in the center of the town, overlooking the area around for miles.** \n\n*Joshua insisted that the team Stella had sent stop 5 miles out and allow him to ride in on the electric trike alone, while they observed the meeting from a distance.* \n\nHe carried the tiny remote in his shirt pocket, a gift from Phil. \u201cThat\u2019s my only prototype, so don\u2019t lose it,\u201d he\u2019d said. \n\n![enter image description here](https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg)\n\nFrom the end of Main Street, looking up toward the courthouse, Joshua counted at least six reapers. He wondered how far the signal from the remote would travel. \n\nHe thought about pressing it now, disarming his enemy, then walking in, but he\u2019d still have to deal with the six drivers, if they managed to escape the suits. \n\nBesides, Stella seemed to think there was some secret they were going to give away, although Joshua couldn\u2019t imagine it. \n\n*He checked his watch, ten minutes until his scheduled time and while he knew better than to be late, he had no intention of giving the Consensus one more second than he had to.* \n\nThe trike spun it\u2019s tires on a patch of loose gravel as he started back up. He decided a quick approach was best. He charged up the hill, jumping the \u201cMayor\u2019s\u201d parking barrier and rolling up to the foot of the front stairs, he cranked the accelerator and the trike rose up on its back wheel, popping the two front wheels, over the bottom step. \n\nThe machine had more than enough power to climb the steps and Joshua skidded to a stop outside the courthouse door. He stopped and turned back toward the town, the six Reapers swarming toward him up the steps. He powered down, swung his leg up and over the bike and opened the door. \n\n**The Reapers followed him into the hall as he approached the court room.** \n\nThe Magistrate sat behind the judge\u2019s bench and Joshua couldn\u2019t help but smirk at the insult to the very concept of actual justice that this thing represented. \n\n\u201cJoshua Claiborne, appearing as requested,\u201d Joshua said, standing directly in front of the Magistrate. \n\n![enter image description here](https://s12.postimg.org/6h4lvyh7x/judge.jpg)\n\n> \u201cYes, Mr. Claiborne, have a seat,\u201d A woman\u2019s face, projected on the face shield of the Magistrate said.\n\n\u201cI\u2019d rather stand,\u201d he said. \n\n> \u201cSuit yourself, may we have the room, please?\u201d she said, looking toward the reapers that had entered the back doors of the courtroom.\n\nThey left quietly. \n\n> \u201cMr. Claiborne, you\u2019re charged with violation of the first law, in so\n> much as you have encouraged and joined in the activity of settling\n> outside of Consensus approved areas, acted outside of the legal\n> jurisdiction of the council and on more than one occasion, acted\n> against the best interest of Consensus, including attacking duly\n> authorized Magistrates in the course of their legally binding duties,\n> how do you plead?\u201d\n\n**The woman looked at Joshua, peering over a pair of short, square spectacles, like some sort of outdated stereotype.** \n\n\u201cNot guilty, by reason of illegitimacy of the currently established government and its ensigns. I am not, nor do I choose to become, subject to your law. I stand judged as innocent by natural law, insomuch as I have not caused harm to another human in aggression, damaged or stolen property, nor unnecessarily restricted the liberty of any other person. I recognize no other responsibility to my fellow man,\u201d Joshua said calmly. \n\n> \u201cBe that as it may, Mr. Claiborne, we are not here under the auspices of \u201cnatural law\u201d but rather, under the Council mandated authority of the Consensus and its Magisterial Ministry, of which I am a part and I assure you, you are subject to,\u201d\n\nThe woman intoned, her expression one of almost sheer boredom.\n\n> \u201cCourt finds the defendant guilty and remands the subject for immediate judicial murder.\u201d\n\nThe magistrate raised its arm and brought it down on the bench with a solid thud, that echoed through the court. Joshua felt his heart sink as the Reapers reentered the court and moved up to surround him. \n\n## Look for the upvote button below. If you liked the post, upvote and share! If you're not on Steemit yet, why not? You get free money for signing up! ##", + "category": "story", + "children": 2, + "created": "2016-09-15T16:54:06", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg", + "https://s12.postimg.org/6h4lvyh7x/judge.jpg" + ], + "links": [ + "https://steemit.com/@markrmorrisjr" + ], + "tags": [ + "story", + "fiction", + "anarchy", + "life", + "minnowsunited" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62355283653318, + "payout": 227.863, + "payout_at": "2016-09-16T18:15:42", + "pending_payout_value": "227.863 HBD", + "percent_steem_dollars": 10000, + "permlink": "original-fiction-anarchist-s-almanac-episode-15", + "post_id": 959506, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 120 + }, + "title": "Original Fiction: Anarchist's Almanac, Episode 15", + "updated": "2016-09-15T16:54:06", + "url": "/story/@markrmorrisjr/original-fiction-anarchist-s-almanac-episode-15" + }, + { + "active_votes": [ + { + "rshares": "504201493814", + "voter": "barrie" + }, + { + "rshares": "31621044834059", + "voter": "smooth" + }, + { + "rshares": "231803784363", + "voter": "anonymous" + }, + { + "rshares": "1992555050222", + "voter": "apple" + }, + { + "rshares": "1912040731624", + "voter": "badassmother" + }, + { + "rshares": "2053103615195", + "voter": "hr1" + }, + { + "rshares": "1304415071462", + "voter": "rossco99" + }, + { + "rshares": "2352777844031", + "voter": "wang" + }, + { + "rshares": "22390337604", + "voter": "jaewoocho" + }, + { + "rshares": "1576668025571", + "voter": "joseph" + }, + { + "rshares": "466113536214", + "voter": "recursive2" + }, + { + "rshares": "452820496964", + "voter": "recursive3" + }, + { + "rshares": "651951614915", + "voter": "masteryoda" + }, + { + "rshares": "3120381242465", + "voter": "recursive" + }, + { + "rshares": "91328598326", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6959198181", + "voter": "bingo-0" + }, + { + "rshares": "5939784887153", + "voter": "smooth.witness" + }, + { + "rshares": "446272257734", + "voter": "boatymcboatface" + }, + { + "rshares": "9167804100", + "voter": "idol" + }, + { + "rshares": "22448634206", + "voter": "wpalczynski" + }, + { + "rshares": "816380174873", + "voter": "steemrollin" + }, + { + "rshares": "5147541712", + "voter": "sakr" + }, + { + "rshares": "284355351943", + "voter": "chitty" + }, + { + "rshares": "34575031962", + "voter": "unosuke" + }, + { + "rshares": "481762857054", + "voter": "noaommerrr" + }, + { + "rshares": "1578007819", + "voter": "jocelyn" + }, + { + "rshares": "85270098112", + "voter": "acidsun" + }, + { + "rshares": "14692173218", + "voter": "gregory-f" + }, + { + "rshares": "9604795718", + "voter": "gregory60" + }, + { + "rshares": "18382400031", + "voter": "jademont" + }, + { + "rshares": "1294872282183", + "voter": "gavvet" + }, + { + "rshares": "89897365397", + "voter": "eeks" + }, + { + "rshares": "1511911763", + "voter": "fkn" + }, + { + "rshares": "122160437", + "voter": "paco-steem" + }, + { + "rshares": "1471653540", + "voter": "spaninv" + }, + { + "rshares": "1987313581", + "voter": "elishagh1" + }, + { + "rshares": "8669811688", + "voter": "richman" + }, + { + "rshares": "584222819564", + "voter": "nanzo-scoop" + }, + { + "rshares": "28116199940", + "voter": "acidyo" + }, + { + "rshares": "9857648383", + "voter": "kefkius" + }, + { + "rshares": "177403714671", + "voter": "mummyimperfect" + }, + { + "rshares": "313689446", + "voter": "coar" + }, + { + "rshares": "106631248984", + "voter": "asch" + }, + { + "rshares": "1061230469", + "voter": "murh" + }, + { + "rshares": "936957207", + "voter": "slickwilly" + }, + { + "rshares": "3187804154", + "voter": "cryptofunk" + }, + { + "rshares": "579494558", + "voter": "kodi" + }, + { + "rshares": "2057367746", + "voter": "error" + }, + { + "rshares": "11847990151", + "voter": "andu" + }, + { + "rshares": "962069747008", + "voter": "cyber" + }, + { + "rshares": "61712174604", + "voter": "theshell" + }, + { + "rshares": "49577333486", + "voter": "ak2020" + }, + { + "rshares": "24894446745", + "voter": "paul-labossiere" + }, + { + "rshares": "400880323222", + "voter": "taoteh1221" + }, + { + "rshares": "95314034", + "voter": "stiletto" + }, + { + "rshares": "56688940478", + "voter": "juanmiguelsalas" + }, + { + "rshares": "33781859925", + "voter": "ratel" + }, + { + "rshares": "15787327103", + "voter": "zakharya" + }, + { + "rshares": "280717515045", + "voter": "trogdor" + }, + { + "rshares": "5287383826", + "voter": "tee-em" + }, + { + "rshares": "121383360964", + "voter": "geoffrey" + }, + { + "rshares": "42737137488", + "voter": "kimziv" + }, + { + "rshares": "74286777275", + "voter": "emily-cook" + }, + { + "rshares": "2187597574", + "voter": "superfreek" + }, + { + "rshares": "49806164408", + "voter": "isteemit" + }, + { + "rshares": "4091429870", + "voter": "spikykevin" + }, + { + "rshares": "52090524796", + "voter": "venuspcs" + }, + { + "rshares": "3989473346", + "voter": "michaellamden68" + }, + { + "rshares": "19974764064", + "voter": "thebatchman" + }, + { + "rshares": "158997516614", + "voter": "asmolokalo" + }, + { + "rshares": "8603166550", + "voter": "getssidetracked" + }, + { + "rshares": "5165418905", + "voter": "riscadox" + }, + { + "rshares": "17538291453", + "voter": "konstantin" + }, + { + "rshares": "261755903", + "voter": "mstang83" + }, + { + "rshares": "39099397056", + "voter": "hitmeasap" + }, + { + "rshares": "252977703", + "voter": "nexus1" + }, + { + "rshares": "1515818756", + "voter": "burmik123" + }, + { + "rshares": "280713275", + "voter": "ksenia" + }, + { + "rshares": "1649898982", + "voter": "trees" + }, + { + "rshares": "231686197", + "voter": "strawhat" + }, + { + "rshares": "219133173153", + "voter": "domino" + }, + { + "rshares": "251687687", + "voter": "playtime" + }, + { + "rshares": "404548352", + "voter": "whitepeach" + }, + { + "rshares": "7380400309", + "voter": "furion" + }, + { + "rshares": "6462652657", + "voter": "owdy" + }, + { + "rshares": "1256448483", + "voter": "dicov" + }, + { + "rshares": "2936170685", + "voter": "steem1653" + }, + { + "rshares": "136318424", + "voter": "cynetyc" + }, + { + "rshares": "18770538147", + "voter": "sebastien" + }, + { + "rshares": "13787216422", + "voter": "sitaru" + }, + { + "rshares": "80777327", + "voter": "snowden" + }, + { + "rshares": "14167053756", + "voter": "aaseb" + }, + { + "rshares": "4209522316", + "voter": "karen13" + }, + { + "rshares": "10646413479", + "voter": "deviedev" + }, + { + "rshares": "266599021635", + "voter": "nabilov" + }, + { + "rshares": "2286950597", + "voter": "dmacshady" + }, + { + "rshares": "726313838", + "voter": "luisucv34" + }, + { + "rshares": "8811980236", + "voter": "herverisson" + }, + { + "rshares": "53424827264", + "voter": "streetstyle" + }, + { + "rshares": "46856213520", + "voter": "milestone" + }, + { + "rshares": "3801182358", + "voter": "maximkichev" + }, + { + "rshares": "15070465231", + "voter": "nippel66" + }, + { + "rshares": "167302364294", + "voter": "blueorgy" + }, + { + "rshares": "12849414672", + "voter": "benjiberigan" + }, + { + "rshares": "932248554", + "voter": "poseidon" + }, + { + "rshares": "19717588129", + "voter": "mustafaomar" + }, + { + "rshares": "3506039536", + "voter": "simon.braki.love" + }, + { + "rshares": "82781233416", + "voter": "thylbom" + }, + { + "rshares": "32542976852", + "voter": "deanliu" + }, + { + "rshares": "5609548617", + "voter": "sharker" + }, + { + "rshares": "541016983", + "voter": "qonq99" + }, + { + "rshares": "204615752038", + "voter": "jl777" + }, + { + "rshares": "119983138", + "voter": "pokemon" + }, + { + "rshares": "1226120506", + "voter": "positive" + }, + { + "rshares": "6939662161", + "voter": "chloetaylor" + }, + { + "rshares": "43638419601", + "voter": "claudiop63" + }, + { + "rshares": "17267164725", + "voter": "proto" + }, + { + "rshares": "7222403812", + "voter": "sisterholics" + }, + { + "rshares": "1444237397", + "voter": "alex.chien" + }, + { + "rshares": "8781903824", + "voter": "royalmacro" + }, + { + "rshares": "1838367968", + "voter": "remlaps" + }, + { + "rshares": "149624601", + "voter": "steemster1" + }, + { + "rshares": "3353872300", + "voter": "glitterpig" + }, + { + "rshares": "8734116589", + "voter": "taker" + }, + { + "rshares": "59219358", + "voter": "sharon" + }, + { + "rshares": "4999720649", + "voter": "dumar022" + }, + { + "rshares": "2077201153", + "voter": "merej99" + }, + { + "rshares": "60342922", + "voter": "lillianjones" + }, + { + "rshares": "255401498427", + "voter": "laonie" + }, + { + "rshares": "24561432292", + "voter": "laoyao" + }, + { + "rshares": "7994421908", + "voter": "myfirst" + }, + { + "rshares": "51843535316", + "voter": "somebody" + }, + { + "rshares": "1938401760", + "voter": "flysaga" + }, + { + "rshares": "2501627790", + "voter": "gmurph" + }, + { + "rshares": "1691577797", + "voter": "chris.roy" + }, + { + "rshares": "1693568633", + "voter": "stormblaze" + }, + { + "rshares": "11452681912", + "voter": "midnightoil" + }, + { + "rshares": "2327843962", + "voter": "kalimor" + }, + { + "rshares": "84246848", + "voter": "coderg" + }, + { + "rshares": "4190252928", + "voter": "ullikume" + }, + { + "rshares": "3323749960", + "voter": "kurtbeil" + }, + { + "rshares": "28644139641", + "voter": "xiaohui" + }, + { + "rshares": "1349109906", + "voter": "dolov" + }, + { + "rshares": "1293603524", + "voter": "elfkitchen" + }, + { + "rshares": "103394476995", + "voter": "joele" + }, + { + "rshares": "5855492830", + "voter": "oflyhigh" + }, + { + "rshares": "895550716", + "voter": "xiaokongcom" + }, + { + "rshares": "2118152083", + "voter": "natalymaty" + }, + { + "rshares": "60819615", + "voter": "msjennifer" + }, + { + "rshares": "55925537", + "voter": "ciao" + }, + { + "rshares": "1156101266", + "voter": "darthnava" + }, + { + "rshares": "3670417888", + "voter": "villainblack" + }, + { + "rshares": "8410164039", + "voter": "thebotkiller" + }, + { + "rshares": "3033050865", + "voter": "jrcornel" + }, + { + "rshares": "54217761", + "voter": "steemo" + }, + { + "rshares": "1805262907", + "voter": "xianjun" + }, + { + "rshares": "26819912795", + "voter": "hanshotfirst" + }, + { + "rshares": "54077897", + "voter": "steema" + }, + { + "rshares": "71282219", + "voter": "confucius" + }, + { + "rshares": "93801736989", + "voter": "miacats" + }, + { + "rshares": "2249572206", + "voter": "njall" + }, + { + "rshares": "54909929", + "voter": "jarvis" + }, + { + "rshares": "118219525", + "voter": "microluck" + }, + { + "rshares": "54313084", + "voter": "fortuner" + }, + { + "rshares": "2077267800", + "voter": "chinadaily" + }, + { + "rshares": "4879530405", + "voter": "almerri" + }, + { + "rshares": "9253395112", + "voter": "johnnyyash" + }, + { + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "rshares": "4751552849", + "voter": "themanualbot" + }, + { + "rshares": "136485885", + "voter": "nang1" + }, + { + "rshares": "13839238841", + "voter": "telos" + }, + { + "rshares": "51877132", + "voter": "johnbyrd" + }, + { + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "rshares": "51859074", + "voter": "thermor" + }, + { + "rshares": "51870077", + "voter": "ficholl" + }, + { + "rshares": "53030738", + "voter": "widell" + }, + { + "rshares": "51481279", + "voter": "revelbrooks" + }, + { + "rshares": "406983674", + "voter": "mig641" + }, + { + "rshares": "169608367", + "voter": "kamil5" + }, + { + "rshares": "59295031", + "voter": "dobbydaba" + }, + { + "rshares": "24294717617", + "voter": "andrewawerdna" + }, + { + "rshares": "55367485477", + "voter": "mandibil" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "51562255", + "voter": "curpose" + }, + { + "rshares": "76072115", + "voter": "steembriefing" + }, + { + "rshares": "55750195", + "voter": "riv" + }, + { + "rshares": "2196862373", + "voter": "runridefly" + }, + { + "rshares": "1783607101", + "voter": "funkywanderer" + }, + { + "rshares": "2249900457", + "voter": "jeremyfromwi" + }, + { + "rshares": "2056057288", + "voter": "eight-rad" + }, + { + "rshares": "51712804", + "voter": "troich" + }, + { + "rshares": "9458733324", + "voter": "aggroed" + }, + { + "rshares": "51718188", + "voter": "crion" + }, + { + "rshares": "182060433", + "voter": "greatness" + }, + { + "rshares": "51388276", + "voter": "hitherise" + }, + { + "rshares": "51379706", + "voter": "wiss" + }, + { + "rshares": "54247555535", + "voter": "sponge-bob" + }, + { + "rshares": "52143228", + "voter": "stroully" + }, + { + "rshares": "88628906", + "voter": "ruscion" + }, + { + "rshares": "1086106040", + "voter": "tatianka" + }, + { + "rshares": "54175638", + "voter": "apparat" + }, + { + "rshares": "51814474", + "voter": "thadm" + }, + { + "rshares": "51812703", + "voter": "prof" + }, + { + "rshares": "157957231026", + "voter": "thecyclist" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "50370757", + "voter": "yorsens" + }, + { + "rshares": "201688406600", + "voter": "asksisk" + }, + { + "rshares": "50065875", + "voter": "bane" + }, + { + "rshares": "50059754", + "voter": "vive" + }, + { + "rshares": "51142585", + "voter": "coad" + }, + { + "rshares": "51922012", + "voter": "sofa" + }, + { + "rshares": "323483227", + "voter": "panther" + }, + { + "rshares": "60610693", + "voter": "plantbasedjunkie" + }, + { + "rshares": "55341943517", + "voter": "brains" + }, + { + "rshares": "517900727", + "voter": "mohamedmashaal" + }, + { + "rshares": "20617809185", + "voter": "skypilot" + }, + { + "rshares": "50933404", + "voter": "ailo" + }, + { + "rshares": "5753290068", + "voter": "chick1" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "51568971", + "voter": "typingagent" + }, + { + "rshares": "51581492", + "voter": "cwb" + }, + { + "rshares": "339274981", + "voter": "anomaly" + }, + { + "rshares": "147786454", + "voter": "ola1" + }, + { + "rshares": "50441122", + "voter": "eavy" + }, + { + "rshares": "50454901", + "voter": "roto" + }, + { + "rshares": "71955428", + "voter": "mari5555na" + }, + { + "rshares": "157644916", + "voter": "iggy" + }, + { + "rshares": "51232949", + "voter": "dragonice" + }, + { + "rshares": "50907857", + "voter": "oxygen" + }, + { + "rshares": "50871059", + "voter": "motion" + }, + { + "rshares": "50796122", + "voter": "factom" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "50565798", + "voter": "penthouse" + }, + { + "rshares": "50538694", + "voter": "fenix" + }, + { + "rshares": "2118281183", + "voter": "bapparabi" + }, + { + "rshares": "50487909", + "voter": "opticalillusions" + }, + { + "rshares": "50349676", + "voter": "albertheijn" + }, + { + "rshares": "90053391", + "voter": "remlaps1" + }, + { + "rshares": "239963421", + "voter": "darkminded153" + }, + { + "rshares": "527464783", + "voter": "grisha-danunaher" + }, + { + "rshares": "72826233", + "voter": "igtes" + }, + { + "rshares": "141679752", + "voter": "buffett" + }, + { + "rshares": "161815656", + "voter": "ranger" + }, + { + "rshares": "444435987", + "voter": "witchcraftblog" + }, + { + "rshares": "161693690", + "voter": "shadowproject" + }, + { + "rshares": "160975092", + "voter": "user45-87" + }, + { + "rshares": "157182398", + "voter": "planet" + }, + { + "rshares": "156043541", + "voter": "disneypixar" + }, + { + "rshares": "159143891", + "voter": "reef" + }, + { + "rshares": "158602900", + "voter": "steem-wallet" + }, + { + "rshares": "31683945302", + "voter": "goldmatters" + }, + { + "rshares": "68013381", + "voter": "storage" + }, + { + "rshares": "58460105", + "voter": "blackmarket" + }, + { + "rshares": "61530871", + "voter": "gifts" + }, + { + "rshares": "135637537", + "voter": "toddemaher1" + }, + { + "rshares": "153397644", + "voter": "milank" + }, + { + "rshares": "153325742", + "voter": "denise12" + } + ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Hello everyone. I did not write anything about World War II for a long time. So today I decided to tell you about the Tank Destroyers. About the machines, specialization of which was the destruction of tanks. In this article I will talk about the classic representatives of this class.\n>\u0412\u0441\u0456\u043c \u043f\u0440\u0438\u0432\u0456\u0442. \u0414\u0430\u0432\u043d\u0435\u043d\u044c\u043a\u043e \u044f \u043d\u0435 \u043f\u0438\u0441\u0430\u0432 \u043d\u0456\u0447\u043e\u0433\u043e \u043d\u0430 \u0442\u0435\u043c\u0443 \u0414\u0440\u0443\u0433\u043e\u0457 \u0421\u0432\u0456\u0442\u043e\u0432\u043e\u0457. \u0406 \u043e\u0441\u044c \u0441\u044c\u043e\u0433\u043e\u0434\u043d\u0456 \u044f \u0432\u0438\u0440\u0456\u0448\u0438\u0432 \u0440\u043e\u0437\u043f\u043e\u0432\u0456\u0441\u0442\u0438 \u0432\u0430\u043c \u043f\u0440\u043e \u041f\u0422-\u0421\u0410\u0423. \u041f\u0440\u043e \u043c\u0430\u0448\u0438\u043d\u0438, \u0441\u043f\u0435\u0446\u0456\u0430\u043b\u0456\u0437\u0430\u0446\u0456\u0454\u044e \u044f\u043a\u0438\u0445 \u0431\u0443\u043b\u043e \u0437\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0442\u0430\u043d\u043a\u0456\u0432. \u0423 \u0446\u0456\u0439 \u0447\u0430\u0441\u0442\u0438\u043d\u0456 \u044f \u0440\u043e\u0437\u043f\u043e\u0432\u0456\u043c \u043f\u0440\u043e \u043a\u043b\u0430\u0441\u0438\u0447\u043d\u0438\u0445 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043d\u0438\u043a\u0456\u0432 \u0441\u0432\u043e\u0433\u043e \u043a\u043b\u0430\u0441\u0443.\n\n# StuG III\nhttp://i.piccy.info/i9/3d367a52a1b8dc6c22f126332f335144/1473836215/88822/1063747/cqWCxy6vYP0.jpg\n\nLet's start with the most produced Tank Destroyer in the history. At the beginning of the WW II German command decided to create a mobile artillery on the basis of existing tanks, which would be able to support the infantry. The priority in new machine were the firepower, a good armor and cheapness. The firm Daimler-Benz successfully embodied these wishes into reality. There were about eight versions of StuG III, however, the main was Ausf. G. The cost of production of one StuG was quite low - 83 000 DM. Total was released 10500 machines. The basis for the creation was German tank PzKpfw III.\nInitially StuG III was equipped with a short-75mm gun, but when good armored Soviet T-34 came to the fronts, it was decided to replace short gun with a new long-barreled 75mm cannon Stuk 40 L / 48, which surely hit the Soviet tanks. StuG armor was quite good \u2013 50 mm in a front took a punch at a distance of 1 km. StuG III was very compact in a size and had good mobility. The main disadvantage was little size which allowed bad conditions for crew working. StuG III took active part in a war from the very beginning to its end. \nhttp://i.piccy.info/i9/5dc09cebc0ddfcd1fac4a8013ee385ad/1473836240/182233/1063747/5u9ghQyvkTc.jpg\n\n>\u041f\u043e\u0447\u043d\u0435\u043c\u043e \u0437 \u043d\u0430\u0439\u043c\u0430\u0441\u043e\u0432\u0456\u0448\u0457 \u041f\u0422-\u0421\u0410\u0423 \u0432 \u0456\u0441\u0442\u043e\u0440\u0456\u0457. \u041d\u0430 \u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0432\u0456\u0439\u043d\u0438 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u0438\u0440\u0456\u0448\u0438\u043b\u043e \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0443 \u0430\u0440\u0442\u0438\u043b\u0435\u0440\u0456\u044e \u043d\u0430 \u0431\u0430\u0437\u0456 \u0432\u0436\u0435 \u043d\u0430\u044f\u0432\u043d\u0438\u0445 \u0442\u0430\u043d\u043a\u0456\u0432, \u0437\u0434\u0430\u0442\u043d\u0443 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0430\u0442\u0438 \u043f\u0456\u0445\u043e\u0442\u0443. \u041f\u0440\u0456\u043e\u0440\u0438\u0442\u0435\u0442\u043d\u043e\u044e \u0431\u0443\u043b\u0430 \u0432\u043e\u0433\u043d\u0435\u0432\u0430 \u043c\u0456\u0446\u044c, \u0433\u0430\u0440\u043d\u0435 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f \u0456 \u0434\u0435\u0448\u0435\u0432\u0438\u0437\u043d\u0430. \u0424\u0456\u0440\u043c\u0430 Daimler-Benz \u0432\u0434\u0430\u043b\u043e \u0432\u0442\u0456\u043b\u0438\u043b\u0430 \u0446\u0456 \u043f\u043e\u0431\u0430\u0436\u0430\u043d\u043d\u044f \u0432 \u0440\u0435\u0430\u043b\u044c\u043d\u0456\u0441\u0442\u044c. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0431\u043b\u0438\u0437\u044c\u043a\u043e \u0432\u043e\u0441\u044c\u043c\u0438 \u043c\u043e\u0434\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u0439 StuG III, \u043f\u0440\u043e\u0442\u0435 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u044e \u0431\u0443\u043b\u0430 Ausf. G. \u0412\u0430\u0440\u0442\u0456\u0441\u0442\u044c \u043e\u0434\u043d\u0456\u0454\u0457 \u041f\u0422-\u0421\u0410\u0423 \u0431\u0443\u043b\u0430 \u0434\u043e\u0441\u0438\u0442\u044c \u043d\u0438\u0437\u044c\u043a\u043e\u044e - 83 000 \u043c\u0430\u0440\u043e\u043a. \u0421\u0443\u043c\u0430\u0440\u043d\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 10500 \u043c\u0430\u0448\u0438\u043d. \u0411\u0430\u0437\u043e\u044e \u0434\u043b\u044f \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f \u043f\u043e\u0441\u043b\u0443\u0436\u0438\u0432 \u0442\u0430\u043d\u043a PzKpfw III.\n\u0421\u043f\u043e\u0447\u0430\u0442\u043a\u0443 StuG III \u043e\u0441\u043d\u0430\u0449\u0443\u0432\u0430\u0432\u0441\u044f \u043a\u043e\u0440\u043e\u0442\u043a\u043e\u0441\u0442\u0432\u043e\u043b\u044c\u043d\u043e\u044e 75\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u043e\u044e, \u043e\u0434\u043d\u0430\u043a \u0437 \u043f\u043e\u044f\u0432\u043e\u044e \u043d\u0430 \u0444\u0440\u043e\u043d\u0442\u0430\u0445 \u0422-34 \u0431\u0443\u043b\u043e \u043f\u0440\u0438\u0439\u043d\u044f\u0442\u043e \u0440\u0456\u0448\u0435\u043d\u043d\u044f \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0457\u0457 \u043d\u0430 \u043d\u043e\u0432\u0443 \u0434\u043e\u0432\u0433\u043e\u0441\u0442\u0432\u043e\u043b\u044c\u043d\u0443 75\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u0443 Stuk 40 L / 48, \u044f\u043a\u0430 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u043e \u0432\u0440\u0430\u0436\u0430\u043b\u0430 \u0440\u0430\u0434\u044f\u043d\u0441\u044c\u043a\u0456 \u0442\u0430\u043d\u043a\u0438. \u0411\u0440\u043e\u043d\u044f \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 \u0443 \u043b\u043e\u0431\u0456 \u0431\u0443\u043b\u0430 50 \u043c\u043c \u0456 \u0442\u0440\u0438\u043c\u0430\u043b\u0430 \u0443\u0434\u0430\u0440 \u043d\u0430 \u0432\u0456\u0434\u0441\u0442\u0430\u043d\u0456 1 \u043a\u043c. StuG III \u0432\u0456\u0434\u0440\u0456\u0437\u043d\u044f\u0432\u0441\u044f \u043a\u043e\u043c\u043f\u0430\u043a\u0442\u043d\u0438\u043c\u0438 \u0440\u043e\u0437\u043c\u0456\u0440\u0430\u043c\u0438, \u0445\u043e\u0440\u043e\u0448\u043e\u044e \u043c\u0430\u043d\u0435\u0432\u0440\u0435\u043d\u0456\u0441\u0442\u044e \u0442\u0430 \u043d\u0435\u043f\u043e\u0433\u0430\u043d\u043e\u044e \u0448\u0432\u0438\u0434\u043a\u0456\u0441\u0442\u044e. \u0417 \u043d\u0435\u0434\u043e\u043b\u0456\u043a\u0456\u0432 \u0432\u0430\u0440\u0442\u043e \u0432\u0456\u0434\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u043d\u0435\u0437\u0440\u0443\u0447\u043d\u0456\u0441\u0442\u044c \u0440\u043e\u0431\u043e\u0442\u0438 \u0435\u043a\u0456\u043f\u0430\u0436\u0443 \u0447\u0435\u0440\u0435\u0437 \u043d\u0435\u0432\u0435\u043b\u0438\u043a\u0438\u0439 \u0437\u0430 \u0431\u0440\u043e\u043d\u044c\u043e\u0432\u0438\u0439 \u043f\u0440\u043e\u0441\u0442\u0456\u0440. \u041c\u0430\u0448\u0438\u043d\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0431\u0440\u0430\u043b\u0430 \u0443\u0447\u0430\u0441\u0442\u044c \u0437 \u0441\u0430\u043c\u043e\u0433\u043e \u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0432\u0456\u0439\u043d\u0438 \u0456 \u0434\u043e \u0457\u0457 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u044f.\n\n# Su-85 (100) \u0421\u0423-85 (100)\nhttp://i.piccy.info/i9/b5ef17359d201f4a7a61b38b5e6ca72f/1473836271/164656/1063747/kKktJUlUuXk.jpg\n\nTowards in 1943 it became clear for the Soviet command that to deal effectively with new German tanks Soviet army required new, more modern machines and Tank Destroyers. It was decided to create new Tank Destroyer based on the T-34, driving performance and armor of which were very good. Development of a new machine was conducted at Uralmash factory.\nSu-85 had a new long-barreled 85mm gun, similar to that which will soon be installed at T-34-85. This gun was able to destroy enemy medium tanks at the distance of over a kilometer, and heavy tanks \u2013 at 800 meters to a front plate. The gun was placed in the middle part of the Tanks Destroyer body and had angles of + - 8 degrees. Also the inside size of tanks was nice which allowed good conditions for crew working. Driving characteristics inherited from the T-34-85. Armor (45 mm at the front with big armor slope) provided good protection against German medium tanks. A little later, with the release of the T-34-85, SU-85 was converted under the new 100mm gun. It was a tool for successfully destroying any enemy tanks, including Tiger 2. Also Su-100 had a very low silhouette, which contributed to an excellent disguise. Observation and aiming devices have been improved. SU-100 was easy to maintain. This Tank Destroyer applied to the end of the WW II. Total were released 4976 SU-100 and 2050 SU-85.\nhttp://i.piccy.info/i9/4dc33c464a97ab5b3b8b294778f28103/1473836298/33303/1063747/WVaI_c18Lyw.jpg\n\n>\u0411\u043b\u0438\u0436\u0447\u0435 \u0434\u043e 1943 \u0440\u043e\u043a\u0443 \u0440\u0430\u0434\u044f\u043d\u0441\u044c\u043a\u043e\u043c\u0443 \u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u043d\u043d\u044e \u0441\u0442\u0430\u043b\u043e \u0437\u0440\u043e\u0437\u0443\u043c\u0456\u043b\u043e, \u0449\u043e \u0434\u043b\u044f \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0457 \u0431\u043e\u0440\u043e\u0442\u044c\u0431\u0438 \u0437 \u043d\u043e\u0432\u0438\u043c\u0438 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0438\u043c\u0438 \u0442\u0430\u043d\u043a\u0430\u043c\u0438 \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u0456 \u0431\u0456\u043b\u044c\u0448 \u0441\u0443\u0447\u0430\u0441\u043d\u0456 \u043c\u0430\u0448\u0438\u043d\u0438. \u0411\u0443\u043b\u043e \u0432\u0438\u0440\u0456\u0448\u0435\u043d\u043e \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0443 \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043d\u0443 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443 \u043d\u0430 \u0431\u0430\u0437\u0456 \u0442\u0430\u043d\u043a\u0430 \u0422-34, \u0445\u043e\u0434\u043e\u0432\u0456 \u044f\u043a\u043e\u0441\u0442\u0456 \u0456 \u0431\u0440\u043e\u043d\u044f \u044f\u043a\u043e\u0433\u043e \u0431\u0443\u043b\u0438 \u0434\u0443\u0436\u0435 \u0445\u043e\u0440\u043e\u0448\u0456. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u043d\u043e\u0432\u043e\u0457 \u041f\u0422-\u0421\u0410\u0423 \u0432\u0435\u043b\u0430\u0441\u044f \u043d\u0430 \u0423\u0440\u0430\u043b\u043c\u0430\u0448\u0437\u0430\u0432\u043e\u0434\u0456.\n\u0421\u0423-85 \u043c\u0430\u043b\u0430 \u043d\u043e\u0432\u0443 85\u043c\u043c \u043d\u0430\u0440\u0456\u0437\u043d\u0443 \u0433\u0430\u0440\u043c\u0430\u0442\u0443, \u0430\u043d\u0430\u043b\u043e\u0433\u0456\u0447\u043d\u0443 \u0437 \u0442\u043e\u044e, \u044f\u043a\u0430 \u043d\u0435\u0437\u0430\u0431\u0430\u0440\u043e\u043c \u0431\u0443\u0434\u0435 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u043d\u0430 \u0442 34-85. \u0412\u043e\u043d\u0430 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u043b\u043e \u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u043b\u0435\u043c \u0432\u0440\u0430\u0436\u0430\u0442\u0438 \u0441\u0435\u0440\u0435\u0434\u043d\u0456 \u0442\u0430\u043d\u043a\u0438 \u0441\u0443\u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430 \u043d\u0430 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0456\u0457 \u0431\u0456\u043b\u044c\u0448\u0435 \u043a\u0456\u043b\u043e\u043c\u0435\u0442\u0440\u0430, \u0430 \u0432\u0430\u0436\u043a\u0456 - \u043d\u0430 800 \u043c\u0435\u0442\u0440\u0430\u0445. \u0413\u0430\u0440\u043c\u0430\u0442\u0430 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u044e\u0432\u0430\u043b\u0430\u0441\u044f \u043f\u0440\u044f\u043c\u043e \u0432 \u043a\u043e\u0440\u043f\u0443\u0441 \u0456 \u043c\u0430\u043b\u043e \u043a\u0443\u0442\u0438 \u043d\u0430\u0432\u0435\u0434\u0435\u043d\u043d\u044f \u0432 + - 8 \u0433\u0440\u0430\u0434\u0443\u0441\u0456\u0432. \u041a\u043e\u0440\u043f\u0443\u0441 \u0431\u0443\u0432 \u0432\u0456\u0434\u043d\u043e\u0441\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u043e\u0440\u0438\u0439 \u0456 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u0432 \u0437 \u043a\u043e\u043c\u0444\u043e\u0440\u0442\u043e\u043c \u043f\u0440\u0430\u0446\u044e\u0432\u0430\u0442\u0438 \u0435\u043a\u0456\u043f\u0430\u0436\u0443. \u0425\u043e\u0434\u043e\u0432\u0456 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u0421\u0423 \u0443\u0441\u043f\u0430\u0434\u043a\u0443\u0432\u0430\u043b\u0430 \u0432\u0456\u0434 \u0442-34. \u0411\u0440\u043e\u043d\u044f (45\u043c\u043c \u043f\u0456\u0434 \u043d\u0430\u0445\u0438\u043b\u043e\u043c) \u0437\u0430\u0431\u0435\u0437\u043f\u0435\u0447\u0443\u0432\u0430\u043b\u0430 \u0445\u043e\u0440\u043e\u0448\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u043e\u0441\u0442\u0440\u0456\u043b\u0456\u0432 \u0441\u0435\u0440\u0435\u0434\u043d\u0456\u0445 \u0442\u0430\u043d\u043a\u0456\u0432 \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430. \u0422\u0440\u043e\u0445\u0438 \u043f\u0456\u0437\u043d\u0456\u0448\u0435 \u0437 \u0432\u0438\u0445\u043e\u0434\u043e\u043c \u0442\u0430\u043d\u043a\u0430 \u0442 34-85 \u0421\u0443\u0448\u043a\u0438 \u0431\u0443\u043b\u0438 \u043f\u0435\u0440\u0435\u043e\u0431\u043b\u0430\u0434\u043d\u0430\u043d\u0456 \u043f\u0456\u0434 \u043d\u043e\u0432\u0443 100\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u0443. \u0426\u044f \u0433\u0430\u0440\u043c\u0430\u0442 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u043b\u0430 \u0443\u0441\u043f\u0456\u0448\u043d\u043e \u0431\u043e\u0440\u043e\u0442\u0438\u0441\u044f \u0437 \u0431\u0443\u0434\u044c-\u044f\u043a\u0438\u043c \u0442\u0430\u043d\u043a\u043e\u043c \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430, \u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0447\u0438 \u0456 \u0422\u0438\u0433\u0440 2. \u0422\u0430\u043a\u043e\u0436 \u0432\u0430\u0440\u0442\u043e \u0432\u0456\u0434\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u043d\u0438\u0437\u044c\u043a\u0438\u0439 \u0441\u0438\u043b\u0443\u0435\u0442 \u043c\u0430\u0448\u0438\u043d\u0438, \u044f\u043a\u0438\u0439 \u0441\u043f\u0440\u0438\u044f\u0432 \u0432\u0456\u0434\u043c\u0456\u043d\u043d\u043e\u043c\u0443 \u043c\u0430\u0441\u043a\u0443\u0432\u0430\u043d\u043d\u044e. \u0411\u0443\u043b\u0438 \u043f\u043e\u043b\u0456\u043f\u0448\u0435\u043d\u0456 \u043f\u0440\u0438\u043b\u0430\u0434\u0438 \u0441\u043f\u043e\u0441\u0442\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f \u0439 \u043f\u0440\u0438\u0446\u0456\u043b\u044e\u0432\u0430\u043d\u043d\u044f. \u0422\u0435\u0445\u043d\u0456\u043a\u0430 \u0431\u0443\u043b\u0430 \u043f\u0440\u043e\u0441\u0442\u0430 \u0432 \u043e\u0431\u0441\u043b\u0443\u0433\u043e\u0432\u0443\u0432\u0430\u043d\u043d\u0456. \u0426\u044f \u041f\u0422-\u0421\u0410\u0423 \u0437\u0430\u0441\u0442\u043e\u0441\u043e\u0432\u0443\u0432\u0430\u043b\u0430\u0441\u044f \u0434\u043e \u0441\u0430\u043c\u043e\u0433\u043e \u043a\u0456\u043d\u0446\u044f \u0432\u0456\u0439\u043d\u0438. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 4976 \u0421\u0423-100 \u0456 2050 \u0421\u0423-85.\n\n# Jagdpanther (\u042f\u0433\u0434\u043f\u0430\u043d\u0442\u0435\u0440\u0430)\nhttp://i.piccy.info/i9/201bcdc4469d546e806e4a38ba752ea7/1473836330/161907/1063747/_jvoDheMLik.jpg\n\nIn the middle of 1942 the German command decided to create a new Tank Destroyer with 88mm anti-tank gun Pak-43, using the basis of medium tank \u201cPanther\u201d. The development of this Tank Destroyer at first was carried by a Krupp company, then it was given to a Daimler-Benz and at last it was finished by a MIAG company. So, the destiny of Jagdpather was hard. The development has been complicated by the regular air raids allies, constant shortage of necessary parts and confusion in the serial versions of the machine. Jagdpanther took the most actively part in the Ardennes offensive and the Balaton operation.\nhttp://i.piccy.info/i9/d2e68a346dd9f511c77c83d8b77eaf87/1473836361/30639/1063747/XmYA_dzfCU8.jpg\n\nIn general, as a Tank Destroyer Jagdpanthere was great. Maneuverability and speed characteristics were good because of using \u201cPanther\u201d basis. Armor of Jagdpanthere (80 mm in the front with a good armor slope) confidently defended the machine and a crew at the distance of 800 meters from all Soviet tanks. The new 88mm anti-tank gun allowed to destroy the enemy at a distance of 1km. Rate of fire at the same time was very high - 8 rounds per minute. The fighting compartment inside of a car was spacious and was equipped with ventilation, increasing the convenience of the crew working. And don\u2019t forget than Jagdpanther had a low silhouette. The disadvantages were the relatively high cost of the machine (due to the use of scarce materials), unreliability and complexity of the transmission service. Jagdpanther has established itself as a formidable and dangerous opponent, specializing in the destruction of tanks. Total were produced 392 cars.\nhttp://i.piccy.info/i9/f1590af47cd302853838f357b7786d76/1473836385/192289/1063747/V3N3_0icSI.jpg\n\n>\u0423 \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0438 1942 \u0440\u043e\u043a\u0443 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u043d\u043d\u044f \u043f\u0440\u0438\u0439\u043d\u044f\u043b\u043e \u0440\u0456\u0448\u0435\u043d\u043d\u044f \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u041f\u0422-\u0421\u0410\u0423 \u0437 \u043d\u043e\u0432\u043e\u044e \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u043e\u044e 88\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u043e\u044e \u0420\u0430\u043a-43 \u043d\u0430 \u0431\u0430\u0437\u0456 \u0441\u0435\u0440\u0435\u0434\u043d\u044c\u043e\u0433\u043e \u0442\u0430\u043d\u043a\u0430 \u041f\u0430\u043d\u0442\u0435\u0440\u0430. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0443 \u041f\u0422-\u0421\u0410\u0423 \u0441\u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0432\u0435\u043b\u0430 \u0444\u0456\u0440\u043c\u0430 \u041a\u0440\u0443\u043f\u043f, \u043f\u0456\u0437\u043d\u0456\u0448\u0435 \u043f\u0440\u043e\u0435\u043a\u0442 \u0434\u043e\u0440\u043e\u0431\u043b\u044f\u0432\u0441\u044f \u0444\u0456\u0440\u043c\u043e\u044e Daimler-Benz, \u0430 \u0432 \u0441\u0430\u043c\u043e\u043c\u0443 \u043a\u0456\u043d\u0446\u0456 - MIAG. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u0431\u0443\u043b\u0430 \u0443\u0441\u043a\u043b\u0430\u0434\u043d\u0435\u043d\u0430 \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u0438\u043c\u0438 \u0430\u0432\u0456\u0430 \u043d\u0430\u043b\u044c\u043e\u0442\u0430\u043c\u0438 \u0441\u043e\u044e\u0437\u043d\u0438\u043a\u0456\u0432, \u043f\u043e\u0441\u0442\u0456\u0439\u043d\u0438\u043c\u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0447\u0430\u043c\u0438 \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u0438\u0445 \u0434\u0435\u0442\u0430\u043b\u0435\u0439 \u0456 \u043f\u043b\u0443\u0442\u0430\u043d\u0438\u043d\u043e\u044e \u0432 \u0441\u0435\u0440\u0456\u0439\u043d\u0438\u0445 \u043c\u043e\u0434\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u044f\u0445 \u043c\u0430\u0448\u0438\u043d\u0438. \u041d\u0430\u0439\u0431\u0456\u043b\u044c\u0448 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u042f\u0433\u0434\u043f\u0430\u043d\u0442\u0435\u0440\u0438 \u0431\u0440\u0430\u043b\u0438 \u0443\u0447\u0430\u0441\u0442\u044c \u0432 \u0410\u0440\u0434\u0435\u043d\u0441\u044c\u043a\u043e\u043c\u0443 \u043d\u0430\u0441\u0442\u0443\u043f\u0456 \u0442\u0430 \u0411\u0430\u043b\u0430\u0442\u043e\u043d\u0441\u044c\u043a\u0456\u0439 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457.\n\u0412 \u0446\u0456\u043b\u043e\u043c\u0443 \u0441\u0430\u043c\u043e\u0445\u043e\u0434\u043a\u0430 \u0432\u0438\u0439\u0448\u043b\u0430 \u0432\u0434\u0430\u043b\u043e\u044e. \u0425\u043e\u0434\u043e\u0432\u0456 \u0456 \u043c\u0430\u043d\u0435\u0432\u0440\u0435\u043d\u0456 \u044f\u043a\u043e\u0441\u0442\u0456 \u0432\u043e\u043d\u0430 \u0446\u0456\u043b\u043a\u043e\u043c \u0443\u0441\u043f\u0430\u0434\u043a\u0443\u0432\u0430\u043b\u0430 \u0432\u0456\u0434 \u041f\u0430\u043d\u0442\u0435\u0440\u0438 \u0456 \u0432\u043e\u043d\u0438 \u0431\u0443\u043b\u0438 \u043d\u0430 \u0432\u0438\u0441\u043e\u043a\u043e\u043c\u0443 \u0440\u0456\u0432\u043d\u0456. \u0411\u0440\u043e\u043d\u044f \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 (80 \u043c\u043c \u0432 \u043b\u043e\u0431\u0456 \u043f\u0456\u0434 \u0445\u043e\u0440\u043e\u0448\u0438\u043c \u043d\u0430\u0445\u0438\u043b\u043e\u043c) \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u043e \u0437\u0430\u0445\u0438\u0449\u0430\u043b\u0430 \u0457\u0457 \u043d\u0430 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0456\u044f\u0445 \u0432\u0456\u0434 800 \u043c\u0435\u0442\u0440\u0456\u0432. \u041d\u043e\u0432\u0430 88\u043c\u043c \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0430 \u0433\u0430\u0440\u043c\u0430\u0442\u0430 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u043b\u0430 \u0432\u0435\u0441\u0442\u0438 \u043f\u0440\u0438\u0446\u0456\u043b\u044c\u043d\u0438\u0439 \u0432\u043e\u0433\u043e\u043d\u044c \u043f\u043e \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0443 \u043d\u0430 \u0432\u0456\u0434\u0441\u0442\u0430\u043d\u0456 1\u043a\u043c. \u0422\u0435\u043c\u043f \u0441\u0442\u0440\u0456\u043b\u044c\u0431\u0438 \u043f\u0440\u0438 \u0446\u044c\u043e\u043c\u0443 \u0431\u0443\u0432 \u0434\u0443\u0436\u0435 \u0432\u0438\u0441\u043e\u043a\u0438\u0439 - 8 \u043f\u043e\u0441\u0442\u0440\u0456\u043b\u0456\u0432 \u043d\u0430 \u0445\u0432\u0438\u043b\u0438\u043d\u0443. \u0411\u043e\u0439\u043e\u0432\u0435 \u0432\u0456\u0434\u0434\u0456\u043b\u0435\u043d\u043d\u044f \u043c\u0430\u0448\u0438\u043d\u0438 \u0431\u0443\u043b\u043e \u043f\u0440\u043e\u0441\u0442\u043e\u0440\u0438\u043c \u0456 \u043e\u0441\u043d\u0430\u0449\u0443\u0432\u0430\u043b\u043e\u0441\u044f \u0432\u0435\u043d\u0442\u0438\u043b\u044f\u0446\u0456\u0454\u044e, \u0449\u043e \u043f\u0456\u0434\u0432\u0438\u0449\u0443\u0432\u0430\u043b\u043e \u0437\u0440\u0443\u0447\u043d\u043e\u0441\u0442\u0456 \u0440\u043e\u0431\u043e\u0442\u0438 \u0435\u043a\u0456\u043f\u0430\u0436\u0443. \u041f\u0440\u0438\u043b\u0430\u0434\u0438 \u0441\u043f\u043e\u0441\u0442\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f \u0456 \u043f\u0440\u0438\u0446\u0456\u043b\u0438 \u0431\u0443\u043b\u0438 \u044f\u043a \u0437\u0430\u0432\u0436\u0434\u0438 \u043d\u0430 \u0432\u0438\u0449\u043e\u043c\u0443 \u0440\u0456\u0432\u043d\u0456. \u041f\u0422-\u0421\u0410\u0423 \u043c\u0430\u043b\u0430 \u043d\u0438\u0437\u044c\u043a\u0438\u0439 \u0441\u0438\u043b\u0443\u0435\u0442. \u0417 \u043d\u0435\u0434\u043e\u043b\u0456\u043a\u0456\u0432 \u0432\u0430\u0440\u0442\u043e \u0432\u0456\u0434\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u0432\u0456\u0434\u043d\u043e\u0441\u043d\u043e \u0432\u0438\u0441\u043e\u043a\u0443 \u0432\u0430\u0440\u0442\u0456\u0441\u0442\u044c \u043c\u0430\u0448\u0438\u043d\u0438 (\u0447\u0435\u0440\u0435\u0437 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u044f \u0434\u0435\u0444\u0456\u0446\u0438\u0442\u043d\u0438\u0445 \u043c\u0430\u0442\u0435\u0440\u0456\u0430\u043b\u0456\u0432), \u043d\u0435\u043d\u0430\u0434\u0456\u0439\u043d\u0456\u0441\u0442\u044c \u0442\u0440\u0430\u043d\u0441\u043c\u0456\u0441\u0456\u0457 \u0456 \u0441\u043a\u043b\u0430\u0434\u043d\u0456\u0441\u0442\u044c \u0432 \u043e\u0431\u0441\u043b\u0443\u0433\u043e\u0432\u0443\u0432\u0430\u043d\u043d\u0456. \u0422\u0430\u043a\u043e\u0436 \u043d\u0435\u0437\u0430\u0434\u043e\u0432\u0456\u043b\u044c\u043d\u043e\u044e \u0431\u0443\u043b\u0430 \u0431\u0440\u043e\u043d\u044f \u0431\u043e\u0440\u0442\u0456\u0432. \u042f\u0433\u0434\u043f\u0430\u043d\u0442\u0435\u0440\u0430 \u0437\u0430\u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0432\u0430\u043b\u0430 \u0441\u0435\u0431\u0435 \u044f\u043a \u0433\u0440\u0456\u0437\u043d\u0438\u0439 \u0456 \u043d\u0435\u0431\u0435\u0437\u043f\u0435\u0447\u043d\u0438\u0439 \u0441\u0443\u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a, \u0449\u043e \u0441\u043f\u0435\u0446\u0456\u0430\u043b\u0456\u0437\u0443\u0454\u0442\u044c\u0441\u044f \u043d\u0430 \u0432\u0438\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0442\u0430\u043d\u043a\u0456\u0432. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 392 \u043c\u0430\u0448\u0438\u043d\u0438.\n\n# M18 \u201cHellcat\u201d\nhttp://i.piccy.info/i9/96dea13cac0295bde2f7c6dd2ddf0f93/1473836416/237135/1063747/Zt4ltwPq9qQ.jpg\n\nThe design of the American Tank Destroyer was caused by the US military doctrine. In contrast to the Germans and the Soviets, who had good-armored Tank Destroyers with a powerful anti-tank gun and mediocre mobility, American Tank Destroyers were oriented on a good mobility firstly. M18 was developed for quickly interception of enemy tank formations and the destruction of their flanks. This also caused the weak armor, small caliber of guns and excellent mobility equipment. M18 had been developed by General Motors Buick Division, the cost of one machine was 57,000 dollars. Total it was produced 2507 M18.\nAt first it was planned to put the 37mm gun, but very soon it was decided to replace it by the 57mm British gun. But this was not enough, and in the final version M18 was equipped with a 76mm cannon from Shermans. New Tank Destroyer had a very light weight, had weak armor (20mm in the forehead) and the rotating tower, which was unusual for that time. Suspension provides the convenience of driving on rough terrain; the engine allowed reaching speed up to 45 km per hour. M18 was easy to operate and convenient to use. In general, the machine was ambiguous, absorbing a lot of bold decisions.\nhttp://i.piccy.info/i9/df0129bd789f7923e8f0306e5a8b6520/1473836445/147058/1063747/pxmv2fJDVRs.jpg\n\n>\u041a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u043e\u0433\u043e \u0432\u0438\u043d\u0438\u0449\u0443\u0432\u0430\u0447\u0430 \u0442\u0430\u043d\u043a\u0456\u0432 \u043e\u0431\u0443\u043c\u043e\u0432\u043b\u0435\u043d\u0430 \u0432 \u043f\u0435\u0440\u0448\u0443 \u0447\u0435\u0440\u0433\u0443 \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u043e\u044e \u0432\u0456\u0439\u0441\u044c\u043a\u043e\u0432\u043e\u044e \u0434\u043e\u043a\u0442\u0440\u0438\u043d\u043e\u044e. \u041d\u0430 \u0432\u0456\u0434\u043c\u0456\u043d\u0443 \u0432\u0456\u0434 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0438\u0445 \u0456 \u0440\u0430\u0434\u044f\u043d\u0441\u044c\u043a\u0438\u0445 \u0430\u0440\u043c\u0456\u0439, \u0443 \u044f\u043a\u0438\u0445 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0456 \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 \u043c\u0430\u043b\u0438 \u0433\u0430\u0440\u043d\u0443 \u043b\u043e\u0431\u043e\u0432\u0443 \u0431\u0440\u043e\u043d\u044e, \u043f\u043e\u0442\u0443\u0436\u043d\u0443 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0443 \u0433\u0430\u0440\u043c\u0430\u0442\u0443 \u0456 \u043f\u043e\u0441\u0435\u0440\u0435\u0434\u043d\u044e \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0456\u0441\u0442\u044c, \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u0456 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0456 \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 \u0432 \u043f\u0435\u0440\u0448\u0443 \u0447\u0435\u0440\u0433\u0443 \u043f\u043e\u0432\u0438\u043d\u043d\u0456 \u0431\u0443\u043b\u0438 \u0431\u0443\u0442\u0438 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0456. \u041c18 \u0440\u043e\u0437\u0440\u043e\u0431\u043b\u044f\u0432\u0441\u044f \u0434\u043b\u044f \u0448\u0432\u0438\u0434\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0445\u043e\u043f\u043b\u0435\u043d\u043d\u044f \u0442\u0430\u043d\u043a\u043e\u0432\u0438\u0445 \u0437'\u0454\u0434\u043d\u0430\u043d\u044c \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430 \u0456 \u0437\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0457\u0445 \u0437 \u0444\u043b\u0430\u043d\u0433\u0456\u0432. \u0426\u0438\u043c \u0456 \u043e\u0431\u0443\u043c\u043e\u0432\u043b\u044e\u0432\u0430\u043b\u0430\u0441\u044f \u0441\u043b\u0430\u0431\u043a\u0435 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f, \u043d\u0435\u0432\u0435\u043b\u0438\u043a\u0438\u0439 \u043a\u0430\u043b\u0456\u0431\u0440 \u0433\u0430\u0440\u043c\u0430\u0442\u0438 \u0456 \u0432\u0456\u0434\u043c\u0456\u043d\u043d\u0430 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0456\u0441\u0442\u044c \u0442\u0435\u0445\u043d\u0456\u043a\u0438. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u0432\u0435\u043b\u0430\u0441\u044f \u0444\u0456\u0440\u043c\u043e\u044e General Motors Buick Division, \u0432\u0430\u0440\u0442\u0456\u0441\u0442\u044c \u043e\u0434\u043d\u0456\u0454\u0457 \u043c\u0430\u0448\u0438\u043d\u0438 \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b\u0430 57000 \u0434\u043e\u043b\u0430\u0440\u0456\u0432. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 2507 \u041f\u0422-\u0421\u0410\u0423 \u041c18.\n\u0421\u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u043f\u043b\u0430\u043d\u0443\u0432\u0430\u043b\u043e\u0441\u044f \u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u0438 37\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u0443, \u043f\u0440\u043e\u0442\u0435 \u0434\u0443\u0436\u0435 \u0441\u043a\u043e\u0440\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u0440\u0456\u0448\u0435\u043d\u043e \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0457\u0457 \u043d\u0430 57\u043c\u043c \u0431\u0440\u0438\u0442\u0430\u043d\u0441\u044c\u043a\u0443 \u0433\u0430\u0440\u043c\u0430\u0442\u0443. \u0410\u043b\u0435 \u0446\u044c\u043e\u0433\u043e \u0432\u0438\u044f\u0432\u0438\u043b\u043e\u0441\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043d\u044c\u043e, \u0456 \u0432 \u0444\u0456\u043d\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u0432\u0430\u0440\u0456\u0430\u043d\u0442\u0456 \u041c18 \u043e\u0441\u043d\u0430\u0449\u0443\u0432\u0430\u043b\u0430\u0441\u044f 76\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u043e\u044e, \u0449\u043e \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u044e\u0432\u0430\u043b\u0430\u0441\u044f \u043d\u0430 \u0442\u0430\u043d\u043a\u0438 \u0428\u0435\u0440\u043c\u0430\u043d. \u041f\u0422-\u0421\u0410\u0423 \u0431\u0443\u043b\u0430 \u0434\u0443\u0436\u0435 \u043b\u0435\u0433\u043a\u0430, \u043c\u0430\u043b\u0430 \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043a\u0443\u043b\u044c\u043e\u0432\u0435 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f (20\u043c\u043c \u0432 \u043b\u043e\u0431\u0456) \u0456 \u043f\u043e\u0432\u043e\u0440\u043e\u0442\u043d\u0443 \u0431\u0430\u0448\u0442\u0443, \u0449\u043e \u0431\u0443\u043b\u043e \u043d\u0435\u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u043d\u043e \u0434\u043b\u044f \u041f\u0422-\u0421\u0410\u0423 \u0442\u043e\u0433\u043e \u0447\u0430\u0441\u0443. \u041f\u0456\u0434\u0432\u0456\u0441\u043a\u0430 \u0437\u0430\u0431\u0435\u0437\u043f\u0435\u0447\u0443\u0432\u0430\u043b\u0430 \u0437\u0440\u0443\u0447\u043d\u0456\u0441\u0442\u044c \u0457\u0437\u0434\u0438 \u043f\u043e \u043f\u0435\u0440\u0435\u0441\u0456\u0447\u0435\u043d\u0456\u0439 \u043c\u0456\u0441\u0446\u0435\u0432\u043e\u0441\u0442\u0456, \u0434\u0432\u0438\u0433\u0443\u043d \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u0432 \u0440\u043e\u0437\u0432\u0438\u0432\u0430\u0442\u0438 \u0448\u0432\u0438\u0434\u043a\u0456\u0441\u0442\u044c \u0434\u043e 45 \u043a\u043c \u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0443. \u041c18 \u0431\u0443\u0432 \u043f\u0440\u043e\u0441\u0442\u0438\u0439 \u0432 \u043e\u0431\u0441\u043b\u0443\u0433\u043e\u0432\u0443\u0432\u0430\u043d\u043d\u0456 \u0456 \u0437\u0440\u0443\u0447\u043d\u0438\u0439 \u0432 \u0435\u043a\u0441\u043f\u043b\u0443\u0430\u0442\u0430\u0446\u0456\u0457. \u0412 \u0446\u0456\u043b\u043e\u043c\u0443 \u043c\u0430\u0448\u0438\u043d\u0430 \u0432\u0438\u0439\u0448\u043b\u0430 \u043d\u0435\u043e\u0434\u043d\u043e\u0437\u043d\u0430\u0447\u043d\u043e\u044e, \u0443\u0432\u0456\u0431\u0440\u0430\u0432\u0448\u0438 \u0432 \u0441\u0435\u0431\u0435 \u0431\u0435\u0437\u043b\u0456\u0447 \u0441\u043c\u0456\u043b\u0438\u0432\u0438\u0445 \u0440\u0456\u0448\u0435\u043d\u044c.\n\nAt the end I want to say, that the birth of Tank destroyers was caused by the necessary of destroying heavy enemy techniques. Next time I will tell you about machines with a real \u201cBig Guns\u201d.\n>\u041d\u0430 \u0446\u044c\u043e\u043c\u0443 \u043c\u0456 \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u043c\u043e \u043d\u0430\u0448\u0435 \u0437\u043d\u0430\u0439\u043e\u043c\u0441\u0442\u0432\u043e \u0437 \u043a\u043b\u0430\u0441\u043e\u043c \u041f\u0422-\u0421\u0410\u0423. \u041f\u043e\u044f\u0432\u0430 \u0441\u0430\u043c\u043e\u0445\u043e\u0434\u043e\u043a \u0431\u0443\u043b\u0430 \u0432\u0438\u043a\u043b\u0438\u043a\u0430\u043d\u0430 \u043d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u0456\u0441\u0442\u044e \u0437\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0432\u0430\u0436\u043a\u043e\u0457 \u0442\u0435\u0445\u043d\u0456\u043a\u0438 \u0441\u0443\u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430. \u041d\u0430 \u0447\u0435\u0440\u0437\u0456 \u043c\u0430\u0448\u0438\u043d\u0438 \u0437 \u0434\u0456\u0439\u0441\u043d\u043e \u0432\u0435\u043b\u0438\u043a\u0438\u043c\u0438 \u043a\u0430\u043b\u0456\u0431\u0440\u0430\u043c\u0438. \n\n***don't forget to follow @burmik123***", + "category": "tanks", + "children": 20, + "created": "2016-09-15T15:48:12", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.piccy.info/i9/3d367a52a1b8dc6c22f126332f335144/1473836215/88822/1063747/cqWCxy6vYP0.jpg", + "http://i.piccy.info/i9/5dc09cebc0ddfcd1fac4a8013ee385ad/1473836240/182233/1063747/5u9ghQyvkTc.jpg", + "http://i.piccy.info/i9/b5ef17359d201f4a7a61b38b5e6ca72f/1473836271/164656/1063747/kKktJUlUuXk.jpg", + "http://i.piccy.info/i9/4dc33c464a97ab5b3b8b294778f28103/1473836298/33303/1063747/WVaI_c18Lyw.jpg", + "http://i.piccy.info/i9/201bcdc4469d546e806e4a38ba752ea7/1473836330/161907/1063747/_jvoDheMLik.jpg", + "http://i.piccy.info/i9/d2e68a346dd9f511c77c83d8b77eaf87/1473836361/30639/1063747/XmYA_dzfCU8.jpg", + "http://i.piccy.info/i9/f1590af47cd302853838f357b7786d76/1473836385/192289/1063747/V3N3_0icSI.jpg", + "http://i.piccy.info/i9/96dea13cac0295bde2f7c6dd2ddf0f93/1473836416/237135/1063747/Zt4ltwPq9qQ.jpg", + "http://i.piccy.info/i9/df0129bd789f7923e8f0306e5a8b6520/1473836445/147058/1063747/pxmv2fJDVRs.jpg" + ], + "tags": [ + "tanks", + "ua", + "war" + ], + "users": [ + "burmik123" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 64027086650725, + "payout": 239.867, + "payout_at": "2016-09-16T16:11:44", + "pending_payout_value": "239.867 HBD", + "percent_steem_dollars": 10000, + "permlink": "title-steel-monsters-tank-destroyers-of-ww-ii-eng-ua-featuring-burmik123-as-author", + "post_id": 958959, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 257 + }, + "title": "Steel monsters. Tank Destroyers of WW II. ENG\\UA (featuring @burmik123 as author)", + "updated": "2016-09-15T16:20:39", + "url": "/tanks/@gavvet/title-steel-monsters-tank-destroyers-of-ww-ii-eng-ua-featuring-burmik123-as-author" + }, + { + "active_votes": [ + { + "rshares": "518200944380", + "voter": "barrie" + }, + { + "rshares": "31620599440742", + "voter": "smooth" + }, + { + "rshares": "5980286152113", + "voter": "freedom" + }, + { + "rshares": "1968119541431", + "voter": "badassmother" + }, + { + "rshares": "2052934239988", + "voter": "hr1" + }, + { + "rshares": "1337025448249", + "voter": "rossco99" + }, + { + "rshares": "22864938197", + "voter": "jaewoocho" + }, + { + "rshares": "1575899708999", + "voter": "joseph" + }, + { + "rshares": "98682346357", + "voter": "aizensou" + }, + { + "rshares": "466049312123", + "voter": "recursive2" + }, + { + "rshares": "462419963819", + "voter": "recursive3" + }, + { + "rshares": "3120252422964", + "voter": "recursive" + }, + { + "rshares": "1246183601", + "voter": "mineralwasser" + }, + { + "rshares": "681017160441", + "voter": "boombastic" + }, + { + "rshares": "1670000041", + "voter": "bingo-1" + }, + { + "rshares": "5938790183563", + "voter": "smooth.witness" + }, + { + "rshares": "445638290328", + "voter": "boatymcboatface" + }, + { + "rshares": "9408499254", + "voter": "idol" + }, + { + "rshares": "18955732033", + "voter": "chitty" + }, + { + "rshares": "65857071449", + "voter": "unosuke" + }, + { + "rshares": "1619440533", + "voter": "jocelyn" + }, + { + "rshares": "15004166459", + "voter": "gregory-f" + }, + { + "rshares": "154334962550", + "voter": "edgeland" + }, + { + "rshares": "9796891633", + "voter": "gregory60" + }, + { + "rshares": "1290497974419", + "voter": "gavvet" + }, + { + "rshares": "89897083981", + "voter": "eeks" + }, + { + "rshares": "1511911763", + "voter": "fkn" + }, + { + "rshares": "122160437", + "voter": "paco-steem" + }, + { + "rshares": "1471599418", + "voter": "spaninv" + }, + { + "rshares": "1987313581", + "voter": "elishagh1" + }, + { + "rshares": "8669787638", + "voter": "richman" + }, + { + "rshares": "599944427461", + "voter": "nanzo-scoop" + }, + { + "rshares": "9857442120", + "voter": "kefkius" + }, + { + "rshares": "177393180428", + "voter": "mummyimperfect" + }, + { + "rshares": "313687341", + "voter": "coar" + }, + { + "rshares": "106628883920", + "voter": "asch" + }, + { + "rshares": "1061184463", + "voter": "murh" + }, + { + "rshares": "3187790925", + "voter": "cryptofunk" + }, + { + "rshares": "579494558", + "voter": "kodi" + }, + { + "rshares": "2111403468", + "voter": "error" + }, + { + "rshares": "985486511940", + "voter": "cyber" + }, + { + "rshares": "61710806563", + "voter": "theshell" + }, + { + "rshares": "50879010002", + "voter": "ak2020" + }, + { + "rshares": "1616373298272", + "voter": "satoshifund" + }, + { + "rshares": "409218031185", + "voter": "taoteh1221" + }, + { + "rshares": "418880227", + "voter": "applecrisp" + }, + { + "rshares": "95314034", + "voter": "stiletto" + }, + { + "rshares": "19213136885", + "voter": "ziv" + }, + { + "rshares": "15787116636", + "voter": "zakharya" + }, + { + "rshares": "280675599804", + "voter": "trogdor" + }, + { + "rshares": "19151208027", + "voter": "crypto-fan" + }, + { + "rshares": "121380113922", + "voter": "geoffrey" + }, + { + "rshares": "16025451490", + "voter": "kimziv" + }, + { + "rshares": "76008701316", + "voter": "emily-cook" + }, + { + "rshares": "2187587354", + "voter": "superfreek" + }, + { + "rshares": "387326356155", + "voter": "fyrstikken" + }, + { + "rshares": "49806164408", + "voter": "isteemit" + }, + { + "rshares": "29635215678", + "voter": "acassity" + }, + { + "rshares": "280916636", + "voter": "ladyclair" + }, + { + "rshares": "3898803498", + "voter": "michaellamden68" + }, + { + "rshares": "19974572536", + "voter": "thebatchman" + }, + { + "rshares": "153697599394", + "voter": "asmolokalo" + }, + { + "rshares": "73848595449", + "voter": "rubybian" + }, + { + "rshares": "5270775482", + "voter": "riscadox" + }, + { + "rshares": "256623434", + "voter": "mstang83" + }, + { + "rshares": "2597453094", + "voter": "romel" + }, + { + "rshares": "150964836849", + "voter": "derekareith" + }, + { + "rshares": "7380400309", + "voter": "furion" + }, + { + "rshares": "15308452303", + "voter": "bitshares101" + }, + { + "rshares": "6591905710", + "voter": "owdy" + }, + { + "rshares": "14388449041", + "voter": "ausbitbank" + }, + { + "rshares": "159573949583", + "voter": "jacor" + }, + { + "rshares": "124958555", + "voter": "cynetyc" + }, + { + "rshares": "85528935", + "voter": "snowden" + }, + { + "rshares": "14487855165", + "voter": "aaseb" + }, + { + "rshares": "4431052068", + "voter": "karen13" + }, + { + "rshares": "10646413479", + "voter": "deviedev" + }, + { + "rshares": "258981906731", + "voter": "nabilov" + }, + { + "rshares": "847366145", + "voter": "luisucv34" + }, + { + "rshares": "54561525717", + "voter": "streetstyle" + }, + { + "rshares": "7372366244", + "voter": "krystle" + }, + { + "rshares": "46854512371", + "voter": "milestone" + }, + { + "rshares": "35782074085", + "voter": "creemej" + }, + { + "rshares": "3800710913", + "voter": "maximkichev" + }, + { + "rshares": "167298234999", + "voter": "blueorgy" + }, + { + "rshares": "12587181720", + "voter": "benjiberigan" + }, + { + "rshares": "349575168", + "voter": "poseidon" + }, + { + "rshares": "7946556816", + "voter": "smolalit" + }, + { + "rshares": "20522265015", + "voter": "mustafaomar" + }, + { + "rshares": "3506024506", + "voter": "simon.braki.love" + }, + { + "rshares": "82780602040", + "voter": "thylbom" + }, + { + "rshares": "3695597998", + "voter": "bitcoiner" + }, + { + "rshares": "32542074868", + "voter": "deanliu" + }, + { + "rshares": "519376303", + "voter": "qonq99" + }, + { + "rshares": "7659625135", + "voter": "neroru" + }, + { + "rshares": "215384334659", + "voter": "jl777" + }, + { + "rshares": "1226120506", + "voter": "positive" + }, + { + "rshares": "101547003699", + "voter": "crazymumzysa" + }, + { + "rshares": "50626015", + "voter": "steemchain" + }, + { + "rshares": "50626015", + "voter": "whalepool" + }, + { + "rshares": "5287640951", + "voter": "gustavopasquini" + }, + { + "rshares": "114437903", + "voter": "firehorse" + }, + { + "rshares": "18175932801", + "voter": "proto" + }, + { + "rshares": "2708251696", + "voter": "sisterholics" + }, + { + "rshares": "1444237397", + "voter": "alex.chien" + }, + { + "rshares": "8921793478", + "voter": "royalmacro" + }, + { + "rshares": "1802321537", + "voter": "remlaps" + }, + { + "rshares": "3353832611", + "voter": "glitterpig" + }, + { + "rshares": "119294413", + "voter": "picker" + }, + { + "rshares": "870677269", + "voter": "metaflute" + }, + { + "rshares": "9193734776", + "voter": "taker" + }, + { + "rshares": "6521104126", + "voter": "nekromarinist" + }, + { + "rshares": "2156971728", + "voter": "merej99" + }, + { + "rshares": "95768393690", + "voter": "laonie" + }, + { + "rshares": "157498807066", + "voter": "twinner" + }, + { + "rshares": "11693771864", + "voter": "thebluepanda" + }, + { + "rshares": "24561066673", + "voter": "laoyao" + }, + { + "rshares": "2664664784", + "voter": "myfirst" + }, + { + "rshares": "19440183808", + "voter": "somebody" + }, + { + "rshares": "726860971", + "voter": "flysaga" + }, + { + "rshares": "2501625986", + "voter": "gmurph" + }, + { + "rshares": "4294504959", + "voter": "midnightoil" + }, + { + "rshares": "2327843962", + "voter": "kalimor" + }, + { + "rshares": "84246848", + "voter": "coderg" + }, + { + "rshares": "4281232336", + "voter": "ullikume" + }, + { + "rshares": "50577648", + "voter": "michellek" + }, + { + "rshares": "3489905889", + "voter": "kurtbeil" + }, + { + "rshares": "2370103862", + "voter": "steemleak" + }, + { + "rshares": "117035295217", + "voter": "thisisbenbrick" + }, + { + "rshares": "10740805506", + "voter": "xiaohui" + }, + { + "rshares": "88206053", + "voter": "bigsambucca" + }, + { + "rshares": "485070652", + "voter": "elfkitchen" + }, + { + "rshares": "103387869456", + "voter": "joele" + }, + { + "rshares": "5855349715", + "voter": "oflyhigh" + }, + { + "rshares": "15238192519", + "voter": "randyclemens" + }, + { + "rshares": "856854397", + "voter": "skavkaz" + }, + { + "rshares": "335812576", + "voter": "xiaokongcom" + }, + { + "rshares": "13237481048", + "voter": "gargon" + }, + { + "rshares": "2076619689", + "voter": "natalymaty" + }, + { + "rshares": "2002858998", + "voter": "future24" + }, + { + "rshares": "1156101266", + "voter": "darthnava" + }, + { + "rshares": "3670417888", + "voter": "villainblack" + }, + { + "rshares": "12672968653", + "voter": "cristi" + }, + { + "rshares": "676933902", + "voter": "xianjun" + }, + { + "rshares": "26283514539", + "voter": "hanshotfirst" + }, + { + "rshares": "93798273061", + "voter": "miacats" + }, + { + "rshares": "2249572206", + "voter": "njall" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "6417335694", + "voter": "userlogin" + }, + { + "rshares": "2077210674", + "voter": "chinadaily" + }, + { + "rshares": "90171375563", + "voter": "serejandmyself" + }, + { + "rshares": "4976983022", + "voter": "almerri" + }, + { + "rshares": "9071955992", + "voter": "johnnyyash" + }, + { + "rshares": "3221126774", + "voter": "macartem" + }, + { + "rshares": "9827647000", + "voter": "gvargas123" + }, + { + "rshares": "4658385146", + "voter": "themanualbot" + }, + { + "rshares": "10468564936", + "voter": "jaredcwillis" + }, + { + "rshares": "3562389763", + "voter": "movievertigo" + }, + { + "rshares": "332237822", + "voter": "mrlogic" + }, + { + "rshares": "415123347", + "voter": "mig641" + }, + { + "rshares": "57942270939", + "voter": "mandibil" + }, + { + "rshares": "2028431875", + "voter": "shadowspub" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "74550672", + "voter": "steembriefing" + }, + { + "rshares": "55750195", + "voter": "riv" + }, + { + "rshares": "2196854858", + "voter": "runridefly" + }, + { + "rshares": "169049426", + "voter": "sammie" + }, + { + "rshares": "1857706060", + "voter": "funkywanderer" + }, + { + "rshares": "5053551216", + "voter": "richardcrill" + }, + { + "rshares": "184076493", + "voter": "team101" + }, + { + "rshares": "178419224", + "voter": "greatness" + }, + { + "rshares": "54241736164", + "voter": "sponge-bob" + }, + { + "rshares": "50798127", + "voter": "freesteem" + }, + { + "rshares": "51964388", + "voter": "apparat" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "212888896291", + "voter": "asksisk" + }, + { + "rshares": "330365849", + "voter": "panther" + }, + { + "rshares": "59422248", + "voter": "plantbasedjunkie" + }, + { + "rshares": "55335855053", + "voter": "brains" + }, + { + "rshares": "56573340", + "voter": "film-editor" + }, + { + "rshares": "799615255", + "voter": "jessicanicklos" + }, + { + "rshares": "1369339863", + "voter": "steemafon" + }, + { + "rshares": "1072070421", + "voter": "positivesteem" + }, + { + "rshares": "5753129814", + "voter": "chick1" + }, + { + "rshares": "3319554336", + "voter": "steempowerwhale" + }, + { + "rshares": "51637870", + "voter": "aoki" + }, + { + "rshares": "51568971", + "voter": "typingagent" + }, + { + "rshares": "51581492", + "voter": "cwb" + }, + { + "rshares": "339270470", + "voter": "anomaly" + }, + { + "rshares": "98524303", + "voter": "ola1" + }, + { + "rshares": "70282046", + "voter": "mari5555na" + }, + { + "rshares": "50871059", + "voter": "motion" + }, + { + "rshares": "50868434", + "voter": "jumbo" + }, + { + "rshares": "120278139", + "voter": "optimistic-crone" + }, + { + "rshares": "50536471", + "voter": "twistys" + }, + { + "rshares": "2216805889", + "voter": "bapparabi" + }, + { + "rshares": "50487909", + "voter": "opticalillusions" + }, + { + "rshares": "88287639", + "voter": "remlaps1" + }, + { + "rshares": "65849185", + "voter": "vuyusile" + }, + { + "rshares": "247235040", + "voter": "darkminded153" + }, + { + "rshares": "2650993895", + "voter": "senseye" + }, + { + "rshares": "161849597", + "voter": "iberia" + }, + { + "rshares": "158666175", + "voter": "durex" + }, + { + "rshares": "444435987", + "voter": "witchcraftblog" + }, + { + "rshares": "161212160", + "voter": "origin" + }, + { + "rshares": "4671589034", + "voter": "dresden" + }, + { + "rshares": "160845765", + "voter": "caseyneistat" + }, + { + "rshares": "159554050", + "voter": "planetearth" + }, + { + "rshares": "159506164", + "voter": "greenpeace" + }, + { + "rshares": "159164412", + "voter": "disneypixar" + }, + { + "rshares": "159062820", + "voter": "rule" + }, + { + "rshares": "158638676", + "voter": "icesteem" + }, + { + "rshares": "158602900", + "voter": "steem-wallet" + }, + { + "rshares": "155451903", + "voter": "steemthis" + }, + { + "rshares": "158541985", + "voter": "citigroup" + }, + { + "rshares": "31683945302", + "voter": "goldmatters" + }, + { + "rshares": "71727340", + "voter": "dealzgal" + }, + { + "rshares": "702613929", + "voter": "reddust" + }, + { + "rshares": "298391608", + "voter": "risabold" + } + ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Is this a typo? Benefits? You ask. How could there be any possible benefit from having a disability?\n\nWell, in fact there are. And here are three unexpected benefits I have personally experienced in my own journey living with a degenerating eye condition.\n\n## Improved lateral thinking and innovation\nGrowing up with a vision impairment meant that there were often things that most people took for granted, but which I struggled to do. To do the same things, I needed to come up with creative solutions and alternative ways of doing things. So from a very young age, I learnt to think laterally and developed my problem solving skills. Most people are so use to perceiving the world in a certain way, but when you are stripped of one of your senses, you learn to perceive things in a different way.\n\nhttps://ipfs.pics/ipfs/QmWb5pzYhKKJZ8zmeYqVeV6oNqGi5h7yDEtxBbjwRdTUZ7\n\nWhen I was still living by myself a few years ago, I had the annoying task of having to cook for myself each night. The challenge I faced in the kitchen was not been able to read the labels on various bottles and containers. As a result, I couldn't tell which container was the salt and which one was the sugar, and all the packaging for the herbs looked the same. So how did I manage? Instead of using sight, I used my sense of smell to distinguish between the herbs, and for some ingredients where I couldn't use the sense of smell, I used different containers and labels to help me identify all the different ingredients.\n\nAnd this leads on to the second benefit.\n\n## Improved memory\nPeople who know me well often comment on my ability to remember things. In fact, I've noticed this in many other people I know who also have a vision impairment. I think this is due to the fact that for someone with a vision impairment to thrive in a sighted world, we often need to make extra effort to adapt to our circumstances.\n\nFor example, I remember when I was still in university, I had to do many presentations. For most people, they could refer to speech notes as they are presenting. However, for me, this was not possible, as I couldn't read speech notes no matter how big the font was. Furthermore, as I have some sight, I never needed to learn braille, which meant I couldn't refer to braille notes either. _As a side note, this is why the title of my memoir which I've been posting on Steemit is \"Living in Between Two Worlds\", because I have often found myself being caught between the world of the sighted and the world of the blind, and also between the identity of being Chinese but not fully Chinese, and being Australian but not fully Australian._ As a result, every time I had to do a presentation, I would always remember the entire speech. Over time, this has become second nature to me. I have learnt how to force things into my memory, and be innovative when I need to.\n\n## Resilience\nGrowing up with a vision impairment, I experienced a lot of bullying at school and a lot of hurtful comments and actions from people, sometimes done knowingly and sometimes unknowingly. Sometimes this comes in the form of a patronising comment, and sometimes from a look or stare. The interesting thing with people staring and giving me strange looks is that I can often notice people are doing it to me because I have some peripheral vision, however people generally can't tell I'm looking back at them because it doesn't seem like I'm looking at them. Most of the time however, those hurtful words and actions are done out of ignorance and a lack of understanding, rather then out of malice.\n\n#### But from all these things I've experienced, it has made me a stronger and more resilient person.\nAs a result, whatever unforeseen things I may experience in life, there's not much that can knock me out completely. I have developed the ability to adapt to changing circumstances and stay optimistic, because as they say:\n### What doesn't kill you, makes you stronger.\n\nSo I'm thankful to God for the person I have become today. Disability isn't all bad. Without what I have gone through with my vision impairment, I wouldn't be the person I am today, and for these reasons, I am thankful.\n\nTo read more about my story, you can read my short memoir series. You can find [Part 1 here.](https://steemit.com/memoir/@nextgen622/living-in-between-two-worlds-my-memoir-part-1-updated)\n\nYou can also follow me on @nextgen622", + "category": "life", + "children": 10, + "created": "2016-09-15T14:46:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://ipfs.pics/ipfs/QmWb5pzYhKKJZ8zmeYqVeV6oNqGi5h7yDEtxBbjwRdTUZ7" + ], + "links": [ + "https://steemit.com/memoir/@nextgen622/living-in-between-two-worlds-my-memoir-part-1-updated" + ], + "tags": [ + "life", + "disability", + "strength" + ], + "users": [ + "nextgen622" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66119907751704, + "payout": 255.328, + "payout_at": "2016-09-16T15:12:56", + "pending_payout_value": "255.328 HBD", + "percent_steem_dollars": 10000, + "permlink": "three-benefits-of-living-with-a-disability-featuring-nextgen622-as-author", + "post_id": 958372, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 219 + }, + "title": "Three benefits of living with a disability (featuring @nextgen622 as author)", + "updated": "2016-09-15T14:46:21", + "url": "/life/@gavvet/three-benefits-of-living-with-a-disability-featuring-nextgen622-as-author" + }, + { + "active_votes": [ + { + "rshares": "518193384474", + "voter": "barrie" + }, + { + "rshares": "31620272424965", + "voter": "smooth" + }, + { + "rshares": "7465716124744", + "voter": "firstclass" + }, + { + "rshares": "1991230051184", + "voter": "badassmother" + }, + { + "rshares": "2052900127917", + "voter": "hr1" + }, + { + "rshares": "1337025448249", + "voter": "rossco99" + }, + { + "rshares": "22864591759", + "voter": "jaewoocho" + }, + { + "rshares": "1619082976045", + "voter": "joseph" + }, + { + "rshares": "223905651656", + "voter": "b0y2k" + }, + { + "rshares": "475735272749", + "voter": "recursive2" + }, + { + "rshares": "462392248872", + "voter": "recursive3" + }, + { + "rshares": "3188060280256", + "voter": "recursive" + }, + { + "rshares": "1246152952", + "voter": "mineralwasser" + }, + { + "rshares": "680994650765", + "voter": "boombastic" + }, + { + "rshares": "94091830376", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6959061481", + "voter": "bingo-0" + }, + { + "rshares": "1669969392", + "voter": "bingo-1" + }, + { + "rshares": "5938061627471", + "voter": "smooth.witness" + }, + { + "rshares": "9408405427", + "voter": "idol" + }, + { + "rshares": "134476949201", + "voter": "team" + }, + { + "rshares": "290603380713", + "voter": "chitty" + }, + { + "rshares": "59271072026", + "voter": "unosuke" + }, + { + "rshares": "10884676283", + "voter": "yefet" + }, + { + "rshares": "1619428804", + "voter": "jocelyn" + }, + { + "rshares": "15316591171", + "voter": "gregory-f" + }, + { + "rshares": "9028507975", + "voter": "gregory60" + }, + { + "rshares": "1285091135093", + "voter": "gavvet" + }, + { + "rshares": "89896753810", + "voter": "eeks" + }, + { + "rshares": "1511911763", + "voter": "fkn" + }, + { + "rshares": "122160437", + "voter": "paco-steem" + }, + { + "rshares": "1471581374", + "voter": "spaninv" + }, + { + "rshares": "1987313581", + "voter": "elishagh1" + }, + { + "rshares": "8669787638", + "voter": "richman" + }, + { + "rshares": "599925765931", + "voter": "nanzo-scoop" + }, + { + "rshares": "9857353705", + "voter": "kefkius" + }, + { + "rshares": "177389912085", + "voter": "mummyimperfect" + }, + { + "rshares": "313687341", + "voter": "coar" + }, + { + "rshares": "106628118273", + "voter": "asch" + }, + { + "rshares": "1061159202", + "voter": "murh" + }, + { + "rshares": "3187771076", + "voter": "cryptofunk" + }, + { + "rshares": "591084449", + "voter": "kodi" + }, + { + "rshares": "2111391740", + "voter": "error" + }, + { + "rshares": "985477191740", + "voter": "cyber" + }, + { + "rshares": "61710385546", + "voter": "theshell" + }, + { + "rshares": "50878059993", + "voter": "ak2020" + }, + { + "rshares": "13256265846", + "voter": "johnerfx" + }, + { + "rshares": "409218031185", + "voter": "taoteh1221" + }, + { + "rshares": "95314034", + "voter": "stiletto" + }, + { + "rshares": "55528544371", + "voter": "kus-knee" + }, + { + "rshares": "1177332471", + "voter": "johnerminer" + }, + { + "rshares": "19213121851", + "voter": "ziv" + }, + { + "rshares": "280666949780", + "voter": "trogdor" + }, + { + "rshares": "6652542986", + "voter": "grandpere" + }, + { + "rshares": "5821005163", + "voter": "mark-waser" + }, + { + "rshares": "124413655063", + "voter": "geoffrey" + }, + { + "rshares": "16025151061", + "voter": "kimziv" + }, + { + "rshares": "77734412526", + "voter": "emily-cook" + }, + { + "rshares": "2187587354", + "voter": "superfreek" + }, + { + "rshares": "53269952968", + "voter": "pmartynov" + }, + { + "rshares": "48620303351", + "voter": "isteemit" + }, + { + "rshares": "30279417098", + "voter": "acassity" + }, + { + "rshares": "65769554169", + "voter": "norbu" + }, + { + "rshares": "3808133649", + "voter": "michaellamden68" + }, + { + "rshares": "20382096581", + "voter": "thebatchman" + }, + { + "rshares": "158987747182", + "voter": "asmolokalo" + }, + { + "rshares": "76019855821", + "voter": "rubybian" + }, + { + "rshares": "5270775482", + "voter": "riscadox" + }, + { + "rshares": "17903672525", + "voter": "konstantin" + }, + { + "rshares": "256623434", + "voter": "mstang83" + }, + { + "rshares": "373878481829", + "voter": "fabio" + }, + { + "rshares": "6941291365", + "voter": "gatoso" + }, + { + "rshares": "7380400309", + "voter": "furion" + }, + { + "rshares": "159573949583", + "voter": "jacor" + }, + { + "rshares": "147678292", + "voter": "cynetyc" + }, + { + "rshares": "18770255506", + "voter": "sebastien" + }, + { + "rshares": "12011479963", + "voter": "asim" + }, + { + "rshares": "14487056742", + "voter": "aaseb" + }, + { + "rshares": "4431046054", + "voter": "karen13" + }, + { + "rshares": "10645918815", + "voter": "deviedev" + }, + { + "rshares": "251364791827", + "voter": "nabilov" + }, + { + "rshares": "441803588", + "voter": "karenmckersie" + }, + { + "rshares": "871576606", + "voter": "luisucv34" + }, + { + "rshares": "54561525717", + "voter": "streetstyle" + }, + { + "rshares": "46854241122", + "voter": "milestone" + }, + { + "rshares": "35782000412", + "voter": "creemej" + }, + { + "rshares": "3878126092", + "voter": "maximkichev" + }, + { + "rshares": "15377574672", + "voter": "nippel66" + }, + { + "rshares": "171280078005", + "voter": "blueorgy" + }, + { + "rshares": "12324948767", + "voter": "benjiberigan" + }, + { + "rshares": "349568852", + "voter": "poseidon" + }, + { + "rshares": "2182574144", + "voter": "iamwne" + }, + { + "rshares": "347965502695", + "voter": "calaber24p" + }, + { + "rshares": "20119867662", + "voter": "mustafaomar" + }, + { + "rshares": "3576144996", + "voter": "simon.braki.love" + }, + { + "rshares": "82813520861", + "voter": "thylbom" + }, + { + "rshares": "3720107267", + "voter": "azurejasper" + }, + { + "rshares": "32541921491", + "voter": "deanliu" + }, + { + "rshares": "31308203650", + "voter": "sauravrungta" + }, + { + "rshares": "7659625135", + "voter": "neroru" + }, + { + "rshares": "215383763306", + "voter": "jl777" + }, + { + "rshares": "1226120506", + "voter": "positive" + }, + { + "rshares": "103577805737", + "voter": "crazymumzysa" + }, + { + "rshares": "6232841459", + "voter": "summonerrk" + }, + { + "rshares": "14894144779", + "voter": "lemooljiang" + }, + { + "rshares": "904575538", + "voter": "happyphoenix" + }, + { + "rshares": "43631243627", + "voter": "claudiop63" + }, + { + "rshares": "18175890702", + "voter": "proto" + }, + { + "rshares": "2708201174", + "voter": "sisterholics" + }, + { + "rshares": "8964609699", + "voter": "royalmacro" + }, + { + "rshares": "1802321537", + "voter": "remlaps" + }, + { + "rshares": "46040443375", + "voter": "jasonstaggers" + }, + { + "rshares": "13359113213", + "voter": "mahekg" + }, + { + "rshares": "845069114", + "voter": "metaflute" + }, + { + "rshares": "9193716733", + "voter": "taker" + }, + { + "rshares": "6521104126", + "voter": "nekromarinist" + }, + { + "rshares": "95766250088", + "voter": "laonie" + }, + { + "rshares": "161751897653", + "voter": "twinner" + }, + { + "rshares": "24560895252", + "voter": "laoyao" + }, + { + "rshares": "2664547502", + "voter": "myfirst" + }, + { + "rshares": "19439832856", + "voter": "somebody" + }, + { + "rshares": "65245460", + "voter": "ierg" + }, + { + "rshares": "16958164504", + "voter": "sunshine" + }, + { + "rshares": "726848341", + "voter": "flysaga" + }, + { + "rshares": "7706698035", + "voter": "asdes" + }, + { + "rshares": "2501620573", + "voter": "gmurph" + }, + { + "rshares": "1659697260", + "voter": "stormblaze" + }, + { + "rshares": "4294420153", + "voter": "midnightoil" + }, + { + "rshares": "2280336943", + "voter": "kalimor" + }, + { + "rshares": "84246848", + "voter": "coderg" + }, + { + "rshares": "2267389147", + "voter": "crypto-toll" + }, + { + "rshares": "4281204067", + "voter": "ullikume" + }, + { + "rshares": "10740550186", + "voter": "xiaohui" + }, + { + "rshares": "176650903994", + "voter": "terrycraft" + }, + { + "rshares": "461085584", + "voter": "elfkitchen" + }, + { + "rshares": "103384195129", + "voter": "joele" + }, + { + "rshares": "5823989445", + "voter": "oflyhigh" + }, + { + "rshares": "335807163", + "voter": "xiaokongcom" + }, + { + "rshares": "12961700193", + "voter": "gargon" + }, + { + "rshares": "2076619689", + "voter": "natalymaty" + }, + { + "rshares": "2002858998", + "voter": "future24" + }, + { + "rshares": "1405383530", + "voter": "hms818" + }, + { + "rshares": "3670417888", + "voter": "villainblack" + }, + { + "rshares": "3033035828", + "voter": "jrcornel" + }, + { + "rshares": "676921271", + "voter": "xianjun" + }, + { + "rshares": "25747116283", + "voter": "hanshotfirst" + }, + { + "rshares": "11541933907", + "voter": "borran" + }, + { + "rshares": "93797422302", + "voter": "miacats" + }, + { + "rshares": "2249572206", + "voter": "njall" + }, + { + "rshares": "6417144136", + "voter": "userlogin" + }, + { + "rshares": "2077199246", + "voter": "chinadaily" + }, + { + "rshares": "20666103650", + "voter": "anotherjoe" + }, + { + "rshares": "4879395119", + "voter": "almerri" + }, + { + "rshares": "8890516872", + "voter": "johnnyyash" + }, + { + "rshares": "3155389493", + "voter": "macartem" + }, + { + "rshares": "9310407829", + "voter": "gvargas123" + }, + { + "rshares": "4658385146", + "voter": "themanualbot" + }, + { + "rshares": "2148477670", + "voter": "levycore" + }, + { + "rshares": "406983674", + "voter": "mig641" + }, + { + "rshares": "56654664918", + "voter": "mandibil" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "54612436", + "voter": "riv" + }, + { + "rshares": "2196749616", + "voter": "runridefly" + }, + { + "rshares": "2458800256", + "voter": "seva" + }, + { + "rshares": "7375519035", + "voter": "macksby" + }, + { + "rshares": "1931998664", + "voter": "funkywanderer" + }, + { + "rshares": "5053531368", + "voter": "richardcrill" + }, + { + "rshares": "1625387426", + "voter": "davidjkelley" + }, + { + "rshares": "182060433", + "voter": "greatness" + }, + { + "rshares": "27673580803", + "voter": "sponge-bob" + }, + { + "rshares": "15231878384", + "voter": "digital-wisdom" + }, + { + "rshares": "3710834980", + "voter": "ethical-ai" + }, + { + "rshares": "6682569853", + "voter": "jwaser" + }, + { + "rshares": "51964388", + "voter": "apparat" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "224088474986", + "voter": "asksisk" + }, + { + "rshares": "113366516", + "voter": "edgarsart" + }, + { + "rshares": "26377562678", + "voter": "dubi" + }, + { + "rshares": "2617262426", + "voter": "bwaser" + }, + { + "rshares": "337248470", + "voter": "panther" + }, + { + "rshares": "27667123071", + "voter": "brains" + }, + { + "rshares": "50450987", + "voter": "waldemar-kuhn" + }, + { + "rshares": "5753092824", + "voter": "chick1" + }, + { + "rshares": "51637870", + "voter": "aoki" + }, + { + "rshares": "51568971", + "voter": "typingagent" + }, + { + "rshares": "51581492", + "voter": "cwb" + }, + { + "rshares": "3623547539", + "voter": "slayer" + }, + { + "rshares": "407122760", + "voter": "anomaly" + }, + { + "rshares": "27667189544", + "voter": "tarekadam" + }, + { + "rshares": "2401230307", + "voter": "ellepdub" + }, + { + "rshares": "123128317", + "voter": "ola1" + }, + { + "rshares": "12115121436", + "voter": "herpetologyguy" + }, + { + "rshares": "52460746", + "voter": "cryptofarmer" + }, + { + "rshares": "4712097333", + "voter": "morgan.waser" + }, + { + "rshares": "50228382", + "voter": "dragonice" + }, + { + "rshares": "50223099", + "voter": "battalar" + }, + { + "rshares": "51218466", + "voter": "weare" + }, + { + "rshares": "50139069", + "voter": "slow" + }, + { + "rshares": "50907857", + "voter": "oxygen" + }, + { + "rshares": "50873654", + "voter": "palladium" + }, + { + "rshares": "117919744", + "voter": "optimistic-crone" + }, + { + "rshares": "50540827", + "voter": "amstel" + }, + { + "rshares": "50484452", + "voter": "connect" + }, + { + "rshares": "88287639", + "voter": "remlaps1" + }, + { + "rshares": "3609516222", + "voter": "strong-ai" + }, + { + "rshares": "230273165", + "voter": "sjamayee" + }, + { + "rshares": "162925257", + "voter": "uct" + }, + { + "rshares": "435365865", + "voter": "witchcraftblog" + }, + { + "rshares": "161218747", + "voter": "sdc" + }, + { + "rshares": "161179339", + "voter": "bethesda" + }, + { + "rshares": "161096439", + "voter": "bethsoft" + }, + { + "rshares": "157816798", + "voter": "gravity" + }, + { + "rshares": "157726117", + "voter": "illusions" + }, + { + "rshares": "160861015", + "voter": "cybergirl" + }, + { + "rshares": "3941523341", + "voter": "dresden" + }, + { + "rshares": "164549939", + "voter": "pawel-krawczyk" + }, + { + "rshares": "159352476", + "voter": "panic" + }, + { + "rshares": "158638676", + "voter": "icesteem" + }, + { + "rshares": "32369065992", + "voter": "goldmatters" + }, + { + "rshares": "702613929", + "voter": "reddust" + }, + { + "rshares": "150387842", + "voter": "trickster512" + } + ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": ">Today I told my dad the final date of my marriage: October 2nd . Few days ago, as I told him that I was going to get married in a few weeks, he got mad at me. \u201cI was expecting you to get a real job before you got married!\u201d was his main critique. \u201cHow can you get married *now*?\u201d he asked me.\n\nOggi ho detto a mio padre la data definitiva del mio matrimonio: due ottobre. Pochi giorni fa, quando gli ho detto che mi sarei sposato nel giro di poche settimane, si \u00e8 arrabbiato con me. \u201cMi sarei aspettato che ti trovassi un lavoro vero prima di sposarti\u201d \u00e8 stato il suo principale oggetto di critica. \u201cCome puoi sposarti *adesso*?\u201d mi ha chiesto.\n\n>Let me give you some background. I\u2019m 29 years old and I want to do many things in my life. I studied economics, worked for no-profit and academia and I published a book in May on the shifting economic paradigm. I dedicated the last year to this book, spent all the savings I had and by now I have a few weeks of financial autonomy left. Meanwhile I rented a room on Airbnb, learned how to do bracelets and sold them on the Ligurian (North-West Italy) seaside. Simultaneously, I\u2019m working on becoming what I call a cryptofarmer: in fact, my goal is to write and earn cryptocurrencies while living in the countryside in a small house I\u2019m transforming into a farm. I learned how to plant a vegetable garden, how to chop wood and limiting the expenses of food and heating.\nEven if sometimes I\u2019m scared I could not afford a living, I feeI I can make it. We can make it. In fact, few months ago a girl I met last winter in Chile joined me and is providing great help with her skills and work. And I\u2019m going to marry her in a few weeks, as I said.\n\nFacciamo un passo indietro. Ho 29 anni e voglio fare tante cose nella mia vita. Ho studiato economia, lavorato nel no-profit e nel mondo accademico per poi pubblicare, a maggio di quest\u2019anno, un libro sul cambio di paradigma in economia. Ho dedicato l\u2019ultimo anno a questo libro, ho speso tutti i miei risparmi e ho davanti ancora qualche settimana di autonomia finanziaria. Nel frattempo ho affittato una stanza su Airbnb e imparato a fare braccialetti che ho venduto sulla costa ligure. Parallelamente lavoro per diventare quello che chiamo un cryptofarmer; il mio obiettivo \u00e8 infatti quello di scrivere e guadagnare cripto-valute mentre vivo in una piccola casa di campagna che sto trasformando in fattoria. Ho imparato come piantare un orto, spaccare la legna e limitare le spese di cibo e riscaldamento.\nAnche se a volte ho paura di non riuscire a guadagnarmi da vivere, sento che ce la posso fare. Che ce la *possiamo* fare. Qualche mese fa, infatti, una ragazza che ho conosciuto lo scorso inverno in Cile si \u00e8 unita ai miei progetti e mi sta dando un grosso aiuto con le sue capacit\u00e0 e il suo lavoro. E io la sposer\u00f2 in qualche settimana, come dicevo.\n>My father is 69 years old. Oddly enough, he actually left countryside for the city \u2013 a choice diametrically opposite to the one I made \u2013 to become a lawyer and had success by working really hard. As far as I know, he wanted to be a journalist but chose to be a lawyer to get a better salary \u2013 as he got. He wanted me to be a lawyer too, of course, but when I chose to study economics he told me I could become an auditor; those were professions, in his words, that paid good.\n\nMio padre ha 69 anni. E\u2019 curioso come lui lasci\u00f2 la campagna per la citt\u00e0 \u2013 una scelta diametralmente opposta a quella che ho fatto io \u2013 per diventare un avvocato e l\u00ec ha avuto successo lavorando molto. Da quel che so, lui voleva fare il giornalista da giovane, ma poi ha scelto di fare l\u2019avvocato per avere un miglior salario \u2013 come appunto si \u00e8 verificato. Chiaramente voleva che anche io facessi l\u2019avvocato e successivamente, quando io scelsi di studiare economia, mi disse che potevo diventare il revisore contabile; mestieri, questi, che secondo lui erano ben remunerati. \n>Dear dad,\nA couple of years ago, you told that you were eventually glad I didn\u2019t follow your path and became a lawyer. The job had changed too much, you said. Now too many lawyers are fighting one against each other to get the job and clients are not paying for the work you did for them. That\u2019s how you described me your job \u2013 a job that in Italy, for your generation, was a synonym of success. A son who became a lawyer was a dream for the average family.\nWell, I\u2019m going to add a little piece to this picture. In a few decades, the whole profession of lawyer may become obsolete. Do you know that even today you can ask legal question to [Ross](http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html), an IBM powered machine? It will provide you an answer by sifting through thousands of legal documents, statutes and cases - assisting you to get ready for the case by including citations, suggested readings and confidence ratings. \nToday few technologies are ready to disrupt whole sectors of the economy. One of these is Artificial Intelligence that could make your profession obsolete. Another is the blockchain: that one could make the auditor and accountancy profession useless too. Have you ever heard about it? Some say it\u2019s important as the invention of the Internet.\n\nCaro pap\u00e0,\nQualche anno fa mi hai detto che in fin dei conti eri contento che non avessi seguito la tua strada e fossi diventato un avvocato. Il lavoro \u00e8 cambiato troppo, hai detto. Troppi avvocati in conflitto l\u2019uno contro l\u2019altro per accaparrarsi clienti che poi non pagano il lavoro che fai per loro. Cos\u00ec mi hai descritto il tuo lavoro \u2013 un lavoro che in Italia, per la tua generazione, era sinonimo di successo. Un figlio che diventava avvocato era un sogno per la famiglia media.\nBeh, lasciami aggiungere un pezzo a questa storia. In un paio di decadi, la professione stessa dell\u2019avvocato potrebbe diventare obsoleta. Sai che gi\u00e0 oggi puoi chiedere un parere legale a [Ross](http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html), una macchina sviluppata da IBM? Ti restituisce una risposta setacciando migliaia di documenti legali, statuti e casi \u2013 assistendoti a prepararti al caso includendo citazioni, letture consigliate e intervalli di confidenza. Alcune tecnologie sono sul punto di rivoluzionare interi settori dell\u2019economia. Una di queste \u00e8 l\u2019intelligenza artificiale che potrebbe rendere obsoleta la tua professione. Un\u2019altra \u00e8 la blockchain: questa potrebbe rendere inutile la professione del contabile e del revisore. Ne hai mai sentito parlare? Alcuni dicono che \u00e8 importante quanto l\u2019invenzione di Internet.\n>**You should really be glad I didn\u2019t choose your job just because it paid good**. As I was 18 (in 2005) being a lawyer paid good, in a decade it wasn\u2019t the case anymore. **In fact, between 2007 and 2014 the average income reported by Italian lawyers [declined from 51.314 euro to 37.505]( http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare)**. Well, last decade \u2013 it is to be said - was a *century*: while economy collapsed in one of the worst crisis ever, technology produced unparalleled innovations. Before 2005 there was no Youtube. In 2005 there was no smartphone either. No-one can tell what are we going to see in the next decade. Some say there will be some big change in the workplace. In fact, [some researchers at Oxford]( http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf) say that by 2035, half of the jobs Americans currently hold will be automatized. **Robots are simply better than men in doing robotic work**. Even the world\u2019s most ancient profession may suffer a strong decline with the development of virtual reality \u2013 this has become the next big thing in adult entertainment.\n\n**Devi essere davvero contento che non abbia scelto il tuo lavoro solo perch\u00e9 era ben remunerato**. Quando ancora io avevo 18 anni (nel 2005) fare l\u2019avvocato era remunerativo, ma nell\u2019arco di un decennio ci\u00f2 non era pi\u00f9 vero. **Tra il 2007 e il 2014 il reddito medio dell\u2019avvocato italiano [\u00e8 sceso da 51.314 euro a 37.505 euro]( http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare)**. L\u2019ultimo decennio \u2013 bisogna riconoscerlo - ha rappresentato un *secolo*: mentre l\u2019economia collassava in una delle peggiori crisi di sempre, la tecnologia produceva innovazioni senza pari. Prima del 2005 non c\u2019era Youtube. Prima del 2005 non c\u2019era nemmeno lo smartphone. Nessuno pu\u00f2 dire cosa vedremo nel prossimo decennio. Molti dicono che ci saranno grossi cambiamenti sul luogo di lavoro. [Alcuni ricercatori di Oxford]( http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf) dicono che entro il 2035, il 45% dei lavori attualmente svolti dagli americani verr\u00e0 automatizzato. **I robot svolgono meglio degli uomini i lavori da robot**. Perfino il mestiere pi\u00f9 vecchio del mondo potrebbe risentire di un forte declino a seguito dello sviluppo della realt\u00e0 virtuale \u2013 questa \u00e8 diventata l\u2019ultima novit\u00e0 nel mondo dell\u2019intrattenimento per adulti.\n>Don\u2019t worry, dad, and don\u2019t look at me as someone who is living hand to mouth. Many things are changing in the next years, together with most of the reference points we had. Those jobs who were good, could not be profitable and stable anymore. Most of all, the same idea of stability will change: we\u2019ll have to find stability surfing between waves of change. Choosing a job just because it pays good today, may not be a good strategy. **My generation is challenged to find and develop that personal value, those talents, that no machine could substitute. This is what I\u2019m doing \u2013 soon I\u2019ll write you how**.\n\nPer questo, pap\u00e0, non preoccuparti e non guardarmi come si guarda un figlio che vive di espedienti. Molte cose cambieranno nei prossimi anni, insieme a molti dei punti di riferimento che avevamo. Quei lavori che prima erano buoni, potrebbero non essere pi\u00f9 remunerativi e stabili. Pi\u00f9 di tutto, cambier\u00e0 l\u2019idea di stabilit\u00e0: dovremmo imparare a trovare la stabilit\u00e0 di un surfista a cavallo di ondate di cambiamento. Scegliere un lavoro solo perch\u00e9 paga bene oggi, potrebbe non essere una strategia che paga. **La sfida per la mia generazione \u00e8 di trovare e sviluppare quel valore personale, quei talenti, che nessuna macchina pu\u00f2 sostituire. Questo \u00e8 quello che sto facendo io \u2013 presto ti scriver\u00f2 come**.\n\nhttp://i68.tinypic.com/2hz9lz.jpg \n\n*Me, dad, fianc\u00e9, mum*\n\n***Don't forget to follow @cryptofarmer***\n***a shout out goes to @claudiop63 for assisting the Italian community so don't forget to follow him***", + "category": "life", + "children": 11, + "created": "2016-09-15T14:01:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i68.tinypic.com/2hz9lz.jpg" + ], + "links": [ + "http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html", + "http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare", + "http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf" + ], + "tags": [ + "life", + "introducemyself" + ], + "users": [ + "cryptofarmer", + "claudiop63" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66723421210839, + "payout": 259.877, + "payout_at": "2016-09-16T14:29:03", + "pending_payout_value": "259.877 HBD", + "percent_steem_dollars": 10000, + "permlink": "letters-to-my-dad-on-the-changing-world-with-italian-featuring-cryptofarmer-as-author", + "post_id": 957976, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 220 + }, + "title": "Letters to my dad on the changing world... with Italian(featuring @cryptofarmer as author)", + "updated": "2016-09-15T14:01:30", + "url": "/life/@gavvet/letters-to-my-dad-on-the-changing-world-with-italian-featuring-cryptofarmer-as-author" + }, + { + "active_votes": [ + { + "rshares": "480579269556", + "voter": "barrie" + }, + { + "rshares": "231751293887", + "voter": "anonymous" + }, + { + "rshares": "12889266254874", + "voter": "rainman" + }, + { + "rshares": "26305603050148", + "voter": "berniesanders" + }, + { + "rshares": "15605000000000", + "voter": "val-b" + }, + { + "rshares": "3358053566682", + "voter": "riverhead" + }, + { + "rshares": "1990377241911", + "voter": "badassmother" + }, + { + "rshares": "187617413684", + "voter": "nextgenwitness" + }, + { + "rshares": "3306757675077", + "voter": "pharesim" + }, + { + "rshares": "2005106058621", + "voter": "hr1" + }, + { + "rshares": "640773963547", + "voter": "justin" + }, + { + "rshares": "1758663279793", + "voter": "silver" + }, + { + "rshares": "4166786907723", + "voter": "silversteem" + }, + { + "rshares": "4851657471753", + "voter": "nextgencrypto" + }, + { + "rshares": "22381565222", + "voter": "jaewoocho" + }, + { + "rshares": "1869062512579", + "voter": "xeroc" + }, + { + "rshares": "425868900225", + "voter": "steemservices" + }, + { + "rshares": "209639354860", + "voter": "alex90342fastn1" + }, + { + "rshares": "1607381560851", + "voter": "joseph" + }, + { + "rshares": "452603688207", + "voter": "recursive3" + }, + { + "rshares": "588963325183", + "voter": "masteryoda" + }, + { + "rshares": "3051642158867", + "voter": "recursive" + }, + { + "rshares": "1172473837", + "voter": "mineralwasser" + }, + { + "rshares": "85737349562", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "1620255991", + "voter": "bingo-1" + }, + { + "rshares": "438041274025", + "voter": "boatymcboatface" + }, + { + "rshares": "9404339123", + "voter": "idol" + }, + { + "rshares": "2692207475582", + "voter": "donkeypong" + }, + { + "rshares": "783510713656", + "voter": "steemrollin" + }, + { + "rshares": "4632015537", + "voter": "sakr" + }, + { + "rshares": "283944946279", + "voter": "chitty" + }, + { + "rshares": "47092417970", + "voter": "alexgr" + }, + { + "rshares": "1660446343", + "voter": "jocelyn" + }, + { + "rshares": "83523204254", + "voter": "acidsun" + }, + { + "rshares": "148150884169", + "voter": "edgeland" + }, + { + "rshares": "194244553812", + "voter": "jamtaylor" + }, + { + "rshares": "74898454777", + "voter": "eeks" + }, + { + "rshares": "468170958", + "voter": "paco-steem" + }, + { + "rshares": "912602737692", + "voter": "cryptogee" + }, + { + "rshares": "5638722045", + "voter": "spaninv" + }, + { + "rshares": "25545945557", + "voter": "georgedonnelly" + }, + { + "rshares": "31081352622", + "voter": "instructor2121" + }, + { + "rshares": "7891620962", + "voter": "nate-atkins" + }, + { + "rshares": "18533432464", + "voter": "james-show" + }, + { + "rshares": "319841523573", + "voter": "teamsteem" + }, + { + "rshares": "1713517353627", + "voter": "cryptoctopus" + }, + { + "rshares": "9535707424", + "voter": "richman" + }, + { + "rshares": "550546408583", + "voter": "nanzo-scoop" + }, + { + "rshares": "13340014301", + "voter": "fact" + }, + { + "rshares": "160905828175", + "voter": "steve-walschot" + }, + { + "rshares": "10099012692", + "voter": "cian.dafe" + }, + { + "rshares": "47422549796", + "voter": "hannixx42" + }, + { + "rshares": "169123085990", + "voter": "mummyimperfect" + }, + { + "rshares": "268838726", + "voter": "coar" + }, + { + "rshares": "98194455049", + "voter": "asch" + }, + { + "rshares": "603531864037", + "voter": "kevinwong" + }, + { + "rshares": "1060920601", + "voter": "murh" + }, + { + "rshares": "3041891225", + "voter": "cryptofunk" + }, + { + "rshares": "3140744830", + "voter": "radioactivities" + }, + { + "rshares": "2164686241", + "voter": "error" + }, + { + "rshares": "5736901624", + "voter": "marta-zaidel" + }, + { + "rshares": "40014025775", + "voter": "ranko-k" + }, + { + "rshares": "985042955913", + "voter": "cyber" + }, + { + "rshares": "48237714954", + "voter": "ak2020" + }, + { + "rshares": "65573912297", + "voter": "justtryme90" + }, + { + "rshares": "33032554744", + "voter": "drinkzya" + }, + { + "rshares": "3616249140600", + "voter": "satoshifund" + }, + { + "rshares": "392453750650", + "voter": "taoteh1221" + }, + { + "rshares": "418804855", + "voter": "applecrisp" + }, + { + "rshares": "365287420", + "voter": "stiletto" + }, + { + "rshares": "55576340008", + "voter": "juanmiguelsalas" + }, + { + "rshares": "572341707403", + "voter": "andrarchy" + }, + { + "rshares": "110473581518", + "voter": "kenny-crane" + }, + { + "rshares": "54694274623", + "voter": "thecryptodrive" + }, + { + "rshares": "353770070386", + "voter": "kaylinart" + }, + { + "rshares": "563733180586", + "voter": "infovore" + }, + { + "rshares": "132301151875", + "voter": "schro" + }, + { + "rshares": "4552145645", + "voter": "tee-em" + }, + { + "rshares": "30491735429", + "voter": "michaelx" + }, + { + "rshares": "804471067802", + "voter": "anwenbaumeister" + }, + { + "rshares": "8928351544", + "voter": "grandpere" + }, + { + "rshares": "5689049935", + "voter": "mark-waser" + }, + { + "rshares": "17023109715", + "voter": "albertogm" + }, + { + "rshares": "106033721718", + "voter": "geoffrey" + }, + { + "rshares": "192232704674", + "voter": "kimziv" + }, + { + "rshares": "267994388047", + "voter": "lukestokes" + }, + { + "rshares": "43526357269", + "voter": "honeythief" + }, + { + "rshares": "783400875", + "voter": "mammasitta" + }, + { + "rshares": "77695030973", + "voter": "emily-cook" + }, + { + "rshares": "32733174015", + "voter": "talanhorne" + }, + { + "rshares": "81716838174", + "voter": "razvanelulmarin" + }, + { + "rshares": "2122888373", + "voter": "superfreek" + }, + { + "rshares": "33245604843", + "voter": "cryptoiskey" + }, + { + "rshares": "11728574802", + "voter": "primus" + }, + { + "rshares": "471495169", + "voter": "mrhankeh" + }, + { + "rshares": "37138635112", + "voter": "clement" + }, + { + "rshares": "47416157546", + "voter": "isteemit" + }, + { + "rshares": "67109183200", + "voter": "norbu" + }, + { + "rshares": "280886491", + "voter": "ladyclair" + }, + { + "rshares": "69639423700", + "voter": "bacchist" + }, + { + "rshares": "53810463964", + "voter": "venuspcs" + }, + { + "rshares": "3806124499", + "voter": "michaellamden68" + }, + { + "rshares": "7415227922", + "voter": "dasha" + }, + { + "rshares": "174543034217", + "voter": "asmolokalo" + }, + { + "rshares": "55965693937", + "voter": "ezzy" + }, + { + "rshares": "69473128292", + "voter": "rubybian" + }, + { + "rshares": "3148262011", + "voter": "orly" + }, + { + "rshares": "46383380668", + "voter": "firepower" + }, + { + "rshares": "245172817", + "voter": "mstang83" + }, + { + "rshares": "24863029935", + "voter": "katyakov" + }, + { + "rshares": "15674042620", + "voter": "yogi.artist" + }, + { + "rshares": "14215545466", + "voter": "r4fken" + }, + { + "rshares": "1001850942", + "voter": "steemswede" + }, + { + "rshares": "142892158061", + "voter": "derekareith" + }, + { + "rshares": "823059128625", + "voter": "slowwalker" + }, + { + "rshares": "1553964832", + "voter": "btcshare7" + }, + { + "rshares": "2210761988", + "voter": "vi1son" + }, + { + "rshares": "1267696038568", + "voter": "renohq" + }, + { + "rshares": "98005962692", + "voter": "sigmajin" + }, + { + "rshares": "14876241153", + "voter": "ausbitbank" + }, + { + "rshares": "45733145544", + "voter": "mrwang" + }, + { + "rshares": "2530804964", + "voter": "steem1653" + }, + { + "rshares": "188405790343", + "voter": "anyx" + }, + { + "rshares": "7540907296", + "voter": "steemit-life" + }, + { + "rshares": "11754696821", + "voter": "asim" + }, + { + "rshares": "320414159082", + "voter": "jesta" + }, + { + "rshares": "90257674", + "voter": "snowden" + }, + { + "rshares": "14289427593", + "voter": "aaseb" + }, + { + "rshares": "1107704273", + "voter": "karen13" + }, + { + "rshares": "10417290332", + "voter": "deviedev" + }, + { + "rshares": "258942997644", + "voter": "nabilov" + }, + { + "rshares": "17586922894", + "voter": "meesterboom" + }, + { + "rshares": "8573230772", + "voter": "noodhoog" + }, + { + "rshares": "6400554488", + "voter": "juvyjabian" + }, + { + "rshares": "2668109030", + "voter": "dmacshady" + }, + { + "rshares": "476670464", + "voter": "karenmckersie" + }, + { + "rshares": "451014793670", + "voter": "knozaki2015" + }, + { + "rshares": "44553728340", + "voter": "milestone" + }, + { + "rshares": "7312894074", + "voter": "lichtblick" + }, + { + "rshares": "84865861", + "voter": "wildchild" + }, + { + "rshares": "5726094484", + "voter": "btcbtcbtc20155" + }, + { + "rshares": "15683266563", + "voter": "nippel66" + }, + { + "rshares": "4317565662", + "voter": "oululahti" + }, + { + "rshares": "4310346145", + "voter": "poseidon" + }, + { + "rshares": "3365335082", + "voter": "simon.braki.love" + }, + { + "rshares": "76406992485", + "voter": "thylbom" + }, + { + "rshares": "7311858289", + "voter": "geronimo" + }, + { + "rshares": "10684939578", + "voter": "rpf" + }, + { + "rshares": "3692989929", + "voter": "bitcoiner" + }, + { + "rshares": "3756550273", + "voter": "tarindel" + }, + { + "rshares": "3712828665", + "voter": "azurejasper" + }, + { + "rshares": "279059042940", + "voter": "liberosist" + }, + { + "rshares": "30859119533", + "voter": "deanliu" + }, + { + "rshares": "5496325958", + "voter": "sharker" + }, + { + "rshares": "33395139065", + "voter": "sauravrungta" + }, + { + "rshares": "84683756607", + "voter": "rea" + }, + { + "rshares": "53842086331", + "voter": "jl777" + }, + { + "rshares": "29215490743", + "voter": "zaebars" + }, + { + "rshares": "1700143919", + "voter": "yarly" + }, + { + "rshares": "256282552", + "voter": "yarly2" + }, + { + "rshares": "256665987", + "voter": "yarly3" + }, + { + "rshares": "148269777", + "voter": "yarly4" + }, + { + "rshares": "149106888", + "voter": "yarly5" + }, + { + "rshares": "84991309", + "voter": "yarly7" + }, + { + "rshares": "779992403", + "voter": "raymonjohnstone" + }, + { + "rshares": "50619397", + "voter": "steemchain" + }, + { + "rshares": "50619397", + "voter": "whalepool" + }, + { + "rshares": "5218510034", + "voter": "gustavopasquini" + }, + { + "rshares": "32308067031", + "voter": "papa-pepper" + }, + { + "rshares": "16539590111", + "voter": "winstonwolfe" + }, + { + "rshares": "885730214", + "voter": "happyphoenix" + }, + { + "rshares": "21120708735", + "voter": "krabgat" + }, + { + "rshares": "474951354", + "voter": "kooshikoo" + }, + { + "rshares": "4543692384", + "voter": "proto" + }, + { + "rshares": "634121191", + "voter": "curator" + }, + { + "rshares": "31584377035", + "voter": "sisterholics" + }, + { + "rshares": "411321155", + "voter": "yarly10" + }, + { + "rshares": "1365664469", + "voter": "alex.chien" + }, + { + "rshares": "220139771", + "voter": "yarly11" + }, + { + "rshares": "76966318", + "voter": "yarly12" + }, + { + "rshares": "3675499938", + "voter": "tygergamer" + }, + { + "rshares": "173441395", + "voter": "kibela" + }, + { + "rshares": "376816435", + "voter": "alanc" + }, + { + "rshares": "238488697", + "voter": "bullionstackers" + }, + { + "rshares": "245216458115", + "voter": "originate" + }, + { + "rshares": "3361197115", + "voter": "sulev" + }, + { + "rshares": "121123550176", + "voter": "sterlinluxan" + }, + { + "rshares": "108721833", + "voter": "cryptoz" + }, + { + "rshares": "46036044554", + "voter": "jasonstaggers" + }, + { + "rshares": "131896331875", + "voter": "steemdrive" + }, + { + "rshares": "114064883", + "voter": "andrew-charles" + }, + { + "rshares": "1024314167", + "voter": "metaflute" + }, + { + "rshares": "50563376844", + "voter": "gomeravibz" + }, + { + "rshares": "2298283061", + "voter": "taker" + }, + { + "rshares": "4238154544", + "voter": "nekromarinist" + }, + { + "rshares": "230729901", + "voter": "frozendota" + }, + { + "rshares": "14753485936", + "voter": "felixxx" + }, + { + "rshares": "9904971006", + "voter": "dumar022" + }, + { + "rshares": "2236125772", + "voter": "merej99" + }, + { + "rshares": "1116584393219", + "voter": "laonie" + }, + { + "rshares": "23391691291", + "voter": "rawnetics" + }, + { + "rshares": "47378225109", + "voter": "capitalism" + }, + { + "rshares": "72994310", + "voter": "always1success" + }, + { + "rshares": "11693177698", + "voter": "thebluepanda" + }, + { + "rshares": "22955094272", + "voter": "laonie1" + }, + { + "rshares": "23470889026", + "voter": "laonie2" + }, + { + "rshares": "23479197538", + "voter": "laonie3" + }, + { + "rshares": "23907912804", + "voter": "laoyao" + }, + { + "rshares": "37203693135", + "voter": "myfirst" + }, + { + "rshares": "226716353883", + "voter": "somebody" + }, + { + "rshares": "8719381987", + "voter": "flysaga" + }, + { + "rshares": "4930352522", + "voter": "brendio" + }, + { + "rshares": "2082768176", + "voter": "gmurph" + }, + { + "rshares": "75896047", + "voter": "kurzer42" + }, + { + "rshares": "50083801467", + "voter": "midnightoil" + }, + { + "rshares": "2375155298", + "voter": "kalimor" + }, + { + "rshares": "85931785", + "voter": "coderg" + }, + { + "rshares": "4371109343", + "voter": "ullikume" + }, + { + "rshares": "50565616", + "voter": "michellek" + }, + { + "rshares": "23474742068", + "voter": "laonie4" + }, + { + "rshares": "23472418592", + "voter": "laonie5" + }, + { + "rshares": "23469546880", + "voter": "laonie6" + }, + { + "rshares": "23465711623", + "voter": "laonie7" + }, + { + "rshares": "3820532578", + "voter": "kurtbeil" + }, + { + "rshares": "23462236775", + "voter": "laonie8" + }, + { + "rshares": "23459668262", + "voter": "laonie9" + }, + { + "rshares": "2440083379", + "voter": "steemleak" + }, + { + "rshares": "112055912400", + "voter": "thisisbenbrick" + }, + { + "rshares": "125244617154", + "voter": "xiaohui" + }, + { + "rshares": "21110659306", + "voter": "jphamer1" + }, + { + "rshares": "94018543", + "voter": "bigsambucca" + }, + { + "rshares": "5946773586", + "voter": "elfkitchen" + }, + { + "rshares": "5766554064", + "voter": "oflyhigh" + }, + { + "rshares": "2142137848", + "voter": "paynode" + }, + { + "rshares": "62525016", + "voter": "nickche" + }, + { + "rshares": "303568520", + "voter": "rusteller" + }, + { + "rshares": "260000341079", + "voter": "sirwinchester" + }, + { + "rshares": "4028395316", + "voter": "xiaokongcom" + }, + { + "rshares": "12683521359", + "voter": "gargon" + }, + { + "rshares": "2305504187", + "voter": "pgarcgo" + }, + { + "rshares": "2447938775", + "voter": "future24" + }, + { + "rshares": "8120387338", + "voter": "xianjun" + }, + { + "rshares": "7546495705", + "voter": "lgm-1" + }, + { + "rshares": "77724719", + "voter": "evgenyche" + }, + { + "rshares": "69130289", + "voter": "stevescriber" + }, + { + "rshares": "3277990744", + "voter": "bledarus" + }, + { + "rshares": "50027573", + "voter": "loli" + }, + { + "rshares": "89195680289", + "voter": "miacats" + }, + { + "rshares": "52419023", + "voter": "nano2nd" + }, + { + "rshares": "531944476", + "voter": "microluck" + }, + { + "rshares": "77220767", + "voter": "razberrijam" + }, + { + "rshares": "1952786674", + "voter": "chinadaily" + }, + { + "rshares": "13869624454", + "voter": "kyriacos" + }, + { + "rshares": "36244326905", + "voter": "thecurator" + }, + { + "rshares": "59021275", + "voter": "cryptoblu" + }, + { + "rshares": "59014859", + "voter": "instructor" + }, + { + "rshares": "739426684571", + "voter": "dollarvigilante" + }, + { + "rshares": "93497889783", + "voter": "anotherjoe" + }, + { + "rshares": "7166212158", + "voter": "solarguy" + }, + { + "rshares": "3897735456", + "voter": "lamech-m" + }, + { + "rshares": "84681497836", + "voter": "serejandmyself" + }, + { + "rshares": "9544116466", + "voter": "mrgrey" + }, + { + "rshares": "728730693", + "voter": "alexma3x" + }, + { + "rshares": "9825243280", + "voter": "gvargas123" + }, + { + "rshares": "13829552678", + "voter": "cryptomancer" + }, + { + "rshares": "58964015", + "voter": "dimitriy" + }, + { + "rshares": "23453540976", + "voter": "laonie10" + }, + { + "rshares": "604185913", + "voter": "wuyueling" + }, + { + "rshares": "73276984296", + "voter": "sweetsssj" + }, + { + "rshares": "2803446535", + "voter": "netaterra" + }, + { + "rshares": "50816343", + "voter": "bitchplease" + }, + { + "rshares": "92899380169", + "voter": "barrycooper" + }, + { + "rshares": "79979619", + "voter": "joelbow" + }, + { + "rshares": "11300097831", + "voter": "sethlinson" + }, + { + "rshares": "29734500129", + "voter": "hilarski" + }, + { + "rshares": "2392467864", + "voter": "shadowspub" + }, + { + "rshares": "267071524484", + "voter": "oldtimer" + }, + { + "rshares": "32411487065", + "voter": "daut44" + }, + { + "rshares": "4580262873", + "voter": "steemitpatina" + }, + { + "rshares": "4768611178", + "voter": "fat-like-buddha" + }, + { + "rshares": "55859919", + "voter": "rickmiller" + }, + { + "rshares": "1233668048", + "voter": "lenar" + }, + { + "rshares": "2076202607", + "voter": "cryptoeasy" + }, + { + "rshares": "5154805617", + "voter": "nulliusinverba" + }, + { + "rshares": "110647858832", + "voter": "shenanigator" + }, + { + "rshares": "2908012841", + "voter": "daveks" + }, + { + "rshares": "7471182625", + "voter": "einsteinpotsdam" + }, + { + "rshares": "23133191472", + "voter": "laonie11" + }, + { + "rshares": "1552512887", + "voter": "davidjkelley" + }, + { + "rshares": "1878628053", + "voter": "mobios" + }, + { + "rshares": "20853973484", + "voter": "sponge-bob" + }, + { + "rshares": "4324039528", + "voter": "l0k1" + }, + { + "rshares": "14886230314", + "voter": "digital-wisdom" + }, + { + "rshares": "3547902817", + "voter": "ethical-ai" + }, + { + "rshares": "50784892", + "voter": "freesteem" + }, + { + "rshares": "6531322926", + "voter": "jwaser" + }, + { + "rshares": "161709465048", + "voter": "thecyclist" + }, + { + "rshares": "1018513187", + "voter": "zettar" + }, + { + "rshares": "122271956", + "voter": "tito-baron" + }, + { + "rshares": "1735431749", + "voter": "kiwideb" + }, + { + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "rshares": "2558000160", + "voter": "bwaser" + }, + { + "rshares": "5773395051", + "voter": "dexter-k" + }, + { + "rshares": "50751176", + "voter": "roadhog" + }, + { + "rshares": "2201645172", + "voter": "alina1" + }, + { + "rshares": "50639382", + "voter": "doggnostic" + }, + { + "rshares": "644579979", + "voter": "ct-gurus" + }, + { + "rshares": "50377764", + "voter": "jenny-talls" + }, + { + "rshares": "386792765707", + "voter": "charlieshrem" + }, + { + "rshares": "7681172153", + "voter": "mariandavp" + }, + { + "rshares": "60088527835", + "voter": "tracemayer" + }, + { + "rshares": "20817850462", + "voter": "brains" + }, + { + "rshares": "50210467", + "voter": "post-successful" + }, + { + "rshares": "1049744855", + "voter": "positivesteem" + }, + { + "rshares": "5470937952", + "voter": "chick1" + }, + { + "rshares": "1735164858", + "voter": "sens" + }, + { + "rshares": "50584036", + "voter": "aoki" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "503052886", + "voter": "echoesinthemind" + }, + { + "rshares": "57534146", + "voter": "freebornangel" + }, + { + "rshares": "2084741030", + "voter": "steemsquad" + }, + { + "rshares": "255505026", + "voter": "anomaly" + }, + { + "rshares": "2293549771", + "voter": "ellepdub" + }, + { + "rshares": "1550172009", + "voter": "allesgruen" + }, + { + "rshares": "59178617", + "voter": "inarix03" + }, + { + "rshares": "4725653598", + "voter": "michelle.gent" + }, + { + "rshares": "11523640324", + "voter": "herpetologyguy" + }, + { + "rshares": "54452104", + "voter": "drac59" + }, + { + "rshares": "4605288518", + "voter": "morgan.waser" + }, + { + "rshares": "50235850", + "voter": "billkappa442" + }, + { + "rshares": "50233449", + "voter": "teemsteem" + }, + { + "rshares": "51235131", + "voter": "glassheart" + }, + { + "rshares": "51227561", + "voter": "battalar" + }, + { + "rshares": "51141851", + "voter": "slow" + }, + { + "rshares": "50975390", + "voter": "steemprincess" + }, + { + "rshares": "57373409", + "voter": "teo" + }, + { + "rshares": "50873654", + "voter": "palladium" + }, + { + "rshares": "1317053201", + "voter": "aksinya" + }, + { + "rshares": "50570250", + "voter": "ziggo" + }, + { + "rshares": "50538694", + "voter": "fenix" + }, + { + "rshares": "50536471", + "voter": "twistys" + }, + { + "rshares": "810369666", + "voter": "bapparabi" + }, + { + "rshares": "50479027", + "voter": "sunlight" + }, + { + "rshares": "9346140667", + "voter": "luzcypher" + }, + { + "rshares": "166200503", + "voter": "haddock" + }, + { + "rshares": "3447563868", + "voter": "strong-ai" + }, + { + "rshares": "159723319", + "voter": "ctu" + }, + { + "rshares": "1507439774", + "voter": "yanik" + }, + { + "rshares": "1319385375", + "voter": "rusteemitblog" + }, + { + "rshares": "4636706408", + "voter": "jennane" + }, + { + "rshares": "149130097", + "voter": "ndea30" + }, + { + "rshares": "149123370", + "voter": "domenico" + }, + { + "rshares": "444421238", + "voter": "witchcraftblog" + }, + { + "rshares": "148337519", + "voter": "serena199" + }, + { + "rshares": "148308392", + "voter": "gia7" + }, + { + "rshares": "160773127", + "voter": "animal" + }, + { + "rshares": "147864891", + "voter": "richie4" + }, + { + "rshares": "147806968", + "voter": "coraline88" + }, + { + "rshares": "160319579", + "voter": "cybergirls" + }, + { + "rshares": "160260561", + "voter": "rage" + }, + { + "rshares": "147559003", + "voter": "harlen" + }, + { + "rshares": "147523175", + "voter": "yanuel" + }, + { + "rshares": "147475911", + "voter": "daritza" + }, + { + "rshares": "159984914", + "voter": "correct" + }, + { + "rshares": "156411729", + "voter": "blender" + }, + { + "rshares": "159318360", + "voter": "stimmt" + }, + { + "rshares": "158732321", + "voter": "steemwallet" + }, + { + "rshares": "28919059756", + "voter": "goldmatters" + }, + { + "rshares": "71720421", + "voter": "dealzgal" + }, + { + "rshares": "77287933", + "voter": "storage" + }, + { + "rshares": "184381906", + "voter": "antaja" + }, + { + "rshares": "154503543", + "voter": "steemdesigner" + }, + { + "rshares": "329629477", + "voter": "aldentan" + }, + { + "rshares": "61536953", + "voter": "blackmarket" + }, + { + "rshares": "67683958", + "voter": "gifts" + }, + { + "rshares": "91120780", + "voter": "expat" + }, + { + "rshares": "134906258", + "voter": "steemtrail" + }, + { + "rshares": "100289745", + "voter": "paulocouto" + }, + { + "rshares": "138917685", + "voter": "sawgunner13" + }, + { + "rshares": "1593664040", + "voter": "steemlift" + } + ], + "author": "kevinwong", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "
https://s16.postimg.org/5csp5ocf9/kevv.jpg
\n\nHere I am spending the night in the darkness of my bedroom. Dog's snoring right beside me, his head resting on my chest. Feeling like I'm in some prologue of a cyberpunk story. Anyway, surfing on Steemit mobile is actually quite decent, despite the inadequacy of certain types of tables and media not showing up properly on screen.\n\nDecided to write this after going through some dramatic commentaries on Steemit that happened for the past few days. Mostly about ideological disagreements, and especially, overcompensation of posts. While I consider myself pretty critical, I usually opt out of direct, in-your-face type of confrontations. I prefer to plan and pick my own battles, having learned out of experience.\n\nBecause personally, I've never come across any situation that immediately improves itself after insults are thrown around. No one is going to admit wrong right away. Everyone's always right in their own world, and that's particularly true with the presence of an opposing voice. And it doesn't matter how zen one may be. No one's a perfect saint. Everyone has a breaking point. \n\nYup, I've snapped before, more than enough times to know this little fact of life. Nothing good comes out of throwing a fit (well not as much as can be). Sure, our message, our version of truth should be upheld. But there are better ways of fighting the good fight.. maybe like what I'm trying to do with this post right now. So what am I trying to address here?\n\n---------------------------\n# Plan your battles - don't join someone else's!\n
https://s10.postimg.org/ntels66d5/planning.jpg
\nThere was [a post on Steemit](https://steemit.com/anarchy/@kennyskitchen/the-40-anarchists-you-want-to-be-following-on-steemit) a while ago that labelled me an anarchist. Am I? Maybe I am. Sure, I'm against big, centralised governments. I may even detest the inherent thieving practices of big brother. But I'm still running a music event company - there are legal matters that I still need to run by government offices, purely out of safety and security reasons.\n\nYou may argue that it's perverted that I'm using an intrinsically violent agent (namely, The Government and The Police State) to secure the well-being of my business customers. Next I'll ask - can we have a decentralised free market doing music events with all the right securities? That's what my company, [Hybrid Entertainment](https://steemit.com/steemit-marketing/@kevinwong/our-next-dance-music-event-psychedelic-trance-some-steemit-love) partly aims to do. It's a learning process. \n\nFor now, we still need to use the existing structures of Old, Big Government.. while we find ways to transition out of such dependence. Fight too hard and you'll get clamped down, thrown out of the game. You can't do much when you're out of the game, so stay in it! Take the time to plan your battles, dear hot-blooded confrontationists (if that's even a word).\n\nSure, the world needs you to say things as they are. But hearing the painful truth is almost like violence itself. No one likes that, no matter which side of a dispute. Peace also involves peace of mind. It's a much longer game - it comes with the territory. You're already in someone else's fight once you get into war. Only get into war if you're the big guy. The small guy is always the loser - the unwilling pawn. Think about this in scope of what's happening all around the world, even on Steemit.\n\nDon't be a zealot. There are dangers of being too far left, or too far right. Find the middle way. All you need is another perspective. Some people may be asswipes, but goodness is omnipresent if the conditions are right.\n\nAnd that's how you plan your battles - take the time to do it right. \n\nIn perspective of my generally apolitical position on Steemit, I tend to find better ways to contribute instead of lashing out on another user. Sure, I have my dissatisfaction about some author rewards and posting models from time to time. However, I tried putting effort into building better models and figuring out ways to add substantial value into the ecosystem. Eventually, some of us gravitated towards a loose goal of rewarding diversity by combing contents on Steemit on a daily basis.\n\nThere are now epic giant hidden-gem megaposts on Steemit - like this one from [Project Curie](https://steemit.com/@curie) and [Robinhood Whale](https://steemit.com/@robinhoodwhale). Better coverage, better quality, better value - in so many ways. This is the free-market reaction to solo authored hidden-gem posts of early Steemit. No doubt that everything evolves over time. \n\nKnowing that value is subjective, I have always refrained from losing my cool. Even here on Steemit. \n\n**I'm the small fish and I have to plan my battles!**\n\n---------------------------------------\n\n# Don't freaking milk it!\n\n
https://s3.postimg.org/6ne6t272b/milk.jpg
\nThere are big reasons why most of us don't really like governments. Greed and corruption. Needless to say, the crowd easily picks up on this when insubstantial effort is rewarded handsomely. By all means, that's as subjective as can be. What's not (very) subjective, however, is if one continues to milk it, even despite public disapproval. \n\nThis happens all around the world. Don't oversell. You'll lose reputation if you are obviously **milking it**!\n\nSure, you may gain new followers.. newly inspired and freshly impressed. But old eyes grow weary. People are watching, and your social value fluctuates all the time. You can't please everyone, but you can try the **art of not milking the shit out of the system**.\n\nIt's a good business practice. It's a good personal conduct. And it works on Steemit.\n\nThat's a reason why I'm also posting lesser (other than plainly having a huge writer's block, reserving myself from random shitposting). Now I'm only writing when I really think I have something good to add as a post. As I'm partly dependent on Steemit, I've strategized a lil, refraining from appearing to be **milking it**, seeking modes of substantial contribution behind the scenes to compensate for the awesome support that has been given to me on this platform.\n\nIf you are suddenly rewarded thousands for a post - ask yourself. Is that post worth that much? Heck, I don't know if my top philosophical post is worth 4,000 bucks, but I know I've put long hours in it, enough to avoid milking and recycling the same content. Instead, I try to put more effort in other areas of the ecosystem to balance out the lopsided reward.\n\nThe blockchain is transparent. It's easy to find out if you're milking it. To avoid seeming like you're milking it - just be honest and ask yourself the right questions! Then, do the right thing!\n\n**Like life, like Steemit - try to give more than you can take. Don't. Freaking. Milk It.**\n\n----------------------------------\n\n# Take time to build, or take time to exploit?\n
https://img1.steemit.com/0x0/http://i.imgur.com/T9b4dDQ.jpg
\n
By Steemit's talented artist @lgm-1
\n\nNaturally, I'd say take time to build. Once you're caught exploiting the system, in life or on Steemit, you're lose reputation whether or not if its digitally measurable. You can create as many accounts as you want and find a million ways to exploit everything, but ask yourself - what are you building?\n\nHere are some tips for maintaining reputation on Steemit:-\n- Steemit's a mutual aid society. While posts can be about anything, note there's a limited amount of funds going around each day. It's obvious that your reputation is at stake if you have somehow managed to acquire good support, but not giving back substantially.\n- Tags are like real estate. Choose appropriately. An example is if you're writing your opinions on something rather meta, I think it's prudent to respect the scientific community. For example in [my article about consciousness](https://steemit.com/consciousness/@kevinwong/let-s-talk-about-consciousness-wtf-is-it), I've deliberately used the ***pseudoscience*** tag, no matter how right I think I could be. I clearly think about such topics often, but I never put myself in research labs knowing about consciousness well enough to indicate that I am the master of that domain.\n- Follow up on your promises. Communicate transparently.\n- Put in more effort, visibly and even behind the scenes when you manage to acquire good payouts.\n- Try to follow others. Curate and also support other members.\n- Plan your battles and don't milk it! And also, celebrity attitudes won't last long here if you're not giving back to the community. @dollarvigilante is doing this right - he's aiding others and even curating frequently on his free time!\n- Again, in general, give more than you can take.\n\n### Reputation is everything - for survival, for change in a social landscape.\n\n*Note: There is some form of censorship of the mind when it comes to chance of interruption from higher powers. It's the same everywhere. You just have to play your cards right, opting for different methods, different approaches. It's not really a systems-problem. It's a people-problem, as always. Never leave an opening for others to destroy your reputation.*\n\n-----------------------------------------------\n
Stock photos courtesy of https://pixabay.com/
\n\n-----------------------------------------------\n
Follow me @kevinwong
\n-------------------------------------------------", + "category": "guide", + "children": 53, + "created": "2016-09-14T22:00:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s16.postimg.org/5csp5ocf9/kevv.jpg", + "https://s10.postimg.org/ntels66d5/planning.jpg", + "https://s3.postimg.org/6ne6t272b/milk.jpg", + "https://img1.steemit.com/0x0/http://i.imgur.com/T9b4dDQ.jpg" + ], + "links": [ + "https://steemit.com/anarchy/@kennyskitchen/the-40-anarchists-you-want-to-be-following-on-steemit", + "https://steemit.com/steemit-marketing/@kevinwong/our-next-dance-music-event-psychedelic-trance-some-steemit-love", + "https://steemit.com/@curie", + "https://steemit.com/@robinhoodwhale", + "https://steemit.com/consciousness/@kevinwong/let-s-talk-about-consciousness-wtf-is-it", + "https://pixabay.com/" + ], + "tags": [ + "guide", + "life", + "lifehack", + "reputation", + "craigrant" + ], + "users": [ + "lgm-1", + "dollarvigilante", + "kevinwong" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 115120672136759, + "payout": 755.208, + "payout_at": "2016-09-16T04:43:13", + "pending_payout_value": "755.208 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-art-of-maintaining-reputation-plan-your-battles-and-don-t-milk-it", + "post_id": 952897, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 380 + }, + "title": "The Art of Maintaining Reputation: Plan Your Battles and Don't Milk It!", + "updated": "2016-09-15T07:45:57", + "url": "/guide/@kevinwong/the-art-of-maintaining-reputation-plan-your-battles-and-don-t-milk-it" + }, + { + "active_votes": [ + { + "rshares": "27814176695531", + "voter": "dantheman" + }, + { + "rshares": "7145643497594", + "voter": "skywalker" + }, + { + "rshares": "1968124814276", + "voter": "badassmother" + }, + { + "rshares": "2052934239988", + "voter": "hr1" + }, + { + "rshares": "6596087814836", + "voter": "fuzzyvest" + }, + { + "rshares": "1337025448249", + "voter": "rossco99" + }, + { + "rshares": "22864938197", + "voter": "jaewoocho" + }, + { + "rshares": "1576018783851", + "voter": "joseph" + }, + { + "rshares": "466052314352", + "voter": "recursive2" + }, + { + "rshares": "636514783207", + "voter": "masteryoda" + }, + { + "rshares": "3120252422964", + "voter": "recursive" + }, + { + "rshares": "681020986865", + "voter": "boombastic" + }, + { + "rshares": "91328598326", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6959124583", + "voter": "bingo-0" + }, + { + "rshares": "1330868635495", + "voter": "steempower" + }, + { + "rshares": "445757361586", + "voter": "boatymcboatface" + }, + { + "rshares": "443132842669", + "voter": "officialfuzzy" + }, + { + "rshares": "9167255683", + "voter": "idol" + }, + { + "rshares": "18955732033", + "voter": "chitty" + }, + { + "rshares": "8232133931", + "voter": "unosuke" + }, + { + "rshares": "139694054199", + "voter": "chris4210" + }, + { + "rshares": "14501486968", + "voter": "valtr" + }, + { + "rshares": "1577916417", + "voter": "jocelyn" + }, + { + "rshares": "9604795718", + "voter": "gregory60" + }, + { + "rshares": "89897248149", + "voter": "eeks" + }, + { + "rshares": "24694558802", + "voter": "fkn" + }, + { + "rshares": "468281676", + "voter": "paco-steem" + }, + { + "rshares": "5641144936", + "voter": "spaninv" + }, + { + "rshares": "32459455171", + "voter": "elishagh1" + }, + { + "rshares": "8669787638", + "voter": "richman" + }, + { + "rshares": "584162335269", + "voter": "nanzo-scoop" + }, + { + "rshares": "469184158", + "voter": "jeffanthonyfds" + }, + { + "rshares": "10461841838", + "voter": "acidyo" + }, + { + "rshares": "36656769992", + "voter": "dan-atstarlite" + }, + { + "rshares": "177393957447", + "voter": "mummyimperfect" + }, + { + "rshares": "313687341", + "voter": "coar" + }, + { + "rshares": "106629500909", + "voter": "asch" + }, + { + "rshares": "1061210624", + "voter": "murh" + }, + { + "rshares": "6230682263", + "voter": "cryptofunk" + }, + { + "rshares": "579494558", + "voter": "kodi" + }, + { + "rshares": "2111403468", + "voter": "error" + }, + { + "rshares": "985518335179", + "voter": "cyber" + }, + { + "rshares": "61711048609", + "voter": "theshell" + }, + { + "rshares": "50879221096", + "voter": "ak2020" + }, + { + "rshares": "63100175656", + "voter": "justtryme90" + }, + { + "rshares": "400866642793", + "voter": "taoteh1221" + }, + { + "rshares": "410502622", + "voter": "applecrisp" + }, + { + "rshares": "365370465", + "voter": "stiletto" + }, + { + "rshares": "15787116636", + "voter": "zakharya" + }, + { + "rshares": "280678620376", + "voter": "trogdor" + }, + { + "rshares": "121380113922", + "voter": "geoffrey" + }, + { + "rshares": "208331842756", + "voter": "kimziv" + }, + { + "rshares": "76009124707", + "voter": "emily-cook" + }, + { + "rshares": "12064022115", + "voter": "primus" + }, + { + "rshares": "29635215678", + "voter": "acassity" + }, + { + "rshares": "280916636", + "voter": "ladyclair" + }, + { + "rshares": "19099829330", + "voter": "venuspcs" + }, + { + "rshares": "813595892", + "voter": "poias" + }, + { + "rshares": "7418976078", + "voter": "dasha" + }, + { + "rshares": "153697599394", + "voter": "asmolokalo" + }, + { + "rshares": "1642983170", + "voter": "gidlark" + }, + { + "rshares": "73849034695", + "voter": "rubybian" + }, + { + "rshares": "3058898852", + "voter": "getssidetracked" + }, + { + "rshares": "17903672525", + "voter": "konstantin" + }, + { + "rshares": "572413932", + "voter": "trees" + }, + { + "rshares": "83801390", + "voter": "strawhat" + }, + { + "rshares": "2597453094", + "voter": "romel" + }, + { + "rshares": "276570042", + "voter": "cryptochannel" + }, + { + "rshares": "120546538382", + "voter": "furion" + }, + { + "rshares": "6462652657", + "voter": "owdy" + }, + { + "rshares": "590190776", + "voter": "barbara2" + }, + { + "rshares": "642869652", + "voter": "ch0c0latechip" + }, + { + "rshares": "607124531", + "voter": "doge4lyf" + }, + { + "rshares": "18371164995", + "voter": "sebastien" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "14487855165", + "voter": "aaseb" + }, + { + "rshares": "4209499465", + "voter": "karen13" + }, + { + "rshares": "10646413479", + "voter": "deviedev" + }, + { + "rshares": "258981906731", + "voter": "nabilov" + }, + { + "rshares": "117757790207", + "voter": "pkattera" + }, + { + "rshares": "274155883", + "voter": "tinyhomeliving" + }, + { + "rshares": "55698224169", + "voter": "streetstyle" + }, + { + "rshares": "7313749376", + "voter": "lichtblick" + }, + { + "rshares": "35782652880", + "voter": "creemej" + }, + { + "rshares": "5726411049", + "voter": "btcbtcbtc20155" + }, + { + "rshares": "167298234999", + "voter": "blueorgy" + }, + { + "rshares": "4544488912", + "voter": "poseidon" + }, + { + "rshares": "7946556816", + "voter": "smolalit" + }, + { + "rshares": "3506024506", + "voter": "simon.braki.love" + }, + { + "rshares": "82781233416", + "voter": "thylbom" + }, + { + "rshares": "86528557116", + "voter": "rea" + }, + { + "rshares": "204615586375", + "voter": "jl777" + }, + { + "rshares": "20026634941", + "voter": "positive" + }, + { + "rshares": "35105434017", + "voter": "paquito" + }, + { + "rshares": "8507360175", + "voter": "fishborne" + }, + { + "rshares": "309088757", + "voter": "sergey44" + }, + { + "rshares": "17267159012", + "voter": "proto" + }, + { + "rshares": "34304658614", + "voter": "sisterholics" + }, + { + "rshares": "674282213", + "voter": "fnait" + }, + { + "rshares": "611258547", + "voter": "keepcalmand" + }, + { + "rshares": "42379649186", + "voter": "smailer" + }, + { + "rshares": "25636155654", + "voter": "pixielolz" + }, + { + "rshares": "149624601", + "voter": "steemster1" + }, + { + "rshares": "1033757233", + "voter": "neowenyuan27" + }, + { + "rshares": "3353832611", + "voter": "glitterpig" + }, + { + "rshares": "121680301", + "voter": "picker" + }, + { + "rshares": "896285424", + "voter": "metaflute" + }, + { + "rshares": "8734048037", + "voter": "taker" + }, + { + "rshares": "59219358", + "voter": "sharon" + }, + { + "rshares": "60342922", + "voter": "lillianjones" + }, + { + "rshares": "1213074787308", + "voter": "laonie" + }, + { + "rshares": "157504637007", + "voter": "twinner" + }, + { + "rshares": "4890234271", + "voter": "satoshifpv" + }, + { + "rshares": "11693771864", + "voter": "thebluepanda" + }, + { + "rshares": "42635136908", + "voter": "myfirst" + }, + { + "rshares": "252723433247", + "voter": "somebody" + }, + { + "rshares": "16251975438", + "voter": "sunshine" + }, + { + "rshares": "9691515710", + "voter": "flysaga" + }, + { + "rshares": "2501627790", + "voter": "gmurph" + }, + { + "rshares": "55828810753", + "voter": "midnightoil" + }, + { + "rshares": "84246848", + "voter": "coderg" + }, + { + "rshares": "4281232336", + "voter": "ullikume" + }, + { + "rshares": "139631233866", + "voter": "xiaohui" + }, + { + "rshares": "6952769870", + "voter": "elfkitchen" + }, + { + "rshares": "103387869456", + "voter": "joele" + }, + { + "rshares": "4365575224", + "voter": "xiaokongcom" + }, + { + "rshares": "1405383530", + "voter": "hms818" + }, + { + "rshares": "42833125455", + "voter": "nonlinearone" + }, + { + "rshares": "60819615", + "voter": "msjennifer" + }, + { + "rshares": "55925537", + "voter": "ciao" + }, + { + "rshares": "3033050865", + "voter": "jrcornel" + }, + { + "rshares": "55449983", + "voter": "steemo" + }, + { + "rshares": "9025821447", + "voter": "xianjun" + }, + { + "rshares": "55306941", + "voter": "steema" + }, + { + "rshares": "71282219", + "voter": "confucius" + }, + { + "rshares": "9729857687", + "voter": "mione" + }, + { + "rshares": "56157882", + "voter": "jarvis" + }, + { + "rshares": "591097626", + "voter": "microluck" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "54313084", + "voter": "fortuner" + }, + { + "rshares": "3286864056", + "voter": "macartem" + }, + { + "rshares": "9827647000", + "voter": "gvargas123" + }, + { + "rshares": "53056158", + "voter": "johnbyrd" + }, + { + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "rshares": "53037689", + "voter": "thermor" + }, + { + "rshares": "53048942", + "voter": "ficholl" + }, + { + "rshares": "53030738", + "voter": "widell" + }, + { + "rshares": "3635091595", + "voter": "movievertigo" + }, + { + "rshares": "52651308", + "voter": "revelbrooks" + }, + { + "rshares": "332237822", + "voter": "mrlogic" + }, + { + "rshares": "56654664918", + "voter": "mandibil" + }, + { + "rshares": "51562255", + "voter": "curpose" + }, + { + "rshares": "69986345", + "voter": "steembriefing" + }, + { + "rshares": "54612436", + "voter": "riv" + }, + { + "rshares": "56405368", + "voter": "stephenkendal" + }, + { + "rshares": "115288656029", + "voter": "shenanigator" + }, + { + "rshares": "2163490459", + "voter": "jeffreyahann" + }, + { + "rshares": "1857811307", + "voter": "funkywanderer" + }, + { + "rshares": "5053551216", + "voter": "richardcrill" + }, + { + "rshares": "51712804", + "voter": "troich" + }, + { + "rshares": "180241566", + "voter": "team101" + }, + { + "rshares": "51718188", + "voter": "crion" + }, + { + "rshares": "51388276", + "voter": "hitherise" + }, + { + "rshares": "51379706", + "voter": "wiss" + }, + { + "rshares": "54241809836", + "voter": "sponge-bob" + }, + { + "rshares": "52143228", + "voter": "stroully" + }, + { + "rshares": "53070013", + "voter": "apparat" + }, + { + "rshares": "51814474", + "voter": "thadm" + }, + { + "rshares": "51812703", + "voter": "prof" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "51465774", + "voter": "yorsens" + }, + { + "rshares": "3068760608", + "voter": "michaelmatthews" + }, + { + "rshares": "184881039384", + "voter": "asksisk" + }, + { + "rshares": "51154263", + "voter": "bane" + }, + { + "rshares": "51148009", + "voter": "vive" + }, + { + "rshares": "51142585", + "voter": "coad" + }, + { + "rshares": "232386397", + "voter": "pjo" + }, + { + "rshares": "51922012", + "voter": "sofa" + }, + { + "rshares": "330365849", + "voter": "panther" + }, + { + "rshares": "201122420257", + "voter": "doudou252666" + }, + { + "rshares": "59422248", + "voter": "plantbasedjunkie" + }, + { + "rshares": "55335930229", + "voter": "brains" + }, + { + "rshares": "51994517", + "voter": "ailo" + }, + { + "rshares": "1369339863", + "voter": "steemafon" + }, + { + "rshares": "339273477", + "voter": "anomaly" + }, + { + "rshares": "123155378", + "voter": "ola1" + }, + { + "rshares": "4647741844", + "voter": "michelle.gent" + }, + { + "rshares": "50441122", + "voter": "eavy" + }, + { + "rshares": "50454901", + "voter": "roto" + }, + { + "rshares": "70282046", + "voter": "mari5555na" + }, + { + "rshares": "50225780", + "voter": "steemq" + }, + { + "rshares": "50223099", + "voter": "battalar" + }, + { + "rshares": "51215236", + "voter": "deli" + }, + { + "rshares": "50875769", + "voter": "cyan" + }, + { + "rshares": "50540827", + "voter": "amstel" + }, + { + "rshares": "2216805889", + "voter": "bapparabi" + }, + { + "rshares": "247235040", + "voter": "darkminded153" + }, + { + "rshares": "72826233", + "voter": "igtes" + }, + { + "rshares": "144899746", + "voter": "buffett" + }, + { + "rshares": "2650993895", + "voter": "senseye" + }, + { + "rshares": "162911190", + "voter": "front" + }, + { + "rshares": "158676075", + "voter": "iberia" + }, + { + "rshares": "161218747", + "voter": "sdc" + }, + { + "rshares": "304461322", + "voter": "james1987" + }, + { + "rshares": "157745750", + "voter": "digitalillusions" + }, + { + "rshares": "160880639", + "voter": "illusions" + }, + { + "rshares": "160870736", + "voter": "electronicarts" + }, + { + "rshares": "3795712999", + "voter": "dresden" + }, + { + "rshares": "159950870", + "voter": "haribo" + }, + { + "rshares": "159352476", + "voter": "panic" + }, + { + "rshares": "156043541", + "voter": "disneypixar" + }, + { + "rshares": "1534731729", + "voter": "modernbukowski" + }, + { + "rshares": "155452864", + "voter": "jyriygo" + }, + { + "rshares": "31683945302", + "voter": "goldmatters" + }, + { + "rshares": "155180811", + "voter": "majes" + }, + { + "rshares": "153284499", + "voter": "daniel1974" + } + ], + "author": "steempower", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "![](https://s18.postimg.org/fcl7ffx1l/ripple.png)\n## Ripple has raised another 55 Million in its latest round of funding bringing it total raised to 93 Million.\n\nThe news has reached mainstream news services such as CNBC, WSJ, Reuters and the like. News seems to be first released 2 hours ago 12:35 pm; Thursday, 15 September 2016.\n\n### News Articles:\n[CoinDesk](http://www.coindesk.com/ripple-blockchain-55-million-series-b/)\n[CNBC](http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html)\n[WSJ](http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401)\n[Reuters ](http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z)\n\nAccording to the article linked above (CNBC) 'The start-up is currently working with 15 of the top 50 global banks including UBS and Santander.'\n\nNew and existing investors were involved in the new Ripple funding round. New investors included Accenture Ventures, SBI Holdings, SCB Digital Ventures, Standard Chartered PLC, and the investment arm of Thailand\u2019s Siam Commercial Bank. Existing investors that joined in this round included a Banco Santander SA venture fund, the venture arms of CME Group Inc. and Seagate Technology, and Venture 51.\n\nObviously this is good news for ripple with 55 Million accounting for 20-25% of their market cap before today's rally, the current price of XRP is 0.00001760 BTC and 2 hours ago it was trading for below 0.00001000 BTC, it has seen a large move already price wise although volume is still relatively small at this time, we could be in for an interesting time while this initial excitement settles in\n![](https://www.coinigy.com/assets/img/charts/57dab3f3.png)", + "category": "ripple", + "children": 10, + "created": "2016-09-15T14:58:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s18.postimg.org/fcl7ffx1l/ripple.png", + "https://www.coinigy.com/assets/img/charts/57dab3f3.png" + ], + "links": [ + "http://www.coindesk.com/ripple-blockchain-55-million-series-b/", + "http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html", + "http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401", + "http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z" + ], + "tags": [ + "ripple", + "crypto-news", + "beyondbitcoin", + "money", + "trading" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 63885038592928, + "payout": 238.835, + "payout_at": "2016-09-16T15:58:09", + "pending_payout_value": "238.835 HBD", + "percent_steem_dollars": 10000, + "permlink": "ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour", + "post_id": 958481, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 216 + }, + "title": "Ripple raises $55 million from big banks - Series B - XRP Prices jumped 60% to 0.0001600 within 1 hour", + "updated": "2016-09-15T14:58:21", + "url": "/ripple/@steempower/ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour" + }, + { + "active_votes": [ + { + "rshares": "518197131276", + "voter": "barrie" + }, + { + "rshares": "31620599440742", + "voter": "smooth" + }, + { + "rshares": "1968100090680", + "voter": "badassmother" + }, + { + "rshares": "3311776812132", + "voter": "pharesim" + }, + { + "rshares": "2052926274941", + "voter": "hr1" + }, + { + "rshares": "1337025448249", + "voter": "rossco99" + }, + { + "rshares": "22864866028", + "voter": "jaewoocho" + }, + { + "rshares": "1619361992750", + "voter": "joseph" + }, + { + "rshares": "98682259833", + "voter": "aizensou" + }, + { + "rshares": "462397546754", + "voter": "recursive3" + }, + { + "rshares": "3120246710189", + "voter": "recursive" + }, + { + "rshares": "1246163169", + "voter": "mineralwasser" + }, + { + "rshares": "681003747775", + "voter": "boombastic" + }, + { + "rshares": "94094732044", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6959103550", + "voter": "bingo-0" + }, + { + "rshares": "1669989826", + "voter": "bingo-1" + }, + { + "rshares": "5938484287107", + "voter": "smooth.witness" + }, + { + "rshares": "445429446140", + "voter": "boatymcboatface" + }, + { + "rshares": "9408475799", + "voter": "idol" + }, + { + "rshares": "284298500346", + "voter": "chitty" + }, + { + "rshares": "1619440533", + "voter": "jocelyn" + }, + { + "rshares": "15004137591", + "voter": "gregory-f" + }, + { + "rshares": "148161564048", + "voter": "edgeland" + }, + { + "rshares": "9604795718", + "voter": "gregory60" + }, + { + "rshares": "1272853996010", + "voter": "gavvet" + }, + { + "rshares": "89896930629", + "voter": "eeks" + }, + { + "rshares": "2015882351", + "voter": "fkn" + }, + { + "rshares": "478461713", + "voter": "paco-steem" + }, + { + "rshares": "5763764389", + "voter": "spaninv" + }, + { + "rshares": "7733788543", + "voter": "nate-atkins" + }, + { + "rshares": "2649751442", + "voter": "elishagh1" + }, + { + "rshares": "8669787638", + "voter": "richman" + }, + { + "rshares": "599927640145", + "voter": "nanzo-scoop" + }, + { + "rshares": "459984469", + "voter": "jeffanthonyfds" + }, + { + "rshares": "177390312070", + "voter": "mummyimperfect" + }, + { + "rshares": "313687341", + "voter": "coar" + }, + { + "rshares": "106628883920", + "voter": "asch" + }, + { + "rshares": "1061168224", + "voter": "murh" + }, + { + "rshares": "6230682263", + "voter": "cryptofunk" + }, + { + "rshares": "2111403468", + "voter": "error" + }, + { + "rshares": "985480652331", + "voter": "cyber" + }, + { + "rshares": "61710743415", + "voter": "theshell" + }, + { + "rshares": "50878177282", + "voter": "ak2020" + }, + { + "rshares": "409218031185", + "voter": "taoteh1221" + }, + { + "rshares": "418880227", + "voter": "applecrisp" + }, + { + "rshares": "373313301", + "voter": "stiletto" + }, + { + "rshares": "375920034566", + "voter": "hedge-x" + }, + { + "rshares": "55577392625", + "voter": "juanmiguelsalas" + }, + { + "rshares": "33780018119", + "voter": "ratel" + }, + { + "rshares": "280669440211", + "voter": "trogdor" + }, + { + "rshares": "121380113922", + "voter": "geoffrey" + }, + { + "rshares": "16025171812", + "voter": "kimziv" + }, + { + "rshares": "76007179625", + "voter": "emily-cook" + }, + { + "rshares": "2187587354", + "voter": "superfreek" + }, + { + "rshares": "30279417098", + "voter": "acassity" + }, + { + "rshares": "17557768630", + "voter": "grey580" + }, + { + "rshares": "280916636", + "voter": "ladyclair" + }, + { + "rshares": "19974572536", + "voter": "thebatchman" + }, + { + "rshares": "61460113993", + "voter": "good-karma" + }, + { + "rshares": "76019855821", + "voter": "rubybian" + }, + { + "rshares": "5270775482", + "voter": "riscadox" + }, + { + "rshares": "17903672525", + "voter": "konstantin" + }, + { + "rshares": "256623434", + "voter": "mstang83" + }, + { + "rshares": "25057071012", + "voter": "tcfxyz" + }, + { + "rshares": "6939848809", + "voter": "futurefood" + }, + { + "rshares": "844421054", + "voter": "endgame" + }, + { + "rshares": "823151341679", + "voter": "slowwalker" + }, + { + "rshares": "9840533745", + "voter": "furion" + }, + { + "rshares": "52479155", + "voter": "ch0c0latechip" + }, + { + "rshares": "19169622645", + "voter": "sebastien" + }, + { + "rshares": "12011479963", + "voter": "asim" + }, + { + "rshares": "14487516865", + "voter": "aaseb" + }, + { + "rshares": "4097381727", + "voter": "incomemonthly" + }, + { + "rshares": "4431046054", + "voter": "karen13" + }, + { + "rshares": "10646413479", + "voter": "deviedev" + }, + { + "rshares": "258981906731", + "voter": "nabilov" + }, + { + "rshares": "5482949271", + "voter": "tinyhomeliving" + }, + { + "rshares": "847366145", + "voter": "luisucv34" + }, + { + "rshares": "54561525717", + "voter": "streetstyle" + }, + { + "rshares": "452581935074", + "voter": "knozaki2015" + }, + { + "rshares": "35782074085", + "voter": "creemej" + }, + { + "rshares": "15377860373", + "voter": "nippel66" + }, + { + "rshares": "24417657582", + "voter": "phenom" + }, + { + "rshares": "167298234999", + "voter": "blueorgy" + }, + { + "rshares": "4256486989", + "voter": "oululahti" + }, + { + "rshares": "349568852", + "voter": "poseidon" + }, + { + "rshares": "2182574144", + "voter": "iamwne" + }, + { + "rshares": "20119867662", + "voter": "mustafaomar" + }, + { + "rshares": "3506024506", + "voter": "simon.braki.love" + }, + { + "rshares": "39345808582", + "voter": "royaltiffany" + }, + { + "rshares": "14954254688", + "voter": "beowulfoflegend" + }, + { + "rshares": "32542074868", + "voter": "deanliu" + }, + { + "rshares": "5373137632", + "voter": "rainchen" + }, + { + "rshares": "86528557116", + "voter": "rea" + }, + { + "rshares": "1616791389", + "voter": "tokyodude" + }, + { + "rshares": "7822595883", + "voter": "neroru" + }, + { + "rshares": "215384292560", + "voter": "jl777" + }, + { + "rshares": "1634827342", + "voter": "positive" + }, + { + "rshares": "5172692235", + "voter": "gustavopasquini" + }, + { + "rshares": "12345105776", + "voter": "moon32walker" + }, + { + "rshares": "6232841459", + "voter": "summonerrk" + }, + { + "rshares": "116726661", + "voter": "firehorse" + }, + { + "rshares": "942266185", + "voter": "happyphoenix" + }, + { + "rshares": "42775729046", + "voter": "claudiop63" + }, + { + "rshares": "18175932801", + "voter": "proto" + }, + { + "rshares": "230455938", + "voter": "jasen.g1311" + }, + { + "rshares": "29035294642", + "voter": "pinkisland" + }, + { + "rshares": "3266602711", + "voter": "ace108" + }, + { + "rshares": "2708203880", + "voter": "sisterholics" + }, + { + "rshares": "1483259422", + "voter": "alex.chien" + }, + { + "rshares": "8964609699", + "voter": "royalmacro" + }, + { + "rshares": "11169454095", + "voter": "logic" + }, + { + "rshares": "55043445", + "voter": "fnait" + }, + { + "rshares": "3482504625", + "voter": "bkkshadow" + }, + { + "rshares": "25636155654", + "voter": "pixielolz" + }, + { + "rshares": "56747133", + "voter": "reported" + }, + { + "rshares": "3353832611", + "voter": "glitterpig" + }, + { + "rshares": "7350128313", + "voter": "jed78" + }, + { + "rshares": "6785260219", + "voter": "shortcut" + }, + { + "rshares": "111828316", + "voter": "andrew-charles" + }, + { + "rshares": "870677269", + "voter": "metaflute" + }, + { + "rshares": "9193722747", + "voter": "taker" + }, + { + "rshares": "1894317852", + "voter": "gruber" + }, + { + "rshares": "15412506890", + "voter": "felixxx" + }, + { + "rshares": "52486879", + "voter": "krushing" + }, + { + "rshares": "95766386323", + "voter": "laonie" + }, + { + "rshares": "157495713864", + "voter": "twinner" + }, + { + "rshares": "61361321", + "voter": "southbaybits" + }, + { + "rshares": "24561066673", + "voter": "laoyao" + }, + { + "rshares": "3996853733", + "voter": "myfirst" + }, + { + "rshares": "19439859020", + "voter": "somebody" + }, + { + "rshares": "726849243", + "voter": "flysaga" + }, + { + "rshares": "66940286", + "voter": "ann76" + }, + { + "rshares": "18234762995", + "voter": "timelapse" + }, + { + "rshares": "2501622377", + "voter": "gmurph" + }, + { + "rshares": "494521401", + "voter": "minnowsunited" + }, + { + "rshares": "4294430078", + "voter": "midnightoil" + }, + { + "rshares": "4281232336", + "voter": "ullikume" + }, + { + "rshares": "5693098913", + "voter": "cjclaro" + }, + { + "rshares": "52700570", + "voter": "whatyouganjado" + }, + { + "rshares": "36649510663", + "voter": "budgetbucketlist" + }, + { + "rshares": "10740564621", + "voter": "xiaohui" + }, + { + "rshares": "176650903994", + "voter": "terrycraft" + }, + { + "rshares": "461088291", + "voter": "elfkitchen" + }, + { + "rshares": "103384996602", + "voter": "joele" + }, + { + "rshares": "5855063437", + "voter": "oflyhigh" + }, + { + "rshares": "59002619", + "voter": "makaveli" + }, + { + "rshares": "335807163", + "voter": "xiaokongcom" + }, + { + "rshares": "13237481048", + "voter": "gargon" + }, + { + "rshares": "676922173", + "voter": "xianjun" + }, + { + "rshares": "26283514539", + "voter": "hanshotfirst" + }, + { + "rshares": "9199546040", + "voter": "tom77" + }, + { + "rshares": "126090405", + "voter": "sarita" + }, + { + "rshares": "52450091", + "voter": "alexbones" + }, + { + "rshares": "2249542145", + "voter": "njall" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "6402569097", + "voter": "rubenalexander" + }, + { + "rshares": "2077210674", + "voter": "chinadaily" + }, + { + "rshares": "11979592683", + "voter": "kyriacos" + }, + { + "rshares": "806759200", + "voter": "jayfox" + }, + { + "rshares": "1647538615", + "voter": "ignat" + }, + { + "rshares": "90168606946", + "voter": "serejandmyself" + }, + { + "rshares": "106144628", + "voter": "pollina" + }, + { + "rshares": "4781807217", + "voter": "almerri" + }, + { + "rshares": "9071955992", + "voter": "johnnyyash" + }, + { + "rshares": "3221126774", + "voter": "macartem" + }, + { + "rshares": "9310407829", + "voter": "gvargas123" + }, + { + "rshares": "4658385146", + "voter": "themanualbot" + }, + { + "rshares": "2005245825", + "voter": "levycore" + }, + { + "rshares": "58169756", + "voter": "cnmtz" + }, + { + "rshares": "476161300", + "voter": "claudia" + }, + { + "rshares": "70203690", + "voter": "ozertayiz" + }, + { + "rshares": "57942270939", + "voter": "mandibil" + }, + { + "rshares": "4633082667", + "voter": "steemitpatina" + }, + { + "rshares": "71507788", + "voter": "steembriefing" + }, + { + "rshares": "51356966", + "voter": "salebored" + }, + { + "rshares": "54612436", + "voter": "riv" + }, + { + "rshares": "5081885632", + "voter": "ats-david" + }, + { + "rshares": "1544966078", + "voter": "pollux.one" + }, + { + "rshares": "7776590110", + "voter": "einsteinpotsdam" + }, + { + "rshares": "1932014303", + "voter": "funkywanderer" + }, + { + "rshares": "56854958", + "voter": "jasonji12" + }, + { + "rshares": "5053551216", + "voter": "richardcrill" + }, + { + "rshares": "184076493", + "voter": "team101" + }, + { + "rshares": "51444457", + "voter": "bitdrone" + }, + { + "rshares": "51436144", + "voter": "sleepcult" + }, + { + "rshares": "182060433", + "voter": "greatness" + }, + { + "rshares": "1233641092", + "voter": "goldstein" + }, + { + "rshares": "27674257450", + "voter": "sponge-bob" + }, + { + "rshares": "3432704465", + "voter": "getonthetrain" + }, + { + "rshares": "44943498845", + "voter": "zahnspange" + }, + { + "rshares": "414338857", + "voter": "steemorama" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "59594290", + "voter": "sunjo" + }, + { + "rshares": "285084767", + "voter": "benjamin.still" + }, + { + "rshares": "229690686860", + "voter": "asksisk" + }, + { + "rshares": "27667822273", + "voter": "brains" + }, + { + "rshares": "1772168372", + "voter": "alwayzgame" + }, + { + "rshares": "3531841420", + "voter": "rigaronib" + }, + { + "rshares": "339268967", + "voter": "anomaly" + }, + { + "rshares": "1550172009", + "voter": "allesgruen" + }, + { + "rshares": "123129821", + "voter": "ola1" + }, + { + "rshares": "431087473", + "voter": "littlemorelove" + }, + { + "rshares": "68608664", + "voter": "mari5555na" + }, + { + "rshares": "53309537", + "voter": "michaelblizek" + }, + { + "rshares": "135324063", + "voter": "creativeyoke" + }, + { + "rshares": "841787796", + "voter": "annesaya" + }, + { + "rshares": "51240567", + "voter": "billkappa442" + }, + { + "rshares": "50225780", + "voter": "steemq" + }, + { + "rshares": "50139069", + "voter": "slow" + }, + { + "rshares": "58668861", + "voter": "humans" + }, + { + "rshares": "50796122", + "voter": "factom" + }, + { + "rshares": "50538694", + "voter": "fenix" + }, + { + "rshares": "1921231770", + "voter": "bapparabi" + }, + { + "rshares": "50532230", + "voter": "friends" + }, + { + "rshares": "50349676", + "voter": "albertheijn" + }, + { + "rshares": "161839498", + "voter": "durex" + }, + { + "rshares": "161815656", + "voter": "ranger" + }, + { + "rshares": "435365865", + "voter": "witchcraftblog" + }, + { + "rshares": "161205518", + "voter": "acute" + }, + { + "rshares": "160900665", + "voter": "digitalillusions" + }, + { + "rshares": "4087522528", + "voter": "dresden" + }, + { + "rshares": "155111085", + "voter": "coolbeans" + }, + { + "rshares": "160151932", + "voter": "maxlviv" + }, + { + "rshares": "158393209", + "voter": "food-creator" + }, + { + "rshares": "159973989", + "voter": "capcom" + }, + { + "rshares": "159175576", + "voter": "fallout" + }, + { + "rshares": "158560941", + "voter": "steemthis" + }, + { + "rshares": "158535752", + "voter": "nerds" + }, + { + "rshares": "31680362460", + "voter": "goldmatters" + }, + { + "rshares": "136494240", + "voter": "bleujay" + }, + { + "rshares": "150430703", + "voter": "jproto22" + } + ], + "author": "knozaki2015", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\"Easy
\n

\n

There are many vegan or raw chocolates to buy, but the best chocolates comes from your own kitchen

\n

HOME MADE ROCKS !!

\n


\n

\"Schokolade

\n 

\n

What is raw chocolate ? The cocoa mass that you need for it consists of unroasted fermented cocoa beans . All fiber and nutrients are untouched. The cocoa mass you can buy online.

\n


\n
\"Schokolade1\"

\n
\nAnd here comes the recipe:

\n
    \n
  • 400 g raw cacao mass (not to be confused with cocoa butter) 
  • \n
  • 2 Tablespoon Coconutoil (best is Dr. Goerg)
  • \n
  • 100 g sprouted buckwheat (for a Crunchy taste)
  • \n
  • 100 g peanuts
  • \n
  • 100 g Walnuts or chopped almonds , Goji berries or what you listen to taste .
    \n
  • \n
\n
    \n
  1. Melt the cocoa paste and coconut oil in a waterbath or in the hydrator at max . 42 degrees .
  2. \n
  3. Once it is melted add the nuts with a big spoon
  4. \n
  5. If you like bars, fill the chocolate nut mixture into silicone bars . You can buy bars in any bakery shop or at Amazon 
  6. \n
  7.  But you can also use a large shallow plate and place baking paper on the plate and fill with the chocolate nut mixture
  8. \n
\n

Be creative : Put anything you like onto the chocolate-nut mixture (Goji berries , whole nuts , coconut pieces etc.)

\n

Place the finished chocolate 1 Hour in your freezer

\n

Get the bars out of the form or break the chocolate from the plate  and put it into the fridge .

\n


\nTrust me, your chocolate won't stay too long in your fridge.... 

\n

Please follow me @allesgruen !

\n

German Original Article


\n

Written by @allesgruen & translated by @knozaki2015

\n

@knozaki2015 features authors and artist to promote them and a diversity of content.
\nThe author will receive 100% of the STEEM Dollars from this post

\n

If you like this post please support @allesgruen and follow the author!

\n


\n", + "category": "food", + "children": 34, + "created": "2016-09-15T14:24:12", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s10.postimg.org/5kfqkef9l/Easy_Dishes_To_Make_For_Your50th_Birthday_Dinner_P.jpg", + "https://s16.postimg.org/j1hikj3np/Schokolade_Bild.jpg", + "https://s16.postimg.org/pggjh7adh/Schokolade1.jpg" + ], + "links": [ + "https://postimg.org/image/fui5jn551/", + "https://www.google.de/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwiU_vePvpHPAhVhJJoKHfEjAjEQFghJMAA&url=https%3A%2F%2Fwww.drgoerg.com%2Fen%2F&usg=AFQjCNGRVxYdyD04Ogm6T_WXZbejaKobyg&sig2=VMpccXoYQ8oXclIYq5y0vg", + "https://steemit.com/@allesgruen", + "https://steemit.com/food/@allesgruen/die-leckerste-und-gesuendeste-rohkost-schokolade-der-welt", + "https://steemit.com/@knozaki2015" + ], + "tags": [ + "food", + "minnowsunite", + "steemsquad", + "vegan", + "recipe" + ], + "users": [ + "allesgruen", + "knozaki2015" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62692229771159, + "payout": 230.258, + "payout_at": "2016-09-16T14:58:37", + "pending_payout_value": "230.258 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-tastiest-and-healthiest-raw-chocolate-in-the-world", + "post_id": 958185, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 232 + }, + "title": "The tastiest and healthiest raw chocolate in the world !!!", + "updated": "2016-09-15T14:24:12", + "url": "/food/@knozaki2015/the-tastiest-and-healthiest-raw-chocolate-in-the-world" + }, + { + "active_votes": [ + { + "rshares": "17090232811151", + "voter": "itsascam" + }, + { + "rshares": "480579269556", + "voter": "barrie" + }, + { + "rshares": "29720965903527", + "voter": "smooth" + }, + { + "rshares": "231748891373", + "voter": "anonymous" + }, + { + "rshares": "3703513941678", + "voter": "alphabet" + }, + { + "rshares": "2010285876889", + "voter": "steemroller" + }, + { + "rshares": "74805101299", + "voter": "donaldtrump" + }, + { + "rshares": "18187582592218", + "voter": "steemed" + }, + { + "rshares": "3205433782741", + "voter": "riverhead" + }, + { + "rshares": "1990377241911", + "voter": "badassmother" + }, + { + "rshares": "2005036868492", + "voter": "hr1" + }, + { + "rshares": "22380813356", + "voter": "jaewoocho" + }, + { + "rshares": "1869058236100", + "voter": "xeroc" + }, + { + "rshares": "1607182817833", + "voter": "joseph" + }, + { + "rshares": "82723821395", + "voter": "aizensou" + }, + { + "rshares": "456027411770", + "voter": "recursive2" + }, + { + "rshares": "588963325183", + "voter": "masteryoda" + }, + { + "rshares": "3119398199095", + "voter": "recursive" + }, + { + "rshares": "1172473837", + "voter": "mineralwasser" + }, + { + "rshares": "85737349562", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "1620255991", + "voter": "bingo-1" + }, + { + "rshares": "5567720953547", + "voter": "smooth.witness" + }, + { + "rshares": "170448445243", + "voter": "pairmike" + }, + { + "rshares": "9645319071", + "voter": "idol" + }, + { + "rshares": "131761872479", + "voter": "team" + }, + { + "rshares": "4632015537", + "voter": "sakr" + }, + { + "rshares": "96050573044", + "voter": "jchch" + }, + { + "rshares": "25239550780", + "voter": "chitty" + }, + { + "rshares": "47092417970", + "voter": "alexgr" + }, + { + "rshares": "3109770089", + "voter": "yefet" + }, + { + "rshares": "1660422196", + "voter": "jocelyn" + }, + { + "rshares": "13752626395", + "voter": "gregory-f" + }, + { + "rshares": "11239173417", + "voter": "dave-hughes" + }, + { + "rshares": "145064407415", + "voter": "edgeland" + }, + { + "rshares": "30188072314", + "voter": "full-measure" + }, + { + "rshares": "60085973635", + "voter": "lovelace" + }, + { + "rshares": "74898454777", + "voter": "eeks" + }, + { + "rshares": "478348587", + "voter": "paco-steem" + }, + { + "rshares": "5761302959", + "voter": "spaninv" + }, + { + "rshares": "30447039303", + "voter": "instructor2121" + }, + { + "rshares": "7891620962", + "voter": "nate-atkins" + }, + { + "rshares": "2197259642", + "voter": "gekko" + }, + { + "rshares": "313176541236", + "voter": "teamsteem" + }, + { + "rshares": "9535707424", + "voter": "richman" + }, + { + "rshares": "550540650972", + "voter": "nanzo-scoop" + }, + { + "rshares": "13884504681", + "voter": "fact" + }, + { + "rshares": "165470271317", + "voter": "steve-walschot" + }, + { + "rshares": "10099012692", + "voter": "cian.dafe" + }, + { + "rshares": "49793677286", + "voter": "hannixx42" + }, + { + "rshares": "169122010230", + "voter": "mummyimperfect" + }, + { + "rshares": "268838726", + "voter": "coar" + }, + { + "rshares": "98193208498", + "voter": "asch" + }, + { + "rshares": "1060920601", + "voter": "murh" + }, + { + "rshares": "6083782451", + "voter": "cryptofunk" + }, + { + "rshares": "2164662094", + "voter": "error" + }, + { + "rshares": "5736901624", + "voter": "marta-zaidel" + }, + { + "rshares": "40923353954", + "voter": "ranko-k" + }, + { + "rshares": "985042955913", + "voter": "cyber" + }, + { + "rshares": "10687278238", + "voter": "aizen01" + }, + { + "rshares": "6372292910", + "voter": "aizen02" + }, + { + "rshares": "3482772895", + "voter": "aizen03" + }, + { + "rshares": "1145023026", + "voter": "aizen04" + }, + { + "rshares": "484325382", + "voter": "aizen05" + }, + { + "rshares": "4698759112", + "voter": "aizen07" + }, + { + "rshares": "2810313611", + "voter": "aizen08" + }, + { + "rshares": "998812710", + "voter": "aizen09" + }, + { + "rshares": "432171763", + "voter": "aizen10" + }, + { + "rshares": "7109531805", + "voter": "aizen06" + }, + { + "rshares": "2986666907", + "voter": "aizen11" + }, + { + "rshares": "2052802727", + "voter": "aizen14" + }, + { + "rshares": "2413810847", + "voter": "aizen19" + }, + { + "rshares": "636225126", + "voter": "aizen15" + }, + { + "rshares": "6299030433", + "voter": "aizen16" + }, + { + "rshares": "48237424583", + "voter": "ak2020" + }, + { + "rshares": "632466769", + "voter": "aizen20" + }, + { + "rshares": "4134827463", + "voter": "aizen22" + }, + { + "rshares": "1099034433", + "voter": "aizen23" + }, + { + "rshares": "2161693603", + "voter": "aizen17" + }, + { + "rshares": "3402464131", + "voter": "aizen24" + }, + { + "rshares": "480934421", + "voter": "aizen18" + }, + { + "rshares": "1288443304", + "voter": "aizen25" + }, + { + "rshares": "2188687430", + "voter": "aizen28" + }, + { + "rshares": "3368022267", + "voter": "aizen26" + }, + { + "rshares": "1105570076", + "voter": "aizen27" + }, + { + "rshares": "3799766067", + "voter": "aizen32" + }, + { + "rshares": "2078826064", + "voter": "aizen30" + }, + { + "rshares": "3845310415", + "voter": "aizen31" + }, + { + "rshares": "1265719430", + "voter": "aizen33" + }, + { + "rshares": "1522643877", + "voter": "aizen34" + }, + { + "rshares": "305661234", + "voter": "aizen35" + }, + { + "rshares": "5734872441", + "voter": "aizen36" + }, + { + "rshares": "1430746846", + "voter": "aizen37" + }, + { + "rshares": "400285218", + "voter": "aizen29" + }, + { + "rshares": "2816257454", + "voter": "aizen21" + }, + { + "rshares": "65573912297", + "voter": "justtryme90" + }, + { + "rshares": "4321209833", + "voter": "aizen12" + }, + { + "rshares": "1839863893", + "voter": "aizen38" + }, + { + "rshares": "32298471411", + "voter": "drinkzya" + }, + { + "rshares": "8444658507", + "voter": "badger311" + }, + { + "rshares": "8739325345", + "voter": "badger313" + }, + { + "rshares": "8702827614", + "voter": "badger312" + }, + { + "rshares": "9001973394", + "voter": "badger316" + }, + { + "rshares": "9123923965", + "voter": "badger319" + }, + { + "rshares": "9031557781", + "voter": "badger3101" + }, + { + "rshares": "8484371114", + "voter": "badger3111" + }, + { + "rshares": "9046675913", + "voter": "badger3121" + }, + { + "rshares": "8655016180", + "voter": "badger3131" + }, + { + "rshares": "8763045211", + "voter": "badger3141" + }, + { + "rshares": "8739453800", + "voter": "badger3171" + }, + { + "rshares": "8546855954", + "voter": "badger3181" + }, + { + "rshares": "9133346310", + "voter": "badger3191" + }, + { + "rshares": "8546692844", + "voter": "badger3112" + }, + { + "rshares": "8887969807", + "voter": "badger3132" + }, + { + "rshares": "8761093741", + "voter": "badger3162" + }, + { + "rshares": "8992244297", + "voter": "badger3113" + }, + { + "rshares": "8642807886", + "voter": "badger3123" + }, + { + "rshares": "8766602954", + "voter": "badger3133" + }, + { + "rshares": "9118359724", + "voter": "badger3153" + }, + { + "rshares": "8796689830", + "voter": "badger3163" + }, + { + "rshares": "8827245303", + "voter": "badger3193" + }, + { + "rshares": "8776818063", + "voter": "badger3114" + }, + { + "rshares": "8685663112", + "voter": "badger3124" + }, + { + "rshares": "8588459406", + "voter": "badger3144" + }, + { + "rshares": "8510231316", + "voter": "badger3154" + }, + { + "rshares": "8377454951", + "voter": "badger3164" + }, + { + "rshares": "8709610129", + "voter": "badger3174" + }, + { + "rshares": "8990147355", + "voter": "badger3194" + }, + { + "rshares": "8886405623", + "voter": "badger3105" + }, + { + "rshares": "8829871300", + "voter": "badger3135" + }, + { + "rshares": "8423693063", + "voter": "badger3145" + }, + { + "rshares": "9007791015", + "voter": "badger3155" + }, + { + "rshares": "8700420554", + "voter": "badger3175" + }, + { + "rshares": "8476416242", + "voter": "badger3195" + }, + { + "rshares": "8118066308", + "voter": "badger3106" + }, + { + "rshares": "8937639951", + "voter": "badger3116" + }, + { + "rshares": "8985666162", + "voter": "badger3126" + }, + { + "rshares": "8612215471", + "voter": "badger3136" + }, + { + "rshares": "8258415644", + "voter": "badger3146" + }, + { + "rshares": "8490356190", + "voter": "badger3156" + }, + { + "rshares": "8706404705", + "voter": "badger3166" + }, + { + "rshares": "8621148181", + "voter": "badger3176" + }, + { + "rshares": "8755890485", + "voter": "badger3186" + }, + { + "rshares": "8791694513", + "voter": "badger3196" + }, + { + "rshares": "8719131325", + "voter": "badger3107" + }, + { + "rshares": "8471234920", + "voter": "badger315" + }, + { + "rshares": "8967798699", + "voter": "badger318" + }, + { + "rshares": "9017469354", + "voter": "badger3151" + }, + { + "rshares": "8689504021", + "voter": "badger3161" + }, + { + "rshares": "8949018277", + "voter": "badger3122" + }, + { + "rshares": "8885778223", + "voter": "badger3142" + }, + { + "rshares": "9108990725", + "voter": "badger3152" + }, + { + "rshares": "8411493414", + "voter": "badger3172" + }, + { + "rshares": "8925369694", + "voter": "badger3182" + }, + { + "rshares": "8680564470", + "voter": "badger3192" + }, + { + "rshares": "8595071709", + "voter": "badger3143" + }, + { + "rshares": "8858368574", + "voter": "badger3173" + }, + { + "rshares": "8564639501", + "voter": "badger3104" + }, + { + "rshares": "8276437501", + "voter": "badger3134" + }, + { + "rshares": "8683745951", + "voter": "badger3184" + }, + { + "rshares": "8620766828", + "voter": "badger3115" + }, + { + "rshares": "9094337935", + "voter": "badger3165" + }, + { + "rshares": "8719854886", + "voter": "badger3185" + }, + { + "rshares": "8781868170", + "voter": "badger314" + }, + { + "rshares": "9016639241", + "voter": "badger317" + }, + { + "rshares": "8754767708", + "voter": "badger3102" + }, + { + "rshares": "8716196161", + "voter": "badger3103" + }, + { + "rshares": "8643125157", + "voter": "badger3125" + }, + { + "rshares": "8609233299", + "voter": "badger3183" + }, + { + "rshares": "512951586", + "voter": "aizen39" + }, + { + "rshares": "3616249140600", + "voter": "satoshifund" + }, + { + "rshares": "392453750650", + "voter": "taoteh1221" + }, + { + "rshares": "418804855", + "voter": "applecrisp" + }, + { + "rshares": "373228451", + "voter": "stiletto" + }, + { + "rshares": "38901034355", + "voter": "juanmiguelsalas" + }, + { + "rshares": "54694274623", + "voter": "thecryptodrive" + }, + { + "rshares": "362609039187", + "voter": "kaylinart" + }, + { + "rshares": "1428647233", + "voter": "benthegameboy" + }, + { + "rshares": "390927750", + "voter": "rafikichi" + }, + { + "rshares": "79218648284", + "voter": "tim-johnston" + }, + { + "rshares": "132301151875", + "voter": "schro" + }, + { + "rshares": "4749927412", + "voter": "tee-em" + }, + { + "rshares": "31338683407", + "voter": "michaelx" + }, + { + "rshares": "6652497229", + "voter": "grandpere" + }, + { + "rshares": "5689049935", + "voter": "mark-waser" + }, + { + "rshares": "17023109715", + "voter": "albertogm" + }, + { + "rshares": "106033721718", + "voter": "geoffrey" + }, + { + "rshares": "192231455054", + "voter": "kimziv" + }, + { + "rshares": "43526357269", + "voter": "honeythief" + }, + { + "rshares": "77694419746", + "voter": "emily-cook" + }, + { + "rshares": "2122888373", + "voter": "superfreek" + }, + { + "rshares": "33245604843", + "voter": "cryptoiskey" + }, + { + "rshares": "484592257", + "voter": "mrhankeh" + }, + { + "rshares": "36254381895", + "voter": "clement" + }, + { + "rshares": "47416085106", + "voter": "isteemit" + }, + { + "rshares": "17205891791", + "voter": "grey580" + }, + { + "rshares": "280886491", + "voter": "ladyclair" + }, + { + "rshares": "55546285382", + "voter": "venuspcs" + }, + { + "rshares": "20379625641", + "voter": "thebatchman" + }, + { + "rshares": "164474222053", + "voter": "dashpaymag" + }, + { + "rshares": "169409415564", + "voter": "asmolokalo" + }, + { + "rshares": "462742250057", + "voter": "roelandp" + }, + { + "rshares": "69473128292", + "voter": "rubybian" + }, + { + "rshares": "3148219453", + "voter": "orly" + }, + { + "rshares": "4953381149", + "voter": "riscadox" + }, + { + "rshares": "245172817", + "voter": "mstang83" + }, + { + "rshares": "18842523479", + "voter": "hakise" + }, + { + "rshares": "14215545466", + "voter": "r4fken" + }, + { + "rshares": "25052927517", + "voter": "tcfxyz" + }, + { + "rshares": "6938809092", + "voter": "futurefood" + }, + { + "rshares": "1001850942", + "voter": "steemswede" + }, + { + "rshares": "31072527474", + "voter": "picokernel" + }, + { + "rshares": "823059128625", + "voter": "slowwalker" + }, + { + "rshares": "381822182", + "voter": "aizen13" + }, + { + "rshares": "3279400287", + "voter": "aizen41" + }, + { + "rshares": "931911377", + "voter": "aizen42" + }, + { + "rshares": "3174813360", + "voter": "aizen46" + }, + { + "rshares": "868931638", + "voter": "aizen47" + }, + { + "rshares": "212993516", + "voter": "aizen48" + }, + { + "rshares": "111038594", + "voter": "aizen49" + }, + { + "rshares": "922579590", + "voter": "aizen51" + }, + { + "rshares": "1267696038568", + "voter": "renohq" + }, + { + "rshares": "446844083", + "voter": "aizen43" + }, + { + "rshares": "66332881", + "voter": "aizen44" + }, + { + "rshares": "748318238", + "voter": "aizen54" + }, + { + "rshares": "14876041938", + "voter": "ausbitbank" + }, + { + "rshares": "1231736991", + "voter": "dicov" + }, + { + "rshares": "2530789873", + "voter": "steem1653" + }, + { + "rshares": "188360520718", + "voter": "anyx" + }, + { + "rshares": "7540907296", + "voter": "steemit-life" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "12461342724", + "voter": "asim" + }, + { + "rshares": "95008078", + "voter": "snowden" + }, + { + "rshares": "17043337041", + "voter": "bdavid" + }, + { + "rshares": "14289175254", + "voter": "aaseb" + }, + { + "rshares": "1107698236", + "voter": "karen13" + }, + { + "rshares": "19964419792", + "voter": "meiisheree" + }, + { + "rshares": "10644107638", + "voter": "deviedev" + }, + { + "rshares": "1427008333", + "voter": "jrd8526" + }, + { + "rshares": "73200426006", + "voter": "jpiper20" + }, + { + "rshares": "258942997644", + "voter": "nabilov" + }, + { + "rshares": "4121277460", + "voter": "dcryptogold" + }, + { + "rshares": "2722560234", + "voter": "dmacshady" + }, + { + "rshares": "228989895", + "voter": "aizen52" + }, + { + "rshares": "44553186838", + "voter": "milestone" + }, + { + "rshares": "87223247", + "voter": "wildchild" + }, + { + "rshares": "2650671514", + "voter": "the-future" + }, + { + "rshares": "186538708", + "voter": "aizen55" + }, + { + "rshares": "23976773907", + "voter": "peacekeeper" + }, + { + "rshares": "4310323809", + "voter": "poseidon" + }, + { + "rshares": "347898300458", + "voter": "calaber24p" + }, + { + "rshares": "3365335082", + "voter": "simon.braki.love" + }, + { + "rshares": "7025103979", + "voter": "geronimo" + }, + { + "rshares": "11121059561", + "voter": "rpf" + }, + { + "rshares": "3846864509", + "voter": "bitcoiner" + }, + { + "rshares": "3756536992", + "voter": "tarindel" + }, + { + "rshares": "30859119533", + "voter": "deanliu" + }, + { + "rshares": "138656821", + "voter": "bento" + }, + { + "rshares": "13069930577", + "voter": "shredlord" + }, + { + "rshares": "53842086331", + "voter": "jl777" + }, + { + "rshares": "30004697167", + "voter": "zaebars" + }, + { + "rshares": "1700129733", + "voter": "yarly" + }, + { + "rshares": "256282552", + "voter": "yarly2" + }, + { + "rshares": "256665987", + "voter": "yarly3" + }, + { + "rshares": "148269777", + "voter": "yarly4" + }, + { + "rshares": "149106888", + "voter": "yarly5" + }, + { + "rshares": "84991309", + "voter": "yarly7" + }, + { + "rshares": "799492214", + "voter": "raymonjohnstone" + }, + { + "rshares": "5272599454", + "voter": "bbrewer" + }, + { + "rshares": "21120708735", + "voter": "krabgat" + }, + { + "rshares": "4543692384", + "voter": "proto" + }, + { + "rshares": "634121191", + "voter": "curator" + }, + { + "rshares": "31584197440", + "voter": "sisterholics" + }, + { + "rshares": "411321155", + "voter": "yarly10" + }, + { + "rshares": "1365664469", + "voter": "alex.chien" + }, + { + "rshares": "220139771", + "voter": "yarly11" + }, + { + "rshares": "76966318", + "voter": "yarly12" + }, + { + "rshares": "10236810028", + "voter": "logic" + }, + { + "rshares": "3675499938", + "voter": "tygergamer" + }, + { + "rshares": "82066003", + "voter": "aizen53" + }, + { + "rshares": "149624601", + "voter": "steemster1" + }, + { + "rshares": "238512214", + "voter": "bullionstackers" + }, + { + "rshares": "108721833", + "voter": "cryptoz" + }, + { + "rshares": "6410776006", + "voter": "jed78" + }, + { + "rshares": "128598923578", + "voter": "steemdrive" + }, + { + "rshares": "973098459", + "voter": "metaflute" + }, + { + "rshares": "50562639777", + "voter": "gomeravibz" + }, + { + "rshares": "440302381", + "voter": "bento04" + }, + { + "rshares": "738358963", + "voter": "bento03" + }, + { + "rshares": "1504291216", + "voter": "aizen" + }, + { + "rshares": "2298269478", + "voter": "taker" + }, + { + "rshares": "234848214", + "voter": "bento02" + }, + { + "rshares": "540710999", + "voter": "bento01" + }, + { + "rshares": "7824682639", + "voter": "nekromarinist" + }, + { + "rshares": "1618775242", + "voter": "coinbar" + }, + { + "rshares": "59219358", + "voter": "sharon" + }, + { + "rshares": "226021128", + "voter": "frozendota" + }, + { + "rshares": "2315969904", + "voter": "merej99" + }, + { + "rshares": "60342922", + "voter": "lillianjones" + }, + { + "rshares": "1116575645876", + "voter": "laonie" + }, + { + "rshares": "245498462743", + "voter": "ozchartart" + }, + { + "rshares": "5002458769", + "voter": "croatia" + }, + { + "rshares": "64020118", + "voter": "vladimirputin" + }, + { + "rshares": "23878310347", + "voter": "rawnetics" + }, + { + "rshares": "64028162", + "voter": "angelamerkel" + }, + { + "rshares": "8270207209", + "voter": "spaceghost" + }, + { + "rshares": "11407745971", + "voter": "thebluepanda" + }, + { + "rshares": "22955094272", + "voter": "laonie1" + }, + { + "rshares": "23470889026", + "voter": "laonie2" + }, + { + "rshares": "23479197538", + "voter": "laonie3" + }, + { + "rshares": "80221808", + "voter": "bento06" + }, + { + "rshares": "23907912804", + "voter": "laoyao" + }, + { + "rshares": "37203524105", + "voter": "myfirst" + }, + { + "rshares": "226714843171", + "voter": "somebody" + }, + { + "rshares": "8719338522", + "voter": "flysaga" + }, + { + "rshares": "6129565712", + "voter": "k4r1nn" + }, + { + "rshares": "5106436541", + "voter": "brendio" + }, + { + "rshares": "2082768176", + "voter": "gmurph" + }, + { + "rshares": "50083495099", + "voter": "midnightoil" + }, + { + "rshares": "81536310749", + "voter": "mibenkito" + }, + { + "rshares": "2375350982", + "voter": "kalimor" + }, + { + "rshares": "998581895", + "voter": "altucher" + }, + { + "rshares": "4187079592", + "voter": "ullikume" + }, + { + "rshares": "99580782", + "voter": "timferriss" + }, + { + "rshares": "50565616", + "voter": "michellek" + }, + { + "rshares": "23474742068", + "voter": "laonie4" + }, + { + "rshares": "23472418592", + "voter": "laonie5" + }, + { + "rshares": "23469546880", + "voter": "laonie6" + }, + { + "rshares": "4337200195", + "voter": "armen" + }, + { + "rshares": "23465711623", + "voter": "laonie7" + }, + { + "rshares": "3986410926", + "voter": "kurtbeil" + }, + { + "rshares": "23462236775", + "voter": "laonie8" + }, + { + "rshares": "23459668262", + "voter": "laonie9" + }, + { + "rshares": "2511850537", + "voter": "steemleak" + }, + { + "rshares": "107573849125", + "voter": "thisisbenbrick" + }, + { + "rshares": "102639999", + "voter": "darrenrowse" + }, + { + "rshares": "125243433939", + "voter": "xiaohui" + }, + { + "rshares": "4185826321", + "voter": "antfield" + }, + { + "rshares": "176650903994", + "voter": "terrycraft" + }, + { + "rshares": "21110659306", + "voter": "jphamer1" + }, + { + "rshares": "97051399", + "voter": "bigsambucca" + }, + { + "rshares": "5946738271", + "voter": "elfkitchen" + }, + { + "rshares": "5766554064", + "voter": "oflyhigh" + }, + { + "rshares": "15547550089", + "voter": "randyclemens" + }, + { + "rshares": "2190476078", + "voter": "paynode" + }, + { + "rshares": "63775516", + "voter": "nickche" + }, + { + "rshares": "4028373583", + "voter": "xiaokongcom" + }, + { + "rshares": "57428544328", + "voter": "driv3n" + }, + { + "rshares": "60819615", + "voter": "msjennifer" + }, + { + "rshares": "55925537", + "voter": "ciao" + }, + { + "rshares": "54217761", + "voter": "steemo" + }, + { + "rshares": "175834493", + "voter": "pcashmore" + }, + { + "rshares": "8120343873", + "voter": "xianjun" + }, + { + "rshares": "54077897", + "voter": "steema" + }, + { + "rshares": "58449787", + "voter": "andrew.sullivan" + }, + { + "rshares": "1025553643", + "voter": "brianclark" + }, + { + "rshares": "815283599", + "voter": "daniel.kahneman" + }, + { + "rshares": "228330036", + "voter": "tucker.max" + }, + { + "rshares": "726300641", + "voter": "darren.rowse" + }, + { + "rshares": "54611897", + "voter": "chris.dunn" + }, + { + "rshares": "71282219", + "voter": "confucius" + }, + { + "rshares": "70633121", + "voter": "stevescriber" + }, + { + "rshares": "4015538661", + "voter": "bledarus" + }, + { + "rshares": "1155158838", + "voter": "pat.flynn" + }, + { + "rshares": "62297184", + "voter": "weames" + }, + { + "rshares": "50027573", + "voter": "loli" + }, + { + "rshares": "89194632643", + "voter": "miacats" + }, + { + "rshares": "1199604993", + "voter": "mattmarshall" + }, + { + "rshares": "429199025", + "voter": "timothysykes" + }, + { + "rshares": "52419023", + "voter": "nano2nd" + }, + { + "rshares": "104765652", + "voter": "patflynn" + }, + { + "rshares": "54909929", + "voter": "jarvis" + }, + { + "rshares": "531944476", + "voter": "microluck" + }, + { + "rshares": "879418656", + "voter": "andrewsullivan" + }, + { + "rshares": "77220767", + "voter": "razberrijam" + }, + { + "rshares": "9618530893", + "voter": "theb0red1" + }, + { + "rshares": "53106127", + "voter": "fortuner" + }, + { + "rshares": "1952786674", + "voter": "chinadaily" + }, + { + "rshares": "59021275", + "voter": "cryptoblu" + }, + { + "rshares": "59014859", + "voter": "instructor" + }, + { + "rshares": "739426684571", + "voter": "dollarvigilante" + }, + { + "rshares": "3897735456", + "voter": "lamech-m" + }, + { + "rshares": "479539090", + "voter": "harvey.levin" + }, + { + "rshares": "9825243280", + "voter": "gvargas123" + }, + { + "rshares": "13004524355", + "voter": "telos" + }, + { + "rshares": "51877132", + "voter": "johnbyrd" + }, + { + "rshares": "51860909", + "voter": "thomasaustin" + }, + { + "rshares": "51859074", + "voter": "thermor" + }, + { + "rshares": "51870077", + "voter": "ficholl" + }, + { + "rshares": "51852278", + "voter": "widell" + }, + { + "rshares": "51481279", + "voter": "revelbrooks" + }, + { + "rshares": "23453540976", + "voter": "laonie10" + }, + { + "rshares": "604185913", + "voter": "wuyueling" + }, + { + "rshares": "73277014476", + "voter": "sweetsssj" + }, + { + "rshares": "2803446535", + "voter": "netaterra" + }, + { + "rshares": "190920669", + "voter": "rand.fishkin" + }, + { + "rshares": "90834949499", + "voter": "barrycooper" + }, + { + "rshares": "79979619", + "voter": "joelbow" + }, + { + "rshares": "28908541792", + "voter": "hilarski" + }, + { + "rshares": "2496488206", + "voter": "shadowspub" + }, + { + "rshares": "51562255", + "voter": "curpose" + }, + { + "rshares": "55859919", + "voter": "rickmiller" + }, + { + "rshares": "1208491149", + "voter": "lenar" + }, + { + "rshares": "2129438571", + "voter": "cryptoeasy" + }, + { + "rshares": "5032072150", + "voter": "nulliusinverba" + }, + { + "rshares": "68558903", + "voter": "stephenkendal" + }, + { + "rshares": "112576381", + "voter": "jlufer" + }, + { + "rshares": "90066514", + "voter": "uziriel" + }, + { + "rshares": "1931935967", + "voter": "funkywanderer" + }, + { + "rshares": "4592861696", + "voter": "richardcrill" + }, + { + "rshares": "22607437120", + "voter": "laonie11" + }, + { + "rshares": "2249900457", + "voter": "jeremyfromwi" + }, + { + "rshares": "63258691", + "voter": "arnoldz61" + }, + { + "rshares": "51712804", + "voter": "troich" + }, + { + "rshares": "1588617838", + "voter": "davidjkelley" + }, + { + "rshares": "187911420", + "voter": "team101" + }, + { + "rshares": "51718188", + "voter": "crion" + }, + { + "rshares": "178419224", + "voter": "greatness" + }, + { + "rshares": "51388276", + "voter": "hitherise" + }, + { + "rshares": "51379706", + "voter": "wiss" + }, + { + "rshares": "13264756693", + "voter": "ghasemkiani" + }, + { + "rshares": "20853966542", + "voter": "sponge-bob" + }, + { + "rshares": "4434912337", + "voter": "l0k1" + }, + { + "rshares": "14886230314", + "voter": "digital-wisdom" + }, + { + "rshares": "3628536972", + "voter": "ethical-ai" + }, + { + "rshares": "52143228", + "voter": "stroully" + }, + { + "rshares": "1433005760", + "voter": "jiganomics" + }, + { + "rshares": "6531322926", + "voter": "jwaser" + }, + { + "rshares": "11919570943", + "voter": "doitvoluntarily" + }, + { + "rshares": "51814474", + "voter": "thadm" + }, + { + "rshares": "51812703", + "voter": "prof" + }, + { + "rshares": "1018513187", + "voter": "zettar" + }, + { + "rshares": "94160774", + "voter": "kyusho" + }, + { + "rshares": "414323782", + "voter": "steemorama" + }, + { + "rshares": "52252552", + "voter": "lighter" + }, + { + "rshares": "51465774", + "voter": "yorsens" + }, + { + "rshares": "3068760608", + "voter": "michaelmatthews" + }, + { + "rshares": "273904972", + "voter": "benjamin.still" + }, + { + "rshares": "174173092", + "voter": "harveylevin" + }, + { + "rshares": "51154263", + "voter": "bane" + }, + { + "rshares": "51148009", + "voter": "vive" + }, + { + "rshares": "51142585", + "voter": "coad" + }, + { + "rshares": "2558000160", + "voter": "bwaser" + }, + { + "rshares": "51922012", + "voter": "sofa" + }, + { + "rshares": "120475423", + "voter": "gary.vaynerchuk" + }, + { + "rshares": "5773395051", + "voter": "dexter-k" + }, + { + "rshares": "344116052", + "voter": "panther" + }, + { + "rshares": "2201645172", + "voter": "alina1" + }, + { + "rshares": "659570211", + "voter": "ct-gurus" + }, + { + "rshares": "395021428301", + "voter": "charlieshrem" + }, + { + "rshares": "61805245119", + "voter": "tracemayer" + }, + { + "rshares": "20817843519", + "voter": "brains" + }, + { + "rshares": "50450987", + "voter": "waldemar-kuhn" + }, + { + "rshares": "51994517", + "voter": "ailo" + }, + { + "rshares": "5470867324", + "voter": "chick1" + }, + { + "rshares": "2275182541", + "voter": "whatsup" + }, + { + "rshares": "51114196", + "voter": "xpice" + }, + { + "rshares": "2084741030", + "voter": "steemsquad" + }, + { + "rshares": "255505026", + "voter": "anomaly" + }, + { + "rshares": "2293549771", + "voter": "ellepdub" + }, + { + "rshares": "50407156", + "voter": "timothy.sykes" + }, + { + "rshares": "59178617", + "voter": "inarix03" + }, + { + "rshares": "218488504", + "voter": "ola1" + }, + { + "rshares": "11523640324", + "voter": "herpetologyguy" + }, + { + "rshares": "52614987", + "voter": "dulcio" + }, + { + "rshares": "51470533", + "voter": "eavy" + }, + { + "rshares": "51484593", + "voter": "roto" + }, + { + "rshares": "54452104", + "voter": "drac59" + }, + { + "rshares": "57119426", + "voter": "everittdmickey" + }, + { + "rshares": "1041710878", + "voter": "jang" + }, + { + "rshares": "4605288518", + "voter": "morgan.waser" + }, + { + "rshares": "50602980", + "voter": "cfisher" + }, + { + "rshares": "285981023", + "voter": "thefinanceguy" + }, + { + "rshares": "50235850", + "voter": "billkappa442" + }, + { + "rshares": "1206752302", + "voter": "anns" + }, + { + "rshares": "50938725", + "voter": "haved" + }, + { + "rshares": "50708837", + "voter": "ardly" + }, + { + "rshares": "50704078", + "voter": "yotoh" + }, + { + "rshares": "50565798", + "voter": "penthouse" + }, + { + "rshares": "1871969417", + "voter": "bapparabi" + }, + { + "rshares": "50487909", + "voter": "opticalillusions" + }, + { + "rshares": "50433760", + "voter": "morse" + }, + { + "rshares": "50372583", + "voter": "carre" + }, + { + "rshares": "50351738", + "voter": "aschwin" + }, + { + "rshares": "3527739772", + "voter": "strong-ai" + }, + { + "rshares": "71207873", + "voter": "igtes" + }, + { + "rshares": "851674848", + "voter": "dikanevroman" + }, + { + "rshares": "144899746", + "voter": "buffett" + }, + { + "rshares": "159723319", + "voter": "ctu" + }, + { + "rshares": "1319373906", + "voter": "rusteemitblog" + }, + { + "rshares": "161974443", + "voter": "zapply" + }, + { + "rshares": "505647276", + "voter": "kjsxj" + }, + { + "rshares": "158642800", + "voter": "ranger" + }, + { + "rshares": "161700361", + "voter": "shadowcash" + }, + { + "rshares": "435351417", + "voter": "witchcraftblog" + }, + { + "rshares": "158051137", + "voter": "origin" + }, + { + "rshares": "310120169", + "voter": "james1987" + }, + { + "rshares": "160845765", + "voter": "caseyneistat" + }, + { + "rshares": "161323470", + "voter": "pawel-krawczyk" + }, + { + "rshares": "201362779", + "voter": "mgibson" + }, + { + "rshares": "160326045", + "voter": "planet" + }, + { + "rshares": "152057481", + "voter": "food-creator" + }, + { + "rshares": "156411729", + "voter": "blender" + }, + { + "rshares": "156261069", + "voter": "ibm1000" + }, + { + "rshares": "156227917", + "voter": "panic" + }, + { + "rshares": "159143891", + "voter": "reef" + }, + { + "rshares": "158560941", + "voter": "steemthis" + }, + { + "rshares": "158541985", + "voter": "citigroup" + }, + { + "rshares": "158486055", + "voter": "zendesk" + }, + { + "rshares": "158270049", + "voter": "maxb02" + }, + { + "rshares": "71720421", + "voter": "dealzgal" + }, + { + "rshares": "197432359", + "voter": "blend" + }, + { + "rshares": "80379451", + "voter": "storage" + }, + { + "rshares": "148077602", + "voter": "dougkarr" + }, + { + "rshares": "64613800", + "voter": "blackmarket" + }, + { + "rshares": "70760501", + "voter": "gifts" + }, + { + "rshares": "91120780", + "voter": "expat" + }, + { + "rshares": "134906258", + "voter": "steemtrail" + }, + { + "rshares": "147050914", + "voter": "royfft" + }, + { + "rshares": "151927362", + "voter": "countofdelphi" + }, + { + "rshares": "154610548", + "voter": "rjordan" + }, + { + "rshares": "144957585", + "voter": "sawgunner13" + }, + { + "rshares": "150986382", + "voter": "mysteryshot" + }, + { + "rshares": "150834868", + "voter": "dirlei.sdias" + }, + { + "rshares": "150260046", + "voter": "tttnofear" + } + ], + "author": "calaber24p", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "

Who Should We Find Responsible For The Subprime Mortgage Lending Crisis?

\n\nI want to preface this article by saying, I\u2019m not 100% sure who we should blame for the Subprime Mortgage Lending Crisis, the lenders or the borrowers which is why I want to attempt to fairly give arguments from both sides. Even today this is a heavily debated topic and I agree with points made by both sides. So I want you to decide as the reader, who you side with, and if you want to post in the comments below. This article is meant to shed light on who we should hold responsible for the Subprime Mortgage Crisis, the lenders or the borrowers, or someone else?\n\nhttp://longislandbankruptcyblog.com/wp-content/uploads/2007/11/mortgage-bubble-bursting-by-the-sub-prime-mortgage-meltdown.jpg\n\n

The Lender\u2019s Side of The Argument

\n\nThe lender\u2019s side of the argument almost completely revolves around the idea that people need to educate themselves before they go into a bank and take on such a series contract, like a mortgage. Even in many cases where the information was fully available to the borrower, they signed the contract even though they didn\u2019t understand it. If you agree with consumer protection, the lenders should have stopped the transaction from taking place, but many believe that we should be free to make all decisions even bad ones. The truth is that these are companies, however and their only job is to look out for themselves. This lending is an especially weird occurrence because the force which usually stops this kind of behavior from taking place is that it would not be beneficial to the company, but mortgage brokers and the companies lending were making so much money that at the time it seemed like a good idea. \n\nhttps://www.biggerpockets.com/renewsblog/wp-content/uploads/2015/06/questions-lender.jpg\n\nAnother way the lenders justify their subprime lending practices was that they were getting pressure from higher up in the company to lend as much as possible because there was such a demand for the financial products on the markets. This is the old \u201cI was just following orders\u201d excuse, but there truly was heavy pressure from companies onto the brokers to loan as much as they could, or they would find someone else to do it. At the time most mortgage brokers legitimately didn\u2019t think that they were doing something bad. They didn\u2019t try to tank the system, they truly believed that the booming real estate market would be able to cover any losses if someone foreclosed on a property. We found out that this was a horribly wrong assumption eventually which lead to billions in toxic assets on the bank balance sheet worth nothing. Ultimately if you think that the consumer should have been diligent and did the required research before they took the mortgage contract, you might side with the side of the lenders\n\n

The Borrower\u2019s Side of The Argument

\n\nOn the flip side, the borrower\u2019s side of the argument claims that it is a company\u2019s duty to inform the customer and the government\u2019s duty to provide consumer protection so mortgages that were created with a high chance of failure wouldn\u2019t be possible. Borrowers also claim that many of the brokers specifically targeted low income and uneducated applicants so they could get a larger commission. In addition, the extreme leniency of the various types of mortgage products that were being offered at the time, for example not having to even show any income, should have been against the law. While not all brokers were predatory, there were many that were, which did target the low income and uneducated, but at the same time there were many borrowers who knew they couldn\u2019t afford the payments on the house and figured they would just resell it for profit. Consumer protection is a tricky subject , because at what point does it stop becoming protection and start becoming a barrier to entry. For example up until this year only Americans with an income of 250k + or 1,000,000 in assets (disregarding primary residence) were able to invest in private companies, many hedge funds and other investment vehicles, all because of consumer protection. \n\nhttps://activerain-store.s3.amazonaws.com/image_store/uploads/2/5/4/4/3/ar123584050234452.jpg\n\nMany people say that a fool and his money soon part ways and it\u2019s hard to wonder if people who signed into these mortgages would have lost money elsewhere on credit cards or payday loans. I think that the mortgage prices that were way to complex for anyone to even understand should have never been offered, but is it the government\u2019s place to protect a private entity from not offering them? Theoretically in a free market banks should not have offered the products because they were too risky and would have lost them money, but this force did not prevail. Whether or not you agree with the borrower heavily comes down to what degree you think consumer protection should play on your everyday life and how the government should police products. \n\n

Conclusion And Some Of My Thoughts

\n\nLike I said when I started the article I don\u2019t think I find either party solely responsible for the subprime mortgage crisis that occurred. I believe both parties over leveraged themselves and took risks that, in hindsight, were insane. The world market wanted more mortgage prices and people all around the world were willing to pay large amounts for them, so banks and mortgage brokers supplied the demand that was out there. Unfortunately the mortgages they supplied them with were garbage. In this regard I blame the credit rating agencies, whose actual job is to rate them properly , for not doing their job. I also believe that the specific brokers and lenders who were predatory lending were morally wrong, but I\u2019m not so sure that they constitute acting criminally. Maybe under current laws yes, but im someone who does not believe in consumer protection, mostly because I believe that people should be able to spend their money as they see fit on any product they see fit. We see 1000 scams on the internet a day, yet we don\u2019t fall for them because we know they are scams. I think trusting any entity that is making money off you is foolish. Im interested to see what other people here think and why.", + "category": "life", + "children": 31, + "created": "2016-09-14T21:48:51", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://longislandbankruptcyblog.com/wp-content/uploads/2007/11/mortgage-bubble-bursting-by-the-sub-prime-mortgage-meltdown.jpg", + "https://www.biggerpockets.com/renewsblog/wp-content/uploads/2015/06/questions-lender.jpg", + "https://activerain-store.s3.amazonaws.com/image_store/uploads/2/5/4/4/3/ar123584050234452.jpg" + ], + "tags": [ + "life", + "money", + "investing", + "banking", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 110596898261619, + "payout": 697.978, + "payout_at": "2016-09-15T22:37:56", + "pending_payout_value": "697.978 HBD", + "percent_steem_dollars": 10000, + "permlink": "who-should-we-find-responsible-for-the-subprime-mortgage-lending-crisis", + "post_id": 952817, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 524 + }, + "title": "Who Should We Find Responsible For The Subprime Mortgage Lending Crisis?", + "updated": "2016-09-14T21:48:51", + "url": "/life/@calaber24p/who-should-we-find-responsible-for-the-subprime-mortgage-lending-crisis" + }, + { + "active_votes": [ + { + "rshares": "504195513450", + "voter": "barrie" + }, + { + "rshares": "31620913718202", + "voter": "smooth" + }, + { + "rshares": "1911892676725", + "voter": "badassmother" + }, + { + "rshares": "2052957762572", + "voter": "hr1" + }, + { + "rshares": "1304415071462", + "voter": "rossco99" + }, + { + "rshares": "22865183550", + "voter": "jaewoocho" + }, + { + "rshares": "226246467529", + "voter": "steem-id" + }, + { + "rshares": "1576158798591", + "voter": "joseph" + }, + { + "rshares": "452786214573", + "voter": "recursive3" + }, + { + "rshares": "667448946492", + "voter": "masteryoda" + }, + { + "rshares": "3120322518686", + "voter": "recursive" + }, + { + "rshares": "1246183601", + "voter": "mineralwasser" + }, + { + "rshares": "681020986865", + "voter": "boombastic" + }, + { + "rshares": "91328598326", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "1670010256", + "voter": "bingo-1" + }, + { + "rshares": "5939141625779", + "voter": "smooth.witness" + }, + { + "rshares": "9167324238", + "voter": "idol" + }, + { + "rshares": "5147451513", + "voter": "sakr" + }, + { + "rshares": "1577927842", + "voter": "jocelyn" + }, + { + "rshares": "83529892028", + "voter": "acidsun" + }, + { + "rshares": "15004772648", + "voter": "gregory-f" + }, + { + "rshares": "9412699804", + "voter": "gregory60" + }, + { + "rshares": "1221939836170", + "voter": "gavvet" + }, + { + "rshares": "74914418556", + "voter": "eeks" + }, + { + "rshares": "3023823526", + "voter": "fkn" + }, + { + "rshares": "3974627163", + "voter": "elishagh1" + }, + { + "rshares": "584166740800", + "voter": "nanzo-scoop" + }, + { + "rshares": "450784780", + "voter": "jeffanthonyfds" + }, + { + "rshares": "177394802953", + "voter": "mummyimperfect" + }, + { + "rshares": "313689446", + "voter": "coar" + }, + { + "rshares": "106630632039", + "voter": "asch" + }, + { + "rshares": "1061217841", + "voter": "murh" + }, + { + "rshares": "6230682263", + "voter": "cryptofunk" + }, + { + "rshares": "2057276344", + "voter": "error" + }, + { + "rshares": "985521934082", + "voter": "cyber" + }, + { + "rshares": "61711858916", + "voter": "theshell" + }, + { + "rshares": "49574865624", + "voter": "ak2020" + }, + { + "rshares": "769703167086", + "voter": "satoshifund" + }, + { + "rshares": "409231996622", + "voter": "taoteh1221" + }, + { + "rshares": "410502622", + "voter": "applecrisp" + }, + { + "rshares": "33781859925", + "voter": "ratel" + }, + { + "rshares": "121380113922", + "voter": "geoffrey" + }, + { + "rshares": "26709210609", + "voter": "kimziv" + }, + { + "rshares": "74282084191", + "voter": "emily-cook" + }, + { + "rshares": "2187587354", + "voter": "superfreek" + }, + { + "rshares": "19974734600", + "voter": "thebatchman" + }, + { + "rshares": "60285274969", + "voter": "good-karma" + }, + { + "rshares": "1609452901", + "voter": "gidlark" + }, + { + "rshares": "73849034695", + "voter": "rubybian" + }, + { + "rshares": "365381071", + "voter": "konstantin" + }, + { + "rshares": "4533066552", + "voter": "stranger27" + }, + { + "rshares": "2597453094", + "voter": "romel" + }, + { + "rshares": "14760800618", + "voter": "furion" + }, + { + "rshares": "70822893", + "voter": "barbara2" + }, + { + "rshares": "78718732", + "voter": "ch0c0latechip" + }, + { + "rshares": "72854943", + "voter": "doge4lyf" + }, + { + "rshares": "248653120", + "voter": "ardina" + }, + { + "rshares": "14487949878", + "voter": "aaseb" + }, + { + "rshares": "4209499465", + "voter": "karen13" + }, + { + "rshares": "10646413479", + "voter": "deviedev" + }, + { + "rshares": "258981906731", + "voter": "nabilov" + }, + { + "rshares": "35782810726", + "voter": "creemej" + }, + { + "rshares": "3800725646", + "voter": "maximkichev" + }, + { + "rshares": "167301783484", + "voter": "blueorgy" + }, + { + "rshares": "582626783", + "voter": "poseidon" + }, + { + "rshares": "2083366228", + "voter": "iamwne" + }, + { + "rshares": "7946556816", + "voter": "smolalit" + }, + { + "rshares": "347973296817", + "voter": "calaber24p" + }, + { + "rshares": "3506024506", + "voter": "simon.braki.love" + }, + { + "rshares": "268131351853", + "voter": "liberosist" + }, + { + "rshares": "32542201152", + "voter": "deanliu" + }, + { + "rshares": "40247477787", + "voter": "celsius100" + }, + { + "rshares": "204615752038", + "voter": "jl777" + }, + { + "rshares": "2452241013", + "voter": "positive" + }, + { + "rshares": "35821871446", + "voter": "paquito" + }, + { + "rshares": "101547003699", + "voter": "crazymumzysa" + }, + { + "rshares": "4827846086", + "voter": "gustavopasquini" + }, + { + "rshares": "18844269406", + "voter": "carlidos" + }, + { + "rshares": "17267164725", + "voter": "proto" + }, + { + "rshares": "4513770870", + "voter": "sisterholics" + }, + { + "rshares": "1444237397", + "voter": "alex.chien" + }, + { + "rshares": "8964609699", + "voter": "royalmacro" + }, + { + "rshares": "82565168", + "voter": "fnait" + }, + { + "rshares": "73351025", + "voter": "keepcalmand" + }, + { + "rshares": "120956823", + "voter": "ap2002" + }, + { + "rshares": "8734053750", + "voter": "taker" + }, + { + "rshares": "159615103593", + "voter": "laonie" + }, + { + "rshares": "157504637007", + "voter": "twinner" + }, + { + "rshares": "24561329465", + "voter": "laoyao" + }, + { + "rshares": "5329392113", + "voter": "myfirst" + }, + { + "rshares": "32400440159", + "voter": "somebody" + }, + { + "rshares": "16605279252", + "voter": "sunshine" + }, + { + "rshares": "1211439463", + "voter": "flysaga" + }, + { + "rshares": "2084689825", + "voter": "gmurph" + }, + { + "rshares": "7157539840", + "voter": "midnightoil" + }, + { + "rshares": "2327843962", + "voter": "kalimor" + }, + { + "rshares": "17901440239", + "voter": "xiaohui" + }, + { + "rshares": "172970676828", + "voter": "terrycraft" + }, + { + "rshares": "369703928", + "voter": "riosparada" + }, + { + "rshares": "808461612", + "voter": "elfkitchen" + }, + { + "rshares": "103387869456", + "voter": "joele" + }, + { + "rshares": "5855390607", + "voter": "oflyhigh" + }, + { + "rshares": "559689131", + "voter": "xiaokongcom" + }, + { + "rshares": "2114128942", + "voter": "future24" + }, + { + "rshares": "1128227680", + "voter": "xianjun" + }, + { + "rshares": "7546646500", + "voter": "lgm-1" + }, + { + "rshares": "2249482011", + "voter": "njall" + }, + { + "rshares": "73887203", + "voter": "microluck" + }, + { + "rshares": "75676352", + "voter": "razberrijam" + }, + { + "rshares": "6417571438", + "voter": "userlogin" + }, + { + "rshares": "59219258", + "voter": "photo00" + }, + { + "rshares": "604294820", + "voter": "tagira" + }, + { + "rshares": "2077233526", + "voter": "chinadaily" + }, + { + "rshares": "110661420", + "voter": "pollina" + }, + { + "rshares": "9071955992", + "voter": "johnnyyash" + }, + { + "rshares": "3352601337", + "voter": "macartem" + }, + { + "rshares": "9827647000", + "voter": "gvargas123" + }, + { + "rshares": "3707793427", + "voter": "movievertigo" + }, + { + "rshares": "23716271959", + "voter": "andrewawerdna" + }, + { + "rshares": "9139485521", + "voter": "craigwilliamz" + }, + { + "rshares": "56654664918", + "voter": "mandibil" + }, + { + "rshares": "60273361", + "voter": "bonapetit" + }, + { + "rshares": "74550672", + "voter": "steembriefing" + }, + { + "rshares": "55750195", + "voter": "riv" + }, + { + "rshares": "5401359628", + "voter": "nulliusinverba" + }, + { + "rshares": "2196809758", + "voter": "runridefly" + }, + { + "rshares": "33516506660", + "voter": "krnel" + }, + { + "rshares": "5053551216", + "voter": "richardcrill" + }, + { + "rshares": "11070141971", + "voter": "sponge-bob" + }, + { + "rshares": "53070013", + "voter": "apparat" + }, + { + "rshares": "12276570645", + "voter": "doitvoluntarily" + }, + { + "rshares": "201688406600", + "voter": "asksisk" + }, + { + "rshares": "330365849", + "voter": "panther" + }, + { + "rshares": "11067573914", + "voter": "brains" + }, + { + "rshares": "1396726660", + "voter": "steemafon" + }, + { + "rshares": "3310976095", + "voter": "anton333" + }, + { + "rshares": "339274981", + "voter": "anomaly" + }, + { + "rshares": "123155378", + "voter": "ola1" + }, + { + "rshares": "70282046", + "voter": "mari5555na" + }, + { + "rshares": "6087022243", + "voter": "ekaterina4ka" + }, + { + "rshares": "291933324", + "voter": "thefinanceguy" + }, + { + "rshares": "50223099", + "voter": "battalar" + }, + { + "rshares": "50873654", + "voter": "palladium" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "50565798", + "voter": "penthouse" + }, + { + "rshares": "2216805889", + "voter": "bapparabi" + }, + { + "rshares": "50532230", + "voter": "friends" + }, + { + "rshares": "469221474", + "voter": "iontom" + }, + { + "rshares": "50482289", + "voter": "connection" + }, + { + "rshares": "444435987", + "voter": "witchcraftblog" + }, + { + "rshares": "157816798", + "voter": "gravity" + }, + { + "rshares": "160957729", + "voter": "realtime" + }, + { + "rshares": "160835930", + "voter": "skrillex" + }, + { + "rshares": "148889617", + "voter": "food-creator" + }, + { + "rshares": "156814579", + "voter": "haribo" + }, + { + "rshares": "159425365", + "voter": "tipsandtricks" + }, + { + "rshares": "156054487", + "voter": "fallout" + }, + { + "rshares": "159143891", + "voter": "reef" + }, + { + "rshares": "155528114", + "voter": "icesteem" + }, + { + "rshares": "158632601", + "voter": "cream" + }, + { + "rshares": "155452864", + "voter": "jyriygo" + } + ], + "author": "terrycraft", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Vegetarianism is philosophy which has deep religious and ethical roots, the essence is the refuse to eat meat of living beings.\nPythagorean were vegetarians. Yogis of ancient India were vegetarians. The followers of Buddhism are prescribed to be vegetarians. Early Christianity forbade killing for food.\nI became a vegetarian at the age of 15. I remember clear this comic occasion: during another lush family dinner my dad putted the shin of the roasted goose on my plate. When he was putting this piece of once living bird, I claimed it for the first time: \u201cNo, dad thanks. I don\u2019t eat living creatures anymore. I\u2019m a vegetarian\u201d.\nhttp://petroart.ru/art/b/bronikov/img/3.jpg\n>\u0412\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0441\u0442\u0432\u043e - \u044d\u0442\u043e \u0444\u0438\u043b\u043e\u0441\u043e\u0444\u0438\u044f, \u0438\u043c\u0435\u044e\u0449\u0430\u044f \u043e\u0447\u0435\u043d\u044c \u0434\u0440\u0435\u0432\u043d\u0438\u0435 \u0440\u0435\u043b\u0438\u0433\u0438\u043e\u0437\u043d\u044b\u0435 \u0438 \u044d\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043a\u043e\u0440\u043d\u0438, \u0441\u0443\u0442\u044c \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0441\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043e\u0442\u043a\u0430\u0437 \u043e\u0442 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u043b\u0435\u043d\u0438\u044f \u0432 \u043f\u0438\u0449\u0443 \u043c\u044f\u0441\u0430 \u0436\u0438\u0432\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432. \n\u041f\u0438\u0444\u0430\u0433\u043e\u0440\u0435\u0439\u0446\u044b \u0431\u044b\u043b\u0438 \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0446\u0430\u043c\u0438. \u0419\u043e\u0433\u0438 \u0434\u0440\u0435\u0432\u043d\u0435\u0439 \u0418\u043d\u0434\u0438\u0438 \u0431\u044b\u043b\u0438 \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0446\u0430\u043c\u0438. \u0411\u0443\u0434\u0434\u0438\u0437\u043c \u043f\u0440\u0435\u0434\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u0442 \u0441\u0432\u043e\u0438\u043c \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0441\u0442\u0432\u043e. \u0420\u0430\u043d\u043d\u0435\u0435 \u0445\u0440\u0438\u0441\u0442\u0438\u0430\u043d\u0441\u0442\u0432\u043e \u0437\u0430\u043f\u0440\u0435\u0449\u0430\u043b\u043e \u0443\u0431\u0438\u0439\u0441\u0442\u0432\u043e \u0434\u043b\u044f \u0447\u0440\u0435\u0432\u0430.\n\u042f \u0441\u0442\u0430\u043b\u0430 \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u043e\u0439 \u0432 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0435 15 \u043b\u0435\u0442. \u041f\u0440\u0435\u043a\u0440\u0430\u0441\u043d\u043e \u043f\u043e\u043c\u043d\u044e \u044d\u0442\u043e\u0442 \u043a\u043e\u043c\u0438\u0447\u043d\u044b\u0439 \u0441\u043b\u0443\u0447\u0430\u0439: \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0433\u043e \u043f\u044b\u0448\u043d\u043e\u0433\u043e \u0441\u0435\u043c\u0435\u0439\u043d\u043e\u0433\u043e \u0443\u0436\u0438\u043d\u0430 \u043f\u0430\u043f\u0430 \u0432\u044b\u0437\u0432\u0430\u043b\u0441\u044f \u043f\u043e\u043b\u043e\u0436\u0438\u0442\u044c \u043c\u043d\u0435 \u0432 \u0442\u0430\u0440\u0435\u043b\u043a\u0443 \u0433\u043e\u043b\u0435\u043d\u044c \u0437\u0430\u043f\u0435\u0447\u0451\u043d\u043d\u043e\u0433\u043e \u0432 \u0434\u0443\u0445\u043e\u0432\u043a\u0435 \u0433\u0443\u0441\u044f. \u0412 \u0442\u043e \u0432\u0440\u0435\u043c\u044f \u043a\u0430\u043a \u043e\u043d \u0443\u0436\u0435 \u0432\u0437\u0432\u0430\u043b\u0438\u0432\u0430\u043b \u0432 \u043c\u043e\u044e \u0442\u0430\u0440\u0435\u043b\u043a\u0443 \u043a\u0443\u0441\u043e\u043a \u043d\u0435\u043a\u043e\u0433\u0434\u0430 \u0436\u0438\u0432\u043e\u0439 \u043f\u0442\u0438\u0446\u044b, \u044f \u0432\u043f\u0435\u0440\u0432\u044b\u0435 \u0437\u0430\u044f\u0432\u0438\u043b\u0430 \u0432\u043e \u0432\u0441\u0435\u0443\u0441\u043b\u044b\u0448\u0430\u043d\u0438\u0435:\"\u041d\u0435\u0442, \u043f\u0430\u043f\u0430, \u043d\u0435 \u043d\u0443\u0436\u043d\u043e. \u042f \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0435\u043c \u0436\u0438\u0432\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432. \u042f \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u0430.\"\n----\nI was a teenager at that time, my parents didn\u2019t treat it seriously, considering it as a teenage whim, didn\u2019t understand me, and for sure, didn\u2019t support me. Though they didn\u2019t object it, thinking that it would pass in a few months. But it wasn\u2019t a whim; it was my first serious and conscious decision in my life. They stopped ostracizing me only in a year after, during that year I experienced, at the example of a family as a social group, what it\u2019s like to have your personal opinion when the majority is against you!\nWhat did cause my decision to become a vegetarian?\nI can\u2019t remember the particular event, which marked the switch of my mind to conscious nutrition without harm to living beings. It seemed that I did it easily because I\u2019d been moving to it and at the certain moment I was morally ready to do the step. For example I remember when I was just a kid, at the age of 5 or 6, I was playing in our garden, thinking: \u201cWhy should I kill to keep on living?\u201d I didn\u2019t ask anybody about it, because I felt that I wouldn\u2019t get the proper answer from adults. This question gave me no rest; I often tried to solve this dilemma reasoning from how my childish heart perceived the world, which opposed all violence and evil. Understanding that this faceless, usually tasty grilled chicken used to be a living being, which had been born, had been a little chick, it was eating and enjoying life and then it was beheaded killed to make me think that I like eating fried chicken legs; it led me to the ideological confusion. I loved every animal, considered them as friends; on the one hand I saw people keeping pets and treating them as family members. On the other hand people killed an animal to have something tasty on their dinner table. And so did I, I was sitting and eating that grilled chicken.\n\nhttp://www.damex.ru/images/cache/660x495/crop/images%7Ccms-image-000013620.jpg\n\n>\u0422\u043e\u0433\u0434\u0430 \u044f \u0431\u044b\u043b\u0430 \u043f\u043e\u0434\u0440\u043e\u0441\u0442\u043a\u043e\u043c, \u0438 \u043c\u043e\u0438 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u0438 \u043d\u0435 \u043e\u0442\u043d\u0435\u0441\u043b\u0438\u0441\u044c \u043a\u043e \u043c\u043d\u0435 \u0441\u0435\u0440\u044c\u0451\u0437\u043d\u043e, \u043f\u043e\u0441\u0447\u0438\u0442\u0430\u0432 \u044d\u0442\u043e \u043f\u043e\u0434\u0440\u043e\u0441\u0442\u043a\u043e\u0432\u043e\u0439 \u043f\u0440\u0438\u0447\u0443\u0434\u043e\u0439, \u043d\u0435 \u043f\u043e\u043d\u044f\u043b\u0438 \u043c\u0435\u043d\u044f \u0438, \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e, \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0430\u043b\u0438. \u041d\u043e \u043d\u0435 \u0441\u0442\u0430\u043b\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0432\u043e\u0437\u0440\u0430\u0436\u0430\u0442\u044c, \u0434\u0443\u043c\u0430\u044f, \u0447\u0442\u043e \u0447\u0435\u0440\u0435\u0437 \u043f\u0430\u0440\u0443-\u0442\u0440\u043e\u0439\u043a\u0443 \u043c\u0435\u0441\u044f\u0446\u0435\u0432 \u044d\u0442\u043e \u043f\u0440\u043e\u0439\u0434\u0451\u0442. \u041d\u043e \u044d\u0442\u043e \u043d\u0435 \u0431\u044b\u043b\u043e \u043f\u0440\u0438\u0447\u0443\u0434\u043e\u0439, \u044d\u0442\u043e \u0431\u044b\u043b\u043e \u043f\u0435\u0440\u0432\u044b\u043c \u0441\u0435\u0440\u044c\u0451\u0437\u043d\u044b\u043c \u0438 \u043e\u0441\u043e\u0437\u043d\u0430\u043d\u043d\u044b\u043c \u0440\u0435\u0448\u0435\u043d\u0438\u0435\u043c \u0432 \u043c\u043e\u0435\u0439 \u0436\u0438\u0437\u043d\u0438. \u0422\u043e\u043b\u044c\u043a\u043e \u0441\u043f\u0443\u0441\u0442\u044f \u0433\u043e\u0434 \u043e\u043d\u0438 \u043f\u0435\u0440\u0435\u0441\u0442\u0430\u043b\u0438 \u043f\u043e\u0434\u0432\u0435\u0440\u0433\u0430\u0442\u044c \u043c\u0435\u043d\u044f \u0441\u0435\u043c\u0435\u0439\u043d\u043e\u043c\u0443 \u043e\u0441\u0442\u0440\u0430\u043a\u0438\u0437\u043c\u0443, \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u044f \u0445\u043e\u0440\u043e\u0448\u043e \u043f\u0440\u043e\u0447\u0443\u0432\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0430 \u043d\u0430 \u043f\u0440\u0438\u043c\u0435\u0440\u0435 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \"\u0441\u0435\u043c\u044c\u044f\", \u0447\u0442\u043e \u0442\u0430\u043a\u043e\u0435 \u0438\u043c\u0435\u0442\u044c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u043c\u043d\u0435\u043d\u0438\u0435, \u043a\u043e\u0433\u0434\u0430 \u0431\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u043e \u043f\u0440\u043e\u0442\u0438\u0432 \u0442\u0435\u0431\u044f!\n\u0427\u0435\u043c \u0431\u044b\u043b\u043e \u0432\u044b\u0437\u0432\u0430\u043d\u043e \u043c\u043e\u0451 \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u0442\u044c \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u043e\u0439?\n\u042f \u043d\u0435 \u043c\u043e\u0433\u0443 \u0432\u0441\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e\u0433\u043e \u0441\u043e\u0431\u044b\u0442\u0438\u044f, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0431\u044b \u043e\u0437\u043d\u0430\u043c\u0435\u043d\u043e\u0432\u0430\u043b\u043e \u0440\u0435\u0437\u043a\u0438\u0439 \u0441\u0434\u0432\u0438\u0433 \u043c\u043e\u0435\u0433\u043e \u0441\u043e\u0437\u043d\u0430\u043d\u0438\u044f \u0438 \u043f\u0435\u0440\u0435\u0445\u043e\u0434 \u043d\u0430 \u043e\u0441\u043e\u0437\u043d\u0430\u043d\u043d\u043e\u0435 \u043f\u0438\u0442\u0430\u043d\u0438\u0435 \u0431\u0435\u0437 \u0432\u0440\u0435\u0434\u0430 \u0434\u043b\u044f \u0436\u0438\u0432\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432. \u041c\u043d\u0435 \u0434\u0430\u0436\u0435 \u043a\u0430\u0436\u0435\u0442\u0441\u044f, \u0447\u0442\u043e \u044d\u0442\u043e \u043f\u0440\u043e\u0448\u043b\u043e \u0442\u0430\u043a \u043b\u0435\u0433\u043a\u043e \u0438 \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0438\u043c\u0435\u043d\u043d\u043e \u043f\u043e\u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u044f \u0443\u0436\u0435 \u0434\u0430\u0432\u043d\u043e \u0448\u043b\u0430 \u043a \u044d\u0442\u043e\u043c\u0443 \u0438 \u0432 \u043a\u0430\u043a\u043e\u0439-\u0442\u043e \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u0440\u043e\u0441\u0442\u043e \u043c\u043e\u0440\u0430\u043b\u044c\u043d\u043e \u0441\u043e\u0437\u0440\u0435\u043b\u0430 \u0434\u043b\u044f \u0442\u0430\u043a\u043e\u0433\u043e \u0448\u0430\u0433\u0430. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043f\u043e\u043c\u043d\u044e, \u043a\u0430\u043a \u0435\u0449\u0451 \u0431\u0443\u0434\u0443\u0447\u0438 \u0441\u043e\u0432\u0441\u0435\u043c \u0440\u0435\u0431\u0451\u043d\u043a\u043e\u043c, \u043b\u0435\u0442 \u044d\u0442\u0430\u043a \u0432 \u043f\u044f\u0442\u044c-\u0448\u0435\u0441\u0442\u044c, \u044f \u0438\u0433\u0440\u0430\u043b\u0430 \u0432 \u043d\u0430\u0448\u0435\u043c \u043e\u0433\u043e\u0440\u043e\u0434\u0435 \u0438 \u0434\u0443\u043c\u0430\u043b\u0430:\"\u0410 \u043f\u043e\u0447\u0435\u043c\u0443, \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0436\u0438\u0442\u044c, \u044f \u0434\u043e\u043b\u0436\u043d\u0430 \u0443\u0431\u0438\u0432\u0430\u0442\u044c?\" \u042f \u043d\u0438\u043a\u043e\u0433\u043e \u043d\u0435 \u0441\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u043b\u0430 \u043e\u0431 \u044d\u0442\u043e\u043c, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e \u044f\u0441\u043d\u043e \u0447\u0443\u0432\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0430, \u0447\u0442\u043e \u043d\u0438\u043a\u0442\u043e \u0438\u0437 \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445 \u043d\u0435 \u0432 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0438 \u043e\u0442\u0432\u0435\u0442\u0438\u0442\u044c \u043c\u043d\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e. \u042d\u0442\u043e\u0442 \u0432\u043e\u043f\u0440\u043e\u0441 \u043d\u0435 \u0434\u0430\u0432\u0430\u043b \u043c\u043d\u0435 \u043f\u043e\u043a\u043e\u044f, \u044f \u0447\u0430\u0441\u0442\u043e \u043f\u044b\u0442\u0430\u043b\u0430\u0441\u044c \u0440\u0435\u0448\u0438\u0442\u044c \u044d\u0442\u0443 \u0434\u0438\u043b\u0435\u043c\u043c\u0443, \u0438\u0441\u0445\u043e\u0434\u044f \u0438\u0437 \u0432\u043e\u0441\u043f\u0440\u0438\u044f\u0442\u0438\u044f \u043c\u0438\u0440\u0430 \u0441\u0435\u0440\u0434\u0446\u0435\u043c \u0440\u0435\u0431\u0451\u043d\u043a\u0430, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043f\u0440\u043e\u0442\u0438\u0432\u0438\u0442\u0441\u044f \u0432\u0441\u044f\u043a\u043e\u043c\u0443 \u043d\u0430\u0441\u0438\u043b\u0438\u044e \u0438 \u0437\u043b\u0443 \u043f\u043e \u0441\u0430\u043c\u043e\u0439 \u0441\u0432\u043e\u0435\u0439 \u043f\u0440\u0438\u0440\u043e\u0434\u0435. \u041f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0435, \u0447\u0442\u043e \u044d\u0442\u0430 \u0431\u0435\u0437\u043b\u0438\u043a\u0430\u044f, \u043f\u0440\u0438\u0432\u044b\u0447\u043d\u043e \u0432\u043a\u0443\u0441\u043d\u0430\u044f \"\u043a\u0443\u0440\u0438\u0446\u0430-\u0433\u0440\u0438\u043b\u044c\" \u0431\u044b\u043b\u0430 \u0436\u0438\u0432\u044b\u043c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043e\u043c, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043a\u043e\u0433\u0434\u0430-\u0442\u043e \u0431\u044b\u043b\u043e \u0440\u043e\u0436\u0434\u0435\u043d\u043e, \u0440\u043e\u0441\u043b\u043e \u043c\u0430\u043b\u0435\u043d\u044c\u043a\u0438\u043c \u0446\u044b\u043f\u043b\u0451\u043d\u043a\u043e\u043c, \u043a\u0443\u0448\u0430\u043b\u043e \u0438 \u043f\u043e-\u0441\u0432\u043e\u0435\u043c\u0443 \u0440\u0430\u0434\u043e\u0432\u0430\u043b\u043e\u0441\u044c \u0436\u0438\u0437\u043d\u0438, \u0430 \u0442\u0435\u043f\u0435\u0440\u044c \u043e\u0431\u0435\u0437\u0433\u043b\u0430\u0432\u043b\u0435\u043d\u043e, \u0443\u0431\u0438\u0442\u043e, \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u044f \u0434\u0443\u043c\u0430\u043b\u0430, \u043a\u0430\u043a \u044f \u043b\u044e\u0431\u043b\u044e \u043a\u0443\u0448\u0430\u0442\u044c \u0436\u0430\u0440\u0435\u043d\u044b\u0435 \u043d\u043e\u0436\u043a\u0438 \u044d\u0442\u043e\u0439 \u043a\u0443\u0440\u043e\u0447\u043a\u0438, \u043f\u0440\u0438\u0432\u043e\u0434\u0438\u043b\u043e \u043c\u0435\u043d\u044f \u0432 \u0438\u0434\u0435\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0437\u0430\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e. \u042f \u043e\u0447\u0435\u043d\u044c \u043b\u044e\u0431\u0438\u043b\u0430 \u0432\u0441\u0435\u0445 \u0436\u0438\u0432\u043e\u0442\u043d\u044b\u0445, \u0441\u0447\u0438\u0442\u0430\u043b\u0430 \u0438\u0445 \u0441\u0432\u043e\u0438\u043c\u0438 \u0434\u0440\u0443\u0437\u044c\u044f\u043c\u0438, \u0432\u0438\u0434\u0435\u043b\u0430, \u043a\u0430\u043a \u043b\u044e\u0434\u0438 \u0437\u0430\u0432\u043e\u0434\u044f\u0442 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0434\u043e\u043c\u0430\u0448\u043d\u0438\u0445 \u043b\u044e\u0431\u0438\u043c\u0446\u0435\u0432 \u043a\u0430\u043a \u0447\u043b\u0435\u043d\u043e\u0432 \u0441\u0435\u043c\u044c\u0438. \u0418 \u0442\u0443\u0442 \u0436\u0435 \u0441 \u0434\u0440\u0443\u0433\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u043b\u044e\u0434\u0438 \u0443\u0431\u0438\u0432\u0430\u044e\u0442 \u0436\u0438\u0432\u043e\u0442\u043d\u043e\u0435, \u0447\u0442\u043e\u0431\u044b \u0431\u044b\u043b\u043e \u0447\u0442\u043e \u0432\u043a\u0443\u0441\u043d\u043e\u0435 \u043f\u043e\u043a\u0443\u0448\u0430\u0442\u044c \u043d\u0430 \u0441\u0442\u043e\u043b\u0435. \u0418 \u0432\u043e\u0442 \u044f \u0442\u043e\u0436\u0435 \u0441\u0438\u0436\u0443 \u0438 \u0435\u043c \u044d\u0442\u0443 \u043a\u0443\u0440\u0438\u0446\u0443-\u0433\u0440\u0438\u043b\u044c. \n-----\nBut seeing that adults didn\u2019t care about it, I as any other child didn\u2019t oppose myself to parents and others; I just assimilate all the manners and customs, equaling to those who seemed to be older and wiser.\nI was growing up and parents\u2019 influence and influence of other unquestioned authorities subsided, I got my personal space in my mind and there was my personal opinion on the questions in it. At the age of 15, the formation of my personality reached the level where issues of life turned into beliefs and beliefs \u2013 into actions. I remembered that childish dilemma in a new perspective, and to the question: \u201cWhy should I kill to keep on living?\u201d I answered: \u201cNO, I SHOULD NOT\u201d\nSince then I\u2019m a vegetarian, it\u2019s been 5 years already.\nhttps://media4.giphy.com/media/xcFZrrcaGhbz2/200w.gif\n>\u041d\u043e \u0432\u0438\u0434\u044f, \u0447\u0442\u043e \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445 \u044d\u0442\u043e \u043d\u0435 \u0437\u0430\u0431\u043e\u0442\u0438\u0442, \u044f, \u043a\u0430\u043a \u043b\u044e\u0431\u043e\u0439 \u0440\u0435\u0431\u0451\u043d\u043e\u043a, \u043d\u0435 \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u043b\u0430 \u0441\u0435\u0431\u044f \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044f\u043c \u0438 \u0432\u0441\u0435\u043c \u0434\u0440\u0443\u0433\u0438\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u0432\u043f\u0438\u0442\u044b\u0432\u0430\u043b\u0430 \u0432\u0441\u0435 \u043d\u0440\u0430\u0432\u044b \u0438 \u043e\u0431\u044b\u0447\u0430\u0438, \u0440\u0430\u0432\u043d\u044f\u044f\u0441\u044c \u043d\u0430 \u0442\u0435\u0445, \u043a\u043e\u0433\u043e \u0441\u0447\u0438\u0442\u0430\u043b\u0430 \u0441\u0442\u0430\u0440\u0448\u0435 \u0438 \u043c\u0443\u0434\u0440\u0435\u0435.\n\u042f \u0440\u043e\u0441\u043b\u0430, \u0438 \u043f\u043e\u0441\u0442\u0435\u043f\u0435\u043d\u043d\u043e \u0432\u043b\u0438\u044f\u043d\u0438\u0435 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u0435\u0439 \u0438 \u043f\u0440\u043e\u0447\u0438\u0445 \u043d\u0435\u043f\u0440\u0435\u0440\u0435\u043a\u0430\u0435\u043c\u044b\u0445 \u0430\u0432\u0442\u043e\u0440\u0438\u0442\u0435\u0442\u043e\u0432 \u0441\u043f\u0430\u0434\u0430\u043b\u043e, \u0443 \u043c\u0435\u043d\u044f \u043f\u043e\u044f\u0432\u043b\u044f\u043b\u043e\u0441\u044c \u043b\u0438\u0447\u043d\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0432 \u0440\u0430\u0437\u0443\u043c\u0435 \u0438 \u0432 \u043d\u0451\u043c \u0437\u0430\u0440\u043e\u0436\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0435 \u0432\u043e\u043f\u0440\u043e\u0441\u044b. \u0418 \u0432 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0435 15 \u043b\u0435\u0442 \u0441\u0442\u0435\u043f\u0435\u043d\u044c \u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u043e\u0435\u0439 \u043b\u0438\u0447\u043d\u043e\u0441\u0442\u0438 \u0434\u043e\u0441\u0442\u0438\u0433\u043b\u0430 \u0442\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f, \u043a\u043e\u0433\u0434\u0430 \u0432\u043e\u043f\u0440\u043e\u0441\u044b \u043a \u0436\u0438\u0437\u043d\u0438 \u043f\u0440\u0435\u0432\u0440\u0430\u0442\u0438\u043b\u0438\u0441\u044c \u0432 \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u044f, \u0430 \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u044f - \u0432 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f. \u042f \u0432\u0441\u043f\u043e\u043c\u043d\u0438\u043b\u0430 \u043e \u0442\u043e\u0439 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u0434\u0438\u043b\u0435\u043c\u043c\u0435 \u0432 \u043d\u043e\u0432\u043e\u043c \u0441\u0432\u0435\u0442\u0435, \u0438 \u043d\u0430 \u0432\u043e\u043f\u0440\u043e\u0441:\"\u041f\u043e\u0447\u0435\u043c\u0443, \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0436\u0438\u0442\u044c, \u044f \u0434\u043e\u043b\u0436\u043d\u0430 \u0443\u0431\u0438\u0432\u0430\u0442\u044c?\" \u044f \u043e\u0442\u0432\u0435\u0442\u0438\u043b\u0430 \u0441\u0435\u0431\u0435 - \"\u041d\u0415 \u0414\u041e\u041b\u0416\u041d\u0410.\" \n\u0421 \u0442\u0435\u0445 \u043f\u043e\u0440 \u044f \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u0430, \u043f\u0440\u043e\u0448\u043b\u043e \u0443\u0436\u0435 \u043f\u044f\u0442\u044c \u043b\u0435\u0442. \n---\nIt\u2019s great happiness to live according to you beliefs without betraying them for the sake of the public opinion, to live in accordance with your conscience and moral purity. I\u2019d like more people to think about what they eat and do it consciously, how inhumane it is to feed on flesh of killed creatures.\nAs it is written in the Gospel of the Essenes: \"It was said to them of old time, 'Honor thy Heavenly Father and thy Earthly Mother, and do their commandments, that thy days may be long upon the earth.' And next afterward was given this commandment, 'Thou shalt not kill,' for life is given to all by God, and that which God has given, let not man take away. For-I tell you truly, from one Mother proceeds all that lives upon the earth. Therefore, he who kills, kills his brother. And from him will the Earthly Mother turn away, and will pluck from him her quickening breasts. And he will be shunned by her angels, and Satan will have his dwelling in his body. And the flesh of slain beasts in his body will become his own tomb. For I tell you truly, he who kills, kills himself, and whoso eats the flesh of slain beasts, eats of the body of death. For in his blood every drop of their blood turns to poison; in his breath their breath to stink; in his flesh their flesh to boils; in his bones their bones to chalk; in his bowels their bowels t o decay; in his eyes their eyes to scales; in his ears their ears to waxy issue. And their death will become his death\u201d\nhttp://99px.ru/sstorage/56/2013/07/image_561607131913053649088.gif\n>\u042d\u0442\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u0435 \u0441\u0447\u0430\u0441\u0442\u044c\u0435 - \u0436\u0438\u0442\u044c, \u0441\u043e\u0433\u043b\u0430\u0441\u043d\u043e \u0441\u0432\u043e\u0438\u043c \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u044f\u043c, \u043d\u0435 \u043f\u0440\u0435\u0434\u0430\u0432\u0430\u044f \u0438\u0445 \u0432 \u0443\u0433\u043e\u0434\u0443 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u043c\u0443 \u043c\u043d\u0435\u043d\u0438\u044e, \u0436\u0438\u0442\u044c - \u0432 \u0441\u043e\u0433\u043b\u0430\u0441\u0438\u0438 \u0441\u043e \u0441\u0432\u043e\u0435\u0439 \u0441\u043e\u0432\u0435\u0441\u0442\u044c\u044e \u0438 \u043d\u0440\u0430\u0432\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u0447\u0438\u0441\u0442\u043e\u0442\u043e\u0439. \u042f \u0445\u043e\u0447\u0443, \u0447\u0442\u043e\u0431\u044b \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435 \u043b\u044e\u0434\u0435\u0439 \u0437\u0430\u0434\u0443\u043c\u0430\u043b\u043e\u0441\u044c \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u043e\u043d\u0438 \u0435\u0434\u044f\u0442, \u0438 \u043e\u0441\u043e\u0437\u043d\u0430\u043b\u043e, \u043a\u0430\u043a \u043d\u0435\u0433\u0443\u043c\u0430\u043d\u043d\u043e \u043f\u0438\u0442\u0430\u0442\u044c\u0441\u044f \u043f\u043b\u043e\u0442\u044c\u044e \u0443\u0431\u0438\u0442\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432.\n\u041a\u0430\u043a \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u043e \u0432 \u0415\u0432\u0430\u043d\u0433\u0435\u043b\u0438\u0438 \u043e\u0442 \u0415\u0441\u0441\u0435\u0435\u0432: \"\u0411\u043e\u0433 \u0437\u0430\u043f\u043e\u0432\u0435\u0434\u043e\u0432\u0430\u043b \u043d\u0430\u0448\u0438\u043c \u043f\u0440\u0435\u0434\u043a\u0430\u043c: \u00ab\u041d\u0435 \u0443\u0431\u0438\u0439\u00bb. \u041d\u043e \u0441\u0435\u0440\u0434\u0446\u0430 \u0438\u0445 \u043e\u0436\u0435\u0441\u0442\u043e\u0447\u0438\u043b\u0438\u0441\u044c, \u0438 \u043e\u043d\u0438 \u0441\u0442\u0430\u043b\u0438 \u0443\u0431\u0438\u0432\u0430\u0442\u044c. \u0422\u043e\u0433\u0434\u0430 \u041c\u043e\u0438\u0441\u0435\u0439 \u0440\u0435\u0448\u0438\u043b, \u0447\u0442\u043e \u043e\u043d\u0438 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u044b \u043f\u043e \u043a\u0440\u0430\u0439\u043d\u0435\u0439 \u043c\u0435\u0440\u0435 \u0443\u0431\u0438\u0432\u0430\u0442\u044c \u043b\u044e\u0434\u0435\u0439, \u0438 \u0434\u043e\u0437\u0432\u043e\u043b\u0438\u043b \u0438\u043c \u0443\u0431\u0438\u0432\u0430\u0442\u044c \u0437\u0432\u0435\u0440\u0435\u0439. \u0418 \u0442\u043e\u0433\u0434\u0430 \u0441\u0435\u0440\u0434\u0446\u0430 \u0432\u0430\u0448\u0438\u0445 \u043f\u0440\u0435\u0434\u043a\u043e\u0432 \u043e\u0436\u0435\u0441\u0442\u043e\u0447\u0438\u043b\u0438\u0441\u044c \u0435\u0449\u0435 \u0431\u043e\u043b\u044c\u0448\u0435, \u0438 \u0441\u0442\u0430\u043b\u0438 \u043e\u043d\u0438 \u0443\u0431\u0438\u0432\u0430\u0442\u044c \u043b\u044e\u0434\u0435\u0439, \u0440\u0430\u0432\u043d\u043e \u043a\u0430\u043a \u0438 \u0437\u0432\u0435\u0440\u0435\u0439. \u041d\u043e \u044f \u0433\u043e\u0432\u043e\u0440\u044e \u0432\u0430\u043c, \u043d\u0435 \u0443\u0431\u0438\u0432\u0430\u0439\u0442\u0435 \u043d\u0438 \u043b\u044e\u0434\u0435\u0439, \u043d\u0438 \u0437\u0432\u0435\u0440\u0435\u0439, \u043d\u0438 \u0442\u043e, \u0447\u0442\u043e \u0441\u0442\u0430\u043d\u0435\u0442 \u043f\u0438\u0449\u0435\u0439 \u0432\u0430\u0448\u0435\u0439. \u0418\u0431\u043e \u0435\u0441\u043b\u0438 \u0432\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0435 \u0436\u0438\u0432\u0443\u044e \u043f\u0438\u0449\u0443, \u043e\u043d\u0430 \u043d\u0430\u043f\u043e\u043b\u043d\u044f\u0435\u0442 \u0432\u0430\u0441 \u0436\u0438\u0437\u043d\u044c\u044e, \u043d\u043e \u0435\u0441\u043b\u0438 \u0432\u044b \u0443\u0431\u0438\u0432\u0430\u0435\u0442\u0435 \u0441\u0432\u043e\u044e \u043f\u0438\u0449\u0443, \u043c\u0435\u0440\u0442\u0432\u0430\u044f \u043f\u0438\u0449\u0430 \u0443\u0431\u044c\u0435\u0442 \u0442\u0430\u043a\u0436\u0435 \u0438 \u0432\u0430\u0441. \u0418\u0431\u043e \u0436\u0438\u0437\u043d\u044c \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0442 \u0436\u0438\u0437\u043d\u0438, \u0430 \u043e\u0442 \u0441\u043c\u0435\u0440\u0442\u0438 \u0432\u0441\u0435\u0433\u0434\u0430 \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0441\u043c\u0435\u0440\u0442\u044c. \u0418\u0431\u043e \u0432\u0441\u0435, \u0447\u0442\u043e \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0432\u0430\u0448\u0443 \u043f\u0438\u0449\u0443, \u0442\u0430\u043a\u0436\u0435 \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0438 \u0432\u0430\u0448\u0438 \u0442\u0435\u043b\u0430. \u0410 \u0432\u0441\u0435, \u0447\u0442\u043e \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0432\u0430\u0448\u0438 \u0442\u0435\u043b\u0430, \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0442\u0430\u043a\u0436\u0435 \u0438 \u0432\u0430\u0448\u0438 \u0434\u0443\u0448\u0438. \u0418 \u0442\u0435\u043b\u0430 \u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442\u0441\u044f \u0442\u0435\u043c, \u0447\u0442\u043e \u0435\u0441\u0442\u044c \u043f\u0438\u0449\u0430 \u0432\u0430\u0448\u0430, \u0440\u0430\u0432\u043d\u043e \u043a\u0430\u043a \u0434\u0443\u0445 \u0432\u0430\u0448 \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0442\u0435\u043c, \u0447\u0442\u043e \u0435\u0441\u0442\u044c \u043c\u044b\u0441\u043b\u0438 \u0432\u0430\u0448\u0438.\"\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @tagira\n\n---\n\nAll STEEM Dollars for this post go to the featured author. \u0412\u0441\u0435 SD \u0437\u0430 \u043f\u043e\u0441\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442 \u0430\u0432\u0442\u043e\u0440.", + "category": "vegetarian", + "children": 18, + "created": "2016-09-15T15:10:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://petroart.ru/art/b/bronikov/img/3.jpg", + "http://www.damex.ru/images/cache/660x495/crop/images%7Ccms-image-000013620.jpg", + "https://media4.giphy.com/media/xcFZrrcaGhbz2/200w.gif", + "http://99px.ru/sstorage/56/2013/07/image_561607131913053649088.gif" + ], + "tags": [ + "vegetarian", + "live", + "ru", + "food" + ], + "users": [ + "tagira" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 57949290153677, + "payout": 197.701, + "payout_at": "2016-09-16T15:36:20", + "pending_payout_value": "197.701 HBD", + "percent_steem_dollars": 10000, + "permlink": "vegetarianism-is-philosophy-which-has-deep-religious-and-ethical-roots-my-way-vegetarianstvo-moi-put-featuring-tagira-as-author", + "post_id": 958600, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 161 + }, + "title": "Vegetarianism is philosophy which has deep religious and ethical roots, my way / \u0412\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0441\u0442\u0432\u043e-\u043c\u043e\u0439 \u043f\u0443\u0442\u044c (featuring @tagira as author)", + "updated": "2016-09-15T15:10:00", + "url": "/vegetarian/@terrycraft/vegetarianism-is-philosophy-which-has-deep-religious-and-ethical-roots-my-way-vegetarianstvo-moi-put-featuring-tagira-as-author" + }, + { + "active_votes": [ + { + "rshares": "16755161199383", + "voter": "itsascam" + }, + { + "rshares": "480526212736", + "voter": "barrie" + }, + { + "rshares": "5104374858", + "voter": "style" + }, + { + "rshares": "30984805998710", + "voter": "smooth" + }, + { + "rshares": "1970871102026", + "voter": "steemroller" + }, + { + "rshares": "73338425139", + "voter": "donaldtrump" + }, + { + "rshares": "17831785324019", + "voter": "steemed" + }, + { + "rshares": "3813633612078", + "voter": "riverhead" + }, + { + "rshares": "2104090803296", + "voter": "badassmother" + }, + { + "rshares": "2051409124045", + "voter": "hr1" + }, + { + "rshares": "5116652122587", + "voter": "kushed" + }, + { + "rshares": "22856566186", + "voter": "jaewoocho" + }, + { + "rshares": "155402774795", + "voter": "ozmaster" + }, + { + "rshares": "6968855225504", + "voter": "complexring" + }, + { + "rshares": "1647437585658", + "voter": "joseph" + }, + { + "rshares": "92485160845", + "voter": "aizensou" + }, + { + "rshares": "465717138828", + "voter": "recursive2" + }, + { + "rshares": "619876169843", + "voter": "masteryoda" + }, + { + "rshares": "3119278427030", + "voter": "recursive" + }, + { + "rshares": "1172425532", + "voter": "mineralwasser" + }, + { + "rshares": "665687862852", + "voter": "boombastic" + }, + { + "rshares": "88484695103", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6756410360", + "voter": "bingo-0" + }, + { + "rshares": "1620176259", + "voter": "bingo-1" + }, + { + "rshares": "5800874395470", + "voter": "smooth.witness" + }, + { + "rshares": "9885238701", + "voter": "idol" + }, + { + "rshares": "48218286324", + "voter": "stoner19" + }, + { + "rshares": "4837882894", + "voter": "sakr" + }, + { + "rshares": "1701784178", + "voter": "jocelyn" + }, + { + "rshares": "14064642668", + "voter": "gregory-f" + }, + { + "rshares": "58907877644", + "voter": "lovelace" + }, + { + "rshares": "1234583624335", + "voter": "gavvet" + }, + { + "rshares": "74895398010", + "voter": "eeks" + }, + { + "rshares": "488526217", + "voter": "paco-steem" + }, + { + "rshares": "912597254389", + "voter": "cryptogee" + }, + { + "rshares": "5883869384", + "voter": "spaninv" + }, + { + "rshares": "336432003943", + "voter": "teamsteem" + }, + { + "rshares": "8667859424", + "voter": "richman" + }, + { + "rshares": "462352309", + "voter": "murch" + }, + { + "rshares": "566150979416", + "voter": "nanzo-scoop" + }, + { + "rshares": "86323748302", + "voter": "william-noe" + }, + { + "rshares": "170004330283", + "voter": "steve-walschot" + }, + { + "rshares": "173798380609", + "voter": "mummyimperfect" + }, + { + "rshares": "268835102", + "voter": "coar" + }, + { + "rshares": "100993055295", + "voter": "asch" + }, + { + "rshares": "1060848113", + "voter": "murh" + }, + { + "rshares": "240697359051", + "voter": "sascha" + }, + { + "rshares": "6228218902", + "voter": "cryptofunk" + }, + { + "rshares": "2272666902", + "voter": "error" + }, + { + "rshares": "5736901624", + "voter": "marta-zaidel" + }, + { + "rshares": "1040976670262", + "voter": "cyber" + }, + { + "rshares": "10900823677", + "voter": "aizen01" + }, + { + "rshares": "6499631007", + "voter": "aizen02" + }, + { + "rshares": "3552366776", + "voter": "aizen03" + }, + { + "rshares": "1167908093", + "voter": "aizen04" + }, + { + "rshares": "494011890", + "voter": "aizen05" + }, + { + "rshares": "4792657323", + "voter": "aizen07" + }, + { + "rshares": "2866473700", + "voter": "aizen08" + }, + { + "rshares": "1018773570", + "voter": "aizen09" + }, + { + "rshares": "440815198", + "voter": "aizen10" + }, + { + "rshares": "7251599286", + "voter": "aizen06" + }, + { + "rshares": "3046354062", + "voter": "aizen11" + }, + { + "rshares": "2093827993", + "voter": "aizen14" + }, + { + "rshares": "2462056275", + "voter": "aizen19" + }, + { + "rshares": "59929272057", + "voter": "theshell" + }, + { + "rshares": "648949628", + "voter": "aizen15" + }, + { + "rshares": "6424903281", + "voter": "aizen16" + }, + { + "rshares": "49535217690", + "voter": "ak2020" + }, + { + "rshares": "645116104", + "voter": "aizen20" + }, + { + "rshares": "4217447041", + "voter": "aizen22" + }, + { + "rshares": "1120999727", + "voter": "aizen23" + }, + { + "rshares": "2204896687", + "voter": "aizen17" + }, + { + "rshares": "3470451837", + "voter": "aizen24" + }, + { + "rshares": "490553110", + "voter": "aizen18" + }, + { + "rshares": "1314196776", + "voter": "aizen25" + }, + { + "rshares": "2232430390", + "voter": "aizen28" + }, + { + "rshares": "3435321135", + "voter": "aizen26" + }, + { + "rshares": "1127666084", + "voter": "aizen27" + }, + { + "rshares": "3875699811", + "voter": "aizen32" + }, + { + "rshares": "2120371796", + "voter": "aizen30" + }, + { + "rshares": "3922155046", + "voter": "aizen31" + }, + { + "rshares": "1291018425", + "voter": "aizen33" + }, + { + "rshares": "1553081360", + "voter": "aizen34" + }, + { + "rshares": "311774459", + "voter": "aizen35" + }, + { + "rshares": "5849477524", + "voter": "aizen36" + }, + { + "rshares": "1459346389", + "voter": "aizen37" + }, + { + "rshares": "24406094847", + "voter": "paul-labossiere" + }, + { + "rshares": "408290923", + "voter": "aizen29" + }, + { + "rshares": "2872536420", + "voter": "aizen21" + }, + { + "rshares": "4407557058", + "voter": "aizen12" + }, + { + "rshares": "1876630383", + "voter": "aizen38" + }, + { + "rshares": "8279076968", + "voter": "badger311" + }, + { + "rshares": "8567966025", + "voter": "badger313" + }, + { + "rshares": "8532183936", + "voter": "badger312" + }, + { + "rshares": "8825464112", + "voter": "badger316" + }, + { + "rshares": "8945023495", + "voter": "badger319" + }, + { + "rshares": "8854468413", + "voter": "badger3101" + }, + { + "rshares": "8318010896", + "voter": "badger3111" + }, + { + "rshares": "8869290111", + "voter": "badger3121" + }, + { + "rshares": "8485309981", + "voter": "badger3131" + }, + { + "rshares": "8591220795", + "voter": "badger3141" + }, + { + "rshares": "8568091961", + "voter": "badger3171" + }, + { + "rshares": "8379270543", + "voter": "badger3181" + }, + { + "rshares": "8954261088", + "voter": "badger3191" + }, + { + "rshares": "8379110631", + "voter": "badger3112" + }, + { + "rshares": "8713695890", + "voter": "badger3132" + }, + { + "rshares": "8589307590", + "voter": "badger3162" + }, + { + "rshares": "8815925781", + "voter": "badger3113" + }, + { + "rshares": "8473341065", + "voter": "badger3123" + }, + { + "rshares": "8594708779", + "voter": "badger3133" + }, + { + "rshares": "8939568357", + "voter": "badger3153" + }, + { + "rshares": "8624205716", + "voter": "badger3163" + }, + { + "rshares": "8654162062", + "voter": "badger3193" + }, + { + "rshares": "8604723591", + "voter": "badger3114" + }, + { + "rshares": "8515355992", + "voter": "badger3124" + }, + { + "rshares": "8420058241", + "voter": "badger3144" + }, + { + "rshares": "8343364036", + "voter": "badger3154" + }, + { + "rshares": "8213191128", + "voter": "badger3164" + }, + { + "rshares": "8538833460", + "voter": "badger3174" + }, + { + "rshares": "8813869956", + "voter": "badger3194" + }, + { + "rshares": "8712162375", + "voter": "badger3105" + }, + { + "rshares": "8656736569", + "voter": "badger3135" + }, + { + "rshares": "8258522611", + "voter": "badger3145" + }, + { + "rshares": "8831167662", + "voter": "badger3155" + }, + { + "rshares": "8529824072", + "voter": "badger3175" + }, + { + "rshares": "8310212001", + "voter": "badger3195" + }, + { + "rshares": "7958888538", + "voter": "badger3106" + }, + { + "rshares": "8762392108", + "voter": "badger3116" + }, + { + "rshares": "8809476629", + "voter": "badger3126" + }, + { + "rshares": "8443348501", + "voter": "badger3136" + }, + { + "rshares": "8096485926", + "voter": "badger3146" + }, + { + "rshares": "8323878617", + "voter": "badger3156" + }, + { + "rshares": "8535690887", + "voter": "badger3166" + }, + { + "rshares": "8452106060", + "voter": "badger3176" + }, + { + "rshares": "8584206358", + "voter": "badger3186" + }, + { + "rshares": "8619308346", + "voter": "badger3196" + }, + { + "rshares": "8548167966", + "voter": "badger3107" + }, + { + "rshares": "8305132275", + "voter": "badger315" + }, + { + "rshares": "8791959509", + "voter": "badger318" + }, + { + "rshares": "8840656230", + "voter": "badger3151" + }, + { + "rshares": "8519121589", + "voter": "badger3161" + }, + { + "rshares": "8773547330", + "voter": "badger3122" + }, + { + "rshares": "8711547278", + "voter": "badger3142" + }, + { + "rshares": "8930383064", + "voter": "badger3152" + }, + { + "rshares": "8246562170", + "voter": "badger3172" + }, + { + "rshares": "8750362445", + "voter": "badger3182" + }, + { + "rshares": "8510357323", + "voter": "badger3192" + }, + { + "rshares": "8426540891", + "voter": "badger3143" + }, + { + "rshares": "8684675072", + "voter": "badger3173" + }, + { + "rshares": "8396705393", + "voter": "badger3104" + }, + { + "rshares": "8114154413", + "voter": "badger3134" + }, + { + "rshares": "8513476422", + "voter": "badger3184" + }, + { + "rshares": "8451732184", + "voter": "badger3115" + }, + { + "rshares": "8916017583", + "voter": "badger3165" + }, + { + "rshares": "8548877339", + "voter": "badger3185" + }, + { + "rshares": "8609674677", + "voter": "badger314" + }, + { + "rshares": "8839842393", + "voter": "badger317" + }, + { + "rshares": "8583105596", + "voter": "badger3102" + }, + { + "rshares": "8545290354", + "voter": "badger3103" + }, + { + "rshares": "8473652115", + "voter": "badger3125" + }, + { + "rshares": "8440424803", + "voter": "badger3183" + }, + { + "rshares": "523210618", + "voter": "aizen39" + }, + { + "rshares": "3692729259818", + "voter": "satoshifund" + }, + { + "rshares": "409139044923", + "voter": "taoteh1221" + }, + { + "rshares": "418804855", + "voter": "applecrisp" + }, + { + "rshares": "381169481", + "voter": "stiletto" + }, + { + "rshares": "55572589211", + "voter": "juanmiguelsalas" + }, + { + "rshares": "210458611837", + "voter": "will-zewe" + }, + { + "rshares": "380297285001", + "voter": "kaylinart" + }, + { + "rshares": "563706981359", + "voter": "infovore" + }, + { + "rshares": "77665341455", + "voter": "tim-johnston" + }, + { + "rshares": "81000705230", + "voter": "schro" + }, + { + "rshares": "257516084561", + "voter": "trogdor" + }, + { + "rshares": "4491802783", + "voter": "tee-em" + }, + { + "rshares": "32185101127", + "voter": "michaelx" + }, + { + "rshares": "804436229902", + "voter": "anwenbaumeister" + }, + { + "rshares": "5817925334", + "voter": "mark-waser" + }, + { + "rshares": "409576499", + "voter": "keithwillshine" + }, + { + "rshares": "111330095375", + "voter": "geoffrey" + }, + { + "rshares": "202874968510", + "voter": "kimziv" + }, + { + "rshares": "44426159607", + "voter": "honeythief" + }, + { + "rshares": "7049670897", + "voter": "mammasitta" + }, + { + "rshares": "6744340925", + "voter": "tyler-fletcher" + }, + { + "rshares": "79414155694", + "voter": "emily-cook" + }, + { + "rshares": "93849854528", + "voter": "mctiller" + }, + { + "rshares": "2187136185", + "voter": "superfreek" + }, + { + "rshares": "484592257", + "voter": "mrhankeh" + }, + { + "rshares": "4255723858", + "voter": "alexft" + }, + { + "rshares": "1869026224", + "voter": "justoneartist" + }, + { + "rshares": "280886491", + "voter": "ladyclair" + }, + { + "rshares": "3715415813", + "voter": "michaellamden68" + }, + { + "rshares": "161249433461", + "voter": "dashpaymag" + }, + { + "rshares": "174527707979", + "voter": "asmolokalo" + }, + { + "rshares": "57106930713", + "voter": "ezzy" + }, + { + "rshares": "71639420708", + "voter": "rubybian" + }, + { + "rshares": "3214941985", + "voter": "orly" + }, + { + "rshares": "5163778635", + "voter": "riscadox" + }, + { + "rshares": "18842523479", + "voter": "hakise" + }, + { + "rshares": "15354149755", + "voter": "yogi.artist" + }, + { + "rshares": "14213156438", + "voter": "r4fken" + }, + { + "rshares": "389458625", + "voter": "aizen13" + }, + { + "rshares": "3344942110", + "voter": "aizen41" + }, + { + "rshares": "950534210", + "voter": "aizen42" + }, + { + "rshares": "3238263445", + "voter": "aizen46" + }, + { + "rshares": "886294877", + "voter": "aizen47" + }, + { + "rshares": "217253386", + "voter": "aizen48" + }, + { + "rshares": "113259366", + "voter": "aizen49" + }, + { + "rshares": "754082458", + "voter": "busser" + }, + { + "rshares": "941015787", + "voter": "aizen51" + }, + { + "rshares": "1210073491361", + "voter": "renohq" + }, + { + "rshares": "455780965", + "voter": "aizen43" + }, + { + "rshares": "67659539", + "voter": "aizen44" + }, + { + "rshares": "763284602", + "voter": "aizen54" + }, + { + "rshares": "16859493667", + "voter": "ausbitbank" + }, + { + "rshares": "4728705839", + "voter": "gikitiki" + }, + { + "rshares": "11698403373", + "voter": "asim" + }, + { + "rshares": "99758482", + "voter": "snowden" + }, + { + "rshares": "1107690687", + "voter": "karen13" + }, + { + "rshares": "54321503601", + "voter": "shark" + }, + { + "rshares": "20363338717", + "voter": "meiisheree" + }, + { + "rshares": "258937743119", + "voter": "nabilov" + }, + { + "rshares": "8572920051", + "voter": "noodhoog" + }, + { + "rshares": "4205385163", + "voter": "dcryptogold" + }, + { + "rshares": "2668109030", + "voter": "dmacshady" + }, + { + "rshares": "233569693", + "voter": "aizen52" + }, + { + "rshares": "8368498979", + "voter": "herverisson" + }, + { + "rshares": "45693099664", + "voter": "milestone" + }, + { + "rshares": "33727004465", + "voter": "creemej" + }, + { + "rshares": "89580632", + "voter": "wildchild" + }, + { + "rshares": "2579031743", + "voter": "the-future" + }, + { + "rshares": "15372067535", + "voter": "nippel66" + }, + { + "rshares": "190269483", + "voter": "aizen55" + }, + { + "rshares": "163260776578", + "voter": "blueorgy" + }, + { + "rshares": "159387011508", + "voter": "opheliafu" + }, + { + "rshares": "4426428855", + "voter": "poseidon" + }, + { + "rshares": "2033762271", + "voter": "iamwne" + }, + { + "rshares": "79563973688", + "voter": "thylbom" + }, + { + "rshares": "7311858289", + "voter": "geronimo" + }, + { + "rshares": "4308378335", + "voter": "bitcoiner" + }, + { + "rshares": "116496190", + "voter": "bzeen" + }, + { + "rshares": "3756297830", + "voter": "tarindel" + }, + { + "rshares": "31921025901", + "voter": "deanliu" + }, + { + "rshares": "141429957", + "voter": "bento" + }, + { + "rshares": "13069930577", + "voter": "shredlord" + }, + { + "rshares": "13916292595", + "voter": "hagie" + }, + { + "rshares": "53841341992", + "voter": "jl777" + }, + { + "rshares": "1736201261", + "voter": "yarly" + }, + { + "rshares": "261735372", + "voter": "yarly2" + }, + { + "rshares": "262126965", + "voter": "yarly3" + }, + { + "rshares": "151424453", + "voter": "yarly4" + }, + { + "rshares": "152279375", + "voter": "yarly5" + }, + { + "rshares": "86799635", + "voter": "yarly7" + }, + { + "rshares": "100832394226", + "voter": "crazymumzysa" + }, + { + "rshares": "50619397", + "voter": "whalepool" + }, + { + "rshares": "20238670061", + "voter": "prufarchy" + }, + { + "rshares": "35610433440", + "voter": "anca3drandom" + }, + { + "rshares": "206059171", + "voter": "sergey44" + }, + { + "rshares": "6542152680", + "voter": "summonerrk" + }, + { + "rshares": "2012582806", + "voter": "hdd" + }, + { + "rshares": "21120708735", + "voter": "krabgat" + }, + { + "rshares": "4543641049", + "voter": "proto" + }, + { + "rshares": "634074071", + "voter": "curator" + }, + { + "rshares": "33383309924", + "voter": "sisterholics" + }, + { + "rshares": "420072669", + "voter": "yarly10" + }, + { + "rshares": "1404574750", + "voter": "alex.chien" + }, + { + "rshares": "224823596", + "voter": "yarly11" + }, + { + "rshares": "78603899", + "voter": "yarly12" + }, + { + "rshares": "11092117841", + "voter": "phoenixmaid" + }, + { + "rshares": "330141710", + "voter": "esqil" + }, + { + "rshares": "83707323", + "voter": "aizen53" + }, + { + "rshares": "149624601", + "voter": "steemster1" + }, + { + "rshares": "238512214", + "voter": "bullionstackers" + }, + { + "rshares": "6810743439", + "voter": "comealong" + }, + { + "rshares": "2002743924", + "voter": "andreynoch" + }, + { + "rshares": "947490604", + "voter": "metaflute" + }, + { + "rshares": "721310626", + "voter": "karenb54" + }, + { + "rshares": "449108428", + "voter": "bento04" + }, + { + "rshares": "753126143", + "voter": "bento03" + }, + { + "rshares": "1534361646", + "voter": "aizen" + }, + { + "rshares": "2298243810", + "voter": "taker" + }, + { + "rshares": "239545179", + "voter": "bento02" + }, + { + "rshares": "551525219", + "voter": "bento01" + }, + { + "rshares": "1007190932", + "voter": "pakisnxt" + }, + { + "rshares": "14668022793", + "voter": "nekromarinist" + }, + { + "rshares": "1618760149", + "voter": "coinbar" + }, + { + "rshares": "59219358", + "voter": "sharon" + }, + { + "rshares": "2635374169", + "voter": "merej99" + }, + { + "rshares": "61714352", + "voter": "lillianjones" + }, + { + "rshares": "1148224715117", + "voter": "laonie" + }, + { + "rshares": "146176741718", + "voter": "twinner" + }, + { + "rshares": "243451061692", + "voter": "ozchartart" + }, + { + "rshares": "5002368214", + "voter": "croatia" + }, + { + "rshares": "65300521", + "voter": "vladimirputin" + }, + { + "rshares": "23878310347", + "voter": "rawnetics" + }, + { + "rshares": "65308725", + "voter": "angelamerkel" + }, + { + "rshares": "17989038861", + "voter": "thebluepanda" + }, + { + "rshares": "81826244", + "voter": "bento06" + }, + { + "rshares": "24551995771", + "voter": "laoyao" + }, + { + "rshares": "38527150465", + "voter": "myfirst" + }, + { + "rshares": "239628375853", + "voter": "somebody" + }, + { + "rshares": "15892496776", + "voter": "sunshine" + }, + { + "rshares": "9202242828", + "voter": "flysaga" + }, + { + "rshares": "5634572644", + "voter": "brendio" + }, + { + "rshares": "2082686663", + "voter": "gmurph" + }, + { + "rshares": "68250832", + "voter": "missmishel623" + }, + { + "rshares": "82177171859", + "voter": "timsaid" + }, + { + "rshares": "52936380443", + "voter": "midnightoil" + }, + { + "rshares": "81534499564", + "voter": "mibenkito" + }, + { + "rshares": "2375350982", + "voter": "kalimor" + }, + { + "rshares": "63541793", + "voter": "coderg" + }, + { + "rshares": "1018538139", + "voter": "altucher" + }, + { + "rshares": "4186662893", + "voter": "ullikume" + }, + { + "rshares": "101572397", + "voter": "timferriss" + }, + { + "rshares": "53093897", + "voter": "michellek" + }, + { + "rshares": "4650618263", + "voter": "kurtbeil" + }, + { + "rshares": "2798919170", + "voter": "steemleak" + }, + { + "rshares": "109814173501", + "voter": "thisisbenbrick" + }, + { + "rshares": "104692799", + "voter": "darrenrowse" + }, + { + "rshares": "128793789941", + "voter": "xiaohui" + }, + { + "rshares": "83638970", + "voter": "xerneas" + }, + { + "rshares": "106149968", + "voter": "bigsambucca" + }, + { + "rshares": "6403494729", + "voter": "elfkitchen" + }, + { + "rshares": "5935556188", + "voter": "oflyhigh" + }, + { + "rshares": "2226707993", + "voter": "paynode" + }, + { + "rshares": "62525016", + "voter": "nickche" + }, + { + "rshares": "4251472057", + "voter": "xiaokongcom" + }, + { + "rshares": "62201879", + "voter": "msjennifer" + }, + { + "rshares": "57196572", + "voter": "ciao" + }, + { + "rshares": "47958674202", + "voter": "eneismijmich" + }, + { + "rshares": "2951808169", + "voter": "jrcornel" + }, + { + "rshares": "55449983", + "voter": "steemo" + }, + { + "rshares": "179351183", + "voter": "pcashmore" + }, + { + "rshares": "8570039552", + "voter": "xianjun" + }, + { + "rshares": "55306941", + "voter": "steema" + }, + { + "rshares": "59618782", + "voter": "andrew.sullivan" + }, + { + "rshares": "1046049321", + "voter": "brianclark" + }, + { + "rshares": "831589271", + "voter": "daniel.kahneman" + }, + { + "rshares": "232896636", + "voter": "tucker.max" + }, + { + "rshares": "740826654", + "voter": "darren.rowse" + }, + { + "rshares": "55704135", + "voter": "chris.dunn" + }, + { + "rshares": "71282219", + "voter": "confucius" + }, + { + "rshares": "11539993041", + "voter": "borran" + }, + { + "rshares": "3851639124", + "voter": "bledarus" + }, + { + "rshares": "1178246621", + "voter": "pat.flynn" + }, + { + "rshares": "52467942", + "voter": "loli" + }, + { + "rshares": "91473229819", + "voter": "miacats" + }, + { + "rshares": "1223581698", + "voter": "mattmarshall" + }, + { + "rshares": "437783005", + "voter": "timothysykes" + }, + { + "rshares": "106860965", + "voter": "patflynn" + }, + { + "rshares": "56157882", + "voter": "jarvis" + }, + { + "rshares": "561462512", + "voter": "microluck" + }, + { + "rshares": "896991635", + "voter": "andrewsullivan" + }, + { + "rshares": "77220767", + "voter": "razberrijam" + }, + { + "rshares": "54313084", + "voter": "fortuner" + }, + { + "rshares": "2005426994", + "voter": "chinadaily" + }, + { + "rshares": "9358481880", + "voter": "kyriacos" + }, + { + "rshares": "2859735634", + "voter": "virtualgrowth" + }, + { + "rshares": "122302767", + "voter": "thegoldencookie" + }, + { + "rshares": "20137065264", + "voter": "runaway-psyche" + }, + { + "rshares": "755831094058", + "voter": "dollarvigilante" + }, + { + "rshares": "61087248", + "voter": "workout" + }, + { + "rshares": "489129872", + "voter": "harvey.levin" + }, + { + "rshares": "23586282706", + "voter": "mihaiart" + }, + { + "rshares": "10341757518", + "voter": "gvargas123" + }, + { + "rshares": "53056158", + "voter": "johnbyrd" + }, + { + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "rshares": "53037689", + "voter": "thermor" + }, + { + "rshares": "53048942", + "voter": "ficholl" + }, + { + "rshares": "53030738", + "voter": "widell" + }, + { + "rshares": "86340173624", + "voter": "icfiedler" + }, + { + "rshares": "1266977190", + "voter": "laconicflow" + }, + { + "rshares": "52651308", + "voter": "revelbrooks" + }, + { + "rshares": "377542979", + "voter": "mrlogic" + }, + { + "rshares": "194739083", + "voter": "rand.fishkin" + }, + { + "rshares": "50816343", + "voter": "bitchplease" + }, + { + "rshares": "78411391", + "voter": "joelbow" + }, + { + "rshares": "8673217231", + "voter": "onetree" + }, + { + "rshares": "3071905413", + "voter": "imag1ne" + }, + { + "rshares": "64111934444", + "voter": "mandibil" + }, + { + "rshares": "51562255", + "voter": "curpose" + }, + { + "rshares": "1208491149", + "voter": "lenar" + }, + { + "rshares": "9818184488", + "voter": "lesliestarrohara" + }, + { + "rshares": "112927371731", + "voter": "shenanigator" + }, + { + "rshares": "14779778251", + "voter": "macksby" + }, + { + "rshares": "85972582", + "voter": "uziriel" + }, + { + "rshares": "2080022045", + "voter": "funkywanderer" + }, + { + "rshares": "1485475073", + "voter": "linzo" + }, + { + "rshares": "4899042813", + "voter": "richardcrill" + }, + { + "rshares": "2205784762", + "voter": "jeremyfromwi" + }, + { + "rshares": "1688038542", + "voter": "eight-rad" + }, + { + "rshares": "51712804", + "voter": "troich" + }, + { + "rshares": "1624641270", + "voter": "davidjkelley" + }, + { + "rshares": "187911420", + "voter": "team101" + }, + { + "rshares": "51718188", + "voter": "crion" + }, + { + "rshares": "52505412", + "voter": "hitherise" + }, + { + "rshares": "52496656", + "voter": "wiss" + }, + { + "rshares": "13264756693", + "voter": "ghasemkiani" + }, + { + "rshares": "906163750", + "voter": "sponge-bob" + }, + { + "rshares": "4545785145", + "voter": "l0k1" + }, + { + "rshares": "15223303760", + "voter": "digital-wisdom" + }, + { + "rshares": "3708921137", + "voter": "ethical-ai" + }, + { + "rshares": "50784892", + "voter": "freesteem" + }, + { + "rshares": "54391689", + "voter": "jamespro" + }, + { + "rshares": "53252658", + "voter": "stroully" + }, + { + "rshares": "3079499780", + "voter": "maryfromsochi" + }, + { + "rshares": "6679259372", + "voter": "jwaser" + }, + { + "rshares": "51814474", + "voter": "thadm" + }, + { + "rshares": "51812703", + "voter": "prof" + }, + { + "rshares": "1330526017", + "voter": "crypt0mine" + }, + { + "rshares": "646493719", + "voter": "kev7000" + }, + { + "rshares": "1042750516", + "voter": "zettar" + }, + { + "rshares": "51465774", + "voter": "yorsens" + }, + { + "rshares": "177656553", + "voter": "harveylevin" + }, + { + "rshares": "1129213184", + "voter": "chaeya" + }, + { + "rshares": "51154263", + "voter": "bane" + }, + { + "rshares": "51148009", + "voter": "vive" + }, + { + "rshares": "51142585", + "voter": "coad" + }, + { + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "rshares": "2615973485", + "voter": "bwaser" + }, + { + "rshares": "53003720", + "voter": "sofa" + }, + { + "rshares": "2563669906", + "voter": "lilmisjenn" + }, + { + "rshares": "122884931", + "voter": "gary.vaynerchuk" + }, + { + "rshares": "344116052", + "voter": "panther" + }, + { + "rshares": "2201645172", + "voter": "alina1" + }, + { + "rshares": "50639382", + "voter": "doggnostic" + }, + { + "rshares": "689550675", + "voter": "ct-gurus" + }, + { + "rshares": "50377764", + "voter": "jenny-talls" + }, + { + "rshares": "63519834123", + "voter": "tracemayer" + }, + { + "rshares": "905064441", + "voter": "brains" + }, + { + "rshares": "51994517", + "voter": "ailo" + }, + { + "rshares": "1339423728", + "voter": "steemafon" + }, + { + "rshares": "5610795642", + "voter": "chick1" + }, + { + "rshares": "50516543", + "voter": "typingagent" + }, + { + "rshares": "519729361", + "voter": "nelyp" + }, + { + "rshares": "328506462", + "voter": "anomaly" + }, + { + "rshares": "2400090637", + "voter": "ellepdub" + }, + { + "rshares": "113405722", + "voter": "rynow" + }, + { + "rshares": "89841354699", + "voter": "honeyscribe" + }, + { + "rshares": "51415300", + "voter": "timothy.sykes" + }, + { + "rshares": "61292139", + "voter": "inarix03" + }, + { + "rshares": "218488504", + "voter": "ola1" + }, + { + "rshares": "832905434", + "voter": "jbaker585" + }, + { + "rshares": "11803842421", + "voter": "herpetologyguy" + }, + { + "rshares": "28099831450", + "voter": "storyseeker" + }, + { + "rshares": "51470533", + "voter": "eavy" + }, + { + "rshares": "51484593", + "voter": "roto" + }, + { + "rshares": "51659688", + "voter": "drac59" + }, + { + "rshares": "54632106", + "voter": "everittdmickey" + }, + { + "rshares": "780018003", + "voter": "zombiedoll" + }, + { + "rshares": "4709614494", + "voter": "morgan.waser" + }, + { + "rshares": "50602980", + "voter": "cfisher" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "50708837", + "voter": "ardly" + }, + { + "rshares": "50536471", + "voter": "twistys" + }, + { + "rshares": "1822707064", + "voter": "bapparabi" + }, + { + "rshares": "50532230", + "voter": "friends" + }, + { + "rshares": "50487909", + "voter": "opticalillusions" + }, + { + "rshares": "3607671121", + "voter": "strong-ai" + }, + { + "rshares": "516306089", + "voter": "grisha-danunaher" + }, + { + "rshares": "72826233", + "voter": "igtes" + }, + { + "rshares": "705838377", + "voter": "dikanevroman" + }, + { + "rshares": "144899746", + "voter": "buffett" + }, + { + "rshares": "162925257", + "voter": "uct" + }, + { + "rshares": "162904624", + "voter": "allianz" + }, + { + "rshares": "408141953", + "voter": "witchcraftblog" + }, + { + "rshares": "161205518", + "voter": "acute" + }, + { + "rshares": "157931180", + "voter": "pyro" + }, + { + "rshares": "157801695", + "voter": "realtime" + }, + { + "rshares": "304039381", + "voter": "james1987" + }, + { + "rshares": "160870736", + "voter": "electronicarts" + }, + { + "rshares": "1606766770", + "voter": "dresden" + }, + { + "rshares": "201362779", + "voter": "mgibson" + }, + { + "rshares": "152057481", + "voter": "food-creator" + }, + { + "rshares": "159531007", + "voter": "benetton" + }, + { + "rshares": "154417232", + "voter": "jasonxg" + }, + { + "rshares": "159387371", + "voter": "bosch" + }, + { + "rshares": "4918101052", + "voter": "sherlockcupid" + }, + { + "rshares": "158632601", + "voter": "cream" + }, + { + "rshares": "158326081", + "voter": "thomasp" + }, + { + "rshares": "74838700", + "voter": "dealzgal" + }, + { + "rshares": "154959539", + "voter": "mrshanson" + }, + { + "rshares": "83470968", + "voter": "storage" + }, + { + "rshares": "329629477", + "voter": "aldentan" + }, + { + "rshares": "67690648", + "voter": "blackmarket" + }, + { + "rshares": "73837045", + "voter": "gifts" + }, + { + "rshares": "112446078", + "voter": "paulocouto" + }, + { + "rshares": "151927362", + "voter": "countofdelphi" + }, + { + "rshares": "151062983", + "voter": "newsfeed" + }, + { + "rshares": "154022998", + "voter": "sambkf" + }, + { + "rshares": "144957585", + "voter": "sawgunner13" + }, + { + "rshares": "144801473", + "voter": "dirlei.sdias" + }, + { + "rshares": "150387842", + "voter": "trickster512" + } + ], + "author": "fairytalelife", + "author_payout_value": "0.000 HBD", + "author_reputation": 66.97, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\n

Do you want to know what depression feels like? 

\n

Think of a foggy grey muck that encircles you head to toe. Severe depression strips you from being able to experience any joy in life, even when for all the world it appears you have everything going for you.   Watered down commentaries attempt to describe the soul rotting misery of waking up in darkness every day. Who are those who can bolt out of bed ready to face the day with their happy attitudes about life? I don\u2019t know. I\u2019ve never been one. I dread waking up. One of the things really depressed people look forward to is a respite from consciousness. This is why those who suffer tend to sleep so much. It\u2019s escapism. Yet it isn\u2019t, because even in sleep you can be terrorized by your daytime demons. The quality of sleep is not restful \u2013 in fact, rather fitful. This is one reason so many people take mind-numbing tranquilizers to dull their wakeful state just to be able to drift away to somewhere, anywhere else than the dangerous and unchecked arena of the mind.    

\n

People experience the tiers of depression's challenges in different ways. It\u2019s not being disappointed or being in a bad mood if something doesn\u2019t pan out in your favor. You chipped you manicure? Bugger. Irritating, yes, but it\u2019s not the end of the world. For a depressed person,  something minor (for whatever reason) can hurl you head first into a bottomless void of regret and agony. You associate daily life with walking through a minefield. Danger lurks with every step. That ad for an antidepressant that shows a cartoon figure walking around under her own cloud of rain sums up the feeling quite well (of course it does \u2013 sponsored by The Pharmaceutical Cartel). You NEED this drug to function. That\u2019s another post, and I know far too well how drugs are touted as the magic solution. Not even children are safe from their campaigns.

\n

\n

It\u2019s the ultimate mind-fuck factory, this thought prison that leads you through Dante\u2019s circles of hell as you try to scramble your way out of the snake pit. The thoughts pull you back in by your ankles. Like a horror movie, the entity of depression knows what scares you. It knows what makes you wail in despair. It knows your saddest thoughts and flashes those across the movie screen in your head in incessant reruns. You are a spectator, but unable to avert your eyes.   

\n

You have things to do? Most can buck up and get 'er done. A very depressed person knows what must be done yet can\u2019t do it. Cannot. It\u2019s not possible. It has nothing to do with laziness and everything to do with apathy. The effort isn\u2019t worth it. You know you will feel better if such and such gets done. So the obvious solution is to do it. You have errands to run? Get in the car and go. But for a depressed person, the mundane becomes detestable to such an extent that not even the guilt for not doing the things is unable to motivate you enough to accomplish what is impossible in your mind.   

\n

\n

Once while touring Alcatraz, I was struck by something the tour guide told us. The island is positioned in just the right way that all the prisoners could smell the Ghirardelli chocolate factory wafting its chocolate scent across the bay, no doubt driving inmates insane. This is much like depression. You are stuck in a jail cell knowing everyone else is living happily while you miss out on what you know (on some level) is a gift \u2013 life itself. You can only observe from afar.    

\n

You know those days when you feel like a sloth and nothing gets done? For many depressed people that\u2019s every day. By getting nothing done I don\u2019t mean cleaning out the refrigerator or reading a book your friend needs back. I mean responsibilities you must accept as an adult, as a parent. You can\u2019t function. Your kids are hungry, but you can\u2019t do anything about it because you can\u2019t move. You have an empty stare and wonder if it\u2019s too early for a drink. It\u2019s only one in the afternoon. Can it be justified?    

\n

And you can\u2019t stop seeing those stories about the Yulin dog meat festival. This is horrible because an animal suffering is the worst thing in the world to me. Or those commercials by the SPCA. The thoughts hit hard, bating me. \u201cUh oh! She\u2019s making some progress \u2013 what is she sad about? Let\u2019s infect.\u201d Self-sabotage is the name of the game. For a depressed person, thoughts take over and pollute your whole mind.   

\n

You hope you will feel better tomorrow, or someday. You keep saying someday. But that wastes away today. You hide from friends and family because the idea of faking a smile is akin to torture. And you think no one cares about your problems. Or they are tired of hearing about them because they are always the same.   Your brain is wired differently. Some of the most creative genius comes from a desolate mental state. It can, but only If you can get any mental energy together to be productive.   

\n

Your friends email you cures for migraines. You have had to invent numerous excuses that involve having them, because that\u2019s a reasonable excuse to cancel plans. Saying you\u2019re sad or not in the mood will get \u201cI\u2019ll cheer you up\u201d from well-meaning friends and family. But you want to be alone, completely isolated, in bed, with the covers pulled up over your head. And you want to cry. And I don\u2019t mean a few tears. I mean heart-wrenching sobs that no one would want to hear.   

\n

You yell at people you love. You cry easily. They can\u2019t help you but they can sure piss you off. And we are pissed at ourselves, because children have needs that must be met -no question about it. And you know are letting them down with your suffering. Another blow.   We do not feel sorry for ourselves in the traditional sense. We do feel sorry that we can\u2019t get a grip as we are often told to do. We feel guilty for letting others down who matter as they stand by helpless, completely befuddled about their roles in all of this. They feel responsible You want to convey it\u2019s not them or their fault, but they start to not believe you. It\u2019s no one\u2019s fault. It simply is.   

\n

Some days are easier than others. I often do well when the stars align - deceptively so, or maybe not deceptive. Maybe I am getting a handle on this curse. It\u2019s a constant roller coaster of wondering when the happy cart will upturn and everything you manage to put in there (composure, self-esteem, productivity) scatters across the road. And cars are coming, but you have to try to summon up the ability to put them back in and continue on your journey. It\u2019s like you are that one slow car on a hill that everyone zips past because they don\u2019t carry the burden of your load.   

\n

Is life a beautiful thing? Yes. It is. Is it filled with sadness? Yes to that too. Can a depressed person overcome depression? I think so. But in order to answer that, you must be willing to look at your origins to discover what might be holding you back.         

\n

\n

Drawings and painting \u00a9 Johanna Westerman 2016  

\n


\n", + "category": "health", + "children": 44, + "created": "2016-09-14T17:46:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/14/HeadlessHoreseman-medium2d3b42.png", + "https://www.steemimg.com/images/2016/09/14/Brain1b12cc.jpg", + "https://www.steemimg.com/images/2016/09/14/Blanche134386.jpg", + "https://www.steemimg.com/images/2016/09/14/HeadlessHoreseman96dd9.jpg" + ], + "tags": [ + "health", + "art", + "illustration", + "life" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 120989205660828, + "payout": 832.809, + "payout_at": "2016-09-15T20:29:32", + "pending_payout_value": "832.809 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-prison-of-depression", + "post_id": 950898, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 492 + }, + "title": "The Prison of Depression", + "updated": "2016-09-14T19:14:27", + "url": "/health/@fairytalelife/the-prison-of-depression" + }, + { + "active_votes": [ + { + "rshares": "231806896049", + "voter": "anonymous" + }, + { + "rshares": "40039727156805", + "voter": "blocktrades" + }, + { + "rshares": "81139043695", + "voter": "friend5" + }, + { + "rshares": "5563642779143", + "voter": "kushed" + }, + { + "rshares": "4361056998354", + "voter": "roadscape" + }, + { + "rshares": "11463456159", + "voter": "by24seven" + }, + { + "rshares": "48198557404", + "voter": "twiceuponatime" + }, + { + "rshares": "253716125229", + "voter": "indominon" + }, + { + "rshares": "72048644865", + "voter": "vault" + }, + { + "rshares": "22916314085", + "voter": "wpalczynski" + }, + { + "rshares": "23645584002", + "voter": "nikolai" + }, + { + "rshares": "143164562367", + "voter": "chris4210" + }, + { + "rshares": "24193131603", + "voter": "acidyo" + }, + { + "rshares": "313691550", + "voter": "coar" + }, + { + "rshares": "1061234978", + "voter": "murh" + }, + { + "rshares": "33781972641", + "voter": "ratel" + }, + { + "rshares": "208364758717", + "voter": "kimziv" + }, + { + "rshares": "45145254362", + "voter": "venuspcs" + }, + { + "rshares": "7264907621", + "voter": "getssidetracked" + }, + { + "rshares": "1414199127", + "voter": "trees" + }, + { + "rshares": "197179742", + "voter": "strawhat" + }, + { + "rshares": "844421054", + "voter": "endgame" + }, + { + "rshares": "118094280271", + "voter": "furion" + }, + { + "rshares": "2834923420", + "voter": "steem1653" + }, + { + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "rshares": "3735950544", + "voter": "incomemonthly" + }, + { + "rshares": "6392090406", + "voter": "cryptosi" + }, + { + "rshares": "243749878708", + "voter": "nabilov" + }, + { + "rshares": "677892916", + "voter": "luisucv34" + }, + { + "rshares": "34761252099", + "voter": "creemej" + }, + { + "rshares": "167304333801", + "voter": "blueorgy" + }, + { + "rshares": "4545098461", + "voter": "poseidon" + }, + { + "rshares": "41053239884", + "voter": "celsius100" + }, + { + "rshares": "1659490970", + "voter": "tokyodude" + }, + { + "rshares": "128098702", + "voter": "mysteem" + }, + { + "rshares": "6168588588", + "voter": "chloetaylor" + }, + { + "rshares": "34309889652", + "voter": "sisterholics" + }, + { + "rshares": "59017018", + "voter": "reported" + }, + { + "rshares": "55047214", + "voter": "krushing" + }, + { + "rshares": "1213316718415", + "voter": "laonie" + }, + { + "rshares": "21929710586", + "voter": "rawnetics" + }, + { + "rshares": "41307699258", + "voter": "myfirst" + }, + { + "rshares": "246282932283", + "voter": "somebody" + }, + { + "rshares": "9450611021", + "voter": "flysaga" + }, + { + "rshares": "513541455", + "voter": "minnowsunited" + }, + { + "rshares": "54405663387", + "voter": "midnightoil" + }, + { + "rshares": "54018085", + "voter": "whatyouganjado" + }, + { + "rshares": "136080800992", + "voter": "xiaohui" + }, + { + "rshares": "6792049578", + "voter": "elfkitchen" + }, + { + "rshares": "61187902", + "voter": "makaveli" + }, + { + "rshares": "4366196499", + "voter": "xiaokongcom" + }, + { + "rshares": "7475701368", + "voter": "thebotkiller" + }, + { + "rshares": "8801500509", + "voter": "xianjun" + }, + { + "rshares": "11292536945", + "voter": "borran" + }, + { + "rshares": "53669860", + "voter": "alexbones" + }, + { + "rshares": "576331905", + "voter": "microluck" + }, + { + "rshares": "1310823380", + "voter": "stevescoins" + }, + { + "rshares": "3089652212", + "voter": "macartem" + }, + { + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "rshares": "156958768", + "voter": "nang1" + }, + { + "rshares": "166282713", + "voter": "kamil5" + }, + { + "rshares": "51156498", + "voter": "dobbydaba" + }, + { + "rshares": "5950976762", + "voter": "trev" + }, + { + "rshares": "8773942171", + "voter": "craigwilliamz" + }, + { + "rshares": "72624506", + "voter": "ozertayiz" + }, + { + "rshares": "53639497", + "voter": "salebored" + }, + { + "rshares": "736031742", + "voter": "freeinthought" + }, + { + "rshares": "63258691", + "voter": "arnoldz61" + }, + { + "rshares": "2101747450", + "voter": "eight-rad" + }, + { + "rshares": "53681172", + "voter": "bitdrone" + }, + { + "rshares": "53672498", + "voter": "sleepcult" + }, + { + "rshares": "54175638", + "voter": "apparat" + }, + { + "rshares": "12276570645", + "voter": "doitvoluntarily" + }, + { + "rshares": "135393340675", + "voter": "thecyclist" + }, + { + "rshares": "52015504", + "voter": "analyzethis" + }, + { + "rshares": "63904547", + "voter": "freebornangel" + }, + { + "rshares": "52154065", + "voter": "nommo" + }, + { + "rshares": "51261721", + "voter": "f1111111" + }, + { + "rshares": "339287005", + "voter": "anomaly" + }, + { + "rshares": "98545946", + "voter": "ola1" + }, + { + "rshares": "63588518", + "voter": "mari5555na" + }, + { + "rshares": "2996735269", + "voter": "powerup" + }, + { + "rshares": "527464783", + "voter": "grisha-danunaher" + }, + { + "rshares": "161974443", + "voter": "zapply" + }, + { + "rshares": "158561921", + "voter": "jyriygo" + }, + { + "rshares": "136494240", + "voter": "bleujay" + }, + { + "rshares": "153397644", + "voter": "milank" + }, + { + "rshares": "150273031", + "voter": "inkwisitiveguy01" + } + ], + "author": "powerup", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "So far, a great number of applications, or tools that can considerably improve our user experience whether we are old users or new, has been created. The application directory created by @roelandp is accepted as an official directory that currently contains more than 80 various tools, mainly created by the community members, with a few official ones. The number of applications is growing rapidly, thanks to talented developers and other users, whose ideas are being converted into functional programs.\n\nHere, I want to introduce you to an infographic that contains 17 very useful tools singled out and sorted into categories according to their use. The first category 'for new and old users' contains essential applications for most users, including applications such as the official chat server and block explorer, as well as a dedicated service for uninterrupted adding of photos, @jesta's tool for easier tracking of data related to your account, and a tool for real-time Steem Backed Dollar conversion, with a few extra applications included in the service.\n\nThe next group contains the applications essential for developers, led by @xeroc's piston which says for itself 'The Swiff Army Knife for the Steem network'. They facilitate the communication with the steem blockchain and there is also an application that facilitates the integration of Steem payments to your service. \n\nThe Miscellaneous group contains a variety of useful applications such as tools for curators, a precise browser of user reputation, a dedicated tool for creating shortened links with statistics, a Steem Stream display of all activity in real time with an option of adjusting your settings, as well as speech community and radio.\n\nLast group are applications in the category of data and analytics that contain most of data about the network, the network activity and the users. \n\nI apologize in advance if some of your favorite applications have been left out; if that is the case, you can always visit http://SteemTools.com which contains all the applications.\n\n*For a clearer view, it is recommended that you open the image in full resolution.* *[Infographic Hotlink!](http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png)*\nhttps://s11.postimg.io/8uxamnavn/revision_02.png\n---\n ![http://steemit.com/@powerup](https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png)", + "category": "infographic", + "children": 6, + "created": "2016-09-15T16:45:09", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s11.postimg.io/8uxamnavn/revision_02.png", + "https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png" + ], + "links": [ + "http://SteemTools.com", + "http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png" + ], + "tags": [ + "infographic", + "steemit", + "steem", + "steemsquad", + "minnowsunite" + ], + "users": [ + "roelandp", + "jesta", + "xeroc" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53802622776333, + "payout": 171.268, + "payout_at": "2016-09-16T17:20:12", + "pending_payout_value": "171.268 HBD", + "percent_steem_dollars": 10000, + "permlink": "17-steem-tools-every-steemian-needs-to-know", + "post_id": 959438, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 88 + }, + "title": "Steem Tools Every Steemian Needs To Know (Infographic)", + "updated": "2016-09-15T18:45:09", + "url": "/infographic/@powerup/17-steem-tools-every-steemian-needs-to-know" + }, + { + "active_votes": [ + { + "rshares": "480436179104", + "voter": "barrie" + }, + { + "rshares": "7864449914272", + "voter": "steempty" + }, + { + "rshares": "231705234180", + "voter": "anonymous" + }, + { + "rshares": "16854862331350", + "voter": "rainman" + }, + { + "rshares": "14446969817383", + "voter": "summon" + }, + { + "rshares": "25305686361517", + "voter": "ned" + }, + { + "rshares": "35326666852152", + "voter": "jamesc" + }, + { + "rshares": "4264966375681", + "voter": "riverhead" + }, + { + "rshares": "2331280387575", + "voter": "badassmother" + }, + { + "rshares": "2097108315061", + "voter": "hr1" + }, + { + "rshares": "118474244256", + "voter": "sandra" + }, + { + "rshares": "186985754668", + "voter": "svk" + }, + { + "rshares": "1112765112473", + "voter": "ihashfury" + }, + { + "rshares": "1120603805124", + "voter": "rossco99" + }, + { + "rshares": "139902157720", + "voter": "liondani" + }, + { + "rshares": "2642718616169", + "voter": "wang" + }, + { + "rshares": "24281627442", + "voter": "jaewoocho" + }, + { + "rshares": "6243689624471", + "voter": "steemit200" + }, + { + "rshares": "1868926634967", + "voter": "xeroc" + }, + { + "rshares": "6514602351120", + "voter": "complexring" + }, + { + "rshares": "6410652893701", + "voter": "clayop" + }, + { + "rshares": "6132075386062", + "voter": "witness.svk" + }, + { + "rshares": "1772458968810", + "voter": "joseph" + }, + { + "rshares": "4727274896444", + "voter": "au1nethyb1" + }, + { + "rshares": "494824460005", + "voter": "recursive2" + }, + { + "rshares": "3458312417787", + "voter": "recursive" + }, + { + "rshares": "686881929841", + "voter": "boombastic" + }, + { + "rshares": "91206564426", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "6953910678", + "voter": "bingo-0" + }, + { + "rshares": "1330823260969", + "voter": "steempower" + }, + { + "rshares": "450758929058", + "voter": "boatymcboatface" + }, + { + "rshares": "1191961702407", + "voter": "cass" + }, + { + "rshares": "10604743495", + "voter": "idol" + }, + { + "rshares": "6904136925", + "voter": "nexusdev" + }, + { + "rshares": "783330802369", + "voter": "steemrollin" + }, + { + "rshares": "5146683930", + "voter": "sakr" + }, + { + "rshares": "296262169682", + "voter": "chitty" + }, + { + "rshares": "117668471628", + "voter": "linouxis9" + }, + { + "rshares": "82315328878", + "voter": "unosuke" + }, + { + "rshares": "3109715701", + "voter": "yefet" + }, + { + "rshares": "16257411149", + "voter": "brindleswan" + }, + { + "rshares": "1799714267", + "voter": "jocelyn" + }, + { + "rshares": "74263607249", + "voter": "nenad-ristic" + }, + { + "rshares": "79806365559", + "voter": "easteagle13" + }, + { + "rshares": "17258698670", + "voter": "jademont" + }, + { + "rshares": "74888702310", + "voter": "eeks" + }, + { + "rshares": "508866333", + "voter": "paco-steem" + }, + { + "rshares": "6128712690", + "voter": "spaninv" + }, + { + "rshares": "31076852778", + "voter": "instructor2121" + }, + { + "rshares": "-12893763252", + "voter": "james-show" + }, + { + "rshares": "2068009075", + "voter": "gekko" + }, + { + "rshares": "336346989448", + "voter": "teamsteem" + }, + { + "rshares": "577046508309", + "voter": "nanzo-scoop" + }, + { + "rshares": "13067769111", + "voter": "fact" + }, + { + "rshares": "169323765740", + "voter": "steve-walschot" + }, + { + "rshares": "10036865820", + "voter": "kefkius" + }, + { + "rshares": "47419915237", + "voter": "hannixx42" + }, + { + "rshares": "183044162935", + "voter": "mummyimperfect" + }, + { + "rshares": "57489294954", + "voter": "oaldamster" + }, + { + "rshares": "268804254", + "voter": "coar" + }, + { + "rshares": "109398386804", + "voter": "asch" + }, + { + "rshares": "1413643352", + "voter": "murh" + }, + { + "rshares": "2380104240", + "voter": "error" + }, + { + "rshares": "5853981249", + "voter": "marta-zaidel" + }, + { + "rshares": "40916611985", + "voter": "ranko-k" + }, + { + "rshares": "1135543735246", + "voter": "cyber" + }, + { + "rshares": "50798219281", + "voter": "ak2020" + }, + { + "rshares": "260089147904", + "voter": "billbutler" + }, + { + "rshares": "7897515214", + "voter": "thecryptofiend" + }, + { + "rshares": "32296517134", + "voter": "drinkzya" + }, + { + "rshares": "3923236237211", + "voter": "satoshifund" + }, + { + "rshares": "397051543", + "voter": "stiletto" + }, + { + "rshares": "56682668949", + "voter": "juanmiguelsalas" + }, + { + "rshares": "583788541552", + "voter": "andrarchy" + }, + { + "rshares": "112713462099", + "voter": "kenny-crane" + }, + { + "rshares": "17036364912", + "voter": "samether" + }, + { + "rshares": "33767337247", + "voter": "ratel" + }, + { + "rshares": "54688824107", + "voter": "thecryptodrive" + }, + { + "rshares": "4699576112", + "voter": "dahaz159" + }, + { + "rshares": "379204818665", + "voter": "kaylinart" + }, + { + "rshares": "552432841732", + "voter": "infovore" + }, + { + "rshares": "13355491837", + "voter": "facer" + }, + { + "rshares": "263013790227", + "voter": "trogdor" + }, + { + "rshares": "4675654152", + "voter": "tee-em" + }, + { + "rshares": "31336803829", + "voter": "michaelx" + }, + { + "rshares": "5946252630", + "voter": "mark-waser" + }, + { + "rshares": "17023109715", + "voter": "albertogm" + }, + { + "rshares": "116594641815", + "voter": "geoffrey" + }, + { + "rshares": "42673423694", + "voter": "kimziv" + }, + { + "rshares": "46235030853", + "voter": "honeythief" + }, + { + "rshares": "82866843499", + "voter": "emily-cook" + }, + { + "rshares": "91972176401", + "voter": "mctiller" + }, + { + "rshares": "35412152853", + "voter": "cryptoiskey" + }, + { + "rshares": "11723743800", + "voter": "primus" + }, + { + "rshares": "484592257", + "voter": "mrhankeh" + }, + { + "rshares": "38897615588", + "voter": "clement" + }, + { + "rshares": "46178109682", + "voter": "isteemit" + }, + { + "rshares": "68580548647", + "voter": "bacchist" + }, + { + "rshares": "72899731827", + "voter": "venuspcs" + }, + { + "rshares": "3324885062", + "voter": "michaellamden68" + }, + { + "rshares": "179676652871", + "voter": "asmolokalo" + }, + { + "rshares": "38569797449", + "voter": "good-karma" + }, + { + "rshares": "453653624734", + "voter": "roelandp" + }, + { + "rshares": "3347929950", + "voter": "orly" + }, + { + "rshares": "45472590951", + "voter": "firepower" + }, + { + "rshares": "255388351", + "voter": "mstang83" + }, + { + "rshares": "19227034654", + "voter": "hakise" + }, + { + "rshares": "17256371639", + "voter": "r4fken" + }, + { + "rshares": "25548776759", + "voter": "tcfxyz" + }, + { + "rshares": "7076198200", + "voter": "futurefood" + }, + { + "rshares": "142765809551", + "voter": "derekareith" + }, + { + "rshares": "32325400002", + "voter": "picokernel" + }, + { + "rshares": "10594872684", + "voter": "seanmchughart" + }, + { + "rshares": "766081509", + "voter": "busser" + }, + { + "rshares": "1296482376779", + "voter": "renohq" + }, + { + "rshares": "18840499998", + "voter": "ausbitbank" + }, + { + "rshares": "1451740615", + "voter": "mixa" + }, + { + "rshares": "2226795955", + "voter": "steem1653" + }, + { + "rshares": "17220499402", + "voter": "sebastien" + }, + { + "rshares": "13516728290", + "voter": "sitaru" + }, + { + "rshares": "308826662759", + "voter": "jesta" + }, + { + "rshares": "34328964595", + "voter": "toxonaut" + }, + { + "rshares": "118752539", + "voter": "snowden" + }, + { + "rshares": "4709018700", + "voter": "thegoodguy" + }, + { + "rshares": "15578903803", + "voter": "aaseb" + }, + { + "rshares": "1107663461", + "voter": "karen13" + }, + { + "rshares": "24973952155", + "voter": "igster" + }, + { + "rshares": "4289492867", + "voter": "dcryptogold" + }, + { + "rshares": "12853559657", + "voter": "domavila" + }, + { + "rshares": "2395414530", + "voter": "dmacshady" + }, + { + "rshares": "23336601075", + "voter": "grolelo" + }, + { + "rshares": "1514372408", + "voter": "kendewitt" + }, + { + "rshares": "89580632", + "voter": "wildchild" + }, + { + "rshares": "1682066491", + "voter": "natali22" + }, + { + "rshares": "44666586658", + "voter": "sbq777t" + }, + { + "rshares": "1953764546", + "voter": "the-future" + }, + { + "rshares": "4296012707", + "voter": "adamt" + }, + { + "rshares": "44807508492", + "voter": "mynameisbrian" + }, + { + "rshares": "179093605311", + "voter": "blueorgy" + }, + { + "rshares": "5008619742", + "voter": "poseidon" + }, + { + "rshares": "360289908808", + "voter": "calaber24p" + }, + { + "rshares": "4210919359", + "voter": "fubar-bdhr" + }, + { + "rshares": "119399264", + "voter": "nedrob" + }, + { + "rshares": "16044930360", + "voter": "heimindanger" + }, + { + "rshares": "7311842917", + "voter": "geronimo" + }, + { + "rshares": "3355524755", + "voter": "bones" + }, + { + "rshares": "20338607929", + "voter": "bendjmiller222" + }, + { + "rshares": "5228680253", + "voter": "bitcoiner" + }, + { + "rshares": "3754893033", + "voter": "tarindel" + }, + { + "rshares": "3786022381", + "voter": "azurejasper" + }, + { + "rshares": "30851492146", + "voter": "deanliu" + }, + { + "rshares": "599141666", + "voter": "siol" + }, + { + "rshares": "5479123729", + "voter": "rainchen" + }, + { + "rshares": "5690877975", + "voter": "sharker" + }, + { + "rshares": "34508226149", + "voter": "sauravrungta" + }, + { + "rshares": "530196643", + "voter": "qonq99" + }, + { + "rshares": "53839881372", + "voter": "jl777" + }, + { + "rshares": "7837739118", + "voter": "lostnuggett" + }, + { + "rshares": "30002446832", + "voter": "zaebars" + }, + { + "rshares": "1808058993", + "voter": "yarly" + }, + { + "rshares": "272610758", + "voter": "yarly2" + }, + { + "rshares": "273018668", + "voter": "yarly3" + }, + { + "rshares": "157733805", + "voter": "yarly4" + }, + { + "rshares": "158624349", + "voter": "yarly5" + }, + { + "rshares": "90416287", + "voter": "yarly7" + }, + { + "rshares": "838465852", + "voter": "raymonjohnstone" + }, + { + "rshares": "23815723291", + "voter": "masterinvestor" + }, + { + "rshares": "50619397", + "voter": "steemchain" + }, + { + "rshares": "50619397", + "voter": "whalepool" + }, + { + "rshares": "206059171", + "voter": "sergey44" + }, + { + "rshares": "117016257", + "voter": "mxo8" + }, + { + "rshares": "7787748060", + "voter": "summonerrk" + }, + { + "rshares": "197539708", + "voter": "strictlybusiness" + }, + { + "rshares": "1234205003", + "voter": "mohammed123" + }, + { + "rshares": "5166865550", + "voter": "bbrewer" + }, + { + "rshares": "942251145", + "voter": "happyphoenix" + }, + { + "rshares": "20257716778", + "voter": "krabgat" + }, + { + "rshares": "4543551843", + "voter": "proto" + }, + { + "rshares": "658330815", + "voter": "curator" + }, + { + "rshares": "7211602623", + "voter": "sisterholics" + }, + { + "rshares": "437530299", + "voter": "yarly10" + }, + { + "rshares": "1365336577", + "voter": "alex.chien" + }, + { + "rshares": "234176102", + "voter": "yarly11" + }, + { + "rshares": "81879061", + "voter": "yarly12" + }, + { + "rshares": "3675263114", + "voter": "tygergamer" + }, + { + "rshares": "3627578747", + "voter": "bkkshadow" + }, + { + "rshares": "11567371620", + "voter": "dimitarj" + }, + { + "rshares": "817422571", + "voter": "bullionstackers" + }, + { + "rshares": "3082906297", + "voter": "dmilash" + }, + { + "rshares": "2002481686", + "voter": "andreynoch" + }, + { + "rshares": "110940646", + "voter": "cryptoz" + }, + { + "rshares": "3391999835", + "voter": "glitterpig" + }, + { + "rshares": "6404274840", + "voter": "shortcut" + }, + { + "rshares": "128587928653", + "voter": "steemdrive" + }, + { + "rshares": "1075365048", + "voter": "metaflute" + }, + { + "rshares": "58218132689", + "voter": "gomeravibz" + }, + { + "rshares": "2298169701", + "voter": "taker" + }, + { + "rshares": "65485650", + "voter": "dras" + }, + { + "rshares": "6519151447", + "voter": "nekromarinist" + }, + { + "rshares": "6880289904", + "voter": "theprophet" + }, + { + "rshares": "240147448", + "voter": "frozendota" + }, + { + "rshares": "15543734691", + "voter": "felixxx" + }, + { + "rshares": "3432112427", + "voter": "merej99" + }, + { + "rshares": "254880160829", + "voter": "laonie" + }, + { + "rshares": "24852935259", + "voter": "rawnetics" + }, + { + "rshares": "22374728157", + "voter": "thebluepanda" + }, + { + "rshares": "25618981790", + "voter": "laonie1" + }, + { + "rshares": "26132274895", + "voter": "laonie2" + }, + { + "rshares": "26141438708", + "voter": "laonie3" + }, + { + "rshares": "25094797142", + "voter": "laoyao" + }, + { + "rshares": "65214616", + "voter": "modogg" + }, + { + "rshares": "7958908678", + "voter": "myfirst" + }, + { + "rshares": "51767495130", + "voter": "somebody" + }, + { + "rshares": "1935723185", + "voter": "flysaga" + }, + { + "rshares": "6864125594", + "voter": "brendio" + }, + { + "rshares": "2082514282", + "voter": "gmurph" + }, + { + "rshares": "72860205", + "voter": "kurzer42" + }, + { + "rshares": "11435966181", + "voter": "midnightoil" + }, + { + "rshares": "78269782470", + "voter": "mibenkito" + }, + { + "rshares": "2375155298", + "voter": "kalimor" + }, + { + "rshares": "4276738846", + "voter": "ullikume" + }, + { + "rshares": "2735302379", + "voter": "darrenturetzky" + }, + { + "rshares": "59414599", + "voter": "michellek" + }, + { + "rshares": "26136684196", + "voter": "laonie4" + }, + { + "rshares": "26133889368", + "voter": "laonie5" + }, + { + "rshares": "26130809772", + "voter": "laonie6" + }, + { + "rshares": "26126568283", + "voter": "laonie7" + }, + { + "rshares": "5977415250", + "voter": "kurtbeil" + }, + { + "rshares": "26122787391", + "voter": "laonie8" + }, + { + "rshares": "26119897476", + "voter": "laonie9" + }, + { + "rshares": "3300371180", + "voter": "steemleak" + }, + { + "rshares": "28583578460", + "voter": "xiaohui" + }, + { + "rshares": "1980457070", + "voter": "t3ran13" + }, + { + "rshares": "7834943379", + "voter": "mevilkingdom" + }, + { + "rshares": "21531331546", + "voter": "jphamer1" + }, + { + "rshares": "11056722867", + "voter": "ekitcho" + }, + { + "rshares": "127379962", + "voter": "bigsambucca" + }, + { + "rshares": "1504058180", + "voter": "elfkitchen" + }, + { + "rshares": "93154573622", + "voter": "joele" + }, + { + "rshares": "5999670912", + "voter": "oflyhigh" + }, + { + "rshares": "2078540879", + "voter": "paynode" + }, + { + "rshares": "62400081859", + "voter": "sirwinchester" + }, + { + "rshares": "122933349", + "voter": "agussudaryanto" + }, + { + "rshares": "894298402", + "voter": "xiaokongcom" + }, + { + "rshares": "1802649539", + "voter": "xianjun" + }, + { + "rshares": "61313637", + "voter": "jfelton5" + }, + { + "rshares": "73061236", + "voter": "evgenyche" + }, + { + "rshares": "70633121", + "voter": "stevescriber" + }, + { + "rshares": "4097488430", + "voter": "bledarus" + }, + { + "rshares": "52467942", + "voter": "loli" + }, + { + "rshares": "53638070", + "voter": "nano2nd" + }, + { + "rshares": "118127541", + "voter": "microluck" + }, + { + "rshares": "187339808", + "voter": "lisadang" + }, + { + "rshares": "9426175065", + "voter": "theb0red1" + }, + { + "rshares": "2057906517", + "voter": "chinadaily" + }, + { + "rshares": "31193669396", + "voter": "kyriacos" + }, + { + "rshares": "59021275", + "voter": "cryptoblu" + }, + { + "rshares": "59014859", + "voter": "instructor" + }, + { + "rshares": "7981765563", + "voter": "lemouth" + }, + { + "rshares": "739008163112", + "voter": "dollarvigilante" + }, + { + "rshares": "18699439170", + "voter": "anotherjoe" + }, + { + "rshares": "60945251", + "voter": "saveliy" + }, + { + "rshares": "99328137981", + "voter": "serejandmyself" + }, + { + "rshares": "4877223734", + "voter": "almerri" + }, + { + "rshares": "728677907", + "voter": "alexma3x" + }, + { + "rshares": "9824813120", + "voter": "gvargas123" + }, + { + "rshares": "443801352", + "voter": "keepdoodling" + }, + { + "rshares": "3657683169", + "voter": "shneakysquirrel" + }, + { + "rshares": "278004039", + "voter": "steevc" + }, + { + "rshares": "3341359657", + "voter": "movievertigo" + }, + { + "rshares": "70361224", + "voter": "vasilii" + }, + { + "rshares": "26113221925", + "voter": "laonie10" + }, + { + "rshares": "362426778", + "voter": "mrlogic" + }, + { + "rshares": "62362905", + "voter": "steempipe" + }, + { + "rshares": "55543445", + "voter": "bitchplease" + }, + { + "rshares": "79273566479", + "voter": "someguy123" + }, + { + "rshares": "90827598056", + "voter": "barrycooper" + }, + { + "rshares": "3572205128", + "voter": "stillsafe" + }, + { + "rshares": "76843163", + "voter": "joelbow" + }, + { + "rshares": "28822571115", + "voter": "hilarski" + }, + { + "rshares": "2149644744", + "voter": "therealpaul" + }, + { + "rshares": "4580066391", + "voter": "steemitpatina" + }, + { + "rshares": "5178202476", + "voter": "silverbug2000" + }, + { + "rshares": "55859919", + "voter": "rickmiller" + }, + { + "rshares": "1233668048", + "voter": "lenar" + }, + { + "rshares": "10020064820", + "voter": "etcmike" + }, + { + "rshares": "61596105", + "voter": "uri-bruck" + }, + { + "rshares": "5154589910", + "voter": "nulliusinverba" + }, + { + "rshares": "1698796327", + "voter": "runridefly" + }, + { + "rshares": "57841858", + "voter": "dianaju" + }, + { + "rshares": "88019548", + "voter": "uziriel" + }, + { + "rshares": "57530129", + "voter": "mstoni" + }, + { + "rshares": "4592499069", + "voter": "richardcrill" + }, + { + "rshares": "25230942954", + "voter": "laonie11" + }, + { + "rshares": "1687924866", + "voter": "eight-rad" + }, + { + "rshares": "62783765", + "voter": "lovetosteemit" + }, + { + "rshares": "1660563580", + "voter": "davidjkelley" + }, + { + "rshares": "4350110165", + "voter": "baro" + }, + { + "rshares": "9060248806", + "voter": "sponge-bob" + }, + { + "rshares": "4765474309", + "voter": "l0k1" + }, + { + "rshares": "15558969971", + "voter": "digital-wisdom" + }, + { + "rshares": "494724739", + "voter": "areynolds" + }, + { + "rshares": "3708378555", + "voter": "ethical-ai" + }, + { + "rshares": "54247498", + "voter": "freesteem" + }, + { + "rshares": "2477345340", + "voter": "fajrilgooner" + }, + { + "rshares": "2222639041", + "voter": "matthewtiii" + }, + { + "rshares": "55401224", + "voter": "walternz" + }, + { + "rshares": "6826713536", + "voter": "jwaser" + }, + { + "rshares": "852820572", + "voter": "tatianka" + }, + { + "rshares": "12020525779", + "voter": "doitvoluntarily" + }, + { + "rshares": "56439878", + "voter": "phusionphil" + }, + { + "rshares": "607704096", + "voter": "kev7000" + }, + { + "rshares": "1018487810", + "voter": "zettar" + }, + { + "rshares": "55736056", + "voter": "lighter" + }, + { + "rshares": "207196967560", + "voter": "asksisk" + }, + { + "rshares": "25848472434", + "voter": "dubi" + }, + { + "rshares": "2673758412", + "voter": "bwaser" + }, + { + "rshares": "6400398189", + "voter": "dexter-k" + }, + { + "rshares": "50751176", + "voter": "roadhog" + }, + { + "rshares": "350998373", + "voter": "panther" + }, + { + "rshares": "1784221363", + "voter": "alina1" + }, + { + "rshares": "50639382", + "voter": "doggnostic" + }, + { + "rshares": "1094895432", + "voter": "wulfmeister" + }, + { + "rshares": "659556912", + "voter": "ct-gurus" + }, + { + "rshares": "348073541", + "voter": "bones261" + }, + { + "rshares": "387894501497", + "voter": "charlieshrem" + }, + { + "rshares": "61786622160", + "voter": "tracemayer" + }, + { + "rshares": "9049304130", + "voter": "brains" + }, + { + "rshares": "54448999", + "voter": "onlineworker" + }, + { + "rshares": "50210467", + "voter": "post-successful" + }, + { + "rshares": "689134944", + "voter": "jessicanicklos" + }, + { + "rshares": "633657150", + "voter": "bones555" + }, + { + "rshares": "54919358", + "voter": "steem4fobs" + }, + { + "rshares": "492992904", + "voter": "echoesinthemind" + }, + { + "rshares": "53397626", + "voter": "f1111111" + }, + { + "rshares": "2084637414", + "voter": "steemsquad" + }, + { + "rshares": "574180710", + "voter": "anomaly" + }, + { + "rshares": "27665434494", + "voter": "tarekadam" + }, + { + "rshares": "2399791213", + "voter": "ellepdub" + }, + { + "rshares": "51890765", + "voter": "gregorygarcia" + }, + { + "rshares": "57056918", + "voter": "inarix03" + }, + { + "rshares": "573904238", + "voter": "ola1" + }, + { + "rshares": "849039554", + "voter": "jbaker585" + }, + { + "rshares": "5522323762", + "voter": "michelle.gent" + }, + { + "rshares": "11700805109", + "voter": "herpetologyguy" + }, + { + "rshares": "58261815", + "voter": "everittdmickey" + }, + { + "rshares": "53548226", + "voter": "mari5555na" + }, + { + "rshares": "4813549151", + "voter": "morgan.waser" + }, + { + "rshares": "50602980", + "voter": "cfisher" + }, + { + "rshares": "51240567", + "voter": "billkappa442" + }, + { + "rshares": "51236745", + "voter": "niiboye" + }, + { + "rshares": "51227561", + "voter": "battalar" + }, + { + "rshares": "1157070714", + "voter": "anns" + }, + { + "rshares": "50875769", + "voter": "cyan" + }, + { + "rshares": "50873654", + "voter": "palladium" + }, + { + "rshares": "50796122", + "voter": "factom" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "827252367", + "voter": "bapparabi" + }, + { + "rshares": "3389664065", + "voter": "dodders007" + }, + { + "rshares": "3687326823", + "voter": "strong-ai" + }, + { + "rshares": "161225748", + "voter": "iliyaa" + }, + { + "rshares": "162925257", + "voter": "uct" + }, + { + "rshares": "1354011808", + "voter": "rusteemitblog" + }, + { + "rshares": "158798473", + "voter": "zapply" + }, + { + "rshares": "201362779", + "voter": "mgibson" + }, + { + "rshares": "157118197", + "voter": "rage" + }, + { + "rshares": "159973989", + "voter": "capcom" + }, + { + "rshares": "153699193", + "voter": "allgoodthings" + }, + { + "rshares": "159531007", + "voter": "benetton" + }, + { + "rshares": "159425365", + "voter": "tipsandtricks" + }, + { + "rshares": "159318360", + "voter": "stimmt" + }, + { + "rshares": "159175576", + "voter": "fallout" + }, + { + "rshares": "159025535", + "voter": "xtreme" + }, + { + "rshares": "944924940", + "voter": "modernbukowski" + }, + { + "rshares": "158632601", + "voter": "cream" + }, + { + "rshares": "158637372", + "voter": "alterego" + }, + { + "rshares": "158602900", + "voter": "steem-wallet" + }, + { + "rshares": "158560941", + "voter": "steemthis" + }, + { + "rshares": "158486055", + "voter": "zendesk" + }, + { + "rshares": "26843428547", + "voter": "goldmatters" + }, + { + "rshares": "81051650", + "voter": "dealzgal" + }, + { + "rshares": "158230871", + "voter": "helepa" + }, + { + "rshares": "199633972", + "voter": "rishi556" + }, + { + "rshares": "92745520", + "voter": "storage" + }, + { + "rshares": "188144802", + "voter": "antaja" + }, + { + "rshares": "145960715", + "voter": "raph" + }, + { + "rshares": "151162552", + "voter": "dougkarr" + }, + { + "rshares": "1586499055", + "voter": "slammr76" + }, + { + "rshares": "73844343", + "voter": "blackmarket" + }, + { + "rshares": "79990132", + "voter": "gifts" + }, + { + "rshares": "85598308", + "voter": "expat" + }, + { + "rshares": "134906258", + "voter": "steemtrail" + }, + { + "rshares": "153178035", + "voter": "royfft" + }, + { + "rshares": "112446078", + "voter": "paulocouto" + }, + { + "rshares": "155872526", + "voter": "countofdelphi" + }, + { + "rshares": "151306241", + "voter": "tnemm.atiaw" + }, + { + "rshares": "154295967", + "voter": "harleyismydog" + }, + { + "rshares": "148041723", + "voter": "newsfeed" + }, + { + "rshares": "144957585", + "voter": "sawgunner13" + }, + { + "rshares": "147818170", + "voter": "dirlei.sdias" + } + ], + "author": "steve-walschot", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "# Time for another upgrade of SteemPay.io! A lot of work has been done behind the scenes, and here's a brief overview:\n\n\n---\n\n\n\n\n\n# Pay on site\n\n### Users will be able to make their payments straight from the payments page using a 2 step sliding form. \n\n\n\nhttp://i.imgur.com/iinyGFl.png\n\n\n\nThis means no more need to open another tab page, fill in all the details in your wallet, and returning to SteemPay. Both the password and the active private key can be used to broadcast the transaction. \n\n\n\nSteemPay **does not** encourage password storing, however, there is an option available for those who prefer to save their password in the browser's ***localstorage.*** A warning pop up will appear explaining the risks of storing passwords in the browser.\n\n\n\nAfter a successful login, the user will see a quick overview of his available balances, and another confirmation is required to finalize the transaction straight from the payment window.\n\n\n\n\n\n# Mobile wallet\n\n### The mobile wallet is up and running, but my code seems like a mess due to trial and error. \n\nA **bounty** will be placed for someone to cleanup everything and make some minor corrections so the first version can be released very soon (and get approved on the official android & iOS stores). I feel the need to encourage bounties, so people can become engaged with the community, and hopefully I'll discover new talent to join me on the further expansion of SteemPay.\n\n\n\n# SteemFEST 1\n\nSteemPay will donate some money to SteemFEST 1. Me and @roelandp still need to work out the details, but SteemPay will be present and setup a donation terminal where users are free to send some donations towards the organization by using the mobile wallet with QR support (plans may still change). \n\n\n\n# Hardware upgrade\n\nYet another server upgrade was needed to house all services related to SteemPay. This includes many other side projects that will be announced later on. This should be the final server upgrade for SteemPay and related services. \n\n\n\nThe DNS is still propagating, so you might not see the recent changes on SteemPay.io yet.\n\n\n\n# General statistics implantation\n\nA lightweight database will be kept storing nothing but the transaction amounts processed trough SteemPay. This serves for having some overview on the monthly growth of the transactions, as well as the amounts processed. Every month, the statistics will be published.\n\n\n\n# Steem on!", + "category": "steempay", + "children": 14, + "created": "2016-09-14T06:19:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.imgur.com/iinyGFl.png" + ], + "tags": [ + "steempay", + "steempayments", + "development", + "update" + ], + "users": [ + "roelandp" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 174333402242155, + "payout": 1750.818, + "payout_at": "2016-10-15T13:31:03", + "pending_payout_value": "1750.818 HBD", + "percent_steem_dollars": 10000, + "permlink": "steempay-upgrade-pay-on-site-or-steemfest-or-mobile-wallet", + "post_id": 947211, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 400 + }, + "title": "Steempay upgrade - Pay on site | SteemFEST | Mobile wallet", + "updated": "2016-09-14T06:20:42", + "url": "/steempay/@steve-walschot/steempay-upgrade-pay-on-site-or-steemfest-or-mobile-wallet" + }, + { + "active_votes": [ + { + "rshares": "518181875581", + "voter": "barrie" + }, + { + "rshares": "31620103450538", + "voter": "smooth" + }, + { + "rshares": "260759332327", + "voter": "anonymous" + }, + { + "rshares": "2047759927809", + "voter": "badassmother" + }, + { + "rshares": "2099340340625", + "voter": "hr1" + }, + { + "rshares": "1402227395408", + "voter": "rossco99" + }, + { + "rshares": "23338638054", + "voter": "jaewoocho" + }, + { + "rshares": "1910039425215", + "voter": "xeroc" + }, + { + "rshares": "1661657401786", + "voter": "joseph" + }, + { + "rshares": "471982260599", + "voter": "recursive3" + }, + { + "rshares": "3187826540990", + "voter": "recursive" + }, + { + "rshares": "1282783470", + "voter": "mineralwasser" + }, + { + "rshares": "702252849815", + "voter": "boombastic" + }, + { + "rshares": "1719075621", + "voter": "bingo-1" + }, + { + "rshares": "5936571539134", + "voter": "smooth.witness" + }, + { + "rshares": "457719147730", + "voter": "boatymcboatface" + }, + { + "rshares": "9890456090", + "voter": "idol" + }, + { + "rshares": "131787410217", + "voter": "team" + }, + { + "rshares": "1702427102", + "voter": "jocelyn" + }, + { + "rshares": "461461082967", + "voter": "leesunmoo" + }, + { + "rshares": "1247396916090", + "voter": "gavvet" + }, + { + "rshares": "74913635150", + "voter": "eeks" + }, + { + "rshares": "8567499992", + "voter": "fkn" + }, + { + "rshares": "11261443630", + "voter": "elishagh1" + }, + { + "rshares": "599827540724", + "voter": "nanzo-scoop" + }, + { + "rshares": "161287532172", + "voter": "steve-walschot" + }, + { + "rshares": "182039074638", + "voter": "mummyimperfect" + }, + { + "rshares": "313666285", + "voter": "coar" + }, + { + "rshares": "109431915950", + "voter": "asch" + }, + { + "rshares": "1414823587", + "voter": "murh" + }, + { + "rshares": "6375528917", + "voter": "cryptofunk" + }, + { + "rshares": "2219594239", + "voter": "error" + }, + { + "rshares": "5268583124", + "voter": "marta-zaidel" + }, + { + "rshares": "38749275184", + "voter": "ranko-k" + }, + { + "rshares": "985447048915", + "voter": "cyber" + }, + { + "rshares": "63472911304", + "voter": "theshell" + }, + { + "rshares": "52177367591", + "voter": "ak2020" + }, + { + "rshares": "417566592605", + "voter": "taoteh1221" + }, + { + "rshares": "375915775849", + "voter": "hedge-x" + }, + { + "rshares": "18668166065", + "voter": "samether" + }, + { + "rshares": "33779461634", + "voter": "ratel" + }, + { + "rshares": "85401868413", + "voter": "herzmeister" + }, + { + "rshares": "5287000077", + "voter": "tee-em" + }, + { + "rshares": "30496214097", + "voter": "michaelx" + }, + { + "rshares": "5950236300", + "voter": "mark-waser" + }, + { + "rshares": "130482031811", + "voter": "geoffrey" + }, + { + "rshares": "74777860177", + "voter": "kimziv" + }, + { + "rshares": "79450691320", + "voter": "emily-cook" + }, + { + "rshares": "2251928158", + "voter": "superfreek" + }, + { + "rshares": "471516850", + "voter": "mrhankeh" + }, + { + "rshares": "17908173089", + "voter": "grey580" + }, + { + "rshares": "68200649381", + "voter": "bacchist" + }, + { + "rshares": "20382051466", + "voter": "thebatchman" + }, + { + "rshares": "59056857395", + "voter": "lehard" + }, + { + "rshares": "76017835973", + "voter": "rubybian" + }, + { + "rshares": "18268797910", + "voter": "konstantin" + }, + { + "rshares": "2649402156", + "voter": "romel" + }, + { + "rshares": "6941291365", + "voter": "gatoso" + }, + { + "rshares": "41821532061", + "voter": "furion" + }, + { + "rshares": "200664863", + "voter": "barbara2" + }, + { + "rshares": "223036409", + "voter": "ch0c0latechip" + }, + { + "rshares": "206422340", + "voter": "doge4lyf" + }, + { + "rshares": "12011310308", + "voter": "asim" + }, + { + "rshares": "85512692", + "voter": "snowden" + }, + { + "rshares": "14804978653", + "voter": "aaseb" + }, + { + "rshares": "4431003942", + "voter": "karen13" + }, + { + "rshares": "1455625353", + "voter": "jrd8526" + }, + { + "rshares": "21565632626", + "voter": "artific" + }, + { + "rshares": "7164402609", + "voter": "lichtblick" + }, + { + "rshares": "37826396801", + "voter": "creemej" + }, + { + "rshares": "84865861", + "voter": "wildchild" + }, + { + "rshares": "3871359622", + "voter": "maximkichev" + }, + { + "rshares": "167294697812", + "voter": "blueorgy" + }, + { + "rshares": "1631211812", + "voter": "poseidon" + }, + { + "rshares": "2083366228", + "voter": "iamwne" + }, + { + "rshares": "362447415925", + "voter": "calaber24p" + }, + { + "rshares": "10466922918", + "voter": "rpf" + }, + { + "rshares": "3694190342", + "voter": "bitcoiner" + }, + { + "rshares": "33624572763", + "voter": "deanliu" + }, + { + "rshares": "459345887", + "voter": "meteor78" + }, + { + "rshares": "30193718340", + "voter": "zaebars" + }, + { + "rshares": "6948016204", + "voter": "positive" + }, + { + "rshares": "780088825", + "voter": "raymonjohnstone" + }, + { + "rshares": "19827631792", + "voter": "krabgat" + }, + { + "rshares": "11734541225", + "voter": "sisterholics" + }, + { + "rshares": "1483259422", + "voter": "alex.chien" + }, + { + "rshares": "8921616604", + "voter": "royalmacro" + }, + { + "rshares": "233934645", + "voter": "fnait" + }, + { + "rshares": "207827906", + "voter": "keepcalmand" + }, + { + "rshares": "1838091863", + "voter": "remlaps" + }, + { + "rshares": "3445177864", + "voter": "glitterpig" + }, + { + "rshares": "7221227809", + "voter": "uwe69" + }, + { + "rshares": "896285424", + "voter": "metaflute" + }, + { + "rshares": "50575844297", + "voter": "gomeravibz" + }, + { + "rshares": "9193626491", + "voter": "taker" + }, + { + "rshares": "2236809039", + "voter": "merej99" + }, + { + "rshares": "414945627496", + "voter": "laonie" + }, + { + "rshares": "166006086500", + "voter": "twinner" + }, + { + "rshares": "22430898487", + "voter": "laonie1" + }, + { + "rshares": "22947696195", + "voter": "laonie2" + }, + { + "rshares": "22955764004", + "voter": "laonie3" + }, + { + "rshares": "25206296089", + "voter": "laoyao" + }, + { + "rshares": "14653942462", + "voter": "myfirst" + }, + { + "rshares": "90711449970", + "voter": "somebody" + }, + { + "rshares": "3391693609", + "voter": "flysaga" + }, + { + "rshares": "5465055585", + "voter": "brendio" + }, + { + "rshares": "2084677795", + "voter": "gmurph" + }, + { + "rshares": "18607683624", + "voter": "midnightoil" + }, + { + "rshares": "2280336943", + "voter": "kalimor" + }, + { + "rshares": "504711698206", + "voter": "glitterfart" + }, + { + "rshares": "22951578069", + "voter": "laonie4" + }, + { + "rshares": "22949307467", + "voter": "laonie5" + }, + { + "rshares": "22946449112", + "voter": "laonie6" + }, + { + "rshares": "22942428841", + "voter": "laonie7" + }, + { + "rshares": "3489545901", + "voter": "kurtbeil" + }, + { + "rshares": "22939097897", + "voter": "laonie8" + }, + { + "rshares": "22936432119", + "voter": "laonie9" + }, + { + "rshares": "46536921016", + "voter": "xiaohui" + }, + { + "rshares": "177527074798", + "voter": "terrycraft" + }, + { + "rshares": "1321003450", + "voter": "dolov" + }, + { + "rshares": "88179884", + "voter": "bigsambucca" + }, + { + "rshares": "2287717822", + "voter": "elfkitchen" + }, + { + "rshares": "105894845081", + "voter": "joele" + }, + { + "rshares": "6166349652", + "voter": "oflyhigh" + }, + { + "rshares": "2229123966", + "voter": "paynode" + }, + { + "rshares": "1566982177", + "voter": "xiaokongcom" + }, + { + "rshares": "253808801", + "voter": "xcepta" + }, + { + "rshares": "3158713250", + "voter": "xianjun" + }, + { + "rshares": "12796476601", + "voter": "borran" + }, + { + "rshares": "64119004", + "voter": "jupiter.zeus" + }, + { + "rshares": "70633121", + "voter": "stevescriber" + }, + { + "rshares": "50027573", + "voter": "loli" + }, + { + "rshares": "51199976", + "voter": "nano2nd" + }, + { + "rshares": "2249451928", + "voter": "njall" + }, + { + "rshares": "206879958", + "voter": "microluck" + }, + { + "rshares": "6547835526", + "voter": "userlogin" + }, + { + "rshares": "6802729666", + "voter": "rubenalexander" + }, + { + "rshares": "59219258", + "voter": "photo00" + }, + { + "rshares": "604279479", + "voter": "tagira" + }, + { + "rshares": "2131733339", + "voter": "chinadaily" + }, + { + "rshares": "108403024", + "voter": "pollina" + }, + { + "rshares": "2649789126", + "voter": "levycore" + }, + { + "rshares": "22930483067", + "voter": "laonie10" + }, + { + "rshares": "332237822", + "voter": "mrlogic" + }, + { + "rshares": "59229074587", + "voter": "mandibil" + }, + { + "rshares": "2132454023", + "voter": "shadowspub" + }, + { + "rshares": "59067894", + "voter": "bonapetit" + }, + { + "rshares": "5053531368", + "voter": "richardcrill" + }, + { + "rshares": "22091338934", + "voter": "laonie11" + }, + { + "rshares": "2101664455", + "voter": "eight-rad" + }, + { + "rshares": "3336919086", + "voter": "xanoxt" + }, + { + "rshares": "1661479473", + "voter": "davidjkelley" + }, + { + "rshares": "187911420", + "voter": "team101" + }, + { + "rshares": "109225703", + "voter": "rusla" + }, + { + "rshares": "4892645779", + "voter": "mscleverclocks" + }, + { + "rshares": "727103786", + "voter": "ksena" + }, + { + "rshares": "11069296957", + "voter": "sponge-bob" + }, + { + "rshares": "4268200560", + "voter": "l0k1" + }, + { + "rshares": "15569990970", + "voter": "digital-wisdom" + }, + { + "rshares": "3791420478", + "voter": "ethical-ai" + }, + { + "rshares": "6830905360", + "voter": "jwaser" + }, + { + "rshares": "50858762", + "voter": "apparat" + }, + { + "rshares": "212888896291", + "voter": "asksisk" + }, + { + "rshares": "2675382304", + "voter": "bwaser" + }, + { + "rshares": "350998373", + "voter": "panther" + }, + { + "rshares": "659649765", + "voter": "ct-gurus" + }, + { + "rshares": "54793782", + "voter": "park.bom" + }, + { + "rshares": "395173675944", + "voter": "charlieshrem" + }, + { + "rshares": "60104450664", + "voter": "tracemayer" + }, + { + "rshares": "23239991726", + "voter": "brains" + }, + { + "rshares": "407083055", + "voter": "anomaly" + }, + { + "rshares": "2401189699", + "voter": "ellepdub" + }, + { + "rshares": "61292139", + "voter": "inarix03" + }, + { + "rshares": "172352271", + "voter": "ola1" + }, + { + "rshares": "12396603737", + "voter": "herpetologyguy" + }, + { + "rshares": "51826827", + "voter": "drac59" + }, + { + "rshares": "4816713747", + "voter": "morgan.waser" + }, + { + "rshares": "297771990", + "voter": "thefinanceguy" + }, + { + "rshares": "1258344048", + "voter": "anns" + }, + { + "rshares": "50907857", + "voter": "oxygen" + }, + { + "rshares": "50875769", + "voter": "cyan" + }, + { + "rshares": "50868434", + "voter": "jumbo" + }, + { + "rshares": "50865840", + "voter": "sting" + }, + { + "rshares": "50796122", + "voter": "factom" + }, + { + "rshares": "50794039", + "voter": "autodesk" + }, + { + "rshares": "50568084", + "voter": "brazzers" + }, + { + "rshares": "50543061", + "voter": "rabobank" + }, + { + "rshares": "50538694", + "voter": "fenix" + }, + { + "rshares": "50349676", + "voter": "albertheijn" + }, + { + "rshares": "3689644671", + "voter": "strong-ai" + }, + { + "rshares": "52329350", + "voter": "ninjapainter" + }, + { + "rshares": "254506659", + "voter": "darkminded153" + }, + { + "rshares": "527435916", + "voter": "grisha-danunaher" + }, + { + "rshares": "162917785", + "voter": "ctu" + }, + { + "rshares": "162911190", + "voter": "front" + }, + { + "rshares": "1630327346", + "voter": "rusteemitblog" + }, + { + "rshares": "161089804", + "voter": "pyro" + }, + { + "rshares": "159025535", + "voter": "xtreme" + }, + { + "rshares": "155528114", + "voter": "icesteem" + }, + { + "rshares": "158602900", + "voter": "steem-wallet" + }, + { + "rshares": "158560941", + "voter": "steemthis" + }, + { + "rshares": "74838700", + "voter": "dealzgal" + }, + { + "rshares": "255357124", + "voter": "orenshani7" + }, + { + "rshares": "68013381", + "voter": "storage" + }, + { + "rshares": "58460105", + "voter": "blackmarket" + }, + { + "rshares": "61530871", + "voter": "gifts" + }, + { + "rshares": "93882016", + "voter": "expat" + }, + { + "rshares": "154566975", + "voter": "dimaisrael" + }, + { + "rshares": "1593664040", + "voter": "steemlift" + }, + { + "rshares": "138651704", + "voter": "toddemaher1" + } + ], + "author": "terrycraft", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "
\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman18.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

When looking through old photographs, you realize how much the world has changed around us.

\n
\u041f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u044f \u0441\u0442\u0430\u0440\u044b\u0435 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438, \u043e\u0441\u043e\u0437\u043d\u0430\u0451\u0448\u044c \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437\u043c\u0435\u043d\u0438\u043b\u0441\u044f \u043c\u0438\u0440 \u0432\u043e\u043a\u0440\u0443\u0433 \u043d\u0430\u0441.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman16.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

I am deeply convinced that the people imprinted on these black-and-white photographs never suspected what will happen to them in the future, whether it is immediate or distant As well as they didn't realized how quickly the years will pass, changing all the world around. So, as you look at their careless faces, you fairly quickly realize that your current situation is not much different.

\n
\u042f \u0433\u043b\u0443\u0431\u043e\u043a\u043e \u0443\u0432\u0435\u0440\u0435\u043d\u0430 \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u043b\u044e\u0434\u0438, \u0437\u0430\u043f\u0435\u0447\u0430\u0442\u043b\u0451\u043d\u043d\u044b\u0435 \u043d\u0430 \u0447\u0451\u0440\u043d\u043e-\u0431\u0435\u043b\u044b\u0445 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044f\u0445, \u043d\u0435 \u043f\u043e\u0434\u043e\u0437\u0440\u0435\u0432\u0430\u043b\u0438, \u0447\u0442\u043e \u0441\u0442\u0430\u043d\u0435\u0442 \u0441 \u043d\u0438\u043c\u0438 \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u043c, \u0438 \u043d\u0435 \u043e\u0447\u0435\u043d\u044c, \u0431\u0443\u0434\u0443\u0449\u0435\u043c. \u041d\u0435 \u0437\u043d\u0430\u043b\u0438 \u043e\u043d\u0438 \u0442\u0430\u043a\u0436\u0435, \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u0442\u0440\u0435\u043c\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u0440\u043e\u0439\u0434\u0443\u0442 \u0433\u043e\u0434\u044b, \u0438 \u043a\u0430\u043a \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u0441\u044f \u043c\u0438\u0440 \u0432\u043e\u043a\u0440\u0443\u0433. \u041f\u043e\u044d\u0442\u043e\u043c\u0443, \u0433\u043b\u044f\u0434\u044f \u043d\u0430 \u0438\u0445 \u0431\u0435\u0441\u043f\u0435\u0447\u043d\u044b\u0435 \u043b\u0438\u0446\u0430, \u0434\u043e\u0432\u043e\u043b\u044c\u043d\u043e \u0431\u044b\u0441\u0442\u0440\u043e \u043e\u0441\u043e\u0437\u043d\u0430\u0451\u0448\u044c, \u0447\u0442\u043e \u0442\u0432\u043e\u0451 \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0441\u0435\u0439\u0447\u0430\u0441 \u043c\u0430\u043b\u043e \u0447\u0435\u043c \u043e\u0442\u043b\u0438\u0447\u0430\u0435\u0442\u0441\u044f.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman14.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

Everything that happens around us changes the world we are witnessing. We live in an age of technological progress; the advent of the first computers, the Internet, gadgets, social networks, online games, e-commerce, cryptocurrency and, finally, a blockchain social network - the Steemit, which makes our minds work for creation of good content and its curation.

\n
\u0412\u0441\u0451 \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0435 \u0432\u043e\u043a\u0440\u0443\u0433 \u043d\u0430\u0441 \u043c\u0435\u043d\u044f\u0435\u0442 \u043c\u0438\u0440 \u043d\u0430 \u043d\u0430\u0448\u0438\u0445 \u0433\u043b\u0430\u0437\u0430\u0445. \u041c\u044b \u0436\u0438\u0432\u0451\u043c \u0432 \u0432\u0435\u043a \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0430; \u043f\u043e\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0432\u044b\u0445 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u0432, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430, \u0433\u0430\u0434\u0436\u0435\u0442\u043e\u0432, \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0435\u0442\u0435\u0439, \u043e\u043d\u043b\u0430\u0439\u043d-\u0438\u0433\u0440, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043c\u0430\u0433\u0430\u0437\u0438\u043d\u043e\u0432, \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0438, \u043d\u0430\u043a\u043e\u043d\u0435\u0446, \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 - Steemit, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0437\u0430\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043d\u0430\u0448\u0438 \u0443\u043c\u044b \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0445\u043e\u0440\u043e\u0448\u0435\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0435\u0433\u043e \u043a\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman09.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

And in 10 years, or maybe much earlier, we will see a completely different picture of reality. Generation Steem is coming. The generation that changed everything around and changed itself as well, in opposite to that generation you run with your eyes, trying to convince its immutability and the impossibility of change. No, this already will be the world of the past.

\n
\u0418 \u043b\u0435\u0442 \u0447\u0435\u0440\u0435\u0437 10, \u0430 \u043c\u043e\u0436\u0435\u0442 \u0437\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0440\u0430\u043d\u044c\u0448\u0435, \u043c\u044b \u0443\u0432\u0438\u0434\u0438\u043c \u0432 \u043a\u0430\u0434\u0440\u0435 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e \u0434\u0440\u0443\u0433\u0443\u044e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c. \u0413\u0440\u044f\u0434\u0451\u0442 Steem \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u0435, \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u043d\u0438\u0432\u0448\u0435\u0435 \u0432\u0441\u0451 \u0432\u043e\u043a\u0440\u0443\u0433 \u0441\u0435\u0431\u044f \u0438 \u0438\u0437\u043c\u0435\u043d\u0438\u0432\u0448\u0435\u0435\u0441\u044f \u0441\u0430\u043c\u043e, \u0430 \u043d\u0435 \u0442\u043e, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0441\u0435\u0439\u0447\u0430\u0441, \u043e\u0431\u0432\u043e\u0434\u044f \u0432\u0437\u0433\u043b\u044f\u0434\u043e\u043c, \u0432\u044b \u043f\u044b\u0442\u0430\u0435\u0442\u0435\u0441\u044c \u0443\u0431\u0435\u0434\u0438\u0442\u044c \u0432 \u0435\u0433\u043e \u043d\u0435\u0437\u044b\u0431\u043b\u0435\u043c\u043e\u0441\u0442\u0438 \u0438 \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u043d. \u041d\u0435\u0442, \u044d\u0442\u043e \u0443\u0436\u0435 \u0431\u0443\u0434\u0435\u0442 \u043c\u0438\u0440 \u043f\u0440\u043e\u0448\u043b\u043e\u0433\u043e.
\n\n\n\n

Written to the music: Antonio Vivaldi - The Four Seasons.

\n\n\nPlease follow me\n@panther\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @panther\n\n---\n\nAll STEEM Dollars for this post go to the featured author. \u0412\u0441\u0435 SD \u0437\u0430 \u043f\u043e\u0441\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442 \u0430\u0432\u0442\u043e\u0440.", + "category": "philosophy", + "children": 16, + "created": "2016-09-15T12:27:27", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman18.jpg", + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman16.jpg", + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman14.jpg", + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman09.jpg" + ], + "links": [ + "http://bigpicture.ru/?p=384365&fb_comment_id=180555112091488_997346", + "https://steemit.com/@panther" + ], + "tags": [ + "philosophy", + "thoughts", + "steemit", + "ru" + ], + "users": [ + "panther" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 61603577309634, + "payout": 222.566, + "payout_at": "2016-09-16T12:56:15", + "pending_payout_value": "222.566 HBD", + "percent_steem_dollars": 10000, + "permlink": "a-look-from-the-past-vzglyad-iz-proshlogo-featuring-panther-as-author", + "post_id": 957231, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 210 + }, + "title": "A Look From the Past / \u0412\u0437\u0433\u043b\u044f\u0434 \u0438\u0437 \u043f\u0440\u043e\u0448\u043b\u043e\u0433\u043e (featuring @panther as author).", + "updated": "2016-09-15T12:27:27", + "url": "/philosophy/@terrycraft/a-look-from-the-past-vzglyad-iz-proshlogo-featuring-panther-as-author" + }, + { + "active_votes": [ + { + "rshares": "532169253053", + "voter": "barrie" + }, + { + "rshares": "31619883437623", + "voter": "smooth" + }, + { + "rshares": "2104460112078", + "voter": "badassmother" + }, + { + "rshares": "2145924640161", + "voter": "hr1" + }, + { + "rshares": "1417915977465", + "voter": "rossco99" + }, + { + "rshares": "23814289766", + "voter": "jaewoocho" + }, + { + "rshares": "1703642542869", + "voter": "joseph" + }, + { + "rshares": "475597049622", + "voter": "recursive2" + }, + { + "rshares": "636257408102", + "voter": "masteryoda" + }, + { + "rshares": "3255552805749", + "voter": "recursive" + }, + { + "rshares": "1319401954", + "voter": "mineralwasser" + }, + { + "rshares": "723485629708", + "voter": "boombastic" + }, + { + "rshares": "96850892172", + "voter": "mrs.agsexplorer" + }, + { + "rshares": "1768181243", + "voter": "bingo-1" + }, + { + "rshares": "5934415897198", + "voter": "smooth.witness" + }, + { + "rshares": "1304768990979", + "voter": "steempower" + }, + { + "rshares": "456278512142", + "voter": "boatymcboatface" + }, + { + "rshares": "9890048933", + "voter": "idol" + }, + { + "rshares": "296830135486", + "voter": "chitty" + }, + { + "rshares": "491386120119", + "voter": "noaommerrr" + }, + { + "rshares": "1702377748", + "voter": "jocelyn" + }, + { + "rshares": "85268786798", + "voter": "acidsun" + }, + { + "rshares": "77509187475", + "voter": "easteagle13" + }, + { + "rshares": "194274169571", + "voter": "jamtaylor" + }, + { + "rshares": "74913340244", + "voter": "eeks" + }, + { + "rshares": "14615120866", + "voter": "fkn" + }, + { + "rshares": "478362750", + "voter": "paco-steem" + }, + { + "rshares": "5762166771", + "voter": "spaninv" + }, + { + "rshares": "8867214614", + "voter": "james-show" + }, + { + "rshares": "19210663051", + "voter": "elishagh1" + }, + { + "rshares": "599812753161", + "voter": "nanzo-scoop" + }, + { + "rshares": "10057636659", + "voter": "kefkius" + }, + { + "rshares": "182037114530", + "voter": "mummyimperfect" + }, + { + "rshares": "313666285", + "voter": "coar" + }, + { + "rshares": "109429287148", + "voter": "asch" + }, + { + "rshares": "1414771825", + "voter": "murh" + }, + { + "rshares": "6375475951", + "voter": "cryptofunk" + }, + { + "rshares": "2219507871", + "voter": "error" + }, + { + "rshares": "5268583124", + "voter": "marta-zaidel" + }, + { + "rshares": "985431200080", + "voter": "cyber" + }, + { + "rshares": "65234010126", + "voter": "theshell" + }, + { + "rshares": "52176837915", + "voter": "ak2020" + }, + { + "rshares": "3924426072251", + "voter": "satoshifund" + }, + { + "rshares": "373242613", + "voter": "stiletto" + }, + { + "rshares": "56687866808", + "voter": "juanmiguelsalas" + }, + { + "rshares": "33773766247", + "voter": "ratel" + }, + { + "rshares": "219282437688", + "voter": "will-zewe" + }, + { + "rshares": "79219201090", + "voter": "tim-johnston" + }, + { + "rshares": "19597062136", + "voter": "ziv" + }, + { + "rshares": "16102536836", + "voter": "zakharya" + }, + { + "rshares": "2246887418", + "voter": "stephen-somers" + }, + { + "rshares": "286332817574", + "voter": "trogdor" + }, + { + "rshares": "175807204421", + "voter": "thedashguy" + }, + { + "rshares": "5950208619", + "voter": "mark-waser" + }, + { + "rshares": "17023129603", + "voter": "albertogm" + }, + { + "rshares": "213644107795", + "voter": "kimziv" + }, + { + "rshares": "79449639183", + "voter": "emily-cook" + }, + { + "rshares": "2316258127", + "voter": "superfreek" + }, + { + "rshares": "31567740828", + "voter": "acassity" + }, + { + "rshares": "17557032440", + "voter": "grey580" + }, + { + "rshares": "1250400407", + "voter": "arcaneinfo" + }, + { + "rshares": "3987474604", + "voter": "michaellamden68" + }, + { + "rshares": "449234523497", + "voter": "ericvancewalton" + }, + { + "rshares": "20789508317", + "voter": "thebatchman" + }, + { + "rshares": "76015962675", + "voter": "rubybian" + }, + { + "rshares": "256232582", + "voter": "mstang83" + }, + { + "rshares": "7271192517", + "voter": "elyaque" + }, + { + "rshares": "25055988031", + "voter": "tcfxyz" + }, + { + "rshares": "2596866157", + "voter": "romel" + }, + { + "rshares": "6939608148", + "voter": "futurefood" + }, + { + "rshares": "839919246636", + "voter": "slowwalker" + }, + { + "rshares": "71342508795", + "voter": "furion" + }, + { + "rshares": "342310650", + "voter": "barbara2" + }, + { + "rshares": "380473875", + "voter": "ch0c0latechip" + }, + { + "rshares": "352132228", + "voter": "doge4lyf" + }, + { + "rshares": "136318424", + "voter": "cynetyc" + }, + { + "rshares": "25221048335", + "voter": "steemit-life" + }, + { + "rshares": "12266682329", + "voter": "asim" + }, + { + "rshares": "15125765260", + "voter": "aaseb" + }, + { + "rshares": "4430997922", + "voter": "karen13" + }, + { + "rshares": "274216136539", + "voter": "nabilov" + }, + { + "rshares": "476682819", + "voter": "karenmckersie" + }, + { + "rshares": "840273090", + "voter": "thinkngrow" + }, + { + "rshares": "47995763722", + "voter": "milestone" + }, + { + "rshares": "7462648594", + "voter": "lichtblick" + }, + { + "rshares": "5840939270", + "voter": "btcbtcbtc20155" + }, + { + "rshares": "4210092453", + "voter": "adamt" + }, + { + "rshares": "171273414934", + "voter": "blueorgy" + }, + { + "rshares": "4777021608", + "voter": "poseidon" + }, + { + "rshares": "3506024506", + "voter": "simon.braki.love" + }, + { + "rshares": "3424170757", + "voter": "bones" + }, + { + "rshares": "3787131399", + "voter": "azurejasper" + }, + { + "rshares": "1840626661", + "voter": "bola" + }, + { + "rshares": "33535112463", + "voter": "deanliu" + }, + { + "rshares": "7822595883", + "voter": "neroru" + }, + { + "rshares": "215381633110", + "voter": "jl777" + }, + { + "rshares": "450339105", + "voter": "meteor78" + }, + { + "rshares": "11852480777", + "voter": "positive" + }, + { + "rshares": "13133061167", + "voter": "moon32walker" + }, + { + "rshares": "685414916", + "voter": "tobythecat" + }, + { + "rshares": "3997180642", + "voter": "sompitonov" + }, + { + "rshares": "14893508235", + "voter": "lemooljiang" + }, + { + "rshares": "20258667266", + "voter": "krabgat" + }, + { + "rshares": "18175770345", + "voter": "proto" + }, + { + "rshares": "30220408709", + "voter": "pinkisland" + }, + { + "rshares": "4083118071", + "voter": "ace108" + }, + { + "rshares": "36105101075", + "voter": "sisterholics" + }, + { + "rshares": "9087754202", + "voter": "royalmacro" + }, + { + "rshares": "291577197", + "voter": "faraz" + }, + { + "rshares": "399064983", + "voter": "fnait" + }, + { + "rshares": "354529957", + "voter": "keepcalmand" + }, + { + "rshares": "607346548", + "voter": "cwmyao1" + }, + { + "rshares": "42831828400", + "voter": "smailer" + }, + { + "rshares": "153025160", + "voter": "steemster1" + }, + { + "rshares": "26276845296", + "voter": "fabien" + }, + { + "rshares": "1311817181", + "voter": "bullionstackers" + }, + { + "rshares": "10079340576", + "voter": "michiel" + }, + { + "rshares": "66976384508", + "voter": "malaiandrueth" + }, + { + "rshares": "3445106241", + "voter": "glitterpig" + }, + { + "rshares": "176122993", + "voter": "uwe69" + }, + { + "rshares": "24521510758", + "voter": "gomeravibz" + }, + { + "rshares": "9193596396", + "voter": "taker" + }, + { + "rshares": "1042734400", + "voter": "pakisnxt" + }, + { + "rshares": "7824682639", + "voter": "nekromarinist" + }, + { + "rshares": "60565253", + "voter": "sharon" + }, + { + "rshares": "7879017303", + "voter": "french.fyde" + }, + { + "rshares": "61714352", + "voter": "lillianjones" + }, + { + "rshares": "1244785807395", + "voter": "laonie" + }, + { + "rshares": "174513111694", + "voter": "twinner" + }, + { + "rshares": "25205404125", + "voter": "laoyao" + }, + { + "rshares": "42592081002", + "voter": "myfirst" + }, + { + "rshares": "259167037180", + "voter": "somebody" + }, + { + "rshares": "9690288359", + "voter": "flysaga" + }, + { + "rshares": "2084677795", + "voter": "gmurph" + }, + { + "rshares": "55821231813", + "voter": "midnightoil" + }, + { + "rshares": "85931785", + "voter": "coderg" + }, + { + "rshares": "4371311648", + "voter": "ullikume" + }, + { + "rshares": "4752967790", + "voter": "miketr" + }, + { + "rshares": "143185133504", + "voter": "xiaohui" + }, + { + "rshares": "21533856625", + "voter": "jphamer1" + }, + { + "rshares": "6710387381", + "voter": "elfkitchen" + }, + { + "rshares": "105893050403", + "voter": "joele" + }, + { + "rshares": "6135664318", + "voter": "oflyhigh" + }, + { + "rshares": "4476983604", + "voter": "xiaokongcom" + }, + { + "rshares": "1434064827", + "voter": "hms818" + }, + { + "rshares": "62201879", + "voter": "msjennifer" + }, + { + "rshares": "57196572", + "voter": "ciao" + }, + { + "rshares": "3743673036", + "voter": "villainblack" + }, + { + "rshares": "55449983", + "voter": "steemo" + }, + { + "rshares": "9024630191", + "voter": "xianjun" + }, + { + "rshares": "55306941", + "voter": "steema" + }, + { + "rshares": "74615731", + "voter": "evgenyche" + }, + { + "rshares": "72902270", + "voter": "confucius" + }, + { + "rshares": "93794893233", + "voter": "miacats" + }, + { + "rshares": "56157882", + "voter": "jarvis" + }, + { + "rshares": "605862734", + "voter": "microluck" + }, + { + "rshares": "599010678", + "voter": "ashwim" + }, + { + "rshares": "6535955953", + "voter": "rubenalexander" + }, + { + "rshares": "55520042", + "voter": "fortuner" + }, + { + "rshares": "2131698126", + "voter": "chinadaily" + }, + { + "rshares": "8114302214", + "voter": "lemouth" + }, + { + "rshares": "670432237", + "voter": "alexma3x" + }, + { + "rshares": "10344067760", + "voter": "gvargas123" + }, + { + "rshares": "54235184", + "voter": "johnbyrd" + }, + { + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "rshares": "54216305", + "voter": "thermor" + }, + { + "rshares": "53048942", + "voter": "ficholl" + }, + { + "rshares": "54209199", + "voter": "widell" + }, + { + "rshares": "53821337", + "voter": "revelbrooks" + }, + { + "rshares": "25448736737", + "voter": "andrewawerdna" + }, + { + "rshares": "11074790441", + "voter": "sethlinson" + }, + { + "rshares": "4042151059", + "voter": "booky" + }, + { + "rshares": "101945845", + "voter": "slorunner" + }, + { + "rshares": "52708083", + "voter": "curpose" + }, + { + "rshares": "1258844947", + "voter": "lenar" + }, + { + "rshares": "2196689434", + "voter": "runridefly" + }, + { + "rshares": "54585840", + "voter": "stephenkendal" + }, + { + "rshares": "52836995", + "voter": "troich" + }, + { + "rshares": "5011419926", + "voter": "nadin3" + }, + { + "rshares": "1661479473", + "voter": "davidjkelley" + }, + { + "rshares": "191746347", + "voter": "team101" + }, + { + "rshares": "52842496", + "voter": "crion" + }, + { + "rshares": "185701642", + "voter": "greatness" + }, + { + "rshares": "52505412", + "voter": "hitherise" + }, + { + "rshares": "52496656", + "voter": "wiss" + }, + { + "rshares": "9069255648", + "voter": "sponge-bob" + }, + { + "rshares": "15569866401", + "voter": "digital-wisdom" + }, + { + "rshares": "3791392195", + "voter": "ethical-ai" + }, + { + "rshares": "53252658", + "voter": "stroully" + }, + { + "rshares": "6830877679", + "voter": "jwaser" + }, + { + "rshares": "52916909", + "voter": "thadm" + }, + { + "rshares": "52915101", + "voter": "prof" + }, + { + "rshares": "2274469633", + "voter": "richhersey" + }, + { + "rshares": "1688383151", + "voter": "smisi" + }, + { + "rshares": "123190927", + "voter": "tito-baron" + }, + { + "rshares": "53413720", + "voter": "lighter" + }, + { + "rshares": "52560790", + "voter": "yorsens" + }, + { + "rshares": "52242652", + "voter": "bane" + }, + { + "rshares": "52236265", + "voter": "vive" + }, + { + "rshares": "52230725", + "voter": "coad" + }, + { + "rshares": "2675382304", + "voter": "bwaser" + }, + { + "rshares": "53003720", + "voter": "sofa" + }, + { + "rshares": "83883352848", + "voter": "cnfund" + }, + { + "rshares": "348073541", + "voter": "bones261" + }, + { + "rshares": "9054592458", + "voter": "brains" + }, + { + "rshares": "633672233", + "voter": "bones555" + }, + { + "rshares": "53055629", + "voter": "ailo" + }, + { + "rshares": "5893247853", + "voter": "chick1" + }, + { + "rshares": "51637870", + "voter": "aoki" + }, + { + "rshares": "52621399", + "voter": "typingagent" + }, + { + "rshares": "52634176", + "voter": "cwb" + }, + { + "rshares": "3623547539", + "voter": "slayer" + }, + { + "rshares": "407075832", + "voter": "anomaly" + }, + { + "rshares": "2401189699", + "voter": "ellepdub" + }, + { + "rshares": "172324884", + "voter": "ola1" + }, + { + "rshares": "4601294293", + "voter": "michelle.gent" + }, + { + "rshares": "12396524304", + "voter": "herpetologyguy" + }, + { + "rshares": "51470533", + "voter": "eavy" + }, + { + "rshares": "51484593", + "voter": "roto" + }, + { + "rshares": "4816686066", + "voter": "morgan.waser" + }, + { + "rshares": "291933324", + "voter": "thefinanceguy" + }, + { + "rshares": "51235131", + "voter": "glassheart" + }, + { + "rshares": "51230296", + "voter": "steemq" + }, + { + "rshares": "51227561", + "voter": "battalar" + }, + { + "rshares": "50938725", + "voter": "haved" + }, + { + "rshares": "50871059", + "voter": "motion" + }, + { + "rshares": "50708837", + "voter": "ardly" + }, + { + "rshares": "50572441", + "voter": "unilever" + }, + { + "rshares": "50570250", + "voter": "ziggo" + }, + { + "rshares": "50565798", + "voter": "penthouse" + }, + { + "rshares": "417240825", + "voter": "bapparabi" + }, + { + "rshares": "50433760", + "voter": "morse" + }, + { + "rshares": "50372583", + "voter": "carre" + }, + { + "rshares": "88794357432", + "voter": "btshuang" + }, + { + "rshares": "3229471810", + "voter": "dodders007" + }, + { + "rshares": "3689616990", + "voter": "strong-ai" + }, + { + "rshares": "538350430", + "voter": "grisha-danunaher" + }, + { + "rshares": "74444594", + "voter": "igtes" + }, + { + "rshares": "148119740", + "voter": "buffett" + }, + { + "rshares": "162917785", + "voter": "ctu" + }, + { + "rshares": "162911190", + "voter": "front" + }, + { + "rshares": "159394872", + "voter": "prosto-veter" + }, + { + "rshares": "162375387", + "voter": "yourase1" + }, + { + "rshares": "161839498", + "voter": "durex" + }, + { + "rshares": "160973134", + "voter": "gravity" + }, + { + "rshares": "160957729", + "voter": "realtime" + }, + { + "rshares": "160326045", + "voter": "planet" + }, + { + "rshares": "159984914", + "voter": "correct" + }, + { + "rshares": "159175576", + "voter": "fallout" + }, + { + "rshares": "158777847", + "voter": "agundoba" + }, + { + "rshares": "158726294", + "voter": "alberged" + }, + { + "rshares": "158718933", + "voter": "alene33" + }, + { + "rshares": "158713085", + "voter": "argesti" + }, + { + "rshares": "158709279", + "voter": "artamm" + }, + { + "rshares": "158704921", + "voter": "artyne43" + }, + { + "rshares": "158701918", + "voter": "odlaen" + }, + { + "rshares": "158692611", + "voter": "brenna88" + }, + { + "rshares": "158688416", + "voter": "fortelyn" + }, + { + "rshares": "158684075", + "voter": "cheva0" + }, + { + "rshares": "158678677", + "voter": "peris2" + }, + { + "rshares": "158667376", + "voter": "gilbertur" + }, + { + "rshares": "158658206", + "voter": "irdaince" + }, + { + "rshares": "158655323", + "voter": "whenda3" + }, + { + "rshares": "158647100", + "voter": "brenkelley" + }, + { + "rshares": "158640828", + "voter": "donaigh" + }, + { + "rshares": "158637072", + "voter": "baire00" + }, + { + "rshares": "158624650", + "voter": "gundalach" + }, + { + "rshares": "158620061", + "voter": "childirac" + }, + { + "rshares": "158609836", + "voter": "guoteff" + }, + { + "rshares": "158541985", + "voter": "citigroup" + }, + { + "rshares": "157896009", + "voter": "wymmendycer" + }, + { + "rshares": "157892476", + "voter": "fariuss" + }, + { + "rshares": "157889502", + "voter": "chutec" + }, + { + "rshares": "157887016", + "voter": "udoladhnak" + }, + { + "rshares": "157883027", + "voter": "brochari" + }, + { + "rshares": "157877631", + "voter": "hervedui" + }, + { + "rshares": "157876011", + "voter": "isetar" + }, + { + "rshares": "157874479", + "voter": "pollengus" + }, + { + "rshares": "157871566", + "voter": "valiner" + }, + { + "rshares": "157869417", + "voter": "cunod" + }, + { + "rshares": "157866738", + "voter": "trentegan" + }, + { + "rshares": "157864709", + "voter": "shenburen" + }, + { + "rshares": "157861808", + "voter": "margery2" + }, + { + "rshares": "157860265", + "voter": "thiner" + }, + { + "rshares": "157857120", + "voter": "joycery" + }, + { + "rshares": "157855001", + "voter": "cuiliobeth" + }, + { + "rshares": "157853250", + "voter": "gwilion" + }, + { + "rshares": "157847571", + "voter": "damul" + }, + { + "rshares": "157845805", + "voter": "youthan" + }, + { + "rshares": "188144802", + "voter": "antaja" + }, + { + "rshares": "156241596", + "voter": "royfft" + } + ], + "author": "masteryoda", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "![photo](http://i.imgsafe.org/81a1095cd2.png)\n\n- - -\n\nThis report covers payouts made between:\n\n**September 8, 2016, 12:00 am UTC** and **September 14, 2016, 11:59 pm UTC**\n\nTotal SBD paid: **136 116.418 SBD**\n\nTotal VESTS paid: **714 086 946.799 VESTS**\n\n- - -\n\n### SBD and VESTS payouts chart:\n![photo](http://imgh.us/canvas2_1.png)\n\n- - -\n\n### Top 100 overall SBD earners:\n|Rank | Account | Posts |SBD | VESTS |\n| :-----| ------------- |-------------:|-------------:| -----:|\n|1|[@ericvancewalton](https://steemit.com/@ericvancewalton)|15|6 077.522|24 596 951.571|\n|2|[@roelandp](https://steemit.com/@roelandp)|5|5 750.861|26 290 325.567|\n|3|[@gavvet](https://steemit.com/@gavvet)|29|5 680.552|23 514 590.090|\n|4|[@knozaki2015](https://steemit.com/@knozaki2015)|27|4 089.160|16 881 905.884|\n|5|[@sirwinchester](https://steemit.com/@sirwinchester)|20|3 196.259|13 196 949.343|\n|6|[@terrycraft](https://steemit.com/@terrycraft)|22|2 997.141|12 216 236.410|\n|7|[@calaber24p](https://steemit.com/@calaber24p)|9|2 411.786|10 175 362.253|\n|8|[@dollarvigilante](https://steemit.com/@dollarvigilante)|9|2 135.290|9 376 253.261|\n|9|[@someguy123](https://steemit.com/@someguy123)|11|1 852.735|7 812 606.655|\n|10|[@ozchartart](https://steemit.com/@ozchartart)|13|1 771.698|7 215 740.701|\n|11|[@infovore](https://steemit.com/@infovore)|5|1 705.589|6 924 653.829|\n|12|[@lifeisawesome](https://steemit.com/@lifeisawesome)|6|1 689.879|6 989 106.948|\n|13|[@dantheman](https://steemit.com/@dantheman)|11|1 612.428|8 604 664.210|\n|14|[@jamielefay](https://steemit.com/@jamielefay)|4|1 607.864|6 411 495.342|\n|15|[@kevinwong](https://steemit.com/@kevinwong)|6|1 525.609|6 542 045.016|\n|16|[@charlieshrem](https://steemit.com/@charlieshrem)|4|1 500.105|6 557 010.291|\n|17|[@jesta](https://steemit.com/@jesta)|9|1 492.300|6 472 103.097|\n|18|[@masteryoda](https://steemit.com/@masteryoda)|16|1 423.208|6 023 057.885|\n|19|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|9|1 324.346|5 343 516.577|\n|20|[@katecloud](https://steemit.com/@katecloud)|7|1 265.447|5 136 897.795|\n|21|[@timsaid](https://steemit.com/@timsaid)|10|1 153.420|4 999 746.262|\n|22|[@sascha](https://steemit.com/@sascha)|2|1 152.462|4 737 155.424|\n|23|[@honeyscribe](https://steemit.com/@honeyscribe)|6|1 147.954|4 693 320.648|\n|24|[@cryptogee](https://steemit.com/@cryptogee)|4|1 145.094|4 704 779.347|\n|25|[@krishtopa](https://steemit.com/@krishtopa)|11|1 143.346|4 834 060.865|\n|26|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|8|1 138.985|4 813 642.940|\n|27|[@good-karma](https://steemit.com/@good-karma)|6|1 118.049|5 063 419.555|\n|28|[@lobotony](https://steemit.com/@lobotony)|2|1 084.459|4 247 247.973|\n|29|[@markrmorrisjr](https://steemit.com/@markrmorrisjr)|21|1 058.539|4 369 963.419|\n|30|[@curie](https://steemit.com/@curie)|5|1 056.415|4 572 371.506|\n|31|[@opheliafu](https://steemit.com/@opheliafu)|19|1 005.845|4 156 440.681|\n|32|[@steve-walschot](https://steemit.com/@steve-walschot)|4|972.080|4 394 483.105|\n|33|[@marius19](https://steemit.com/@marius19)|23|951.573|4 011 036.875|\n|34|[@serejandmyself](https://steemit.com/@serejandmyself)|11|941.108|3 990 747.231|\n|35|[@steempower](https://steemit.com/@steempower)|4|848.391|3 693 774.188|\n|36|[@aizensou](https://steemit.com/@aizensou)|4|813.814|3 460 586.334|\n|37|[@furion](https://steemit.com/@furion)|7|776.731|3 320 010.859|\n|38|[@officialfuzzy](https://steemit.com/@officialfuzzy)|5|769.671|3 256 431.084|\n|39|[@kencode](https://steemit.com/@kencode)|3|769.635|3 084 463.879|\n|40|[@clayop](https://steemit.com/@clayop)|9|744.729|3 588 626.269|\n|41|[@larkenrose](https://steemit.com/@larkenrose)|8|718.161|2 952 298.454|\n|42|[@steemdrive](https://steemit.com/@steemdrive)|1|713.054|3 137 516.266|\n|43|[@jpiper20](https://steemit.com/@jpiper20)|21|704.591|2 861 337.136|\n|44|[@xeroc](https://steemit.com/@xeroc)|3|700.860|3 667 185.079|\n|45|[@steemship](https://steemit.com/@steemship)|3|700.485|2 935 488.501|\n|46|[@steemcleaners](https://steemit.com/@steemcleaners)|3|659.132|2 596 140.333|\n|47|[@complexring](https://steemit.com/@complexring)|2|647.683|6 065 457.160|\n|48|[@charleshosk](https://steemit.com/@charleshosk)|2|585.319|2 399 760.878|\n|49|[@hisnameisolllie](https://steemit.com/@hisnameisolllie)|11|581.385|2 338 969.539|\n|50|[@sweetsssj](https://steemit.com/@sweetsssj)|14|523.979|2 170 158.700|\n|51|[@livingthedream](https://steemit.com/@livingthedream)|4|510.792|2 027 254.578|\n|52|[@eneismijmich](https://steemit.com/@eneismijmich)|9|504.116|2 061 771.205|\n|53|[@sterlinluxan](https://steemit.com/@sterlinluxan)|7|500.904|2 022 584.130|\n|54|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|1|497.669|2 274 840.954|\n|55|[@b0y2k](https://steemit.com/@b0y2k)|2|497.114|2 132 474.149|\n|56|[@fairytalelife](https://steemit.com/@fairytalelife)|7|481.143|2 023 586.799|\n|57|[@corbettreport](https://steemit.com/@corbettreport)|6|457.908|1 979 421.716|\n|58|[@kental](https://steemit.com/@kental)|19|435.486|1 746 992.520|\n|59|[@barrycooper](https://steemit.com/@barrycooper)|4|433.548|1 887 586.618|\n|60|[@storyseeker](https://steemit.com/@storyseeker)|4|430.221|1 849 858.609|\n|61|[@jacor](https://steemit.com/@jacor)|11|428.758|1 774 043.305|\n|62|[@bravenewcoin](https://steemit.com/@bravenewcoin)|14|427.758|1 764 533.073|\n|63|[@alexbeyman](https://steemit.com/@alexbeyman)|36|409.397|1 679 902.161|\n|64|[@gangsta](https://steemit.com/@gangsta)|5|405.820|1 620 709.343|\n|65|[@dannystravels](https://steemit.com/@dannystravels)|1|404.374|1 568 065.581|\n|66|[@smailer](https://steemit.com/@smailer)|11|400.558|1 679 104.012|\n|67|[@mibenkito](https://steemit.com/@mibenkito)|1|399.692|1 722 718.612|\n|68|[@cass](https://steemit.com/@cass)|1|391.041|1 993 157.960|\n|69|[@razvanelulmarin](https://steemit.com/@razvanelulmarin)|13|373.350|1 644 174.858|\n|70|[@mrs.steemit](https://steemit.com/@mrs.steemit)|9|368.118|1 530 900.679|\n|71|[@jamtaylor](https://steemit.com/@jamtaylor)|14|358.256|1 555 939.370|\n|72|[@senseiteekay](https://steemit.com/@senseiteekay)|11|357.948|1 517 489.098|\n|73|[@healthyrecipes](https://steemit.com/@healthyrecipes)|3|350.465|1 480 991.813|\n|74|[@aggroed](https://steemit.com/@aggroed)|14|348.227|1 428 790.019|\n|75|[@celebr1ty](https://steemit.com/@celebr1ty)|5|341.894|1 368 751.869|\n|76|[@dana-edwards](https://steemit.com/@dana-edwards)|10|337.839|1 341 593.683|\n|77|[@cryptovpn](https://steemit.com/@cryptovpn)|5|330.063|1 278 755.869|\n|78|[@nanzo-scoop](https://steemit.com/@nanzo-scoop)|17|330.055|2 655 433.594|\n|79|[@fyrstikken](https://steemit.com/@fyrstikken)|23|325.469|1 521 433.247|\n|80|[@richman](https://steemit.com/@richman)|5|321.227|1 332 080.256|\n|81|[@enric](https://steemit.com/@enric)|1|311.640|1 208 207.684|\n|82|[@firepower](https://steemit.com/@firepower)|1|308.085|1 405 620.303|\n|83|[@donkeypong](https://steemit.com/@donkeypong)|4|306.922|1 672 530.744|\n|84|[@churdtzu](https://steemit.com/@churdtzu)|7|305.428|1 246 268.798|\n|85|[@pfunk](https://steemit.com/@pfunk)|6|304.288|1 696 845.158|\n|86|[@canadian-coconut](https://steemit.com/@canadian-coconut)|7|303.757|1 247 066.035|\n|87|[@alexgr](https://steemit.com/@alexgr)|7|296.946|1 259 479.298|\n|88|[@quinneaker](https://steemit.com/@quinneaker)|15|293.521|1 241 558.241|\n|89|[@nekromarinist](https://steemit.com/@nekromarinist)|10|288.002|1 136 848.911|\n|90|[@liberosist](https://steemit.com/@liberosist)|6|284.471|1 407 917.609|\n|91|[@sigmajin](https://steemit.com/@sigmajin)|3|276.147|1 127 048.263|\n|92|[@aaronkoenig](https://steemit.com/@aaronkoenig)|9|274.485|1 168 689.323|\n|93|[@tracemayer](https://steemit.com/@tracemayer)|7|273.934|1 170 292.676|\n|94|[@hilarski](https://steemit.com/@hilarski)|12|272.752|1 111 134.239|\n|95|[@shammyshiggs](https://steemit.com/@shammyshiggs)|6|267.958|1 068 640.107|\n|96|[@halo](https://steemit.com/@halo)|34|265.233|1 109 892.049|\n|97|[@rok-sivante](https://steemit.com/@rok-sivante)|8|261.410|1 152 452.980|\n|98|[@vermillion666](https://steemit.com/@vermillion666)|2|260.282|1 015 370.956|\n|99|[@kaylinart](https://steemit.com/@kaylinart)|31|258.027|1 209 969.357|\n|100|[@kobur](https://steemit.com/@kobur)|9|257.060|1 001 194.076|\n\n\n- - -\n\n### Top 100 overall VESTS earners:\n|Rank | Account | SBD | VESTS |\n| :-----| ------------- |-------------:| -----:|\n|1|[@blocktrades](https://steemit.com/@blocktrades)|6.267|31 932 805.126|\n|2|[@roelandp](https://steemit.com/@roelandp)|5 750.861|26 290 325.567|\n|3|[@ericvancewalton](https://steemit.com/@ericvancewalton)|6 077.522|24 596 951.571|\n|4|[@gavvet](https://steemit.com/@gavvet)|5 680.552|23 514 590.090|\n|5|[@knozaki2015](https://steemit.com/@knozaki2015)|4 089.160|16 881 905.884|\n|6|[@sirwinchester](https://steemit.com/@sirwinchester)|3 196.259|13 196 949.343|\n|7|[@terrycraft](https://steemit.com/@terrycraft)|2 997.141|12 216 236.410|\n|8|[@calaber24p](https://steemit.com/@calaber24p)|2 411.786|10 175 362.253|\n|9|[@smooth](https://steemit.com/@smooth)|35.690|9 725 180.893|\n|10|[@dollarvigilante](https://steemit.com/@dollarvigilante)|2 135.290|9 376 253.261|\n|11|[@berniesanders](https://steemit.com/@berniesanders)|3.218|9 025 844.273|\n|12|[@dantheman](https://steemit.com/@dantheman)|1 612.428|8 604 664.210|\n|13|[@someguy123](https://steemit.com/@someguy123)|1 852.735|7 812 606.655|\n|14|[@ozchartart](https://steemit.com/@ozchartart)|1 771.698|7 215 740.701|\n|15|[@lifeisawesome](https://steemit.com/@lifeisawesome)|1 689.879|6 989 106.948|\n|16|[@infovore](https://steemit.com/@infovore)|1 705.589|6 924 653.829|\n|17|[@wang](https://steemit.com/@wang)|0.000|6 613 063.186|\n|18|[@charlieshrem](https://steemit.com/@charlieshrem)|1 500.105|6 557 010.291|\n|19|[@kevinwong](https://steemit.com/@kevinwong)|1 525.609|6 542 045.016|\n|20|[@jesta](https://steemit.com/@jesta)|1 492.300|6 472 103.097|\n|21|[@jamielefay](https://steemit.com/@jamielefay)|1 607.864|6 411 495.342|\n|22|[@complexring](https://steemit.com/@complexring)|647.683|6 065 457.160|\n|23|[@masteryoda](https://steemit.com/@masteryoda)|1 423.208|6 023 057.885|\n|24|[@nextgencrypto](https://steemit.com/@nextgencrypto)|7.149|5 399 639.966|\n|25|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|1 324.346|5 343 516.577|\n|26|[@katecloud](https://steemit.com/@katecloud)|1 265.447|5 136 897.795|\n|27|[@good-karma](https://steemit.com/@good-karma)|1 118.049|5 063 419.555|\n|28|[@timsaid](https://steemit.com/@timsaid)|1 153.420|4 999 746.262|\n|29|[@krishtopa](https://steemit.com/@krishtopa)|1 143.346|4 834 060.865|\n|30|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|1 138.985|4 813 642.940|\n|31|[@sascha](https://steemit.com/@sascha)|1 152.462|4 737 155.424|\n|32|[@cryptogee](https://steemit.com/@cryptogee)|1 145.094|4 704 779.347|\n|33|[@honeyscribe](https://steemit.com/@honeyscribe)|1 147.954|4 693 320.648|\n|34|[@curie](https://steemit.com/@curie)|1 056.415|4 572 371.506|\n|35|[@steve-walschot](https://steemit.com/@steve-walschot)|972.080|4 394 483.105|\n|36|[@markrmorrisjr](https://steemit.com/@markrmorrisjr)|1 058.539|4 369 963.419|\n|37|[@lobotony](https://steemit.com/@lobotony)|1 084.459|4 247 247.973|\n|38|[@steemed](https://steemit.com/@steemed)|32.767|4 188 255.968|\n|39|[@opheliafu](https://steemit.com/@opheliafu)|1 005.845|4 156 440.681|\n|40|[@riverhead](https://steemit.com/@riverhead)|7.248|4 045 823.778|\n|41|[@marius19](https://steemit.com/@marius19)|951.573|4 011 036.875|\n|42|[@serejandmyself](https://steemit.com/@serejandmyself)|941.108|3 990 747.231|\n|43|[@pharesim](https://steemit.com/@pharesim)|0.000|3 875 558.313|\n|44|[@steemit200](https://steemit.com/@steemit200)|0.000|3 768 755.702|\n|45|[@steempower](https://steemit.com/@steempower)|848.391|3 693 774.188|\n|46|[@xeroc](https://steemit.com/@xeroc)|700.860|3 667 185.079|\n|47|[@clayop](https://steemit.com/@clayop)|744.729|3 588 626.269|\n|48|[@aizensou](https://steemit.com/@aizensou)|813.814|3 460 586.334|\n|49|[@furion](https://steemit.com/@furion)|776.731|3 320 010.859|\n|50|[@xeldal](https://steemit.com/@xeldal)|0.393|3 300 335.411|\n|51|[@ned](https://steemit.com/@ned)|32.419|3 290 566.039|\n|52|[@officialfuzzy](https://steemit.com/@officialfuzzy)|769.671|3 256 431.084|\n|53|[@steemdrive](https://steemit.com/@steemdrive)|713.054|3 137 516.266|\n|54|[@joseph](https://steemit.com/@joseph)|57.350|3 085 782.531|\n|55|[@kencode](https://steemit.com/@kencode)|769.635|3 084 463.879|\n|56|[@larkenrose](https://steemit.com/@larkenrose)|718.161|2 952 298.454|\n|57|[@steemship](https://steemit.com/@steemship)|700.485|2 935 488.501|\n|58|[@recursive](https://steemit.com/@recursive)|6.621|2 918 906.746|\n|59|[@jpiper20](https://steemit.com/@jpiper20)|704.591|2 861 337.136|\n|60|[@hr1](https://steemit.com/@hr1)|0.300|2 780 636.062|\n|61|[@nanzo-scoop](https://steemit.com/@nanzo-scoop)|330.055|2 655 433.594|\n|62|[@laonie](https://steemit.com/@laonie)|116.404|2 619 872.564|\n|63|[@steemcleaners](https://steemit.com/@steemcleaners)|659.132|2 596 140.333|\n|64|[@charleshosk](https://steemit.com/@charleshosk)|585.319|2 399 760.878|\n|65|[@hisnameisolllie](https://steemit.com/@hisnameisolllie)|581.385|2 338 969.539|\n|66|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|497.669|2 274 840.954|\n|67|[@sweetsssj](https://steemit.com/@sweetsssj)|523.979|2 170 158.700|\n|68|[@b0y2k](https://steemit.com/@b0y2k)|497.114|2 132 474.149|\n|69|[@eneismijmich](https://steemit.com/@eneismijmich)|504.116|2 061 771.205|\n|70|[@livingthedream](https://steemit.com/@livingthedream)|510.792|2 027 254.578|\n|71|[@fairytalelife](https://steemit.com/@fairytalelife)|481.143|2 023 586.799|\n|72|[@sterlinluxan](https://steemit.com/@sterlinluxan)|500.904|2 022 584.130|\n|73|[@cass](https://steemit.com/@cass)|391.041|1 993 157.960|\n|74|[@corbettreport](https://steemit.com/@corbettreport)|457.908|1 979 421.716|\n|75|[@barrycooper](https://steemit.com/@barrycooper)|433.548|1 887 586.618|\n|76|[@jamesc](https://steemit.com/@jamesc)|0.153|1 871 857.951|\n|77|[@storyseeker](https://steemit.com/@storyseeker)|430.221|1 849 858.609|\n|78|[@jacor](https://steemit.com/@jacor)|428.758|1 774 043.305|\n|79|[@bravenewcoin](https://steemit.com/@bravenewcoin)|427.758|1 764 533.073|\n|80|[@kental](https://steemit.com/@kental)|435.486|1 746 992.520|\n|81|[@au1nethyb1](https://steemit.com/@au1nethyb1)|0.000|1 740 612.769|\n|82|[@mibenkito](https://steemit.com/@mibenkito)|399.692|1 722 718.612|\n|83|[@pfunk](https://steemit.com/@pfunk)|304.288|1 696 845.158|\n|84|[@alexbeyman](https://steemit.com/@alexbeyman)|409.397|1 679 902.161|\n|85|[@smailer](https://steemit.com/@smailer)|400.558|1 679 104.012|\n|86|[@badassmother](https://steemit.com/@badassmother)|0.000|1 679 019.431|\n|87|[@donkeypong](https://steemit.com/@donkeypong)|306.922|1 672 530.744|\n|88|[@razvanelulmarin](https://steemit.com/@razvanelulmarin)|373.350|1 644 174.858|\n|89|[@summon](https://steemit.com/@summon)|72.228|1 622 251.187|\n|90|[@gangsta](https://steemit.com/@gangsta)|405.820|1 620 709.343|\n|91|[@silver](https://steemit.com/@silver)|0.000|1 609 716.257|\n|92|[@dannystravels](https://steemit.com/@dannystravels)|404.374|1 568 065.581|\n|93|[@jamtaylor](https://steemit.com/@jamtaylor)|358.256|1 555 939.370|\n|94|[@mrs.steemit](https://steemit.com/@mrs.steemit)|368.118|1 530 900.679|\n|95|[@fyrstikken](https://steemit.com/@fyrstikken)|325.469|1 521 433.247|\n|96|[@senseiteekay](https://steemit.com/@senseiteekay)|357.948|1 517 489.098|\n|97|[@healthyrecipes](https://steemit.com/@healthyrecipes)|350.465|1 480 991.813|\n|98|[@satoshifund](https://steemit.com/@satoshifund)|0.000|1 472 512.796|\n|99|[@kushed](https://steemit.com/@kushed)|0.160|1 449 619.943|\n|100|[@aggroed](https://steemit.com/@aggroed)|348.227|1 428 790.019|\n\n\n- - -\n\n### Top 100 paying posts (author reward):\n|Rank | Account | SBD | VESTS | POST|\n| :-----| ------------- |-------------:| -----:|:-----|\n|1|[@roelandp](https://steemit.com/@roelandp)|5417.783|24936028.708622|[save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-n](https://steemit.com/all/@roelandp/save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl)|\n|2|[@someguy123](https://steemit.com/@someguy123)|1314.389|5601399.952738|[understeem-steemit-without-censorship-nsfw-filter-removed-vi](https://steemit.com/all/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor)|\n|3|[@kevinwong](https://steemit.com/@kevinwong)|971.542|4190657.642935|[logo-contest-for-project-curie-calling-all-designers](https://steemit.com/all/@kevinwong/logo-contest-for-project-curie-calling-all-designers)|\n|4|[@steve-walschot](https://steemit.com/@steve-walschot)|937.502|4105645.799136|[investigating-the-wale-scam-assumptions-above-knowledge](https://steemit.com/all/@steve-walschot/investigating-the-wale-scam-assumptions-above-knowledge)|\n|5|[@good-karma](https://steemit.com/@good-karma)|909.717|4210888.383925|[esteem-ios-1-2-2-released-advanced-login-signup-patch-post-e](https://steemit.com/all/@good-karma/esteem-ios-1-2-2-released-advanced-login-signup-patch-post-edits-photo-inclusion-on-posts-new-navigation-filter)|\n|6|[@cryptogee](https://steemit.com/@cryptogee)|802.871|3114844.305012|[a-quick-fix-for-a-broken-capitalist-society](https://steemit.com/all/@cryptogee/a-quick-fix-for-a-broken-capitalist-society)|\n|7|[@infovore](https://steemit.com/@infovore)|780.138|3145392.168091|[steemmag-steemit-s-weekend-digest-9-of-community-curation-an](https://steemit.com/all/@infovore/steemmag-steemit-s-weekend-digest-9-of-community-curation-and-reputation-chats-with-a-whale-steemit-chat-lead-moderators-a-day)|\n|8|[@steemdrive](https://steemit.com/@steemdrive)|709.735|3021388.477665|[steemdrive-second-proof-of-successful-crowdfunded-billboard-](https://steemit.com/all/@steemdrive/steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa)|\n|9|[@ericvancewalton](https://steemit.com/@ericvancewalton)|694.130|2692969.805438|[alarm-clock-dawn-an-original-novel-episode-22](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-22)|\n|10|[@sascha](https://steemit.com/@sascha)|672.279|2606133.315123|[our-life-on-planet-earth-part-8-the-meaning-of-life](https://steemit.com/all/@sascha/our-life-on-planet-earth-part-8-the-meaning-of-life)|\n|11|[@jesta](https://steemit.com/@jesta)|672.102|3084315.315130|[steem-bounty-system-milestone-1-proposal](https://steemit.com/all/@jesta/steem-bounty-system-milestone-1-proposal)|\n|12|[@steempower](https://steemit.com/@steempower)|670.009|2855734.328170|[bitshares-state-of-the-network-11th-sept-2016](https://steemit.com/all/@steempower/bitshares-state-of-the-network-11th-sept-2016)|\n|13|[@complexring](https://steemit.com/@complexring)|635.717|2707974.667320|[bypassing-the-great-firewall-of-china](https://steemit.com/all/@complexring/bypassing-the-great-firewall-of-china)|\n|14|[@katecloud](https://steemit.com/@katecloud)|628.891|2463723.749341|[a-photo-the-progression-of-a-painting-and-a-poem-by-kate-clo](https://steemit.com/all/@katecloud/a-photo-the-progression-of-a-painting-and-a-poem-by-kate-cloud)|\n|15|[@infovore](https://steemit.com/@infovore)|623.373|2415144.530628|[the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-th](https://steemit.com/all/@infovore/the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-the-internables-trend)|\n|16|[@ericvancewalton](https://steemit.com/@ericvancewalton)|605.001|2343398.347985|[the-cliff-an-original-poem](https://steemit.com/all/@ericvancewalton/the-cliff-an-original-poem)|\n|17|[@ericvancewalton](https://steemit.com/@ericvancewalton)|599.216|2408866.584548|[rush-hour-train-an-original-poem](https://steemit.com/all/@ericvancewalton/rush-hour-train-an-original-poem)|\n|18|[@dantheman](https://steemit.com/@dantheman)|588.696|2270663.485250|[censorship-is-impossible-in-a-free-society](https://steemit.com/all/@dantheman/censorship-is-impossible-in-a-free-society)|\n|19|[@ericvancewalton](https://steemit.com/@ericvancewalton)|573.497|2217973.305761|[too-simple-to-see-an-original-poem](https://steemit.com/all/@ericvancewalton/too-simple-to-see-an-original-poem)|\n|20|[@lobotony](https://steemit.com/@lobotony)|559.734|2169953.235319|[a-trip-to-the-north-part-1-of-2-iceland](https://steemit.com/all/@lobotony/a-trip-to-the-north-part-1-of-2-iceland)|\n|21|[@steemship](https://steemit.com/@steemship)|556.189|2365420.937467|[open-letter-to-ned-and-dan-you-badly-need-a-communications-c](https://steemit.com/all/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or)|\n|22|[@kevinwong](https://steemit.com/@kevinwong)|550.834|2135268.781675|[dayjob-ended-hello-steemit](https://steemit.com/all/@kevinwong/dayjob-ended-hello-steemit)|\n|23|[@ericvancewalton](https://steemit.com/@ericvancewalton)|539.244|2295220.650034|[alarm-clock-dawn-an-original-novel-episode-25](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-25)|\n|24|[@ericvancewalton](https://steemit.com/@ericvancewalton)|535.500|2075831.717451|[4ziyjc-alarm-clock-dawn-an-original-novel-episode-22](https://steemit.com/all/@ericvancewalton/4ziyjc-alarm-clock-dawn-an-original-novel-episode-22)|\n|25|[@lobotony](https://steemit.com/@lobotony)|524.725|2076637.525890|[a-trip-to-the-north-part-2-of-2-greenland](https://steemit.com/all/@lobotony/a-trip-to-the-north-part-2-of-2-greenland)|\n|26|[@dollarvigilante](https://steemit.com/@dollarvigilante)|522.074|2024561.204875|[gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-i](https://steemit.com/all/@dollarvigilante/gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-into-gold)|\n|27|[@calaber24p](https://steemit.com/@calaber24p)|516.871|2073762.161780|[the-evolution-of-virtual-economies-and-their-future-global-i](https://steemit.com/all/@calaber24p/the-evolution-of-virtual-economies-and-their-future-global-impact-on-the-world)|\n|28|[@jamielefay](https://steemit.com/@jamielefay)|515.285|1997372.750614|[ahe-ey-submission-an-original-novel-part-16](https://steemit.com/all/@jamielefay/ahe-ey-submission-an-original-novel-part-16)|\n|29|[@lifeisawesome](https://steemit.com/@lifeisawesome)|515.184|2076732.392526|[you-are-what-your-friends-are](https://steemit.com/all/@lifeisawesome/you-are-what-your-friends-are)|\n|30|[@ericvancewalton](https://steemit.com/@ericvancewalton)|512.929|1979697.284935|[alarm-clock-dawn-an-original-novel-episode-21](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-21)|\n|31|[@charlieshrem](https://steemit.com/@charlieshrem)|508.009|2110171.661194|[how-to-live-completely-off-steem-using-a-virtual-and-physica](https://steemit.com/all/@charlieshrem/how-to-live-completely-off-steem-using-a-virtual-and-physical-debit-card-topped-up-with-steem)|\n|32|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|497.660|2255006.094857|[the-lifecycle-of-a-song](https://steemit.com/all/@thisisbenbrick/the-lifecycle-of-a-song)|\n|33|[@timsaid](https://steemit.com/@timsaid)|493.545|1978954.745437|[life-explorers-the-human-senses-part-ii-hearing](https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-ii-hearing)|\n|34|[@gavvet](https://steemit.com/@gavvet)|483.546|2060779.396304|[crab-mentality-what-you-need-to-know-about-this-kind-of-degr](https://steemit.com/all/@gavvet/crab-mentality-what-you-need-to-know-about-this-kind-of-degrading-mentality-english-filipino)|\n|35|[@fairytalelife](https://steemit.com/@fairytalelife)|479.523|1927465.053480|[how-to-draw-a-braid](https://steemit.com/all/@fairytalelife/how-to-draw-a-braid)|\n|36|[@sascha](https://steemit.com/@sascha)|479.357|2090356.322663|[salt-as-an-energy-source-energetic-purification-with-salt](https://steemit.com/all/@sascha/salt-as-an-energy-source-energetic-purification-with-salt)|\n|37|[@ericvancewalton](https://steemit.com/@ericvancewalton)|459.391|1953748.642541|[walk-your-worries-an-original-poem](https://steemit.com/all/@ericvancewalton/walk-your-worries-an-original-poem)|\n|38|[@calaber24p](https://steemit.com/@calaber24p)|458.060|1948333.287074|[different-ways-to-think-about-your-time-and-money-to-lead-to](https://steemit.com/all/@calaber24p/different-ways-to-think-about-your-time-and-money-to-lead-to-better-financial-security)|\n|39|[@dollarvigilante](https://steemit.com/@dollarvigilante)|457.747|2096614.988536|[boom-end-game-nears-as-central-banks-buying-up-gold-mining-c](https://steemit.com/all/@dollarvigilante/boom-end-game-nears-as-central-banks-buying-up-gold-mining-companies)|\n|40|[@timsaid](https://steemit.com/@timsaid)|451.707|2069238.286170|[life-explorers-the-human-senses-part-iii-touch](https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-iii-touch)|\n|41|[@sterlinluxan](https://steemit.com/@sterlinluxan)|445.525|1790952.274641|[anarchapulco-is-one-of-the-most-world-changing-conferences-e](https://steemit.com/all/@sterlinluxan/anarchapulco-is-one-of-the-most-world-changing-conferences-ever)|\n|42|[@calaber24p](https://steemit.com/@calaber24p)|445.091|1730853.060104|[revamping-curation-is-the-way-to-increase-steem-power-demand](https://steemit.com/all/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand)|\n|43|[@jamielefay](https://steemit.com/@jamielefay)|444.129|1722107.917895|[ahe-ey-water-angels-an-original-novel-part-7-audiobook](https://steemit.com/all/@jamielefay/ahe-ey-water-angels-an-original-novel-part-7-audiobook)|\n|44|[@xeroc](https://steemit.com/@xeroc)|442.100|1715452.124498|[piston-how-to-use-it-for-multisignature-accounts](https://steemit.com/all/@xeroc/piston-how-to-use-it-for-multisignature-accounts)|\n|45|[@dollarvigilante](https://steemit.com/@dollarvigilante)|439.671|1772010.226787|[jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-sin](https://steemit.com/all/@dollarvigilante/jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-since-brexit)|\n|46|[@jamielefay](https://steemit.com/@jamielefay)|436.368|1860075.567439|[ahe-ey-allegiance-an-original-novel-part-18](https://steemit.com/all/@jamielefay/ahe-ey-allegiance-an-original-novel-part-18)|\n|47|[@jesta](https://steemit.com/@jesta)|427.963|1692835.407320|[steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-](https://steemit.com/all/@jesta/steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-0-14-0)|\n|48|[@dollarvigilante](https://steemit.com/@dollarvigilante)|426.107|1815667.350107|[famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-a](https://steemit.com/all/@dollarvigilante/famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-anarchy-and-cryptocurrencies)|\n|49|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|413.120|1600748.444404|[pura-vida-my-experience-working-on-a-permaculture-farm-in-co](https://steemit.com/all/@anwenbaumeister/pura-vida-my-experience-working-on-a-permaculture-farm-in-costa-rica-part-two)|\n|50|[@dannystravels](https://steemit.com/@dannystravels)|404.374|1567809.296314|[face-to-face-with-our-closest-living-relative-part-2-2](https://steemit.com/all/@dannystravels/face-to-face-with-our-closest-living-relative-part-2-2)|\n|51|[@sirwinchester](https://steemit.com/@sirwinchester)|403.621|1723295.787435|[bitcoin-exchange-berlin-meetup-with-ned-on-skype](https://steemit.com/all/@sirwinchester/bitcoin-exchange-berlin-meetup-with-ned-on-skype)|\n|52|[@mibenkito](https://steemit.com/@mibenkito)|399.692|1701129.893154|[a-steemian-s-world-food-journal-part-5-sydney](https://steemit.com/all/@mibenkito/a-steemian-s-world-food-journal-part-5-sydney)|\n|53|[@ericvancewalton](https://steemit.com/@ericvancewalton)|399.641|1719344.321486|[broken-dreams-an-original-poem](https://steemit.com/all/@ericvancewalton/broken-dreams-an-original-poem)|\n|54|[@charleshosk](https://steemit.com/@charleshosk)|390.939|1571334.118454|[ethereum-classic-an-update](https://steemit.com/all/@charleshosk/ethereum-classic-an-update)|\n|55|[@calaber24p](https://steemit.com/@calaber24p)|390.494|1824187.485033|[countries-that-incentivize-and-deregulate-crypto-startups-wi](https://steemit.com/all/@calaber24p/countries-that-incentivize-and-deregulate-crypto-startups-will-reap-the-rewards-if-the-technology-goes-mainstream)|\n|56|[@charlieshrem](https://steemit.com/@charlieshrem)|382.869|1477441.136465|[an-intimate-evening-with-charlie-shrem-moving-forward-south-](https://steemit.com/all/@charlieshrem/an-intimate-evening-with-charlie-shrem-moving-forward-south-florida-usa)|\n|57|[@officialfuzzy](https://steemit.com/@officialfuzzy)|378.829|1519255.893290|[guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-fri](https://steemit.com/all/@officialfuzzy/guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-friday-s-hangout-refer-projects-for-rewards)|\n|58|[@knozaki2015](https://steemit.com/@knozaki2015)|370.606|1493308.546306|[steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-german](https://steemit.com/all/@knozaki2015/steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-germany-9-9-2016-with-pictures)|\n|59|[@dantheman](https://steemit.com/@dantheman)|369.466|1485061.731912|[justification-for-104-week-power-down](https://steemit.com/all/@dantheman/justification-for-104-week-power-down)|\n|60|[@cass](https://steemit.com/@cass)|369.092|1533209.359825|[sneak-preview-chainsquad-corporate-branding-logo-design](https://steemit.com/all/@cass/sneak-preview-chainsquad-corporate-branding-logo-design)|\n|61|[@aizensou](https://steemit.com/@aizensou)|358.318|1418712.320393|[top-5-places-in-barcelona-featuring-maryfromsochi-as-author](https://steemit.com/all/@aizensou/top-5-places-in-barcelona-featuring-maryfromsochi-as-author)|\n|62|[@sirwinchester](https://steemit.com/@sirwinchester)|358.314|1477359.694757|[steemit-meetup-in-berlin-germany](https://steemit.com/all/@sirwinchester/steemit-meetup-in-berlin-germany)|\n|63|[@clayop](https://steemit.com/@clayop)|355.145|1512981.501683|[the-typology-of-curation-what-kinds-of-curators-we-have-now](https://steemit.com/all/@clayop/the-typology-of-curation-what-kinds-of-curators-we-have-now)|\n|64|[@kencode](https://steemit.com/@kencode)|353.240|1453050.277044|[ann-smartcoins-wallet-v1-0-6-released](https://steemit.com/all/@kencode/ann-smartcoins-wallet-v1-0-6-released)|\n|65|[@gavvet](https://steemit.com/@gavvet)|353.159|1405040.374698|[a-free-lunch-with-edward-snowden](https://steemit.com/all/@gavvet/a-free-lunch-with-edward-snowden)|\n|66|[@clayop](https://steemit.com/@clayop)|343.604|1365548.612065|[how-much-do-whales-influences-on-rewards-introducing-new-sta](https://steemit.com/all/@clayop/how-much-do-whales-influences-on-rewards-introducing-new-statistics)|\n|67|[@curie](https://steemit.com/@curie)|343.592|1465300.000707|[project-curie-s-daily-curation-list-10-sept-11-sept-2016](https://steemit.com/all/@curie/project-curie-s-daily-curation-list-10-sept-11-sept-2016)|\n|68|[@calaber24p](https://steemit.com/@calaber24p)|342.141|1457567.812539|[immigration-into-america-has-made-it-the-world-power-it-is-t](https://steemit.com/all/@calaber24p/immigration-into-america-has-made-it-the-world-power-it-is-today)|\n|69|[@b0y2k](https://steemit.com/@b0y2k)|340.586|1369051.035651|[steemit-sponsoring-the-compass-cup-team-event](https://steemit.com/all/@b0y2k/steemit-sponsoring-the-compass-cup-team-event)|\n|70|[@cryptogee](https://steemit.com/@cryptogee)|339.967|1496475.706859|[spotlight-issue-8-philosophy-music-and-science](https://steemit.com/all/@cryptogee/spotlight-issue-8-philosophy-music-and-science)|\n|71|[@kencode](https://steemit.com/@kencode)|337.474|1308694.645920|[blockpay-moving-up-the-charts](https://steemit.com/all/@kencode/blockpay-moving-up-the-charts)|\n|72|[@ericvancewalton](https://steemit.com/@ericvancewalton)|336.781|1347763.370147|[alarm-clock-dawn-an-original-novel-episode-24](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-24)|\n|73|[@gavvet](https://steemit.com/@gavvet)|332.977|1291120.851189|[hi-to-reinvent-yourself-featuring-sauravrungta-as-author](https://steemit.com/all/@gavvet/hi-to-reinvent-yourself-featuring-sauravrungta-as-author)|\n|74|[@ozchartart](https://steemit.com/@ozchartart)|332.418|1282511.839603|[usdeth-btc-poloniex-technical-analysis-sept-07-2016](https://steemit.com/all/@ozchartart/usdeth-btc-poloniex-technical-analysis-sept-07-2016)|\n|75|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|332.381|1339735.329416|[celtic-heart-knot-pictorial](https://steemit.com/all/@bridgetbunchy/celtic-heart-knot-pictorial)|\n|76|[@roelandp](https://steemit.com/@roelandp)|331.053|1286840.936796|[my-proper-introduceyourself-hello-i-m-roelandp](https://steemit.com/all/@roelandp/my-proper-introduceyourself-hello-i-m-roelandp)|\n|77|[@ericvancewalton](https://steemit.com/@ericvancewalton)|330.742|1295789.736302|[know-me-an-original-poem](https://steemit.com/all/@ericvancewalton/know-me-an-original-poem)|\n|78|[@cryptovpn](https://steemit.com/@cryptovpn)|329.564|1276654.885609|[steemit-charity-run-no-1-doctors-without-borders](https://steemit.com/all/@cryptovpn/steemit-charity-run-no-1-doctors-without-borders)|\n|79|[@steemcleaners](https://steemit.com/@steemcleaners)|329.504|1292242.895864|[steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-](https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-1)|\n|80|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|320.241|1241317.843204|[my-cross-country-road-trip-greater-than-sf-greater-than-vega](https://steemit.com/all/@anwenbaumeister/my-cross-country-road-trip-greater-than-sf-greater-than-vegas-greater-than-boulder-greater-than-houston-greater-than-new-orleans)|\n|81|[@charlieshrem](https://steemit.com/@charlieshrem)|313.754|1475625.347428|[a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-](https://steemit.com/all/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-life-and-the-shrempresso)|\n|82|[@enric](https://steemit.com/@enric)|311.617|1208114.056405|[im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurre](https://steemit.com/all/@enric/im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurrency-my-revolutionary-struggle-now-im-here)|\n|83|[@dantheman](https://steemit.com/@dantheman)|309.920|1201663.748404|[scalability-of-individual-responsibility-in-anarchy](https://steemit.com/all/@dantheman/scalability-of-individual-responsibility-in-anarchy)|\n|84|[@officialfuzzy](https://steemit.com/@officialfuzzy)|309.814|1312470.274185|[e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-test](https://steemit.com/all/@officialfuzzy/e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-testnet-jewels-ico-success-gridcoin-and-making-it-rain)|\n|85|[@gavvet](https://steemit.com/@gavvet)|308.127|1212749.753443|[a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-](https://steemit.com/all/@gavvet/a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-author)|\n|86|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|303.555|1201909.200453|[the-love-of-a-maker](https://steemit.com/all/@bridgetbunchy/the-love-of-a-maker)|\n|87|[@steemcleaners](https://steemit.com/@steemcleaners)|302.924|1192233.387004|[steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-](https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-2)|\n|88|[@dantheman](https://steemit.com/@dantheman)|301.672|1169749.675855|[nonviolent-censorship-is-how-nonviolent-societies-create-non](https://steemit.com/all/@dantheman/nonviolent-censorship-is-how-nonviolent-societies-create-nonviolent-government)|\n|89|[@infovore](https://steemit.com/@infovore)|301.261|1214999.166441|[a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-](https://steemit.com/all/@infovore/a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-moment-on-steemit-this-week-on-steemit-steemmag-steemit-s-weekend)|\n|90|[@firepower](https://steemit.com/@firepower)|300.280|1368056.554963|[when-i-lost-sight-while-steeming](https://steemit.com/all/@firepower/when-i-lost-sight-while-steeming)|\n|91|[@ozchartart](https://steemit.com/@ozchartart)|294.271|1183433.553199|[usddoge-btc-poloniex-technical-analysis-sept-10-2016](https://steemit.com/all/@ozchartart/usddoge-btc-poloniex-technical-analysis-sept-10-2016)|\n|92|[@donkeypong](https://steemit.com/@donkeypong)|293.559|1138798.465907|[a-tribute-to-snail-mail](https://steemit.com/all/@donkeypong/a-tribute-to-snail-mail)|\n|93|[@charlieshrem](https://steemit.com/@charlieshrem)|292.995|1135970.118327|[progressive-relaxation-by-charlie-shrem-mindfulness-meditati](https://steemit.com/all/@charlieshrem/progressive-relaxation-by-charlie-shrem-mindfulness-meditation-in-prison-and-everyday-life)|\n|94|[@curie](https://steemit.com/@curie)|289.920|1234271.286622|[project-curie-s-daily-curation-list-9-sept-10-sept-2016](https://steemit.com/all/@curie/project-curie-s-daily-curation-list-9-sept-10-sept-2016)|\n|95|[@furion](https://steemit.com/@furion)|289.919|1234751.363741|[a-quick-look-at-null-and-the-profitability-of-promoted-posts](https://steemit.com/all/@furion/a-quick-look-at-null-and-the-profitability-of-promoted-posts)|\n|96|[@sirwinchester](https://steemit.com/@sirwinchester)|288.926|1119010.839878|[mr-gourmet-exploring-a-new-location](https://steemit.com/all/@sirwinchester/mr-gourmet-exploring-a-new-location)|\n|97|[@larkenrose](https://steemit.com/@larkenrose)|281.627|1138819.558651|[supply-and-demand-steemit-style](https://steemit.com/all/@larkenrose/supply-and-demand-steemit-style)|\n|98|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|278.638|1162968.108837|[a-peek-into-pre-columbian-worldviews-found-in-agricultural-p](https://steemit.com/all/@anwenbaumeister/a-peek-into-pre-columbian-worldviews-found-in-agricultural-practices-duality-complementarity-cyclicity-and-reciprocity)|\n|99|[@corbettreport](https://steemit.com/@corbettreport)|277.435|1238430.062064|[only-9-11-truth-can-smash-the-9-11-lies](https://steemit.com/all/@corbettreport/only-9-11-truth-can-smash-the-9-11-lies)|\n|100|[@sirwinchester](https://steemit.com/@sirwinchester)|277.087|1113453.030386|[find-your-why-self-discovery-and-finding-your-purpose-in-lif](https://steemit.com/all/@sirwinchester/find-your-why-self-discovery-and-finding-your-purpose-in-life)|\n\n\n- - -\nPrevious report: [September week 1](https://steemit.com/stats/@masteryoda/weekly-payouts-leaderboards-september-week-1)\n- - -\n\n###### \u00a9 @masteryoda", + "category": "stats", + "children": 25, + "created": "2016-09-15T10:10:06", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.imgsafe.org/81a1095cd2.png", + "http://imgh.us/canvas2_1.png" + ], + "links": [ + "https://steemit.com/@ericvancewalton", + "https://steemit.com/@roelandp", + "https://steemit.com/@gavvet", + "https://steemit.com/@knozaki2015", + "https://steemit.com/@sirwinchester", + "https://steemit.com/@terrycraft", + "https://steemit.com/@calaber24p", + "https://steemit.com/@dollarvigilante", + "https://steemit.com/@someguy123", + "https://steemit.com/@ozchartart", + "https://steemit.com/@infovore", + "https://steemit.com/@lifeisawesome", + "https://steemit.com/@dantheman", + "https://steemit.com/@jamielefay", + "https://steemit.com/@kevinwong", + "https://steemit.com/@charlieshrem", + "https://steemit.com/@jesta", + "https://steemit.com/@masteryoda", + "https://steemit.com/@bridgetbunchy", + "https://steemit.com/@katecloud", + "https://steemit.com/@timsaid", + "https://steemit.com/@sascha", + "https://steemit.com/@honeyscribe", + "https://steemit.com/@cryptogee", + "https://steemit.com/@krishtopa", + "https://steemit.com/@anwenbaumeister", + "https://steemit.com/@good-karma", + "https://steemit.com/@lobotony", + "https://steemit.com/@markrmorrisjr", + "https://steemit.com/@curie", + "https://steemit.com/@opheliafu", + "https://steemit.com/@steve-walschot", + "https://steemit.com/@marius19", + "https://steemit.com/@serejandmyself", + "https://steemit.com/@steempower", + "https://steemit.com/@aizensou", + "https://steemit.com/@furion", + "https://steemit.com/@officialfuzzy", + "https://steemit.com/@kencode", + "https://steemit.com/@clayop", + "https://steemit.com/@larkenrose", + "https://steemit.com/@steemdrive", + "https://steemit.com/@jpiper20", + "https://steemit.com/@xeroc", + "https://steemit.com/@steemship", + "https://steemit.com/@steemcleaners", + "https://steemit.com/@complexring", + "https://steemit.com/@charleshosk", + "https://steemit.com/@hisnameisolllie", + "https://steemit.com/@sweetsssj", + "https://steemit.com/@livingthedream", + "https://steemit.com/@eneismijmich", + "https://steemit.com/@sterlinluxan", + "https://steemit.com/@thisisbenbrick", + "https://steemit.com/@b0y2k", + "https://steemit.com/@fairytalelife", + "https://steemit.com/@corbettreport", + "https://steemit.com/@kental", + "https://steemit.com/@barrycooper", + "https://steemit.com/@storyseeker", + "https://steemit.com/@jacor", + "https://steemit.com/@bravenewcoin", + "https://steemit.com/@alexbeyman", + "https://steemit.com/@gangsta", + "https://steemit.com/@dannystravels", + "https://steemit.com/@smailer", + "https://steemit.com/@mibenkito", + "https://steemit.com/@cass", + "https://steemit.com/@razvanelulmarin", + "https://steemit.com/@mrs.steemit", + "https://steemit.com/@jamtaylor", + "https://steemit.com/@senseiteekay", + "https://steemit.com/@healthyrecipes", + "https://steemit.com/@aggroed", + "https://steemit.com/@celebr1ty", + "https://steemit.com/@dana-edwards", + "https://steemit.com/@cryptovpn", + "https://steemit.com/@nanzo-scoop", + "https://steemit.com/@fyrstikken", + "https://steemit.com/@richman", + "https://steemit.com/@enric", + "https://steemit.com/@firepower", + "https://steemit.com/@donkeypong", + "https://steemit.com/@churdtzu", + "https://steemit.com/@pfunk", + "https://steemit.com/@canadian-coconut", + "https://steemit.com/@alexgr", + "https://steemit.com/@quinneaker", + "https://steemit.com/@nekromarinist", + "https://steemit.com/@liberosist", + "https://steemit.com/@sigmajin", + "https://steemit.com/@aaronkoenig", + "https://steemit.com/@tracemayer", + "https://steemit.com/@hilarski", + "https://steemit.com/@shammyshiggs", + "https://steemit.com/@halo", + "https://steemit.com/@rok-sivante", + "https://steemit.com/@vermillion666", + "https://steemit.com/@kaylinart", + "https://steemit.com/@kobur", + "https://steemit.com/@blocktrades", + "https://steemit.com/@smooth", + "https://steemit.com/@berniesanders", + "https://steemit.com/@wang", + "https://steemit.com/@nextgencrypto", + "https://steemit.com/@steemed", + "https://steemit.com/@riverhead", + "https://steemit.com/@pharesim", + "https://steemit.com/@steemit200", + "https://steemit.com/@xeldal", + "https://steemit.com/@ned", + "https://steemit.com/@joseph", + "https://steemit.com/@recursive", + "https://steemit.com/@hr1", + "https://steemit.com/@laonie", + "https://steemit.com/@jamesc", + "https://steemit.com/@au1nethyb1", + "https://steemit.com/@badassmother", + "https://steemit.com/@summon", + "https://steemit.com/@silver", + "https://steemit.com/@satoshifund", + "https://steemit.com/@kushed", + "https://steemit.com/all/@roelandp/save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl", + "https://steemit.com/all/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor", + "https://steemit.com/all/@kevinwong/logo-contest-for-project-curie-calling-all-designers", + "https://steemit.com/all/@steve-walschot/investigating-the-wale-scam-assumptions-above-knowledge", + "https://steemit.com/all/@good-karma/esteem-ios-1-2-2-released-advanced-login-signup-patch-post-edits-photo-inclusion-on-posts-new-navigation-filter", + "https://steemit.com/all/@cryptogee/a-quick-fix-for-a-broken-capitalist-society", + "https://steemit.com/all/@infovore/steemmag-steemit-s-weekend-digest-9-of-community-curation-and-reputation-chats-with-a-whale-steemit-chat-lead-moderators-a-day", + "https://steemit.com/all/@steemdrive/steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-22", + "https://steemit.com/all/@sascha/our-life-on-planet-earth-part-8-the-meaning-of-life", + "https://steemit.com/all/@jesta/steem-bounty-system-milestone-1-proposal", + "https://steemit.com/all/@steempower/bitshares-state-of-the-network-11th-sept-2016", + "https://steemit.com/all/@complexring/bypassing-the-great-firewall-of-china", + "https://steemit.com/all/@katecloud/a-photo-the-progression-of-a-painting-and-a-poem-by-kate-cloud", + "https://steemit.com/all/@infovore/the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-the-internables-trend", + "https://steemit.com/all/@ericvancewalton/the-cliff-an-original-poem", + "https://steemit.com/all/@ericvancewalton/rush-hour-train-an-original-poem", + "https://steemit.com/all/@dantheman/censorship-is-impossible-in-a-free-society", + "https://steemit.com/all/@ericvancewalton/too-simple-to-see-an-original-poem", + "https://steemit.com/all/@lobotony/a-trip-to-the-north-part-1-of-2-iceland", + "https://steemit.com/all/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or", + "https://steemit.com/all/@kevinwong/dayjob-ended-hello-steemit", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-25", + "https://steemit.com/all/@ericvancewalton/4ziyjc-alarm-clock-dawn-an-original-novel-episode-22", + "https://steemit.com/all/@lobotony/a-trip-to-the-north-part-2-of-2-greenland", + "https://steemit.com/all/@dollarvigilante/gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-into-gold", + "https://steemit.com/all/@calaber24p/the-evolution-of-virtual-economies-and-their-future-global-impact-on-the-world", + "https://steemit.com/all/@jamielefay/ahe-ey-submission-an-original-novel-part-16", + "https://steemit.com/all/@lifeisawesome/you-are-what-your-friends-are", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-21", + "https://steemit.com/all/@charlieshrem/how-to-live-completely-off-steem-using-a-virtual-and-physical-debit-card-topped-up-with-steem", + "https://steemit.com/all/@thisisbenbrick/the-lifecycle-of-a-song", + "https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-ii-hearing", + "https://steemit.com/all/@gavvet/crab-mentality-what-you-need-to-know-about-this-kind-of-degrading-mentality-english-filipino", + "https://steemit.com/all/@fairytalelife/how-to-draw-a-braid", + "https://steemit.com/all/@sascha/salt-as-an-energy-source-energetic-purification-with-salt", + "https://steemit.com/all/@ericvancewalton/walk-your-worries-an-original-poem", + "https://steemit.com/all/@calaber24p/different-ways-to-think-about-your-time-and-money-to-lead-to-better-financial-security", + "https://steemit.com/all/@dollarvigilante/boom-end-game-nears-as-central-banks-buying-up-gold-mining-companies", + "https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-iii-touch", + "https://steemit.com/all/@sterlinluxan/anarchapulco-is-one-of-the-most-world-changing-conferences-ever", + "https://steemit.com/all/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand", + "https://steemit.com/all/@jamielefay/ahe-ey-water-angels-an-original-novel-part-7-audiobook", + "https://steemit.com/all/@xeroc/piston-how-to-use-it-for-multisignature-accounts", + "https://steemit.com/all/@dollarvigilante/jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-since-brexit", + "https://steemit.com/all/@jamielefay/ahe-ey-allegiance-an-original-novel-part-18", + "https://steemit.com/all/@jesta/steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-0-14-0", + "https://steemit.com/all/@dollarvigilante/famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-anarchy-and-cryptocurrencies", + "https://steemit.com/all/@anwenbaumeister/pura-vida-my-experience-working-on-a-permaculture-farm-in-costa-rica-part-two", + "https://steemit.com/all/@dannystravels/face-to-face-with-our-closest-living-relative-part-2-2", + "https://steemit.com/all/@sirwinchester/bitcoin-exchange-berlin-meetup-with-ned-on-skype", + "https://steemit.com/all/@mibenkito/a-steemian-s-world-food-journal-part-5-sydney", + "https://steemit.com/all/@ericvancewalton/broken-dreams-an-original-poem", + "https://steemit.com/all/@charleshosk/ethereum-classic-an-update", + "https://steemit.com/all/@calaber24p/countries-that-incentivize-and-deregulate-crypto-startups-will-reap-the-rewards-if-the-technology-goes-mainstream", + "https://steemit.com/all/@charlieshrem/an-intimate-evening-with-charlie-shrem-moving-forward-south-florida-usa", + "https://steemit.com/all/@officialfuzzy/guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-friday-s-hangout-refer-projects-for-rewards", + "https://steemit.com/all/@knozaki2015/steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-germany-9-9-2016-with-pictures", + "https://steemit.com/all/@dantheman/justification-for-104-week-power-down", + "https://steemit.com/all/@cass/sneak-preview-chainsquad-corporate-branding-logo-design", + "https://steemit.com/all/@aizensou/top-5-places-in-barcelona-featuring-maryfromsochi-as-author", + "https://steemit.com/all/@sirwinchester/steemit-meetup-in-berlin-germany", + "https://steemit.com/all/@clayop/the-typology-of-curation-what-kinds-of-curators-we-have-now", + "https://steemit.com/all/@kencode/ann-smartcoins-wallet-v1-0-6-released", + "https://steemit.com/all/@gavvet/a-free-lunch-with-edward-snowden", + "https://steemit.com/all/@clayop/how-much-do-whales-influences-on-rewards-introducing-new-statistics", + "https://steemit.com/all/@curie/project-curie-s-daily-curation-list-10-sept-11-sept-2016", + "https://steemit.com/all/@calaber24p/immigration-into-america-has-made-it-the-world-power-it-is-today", + "https://steemit.com/all/@b0y2k/steemit-sponsoring-the-compass-cup-team-event", + "https://steemit.com/all/@cryptogee/spotlight-issue-8-philosophy-music-and-science", + "https://steemit.com/all/@kencode/blockpay-moving-up-the-charts", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-24", + "https://steemit.com/all/@gavvet/hi-to-reinvent-yourself-featuring-sauravrungta-as-author", + "https://steemit.com/all/@ozchartart/usdeth-btc-poloniex-technical-analysis-sept-07-2016", + "https://steemit.com/all/@bridgetbunchy/celtic-heart-knot-pictorial", + "https://steemit.com/all/@roelandp/my-proper-introduceyourself-hello-i-m-roelandp", + "https://steemit.com/all/@ericvancewalton/know-me-an-original-poem", + "https://steemit.com/all/@cryptovpn/steemit-charity-run-no-1-doctors-without-borders", + "https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-1", + "https://steemit.com/all/@anwenbaumeister/my-cross-country-road-trip-greater-than-sf-greater-than-vegas-greater-than-boulder-greater-than-houston-greater-than-new-orleans", + "https://steemit.com/all/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-life-and-the-shrempresso", + "https://steemit.com/all/@enric/im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurrency-my-revolutionary-struggle-now-im-here", + "https://steemit.com/all/@dantheman/scalability-of-individual-responsibility-in-anarchy", + "https://steemit.com/all/@officialfuzzy/e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-testnet-jewels-ico-success-gridcoin-and-making-it-rain", + "https://steemit.com/all/@gavvet/a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-author", + "https://steemit.com/all/@bridgetbunchy/the-love-of-a-maker", + "https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-2", + "https://steemit.com/all/@dantheman/nonviolent-censorship-is-how-nonviolent-societies-create-nonviolent-government", + "https://steemit.com/all/@infovore/a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-moment-on-steemit-this-week-on-steemit-steemmag-steemit-s-weekend", + "https://steemit.com/all/@firepower/when-i-lost-sight-while-steeming", + "https://steemit.com/all/@ozchartart/usddoge-btc-poloniex-technical-analysis-sept-10-2016", + "https://steemit.com/all/@donkeypong/a-tribute-to-snail-mail", + "https://steemit.com/all/@charlieshrem/progressive-relaxation-by-charlie-shrem-mindfulness-meditation-in-prison-and-everyday-life", + "https://steemit.com/all/@curie/project-curie-s-daily-curation-list-9-sept-10-sept-2016", + "https://steemit.com/all/@furion/a-quick-look-at-null-and-the-profitability-of-promoted-posts", + "https://steemit.com/all/@sirwinchester/mr-gourmet-exploring-a-new-location", + "https://steemit.com/all/@larkenrose/supply-and-demand-steemit-style", + "https://steemit.com/all/@anwenbaumeister/a-peek-into-pre-columbian-worldviews-found-in-agricultural-practices-duality-complementarity-cyclicity-and-reciprocity", + "https://steemit.com/all/@corbettreport/only-9-11-truth-can-smash-the-9-11-lies", + "https://steemit.com/all/@sirwinchester/find-your-why-self-discovery-and-finding-your-purpose-in-life", + "https://steemit.com/stats/@masteryoda/weekly-payouts-leaderboards-september-week-1" + ], + "tags": [ + "stats", + "steemstats", + "steem-stats", + "steemit" + ], + "users": [ + "masteryoda" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66209054025322, + "payout": 255.998, + "payout_at": "2016-09-16T10:35:22", + "pending_payout_value": "255.998 HBD", + "percent_steem_dollars": 10000, + "permlink": "weekly-payouts-leaderboards-september-week-2", + "post_id": 956546, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 291 + }, + "title": "Weekly payouts leaderboards - September week 2", + "updated": "2016-09-15T10:10:06", + "url": "/stats/@masteryoda/weekly-payouts-leaderboards-september-week-2" + } +] diff --git a/hivemind/tavern/bridge_api_patterns/get_trending_topics.orig.json b/hivemind/tavern/bridge_api_patterns/get_trending_topics.orig.json new file mode 100644 index 00000000..25ddcf83 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_trending_topics.orig.json @@ -0,0 +1,30 @@ +[ + [ + "photography", + "#photography" + ], + [ + "travel", + "#travel" + ], + [ + "gaming", + "#gaming" + ], + [ + "crypto", + "#crypto" + ], + [ + "newsteem", + "#newsteem" + ], + [ + "music", + "#music" + ], + [ + "food", + "#food" + ] +] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/list_all_subscriptions.orig.json b/hivemind/tavern/bridge_api_patterns/list_all_subscriptions.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/list_all_subscriptions.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/list_communities.orig.json b/hivemind/tavern/bridge_api_patterns/list_communities.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/list_communities.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/list_community_roles.orig.json b/hivemind/tavern/bridge_api_patterns/list_community_roles.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/list_community_roles.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/list_subscribers.orig.json b/hivemind/tavern/bridge_api_patterns/list_subscribers.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/list_subscribers.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/post_notifications.orig.json b/hivemind/tavern/bridge_api_patterns/post_notifications.orig.json new file mode 100644 index 00000000..4e5c6cf6 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/post_notifications.orig.json @@ -0,0 +1,10 @@ +[ + { + "date": "2016-03-30T19:52:30", + "id": 1, + "msg": "@admin replied to your post", + "score": 20, + "type": "reply", + "url": "@admin/firstpost" + } +] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/unread_notifications.orig.json b/hivemind/tavern/bridge_api_patterns/unread_notifications.orig.json new file mode 100644 index 00000000..086973d6 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/unread_notifications.orig.json @@ -0,0 +1,4 @@ +{ + "lastread": "1970-01-01 00:00:00", + "unread": 375 +} \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_account_reputations.orig.json b/hivemind/tavern/condenser_api_patterns/get_account_reputations.orig.json new file mode 100644 index 00000000..2109895a --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_account_reputations.orig.json @@ -0,0 +1,8 @@ +{ + "reputations": [ + { + "name": "steemit", + "reputation": 0 + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_accounts.orig.json b/hivemind/tavern/condenser_api_patterns/get_accounts.orig.json new file mode 100644 index 00000000..7ae63650 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_accounts.orig.json @@ -0,0 +1,107 @@ +[ + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "4778859.891 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:21", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838821 + }, + "guest_bloggers": [], + "id": 28, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-15T13:56:18", + "last_owner_update": "2016-07-15T13:56:18", + "last_post": "2016-03-30T18:30:18", + "last_root_post": "2016-03-30T18:30:18", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + "mined": true, + "name": "steemit", + "next_vesting_withdrawal": "2016-09-19T00:37:21", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 1, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 3548, + "proxied_vsf_votes": [ + "23077504682", + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": "12944616889", + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "70337.438 HBD", + "sbd_last_interest_payment": "2016-09-12T19:16:48", + "sbd_seconds": "8923940509188", + "sbd_seconds_last_update": "2016-09-14T11:25:21", + "tags_usage": [], + "to_withdraw": "257910734535923078", + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "225671901920.188893 VESTS", + "vesting_withdraw_rate": "2479910908.999260 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838821 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": "32238841816990380", + "witness_votes": [], + "witnesses_voted_for": 0 + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_accounts.pat.json b/hivemind/tavern/condenser_api_patterns/get_accounts.pat.json index ec747fa4..7ae63650 100644 --- a/hivemind/tavern/condenser_api_patterns/get_accounts.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_accounts.pat.json @@ -1 +1,107 @@ -null \ No newline at end of file +[ + { + "active": { + "account_auths": [], + "key_auths": [ + [ + "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + 1 + ] + ], + "weight_threshold": 1 + }, + "balance": "4778859.891 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:21", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838821 + }, + "guest_bloggers": [], + "id": 28, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-15T13:56:18", + "last_owner_update": "2016-07-15T13:56:18", + "last_post": "2016-03-30T18:30:18", + "last_root_post": "2016-03-30T18:30:18", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + "mined": true, + "name": "steemit", + "next_vesting_withdrawal": "2016-09-19T00:37:21", + "other_history": [], + "owner": { + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ], + "weight_threshold": 1 + }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 1, + "post_history": [], + "posting": { + "account_auths": [], + "key_auths": [ + [ + "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + 1 + ] + ], + "weight_threshold": 1 + }, + "posting_json_metadata": "", + "posting_rewards": 3548, + "proxied_vsf_votes": [ + "23077504682", + 0, + 0, + 0 + ], + "proxy": "", + "received_vesting_shares": "0.000000 VESTS", + "recovery_account": "steem", + "reputation": "12944616889", + "reset_account": "null", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "sbd_balance": "70337.438 HBD", + "sbd_last_interest_payment": "2016-09-12T19:16:48", + "sbd_seconds": "8923940509188", + "sbd_seconds_last_update": "2016-09-14T11:25:21", + "tags_usage": [], + "to_withdraw": "257910734535923078", + "transfer_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "225671901920.188893 VESTS", + "vesting_withdraw_rate": "2479910908.999260 VESTS", + "vote_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838821 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": "32238841816990380", + "witness_votes": [], + "witnesses_voted_for": 0 + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_active_votes.orig.json b/hivemind/tavern/condenser_api_patterns/get_active_votes.orig.json new file mode 100644 index 00000000..b9768537 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_active_votes.orig.json @@ -0,0 +1,26 @@ +[ + { + "percent": 10000, + "reputation": 0, + "rshares": 0, + "time": "2016-08-20T02:59:39", + "voter": "endgame", + "weight": 0 + }, + { + "percent": 10000, + "reputation": 0, + "rshares": "28030089381", + "time": "2016-07-19T20:00:30", + "voter": "biophil", + "weight": 0 + }, + { + "percent": 10000, + "reputation": 0, + "rshares": 52512184, + "time": "2016-07-19T20:01:15", + "voter": "seagul", + "weight": "5970197932869" + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_blog.orig.json b/hivemind/tavern/condenser_api_patterns/get_blog.orig.json new file mode 100644 index 00000000..e4345dc3 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog.orig.json @@ -0,0 +1,645 @@ +[ + { + "blog": "steemit", + "comment": { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + }, + "entry_id": 0, + "reblogged_on": "1970-01-01T00:00:00" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_entries.orig.json b/hivemind/tavern/condenser_api_patterns/get_blog_entries.orig.json new file mode 100644 index 00000000..c4ed5060 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog_entries.orig.json @@ -0,0 +1,9 @@ +[ + { + "author": "steemit", + "blog": "steemit", + "entry_id": 0, + "permlink": "firstpost", + "reblogged_on": "1970-01-01T00:00:00" + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.orig.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.orig.json new file mode 100644 index 00000000..1d95f6eb --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.orig.json @@ -0,0 +1,33 @@ +[ + { + "active_votes": [], + "author": "lukmarcus", + "author_reputation": 0, + "beneficiaries": [], + "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", + "body_length": 122, + "cashout_time": "2016-09-18T21:19:45", + "category": "polska", + "children": 0, + "created": "2016-08-22T07:44:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https:\\/\\/web.facebook.com\\/notes\\/szymon-szewczyk-blog\\/nasienie-wolno%C5%9Bci\\/1062629210473658\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-22T07:44:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "simgregg", + "parent_permlink": "nasienie-wolnosci", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-simgregg-nasienie-wolnosci-20160822t074530822z", + "post_id": 703225, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Nasienie Wolno\u015bci", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/polska/@simgregg/nasienie-wolnosci#@lukmarcus/re-simgregg-nasienie-wolnosci-20160822t074530822z" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_content.orig.json b/hivemind/tavern/condenser_api_patterns/get_content.orig.json new file mode 100644 index 00000000..86f26ab2 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_content.orig.json @@ -0,0 +1,638 @@ +{ + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_content_replies.orig.json b/hivemind/tavern/condenser_api_patterns/get_content_replies.orig.json new file mode 100644 index 00000000..e100bca2 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_content_replies.orig.json @@ -0,0 +1,95 @@ +[ + { + "active_votes": [], + "author": "trogdor", + "author_reputation": 0, + "beneficiaries": [], + "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", + "body_length": 55, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-03T17:51:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T17:51:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160703t175141501z", + "post_id": 36953, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@trogdor/re-gtg-hello-world-20160703t175141501z" + }, + { + "active_votes": [], + "author": "amartinezque", + "author_reputation": 0, + "beneficiaries": [], + "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", + "body_length": 84, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-03T22:45:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T22:45:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160703t224527020z", + "post_id": 37179, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@amartinezque/re-gtg-hello-world-20160703t224527020z" + }, + { + "active_votes": [], + "author": "edu-lopov", + "author_reputation": 0, + "beneficiaries": [], + "body": "Welcome to Steemit Gandalf!", + "body_length": 27, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-04T18:22:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-04T18:22:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160704t182251522z", + "post_id": 38463, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@edu-lopov/re-gtg-hello-world-20160704t182251522z" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date.orig.json new file mode 100644 index 00000000..0b58474c --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date.orig.json @@ -0,0 +1,640 @@ +[ + { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_blog.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_blog.orig.json new file mode 100644 index 00000000..0b58474c --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_blog.orig.json @@ -0,0 +1,640 @@ +[ + { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments.orig.json new file mode 100644 index 00000000..2b914187 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments.orig.json @@ -0,0 +1,94 @@ +[ + { + "active_votes": [ + { + "percent": "-100", + "reputation": 0, + "rshares": "-375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit46" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81125", + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "431616594", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58854897335", + "voter": "business" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "244129227", + "voter": "kewpiedoll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1615731741", + "voter": "naturalista" + } + ], + "author": "admin", + "author_reputation": 0, + "beneficiaries": [], + "body": "First Reply! Let's get this **party** started", + "body_length": 45, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "created": "2016-03-30T19:52:30", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T19:52:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62423410900, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 2, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@admin/firstpost" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.orig.json new file mode 100644 index 00000000..f19efa5f --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_created.orig.json @@ -0,0 +1,33 @@ +[ + { + "active_votes": [], + "author": "philanthropest", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", + "body_length": 652, + "cashout_time": "2016-09-16T07:40:21", + "category": "freedom", + "children": 0, + "created": "2016-09-15T19:40:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"freedom\",\"anarchy\",\"steem\",\"life\",\"\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/y02aBfNT8n4\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=y02aBfNT8n4\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T19:42:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "", + "parent_permlink": "freedom", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", + "post_id": 960979, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", + "title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", + "total_payout_value": "0.000 HBD", + "url": "/freedom/@philanthropest/cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_feed.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_feed.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_feed.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.orig.json new file mode 100644 index 00000000..f95ff86c --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.orig.json @@ -0,0 +1,1090 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "1861031398822", + "voter": "books" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4287714457313", + "voter": "riverhead" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1855967006728", + "voter": "badassmother" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2053236030423", + "voter": "hr1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5519371190400", + "voter": "kushed" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1271804694676", + "voter": "rossco99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22391622942", + "voter": "jaewoocho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161758715658", + "voter": "ozmaster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1534643949678", + "voter": "joseph" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100723108736", + "voter": "aizensou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "466132509421", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "636519834128", + "voter": "masteryoda" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3120576239931", + "voter": "recursive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8927291120", + "voter": "idol" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "800066797130", + "voter": "steemrollin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4941942978", + "voter": "sakr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "284401462010", + "voter": "chitty" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1536592488", + "voter": "jocelyn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14818263059", + "voter": "gregory-f" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "154334962550", + "voter": "edgeland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "374436234637", + "voter": "craig-grant" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9028550345", + "voter": "gregory60" + }, + { + "percent": "1056", + "reputation": 0, + "rshares": "89897944197", + "voter": "eeks" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "11591323519", + "voter": "fkn" + }, + { + "percent": "9900", + "reputation": 0, + "rshares": "468281676", + "voter": "paco-steem" + }, + { + "percent": "9900", + "reputation": 0, + "rshares": "5641697991", + "voter": "spaninv" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "15236070794", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7802860274", + "voter": "richman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "584279800798", + "voter": "nanzo-scoop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10059005246", + "voter": "kefkius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "177417522325", + "voter": "mummyimperfect" + }, + { + "percent": "2900", + "reputation": 0, + "rshares": "313697862", + "voter": "coar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106635074770", + "voter": "asch" + }, + { + "percent": "5555", + "reputation": 0, + "rshares": "1061264730", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6230798580", + "voter": "cryptofunk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2003359924", + "voter": "error" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11848125383", + "voter": "andu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "970586830705", + "voter": "cyber" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59952188311", + "voter": "theshell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49580154489", + "voter": "ak2020" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "402139444", + "voter": "applecrisp" + }, + { + "percent": "9900", + "reputation": 0, + "rshares": "365370465", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "280737930617", + "voter": "trogdor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5950623572", + "voter": "mark-waser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "118356217412", + "voter": "geoffrey" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "101509283748", + "voter": "kimziv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75333038089", + "voter": "emily-cook" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2251949197", + "voter": "superfreek" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "275327756", + "voter": "ladyclair" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3283410959", + "voter": "orly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5271030976", + "voter": "riscadox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25057521880", + "voter": "tcfxyz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6939954009", + "voter": "futurefood" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "56586842629", + "voter": "furion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "754655775", + "voter": "busser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103793678934", + "voter": "cdubendo" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "271487757", + "voter": "barbara2" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "301755142", + "voter": "ch0c0latechip" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "279277284", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2733708608", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "124961861", + "voter": "cynetyc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5357326058", + "voter": "thegoodguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14168005907", + "voter": "aaseb" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "4209533734", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "251367062418", + "voter": "nabilov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8576081337", + "voter": "noodhoog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46859060143", + "voter": "milestone" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21565632626", + "voter": "artific" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5840939270", + "voter": "btcbtcbtc20155" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14455781997", + "voter": "nippel66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "163325492855", + "voter": "blueorgy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13111647625", + "voter": "benjiberigan" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "2214250194", + "voter": "poseidon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "355265286967", + "voter": "calaber24p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3295677164", + "voter": "simon.braki.love" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "121062267", + "voter": "bola" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32544157928", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14007767075", + "voter": "hagie" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "204618396015", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1371622220", + "voter": "aleco" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "9400257217", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1773021661", + "voter": "yarly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "267188192", + "voter": "yarly2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "267587944", + "voter": "yarly3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "154579129", + "voter": "yarly4" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155451862", + "voter": "yarly5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88607961", + "voter": "yarly7" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "257573964", + "voter": "sergey44" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "17267341753", + "voter": "proto" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "16251777176", + "voter": "sisterholics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "428868451", + "voter": "yarly10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "229507420", + "voter": "yarly11" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "80241480", + "voter": "yarly12" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "316499814", + "voter": "fnait" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "281178931", + "voter": "keepcalmand" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "607346548", + "voter": "cwmyao1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16495975416", + "voter": "jamesbrown" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3353991305", + "voter": "glitterpig" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7506600577", + "voter": "jed78" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "8734185109", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1651596637", + "voter": "coinbar" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "574717917578", + "voter": "laonie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "254341994815", + "voter": "ozchartart" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5104045578", + "voter": "croatia" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "19987344033", + "voter": "myfirst" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "116658367770", + "voter": "somebody" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "4604075327", + "voter": "flysaga" + }, + { + "percent": "1056", + "reputation": 0, + "rshares": "2501638608", + "voter": "gmurph" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "25770687280", + "voter": "midnightoil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4190377366", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2325684243", + "voter": "andrew0" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "64457942294", + "voter": "xiaohui" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "3234267259", + "voter": "elfkitchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99935909954", + "voter": "joele" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5855738054", + "voter": "oflyhigh" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "2127092828", + "voter": "xiaokongcom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47556149905", + "voter": "eneismijmich" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "4287842001", + "voter": "xianjun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72192938", + "voter": "sijoittaja" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11041591679", + "voter": "borran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "93807196108", + "voter": "miacats" + }, + { + "percent": "4700", + "reputation": 0, + "rshares": "280777082", + "voter": "microluck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "74131936", + "voter": "razberrijam" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2022702929", + "voter": "chinadaily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "86712034", + "voter": "pompe72" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1647538615", + "voter": "ignat" + }, + { + "percent": "2100", + "reputation": 0, + "rshares": "20666130092", + "voter": "anotherjoe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3562389763", + "voter": "movievertigo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21980957828", + "voter": "andrewawerdna" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2109031152", + "voter": "runridefly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1783693666", + "voter": "funkywanderer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4747321980", + "voter": "richardcrill" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2161669067", + "voter": "jeremyfromwi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1661534801", + "voter": "davidjkelley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "178419224", + "voter": "greatness" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "27678962051", + "voter": "sponge-bob" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15571125147", + "voter": "digital-wisdom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3710973264", + "voter": "ethical-ai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6831389463", + "voter": "jwaser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422625634", + "voter": "steemorama" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4269189470", + "voter": "nubchai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2675506788", + "voter": "bwaser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6064648982", + "voter": "dexter-k" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54949117", + "voter": "doggnostic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54665234", + "voter": "jenny-talls" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "27673000226", + "voter": "brains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1387263917", + "voter": "steemafon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5753524189", + "voter": "chick1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50584036", + "voter": "aoki" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51568971", + "voter": "typingagent" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50528809", + "voter": "cwb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62515317", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "339300528", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2401297947", + "voter": "ellepdub" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "98577200", + "voter": "ola1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12115690216", + "voter": "herpetologyguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4817018034", + "voter": "morgan.waser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50228382", + "voter": "dragonice" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50907857", + "voter": "oxygen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50873654", + "voter": "palladium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50865840", + "voter": "sting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3689865978", + "voter": "strong-ai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "162917785", + "voter": "ctu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161815656", + "voter": "ranger" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161700361", + "voter": "shadowcash" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161218747", + "voter": "sdc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158018960", + "voter": "bethesda" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "160835930", + "voter": "skrillex" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "160319579", + "voter": "cybergirls" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "159175576", + "voter": "fallout" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158732321", + "voter": "steemwallet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158638676", + "voter": "icesteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31684221772", + "voter": "goldmatters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "154247502", + "voter": "dougkarr" + } + ], + "author": "ozchartart", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hello Steemers!\n\nhttps://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png\n\n*POLONIEX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png\n*4 hour Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciwF/1b96b56dcc.png\n*4 hour Poloniex chart - Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png\n*1 day Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciC9/edf3dcb758.png\n*1 day Poloniex chart - Sept 15, 2016*\nThe Poloniex price went down to the all time low, breaking it and making a slightly lower all time low, but still not giving any confirm of a bottom or bounce.\nVolume about 20% higher then yesterday.\n\n*BITTREX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png\n*4 hour Bittrex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciod/ce32f1a029.png\n*4 hour Bittrex chart - Sept 15, 2016*\nThe Bittrex price broke the local low made just a slightly lower one, same as Poloniex with he all time low, looking like its heading towards the next support level (~0.0007, blue dashed).\nVolume on Bittrex was about 25% lower then yesterday (~5BTC's).\n\n\n*VOLUME COMPARISON*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png\n*STEEM/BTC volume Bittrex Sept 14, 2016*\n\nhttp://puu.sh/rcifG/0c61511ea3.png\n*STEEM/BTC volume Bittrex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png\n*STEEM/BTC volume Poloniex Sept 14, 2016*\n\nhttp://puu.sh/rcicN/b2384086a4.png\n*STEEM/BTC volume Poloniex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png\n*STEEM indexed global volume Sept 14, 2016*\n\nhttp://puu.sh/rcibB/7b2700dd82.png\n*STEEM indexed global volume Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmof/8ca7889618.png\n*Coinmarketcap top volume cryptos Sept 14, 2016*\n\nhttp://puu.sh/rci8K/d68b7eb122.png\n*Coinmarketcap top volume cryptos Sept 15, 2016*\nOverall volume about 12% higher then yesterday, with Bittrex volume taking a dive and Poloniex gaining some.\n$STEEM again under top 30 in volume rankings.\n\n*COMMENT*\nOnce again, I will post the comment by commenting as it involves my personal opinion!\nThank you for understanding!\n\nIf anyone has any questions or need's help fell free to ask, I will try to explain as fast and as best as I can.\nCritics, comments, reply's, counters, advice's, etc. are always welcome!\nHave my charts helped you in any way?Let me know with a comment below :)\nAre there more people who are doing TA?\nPlease post the links to your TA's posts into the comments as well!\n\n*DISCLAIMER*\nI am showing multiple scenarios on the price movement, in the post itself I do not take any stance, either bullish or bearish. I am not responsible for neither you\u2019re winning nor you're losses upon trading! the \"comment\" section is my personal opinion and does not mean I have to or do hold any positions in the given market.\nEveryone who uses TA develops his own unique charting style, please keep that in mind.\n\nhttps://www.youtube.com/watch?v=i3bS5nRZOvU\n\nKind regards, OZ :)", + "body_length": 3079, + "cashout_time": "2016-09-16T18:35:24", + "category": "steem", + "children": 5, + "created": "2016-09-15T18:18:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"steem\",\"poloniex\",\"bittrex\",\"technical-analysis\",\"trading\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/qPHEc\\/3b0d8913ce.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmGz\\/0764821325.png\",\"http:\\/\\/puu.sh\\/rciwF\\/1b96b56dcc.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmLb\\/755ca91186.png\",\"http:\\/\\/puu.sh\\/rciC9\\/edf3dcb758.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmDb\\/7461d3602b.png\",\"http:\\/\\/puu.sh\\/rciod\\/ce32f1a029.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmuE\\/227aa902ca.png\",\"http:\\/\\/puu.sh\\/rcifG\\/0c61511ea3.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmwv\\/fd2112e3ab.png\",\"http:\\/\\/puu.sh\\/rcicN\\/b2384086a4.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmry\\/db13b3282f.png\",\"http:\\/\\/puu.sh\\/rcibB\\/7b2700dd82.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmlb\\/aca50530d5.png\",\"http:\\/\\/puu.sh\\/rci8K\\/d68b7eb122.png\",\"https:\\/\\/img.youtube.com\\/vi\\/i3bS5nRZOvU\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=i3bS5nRZOvU\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T18:18:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 30268799563538, + "parent_author": "", + "parent_permlink": "steem", + "pending_payout_value": "57.124 HBD", + "percent_steem_dollars": 10000, + "permlink": "usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", + "post_id": 960238, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle\u2019s left empty\" Sept 15, 2016", + "title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle\u2019s left empty\" Sept 15, 2016", + "total_payout_value": "0.000 HBD", + "url": "/steem/@ozchartart/usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.orig.json new file mode 100644 index 00000000..3d0892ee --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.orig.json @@ -0,0 +1,2590 @@ +[ + { + "active_votes": [ + { + "percent": "-10000", + "reputation": 0, + "rshares": "-28338941273774", + "voter": "dantheman" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-56560374008", + "voter": "fminerten1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "515865522774", + "voter": "panadacoin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "591238736691", + "voter": "barrie" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-31244889730986", + "voter": "smooth" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-25869425303440", + "voter": "berniesanders" + }, + { + "percent": "8900", + "reputation": 0, + "rshares": "56923627230317", + "voter": "ned" + }, + { + "percent": "-4000", + "reputation": 0, + "rshares": "-61162327823", + "voter": "highasfuck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5861402538757", + "voter": "riverhead" + }, + { + "percent": "3500", + "reputation": 0, + "rshares": "2012701974707", + "voter": "kushed" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1105925638130", + "voter": "ihashfury" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1595196737607", + "voter": "rossco99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "986803208166", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5034399699326", + "voter": "steemit200" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3103422054", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3767892961", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "690943799", + "voter": "bunny" + }, + { + "percent": "4900", + "reputation": 0, + "rshares": "3573913851034", + "voter": "complexring" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6282474172783", + "voter": "clayop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54717838235", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1662987228", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213785292", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "209038160029", + "voter": "alex90342fastn1" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "7692488765", + "voter": "aizensou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3455872549975", + "voter": "au1nethyb1" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "6781848343", + "voter": "bentley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1387859952", + "voter": "mineralwasser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106098683047", + "voter": "bonapartist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "855490468340", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115524100455", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8261386990", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2104057003", + "voter": "bingo-1" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-5694232013608", + "voter": "smooth.witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "988597560715", + "voter": "benjojo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "564763376378", + "voter": "boatymcboatface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "168058097416", + "voter": "pairmike" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61457593326", + "voter": "vip" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "29414306405", + "voter": "proctologic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "624912728", + "voter": "healthcare" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "902943814", + "voter": "stoner19" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "971397151", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "400674324536", + "voter": "woo7739" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "821205239311", + "voter": "steemrollin" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "16122243298", + "voter": "team" + }, + { + "percent": "2100", + "reputation": 0, + "rshares": "68140066479", + "voter": "chitty" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "335329901210", + "voter": "lighthil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "288337653", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "84761882611", + "voter": "unosuke" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "221378412917", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156355134109", + "voter": "vitaly-lvov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125237012083", + "voter": "edgeland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "384189354393", + "voter": "craig-grant" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "78953157492", + "voter": "easteagle13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24177692381", + "voter": "mod-tamichh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47071100260", + "voter": "cyan91" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "182161233136", + "voter": "samuel-stone" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27507445535", + "voter": "full-measure" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15043635029", + "voter": "jademont" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1091318863571", + "voter": "gavvet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3913661416", + "voter": "hbhades" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "537679658162", + "voter": "eeks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "477297643", + "voter": "paco-steem" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "19875326051", + "voter": "hipster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5373300397", + "voter": "spaninv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31632644129", + "voter": "james-show" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2191644256", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1709548184767", + "voter": "cryptoctopus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "292403125620", + "voter": "pal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "91790166084", + "voter": "william-noe" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "6782998784", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "134023949190", + "voter": "steve-walschot" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32871946754", + "voter": "dan-atstarlite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "490595494", + "voter": "coar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "67870898638", + "voter": "asch" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "286727574871", + "voter": "kevinwong" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1425998946", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1703165248", + "voter": "brian-lukassen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7184649989", + "voter": "cryptofunk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "584817224", + "voter": "kodi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79084857477", + "voter": "theshell" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "22641839395", + "voter": "thecryptofiend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51307800519", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5388661415", + "voter": "zebbra2014" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3915776982262", + "voter": "satoshifund" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "403407002721", + "voter": "taoteh1221" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "426836364", + "voter": "applecrisp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "372600185", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147474797358", + "voter": "killerstorm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "370486042445", + "voter": "hedge-x" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "6226063990", + "voter": "hisnameisolllie" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "4666893911", + "voter": "wingz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53642020280", + "voter": "juanmiguelsalas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112536244257", + "voter": "kenny-crane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18290477525", + "voter": "samether" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "20435826971", + "voter": "ratel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4477973596", + "voter": "dahaz159" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13353893819", + "voter": "facer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19195451431", + "voter": "ziv" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-37886485933", + "voter": "cheftony" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "814177904", + "voter": "proglobyte" + }, + { + "percent": "7500", + "reputation": 0, + "rshares": "6651057809", + "voter": "grandpere" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "187723859372", + "voter": "mexbit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5901731263", + "voter": "mark-waser" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "13475779704", + "voter": "publicworker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106662592446", + "voter": "geoffrey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46106881411", + "voter": "honeythief" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2879418324", + "voter": "mammasitta" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "22456450828", + "voter": "marco-delsalto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6740408834", + "voter": "tyler-fletcher" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "90461089451", + "voter": "mctiller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "70695307715", + "voter": "freedomengineer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14764907307", + "voter": "magnebit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73424982025", + "voter": "razvanelulmarin" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "4332771254", + "voter": "treeshaface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17687843258", + "voter": "frankjones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18766219906", + "voter": "skapaneas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5157854283", + "voter": "micheletrainer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17552893571", + "voter": "grey580" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "283436852", + "voter": "ladyclair" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "288748933789", + "voter": "ericvancewalton" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52215058764", + "voter": "booja" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "331004446932", + "voter": "roelandp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4775693686", + "voter": "dennygalindo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62198582831", + "voter": "lehard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "249608253", + "voter": "ivp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "86432384761", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3299480410", + "voter": "orly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "254364900", + "voter": "mstang83" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22617124650", + "voter": "katyakov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "122156869592", + "voter": "robrigo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48022035978", + "voter": "menta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "977288096", + "voter": "lontong" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "135562023252", + "voter": "chhayll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13300237653", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "124913925653", + "voter": "derekareith" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "26683327851", + "voter": "picokernel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2707813985", + "voter": "wintrop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "514388137239", + "voter": "neoxian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25581639649", + "voter": "strangerarray" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1344524912605", + "voter": "renohq" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155010079441", + "voter": "knircky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5523230874", + "voter": "on0tole" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71594122778", + "voter": "sigmajin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16832656768", + "voter": "ausbitbank" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42564757970", + "voter": "mrwang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1268462097", + "voter": "mixa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8279675078", + "voter": "autosmile13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40069670306", + "voter": "wesam" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1632266140", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55667692", + "voter": "cynetyc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4524453413", + "voter": "gikitiki" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4046708005", + "voter": "steemit-life" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4687463894", + "voter": "thegoodguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40136504296", + "voter": "biophil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3759809896", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2630980347", + "voter": "jbouchard12" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27635550326", + "voter": "dwinblood" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24959867898", + "voter": "igster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10845979381", + "voter": "deviedev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "228465690", + "voter": "zoicneo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "296045327034", + "voter": "nabilov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79351054414", + "voter": "ntomaino" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13957994657", + "voter": "meesterboom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12385010041", + "voter": "domavila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "400742354", + "voter": "karenmckersie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "484888225", + "voter": "luisucv34" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5747716426", + "voter": "krystle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75001817111", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44353154247", + "voter": "yongyoon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7146190847", + "voter": "lichtblick" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9028095567", + "voter": "warrensteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3710621464", + "voter": "maximkichev" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "5254853525", + "voter": "sbq777t" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13560062590", + "voter": "nippel66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3175676972", + "voter": "imp3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2552560220", + "voter": "sgnsteems" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "189609178496", + "voter": "blueorgy" + }, + { + "percent": "1400", + "reputation": 0, + "rshares": "4380569189", + "voter": "wadepaterson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "296100567501", + "voter": "calaber24p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20078314404", + "voter": "mustafaomar" + }, + { + "percent": "4900", + "reputation": 0, + "rshares": "7161559782", + "voter": "all-of-us" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8247905495", + "voter": "magz8716" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18706560189", + "voter": "bendjmiller222" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4078813249", + "voter": "tarindel" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "13966407599", + "voter": "beowulfoflegend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23276095473", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5317355087", + "voter": "rainchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9242725695", + "voter": "oumar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5575772867", + "voter": "sharker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "182819821534", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1103176661", + "voter": "oecp85" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "977888223951", + "voter": "james212" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "818040957", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39295777834", + "voter": "zaebars" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1428031362", + "voter": "alekst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1782690382", + "voter": "yarly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125979055", + "voter": "kottai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "269576627", + "voter": "yarly2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "269980297", + "voter": "yarly3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156093986", + "voter": "yarly4" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156975275", + "voter": "yarly5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "89476508", + "voter": "yarly7" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56769328536", + "voter": "arcurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115403915", + "voter": "charbelnamm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9802713874", + "voter": "alsprinting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4554249461", + "voter": "gustavopasquini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10450628476", + "voter": "moon32walker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25772328103", + "voter": "marius19" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13637653306", + "voter": "lemooljiang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15826604583", + "voter": "winstonwolfe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "455136533", + "voter": "kooshikoo" + }, + { + "percent": "2300", + "reputation": 0, + "rshares": "8541510354", + "voter": "fatboy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15580395475", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "639099484", + "voter": "curator" + }, + { + "percent": "8200", + "reputation": 0, + "rshares": "2410557662", + "voter": "ace108" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "432302630", + "voter": "yarly10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1634018670", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "231618512", + "voter": "yarly11" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13498521499", + "voter": "michaeldodridge" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81028161", + "voter": "yarly12" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1713978326", + "voter": "remlaps" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "165045645", + "voter": "beanz" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "273280899", + "voter": "clevecross" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31769283842", + "voter": "smailer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "149502446", + "voter": "steemster1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4564708091", + "voter": "sulev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2873988066", + "voter": "dmilash" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3459421629", + "voter": "carlas10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1493719735", + "voter": "spinner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4189235490", + "voter": "glitterpig" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7874311492", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "689524426", + "voter": "pakisnxt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5394692942", + "voter": "theprophet0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4481547788", + "voter": "theprophet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61911147", + "voter": "sharon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7265644466", + "voter": "dumar022" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61700262", + "voter": "lillianjones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46418159604", + "voter": "capitalism" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "588460890536", + "voter": "toxic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8609049381", + "voter": "darknet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14224054622", + "voter": "gmurph" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "655589667", + "voter": "xtester" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2090553241", + "voter": "achim86" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4256758523", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8452120116", + "voter": "kurtbeil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60138244071", + "voter": "poteshnik83" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99476907271", + "voter": "thisisbenbrick" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392193612", + "voter": "wiser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112411845286", + "voter": "terrycraft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1348324437", + "voter": "dolov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21004018124", + "voter": "jphamer1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11270713350", + "voter": "ekitcho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "150794650", + "voter": "bigsambucca" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "83986507131", + "voter": "joele" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5527031256", + "voter": "oflyhigh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57523014", + "voter": "nickche" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2512217855", + "voter": "kainmarx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "493960660", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63555792", + "voter": "msjennifer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58453204", + "voter": "ciao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3015124995", + "voter": "villainblack" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3439786891", + "voter": "cmorton" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "219039434", + "voter": "xcepta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "748990287", + "voter": "jrcornel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57914427", + "voter": "steemo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19865005311", + "voter": "hanshotfirst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56535984", + "voter": "steema" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "5769564425", + "voter": "highlite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73061236", + "voter": "evgenyche" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "65927774", + "voter": "bhavnapatel68" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71228043", + "voter": "confucius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28924632850", + "voter": "mrosenquist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "74898697", + "voter": "elenirossidou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58639072", + "voter": "jarvis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "102741069", + "voter": "lisadang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "78765183", + "voter": "razberrijam" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10750764390", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56726999", + "voter": "fortuner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2816953736", + "voter": "virtualgrowth" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1399636656", + "voter": "anotherjoe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59750246", + "voter": "saveliy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5927843564", + "voter": "solarguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "890579467", + "voter": "crazycow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3977281078", + "voter": "lamech-m" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9470181501", + "voter": "mrgrey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "382699085", + "voter": "crezyliza" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12003456501", + "voter": "gvargas123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55399493", + "voter": "johnbyrd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56575537", + "voter": "thomasaustin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55394920", + "voter": "thermor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56570509", + "voter": "ficholl" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55387660", + "voter": "widell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10109582992", + "voter": "elissahawke" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88078809749", + "voter": "icfiedler" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "192287988", + "voter": "steevc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1592064374", + "voter": "movievertigo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54991366", + "voter": "revelbrooks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23660021285", + "voter": "andrewawerdna" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5932358367", + "voter": "trev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48131519933", + "voter": "dragonanarchist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79979619", + "voter": "joelbow" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "4001380728", + "voter": "sethlinson" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2391702679", + "voter": "hilarski" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "101945845", + "voter": "slorunner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1679360131", + "voter": "imag1ne" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58631508", + "voter": "pacino" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57412782", + "voter": "drsamkhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54999739", + "voter": "curpose" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103040256", + "voter": "adrevel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61202458", + "voter": "steembriefing" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2894276750", + "voter": "fat-like-buddha" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64070582", + "voter": "iosif" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1559083086", + "voter": "ines-f" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1893166639", + "voter": "cryptoeasy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9771811576", + "voter": "etcmike" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4912386907", + "voter": "ats-david" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "947456313", + "voter": "runridefly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "69985187", + "voter": "stephenkendal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "80557869", + "voter": "jlufer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2475119042", + "voter": "contentjunkie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99564797338", + "voter": "shenanigator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7076299362", + "voter": "daveks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61715783", + "voter": "uziriel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3325599818", + "voter": "funkywanderer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11968284833", + "voter": "ryan-singer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53961187", + "voter": "troich" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56665974", + "voter": "viktorriver" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7018683565", + "voter": "mdoolsky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3103345545", + "voter": "xanoxt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1652709870", + "voter": "davidjkelley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6919572472", + "voter": "davidbrogan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53966805", + "voter": "crion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53622549", + "voter": "hitherise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54730557", + "voter": "wiss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12191050487", + "voter": "ghasemkiani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15497139800", + "voter": "digital-wisdom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3938044420", + "voter": "ethical-ai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54362089", + "voter": "stroully" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2032879970", + "voter": "matthewtiii" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5655677010", + "voter": "jwaser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54019345", + "voter": "thadm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017499", + "voter": "prof" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56837113", + "voter": "blogx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55043079", + "voter": "zettar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17788079417", + "voter": "hunterisgreat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1089484775", + "voter": "smisi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53640464", + "voter": "yorsens" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "85546636", + "voter": "the-ego-is-you" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53331040", + "voter": "bane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "537067064", + "voter": "winglessss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53324520", + "voter": "vive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53318865", + "voter": "coad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287913287", + "voter": "totosky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1697516350", + "voter": "baodog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2664939129", + "voter": "bwaser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52988378", + "voter": "sofa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "732461217", + "voter": "ct-gurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "220578638", + "voter": "mamo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1706277109", + "voter": "ibringawareness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "860146710", + "voter": "kingarbinv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53039974", + "voter": "ailo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4841952237", + "voter": "burnin" + }, + { + "percent": "3300", + "reputation": 0, + "rshares": "558512952", + "voter": "bitcoinparadise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "206212756", + "voter": "ballinconscious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4652459969", + "voter": "gringalicious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2770826537", + "voter": "steempowerwhale" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1336513482", + "voter": "rigaronib" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "390796425", + "voter": "echoesinthemind" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "357202147", + "voter": "soldier" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55826263", + "voter": "nelyp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2339486479", + "voter": "ellepdub" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50852949", + "voter": "gregorygarcia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9400577403", + "voter": "herpetologyguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51470533", + "voter": "eavy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51468937", + "voter": "roto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "70358845", + "voter": "ancientofdays" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52648858", + "voter": "psyduck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "330163263", + "voter": "robotev1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4796038584", + "voter": "morgan.waser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147415673", + "voter": "flowergirl" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51141851", + "voter": "slow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "101153586", + "voter": "anns" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1693077690", + "voter": "nil1511" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "846735133", + "voter": "greenwayoflife" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50798322", + "voter": "breeze" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50796122", + "voter": "factom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50794039", + "voter": "autodesk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50708837", + "voter": "ardly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50704078", + "voter": "yotoh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50570250", + "voter": "ziggo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50482289", + "voter": "connection" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50433760", + "voter": "morse" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50317220", + "voter": "piphunters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1824788165", + "voter": "cwbrooch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1161216291", + "voter": "ayim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3675242983", + "voter": "strong-ai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "346259703", + "voter": "julia26" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "488963228", + "voter": "grisha-danunaher" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "696884040", + "voter": "ziogio" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "77637243", + "voter": "igtes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "80800689", + "voter": "timalex" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79083956", + "voter": "silverbackjonz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23984282056", + "voter": "abdullar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1204472546", + "voter": "expedition" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157643687", + "voter": "buffett" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "162128433", + "voter": "cebymaster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "143818142", + "voter": "eunnykim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "162785391", + "voter": "olga4ka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1065182434", + "voter": "rusteemitblog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161974443", + "voter": "zapply" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158642800", + "voter": "ranger" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "282877474", + "voter": "witchcraftblog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "975048251", + "voter": "nikomah" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161212160", + "voter": "origin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161205518", + "voter": "acute" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "160973134", + "voter": "gravity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157801695", + "voter": "realtime" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157654556", + "voter": "pawel-krawczyk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125721183", + "voter": "rubenkusters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "160269480", + "voter": "adpipop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103667189", + "voter": "charli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147606365", + "voter": "laskovskiy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "65836326", + "voter": "serikus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147145004", + "voter": "fer32p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "159524423", + "voter": "radent" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125821091", + "voter": "jasonxg" + } + ], + "author": "ned", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\n\n# Over the last few weeks I've been thinking about ways we could increase the demand for Steem Power, the quality of curated content and the incentives to participate as a Steem curator.\n\nHere are a couple ideas I have been kicking around. They're not fully mature and could use a good rinsing by the community.\n\n## Allow Steem holders to delegate their Steem Power voting rights to a **voting pool**\n\nA delegated voting pool could socialize voting power and individualize rewards. One prime use for this could be the @steemit account. @steemit could create a voting pool and invite anyone with a verified identity and good reputation to join the pool as a curator. This could increase the number of unique curators, help bootstrap Steem as an identity database and give people even more incentives to sign up.\n\nTo show the numbers, an example would be Alice Bob and Charley each delegate their SP of 2, 3, and 7 to one voting pool. Now they each have 4, 4, and 4 SP to be used to curate. Better curation would earn them more curation rewards. \n\nA side effect of delegated voting pools could be voting markets. Any user would have the power to create a voting pool and these users could charge curators for participation. Some of the platform's whales could be interested in offering subscription models to minnows as a way to get more voting influence.\n\n## If powering down stake loses voting influence\n\nImagine that any stake being powered down would lose its rights to use voting influence. This could make the system very clear in the regard that stake is either in or it is out. Users could be able to choose any % of their stake to power down regardless of how many accounts they have and only the % stake that is powering down would lose voting influence. Stopping a power down could return all voting rights.\n\nPerhaps the effect of this could be 1/ more interest to stay in the platform and 2/ more fluidity in the witness queue 3/ more fairness regarding the PoS nature of Steem 4/ more clarity from participants looking to exit the system\n\n## Combined effect?\nPerhaps these proposals could have a combined effect that increases the demand and fluidity of Steem Power while improving the curated experience for people visiting Steem based websites.\n\n#### What are your thoughts and questions?", + "body_length": 2399, + "cashout_time": "2016-10-09T02:14:24", + "category": "steem", + "children": 315, + "created": "2016-09-07T15:44:51", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https:\\/\\/www.biznessapps.com\\/blog\\/wp-content\\/uploads\\/2013\\/12\\/shutterstock_148639682.png\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-07T15:50:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 21098346399884, + "parent_author": "", + "parent_permlink": "steem", + "pending_payout_value": "47.461 HBD", + "percent_steem_dollars": 10000, + "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", + "post_id": 882849, + "promoted": "500.000 HBD", + "replies": [], + "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction", + "title": "Increasing Curation, Demand for Steem Power and Community Interaction", + "total_payout_value": "0.000 HBD", + "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.orig.json new file mode 100644 index 00000000..0a53a6bd --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.orig.json @@ -0,0 +1,562 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "231806896049", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40039727156805", + "voter": "blocktrades" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81139043695", + "voter": "friend5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5563642779143", + "voter": "kushed" + }, + { + "percent": "5900", + "reputation": 0, + "rshares": "4361056998354", + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11463456159", + "voter": "by24seven" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48198557404", + "voter": "twiceuponatime" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "253716125229", + "voter": "indominon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72048644865", + "voter": "vault" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22916314085", + "voter": "wpalczynski" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23645584002", + "voter": "nikolai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "143164562367", + "voter": "chris4210" + }, + { + "percent": "8800", + "reputation": 0, + "rshares": "24193131603", + "voter": "acidyo" + }, + { + "percent": "2900", + "reputation": 0, + "rshares": "313691550", + "voter": "coar" + }, + { + "percent": "5555", + "reputation": 0, + "rshares": "1061234978", + "voter": "murh" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "33781972641", + "voter": "ratel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "208364758717", + "voter": "kimziv" + }, + { + "percent": "8800", + "reputation": 0, + "rshares": "45145254362", + "voter": "venuspcs" + }, + { + "percent": "8800", + "reputation": 0, + "rshares": "7264907621", + "voter": "getssidetracked" + }, + { + "percent": "8800", + "reputation": 0, + "rshares": "1414199127", + "voter": "trees" + }, + { + "percent": "8800", + "reputation": 0, + "rshares": "197179742", + "voter": "strawhat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "844421054", + "voter": "endgame" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "118094280271", + "voter": "furion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2834923420", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13516878845", + "voter": "sitaru" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3735950544", + "voter": "incomemonthly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6392090406", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "243749878708", + "voter": "nabilov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "677892916", + "voter": "luisucv34" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "34761252099", + "voter": "creemej" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "167304333801", + "voter": "blueorgy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4545098461", + "voter": "poseidon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "41053239884", + "voter": "celsius100" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1659490970", + "voter": "tokyodude" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128098702", + "voter": "mysteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6168588588", + "voter": "chloetaylor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "34309889652", + "voter": "sisterholics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59017018", + "voter": "reported" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55047214", + "voter": "krushing" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1213316718415", + "voter": "laonie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21929710586", + "voter": "rawnetics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "41307699258", + "voter": "myfirst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "246282932283", + "voter": "somebody" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9450611021", + "voter": "flysaga" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "513541455", + "voter": "minnowsunited" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54405663387", + "voter": "midnightoil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54018085", + "voter": "whatyouganjado" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "136080800992", + "voter": "xiaohui" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6792049578", + "voter": "elfkitchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61187902", + "voter": "makaveli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4366196499", + "voter": "xiaokongcom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7475701368", + "voter": "thebotkiller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8801500509", + "voter": "xianjun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11292536945", + "voter": "borran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53669860", + "voter": "alexbones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "576331905", + "voter": "microluck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1310823380", + "voter": "stevescoins" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3089652212", + "voter": "macartem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10344891579", + "voter": "gvargas123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156958768", + "voter": "nang1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "166282713", + "voter": "kamil5" + }, + { + "percent": "8800", + "reputation": 0, + "rshares": "51156498", + "voter": "dobbydaba" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5950976762", + "voter": "trev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8773942171", + "voter": "craigwilliamz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72624506", + "voter": "ozertayiz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53639497", + "voter": "salebored" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "736031742", + "voter": "freeinthought" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63258691", + "voter": "arnoldz61" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2101747450", + "voter": "eight-rad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53681172", + "voter": "bitdrone" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53672498", + "voter": "sleepcult" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54175638", + "voter": "apparat" + }, + { + "percent": "9900", + "reputation": 0, + "rshares": "12276570645", + "voter": "doitvoluntarily" + }, + { + "percent": "8800", + "reputation": 0, + "rshares": "135393340675", + "voter": "thecyclist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52015504", + "voter": "analyzethis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63904547", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52154065", + "voter": "nommo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51261721", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "339287005", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "98545946", + "voter": "ola1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63588518", + "voter": "mari5555na" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2996735269", + "voter": "powerup" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "527464783", + "voter": "grisha-danunaher" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161974443", + "voter": "zapply" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158561921", + "voter": "jyriygo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "136494240", + "voter": "bleujay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153397644", + "voter": "milank" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "150273031", + "voter": "inkwisitiveguy01" + } + ], + "author": "powerup", + "author_reputation": 0, + "beneficiaries": [], + "body": "So far, a great number of applications, or tools that can considerably improve our user experience whether we are old users or new, has been created. The application directory created by @roelandp is accepted as an official directory that currently contains more than 80 various tools, mainly created by the community members, with a few official ones. The number of applications is growing rapidly, thanks to talented developers and other users, whose ideas are being converted into functional programs.\n\nHere, I want to introduce you to an infographic that contains 17 very useful tools singled out and sorted into categories according to their use. The first category 'for new and old users' contains essential applications for most users, including applications such as the official chat server and block explorer, as well as a dedicated service for uninterrupted adding of photos, @jesta's tool for easier tracking of data related to your account, and a tool for real-time Steem Backed Dollar conversion, with a few extra applications included in the service.\n\nThe next group contains the applications essential for developers, led by @xeroc's piston which says for itself 'The Swiff Army Knife for the Steem network'. They facilitate the communication with the steem blockchain and there is also an application that facilitates the integration of Steem payments to your service. \n\nThe Miscellaneous group contains a variety of useful applications such as tools for curators, a precise browser of user reputation, a dedicated tool for creating shortened links with statistics, a Steem Stream display of all activity in real time with an option of adjusting your settings, as well as speech community and radio.\n\nLast group are applications in the category of data and analytics that contain most of data about the network, the network activity and the users. \n\nI apologize in advance if some of your favorite applications have been left out; if that is the case, you can always visit http://SteemTools.com which contains all the applications.\n\n*For a clearer view, it is recommended that you open the image in full resolution.* *[Infographic Hotlink!](http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png)*\nhttps://s11.postimg.io/8uxamnavn/revision_02.png\n---\n ![http://steemit.com/@powerup](https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png)", + "body_length": 2450, + "cashout_time": "2016-09-16T17:20:12", + "category": "infographic", + "children": 6, + "created": "2016-09-15T16:45:09", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"infographic\",\"steemit\",\"steem\",\"steemsquad\",\"minnowsunite\"],\"users\":[\"roelandp\",\"jesta\",\"xeroc\"],\"image\":[\"https:\\/\\/s11.postimg.io\\/8uxamnavn\\/revision_02.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/https:\\/\\/resources.sketch.cloud\\/public\\/102c8fee-b651-415a-8498-36de3c522b7d.png\"],\"links\":[\"http:\\/\\/SteemTools.com\",\"http:\\/\\/res.cloudinary.com\\/powerup\\/image\\/upload\\/c_scale,w_1437\\/v1473957114\\/revision-02_tdjkik.png\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T18:45:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53802622776333, + "parent_author": "", + "parent_permlink": "infographic", + "pending_payout_value": "171.268 HBD", + "percent_steem_dollars": 10000, + "permlink": "17-steem-tools-every-steemian-needs-to-know", + "post_id": 959438, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Steem Tools Every Steemian Needs To Know (Infographic)", + "title": "Steem Tools Every Steemian Needs To Know (Infographic)", + "total_payout_value": "0.000 HBD", + "url": "/infographic/@powerup/17-steem-tools-every-steemian-needs-to-know" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_follow_count.orig.json b/hivemind/tavern/condenser_api_patterns/get_follow_count.orig.json new file mode 100644 index 00000000..7136d8ae --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_follow_count.orig.json @@ -0,0 +1,5 @@ +{ + "account": "steemit", + "follower_count": 175, + "following_count": 0 +} \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_followers.orig.json b/hivemind/tavern/condenser_api_patterns/get_followers.orig.json new file mode 100644 index 00000000..40002c6f --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_followers.orig.json @@ -0,0 +1,72 @@ +[ + { + "follower": "therajmahal", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "mgibson", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "good-karma", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "blockcodes", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "pjheinz", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "sergey44", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "afsane", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "pawel-krawczyk", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "buckland", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "johnson.lukose", + "following": "steemit", + "what": [ + "blog" + ] + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_following.orig.json b/hivemind/tavern/condenser_api_patterns/get_following.orig.json new file mode 100644 index 00000000..91cb6486 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_following.orig.json @@ -0,0 +1,72 @@ +[ + { + "follower": "proskynneo", + "following": "webosfritos", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "peerplays", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "charlieshrem", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "tlc", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "jamesc", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "theoretical", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "steemitblog", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "ned", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "dan", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "katecloud", + "what": [ + "blog" + ] + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.orig.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.orig.json new file mode 100644 index 00000000..7ec725a8 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.orig.json @@ -0,0 +1,40 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "53926980", + "voter": "simgregg" + } + ], + "author": "simgregg", + "author_reputation": 0, + "beneficiaries": [], + "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", + "body_length": 1273, + "cashout_time": "2016-09-18T21:19:45", + "category": "polska", + "children": 1, + "created": "2016-08-18T21:19:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"polska\",\"wolnosc\",\"ojczyzna\",\"patriotyzm\",\"wiersz\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T21:19:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53926980, + "parent_author": "", + "parent_permlink": "polska", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "nasienie-wolnosci", + "post_id": 661285, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Nasienie Wolno\u015bci", + "title": "Nasienie Wolno\u015bci", + "total_payout_value": "0.000 HBD", + "url": "/polska/@simgregg/nasienie-wolnosci" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_reblogged_by.orig.json b/hivemind/tavern/condenser_api_patterns/get_reblogged_by.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_reblogged_by.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update.orig.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update.orig.json new file mode 100644 index 00000000..2b914187 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update.orig.json @@ -0,0 +1,94 @@ +[ + { + "active_votes": [ + { + "percent": "-100", + "reputation": 0, + "rshares": "-375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit46" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81125", + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "431616594", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58854897335", + "voter": "business" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "244129227", + "voter": "kewpiedoll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1615731741", + "voter": "naturalista" + } + ], + "author": "admin", + "author_reputation": 0, + "beneficiaries": [], + "body": "First Reply! Let's get this **party** started", + "body_length": 45, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "created": "2016-03-30T19:52:30", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T19:52:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62423410900, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 2, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@admin/firstpost" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_state.orig.json b/hivemind/tavern/condenser_api_patterns/get_state.orig.json new file mode 100644 index 00000000..206b22f6 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_state.orig.json @@ -0,0 +1,679 @@ +{ + "accounts": { + "steemit": { + "blog": [ + "steemit/firstpost" + ], + "comments": [], + "created": "2016-03-24 17:00:24", + "feed": [], + "json_metadata": "{\"profile\":{\"name\":null,\"about\":null,\"website\":null,\"location\":null,\"cover_image\":\"\",\"profile_image\":\"\"}}", + "name": "steemit", + "net_vesting_shares": 0.0, + "post_count": 0, + "recent_replies": [], + "reputation": 0, + "transfer_history": [] + } + }, + "content": { + "steemit/firstpost": { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + } + }, + "discussion_idx": { + "": {} + }, + "feed_price": { + "base": "0.637 HBD", + "quote": "1.000 HIVE" + }, + "props": { + "head_block_number": 5000000, + "last_irreversible_block_num": 4999980, + "sbd_interest_rate": 1000, + "sbd_print_rate": 10000, + "time": "2016-09-15T19:47:21", + "total_vesting_fund_steem": "149190428.013 HIVE", + "total_vesting_shares": "448144916705.468384 VESTS" + }, + "tag_idx": { + "trending": [] + }, + "tags": {} +} diff --git a/hivemind/tavern/condenser_api_patterns/get_trending_tags.orig.json b/hivemind/tavern/condenser_api_patterns/get_trending_tags.orig.json new file mode 100644 index 00000000..1407b4c3 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_trending_tags.orig.json @@ -0,0 +1,62 @@ +[ + { + "comments": 10141, + "name": "steem", + "top_posts": 1158, + "total_payouts": "82438.187 HBD" + }, + { + "comments": 5633, + "name": "travel", + "top_posts": 1159, + "total_payouts": "66237.472 HBD" + }, + { + "comments": 7565, + "name": "food", + "top_posts": 1373, + "total_payouts": "59957.608 HBD" + }, + { + "comments": 11430, + "name": "introduceyourself", + "top_posts": 1214, + "total_payouts": "58893.319 HBD" + }, + { + "comments": 16286, + "name": "photography", + "top_posts": 4360, + "total_payouts": "53604.656 HBD" + }, + { + "comments": 4975, + "name": "money", + "top_posts": 998, + "total_payouts": "42462.388 HBD" + }, + { + "comments": 4028, + "name": "writing", + "top_posts": 807, + "total_payouts": "36257.390 HBD" + }, + { + "comments": 2890, + "name": "bitcoin", + "top_posts": 1220, + "total_payouts": "31111.750 HBD" + }, + { + "comments": 3209, + "name": "science", + "top_posts": 680, + "total_payouts": "25141.041 HBD" + }, + { + "comments": 2775, + "name": "philosophy", + "top_posts": 367, + "total_payouts": "24362.939 HBD" + } +] \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/find_comments.orig.json b/hivemind/tavern/database_api_patterns/find_comments.orig.json new file mode 100644 index 00000000..cb406501 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/find_comments.orig.json @@ -0,0 +1,53 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-24T09:30:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit", + "author_rewards": 3548, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "children_abs_rshares": 0, + "created": "2016-03-30T18:30:18", + "curator_payout_value": { + "amount": "756", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 0, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 90, + "parent_author": "", + "parent_permlink": "meta", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Welcome to Steem!", + "total_payout_value": { + "amount": "942", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments.orig.json b/hivemind/tavern/database_api_patterns/list_comments.orig.json new file mode 100644 index 00000000..3362c41c --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-24T09:30:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit", + "author_rewards": 3548, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "children_abs_rshares": 0, + "created": "2016-03-30T18:30:18", + "curator_payout_value": { + "amount": "756", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 0, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 90, + "parent_author": "", + "parent_permlink": "meta", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Welcome to Steem!", + "total_payout_value": { + "amount": "942", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-06-10T08:55:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-awesome", + "author_rewards": 0, + "beneficiaries": [], + "body": ":)", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-06-10T08:03:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 19953, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-06-10T08:03:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -401748374094, + "net_votes": -1, + "parent_author": "", + "parent_permlink": "steemit", + "percent_steem_dollars": 10000, + "permlink": "show-me-some-love-please", + "reward_weight": 10000, + "root_author": "steemit-awesome", + "root_permlink": "show-me-some-love-please", + "title": "show me some love please?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-06-10T08:02:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-awesome", + "author_rewards": 0, + "beneficiaries": [], + "body": "who can upvote me?", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-06-10T08:00:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 19951, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-06-10T08:00:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -75903272807, + "net_votes": 0, + "parent_author": "", + "parent_permlink": "steemit", + "percent_steem_dollars": 10000, + "permlink": "what-is-steemit", + "reward_weight": 10000, + "root_author": "steemit-awesome", + "root_permlink": "what-is-steemit", + "title": "What is Steemit", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-01T20:01:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-com", + "author_rewards": 0, + "beneficiaries": [], + "body": "grat", + "cashout_time": "1969-12-31T23:59:59", + "category": "holiday", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-01T20:01:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 397905, + "json_metadata": "{\"tags\":[\"holiday\"]}", + "last_payout": "2016-08-31T15:38:18", + "last_update": "2016-08-01T20:01:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "grimjo33", + "parent_permlink": "tangkuban-perahu-another-beautiful-indonesia-tourism-destination", + "percent_steem_dollars": 10000, + "permlink": "re-grimjo33-tangkuban-perahu-another-beautiful-indonesia-tourism-destination-20160801t200152355z", + "reward_weight": 10000, + "root_author": "grimjo33", + "root_permlink": "tangkuban-perahu-another-beautiful-indonesia-tourism-destination", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-01T20:06:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-com", + "author_rewards": 0, + "beneficiaries": [], + "body": "why so naiF", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-01T20:06:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 398017, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-09-01T23:15:57", + "last_update": "2016-08-01T20:06:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "riensen", + "parent_permlink": "steemit-etiquette-using-95-bot-accounts-to-upvote-your-own-content-fair-game-or-not-cool", + "percent_steem_dollars": 10000, + "permlink": "re-riensen-steemit-etiquette-using-95-bot-accounts-to-upvote-your-own-content-fair-game-or-not-cool-20160801t200656898z", + "reward_weight": 10000, + "root_author": "riensen", + "root_permlink": "steemit-etiquette-using-95-bot-accounts-to-upvote-your-own-content-fair-game-or-not-cool", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T19:09:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-de", + "author_rewards": 22090, + "beneficiaries": [], + "body": "

\u00a0Original post by @dantheman\u00a0

\n

\n

Da Steem beliebige Daten welche an einem Account gekn\u00fcpft sind unterst\u00fctzt, liegt es nahe f\u00fcr Erfahrene Entwickler die von Namecoin und \u00e4hnlichen Projekten genutzt werden auf Steem zu portieren.

\n

Sind diese Tools erst vorhanden, kann der Steem-Account Name als Domain f\u00fcr die eigene Webseite genutzt werden.

\n

Ich bin mir sicher, dass derjenige, welcher zuerst benutzerfreundliche und qualitative Tools ver\u00f6ffentlicht um DNS-Abfragen mittels der Metadaten des Steem-Accounts zu erm\u00f6glichen, eine Flut von Upvotes erh\u00e4lt.

\n

Nur eine Idee am Rande f\u00fcr jene die gewinnbringende Post wollen.

\n

Vorteile

\n
    \n
  • Dezentralisierte TLS (HTTPS) zertifizierte Validierung, gest\u00fctzt vom Blockchain Konsens
  • \n
  • Sicherung der Meinungsfreiheit im Internet durch resistentmachung gegen Zensur
  • \n
  • Zugriff auf Webseiten durch .steem Top-Level Domains
  • \n
  • Verkn\u00fcpfte Identit\u00e4tsinformationen wie GPG oder OTR Schl\u00fcssel sowieso Emails, Bitcoins und Bitmessage-Adressen an eine Identit\u00e4t deiner Wahl
  • \n
\n

Steemit-de wird die wichtigsten Publikationen und popul\u00e4ren Post ins Deutsche \u00fcbersetzten, um das Wachstum von Steemit zu beschleunigen

", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-09T10:04:48", + "curator_payout_value": { + "amount": "9740", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 521662, + "json_metadata": "{\"tags\":[\"namecoin\",\"dns\",\"steem\",\"bounty\",\"deutsch\"],\"image\":[\"https://i.imgsafe.org/9aa30b795c.png\"],\"links\":[\"https://steemit.com/namecoin/@dantheman/dns-via-steem\",\"https://steemit.com/@dantheman\"]}", + "last_payout": "2016-09-08T23:23:39", + "last_update": "2016-08-09T10:04:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 50, + "parent_author": "", + "parent_permlink": "namecoin", + "percent_steem_dollars": 10000, + "permlink": "dns-via-steem-deutsche-version-deutsch", + "reward_weight": 10000, + "root_author": "steemit-de", + "root_permlink": "dns-via-steem-deutsche-version-deutsch", + "title": "DNS via STEEM [Deutsche Version] #deutsch", + "total_payout_value": { + "amount": "45460", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T10:05:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-de", + "author_rewards": 0, + "beneficiaries": [], + "body": "Der Account hier wurde leider geschlossen. Der Key ging verloren. Machen hier weiter und haben jetzt Backups", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-09T10:05:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 521670, + "json_metadata": "{\"tags\":[\"namecoin\"]}", + "last_payout": "2016-09-08T21:40:24", + "last_update": "2016-08-09T10:05:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "rittr", + "parent_permlink": "re-steemit-germany-dns-via-steem-deutsche-version-20160809t093544531z", + "percent_steem_dollars": 10000, + "permlink": "re-rittr-re-steemit-germany-dns-via-steem-deutsche-version-20160809t100526949z", + "reward_weight": 10000, + "root_author": "steemit-germany", + "root_permlink": "dns-via-steem-deutsche-version", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T10:17:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-germany", + "author_rewards": 16, + "beneficiaries": [], + "body": "

Original post by @dantheman

\n

\n

Da Steem beliebige Daten welche an einem Account gekn\u00fcpft sind unterst\u00fctzt, liegt es nahe f\u00fcr Erfahrene Entwickler die von Namecoin und \u00e4hnlichen Projekten genutzt werden auf Steem zu portieren.

\n

Sind diese Tools erst vorhanden, kann der Steem-Account Name als Domain f\u00fcr die eigene Webseite genutzt werden.

\n

Ich bin mir sicher, dass derjenige, welcher zuerst benutzerfreundliche und qualitative Tools ver\u00f6ffentlicht um DNS-Abfragen mittels der Metadaten des Steem-Accounts zu erm\u00f6glichen, eine Flut von Upvotes erh\u00e4lt.

\n

Nur eine Idee am Rande f\u00fcr jene die gewinnbringende Post wollen.

\n

Vorteile

\n
    \n
  • Dezentralisierte TLS (HTTPS) zertifizierte Validierung, gest\u00fctzt vom Blockchain Konsens\u00a0
  • \n
  • Sicherung der Meinungsfreiheit im Internet durch resistentmachung gegen Zensur
  • \n
  • Zugriff auf Webseiten durch .steem Top-Level Domains
  • \n
  • Verkn\u00fcpfte Identit\u00e4tsinformationen wie GPG oder OTR Schl\u00fcssel sowieso Emails, Bitcoins und Bitmessage-Adressen an eine Identit\u00e4t deiner Wahl
  • \n
", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 6, + "children_abs_rshares": 0, + "created": "2016-08-09T07:44:57", + "curator_payout_value": { + "amount": "6", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 520707, + "json_metadata": "{\"tags\":[\"namecoin\",\"dns\",\"steem\",\"bounty\",\"deutsch\"],\"users\":[\"dantheman\"],\"image\":[\"https://i.imgsafe.org/9842418ea3.png\"],\"links\":[\"https://steemit.com/namecoin/@dantheman/dns-via-steem\"]}", + "last_payout": "2016-09-08T21:40:24", + "last_update": "2016-08-09T09:37:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "namecoin", + "percent_steem_dollars": 10000, + "permlink": "dns-via-steem-deutsche-version", + "reward_weight": 10000, + "root_author": "steemit-germany", + "root_permlink": "dns-via-steem-deutsche-version", + "title": "DNS via STEEM [Deutsche Version]", + "total_payout_value": { + "amount": "32", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-09T10:17:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-germany", + "author_rewards": 0, + "beneficiaries": [], + "body": "Ist in Arbeit :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "namecoin", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-09T09:38:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 521490, + "json_metadata": "{\"tags\":[\"namecoin\"]}", + "last_payout": "2016-09-08T21:40:24", + "last_update": "2016-08-09T09:38:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "rittr", + "parent_permlink": "re-steemit-germany-dns-via-steem-deutsche-version-20160809t093544531z", + "percent_steem_dollars": 10000, + "permlink": "re-rittr-re-steemit-germany-dns-via-steem-deutsche-version-20160809t093806686z", + "reward_weight": 10000, + "root_author": "steemit-germany", + "root_permlink": "dns-via-steem-deutsche-version", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T17:55:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit-inga", + "author_rewards": 2020, + "beneficiaries": [], + "body": "\"IMG_9517edc90.jpg\"\n\nMy name is Inga. I am a Latvian at heart, adventure lover, 10+years yogi, licensed stock broker, photographer, traveler, pescaterian, chess playing sapiosexual, great friend and true believer in doing good for others. My glass is always half full, sometimes it has kambucha sometimes tequila. \n\nI was born in LATVIA, Small country by the Baltic sea. Came to America 14 years and since then I have lived in California, Colorado, Virginia and now call beautiful Salt Lake City Utah my home.\n\n@mranderson introduced me to Steemit, my first gig was the translation for the app in Latvian. https://steemit.com/writing/@kencode/do-you-know-a-foreign-language-crowdvoting\n\nMy first post is introduction to baby girl Zariah and her family, I have been brewing it for few weeks since I took portraits of the little girl who is on life support and shows well what a \"Fighter\" means since her birth. I believe Steemit community is ready to combine its steampower and help her! Please UPVOTE, SHARE and Help me to Help Zariah!\n\nhttps://steemit.com/votefunding/@steemit-inga/my-name-is-inga-and-steemers-please-multiply-community-healing-power-and-help-this-amazing-little-fighter", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 9, + "children_abs_rshares": 0, + "created": "2016-08-02T14:23:09", + "curator_payout_value": { + "amount": "1575", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 411238, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"votefunding\",\"yoga\",\"photography\",\"finance\"],\"users\":[\"mranderson\"],\"image\":[\"https://www.steemimg.com/images/2016/08/02/IMG_9517edc90.jpg\"],\"links\":[\"https://steemit.com/writing/@kencode/do-you-know-a-foreign-language-crowdvoting\"]}", + "last_payout": "2016-09-02T04:02:27", + "last_update": "2016-08-02T14:23:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 48, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_steem_dollars": 10000, + "permlink": "i-was-born-in-latvia-small-country-by-the-baltic-sea-my-glass-is-always-half-full-sometimes-it-has-kambucha-sometimes-tequila", + "reward_weight": 10000, + "root_author": "steemit-inga", + "root_permlink": "i-was-born-in-latvia-small-country-by-the-baltic-sea-my-glass-is-always-half-full-sometimes-it-has-kambucha-sometimes-tequila", + "title": "I was born in LATVIA, Small country by the Baltic sea. My glass is always half full, sometimes it has kambucha sometimes tequila.", + "total_payout_value": { + "amount": "4828", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.orig.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.orig.json new file mode 100644 index 00000000..a08b372d --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-09-14T19:13:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "allgoodthings", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congrats to you all! I am new to Steemit and excited to partake in the next challenge. I truly enjoying preparing food!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-14T19:13:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 951782, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T19:13:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160914t191355279z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-13T21:42:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "haphazard-hstead", + "author_rewards": 0, + "beneficiaries": [], + "body": "Nice to hear that you are feeling a lot better, @givemeyoursteem! I'm glad I checked the foodchallenge group on the Steemit chat. Congratulations, everyone! I think all the response just shows how people really connected with the food challenge. I'm looking forward to the next one!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-13T21:42:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 944322, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-13T21:42:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160913t214242068z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "12919640292", + "active": "2016-09-12T09:54:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "englishtchrivy", + "author_rewards": 0, + "beneficiaries": [], + "body": "@knozaki2015 thank you for the 25 SBD and the congrats memo. I appreciate it a great lot! You made me 25SBD richer!\nThanks to everyone who joined this challenge! This was the most fun food challenge I've ever joined- thanks to all the very encouraging co - challengers who participated!\n Congratulations @meesterboom for bagging the 1st prize! Hoot - hoot! Men power!\n\n@givemeyoursteem Thank you for announcing it. I HOPE YOU GO ON WITH WHAT YOU ARE DOING. YOU HAVE BEEN AN INSPIRATION TO MANY MINNOWS WHO ARE JOINING THE FOOD CHALLENGE. IF THE OTHER MINNOWS DON'T SEE THAT YOU ARE DOING THIS TO ACTUALLY SUPPORT US THEN FOR SURE NOT HAVING A FOOD CHALLENGE FOR A WEEK WOULD SURELY TEACH THEM A LESSON. I HOPE YOU SCROLLED DOWN TO THIS POST'S COMMENT THREAD AND DID NOT JUST READ YOUR REPLY FOLDER https://steemit.com/foodchallenge/@givemeyoursteem/steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money\n\nIT'S TRUE SOME MINNOWS HAVE WRITTEN MESSAGES SOME OTHER MINNOWS WHO PARTICIPATED CAN'T GET A GRIP OF , I GUESS THAT'S THE RESULT OF COMMUNICATING ON WRITTEN TEXTS.\nIT'S NOT ACCEPTABLE TO CALL YOU A SCAM BECAUSE YOU HAVE DELIVERED THE RESULTS OF THE 1ST 3 FOOD CHALLENGES ON TIME. WHOEVER HAS CALLED YOU THAT SHOULD APOLOGIZE HERE - OR MAYBE IN AN ARTICLE.\nPLEASE GO ON MAYBE ITS JUST ONE MINNOW WHO CALLED YOU THAT? THE OTHERS WHO PARTICIPATED HERE, INCLUDING MYSELF APPRECIATE WHAT YOU DO A GREAT LOT.\n@givemeyoursteem YOU'RE A HERO AND AN INSPIRATION HERE IN STEEMIT! YOU HAVE HELPED MANY MINNOWS GET NOTICED!\nYOU KNOW YOURSELF BETTER THAN ANYONE ELSE SO WHATEVER NASTY THINGS PEOPLE MAY CALL YOU OR THROW YOU HERE - DON'T GIVE A DAMN ON THAT! I HOPE YOU GO ON! \nTake care and I hope you get to recuperate soon. Best regards from this side of the earth <3", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-12T09:25:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 929311, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"meesterboom\",\"givemeyoursteem\"],\"links\":[\"https://steemit.com/foodchallenge/@givemeyoursteem/steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-12T09:54:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": "12919640292", + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160912t092547152z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "12919640292" + }, + { + "abs_rshares": "12919640292", + "active": "2016-09-11T20:57:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "oumar", + "author_rewards": 0, + "beneficiaries": [], + "body": "Cool! I won 2th place!! Thanks @givemeyoursteem and thanks to all the sponsors!\n\nPlease don't listen to the people criticizing we deeply appreciate your effort on organizing this! Some of us just were anxious to know the results hehe but that is no reason to say bad things. Thanks again for making this possible and I hope there are more challenges soon! Also I hope you are already feeling better.", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T20:54:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 925249, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T20:57:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": "12919640292", + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t205445094z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "12919640292" + }, + { + "abs_rshares": "12919640292", + "active": "2016-09-14T06:01:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vi1son", + "author_rewards": 0, + "beneficiaries": [], + "body": "Do not listen to what say the FUDers and haters. Be strong @givemeyoursteem! We all with you!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-09-11T18:57:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 924238, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T18:57:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": "12919640292", + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t185742671z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "12919640292" + }, + { + "abs_rshares": 0, + "active": "2016-09-11T14:52:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "papa-pepper", + "author_rewards": 0, + "beneficiaries": [], + "body": "## Excellent choices and excellent dishes.\n# Congrats @meesterboom and the rest of the winners!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T14:52:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 922314, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"meesterboom\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T14:52:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t145241389z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T14:30:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "alitas", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congratulations to the winners !\n\n\u2022\u2665\u2022\u2606 @alitas \u2022\u2606\u2022\u2665\u2022", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T14:30:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 922188, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"alitas\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T14:30:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t143031067z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T14:01:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gringalicious", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you again for hosting the Challenge and I very much appreciate being the wild pick. Looking forward to the next challenge!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T14:01:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 922015, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T14:01:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t140113934z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T13:20:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "celebr1ty", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thanks a lot!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T13:20:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 921769, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T13:20:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t132117882z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T13:14:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "bullionstackers", + "author_rewards": 0, + "beneficiaries": [], + "body": "Good stuffs \nI know the pork goes Bang Bang at @meesterboom\n\ud83d\udc4d\nCongratulations to all winners \ud83d\udc4d\u2764\ufe0f\nSweet \u2764\ufe0f\nKeep on Steeming \u2705\ud83d\udc4d\u2764\ufe0f\nGotta Love it to be in it", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T13:14:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 921750, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"meesterboom\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T13:14:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t131427021z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.orig.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.orig.json new file mode 100644 index 00000000..d667d9e0 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-28T16:02:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "r4fken", + "author_rewards": 0, + "beneficiaries": [], + "body": "Same here, we invite you to bring cookies to Brussels tho.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T16:02:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 779033, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-30T03:35:57", + "last_update": "2016-08-28T16:02:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -490754060752, + "net_votes": -7, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t152858919z", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t160212524z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "steemit-cookies-for-the-london-meet-up", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:58:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "the-future", + "author_rewards": 0, + "beneficiaries": [], + "body": "Sweden is awesome man!", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:56:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 778975, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "2016-08-29T15:16:36", + "last_update": "2016-08-28T15:56:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t155605821z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:58:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "allasyummyfood", + "author_rewards": 0, + "beneficiaries": [], + "body": "stunning pictures!! wow I'm speechless!", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:45:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 778824, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "2016-08-29T15:16:36", + "last_update": "2016-08-28T15:45:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t154507601z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:41:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "allasyummyfood", + "author_rewards": 0, + "beneficiaries": [], + "body": "You will just have to visit us here next time :))", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T15:41:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 778773, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-30T03:35:57", + "last_update": "2016-08-28T15:41:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t152858919z", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t154119664z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "steemit-cookies-for-the-london-meet-up", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:39:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "meesterboom", + "author_rewards": 0, + "beneficiaries": [], + "body": "Its a pleasure!", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T15:39:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 778749, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-08-29T13:39:57", + "last_update": "2016-08-28T15:39:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-meesterboom-hearty-vegetable-soup-easy-and-quick-20160828t152731480z", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-re-meesterboom-hearty-vegetable-soup-easy-and-quick-20160828t153933112z", + "reward_weight": 10000, + "root_author": "meesterboom", + "root_permlink": "hearty-vegetable-soup-easy-and-quick", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:08:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "I think Swag Sunday is a great idea and agree with @halo , it's a great bonus for us, I'm so thankful! You should also get rewarded :) A \"resteem\" feature seems like a really good idea, hope it become true!", + "cashout_time": "1969-12-31T23:59:59", + "category": "contest", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:19:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 778505, + "json_metadata": "{\"tags\":[\"contest\"],\"users\":[\"halo\"]}", + "last_payout": "2016-08-29T07:30:36", + "last_update": "2016-08-28T15:19:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t150753974z", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t151900275z", + "reward_weight": 10000, + "root_author": "condra", + "root_permlink": "swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:22:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "meesterboom", + "author_rewards": 0, + "beneficiaries": [], + "body": "That sunset one in particular is stunning.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:18:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 778494, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "2016-08-29T15:16:36", + "last_update": "2016-08-28T15:18:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t151812366z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:22:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "allasyummyfood", + "author_rewards": 0, + "beneficiaries": [], + "body": "Really beautiful pictures! thank you for sharing :) x", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:08:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 778395, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "2016-08-29T15:16:36", + "last_update": "2016-08-28T15:08:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t150830108z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T14:14:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "iggy", + "author_rewards": 0, + "beneficiaries": [], + "body": "Vikaresj\u00f6n lake in Gislaved Komun , 60 km from Jonkoping . And the fish is pike perch , on Swedish is i think joos or something like that", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T14:14:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 777927, + "json_metadata": "{\"tags\":[\"photography\"]}", + "last_payout": "2016-08-29T13:12:09", + "last_update": "2016-08-28T14:14:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-iggy-sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life-20160828t140609818z", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-re-iggy-sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life-20160828t141345606z", + "reward_weight": 10000, + "root_author": "iggy", + "root_permlink": "sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T14:10:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "iggy", + "author_rewards": 0, + "beneficiaries": [], + "body": "South or North ? I love Sweden , i have lived in J\u00f6nk\u00f6ping area for 3 years . Beautyfull nature and people.Now i'm moving further north to Bodo in Norway .", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T14:07:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 777876, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "2016-08-29T15:16:36", + "last_update": "2016-08-28T14:07:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-iggy-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t140244741z", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-re-iggy-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t140721103z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.orig.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.orig.json new file mode 100644 index 00000000..2679e927 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 588, + "beneficiaries": [], + "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", + "cashout_time": "2016-09-28T20:19:39", + "category": "foodchallenge", + "children": 18, + "children_abs_rshares": 2374341643, + "created": "2016-08-28T17:15:12", + "curator_payout_value": { + "amount": "131", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779947, + "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:15:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T01:24:24", + "net_rshares": 0, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "foodchallenge", + "percent_steem_dollars": 10000, + "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", + "total_payout_value": { + "amount": "576", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:15:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "forklognews", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\u041f\u0440\u043e\u0448\u0435\u0434\u0448\u0430\u044f \u043d\u0435\u0434\u0435\u043b\u044f \u043e\u043a\u0430\u0437\u0430\u043b\u0430\u0441\u044c \u0431\u043e\u0433\u0430\u0442\u043e\u0439 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u043c\u0438, \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u043c \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0434\u043b\u044f \u043d\u0430\u0448\u0435\u0439 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u0441\u0442\u0430\u043b\u043e \u0434\u0432\u0443\u0445\u043b\u0435\u0442\u0438\u0435 Forklog. \u0414\u0432\u0430 \u0433\u043e\u0434\u0430 \u043d\u0430\u0437\u0430\u0434, 25 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0431\u044b\u043b \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0434\u043e\u043c\u0435\u043d ForkLog.com, \u0430 \u0441\u043f\u0443\u0441\u0442\u044f \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u0434\u0435\u043b\u0430\u043d\u044b \u043f\u0435\u0440\u0432\u044b\u0435 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u043d\u0430 \u0441\u0430\u0439\u0442\u0435. \u041e\u0431 \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0445, \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u0445 \u043c\u0438\u0440\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442, \u0432\u044b \u0443\u0437\u043d\u0430\u0435\u0442\u0435 \u0438\u0437 \u043d\u0430\u0448\u0435\u0433\u043e \u0435\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0439\u0434\u0436\u0435\u0441\u0442\u0430. 

\n

 \u0411\u0418\u0420\u0416\u0418

\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u0438\u043c\u0435\u043d\u0438\u043d\u043d\u0438\u043a\u043e\u043c \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0438 \u0441\u0442\u0430\u043b\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 Bitstamp, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u043e\u0442\u043c\u0435\u0442\u0438\u043b\u0430 \u043f\u044f\u0442\u0438\u043b\u0435\u0442\u0438\u0435 \u0441\u043e \u0434\u043d\u044f \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f. \u041a \u044d\u0442\u043e\u043c\u0443 \u0441\u043e\u0431\u044b\u0442\u0438\u044e \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0438\u0443\u0440\u043e\u0447\u0438\u043b\u0430 \u043a\u043e\u043d\u043a\u0443\u0440\u0441 \u0441 \u0446\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0440\u0438\u0437\u0430\u043c\u0438.

\n

\u041d\u043e \u044e\u0431\u0438\u043b\u0435\u0438 \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043f\u043e\u0432\u043e\u0434\u043e\u043c \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0430\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 \u0438 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0431\u0438\u0440\u0436 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0440\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0442 \u044d\u0442\u043e \u043c\u043d\u0435\u043d\u0438\u0435, \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u044f \u0433\u0434\u0435-\u0442\u043e \u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0435, \u0430 \u0433\u0434\u0435-\u0442\u043e \u0438 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f.

\n

\u0422\u0430\u043a, \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 GDAX \u043d\u0430\u0447\u0430\u043b\u0430 \u0442\u043e\u0440\u0433\u0438 \u0447\u0435\u0442\u0432\u0435\u0440\u0442\u043e\u0439 \u043f\u043e \u0440\u044b\u043d\u043e\u0447\u043d\u043e\u0439 \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043e\u0439 Litecoin. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0434\u0435\u043b\u0430\u043d\u043e \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0431\u043b\u043e\u0433\u0435 \u0431\u0438\u0440\u0436\u0438. \u0414\u043b\u044f \u0442\u043e\u0440\u0433\u043e\u0432 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0434\u0432\u0435 \u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043f\u0430\u0440\u044b: \u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430\u043c \u0421\u0428\u0410 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043f\u0430\u0440\u0430 LTC / USD, \u0432\u0441\u0435\u043c \u043f\u0440\u043e\u0447\u0438\u043c \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u2014 \u043f\u0430\u0440\u0430 LTC / BTC.

\n

\u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, 23 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0442\u0432\u0438\u0442\u0442\u0435\u0440\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u043e\u0439 \u0431\u0438\u0440\u0436\u0438 Poloniex \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043e\u0441\u043d\u044f\u0442\u0438\u0438 \u0441 \u0442\u043e\u0440\u0433\u043e\u0432 27 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442. \u0422\u043e\u0440\u0433\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0435\u043d\u044b 5 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430 \u0438 \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0443\u0436\u0435 \u0432\u044b\u0437\u0432\u0430\u043b\u043e \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043d\u0435\u0434\u043e\u0443\u043c\u0435\u043d\u0438\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430, \u0432\u0435\u0434\u044c \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u0447\u0435\u043d\u044c \u0432\u043e\u0448\u043b\u0438 \u0442\u0430\u043a\u0438\u0435 \u0430\u043b\u044c\u0442\u043a\u043e\u0438\u043d\u044b, \u043a\u0430\u043a DAO, Dashcoin \u0438 Mintcoin, \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0438\u0433 $1,22 \u043c\u043b\u043d. 

\n

\n

 \u041f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u043a \u043a\u043e\u043d\u0446\u0443 \u0438 \u043d\u0430\u0448\u0443\u043c\u0435\u0432\u0448\u0430\u044f \u0438\u0441\u0442\u043e\u0440\u0438\u044f \u0441 \u0431\u0438\u0440\u0436\u0435\u0439 Bitfinex, \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0435\u0439 \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u0437\u043b\u043e\u043c\u0430. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0431\u0438\u0440\u0436\u0438 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u0438\u0438 \u0434\u043e\u0433\u043e\u0432\u043e\u0440\u0430 \u0441 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u043e\u0439 BnkToTheFuture \u0441 \u0446\u0435\u043b\u044c\u044e \u0432\u043e\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0440\u0435\u0434\u0441\u0442\u0432 \u0432\u043a\u043b\u0430\u0434\u0447\u0438\u043a\u043e\u0432 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u0434\u043e\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0447\u0430\u0441\u0442\u0438\u044f \u0432 \u0430\u043a\u0446\u0438\u043e\u043d\u0435\u0440\u043d\u043e\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438. 

\n

\n

 \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0443 \u0441 BnkToTheFuture \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Bitfinex \u0441\u043c\u043e\u0433\u0443\u0442 \u043e\u0431\u043c\u0435\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u0438\u043c \u0442\u043e\u043a\u0435\u043d\u044b BFX \u043d\u0430 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0443\u044e \u0434\u043e\u043b\u044e \u0432 iFinex Inc, \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438\u0445 \u0412\u0438\u0440\u0433\u0438\u043d\u0441\u043a\u0438\u0445 \u041e\u0441\u0442\u0440\u043e\u0432\u0430\u0445 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u0430\u044f \u043d\u043e\u0432\u043e\u0441\u0442\u044c \u043f\u0440\u0438\u0448\u043b\u0430 \u043d\u0430 \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0435 \u0438\u0437 \u0422\u0443\u0440\u0446\u0438\u0438, \u0433\u0434\u0435 \u0432\u0435\u0434\u0443\u0449\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0438 BTCTurk \u0431\u044b\u043b\u0430 \u0432\u044b\u043d\u0443\u0436\u0434\u0435\u043d\u0430 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443, \u0441\u0442\u043e\u043b\u043a\u043d\u0443\u0432\u0448\u0438\u0441\u044c \u0441 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u043e\u043c \u043e\u0442\u043a\u0430\u0437\u043e\u043c \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0430 \u043e\u0442 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0433\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430. \u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442 \u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c, \u043e\u0434\u043d\u0430\u043a\u043e \u0438\u0437-\u0437\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0445 \u0441\u0447\u0435\u0442\u043e\u0432 \u044d\u0442\u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u0442\u044f\u043d\u0443\u0442\u044c\u0441\u044f. 

\n

 \u041a\u041e\u0428\u0415\u041b\u042c\u041a\u0418 \u0418 \u041f\u041b\u0410\u0422\u0401\u0416\u041d\u042b\u0415 \u0421\u0415\u0420\u0412\u0418\u0421\u042b

\n

\u041f\u0435\u0440\u0432\u044b\u043c \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u044b\u043c \u043a\u043e\u0448\u0435\u043b\u044c\u043a\u043e\u043c, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0438\u043c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Ethereum, \u0441\u0442\u0430\u043b Trezor. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0430 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 Trezor \u043d\u0430 Github.

\n

\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043e\u0442 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438-\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430 SatoshiLabs \u043f\u043e\u043a\u0430, \u0432\u043f\u0440\u043e\u0447\u0435\u043c, \u043d\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u043b\u043e, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0434\u0430\u0442\u0430 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0435\u043b\u0438\u0437\u0430 \u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u0430 \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043e\u0441\u0442\u0430\u0435\u0442\u0441\u044f \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e\u0439.

\n

\u0421\u043f\u0438\u0441\u043a\u0438 \u0440\u0430\u0431\u043e\u0447\u0438\u0445 \u0432\u0430\u043b\u044e\u0442 \u043f\u043e\u043f\u043e\u043b\u043d\u0438\u043b\u0438\u0441\u044c \u0443 \u043f\u043b\u0430\u0442\u0451\u0436\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 Bitwala, \u0432\u043a\u043b\u044e\u0447\u0438\u0432\u0448\u0435\u0433\u043e \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Dash \u0438 Emercoin, \u0438 \u0432\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044c\u0441\u043a\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b Cryptobuyer, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0435\u0439 Dash. \u041e\u0442\u043c\u0435\u0442\u0438\u043c, \u0447\u0442\u043e \u0436\u0438\u0442\u0435\u043b\u0438 \u0412\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044b, \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043d\u0435\u0442 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u0432 \u043b\u0438\u0431\u043e \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u043e\u0432 \u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u0432 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442, \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0443\u0441\u043b\u0443\u0433\u0430\u043c\u0438 \u043c\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0451\u0440\u0430 Cryptobuyer \u2013 \u0441\u0435\u0442\u044c\u044e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u043c\u0430\u0442\u043e\u0432 TigoCTM.

\n

\u0422\u0430\u043a\u0436\u0435 \u0432\u044b\u0448\u043b\u0430 \u0432 \u0441\u0432\u0435\u0442 \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f Ethereum-\u043a\u043e\u0448\u0435\u043b\u044c\u043a\u0430 Mist \u0441 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u043e\u0439 Coinbase Buy Widget. \u041e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0435\u0451 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u043e\u0441\u043e\u0431\u0435\u043d\u043d\u043e\u0441\u0442\u0435\u0439 \u0441\u0442\u0430\u043b\u043e \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 Coinbase Buy Widget \u2013 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430, \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0438\u0442\u044c \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u043a\u0443\u043f\u043a\u0443 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043d\u0430 \u0441\u0443\u043c\u043c\u0443 \u0434\u043e $5.

\n

\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0434\u0430\u043d\u043d\u0430\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c \u0438\u0437 \u0421\u0428\u0410 \u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043d\u0430\u043b\u0438\u0447\u0438\u044f \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430 \u043d\u0430 Coinbase. 

\n

\n

 \u0411\u0410\u041d\u041a\u0418 \u0418 \u041a\u041e\u0420\u041f\u041e\u0420\u0410\u0426\u0418\u0418

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u043c \u0438\u0437\u0432\u0435\u0441\u0442\u0438\u0435\u043c, \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u044b\u043c \u0441\u0442\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0432\u0435\u0441\u0442\u043d\u0438\u043a\u043e\u043c \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0445 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0435, \u0441\u0442\u0430\u043b\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0438\u0437\u0434\u0430\u043d\u0438\u044f Financial Times \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0440\u044f\u0434 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0445 \u043c\u0438\u0440\u043e\u0432\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u0432 \u043f\u0440\u0438\u043d\u044f\u043b \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043d\u043e\u0432\u043e\u0439 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u043b\u044e\u0442\u044b. \u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0435\u0439 \u0431\u0430\u043d\u043a\u043e\u0432 UBS, Deutsche Bank, Santander \u0438 BNY Mellon \u043e\u0436\u0438\u0434\u0430\u043b\u043e\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u043d\u043e \u0434\u043e \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u043d\u0435 \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c.

\n

\u0415\u0441\u043b\u0438 \u044d\u0442\u043e \u043e\u043a\u0430\u0436\u0435\u0442\u0441\u044f \u043d\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u0443\u0442\u043a\u043e\u0439, \u0442\u043e \u0441\u0442\u043e\u0438\u0442 \u043e\u0436\u0438\u0434\u0430\u0442\u044c, \u0447\u0442\u043e \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u043a \u044d\u0442\u043e\u0439 \u0438\u043d\u0438\u0446\u0438\u0430\u0442\u0438\u0432\u0435 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u044f\u0442\u0441\u044f \u0438 \u043f\u0440\u043e\u0447\u0438\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u044b \u0441\u043e \u0432\u0441\u0435\u0445 \u043a\u043e\u043d\u0446\u043e\u0432 \u0441\u0432\u0435\u0442\u0430, \u0434\u0430\u0436\u0435 \u0441 \u0434\u0430\u043b\u0451\u043a\u043e\u0433\u043e \u0430\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0438\u043d\u0435\u043d\u0442\u0430. \u0422\u0430\u043c \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0439 \u042e\u0436\u043d\u043e-\u0410\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u0431\u0430\u043d\u043a\u0430 \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e \u0432 \u0441\u0432\u043e\u0435\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0438 \u043d\u0430 \u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0438\u0438 \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u043a\u0440\u0438\u043f\u0442\u043e\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u0443\u0436\u0435 \u0438\u0437\u0443\u0447\u0430\u0435\u0442 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0437\u0430\u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043e\u0432\u0430\u043d \u0432 \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0434\u0430\u0442\u044c \u044d\u0442\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f. 

\n
 \u00ab\u041a\u0430\u043a \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u0431\u0430\u043d\u043a, \u043c\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044b \u043a \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u043c \u043d\u0435\u0441\u043c\u043e\u0442\u0440\u044f \u043d\u0430 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u043e\u0435 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u043e\u0440\u043e\u0432 \u043a \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u043c. \u041c\u044b \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u044b \u0438\u0437\u0443\u0447\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043a\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e. 
\n

 \u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0439 \u0431\u0430\u043d\u043a \u042f\u043f\u043e\u043d\u0438\u0438 Bank of Tokyo-Mitsubishi UFJ (MUFG) \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e\u0431 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0438 \u0432\u0435\u0440\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043b\u0430\u0442\u0435\u0436\u0438 \u043f\u043e \u0447\u0435\u043a\u0430\u043c. \u0421\u043e\u0437\u0434\u0430\u043d\u043d\u043e\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0432 \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u043c\u0438 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u0430\u043c\u0438 \u0438 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u043c\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f\u043c\u0438 \u0432 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u043e\u043c \u0440\u0435\u0433\u0438\u043e\u043d\u0435. \u0412 \u0431\u0443\u0434\u0443\u0449\u0435\u043c Bank of Tokyo-Mitsubishi \u043d\u0430\u0434\u0435\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043c\u043e\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043d\u0430\u0439\u0442\u0438 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u0435.

\n

\u041e\u0442 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432 \u043d\u0435 \u043e\u0442\u0441\u0442\u0430\u044e\u0442 \u0438 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 \u043a\u043e\u043d\u0441\u043e\u0440\u0446\u0438\u0443\u043c\u0430 R3 CEV, \u0437\u0430\u043f\u0430\u0442\u0435\u043d\u0442\u043e\u0432\u0430\u0432\u0448\u0438\u0435 \u043d\u043e\u0432\u044b\u0439 \u043f\u0440\u043e\u0434\u0443\u043a\u0442 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 Concord, \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0439 \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0435 \u0423\u043e\u043b\u043b-\u0441\u0442\u0440\u0438\u0442.

\n

Concord \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0441\u043e\u0431\u043e\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0443, \u0441\u0432\u044f\u0437\u044b\u0432\u0430\u044e\u0449\u0443\u044e \u0432\u043e\u0435\u0434\u0438\u043d\u043e \u0440\u044b\u043d\u043a\u0438 \u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0438 \u043f\u0440\u0438\u0437\u0432\u0430\u043d\u043d\u0443\u044e \u043f\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u043c\u0438\u0434\u0434\u043b- \u0438 \u0431\u044d\u043a-\u043e\u0444\u0438\u0441\u043e\u0432 \u0432 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u0440\u0438\u0430\u043d\u0442. \u042d\u0442\u043e \u0434\u0430\u0441\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0431\u0430\u043d\u043a\u0430\u043c \u0438\u0437\u0431\u0430\u0432\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u044b\u0445 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432 \u0438 \u0441\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0442\u044c \u043c\u0438\u043b\u043b\u0438\u0430\u0440\u0434\u044b \u0434\u043e\u043b\u043b\u0430\u0440\u043e\u0432. \u041e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f, \u0447\u0442\u043e \u0430\u043b\u044c\u0444\u0430-\u0432\u0435\u0440\u0441\u0438\u044f \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430 \u0432 \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435 2017 \u0433\u043e\u0434\u0430.

\n

\u0412\u0441\u0451 \u044d\u0442\u043e \u0437\u0430\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u043e\u0432 \u0438 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0441\u0442\u043e\u0432 \u0441\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u043e\u043c \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u043b\u044c\u043d\u043e, \u043c\u0435\u043d\u044f\u044f \u0441\u0432\u043e\u0438 \u043f\u0440\u043e\u0433\u043d\u043e\u0437\u044b \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b.

\n

\u0412 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a \u041a\u0438\u0440\u0438\u043b\u043b \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u044d\u0442\u0438\u043c \u043f\u043e\u044f\u0432\u044f\u0442\u0441\u044f \u043d\u043e\u0432\u044b\u0435 \u043c\u0435\u0436\u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b.

\n
\u00ab\u0412 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 blockchain \u043f\u0440\u043e\u0447\u043d\u043e \u0443\u043a\u0440\u0435\u043f\u044f\u0442\u0441\u044f \u043d\u0430 \u043c\u0435\u0436\u0431\u0430\u043d\u043a\u0435, \u0432\u044b\u0442\u0435\u0441\u043d\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043e\u0431\u043c\u0435\u043d\u0430 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043c\u0435\u0436\u0434\u0443 \u043d\u0438\u043c\u0438 (\u0432 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0441\u0438\u0441\u0442\u0435\u043c\u0443 SWIFT) \u0438 \u0441\u0442\u0430\u043d\u0443\u0442 \u043d\u0435\u043e\u0442\u044a\u0435\u043c\u043b\u0435\u043c\u043e\u0439 \u0447\u0430\u0441\u0442\u044c\u044e \u0442\u043e\u0440\u0433\u043e\u0432 \u043d\u0430 \u0440\u044b\u043d\u043a\u0430\u0445 \u0446\u0435\u043d\u043d\u044b\u0445 \u0431\u0443\u043c\u0430\u0433. \u0427\u0442\u043e \u0436\u0435 \u043a\u0430\u0441\u0430\u0435\u0442\u0441\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0432 \u043f\u0440\u0438\u0432\u044b\u0447\u043d\u043e\u043c \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438, \u0442\u043e \u043e\u043d\u0438 \u0442\u0430\u043a\u0436\u0435, \u0441\u043a\u043e\u0440\u0435\u0435 \u0432\u0441\u0435\u0433\u043e, \u0443\u0436\u0435 \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u043c \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 blockchain \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u043d\u043e\u0435 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435\u00bb, \u2014 \u0441\u0447\u0438\u0442\u0430\u0435\u0442 \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e.
\n

\u041a\u041e\u041c\u041f\u0410\u041d\u0418\u0418

\n

\u0414\u0430\u0442\u0441\u043a\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Bitshares Munich IVS, \u0432\u043b\u0430\u0434\u0435\u044e\u0449\u0430\u044f \u0431\u0440\u0435\u043d\u0434\u043e\u043c BlockPay, \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0441\u0442\u0430\u0440\u0442\u0435 ICO. \u0412 \u0445\u043e\u0434\u0435 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 BlockPay, P2P-\u043c\u0435\u0441\u0441\u0435\u043d\u0434\u0436\u0435\u0440\u0430 ECHO \u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u044b\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u0435\u0439 Stealth. \u041f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043a\u0440\u0430\u0443\u0434\u0444\u0430\u043d\u0434\u0438\u043d\u0433\u043e\u0432\u043e\u0439 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043d\u0430 2016 \u0438 2017 \u0433\u043e\u0434\u044b. \u0421\u0430\u043c\u0430 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u043e\u0441\u0442\u043e\u0438\u0442 \u0438\u0437 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 ICO (Pre-ICO), \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0430\u0432\u0433\u0443\u0441\u0442 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430, \u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0430 \u0432 2017 \u0433\u043e\u0434\u0443. \u0412\u0441\u0435\u0433\u043e \u043f\u043b\u0430\u043d\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c 100 \u043c\u0438\u043b\u043b\u0438\u043e\u043d\u043e\u0432 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 BlockPay.

\n

\u041f\u0440\u043e\u0435\u043a\u0442 \u043f\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c \u043a\u043e\u0434\u043e\u043c Hyperledger \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u0438\u043c\u0435\u043d\u0430 \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u043e\u0441\u0442\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430. \u0421\u0440\u0435\u0434\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u2014 \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u044e\u0449\u0438\u0445 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0438 \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0439 \u0443\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0431\u0430\u0437\u044b \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u043a\u043e\u0434\u0430.

\n

\u0412 \u043d\u043e\u0432\u043e\u043c \u0441\u043e\u0441\u0442\u0430\u0432\u0435 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u043b\u0438 \u0441\u0432\u043e\u0438 \u043c\u0435\u0441\u0442\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 R3CEV \u0413\u0435\u043d\u0434\u0430\u043b \u0411\u0440\u0430\u0443\u043d, \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432 Digital Asset Holdings \u0422\u0430\u043c\u0430\u0448 \u0411\u043b\u0443\u043c\u043c\u0435\u0440, \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c Fujitsu \u0425\u0430\u0440\u0442 \u041c\u043e\u043d\u0442\u0433\u043e\u043c\u0435\u0440\u0438, \u0438\u043d\u0436\u0435\u043d\u0435\u0440 Intel \u041c\u0438\u043a \u0411\u043e\u0443\u043c\u0435\u043d \u0438 \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 IBM \u041a\u0440\u0438\u0441\u0442\u043e\u0444\u0435\u0440 \u0424\u0435\u0440\u0440\u0438\u0441. \u0421\u0440\u0435\u0434\u0438 \u043d\u043e\u0432\u044b\u0445 \u0438\u043c\u0435\u043d \u2013 \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c IBM \u0410\u0440\u043d\u043e \u043b\u0435 \u041e\u0440, \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u043e\u0440 IBM \u0411\u0438\u043d \u041d\u0433\u0443\u0435\u043d, \u0433\u043b\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a Intel \u0414\u044d\u043d \u041c\u0438\u0434\u0434\u043b\u0442\u043e\u043d, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 DTCC, Salesforce \u0438 \u041b\u043e\u043d\u0434\u043e\u043d\u0441\u043a\u043e\u0439 \u0444\u043e\u043d\u0434\u043e\u0432\u043e\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0441\u0442\u0430\u0440\u0442\u0430\u043f Chronicled Inc. \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u0434\u043b\u044f \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430 \u0432\u0435\u0449\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u044b\u043b \u0441\u043e\u0437\u0434\u0430\u043d \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 Ethereum. \u042d\u0442\u043e\u0442 \u0440\u0435\u0435\u0441\u0442\u0440 \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d \u0434\u043b\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0445 \u043a\u043e\u0434\u043e\u0432 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0438\u043c\u0435\u044e\u0449\u0438\u0445 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435 \u0447\u0438\u043f\u044b NFC \u0438 BLE.

\n
\u00ab\u0422\u0435\u043f\u0435\u0440\u044c \u0432\u0441\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0438 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0431\u0443\u0434\u044c-\u0442\u043e \u0431\u0440\u0435\u043d\u0434\u044b, \u043d\u043e\u0441\u0438\u0442\u0435\u043b\u0438 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0438 \u043f\u0440\u043e\u0447\u0435\u0435, \u043c\u043e\u0433\u0443\u0442 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0437\u0430\u0449\u0438\u0449\u0451\u043d\u043d\u044b\u0435 \u043e\u0442 \u043f\u043e\u0434\u0434\u0435\u043b\u043e\u043a \u0447\u0438\u043f\u044b \u0432 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 Chronicled \u0420\u0430\u0439\u0430\u043d \u041e\u0440\u0440. \u041d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u043e\u043c \u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043e \u043e\u043a\u043e\u043b\u043e 10 000 NFC \u0438 BLE \u0447\u0438\u043f\u043e\u0432.
\n

\u041a\u0430\u043a \u0441\u043e\u043e\u0431\u0449\u0430\u0435\u0442 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Business Insider UK, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u0432 \u0421\u0428\u0410 \u0442\u0435\u043b\u0435\u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Verizon Communications \u044d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0438\u0440\u0443\u0435\u0442 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0422\u0430\u043a, \u0432 \u0440\u0430\u0441\u043f\u043e\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u043f\u043e\u043f\u0430\u043b \u043f\u0430\u0442\u0435\u043d\u0442, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 Verizon 10 \u043c\u0430\u044f \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u0418\u0437 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u043f\u0430\u0442\u0435\u043d\u0442\u0430 \u0441\u043b\u0435\u0434\u0443\u0435\u0442, \u0447\u0442\u043e \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u0430 \u043d\u0435\u043a\u043e\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043a\u043b\u044e\u0447\u0435\u0439, \u0430 \u0440\u0430\u0431\u043e\u0442\u044b \u043d\u0430\u0434 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u043c \u0432\u0435\u043b\u0438\u0441\u044c \u043d\u0430 \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0442\u0440\u0451\u0445 \u043b\u0435\u0442. \u0412\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043f\u043e\u0434\u043e\u0431\u043d\u043e\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0432 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u0438 \u0441\u043e \u0441\u043c\u0430\u0440\u0442-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430\u043c\u0438 \u0434\u0430\u0451\u0442 \u043c\u0430\u0441\u0441\u0443 \u043d\u043e\u0432\u044b\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u0432 \u0441\u0444\u0435\u0440\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0438\u043b\u0438 \u0430\u0432\u0442\u043e\u0440\u044b \u0441\u0442\u0430\u0442\u0435\u0439 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0441\u0432\u043e\u044e \u043e\u043f\u043b\u0430\u0442\u0443 \u0441\u0440\u0430\u0437\u0443 \u0436\u0435 \u043f\u043e\u0441\u043b\u0435 \u0442\u043e\u0433\u043e, \u043a\u0430\u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0430\u0447\u0430\u043b \u0447\u0438\u0442\u0430\u0442\u044c \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b \u0438\u043b\u0438 \u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430\u0442\u044c \u043f\u0435\u0441\u043d\u044e.

\n

\u0412\u0430\u043b\u044e\u0442\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440\u0430 (MAS) \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u043b\u043e \u0441 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0435\u0434\u0438\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439, \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u043d\u044b\u0435 \u0443\u0441\u043b\u0443\u0433\u0438, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438.

\n

\u0421\u0442\u0430\u043b\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0447\u0442\u043e \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0441\u0442\u0430\u0440\u0442\u0430\u043f Keza \u0432\u044b\u043a\u0443\u043f\u043b\u0435\u043d \u0444\u0438\u043b\u0438\u043f\u043f\u0438\u043d\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 Satoshi Citadel Industries, \u0432 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u043c \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u043c \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0443\u0436\u0435 \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0442 \u0442\u0430\u043a\u0438\u0435 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u044b, \u043a\u0430\u043a Rebit.ph, Bitbit.cash \u0438 PrepaidBitcoin.ph.

\n
\u00abKeza \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u043b\u0430\u0441\u044c \u0441 \u043f\u0440\u0438\u0446\u0435\u043b\u043e\u043c \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u044e\u0449\u0438\u0435\u0441\u044f \u0440\u044b\u043d\u043a\u0438 \u0438 \u0434\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0435 \u0438\u043c\u0435\u044e\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u043c \u0440\u044b\u043d\u043a\u0430\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0430. \u041c\u044b \u0441\u0447\u0430\u0441\u0442\u043b\u0438\u0432\u044b, \u0447\u0442\u043e \u0442\u0435\u043f\u0435\u0440\u044c \u0432\u0438\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0441\u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0440\u0435\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043e\u00bb, \u2014 \u0446\u0438\u0442\u0438\u0440\u0443\u0435\u0442 CEO Keza \u0421\u0430\u0439\u043c\u043e\u043d\u0430 \u0411\u0435\u0440\u043d\u0441\u0430 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Silicon Angle.
\n

\u0414\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0435\u0442\u044c Steemit \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u00ab\u0431\u0435\u0441\u043f\u0440\u0435\u0446\u0435\u0434\u0435\u043d\u0442\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u0442\u0440\u0430\u0444\u0438\u043a\u0430\u00bb, \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u044b\u043c \u0441 \u0442\u0435\u043c, \u0447\u0442\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u043b\u0438 \u043d\u0430 \u0440\u0430\u043d\u043d\u0438\u0445 \u044d\u0442\u0430\u043f\u0430\u0445 \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f Facebook \u0438 Reddit.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Steemit, \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u0435\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u043e \u0440\u0430\u0437\u043c\u0435\u0449\u0430\u044e\u0442 \u0431\u043e\u043b\u0435\u0435 21 000 \u043d\u043e\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0430 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432 \u0432 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u043f\u043e\u0441\u0442\u043e\u0432 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0435\u0442 70 000. \u042d\u0442\u043e \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u043e \u0441 \u0440\u0430\u043d\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c\u044e \u043d\u0430 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0430\u0445 \u0432\u0440\u043e\u0434\u0435 Facebook \u0438 Reddit.

\n

\u0417\u0430 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u0434\u0435\u043b\u044c \u0434\u043e \u0441\u0442\u0430\u0440\u0442\u0430 \u043a\u0440\u0430\u0443\u0434\u0441\u0435\u0439\u043b\u0430 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 DECENT \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0434\u0438\u0441\u0442\u0440\u0438\u0431\u0443\u0446\u0438\u0438 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 DCT. \u0422\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0432\u0435\u0440\u0433\u043b\u043e\u0441\u044c \u043f\u0435\u0440\u0435\u0441\u043c\u043e\u0442\u0440\u0443 \u043e\u0431\u0449\u0435\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0445 \u043a \u0432\u044b\u043f\u0443\u0441\u043a\u0443 \u043c\u043e\u043d\u0435\u0442. \u041a\u0430\u043a \u0437\u0430\u044f\u0432\u0438\u043b\u0438 \u0432 DECENT, \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435, \u0445\u043e\u0442\u044f \u0438 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u043c, \u0442\u0430\u043a\u0436\u0435 \u0431\u044b\u043b\u043e \u043f\u0440\u0438\u043d\u044f\u0442\u043e \u0441 \u0443\u0447\u0435\u0442\u043e\u043c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430.

\n

\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Coinbase \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0438 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0441\u0432\u043e\u0435\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u043d\u0430 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442. \u0422\u0435\u043f\u0435\u0440\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u043a\u0443\u043f\u043a\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u043a\u0430\u0440\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Coinbase \u0432 \u0415\u0432\u0440\u043e\u043f\u0435.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Coinbase, \u0432 \u0421\u0428\u0410 40% \u0441\u0434\u0435\u043b\u043e\u043a \u043f\u043e \u043f\u043e\u043a\u0443\u043f\u043a\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0441 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0435\u043c\u0438\u0442\u0441\u044f \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u044d\u0442\u043e\u0442 \u0441\u0435\u0440\u0432\u0438\u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0432 \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435\u043c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0435 \u0441\u0442\u0440\u0430\u043d.

\n

\u041f\u0415\u0420\u0421\u041e\u041d\u0410\u041b\u0418\u0418

\n

\u041e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Distributed Lab \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u0440\u0430\u0441\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u044f \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0441\u0444\u0435\u0440\u0430\u0445 \u0435\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f, \u043d\u0430\u0437\u0432\u0430\u0432 \u043e\u0442\u0440\u0430\u0441\u043b\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043e\u043d\u0430, \u043d\u0430 \u0435\u0433\u043e \u0432\u0437\u0433\u043b\u044f\u0434, \u0432\u0440\u044f\u0434 \u043b\u0438 \u043d\u0443\u0436\u043d\u0430 \u0432\u043e\u043e\u0431\u0449\u0435. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u043f\u043e\u0441\u0442 \u0431\u044b\u043b \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d \u0432 \u0435\u0433\u043e \u0431\u043b\u043e\u0433\u0435 \u043d\u0430 Medium.

\n

\u0412\u044b\u0441\u043a\u0430\u0437\u0430\u0432 \u0440\u0430\u043d\u0435\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u0431\u0438\u0437\u043d\u0435\u0441 \u043d\u0435 \u0433\u043e\u0442\u043e\u0432 \u043f\u043e-\u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u043c\u0443 \u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u041f\u0430\u0432\u0435\u043b \u043d\u0430 \u044d\u0442\u043e\u0442 \u0440\u0430\u0437 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u043b \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u043e\u0434\u0430 \u0433\u0438\u0434 \u0434\u043b\u044f \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432. \u0412 \u043d\u0435\u043c \u043e\u043f\u0438\u0441\u0430\u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0430\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430\u0442\u0438\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u0438 \u0440\u0435\u0448\u0435\u043d\u0438\u0439 \u0438 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u043f\u043e\u043c\u043e\u0449\u044c \u0432 \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438 \u0442\u043e\u0433\u043e, \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043b\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043d\u0438\u0445 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0439.

\n
\u00ab\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043e\u0431 \u0438\u043c\u043f\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u044f \u043f\u043e\u043b\u0443\u0447\u0430\u044e \u043a\u0430\u0436\u0434\u044b\u0439 \u0434\u0435\u043d\u044c. \u041e\u0434\u043d\u0430\u043a\u043e \u0447\u0430\u0441\u0442\u043e \u044f \u0441\u0447\u0438\u0442\u0430\u044e, \u0447\u0442\u043e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u043d\u0435 \u043d\u0443\u0436\u0435\u043d \u0432\u043e\u0432\u0441\u0435. \u0415\u0441\u0442\u044c \u0434\u0440\u0443\u0433\u0438\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0442\u0438\u043f\u044b \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b, \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u2013 \u043b\u0438\u0448\u044c \u043e\u0434\u0438\u043d \u0438\u0437 \u043d\u0438\u0445\u00bb, \u2014 \u043f\u0438\u0448\u0435\u0442 \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e.
\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0435\u043c \u0433\u0443\u0440\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441\u0442\u0430\u043b\u0430 \u043b\u0435\u043a\u0446\u0438\u044f \u043a\u0430\u043d\u0430\u0434\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044f \u0414\u043e\u043d\u0430 \u0422\u044d\u043f\u0441\u043a\u043e\u0442\u0442\u0430, \u0430\u0432\u0442\u043e\u0440\u0430 \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0438\u0437\u0434\u0430\u043d\u043d\u043e\u0439 \u043a\u043d\u0438\u0433\u0438 \u00ab\u0420\u0435\u0432\u043e\u043b\u044e\u0446\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430\u00bb, \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u0432\u0448\u0435\u0433\u043e \u0441 \u043b\u0435\u043a\u0446\u0438\u0435\u0439 \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u043d\u0430 \u0441\u0430\u043c\u043c\u0438\u0442\u0435 TED Talk \u0432 \u0410\u043b\u044c\u0431\u0435\u0440\u0442\u0435. 

\n

 \u0423\u041a\u0420\u0410\u0418\u041d\u0410

\n

\u0412 \u0423\u043a\u0440\u0430\u0438\u043d\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u043e\u0432 \u0432 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0443\u043c \u0441\u0442\u0440\u0430\u043d\u044b. \u0422\u0430\u043a, \u043a\u043e\u043c\u0430\u043d\u0434\u0430 e-Vox \u0430\u043d\u043e\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043b\u0430 \u0437\u0430\u043f\u0443\u0441\u043a \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0439 \u0420\u0430\u0434\u0435 \u0411\u0430\u043b\u0442\u044b (\u041e\u0434\u0435\u0441\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c). \u041e\u0431 \u044d\u0442\u043e\u043c \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 ForkLog \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u043e\u0440 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041a\u043e\u043d\u0430\u0448\u0435\u0432\u0438\u0447. 

\n

\n

 \u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f, \u0432\u043d\u0435\u0441\u0435\u043d\u043d\u044b\u0435 \u0432 \u0434\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u0431\u0430\u0437\u0443 \u0434\u0430\u043d\u043d\u044b\u0445, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0438 \u0432\u044b\u0432\u043e\u0434\u0438\u0442\u044c \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0443 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0440\u0435\u0448\u0435\u043d\u0438\u0439. \u0410 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u043f\u043e\u043c\u043e\u0436\u0435\u0442 \u043d\u0430\u0434\u0435\u0436\u043d\u043e \u0437\u0430\u0449\u0438\u0442\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e\u0442 \u0432\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0435\u0433\u043e \u0438 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043f\u0440\u0430\u0432\u043d\u043e\u0433\u043e \u0432\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430.

\n

\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u043e\u0439 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430 e-Vox \u0437\u0430\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Ambisafe \u0438 Vareger.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0432 \u044d\u0442\u043e\u043c \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438 \u0432 \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. \u0422\u0430\u043a, \u043c\u044d\u0440 \u0433\u043e\u0440\u043e\u0434\u0430 \u0413\u0435\u043d\u043d\u0430\u0434\u0438\u0439 \u0414\u0438\u043a\u0438\u0439 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043b \u043f\u0440\u043e\u0435\u043a\u0442 \u043e\u0431 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b Auction 3.0 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043e\u0434\u043d\u043e\u0433\u043e \u0438\u0437 \u0430\u043a\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u043f\u0440\u0438\u043d\u044f\u0442 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u0435 \u0432\u0440\u0435\u043c\u044f.
\n\u041e\u0431 \u044d\u0442\u043e\u043c \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0440\u0435\u0448\u0435\u043d\u0438\u0438 \u00ab\u041e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043f\u043b\u0430\u043d \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0411\u0435\u043b\u043e\u0446\u0435\u0440\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0433\u043e \u0441\u043e\u0432\u0435\u0442\u0430 \u043f\u0440\u0438 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u044b\u0445 \u0430\u043a\u0442\u043e\u0432 \u043d\u0430 2016 \u0433\u043e\u0434\u00bb, \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043d\u043e\u043c \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. 

\n

\n

 \u0420\u041e\u0421\u0421\u0418\u042f

\n

\u0412 \u043f\u044f\u0442\u043d\u0438\u0446\u0443, 26 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0437\u0430\u043c\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041c\u043e\u0438\u0441\u0435\u0435\u0432 \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u041c\u0438\u043d\u0438\u0441\u0442\u0435\u0440\u0441\u0442\u0432\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u0435\u0442 \u043f\u0440\u043e\u0442\u0438\u0432 \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u00ab\u043b\u043e\u0431\u043e\u0432\u043e\u0433\u043e \u0437\u0430\u043f\u0440\u0435\u0442\u0430\u00bb \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430. \u041f\u043e \u0435\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u043c, \u0437\u0430\u043a\u043e\u043d\u043e\u043f\u0440\u043e\u0435\u043a\u0442 \u043e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u0445 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d \u043f\u043e \u0438\u0442\u043e\u0433\u0430\u043c \u043f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0435\u0440\u0438\u0438 \u0432\u0441\u0442\u0440\u0435\u0447 \u0441 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u0430\u043c\u0438.

\n

\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u044d\u0442\u043e \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u043b\u043e \u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u0435\u043c \u0432\u0441\u0442\u0440\u0435\u0447\u0438, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0441\u043e\u0441\u0442\u043e\u044f\u043b\u0430\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430 \u0420\u0424 \u043f\u043e\u0434 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e\u043c \u0441\u043e\u0432\u0435\u0442\u043d\u0438\u043a\u0430 \u043f\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0443 \u0413\u0435\u0440\u043c\u0430\u043d\u0430 \u041a\u043b\u0438\u043c\u0435\u043d\u043a\u043e. \u041d\u0430 \u043c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u0438 \u043e\u0431\u0441\u0443\u0436\u0434\u0430\u043b\u0430\u0441\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u0420\u043e\u0441\u0441\u0438\u0438 \u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0435\u0435 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f \u043d\u0430 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043b\u0438\u0441\u044c \u0432 \u0441\u0442\u043e\u0440\u043e\u043d\u0435 \u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0438 \u0432\u043b\u0430\u0441\u0442\u0438 \u041c\u043e\u0441\u043a\u0432\u044b, \u0437\u0430\u044f\u0432\u0438\u0432\u0448\u0438\u0435 \u043d\u0430 \u044d\u0442\u043e\u043c \u0436\u0435 \u0441\u043e\u0432\u0435\u0449\u0430\u043d\u0438\u0438 \u043e \u0433\u043e\u0442\u043e\u0432\u043d\u043e\u0441\u0442\u0438 \u0432\u043d\u0435\u0434\u0440\u0438\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb.

\n
\u00ab\u041c\u043e\u0441\u043a\u0432\u0430 \u0433\u043e\u0442\u043e\u0432\u0430 \u0431\u044b\u0442\u044c \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0418 \u043a\u0430\u043a \u0440\u0430\u0437 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0438\u043b\u043e\u0442\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043c\u044b \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb. \u041c\u044b \u0445\u043e\u0442\u0438\u043c, \u0441 \u043e\u0434\u043d\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u043e\u0442\u043f\u0438\u043b\u043e\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0438 \u043f\u043e\u043d\u044f\u0442\u044c, \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043e\u043d\u0430 \u0434\u0435\u0435\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u0430 \u0434\u043b\u044f \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u0442\u0430\u043a\u043e\u0433\u043e \u0440\u043e\u0434\u0430 \u0437\u0430\u0434\u0430\u0447. \u0421 \u0434\u0440\u0443\u0433\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u0441\u043d\u044f\u0442\u044c \u0441 \u0441\u0435\u0431\u044f \u043d\u0435\u043a\u0438\u0439 \u0441\u043a\u0435\u043f\u0441\u0438\u0441 \u0441\u043e \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0437\u0430\u043c\u0435\u0441\u0442\u0438\u0442\u0435\u043b\u044c \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0430 \u0434\u0435\u043f\u0430\u0440\u0442\u0430\u043c\u0435\u043d\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 \u041c\u043e\u0441\u043a\u0432\u044b \u0410\u043d\u0434\u0440\u0435\u0439 \u0411\u0435\u043b\u043e\u0437\u0435\u0440\u043e\u0432,
\n

\u041e\u043a\u0430\u0437\u0430\u043b\u0438\u0441\u044c \u0432\u043e\u0432\u043b\u0435\u0447\u0451\u043d\u043d\u044b\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0438 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430 \u0438 \u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0435 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0438\u043b\u044b. \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u00ab\u041f\u0430\u0440\u0442\u0438\u044f \u0420\u043e\u0441\u0442\u0430\u00bb \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u043b\u0430 \u043d\u0430\u0447\u0430\u043b\u043e \u043f\u0440\u0438\u0435\u043c\u0430 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0439 \u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430\u0445, \u043e\u0434\u043d\u0430\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u043c\u0438 \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430\u043c\u0438 \u043e\u043d\u0430 \u0441\u043c\u043e\u0436\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u044f \u0437\u0430\u043a\u043e\u043d\u0430 \u043e \u0441\u0442\u0430\u0442\u0443\u0441\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b.

\n


\n\u0412 \u0441\u0432\u044f\u0437\u0438 \u0441 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435\u043c \u043d\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0440\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u043e\u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u0432 \u043d\u0430 \u0441\u0447\u0435\u0442\u0430 \u044e\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043b\u0438\u0446 \u00ab\u0431\u0438\u0442\u043a\u043e\u0438\u043d\u044b \u0431\u0443\u0434\u0443\u0442 \u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u044f\u0442\u044c\u0441\u044f \u043d\u0430 \u043a\u043e\u0448\u0435\u043b\u0435\u043a \u0414\u043c\u0438\u0442\u0440\u0438\u044f \u041c\u0430\u0440\u0438\u043d\u0438\u0447\u0435\u0432\u0430, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043e\u043c\u0431\u0443\u0434\u0441\u043c\u0435\u043d\u0430 \u0438 \u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442\u0430 \u0432 \u0434\u0435\u043f\u0443\u0442\u0430\u0442\u044b \u043f\u043e \u041c\u0435\u0434\u0432\u0435\u0434\u043a\u043e\u0432\u0441\u043a\u043e\u043c\u0443 \u043e\u0434\u043d\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u043d\u043e\u043c\u0443 \u043e\u043a\u0440\u0443\u0433\u0443\u00bb.

\n

\u041a\u0418\u0422\u0410\u0419

\n

\u041f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u043d\u0435 \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435, \u0437\u0430\u043d\u0438\u043c\u0430\u044e\u0449\u0435\u0435\u0441\u044f \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0422\u0430\u043a, \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u041a\u0438\u0442\u0430\u044f \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u043e \u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0438 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0426\u0435\u043b\u044c\u044e \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u043b\u044c\u044f\u043d\u0441\u0430 \u0441\u0442\u0430\u043d\u0435\u0442 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a \u0438 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0432 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0443 \u0441\u0442\u0440\u0430\u043d\u044b, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043a \u0412\u0441\u0435\u043c\u0438\u0440\u043d\u043e\u043c\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0430\u043c\u043c\u0438\u0442\u0443, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0451\u043d \u0432 \u0428\u0430\u043d\u0445\u0430\u0435 \u0432 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u0435 \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0441\u0442\u0430\u0432\u0438\u0442\u0441\u044f \u043b\u0438 \u043f\u0435\u0440\u0435\u0434 \u044d\u0442\u043e\u0439 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f, \u043d\u043e \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0442\u043e\u0442 \u0444\u0430\u043a\u0442, \u0447\u0442\u043e \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u043f\u043e\u0438\u0441\u043a\u043e\u0432\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u041a\u0438\u0442\u0430\u044f Baidu \u0431\u0435\u0437 \u043a\u0430\u043a\u043e\u0433\u043e-\u043b\u0438\u0431\u043e \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f \u0443\u0434\u0430\u043b\u0438\u043b\u0430 \u0432\u0441\u044e \u0440\u0435\u043a\u043b\u0430\u043c\u0443, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u0443\u044e \u0441 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u043c \u0438 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u0432\u0430\u043b\u044e\u0442\u0430\u043c\u0438.

\n

\u041e\u0431 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0438 \u0434\u0432\u0435 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0435 \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0435 \u0431\u0438\u0440\u0436\u0438 OKCoin \u0438 Huobi, \u043f\u0438\u0448\u0435\u0442 Bloomberg News. \u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 Baidu \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441 \u0430\u0433\u0435\u043d\u0442\u0441\u0442\u0432\u0430 \u043e\u0442 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u0432\u043e\u0437\u0434\u0435\u0440\u0436\u0430\u043b\u0438\u0441\u044c. 

\n", + "cashout_time": "2016-09-29T04:28:30", + "category": "bitcoin", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:15:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779945, + "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto\",\"money\",\"news\"],\"image\":[\"http://radikal.ru/fp/949b19ab0ea142769b5d5bad6918e850\",\"http://radikal.ru/fp/ab1e6cf8f8ce414d8555699b45afc0eb\",\"http://forklog.com/wp-content/uploads/0e6dbfdc-638d-11e6-8e55-cc0a56a8b37c-1.png\",\"http://forklog.com/wp-content/uploads/14152259_10202179476045465_1807948603_o.jpg\",\"http://forklog.com/wp-content/uploads/14022327_853179024818469_8570878217622377273_n-1.jpg\"],\"links\":[\"http://forklog.com/zhurnalu-forklog-dva-goda/\",\"http://forklog.com/birzha-bitstamp-otmechaet-pyatiletnij-yubilej/\",\"http://forklog.com/kriptovalyutnaya-birzha-gdax-dobavila-litecoin/\",\"http://forklog.com/birzha-poloniex-snimaet-s-torgov-the-dao-i-drugie-altkoiny/\",\"http://forklog.com/krupnejshaya-bitkoin-birzha-turtsii-ostanovila-rabotu-iz-za-problem-s-bankom/\",\"http://forklog.com/apparatnyj-koshelek-trezor-dobavil-podderzhku-ethereum/\",\"https://github.com/trezor/trezor-mcu/pull/103\",\"http://forklog.com/platezhnyj-servis-bitwala-vklyuchil-v-spisok-rabochih-altkoinov-dash-i-emercoin/\",\"http://forklog.com/venesuelskij-platyozhnyj-servis-cryptobuyer-dobavil-podderzhku-dash/\",\"http://forklog.com/sostoyalsya-reliz-novoj-versii-ethereum-koshelka-mist-s-podderzhkoj-coinbase-buy-widget/\",\"http://forklog.com/vedushhie-banki-mira-obedinilis-dlya-sozdaniya-novoj-kriptovalyuty/\",\"http://forklog.com/yuzhno-afrikanskij-rezervnyj-bank-gotov-k-ispolzovaniyu-blokchejna-i-kriptovalyut/\",\"http://forklog.com/yaponskie-korporatsii-testiruyut-blokchejn-platformu-dlya-chekovyh-raschetov/\",\"http://forklog.com/konsortsium-r3-cev-zapatentoval-blokchejn-platformu-dlya-infrastruktury-uoll-strit/\",\"http://forklog.com/ekonomisty-prognoziruyut-vytesnenie-sistemy-swift-blokchejnom/\",\"http://forklog.com/kompaniya-bitshares-munich-ivs-obyavila-o-nachale-ico/\",\"http://forklog.com/proekt-hyperledger-nazval-novyj-sostav-tehnicheskogo-komiteta/\",\"http://forklog.com/startap-chronicled-inc-zapustil-otkrytyj-reestr-dlya-interneta-veshhej/\",\"http://forklog.com/kompaniya-verizon-communications-zapatentovala-blokchejn-hranilishhe-klyuchej/\",\"http://forklog.com/kriptovalyutnye-kompanii-singapura-budut-poluchat-edinuyu-litsenziyu-na-osushhestvlenie-deyatelnosti/\",\"http://forklog.com/investitsionnyj-bitkoin-startap-keza-budet-spasen-blagodarya-satoshi-citadel-industries/\",\"http://forklog.com/poseshhaemost-steemit-sravnyalas-s-rannim-facebook/\",\"http://forklog.com/komanda-decent-obyavila-o-vazhnyh-izmeneniyah-v-sisteme-distributsii-tokenov/\",\"http://forklog.com/polzovateli-coinbase-v-evrope-poluchili-vozmozhnost-pokupat-kriptovalyutu-pri-pomoshhi-bankovskih-kart/\",\"http://forklog.com/osnovatel-distributed-lab-nazval-oblasti-kotorym-ne-nuzhen-blokchejn/\",\"https://medium.com/@pavelkravchenko/investor-guide-does-this-cool-project-truly-need-blockchain-bdde70a26bfb#.40cs8sfz2\",\"http://forklog.com/avtor-knig-o-blokchejne-don-tepskott-vystupil-na-ted-talk/\",\"http://forklog.com/dostignuta-dogovorennost-o-zapuske-e-vox-v-balte-odesskoj-oblasti/\",\"http://forklog.com/meriya-beloj-tserkvi-perehodit-na-blokchejn-platformu-auction-3-0/\",\"http://forklog.com/minfin-rf-protiv-pryamogo-zapreta-bitkoina/\",\"http://forklog.com/v-rossii-obsudili-kriptovalyuty-na-gosudarstvennom-urovne/\",\"http://forklog.com/partiya-rosta-utochnila-shemu-priema-pozhertvovanij-v-bitkoinah/\",\"http://forklog.com/kitaj-pristupil-k-issledovaniyu-blokchejna-na-gosudarstvennom-urovne/\",\"http://forklog.com/kitajskij-poiskovik-baidu-zablokiroval-vsyu-svyazannuyu-s-bitkoinom-reklamu/\"]}", + "last_payout": "2016-08-30T04:28:30", + "last_update": "2016-08-28T17:15:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_steem_dollars": 10000, + "permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "reward_weight": 10000, + "root_author": "forklognews", + "root_permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "title": "\u0414\u0430\u0439\u0434\u0436\u0435\u0441\u0442 \u043d\u043e\u0432\u043e\u0441\u0442\u0435\u0439 \u2013 \u043e\u0431\u0437\u043e\u0440 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0438\u043d\u0434\u0443\u0441\u0442\u0440\u0438\u0438", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:14:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "paulsemmelweis", + "author_rewards": 0, + "beneficiaries": [], + "body": "Discussed below are two new articles that shed light on the grand economic chessboard controlled by governments while paving the way for more lies and manipulation by the media...\n\nGlobal central bankers, stuck at zero, unite in plea for help from governments: https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\n\nAs Fed nears rate hikes, policymakers plan for 'brave new world': https://ca.news.yahoo.com/fed-nears-rate-hikes-policymakers-plan-brave-world-005117150--business.html\n\nWhile simultaneously espousing Obama's great economic achievements in the press for years after saving the nation from peril in 2008, central bankers now openly admit there's a very weak economy and a recovery that never was. You know, facts.\n\nWhile talk of \"new tools\" needed to fight the next recession unofficially dominated the annual meeting of our monetary overlords in Wyoming, it is quite clear that the main weapon in their arsenal is the same as it was then; to maintain control over human beings by selling a never ending stream of fiction to the public.\n\n\"it may take a massive program, large enough even to shock taxpayers\"\n\"hard to convince markets and households that things will get better\"\n\"encourage the shift in mood\"\n\"prevent public expectations\"\n\"do not respond in expected ways\"\n\nAnd this gem\u2026 \"In modern monetary theory, households and business expectations are felt to play a defining role.\"\n\nSounds really modern!\n\nThe article ends with this\u2026 \"It was not clear whether such ideas will catch on. But there was a broad sense here that the other side of government may need to up its game.\"\n\nA game indeed. Of mass manipulation for the benefit of those who rule us while easily selling the public what they are doing is in their best interests.", + "cashout_time": "2016-09-28T19:47:36", + "category": "economics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:14:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779934, + "json_metadata": "{\"tags\":[\"economics\",\"government\",\"central\",\"banks\",\"recession\"],\"links\":[\"https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\"]}", + "last_payout": "2016-08-29T19:47:36", + "last_update": "2016-08-28T17:14:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "economics", + "percent_steem_dollars": 10000, + "permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "reward_weight": 10000, + "root_author": "paulsemmelweis", + "root_permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "title": "It's just a game to governments and central bankers", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "randolphrope", + "author_rewards": 0, + "beneficiaries": [], + "body": "On the way to Chinle, Arizona USA \n\nJust off the highway over looking the desert.\n\nhttp://imgur.com/ITp3j5l.jpg\n\nI just remember one on the drive.", + "cashout_time": "2016-09-28T18:29:18", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:13:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779930, + "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"\"],\"image\":[\"http://imgur.com/ITp3j5l.jpg\"]}", + "last_payout": "2016-08-29T18:29:18", + "last_update": "2016-08-28T17:13:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "photography", + "percent_steem_dollars": 10000, + "permlink": "steem-it-photo-challenge-6", + "reward_weight": 10000, + "root_author": "randolphrope", + "root_permlink": "steem-it-photo-challenge-6", + "title": "Steem.it photo challenge # 6", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ebluefox", + "author_rewards": 0, + "beneficiaries": [], + "body": "Empathy is an interesting aspect of human nature that many people do not possess. Empathy in short is the ability to view an scenario from a different perspective than your own, normally to better understand someone's perspective on certain topics or ideas. This handy skill is a learned skill and when used effectively can be used to better understand humanity.\nBut as with every neat skill, they tend to have as many pros as they do cons. So i will attempt to explain the pros and cons that i have found apparent with empathy.\n There are quite a few pros to empathy, one of which being in your reputation. A person who uses empathy often is normally seen as a loving compassionate person. Another pro that is quite noticeable is the ability to understand unexplained problems. On occasion if a problem really troubles someone or is very personal, most people will not tell anyone about it. But with empathy you can figure out what is troubling them sometimes with something as simple as \"How have you been?\". A more prominent pro of using empathy is better understanding how a person truly is. Most people wear a \"Facade\" in public or a metaphorical mask, these tend to hide their true personality from the public eye and conceal most things about them. Using empathy, you can work around the \"Facade\" and figure out how they truly are as a person, and most of the time appreciate them a bit more.\n Empathy has allot of pros but also has its fair share of cons to go with it, a good example of one of its cons is a changed perspective. under most circumstances, use of empathy becomes a habit and changes your outlook on everyone around you. This is not really very terrible, but it can lead to you disliking a person more than would have normally. Another apparent con is over-assessing someone. This can happen when you use empathy on someone and spot something that would make you feel awful, but in truth does not faze them. Here is an example. You are talking with a person and figure out that they don't have a mother. To you that may seem horrible and you start pitying them, when in truth it may not even matter to them in the slightest. A more cumbersome problem with empathy lies with information. In order to understand or sympathize with someone you need to understand the problems they put up with. If you ask too many questions about their life, they may find you \"Nosy\" or \"Annoying\". On the contrary, if you do not inquire very much about them, you will not have any idea of their standpoint at all and cannot empathize with them. The last con i will cover is drama. It is very easy to get caught in some drama if you try to understand peoples problems, some of which may be very serious. Some people are not patient enough to deal with the newly acquired drama and can sometimes make the problem worse than it need to be.\n This list most definitely did not cover every pro or con associated with empathy because they will differ from person to person however i did cover a few recurring pros and cons. whether you think empathy is worth your time and energy is up to you and your values in life and social interaction.", + "cashout_time": "2016-09-28T17:28:57", + "category": "empathy", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:13:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779923, + "json_metadata": "{\"tags\":[\"empathy\",\"psychology\",\"social-skills\",\"problems\"]}", + "last_payout": "2016-08-29T17:28:57", + "last_update": "2016-08-28T17:13:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "empathy", + "percent_steem_dollars": 10000, + "permlink": "the-pros-and-cons-of-empathy", + "reward_weight": 10000, + "root_author": "ebluefox", + "root_permlink": "the-pros-and-cons-of-empathy", + "title": "The Pros and Cons of Empathy", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "2243580957008", + "active": "2016-09-11T21:09:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemsquad", + "author_rewards": 588, + "beneficiaries": [], + "body": "\n

We are STEEMSQUAD, a Steemit inititative to promote diversity and quality of content by featuring authors from the school of minnows.

\n

\"steem-squad3\"
\n

\n

WHAT is #steemsquad?

\n

Steemsquad is an initiative of multiple minnows whose objective is to promote diverse and quality content and their work which may not have a chance to get noticed when published in the main streem. STEEMSQUAD initiative will try to tweak the game to equally distribute the wealth among its members. 

\n

STEEMSQUAD is a community-backed account responsible for posting blogs of qualified authors and at the same time upvotes quality blog posts of its members.

\n

Members of STEEMSQUAD are from across multiple timelines to ensure a 24/7 support and active participation in Steemit.

\n

The Issue at Hand

\n

For quite some time, there has been a noticeable trend as to who gets rewards. Those favored are the whales themselves, members with high reputation levels, incoming popular personalities and celebrities either from the cryptocurrency world or the entertainment world. A number of people from the finance institutions have joined as well and have garnered huge rewards on their \u201cintroductory\u201d posts.

\n

And what happens to those who are not celebrities, unknown personalities from not-so-popular backgrounds? Their posts get dumped, thrown into oblivion. Then all the sweat and blood poured spilled into writing the blog just go to waste. This is where #steemsquad comes in.

\n


\n

WHY We Do It?

\n

Steemit is a social media platform where **EVERYONE** gets paid for creating and curating content, as promised if and when you decide to dive into the Steemit Ocean. 

\n

It leverages a robust digital points system, called Steem, that supports real value for digital rewards through market price discovery and liquidity.

\n

We aim to give EVERYONE a chance to get noticed, earn rewards, and be a part of a community of people helping people.

\n

You Can Succeed

\n

All HOPE is NOT LOST. We have seen minnows rise to the occasion. With a positive attitude, an unwavering determination, lots and lots of good quality posts (one is enough though to get you 15k, if you hit the nail on the head), there is no reason why you can\u2019t be successful here in Steemit.

\n

#steemsquad will support you along the way.

\n

OUR GOLDEN RULES

\n
    \n
  1. We give priority to quality contents from low-powered profiles (minnows).
  2. \n
  3. The published author gets 100% of SBD. However, 50% of which goes to the author\u2019s SP to allow the author to power-up leveraging his/her SP to upvote other writers.
  4. \n
  5. Any SP earned by STEEMSQUAD remains in the STEEMSQUAD account to gain more voting power for the benefit of its members.
  6. \n
  7. Pay-it-forward. The powered-up author commits to help other writers by upvoting and commenting to blog post to increase the post\u2019s value.
  8. \n
\n


\n

HOW TO GET PUBLISHED BY STEEMSQUAD

\n

\n

PHOTO CREDIT: Anna Frajtova / shutterstock.com
\n

\n
    \n
  1. FOLLOW the account STEEMSQUAD and be a member of the initiative.
  2. \n
  3. You have to signify your willingness to join by coming to our official chatroom in https://steemit.chat/channel/steemsquad. Introduce yourself and state your intention to join the initiative. Include a link to your Steemit profile.
  4. \n
  5. Submit your article in plain text format and links to images. Send your entry to @steemit.asia or @sebastien or @jaycobbell as a PM.
  6. \n
  7. Article must be at least 300 words with at least 1 image.
  8. \n
  9. Give credit to the images you use.
  10. \n
  11. If you quote someone, give credit as well.
  12. \n
  13. At least 80% of the article must be your own.
  14. \n
  15. You will get feedback after 24 hours and a schedule will be provided when your work will be published.
  16. \n
  17. Once it is published, it will be promoted to the chatroom by either @steemit.asia or @sebastien or @jaycobbell in https://steemit.chat/channel/steemsquadpromotional for all members to see. This is where all promotions are done.
  18. \n
\n


\n

HOW TO GET UPVOTED BY STEEMSQUAD AND MEMBERS

\n


\nPHOTO CREDIT: Clipartix.com
\n

\n
    \n
  1. To get a chance to be upvoted by STEEMSQUAD, you must have a QUALITY blog post.
  2. \n
  3. Use the tag #steemsquad in your blog post.
  4. \n
  5. Our curators will browse through all blog posts using our official #steemsquad tag name and choose will notify the author by commenting that the post has been chosen as a featured post/author. It will be promoted in our chat channel https://steemit.chat/channel/steemsquadpromotional.
  6. \n
\n


\n

STEEMSQUAD ACCOUNT SECURITY

\n

The Posting Key (The posting key is used for posting and voting. It should be different from the active and owner keys) will be given to at least 3 members of STEEMSQUAD responsible for posting blog posts in 24 hour cycle.

\n

The Active Key (The active key is used to make transfers and place orders in the internal market) will be given to 2 members of STEEMSQUAD. One member will act as auditor/backup in case the primary member is not available.

\n

The Owner Key (The owner key is the master key for the account and is required to change the other keys) is given to one Whale sponsor and 2 other members of STEEMSQUAD.

\n

A member responsible for the account security may hold more than one (1) key as shown above.

\n


\n

OUR MENTORS

\n

There are people we consider as examples on the platform. Inspiration, mentors.

\n

@juneaugoldbuyer
\n@thedollarvigilante
\n@dragonslayer109
\n@stellabelle
\n@charlieshreem
\n@rogerkver
\n@donkypong
\n@tuck-fheman
\n@masteryoda
\n@andrarchy 

\n

\"steem-squad-FOLLOW-US\"
\n

\n", + "cashout_time": "2016-09-29T11:08:54", + "category": "introduceyourself", + "children": 18, + "children_abs_rshares": "2254360518257", + "created": "2016-08-28T17:13:18", + "curator_payout_value": { + "amount": "173", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779920, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemsquad\",\"steemit\",\"minnows\",\"writing\"],\"users\":[\"steemit.asia\",\"sebastien\",\"jaycobbell\",\"juneaugoldbuyer\",\"dragonslayer109\",\"stellabelle\",\"charlieshreem\",\"rogerkver\",\"donkypong\",\"tuck-fheman\",\"masteryoda\",\"andrarchy\"],\"image\":[\"https://c1.staticflickr.com/9/8171/29209353271_2eabbba74f_o.png\",\"https://cdn.elegantthemes.com/blog/wp-content/uploads/2016/02/Essential-Blogging-Skills-Know-your-Audience-shutterstock_222537538-Anna-Frajtova.png\",\"http://clipartix.com/wp-content/uploads/2016/04/Thumbs-up-clipart-3.png\",\"https://c1.staticflickr.com/9/8305/29179909862_ed27607510_o.png\"],\"links\":[\"https://steemit.chat/channel/steemsquad.\",\"https://steemit.chat/channel/steemsquadpromotional\",\"https://steemit.chat/channel/steemsquadpromotional.\"]}", + "last_payout": "2016-08-30T11:08:54", + "last_update": "2016-08-28T17:13:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T14:10:24", + "net_rshares": "2243580957008", + "net_votes": 57, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_steem_dollars": 10000, + "permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "reward_weight": 10000, + "root_author": "steemsquad", + "root_permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "title": "Hello! We Are STEEMSQUAD And We Are Here to Support The Minnows. Read On.", + "total_payout_value": { + "amount": "566", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "2243580957008" + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "okay", + "author_rewards": 0, + "beneficiaries": [], + "body": "## A picture is worth a thousand words, more so in astronomy ##\n\n**Let's take a look at the coming week's sky**\n\n\nhttp://www.skyandtelescope.com/wp-content/uploads/Venus-Jupiter-27Aug2016_f.jpg\n(Image courtesy of Sky and Telescope)\nOn August 27th, about 45 minutes after sunset, go outdoors and start looking low above the horizon in the west for an amazingly close pairing of Venus and Jupiter.\n\nhttp://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\n\n\nNext weekend, shortly after sunset, the thin Moon (waxing crescent) steps away from Venus and Jupiter.\n\nLooking at the night sky is a great joy! Free for everyone with no ticket required. You can watch the evening sky with your naked eye, no need for telescope or binoculars for these beautiful astronomical events.\n\n*Stay tuned for next week's sky.*\n\n\n\n\n If you enjoyed this post please vote for my witness node. Learn how to vote for witness `okay` **at the end of my witness post** by [**clicking here**](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network). ", + "cashout_time": "2016-09-28T16:11:21", + "category": "science", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-08-28T15:45:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 778828, + "json_metadata": "{\"tags\":[\"science\",\"astronomy\"],\"image\":[\"http://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", + "last_payout": "2016-08-29T16:11:21", + "last_update": "2016-08-28T17:13:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "science", + "percent_steem_dollars": 10000, + "permlink": "this-week-s-sky-aug-27-sep-3", + "reward_weight": 10000, + "root_author": "okay", + "root_permlink": "this-week-s-sky-aug-27-sep-3", + "title": "This Week's Sky Aug-27/Sep-3", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "130408996119", + "active": "2016-08-28T17:36:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skyefox", + "author_rewards": 125, + "beneficiaries": [], + "body": "As I have stated in earlier posts, gardening is currently my obsession.. it's seems wild to me that the standard is to work for currency and trade currency for food rather than just growing your own food. \n

Here is my small harvest from this morning!

\nEvery morning I go out and eat a couple of my cherry tomatoes, a few leafy greens, and usually 1/2 a leaf of my sweet basil. It's a wonderful thing to wake up, take the dog out and get a healthy organic little snack. I love it.\nhttps://s14.postimg.org/62aqviz0h/IMG_1804.jpg\n\n\nI understand that gardening takes time, effort, and a little bit of knowledge but in my opinion it is one of the most reward \"hobbies.\" This is my first year gardening. I decided to garden this year because I have been doing more and more reading about the American food industry and my conclusion is that the American population are being made sick on purpose through the food we eat. I don't know exactly what does what in our food but it seems absolutely insane to me that we can't get the FDA to evaluate any dietary supplements but they will evaluate and even vouch for these lab made pharmaceutical drugs. \n\nAll of this lead me to feeling a strong urge to grow organic food. I honestly feel guilty when I feed my family and I don't fully believe in what we are eating. Don't get me wrong, I love pepperoni pizza but ignorance is bliss, and I am not ignorant to what I am eating. \n\nI believe I am slowly heading down the path of becoming a vegan as I gain more knowledge. I have always been a hunter and a fisherman, it's what I was taught as a young boy in the north woods. I love to hunt and fish, but I also have a very deep compassion for life. Not human life, but life in general. I believe that we are intelligent enough as a species to live without causing harm to other living things that are equipped with nervous systems. I guess I am just realizing day by day that things are not necessarily what I have been told... \n

This kind of sums up how I feel currently...

\nhttps://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\n\nI am not a very good consumer. I am very frugal and calculated with my money, sometimes to a fault. I'm also not good at being an employee and just being a \"gear in the machine.\" I was not built to work and be told what to do while someone acts as if their employment position somehow gives them a higher status than I. We are humans, you just have a different job. These factors, and many others, have lead to me being self employed and trying to find my way on the internet. I have dabble in many things online and I have learned enough to at least provide myself with enough income to pay my mortgage, bills, etc.. \n\nI am also someone that is in the prepper mind state. I have started my small stockpile of beans, rice, and various other dried foods. I think that the American people have become complacent and many of us are just chasing the carrot we were instructed to chase. Many people seem to not realize the fact that we as a country heavily depend on other people or corporations for the things we use everyday. If water and electricity were to be shut off and panic set it, many people would die because they don't know what to do without someone else providing them with these luxuries. \n\nI don't like the idea of depending on anyone for anything. I have always been someone who provided for myself. I got a job at 14 years old at the local bakery working Saturday mornings so that I could get my first computer myself. I worked for weeks, since I was only getting paid $5.15/hour (roughly 13 years ago) it took me a long time to save up for a computer to play Counterstrike 1.5... We had 6 kids in our house in a \"middle class\" family, needless to say we were told to get jobs as early as possible to acquire our luxuries. Since then I have had the mindset that I don't want to allow someone else to be \"the hand that feeds\", and that applies to food, water, electricity, and even knowledge of my child. \n\nDEPENDENCY OPENS THE DOORS FOR EXPLOITATION! And in a capitalist driven global economy, if it can be exploited, it often is. \n\nMy apologies, there I go again, going of on some rant instead of just showing you the damn garden update. I already can't wait for next spring. I have been buying heirloom vegetable seeds and thrift shopping for large planters for $1 so that next year I can grow lots more. \n

This is the Pink Brandywine that I am so excited about!

\nThese guys took forever to grow. I didn't know what I was doing and I had put too many plants in 1 planter which caused them to compete for the nutrients. On top of them a strong storm came through and blew these guys over and bent there stalks horizontal. I really didn't know if I would get any fruit from them, but they are changing and I can't wait to eat these!\nhttps://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\n\nhttps://s14.postimg.org/e3txgbbgh/IMG_1800.jpg\n\nHere is a cucumber that is growing a little goofy. Not sure why but its like a beer can cucumber... lol\nhttps://s14.postimg.org/c1tg22dhd/IMG_1802.jpg\n\nA more normal cucumber... \nhttps://s14.postimg.org/610t23x6p/IMG_1803.jpg\n\nAnd this is my $3 table I built so that I could start my seeds indoors under some fluorescent lights. \n\n\nhttps://s14.postimg.org/6t3h1b1dt/IMG_1805.jpg\n\n\nThank you for reading and happy gardening!", + "cashout_time": "2016-09-28T18:11:57", + "category": "garden", + "children": 2, + "children_abs_rshares": "130408996119", + "created": "2016-08-28T17:12:54", + "curator_payout_value": { + "amount": "15", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779916, + "json_metadata": "{\"tags\":[\"garden\",\"photography\",\"rant\",\"food\"],\"image\":[\"https://s14.postimg.org/62aqviz0h/IMG_1804.jpg\",\"https://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\",\"https://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\"]}", + "last_payout": "2016-08-29T18:11:57", + "last_update": "2016-08-28T17:12:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-12T21:18:18", + "net_rshares": "130408996119", + "net_votes": 37, + "parent_author": "", + "parent_permlink": "garden", + "percent_steem_dollars": 10000, + "permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "reward_weight": 10000, + "root_author": "skyefox", + "root_permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "title": "A small garden update... My Pink Brandywine Tomatoes are coming!", + "total_payout_value": { + "amount": "123", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "130408996119" + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:08:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "fitiliper1985", + "author_rewards": 0, + "beneficiaries": [], + "body": "
http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png
\n

\n

Before I was in a relationship, I didn't have much sex. My first sexual intercourse occurred while I was travelling overseas on a holiday by myself. I met a woman in hawaii at the airport, and later had sex with her.

\n

I had done a lot of masturbating prior to this. I had often thought about having sex, and I found that my sexual drive caused me to behave in ways that I normally wouldn't. 

\n

\n
https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg
\n

\n

For example I would follow women I found attractive, or I would try to look up their skirts, or I would wander about at night to try to look into bedroom windows.

\n

When I met someone that I knew I would marry, I thought I would be able to have sex as much as I liked because my wife would always be available to have it with me. This turned out to be untrue. My wife didn't want to have sex as often as I wanted to, and I found myself still masturbating while I waited for the next time to come.

\n

I don't think women understand the power of their husband's sexual drive. 

\n

\n
http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg
\n

\n

Men are attracted to women by how they look. It doesn't matter if they are strangers. Men will look at a woman dressed in  a certain way and will start feeling horny. As soon as they ejaculate, the feeling of horniness goes, but will return in a couple of hours. When the sexual desire comes upon a man, it becomes his dominating thought, and it demands to be satisfied. That's why many men then masturbate in order to relieve the pressure on their thoughts. If unrelieved the pressure grows and if the wife is unwilling to have sex, then some men will look for other women to have sex with. 

\n

The sexual pressure is constantly present in a man's mind until relief comes.

\n

\n
https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg
\n

\n

Most women are not as interested in sex as men. 

\n

\n
https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg
\n

\n

Women are more interested in relationship.  Women have sex with a man in the hope that the man will want to stay in their life and have a relationship with them. 

\n

Some women use sex as a bait to catch a man, and then when the relationship is happening, they are not as interested in sex anymore. Women enjoy sex, but as part of a fulfilling relationship. Men just want to put their penis into a vagina and ejaculate. As soon as ejaculation occurs, a lot of men lose all interest in the woman. The woman then feels hurt and used because she didn't get what she wanted which was relationship. Men will say anything they think a woman wants to hear in order to have sex.

\n

Wives who have sex with their husbands when not really wanting it, feel used by their husbands. Women also can be selfish when they demand sex from men who are not in the mood. 

\n

God created sex to be enjoyed in a committed relationship between a man and a woman who are one person physically, spiritually, emotionally, and mentally. 

\n

Sex is a part of the relationship, not the main thing. If a man demands sex then he is being selfish, and his relationship will be harmed if the woman gives sex to the man when she is not wanting to have it. If the man wants sex with his wife, then he must give her what she wants. He must romance her and give her a good relationship. Then if sex happens, it will be enjoyable for both of them. This will build the relationship.

", + "cashout_time": "2016-09-28T17:56:42", + "category": "sex", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-08-28T17:12:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779915, + "json_metadata": "{\"tags\":[\"sex\",\"psychology\",\"life\",\"story\",\"\"],\"image\":[\"http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png\",\"https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg\",\"http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg\",\"https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg\",\"https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg\"]}", + "last_payout": "2016-08-29T17:56:42", + "last_update": "2016-08-28T17:12:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 12, + "parent_author": "", + "parent_permlink": "sex", + "percent_steem_dollars": 10000, + "permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "reward_weight": 10000, + "root_author": "fitiliper1985", + "root_permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "title": "In a relationship, sex becomes a matter of selfishness or unselfishness.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "s0lo", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

Slightly more than a month since then, how did the Ethereum classic (ETC). The ETC team presented a \"road map\" of development of the project, at the first meeting of the supporters of Ethereum Classic (ETC), held on 18 August in London.

\n
The basic version of partitioning the network according to the version of ETC was this:
\n
\"The separation of Ethereum was the result of a difference in the understanding of the basic principle of cryptocurrency. At that time, as fork (ETH) was carried out to recover the stolen funds to investors DAO, Ethereum classic is the original version, based on the principle that \"code is law.\"
\n

Supporters of the ETS argue that the decentralization of infrastructure are insufficient to minimize the possibility of hacking and fraud. For example, the developers of Ethereum actively invested their funds in DAO. Therefore, the decision about hard forks could be dictated by a conflict of interest.

\n

Community ETC believes that all key aspects of the ecosystem should be decentralized, including technological functions such as research and development, and public and administrative functions, including marketing, development and management of the DAPP.

\n

There are plans to remove so-called \"bomb of complexity\" (constant increase in the complexity of mining at ETH) to provide POW mining and make ETC more viable for the miners.

\n

In addition, the community is considering a new economic policy and hybrid solutions using Proof-of-stake (PoS). And, finally, developed new technology to ensure the functioning of \"smart contracts\", but no details.

\n

Classic Ethereum plans to develop the community to the upcoming events in Toronto, Shanghai and Melbourne. These meetings should be used to create local centers. In addition, the stage of development of the relationships with universities, startups and companies. Road map to the end of this year aims to reach consensus with the main team ETC. and receive financial support of developers from third parties.

\n

Initially, the team ETC was planning to copy all the updates that are entered in the ETH, but later decided to give myself a certain amount of autonomy. how and by whom it will be implemented - at the moment neizvestnoy

\n

In 2017, ETC will test different mechanisms of consensus and optimal monetary policy system. In addition, meetings will be held in an expanded format to appeal to a greater number of miners and the following year to create their own ecosystem the development of DAPP.

\n

Perhaps in the course of the year will be able to understand how realistic are attempts to \"overtake and surpass\" team Baterina in the main activities of the Ethereum project.

\n

By 2018, the community ETC choose PoW or hybrid mechanism of consensus and create the proper monetary policy.

\n

More concrete steps at this meeting was not presented.

\n

The rate continues to fall.

\n

Despite the publication of the road map and programme of community development, exchange rate ETC continues to fall. ETC cryptocurrency by market capitalization behind Litecoin and Steem, even given the significant losses the last, and is now in sixth place. ETC remains below the psychologically important level of $2.00 that is displayed on the chart.

\n

\n

ETC trend/USD exchange Poloniex has broken below the most recent level of the fractal at $1.60. A daily close below this level should lead us to a level of $1.34. Please note that the conversion line (blue) currently has resistance at $ 1.7235. 

\n

In addition, the trading volume of the Ethereum classic naturally falling after the initial hype created around this cryptocurrency. This also indicates a greater risk and tells about the deterioration of the situation. Thus, the market is looking down with a possible reversal on the $ 1.34 or even $ 1.00.

\n", + "cashout_time": "2016-09-28T17:44:00", + "category": "road", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:12:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779914, + "json_metadata": "{\"tags\":[\"road\",\"map\",\"etc\",\"ethereum\",\"classic\"],\"image\":[\"http://bits.media/images/news/260816/260816_ethereum-classic-roadmap_1.jpg\",\"http://bits.media/images/news/260816/260816_ethereum-classic-roadmap_2.jpg\"]}", + "last_payout": "2016-08-29T17:44:00", + "last_update": "2016-08-28T17:12:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "road", + "percent_steem_dollars": 10000, + "permlink": "road-map-ethereum-classic-helped-to-keep-the-course", + "reward_weight": 3950, + "root_author": "s0lo", + "root_permlink": "road-map-ethereum-classic-helped-to-keep-the-course", + "title": "Road map Ethereum Classic helped to keep the course.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.orig.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.orig.json new file mode 100644 index 00000000..24750cb9 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": "114793970759", + "active": "2016-08-31T12:56:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gringalicious", + "author_rewards": 75232, + "beneficiaries": [], + "body": "\n

Ok, I surrender!  A horrible picture of myself holding a piece of paper.  I have to say, I don't get it.  I hate taking pictures of myself.  But, several of you have insisted, so... you win, here it is, verification for @gringalicious

\n

\n

I am a 20 year old food blogger living in Chile with my crazy family.  You can read more about that at my first attempt of introducing myself here: Gringalicious Intro .  I have a passion for cooking and a passion for photography.  Yeah, I know, you can't tell by the photo above, but I digress.  You can see examples of my passion on my page @gringalicious. I don't like labels necessarily, but let's just say I don't like the state and those conditioned by the state telling me what to do.  Nor do I like telling others how they should liver their lives.  I will post more on those topics at a later date.

\n

The idea of #Steemit thoroughly intrigues me.  I look forward to being part of the community!

\n

And since I am here talking about myself, I was featured in a magazine recently.  Not trying to promote the magazine necessarily, just trying to add validity to my verification.  And, I have to admit, I just a little proud of myself.

\n

\n

\n


\n

Later this week, I'll be posting a recipe with a #steemitlogo incorporated in it.  So, keep an eye out for it.

\n

I do hope this helps satisfy the request that many of you have made.  If I need to do something different, please let me know.  I actually like corrective criticism so bring it on.

\n

Until my next post, hasta luego mis amigos

\n

Tori

\n", + "cashout_time": "2016-09-28T22:59:51", + "category": "introduceyourself", + "children": 48, + "children_abs_rshares": "256626492237", + "created": "2016-08-28T17:15:12", + "curator_payout_value": { + "amount": "12739", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779946, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"food\",\"photography\",\"Steemit\",\"steemitlogo\"],\"users\":[\"gringalicious\"],\"image\":[\"https://s19.postimg.org/9vrr3pg8j/DSC_0750_2.jpg\",\"https://s19.postimg.org/4j2wpksc3/IMG_20160828_131820621.jpg\",\"https://s16.postimg.org/3ougnif51/IMG_20160828_131853738.jpg\"],\"links\":[\"https://steemit.com/introduceyourself/@gringalicious/hola-steemit-photographer-food-blogger-traveler-and-student-of-life-i-am\"]}", + "last_payout": "2016-08-29T22:59:51", + "last_update": "2016-08-28T17:15:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-14T00:51:15", + "net_rshares": "114793970759", + "net_votes": 82, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_steem_dollars": 10000, + "permlink": "hello-again-better-late-than-never-a-re-introduction-verification", + "reward_weight": 10000, + "root_author": "gringalicious", + "root_permlink": "hello-again-better-late-than-never-a-re-introduction-verification", + "title": "Hello Again - Better Late Than Never - a RE introduction VERIFICATION", + "total_payout_value": { + "amount": "73426", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "114793970759" + }, + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 588, + "beneficiaries": [], + "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", + "cashout_time": "2016-09-28T20:19:39", + "category": "foodchallenge", + "children": 18, + "children_abs_rshares": 2374341643, + "created": "2016-08-28T17:15:12", + "curator_payout_value": { + "amount": "131", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779947, + "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:15:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T01:24:24", + "net_rshares": 0, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "foodchallenge", + "percent_steem_dollars": 10000, + "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", + "total_payout_value": { + "amount": "576", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:15:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "forklognews", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\u041f\u0440\u043e\u0448\u0435\u0434\u0448\u0430\u044f \u043d\u0435\u0434\u0435\u043b\u044f \u043e\u043a\u0430\u0437\u0430\u043b\u0430\u0441\u044c \u0431\u043e\u0433\u0430\u0442\u043e\u0439 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u043c\u0438, \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u043c \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0434\u043b\u044f \u043d\u0430\u0448\u0435\u0439 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u0441\u0442\u0430\u043b\u043e \u0434\u0432\u0443\u0445\u043b\u0435\u0442\u0438\u0435 Forklog. \u0414\u0432\u0430 \u0433\u043e\u0434\u0430 \u043d\u0430\u0437\u0430\u0434, 25 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0431\u044b\u043b \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0434\u043e\u043c\u0435\u043d ForkLog.com, \u0430 \u0441\u043f\u0443\u0441\u0442\u044f \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u0434\u0435\u043b\u0430\u043d\u044b \u043f\u0435\u0440\u0432\u044b\u0435 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u043d\u0430 \u0441\u0430\u0439\u0442\u0435. \u041e\u0431 \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0445, \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u0445 \u043c\u0438\u0440\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442, \u0432\u044b \u0443\u0437\u043d\u0430\u0435\u0442\u0435 \u0438\u0437 \u043d\u0430\u0448\u0435\u0433\u043e \u0435\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0439\u0434\u0436\u0435\u0441\u0442\u0430. 

\n

 \u0411\u0418\u0420\u0416\u0418

\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u0438\u043c\u0435\u043d\u0438\u043d\u043d\u0438\u043a\u043e\u043c \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0438 \u0441\u0442\u0430\u043b\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 Bitstamp, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u043e\u0442\u043c\u0435\u0442\u0438\u043b\u0430 \u043f\u044f\u0442\u0438\u043b\u0435\u0442\u0438\u0435 \u0441\u043e \u0434\u043d\u044f \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f. \u041a \u044d\u0442\u043e\u043c\u0443 \u0441\u043e\u0431\u044b\u0442\u0438\u044e \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0438\u0443\u0440\u043e\u0447\u0438\u043b\u0430 \u043a\u043e\u043d\u043a\u0443\u0440\u0441 \u0441 \u0446\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0440\u0438\u0437\u0430\u043c\u0438.

\n

\u041d\u043e \u044e\u0431\u0438\u043b\u0435\u0438 \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043f\u043e\u0432\u043e\u0434\u043e\u043c \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0430\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 \u0438 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0431\u0438\u0440\u0436 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0440\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0442 \u044d\u0442\u043e \u043c\u043d\u0435\u043d\u0438\u0435, \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u044f \u0433\u0434\u0435-\u0442\u043e \u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0435, \u0430 \u0433\u0434\u0435-\u0442\u043e \u0438 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f.

\n

\u0422\u0430\u043a, \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 GDAX \u043d\u0430\u0447\u0430\u043b\u0430 \u0442\u043e\u0440\u0433\u0438 \u0447\u0435\u0442\u0432\u0435\u0440\u0442\u043e\u0439 \u043f\u043e \u0440\u044b\u043d\u043e\u0447\u043d\u043e\u0439 \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043e\u0439 Litecoin. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0434\u0435\u043b\u0430\u043d\u043e \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0431\u043b\u043e\u0433\u0435 \u0431\u0438\u0440\u0436\u0438. \u0414\u043b\u044f \u0442\u043e\u0440\u0433\u043e\u0432 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0434\u0432\u0435 \u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043f\u0430\u0440\u044b: \u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430\u043c \u0421\u0428\u0410 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043f\u0430\u0440\u0430 LTC / USD, \u0432\u0441\u0435\u043c \u043f\u0440\u043e\u0447\u0438\u043c \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u2014 \u043f\u0430\u0440\u0430 LTC / BTC.

\n

\u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, 23 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0442\u0432\u0438\u0442\u0442\u0435\u0440\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u043e\u0439 \u0431\u0438\u0440\u0436\u0438 Poloniex \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043e\u0441\u043d\u044f\u0442\u0438\u0438 \u0441 \u0442\u043e\u0440\u0433\u043e\u0432 27 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442. \u0422\u043e\u0440\u0433\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0435\u043d\u044b 5 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430 \u0438 \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0443\u0436\u0435 \u0432\u044b\u0437\u0432\u0430\u043b\u043e \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043d\u0435\u0434\u043e\u0443\u043c\u0435\u043d\u0438\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430, \u0432\u0435\u0434\u044c \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u0447\u0435\u043d\u044c \u0432\u043e\u0448\u043b\u0438 \u0442\u0430\u043a\u0438\u0435 \u0430\u043b\u044c\u0442\u043a\u043e\u0438\u043d\u044b, \u043a\u0430\u043a DAO, Dashcoin \u0438 Mintcoin, \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0438\u0433 $1,22 \u043c\u043b\u043d. 

\n

\n

 \u041f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u043a \u043a\u043e\u043d\u0446\u0443 \u0438 \u043d\u0430\u0448\u0443\u043c\u0435\u0432\u0448\u0430\u044f \u0438\u0441\u0442\u043e\u0440\u0438\u044f \u0441 \u0431\u0438\u0440\u0436\u0435\u0439 Bitfinex, \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0435\u0439 \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u0437\u043b\u043e\u043c\u0430. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0431\u0438\u0440\u0436\u0438 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u0438\u0438 \u0434\u043e\u0433\u043e\u0432\u043e\u0440\u0430 \u0441 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u043e\u0439 BnkToTheFuture \u0441 \u0446\u0435\u043b\u044c\u044e \u0432\u043e\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0440\u0435\u0434\u0441\u0442\u0432 \u0432\u043a\u043b\u0430\u0434\u0447\u0438\u043a\u043e\u0432 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u0434\u043e\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0447\u0430\u0441\u0442\u0438\u044f \u0432 \u0430\u043a\u0446\u0438\u043e\u043d\u0435\u0440\u043d\u043e\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438. 

\n

\n

 \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0443 \u0441 BnkToTheFuture \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Bitfinex \u0441\u043c\u043e\u0433\u0443\u0442 \u043e\u0431\u043c\u0435\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u0438\u043c \u0442\u043e\u043a\u0435\u043d\u044b BFX \u043d\u0430 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0443\u044e \u0434\u043e\u043b\u044e \u0432 iFinex Inc, \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438\u0445 \u0412\u0438\u0440\u0433\u0438\u043d\u0441\u043a\u0438\u0445 \u041e\u0441\u0442\u0440\u043e\u0432\u0430\u0445 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u0430\u044f \u043d\u043e\u0432\u043e\u0441\u0442\u044c \u043f\u0440\u0438\u0448\u043b\u0430 \u043d\u0430 \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0435 \u0438\u0437 \u0422\u0443\u0440\u0446\u0438\u0438, \u0433\u0434\u0435 \u0432\u0435\u0434\u0443\u0449\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0438 BTCTurk \u0431\u044b\u043b\u0430 \u0432\u044b\u043d\u0443\u0436\u0434\u0435\u043d\u0430 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443, \u0441\u0442\u043e\u043b\u043a\u043d\u0443\u0432\u0448\u0438\u0441\u044c \u0441 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u043e\u043c \u043e\u0442\u043a\u0430\u0437\u043e\u043c \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0430 \u043e\u0442 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0433\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430. \u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442 \u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c, \u043e\u0434\u043d\u0430\u043a\u043e \u0438\u0437-\u0437\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0445 \u0441\u0447\u0435\u0442\u043e\u0432 \u044d\u0442\u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u0442\u044f\u043d\u0443\u0442\u044c\u0441\u044f. 

\n

 \u041a\u041e\u0428\u0415\u041b\u042c\u041a\u0418 \u0418 \u041f\u041b\u0410\u0422\u0401\u0416\u041d\u042b\u0415 \u0421\u0415\u0420\u0412\u0418\u0421\u042b

\n

\u041f\u0435\u0440\u0432\u044b\u043c \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u044b\u043c \u043a\u043e\u0448\u0435\u043b\u044c\u043a\u043e\u043c, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0438\u043c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Ethereum, \u0441\u0442\u0430\u043b Trezor. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0430 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 Trezor \u043d\u0430 Github.

\n

\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043e\u0442 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438-\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430 SatoshiLabs \u043f\u043e\u043a\u0430, \u0432\u043f\u0440\u043e\u0447\u0435\u043c, \u043d\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u043b\u043e, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0434\u0430\u0442\u0430 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0435\u043b\u0438\u0437\u0430 \u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u0430 \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043e\u0441\u0442\u0430\u0435\u0442\u0441\u044f \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e\u0439.

\n

\u0421\u043f\u0438\u0441\u043a\u0438 \u0440\u0430\u0431\u043e\u0447\u0438\u0445 \u0432\u0430\u043b\u044e\u0442 \u043f\u043e\u043f\u043e\u043b\u043d\u0438\u043b\u0438\u0441\u044c \u0443 \u043f\u043b\u0430\u0442\u0451\u0436\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 Bitwala, \u0432\u043a\u043b\u044e\u0447\u0438\u0432\u0448\u0435\u0433\u043e \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Dash \u0438 Emercoin, \u0438 \u0432\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044c\u0441\u043a\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b Cryptobuyer, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0435\u0439 Dash. \u041e\u0442\u043c\u0435\u0442\u0438\u043c, \u0447\u0442\u043e \u0436\u0438\u0442\u0435\u043b\u0438 \u0412\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044b, \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043d\u0435\u0442 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u0432 \u043b\u0438\u0431\u043e \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u043e\u0432 \u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u0432 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442, \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0443\u0441\u043b\u0443\u0433\u0430\u043c\u0438 \u043c\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0451\u0440\u0430 Cryptobuyer \u2013 \u0441\u0435\u0442\u044c\u044e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u043c\u0430\u0442\u043e\u0432 TigoCTM.

\n

\u0422\u0430\u043a\u0436\u0435 \u0432\u044b\u0448\u043b\u0430 \u0432 \u0441\u0432\u0435\u0442 \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f Ethereum-\u043a\u043e\u0448\u0435\u043b\u044c\u043a\u0430 Mist \u0441 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u043e\u0439 Coinbase Buy Widget. \u041e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0435\u0451 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u043e\u0441\u043e\u0431\u0435\u043d\u043d\u043e\u0441\u0442\u0435\u0439 \u0441\u0442\u0430\u043b\u043e \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 Coinbase Buy Widget \u2013 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430, \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0438\u0442\u044c \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u043a\u0443\u043f\u043a\u0443 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043d\u0430 \u0441\u0443\u043c\u043c\u0443 \u0434\u043e $5.

\n

\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0434\u0430\u043d\u043d\u0430\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c \u0438\u0437 \u0421\u0428\u0410 \u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043d\u0430\u043b\u0438\u0447\u0438\u044f \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430 \u043d\u0430 Coinbase. 

\n

\n

 \u0411\u0410\u041d\u041a\u0418 \u0418 \u041a\u041e\u0420\u041f\u041e\u0420\u0410\u0426\u0418\u0418

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u043c \u0438\u0437\u0432\u0435\u0441\u0442\u0438\u0435\u043c, \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u044b\u043c \u0441\u0442\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0432\u0435\u0441\u0442\u043d\u0438\u043a\u043e\u043c \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0445 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0435, \u0441\u0442\u0430\u043b\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0438\u0437\u0434\u0430\u043d\u0438\u044f Financial Times \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0440\u044f\u0434 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0445 \u043c\u0438\u0440\u043e\u0432\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u0432 \u043f\u0440\u0438\u043d\u044f\u043b \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043d\u043e\u0432\u043e\u0439 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u043b\u044e\u0442\u044b. \u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0435\u0439 \u0431\u0430\u043d\u043a\u043e\u0432 UBS, Deutsche Bank, Santander \u0438 BNY Mellon \u043e\u0436\u0438\u0434\u0430\u043b\u043e\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u043d\u043e \u0434\u043e \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u043d\u0435 \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c.

\n

\u0415\u0441\u043b\u0438 \u044d\u0442\u043e \u043e\u043a\u0430\u0436\u0435\u0442\u0441\u044f \u043d\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u0443\u0442\u043a\u043e\u0439, \u0442\u043e \u0441\u0442\u043e\u0438\u0442 \u043e\u0436\u0438\u0434\u0430\u0442\u044c, \u0447\u0442\u043e \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u043a \u044d\u0442\u043e\u0439 \u0438\u043d\u0438\u0446\u0438\u0430\u0442\u0438\u0432\u0435 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u044f\u0442\u0441\u044f \u0438 \u043f\u0440\u043e\u0447\u0438\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u044b \u0441\u043e \u0432\u0441\u0435\u0445 \u043a\u043e\u043d\u0446\u043e\u0432 \u0441\u0432\u0435\u0442\u0430, \u0434\u0430\u0436\u0435 \u0441 \u0434\u0430\u043b\u0451\u043a\u043e\u0433\u043e \u0430\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0438\u043d\u0435\u043d\u0442\u0430. \u0422\u0430\u043c \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0439 \u042e\u0436\u043d\u043e-\u0410\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u0431\u0430\u043d\u043a\u0430 \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e \u0432 \u0441\u0432\u043e\u0435\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0438 \u043d\u0430 \u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0438\u0438 \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u043a\u0440\u0438\u043f\u0442\u043e\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u0443\u0436\u0435 \u0438\u0437\u0443\u0447\u0430\u0435\u0442 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0437\u0430\u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043e\u0432\u0430\u043d \u0432 \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0434\u0430\u0442\u044c \u044d\u0442\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f. 

\n
 \u00ab\u041a\u0430\u043a \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u0431\u0430\u043d\u043a, \u043c\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044b \u043a \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u043c \u043d\u0435\u0441\u043c\u043e\u0442\u0440\u044f \u043d\u0430 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u043e\u0435 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u043e\u0440\u043e\u0432 \u043a \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u043c. \u041c\u044b \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u044b \u0438\u0437\u0443\u0447\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043a\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e. 
\n

 \u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0439 \u0431\u0430\u043d\u043a \u042f\u043f\u043e\u043d\u0438\u0438 Bank of Tokyo-Mitsubishi UFJ (MUFG) \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e\u0431 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0438 \u0432\u0435\u0440\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043b\u0430\u0442\u0435\u0436\u0438 \u043f\u043e \u0447\u0435\u043a\u0430\u043c. \u0421\u043e\u0437\u0434\u0430\u043d\u043d\u043e\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0432 \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u043c\u0438 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u0430\u043c\u0438 \u0438 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u043c\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f\u043c\u0438 \u0432 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u043e\u043c \u0440\u0435\u0433\u0438\u043e\u043d\u0435. \u0412 \u0431\u0443\u0434\u0443\u0449\u0435\u043c Bank of Tokyo-Mitsubishi \u043d\u0430\u0434\u0435\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043c\u043e\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043d\u0430\u0439\u0442\u0438 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u0435.

\n

\u041e\u0442 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432 \u043d\u0435 \u043e\u0442\u0441\u0442\u0430\u044e\u0442 \u0438 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 \u043a\u043e\u043d\u0441\u043e\u0440\u0446\u0438\u0443\u043c\u0430 R3 CEV, \u0437\u0430\u043f\u0430\u0442\u0435\u043d\u0442\u043e\u0432\u0430\u0432\u0448\u0438\u0435 \u043d\u043e\u0432\u044b\u0439 \u043f\u0440\u043e\u0434\u0443\u043a\u0442 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 Concord, \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0439 \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0435 \u0423\u043e\u043b\u043b-\u0441\u0442\u0440\u0438\u0442.

\n

Concord \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0441\u043e\u0431\u043e\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0443, \u0441\u0432\u044f\u0437\u044b\u0432\u0430\u044e\u0449\u0443\u044e \u0432\u043e\u0435\u0434\u0438\u043d\u043e \u0440\u044b\u043d\u043a\u0438 \u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0438 \u043f\u0440\u0438\u0437\u0432\u0430\u043d\u043d\u0443\u044e \u043f\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u043c\u0438\u0434\u0434\u043b- \u0438 \u0431\u044d\u043a-\u043e\u0444\u0438\u0441\u043e\u0432 \u0432 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u0440\u0438\u0430\u043d\u0442. \u042d\u0442\u043e \u0434\u0430\u0441\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0431\u0430\u043d\u043a\u0430\u043c \u0438\u0437\u0431\u0430\u0432\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u044b\u0445 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432 \u0438 \u0441\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0442\u044c \u043c\u0438\u043b\u043b\u0438\u0430\u0440\u0434\u044b \u0434\u043e\u043b\u043b\u0430\u0440\u043e\u0432. \u041e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f, \u0447\u0442\u043e \u0430\u043b\u044c\u0444\u0430-\u0432\u0435\u0440\u0441\u0438\u044f \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430 \u0432 \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435 2017 \u0433\u043e\u0434\u0430.

\n

\u0412\u0441\u0451 \u044d\u0442\u043e \u0437\u0430\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u043e\u0432 \u0438 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0441\u0442\u043e\u0432 \u0441\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u043e\u043c \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u043b\u044c\u043d\u043e, \u043c\u0435\u043d\u044f\u044f \u0441\u0432\u043e\u0438 \u043f\u0440\u043e\u0433\u043d\u043e\u0437\u044b \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b.

\n

\u0412 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a \u041a\u0438\u0440\u0438\u043b\u043b \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u044d\u0442\u0438\u043c \u043f\u043e\u044f\u0432\u044f\u0442\u0441\u044f \u043d\u043e\u0432\u044b\u0435 \u043c\u0435\u0436\u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b.

\n
\u00ab\u0412 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 blockchain \u043f\u0440\u043e\u0447\u043d\u043e \u0443\u043a\u0440\u0435\u043f\u044f\u0442\u0441\u044f \u043d\u0430 \u043c\u0435\u0436\u0431\u0430\u043d\u043a\u0435, \u0432\u044b\u0442\u0435\u0441\u043d\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043e\u0431\u043c\u0435\u043d\u0430 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043c\u0435\u0436\u0434\u0443 \u043d\u0438\u043c\u0438 (\u0432 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0441\u0438\u0441\u0442\u0435\u043c\u0443 SWIFT) \u0438 \u0441\u0442\u0430\u043d\u0443\u0442 \u043d\u0435\u043e\u0442\u044a\u0435\u043c\u043b\u0435\u043c\u043e\u0439 \u0447\u0430\u0441\u0442\u044c\u044e \u0442\u043e\u0440\u0433\u043e\u0432 \u043d\u0430 \u0440\u044b\u043d\u043a\u0430\u0445 \u0446\u0435\u043d\u043d\u044b\u0445 \u0431\u0443\u043c\u0430\u0433. \u0427\u0442\u043e \u0436\u0435 \u043a\u0430\u0441\u0430\u0435\u0442\u0441\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0432 \u043f\u0440\u0438\u0432\u044b\u0447\u043d\u043e\u043c \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438, \u0442\u043e \u043e\u043d\u0438 \u0442\u0430\u043a\u0436\u0435, \u0441\u043a\u043e\u0440\u0435\u0435 \u0432\u0441\u0435\u0433\u043e, \u0443\u0436\u0435 \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u043c \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 blockchain \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u043d\u043e\u0435 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435\u00bb, \u2014 \u0441\u0447\u0438\u0442\u0430\u0435\u0442 \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e.
\n

\u041a\u041e\u041c\u041f\u0410\u041d\u0418\u0418

\n

\u0414\u0430\u0442\u0441\u043a\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Bitshares Munich IVS, \u0432\u043b\u0430\u0434\u0435\u044e\u0449\u0430\u044f \u0431\u0440\u0435\u043d\u0434\u043e\u043c BlockPay, \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0441\u0442\u0430\u0440\u0442\u0435 ICO. \u0412 \u0445\u043e\u0434\u0435 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 BlockPay, P2P-\u043c\u0435\u0441\u0441\u0435\u043d\u0434\u0436\u0435\u0440\u0430 ECHO \u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u044b\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u0435\u0439 Stealth. \u041f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043a\u0440\u0430\u0443\u0434\u0444\u0430\u043d\u0434\u0438\u043d\u0433\u043e\u0432\u043e\u0439 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043d\u0430 2016 \u0438 2017 \u0433\u043e\u0434\u044b. \u0421\u0430\u043c\u0430 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u043e\u0441\u0442\u043e\u0438\u0442 \u0438\u0437 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 ICO (Pre-ICO), \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0430\u0432\u0433\u0443\u0441\u0442 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430, \u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0430 \u0432 2017 \u0433\u043e\u0434\u0443. \u0412\u0441\u0435\u0433\u043e \u043f\u043b\u0430\u043d\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c 100 \u043c\u0438\u043b\u043b\u0438\u043e\u043d\u043e\u0432 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 BlockPay.

\n

\u041f\u0440\u043e\u0435\u043a\u0442 \u043f\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c \u043a\u043e\u0434\u043e\u043c Hyperledger \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u0438\u043c\u0435\u043d\u0430 \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u043e\u0441\u0442\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430. \u0421\u0440\u0435\u0434\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u2014 \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u044e\u0449\u0438\u0445 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0438 \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0439 \u0443\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0431\u0430\u0437\u044b \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u043a\u043e\u0434\u0430.

\n

\u0412 \u043d\u043e\u0432\u043e\u043c \u0441\u043e\u0441\u0442\u0430\u0432\u0435 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u043b\u0438 \u0441\u0432\u043e\u0438 \u043c\u0435\u0441\u0442\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 R3CEV \u0413\u0435\u043d\u0434\u0430\u043b \u0411\u0440\u0430\u0443\u043d, \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432 Digital Asset Holdings \u0422\u0430\u043c\u0430\u0448 \u0411\u043b\u0443\u043c\u043c\u0435\u0440, \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c Fujitsu \u0425\u0430\u0440\u0442 \u041c\u043e\u043d\u0442\u0433\u043e\u043c\u0435\u0440\u0438, \u0438\u043d\u0436\u0435\u043d\u0435\u0440 Intel \u041c\u0438\u043a \u0411\u043e\u0443\u043c\u0435\u043d \u0438 \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 IBM \u041a\u0440\u0438\u0441\u0442\u043e\u0444\u0435\u0440 \u0424\u0435\u0440\u0440\u0438\u0441. \u0421\u0440\u0435\u0434\u0438 \u043d\u043e\u0432\u044b\u0445 \u0438\u043c\u0435\u043d \u2013 \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c IBM \u0410\u0440\u043d\u043e \u043b\u0435 \u041e\u0440, \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u043e\u0440 IBM \u0411\u0438\u043d \u041d\u0433\u0443\u0435\u043d, \u0433\u043b\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a Intel \u0414\u044d\u043d \u041c\u0438\u0434\u0434\u043b\u0442\u043e\u043d, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 DTCC, Salesforce \u0438 \u041b\u043e\u043d\u0434\u043e\u043d\u0441\u043a\u043e\u0439 \u0444\u043e\u043d\u0434\u043e\u0432\u043e\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0441\u0442\u0430\u0440\u0442\u0430\u043f Chronicled Inc. \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u0434\u043b\u044f \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430 \u0432\u0435\u0449\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u044b\u043b \u0441\u043e\u0437\u0434\u0430\u043d \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 Ethereum. \u042d\u0442\u043e\u0442 \u0440\u0435\u0435\u0441\u0442\u0440 \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d \u0434\u043b\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0445 \u043a\u043e\u0434\u043e\u0432 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0438\u043c\u0435\u044e\u0449\u0438\u0445 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435 \u0447\u0438\u043f\u044b NFC \u0438 BLE.

\n
\u00ab\u0422\u0435\u043f\u0435\u0440\u044c \u0432\u0441\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0438 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0431\u0443\u0434\u044c-\u0442\u043e \u0431\u0440\u0435\u043d\u0434\u044b, \u043d\u043e\u0441\u0438\u0442\u0435\u043b\u0438 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0438 \u043f\u0440\u043e\u0447\u0435\u0435, \u043c\u043e\u0433\u0443\u0442 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0437\u0430\u0449\u0438\u0449\u0451\u043d\u043d\u044b\u0435 \u043e\u0442 \u043f\u043e\u0434\u0434\u0435\u043b\u043e\u043a \u0447\u0438\u043f\u044b \u0432 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 Chronicled \u0420\u0430\u0439\u0430\u043d \u041e\u0440\u0440. \u041d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u043e\u043c \u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043e \u043e\u043a\u043e\u043b\u043e 10 000 NFC \u0438 BLE \u0447\u0438\u043f\u043e\u0432.
\n

\u041a\u0430\u043a \u0441\u043e\u043e\u0431\u0449\u0430\u0435\u0442 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Business Insider UK, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u0432 \u0421\u0428\u0410 \u0442\u0435\u043b\u0435\u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Verizon Communications \u044d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0438\u0440\u0443\u0435\u0442 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0422\u0430\u043a, \u0432 \u0440\u0430\u0441\u043f\u043e\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u043f\u043e\u043f\u0430\u043b \u043f\u0430\u0442\u0435\u043d\u0442, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 Verizon 10 \u043c\u0430\u044f \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u0418\u0437 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u043f\u0430\u0442\u0435\u043d\u0442\u0430 \u0441\u043b\u0435\u0434\u0443\u0435\u0442, \u0447\u0442\u043e \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u0430 \u043d\u0435\u043a\u043e\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043a\u043b\u044e\u0447\u0435\u0439, \u0430 \u0440\u0430\u0431\u043e\u0442\u044b \u043d\u0430\u0434 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u043c \u0432\u0435\u043b\u0438\u0441\u044c \u043d\u0430 \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0442\u0440\u0451\u0445 \u043b\u0435\u0442. \u0412\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043f\u043e\u0434\u043e\u0431\u043d\u043e\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0432 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u0438 \u0441\u043e \u0441\u043c\u0430\u0440\u0442-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430\u043c\u0438 \u0434\u0430\u0451\u0442 \u043c\u0430\u0441\u0441\u0443 \u043d\u043e\u0432\u044b\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u0432 \u0441\u0444\u0435\u0440\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0438\u043b\u0438 \u0430\u0432\u0442\u043e\u0440\u044b \u0441\u0442\u0430\u0442\u0435\u0439 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0441\u0432\u043e\u044e \u043e\u043f\u043b\u0430\u0442\u0443 \u0441\u0440\u0430\u0437\u0443 \u0436\u0435 \u043f\u043e\u0441\u043b\u0435 \u0442\u043e\u0433\u043e, \u043a\u0430\u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0430\u0447\u0430\u043b \u0447\u0438\u0442\u0430\u0442\u044c \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b \u0438\u043b\u0438 \u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430\u0442\u044c \u043f\u0435\u0441\u043d\u044e.

\n

\u0412\u0430\u043b\u044e\u0442\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440\u0430 (MAS) \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u043b\u043e \u0441 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0435\u0434\u0438\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439, \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u043d\u044b\u0435 \u0443\u0441\u043b\u0443\u0433\u0438, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438.

\n

\u0421\u0442\u0430\u043b\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0447\u0442\u043e \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0441\u0442\u0430\u0440\u0442\u0430\u043f Keza \u0432\u044b\u043a\u0443\u043f\u043b\u0435\u043d \u0444\u0438\u043b\u0438\u043f\u043f\u0438\u043d\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 Satoshi Citadel Industries, \u0432 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u043c \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u043c \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0443\u0436\u0435 \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0442 \u0442\u0430\u043a\u0438\u0435 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u044b, \u043a\u0430\u043a Rebit.ph, Bitbit.cash \u0438 PrepaidBitcoin.ph.

\n
\u00abKeza \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u043b\u0430\u0441\u044c \u0441 \u043f\u0440\u0438\u0446\u0435\u043b\u043e\u043c \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u044e\u0449\u0438\u0435\u0441\u044f \u0440\u044b\u043d\u043a\u0438 \u0438 \u0434\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0435 \u0438\u043c\u0435\u044e\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u043c \u0440\u044b\u043d\u043a\u0430\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0430. \u041c\u044b \u0441\u0447\u0430\u0441\u0442\u043b\u0438\u0432\u044b, \u0447\u0442\u043e \u0442\u0435\u043f\u0435\u0440\u044c \u0432\u0438\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0441\u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0440\u0435\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043e\u00bb, \u2014 \u0446\u0438\u0442\u0438\u0440\u0443\u0435\u0442 CEO Keza \u0421\u0430\u0439\u043c\u043e\u043d\u0430 \u0411\u0435\u0440\u043d\u0441\u0430 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Silicon Angle.
\n

\u0414\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0435\u0442\u044c Steemit \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u00ab\u0431\u0435\u0441\u043f\u0440\u0435\u0446\u0435\u0434\u0435\u043d\u0442\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u0442\u0440\u0430\u0444\u0438\u043a\u0430\u00bb, \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u044b\u043c \u0441 \u0442\u0435\u043c, \u0447\u0442\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u043b\u0438 \u043d\u0430 \u0440\u0430\u043d\u043d\u0438\u0445 \u044d\u0442\u0430\u043f\u0430\u0445 \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f Facebook \u0438 Reddit.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Steemit, \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u0435\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u043e \u0440\u0430\u0437\u043c\u0435\u0449\u0430\u044e\u0442 \u0431\u043e\u043b\u0435\u0435 21 000 \u043d\u043e\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0430 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432 \u0432 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u043f\u043e\u0441\u0442\u043e\u0432 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0435\u0442 70 000. \u042d\u0442\u043e \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u043e \u0441 \u0440\u0430\u043d\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c\u044e \u043d\u0430 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0430\u0445 \u0432\u0440\u043e\u0434\u0435 Facebook \u0438 Reddit.

\n

\u0417\u0430 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u0434\u0435\u043b\u044c \u0434\u043e \u0441\u0442\u0430\u0440\u0442\u0430 \u043a\u0440\u0430\u0443\u0434\u0441\u0435\u0439\u043b\u0430 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 DECENT \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0434\u0438\u0441\u0442\u0440\u0438\u0431\u0443\u0446\u0438\u0438 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 DCT. \u0422\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0432\u0435\u0440\u0433\u043b\u043e\u0441\u044c \u043f\u0435\u0440\u0435\u0441\u043c\u043e\u0442\u0440\u0443 \u043e\u0431\u0449\u0435\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0445 \u043a \u0432\u044b\u043f\u0443\u0441\u043a\u0443 \u043c\u043e\u043d\u0435\u0442. \u041a\u0430\u043a \u0437\u0430\u044f\u0432\u0438\u043b\u0438 \u0432 DECENT, \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435, \u0445\u043e\u0442\u044f \u0438 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u043c, \u0442\u0430\u043a\u0436\u0435 \u0431\u044b\u043b\u043e \u043f\u0440\u0438\u043d\u044f\u0442\u043e \u0441 \u0443\u0447\u0435\u0442\u043e\u043c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430.

\n

\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Coinbase \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0438 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0441\u0432\u043e\u0435\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u043d\u0430 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442. \u0422\u0435\u043f\u0435\u0440\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u043a\u0443\u043f\u043a\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u043a\u0430\u0440\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Coinbase \u0432 \u0415\u0432\u0440\u043e\u043f\u0435.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Coinbase, \u0432 \u0421\u0428\u0410 40% \u0441\u0434\u0435\u043b\u043e\u043a \u043f\u043e \u043f\u043e\u043a\u0443\u043f\u043a\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0441 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0435\u043c\u0438\u0442\u0441\u044f \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u044d\u0442\u043e\u0442 \u0441\u0435\u0440\u0432\u0438\u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0432 \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435\u043c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0435 \u0441\u0442\u0440\u0430\u043d.

\n

\u041f\u0415\u0420\u0421\u041e\u041d\u0410\u041b\u0418\u0418

\n

\u041e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Distributed Lab \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u0440\u0430\u0441\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u044f \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0441\u0444\u0435\u0440\u0430\u0445 \u0435\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f, \u043d\u0430\u0437\u0432\u0430\u0432 \u043e\u0442\u0440\u0430\u0441\u043b\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043e\u043d\u0430, \u043d\u0430 \u0435\u0433\u043e \u0432\u0437\u0433\u043b\u044f\u0434, \u0432\u0440\u044f\u0434 \u043b\u0438 \u043d\u0443\u0436\u043d\u0430 \u0432\u043e\u043e\u0431\u0449\u0435. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u043f\u043e\u0441\u0442 \u0431\u044b\u043b \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d \u0432 \u0435\u0433\u043e \u0431\u043b\u043e\u0433\u0435 \u043d\u0430 Medium.

\n

\u0412\u044b\u0441\u043a\u0430\u0437\u0430\u0432 \u0440\u0430\u043d\u0435\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u0431\u0438\u0437\u043d\u0435\u0441 \u043d\u0435 \u0433\u043e\u0442\u043e\u0432 \u043f\u043e-\u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u043c\u0443 \u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u041f\u0430\u0432\u0435\u043b \u043d\u0430 \u044d\u0442\u043e\u0442 \u0440\u0430\u0437 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u043b \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u043e\u0434\u0430 \u0433\u0438\u0434 \u0434\u043b\u044f \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432. \u0412 \u043d\u0435\u043c \u043e\u043f\u0438\u0441\u0430\u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0430\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430\u0442\u0438\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u0438 \u0440\u0435\u0448\u0435\u043d\u0438\u0439 \u0438 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u043f\u043e\u043c\u043e\u0449\u044c \u0432 \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438 \u0442\u043e\u0433\u043e, \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043b\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043d\u0438\u0445 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0439.

\n
\u00ab\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043e\u0431 \u0438\u043c\u043f\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u044f \u043f\u043e\u043b\u0443\u0447\u0430\u044e \u043a\u0430\u0436\u0434\u044b\u0439 \u0434\u0435\u043d\u044c. \u041e\u0434\u043d\u0430\u043a\u043e \u0447\u0430\u0441\u0442\u043e \u044f \u0441\u0447\u0438\u0442\u0430\u044e, \u0447\u0442\u043e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u043d\u0435 \u043d\u0443\u0436\u0435\u043d \u0432\u043e\u0432\u0441\u0435. \u0415\u0441\u0442\u044c \u0434\u0440\u0443\u0433\u0438\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0442\u0438\u043f\u044b \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b, \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u2013 \u043b\u0438\u0448\u044c \u043e\u0434\u0438\u043d \u0438\u0437 \u043d\u0438\u0445\u00bb, \u2014 \u043f\u0438\u0448\u0435\u0442 \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e.
\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0435\u043c \u0433\u0443\u0440\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441\u0442\u0430\u043b\u0430 \u043b\u0435\u043a\u0446\u0438\u044f \u043a\u0430\u043d\u0430\u0434\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044f \u0414\u043e\u043d\u0430 \u0422\u044d\u043f\u0441\u043a\u043e\u0442\u0442\u0430, \u0430\u0432\u0442\u043e\u0440\u0430 \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0438\u0437\u0434\u0430\u043d\u043d\u043e\u0439 \u043a\u043d\u0438\u0433\u0438 \u00ab\u0420\u0435\u0432\u043e\u043b\u044e\u0446\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430\u00bb, \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u0432\u0448\u0435\u0433\u043e \u0441 \u043b\u0435\u043a\u0446\u0438\u0435\u0439 \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u043d\u0430 \u0441\u0430\u043c\u043c\u0438\u0442\u0435 TED Talk \u0432 \u0410\u043b\u044c\u0431\u0435\u0440\u0442\u0435. 

\n

 \u0423\u041a\u0420\u0410\u0418\u041d\u0410

\n

\u0412 \u0423\u043a\u0440\u0430\u0438\u043d\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u043e\u0432 \u0432 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0443\u043c \u0441\u0442\u0440\u0430\u043d\u044b. \u0422\u0430\u043a, \u043a\u043e\u043c\u0430\u043d\u0434\u0430 e-Vox \u0430\u043d\u043e\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043b\u0430 \u0437\u0430\u043f\u0443\u0441\u043a \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0439 \u0420\u0430\u0434\u0435 \u0411\u0430\u043b\u0442\u044b (\u041e\u0434\u0435\u0441\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c). \u041e\u0431 \u044d\u0442\u043e\u043c \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 ForkLog \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u043e\u0440 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041a\u043e\u043d\u0430\u0448\u0435\u0432\u0438\u0447. 

\n

\n

 \u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f, \u0432\u043d\u0435\u0441\u0435\u043d\u043d\u044b\u0435 \u0432 \u0434\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u0431\u0430\u0437\u0443 \u0434\u0430\u043d\u043d\u044b\u0445, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0438 \u0432\u044b\u0432\u043e\u0434\u0438\u0442\u044c \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0443 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0440\u0435\u0448\u0435\u043d\u0438\u0439. \u0410 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u043f\u043e\u043c\u043e\u0436\u0435\u0442 \u043d\u0430\u0434\u0435\u0436\u043d\u043e \u0437\u0430\u0449\u0438\u0442\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e\u0442 \u0432\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0435\u0433\u043e \u0438 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043f\u0440\u0430\u0432\u043d\u043e\u0433\u043e \u0432\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430.

\n

\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u043e\u0439 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430 e-Vox \u0437\u0430\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Ambisafe \u0438 Vareger.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0432 \u044d\u0442\u043e\u043c \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438 \u0432 \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. \u0422\u0430\u043a, \u043c\u044d\u0440 \u0433\u043e\u0440\u043e\u0434\u0430 \u0413\u0435\u043d\u043d\u0430\u0434\u0438\u0439 \u0414\u0438\u043a\u0438\u0439 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043b \u043f\u0440\u043e\u0435\u043a\u0442 \u043e\u0431 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b Auction 3.0 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043e\u0434\u043d\u043e\u0433\u043e \u0438\u0437 \u0430\u043a\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u043f\u0440\u0438\u043d\u044f\u0442 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u0435 \u0432\u0440\u0435\u043c\u044f.
\n\u041e\u0431 \u044d\u0442\u043e\u043c \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0440\u0435\u0448\u0435\u043d\u0438\u0438 \u00ab\u041e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043f\u043b\u0430\u043d \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0411\u0435\u043b\u043e\u0446\u0435\u0440\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0433\u043e \u0441\u043e\u0432\u0435\u0442\u0430 \u043f\u0440\u0438 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u044b\u0445 \u0430\u043a\u0442\u043e\u0432 \u043d\u0430 2016 \u0433\u043e\u0434\u00bb, \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043d\u043e\u043c \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. 

\n

\n

 \u0420\u041e\u0421\u0421\u0418\u042f

\n

\u0412 \u043f\u044f\u0442\u043d\u0438\u0446\u0443, 26 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0437\u0430\u043c\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041c\u043e\u0438\u0441\u0435\u0435\u0432 \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u041c\u0438\u043d\u0438\u0441\u0442\u0435\u0440\u0441\u0442\u0432\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u0435\u0442 \u043f\u0440\u043e\u0442\u0438\u0432 \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u00ab\u043b\u043e\u0431\u043e\u0432\u043e\u0433\u043e \u0437\u0430\u043f\u0440\u0435\u0442\u0430\u00bb \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430. \u041f\u043e \u0435\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u043c, \u0437\u0430\u043a\u043e\u043d\u043e\u043f\u0440\u043e\u0435\u043a\u0442 \u043e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u0445 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d \u043f\u043e \u0438\u0442\u043e\u0433\u0430\u043c \u043f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0435\u0440\u0438\u0438 \u0432\u0441\u0442\u0440\u0435\u0447 \u0441 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u0430\u043c\u0438.

\n

\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u044d\u0442\u043e \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u043b\u043e \u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u0435\u043c \u0432\u0441\u0442\u0440\u0435\u0447\u0438, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0441\u043e\u0441\u0442\u043e\u044f\u043b\u0430\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430 \u0420\u0424 \u043f\u043e\u0434 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e\u043c \u0441\u043e\u0432\u0435\u0442\u043d\u0438\u043a\u0430 \u043f\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0443 \u0413\u0435\u0440\u043c\u0430\u043d\u0430 \u041a\u043b\u0438\u043c\u0435\u043d\u043a\u043e. \u041d\u0430 \u043c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u0438 \u043e\u0431\u0441\u0443\u0436\u0434\u0430\u043b\u0430\u0441\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u0420\u043e\u0441\u0441\u0438\u0438 \u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0435\u0435 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f \u043d\u0430 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043b\u0438\u0441\u044c \u0432 \u0441\u0442\u043e\u0440\u043e\u043d\u0435 \u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0438 \u0432\u043b\u0430\u0441\u0442\u0438 \u041c\u043e\u0441\u043a\u0432\u044b, \u0437\u0430\u044f\u0432\u0438\u0432\u0448\u0438\u0435 \u043d\u0430 \u044d\u0442\u043e\u043c \u0436\u0435 \u0441\u043e\u0432\u0435\u0449\u0430\u043d\u0438\u0438 \u043e \u0433\u043e\u0442\u043e\u0432\u043d\u043e\u0441\u0442\u0438 \u0432\u043d\u0435\u0434\u0440\u0438\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb.

\n
\u00ab\u041c\u043e\u0441\u043a\u0432\u0430 \u0433\u043e\u0442\u043e\u0432\u0430 \u0431\u044b\u0442\u044c \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0418 \u043a\u0430\u043a \u0440\u0430\u0437 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0438\u043b\u043e\u0442\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043c\u044b \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb. \u041c\u044b \u0445\u043e\u0442\u0438\u043c, \u0441 \u043e\u0434\u043d\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u043e\u0442\u043f\u0438\u043b\u043e\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0438 \u043f\u043e\u043d\u044f\u0442\u044c, \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043e\u043d\u0430 \u0434\u0435\u0435\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u0430 \u0434\u043b\u044f \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u0442\u0430\u043a\u043e\u0433\u043e \u0440\u043e\u0434\u0430 \u0437\u0430\u0434\u0430\u0447. \u0421 \u0434\u0440\u0443\u0433\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u0441\u043d\u044f\u0442\u044c \u0441 \u0441\u0435\u0431\u044f \u043d\u0435\u043a\u0438\u0439 \u0441\u043a\u0435\u043f\u0441\u0438\u0441 \u0441\u043e \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0437\u0430\u043c\u0435\u0441\u0442\u0438\u0442\u0435\u043b\u044c \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0430 \u0434\u0435\u043f\u0430\u0440\u0442\u0430\u043c\u0435\u043d\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 \u041c\u043e\u0441\u043a\u0432\u044b \u0410\u043d\u0434\u0440\u0435\u0439 \u0411\u0435\u043b\u043e\u0437\u0435\u0440\u043e\u0432,
\n

\u041e\u043a\u0430\u0437\u0430\u043b\u0438\u0441\u044c \u0432\u043e\u0432\u043b\u0435\u0447\u0451\u043d\u043d\u044b\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0438 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430 \u0438 \u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0435 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0438\u043b\u044b. \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u00ab\u041f\u0430\u0440\u0442\u0438\u044f \u0420\u043e\u0441\u0442\u0430\u00bb \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u043b\u0430 \u043d\u0430\u0447\u0430\u043b\u043e \u043f\u0440\u0438\u0435\u043c\u0430 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0439 \u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430\u0445, \u043e\u0434\u043d\u0430\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u043c\u0438 \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430\u043c\u0438 \u043e\u043d\u0430 \u0441\u043c\u043e\u0436\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u044f \u0437\u0430\u043a\u043e\u043d\u0430 \u043e \u0441\u0442\u0430\u0442\u0443\u0441\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b.

\n


\n\u0412 \u0441\u0432\u044f\u0437\u0438 \u0441 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435\u043c \u043d\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0440\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u043e\u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u0432 \u043d\u0430 \u0441\u0447\u0435\u0442\u0430 \u044e\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043b\u0438\u0446 \u00ab\u0431\u0438\u0442\u043a\u043e\u0438\u043d\u044b \u0431\u0443\u0434\u0443\u0442 \u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u044f\u0442\u044c\u0441\u044f \u043d\u0430 \u043a\u043e\u0448\u0435\u043b\u0435\u043a \u0414\u043c\u0438\u0442\u0440\u0438\u044f \u041c\u0430\u0440\u0438\u043d\u0438\u0447\u0435\u0432\u0430, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043e\u043c\u0431\u0443\u0434\u0441\u043c\u0435\u043d\u0430 \u0438 \u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442\u0430 \u0432 \u0434\u0435\u043f\u0443\u0442\u0430\u0442\u044b \u043f\u043e \u041c\u0435\u0434\u0432\u0435\u0434\u043a\u043e\u0432\u0441\u043a\u043e\u043c\u0443 \u043e\u0434\u043d\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u043d\u043e\u043c\u0443 \u043e\u043a\u0440\u0443\u0433\u0443\u00bb.

\n

\u041a\u0418\u0422\u0410\u0419

\n

\u041f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u043d\u0435 \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435, \u0437\u0430\u043d\u0438\u043c\u0430\u044e\u0449\u0435\u0435\u0441\u044f \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0422\u0430\u043a, \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u041a\u0438\u0442\u0430\u044f \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u043e \u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0438 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0426\u0435\u043b\u044c\u044e \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u043b\u044c\u044f\u043d\u0441\u0430 \u0441\u0442\u0430\u043d\u0435\u0442 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a \u0438 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0432 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0443 \u0441\u0442\u0440\u0430\u043d\u044b, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043a \u0412\u0441\u0435\u043c\u0438\u0440\u043d\u043e\u043c\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0430\u043c\u043c\u0438\u0442\u0443, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0451\u043d \u0432 \u0428\u0430\u043d\u0445\u0430\u0435 \u0432 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u0435 \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0441\u0442\u0430\u0432\u0438\u0442\u0441\u044f \u043b\u0438 \u043f\u0435\u0440\u0435\u0434 \u044d\u0442\u043e\u0439 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f, \u043d\u043e \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0442\u043e\u0442 \u0444\u0430\u043a\u0442, \u0447\u0442\u043e \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u043f\u043e\u0438\u0441\u043a\u043e\u0432\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u041a\u0438\u0442\u0430\u044f Baidu \u0431\u0435\u0437 \u043a\u0430\u043a\u043e\u0433\u043e-\u043b\u0438\u0431\u043e \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f \u0443\u0434\u0430\u043b\u0438\u043b\u0430 \u0432\u0441\u044e \u0440\u0435\u043a\u043b\u0430\u043c\u0443, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u0443\u044e \u0441 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u043c \u0438 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u0432\u0430\u043b\u044e\u0442\u0430\u043c\u0438.

\n

\u041e\u0431 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0438 \u0434\u0432\u0435 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0435 \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0435 \u0431\u0438\u0440\u0436\u0438 OKCoin \u0438 Huobi, \u043f\u0438\u0448\u0435\u0442 Bloomberg News. \u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 Baidu \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441 \u0430\u0433\u0435\u043d\u0442\u0441\u0442\u0432\u0430 \u043e\u0442 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u0432\u043e\u0437\u0434\u0435\u0440\u0436\u0430\u043b\u0438\u0441\u044c. 

\n", + "cashout_time": "2016-09-29T04:28:30", + "category": "bitcoin", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:15:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779945, + "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto\",\"money\",\"news\"],\"image\":[\"http://radikal.ru/fp/949b19ab0ea142769b5d5bad6918e850\",\"http://radikal.ru/fp/ab1e6cf8f8ce414d8555699b45afc0eb\",\"http://forklog.com/wp-content/uploads/0e6dbfdc-638d-11e6-8e55-cc0a56a8b37c-1.png\",\"http://forklog.com/wp-content/uploads/14152259_10202179476045465_1807948603_o.jpg\",\"http://forklog.com/wp-content/uploads/14022327_853179024818469_8570878217622377273_n-1.jpg\"],\"links\":[\"http://forklog.com/zhurnalu-forklog-dva-goda/\",\"http://forklog.com/birzha-bitstamp-otmechaet-pyatiletnij-yubilej/\",\"http://forklog.com/kriptovalyutnaya-birzha-gdax-dobavila-litecoin/\",\"http://forklog.com/birzha-poloniex-snimaet-s-torgov-the-dao-i-drugie-altkoiny/\",\"http://forklog.com/krupnejshaya-bitkoin-birzha-turtsii-ostanovila-rabotu-iz-za-problem-s-bankom/\",\"http://forklog.com/apparatnyj-koshelek-trezor-dobavil-podderzhku-ethereum/\",\"https://github.com/trezor/trezor-mcu/pull/103\",\"http://forklog.com/platezhnyj-servis-bitwala-vklyuchil-v-spisok-rabochih-altkoinov-dash-i-emercoin/\",\"http://forklog.com/venesuelskij-platyozhnyj-servis-cryptobuyer-dobavil-podderzhku-dash/\",\"http://forklog.com/sostoyalsya-reliz-novoj-versii-ethereum-koshelka-mist-s-podderzhkoj-coinbase-buy-widget/\",\"http://forklog.com/vedushhie-banki-mira-obedinilis-dlya-sozdaniya-novoj-kriptovalyuty/\",\"http://forklog.com/yuzhno-afrikanskij-rezervnyj-bank-gotov-k-ispolzovaniyu-blokchejna-i-kriptovalyut/\",\"http://forklog.com/yaponskie-korporatsii-testiruyut-blokchejn-platformu-dlya-chekovyh-raschetov/\",\"http://forklog.com/konsortsium-r3-cev-zapatentoval-blokchejn-platformu-dlya-infrastruktury-uoll-strit/\",\"http://forklog.com/ekonomisty-prognoziruyut-vytesnenie-sistemy-swift-blokchejnom/\",\"http://forklog.com/kompaniya-bitshares-munich-ivs-obyavila-o-nachale-ico/\",\"http://forklog.com/proekt-hyperledger-nazval-novyj-sostav-tehnicheskogo-komiteta/\",\"http://forklog.com/startap-chronicled-inc-zapustil-otkrytyj-reestr-dlya-interneta-veshhej/\",\"http://forklog.com/kompaniya-verizon-communications-zapatentovala-blokchejn-hranilishhe-klyuchej/\",\"http://forklog.com/kriptovalyutnye-kompanii-singapura-budut-poluchat-edinuyu-litsenziyu-na-osushhestvlenie-deyatelnosti/\",\"http://forklog.com/investitsionnyj-bitkoin-startap-keza-budet-spasen-blagodarya-satoshi-citadel-industries/\",\"http://forklog.com/poseshhaemost-steemit-sravnyalas-s-rannim-facebook/\",\"http://forklog.com/komanda-decent-obyavila-o-vazhnyh-izmeneniyah-v-sisteme-distributsii-tokenov/\",\"http://forklog.com/polzovateli-coinbase-v-evrope-poluchili-vozmozhnost-pokupat-kriptovalyutu-pri-pomoshhi-bankovskih-kart/\",\"http://forklog.com/osnovatel-distributed-lab-nazval-oblasti-kotorym-ne-nuzhen-blokchejn/\",\"https://medium.com/@pavelkravchenko/investor-guide-does-this-cool-project-truly-need-blockchain-bdde70a26bfb#.40cs8sfz2\",\"http://forklog.com/avtor-knig-o-blokchejne-don-tepskott-vystupil-na-ted-talk/\",\"http://forklog.com/dostignuta-dogovorennost-o-zapuske-e-vox-v-balte-odesskoj-oblasti/\",\"http://forklog.com/meriya-beloj-tserkvi-perehodit-na-blokchejn-platformu-auction-3-0/\",\"http://forklog.com/minfin-rf-protiv-pryamogo-zapreta-bitkoina/\",\"http://forklog.com/v-rossii-obsudili-kriptovalyuty-na-gosudarstvennom-urovne/\",\"http://forklog.com/partiya-rosta-utochnila-shemu-priema-pozhertvovanij-v-bitkoinah/\",\"http://forklog.com/kitaj-pristupil-k-issledovaniyu-blokchejna-na-gosudarstvennom-urovne/\",\"http://forklog.com/kitajskij-poiskovik-baidu-zablokiroval-vsyu-svyazannuyu-s-bitkoinom-reklamu/\"]}", + "last_payout": "2016-08-30T04:28:30", + "last_update": "2016-08-28T17:15:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_steem_dollars": 10000, + "permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "reward_weight": 10000, + "root_author": "forklognews", + "root_permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", + "title": "\u0414\u0430\u0439\u0434\u0436\u0435\u0441\u0442 \u043d\u043e\u0432\u043e\u0441\u0442\u0435\u0439 \u2013 \u043e\u0431\u0437\u043e\u0440 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0438\u043d\u0434\u0443\u0441\u0442\u0440\u0438\u0438", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:14:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "paulsemmelweis", + "author_rewards": 0, + "beneficiaries": [], + "body": "Discussed below are two new articles that shed light on the grand economic chessboard controlled by governments while paving the way for more lies and manipulation by the media...\n\nGlobal central bankers, stuck at zero, unite in plea for help from governments: https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\n\nAs Fed nears rate hikes, policymakers plan for 'brave new world': https://ca.news.yahoo.com/fed-nears-rate-hikes-policymakers-plan-brave-world-005117150--business.html\n\nWhile simultaneously espousing Obama's great economic achievements in the press for years after saving the nation from peril in 2008, central bankers now openly admit there's a very weak economy and a recovery that never was. You know, facts.\n\nWhile talk of \"new tools\" needed to fight the next recession unofficially dominated the annual meeting of our monetary overlords in Wyoming, it is quite clear that the main weapon in their arsenal is the same as it was then; to maintain control over human beings by selling a never ending stream of fiction to the public.\n\n\"it may take a massive program, large enough even to shock taxpayers\"\n\"hard to convince markets and households that things will get better\"\n\"encourage the shift in mood\"\n\"prevent public expectations\"\n\"do not respond in expected ways\"\n\nAnd this gem\u2026 \"In modern monetary theory, households and business expectations are felt to play a defining role.\"\n\nSounds really modern!\n\nThe article ends with this\u2026 \"It was not clear whether such ideas will catch on. But there was a broad sense here that the other side of government may need to up its game.\"\n\nA game indeed. Of mass manipulation for the benefit of those who rule us while easily selling the public what they are doing is in their best interests.", + "cashout_time": "2016-09-28T19:47:36", + "category": "economics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:14:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779934, + "json_metadata": "{\"tags\":[\"economics\",\"government\",\"central\",\"banks\",\"recession\"],\"links\":[\"https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\"]}", + "last_payout": "2016-08-29T19:47:36", + "last_update": "2016-08-28T17:14:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "economics", + "percent_steem_dollars": 10000, + "permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "reward_weight": 10000, + "root_author": "paulsemmelweis", + "root_permlink": "it-s-just-a-game-to-governments-and-central-bankers", + "title": "It's just a game to governments and central bankers", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "randolphrope", + "author_rewards": 0, + "beneficiaries": [], + "body": "On the way to Chinle, Arizona USA \n\nJust off the highway over looking the desert.\n\nhttp://imgur.com/ITp3j5l.jpg\n\nI just remember one on the drive.", + "cashout_time": "2016-09-28T18:29:18", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:13:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779930, + "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"\"],\"image\":[\"http://imgur.com/ITp3j5l.jpg\"]}", + "last_payout": "2016-08-29T18:29:18", + "last_update": "2016-08-28T17:13:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "photography", + "percent_steem_dollars": 10000, + "permlink": "steem-it-photo-challenge-6", + "reward_weight": 10000, + "root_author": "randolphrope", + "root_permlink": "steem-it-photo-challenge-6", + "title": "Steem.it photo challenge # 6", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ebluefox", + "author_rewards": 0, + "beneficiaries": [], + "body": "Empathy is an interesting aspect of human nature that many people do not possess. Empathy in short is the ability to view an scenario from a different perspective than your own, normally to better understand someone's perspective on certain topics or ideas. This handy skill is a learned skill and when used effectively can be used to better understand humanity.\nBut as with every neat skill, they tend to have as many pros as they do cons. So i will attempt to explain the pros and cons that i have found apparent with empathy.\n There are quite a few pros to empathy, one of which being in your reputation. A person who uses empathy often is normally seen as a loving compassionate person. Another pro that is quite noticeable is the ability to understand unexplained problems. On occasion if a problem really troubles someone or is very personal, most people will not tell anyone about it. But with empathy you can figure out what is troubling them sometimes with something as simple as \"How have you been?\". A more prominent pro of using empathy is better understanding how a person truly is. Most people wear a \"Facade\" in public or a metaphorical mask, these tend to hide their true personality from the public eye and conceal most things about them. Using empathy, you can work around the \"Facade\" and figure out how they truly are as a person, and most of the time appreciate them a bit more.\n Empathy has allot of pros but also has its fair share of cons to go with it, a good example of one of its cons is a changed perspective. under most circumstances, use of empathy becomes a habit and changes your outlook on everyone around you. This is not really very terrible, but it can lead to you disliking a person more than would have normally. Another apparent con is over-assessing someone. This can happen when you use empathy on someone and spot something that would make you feel awful, but in truth does not faze them. Here is an example. You are talking with a person and figure out that they don't have a mother. To you that may seem horrible and you start pitying them, when in truth it may not even matter to them in the slightest. A more cumbersome problem with empathy lies with information. In order to understand or sympathize with someone you need to understand the problems they put up with. If you ask too many questions about their life, they may find you \"Nosy\" or \"Annoying\". On the contrary, if you do not inquire very much about them, you will not have any idea of their standpoint at all and cannot empathize with them. The last con i will cover is drama. It is very easy to get caught in some drama if you try to understand peoples problems, some of which may be very serious. Some people are not patient enough to deal with the newly acquired drama and can sometimes make the problem worse than it need to be.\n This list most definitely did not cover every pro or con associated with empathy because they will differ from person to person however i did cover a few recurring pros and cons. whether you think empathy is worth your time and energy is up to you and your values in life and social interaction.", + "cashout_time": "2016-09-28T17:28:57", + "category": "empathy", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:13:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779923, + "json_metadata": "{\"tags\":[\"empathy\",\"psychology\",\"social-skills\",\"problems\"]}", + "last_payout": "2016-08-29T17:28:57", + "last_update": "2016-08-28T17:13:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "empathy", + "percent_steem_dollars": 10000, + "permlink": "the-pros-and-cons-of-empathy", + "reward_weight": 10000, + "root_author": "ebluefox", + "root_permlink": "the-pros-and-cons-of-empathy", + "title": "The Pros and Cons of Empathy", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "2243580957008", + "active": "2016-09-11T21:09:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemsquad", + "author_rewards": 588, + "beneficiaries": [], + "body": "\n

We are STEEMSQUAD, a Steemit inititative to promote diversity and quality of content by featuring authors from the school of minnows.

\n

\"steem-squad3\"
\n

\n

WHAT is #steemsquad?

\n

Steemsquad is an initiative of multiple minnows whose objective is to promote diverse and quality content and their work which may not have a chance to get noticed when published in the main streem. STEEMSQUAD initiative will try to tweak the game to equally distribute the wealth among its members. 

\n

STEEMSQUAD is a community-backed account responsible for posting blogs of qualified authors and at the same time upvotes quality blog posts of its members.

\n

Members of STEEMSQUAD are from across multiple timelines to ensure a 24/7 support and active participation in Steemit.

\n

The Issue at Hand

\n

For quite some time, there has been a noticeable trend as to who gets rewards. Those favored are the whales themselves, members with high reputation levels, incoming popular personalities and celebrities either from the cryptocurrency world or the entertainment world. A number of people from the finance institutions have joined as well and have garnered huge rewards on their \u201cintroductory\u201d posts.

\n

And what happens to those who are not celebrities, unknown personalities from not-so-popular backgrounds? Their posts get dumped, thrown into oblivion. Then all the sweat and blood poured spilled into writing the blog just go to waste. This is where #steemsquad comes in.

\n


\n

WHY We Do It?

\n

Steemit is a social media platform where **EVERYONE** gets paid for creating and curating content, as promised if and when you decide to dive into the Steemit Ocean. 

\n

It leverages a robust digital points system, called Steem, that supports real value for digital rewards through market price discovery and liquidity.

\n

We aim to give EVERYONE a chance to get noticed, earn rewards, and be a part of a community of people helping people.

\n

You Can Succeed

\n

All HOPE is NOT LOST. We have seen minnows rise to the occasion. With a positive attitude, an unwavering determination, lots and lots of good quality posts (one is enough though to get you 15k, if you hit the nail on the head), there is no reason why you can\u2019t be successful here in Steemit.

\n

#steemsquad will support you along the way.

\n

OUR GOLDEN RULES

\n
    \n
  1. We give priority to quality contents from low-powered profiles (minnows).
  2. \n
  3. The published author gets 100% of SBD. However, 50% of which goes to the author\u2019s SP to allow the author to power-up leveraging his/her SP to upvote other writers.
  4. \n
  5. Any SP earned by STEEMSQUAD remains in the STEEMSQUAD account to gain more voting power for the benefit of its members.
  6. \n
  7. Pay-it-forward. The powered-up author commits to help other writers by upvoting and commenting to blog post to increase the post\u2019s value.
  8. \n
\n


\n

HOW TO GET PUBLISHED BY STEEMSQUAD

\n

\n

PHOTO CREDIT: Anna Frajtova / shutterstock.com
\n

\n
    \n
  1. FOLLOW the account STEEMSQUAD and be a member of the initiative.
  2. \n
  3. You have to signify your willingness to join by coming to our official chatroom in https://steemit.chat/channel/steemsquad. Introduce yourself and state your intention to join the initiative. Include a link to your Steemit profile.
  4. \n
  5. Submit your article in plain text format and links to images. Send your entry to @steemit.asia or @sebastien or @jaycobbell as a PM.
  6. \n
  7. Article must be at least 300 words with at least 1 image.
  8. \n
  9. Give credit to the images you use.
  10. \n
  11. If you quote someone, give credit as well.
  12. \n
  13. At least 80% of the article must be your own.
  14. \n
  15. You will get feedback after 24 hours and a schedule will be provided when your work will be published.
  16. \n
  17. Once it is published, it will be promoted to the chatroom by either @steemit.asia or @sebastien or @jaycobbell in https://steemit.chat/channel/steemsquadpromotional for all members to see. This is where all promotions are done.
  18. \n
\n


\n

HOW TO GET UPVOTED BY STEEMSQUAD AND MEMBERS

\n


\nPHOTO CREDIT: Clipartix.com
\n

\n
    \n
  1. To get a chance to be upvoted by STEEMSQUAD, you must have a QUALITY blog post.
  2. \n
  3. Use the tag #steemsquad in your blog post.
  4. \n
  5. Our curators will browse through all blog posts using our official #steemsquad tag name and choose will notify the author by commenting that the post has been chosen as a featured post/author. It will be promoted in our chat channel https://steemit.chat/channel/steemsquadpromotional.
  6. \n
\n


\n

STEEMSQUAD ACCOUNT SECURITY

\n

The Posting Key (The posting key is used for posting and voting. It should be different from the active and owner keys) will be given to at least 3 members of STEEMSQUAD responsible for posting blog posts in 24 hour cycle.

\n

The Active Key (The active key is used to make transfers and place orders in the internal market) will be given to 2 members of STEEMSQUAD. One member will act as auditor/backup in case the primary member is not available.

\n

The Owner Key (The owner key is the master key for the account and is required to change the other keys) is given to one Whale sponsor and 2 other members of STEEMSQUAD.

\n

A member responsible for the account security may hold more than one (1) key as shown above.

\n


\n

OUR MENTORS

\n

There are people we consider as examples on the platform. Inspiration, mentors.

\n

@juneaugoldbuyer
\n@thedollarvigilante
\n@dragonslayer109
\n@stellabelle
\n@charlieshreem
\n@rogerkver
\n@donkypong
\n@tuck-fheman
\n@masteryoda
\n@andrarchy 

\n

\"steem-squad-FOLLOW-US\"
\n

\n", + "cashout_time": "2016-09-29T11:08:54", + "category": "introduceyourself", + "children": 18, + "children_abs_rshares": "2254360518257", + "created": "2016-08-28T17:13:18", + "curator_payout_value": { + "amount": "173", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779920, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemsquad\",\"steemit\",\"minnows\",\"writing\"],\"users\":[\"steemit.asia\",\"sebastien\",\"jaycobbell\",\"juneaugoldbuyer\",\"dragonslayer109\",\"stellabelle\",\"charlieshreem\",\"rogerkver\",\"donkypong\",\"tuck-fheman\",\"masteryoda\",\"andrarchy\"],\"image\":[\"https://c1.staticflickr.com/9/8171/29209353271_2eabbba74f_o.png\",\"https://cdn.elegantthemes.com/blog/wp-content/uploads/2016/02/Essential-Blogging-Skills-Know-your-Audience-shutterstock_222537538-Anna-Frajtova.png\",\"http://clipartix.com/wp-content/uploads/2016/04/Thumbs-up-clipart-3.png\",\"https://c1.staticflickr.com/9/8305/29179909862_ed27607510_o.png\"],\"links\":[\"https://steemit.chat/channel/steemsquad.\",\"https://steemit.chat/channel/steemsquadpromotional\",\"https://steemit.chat/channel/steemsquadpromotional.\"]}", + "last_payout": "2016-08-30T11:08:54", + "last_update": "2016-08-28T17:13:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T14:10:24", + "net_rshares": "2243580957008", + "net_votes": 57, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_steem_dollars": 10000, + "permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "reward_weight": 10000, + "root_author": "steemsquad", + "root_permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", + "title": "Hello! We Are STEEMSQUAD And We Are Here to Support The Minnows. Read On.", + "total_payout_value": { + "amount": "566", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "2243580957008" + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:13:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "okay", + "author_rewards": 0, + "beneficiaries": [], + "body": "## A picture is worth a thousand words, more so in astronomy ##\n\n**Let's take a look at the coming week's sky**\n\n\nhttp://www.skyandtelescope.com/wp-content/uploads/Venus-Jupiter-27Aug2016_f.jpg\n(Image courtesy of Sky and Telescope)\nOn August 27th, about 45 minutes after sunset, go outdoors and start looking low above the horizon in the west for an amazingly close pairing of Venus and Jupiter.\n\nhttp://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\n\n\nNext weekend, shortly after sunset, the thin Moon (waxing crescent) steps away from Venus and Jupiter.\n\nLooking at the night sky is a great joy! Free for everyone with no ticket required. You can watch the evening sky with your naked eye, no need for telescope or binoculars for these beautiful astronomical events.\n\n*Stay tuned for next week's sky.*\n\n\n\n\n If you enjoyed this post please vote for my witness node. Learn how to vote for witness `okay` **at the end of my witness post** by [**clicking here**](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network). ", + "cashout_time": "2016-09-28T16:11:21", + "category": "science", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-08-28T15:45:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 778828, + "json_metadata": "{\"tags\":[\"science\",\"astronomy\"],\"image\":[\"http://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", + "last_payout": "2016-08-29T16:11:21", + "last_update": "2016-08-28T17:13:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "science", + "percent_steem_dollars": 10000, + "permlink": "this-week-s-sky-aug-27-sep-3", + "reward_weight": 10000, + "root_author": "okay", + "root_permlink": "this-week-s-sky-aug-27-sep-3", + "title": "This Week's Sky Aug-27/Sep-3", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "130408996119", + "active": "2016-08-28T17:36:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skyefox", + "author_rewards": 125, + "beneficiaries": [], + "body": "As I have stated in earlier posts, gardening is currently my obsession.. it's seems wild to me that the standard is to work for currency and trade currency for food rather than just growing your own food. \n

Here is my small harvest from this morning!

\nEvery morning I go out and eat a couple of my cherry tomatoes, a few leafy greens, and usually 1/2 a leaf of my sweet basil. It's a wonderful thing to wake up, take the dog out and get a healthy organic little snack. I love it.\nhttps://s14.postimg.org/62aqviz0h/IMG_1804.jpg\n\n\nI understand that gardening takes time, effort, and a little bit of knowledge but in my opinion it is one of the most reward \"hobbies.\" This is my first year gardening. I decided to garden this year because I have been doing more and more reading about the American food industry and my conclusion is that the American population are being made sick on purpose through the food we eat. I don't know exactly what does what in our food but it seems absolutely insane to me that we can't get the FDA to evaluate any dietary supplements but they will evaluate and even vouch for these lab made pharmaceutical drugs. \n\nAll of this lead me to feeling a strong urge to grow organic food. I honestly feel guilty when I feed my family and I don't fully believe in what we are eating. Don't get me wrong, I love pepperoni pizza but ignorance is bliss, and I am not ignorant to what I am eating. \n\nI believe I am slowly heading down the path of becoming a vegan as I gain more knowledge. I have always been a hunter and a fisherman, it's what I was taught as a young boy in the north woods. I love to hunt and fish, but I also have a very deep compassion for life. Not human life, but life in general. I believe that we are intelligent enough as a species to live without causing harm to other living things that are equipped with nervous systems. I guess I am just realizing day by day that things are not necessarily what I have been told... \n

This kind of sums up how I feel currently...

\nhttps://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\n\nI am not a very good consumer. I am very frugal and calculated with my money, sometimes to a fault. I'm also not good at being an employee and just being a \"gear in the machine.\" I was not built to work and be told what to do while someone acts as if their employment position somehow gives them a higher status than I. We are humans, you just have a different job. These factors, and many others, have lead to me being self employed and trying to find my way on the internet. I have dabble in many things online and I have learned enough to at least provide myself with enough income to pay my mortgage, bills, etc.. \n\nI am also someone that is in the prepper mind state. I have started my small stockpile of beans, rice, and various other dried foods. I think that the American people have become complacent and many of us are just chasing the carrot we were instructed to chase. Many people seem to not realize the fact that we as a country heavily depend on other people or corporations for the things we use everyday. If water and electricity were to be shut off and panic set it, many people would die because they don't know what to do without someone else providing them with these luxuries. \n\nI don't like the idea of depending on anyone for anything. I have always been someone who provided for myself. I got a job at 14 years old at the local bakery working Saturday mornings so that I could get my first computer myself. I worked for weeks, since I was only getting paid $5.15/hour (roughly 13 years ago) it took me a long time to save up for a computer to play Counterstrike 1.5... We had 6 kids in our house in a \"middle class\" family, needless to say we were told to get jobs as early as possible to acquire our luxuries. Since then I have had the mindset that I don't want to allow someone else to be \"the hand that feeds\", and that applies to food, water, electricity, and even knowledge of my child. \n\nDEPENDENCY OPENS THE DOORS FOR EXPLOITATION! And in a capitalist driven global economy, if it can be exploited, it often is. \n\nMy apologies, there I go again, going of on some rant instead of just showing you the damn garden update. I already can't wait for next spring. I have been buying heirloom vegetable seeds and thrift shopping for large planters for $1 so that next year I can grow lots more. \n

This is the Pink Brandywine that I am so excited about!

\nThese guys took forever to grow. I didn't know what I was doing and I had put too many plants in 1 planter which caused them to compete for the nutrients. On top of them a strong storm came through and blew these guys over and bent there stalks horizontal. I really didn't know if I would get any fruit from them, but they are changing and I can't wait to eat these!\nhttps://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\n\nhttps://s14.postimg.org/e3txgbbgh/IMG_1800.jpg\n\nHere is a cucumber that is growing a little goofy. Not sure why but its like a beer can cucumber... lol\nhttps://s14.postimg.org/c1tg22dhd/IMG_1802.jpg\n\nA more normal cucumber... \nhttps://s14.postimg.org/610t23x6p/IMG_1803.jpg\n\nAnd this is my $3 table I built so that I could start my seeds indoors under some fluorescent lights. \n\n\nhttps://s14.postimg.org/6t3h1b1dt/IMG_1805.jpg\n\n\nThank you for reading and happy gardening!", + "cashout_time": "2016-09-28T18:11:57", + "category": "garden", + "children": 2, + "children_abs_rshares": "130408996119", + "created": "2016-08-28T17:12:54", + "curator_payout_value": { + "amount": "15", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779916, + "json_metadata": "{\"tags\":[\"garden\",\"photography\",\"rant\",\"food\"],\"image\":[\"https://s14.postimg.org/62aqviz0h/IMG_1804.jpg\",\"https://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\",\"https://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\"]}", + "last_payout": "2016-08-29T18:11:57", + "last_update": "2016-08-28T17:12:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-12T21:18:18", + "net_rshares": "130408996119", + "net_votes": 37, + "parent_author": "", + "parent_permlink": "garden", + "percent_steem_dollars": 10000, + "permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "reward_weight": 10000, + "root_author": "skyefox", + "root_permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", + "title": "A small garden update... My Pink Brandywine Tomatoes are coming!", + "total_payout_value": { + "amount": "123", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "130408996119" + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:08:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "fitiliper1985", + "author_rewards": 0, + "beneficiaries": [], + "body": "
http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png
\n

\n

Before I was in a relationship, I didn't have much sex. My first sexual intercourse occurred while I was travelling overseas on a holiday by myself. I met a woman in hawaii at the airport, and later had sex with her.

\n

I had done a lot of masturbating prior to this. I had often thought about having sex, and I found that my sexual drive caused me to behave in ways that I normally wouldn't. 

\n

\n
https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg
\n

\n

For example I would follow women I found attractive, or I would try to look up their skirts, or I would wander about at night to try to look into bedroom windows.

\n

When I met someone that I knew I would marry, I thought I would be able to have sex as much as I liked because my wife would always be available to have it with me. This turned out to be untrue. My wife didn't want to have sex as often as I wanted to, and I found myself still masturbating while I waited for the next time to come.

\n

I don't think women understand the power of their husband's sexual drive. 

\n

\n
http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg
\n

\n

Men are attracted to women by how they look. It doesn't matter if they are strangers. Men will look at a woman dressed in  a certain way and will start feeling horny. As soon as they ejaculate, the feeling of horniness goes, but will return in a couple of hours. When the sexual desire comes upon a man, it becomes his dominating thought, and it demands to be satisfied. That's why many men then masturbate in order to relieve the pressure on their thoughts. If unrelieved the pressure grows and if the wife is unwilling to have sex, then some men will look for other women to have sex with. 

\n

The sexual pressure is constantly present in a man's mind until relief comes.

\n

\n
https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg
\n

\n

Most women are not as interested in sex as men. 

\n

\n
https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg
\n

\n

Women are more interested in relationship.  Women have sex with a man in the hope that the man will want to stay in their life and have a relationship with them. 

\n

Some women use sex as a bait to catch a man, and then when the relationship is happening, they are not as interested in sex anymore. Women enjoy sex, but as part of a fulfilling relationship. Men just want to put their penis into a vagina and ejaculate. As soon as ejaculation occurs, a lot of men lose all interest in the woman. The woman then feels hurt and used because she didn't get what she wanted which was relationship. Men will say anything they think a woman wants to hear in order to have sex.

\n

Wives who have sex with their husbands when not really wanting it, feel used by their husbands. Women also can be selfish when they demand sex from men who are not in the mood. 

\n

God created sex to be enjoyed in a committed relationship between a man and a woman who are one person physically, spiritually, emotionally, and mentally. 

\n

Sex is a part of the relationship, not the main thing. If a man demands sex then he is being selfish, and his relationship will be harmed if the woman gives sex to the man when she is not wanting to have it. If the man wants sex with his wife, then he must give her what she wants. He must romance her and give her a good relationship. Then if sex happens, it will be enjoyable for both of them. This will build the relationship.

", + "cashout_time": "2016-09-28T17:56:42", + "category": "sex", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-08-28T17:12:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779915, + "json_metadata": "{\"tags\":[\"sex\",\"psychology\",\"life\",\"story\",\"\"],\"image\":[\"http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png\",\"https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg\",\"http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg\",\"https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg\",\"https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg\"]}", + "last_payout": "2016-08-29T17:56:42", + "last_update": "2016-08-28T17:12:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 12, + "parent_author": "", + "parent_permlink": "sex", + "percent_steem_dollars": 10000, + "permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "reward_weight": 10000, + "root_author": "fitiliper1985", + "root_permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", + "title": "In a relationship, sex becomes a matter of selfishness or unselfishness.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.orig.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.orig.json new file mode 100644 index 00000000..6f40e9fd --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-15T19:12:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "crowe", + "author_rewards": 0, + "beneficiaries": [], + "body": "I thought my viewers would be interested in the place I actually live in. I live in a City called Ashkelon. Its about 7 miles North of Gaza. Last year in June when some missiles were being shot toward Israel the Sirens in Ashkelon went off. I filmed this video from my deck. The video is what we hear when this happens. \n\nhttps://www.youtube.com/watch?v=Ky23yJaNDfo", + "cashout_time": "2016-09-15T19:47:27", + "category": "israel", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T19:12:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617094, + "json_metadata": "{\"tags\":[\"israel\",\"siren\",\"gaza\",\"politics\",\"steemit\"],\"links\":[\"https://www.youtube.com/watch?v=Ky23yJaNDfo\"]}", + "last_payout": "2016-08-16T19:47:27", + "last_update": "2016-08-15T19:12:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "israel", + "percent_steem_dollars": 10000, + "permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "reward_weight": 10000, + "root_author": "crowe", + "root_permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "title": "Israeli Bomb Siren goes off in my City. I filmed this from my deck.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "1339555910464", + "active": "2016-08-15T19:44:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "luminarycrush", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

I came across a lone blooming cactus during a hike this weekend.  Photos taken at 946' ASL above Two Harbors, Catalina Island.

\n

\n


\n

\n


\n

\n", + "cashout_time": "2016-09-15T19:47:27", + "category": "photography", + "children": 0, + "children_abs_rshares": "1339555910464", + "created": "2016-08-15T19:44:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617542, + "json_metadata": "{\"tags\":[\"photography\",\"cactus\",\"catalinaisland\",\"california\",\"twoharbors\"],\"image\":[\"https://scontent.xx.fbcdn.net/t31.0-8/13988224_10154518762224175_252304266230235242_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13923665_10154518762269175_2030254348907005554_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13988240_10154518762254175_9097905240858144855_o.jpg\"]}", + "last_payout": "2016-08-16T19:47:27", + "last_update": "2016-08-15T19:44:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-01T02:13:51", + "net_rshares": "1339555910464", + "net_votes": 14, + "parent_author": "", + "parent_permlink": "photography", + "percent_steem_dollars": 10000, + "permlink": "cactus-in-the-clouds-catalina-island", + "reward_weight": 10000, + "root_author": "luminarycrush", + "root_permlink": "cactus-in-the-clouds-catalina-island", + "title": "Cactus in the Clouds - Catalina Island", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "1339555910464" + }, + { + "abs_rshares": "76217996022", + "active": "2016-08-17T15:39:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "brunopro", + "author_rewards": 13512, + "beneficiaries": [], + "body": "http://imgur.com/HrpWWaK.png\n\n## And there are changes again regarding the duration until the payout occurs, now your post will have a minimum 24 hours duration until the first payout. \n\nPersonally I think that they should never have changed it to 12 hours. I didn't understand the logic behind it at the time and I still don't. This 24h period it's ideal because this way the post has better chances of overcoming the first publish period and get more traction. It also enables of a higher possibility of being seen and upvoted by the users that on the 12h were sleeping or simply away.\n\n# And you? What do you think about this change?\n\n----\n\nEdit post-publish: I've notice that I can't upvote a post that has been up for a month. Is this new also? I thought a post would always be open for an upvote? Can anyone reply to this question? thanks!\n\n----\n\n###### Photo Credits: https://unsplash.com/@sonjalangford", + "cashout_time": "2016-09-15T19:47:42", + "category": "steemit", + "children": 22, + "children_abs_rshares": "78071773184", + "created": "2016-08-15T18:36:36", + "curator_payout_value": { + "amount": "3483", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 616664, + "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"opinion\",\"reward\"],\"image\":[\"http://imgur.com/HrpWWaK.png\"]}", + "last_payout": "2016-08-16T19:47:42", + "last_update": "2016-08-15T18:51:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-08-30T20:41:45", + "net_rshares": "76217996022", + "net_votes": 82, + "parent_author": "", + "parent_permlink": "steemit", + "percent_steem_dollars": 10000, + "permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "reward_weight": 10000, + "root_author": "brunopro", + "root_permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "title": "LATEST NEWS: Payouts are back to 24H - What do you think about it? [ Quick read / Opinion Article ]", + "total_payout_value": { + "amount": "20200", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "76217996022" + }, + { + "abs_rshares": 0, + "active": "2016-08-15T19:50:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "yassinebentour", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

http://unitedcivilrights.org/images/fa-prprty.gif

\n

The purpose of property rights is to mitigate conflict over scarce, rivalrous resources. To have a property right over a scarce, rivalrous resource is to have the right to exclude others from using that resource in the attainment of some ends. For example, I have property rights over my body, which means I can exclude others from using my body for sexual pleasure or labor without my consent. If they do access my body in such a way without my consent, it's called rape or slavery, respectively. Likewise, I have property rights over the accumulated capital for which I consensually trade my time and labor, which means I have the right to exclude people from using my accumulated capital without my consent. When someone accesses my accumulated capital in such a way without my consent, it's called theft or trespass.
\nScale doesn't change this. If I transform my accumulated capital into a factory by hiring people who voluntarily exchange the product of their labor for some of my accumulated capital, this means that they value what they receive in exchange for working more than they value the direct product of their labor (the factory). Likewise, it means I value the factory more than the accumulated capital I gave up for it. This is a win-win situation, or a positive sum game. The workers I hired retain property rights over the capital they received as payment for their labor, which means they can exclude others from the use of their newly acquired accumulated capital, and I retain property rights over the factory, which means I can exclude others from the use of my factory.
\nDiscrepancies between marginal benefit don't change this either. A consensual exchange doesn't become theft just because one party benefits more from the exchange than another. If this wasn't the case, every single instance of buyer's remorse would be indicative of theft. If someone agrees to produce a walking stick in exchange for ten dollars and the purchaser of the walking stick then sells it to someone else for twenty dollars, how can it be claimed that the producer of the walking stick was a victim of theft if they haven't been deprived of the ten dollars for which they voluntarily exchanged the walking stick? Would it have been reasonable to expect that the first purchaser of the walking stick wouldn't have obtained more than ten dollars of value from it given that the exchange wouldn't have happened in the first place if they hadn't valued the walking stick more than they valued ten dollars?
\nOf course not. Anything that happens to the walking stick after the original exchange is no business of the producer of the walking stick because said producer already exchanged his property rights to the walking stick for property rights to a different form of accumulated capital (ten dollars).
\nLikewise, if I use more of my accumulated capital to hire workers to work in my factory, they will only accept my offer of employment if they value what I'm offering more than their own free time and more than whatever stake they may have otherwise had in the product they will be producing. In other words, if they accept employment, it will be with the understanding that they're giving up any stake in what they're producing in exchange for what I'm offering them. Maybe my factory assembles televisions. Maybe one worker can produce one television per hour. Would they be able to produce televisions this efficiently without my previous investment in production capital (which hasn't even been recouped and probably never will be completely given that maintenance, employment and higher order production good costs are a revolving door)? Would they be able to produce televisions AT ALL without this previous investment in production capital? Of course not, and they know this, which is why they're willing to give up both their leisure and whatever stake their labor may have otherwise entitled them to in the production of a television in exchange for a fixed amount of accumulated capital.
\nAs was the case with the walking stick, whatever happens to the television after this exchange occurs is no business of the worker. How could the future sale of the television constitute theft of the worker's accumulated capital if it can't be demonstrated that the worker was deprived of the accumulated capital that he voluntarily accepted as payment for the production of the television, especially given that the television was produced with other accumulated capital (plastic, circuits, labor saving devices, etc.) that the worker never even owned?
\nIt can't.
\nProperty ownership necessarily implies exclusivity, which means that \"private property\" is redundant, as is \"personal property\". The words \"private\" and \"personal\" denote exclusivity, which is already implied by the word \"property\". To differentiate between \"personal property\" and \"private property\" is therefore a distinction without a difference. This implication of exclusivity also means that \"public property\" is a contradiction in terms. If no one can be excluded from using the resource, it isn't property. Resources that aren't scarce or rivalrous likewise can not be considered property, which means that \"intellectual property\" is also a contradiction in terms.
\nThis means that seizing the means of production is a genuine form of theft and that \"pirating\" music, software, art and writing is not, which may seem counter-intuitive if you attended the indoctrination camps euphemistically known as \"public schools\" when you were growing up.

\n", + "cashout_time": "2016-09-15T19:47:48", + "category": "writing", + "children": 2, + "children_abs_rshares": "25854883309", + "created": "2016-08-15T19:43:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617534, + "json_metadata": "{\"tags\":[\"writing\",\"rights\"],\"image\":[\"http://unitedcivilrights.org/images/fa-prprty.gif\"]}", + "last_payout": "2016-08-16T19:47:48", + "last_update": "2016-08-15T19:43:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-01T01:02:42", + "net_rshares": -104004690671, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "writing", + "percent_steem_dollars": 10000, + "permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "reward_weight": 736, + "root_author": "yassinebentour", + "root_permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "title": "The purpose of property rights is to mitigate conflict over scarce, rivalrous resources", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-15T19:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "libtrian.outlet", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\nFriday's move is the clearest indication yet that the White House is serious about getting Obama\u2019s legacy trade deal.\n\nThe White House put Congress on notice Friday morning that it will be sending lawmakers a bill to implement President Barack Obama\u2019s landmark Trans-Pacific Partnership agreement \u2014 a move intended to infuse new energy into efforts to ratify the flat-lining trade pact.\n\nThe move establishes a 30-day minimum before the administration can present the legislation, but the White House is unlikely to do so amid the heated rhetoric of a presidential campaign in which both major party nominees have depicted free trade deals as massive job killers.\n\nFriday's notification is the clearest signal yet that the White House is serious about getting Obama\u2019s legacy trade deal \u2014 the biggest in U.S. history \u2014 passed by the end of the year, as he has vowed to do despite the misgivings of Republican leaders and the outright opposition of a majority of Democrats in Congress.\n\nStriking a defiant tone, Obama predicted at a press conference last week that the economic centerpiece of his strategic pivot to Asia would pass in the lame-duck session, saying he\u2019d like to sit down with lawmakers after the election to discuss the \"actual facts\" behind the deal, rather than toss it around like a \"political football.\"\n\n\"We are part of a global economy. We're not reversing that,\" Obama said, describing the necessity of international supply chains and the importance of the export sector to U.S. jobs and the economy. \"The notion that we're going to pull that up root and branch is unrealistic.\"\n\nThe notification, a new requirement of the trade promotion authority legislation Congress passed last year to expedite passage of the Asia-Pacific pact, is \u201cmeant to ensure early consultations between the administration and Congress,\u201d Matt McAlvanah, a spokesman for the Office of the U.S. Trade Representative, said in a statement. \u201cAs such, the draft SAA [Statement of Administrative Action] was sent today in order to continue to promote transparency and collaboration in the TPP process.\u201d\n\nThe White House's draft document describes the major steps the administration will take to implement any changes to U.S. law required by the deal. Those actions range from the mundane \u2014 designating an administration point of contact for communications about the pact \u2014 to the complex \u2014 setting up procedures to stop harmful surges of agricultural or textile imports.\n\nBut the deal is going nowhere until the White House addresses a number of concerns lawmakers have raised about the trade agreement, which Canada, Mexico, Japan and eight other countries joined the United States in signing last February.\n\nFirst and foremost: satisfying the concerns of Senate Finance Committee Chairman Orrin Hatch (R-Utah) and other lawmakers about protections for a new class of drugs known as biologics. They say the pact provides too short a monopoly period for rights to research and development data. Other lawmakers have complained the deal would bar tobacco companies from seeking redress through investor-state dispute arbitrage for damages resulting from country regulations. Still others are seeking assurances that member countries will abide by their commitments to provide access for U.S. pork and dairy exports.\n\nUntil these issues are resolved, House Speaker Paul Ryan and Senate Majority Leader Mitch McConnell have made clear that the pact will not get the votes it needs to pass.\n\nRyan's spokeswoman, AshLee Strong, reiterated the point on Friday.\n\n\u201cAs Speaker Ryan has stated for months, there are problems that remain with the administration\u2019s TPP deal, and there can be no movement before these concerns are addressed,\" she said.\n\nDemocrats, meanwhile, have largely called the deal a nonstarter over concerns about the enforceability of labor and environmental standards in countries like Vietnam and the lack of strong protections against currency manipulation.\n\nThe administration claims it is making progress on these issues and has resolved others, including banking industry concerns over the exclusion of financial data from rules prohibiting countries from requiring local storage.\n\nBut that doesn\u2019t change the reality of the down-ballot drag that candidates are facing as they campaign back home in their districts. In a reversal from years past, many Republicans are on the defensive about their support for free trade because of Donald Trump\u2019s daily tirades about what he characterizes as the serious economic damage wrought by trade agreements like the North American Free Trade Agreement and the TPP as well as his complaints that China is flouting international trade rules.\n\nThe Republican platform picked up on this theme, saying significant trade deals \"should not be rushed or undertaken in a Lame Duck Congress.\"\n\nThe small band of Democrats who the administration hopes will support the TPP are facing increased pressure within their own party to abandon the president on the agreement. Sens. Bernie Sanders\u2019 and Elizabeth Warren\u2019s strong condemnations of the trade deal have forced Hillary Clinton, who supported the TPP as Obama\u2019s secretary of state, to reject the pact to appease the liberal wing.\n\n\"I will stop any trade deal that kills jobs or holds down wages, including the Trans-Pacific Partnership,\" Clinton said during an economic policy speech at an automotive manufacturing plant in Warren, Mich., on Thursday. \"I oppose it now, I'll oppose it after the election and I'll oppose it as president.\"\n\nClinton\u2019s clear rejection of the trade deal has emboldened liberal groups like the Warren-aligned Progressive Change Campaign Committee to launch a campaign to press Democrats to publicly oppose a TPP vote in the lame duck.\n\nSanders also called on Democratic congressional leaders to go on record against the White House\u2019s effort to get the deal done by the end of the year, saying the agreement is opposed by every trade union and the grassroots base of the Democratic Party.\n\n\"I am disappointed by the president's decision to continue pushing forward on the disastrous Trans-Pacific Partnership trade agreement that will cost American jobs, harm the environment, increase the cost of prescription drugs and threaten our ability to protect public health,\u201d the Vermont senator said in a statement after learning of the White House's action on Friday.\n\nMeanwhile, the administration continues to press the deal in key congressional districts \u2014 especially those of Democrats who supported the trade promotion authority bill last year.\n\nInterior Secretary Sally Jewell returned to her hometown of Seattle last month to tout the TPP\u2019s potential effects on the environment at a Washington Council on International Trade event with more than 150 business leaders.\n\nThen, last week, Commerce Secretary Penny Pritzker hit the San Diego and Boulder districts of Reps. Susan Davis and Jared Polis \u2014 two of the 28 House Democrats that voted for the bill \u2014 and visited a steel plant in Cleveland to promote the TPP. Treasury Secretary Jack Lew did the same when he met with local and state officials and Fortune 500 business executives in Minneapolis.\n\nOn Thursday, Undersecretary of Commerce for Oceans and Atmosphere Kathryn Sullivan spoke at a Seattle clean energy business roundtable focused on the TPP and the environment. And this Monday, Deputy U.S. Trade Representative Robert Holleyman will participate in a World Affairs Council of Atlanta discussion on the trade deal featuring former Republican Sen. Saxby Chambliss and UPS CEO David Abney.\n\nAs the political fight plays out, the nuts-and-bolts process of moving the deal forward will continue. Once Congress reviews the draft notification that the White House submitted on Friday, the administration can move forward with sending lawmakers a final statement and the draft of the implementing bill itself. The legislation will describe the actual changes to U.S. law to comply with the rules of the trade agreement.\n\nAfter that, the Senate Finance and House Ways and Means committees could hold \u201cmock markups\u201d of the bill (because under trade promotion authority, Congress is not actually allowed to tinker with the agreement or its implementing legislation itself, but it can ask the administration to do so).\n\nBut given the tenor of the elections, the entire process could be pushed into a crowded lame-duck legislation session, which would mean no time for the mock markups. Instead, there could be a lot of deal-making between the White House and congressional leadership to move the bill before Clinton or Trump takes over on Jan. 20.\n\nObama said last week that he\u2019s ready to press his case. \"Right now, I'm president, and I'm for it. And I think I've got the better argument,\" he said.\n\nSource:\nwww.politico.com/story/2016/08/obama-congress-trade-warning-226952", + "cashout_time": "2016-09-15T19:47:57", + "category": "politics", + "children": 1, + "children_abs_rshares": "11700424464", + "created": "2016-08-15T19:44:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617538, + "json_metadata": "{\"tags\":[\"politics\",\"tpp\",\"conspiracy\",\"news\",\"freetrade\"],\"image\":[\"http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\"]}", + "last_payout": "2016-08-16T19:47:57", + "last_update": "2016-08-15T19:44:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-04T23:37:39", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "", + "parent_permlink": "politics", + "percent_steem_dollars": 10000, + "permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "reward_weight": 2046, + "root_author": "libtrian.outlet", + "root_permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "title": "Obama puts Congress on notice: TPP is coming", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "89025972926", + "active": "2016-09-15T15:19:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "profanarky", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

In which the folks in the subway find themselves some unwelcome visitors...

\n

29

\n

   \u201cDo NOT panic! There is no reason to believe that this is anything more than just a power outage.\u201d  

\n

   \u201cBut-- BUT-- how can it be the whole state?\u201d One wide-eyed young woman, one of the aforementioned punk rockers actually raised her hand.  

\n

   \u201cYeah, it\u2019s gotta be Al Qaeda, who the hell else could it be?!!\u201d Another idiot bellowed.    

\n

   Others followed, there words quickly jumbling together into a tidal wave of paranoia. It only took one idiot to get the ball rolling.   

\n

   \u201cIt\u2019s gotta be the terrorists, who the hell else could it be?\u201d    

\n

   \u201cOh my god, I gotta get to my kids\u2026 My kids are still at the day care!!!\u201d   

\n

   \u201cDid an airplane hit a power plant??!! OH GOD!! DID AN AIRPLANE HIT ONE OF THE NUCLEAR PLANTS??!!\u201d    

\n

   She heard it all and it was nothing more than a buzzing, though an irritating one nonetheless. Her instincts, those things cops called their gut instincts told her Mister Blue-eyes was the key, the only thing really important right now. Mister Blue-eyes and whatever the hell it was he was watching outside their little tin prison.  

\n

     \u201cNOW LISTEN DAMMIT!!!\u201d She hollered, trying to make herself louder than the loudest of them, a difficult task with New Yorkers. \u201cI told you, there\u2019s no goddamn reason to think it\u2019s terrorism! This has happened before in our lifetimes and it\u2019s gonna happen again. As far as I\u2019m concerned it ain\u2019t nothing more than a power outage. Going FUCKING crazy ain\u2019t gonna help us any, dammit!!\u201d  

\n

   They kept going, some of them, but most paid her mind and listened, their faces drawn and tired. They\u2019d suffered enough the last few years, New Yorkers. There wasn\u2019t a one of them, including herself, who hadn\u2019t had their world turned literally upside down two years before. The terror they\u2019d lived was fresh on their minds, fresh and ready to burst again and overwhelm them. It was a hard thing, it truly, truly was.     

\n

   \u201cNow I just got off the phone with my partner and he says he\u2019s gonna get people down here to get us out as soon as possible. There are trains stalled all over the city. Rescue workers are leading those people out from underground and up to their homes. He told me there would be a group of them here soon. He was gonna get them here.\u201d    

\n

   \u201cIs that them?\u201d Came the deep voice of Jeffrey Thornton. He\u2019d been quiet while the others yelled, silent and listening to what she had to say. The moment she\u2019d spoken of rescue his eyes had gone outside the train and he saw what Mister Blue-eyes had apparently been watching.    

\n

   \u201cWhere?\u201d She asked him, stumbling over and peering outside, right next to the stranger in the baseball cap.       

\n

   She saw nothing at first, her eyes trying to focus past the reflections in the glass and out into the pitch black.      

\n

   \u201cThose--,\u201d Mister Blue-eyes said, at last speaking, his voice accented in a manner she\u2019d never heard before. Something about it was as wrong and as otherworldly as his eyes were. \u201c---are not rescuers of any sort.\u201d    

\n

   Out of the corner of her eye she saw him rise and back away from the window and once again her instincts spoke to her. They told her to back away as well, and to not stop there. They said to her, no, they screamed at her to run, to run as far from here as possible.      

\n

   But she didn\u2019t, she had to see what they were, had to see for herself.    

\n

   When the figures finally did materialize from the darkness, they weren\u2019t human at all.     

\n

End Part 29

\n

         If you find yourself interested in the whole damnedable thing and wanna throw me a few bucks, here's a link to it on Amazon.      

\n

  https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1   

\n


\n", + "cashout_time": "2016-09-15T19:48:29", + "category": "story", + "children": 3, + "children_abs_rshares": "89614201477", + "created": "2016-09-14T19:15:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 951797, + "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"creative\",\"writers\",\"writing\"],\"image\":[\"http://www.followingthenerd.com/site/wp-content/uploads/shadowpeople.jpg\"],\"links\":[\"https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T19:15:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-28T19:15:09", + "net_rshares": "89025972926", + "net_votes": 3, + "parent_author": "", + "parent_permlink": "story", + "percent_steem_dollars": 10000, + "permlink": "the-dragon-s-blood-part-29", + "reward_weight": 10000, + "root_author": "profanarky", + "root_permlink": "the-dragon-s-blood-part-29", + "title": "The Dragon's Blood (Part 29)", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "401621156077855379", + "vote_rshares": "89025972926" + }, + { + "abs_rshares": "984642850369", + "active": "2016-08-17T15:01:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "stellabelle", + "author_rewards": 238520, + "beneficiaries": [], + "body": "http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\n\n# I have to hide my true self.\n\nIt just so happened that I was constantly losing my friends. It's like a curse was put on me.\nJudging by the reviews from former colleagues and friends, I was a \"nice and friendly person who was always willing to help.\"\n\n# However, constantly all these friends ceased to be friends with me, for no reason. They just stopped communicating, no quarrels, no disagreements and other things!\n\nI had a lot of friends ... But our paths diverged.\n\nIn my childhood I had friends, but my family moved to another city, and I lost my friends. In the new city, I made new friends. I had one close friend. Even his move to another part of the city has not prevented us from seeing each other every weekend. And one day, he was taken into the army. And one day, his aunt came to me, and said that he is no more, he was killed when he was on sentry duty ...\n\n![imaged6bd4.jpg](https://www.steemimg.com/images/2016/07/26/imaged6bd4.jpg)\n\nPeople ignore me constantly on the Internet, too. On any website, forum. I try to communicate, start a dialogue, and all people just ignore me. Suffice it to ask someone about something, write, and so on, and no response. \n\n# It's as if I did not exist.\n\nhttp://i.giphy.com/3o72FhMTVaOTycqObu.gif\n\nI am always open and friendly, and in return I receive arrogance against me or they completely ignore me.\nThis is what hurts the self-assessment.\n\n# I have no one to talk, no one to share the news with. Not one to ask for help. When I die, nobody will notice. \n\nhttp://i.giphy.com/l46CABOxa2Itf99bG.gif\n\n# I change people!\n\nI've got one property ... when a person begins to communicate with me, he is beginning to change. He begins to listen to the music that I like. He begins to lead a similar lifestyle. In general, people change for the better. From this, I feel somehow enhanced. And apparently, it has become another man moves away from me and goes his own way. As the chicks leave the nest as adults. Other explanation I can find.\n\n# Childhood\n\nAt school I was a \"whipping boy\".\n\nhttp://i.giphy.com/Hem0mSEEPwQBa.gif\n\nEndured constant insults, humiliation. Every day for 3 years. The school was torture for me. I did not like school, sometimes skipped lessons to avoid it all. Of course, it has affected my level of education, I studied badly.\n\nAnd also, my eyesight began to deteriorate, I did not see what was written on the blackboard. And when I admitted that I had bad eyesight, meant even more exposure to ridicule. In addition, due to health problems, but rather due to an error from talentless doctors, I had to take some strange drug. What it was I do not know, but I remember that I had to take these pills with milk. At first, nothing happened ... but then I wanted to eat every 5 minutes, I could not stop! I suffered from hunger! And accordingly, I gained weight. Needless to say, that became more humiliation for me.\n\nPerhaps it is karma. After all, before all this, I, too, along with all, mocked other classmates. Well now I know, I deserve it all.\n\nIt all ended when I graduated from high school. I changed just for the summer. Completely changed! I was starving and had grown very thin. Enrolling in college, I stopped being afraid of the people because they did not know who I was at school. Former classmates simply did not recognize me in the street. I became a different person. I started a new life with a clean slate.\n\nhttp://i.giphy.com/763KvbtkqH3e8.gif\n\n# I'm for searching myself.\n\n### Punk.\n\nOne day on one local forum, I found an ad that a punk rock band was looking for a drummer. I do not know why, or what came over me, or how my subconscious played a role, but I wrote to them that I am ready to join them.\n\nIn those years, I liked punk rock. But I did not know how to play the drums! However, I had an ear for music and rhythm. Since childhood, I remember I loved playing improvised drums.\n\nhttp://i.giphy.com/3oEjI2cJuP3Y0dcfV6.gif\n\nAt the first rehearsal something happened. But, of course, I played really disgusting. I liked that I was with other people. I liked all the socializing after the rehearsals, but the rehearsals themselves I sometimes disliked.\n\nI was getting the feeling that my lack of skill playing the drums was getting the band down. The band broke up after 2 years, played three songs in one of the amateur concerts. I still blame myself for failing them. But communicating with them gave me pleasure.\n\n### Church of Satan.\n\nhttp://i.giphy.com/xThuWk5MZglNP8IsJG.gif\n\nI've never been religious.\nOne day it so happened that I was carried by some away articles and the book \"Church Satan\" that I found on the Internet. So I soon became well versed in the sect (I still keep granted by them, the so-called \"certificate\" as a memory). And then, I began to take an active and more active role in this church.\n\nI was the first who made an unofficial website, for which I was honored with awards and praise. I was the first who wrote a skeptical analysis of the Bible. And my critiques were very popular! Actually, thanks to them that I became known.\n\nAnd then I began to get to know ones of the elders. With me, I remember, I spoke to some journalists, a student who wrote some work, theologians, members of the new sect, and anyone with an interest. Probably because I was often on the network. After all, I have never been a part from the college and at home, and did nothing.\n\nBut then, I and several other members became disillusioned, and I left the sect.\n\nAnd then there were various attempts to find myself, I was changing lifestyles and views on life.\n\nWhy did I write this? All of the above has given me some experience in dealing with people and the ability to understand who I am and why, to find my place in life.\n\nPagan Old Believers tried invite me to come, and then I almost became a skinhead.\n\n> \"What people call life - just a game, but this game is sometimes instructive, and all that it teaches - only lessons from which to borrow wisdom, therefore, ought to live.\" (C)\n\n# Loneliness gave me the alternative to communion, namely: I read a lot of books, of which learned many new things from psychology, philosophy, spirituality and languages.\n\nhttp://i.giphy.com/AbuQeC846WKOs.gif\n\nHave you noticed that being in society and when in the company of others, you do not crave training or self-development? I see this for myself when my brother visits me. I do not read books, I do not ponder any situation and theory, I just talk and spend time with my brother. Loneliness provides an incentive for development. With the help of loneliness, you really will begin to appreciate the friendship and fellowship.\n\n# This can be compared with food delicacies. If you eat delicacies every day, they will cease to be so desirable and unusual, and they will become commonplace.\n\nhttp://i.giphy.com/WmEvcZna75UfS.gif\n\n# Now.\n\nMy current way of life is very similar to Tantric Buddhism, although it is not defined by that as it has no name, and does not need to be defined as such.\n\n# Sometimes it's painful and unpleasant to look at people.\n\nhttp://i.giphy.com/JsL3hYFdvMMSs.gif\n\nI understand why they are themselves, why they have such a way of life, but I do not want to be like them and be with them in the same company. I do not like it.\n\nI never offend for a reason, I never attack, and I do no harm.\nEmpathy - what distinguishes us from animals.\n\nI value every life, no matter what that life is.\nI do not accept what most people love.\nI do everything consciously, extracting meaning and benefits from the experience.\nFor example, I have a meal. I do not eat garbage food, because it does not give to my body anything useful, since it does not contain nutrients. \n\n# I do not drink alcohol, smoke cigarettes or do drugs.\u00a0\n\n\nAnd that is why people around me laugh or look at me quizzically. They say that I'm lying, sick, abnormal, or \"mother does not allow\". They say, \"in life need one needs to try everything!\" \n\nBut none of them for some reason, do not try, for example, quantum physics, a healthy lifestyle, or Buddhism.\n\n**In life, need to not only try, but also try not to try!**\n\n# I do not live with the people, but I live among the people.\n\nIf only you knew how hard all of this is ... I have to hide it all, and to adapt to the \"generally accepted norms\", in order not to be mocked. \n\nI feel somehow alien among the people. I have to wear a mask to resemble the people and not be detected.\n\nhttp://i.giphy.com/QG0th9DNdRrGw.gif\n\n> \"No pyramids of authority.\nMaster has an older brother, nothing more. And he just does the hard work that the others do not overpower. If it is otherwise, then trouble is inevitable.\nAuthority - this is a mistake \"(c).\n\nIf you have read Orwell's novel \"1984\" or watched the same film, you know, all this is happening in my country.\nPeople poisoned by propaganda, people are trying to survive, they are afraid of the authorities and freedom.\nAll this is laid bare and exacerbated in human animal instincts. The principle of flocks. Not like us - the enemy is dangerous, you need to avoid, or to die.\n\nThe population cannot tolerate dissent, any manifestation of freedom, something different from their lifestyle and worldview. In connection with this, people with a different lifestyle, look, worldview and way, becomes an object of ridicule, an outcast, a threat, an enemy.\n\nIt's not comfortable for me to live here. But leave (until the border has not yet closed) there is no possibility. It is very expensive, and I make incredibly low wages, and wages continue to fall, while food and services continue to rise in price.\n\nHow I would like live in a free country! Be yourself, do not hide anything, not trying to make excuses for my views and lifestyles.\n\nMaybe relocation to another country could change something in me, but I notice, positive emotions in me less and less and I feel less joy and desire to live.\n\nhttp://i.giphy.com/eR2OWX51qesIo.gif\n\n-Secret Writer\n\nImages and gifs: All images are by Stellabelle, all gifs are from giphy.com.", + "cashout_time": "2016-09-15T19:48:36", + "category": "secret-writer", + "children": 43, + "children_abs_rshares": "18007718646255", + "created": "2016-08-15T16:44:42", + "curator_payout_value": { + "amount": "31898", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 615287, + "json_metadata": "{\"tags\":[\"secret-writer\",\"isolation\",\"self-development\",\"life\"],\"image\":[\"http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\"]}", + "last_payout": "2016-08-16T19:48:36", + "last_update": "2016-08-15T17:39:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-08-30T21:38:48", + "net_rshares": "981828724825", + "net_votes": 293, + "parent_author": "", + "parent_permlink": "secret-writer", + "percent_steem_dollars": 10000, + "permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "reward_weight": 10000, + "root_author": "stellabelle", + "root_permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "title": "SECRET WRITER: I Feel Like An Alien Among People In My Country", + "total_payout_value": { + "amount": "356586", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "981882842624" + }, + { + "abs_rshares": 0, + "active": "2016-08-15T20:10:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "teutonic", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://www.mindmotivations.com/images/optical-illusion1.jpg \nIs the ladder going up or down?\nhttp://www.mindmotivations.com/images/optical-illusion2.jpg\nAre the dots in between the squares white, black or grey?\nhttp://www.mindmotivations.com/images/optical-illusion3.jpg \nparallel or crooked?\nhttp://www.mindmotivations.com/images/optical-illusion4.jpg\nHow many legs?\nhttp://www.mindmotivations.com/images/optical-illusion5.jpg\nFocus on the dot in the middle and then move your head backwards and forwards.\nhttp://www.mindmotivations.com/images/optical-illusion7.jpg\nIs the picture moving?\nhttp://www.mindmotivations.com/images/optical-illusion8.jpg\nIs there anything in between the different squares?\nhttp://www.mindmotivations.com/images/optical-illusion9.jpg\nface of a lady or a word?\nhttp://www.mindmotivations.com/images/optical-illusion6.jpg \nFocus on the 4 dots in the middle of the picture for 30 seconds. \nhttp://www.mindmotivations.com/images/optical-illusion10.jpg \neven possible?", + "cashout_time": "2016-09-15T19:48:45", + "category": "awesome", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-15T19:35:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617429, + "json_metadata": "{\"tags\":[\"awesome\",\"\"],\"image\":[\"http://www.mindmotivations.com/images/optical-illusion1.jpg\"]}", + "last_payout": "2016-08-16T19:48:45", + "last_update": "2016-08-15T19:35:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "awesome", + "percent_steem_dollars": 10000, + "permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "reward_weight": 10000, + "root_author": "teutonic", + "root_permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "title": "10 Amazing Optical Illusion Pictures To Mess With Your Brain", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 158773924, + "active": "2016-09-14T20:20:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "safar01", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

show in the pictures are not real, but I edit them using Photoshop just

\n

 to train the imagination only.

\n

I made this picture just to entertain readers of all, 

\n

please advise the reader all my abilities to process images

\n", + "cashout_time": "2016-09-15T19:48:57", + "category": "editing", + "children": 0, + "children_abs_rshares": 158773924, + "created": "2016-09-14T19:48:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 952070, + "json_metadata": "{\"tags\":[\"editing\",\"with\",\"photoshop\",\"imagination\",\"steemitphotochallenge\"],\"image\":[\"https://scontent.fcgk1-1.fna.fbcdn.net/v/t1.0-9/44685_544257398931890_1432197168_n.jpg?oh=737dff7bef73ecfcaff983c130b55ee1&oe=587FF678\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T20:20:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-28T19:48:57", + "net_rshares": 158773924, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "editing", + "percent_steem_dollars": 10000, + "permlink": "lol-robot-tranformers-against-fishermen", + "reward_weight": 10000, + "root_author": "safar01", + "root_permlink": "lol-robot-tranformers-against-fishermen", + "title": "LOL ... Robot Tranformers against fishermen (steemitphotochallenge)", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "732186422373807", + "vote_rshares": 158773924 + }, + { + "abs_rshares": 53638386, + "active": "2016-08-15T19:15:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "pipertomcat", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg \nhttps://s19.postimg.org/jiv4eri0j/Blockchain_technology1.png\nWhy not Steem Dollars then? I think ultimately Western Union and the like may actually choose or adopt a name that includes something like \"Dollar\". Lol\nhttps://s19.postimg.org/4y9g66xo3/Bitcoinripplebanner1.png\n\nI have said to different friends over the last year or so on occasion, that I fear Western Union is about to die by Bitcoin's hand. I compare Netflix, Youtube, Google Play, Itunes,and so forth killing retail establishments like Blockbuster video. Technology and the convenience it brings, easily dominates any industry, ask Kodak. \n\n I have friends who still have to purchase money orders to pay their rent. The Apartment complex refuses personal checks and apparently doesn't want employee's accepting cash. You can join their site online for a $50 per month fee and connect your checking account. What a ripoff! \nWow if they only knew of bitcoin and the coming technology.\nhttps://s19.postimg.org/743r0p14j/725_Ly9jb2lud_GVs_ZWdy_YXBo_Lm_Nvb_S9zd_G9y_YWdl_L3_Vwb_G9h.jpg\n\n\nhttps://s19.postimg.org/fc5olot0z/e873eec95dbe6437e8b73f6dc4b474e6.jpg\nhttps://s19.postimg.org/d2hkaxk37/a9ee5c9045261e324670df9b5e3fbf0c.png\n Western Union was in discussions with Ripple Labs early last year, regarding a blockchain pilot project. By using a cheap payment network, proponents claim that companies will be able to cut down the cost of remittances.\n The following quote from Barry Gilbert , the Digital Currency Insights Founder and CEO says it best:\n\u201cIf you look at Western Union and Moneygram, they have a fantastic opportunity to take advantage of bitcoin as a financial rail and incorporate it into their business.\u201d\n\nAfter reading the following article just now, I will have to say that I think someone like Western Union may be the key player in bringing Bitcoin to the masses! The following is an article from Bravenewcoin-http://bravenewcoin.com/news/western-union-wont-make-the-same-mistake-with-blockchain/\n\n#steemdollar\n#steem\n#westernunion\n#ripple", + "cashout_time": "2016-09-15T19:49:42", + "category": "bitcoin", + "children": 1, + "children_abs_rshares": "45063474229", + "created": "2016-08-15T19:14:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617119, + "json_metadata": "{\"tags\":[\"bitcoin\",\"steemdollar\",\"steem\",\"westernunion\",\"ripple\"],\"image\":[\"https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg\"]}", + "last_payout": "2016-08-16T19:49:42", + "last_update": "2016-08-15T19:14:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-04T21:13:12", + "net_rshares": 53638386, + "net_votes": 9, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_steem_dollars": 10000, + "permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "reward_weight": 10000, + "root_author": "pipertomcat", + "root_permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "title": "Western Union investing in Blockchain technology...will it be Bitcoin ? or Ripple!?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 53638386 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.orig.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.orig.json new file mode 100644 index 00000000..bbc6ae6c --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-03-31T13:54:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "proskynneo", + "author_rewards": 4817, + "beneficiaries": [], + "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-03-31T13:54:33", + "curator_payout_value": { + "amount": "1059", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 2, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-31T13:54:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_steem_dollars": 10000, + "permlink": "steemit-firstpost-1", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Excited!", + "total_payout_value": { + "amount": "1058", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T08:38:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 457, + "beneficiaries": [], + "body": "Did you know you can earn STEEM by commenting on posts?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-06T19:22:42", + "curator_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 3, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-04-06T19:22:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_steem_dollars": 10000, + "permlink": "steemit-firstpost-2", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Did you Know?", + "total_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-11T21:41:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 4661, + "beneficiaries": [], + "body": "Bitcoin's protocol schedules a block reward 'halving' roughly every four years, as designed by Satoshi Nakamoto. But the artificial block size cap currently sanctioned by Core developers and a majority of miners alike may actually cause a catastrophic result come July 2016. Here's how. https://youtu.be/_NgFIj9dBkQ", + "cashout_time": "1969-12-31T23:59:59", + "category": "daily-decrypt", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-04-06T19:54:12", + "curator_payout_value": { + "amount": "1024", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 4, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-04-06T19:54:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "daily-decrypt", + "percent_steem_dollars": 10000, + "permlink": "red-dailydecrypt-1", + "reward_weight": 10000, + "root_author": "red", + "root_permlink": "red-dailydecrypt-1", + "title": "What You Should Know About the Coming Bitcoin Halving", + "total_payout_value": { + "amount": "1024", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-10T09:18:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 1339, + "beneficiaries": [], + "body": "Trying to post my first post..", + "cashout_time": "1969-12-31T23:59:59", + "category": "firstpost", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-04-08T07:33:42", + "curator_payout_value": { + "amount": "294", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 5, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:36", + "last_update": "2016-04-08T07:33:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "firstpost", + "percent_steem_dollars": 10000, + "permlink": "abit-first-post", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "abit-first-post", + "title": "Trying", + "total_payout_value": { + "amount": "294", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T08:58:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 729, + "beneficiaries": [], + "body": "This is the witnesses category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-08T07:36:18", + "curator_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 6, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:39", + "last_update": "2016-04-08T07:36:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -491818553, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "witness-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "witness-category", + "title": "Witnesses", + "total_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T07:55:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 632, + "beneficiaries": [], + "body": "This is the miners category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T07:55:15", + "curator_payout_value": { + "amount": "139", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 7, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:42", + "last_update": "2016-04-08T07:55:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -481781440, + "net_votes": -3, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "miner-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "miner-category", + "title": "Miners", + "total_payout_value": { + "amount": "138", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-19T12:08:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 503226, + "beneficiaries": [], + "body": "This is abit, an experienced witness. Will you vote for me?", + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-04-08T07:58:51", + "curator_payout_value": { + "amount": "110702", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 8, + "json_metadata": "{}", + "last_payout": "2016-08-22T12:36:54", + "last_update": "2016-04-08T07:58:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 23, + "parent_author": "", + "parent_permlink": "witness-category", + "percent_steem_dollars": 10000, + "permlink": "abit-witness-post", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "abit-witness-post", + "title": "Abit Witness Thread", + "total_payout_value": { + "amount": "110730", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T08:49:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 755, + "beneficiaries": [], + "body": "Spams come here", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T08:49:15", + "curator_payout_value": { + "amount": "166", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 9, + "json_metadata": "{}", + "last_payout": "2016-08-13T18:32:54", + "last_update": "2016-04-08T08:49:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -477016308, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "spam", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "spam", + "title": "Spams", + "total_payout_value": { + "amount": "165", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-28T17:16:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 0, + "beneficiaries": [], + "body": "I'm trying to spam here to see how much STEEM I can earn..", + "cashout_time": "1969-12-31T23:59:59", + "category": "spam", + "children": 26, + "children_abs_rshares": 0, + "created": "2016-04-08T08:50:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 10, + "json_metadata": "{}", + "last_payout": "2016-08-22T08:02:15", + "last_update": "2016-04-08T08:50:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -12344332066668, + "net_votes": -8, + "parent_author": "", + "parent_permlink": "spam", + "percent_steem_dollars": 10000, + "permlink": "abit-spam-post1", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "abit-spam-post1", + "title": "Spam test", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T08:52:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 1327, + "beneficiaries": [], + "body": "Let's mine!", + "cashout_time": "1969-12-31T23:59:59", + "category": "miner-category", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T08:52:48", + "curator_payout_value": { + "amount": "291", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 11, + "json_metadata": "{}", + "last_payout": "2016-08-13T18:32:48", + "last_update": "2016-04-08T08:52:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -466979195, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "miner-category", + "percent_steem_dollars": 10000, + "permlink": "come-on-miners", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "come-on-miners", + "title": "Come on, miners!", + "total_payout_value": { + "amount": "291", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.orig.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.orig.json new file mode 100644 index 00000000..efd2a786 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-24T09:30:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit", + "author_rewards": 3548, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "children_abs_rshares": 0, + "created": "2016-03-30T18:30:18", + "curator_payout_value": { + "amount": "756", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 0, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 90, + "parent_author": "", + "parent_permlink": "meta", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Welcome to Steem!", + "total_payout_value": { + "amount": "942", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-18T19:53:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "admin", + "author_rewards": 0, + "beneficiaries": [], + "body": "First Reply! Let's get this **party** started", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-03-30T19:52:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T19:52:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -226592300084, + "net_votes": 8, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-03-31T13:54:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "proskynneo", + "author_rewards": 4817, + "beneficiaries": [], + "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-03-31T13:54:33", + "curator_payout_value": { + "amount": "1059", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 2, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-31T13:54:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_steem_dollars": 10000, + "permlink": "steemit-firstpost-1", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Excited!", + "total_payout_value": { + "amount": "1058", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T08:38:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 457, + "beneficiaries": [], + "body": "Did you know you can earn STEEM by commenting on posts?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-06T19:22:42", + "curator_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 3, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-04-06T19:22:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_steem_dollars": 10000, + "permlink": "steemit-firstpost-2", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Did you Know?", + "total_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-11T21:41:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 4661, + "beneficiaries": [], + "body": "Bitcoin's protocol schedules a block reward 'halving' roughly every four years, as designed by Satoshi Nakamoto. But the artificial block size cap currently sanctioned by Core developers and a majority of miners alike may actually cause a catastrophic result come July 2016. Here's how. https://youtu.be/_NgFIj9dBkQ", + "cashout_time": "1969-12-31T23:59:59", + "category": "daily-decrypt", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-04-06T19:54:12", + "curator_payout_value": { + "amount": "1024", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 4, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-04-06T19:54:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "daily-decrypt", + "percent_steem_dollars": 10000, + "permlink": "red-dailydecrypt-1", + "reward_weight": 10000, + "root_author": "red", + "root_permlink": "red-dailydecrypt-1", + "title": "What You Should Know About the Coming Bitcoin Halving", + "total_payout_value": { + "amount": "1024", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-10T09:18:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 1339, + "beneficiaries": [], + "body": "Trying to post my first post..", + "cashout_time": "1969-12-31T23:59:59", + "category": "firstpost", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-04-08T07:33:42", + "curator_payout_value": { + "amount": "294", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 5, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:36", + "last_update": "2016-04-08T07:33:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "firstpost", + "percent_steem_dollars": 10000, + "permlink": "abit-first-post", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "abit-first-post", + "title": "Trying", + "total_payout_value": { + "amount": "294", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T08:58:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 729, + "beneficiaries": [], + "body": "This is the witnesses category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-08T07:36:18", + "curator_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 6, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:39", + "last_update": "2016-04-08T07:36:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -491818553, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "witness-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "witness-category", + "title": "Witnesses", + "total_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T07:55:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 632, + "beneficiaries": [], + "body": "This is the miners category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T07:55:15", + "curator_payout_value": { + "amount": "139", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 7, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:42", + "last_update": "2016-04-08T07:55:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -481781440, + "net_votes": -3, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "miner-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "miner-category", + "title": "Miners", + "total_payout_value": { + "amount": "138", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-19T12:08:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 503226, + "beneficiaries": [], + "body": "This is abit, an experienced witness. Will you vote for me?", + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-04-08T07:58:51", + "curator_payout_value": { + "amount": "110702", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 8, + "json_metadata": "{}", + "last_payout": "2016-08-22T12:36:54", + "last_update": "2016-04-08T07:58:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 23, + "parent_author": "", + "parent_permlink": "witness-category", + "percent_steem_dollars": 10000, + "permlink": "abit-witness-post", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "abit-witness-post", + "title": "Abit Witness Thread", + "total_payout_value": { + "amount": "110730", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T08:49:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 755, + "beneficiaries": [], + "body": "Spams come here", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T08:49:15", + "curator_payout_value": { + "amount": "166", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 9, + "json_metadata": "{}", + "last_payout": "2016-08-13T18:32:54", + "last_update": "2016-04-08T08:49:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -477016308, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "spam", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "spam", + "title": "Spams", + "total_payout_value": { + "amount": "165", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.orig.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.orig.json new file mode 100644 index 00000000..6f40e9fd --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-15T19:12:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "crowe", + "author_rewards": 0, + "beneficiaries": [], + "body": "I thought my viewers would be interested in the place I actually live in. I live in a City called Ashkelon. Its about 7 miles North of Gaza. Last year in June when some missiles were being shot toward Israel the Sirens in Ashkelon went off. I filmed this video from my deck. The video is what we hear when this happens. \n\nhttps://www.youtube.com/watch?v=Ky23yJaNDfo", + "cashout_time": "2016-09-15T19:47:27", + "category": "israel", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T19:12:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617094, + "json_metadata": "{\"tags\":[\"israel\",\"siren\",\"gaza\",\"politics\",\"steemit\"],\"links\":[\"https://www.youtube.com/watch?v=Ky23yJaNDfo\"]}", + "last_payout": "2016-08-16T19:47:27", + "last_update": "2016-08-15T19:12:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "israel", + "percent_steem_dollars": 10000, + "permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "reward_weight": 10000, + "root_author": "crowe", + "root_permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", + "title": "Israeli Bomb Siren goes off in my City. I filmed this from my deck.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "1339555910464", + "active": "2016-08-15T19:44:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "luminarycrush", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

I came across a lone blooming cactus during a hike this weekend.  Photos taken at 946' ASL above Two Harbors, Catalina Island.

\n

\n


\n

\n


\n

\n", + "cashout_time": "2016-09-15T19:47:27", + "category": "photography", + "children": 0, + "children_abs_rshares": "1339555910464", + "created": "2016-08-15T19:44:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617542, + "json_metadata": "{\"tags\":[\"photography\",\"cactus\",\"catalinaisland\",\"california\",\"twoharbors\"],\"image\":[\"https://scontent.xx.fbcdn.net/t31.0-8/13988224_10154518762224175_252304266230235242_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13923665_10154518762269175_2030254348907005554_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13988240_10154518762254175_9097905240858144855_o.jpg\"]}", + "last_payout": "2016-08-16T19:47:27", + "last_update": "2016-08-15T19:44:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-01T02:13:51", + "net_rshares": "1339555910464", + "net_votes": 14, + "parent_author": "", + "parent_permlink": "photography", + "percent_steem_dollars": 10000, + "permlink": "cactus-in-the-clouds-catalina-island", + "reward_weight": 10000, + "root_author": "luminarycrush", + "root_permlink": "cactus-in-the-clouds-catalina-island", + "title": "Cactus in the Clouds - Catalina Island", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "1339555910464" + }, + { + "abs_rshares": "76217996022", + "active": "2016-08-17T15:39:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "brunopro", + "author_rewards": 13512, + "beneficiaries": [], + "body": "http://imgur.com/HrpWWaK.png\n\n## And there are changes again regarding the duration until the payout occurs, now your post will have a minimum 24 hours duration until the first payout. \n\nPersonally I think that they should never have changed it to 12 hours. I didn't understand the logic behind it at the time and I still don't. This 24h period it's ideal because this way the post has better chances of overcoming the first publish period and get more traction. It also enables of a higher possibility of being seen and upvoted by the users that on the 12h were sleeping or simply away.\n\n# And you? What do you think about this change?\n\n----\n\nEdit post-publish: I've notice that I can't upvote a post that has been up for a month. Is this new also? I thought a post would always be open for an upvote? Can anyone reply to this question? thanks!\n\n----\n\n###### Photo Credits: https://unsplash.com/@sonjalangford", + "cashout_time": "2016-09-15T19:47:42", + "category": "steemit", + "children": 22, + "children_abs_rshares": "78071773184", + "created": "2016-08-15T18:36:36", + "curator_payout_value": { + "amount": "3483", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 616664, + "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"opinion\",\"reward\"],\"image\":[\"http://imgur.com/HrpWWaK.png\"]}", + "last_payout": "2016-08-16T19:47:42", + "last_update": "2016-08-15T18:51:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-08-30T20:41:45", + "net_rshares": "76217996022", + "net_votes": 82, + "parent_author": "", + "parent_permlink": "steemit", + "percent_steem_dollars": 10000, + "permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "reward_weight": 10000, + "root_author": "brunopro", + "root_permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", + "title": "LATEST NEWS: Payouts are back to 24H - What do you think about it? [ Quick read / Opinion Article ]", + "total_payout_value": { + "amount": "20200", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "76217996022" + }, + { + "abs_rshares": 0, + "active": "2016-08-15T19:50:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "yassinebentour", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

http://unitedcivilrights.org/images/fa-prprty.gif

\n

The purpose of property rights is to mitigate conflict over scarce, rivalrous resources. To have a property right over a scarce, rivalrous resource is to have the right to exclude others from using that resource in the attainment of some ends. For example, I have property rights over my body, which means I can exclude others from using my body for sexual pleasure or labor without my consent. If they do access my body in such a way without my consent, it's called rape or slavery, respectively. Likewise, I have property rights over the accumulated capital for which I consensually trade my time and labor, which means I have the right to exclude people from using my accumulated capital without my consent. When someone accesses my accumulated capital in such a way without my consent, it's called theft or trespass.
\nScale doesn't change this. If I transform my accumulated capital into a factory by hiring people who voluntarily exchange the product of their labor for some of my accumulated capital, this means that they value what they receive in exchange for working more than they value the direct product of their labor (the factory). Likewise, it means I value the factory more than the accumulated capital I gave up for it. This is a win-win situation, or a positive sum game. The workers I hired retain property rights over the capital they received as payment for their labor, which means they can exclude others from the use of their newly acquired accumulated capital, and I retain property rights over the factory, which means I can exclude others from the use of my factory.
\nDiscrepancies between marginal benefit don't change this either. A consensual exchange doesn't become theft just because one party benefits more from the exchange than another. If this wasn't the case, every single instance of buyer's remorse would be indicative of theft. If someone agrees to produce a walking stick in exchange for ten dollars and the purchaser of the walking stick then sells it to someone else for twenty dollars, how can it be claimed that the producer of the walking stick was a victim of theft if they haven't been deprived of the ten dollars for which they voluntarily exchanged the walking stick? Would it have been reasonable to expect that the first purchaser of the walking stick wouldn't have obtained more than ten dollars of value from it given that the exchange wouldn't have happened in the first place if they hadn't valued the walking stick more than they valued ten dollars?
\nOf course not. Anything that happens to the walking stick after the original exchange is no business of the producer of the walking stick because said producer already exchanged his property rights to the walking stick for property rights to a different form of accumulated capital (ten dollars).
\nLikewise, if I use more of my accumulated capital to hire workers to work in my factory, they will only accept my offer of employment if they value what I'm offering more than their own free time and more than whatever stake they may have otherwise had in the product they will be producing. In other words, if they accept employment, it will be with the understanding that they're giving up any stake in what they're producing in exchange for what I'm offering them. Maybe my factory assembles televisions. Maybe one worker can produce one television per hour. Would they be able to produce televisions this efficiently without my previous investment in production capital (which hasn't even been recouped and probably never will be completely given that maintenance, employment and higher order production good costs are a revolving door)? Would they be able to produce televisions AT ALL without this previous investment in production capital? Of course not, and they know this, which is why they're willing to give up both their leisure and whatever stake their labor may have otherwise entitled them to in the production of a television in exchange for a fixed amount of accumulated capital.
\nAs was the case with the walking stick, whatever happens to the television after this exchange occurs is no business of the worker. How could the future sale of the television constitute theft of the worker's accumulated capital if it can't be demonstrated that the worker was deprived of the accumulated capital that he voluntarily accepted as payment for the production of the television, especially given that the television was produced with other accumulated capital (plastic, circuits, labor saving devices, etc.) that the worker never even owned?
\nIt can't.
\nProperty ownership necessarily implies exclusivity, which means that \"private property\" is redundant, as is \"personal property\". The words \"private\" and \"personal\" denote exclusivity, which is already implied by the word \"property\". To differentiate between \"personal property\" and \"private property\" is therefore a distinction without a difference. This implication of exclusivity also means that \"public property\" is a contradiction in terms. If no one can be excluded from using the resource, it isn't property. Resources that aren't scarce or rivalrous likewise can not be considered property, which means that \"intellectual property\" is also a contradiction in terms.
\nThis means that seizing the means of production is a genuine form of theft and that \"pirating\" music, software, art and writing is not, which may seem counter-intuitive if you attended the indoctrination camps euphemistically known as \"public schools\" when you were growing up.

\n", + "cashout_time": "2016-09-15T19:47:48", + "category": "writing", + "children": 2, + "children_abs_rshares": "25854883309", + "created": "2016-08-15T19:43:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617534, + "json_metadata": "{\"tags\":[\"writing\",\"rights\"],\"image\":[\"http://unitedcivilrights.org/images/fa-prprty.gif\"]}", + "last_payout": "2016-08-16T19:47:48", + "last_update": "2016-08-15T19:43:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-01T01:02:42", + "net_rshares": -104004690671, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "writing", + "percent_steem_dollars": 10000, + "permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "reward_weight": 736, + "root_author": "yassinebentour", + "root_permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", + "title": "The purpose of property rights is to mitigate conflict over scarce, rivalrous resources", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-15T19:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "libtrian.outlet", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\nFriday's move is the clearest indication yet that the White House is serious about getting Obama\u2019s legacy trade deal.\n\nThe White House put Congress on notice Friday morning that it will be sending lawmakers a bill to implement President Barack Obama\u2019s landmark Trans-Pacific Partnership agreement \u2014 a move intended to infuse new energy into efforts to ratify the flat-lining trade pact.\n\nThe move establishes a 30-day minimum before the administration can present the legislation, but the White House is unlikely to do so amid the heated rhetoric of a presidential campaign in which both major party nominees have depicted free trade deals as massive job killers.\n\nFriday's notification is the clearest signal yet that the White House is serious about getting Obama\u2019s legacy trade deal \u2014 the biggest in U.S. history \u2014 passed by the end of the year, as he has vowed to do despite the misgivings of Republican leaders and the outright opposition of a majority of Democrats in Congress.\n\nStriking a defiant tone, Obama predicted at a press conference last week that the economic centerpiece of his strategic pivot to Asia would pass in the lame-duck session, saying he\u2019d like to sit down with lawmakers after the election to discuss the \"actual facts\" behind the deal, rather than toss it around like a \"political football.\"\n\n\"We are part of a global economy. We're not reversing that,\" Obama said, describing the necessity of international supply chains and the importance of the export sector to U.S. jobs and the economy. \"The notion that we're going to pull that up root and branch is unrealistic.\"\n\nThe notification, a new requirement of the trade promotion authority legislation Congress passed last year to expedite passage of the Asia-Pacific pact, is \u201cmeant to ensure early consultations between the administration and Congress,\u201d Matt McAlvanah, a spokesman for the Office of the U.S. Trade Representative, said in a statement. \u201cAs such, the draft SAA [Statement of Administrative Action] was sent today in order to continue to promote transparency and collaboration in the TPP process.\u201d\n\nThe White House's draft document describes the major steps the administration will take to implement any changes to U.S. law required by the deal. Those actions range from the mundane \u2014 designating an administration point of contact for communications about the pact \u2014 to the complex \u2014 setting up procedures to stop harmful surges of agricultural or textile imports.\n\nBut the deal is going nowhere until the White House addresses a number of concerns lawmakers have raised about the trade agreement, which Canada, Mexico, Japan and eight other countries joined the United States in signing last February.\n\nFirst and foremost: satisfying the concerns of Senate Finance Committee Chairman Orrin Hatch (R-Utah) and other lawmakers about protections for a new class of drugs known as biologics. They say the pact provides too short a monopoly period for rights to research and development data. Other lawmakers have complained the deal would bar tobacco companies from seeking redress through investor-state dispute arbitrage for damages resulting from country regulations. Still others are seeking assurances that member countries will abide by their commitments to provide access for U.S. pork and dairy exports.\n\nUntil these issues are resolved, House Speaker Paul Ryan and Senate Majority Leader Mitch McConnell have made clear that the pact will not get the votes it needs to pass.\n\nRyan's spokeswoman, AshLee Strong, reiterated the point on Friday.\n\n\u201cAs Speaker Ryan has stated for months, there are problems that remain with the administration\u2019s TPP deal, and there can be no movement before these concerns are addressed,\" she said.\n\nDemocrats, meanwhile, have largely called the deal a nonstarter over concerns about the enforceability of labor and environmental standards in countries like Vietnam and the lack of strong protections against currency manipulation.\n\nThe administration claims it is making progress on these issues and has resolved others, including banking industry concerns over the exclusion of financial data from rules prohibiting countries from requiring local storage.\n\nBut that doesn\u2019t change the reality of the down-ballot drag that candidates are facing as they campaign back home in their districts. In a reversal from years past, many Republicans are on the defensive about their support for free trade because of Donald Trump\u2019s daily tirades about what he characterizes as the serious economic damage wrought by trade agreements like the North American Free Trade Agreement and the TPP as well as his complaints that China is flouting international trade rules.\n\nThe Republican platform picked up on this theme, saying significant trade deals \"should not be rushed or undertaken in a Lame Duck Congress.\"\n\nThe small band of Democrats who the administration hopes will support the TPP are facing increased pressure within their own party to abandon the president on the agreement. Sens. Bernie Sanders\u2019 and Elizabeth Warren\u2019s strong condemnations of the trade deal have forced Hillary Clinton, who supported the TPP as Obama\u2019s secretary of state, to reject the pact to appease the liberal wing.\n\n\"I will stop any trade deal that kills jobs or holds down wages, including the Trans-Pacific Partnership,\" Clinton said during an economic policy speech at an automotive manufacturing plant in Warren, Mich., on Thursday. \"I oppose it now, I'll oppose it after the election and I'll oppose it as president.\"\n\nClinton\u2019s clear rejection of the trade deal has emboldened liberal groups like the Warren-aligned Progressive Change Campaign Committee to launch a campaign to press Democrats to publicly oppose a TPP vote in the lame duck.\n\nSanders also called on Democratic congressional leaders to go on record against the White House\u2019s effort to get the deal done by the end of the year, saying the agreement is opposed by every trade union and the grassroots base of the Democratic Party.\n\n\"I am disappointed by the president's decision to continue pushing forward on the disastrous Trans-Pacific Partnership trade agreement that will cost American jobs, harm the environment, increase the cost of prescription drugs and threaten our ability to protect public health,\u201d the Vermont senator said in a statement after learning of the White House's action on Friday.\n\nMeanwhile, the administration continues to press the deal in key congressional districts \u2014 especially those of Democrats who supported the trade promotion authority bill last year.\n\nInterior Secretary Sally Jewell returned to her hometown of Seattle last month to tout the TPP\u2019s potential effects on the environment at a Washington Council on International Trade event with more than 150 business leaders.\n\nThen, last week, Commerce Secretary Penny Pritzker hit the San Diego and Boulder districts of Reps. Susan Davis and Jared Polis \u2014 two of the 28 House Democrats that voted for the bill \u2014 and visited a steel plant in Cleveland to promote the TPP. Treasury Secretary Jack Lew did the same when he met with local and state officials and Fortune 500 business executives in Minneapolis.\n\nOn Thursday, Undersecretary of Commerce for Oceans and Atmosphere Kathryn Sullivan spoke at a Seattle clean energy business roundtable focused on the TPP and the environment. And this Monday, Deputy U.S. Trade Representative Robert Holleyman will participate in a World Affairs Council of Atlanta discussion on the trade deal featuring former Republican Sen. Saxby Chambliss and UPS CEO David Abney.\n\nAs the political fight plays out, the nuts-and-bolts process of moving the deal forward will continue. Once Congress reviews the draft notification that the White House submitted on Friday, the administration can move forward with sending lawmakers a final statement and the draft of the implementing bill itself. The legislation will describe the actual changes to U.S. law to comply with the rules of the trade agreement.\n\nAfter that, the Senate Finance and House Ways and Means committees could hold \u201cmock markups\u201d of the bill (because under trade promotion authority, Congress is not actually allowed to tinker with the agreement or its implementing legislation itself, but it can ask the administration to do so).\n\nBut given the tenor of the elections, the entire process could be pushed into a crowded lame-duck legislation session, which would mean no time for the mock markups. Instead, there could be a lot of deal-making between the White House and congressional leadership to move the bill before Clinton or Trump takes over on Jan. 20.\n\nObama said last week that he\u2019s ready to press his case. \"Right now, I'm president, and I'm for it. And I think I've got the better argument,\" he said.\n\nSource:\nwww.politico.com/story/2016/08/obama-congress-trade-warning-226952", + "cashout_time": "2016-09-15T19:47:57", + "category": "politics", + "children": 1, + "children_abs_rshares": "11700424464", + "created": "2016-08-15T19:44:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617538, + "json_metadata": "{\"tags\":[\"politics\",\"tpp\",\"conspiracy\",\"news\",\"freetrade\"],\"image\":[\"http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\"]}", + "last_payout": "2016-08-16T19:47:57", + "last_update": "2016-08-15T19:44:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-04T23:37:39", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "", + "parent_permlink": "politics", + "percent_steem_dollars": 10000, + "permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "reward_weight": 2046, + "root_author": "libtrian.outlet", + "root_permlink": "obama-puts-congress-on-notice-tpp-is-coming", + "title": "Obama puts Congress on notice: TPP is coming", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "89025972926", + "active": "2016-09-15T15:19:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "profanarky", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

In which the folks in the subway find themselves some unwelcome visitors...

\n

29

\n

   \u201cDo NOT panic! There is no reason to believe that this is anything more than just a power outage.\u201d  

\n

   \u201cBut-- BUT-- how can it be the whole state?\u201d One wide-eyed young woman, one of the aforementioned punk rockers actually raised her hand.  

\n

   \u201cYeah, it\u2019s gotta be Al Qaeda, who the hell else could it be?!!\u201d Another idiot bellowed.    

\n

   Others followed, there words quickly jumbling together into a tidal wave of paranoia. It only took one idiot to get the ball rolling.   

\n

   \u201cIt\u2019s gotta be the terrorists, who the hell else could it be?\u201d    

\n

   \u201cOh my god, I gotta get to my kids\u2026 My kids are still at the day care!!!\u201d   

\n

   \u201cDid an airplane hit a power plant??!! OH GOD!! DID AN AIRPLANE HIT ONE OF THE NUCLEAR PLANTS??!!\u201d    

\n

   She heard it all and it was nothing more than a buzzing, though an irritating one nonetheless. Her instincts, those things cops called their gut instincts told her Mister Blue-eyes was the key, the only thing really important right now. Mister Blue-eyes and whatever the hell it was he was watching outside their little tin prison.  

\n

     \u201cNOW LISTEN DAMMIT!!!\u201d She hollered, trying to make herself louder than the loudest of them, a difficult task with New Yorkers. \u201cI told you, there\u2019s no goddamn reason to think it\u2019s terrorism! This has happened before in our lifetimes and it\u2019s gonna happen again. As far as I\u2019m concerned it ain\u2019t nothing more than a power outage. Going FUCKING crazy ain\u2019t gonna help us any, dammit!!\u201d  

\n

   They kept going, some of them, but most paid her mind and listened, their faces drawn and tired. They\u2019d suffered enough the last few years, New Yorkers. There wasn\u2019t a one of them, including herself, who hadn\u2019t had their world turned literally upside down two years before. The terror they\u2019d lived was fresh on their minds, fresh and ready to burst again and overwhelm them. It was a hard thing, it truly, truly was.     

\n

   \u201cNow I just got off the phone with my partner and he says he\u2019s gonna get people down here to get us out as soon as possible. There are trains stalled all over the city. Rescue workers are leading those people out from underground and up to their homes. He told me there would be a group of them here soon. He was gonna get them here.\u201d    

\n

   \u201cIs that them?\u201d Came the deep voice of Jeffrey Thornton. He\u2019d been quiet while the others yelled, silent and listening to what she had to say. The moment she\u2019d spoken of rescue his eyes had gone outside the train and he saw what Mister Blue-eyes had apparently been watching.    

\n

   \u201cWhere?\u201d She asked him, stumbling over and peering outside, right next to the stranger in the baseball cap.       

\n

   She saw nothing at first, her eyes trying to focus past the reflections in the glass and out into the pitch black.      

\n

   \u201cThose--,\u201d Mister Blue-eyes said, at last speaking, his voice accented in a manner she\u2019d never heard before. Something about it was as wrong and as otherworldly as his eyes were. \u201c---are not rescuers of any sort.\u201d    

\n

   Out of the corner of her eye she saw him rise and back away from the window and once again her instincts spoke to her. They told her to back away as well, and to not stop there. They said to her, no, they screamed at her to run, to run as far from here as possible.      

\n

   But she didn\u2019t, she had to see what they were, had to see for herself.    

\n

   When the figures finally did materialize from the darkness, they weren\u2019t human at all.     

\n

End Part 29

\n

         If you find yourself interested in the whole damnedable thing and wanna throw me a few bucks, here's a link to it on Amazon.      

\n

  https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1   

\n


\n", + "cashout_time": "2016-09-15T19:48:29", + "category": "story", + "children": 3, + "children_abs_rshares": "89614201477", + "created": "2016-09-14T19:15:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 951797, + "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"creative\",\"writers\",\"writing\"],\"image\":[\"http://www.followingthenerd.com/site/wp-content/uploads/shadowpeople.jpg\"],\"links\":[\"https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T19:15:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-28T19:15:09", + "net_rshares": "89025972926", + "net_votes": 3, + "parent_author": "", + "parent_permlink": "story", + "percent_steem_dollars": 10000, + "permlink": "the-dragon-s-blood-part-29", + "reward_weight": 10000, + "root_author": "profanarky", + "root_permlink": "the-dragon-s-blood-part-29", + "title": "The Dragon's Blood (Part 29)", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "401621156077855379", + "vote_rshares": "89025972926" + }, + { + "abs_rshares": "984642850369", + "active": "2016-08-17T15:01:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "stellabelle", + "author_rewards": 238520, + "beneficiaries": [], + "body": "http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\n\n# I have to hide my true self.\n\nIt just so happened that I was constantly losing my friends. It's like a curse was put on me.\nJudging by the reviews from former colleagues and friends, I was a \"nice and friendly person who was always willing to help.\"\n\n# However, constantly all these friends ceased to be friends with me, for no reason. They just stopped communicating, no quarrels, no disagreements and other things!\n\nI had a lot of friends ... But our paths diverged.\n\nIn my childhood I had friends, but my family moved to another city, and I lost my friends. In the new city, I made new friends. I had one close friend. Even his move to another part of the city has not prevented us from seeing each other every weekend. And one day, he was taken into the army. And one day, his aunt came to me, and said that he is no more, he was killed when he was on sentry duty ...\n\n![imaged6bd4.jpg](https://www.steemimg.com/images/2016/07/26/imaged6bd4.jpg)\n\nPeople ignore me constantly on the Internet, too. On any website, forum. I try to communicate, start a dialogue, and all people just ignore me. Suffice it to ask someone about something, write, and so on, and no response. \n\n# It's as if I did not exist.\n\nhttp://i.giphy.com/3o72FhMTVaOTycqObu.gif\n\nI am always open and friendly, and in return I receive arrogance against me or they completely ignore me.\nThis is what hurts the self-assessment.\n\n# I have no one to talk, no one to share the news with. Not one to ask for help. When I die, nobody will notice. \n\nhttp://i.giphy.com/l46CABOxa2Itf99bG.gif\n\n# I change people!\n\nI've got one property ... when a person begins to communicate with me, he is beginning to change. He begins to listen to the music that I like. He begins to lead a similar lifestyle. In general, people change for the better. From this, I feel somehow enhanced. And apparently, it has become another man moves away from me and goes his own way. As the chicks leave the nest as adults. Other explanation I can find.\n\n# Childhood\n\nAt school I was a \"whipping boy\".\n\nhttp://i.giphy.com/Hem0mSEEPwQBa.gif\n\nEndured constant insults, humiliation. Every day for 3 years. The school was torture for me. I did not like school, sometimes skipped lessons to avoid it all. Of course, it has affected my level of education, I studied badly.\n\nAnd also, my eyesight began to deteriorate, I did not see what was written on the blackboard. And when I admitted that I had bad eyesight, meant even more exposure to ridicule. In addition, due to health problems, but rather due to an error from talentless doctors, I had to take some strange drug. What it was I do not know, but I remember that I had to take these pills with milk. At first, nothing happened ... but then I wanted to eat every 5 minutes, I could not stop! I suffered from hunger! And accordingly, I gained weight. Needless to say, that became more humiliation for me.\n\nPerhaps it is karma. After all, before all this, I, too, along with all, mocked other classmates. Well now I know, I deserve it all.\n\nIt all ended when I graduated from high school. I changed just for the summer. Completely changed! I was starving and had grown very thin. Enrolling in college, I stopped being afraid of the people because they did not know who I was at school. Former classmates simply did not recognize me in the street. I became a different person. I started a new life with a clean slate.\n\nhttp://i.giphy.com/763KvbtkqH3e8.gif\n\n# I'm for searching myself.\n\n### Punk.\n\nOne day on one local forum, I found an ad that a punk rock band was looking for a drummer. I do not know why, or what came over me, or how my subconscious played a role, but I wrote to them that I am ready to join them.\n\nIn those years, I liked punk rock. But I did not know how to play the drums! However, I had an ear for music and rhythm. Since childhood, I remember I loved playing improvised drums.\n\nhttp://i.giphy.com/3oEjI2cJuP3Y0dcfV6.gif\n\nAt the first rehearsal something happened. But, of course, I played really disgusting. I liked that I was with other people. I liked all the socializing after the rehearsals, but the rehearsals themselves I sometimes disliked.\n\nI was getting the feeling that my lack of skill playing the drums was getting the band down. The band broke up after 2 years, played three songs in one of the amateur concerts. I still blame myself for failing them. But communicating with them gave me pleasure.\n\n### Church of Satan.\n\nhttp://i.giphy.com/xThuWk5MZglNP8IsJG.gif\n\nI've never been religious.\nOne day it so happened that I was carried by some away articles and the book \"Church Satan\" that I found on the Internet. So I soon became well versed in the sect (I still keep granted by them, the so-called \"certificate\" as a memory). And then, I began to take an active and more active role in this church.\n\nI was the first who made an unofficial website, for which I was honored with awards and praise. I was the first who wrote a skeptical analysis of the Bible. And my critiques were very popular! Actually, thanks to them that I became known.\n\nAnd then I began to get to know ones of the elders. With me, I remember, I spoke to some journalists, a student who wrote some work, theologians, members of the new sect, and anyone with an interest. Probably because I was often on the network. After all, I have never been a part from the college and at home, and did nothing.\n\nBut then, I and several other members became disillusioned, and I left the sect.\n\nAnd then there were various attempts to find myself, I was changing lifestyles and views on life.\n\nWhy did I write this? All of the above has given me some experience in dealing with people and the ability to understand who I am and why, to find my place in life.\n\nPagan Old Believers tried invite me to come, and then I almost became a skinhead.\n\n> \"What people call life - just a game, but this game is sometimes instructive, and all that it teaches - only lessons from which to borrow wisdom, therefore, ought to live.\" (C)\n\n# Loneliness gave me the alternative to communion, namely: I read a lot of books, of which learned many new things from psychology, philosophy, spirituality and languages.\n\nhttp://i.giphy.com/AbuQeC846WKOs.gif\n\nHave you noticed that being in society and when in the company of others, you do not crave training or self-development? I see this for myself when my brother visits me. I do not read books, I do not ponder any situation and theory, I just talk and spend time with my brother. Loneliness provides an incentive for development. With the help of loneliness, you really will begin to appreciate the friendship and fellowship.\n\n# This can be compared with food delicacies. If you eat delicacies every day, they will cease to be so desirable and unusual, and they will become commonplace.\n\nhttp://i.giphy.com/WmEvcZna75UfS.gif\n\n# Now.\n\nMy current way of life is very similar to Tantric Buddhism, although it is not defined by that as it has no name, and does not need to be defined as such.\n\n# Sometimes it's painful and unpleasant to look at people.\n\nhttp://i.giphy.com/JsL3hYFdvMMSs.gif\n\nI understand why they are themselves, why they have such a way of life, but I do not want to be like them and be with them in the same company. I do not like it.\n\nI never offend for a reason, I never attack, and I do no harm.\nEmpathy - what distinguishes us from animals.\n\nI value every life, no matter what that life is.\nI do not accept what most people love.\nI do everything consciously, extracting meaning and benefits from the experience.\nFor example, I have a meal. I do not eat garbage food, because it does not give to my body anything useful, since it does not contain nutrients. \n\n# I do not drink alcohol, smoke cigarettes or do drugs.\u00a0\n\n\nAnd that is why people around me laugh or look at me quizzically. They say that I'm lying, sick, abnormal, or \"mother does not allow\". They say, \"in life need one needs to try everything!\" \n\nBut none of them for some reason, do not try, for example, quantum physics, a healthy lifestyle, or Buddhism.\n\n**In life, need to not only try, but also try not to try!**\n\n# I do not live with the people, but I live among the people.\n\nIf only you knew how hard all of this is ... I have to hide it all, and to adapt to the \"generally accepted norms\", in order not to be mocked. \n\nI feel somehow alien among the people. I have to wear a mask to resemble the people and not be detected.\n\nhttp://i.giphy.com/QG0th9DNdRrGw.gif\n\n> \"No pyramids of authority.\nMaster has an older brother, nothing more. And he just does the hard work that the others do not overpower. If it is otherwise, then trouble is inevitable.\nAuthority - this is a mistake \"(c).\n\nIf you have read Orwell's novel \"1984\" or watched the same film, you know, all this is happening in my country.\nPeople poisoned by propaganda, people are trying to survive, they are afraid of the authorities and freedom.\nAll this is laid bare and exacerbated in human animal instincts. The principle of flocks. Not like us - the enemy is dangerous, you need to avoid, or to die.\n\nThe population cannot tolerate dissent, any manifestation of freedom, something different from their lifestyle and worldview. In connection with this, people with a different lifestyle, look, worldview and way, becomes an object of ridicule, an outcast, a threat, an enemy.\n\nIt's not comfortable for me to live here. But leave (until the border has not yet closed) there is no possibility. It is very expensive, and I make incredibly low wages, and wages continue to fall, while food and services continue to rise in price.\n\nHow I would like live in a free country! Be yourself, do not hide anything, not trying to make excuses for my views and lifestyles.\n\nMaybe relocation to another country could change something in me, but I notice, positive emotions in me less and less and I feel less joy and desire to live.\n\nhttp://i.giphy.com/eR2OWX51qesIo.gif\n\n-Secret Writer\n\nImages and gifs: All images are by Stellabelle, all gifs are from giphy.com.", + "cashout_time": "2016-09-15T19:48:36", + "category": "secret-writer", + "children": 43, + "children_abs_rshares": "18007718646255", + "created": "2016-08-15T16:44:42", + "curator_payout_value": { + "amount": "31898", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 615287, + "json_metadata": "{\"tags\":[\"secret-writer\",\"isolation\",\"self-development\",\"life\"],\"image\":[\"http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\"]}", + "last_payout": "2016-08-16T19:48:36", + "last_update": "2016-08-15T17:39:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-08-30T21:38:48", + "net_rshares": "981828724825", + "net_votes": 293, + "parent_author": "", + "parent_permlink": "secret-writer", + "percent_steem_dollars": 10000, + "permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "reward_weight": 10000, + "root_author": "stellabelle", + "root_permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", + "title": "SECRET WRITER: I Feel Like An Alien Among People In My Country", + "total_payout_value": { + "amount": "356586", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "981882842624" + }, + { + "abs_rshares": 0, + "active": "2016-08-15T20:10:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "teutonic", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://www.mindmotivations.com/images/optical-illusion1.jpg \nIs the ladder going up or down?\nhttp://www.mindmotivations.com/images/optical-illusion2.jpg\nAre the dots in between the squares white, black or grey?\nhttp://www.mindmotivations.com/images/optical-illusion3.jpg \nparallel or crooked?\nhttp://www.mindmotivations.com/images/optical-illusion4.jpg\nHow many legs?\nhttp://www.mindmotivations.com/images/optical-illusion5.jpg\nFocus on the dot in the middle and then move your head backwards and forwards.\nhttp://www.mindmotivations.com/images/optical-illusion7.jpg\nIs the picture moving?\nhttp://www.mindmotivations.com/images/optical-illusion8.jpg\nIs there anything in between the different squares?\nhttp://www.mindmotivations.com/images/optical-illusion9.jpg\nface of a lady or a word?\nhttp://www.mindmotivations.com/images/optical-illusion6.jpg \nFocus on the 4 dots in the middle of the picture for 30 seconds. \nhttp://www.mindmotivations.com/images/optical-illusion10.jpg \neven possible?", + "cashout_time": "2016-09-15T19:48:45", + "category": "awesome", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-15T19:35:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617429, + "json_metadata": "{\"tags\":[\"awesome\",\"\"],\"image\":[\"http://www.mindmotivations.com/images/optical-illusion1.jpg\"]}", + "last_payout": "2016-08-16T19:48:45", + "last_update": "2016-08-15T19:35:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "awesome", + "percent_steem_dollars": 10000, + "permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "reward_weight": 10000, + "root_author": "teutonic", + "root_permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", + "title": "10 Amazing Optical Illusion Pictures To Mess With Your Brain", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 158773924, + "active": "2016-09-14T20:20:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "safar01", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

show in the pictures are not real, but I edit them using Photoshop just

\n

 to train the imagination only.

\n

I made this picture just to entertain readers of all, 

\n

please advise the reader all my abilities to process images

\n", + "cashout_time": "2016-09-15T19:48:57", + "category": "editing", + "children": 0, + "children_abs_rshares": 158773924, + "created": "2016-09-14T19:48:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 952070, + "json_metadata": "{\"tags\":[\"editing\",\"with\",\"photoshop\",\"imagination\",\"steemitphotochallenge\"],\"image\":[\"https://scontent.fcgk1-1.fna.fbcdn.net/v/t1.0-9/44685_544257398931890_1432197168_n.jpg?oh=737dff7bef73ecfcaff983c130b55ee1&oe=587FF678\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T20:20:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-28T19:48:57", + "net_rshares": 158773924, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "editing", + "percent_steem_dollars": 10000, + "permlink": "lol-robot-tranformers-against-fishermen", + "reward_weight": 10000, + "root_author": "safar01", + "root_permlink": "lol-robot-tranformers-against-fishermen", + "title": "LOL ... Robot Tranformers against fishermen (steemitphotochallenge)", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "732186422373807", + "vote_rshares": 158773924 + }, + { + "abs_rshares": 53638386, + "active": "2016-08-15T19:15:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "pipertomcat", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg \nhttps://s19.postimg.org/jiv4eri0j/Blockchain_technology1.png\nWhy not Steem Dollars then? I think ultimately Western Union and the like may actually choose or adopt a name that includes something like \"Dollar\". Lol\nhttps://s19.postimg.org/4y9g66xo3/Bitcoinripplebanner1.png\n\nI have said to different friends over the last year or so on occasion, that I fear Western Union is about to die by Bitcoin's hand. I compare Netflix, Youtube, Google Play, Itunes,and so forth killing retail establishments like Blockbuster video. Technology and the convenience it brings, easily dominates any industry, ask Kodak. \n\n I have friends who still have to purchase money orders to pay their rent. The Apartment complex refuses personal checks and apparently doesn't want employee's accepting cash. You can join their site online for a $50 per month fee and connect your checking account. What a ripoff! \nWow if they only knew of bitcoin and the coming technology.\nhttps://s19.postimg.org/743r0p14j/725_Ly9jb2lud_GVs_ZWdy_YXBo_Lm_Nvb_S9zd_G9y_YWdl_L3_Vwb_G9h.jpg\n\n\nhttps://s19.postimg.org/fc5olot0z/e873eec95dbe6437e8b73f6dc4b474e6.jpg\nhttps://s19.postimg.org/d2hkaxk37/a9ee5c9045261e324670df9b5e3fbf0c.png\n Western Union was in discussions with Ripple Labs early last year, regarding a blockchain pilot project. By using a cheap payment network, proponents claim that companies will be able to cut down the cost of remittances.\n The following quote from Barry Gilbert , the Digital Currency Insights Founder and CEO says it best:\n\u201cIf you look at Western Union and Moneygram, they have a fantastic opportunity to take advantage of bitcoin as a financial rail and incorporate it into their business.\u201d\n\nAfter reading the following article just now, I will have to say that I think someone like Western Union may be the key player in bringing Bitcoin to the masses! The following is an article from Bravenewcoin-http://bravenewcoin.com/news/western-union-wont-make-the-same-mistake-with-blockchain/\n\n#steemdollar\n#steem\n#westernunion\n#ripple", + "cashout_time": "2016-09-15T19:49:42", + "category": "bitcoin", + "children": 1, + "children_abs_rshares": "45063474229", + "created": "2016-08-15T19:14:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 617119, + "json_metadata": "{\"tags\":[\"bitcoin\",\"steemdollar\",\"steem\",\"westernunion\",\"ripple\"],\"image\":[\"https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg\"]}", + "last_payout": "2016-08-16T19:49:42", + "last_update": "2016-08-15T19:14:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-04T21:13:12", + "net_rshares": 53638386, + "net_votes": 9, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_steem_dollars": 10000, + "permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "reward_weight": 10000, + "root_author": "pipertomcat", + "root_permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", + "title": "Western Union investing in Blockchain technology...will it be Bitcoin ? or Ripple!?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 53638386 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.orig.json b/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.orig.json new file mode 100644 index 00000000..504c1526 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 155925481, + "active": "2016-09-15T19:47:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "szklaneczka", + "author_rewards": 0, + "beneficiaries": [], + "body": "**ICONOMI found management platform** is currently in ICO and you can still invest. \n\nThat is most anticipated platform of 2016 why You may ask me. I will give you some graph and explanation. Solutions like ICONOMI are very popular in old economy people want be rich and wanted get more profit so they tried give money to people who know more about trading. Found management platforms preforms much better than average investors. Big guys just want invest not day trading. In crypto ICOMI will be 1st such project - such needed project.\n\nNow true facts and everything that I show you, is now publicly available on web. Graphs taken from coinmarketcap.com are showing us, what is going on cryptocurrency markets right now:\n![](http://i.imgur.com/FLe0WeF.jpg) \n![](http://i.imgur.com/s6Aeke2.jpg) \n![](http://i.imgur.com/RX0JK1z.jpg) \n\nYou see on won eyes that: Bitcoin is loosing over time market share to other alt coins. There is many multiple reasons for that. Without ICONOMI getting on cryptocurrency board for new investors will be VERY hard. \nThat is:\n \n- choose right one coin. \n- skip scams \n- buy valuable coins \n- crypto markets are getting bigger and bigger all time, there is about over 700coins tradable now\n\n\nICONOMI will be platform that for **every investor looking for big profits**. \nICONOMI will give us 2 founds:\n\n- **The ICONOMI.INDEX FUND** - a \"Passive\" - Coin Traded Fund (CTF). This fund operates on special rules, variables that manage the fund through automation. This Found will be the fastest available to investors at launch in Q4 2016 - The ICONOMI.PERFORMANCE FUND - an \"\nActive\"\n- **Coin Managed Fund (CMF)**, Operated by and managed by best investors. This fund will be invitation only available. If you invest in ICO you will get you invitation for free. I bet is worth its price. Those found will be carefully managed by ICONOMI experts and will provide best profits available.\n\nGraphs shows that volume of alt coins is rising heavily and will move up. Without ICONOMI founds many investors will probably lose cash on market, while rypto currency market will rise as whole. **If buy some ICO shares you will get dividends forever as share holder.**\n Soon real professional traders will come to cryptocurrency and you as investor in order to get big profits will have to use service of ICONOMI. \n\nPersonally I have invested in ICO and believe that **ICONOMI is future of crypto trading**. Don't miss a chance and invest here:[ico.iconomi.net](ico.iconomi.net) \n\nIf you want invest in ICO: ![](http://i.imgur.com/iqDpTag.png) \n\nOfficial Links:\n \n- [ico.iconomi.net](ico.iconomi.net \"Main site\") \n- [https://www.facebook.com/iconomi.net/](https://www.facebook.com/iconomi.net/ \"Facebook\") \n- [https://twitter.com/iconominet](https://twitter.com/iconominet\"twitter.com\")\n- [https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/](https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/) \n- [https://telegram.me/iconomi](https://telegram.me/iconomi)\n- [https://medium.com/iconominet](https://medium.com/iconominet)\n- [https://iconominet.herokuapp.com](https://iconominet.herokuapp.com)", + "cashout_time": "2016-09-16T19:47:00", + "category": "cryptocurrency", + "children": 0, + "children_abs_rshares": 155925481, + "created": "2016-09-15T19:47:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961233, + "json_metadata": "{\"tags\":[\"cryptocurrency\",\"bitcoin\",\"profit\",\"altcoin\"],\"image\":[\"http://i.imgur.com/FLe0WeF.jpg\",\"http://i.imgur.com/s6Aeke2.jpg\",\"http://i.imgur.com/RX0JK1z.jpg\",\"http://i.imgur.com/iqDpTag.png\"],\"links\":[\"ico.iconomi.net\",\"https://www.facebook.com/iconomi.net/\",\"https://twitter.com/iconominet\\\"twitter.com\\\"\",\"https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/\",\"https://telegram.me/iconomi\",\"https://medium.com/iconominet\",\"https://iconominet.herokuapp.com\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:47:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:47:00", + "net_rshares": 155925481, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "cryptocurrency", + "percent_steem_dollars": 10000, + "permlink": "iconomi-why-we-need-found-management-explained-on-graphs", + "reward_weight": 10000, + "root_author": "szklaneczka", + "root_permlink": "iconomi-why-we-need-found-management-explained-on-graphs", + "title": "ICONOMI - why we need found management explained on graphs.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "719051331038101", + "vote_rshares": 155925481 + }, + { + "abs_rshares": 151513711, + "active": "2016-09-15T19:46:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "newsfeed", + "author_rewards": 0, + "beneficiaries": [], + "body": "The Texas Rangers are 33-10 (.767) in one-run games this season. This would stand as a modern record for winning percentage in one-run games, besting the 2012 Orioles, who were 29-9 (.763).\n\n

http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815

\n\nBut if we dig deep into the archives of baseball history, we learn that this is actually the best record since the 1890 Brooklyn Bridegrooms, who were 14-4 (.778) in one-run games en route to an overall 86-43 (.667) record and the National League pennant.\n\n**Source / Read More...** sportingnews.com \n\n
\n\n
\n\n**NEWS FEED** \n*Get the latest headlines from around the world right on your Steemit Feed! With @newsfeed you always stay in the know about all sorts of topics ranging from Politics & Finance to Sports*\n\n**Currently In Beta**\n*Full news feed from hand picked creditable sources from all sides of the political and social realm. Although not fully operational, posts will be random while testing BUT do have real headlines!*", + "cashout_time": "2016-09-16T19:46:30", + "category": "newsfeed", + "children": 0, + "children_abs_rshares": 151513711, + "created": "2016-09-15T19:46:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961225, + "json_metadata": "{\"tags\":[\"newsfeed\",\"news\",\"sports\",\"rangers\",\"baseball\"],\"users\":[\"newsfeed\"],\"image\":[\"http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815\",\"https://ipfs.pics/ipfs/QmUo1EuVPSs3prLRdJH95Lg97vyvzSfhH6srZH5bqRh7p6\"],\"links\":[\"http://www.sportingnews.com/mlb/news/texas-rangers-record-in-one-run-games-brooklyn-bridegrooms/irlcvzvv8fui1vgogevkmomch\\n\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:46:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:46:30", + "net_rshares": 151513711, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "newsfeed", + "percent_steem_dollars": 0, + "permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", + "reward_weight": 9354, + "root_author": "newsfeed", + "root_permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", + "title": "Rangers' record in one-run games nearing truly historic level", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "698707196688679", + "vote_rshares": 151513711 + }, + { + "abs_rshares": 3377256926, + "active": "2016-09-15T19:46:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anton333", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

Model of Skeleton hands,without scissors and glue.

\n1


\n2


\n\n


\n

I need a piece of paper.

\n3


\n4


\n5


\n6


\n7


\n1


\n

Part 1 Part 2 Part 3 Part4 Part5 Part6 Part7 Part8 Part9 Part10

\n", + "cashout_time": "2016-09-16T19:46:30", + "category": "art", + "children": 0, + "children_abs_rshares": 3377256926, + "created": "2016-09-15T19:46:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961226, + "json_metadata": "{\"tags\":[\"art\",\"photography\",\"origami\"],\"image\":[\"https://s18.postimg.org/fi4tfvrgp/image.jpg\",\"https://s9.postimg.org/kn7ogredb/image.jpg\",\"https://s10.postimg.org/nnna3pxp5/image.jpg\",\"https://s12.postimg.org/dltyd50wd/image.jpg\",\"https://s12.postimg.org/qwsf7bs99/image.jpg\",\"https://s3.postimg.org/7p1m66f4j/image.jpg\",\"https://s22.postimg.org/4388u7yoh/image.jpg\",\"https://s14.postimg.org/qo99yko5t/image.jpg\"],\"links\":[\"https://postimg.org/image/byivq2oqt/\",\"https://postimage.org/index.php?lang=russian\",\"https://postimg.org/image/ivepluv0b/\",\"https://postimg.org/image/efv1n0qmt/\",\"https://postimg.org/image/u9lgfmvnt/\",\"https://postimg.org/image/gzhee9knd/\",\"https://postimg.org/image/gwtumvm6n/\",\"https://postimg.org/image/55ifcrhhp/\",\"https://postimg.org/image/4cbh56p1p/\",\"https://steemit.com/art/@anton333/origami-start-with-the-simplest\",\"https://steemit.com/art/@anton333/origami-part-two-do-a-swan\",\"https://steemit.com/art/@anton333/origami-part-3-the-model-of-a-mouse\",\"https://steemit.com/art/@anton333/origami-part-4-the-model-of-a-rose-petals\",\"https://steemit.com/art/@anton333/origami-part-5-the-model-of-master-yoda\",\"https://steemit.com/art/@anton333/origami-part-6-the-model-of-eagle\",\"https://steemit.com/art/@anton333/origami-part-7-the-model-of-dagger\",\"https://steemit.com/art/@anton333/origami-part-8-the-model-of-spider\",\"https://steemit.com/art/@anton333/origami-part-9-the-model-of-tooth\",\"https://steemit.com/art/@anton333/origami-part-10-the-model-of-flower\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:46:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:46:30", + "net_rshares": 3377256926, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "art", + "percent_steem_dollars": 10000, + "permlink": "origami-part-11-the-model-of-skeleton-hands", + "reward_weight": 10000, + "root_author": "anton333", + "root_permlink": "origami-part-11-the-model-of-skeleton-hands", + "title": "Origami Part 11, the model of Skeleton hands.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "15561709573411957", + "vote_rshares": 3377256926 + }, + { + "abs_rshares": "4649989991534", + "active": "2016-09-15T19:44:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vitaly-lvov", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

Mountly recap of blockchain crowdsales

\n


\n

CLOSED CROWDSALES

\n

BlockPay 

\n

Aimed at deeper integration with POS terminals and payments between counterparties.
\nA preliminary Initial Coin Offering finished on 4 September, where BlockPay sold 5% of the 100-million stock of BLOCKPAY tokens released on the BitShares blockchain. Future owners will receive dividends from transaction fees paid to BlockPay.
\nThe pre-ICO was done in 3 stages: 

\n
    \n
  • 1st \u2014 exchange of OPENPOS for BLOCKPAY at the rate of 1.2 to 1 (fund of 600,000 tokens) 
  • \n
  • 2nd \u2014 sale of BLOCKPAY at the price of 0.000288 BTC (fund of 1.4 mln tokens) 
  • \n
  • 3rd \u2014 sale of BLOCKPAY at the price of 0.000360 BTC (fund of 3 mln tokens) 
  • \n
\n

The distribution of tokens is as follows: 

\n
    \n
  • 1.5% \u2014 marketing for pre-ICO
  • \n
  • 5% \u2014 pre-ICO
  • \n
  • 0.9% \u2014 early adopters
  • \n
  • 1.8% \u2014 advisors and partners
  • \n
  • 3.6% \u2014 marketing
  • \n
  • 7.2% \u2014 developers reward
  • \n
  • 80% \u2014 upcoming ICO in 2017
  • \n
\n

The platform development plan:

\n
    \n
  • The release of BlockPay \"S\" app for Android and payment terminals Odoo
  • \n
  • BlockPay integration with leading payment terminals
  • \n
  • API Development
  • \n
  • The addition of a large number of fiat gateway exchanges and Escrow Services
  • \n
  • The addition of anonymous transactions function
  • \n
  • The development and release of the ECHO messenger for Android and iOS
  • \n
  • Development of the first version of the BlockPay \"S\" app for iOS
  • \n
\n

The project looks interesting, given the fact that they claim an integration with the ERP and CRM systemOdoo used by 60 thousand companies. The only disturbing thing is the absence of an open source software, and this spoils the whole picture. Transaction payments fee and, consequently, planned cash flow for investors are not sufficiently explained either. It should be kept in mind that this project is centralised, i.e. it belongs to the class of projects that demand trust in the founders and, correspondingly, require a thorough audit of operating activity.
\nCrowdsale summary:

\n
    \n
  • Dates: 20 August 2016 \u2014 4 September 2016
  • \n
  • Raised: ~ $657,000 (1096 BTC)
  • \n
  • Tokens sold: 3.92 mln
  • \n
  • Total number of tokens: 100 mln\u0414\u0430\u0442\u044b \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f: 20 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u2014 4 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f 2016 \u0433\u043e\u0434\u0430
  • \n
\n

For detailed information on the crowdsale, see: https://blockpay.ch/newsroom/investor-relations/blockpay-reserves/
\nFor useful links and more information, go to https://cyber.fund/system/BlockPay 

\n

AntShares
\n

\n

The project is interesting primarily due to the fact that it will be implemented using the Hyperledger platform. There are no other features that distinguish it from a number of similar blockchain projects, except that it is aimed specifically at the Chinese audience. 

\n

Crowdsale summary: 

\n
    \n
  • Dates: 8 August 2016 \u2014 7 September 2016
  • \n
  • Raised: ~ $ 3.4 mln (5582 ~ BTC)
  • \n
  • Tokens sold: 20 mln
  • \n
  • Total number of tokens: 100 mln
  • \n
\n

For detailed information on the crowdsale, see: www.antshares.org/ico
\nFor useful links and more information, go to https://cyber.fund/system/AntShares

\n

Elastic project
\n

\n

The crowdsale is finished. The full description of the history of the ICO and the risks associated with investing in this asset may be found in the previous issue of Blockchain Boom. 

\n

Crowdsale summary:

\n
    \n
  • Dates: 29 February 2016 \u2014 19 August 2016
  • \n
  • Raised: ~ $416,000 (~ 710 BTC), the exact amount is not available, because in course of funding escrow addresses changed several times and the movement of funds between them was extremely nontransparent.
  • \n
  • Tokens sold: 20 mln
  • \n
  • Total number of tokens: 5 mln XEL
  • \n
\n

The crowdsale took place here: http://www.elastic.pro/donations
\nFor useful links and more information, go to https://cyber.fund/system/Elastic 

\n

CURRENT CROWDSALES

\n

Iconomi
\n

\n

The aim of the project is the creation of management platform for crypto investment funds and the launch of two associated investment funds.
\n

\n

The subject of the crowdsale is ICN tokens representing 100% of Iconomy Open Fund Management Platform (OFM). The total number of ICN tokens to be sold is 85 million. 100 million of ICN will be released on the Ethereum platform within 10 days after the end of the crowdsale. Tokens will be distributed among investors proportionally to their contributions taking into account bonuses for early participation (+ 15% in the first week, + 10% in the second week, + 5% in the third week).
\nPrecise information on the distribution of ICN tokens is missing on the official website. According to the information in the related Bitcointalk thread, the tokens will be distributed as follows: 

\n
    \n
  • 85% - to be sold in the crowdsale
  • \n
  • 8% - founders reward
  • \n
  • 3% - reserve for the future team
  • \n
  • 2% - advisers reward
  • \n
  • 2% - marketing and bounty
  • \n
\n

Money raised from the crowdsale will be used as follows: 

\n
    \n
  • 62% - development
  • \n
  • 25% - operations
  • \n
  • 9% - legal expenses
  • \n
  • 4% - marketing
  • \n
\n

ICN owners will receive weekly dividends in ETH from all sources of Iconomi income, such as: 

\n
    \n
  • management fees
  • \n
  • rewards for fund management efficiency
  • \n
  • fees received from the funds registered with OFM
  • \n
\n

ICN holders will be able to vote on a number of matters related to the development of OFM, including choosing of the \"platform operator\" (currently, Cashila OOD s.r.o.) 

\n

The development plan: 

\n
    \n
  • 4Q 2016 \u2013 the launch of the open investment fund ICONOMI.INDEX, which will follow the likely development of the cryptocurrency market and will be freely traded on the market;
  • \n
  • 4Q 2016 \u2013 the launch of the closed investment fund ICONOMI.PERFORMANCE, which will focus on riskier investments in projects at an early stage of development
  • \n
  • 2017 \u2013 the launch of the platform for management of investment funds (OFM), the transfer of ICONOMI.INDEX and ICONOMI.PERFORMANCE funds to the platform.
  • \n
\n

Blind spots: 

\n
    \n
  • The currency is not specified for evaluation of the raised funds for further distribution of ICN tokens among investors.
  • \n
  • Will a part of the funds received during the crowdsale be allocated to ICONOMI.INDEX and ICONOMI.PERFORMANCE and, if so, will ICN holders receive relevant shares in these funds?
  • \n
  • There is no information as to the amount and frequency of fees charged from funds managed on OFM.
  • \n
  • The functions of the \"platform operator\" is described but very vaguely, as well as the process of further decision making involving ICN holders.
  • \n
\n

Red flags:

\n
    \n
  • There is no description of technical solutions for the project's tasks
  • \n
  • No program code is published
  • \n
\n

Crowdsale summary:

\n
    \n
  • Dates: 25 August 2016 \u2014 29 October 2016
  • \n
  • Total number of tokens: 100 mln ICN
  • \n
  • Tokens distribution: 85% will be sold in the crowdsale, 15% team reward and marketing
  • \n
  • Minimum crowdsale goal: 2 000 BTC (~ $1.5 mln)
  • \n
  • Raised so far: ~ $3.6 million (2,200 BTC + 71,000 ETH + 1.2 mln LSK + 63,000 USD + 940,000 EUR) from more than 1300 participants.
  • \n
\n

The crowdsale takes place here: https://ico.iconomi.net/
\nFor useful links and more information, go to https://cyber.fund/system/Iconomi 

\n


\nDeClouds
\n

\n

The main focus of the project is providing the opportunity for trading in precious metals.
\nThe network will be implemented as follows: 

\n
    \n
  • Proof-of-Stake consensus algorithm
  • \n
  • Decentralised Exchange
  • \n
  • Cloud-based blockchain
  • \n
\n

Apart from a patently weak 8-page paper and a number of publications on the blog, no detailed information about the project was found via official channels. Program code is also not disclosed. Nevertheless, developers promise to launch the network on 31 October 2016.
\nDuring the crowdsale, bonuses from 20% to 5% will be distributed, depending on the time of investment.
\n

\n

Crowdsale summary: 

\n
    \n
  • Dates: 6 August 2016 \u2014 October 6, 2016
  • \n
  • Total number of tokens: 100 mln
  • \n
  • Tokens distribution: 80% will be sold to the crowdsale participants, 10% is a team reward and 10% are marketing expenses
  • \n
  • Raised so far: ~ $179,000 (294 BTC)\u0414\u0430\u0442\u044b \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f: 6 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u2014 6 \u043e\u043a\u0442\u044f\u0431\u0440\u044f 2016 \u0433\u043e\u0434\u0430
  • \n
\n

The crowdsale takes place here: https://ico.declouds.com/
\nFor useful links and more information, go to https://cyber.fund/system/DeClouds

\n


\nHong
\n

\n

Investments are made by transferring ETH to the Etherium contract.
\n

\n

The Fund is formed for the period of 4 years, 3 of which are put for investing while the last year is for the exit. 80% of the money received as a result of fund liquidation will be distributed among Hongcoin holders, 20% among managers. Annual 2% fee to be charged for operational expenses of the managing organisation. The fee allocation will be defined by voting. The fund can be \"frozen\" at any time by the decision of 50% of shareholders.

\n

As a purpose for investment, 3 directions are selected: disruptive innovation, creativity and educational projects. Hong founders believe that the blockchain technology will most significantly impact these fields of human activity.
\nThe fund operates according to the following scheme: 

\n
    \n
  • Fund managers review projects and make a decision on whitelisting them;
  • \n
  • Hongcoin holders vote for the allocation of funds for investments within 15 days (the quorum of 20% is required for the approval of an investment);
  • \n
  • Fund managers prepare due-diligence and investment strategy for the project and provide any possible assistance in the development and promotion of the project;
  • \n
  • When the fund's term comes to an end, the managers carry out the exit process.
  • \n
\n

A company will be established for the management of raised funds, but it has not been determined yet in which jurisdiction. There is no information on the management parties available on the website nor through any the official channels.
\nThe crowdsale takes place in several stages, with 50 mln Hongcoin sold at each stage: 

\n
    \n
  • 50 mln \u0126 \u2013 1.00 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.05 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.10 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.15 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.20 ETH \u0437\u0430 100 \u0126
  • \n
\n

As long as the crowdsale is going on, investors will have the opportunity to change their mind and withdraw invested funds. After the crowdsale is finished, the exit opportunity will be closed.
\nCrowdsale summary: 

\n
    \n
  • Dates: 29 August 2016 \u2014 29 October 2016 (may be extended until 28 November)
  • \n
  • Total number of tokens: to be determined by the end of the crowdsale
  • \n
  • Tokens distribution: 100% will be sold in the crowdsale
  • \n
  • Crowdsale goal: at least 1,575,000 ETH (~ $19 mln), the maximum is 2.7 mln ETH (~ $33 mln)
  • \n
  • Raised so far: ~ $6,600 (11 BTC).
  • \n
\n

The crowdsale takes place here: http://www.hongcoin.org/
\nFor useful links and more information, go to https://cyber.fund/system/Hong
\n

\n

Judging by the current investments dynamics, the project will not succeed.

\n


\nPLANNED CROWDSALES 

\n


\nSynereo
\n

\n

One year after a crowdsale that raised $126,000 aimed at the development and launch of a decentralised social network, the project team announced the second funding round and the launch of the network'salpha version. Two funding campaigns start at the same time in September: the sale of Synereo Ltd shares on BnkToTheFuture and of AMP tokens.
\nFollowing the first crowdfunding, the distribution of AMP was as follows:

\n
    \n
  • 2.72% (45.8 mln) \u2014 sold during the first crowdsale
  • \n
  • 11.9% (200 mln) \u2014 user rewards
  • \n
  • 8.92% (150 mln) \u2014 reserve for the content creators
  • \n
  • 11.9% (200 mln) \u2014 founders' reward
  • \n
  • 13.68% (230 mln) \u2014 bounty program
  • \n
  • 50.61% (850.4 mln) \u2014 next funding
  • \n
\n

Synereo revised their plans and now aim to develop a protocol similar to the SAFE Network, which will include the following components:

\n
    \n
  • Proof-of-Stake consensus algorithm
  • \n
  • Distributed network of nodes connected on the principle of \"shards\", where blockchain is divided into many small segments
  • \n
  • Distributed repository
  • \n
  • Smart contracts
  • \n
  • Social layer (a social network motivated according to the Attention Economy Model)
  • \n
  • The possibility of building distributed apps
  • \n
\n

The grant program for dApps developers Project 11 with a budget of 1.11 million AMP is already in operation.
\n

\n

The popular website CoinMarketCap misleadingly states current Synereo capitalisation at about $10-13 million, which is not true because it is only the cost of 62,580,000 AMP (3.72%) in circulation on the market. According to cyber \u2022 Fund's calculations, with the total of 1.68 billion tokens, Synereo's real capitalisation reaches $300 million.

\n

It has not been disclosed yet how many tokens will be put up for sale, but we can assume that the minimum amount claimed by Synereo is about $130-140 million in case the entire reserve is sold, which is 850.4 mln AMP. This is a very ambitious plan, taking into account current distribution and the market price of tokens. Besides, it should be kept in mind that after the launch of the network, additional 5% of AMP will be emitted every year. In my opinion, they should sell the whole reserve without fixed prices and with token distribution proportional to investments. It will provide normal distribution and a fair market capitalisation.

\n

Despite the presence of a strong team with an excellent technological vision, we consider the evaluation of $300 mln inadequate.

\n

Crowdsale summary:

\n
    \n
  • Dates: September 2016
  • \n
  • Total number of tokens: 1.68 billion AMP
  • \n
  • Number of tokens for sale: unknown, probably 850.4 mln
  • \n
  • Crowdsale goal: presumably ~ $130-140 million
  • \n
\n

The crowdsale takes place here: https://www.synereo.com/sale
\nFor useful links and more information, go to: https://cyber.fund/system/Synereo

\n


\n

Golem Project
\n

\n

The aim of the project is to adopt any customer personal computer for the work that is done today by servers, computing farms or supercomputers. 

\n

As the result, Golem Net will become a truly decentralised network where users' summarised machine power will provide any amount of hardware resources required. At the moment, there is no document explaining how exactly it would work. We hope that such paper will appear before the crowdsale. 

\n

The Golem App will connect to the network from a local device to share computing power and deliver tasks for calculations.
\nThe micropayment system based on Ethereum will provide the incentivising component distributing rewards and processing transactions. Transaction fee will be set at 5%. 

\n

Currently, the network can work only with public data because the apps require direct access to data.
\nDevelopers announced the crowdsale on their blog

\n

Golem Network Tokens (GNT) are the shares that give the right to receive part of the revenue generated by Golem Network. 

\n

Crowdsale start date: September 2016. 

\n

Token distribution: 

\n
    \n
  • Total number of tokens: unknown
  • \n
  • 82% \u2014 crowdsale
  • \n
  • 6% \u2014 founders reward
  • \n
  • 12% \u2014 developer company reward
  • \n
  • Estimated amount of funds: a minimum of 100,000 ETH, a maximum of 650,000 ETH
  • \n
\n

For detailed information on the project, see http://golemproject.net/slides/index.html#/14
\nFor useful links and more information, go to https://cyber.fund/system/Golem
\n
\n

\n

SingularDTV
\n

\n

The ultimate goal of the project is the creation a thriving industry of decentralised entertainment.

\n

What they promise: 

\n

\u25cf SINGULAR \u2013 a TV series.
\nThe S-DTV flagship product is an epic sci-fi adventure TV series about decentralisation, scaling and emergence of intelligent systems that lead the humanity to a technological singularity. 

\n

\u25cf Documentary division
\nThis division will create full-length and short-length documentary series and movies about the blockchain, decentralisation and Ethereum. 

\n

\u25cf S-DTV rights management platform
\nAn app that will use smart contracts for registration and management of digital rights, as well as of income and royalties on intellectual property, namely, movies and television. Deals in the film and TV industry are the most difficult to arrange as they often involve hundreds of individual participants. 

\n

\u25cf On-demand video content portal (TVOD)
\nTVOD changes the way people watch entertainment programmes. S-DTV is born to create the TVOD portal for original content distribution, as well as for selected and acquired content. In addition to developing an interface on IPFS, S-DTV will use third-party portals such as GooglePlay, AppleTV iTunes and Vimeo to build a larger audience in a short time.

\n

Minimum investment goal \u2013 $500,000.

\n

Desirable funding \u2013 $7,5 mln.

\n

According to S-DTV documentation, Swiss company MME has developed a new, innovative organisational structure specifically for S-DTV: the Centralised Organised Distributed Company (CODE). It is the Swiss company, therefore, that will manage the finances and reinvest the income, while tokens will be used for paying out the dividends.

\n

Token distribution: 

\n
    \n
  • 400 mln Singular DTV GMBH
  • \n
  • 100 mln core investors
  • \n
  • 500 mln crowdsale
  • \n
\n

Funds distribution in case if $7,5 mln is raised: 

\n
    \n
  • \"Singular\" season 1 (3 episodes of the mini-series): $3.25 mln
  • \n
  • Documentary division: $0.50 mln
  • \n
  • Development of the rights management platform: $2 mln
  • \n
  • TVOD portal development: $1 mln
  • \n
  • Marketing: $0.50 mln
  • \n
  • Administrative, legal expenses and unforeseen circumstances: $0.25 mln
  • \n
\n

Crowdfunding is planned for September and will likely take place at Devcon2.

\n

The Ethereum and Consensys founder Joseph Lubin is included into the team as CTO.

\n

Unfortunately, in this project tokens only serve for distribution of dividends, and the project is centralised because 40% of tokens belong to Singular DTV GMBH. Another disadvantage is the fact that of the four declared founders/directors, only Zach Lebeau will work full time on the project. He is likely to be engaged in the studio rather than in the platform development; there are also risks associated with SEC.

\n

The main question is the development of the TVOD platform and the rights management platform: there is no understanding as to what kind of team will be working on it, and no technical description at the moment. If both platforms can be really implemented, the project is promising for investment.=

\n

For detailed information about the project, see: https://singulardtv.com/
\nFor useful links and more information, go to: https://cyber.fund/system/SingularDTV
\n

\n

Decent
\n

\n

It is designed for creative people, writers, bloggers, journalists and their fans and followers. The platform enables users to publish any posts, images, video or music content with no restrictions.

\n

Consensus algorithm \u2013 Proof-of-Stake.

\n

Decent has three functional roles: 

\n
    \n
  • Authors: content producers, writers, music producers etc.
  • \n
  • Consumers: readers, listeners and viewers
  • \n
  • Publishers: miners
  • \n
\n

Token distribution \u2013 30% via mining and 70% is distributed during the crowdsale, some of them will go to pre-mine funds to be distributed in the following way: 

\n
    \n
  • 10% \u2014 DECENT Foundation
  • \n
  • 2% \u2014 the Investment fund
  • \n
  • 1,000,000 DCT \u2014 campaign bounty
  • \n
  • 3,000,000 DCT \u2014 pre-launch marketing programme
  • \n
\n

On the crowdsale page, next to the conditions, we see a message that the project is supported by Google, though it does not correspond to the project's primary activity. Moreover, the current yellow paper ignores many issues such as, for example, how miners would store the content. Decent enters the content distribution market where such projects as Steemit, Synereo and LBRY already operate. 

\n

The crowdsale takes place here: http://sale.decent.ch/
\nFor useful links and more information, go to: https://cyber.fund/system/Decent
\n

\n

FirstBlood
\n

\n

This platform will allow players to bet without intermediaries. The payoff distribution will be also managed via smart contracts.

\n

The eSports betting market holds more than $130 million per year with 30% annual growth rate.

\n

3 monetisation channels:

\n
    \n
  • Matchmaking
  • \n
  • Revenue from the tournament organisation
  • \n
  • Advertising
  • \n
\n

Token will allow: 

\n
    \n
  • Match playing
  • \n
  • Match refereeing and voting for the referee
  • \n
  • Placing tournaments
  • \n
  • Requesting an award from referrals
  • \n
\n

Tokens distribution: 

\n
    \n
  • Crowdsale, 4 weeks, in the first hour 170 tokens for 1 ETH
  • \n
  • 10% to the project founders; these funds will be blocked for 12 months
  • \n
  • 5% will be placed in the platform development fund for the promotion and tournament awards
  • \n
  • 2.5 mln - bounty fund, to be distributed during the crowdsale for advertising and debugging
  • \n
\n

Crowdsale start date: 26 September 2016.

\n

In my opinion, it is an interesting project. The only reservation is that the market is not very vast, albeit actively developing. Besides, the motivation for developers and other market players is not very well thought through. In this regard, central players, who can also use smart contracts and predictions market to confirm the events results, may have an advantage. However, this project may indeed become the market leader on the condition of good community building and active incentivising of referees and the jury. 

\n

For detailed information about the project, see: https://firstblood.io/
\nFor useful links and more information, go to: https://cyber.fund/system/FirstBlood
\n

\n


\nMassNetwork
\n

\n

The three main entities: 

\n
    \n
  • Advertisers
  • \n
  • Websites
  • \n
  • Internet users
  • \n
\n

The basic principle is to follow the industry's trend to monetise customer attention and create a convenient and fair trading platform for all parties involved, including Internet users. Mass allows users to receive instant rewards for web surfing through the built-in p2p infrastructure based on the blockchain. As a result, advertisers will pay users a fair price for their attention and data without intermediaries.
\n

\n

An increasing number of customers are using ad-blocking software. Mass offers a browser extension and a mobile app that can block ads as well as protect personal data. Yet, their primary goal is not blocking but rather improving users' experience with advertising and rewarding them with cryptocurrency to establish a consumer-advertiser relationship and, therefore, reduce the number of ad-block users. Mass will also have a cryptocurrency wallet and blockchain-based payment system.

\n

Crowdsale dates: 6 September \u2014 1 December 2016

\n

Token distribution: 

\n
    \n
  • 70% to the crowdsale participants
  • \n
  • 30% to Mass team members
  • \n
\n

Mass plans to build its own full-blown infrastructure for advertising industry with an internal token. A similar solution has been already introduced to the market \u2013 the Brave browser. It blocks default ads and replaces it with incentivising ad materials. The bitcoins received from advertisers are distributed among users, the platform and the endorsing website. In my opinion, if Mass used smart contracts or a proprietary blockchain enabling further token emission to incentivise users and websites, they could compete with bitcoin. However, Mass token works on the bitcoin blockchain, which on the one hand makes it very secure, but on the other, has no advantage over bitcoin per se. In favour of bitcoin are accessibility, recognition, and a more stable price. 

\n

Crowdsale takes place here: https://ico.mass.network/#/?aid=ep6oxa
\nFor useful links and more information, go to: https://cyber.fund/system/MassNetwork

\n

---

\n

All data and calculations are quoted as of 6 September 2016 with bitcoin price at $609. For closed crowdsales evaluation in USD is given using the average token price at the date of closure.

\n

---

\n

Big thanks to: 

\n\n

---

\n

Original was posted in Blockchain Boom

\n


\n", + "cashout_time": "2016-09-16T19:34:50", + "category": "cyberfund", + "children": 0, + "children_abs_rshares": "4649989991534", + "created": "2016-09-15T19:30:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961089, + "json_metadata": "{\"tags\":[\"cyberfund\",\"blockchain\",\"crowdsales\"],\"links\":[\"https://cyber.fund/system/BlockPay\",\"https://cyber.fund/system/BitShares\",\"https://www.odoo.com/\",\"https://blockpay.ch/newsroom/investor-relations/blockpay-reserves/\",\"https://cyber.fund/system/AntShares\",\"http://www.antshares.org/ico\",\"http://www.elastic.pro/\",\"http://www.elastic.pro/donations\",\"https://cyber.fund/system/Elastic\",\"https://cyber.fund/system/Iconomi\",\"https://bitcointalk.org/index.php?topic=1587736.0\",\"https://ico.iconomi.net/\",\"https://cyber.fund/system/DeClouds\",\"https://drive.google.com/open?id=0B8VJa9S_WxSSSHJhN0o0QkVPN1E\",\"https://medium.com/@decloudscom/latest\",\"https://ico.declouds.com/\",\"https://cyber.fund/system/Hong\",\"http://etherscan.io/address/0x9Fa8fA61A10Ff892E4EBCeB7f4e0FC684C2ce0a9\",\"http://www.hongcoin.org/\",\"https://cyber.fund/system/Synereo\",\"https://blog.synereo.com/2015/05/10/amp-distribution-complete-2/\",\"https://blog.synereo.com/2016/08/29/synereos-second-fundraising-campaign-coming/\",\"https://www.synereo.com/alpha/\",\"https://bnktothefuture.com/\",\"https://cyber.fund/system/MaidSafeCoin\",\"https://www.synereo.com/learn-more/\",\"https://github.com/synereo/synereo.github.io/raw/master/whitepapers/synereo.pdf\",\"https://www.synereo.com/developers/\",\"http://coinmarketcap.com/assets/synereo/\",\"http://omnichest.info/lookupsp.aspx?sp=39\",\"https://www.synereo.com/sale\",\"https://cyber.fund/system/Golem\",\"http://golemproject.net/doc/GolemNanopayments.pdf\",\"https://blog.golemproject.net/golem-network-token-gnt-sale-220c2a732f9#.fdn8hljmq\",\"http://golemproject.net/slides/index.html#/14\",\"https://cyber.fund/system/SingularDTV\",\"https://singulardtv.com/\",\"https://cyber.fund/system/Decent\",\"http://sale.decent.ch/\",\"https://cyber.fund/system/FirstBlood\",\"https://firstblood.io/\",\"https://ico.mass.network/#/\",\"https://ico.mass.network/#/?aid=ep6oxa\",\"https://cyber.fund/system/MassNetwork\",\"https://steemit.com/@creator\",\"https://steemit.com/@coinfox\",\"http://blockchainboom.coinfox.info/\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:44:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:30:36", + "net_rshares": "4649989991534", + "net_votes": 10, + "parent_author": "", + "parent_permlink": "cyberfund", + "percent_steem_dollars": 10000, + "permlink": "crowdsales-monitor-august-2016", + "reward_weight": 10000, + "root_author": "vitaly-lvov", + "root_permlink": "crowdsales-monitor-august-2016", + "title": "Crowdsales Monitor - August 2016", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "9916447926886758335", + "vote_rshares": "4649989991534" + }, + { + "abs_rshares": 64358062, + "active": "2016-09-15T19:44:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "agartha", + "author_rewards": 0, + "beneficiaries": [], + "body": "I think I just hacked Monero lol it's a joke but the security too thou \n\nLook at this! \n\n\nhttps://www.facebook.com/agartha.white.3/posts/179267779175393", + "cashout_time": "2016-09-16T19:44:00", + "category": "steemit", + "children": 0, + "children_abs_rshares": 64358062, + "created": "2016-09-15T19:44:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961211, + "json_metadata": "{\"tags\":[\"steemit\",\"hack\",\"monero\",\"bitcoin\",\"lol\"],\"links\":[\"https://www.facebook.com/agartha.white.3/posts/179267779175393\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:44:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:44:00", + "net_rshares": 64358062, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "steemit", + "percent_steem_dollars": 10000, + "permlink": "i-hack-monero-xmr", + "reward_weight": 10000, + "root_author": "agartha", + "root_permlink": "i-hack-monero-xmr", + "title": "I hack Monero (Xmr) ?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "296794399420393", + "vote_rshares": 64358062 + }, + { + "abs_rshares": 1202120459, + "active": "2016-09-15T19:43:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "varda", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

  In the morning, at 5 am when the moon completes his round, the alarm rings, my deepest sleep I wake up painfully. K\u00e9ops my cat starts singing tour and stops only when he filled his mess tin. Sweety then, the cat of my son jumps on the furniture in the kitchen and also claimed his bowl. Kashmir him not to come after me, until I make him hugs.

\n

\n

\n

\n

 A small cup of coffee and I'm up for the day. After my shower, I have to feed the fish pond and two hens, they are waiting for me impatiently for me to release them from their cages.

\n

\n


\n

\n


\n

 6:15, I start my bag on her arm, my water bottle and my biscuit for lunch. On the road I am alone, few vehicles I meet. Great to run your car on a deserted road. In the winter when it snowed, I am the first to make tracks in the whiteness of the snow grows like cotton wool, sometimes, crazy beyond me and skids, it is an adrenaline rush. In summer the sun rises gives the sky a color of red sweetness, yellow, orange. In autumn, the trees begin to change color, it is a season because I love the beauty of trees is unique. 

\n

\n


\n

Here I come down the street or is my workplace, hospital, regional hospital, the CHR. Vehicles coming after one another because we start at 7am. The staff is found, speak, tells their evening then everyone goes to the same place: the time clock, control object of our hours worked.

\n

\n


\n

 In the ladies locker room, it gets held: white jacket with blue and green patterns representing the logo of the institution, blue pants with various pockets which we do not serve! 

\n

\n


\n

We arrive in our service, mine is the neurological rehabilitation service: we give up (or so) of people who have a stroke, an accident with neurological trauma, people who have multiple sclerosis or Guillain barred and other chronic diseases whose name is almost unknown. 

\n

\n


\n

\n


\n

\n


\n

We start our day with a report on each patient last night, we have 20 in service. After beginning the nursing: we make the toilet of the patient who is totally dependent. We get up in the chair. For others, we must educate, continue the actions he has learned with the therapist in the individual care, the patient should regain maximum independence so they can go home and take care only . It's a job that can last from 3 months to 6 months beyond, we can not do anything for them. 

\n

\n


\n

Headline in this service is: you come to bed but you leave again walking. 

\n


\n

Sometimes, we fail either because the patient does not want a return to autonomy, or because the patient is too ill. We give the same chance to everyone, rich, poor, alcoholic, drug addict, young or old. 

\n


\n

The management of a patient goes from shaving the beard of a man to the presentation on the toilet, the room arrangement the carefully tended beds. 

\n


\n

Lunch arrived around 8:30 am, few patient is in the dining hall for breakfast, other unfinished eat in bed Logistical assistance serves meals that are different if the patient is diabetic, diet, dieters, old, or in solid supply resumption. You should know that when the patient has had a stroke, a stroke, swallowing is absent, which means that if the patient eats a sandwich, but he swallows the bread goes in the bronchial tubes and not in the stomach, giving a false swallowing, bronchi become infected and it's a disaster. So this patient who made false swallowing should eat while cream consistency and drink thickened liquid. Which is not very good but I admit it must go through these stages in order to re-eat a day normally. 

\n


\n

Physiotherapists arrive at 9am and leave a 17h, occupational therapists also. There is also a neuropsychologist, a speech therapist and all do work that allows the patient to regain maximum independence, which means that the patient all day is busy. Visitors can come between 14:30 and 19:30. 

\n


\n

After lunch, we continue our work, when all is well, we finish around 10:30 or 11am but sometimes it is noon we are still in the rooms. 

\n


\n

In terms of handling, the entry of the patient, it is usually in bed or in a wheelchair with a right hemiplegia or left, some have forgotten that they had half a disabled body, so it must withstand and no wear and show him how to do with one leg to go from wheelchair to bed and vice versa. Others are completely invalid, they know not move neither arms nor legs, and for those, or we wear them either we lift them with a forklift. 

\n


\n

During dinner, we feed the disabled and we encode our care in the computer.

\n


\n

 Around 13h, we are a few naps after going on the toilet. Sometimes we have a problem in the pants, oops! When everyone is changed to bed, we have a service change ratio and the time, the hour of the end of our service is lagging. At 14h is the start of the morning shift. For my part, I take a good shower and I take the way home or waiting for my cats and my dog makes me a big party. 

\n


\n

We must not believe that the nursing profession is simple, each service is different and you can not compare the care of each other. 

\n


\n

I hope I have not bothered you with this long text, I wish you a good day to you all.     

\n", + "cashout_time": "2016-09-16T19:43:54", + "category": "story", + "children": 0, + "children_abs_rshares": 1202120459, + "created": "2016-09-15T19:43:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961208, + "json_metadata": "{\"tags\":[\"story\",\"health\"],\"image\":[\"https://www.steemimg.com/images/2016/09/15/DSCN0477faad0.jpg\",\"https://www.steemimg.com/images/2016/09/15/keops0029612b.jpg\",\"https://www.steemimg.com/images/2016/09/15/Au-sommet81f7b.jpg\",\"https://www.steemimg.com/images/2016/09/15/16e3c4.jpg\",\"https://www.steemimg.com/images/2016/09/15/Photo0224b24a.jpg\",\"https://www.steemimg.com/images/2016/09/15/d85917d4a45b3d581b5f40d1d7a7504a3bb1e.jpg\",\"https://www.steemimg.com/images/2016/09/15/chr841bd.jpg\",\"https://www.steemimg.com/images/2016/09/15/DSCN1513-Copiee7a4d.jpg\",\"https://www.steemimg.com/images/2016/09/15/Capture2bb0b8.jpg\",\"https://www.steemimg.com/images/2016/09/15/370086-1f7d83.jpg\",\"https://www.steemimg.com/images/2016/09/15/Capturec0ccc.jpg\",\"https://www.steemimg.com/images/2016/09/15/souleve-malade-foldyadb08.jpg\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:43:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:43:54", + "net_rshares": 1202120459, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "story", + "percent_steem_dollars": 10000, + "permlink": "my-day-hospital", + "reward_weight": 10000, + "root_author": "varda", + "root_permlink": "my-day-hospital", + "title": "My day hospital", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "5542136534307198", + "vote_rshares": 1202120459 + }, + { + "abs_rshares": 54846770, + "active": "2016-09-15T19:43:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ejaredallen", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

\n

Nature

\n

I haven't stopped and taken a picture of the beauty around me in a long time. It's funny how we can get so caught up in work and the business of a crazy life and miss the simply beauty along the way. Sometime you've just got to stop and smell the roses; and while you're there, take a picture!

\n

\n

These aren't roses, I know: they're wild flowers. They don't get the nurture and care that roses do, and yet they are provided for and they bloom into beautiful blossoms in their own time. They have a harder life than others, and that's how we humans are as well. Some of us were well taken care of growing up and were treated like roses, while others were left in the field to grow up alone and without the love and care we should have had. But we are all beautiful in our own ways and if we survive long enough, we will blossom into something spectacular.

\n

\n

Colorado mountain rivers

\n

When the snow on the tops of the mountains melt, it feed the rushing rivers that carve their way down the mountainside. The climbing is excellent, the whether and the views are truly gorgeous, but something about the rivers rushing through the mountains draws you in. There is a memorization about the brave rivers unafraid of the mountains and simply rushing on by recklessly.

\n

\n

Mississippi at sunset

\n

Sometimes the world just slows down and magic happens. This was one of those times. On the night before my sister's wedding in Tupelo, Mississippi the sky exploded in color. What a calm reassurance before a monumental event: the approval stamp of God upon the sanction of their marriage.

\n

\n

Hundreds of years old Indian hieroglyphs in Arizona

\n

This was an incredible hike in the Arizona mountain ranges to discover a place where the Apache Indians, or perhaps some other tribe had lived hundreds of years ago!

\n

\n

Uganda, Africa at twilight, from a moving bus

\n

Africa is always an adventure, but in 2015 we took a safari on the northern rim and caught this shot on the way back to the lodge. I love how the beauty of the world is unique in its diversity from place to place, even across the Atlantic.

\n

\n

This is one of my favorite shots. I don't remember where I took it or when, but the colors, the bliss, the peacefulness of this field of flowers was stunning. I'm glad I was able to capture an image of its beauty to remember it by. And to think, all of this beauty was made by God in a second! His power to create a world is amazing and perfect in every way. We get to see His marvelous creation every day! 

\n

Follow me @ejaredallen for more pictures and great content!

\n", + "cashout_time": "2016-09-16T19:42:24", + "category": "photography", + "children": 0, + "children_abs_rshares": 54846770, + "created": "2016-09-15T19:42:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961197, + "json_metadata": "{\"tags\":[\"photography\",\"pictures\",\"art\",\"steemit\",\"travel\"],\"image\":[\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-986x1024-289x300.jpeg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-3-1024x768-300x225.jpeg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6440-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6031-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_5829-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/2015-07-13-06-37-59-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_7281-1024x1024-300x300.jpg\"],\"links\":[\"https://steemit.com/@ejaredallen\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:43:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:42:24", + "net_rshares": 54846770, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "photography", + "percent_steem_dollars": 10000, + "permlink": "wanna-see-something-cool", + "reward_weight": 10000, + "root_author": "ejaredallen", + "root_permlink": "wanna-see-something-cool", + "title": "Shot From Around The Block On An iPhone!", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "252932614230673", + "vote_rshares": 54846770 + }, + { + "abs_rshares": "5891496080", + "active": "2016-09-15T19:42:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "cwbrooch", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

This is part 2 of my Memoir.  Missed Part 1? Click here.
\nDon't know what's going on? Start from the beginning here.

\n

If you like what you're reading, follow me @cwbrooch for more craziness. if you love what you're reading recommend me to other peeps :) feedback is also very appreciated.

\n

\n

Russian Roulette - A Memoir of my Two Years in Moscow - Part 2 - Under the Table Tactics

\n

In this part of my memoir I am going to attempt to describe the dark side of Moscow. All stories depicted here either happened directly to people I knew, or were described to me as  a it's-russia-get-used-to-it anecdote.
\nYes, I will be talking about corruption and paying people under the table for things but bear in mind that even though it seems like a common practice definitely not all people do that and not all people experience the phenomenon.

\n

A ROUTINE POLICE CHECK 

\n

It is said that it is extremely wise to keep 2k-5k Rubles (about 28-68 Euro, 30-77 Dollars, 23-58 Pounds) in your registration papers at all times. They tend to disappear when you get your documents back from the officer... If one does not have such loose change, the guy tends to make one's life difficult. \"You were speeding\", \"You didn't stop at the STOP sign\", \"You're light is out\" etc. Driving is another interesting phenomenon in Moscow. You might think that since the metro is so packed, the streets will be empty. On the contrary, but I will not get into that right now as that makes a completely different post...  However, what I will tell you is  how one of my students passed her driving exam, which leads us to...

\n

PAYING TO PASS AN EXAM

\n

After her first failed attempt, my student looked at her instructor/examiner and asked: \"Could you please tell me what I did wrong, so I can work on it in the future?\" He stared back at her surprised and announced: \"Well, you didn't pay me extra, what do you expect?!\" At that point even I was shocked - \"So people openly tell you they want money?!\" \"Get used to it Kasia, It's Russia....\"
\nNeedless to say, she was forced to pay the second time around and surprise, surprise, she passed....
\n
\nI taught English in a company. I came one week, and saw that everyone was kind of in a rush and slightly agitated. I asked what the problem was and they said they were waiting for an audit. I remember wishing them good luck... One lady looked at me and smiled \"We paid the guys to look the other way, it will be fine!\" I didn't even bother to comment as I had aleady known there was no point...

\n

GETTING INTO A PRIVATE EVENT

\n

It was the three of us - my BF, his friend and I. We wanted to do some clubbing and the friend decided we should go to a very trendy bar in the heart of Moscow. He had a loyalty card there and was well known among the bouncers. We didn't really look the part, but a hefty fee paid for each of us (by the friend) was enough to let us in...

\n

That was a minor party. Let's talk about the big stuff, involving bigger money!
\nIf you know someone, who knows someone, who knows someone you might be able to (legally) attend the dress rehearsal of the famous Victory Parade in May (the 9th to be exact). It costs about 10k (137 Euro, 116 Pounds , 153 Dollars) Watch fragments of the video below to see the magnitude of what I am talking about. 

\n

The whole thing is long, play with it a little bit. The good stuff starts at about 40 minutes. Source

\n

https://www.youtube.com/watch?v=5EI3FYynz-Q

\n

To enter the actual parade however, you need to be a prominent member of the society (e.g. ex-military) or someone famous or filthy rich :)

\n

The event itself is quite impressive and for soldiers taking part in the march it is an honor among honors.  
\nWe had the privilege of living 15 minutes on foot from the Red Square so we saw all the preparations and marches right outside our windows (till 11pm at night...)

\n

\n

PS. I am aware that my portrayal of Moscow might seem bleak and depressing. Believe me, it was not. I;m simply trying to describe the juicy bits, the interesting stuff :) My next post will be more optimistic as I will be talking about sports, parks an recreations  :)

\n

 ____________________________________________________________________________

\n

Thank you for reading Part 2 of my memoir.

\n

Want to find out more about living in Moscow? Follow me @cwbrooch :)

\n

My other work on Streemit:

\n

1) Russian Roulette - Preamble 

\n

2) Russian Roulette - Part 1 - Surviving Underground

\n

3) Why shouldn't you use google translate for learning English and which dictionaries are far better

\n

4)  How to learn vocabulary effectively in any language!

\n

5) About me: introduction  
\n 

\n


\n", + "cashout_time": "2016-09-16T19:44:28", + "category": "story", + "children": 0, + "children_abs_rshares": "5891496080", + "created": "2016-09-15T19:41:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961189, + "json_metadata": "{\"tags\":[\"story\",\"writing\",\"travel\",\"life\",\"russia\"],\"users\":[\"cwbrooch\"],\"image\":[\"https://s14.postimg.org/bpiqdmgpt/Untitled.jpg\",\"https://img.youtube.com/vi/5EI3FYynz-Q/0.jpg\",\"https://lh3.googleusercontent.com/3OMfOqwX2pQ5BYeql8V1tg4J6VcMzG75pLD-nhsfHw0BYFLEQOQSeVl-sVdEkDwS6VfPco-FukpjwQONwimoOhzzT4GIPDt_VGbJfNDYaltTvEcyOFK5do7PZD1-tjDW0nxKYhUQdxG4yoxX6ZS590fMaveLKSI2Voz579yTME9U8D7UgN7R3ufBrAcq0KV8kA9VqMVxryabh2X_jBiMnP3Uwjj_hrWn3ARzHggZMRuo3G3ORSKDpoqcBA25bRDeWHe7nVT4X58NolQ4yY8HVjzyUr4zDneI8dy_eHnSf0F0FBZ8kn4NQQ3ueVR84tu-Ot64CZb9a1SetmKmupvAxBbuS8z3jBsvCECD8A5jz9qevTOkgHEbV0z2hVteH64gCLg3OI9mRVqw2GWAYwNSUlGGtwCxmwXq3p_j_igwncarIhIF2HX_bV0ACrucmewR6IiIdVfaKKAO9g2ycLbJRr_SBwE9TxBND9ar0R267Grzq5SHywG71h1nxZnXInW-HQ2l1cou8zqdiEUanqkeSbgIunZVNBcEnYYinmF-WZd5y0_Luc8rdDYy0GlKAtAJ4z0-woKDs6d_XKWhiWsYOAW3rWwCe3cJylK_6H7wNO2PlBKL=w1163-h775-no\"],\"links\":[\"https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-in-moscow-part-1-surviving-underground\",\"https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-of-living-in-moscow-preamble\",\"https://www.youtube.com/channel/UC4qBu3EvraPWezHbaC7npIQ\",\"https://www.youtube.com/watch?v=5EI3FYynz-Q\",\"https://steemit.com/@cwbrooch\",\"https://steemit.com/languages/@cwbrooch/why-shouldn-t-you-use-google-translate-for-learning-english-and-which-dictionaries-are-faaaar-better\",\"https://steemit.com/languages/@cwbrooch/how-to-learn-vocabulary-effectively-in-any-language\",\"https://steemit.com/introduceyourself/@cwbrooch/teacher-story-teller-cat-lover-about-me\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:42:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T19:41:09", + "net_rshares": "5891496080", + "net_votes": 2, + "parent_author": "", + "parent_permlink": "story", + "percent_steem_dollars": 10000, + "permlink": "russian-roulette-a-memoir-part-2-under-the-table-tactics", + "reward_weight": 10000, + "root_author": "cwbrooch", + "root_permlink": "russian-roulette-a-memoir-part-2-under-the-table-tactics", + "title": "Russian Roulette - a Memoir [Part 2] - Under-the-table Tactics", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "27129771364344680", + "vote_rshares": "5891496080" + }, + { + "abs_rshares": 0, + "active": "2016-09-15T19:42:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "philanthropest", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", + "cashout_time": "2016-09-16T07:40:21", + "category": "freedom", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-15T19:40:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 961180, + "json_metadata": "{\"tags\":[\"freedom\",\"anarchy\",\"steem\",\"life\",\"\"],\"image\":[\"https://img.youtube.com/vi/y02aBfNT8n4/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=y02aBfNT8n4\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:42:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "", + "parent_permlink": "freedom", + "percent_steem_dollars": 10000, + "permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", + "reward_weight": 10000, + "root_author": "philanthropest", + "root_permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", + "title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "25365523997", + "active": "2016-09-15T19:43:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ancientofdays", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n


\nImage Source & External Article - http://lifehopeandtruth.com/prophecy/revelation/mark-of-the-beast/

\n

Just recently here in Roswell NM (where I live, yes) I was telling a shop owner about Steem and Steemit, and he made the comment that he thought it sounded like \"...one more step towards the Mark of The Beast\"...

\n
\"...And he causeth all, both small and great, rich and poor, free and bond, to receive a mark in their right hand, or in their foreheads: And that no man might buy or sell, save he that had the mark, or the name of the beast, or the number of his name. Here is wisdom. Let him that hath understanding count the number of the beast: for it is the number of a man; and his number is Six hundred threescore and six...\"
\n - Revelation Chapter 13 (
Full Chapter)
\n

Yes Virginia... I hate to break it to you, but digital currency IS indeed \"one more step towards the mark of the beast\" - and we all know it. 

\n

Let's just get that out of the way now. But fear not, this is NOT a paranoid religious post warning people about the eternal dangers of joining Steemit, nor of using digital currency in general however. This is just a hopefully rational religious post (inspired by a secular article) meant to stem paranoid fear (amongst Christians mainly) of utilizing Steemit specifically, and digital currency in general. Which I will get back to in just a second...

\n

But first... If to you, \"stemming this fear\" makes me \"part of the Satanic conspiracy\" then I can't help that, and I won't engage with or reply to you if that is your view (which you are entitled to hold, and even to express as a comment below). 

\n

I'd rather use my time to inform non-Christian people who may have clicked in here (for laughs perhaps?) that Yes, I believe that the mark of the beast is coming, and you DO need to aware of the dangers of accepting it!

\n


\nImage Source & External Article: http://www.evangelicaloutreach.org/markbeast.htm

\n

 (Hence the external articles links being detailed here for further reading - which I have not closely vetted btw, they just had top matches for images)...

\n

Anyways...

\n

As I told my friend Don (who DID join Steemit @roswellrockman ) \"So is your debit card!\"

\n

Putting Don and I's end-of-conversation succinctly, there are many aspects of our everyday lives that have brought and are bringing us \"one step closer\" to the mark of the beast - but they are not in themselves the mark, they are not evil, and (imho) they are not to be feared, or shunned. 

\n

(Altho I will note respectfully that The American Amish community feels differently - see the link below these next images.)

\n

There are indeed many examples from our now-everyday lives that could easily be said to be bringing us \"one step closer\" ... such as the \"Bar Codes\" on every product we purchase

\n


\n... especially if the same types of \"scanners\" that read them, were then pointed to a laser tattoo or RFID chip in your hand, to receive payment for these goods at the register. 

\n


\nAll 3 Images above & External Article: http://www.whatdoesitmean.com/index1392.htm

\n

\"Radio Frequency ID chips\" (see Wikipedia article) are already being used (some will say \"being tested\") to help pet owners keep track of their pets. Wal-Mart and other retailers also use them to track expensive items, to help prevent shoplifting. And especially \"hi-tech\" firms demanding secrecy and security clearances even use them on employees! 

\n

Could Big Brother and The Rothchild's and The Federal Reserve Banks and The U.N. (collectively, \"The New World Order\") one day very soon use all of this to both track you physically, and to observe or control your money supply? 

\n

Absolutely!

\n

It's no stretch at all to imagine combining RFID technology with UPC Bar Codes - and then connecting it all to your bank account via the Internet (or the Blockchain!) - to fulfill the Bible prophecy about the mark of the beast happening in the near future, or in our lifetimes.

\n

Folks I am no stranger to this belief. I first penned the words myself way back in 1997 (in my original webpage and book \"Come Sail Away : UFO Phenomenon & The Bible\"- << Amazon link to 2105 version) in the section I titled \"Genesis 6 to 666\"

\n

\"To understand how the world\u2019s entire economy could be tied into a mark on one\u2019s flesh would be a completely unimaginable miracle - a near impossibility - inconceivable to most Christians throughout the ages. This has left some events of the book of Revelation a little hard to piece together into a believable probability, much less an immediate future.
\n
\n\"In order to accomplish such an incredible thing, you\u2019d have to have some way to access a person\u2019s bank account from anywhere in the known world; all financial institutions would have to have some way of talking to each other through some sort of, of, machinated \"net,\" or a \"web,\" or something; you\u2019d have to come up with some sort of mark, or magnetic strip, or some \"barred code\" that some futuristic \"scanner\" could read; surgical or laser-tattoo technology capable of implanting it, and a \"personal secret code\" so that no one could ever rob you in this \"cashless society.\" Any-time machinery, for financial transactions, would have to be everywhere. Everyone would have to be assigned a separate number at birth. These \"scanner devices\" would have to be in every grocery, hardware, department and convenience store, and every product would have to be marked with this computerized bar-code\u2026
\n
\n\"Yup, you\u2019d need all that\u2026
\n
\n\"Get that in place and you\u2019re ready to go...\" 

\n


\n(Original 1997 cover, now out of print - 2015 version available on Amazon here)

\n

So getting to my main point - finally...

\n

YES. All kinds of technological advances from the past 30 years and more could and probably WILL - imho - be used to make the Mark of the Beast possible... call me a paranoid religious nut if you like, I do firmly believe that such is coming.

\n

The Internet itself, for example, connects and brings the whole world online. But if you're using it to read this, now, you are perhaps already hooked, and have no room to talk about Steem or digital currencies being the pre-cursors to the mark of the beast. Because everything you're already using is also...

\n

The magnetic strips on the back of the debit and credit cards you've (most likely) been using for years and years. Online banking... Bar Code technology in grocery stores that you apparently don't have the religious conviction to oppose not abstain from ... retinal scanners, or fingerprint security features in your smartphone...

\n

See what I mean? 

\n

If you are not a practicing Amish person - or you use only \"true money\" (Gold and Silver) to barter and to trade for goods and services when you need them (or farm and grow your own food, to ensure that you don't) - then there are already DOZENS of aspects of your everyday life that you have accepted and routinely utilize that have already in fact brought YOU \"one step closer to the mark of the beast.\"

\n

YES - these \"new-fangled concepts\" like Steem Dollars, Bitcoin, and Digital Currencies are perhaps OBVIOUS steps moving us all FURTHER along that path to one-world government under antichrist...

\n

(EXCEPT IT MUST BE NOTED in this article for you newbies to the concept, that TO-DATE, popular digital currencies (Steem, Bitcoin, Etherium, etc, etc) are actually intended AND ARE CURRENTLY BEING USED to help users MOVE AWAY from immoral government spying networks, and away from evil centralized banking platforms, putting \"the power in the hands of the people\" - for awhile at least. 

\n

So technically, by joining Steemit and adopting Steem as currency, you are fighting the underpinings of the Satanic One-World government that is forming all around us. You are actually, literally, restraining The Beast from his march to power! For awhile anyways...

\n

So there.)  

\n

But yes, I would affirm that some form of digital currency in general could and possibly will be used by the evil-antichrist-oneworldgovernment-rothschilds-federalreserve-warmongeringtotalitarian New World Order yet to arise under the real antichrist when he appears.

\n

In fact, it was seeing this article today published by The Coin Telegraph 

\n


\n4 Reasons Why Your Nation Will Kill Cash For A Digital Currency

\n

that inspired me to drop everything and write this particular article. 

\n

The Coin Telegraph wonderfully details how national interests (Satanic, New World Order interests, for our purposes here) probably will in fact adopt a digital currency of their own in the coming years. I can totally see THEIR VERSION of a global digital currency exchange being the near-final step in implementing the true Mark of the Beast, when (but not until) The Antichrist is revealed.

\n

But Steem/Steemit just isn't it. Today's free market digital currencies - if anything - are the \"gum in the works - fly in the ointment - monkey wrench in the machine\" to the eventual true Mark of the Beast, now that I think about it. Today's digital currencies actually serve to free us from the system that is now in place, by providing de-centralized mediums of currency (barter, exchange, etc) that serve as powerful alternatives to current banking structures, and chains.

\n

Governmental agencies (NWO ones or not) are actually in a scramble currently to figure out HOW to regulate, tax, and ultimately control the existing currencies. But neither they - not the devil - are behind them. 

\n

So my position is to say that unless you're either willing to become Amish today and forego ALL of the technologies I've detailed here (and electricity) then you've really nothing to fear from becoming an early adopter of Steem/Steemit. 

\n

The Bible clearly instructs and solemnly warns all to not accept the Mark of the Beast, when it finally comes in the form of a mark on your hand or forehead that cannot buy or sell without receiving. Abstaining from \"the steps\" has proven impractical, unavoidable (again, except to the Amish), and ultimately not directly commanded in scripture.
\n 
\n===============
\nTwo things in closing:
\n#1) Here's one more lengthy scripture-packed article on Biochips & TMOTB I'll recommend if you're unlearned about the whole topic...
\n#2) You may have noticed in this article that I'm an author in Roswell who deals with the topics of Aliens, UFOs, and The Bible. I have to date organized 7 conferences on that topic, and (after a 7 year hiatus) am putting together a new one for Summer 2017... please follow @ancientofdays for updates and tons of videos yet to come from past speakers and theologians who have participated, and will be again this year. 

\n

I bring all of this up in THIS article, only to announce here that:

\n

My non-profit \"Roswell Mission\" will be accepting Steem for conference registrations (follow for details) and that
\nUP-FRONT VIP SEATING goes to those who pay VIA STEEMIT!

\n", + "cashout_time": "2016-09-16T19:18:59", + "category": "money", + "children": 2, + "children_abs_rshares": "25365523997", + "created": "2016-09-15T18:57:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 960785, + "json_metadata": "{\"tags\":[\"money\",\"religion\",\"steem\",\"beyondbitcoin\",\"christianity\"],\"users\":[\"roswellrockman\",\"ancientofdays\"],\"image\":[\"http://dc95wa4w5yhv.cloudfront.net/image-cache/the-mark-of-the-beast_640_426_80_c1.jpg\",\"https://scontent-lax3-1.xx.fbcdn.net/v/t1.0-0/s526x395/14358900_10154412654816605_8330352735442203600_n.jpg?oh=e2a53091d31ad716798686aec3f7bef0&oe=586CF056\",\"http://www.whatdoesitmean.com/wmb2.jpg\",\"http://www.whatdoesitmean.com/wmb3.jpg\",\"http://www.whatdoesitmean.com/wmb4.jpg\",\"http://www.alienstranger.com/seekye1//CSAcover.jpg\",\"https://cointelegraph.com/images/725_Ly9jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy8zYjkxMjBiMjg3YTRmZDJjZjE5MTcyZDk0ZDBhOGQzOC5qcGc=.jpg\"],\"links\":[\"http://lifehopeandtruth.com/prophecy/revelation/mark-of-the-beast/\",\"http://www.AlienStranger.com\",\"http://www.ancientsofdays.net\",\"https://www.biblegateway.com/passage/?search=Revelation+13&version=KJV\",\"https://cointelegraph.com/news/4-reasons-why-your-nation-will-kill-cash-for-a-digital-currency\",\"http://www.evangelicaloutreach.org/markbeast.htm\",\"http://www.whatdoesitmean.com/index1392.htm\",\"https://en.wikipedia.org/wiki/Radio-frequency_identification\",\"http://amzn.to/1Ueug63\",\"http://www.av1611.org/666/biochip.html\",\"https://steemit.com/steemitabuse/@ancientofdays/credibility-matters-on-steemit-therefore-i-wish-to-offer-some-proof-photos-of-my-non-profit-status-and-intent-here\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T19:41:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-29T18:57:12", + "net_rshares": "25365523997", + "net_votes": 6, + "parent_author": "", + "parent_permlink": "money", + "percent_steem_dollars": 10000, + "permlink": "are-steem-bitcoin-etc-obvious-pre-cursors-to-the-mark-of-the-beast", + "reward_weight": 10000, + "root_author": "ancientofdays", + "root_permlink": "are-steem-bitcoin-etc-obvious-pre-cursors-to-the-mark-of-the-beast", + "title": "Are Steem, Bitcoin, etc.. Obvious Pre-cursors to The Mark of the Beast?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "116240705764176930", + "vote_rshares": "25365523997" + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.orig.json b/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.orig.json new file mode 100644 index 00000000..663a272f --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T07:58:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "shortcut", + "author_rewards": 90, + "beneficiaries": [], + "body": "\n

This is how the harbour of Palma de Mallorca looks like if you drop some Acid.

\n\n\"Palma_rama241fb8.jpg\"\n

(just kidding)

\n

Actually I played around with some presets in Adobe Lightroom.

\n

The one I used here is called Alien Hangover and can be downloaded here for free as part of a set called focus-beauty-builder.

\n

Below is the original image shot with the panorama function of my iPhone 6s. As you can see it's been a cloudy day.

\n\"Palma_original99287.jpg\"\n

\n

What kind of image processing software do you use?

\n

What are your thoughts about presets?

\n
\n

If you want to see more experiments with panorama-images, then you might want to check out this post by @shaka

\n
and \"\" me!
\n\n", + "cashout_time": "2016-09-24T21:49:00", + "category": "photography", + "children": 4, + "children_abs_rshares": 50025990, + "created": "2016-08-24T21:29:12", + "curator_payout_value": { + "amount": "15", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736241, + "json_metadata": "{\"tags\":[\"photography\",\"travelling\",\"lightroom\",\"inspiration\",\"art\"],\"users\":[\"shaka\"],\"image\":[\"https://www.steemimg.com/images/2016/08/24/Palma_rama241fb8.jpg\",\"https://www.steemimg.com/images/2016/08/24/Palma_original99287.jpg\",\"http://i.imgur.com/YSt1Mis.gif\"],\"links\":[\"http://profiphotos.com/blog/en/2008/11/new-lightroom-2-presets-focus-beauty-builder/\",\"https://steemit.com/photography/@shaka/a-different-way-to-stitch-a-panorama-view-original-photos\",\"https://steemit.com/@shortcut\"]}", + "last_payout": "2016-08-25T21:49:00", + "last_update": "2016-08-24T21:29:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-12T08:16:12", + "net_rshares": 0, + "net_votes": 8, + "parent_author": "", + "parent_permlink": "photography", + "percent_steem_dollars": 10000, + "permlink": "palma-panorama-on-acid", + "reward_weight": 10000, + "root_author": "shortcut", + "root_permlink": "palma-panorama-on-acid", + "title": "Palma Panorama on Acid", + "total_payout_value": { + "amount": "124", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "14608061929", + "active": "2016-08-24T21:28:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "poeticsnake", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

  Ella's hidden pain!  

\n


\n

The morning sun is shining brightly, kissing my warmed skin, radiating through the glass of the window in my living room. It\u2019s the spot I stand at every morning, anxious to greet the new day and the little girl that walks by every morning at the same time. I always smile and wave at her, holding my hot coffee in my free hand. It\u2019s the perfect start of my day, even in the winter, when the sun is not that strong, but this young girl is, in a very special way, the real sunshine that brightens each beginning of my day. I look forward to and yearn for this brief moment we share, as it warms me in the deepest, most spiritual way I've ever felt.   

\n


\n

Perhaps it's because this little girl reminds me of myself, when I was young and still so very innocent. I reminisce of my childhood as she approaches me, wistful in the memories that flood my senses. As she passes my house, she looks intently at me, flashing me the most warming, innocent smile that only a child can give, and ever so so slowly, she lifts her little hand to give me a friendly wave, knowing I will be here and It warms my demonic heart. At least, it warms it until the moment she passes and starts to look at the ground again. I have followed her a few times. She keeps her eyes on the ground until she gets to where she needs to be, whether it's school, the mall or even her own house. I do not wish to stalk, nor am I a freak. This little girl has just captured my interest and there is a deep mystery I feel, deep within her that gives us this strange connection, a deep sense that I NEED to do this, help her in some way? I don't know. 

\n


\n

All I do know is that it tears at me from within and is a mystery that I need to unravel. This girl has something that has stirred a long lost emotion, deep inside my ice-cold heart. Maybe its because I am spending to much time here, living within the human realm. I do not belong here, living among them in this land, nor do I even care about humans, in general, at all. But this girl... mesmerizes me with the strangest feelings. I just feel an overwhelming need to know her.   

\n


\n

Slowly I lift my hand and take a sip from my black coffee and from the corners of my eyes, I can see her coming my way. I am already feeling my lips curl into a soft smile. I get ready to see her smile back at me, as she always does, but she walks faster then normal now, keeping her eyes on to the ground. She did not smile at me, nor did she lifted her head. It made me feel cold, as if something was wrong, with this little angelic human child. Quickly I place my coffee on the side table and make my way outside, I know her scent, and its easy for me to pick up her trace. Her scent is like a fresh basket of pink flowers, but this time there is a little trace of warm blood mixed in her scent. It alerts my highly tuned senses and makes me walk even faster. Within a minute I see her at the corner and I speed up a little more. 

\n


\n

At this moment I wish that I knew the child's name, so that I could call her. Her little red jacked makes me feel like I am a bull chasing her down, but in a good way. The girls face is hidden in the big hoodie that is on her jacket, and she is still looking down at the ground, while she takes step after step with her little feet. Softly, I tap her on her left shoulder, I can feel her jump at the surprising sensation of my touch. The child stops walking and slowly turns towards me. I can see fear in her troubled, glassy, big brown eyes as they stare at me, deeply and intently, into my sparkling green eyes that plead to her 'I'm here to help. Trust me!'    

\n


\n

My heart tells me to kneel down so that I do not look so big, hoping it might take some of her fear away. I force myself to smile as sweet as I can, because the last thing I want is to scare this child I've been longing to get closer to, away from me.  

\n


\n

 \"I am sorry that I scared you.\" I speak to her in my soft, angelic voice, a ploy I use sometimes, to seem more friendly than I really am. I lift my hand for her to take, but she doesn't move, instead, her hands remain unflinching, nestled deep within her large, comfortable pockets. With my keen, inhuman ears, I can hear her little heart beating rhythmically in her chest. The scent of her fresh, untainted blood soon follows, so intoxicating, so inviting, tickling my nostrils, making me crave just a tiny powerful drop to savor, yet there is no sign of blood on this child at all. The feeling came over me so suddenly and oddly, I begin to wonder if she might have a few wounds hidden under her pretty clothing. Weirdly enough, too, is the fact that the scent of this little humans blood is not making me hungry, for the first time in my long demonic life, but instead, the scent of her blood gives me a deep, uncaring feeling of dread that genuinely worries me. I need to find out more, and fast!  

\n


\n

 \"May I ask your name?\" I ask her softly, while I placing both of my hands onto my knee's, not forcing them on her any longer, possibly scaring her away. \"You always smile so beautiful at me in the morning, but today I missed that.\" I continue some small talk, hoping she responds but when the little girl bites on the inside of her cheeks, her big brown eyes looking more than sad, there is no light in them at all and it even breaks my callous heart to see it.   

\n


\n

 

\n


\n

Disclaimer: I am the writer of this story, I have published it under my author name Bibi Rillmann.

\n

If you want to read the whole story you can also buy the book on Amazon with this link: https://www.amazon.com/dp/B011ANCU58

\n", + "cashout_time": "2016-09-25T14:48:54", + "category": "story", + "children": 0, + "children_abs_rshares": "14608061929", + "created": "2016-08-24T21:28:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736231, + "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"writing\"],\"image\":[\"https://s6.postimg.org/ma66gmakx/418_Gx_Rsw5_SL.jpg\"],\"links\":[\"https://www.amazon.com/dp/B011ANCU58\"]}", + "last_payout": "2016-08-26T14:48:54", + "last_update": "2016-08-24T21:28:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T23:31:03", + "net_rshares": "14608061929", + "net_votes": 9, + "parent_author": "", + "parent_permlink": "story", + "percent_steem_dollars": 10000, + "permlink": "ella-s-hidden-pain-original-story-part-1", + "reward_weight": 10000, + "root_author": "poeticsnake", + "root_permlink": "ella-s-hidden-pain-original-story-part-1", + "title": "Ella's hidden pain! ( Original story )) Part 1", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "14608061929" + }, + { + "abs_rshares": 0, + "active": "2016-08-24T22:03:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "dmilash", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n

Pirate Cave

\n

There are a lot of  stories and legends. Locals believe that before this place was chosen by pirates. They hid treasure in the cave, then transported through a tunnel to the city.

\n

\n

Lovers Cave

\n

Many legends about the Lovers Cave. According one of them - lovers together must to jump off a high ledge, then nothing is no able to separate them. Now jumps banned.

\n

\n

\n

Old fortress town

\n

\n

\n

Now it is Russian territory )))

\n

\n

\n", + "cashout_time": "2016-09-24T22:04:12", + "category": "photography", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-24T21:26:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736204, + "json_metadata": "{\"tags\":[\"photography\"],\"image\":[\"http://i.share.pho.to/5bd63a86_o.jpeg\",\"http://i.share.pho.to/badc9c25_o.jpeg\",\"http://i.share.pho.to/66d78edf_o.jpeg\",\"http://i.share.pho.to/bc535078_o.jpeg\",\"http://i.share.pho.to/1bd80fa4_o.jpeg\",\"http://i.share.pho.to/43b23d20_o.jpeg\",\"http://i.share.pho.to/a951f3d0_o.jpeg\"]}", + "last_payout": "2016-08-25T22:04:12", + "last_update": "2016-08-24T21:27:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 13, + "parent_author": "", + "parent_permlink": "photography", + "percent_steem_dollars": 10000, + "permlink": "original-photo-from-turkey-pirate-cave-and-lovers-cave", + "reward_weight": 4114, + "root_author": "dmilash", + "root_permlink": "original-photo-from-turkey-pirate-cave-and-lovers-cave", + "title": "Original photo from Turkey: Pirate cave and Lovers Cave etc.", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-25T00:31:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "moonman", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://i.imgsafe.org/e103059e0b.jpeg\nCosta Rica is much more than a lush, green tourist paradise; it\u2019s also a green energy pioneer. The small Central American nation has generated 100 percent of its electricity from renewable sources for the past 113 days, and the run isn\u2019t over yet. The country, which draws clean energy from a variety of renewable sources, still has its sights on a full year without fossil fuels. With a 113-day stretch of 100-percent renewable energy under its belt and several months left in the year, Costa Rica is edging closer to its target. Costa Rica could be on track to match the record set with its renewable energy production last year, which accounted for 99 percent of the country\u2019s electricity. That included 285 days powered completely by renewable sources, according to the Costa Rican Electricity Institute. Costa Rica is able to take advantage of a multitude of renewable energy sources because of its unique climate and terrain. Most of the nation\u2019s renewable energy comes from hydropower, due to its large river system and heavy tropical rainfalls. Solar, wind, biomass, and geothermal energy also play key roles.\n\nThe tropical nation aims to be free from fossil fuels in just five years. With hefty investments in geothermal energy projects and a forecast for more heavy rains in the coming years, that goal could be accomplished even sooner than originally planned.", + "cashout_time": "2016-09-25T00:27:45", + "category": "energy", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-24T21:26:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736208, + "json_metadata": "{\"tags\":[\"energy\",\"news\",\"truth\",\"costarica\",\"america\"],\"image\":[\"http://i.imgsafe.org/e103059e0b.jpeg\"]}", + "last_payout": "2016-08-26T00:27:45", + "last_update": "2016-08-24T21:27:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -2456106752359, + "net_votes": 0, + "parent_author": "", + "parent_permlink": "energy", + "percent_steem_dollars": 10000, + "permlink": "costa-rica-celebrates-113-days-of-100-percent-free-energy", + "reward_weight": 10000, + "root_author": "moonman", + "root_permlink": "costa-rica-celebrates-113-days-of-100-percent-free-energy", + "title": "Costa Rica celebrates 113 days of 100 percent renewable energy", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 933355159, + "active": "2016-08-25T15:06:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "lilli", + "author_rewards": 250, + "beneficiaries": [], + "body": "\n

Hi there fellow Steemers, my name is Lilli and here\u2019s a little bit about myself and why I\u2019m here.

\n

I am a London based artist and theatre designer-to-be. My aim is to bring a whole lot of culture and a little bit of me to Steemit. 

\n

\n

  Introduced to Steemit by a friend, I was rather skeptical at first. I generally don\u2019t trust the internet and all that is or isn\u2019t going on inside this impenetrable machine. Nevertheless I have now chosen to do these first steps into unknown land and overcome my e-phobia. My reason to do so is simply that this is the future, there\u2019s no way around it and you might as well live it!  In fact I think it is an amazing opportunity for artists, travellers and intellectuals of all sorts to present and exchange their work and thoughts and opinion. It\u2019s a space to openly communicate with people all over the globe, freely express oneself and start discussions with total strangers. Overall it\u2019s a real step forward.

\n

\n

What you can expect from me on Steemit are posts about my work as an artist, studies of theatre design, observations within my city, on travels and of the human mind and really anything that catches my interest.   Some of my hobbies and interests include travelling, exploring my city (London), ...

\n

\n

...cooking (though my boyfriend does most of that), photography, dressing up, mountaineering, rock climbing and other adrenalin enducing sports.

\n

\n

\n

Route of a crazy backpacker journey, I will most definitely write about. With 30 hour train journeys, friends left behind, a flooded festival and much more!
\n
\nIf you're curious for some travel adventures and cultural posts, FOLLOW ME!
\nI promise it'll be worth it ;)

\n", + "cashout_time": "2016-09-24T21:44:33", + "category": "introduceyourself", + "children": 4, + "children_abs_rshares": 933355159, + "created": "2016-08-24T21:14:27", + "curator_payout_value": { + "amount": "90", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736068, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"art\",\"photography\",\"steemit\",\"travel\"],\"image\":[\"https://i.imgsafe.org/e0fded406a.png\",\"https://i.imgsafe.org/e10eaa131a.png\",\"https://i.imgsafe.org/e103ab1660.png\",\"https://i.imgsafe.org/e1096709b8.png\",\"https://i.imgsafe.org/e100e9033f.png\"]}", + "last_payout": "2016-08-25T21:44:33", + "last_update": "2016-08-24T21:26:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-08T22:48:15", + "net_rshares": 933355159, + "net_votes": 12, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_steem_dollars": 10000, + "permlink": "london-based-artist-bringing-culture-to-steemit", + "reward_weight": 10000, + "root_author": "lilli", + "root_permlink": "london-based-artist-bringing-culture-to-steemit", + "title": "London-based artist bringing culture to Steemit", + "total_payout_value": { + "amount": "348", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 933355159 + }, + { + "abs_rshares": 0, + "active": "2016-08-24T21:25:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "sayanthan", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://dimg.zoftcdn.com/s1/photos/news/thumbs/world/country/usa/h/hilery_clindon001/img/625.117.560.350.160.300.053.800.210.160.90.jpg\nDonors to the Clinton Foundation had special access to Hillary Clinton,when she was Secretary of State, fresh documents brought to light by two conservative groups on Monday showed, in a setback to the Democratic candidate's presidential campaign.\n\nThe Republican candidate Donald Trump has sought an investigation by a special prosecutor into the links between the foundation and the State Department under Ms. Hillary Clinton.\n\nThe Former President Bill Clinton said in a statement on Monday the foundation would stop accepting foreign donations, if his wife were to become the President. The foundation had made the same announcement last week. Ms. Hillary Clinton had pledged to dissociate from the functioning of the foundation, when she took over as the Secretary of State.\n\nBut, however, the staff of the foundation sought special treatment for donors from the State Department, according to the documents.\n\nAmong the new revelations is how the foundation staff intervened on be half of the Crown Prince of Bahrain, a donor.\n\nThe Crown Prince could not get a meeting with Ms. Hillary Clinton through State Department Channels, but did get one after Foundation Executive Douglas Band wrote to Huma Abedin, aclose aide of hers. \u201cGood friend of ours,\u201d Mr. Band wrote to Ms. Abedin,requesting a meeting for the Crown Prince.\n\nDonald Trump said, \u201cNo issue better illustrates how corrupt my opponent is than her pay for play scandals as the Secretary of State,\u201d Mr. Trump said,demanding an investigation.\n\nIn a separate development, a federal judge on Monday asked the State Department to expedite the process of reviewing and releasing a set of nearly 15,000 emails that were not handed over to the Department as\u2018work-related\u2019 earlier. The FBI had uncovered these emails during its investigation of a private server Ms. Hillary Clinton had maintained.\n\nThe Clinton Foundation accepts money from foreign donors, including foreign governments, which Mr. Donald Trump alleges is a threat to the U.S.National Security.\n\nNews source Tamil focus.com", + "cashout_time": "2016-09-24T21:25:27", + "category": "politics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-24T21:25:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736196, + "json_metadata": "{\"tags\":[\"politics\",\"news\"],\"image\":[\"http://dimg.zoftcdn.com/s1/photos/news/thumbs/world/country/usa/h/hilery_clindon001/img/625.117.560.350.160.300.053.800.210.160.90.jpg\"]}", + "last_payout": "2016-08-25T21:25:27", + "last_update": "2016-08-24T21:25:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "politics", + "percent_steem_dollars": 10000, + "permlink": "new-allegations-hits-out-hillary-clinton-s-election-campaigns", + "reward_weight": 10000, + "root_author": "sayanthan", + "root_permlink": "new-allegations-hits-out-hillary-clinton-s-election-campaigns", + "title": "New Allegations Hits-out Hillary Clinton's Election Campaigns", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "108915090155", + "active": "2016-08-28T17:57:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "maceytomlin", + "author_rewards": 72, + "beneficiaries": [], + "body": "

https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/14055152_10154376523262180_7573779098355793143_n.jpg?oh=d2a68c63bfb4e5d16714403c49fb2fcf&oe=58417095

\n\nHello Steemit community! My name is Macey, and I have recently joined Steemit so I can become more involved with the Anarchist Community. I have written a couple articles, but in all the excitement, I forgot to give a proper introduction.\n\n

https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/12376121_10153719290912180_997199044763883123_n.jpg?oh=4e3622e8aee631343faa6de4a21daaf4&oe=5855FB15

\n

About Me

\n\nWhen I was just shy of twenty, I realized the truth of the nature of our government after watching the popular documentary, *Zeitgeist.* Shortly after, I started micro-dosing daily with psilocybin mushrooms. This form of therapy lasted three months. I consider this a vital part of my evolution as an anarchist, and have devoted my life to helping people understand alternative medicine and the positive effects they can have on the body, mind and spirit. I truly believe our minds are eternal libraries, and psychedelics can be the key to accessing that knowledge. \n\nI hope you'll join me here! My writings will be focused on alternative therapy, among other topics.", + "cashout_time": "2016-09-24T23:01:18", + "category": "introduceyourself", + "children": 9, + "children_abs_rshares": "134531468918", + "created": "2016-08-24T21:24:48", + "curator_payout_value": { + "amount": "27", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736189, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"anarchy\",\"psychedelics\",\"alternative\",\"medicine\"],\"image\":[\"https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/14055152_10154376523262180_7573779098355793143_n.jpg?oh=d2a68c63bfb4e5d16714403c49fb2fcf&oe=58417095\",\"https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/12376121_10153719290912180_997199044763883123_n.jpg?oh=4e3622e8aee631343faa6de4a21daaf4&oe=5855FB15\"]}", + "last_payout": "2016-08-25T23:01:18", + "last_update": "2016-08-24T21:24:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-09T03:50:33", + "net_rshares": "108915090155", + "net_votes": 40, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_steem_dollars": 10000, + "permlink": "macey-tomlin-advocating-for-psychedelic-therapy", + "reward_weight": 10000, + "root_author": "maceytomlin", + "root_permlink": "macey-tomlin-advocating-for-psychedelic-therapy", + "title": "Macey Tomlin: Advocating for Psychedelic Therapy", + "total_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "108915090155" + }, + { + "abs_rshares": 61964463, + "active": "2016-08-26T23:56:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "terryrall", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://media.salon.com/2015/09/reagan_trump.jpg\n\nhttp://www.chicagotribune.com/news/opinion/editorials/ct-donald-trump-ronald-reagan-president-edit-0501-20160429-story.html\n\nThere is NO comparison between Ronald Reagan & Donald Trump. Reagan was greatly admired by NOT only Republicans but even Democrats as well. The BIG TENT that the Democrats are now using was inherently borrowed from Ronald Reagan. He was well mannered & a consumate gentleman with a great positive attitude that he carried well. Reagan didn't build walls, he tore them down. He was at the helm during Gorbachev's 'glasnost' & 'peristroyka'. And Ronald Reagan fostered a GOOD relationship with the USSR as it finally fell. Reagan was the 'Great Communicator' & the 'Great Compromiser'. Even if you didn't agree with him, you still took a liking to him as he was very approachable. He compromised with a Democratic Congress & made the wheels of government turn. He was a 'strong leader' that didn't have to fight bloody conflicts & wars to make his point. But MOST of ALL Reagan stressed UNITY of nation & country. He just stayed well mannered at ALL TIMES!\n\nNow let's look at Trump. He's the 'Great Divider', good at setting one group against another. He's at best 'ill mannered' with a Totally NEGATIVE ATTITUDE. To Trump our nation is a 'miserable trash heap on a hill' and our diversity is just a 'punchline' to prey upon. Not ONLY is he insulting & unapproachable, most people want to 'punch' him in the face! Trump couldn't unify anything if he tried. He is a 'strong armed dictator' that wants everything & person to bend to his will. He lives on bad events, & thrives on misery. He wants his followers to GET INTO BLOODY CONFLICTS, and insistently wants to START World War 3! He knows no manners to speak of & he 'gins up' his followers into a 'frenzy' of violent behavior!\n\nAlso to note: Ronald Reagan was Governor of California for years before he took control at the helm of the Presidency! So he KNEW how government works! Donald Trump & his Teabagging Followers don't have the FIRST idea of how government operates. You don't run this country like a corporate interest!\n\nIn conclusion, believe it or not NAFTA was originally Reagan's 'brainchild'. If you have the 'slightest' respect for the Reagan legacy, you WON'T allow Trump into the White House!\n\n\n", + "cashout_time": "2016-09-24T21:08:12", + "category": "politics", + "children": 2, + "children_abs_rshares": 2364572745, + "created": "2016-08-24T21:05:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 735968, + "json_metadata": "{\"tags\":[\"politics\",\"trump\",\"reagan\",\"news\"]}", + "last_payout": "2016-08-25T21:08:12", + "last_update": "2016-08-24T21:24:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-08T23:22:51", + "net_rshares": -61964463, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "politics", + "percent_steem_dollars": 10000, + "permlink": "reagan-versus-trump-no-comparison", + "reward_weight": 10000, + "root_author": "terryrall", + "root_permlink": "reagan-versus-trump-no-comparison", + "title": "Reagan versus Trump...NO Comparison!", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-24T21:24:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "mohamedmashaal", + "author_rewards": 0, + "beneficiaries": [], + "body": "Delete", + "cashout_time": "2016-09-24T20:53:54", + "category": "steemtube", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-24T20:53:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 735834, + "json_metadata": "{\"tags\":[\"delete\",\"steemtube\"]}", + "last_payout": "2016-08-25T20:53:54", + "last_update": "2016-08-24T21:24:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "steemtube", + "percent_steem_dollars": 10000, + "permlink": "no-man-s-sky-honest-game-trailers-steemtube", + "reward_weight": 10000, + "root_author": "mohamedmashaal", + "root_permlink": "no-man-s-sky-honest-game-trailers-steemtube", + "title": "Delete", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-24T21:23:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ghostvangogh", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://scontent-dft4-2.xx.fbcdn.net/v/t1.0-9/13892044_514122035452799_7084570694564074093_n.jpg?oh=a4e8c52daf63a5fb0a2cf7647b6bdc3d&oe=585A651A", + "cashout_time": "2016-09-24T21:23:48", + "category": "art", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-24T21:23:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736173, + "json_metadata": "{\"tags\":[\"art\",\"blog\",\"photography\",\"digital\",\"nature\"],\"image\":[\"https://scontent-dft4-2.xx.fbcdn.net/v/t1.0-9/13892044_514122035452799_7084570694564074093_n.jpg?oh=a4e8c52daf63a5fb0a2cf7647b6bdc3d&oe=585A651A\"]}", + "last_payout": "2016-08-25T21:23:48", + "last_update": "2016-08-24T21:23:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "", + "parent_permlink": "art", + "percent_steem_dollars": 10000, + "permlink": "silhouettes", + "reward_weight": 10000, + "root_author": "ghostvangogh", + "root_permlink": "silhouettes", + "title": "Silhouettes", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent.orig.json b/hivemind/tavern/database_api_patterns/list_comments_parent.orig.json new file mode 100644 index 00000000..f281f299 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_parent.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-07-03T17:51:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "trogdor", + "author_rewards": 0, + "beneficiaries": [], + "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-03T17:51:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 36961, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T17:51:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160703t175141501z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-03T22:45:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "amartinezque", + "author_rewards": 0, + "beneficiaries": [], + "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-03T22:45:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 37187, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T22:45:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160703t224527020z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-04T18:22:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "edu-lopov", + "author_rewards": 0, + "beneficiaries": [], + "body": "Welcome to Steemit Gandalf!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-04T18:22:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 38471, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-04T18:22:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160704t182251522z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-21T12:52:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gary-smith", + "author_rewards": 0, + "beneficiaries": [], + "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", + "cashout_time": "1969-12-31T23:59:59", + "category": "mining", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-21T12:52:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 694016, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "2016-08-22T13:01:45", + "last_update": "2016-08-21T12:52:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-21T13:12:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", + "cashout_time": "1969-12-31T23:59:59", + "category": "mining", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-21T13:12:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 694144, + "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https://steemit.chat/channel/mining\"]}", + "last_payout": "2016-08-22T13:01:45", + "last_update": "2016-08-21T13:12:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-27T18:39:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "timcliff", + "author_rewards": 0, + "beneficiaries": [], + "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", + "cashout_time": "1969-12-31T23:59:59", + "category": "mining", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-27T14:13:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 766912, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-27T14:13:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-26T21:16:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ania", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you Gandalf :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-26T21:16:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 760057, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-27T21:18:18", + "last_update": "2016-08-26T21:16:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "re-ania-hello-world-20160826t185305711z", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-ania-hello-world-20160826t211629005z", + "reward_weight": 10000, + "root_author": "ania", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-15T14:11:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "arcange", + "author_rewards": 0, + "beneficiaries": [], + "body": "Lol. You're welcome!\nBut I suspect you're working hard to hit the top 20 chart with your two comments :p", + "cashout_time": "1969-12-31T23:59:59", + "category": "stats", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-09-15T13:24:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 4, + "id": 957845, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T13:24:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", + "reward_weight": 10000, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-15T14:11:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "arcange", + "author_rewards": 0, + "beneficiaries": [], + "body": "That's the purpose of using FREETEXT() instead of CONTAINS()", + "cashout_time": "1969-12-31T23:59:59", + "category": "stats", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-09-15T13:06:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 957709, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T13:06:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", + "reward_weight": 10000, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-26T18:20:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "bumblebrii", + "author_rewards": 0, + "beneficiaries": [], + "body": "Oh yes of course. I subscribe to a lot of different artists for my coloring pages. One had sent me the link to her blog and kind of just ended up sticking around and read a few blogs. Next thing i know, I signed up haha.", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-26T18:20:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 758094, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-27T08:05:57", + "last_update": "2016-08-26T18:20:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "re-bumblebrii-about-me-20160826t094306616z", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-bumblebrii-about-me-20160826t182001959z", + "reward_weight": 10000, + "root_author": "bumblebrii", + "root_permlink": "about-me", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent.pat.json index df937a76..0ab54abd 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent.pat.json @@ -157,7 +157,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-08-28T12:52:06", "category": "mining", "children": 0, "children_abs_rshares": 0, @@ -170,7 +170,7 @@ "depth": 1, "id": 919497, "json_metadata": "{\"tags\":[\"mining\"]}", - "last_payout": "2016-08-22T13:01:45", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-21T12:52:06", "max_accepted_payout": { "amount": "1000000000", @@ -206,7 +206,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-08-28T13:12:45", "category": "mining", "children": 0, "children_abs_rshares": 0, @@ -219,7 +219,7 @@ "depth": 1, "id": 919652, "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https://steemit.chat/channel/mining\"]}", - "last_payout": "2016-08-22T13:01:45", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-21T13:12:45", "max_accepted_payout": { "amount": "1000000000", @@ -255,7 +255,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-03T14:13:18", "category": "mining", "children": 3, "children_abs_rshares": 0, @@ -304,7 +304,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Thank you Gandalf :)", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-02T21:16:45", "category": "introduceyourself", "children": 0, "children_abs_rshares": 0, @@ -317,7 +317,7 @@ "depth": 2, "id": 1004255, "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "2016-08-27T21:18:18", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-26T21:16:45", "max_accepted_payout": { "amount": "1000000000", @@ -353,7 +353,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Lol. You're welcome!\nBut I suspect you're working hard to hit the top 20 chart with your two comments :p", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-22T13:24:15", "category": "stats", "children": 1, "children_abs_rshares": 0, @@ -402,7 +402,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "That's the purpose of using FREETEXT() instead of CONTAINS()", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-22T13:06:18", "category": "stats", "children": 3, "children_abs_rshares": 0, @@ -451,7 +451,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Oh yes of course. I subscribe to a lot of different artists for my coloring pages. One had sent me the link to her blog and kind of just ended up sticking around and read a few blogs. Next thing i know, I signed up haha.", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-02T18:20:12", "category": "introduceyourself", "children": 0, "children_abs_rshares": 0, @@ -464,7 +464,7 @@ "depth": 2, "id": 1001581, "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "2016-08-27T08:05:57", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-26T18:20:12", "max_accepted_payout": { "amount": "1000000000", diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.orig.json b/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.orig.json new file mode 100644 index 00000000..2a851306 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T01:10:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vlad", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congratulations! Good job!\n\nhttp://www.todaystrucking.com/sites/default/files/first-place-ribbon-sm.png\n\nFollow you\n\nhttp://buketik-ufa.ru/image/cache/data/hollidays/z_8145a12e-500x500.jpg", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T01:10:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 784695, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"image\":[\"http://www.todaystrucking.com/sites/default/files/first-place-ribbon-sm.png\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-29T01:10:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t004616466z", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t011002757z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 2374341643, + "active": "2016-08-29T11:26:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congratulations to the 1st and 2nd prize @allasyummyfood and @vlad!! Great job :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T11:24:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 788359, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"allasyummyfood\",\"vlad\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-29T11:26:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 2374341643, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t004616466z", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160829t112428312z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 2374341643 + }, + { + "abs_rshares": 0, + "active": "2016-08-26T11:50:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "glitterfart", + "author_rewards": 0, + "beneficiaries": [], + "body": "Your \"steamy\" morning coffee will never be the same ;p", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-26T11:50:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 754285, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-26T19:18:24", + "last_update": "2016-08-26T11:50:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-glitterfart-re-allasyummyfood-more-steemit-goodies-arrived-20160825t183602955z", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-re-glitterfart-re-allasyummyfood-more-steemit-goodies-arrived-20160826t115033112z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "more-steemit-goodies-arrived", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-03T03:22:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "glitterfart", + "author_rewards": 0, + "beneficiaries": [], + "body": "It takes me a while to get yours ^^\nThanks for your support ;)", + "cashout_time": "1969-12-31T23:59:59", + "category": "steem", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-03T03:22:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 841045, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "2016-09-03T19:27:33", + "last_update": "2016-09-03T03:22:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-glitterfart-thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far-20160902t223416476z", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-re-glitterfart-thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far-20160903t032226965z", + "reward_weight": 10000, + "root_author": "glitterfart", + "root_permlink": "thank-you-for-your-support-my-dear-followers-you-are-now-100-i-ll-share-with-you-all-i-won-so-far", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-31T11:29:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gringalicious", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you for commenting Alla. I have been following you since I found steemit. And thank you for the compliment on the photos.", + "cashout_time": "1969-12-31T23:59:59", + "category": "food", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-31T11:29:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 811830, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "2016-09-01T04:32:09", + "last_update": "2016-08-31T11:29:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-gringalicious-kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf-20160831t110620686z", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-re-gringalicious-kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf-20160831t112928563z", + "reward_weight": 10000, + "root_author": "gringalicious", + "root_permlink": "kiwi-mango-chia-pudding-parfaits-stovetop-cashew-granola-vegan-gf", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-31T13:08:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "halo", + "author_rewards": 0, + "beneficiaries": [], + "body": "He is actually 5 now. The pictures were older but the post was to maybe help people wanting a puppy and people with a puppy.\n\ud83d\udc8b @halo \ud83d\udc8b\ud83d\ude07", + "cashout_time": "1969-12-31T23:59:59", + "category": "halo", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-31T13:08:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 812624, + "json_metadata": "{\"tags\":[\"halo\"],\"users\":[\"halo\"]}", + "last_payout": "2016-09-01T07:02:15", + "last_update": "2016-08-31T13:08:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "re-halo-steemit-girl-halo-tips-to-be-a-better-dog-owner-20160831t114201287z", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-re-halo-steemit-girl-halo-tips-to-be-a-better-dog-owner-20160831t130847282z", + "reward_weight": 10000, + "root_author": "halo", + "root_permlink": "steemit-girl-halo-tips-to-be-a-better-dog-owner", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-18T04:33:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "lordvader", + "author_rewards": 0, + "beneficiaries": [], + "body": "I will teach him patience!", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-17T16:07:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 643293, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-18T17:44:30", + "last_update": "2016-08-17T16:10:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160228694z", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160734219z", + "reward_weight": 10000, + "root_author": "hanshotfirst", + "root_permlink": "how-can-a-minnow-pull-his-tiny-weight", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-17T17:05:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hanshotfirst", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you very much for the encouragement! I'll keep grinding away.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-17T16:17:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 643438, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-08-18T17:44:30", + "last_update": "2016-08-17T16:17:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160228694z", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t161759466z", + "reward_weight": 10000, + "root_author": "hanshotfirst", + "root_permlink": "how-can-a-minnow-pull-his-tiny-weight", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-23T12:30:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "drac59", + "author_rewards": 0, + "beneficiaries": [], + "body": "\u043d\u043e \u0445\u043e\u0447\u0435\u0442\u0441\u044f \u0442\u043e\u0433\u043e \u0447\u0435\u0433\u043e \u043d\u0435\u043b\u044c\u0437\u044f. \u0445\u043e\u0447\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0440\u0435\u0442\u043d\u043e\u0435.\u0442\u043e\u0433\u0434\u0430 \u0434\u0443\u043c\u0430\u0435\u0448 \u0447\u0442\u043e \u0437\u0434\u043e\u0440\u043e\u0432.", + "cashout_time": "1969-12-31T23:59:59", + "category": "food", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-23T12:30:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 717886, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "2016-08-23T19:18:27", + "last_update": "2016-08-23T12:30:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-hery-5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook-20160822t205340167z", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-re-hery-5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook-20160823t123052010z", + "reward_weight": 10000, + "root_author": "hery", + "root_permlink": "5-tips-how-to-eat-healthy-when-you-don-t-have-time-to-cook", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-31T14:49:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hidd3nmanna", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you! I will check that out!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-31T14:49:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 813501, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-09-01T07:12:12", + "last_update": "2016-08-31T14:49:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-hidd3nmanna-i-have-no-idea-what-i-m-doing-20160831t113643967z", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-re-hidd3nmanna-i-have-no-idea-what-i-m-doing-20160831t144929612z", + "reward_weight": 10000, + "root_author": "hidd3nmanna", + "root_permlink": "i-have-no-idea-what-i-m-doing", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json index ea6ee412..bc0a5fb3 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json @@ -10,7 +10,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Congratulations! Good job!\n\nhttp://www.todaystrucking.com/sites/default/files/first-place-ribbon-sm.png\n\nFollow you\n\nhttp://buketik-ufa.ru/image/cache/data/hollidays/z_8145a12e-500x500.jpg", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-05T01:10:36", "category": "foodchallenge", "children": 0, "children_abs_rshares": 0, @@ -23,7 +23,7 @@ "depth": 2, "id": 1035317, "json_metadata": "{\"tags\":[\"foodchallenge\"],\"image\":[\"http://www.todaystrucking.com/sites/default/files/first-place-ribbon-sm.png\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-29T01:10:36", "max_accepted_payout": { "amount": "1000000000", @@ -59,7 +59,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Congratulations to the 1st and 2nd prize @allasyummyfood and @vlad!! Great job :D", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-05T11:24:27", "category": "foodchallenge", "children": 0, "children_abs_rshares": 0, @@ -72,7 +72,7 @@ "depth": 2, "id": 1039861, "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"allasyummyfood\",\"vlad\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-29T11:26:00", "max_accepted_payout": { "amount": "1000000000", @@ -108,7 +108,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Your \"steamy\" morning coffee will never be the same ;p", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-02T11:50:33", "category": "steemit", "children": 0, "children_abs_rshares": 0, @@ -121,7 +121,7 @@ "depth": 3, "id": 996526, "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_payout": "2016-08-26T19:18:24", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-26T11:50:33", "max_accepted_payout": { "amount": "1000000000", @@ -157,7 +157,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "It takes me a while to get yours ^^\nThanks for your support ;)", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-10T03:22:18", "category": "steem", "children": 0, "children_abs_rshares": 0, @@ -170,7 +170,7 @@ "depth": 2, "id": 1106787, "json_metadata": "{\"tags\":[\"steem\"]}", - "last_payout": "2016-09-03T19:27:33", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-09-03T03:22:18", "max_accepted_payout": { "amount": "1000000000", @@ -206,7 +206,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Thank you for commenting Alla. I have been following you since I found steemit. And thank you for the compliment on the photos.", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-07T11:29:24", "category": "food", "children": 0, "children_abs_rshares": 0, @@ -219,7 +219,7 @@ "depth": 2, "id": 1069484, "json_metadata": "{\"tags\":[\"food\"]}", - "last_payout": "2016-09-01T04:32:09", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-31T11:29:24", "max_accepted_payout": { "amount": "1000000000", @@ -246,7 +246,7 @@ "vote_rshares": 0 }, { - "abs_rshares": 0, + "abs_rshares": 20486836064, "active": "2016-08-31T13:08:48", "allow_curation_rewards": true, "allow_replies": true, @@ -255,7 +255,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "He is actually 5 now. The pictures were older but the post was to maybe help people wanting a puppy and people with a puppy.\n\ud83d\udc8b @halo \ud83d\udc8b\ud83d\ude07", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-07T13:08:48", "category": "halo", "children": 0, "children_abs_rshares": 0, @@ -268,7 +268,7 @@ "depth": 2, "id": 1070455, "json_metadata": "{\"tags\":[\"halo\"],\"users\":[\"halo\"]}", - "last_payout": "2016-09-01T07:02:15", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-31T13:08:48", "max_accepted_payout": { "amount": "1000000000", @@ -276,7 +276,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 20486836064, "net_votes": 1, "parent_author": "allasyummyfood", "parent_permlink": "re-halo-steemit-girl-halo-tips-to-be-a-better-dog-owner-20160831t114201287z", @@ -291,11 +291,11 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 93997427963879367, + "vote_rshares": 20486836064 }, { - "abs_rshares": 0, + "abs_rshares": 5623393157, "active": "2016-08-18T04:33:27", "allow_curation_rewards": true, "allow_replies": true, @@ -304,7 +304,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "I will teach him patience!", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-08-24T16:07:33", "category": "steemit", "children": 1, "children_abs_rshares": 0, @@ -317,7 +317,7 @@ "depth": 2, "id": 854877, "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_payout": "2016-08-18T17:44:30", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-17T16:10:00", "max_accepted_payout": { "amount": "1000000000", @@ -325,7 +325,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 5623393157, "net_votes": 1, "parent_author": "allasyummyfood", "parent_permlink": "re-hanshotfirst-how-can-a-minnow-pull-his-tiny-weight-20160817t160228694z", @@ -340,8 +340,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 25896916462551420, + "vote_rshares": 5623393157 }, { "abs_rshares": 0, @@ -353,7 +353,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Thank you very much for the encouragement! I'll keep grinding away.", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-08-24T16:17:57", "category": "steemit", "children": 3, "children_abs_rshares": 0, @@ -366,7 +366,7 @@ "depth": 2, "id": 855050, "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_payout": "2016-08-18T17:44:30", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-17T16:17:57", "max_accepted_payout": { "amount": "1000000000", @@ -402,7 +402,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "\u043d\u043e \u0445\u043e\u0447\u0435\u0442\u0441\u044f \u0442\u043e\u0433\u043e \u0447\u0435\u0433\u043e \u043d\u0435\u043b\u044c\u0437\u044f. \u0445\u043e\u0447\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0440\u0435\u0442\u043d\u043e\u0435.\u0442\u043e\u0433\u0434\u0430 \u0434\u0443\u043c\u0430\u0435\u0448 \u0447\u0442\u043e \u0437\u0434\u043e\u0440\u043e\u0432.", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-08-30T12:30:54", "category": "food", "children": 0, "children_abs_rshares": 0, @@ -415,7 +415,7 @@ "depth": 2, "id": 949876, "json_metadata": "{\"tags\":[\"food\"]}", - "last_payout": "2016-08-23T19:18:27", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-23T12:30:54", "max_accepted_payout": { "amount": "1000000000", @@ -451,7 +451,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Thank you! I will check that out!", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-07T14:49:33", "category": "introduceyourself", "children": 0, "children_abs_rshares": 0, @@ -464,7 +464,7 @@ "depth": 2, "id": 1071577, "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "2016-09-01T07:12:12", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-31T14:49:33", "max_accepted_payout": { "amount": "1000000000", diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.orig.json b/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.orig.json new file mode 100644 index 00000000..cfe864ea --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-04-08T08:58:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 729, + "beneficiaries": [], + "body": "This is the witnesses category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-08T07:36:18", + "curator_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 6, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:39", + "last_update": "2016-04-08T07:36:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -491818553, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "witness-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "witness-category", + "title": "Witnesses", + "total_payout_value": { + "amount": "160", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T07:55:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 632, + "beneficiaries": [], + "body": "This is the miners category", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T07:55:15", + "curator_payout_value": { + "amount": "139", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 7, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:42", + "last_update": "2016-04-08T07:55:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -481781440, + "net_votes": -3, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "miner-category", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "miner-category", + "title": "Miners", + "total_payout_value": { + "amount": "138", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T08:49:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 755, + "beneficiaries": [], + "body": "Spams come here", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T08:49:15", + "curator_payout_value": { + "amount": "166", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 9, + "json_metadata": "{}", + "last_payout": "2016-08-13T18:32:54", + "last_update": "2016-04-08T08:49:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -477016308, + "net_votes": -2, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "spam", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "spam", + "title": "Spams", + "total_payout_value": { + "amount": "165", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-08T15:39:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hello", + "author_rewards": 0, + "beneficiaries": [], + "body": "As of 2016, you have to learn 7097 languages to say hello to 6,506,259,160 people.", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-08T15:39:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 20, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-04-08T15:39:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -37896234000000, + "net_votes": 11, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "hello", + "reward_weight": 10000, + "root_author": "hello", + "root_permlink": "hello", + "title": "Hello World!", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-10T18:05:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hello", + "author_rewards": 1950, + "beneficiaries": [], + "body": "Greetings to all human beings!\n -- The Internet", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-10T18:05:15", + "curator_payout_value": { + "amount": "427", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 30, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-04-10T18:05:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 5, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "world", + "reward_weight": 10000, + "root_author": "hello", + "root_permlink": "world", + "title": "Hello World!", + "total_payout_value": { + "amount": "428", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-27T08:00:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "xeroc", + "author_rewards": 288455, + "beneficiaries": [], + "body": "Python Steem Libraries Version 1.0 released!\n\nThis library allows you to interface with the wallet and/or a steem node\nfor polling data via RPC calls.\n\n## Download\n\nYou can download directly from github:\n```\ngit clone https://github.com/xeroc/python-steem/\ncd python-steem\npython3 setup.py install --user\n```\n\nOr use `pip`\n```\npip3 install steem --user\n```\n\n## Setup\n\nEven though you can connect to a remote full node, you can start a local\nnode via:\n\n```\ncd \n./programs/steemd/steemd --rpc-endpoint=\"127.0.0.1:8090\"\n```\n\nThen you can connect a `cli_wallet` to your full node and open a new\nport at `8092`:\n```\n./programs/cli_wallet/cli_wallet --server-rpc-endpoint=ws://localhost:8090 \\\n --rpc-http-endpoint=127.0.0.1:8092 \\\n --rpc-http-allowip=127.0.0.1\n```\nWe will use both open ports in the example.\n\n## Usage Examples\n\n```python\nfrom steemapi.steemclient import SteemClient\nfrom pprint import pprint\n\nclass Config():\n # Port and host of the RPC-HTTP-Endpoint of the wallet\n wallet_host = \"localhost\"\n wallet_port = 8092\n # Websocket URL to the full node\n witness_url = \"ws://localhost:8090\"\n\nclient = SteemClient(Config)\n\n# Calls to the Wallet\n\npprint(client.wallet.vote(\"\", \"hello\", \"world\", 100, True))\n\n# Calls to the Node\npprint(client.node.get_trending_categories(\"\", 20))\npprint(client.node.get_content(\"hello\", \"world\"))\n```\n\nMore examples can be found in the `examples/` directory.\n", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-04-10T18:24:51", + "curator_payout_value": { + "amount": "63453", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 31, + "json_metadata": "{}", + "last_payout": "2016-08-21T21:26:42", + "last_update": "2016-04-12T07:40:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 30, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "python-steem-0-1", + "reward_weight": 10000, + "root_author": "xeroc", + "root_permlink": "python-steem-0-1", + "title": "Python Steem Libraries 0.1", + "total_payout_value": { + "amount": "63510", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-13T08:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 0, + "beneficiaries": [], + "body": "removed", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-12T18:42:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 93, + "json_metadata": "{}", + "last_payout": "2016-08-26T03:00:03", + "last_update": "2016-04-13T00:06:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "spam", + "reward_weight": 10000, + "root_author": "red", + "root_permlink": "spam", + "title": "title2", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-13T16:05:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "abit", + "author_rewards": 0, + "beneficiaries": [], + "body": "Forum spam is a problem common to all popular forum software. Forum spam is caused by automated software (referred to as \u201cspambots\u201d) that visits forums with the sole purpose of registering many user accounts and/or posting massive amounts of messages. These messages often contain links to commercial websites, phishing websites or even malware.\n\nForum spambots surf the web looking for guestbooks, wikis, blogs, forums and any other web forms to submit spam links to. These spambots often use OCR technology to bypass CAPTCHAs present. Some spam messages are targeted towards readers and can involve techniques of target marketing or even phishing. These automated schemes can make it more difficult for users to tell real posts from the bot generated ones. Some spam messages also simply contain tags and hyperlinks intended to boost search engine ranking rather than target human readers.\n\nSpam posts may contain anything from a single link to dozens of links. Text content is minimal, usually innocuous and unrelated to the forum's topic. Sometimes the posts may be made in old threads that are revived by the spammer solely for the purpose of spamming links. Posts include some text to prevent the post being caught by automated spam filters that prevent posts which consist solely of external links from being submitted.\n\nAlternatively, the spam links are posted in the user's signature, in which case the spambot will never post. The link sits quietly in the signature field, where it is more likely to be harvested by search engine spiders than discovered by forum administrators and moderators.\n\nSpam prevention and deletions measurably increase the workload of forum administrators and moderators. The amount of time and resources spent keeping a forum spam free contributes significantly to labor cost and the skill required in the running of a public forum. Marginally profitable or smaller forums may be permanently closed by administrators.\n\nHow will STEEM fight spam?\n\nReferences:\n* https://en.wikipedia.org/wiki/Forum_spam\n * http://fluxbb.org/docs/v1.4/antispam", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-04-13T08:45:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 103, + "json_metadata": "{}", + "last_payout": "2016-08-12T10:16:57", + "last_update": "2016-04-13T08:45:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -433402453408, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "anti-spam", + "reward_weight": 10000, + "root_author": "abit", + "root_permlink": "anti-spam", + "title": "Anti-spam", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-05-15T16:06:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "xeroc", + "author_rewards": 83368, + "beneficiaries": [], + "body": "In [an other article](/steem/@xeroc/steem-api) we have discussed the underlying structure of the STEEM API and can now look into monitoring account deposits.\n\n## Running a Node\n\nFirst, we need to run a full node in a trusted environment:\n\n ./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n\nWe open up the RPC endpoint so that we can interface with the node using RPC-JSON calls.\n\n## Blockchain Parameters and Last Block\n\nThe RPC call `get_config` will return the configuration of the blockchain which contains the block interval in seconds. By calling `get_dynamic_global_properties`, we obtain the current head block number as well as the last irreversible block number. The difference between both is that the last block is last block that has been produced by the network and has thus been confirmed by the block producer. The last irreversible block is that block that has been confirmed by sufficient many block producers so that it can no longer be modified without a hard fork. Every block older than the last reversible block is equivalent to a checkpoint in Bitcoin. Typically they are about 30 to 50 blocks behind the head block.\n\nA particular block can be obtained via the `get_block ` call and takes the form shown above.\n\n## Processing Block Data\n\nSince the content of a block is unencrypted, all it takes to monitor an account is processing of the content of each block.\n\n## Example\n\nThe following will show example implementations for monitoring a specific account.\n\n```python\n# This library can be obtain from https://github.com/xeroc/python-steem\n\nfrom steemrpc import SteemRPC\nfrom pprint import pprint\nimport time\n\n\"\"\"\n Connection Parameters to steemd daemon.\n\n Start the steemd daemon with the rpc-endpoint parameter:\n\n ./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n\n This opens up a RPC port (e.g. at 8092). Currently, authentication\n is not yet available, thus, we recommend to restrict access to\n localhost. Later we will allow authentication via username and\n passpword (both empty now).\n\n\"\"\"\nrpc = SteemRPC(\"localhost\", 8092, \"\", \"\")\n\n\"\"\"\n Last Block that you have process in your backend.\n Processing will continue at `last_block + 1`\n\"\"\"\nlast_block = 160900\n\n\"\"\"\n Deposit account name to monitor\n\"\"\"\nwatch_account = \"world\"\n\n\ndef process_block(block, blockid):\n \"\"\"\n This call processes a block which can carry many transactions\n\n :param Object block: block data\n :param number blockid: block number\n \"\"\"\n if \"transactions\" in block:\n for tx in block[\"transactions\"]:\n #: Parse operations\n for opObj in tx[\"operations\"]:\n #: Each operation is an array of the form\n #: [type, {data}]\n opType = opObj[0]\n op = opObj[1]\n\n # we here want to only parse transfers\n if opType == \"transfer\":\n process_transfer(op, block, blockid)\n\n\ndef process_transfer(op, block, blockid):\n \"\"\"\n We here process the actual transfer operation.\n \"\"\"\n if op[\"to\"] == watch_account:\n print(\n \"%d | %s | %s -> %s: %s -- %s\" % (\n blockid,\n block[\"timestamp\"],\n op[\"from\"],\n op[\"to\"],\n op[\"amount\"],\n op[\"memo\"]\n )\n )\n\n\nif __name__ == '__main__':\n # Let's find out how often blocks are generated!\n config = rpc.get_config()\n block_interval = config[\"STEEMIT_BLOCK_INTERVAL\"]\n\n # We are going to loop indefinitely\n while True:\n\n # Get chain properies to identify the \n # head/last reversible block\n props = rpc.get_dynamic_global_properties()\n\n # Get block number\n # We here have the choice between\n # * head_block_number: the last block\n # * last_irreversible_block_num: the block that is confirmed by\n # 2/3 of all block producers and is thus irreversible!\n # We recommend to use the latter!\n # block_number = props['head_block_number']\n block_number = props['last_irreversible_block_num']\n\n # We loop through all blocks we may have missed since the last\n # block defined above\n while (block_number - last_block) > 0:\n last_block += 1\n\n # Get full block\n block = rpc.get_block(last_block)\n\n # Process block\n process_block(block, last_block)\n\n # Sleep for one block\n time.sleep(block_interval)\n```", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-13T16:22:45", + "curator_payout_value": { + "amount": "18338", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 110, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-15T16:06:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 16, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "how-to-monitor-an-account-on-steem", + "reward_weight": 10000, + "root_author": "xeroc", + "root_permlink": "how-to-monitor-an-account-on-steem", + "title": "Monitoring Account Deposits in Steem Using Python", + "total_payout_value": { + "amount": "18340", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-21T17:34:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "xeroc", + "author_rewards": 9197, + "beneficiaries": [], + "body": "This article desribes the API of the STEEM full node (**not** of the wallet API).\n\n## Prerequisits\n\nThis article assumes that you have a full node running and listening to port ``8092``, locally. You can achieve this by\n\n```\n./programs/steemd/steemd --rpc-endpoint=127.0.0.1:8092\n```\n\nWe open up the RPC endpoint so that we can interface with the node using RPC-JSON calls.\n\n## Call Format\n\nIn Graphene, RPC calls are state-less and accessible via regular JSON formated RPC-HTTP-calls. The correct structure of the JSON call is\n\n```json\n{\n \"jsonrpc\": \"2.0\",\n \"id\": 1\n \"method\": \"get_account\",\n \"params\": [[\"xeroc\", \"steemit\"]],\n}\n```\n\nThe `get_accounts` call is available in the full node's API and takes only one argument which is an array of account ids (here: `[\"xeroc\", \"steemit\"]`).\n\n### Example Call with `curl`\n\nSuch as call can be submitted via ``curl``:\n\n```sh\ncurl --data '{\"jsonrpc\": \"2.0\", \"method\": \"get_accounts\", \"params\": [[\"xeroc\",\"steemit\"]], \"id\": 1}' http://127.0.0.1:8090/rpc\n```\n\n## Successful Calls\n\n\nThe API will return a properly JSON formated response carrying the same ``id``\nas the request to distinguish subsequent calls.\n\n```json\n{ \"id\":1, \"result\": \"data\" }\n```\n\n## Errors\n\nIn case of an error, the resulting answer will carry an ``error`` attribute and\na detailed description:\n\n```json\n{\n \"id\": 0\n \"error\": {\n \"data\": {\n \"code\": error-code,\n \"name\": \" .. name of exception ..\"\n \"message\": \" .. message of exception ..\",\n \"stack\": [ .. stack trace .. ],\n },\n \"code\": 1,\n },\n}\n```\n\n## Available Calls\n\nEven though, the `help` call does not exist, it gives us an error message that contains all available API calls in the stack trace:\n\n```\ncurl --data '{\"jsonrpc\": \"2.0\", \"method\": \"help\", \"params\": [], \"id\": 1}' http://127.0.0.1:8090/rpc\n```\n```json\n{\n \"id\": 1,\n \"error\": {\n \"message\": <...>,\n \"data\": {\n \"message\": \"Assert Exception\",\n \"name\": \"assert_exception\",\n \"stack\": [\n {\n \"data\": {\n \"name\": \"help\",\n \"api\": {\n \"set_subscribe_callback\": 0,\n \"get_dynamic_global_properties\": 12,\n \"get_accounts\": 17,\n \"get_active_categories\": 9,\n \"get_account_references\": 18,\n \"get_trending_categories\": 7,\n \"get_content\": 36,\n \"get_state\": 6,\n \"get_discussions_by_total_pending_payout\": 38,\n \"cancel_all_subscriptions\": 3,\n \"get_block_header\": 4,\n \"get_active_votes\": 35,\n \"get_current_median_history_price\": 15,\n \"lookup_witness_accounts\": 26,\n \"verify_account_authority\": 34,\n \"get_key_references\": 16,\n \"set_pending_transaction_callback\": 1,\n \"get_required_signatures\": 31,\n \"get_recent_categories\": 10,\n \"get_order_book\": 28,\n \"lookup_accounts\": 20,\n \"get_account_history\": 23,\n \"get_chain_properties\": 13,\n \"get_feed_history\": 14,\n \"verify_authority\": 33,\n \"get_discussions_by_last_update\": 40,\n \"get_conversion_requests\": 22,\n \"get_discussions_in_category_by_last_update\": 41,\n \"get_block\": 5,\n \"get_witness_count\": 27,\n \"get_best_categories\": 8,\n \"get_potential_signatures\": 32,\n \"lookup_account_names\": 19,\n \"get_transaction\": 30,\n \"get_witnesses\": 24,\n \"get_witness_by_account\": 25,\n \"get_account_count\": 21,\n \"get_transaction_hex\": 29,\n \"get_content_replies\": 37,\n \"get_discussions_in_category_by_total_pending_payout\": 39,\n \"get_miner_queue\": 43,\n \"get_active_witnesses\": 42,\n \"set_block_applied_callback\": 2,\n \"get_config\": 11\n }\n },\n \"context\": {\n \"line\": 109,\n \"hostname\": \"\",\n \"timestamp\": \"2016-04-13T16:15:17\",\n \"method\": \"call\",\n \"thread_name\": \"th_a\",\n \"level\": \"error\",\n \"file\": \"api_connection.hpp\"\n },\n \"format\": \"itr != _by_name.end(): no method with name '${name}'\"\n }\n ],\n \"code\": 10\n },\n \"code\": 1\n }\n}\n```\n\nFurther documentation about the calls can be found in the sources in [libraries/app/include/steemit/app/database_api.hpp](https://github.com/steemit/steem/blob/master/libraries/app/include/steemit/app/database_api.hpp).\n", + "cashout_time": "1969-12-31T23:59:59", + "category": "", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-04-13T16:25:15", + "curator_payout_value": { + "amount": "493", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 111, + "json_metadata": "{}", + "last_payout": "2016-08-24T05:37:24", + "last_update": "2016-04-13T16:25:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 29, + "parent_author": "", + "parent_permlink": "", + "percent_steem_dollars": 10000, + "permlink": "steem-api", + "reward_weight": 10000, + "root_author": "xeroc", + "root_permlink": "steem-api", + "title": "Steem API", + "total_payout_value": { + "amount": "2165", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.orig.json b/hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.orig.json new file mode 100644 index 00000000..adf4d064 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-06T13:53:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ben99", + "author_rewards": 0, + "beneficiaries": [], + "body": "looks yummy :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T13:49:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 478086, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:49:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t134926380z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T13:51:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "saharov", + "author_rewards": 0, + "beneficiaries": [], + "body": "i think is very delicious", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T13:50:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 478091, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:50:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135018922z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T13:51:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "timsaid", + "author_rewards": 0, + "beneficiaries": [], + "body": "This post made me hungry Alla. Think I will try the recipe tomorrow and will tell you how it was :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T13:50:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 478096, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:50:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135034200z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T13:59:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "sauravrungta", + "author_rewards": 20, + "beneficiaries": [], + "body": "Damn....just when I am hungry.....magically delicious looking little pieces of heaven!! :D :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T13:51:12", + "curator_payout_value": { + "amount": "2", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 478099, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:51:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135111374z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "42", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T13:59:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "meesterboom", + "author_rewards": 0, + "beneficiaries": [], + "body": "Top doughnutting!!!", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T13:51:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 478101, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:51:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t135127799z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T14:04:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "firepower", + "author_rewards": 0, + "beneficiaries": [], + "body": "That looks really delicious! Would love to try that but too bad I'm behind a computer screen haha! Keep up the good work! :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-06T13:54:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 478127, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T13:54:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t140239163z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T14:33:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gustavopasquini", + "author_rewards": 0, + "beneficiaries": [], + "body": "Very Good Chef ;)", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T14:26:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 478427, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T14:26:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t142635178z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T14:32:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "recursive", + "author_rewards": 1769, + "beneficiaries": [], + "body": "Photo #2: gorgeous! French [canel\u00e9](https://en.wikipedia.org/wiki/Canel%C3%A9) comes to mind...\nhttps://upload.wikimedia.org/wikipedia/commons/d/df/Canele_innards.jpg", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T14:30:48", + "curator_payout_value": { + "amount": "2", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 478462, + "json_metadata": "{\"tags\":[\"recipes\"],\"links\":[\"https://en.wikipedia.org/wiki/Canel%C3%A9\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T14:30:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 11, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t143154346z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "3770", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T19:59:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "condra", + "author_rewards": 0, + "beneficiaries": [], + "body": "Oh damn I'm gonna try this", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T14:35:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 478506, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T14:35:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t143537671z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T22:47:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "kryptik", + "author_rewards": 0, + "beneficiaries": [], + "body": "Awesome easy recipe! I see you workin' it #steemianfoodnetwork", + "cashout_time": "1969-12-31T23:59:59", + "category": "recipes", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-06T15:32:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 479047, + "json_metadata": "{\"tags\":[\"steemianfoodnetwork\",\"recipes\"]}", + "last_payout": "2016-09-06T04:51:42", + "last_update": "2016-08-06T15:32:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "percent_steem_dollars": 10000, + "permlink": "re-allasyummyfood-10-min-donut-recipe-ponchiki-because-why-not-20160806t153216549z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "10-min-donut-recipe-ponchiki-because-why-not", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.orig.json b/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.orig.json new file mode 100644 index 00000000..4aaf0d04 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-07-29T15:23:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "msjennifer", + "author_rewards": 0, + "beneficiaries": [], + "body": "Excellent post!", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-29T15:17:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 336501, + "json_metadata": "", + "last_payout": "2016-08-29T05:00:42", + "last_update": "2016-07-29T15:23:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -55205310, + "net_votes": -4, + "parent_author": "vi1son", + "parent_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "percent_steem_dollars": 10000, + "permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-29T16:58:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "corax", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://now-here-this.timeout.com/wp-content/uploads/2013/02/url-19.gif Oh my goodness! Impressive article dude! Thanks, However I am encountering issues with your RSS. I dont understand why I cannot join it. Is there anybody else having the same RSS issues? Anyone that knows the solution will you kindly respond? Thanks", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-29T15:23:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 336600, + "json_metadata": "", + "last_payout": "2016-08-29T05:00:42", + "last_update": "2016-07-29T15:23:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "vi1son", + "parent_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "percent_steem_dollars": 10000, + "permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-03T08:52:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "yandra86", + "author_rewards": 0, + "beneficiaries": [], + "body": "Upvoted", + "cashout_time": "1969-12-31T23:59:59", + "category": "ru", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-03T08:52:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 425216, + "json_metadata": "", + "last_payout": "2016-09-02T20:52:12", + "last_update": "2016-08-03T08:52:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -10906911, + "net_votes": -1, + "parent_author": "vi1son", + "parent_permlink": "aferium", + "percent_steem_dollars": 10000, + "permlink": "aferium", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "aferium", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T02:48:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "itay", + "author_rewards": 0, + "beneficiaries": [], + "body": "I upvoted You", + "cashout_time": "1969-12-31T23:59:59", + "category": "ru", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T02:48:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 773677, + "json_metadata": "{}", + "last_payout": "2016-09-02T20:52:12", + "last_update": "2016-08-28T02:48:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "vi1son", + "parent_permlink": "aferium", + "percent_steem_dollars": 10000, + "permlink": "re-aferium", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "aferium", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T13:55:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "confucius", + "author_rewards": 0, + "beneficiaries": [], + "body": "Acquire new knowledge whilst thinking over the old, and you may become a teacher of others.", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-30T13:55:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 353970, + "json_metadata": "", + "last_payout": "2016-08-30T01:59:27", + "last_update": "2016-07-30T13:55:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -776149630, + "net_votes": 2, + "parent_author": "vi1son", + "parent_permlink": "afghan-war-1985", + "percent_steem_dollars": 10000, + "permlink": "afghan-war-1985", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "afghan-war-1985", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T13:55:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "jarvis", + "author_rewards": 0, + "beneficiaries": [], + "body": "Have you ever met one of your HEROES?", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-30T13:55:45", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 353971, + "json_metadata": "", + "last_payout": "2016-08-30T01:59:27", + "last_update": "2016-07-30T13:55:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -21958841303, + "net_votes": 2, + "parent_author": "vi1son", + "parent_permlink": "afghan-war-1985", + "percent_steem_dollars": 10000, + "permlink": "afghan-war-1985", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "afghan-war-1985", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-02T20:13:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "condra", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yeahp. I'm sure they will fix it soon.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-02T20:13:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 416566, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-09-02T08:18:00", + "last_update": "2016-08-02T20:13:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "vi1son", + "parent_permlink": "bug-with-comments", + "percent_steem_dollars": 10000, + "permlink": "re-vi1son-bug-with-comments-20160802t201348625z", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "bug-with-comments", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-02T20:16:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "cortegam", + "author_rewards": 0, + "beneficiaries": [], + "body": "I have the same issue, but I thought that it was my browser lol", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-02T20:16:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 416610, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "2016-09-02T08:18:00", + "last_update": "2016-08-02T20:16:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "vi1son", + "parent_permlink": "bug-with-comments", + "percent_steem_dollars": 10000, + "permlink": "re-vi1son-bug-with-comments-20160802t201629448z", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "bug-with-comments", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-25T22:32:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "wang", + "author_rewards": 0, + "beneficiaries": [], + "body": "Great to have you with us!\n\nHere are some tips if you're not aware of already:\n* Secure your account: https://steemit.com/steemit-guides/@pfunk/your-steem-account-is-worth-money-how-to-secure-it-with-a-new-owner-key-to-keep-it-yours-forever\n* Verify your account and build your reputation: https://steemit.com/steem/@tuck-fheman/verified-accounts--reputation-system\n* Contribute with your own contents: https://steemit.com/steem/@grittenald/copy-paste-steal-cite-your-sources, and https://steemit.com/steemit/@pfunk/lets-discuss-verification-of-user-accounts-posting-previous-work-to-prevent-impersonation\n* Properly tagging your posts, especially when your content is `#NSFW` or for `#test` only\n* Know how Steemit works: https://steemit.com/steemit/@donkeypong/still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy ", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-25T22:32:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 260239, + "json_metadata": "{\"tags\":[]}", + "last_payout": "2016-08-26T00:12:39", + "last_update": "2016-07-25T22:32:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "vi1son", + "parent_permlink": "challenge-the-importance-of-setting-goals", + "percent_steem_dollars": 10000, + "permlink": "re-vi1son-challenge-the-importance-of-setting-goals-20160725t223254293z", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "challenge-the-importance-of-setting-goals", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-25T22:33:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "sharon", + "author_rewards": 0, + "beneficiaries": [], + "body": "Welcome to the community!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-25T22:33:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 260253, + "json_metadata": "", + "last_payout": "2016-08-26T00:12:39", + "last_update": "2016-07-25T22:33:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "vi1son", + "parent_permlink": "challenge-the-importance-of-setting-goals", + "percent_steem_dollars": 10000, + "permlink": "challenge-the-importance-of-setting-goals", + "reward_weight": 10000, + "root_author": "vi1son", + "root_permlink": "challenge-the-importance-of-setting-goals", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.orig.json b/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.orig.json new file mode 100644 index 00000000..39896bd6 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-28T18:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T18:12:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780584, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:12:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "percent_steem_dollars": 10000, + "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-21T08:47:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gonzo", + "author_rewards": 0, + "beneficiaries": [], + "body": "You won't get much out of me, I only hooked for a few months, but maybe if you give me some time I can come up with some better stories :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "interview", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-21T08:36:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 692581, + "json_metadata": "{\"tags\":[\"interview\"]}", + "last_payout": "2016-08-21T21:30:09", + "last_update": "2016-08-21T08:36:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-gonzo-re-knozaki2015-interview-with-marcus-schmitt-ceo-of-copytrack-20160821t083148078z", + "percent_steem_dollars": 10000, + "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-interview-with-marcus-schmitt-ceo-of-copytrack-20160821t083448196z", + "reward_weight": 10000, + "root_author": "knozaki2015", + "root_permlink": "interview-with-marcus-schmitt-ceo-of-copytrack", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T09:03:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gonzo", + "author_rewards": 0, + "beneficiaries": [], + "body": "You're welcome, it took me forever to learn how to do that.", + "cashout_time": "1969-12-31T23:59:59", + "category": "food", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-14T08:55:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 4, + "id": 596256, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "2016-09-14T00:38:18", + "last_update": "2016-08-14T08:55:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-gonzo-re-knozaki2015-re-knozaki2015-i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne-20160814t085434286z", + "percent_steem_dollars": 10000, + "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-re-knozaki2015-i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne-20160814t085544420z", + "reward_weight": 10000, + "root_author": "knozaki2015", + "root_permlink": "i-travel-the-world-part-17-porto-di-oneglia-featuring-jason-jason-bourne", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-13T01:32:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gonzo", + "author_rewards": 0, + "beneficiaries": [], + "body": "What is your favorite Japanese food?", + "cashout_time": "1969-12-31T23:59:59", + "category": "food", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-13T01:09:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 580231, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "2016-09-12T13:37:06", + "last_update": "2016-08-13T01:09:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-gonzo-re-knozaki2015-the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive-20160813t010757520z", + "percent_steem_dollars": 10000, + "permlink": "re-knozaki2015-re-gonzo-re-knozaki2015-the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive-20160813t010923910z", + "reward_weight": 10000, + "root_author": "knozaki2015", + "root_permlink": "the-brita-filter-hacker-strikes-again-how-to-produce-your-own-natto-and-save-95-featuring-new-author-eyeye-steemit-exclusive", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-08T22:49:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gringalicious", + "author_rewards": 0, + "beneficiaries": [], + "body": "I'll be there", + "cashout_time": "1969-12-31T23:59:59", + "category": "food", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-08T22:49:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 897353, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "2016-09-09T23:09:36", + "last_update": "2016-09-08T22:49:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-gringalicious-re-knozaki2015-i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami-20160908t223849052z", + "percent_steem_dollars": 10000, + "permlink": "re-knozaki2015-re-gringalicious-re-knozaki2015-i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami-20160908t224916649z", + "reward_weight": 10000, + "root_author": "knozaki2015", + "root_permlink": "i-travel-the-world-part-34-delano-miami-how-to-spend-a-day-in-miami", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-18T21:47:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hagie", + "author_rewards": 0, + "beneficiaries": [], + "body": "Ok .. das ist echt super - ich hatte zwar nicht so viel gl\u00fcck mit meinen Posts wie du aber ich werde ab jetzt 10% monatlich meiner SMD an dich senden zum verteilen. Danke daf\u00fcr. Ich w\u00fcrde mich auch sehr \u00fcber jeden approve als witness freuen - da mit die technische Seite einfach eher liegt als das schreiben von Posts !! https://steemit.com/deutsch/@hagie/witness-anmeldung-fuer-hagie", + "cashout_time": "1969-12-31T23:59:59", + "category": "giveback", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-17T13:04:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 641066, + "json_metadata": "{\"tags\":[\"giveback\"],\"links\":[\"https://steemit.com/deutsch/@hagie/witness-anmeldung-fuer-hagie\"]}", + "last_payout": "2016-09-05T22:26:30", + "last_update": "2016-08-17T13:04:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-hagie-re-knozaki2015-paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better-20160817t102434089z", + "percent_steem_dollars": 10000, + "permlink": "re-knozaki2015-re-hagie-re-knozaki2015-paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better-20160817t130426895z", + "reward_weight": 10000, + "root_author": "knozaki2015", + "root_permlink": "paging-all-fellow-steemians-let-s-give-back-part-of-our-earnings-to-make-steemit-better", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-20T08:09:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "handmade", + "author_rewards": 0, + "beneficiaries": [], + "body": "Many people just go around and here is so much to see and do. Follow the series and you'll buy the ticket very soon. Just let me know when you are coming because here the beer is also nice :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "travel", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-20T07:59:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 680888, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "2016-08-20T23:50:45", + "last_update": "2016-08-20T07:59:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-handmade-this-is-slovenia-2-million-people-53-dialects-and-much-more-20160819t223531716z", + "percent_steem_dollars": 10000, + "permlink": "re-knozaki2015-re-handmade-this-is-slovenia-2-million-people-53-dialects-and-much-more-20160820t075942095z", + "reward_weight": 10000, + "root_author": "handmade", + "root_permlink": "this-is-slovenia-2-million-people-53-dialects-and-much-more", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-08T20:29:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "herzmeister", + "author_rewards": 0, + "beneficiaries": [], + "body": "thanks, I hope there will soon be proper support and functionality for viewing followers and their posts and similar things.", + "cashout_time": "1969-12-31T23:59:59", + "category": "wallpaper", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-08T20:29:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 513207, + "json_metadata": "{\"tags\":[\"wallpaper\"]}", + "last_payout": "2016-09-08T03:01:09", + "last_update": "2016-08-08T20:29:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-herzmeister-marathonissi-turtle-island-laganas-greece-20160808t132357110z", + "percent_steem_dollars": 10000, + "permlink": "re-knozaki2015-re-herzmeister-marathonissi-turtle-island-laganas-greece-20160808t203030390z", + "reward_weight": 10000, + "root_author": "herzmeister", + "root_permlink": "marathonissi-turtle-island-laganas-greece", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T07:18:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hhcwebmaster", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hey thank you! took effort to put it together this way into sections.. my mind is everywhere!! haha... & It's quite simple .. I am using headers .. from h1 to h3 .... Use brackets.. <---> [h1] TITLE HEADLINE [/h1]", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-30T07:18:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 349149, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-29T20:08:06", + "last_update": "2016-07-30T07:18:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "knozaki2015", + "parent_permlink": "re-hhcwebmaster-greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself-20160730t071432435z", + "percent_steem_dollars": 10000, + "permlink": "re-knozaki2015-re-hhcwebmaster-greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself-20160730t071816576z", + "reward_weight": 10000, + "root_author": "hhcwebmaster", + "root_permlink": "greetings-i-am-hip-hop-living-for-a-cause-not-just-because-introduceyourself", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-18T20:37:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hisnameisolllie", + "author_rewards": 0, + "beneficiaries": [], + "body": "You Edited ;)\n\nI agree.\n\nI understand that (promotion of earnings), and I've certainly been guilty of that in the past. I think that once we've 'been around the block' a few times on Steemit, I believe we need to start being a little more realistic with our pitches. \n\nAs the user base increases, the odd's of hitting a $5,000 post diminish rapidly. Steemit has merits in it's own rights, but not too many people are talking about them...", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit-future", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-18T19:29:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 660065, + "json_metadata": "{\"tags\":[\"steemit-future\"]}", + "last_payout": "2016-08-19T22:34:03", + "last_update": "2016-08-18T19:35:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-hisnameisolllie-one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons-20160818t192526842z", + "percent_steem_dollars": 10000, + "permlink": "re-knozaki2015-re-hisnameisolllie-one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons-20160818t192942365z", + "reward_weight": 10000, + "root_author": "hisnameisolllie", + "root_permlink": "one-thing-that-is-important-to-steemit-s-longevity-inspiried-by-anyx-tragedy-of-the-commons", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json index 1cdc4356..92a98493 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json @@ -10,7 +10,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T18:12:39", "category": "foodchallenge", "children": 0, "children_abs_rshares": 0, @@ -23,7 +23,7 @@ "depth": 2, "id": 1030162, "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T18:12:39", "max_accepted_payout": { "amount": "1000000000", @@ -59,7 +59,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "You won't get much out of me, I only hooked for a few months, but maybe if you give me some time I can come up with some better stories :)", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-08-28T08:36:18", "category": "interview", "children": 1, "children_abs_rshares": 0, @@ -72,7 +72,7 @@ "depth": 3, "id": 917604, "json_metadata": "{\"tags\":[\"interview\"]}", - "last_payout": "2016-08-21T21:30:09", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-21T08:36:18", "max_accepted_payout": { "amount": "1000000000", @@ -206,7 +206,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "I'll be there", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-15T22:49:18", "category": "food", "children": 0, "children_abs_rshares": 0, @@ -219,7 +219,7 @@ "depth": 3, "id": 1178172, "json_metadata": "{\"tags\":[\"food\"]}", - "last_payout": "2016-09-09T23:09:36", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-09-08T22:49:18", "max_accepted_payout": { "amount": "1000000000", @@ -304,7 +304,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Many people just go around and here is so much to see and do. Follow the series and you'll buy the ticket very soon. Just let me know when you are coming because here the beer is also nice :)", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-08-27T07:59:57", "category": "travel", "children": 1, "children_abs_rshares": 0, @@ -317,7 +317,7 @@ "depth": 2, "id": 902535, "json_metadata": "{\"tags\":[\"travel\"]}", - "last_payout": "2016-08-20T23:50:45", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-20T07:59:57", "max_accepted_payout": { "amount": "1000000000", @@ -451,7 +451,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "You Edited ;)\n\nI agree.\n\nI understand that (promotion of earnings), and I've certainly been guilty of that in the past. I think that once we've 'been around the block' a few times on Steemit, I believe we need to start being a little more realistic with our pitches. \n\nAs the user base increases, the odd's of hitting a $5,000 post diminish rapidly. Steemit has merits in it's own rights, but not too many people are talking about them...", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-08-25T19:29:42", "category": "steemit-future", "children": 2, "children_abs_rshares": 0, @@ -464,7 +464,7 @@ "depth": 2, "id": 876248, "json_metadata": "{\"tags\":[\"steemit-future\"]}", - "last_payout": "2016-08-19T22:34:03", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-18T19:35:03", "max_accepted_payout": { "amount": "1000000000", diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink.orig.json b/hivemind/tavern/database_api_patterns/list_comments_permlink.orig.json new file mode 100644 index 00000000..609e5d68 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": "920389243926", + "active": "2016-08-18T03:32:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 501045, + "beneficiaries": [], + "body": "As you know, witness nodes are an essential part of the STEEM universe.\n\nIf I have a witness node with as much as (or as little as) 3% of witness approval, I can choose the right time to shut it down, listen to my favourite music album, walk my cat, and then start it up again, most probably without missing a block.\nA full-time witness, or one of the top19 witnesses, needs to produce blocks 1600 times more frequently.\nMaintaining such a server in the long run is not an easy task.\n\nWitnesses are vulnerable to DDoS attacks. An attacker who knows the network location of your witness node can saturate your uplink to a level that makes you unable to produce blocks on time. Effectively, this means **voting the witness out using a network-level attack**. Finding the IP address of your witness node is easier than you might think. Even if you follow the guidelines for setting up your public seed node on a different machine than the one you used to get your witness running, your witness still needs to connect to other nodes in the network.\nSo what does this mean? Take a look at: http://seeds.quisquis.de/steem.html\n(service provided by cyrano.witness)\n\nDoes any of these IP addresses look familiar?\nThe attacker still doesn't know which of them is yours, right?\n\nAn attack that makes the target IP unavailable for 3 seconds? Not exactly a difficult thing to do, right? So the attacker needs to make a guess by choosing from a set of suspected IP addresses he has obtained. Guessing doesn't cost him much. Neither does a high volume, short period DDoS attack. After that, he can see that your `total_missed` count increases, and he knows he guessed correctly. And then you are out.\n\n![witness](https://grey.house/img/witness2.jpg)\n\n## A concept of infrastructure: ##\n\n2 witness nodes (primary and backup)\n4 dedicated seed nodes\n\nOne witness node has your current signing key and does its job. The other is for failover, backup purposes. For example, whenever you need to upgrade your witness binary, you do that on the backup witness node, then change your signing key, so the backup node and the primary node switch their roles. \n**(Never leave your current signing key on two nodes at the same time!)**\n\nThese 4 seed nodes mentioned here only work on behalf of your witness i.e. they don\u2019t provide seed service on public network interfaces. \n_Your public seed node is not within the scope of this document._\n\nYour witness node connects **ONLY** to your seed nodes using VLAN or another private, low latency network solution of your choice. All other incoming/outgoing connections should be blocked except for the secure shell, preferably limited to access only from your IPs.\n\nEach seed node should be in a separate datacenter, ideally in a different part of the world, never in the same location as any of your (primary/backup) witness nodes. The purpose is to minimize the effects of a successful DDoS attack.\n\n_Please note that setting up all seed nodes in a single data center won\u2019t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway._\n\n```\n +---+\n + +----+ | |\n | | |<-->| B |\n +--+ S1 |<-->| i |\n | | |<-->| g |\n | +----+ | |\n+------+ | | B |\n| +-+ +----+ | a |\n| W(p) | | | |<-->| d |\n| | +--+ S2 |<-->| |\n+------+ | | |<-->| U |\n | +----+ | g |\n VLAN| | l |\n | +----+ | y |\n+------+ | | |<-->| |\n| | +--+ S3 |<-->| I |\n| W(b) | | | |<-->| n |\n| +-+ +----+ | t |\n+------+ | | e |\n | +----+ | r |\n | | |<-->| n |\n +--+ S4 |<-->| e |\n | | |<-->| t |\n + +----+ | |\n +---+\n```\n```\nW(p) - primary witness\nW(b) - backup witness\nS1-4 - seed nodes\n```\nOf course, you need to keep your seed nodes (at least one of them) running all the time, otherwise your witness will not be able to sync the blockchain.\nBut if you do the math, you will see that the odds that all your seed nodes stop working at the same time are much lower than the chances that this happens to your witness node. \n\n\nIf one of your seed nodes falls victim to a DDoS attack, you can, depending on the features offered by your infrastructure provider:\n- do nothing (until most of them are targeted at the same time)\n- change its external interface IP address, routing the old one to a black hole\n- set up a new, additional, temporary seed node somewhere else\n- replace that seed node with a new one in another location\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 14, + "children_abs_rshares": "1000824866058", + "created": "2016-08-16T18:11:03", + "curator_payout_value": { + "amount": "243149", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 630322, + "json_metadata": "{\"tags\":[\"witness-category\",\"security\",\"steem\",\"steemit\"],\"links\":[\"https://steemit.com/witness-category/@gtg/witness-gtg\"]}", + "last_payout": "2016-08-17T20:13:00", + "last_update": "2016-08-16T18:11:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-08-31T20:14:30", + "net_rshares": "920389243926", + "net_votes": 177, + "parent_author": "", + "parent_permlink": "witness-category", + "percent_steem_dollars": 10000, + "permlink": "heavy-duty-witness-node-infrastructure", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "heavy-duty-witness-node-infrastructure", + "title": "Heavy duty witness node infrastructure", + "total_payout_value": { + "amount": "745053", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "920389243926" + }, + { + "abs_rshares": 0, + "active": "2016-07-10T12:39:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 1135218, + "beneficiaries": [], + "body": "I'm Gandalf.\nThat's not my real name, but even my mom saved my number as ***Gandalf*** in her phone contact list.\nThat counts, right?\nI'm an IT Wizard, system admin, happily married, owner of a cat.\nOwned by a cat.\n\n![Nyunya](https://grey.house/img/niunia.jpg)\n\n**Nyunya** *(The Cat)* wants to watch everything I do, that's just her way of lending a helping paw. I\u2019m not sure if she is so fascinated by what I do or she wants to make sure I do it right.\n\nWhy am I here? What is my motivation?\nNot much different from that guiding my cat:\nCuriosity and to be a witness (node?) of what is emerging here.\n\nMay the STEEM be with you!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-07-03T16:35:03", + "curator_payout_value": { + "amount": "16244", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 36906, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"cats\"],\"image\":[\"https://grey.house/img/niunia.jpg\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-10T12:39:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_steem_dollars": 10000, + "permlink": "hello-world", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "Hello, World!", + "total_payout_value": { + "amount": "254288", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-27T18:39:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 241, + "beneficiaries": [], + "body": "Suppose your miner node found `pow2`, but your `total_missed` count increased, instead of generating a block.\n\nIf this happens, double check your keys used in the `config.ini` file.\n\n```\nwitness = \"minerwitness\"\n\nminer = [\"minerwitness\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner1\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner2\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner3\",\"WIF_ACTIVE_PRIVATE_KEY\"]\n\nmining-threads = 4\n\nprivate-key = WIF_SIGNING_PRIVATE_KEY\n```\n\nUsing keys without paying attention to their roles is a common mistake. @artakan [found out](https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account \"@artakan - Do not use your steemit.com account for mining\")\nthat issues with missing blocks tend to happen when you are using an account that was created through [steemit.com](https://steemit.com/ \"Blogging is the new mining\") but seems to work for the mined account.\n\nSo erroneous configuration might work for your mined account by pure coincidence. In other words, the same key has been defined for all roles, so: `WIF_ACTIVE_PRIVATE_KEY` is exactly the same as `WIF_SIGNING_PRIVATE_KEY`.\n\n![witness](https://grey.house/img/witness2.jpg)\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 6, + "children_abs_rshares": 0, + "created": "2016-08-21T12:29:18", + "curator_payout_value": { + "amount": "79", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 693873, + "json_metadata": "{\"tags\":[\"mining\",\"steem\",\"steem-mining\"],\"users\":[\"artakan\"],\"links\":[\"https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account\"]}", + "last_payout": "2016-08-22T13:01:45", + "last_update": "2016-08-21T13:02:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 26, + "parent_author": "", + "parent_permlink": "mining", + "percent_steem_dollars": 10000, + "permlink": "missing-rewards-while-mining", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "missing-rewards-while-mining", + "title": "Missing rewards while mining - common mistake with keys", + "total_payout_value": { + "amount": "353", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-31T20:57:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hello Alex, welcome to steemit! :-)", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-31T20:57:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 817048, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-09-01T19:22:30", + "last_update": "2016-08-31T20:57:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "amcq", + "parent_permlink": "hello-steemit-i-m-alex-a-new-member-of-the-steemit-team", + "percent_steem_dollars": 10000, + "permlink": "re-amcq-hello-steemit-i-m-alex-a-new-member-of-the-steemit-team-20160831t205719836z", + "reward_weight": 10000, + "root_author": "amcq", + "root_permlink": "hello-steemit-i-m-alex-a-new-member-of-the-steemit-team", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 1067633479, + "active": "2016-08-26T21:16:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hello Ania, welcome to steemit! :-)", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-26T18:53:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 758424, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-27T21:18:18", + "last_update": "2016-08-26T18:53:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 1067633479, + "net_votes": 2, + "parent_author": "ania", + "parent_permlink": "hello-world", + "percent_steem_dollars": 10000, + "permlink": "re-ania-hello-world-20160826t185305711z", + "reward_weight": 10000, + "root_author": "ania", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 1067633479 + }, + { + "abs_rshares": 0, + "active": "2016-09-15T14:11:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "True, as well as encouraging others to try to do the same :-)", + "cashout_time": "1969-12-31T23:59:59", + "category": "stats", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-15T14:11:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 5, + "id": 958255, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T14:11:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "arcange", + "parent_permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", + "percent_steem_dollars": 10000, + "permlink": "re-arcange-re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t141107191z", + "reward_weight": 10000, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-15T14:11:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "I noticed that just after writing a comment (when went back to continue reading ... ) ___Thank you___ for pointing out. :-)", + "cashout_time": "1969-12-31T23:59:59", + "category": "stats", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-09-15T13:19:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 957804, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T13:19:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "arcange", + "parent_permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", + "percent_steem_dollars": 10000, + "permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", + "reward_weight": 10000, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-15T14:11:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "@arcange, please do not underestimate ___\"Thank you\"___ while searching for ___\"Thanks\"___ ;-)\n\nThank you,\n[Gandalf](https://steemit.com/@gtg) (\"gtg\")", + "cashout_time": "1969-12-31T23:59:59", + "category": "stats", + "children": 4, + "children_abs_rshares": 0, + "created": "2016-09-15T13:04:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 957696, + "json_metadata": "{\"tags\":[\"stats\"],\"users\":[\"arcange\"],\"links\":[\"https://steemit.com/@gtg\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-15T13:08:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "arcange", + "parent_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "percent_steem_dollars": 10000, + "permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", + "reward_weight": 10000, + "root_author": "arcange", + "root_permlink": "steemsql-com-a-deep-analysis-of-steemians-gratefulness", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-21T12:33:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 27, + "beneficiaries": [], + "body": "There's nothing wrong with mining using your _\"steemit.com account\"_. It's **all about your keys** and using **proper miner configuration**. I tried to explain common mistake https://steemit.com/mining/@gtg/missing-rewards-while-mining", + "cashout_time": "1969-12-31T23:59:59", + "category": "mining", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-21T12:33:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 693917, + "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https://steemit.com/mining/@gtg/missing-rewards-while-mining\"]}", + "last_payout": "2016-08-22T10:51:00", + "last_update": "2016-08-21T12:33:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "artakan", + "parent_permlink": "important-info-for-steem-miner-do-not-use-your-steemit-com-account", + "percent_steem_dollars": 10000, + "permlink": "re-artakan-important-info-for-steem-miner-do-not-use-your-steemit-com-account-20160821t123356072z", + "reward_weight": 10000, + "root_author": "artakan", + "root_permlink": "important-info-for-steem-miner-do-not-use-your-steemit-com-account", + "title": "", + "total_payout_value": { + "amount": "39", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T19:19:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hello @artywah, welcome to steemit! :-)\nHint: Adding a picture to your post could make it more appealing.\n( I used my cat for that ;-) )", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-29T19:19:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 792758, + "json_metadata": "{\"tags\":[\"introduceyourself\"],\"users\":[\"artywah\"]}", + "last_payout": "2016-08-30T18:28:06", + "last_update": "2016-08-29T19:19:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "artywah", + "parent_permlink": "self-proclaimed-geek-and-digital-ancient-in-melbourne-australia", + "percent_steem_dollars": 10000, + "permlink": "re-artywah-self-proclaimed-geek-and-digital-ancient-in-melbourne-australia-20160829t191915549z", + "reward_weight": 10000, + "root_author": "artywah", + "root_permlink": "self-proclaimed-geek-and-digital-ancient-in-melbourne-australia", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json index bc3ec985..884bf517 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json @@ -10,7 +10,7 @@ "author_rewards": 501045, "beneficiaries": [], "body": "As you know, witness nodes are an essential part of the STEEM universe.\n\nIf I have a witness node with as much as (or as little as) 3% of witness approval, I can choose the right time to shut it down, listen to my favourite music album, walk my cat, and then start it up again, most probably without missing a block.\nA full-time witness, or one of the top19 witnesses, needs to produce blocks 1600 times more frequently.\nMaintaining such a server in the long run is not an easy task.\n\nWitnesses are vulnerable to DDoS attacks. An attacker who knows the network location of your witness node can saturate your uplink to a level that makes you unable to produce blocks on time. Effectively, this means **voting the witness out using a network-level attack**. Finding the IP address of your witness node is easier than you might think. Even if you follow the guidelines for setting up your public seed node on a different machine than the one you used to get your witness running, your witness still needs to connect to other nodes in the network.\nSo what does this mean? Take a look at: http://seeds.quisquis.de/steem.html\n(service provided by cyrano.witness)\n\nDoes any of these IP addresses look familiar?\nThe attacker still doesn't know which of them is yours, right?\n\nAn attack that makes the target IP unavailable for 3 seconds? Not exactly a difficult thing to do, right? So the attacker needs to make a guess by choosing from a set of suspected IP addresses he has obtained. Guessing doesn't cost him much. Neither does a high volume, short period DDoS attack. After that, he can see that your `total_missed` count increases, and he knows he guessed correctly. And then you are out.\n\n![witness](https://grey.house/img/witness2.jpg)\n\n## A concept of infrastructure: ##\n\n2 witness nodes (primary and backup)\n4 dedicated seed nodes\n\nOne witness node has your current signing key and does its job. The other is for failover, backup purposes. For example, whenever you need to upgrade your witness binary, you do that on the backup witness node, then change your signing key, so the backup node and the primary node switch their roles. \n**(Never leave your current signing key on two nodes at the same time!)**\n\nThese 4 seed nodes mentioned here only work on behalf of your witness i.e. they don\u2019t provide seed service on public network interfaces. \n_Your public seed node is not within the scope of this document._\n\nYour witness node connects **ONLY** to your seed nodes using VLAN or another private, low latency network solution of your choice. All other incoming/outgoing connections should be blocked except for the secure shell, preferably limited to access only from your IPs.\n\nEach seed node should be in a separate datacenter, ideally in a different part of the world, never in the same location as any of your (primary/backup) witness nodes. The purpose is to minimize the effects of a successful DDoS attack.\n\n_Please note that setting up all seed nodes in a single data center won\u2019t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway._\n\n```\n +---+\n + +----+ | |\n | | |<-->| B |\n +--+ S1 |<-->| i |\n | | |<-->| g |\n | +----+ | |\n+------+ | | B |\n| +-+ +----+ | a |\n| W(p) | | | |<-->| d |\n| | +--+ S2 |<-->| |\n+------+ | | |<-->| U |\n | +----+ | g |\n VLAN| | l |\n | +----+ | y |\n+------+ | | |<-->| |\n| | +--+ S3 |<-->| I |\n| W(b) | | | |<-->| n |\n| +-+ +----+ | t |\n+------+ | | e |\n | +----+ | r |\n | | |<-->| n |\n +--+ S4 |<-->| e |\n | | |<-->| t |\n + +----+ | |\n +---+\n```\n```\nW(p) - primary witness\nW(b) - backup witness\nS1-4 - seed nodes\n```\nOf course, you need to keep your seed nodes (at least one of them) running all the time, otherwise your witness will not be able to sync the blockchain.\nBut if you do the math, you will see that the odds that all your seed nodes stop working at the same time are much lower than the chances that this happens to your witness node. \n\n\nIf one of your seed nodes falls victim to a DDoS attack, you can, depending on the features offered by your infrastructure provider:\n- do nothing (until most of them are targeted at the same time)\n- change its external interface IP address, routing the old one to a black hole\n- set up a new, additional, temporary seed node somewhere else\n- replace that seed node with a new one in another location\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", - "cashout_time": "2016-09-16T20:13:00", + "cashout_time": "2016-08-23T18:11:03", "category": "witness-category", "children": 14, "children_abs_rshares": "1000824866058", @@ -30,7 +30,7 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-08-31T20:14:30", + "max_cashout_time": "1969-12-31T23:59:59", "net_rshares": "920389243926", "net_votes": 177, "parent_author": "", @@ -108,7 +108,7 @@ "author_rewards": 241, "beneficiaries": [], "body": "Suppose your miner node found `pow2`, but your `total_missed` count increased, instead of generating a block.\n\nIf this happens, double check your keys used in the `config.ini` file.\n\n```\nwitness = \"minerwitness\"\n\nminer = [\"minerwitness\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner1\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner2\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner3\",\"WIF_ACTIVE_PRIVATE_KEY\"]\n\nmining-threads = 4\n\nprivate-key = WIF_SIGNING_PRIVATE_KEY\n```\n\nUsing keys without paying attention to their roles is a common mistake. @artakan [found out](https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account \"@artakan - Do not use your steemit.com account for mining\")\nthat issues with missing blocks tend to happen when you are using an account that was created through [steemit.com](https://steemit.com/ \"Blogging is the new mining\") but seems to work for the mined account.\n\nSo erroneous configuration might work for your mined account by pure coincidence. In other words, the same key has been defined for all roles, so: `WIF_ACTIVE_PRIVATE_KEY` is exactly the same as `WIF_SIGNING_PRIVATE_KEY`.\n\n![witness](https://grey.house/img/witness2.jpg)\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", - "cashout_time": "2016-09-21T13:01:45", + "cashout_time": "2016-08-28T12:29:18", "category": "mining", "children": 6, "children_abs_rshares": 0, @@ -129,7 +129,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 568650179247, "net_votes": 26, "parent_author": "", "parent_permlink": "mining", @@ -144,8 +144,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 2280408989881311121, + "vote_rshares": 568650179247 }, { "abs_rshares": 0, @@ -157,7 +157,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Hello Alex, welcome to steemit! :-)", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-07T20:57:24", "category": "introduceyourself", "children": 0, "children_abs_rshares": 0, @@ -170,7 +170,7 @@ "depth": 1, "id": 1076078, "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "2016-09-01T19:22:30", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-31T20:57:24", "max_accepted_payout": { "amount": "1000000000", @@ -206,7 +206,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Hello Ania, welcome to steemit! :-)", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-02T18:53:09", "category": "introduceyourself", "children": 1, "children_abs_rshares": 0, @@ -219,7 +219,7 @@ "depth": 1, "id": 1002047, "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "2016-08-27T21:18:18", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-26T18:53:09", "max_accepted_payout": { "amount": "1000000000", @@ -227,7 +227,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 1067633479, + "net_rshares": 11126043440, "net_votes": 2, "parent_author": "ania", "parent_permlink": "hello-world", @@ -243,7 +243,7 @@ "precision": 3 }, "total_vote_weight": 0, - "vote_rshares": 1067633479 + "vote_rshares": 11126043440 }, { "abs_rshares": 0, @@ -255,7 +255,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "True, as well as encouraging others to try to do the same :-)", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-22T14:11:09", "category": "stats", "children": 0, "children_abs_rshares": 0, @@ -304,7 +304,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "I noticed that just after writing a comment (when went back to continue reading ... ) ___Thank you___ for pointing out. :-)", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-22T13:19:24", "category": "stats", "children": 2, "children_abs_rshares": 0, @@ -353,7 +353,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "@arcange, please do not underestimate ___\"Thank you\"___ while searching for ___\"Thanks\"___ ;-)\n\nThank you,\n[Gandalf](https://steemit.com/@gtg) (\"gtg\")", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-22T13:04:12", "category": "stats", "children": 4, "children_abs_rshares": 0, @@ -393,7 +393,7 @@ "vote_rshares": 0 }, { - "abs_rshares": 0, + "abs_rshares": 59659471891, "active": "2016-08-21T12:33:57", "allow_curation_rewards": true, "allow_replies": true, @@ -402,7 +402,7 @@ "author_rewards": 27, "beneficiaries": [], "body": "There's nothing wrong with mining using your _\"steemit.com account\"_. It's **all about your keys** and using **proper miner configuration**. I tried to explain common mistake https://steemit.com/mining/@gtg/missing-rewards-while-mining", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-08-28T12:33:57", "category": "mining", "children": 0, "children_abs_rshares": 0, @@ -423,7 +423,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 59659471891, "net_votes": 3, "parent_author": "artakan", "parent_permlink": "important-info-for-steem-miner-do-not-use-your-steemit-com-account", @@ -438,8 +438,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 271087517848712402, + "vote_rshares": 59659471891 }, { "abs_rshares": 0, @@ -451,7 +451,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Hello @artywah, welcome to steemit! :-)\nHint: Adding a picture to your post could make it more appealing.\n( I used my cat for that ;-) )", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-05T19:19:18", "category": "introduceyourself", "children": 0, "children_abs_rshares": 0, @@ -464,7 +464,7 @@ "depth": 1, "id": 1045369, "json_metadata": "{\"tags\":[\"introduceyourself\"],\"users\":[\"artywah\"]}", - "last_payout": "2016-08-30T18:28:06", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-29T19:19:18", "max_accepted_payout": { "amount": "1000000000", diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.orig.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.orig.json new file mode 100644 index 00000000..cc44e2d0 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": "4923114688969", + "active": "2016-09-11T05:54:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 1248581, + "beneficiaries": [], + "body": "http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\n\n# Hello Steemit!\n\nI am a bush-pilot, aerial photographer, and explorer. \n\nOur world is truly beautiful from up here!! And to share how I see it, I am developing an immersive project called **Where Eagles Fly** and would love to introduce myself and the project to the Steemit community. \n\nMy name is **Gerald Zedekiah Morse**, I go by **Zedekiah** or **Z** for short. \n\nOf course here on Steemit I am \"**skypilot**\".\n\nI was only recently introduced to Steemit by a friend. I find the entire construct of a blockchain content distribution platform to be fascinating. Centralized mass distribution of content is still very much under a gatekeeper rule and I would love to bypass this as much as possible. Steemit and other kindred platforms such as lbry.io, ascribe.io and many others all provide valuable tools that will greatly assist in the launch, success, and ongoing control of my project content. There is much to learn, and I look forward to the journey! \n\nhttp://geraldzmorse.com/images/steemit/howdysteemit.jpg\n*My proof of life - at my hangar on 8/23/16 with the Bluebird*\n\nIf you would like to see an example of my project and the work I do, please click on the image below which will take you to my website which has a Vimeo clip embedded on it. *(Unfortunately at this time Steemit does not support Vimeo and I do not like the compression quality of YouTube.)* I would right-click to open the link in a new tab so you keep Steemit open and don't lose your place. \n\n[![Your text here](http://geraldzmorse.com/images/steemit/Piclink-1.jpg)](http://geraldzmorse.com/Love_of_Nature.html \"Click Here To Play - a Love of Natue\")\n\n## My Background\nI am a music composer, pianist, recording engineer, and sound designer. I work mostly as a ghost composer and arranger on film soundtracks and trailers. I love many different styles of music and experiment with recording any genre or style the muse provides. If you would care to listen to my music, visit my listing on [SoundCloud/ZMorse](https://soundcloud.com/zmorse/sets), but please realize, it is not for everyone. Lots of different styles are on there, and I change the material all the time since I have a substantial library to choose from.\n\nhttp://geraldzmorse.com/images/steemit/zinstudio-1.jpg\n*Z in the Studio Mixing Film Music*\n\nIn addition to music production, I also code, develop virtual production technology and work as a disruptive technologist. But mostly I am an emerging filmmaker and content creator. For this project, I do everything possible to insure the content is not unduly influenced by outside sources. For that reason, I do literally everything: pilot, aerial photography (cinematography), post-production editing, music composition, sound design, graphics and motion graphics. \n\nI will work with other people in the development of the various post-production components involved in distributing the project content, and when the project is ready I will get a professional voice over artist for the narration of the various film and episodic chapter components. I'd love to get someone like Sam Elliot or Morgan Freeman!\n\n\n\n## I Love To Fly\nIt feels like I was born a pilot. My father was a test pilot for the B58 Hustler and then an aeronautical engineer for NASA during the Apollo program. Those were heady days. Most folks don\u2019t realize, but back when Silicon Valley was just another small California suburb of San Francisco, and long before the advent of the Internet and rise of technology as we know it today, there were two very advanced scientific centers of technology that few knew about outside of the NASA community: Nassau Bay, Texas, and Huntsville, Alabama. \n\nhttp://geraldzmorse.com/images/steemit/B58-team.jpg\n*My father and test crew for the B58 Hustler circa 1960*\n\nThese were the Silicon Valleys of the day back in the 1960\u2019s and 70\u2019s. Huntsville, Alabama, was home to Marshal Space Center, and Nassau Bay, Texas, was home to Johnson Space Center. I grew up between those two places because my dad was transferred back and forth every couple of years as the Apollo program progressed. This is something I will write about in another article due to there being a lot of interesting things to discuss from that era. What\u2019s important is the impact exposure to this unique community had on me. I developed a love of science and engineering and a wanderlust for space exploration that has had an ongoing effect on me. I still gaze into the night sky in wonderment at the possibilities of what is out there, of what we do not know. I truly love the unknown.\n\nWhen I was a child, my father took me flying a lot, most of the time we had to sneak out of the house because mom was so scared we would crash. Pops would always make me promise not to tell her when we were out doing aerobatics or flying through the mountains and landing on riverbanks. I\u2019m grateful for the influence he had on my life, and the exposure to the science and engineering of flight that has shaped my life. But also in the type of aircraft and flying I am attracted to. I have never been interested in the fast moving jets or high altitude aircraft, instead prefer flying low and slow above the beautiful back-country, experiencing views I know very few people, if any, ever get to see. So this means I require a particular type of aircraft that can safely operate in these rough, rugged, and primitive locations.\n\nhttp://geraldzmorse.com/images/steemit/ZFlying-1.jpg\n*Flying My Bluebird In The Wilderness*\n\nI exclusively fly small bush planes. These aircraft do not require a normal paved runway to take off and land on. All I really need is a somewhat flat space a few hundred feet long, the smoother the better, but not necessary. You have to be very careful landing in short places, as you run the risk of being unable to take off from there again. This is why careful planning and attention to weather conditions and surface terrain are paramount! I also fly float planes, even crashed one a long time ago in the wilderness and had to egress the aircraft underwater as it was rapidly sinking! *(Another story for another time)*.\n\nhttp://geraldzmorse.com/images/steemit/airplanecamp-1.jpg\n*Camping on the Cumberland Plateau, Tennessee*\n\nCamping with an airplane in the wild is an experience of either extreme solitude, when I am out there by myself, or great camaraderie with a very small group of pilots who love the back-country as much as I. We have fly-in's where groups of pilots, young and old, male and female and lots of families all come together to camp out in these hard-to-reach locations.\n\nLanding and taking off on river banks, tops of cliffs, mountain saddle backs or meadows, which are always deep in the wilderness and far from civilization or help, are standard operations. Planning and proper equipment are necessary for survival, and knowledge with continuous training will keep you alive when things get spicy! You can count on the weather to be unpredictable, changing rapidly with little warning when you fly and camp deep in the mountainous hinterlands. Vigilance and a keen sense of awareness must be enacted at all times, especially in the air but also down on the ground, particularly when camping in the wild. \nBecause...*critters!*\n\nAll sorts of wild animals like coyotes, moose, elk, wolves, and bears will come into camp. We all know that they can be a curious lot and after all, this is their home and we are just visitors. Mostly, they are looking for food, especially bears. I am sure you have all seen this photo of a bush-plane that got a bit chewed on? *Never* ever store food in the airplane, not even something as small as a candy bar\u2015especially if it is covered with fabric and not metal, though aluminum skin probably would have suffered badly as well. I reckon that bear was pretty determined and that fabric skin cut like butter with those sharp claws!\n\nhttp://geraldzmorse.com/images/steemit/BearAttack.jpg\n*Bear damage on an aircraft similar to my Bluebird*\n\n# Culmination of My Life's Work\n\nYears ago, I began taking photos while flying and camping in the back-country. Over time, camera technology exponentially reduced in form-factor while increasing in capabilities. I\u2019m now able to carry more powerful DSLR's with amazing capabilities, and I've gone through the gauntlet with different systems: Nikon, Sony, Canon, Hasselblad, and PhaseOne. Some work much better than others, there is no real magic bullet; however, I love the large-sensor-format-based systems because I desire to reproduce my images as large-scale prints.\n\nhttp://geraldzmorse.com/images/steemit/zshooting2.jpg\n*Shooting The Grand-Staircase Escalante in Utah*\n\nAs video camera technology matured into smaller form-factor systems, I began experimenting with mounting cameras all around the aircraft, outside and in the cockpit. It has taken quite a while to come up with solutions to mitigate camera vibration. The rolling shutter effect from these systems is always an issue, especially with the bending propeller which I really dislike. But I am using my current configuration as a test bed from which to design and build an aerial platform that will eliminate all of these problems. This new platform will be based on a global-shutter sensor with a custom camera control, mounting, and optical package. \n\nWith the advent of a powerful suite of post-production tools from Adobe Creative Cloud, I am able to leverage my knowledge of virtual production technology into the art of editing and film composition. Because I already do soundtrack work, it was a fairly logical step. With the combination of aerial photography, aerial footage, and music composition and recording, I have the ability to produce my own content. Hence the following project: \n\n# Where Eagles Fly \u2013 The American Wilderness Expedition\n\nFor the past few years, I've been exploring the remaining wilderness areas of North America and filming them from a space just a few hundred to a few thousand feet above ground. The view from this zone is incredible. To accomplish this, I fly into remote off-the-beaten-path locations that are very rarely visited and even more rarely seen from this special zone up in the air... **Where Eagles Fly** :)\n\n\nWhen you think about it, our view of the world is quite limited to either down on the ground or very high up in jet airliners. Both of these views are restricted by physical limitations such as line-of-sight with ground based views and limited fine-detail when viewing from airliners flying along at 35,000 feet or higher. \n\nhttp://geraldzmorse.com/images/steemit/Mojave-Mtns.jpg\n*Kokoweef Peak in the Mojave Desert*\n\n\nWhere I fly, earth colors interact with weather and atmospheric conditions to create incredible \u201cpaintings\u201d of nature that are stunning to behold. I see things that \u201cMove the Soul.\u201d I wish more people would get into flying like I did as a young man. Flying a drone is very cool, I own a number of them, but nothing compares to being there in person. The experience is worth the effort and the inherent danger. But I do realize that pressures from our socially-connected, Internet-influenced, technically-adapted and risk-averse lives somewhat limit the exposure to flying for most people. *Aha, this too, apparently, is another good subject for a future article*. \n\nMy goal is to chronicle the remaining 47% of the USA and 90% of Canada that are uninhabited and unaffected by the encroaching crush of civilization. By doing this, I hope to increase the lexicon with which we visually describe our planet \u2015 by providing a unique new view that illustrates the untamed beauty and ruggedness of these remarkable places. I also hope that people will become as entranced as I, and will be inspired to continue the difficult effort necessary to protect and preserve these wild places for future generations. \n\nhttp://geraldzmorse.com/images/steemit/Zion-1.jpg\n*Cougar Mountain in Zion National Park*\n\nFlying a bush-plane while shooting through an open window is not without its difficulties! The type of scenery I seek is dramatic, with weather playing a major role in providing the desired backdrop. For the cleanest, long distance large-area wilderness-landscape images, I require the clearness provided by the cold, dense air molecules of Fall, Winter, and early Spring months, without the aberrations and heat distortion of Summer. \n\n\nhttp://geraldzmorse.com/images/steemit/zshooting-1.jpg\n*Shooting the San Juan Mountains in Colorado*\n\nAs you can see this is not a large production crew type of project. This is me, all alone, in the wilderness up in the air looking for dramatic weather to juxtapose against dangerous mountains in marginal flight conditions. \n*Nice!!* \n\nTo share this journey, I am creating a highly interactive, immersive virtual journey which will allow you to experience the beauty and wonder of these extraordinary places from this unique perspective. *I will post this in a future article.* \n\n# Wilderness Landscape Photography As Fine Art\n\nThe static imagery can be distributed via a variety of compelling formats, using the Ken Burns effect to make short ambient vignettes. With this, I stream the images to digital frames, provide images as screen savers and mobile device backgrounds, etc. But what I truly love to do is turn them into prints. \n\nObviously, there are many ways to do this, from simple posters, calendars and greeting cards to printed apparel. All of these are , all very appealing. You can print on practically any surface. However, I want the images to really stand out, to grace the locations where they are placed. What is truly spectacular is to create large-format prints on different mediums. For now, there are three mediums I work with:\n\n1. Gicl\u00e9e prints on Canvas\n2. Chrome Metallic Paper Mounted on Acrylic\n3. Aluminum Plate\n\nEach of these mediums has different qualities which influence how the images appear. I have been fortunate to find both an amazing printer (they exclusively print for all the National Geographic Galleries) and a gallery willing to allow me to exhibit my works. To date, I have held two exhibitions in the Wyland Signature Gallery at the Planet Hollywood Resort and Casino in Las Vegas, Nevada. Both were a complete blast!\n\nhttp://geraldzmorse.com/images/steemit/zgallery-1.jpg\n*Part of My Exhibition at the Wyland Gallery in Planet Hollywood Las Vegas*\n\nIt was quite an interesting experience during the show, in that most of the time I felt like a museum docent explaining the story behind images. Folks are drawn to this unique view of nature, and seem to enjoy watching the in-flight footage showing how the images were acquired. \n\nPeople are not used to seeing wilderness landscape images from this perspective it's such an advantageous place to shoot from. It's not as though anyone can simply follow me up the trail and take the same photo! \n\n# That'a Wrap!\n\nOk, my fellow Steemers! That about wraps it up for this post, if you have stayed with me though this entire article, I thank you!! I would LOVE to get feedback from the community, and if there is interest, I will continue writing about this subject and will update the Steemit community as my project develops. \n\nPlease let me know what you think. And *Fly Safe!!*\n\nhttp://geraldzmorse.com/images/steemit/zlanding1.jpg\n*Landing Bluebird on the Mesa Top at Pearce Ferry, Arizona*", + "cashout_time": "2016-09-25T20:55:24", + "category": "introduceyourself", + "children": 112, + "children_abs_rshares": "5017117283364", + "created": "2016-08-24T21:24:33", + "curator_payout_value": { + "amount": "545355", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 736184, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"photography\",\"travel\",\"art\",\"music\"],\"image\":[\"http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\"]}", + "last_payout": "2016-08-26T20:55:24", + "last_update": "2016-08-26T18:45:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-09T20:56:57", + "net_rshares": "4923114688969", + "net_votes": 228, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_steem_dollars": 10000, + "permlink": "an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse", + "title": "Where Eagles Fly by Zedekiah Morse", + "total_payout_value": { + "amount": "1639386", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "4923114688969" + }, + { + "abs_rshares": 196185915, + "active": "2016-09-08T11:49:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 29701, + "beneficiaries": [], + "body": "# Ancient Mayan Design Aesthetic\nIt amazes me that the concept of basic design seems to have been around for many thousands of years. Think about that! Many centuries ago, some very important Mayan Scribe sat at their desktop and designed the layout below, working with what was at the time, leading edge communication technology. \n\nThis form of written communication was a technology that was only understood and utilized by an elite few. To me, this draws an compelling connection to our global ancestral makeup. What is interesting is that you can see a very strong resemblance to current design aesthetic with columns, tables, pictures (info-graphics) with wrap around text. \n\nThe way we visualize layout obviously goes way back in human history. \n

\nhttp://www.pasthorizonspr.com/wp-content/uploads/2016/08/Chichen2.jpg\n
*This image is from the article in Past Horizons listed below*
\n\nI know this is very different than the articles I usually post on my photography, but I felt compelled to share this so if you'd like to see the original article please go [here](http://www.pasthorizonspr.com/index.php/archives/08/2016/hieroglyphic-texts-reveal-maya-innovation-in-maths-and-astronomy). The article is about Mayan innovation in math and astronomy and is short and worth the read. \n\nThis article is from one of my favorite sites called **Past Horizons - Adventures in Archeology**. Please visit them if you are interested in archeology and human history. They always have something worth reading.\n
http://www.pasthorizonspr.com/wp-content/uploads/2014/10/smallLOGO@2x.png
", + "cashout_time": "2016-10-09T01:59:48", + "category": "life", + "children": 4, + "children_abs_rshares": 196185915, + "created": "2016-09-08T01:39:12", + "curator_payout_value": { + "amount": "3823", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 888391, + "json_metadata": "{\"tags\":[\"life\",\"art\",\"writing\",\"story\",\"news\"],\"image\":[\"http://www.pasthorizonspr.com/wp-content/uploads/2016/08/Chichen2.jpg\",\"http://www.pasthorizonspr.com/wp-content/uploads/2014/10/smallLOGO@2x.png\"],\"links\":[\"http://www.pasthorizonspr.com/index.php/archives/08/2016/hieroglyphic-texts-reveal-maya-innovation-in-maths-and-astronomy\"]}", + "last_payout": "2016-09-09T01:59:48", + "last_update": "2016-09-08T01:54:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-23T08:52:09", + "net_rshares": 196185915, + "net_votes": 54, + "parent_author": "", + "parent_permlink": "life", + "percent_steem_dollars": 10000, + "permlink": "ancient-mayan-wordpress-design", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "ancient-mayan-wordpress-design", + "title": "Ancient Mayan Wordpress Design!?!", + "total_payout_value": { + "amount": "23879", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 196185915 + }, + { + "abs_rshares": 0, + "active": "2016-09-09T11:25:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 7449, + "beneficiaries": [], + "body": "This was shot during a blizzard in Kit Carson Pass below Lake Tahoe. I couldn't leave so I took pictures. It was cold and the snow was falling almost horizontally and it was bright white. It got so bad a few times it was impossible to see more than a dozen feet away. \n\nhttp://geraldzmorse.com/images/steemit/Whiteout.jpg\n\nI find the contrast between the brilliant white and the colors of the trees intriguing .", + "cashout_time": "2016-10-09T22:54:12", + "category": "photography", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-09-08T22:00:09", + "curator_payout_value": { + "amount": "1308", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 896931, + "json_metadata": "{\"tags\":[\"photography\",\"nature\",\"art\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Whiteout.jpg\"]}", + "last_payout": "2016-09-09T22:54:12", + "last_update": "2016-09-08T23:05:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 47, + "parent_author": "", + "parent_permlink": "photography", + "percent_steem_dollars": 10000, + "permlink": "blizzard-whiteout-in-the-forest", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "blizzard-whiteout-in-the-forest", + "title": "Blizzard Whiteout in the Forest", + "total_payout_value": { + "amount": "5959", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "32969357867", + "active": "2016-09-02T20:48:45", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 15688, + "beneficiaries": [], + "body": "http://geraldzmorse.com/images/steemit/Vimeo_logo-2.png3fformat3d1500w.png\n\n# Howdy folks, Z here... \n\nI am very happy to announce that steemit has now made it possible to directly embed high quality Vimeo clips within the iframe structure provided by Vimeo.\n\nSimply drop your embed code in the editor as you would pictures or a Youtube clip and it should work fine: \n
\n\nIf you are interested in the post where this short vignette lives from please take a look at the first post about my project: [Where Eagles Fly](http://goo.gl/cliI88) \n\nPlease don't feel compelled to vote on this post... I am simply sharing the news so that when new users search about Vimeo they will find it is possible!\n\nThank you Steemit crew! This is awesome!", + "cashout_time": "2016-10-03T02:28:12", + "category": "photography", + "children": 13, + "children_abs_rshares": "32969357867", + "created": "2016-09-02T00:23:30", + "curator_payout_value": { + "amount": "4357", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 829916, + "json_metadata": "{\"tags\":[\"photography\",\"story\",\"steemit\",\"art\",\"news\"],\"links\":[\"http://goo.gl/cliI88\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Vimeo_logo-2.png3fformat3d1500w.png\"]}", + "last_payout": "2016-09-03T02:28:12", + "last_update": "2016-09-02T04:05:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-20T19:56:00", + "net_rshares": "32969357867", + "net_votes": 52, + "parent_author": "", + "parent_permlink": "photography", + "percent_steem_dollars": 10000, + "permlink": "filmmakers-of-steemit-rejoice-they-have-just-made-embedding-vimeo-in-your-posts-possible-yehaw", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "filmmakers-of-steemit-rejoice-they-have-just-made-embedding-vimeo-in-your-posts-possible-yehaw", + "title": "Filmmakers of Steemit Rejoice! Embedding Vimeo in your posts is now possible! Yehaw!", + "total_payout_value": { + "amount": "13992", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "32969357867" + }, + { + "abs_rshares": "140201312914", + "active": "2016-09-10T03:25:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 25890, + "beneficiaries": [], + "body": "This photo was shot from 9,500 feet up while I was flying towards the southwest after sunset. I am in the Flathead Mountains of Montana and the moisture in the air is condensing from the cool evening to create this mystical view of the mountains.\n\nhttp://geraldzmorse.com/images/steemit/FlatHeadatDusk.jpg\n\nThis is from a series of images I call \"Wilderness Alpenglow\". I enjoy how the image resembles classic Chinese or Japanese paintings of old.\n\nIf you want to see other work from my project **Where Eagles Fly** visit my first post [here](https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse) or second one [here](https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse).", + "cashout_time": "2016-10-06T03:47:51", + "category": "photography", + "children": 22, + "children_abs_rshares": "140201312914", + "created": "2016-09-04T19:31:03", + "curator_payout_value": { + "amount": "6541", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 856286, + "json_metadata": "{\"tags\":[\"photography\",\"travel\",\"art\",\"life\",\"nature\"],\"image\":[\"http://geraldzmorse.com/images/steemit/FlatHeadatDusk.jpg\"],\"links\":[\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\",\"https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse\"]}", + "last_payout": "2016-09-06T03:47:51", + "last_update": "2016-09-05T01:04:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-20T06:06:54", + "net_rshares": "140201312914", + "net_votes": 66, + "parent_author": "", + "parent_permlink": "photography", + "percent_steem_dollars": 10000, + "permlink": "flathead-mountains-and-the-great-bear-wilderness-at-dusk", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "flathead-mountains-and-the-great-bear-wilderness-at-dusk", + "title": "Flathead Mountains and the Great Bear Wilderness at Dusk", + "total_payout_value": { + "amount": "21746", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "140201312914" + }, + { + "abs_rshares": 113157676, + "active": "2016-09-12T14:37:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 1047, + "beneficiaries": [], + "body": "# Isolated Rain Storm \nI came upon this strange isolated rain storm over the Great Sand Dunes when I was flying out over the San Luis Valley while filming Zapata Ranch. It was clear skies about the rain clouds and clear all around it... yet it was raining on this stretch of the Sangre de Cristo Range in the Rocky Mountains. \n\nhttp://geraldzmorse.com/images/steemit/GreatDunesRainStorm1.jpg\n
*Eastern side of the Great Sand Dunes National Park*
\n\nIn this photo you can clearly see the curving edge of the sand dunes boundary where the dunes delineate from the San Luis Valley floor. These are the tallest sand dunes in North America reaching heights of 750 feet (228m).\n\n# Sand From an Ancient Glacial Lake \n\nThe dunes were formed within the last 500,000 years from sand and soil deposits of the Rio Grande and its tributaries as they spread out through the San Luis Valley. Over the ages, the glaciers melting created a vast lake in the San Luis Valley... as this lake and the waters evaporated and drained to form the river, it left behind massive volumes of loose sand. Westerly winds then picked up sand particles from the lake and river flood plain and carried them across the valley floor. As the wind diminished in power before crossing the Sangre de Cristo Range, the sand deposited all along the eastern edge of the valley. As the sand stacked up over time it became what we see today, the Great Sand Dunes National Park. \n\n\nhttp://geraldzmorse.com/images/steemit/GreatDunesRainStorm2.jpg\n
*Western side of the Great Sand Dunes National Park*
\n\nIn the photo above taken from the same position as the previous photograph, you can see the small Mount Seven Peak and behind it the snow capped 13,200 (4,023m) Cleveland Peak of the Sangre de Cristo Mountain Range peeking through the rain shower.\n\n# Whipped By Fierce Winds\nThe wind continues to whip about and shape and reshape the dunes on a daily basis, and continue to increase the volume of sand and size of the dunes. These fierce winds are strong enough to move sand and small rocks from miles away across the valley. While the dunes don't actually change location or vary in size that often, the wind forms parabolic dunes that grow in the sand sheet, the outer area around the dunes, and migrate towards the main dune field, giving a very prominent beveling or warping visual effect, especially notable from up above where I fly.\n\nLocated near Alamosa, Colorado just north of the Nature Conservancy's Zapata Ranch the dunes are a great place to visit. To check out the National Parks Service website on the Great Dunes National Park go [here](https://www.nps.gov/grsa/index.htm). \n\nAnd to check out my previous exciting fly-in trip to the Zapata Ranch to visit Duke Phillips the Flying Cowboy, go [here](https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse).\n\nIf you're unfamiliar with my work please check out my introductory post [here](https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse). \n\nOk thanks, hope you enjoy this and yehaw!", + "cashout_time": "2016-10-10T18:51:39", + "category": "photography", + "children": 7, + "children_abs_rshares": 113157676, + "created": "2016-09-09T11:04:21", + "curator_payout_value": { + "amount": "203", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 901103, + "json_metadata": "{\"tags\":[\"photography\",\"nature\",\"story\",\"life\",\"travel\"],\"image\":[\"http://geraldzmorse.com/images/steemit/GreatDunesRainStorm1.jpg\",\"http://geraldzmorse.com/images/steemit/GreatDunesRainStorm2.jpg\"],\"links\":[\"https://www.nps.gov/grsa/index.htm\",\"https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse\",\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\"]}", + "last_payout": "2016-09-10T18:51:39", + "last_update": "2016-09-09T11:15:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-26T14:36:45", + "net_rshares": 113157676, + "net_votes": 69, + "parent_author": "", + "parent_permlink": "photography", + "percent_steem_dollars": 10000, + "permlink": "isolated-rain-storm-on-the-great-sand-dunes-national-park", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "isolated-rain-storm-on-the-great-sand-dunes-national-park", + "title": "Rain Storm on the Great Sand Dunes National Park", + "total_payout_value": { + "amount": "807", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 113157676 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T04:09:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 3840, + "beneficiaries": [], + "body": "# Las Vegas Valley from the Sloan Mountains\n\nA rare perspective of the city sitting in the valley taken from above Sloan Mountains to the south. I never shoot images of cities or buildings, it's jut not my thing to do. I am an aerial wilderness photographer. However I got this while testing out a different camera.\n\nhttp://geraldzmorse.com/images/steemit/B6583414-Las-Vegas.jpg\n\nIn this uncommon point of view you can see that Las Vegas sits down in a valley, that is Gray Mountain in the distance and the foothills of Sloan Mountain in the foreground. To the bottom left, right above the small hills you can barely make out Henderson Executive Airport. \n\nThe image was captured late in the afternoon from an altitude of 4,500ft (1,371.6m) shooting towards the northeast.", + "cashout_time": "2016-10-12T14:32:39", + "category": "photography", + "children": 13, + "children_abs_rshares": 0, + "created": "2016-09-10T17:37:24", + "curator_payout_value": { + "amount": "791", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 913356, + "json_metadata": "{\"tags\":[\"photography\",\"travel\",\"art\",\"las-vegas\"],\"image\":[\"http://geraldzmorse.com/images/steemit/B6583414-Las-Vegas.jpg\"]}", + "last_payout": "2016-09-12T14:32:39", + "last_update": "2016-09-10T18:04:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 45, + "parent_author": "", + "parent_permlink": "photography", + "percent_steem_dollars": 10000, + "permlink": "las-vegas-valley", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "las-vegas-valley", + "title": "Las Vegas in the Valley", + "total_payout_value": { + "amount": "2756", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": "10027068167722", + "active": "2016-09-15T17:56:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 0, + "beneficiaries": [], + "body": "This is an unusual rock outcroping I photographed south of Mesa Verde, Colorado in the desert near my camp. I found the colors of the stone and desert sand juxtaposed against the background vermilion cliff walls and blue hued sky to be pleasing and relaxing. \n\nhttp://geraldzmorse.com/images/steemit/Mesa-Verde-Outcrop.jpg\n\nThis image is also from my Artistic Impression series where I use a digitizing tablet to lightly brush various filter effects into the image to give it a certain mysterious quality.", + "cashout_time": "2016-09-15T21:34:14", + "category": "photography", + "children": 11, + "children_abs_rshares": "10027068167722", + "created": "2016-09-14T14:46:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 949882, + "json_metadata": "{\"tags\":[\"photography\",\"art\",\"nature\",\"\"],\"image\":[\"http://geraldzmorse.com/images/steemit/Mesa-Verde-Outcrop.jpg\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-14T15:28:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-28T14:50:51", + "net_rshares": "10001278717808", + "net_votes": 44, + "parent_author": "", + "parent_permlink": "photography", + "percent_steem_dollars": 10000, + "permlink": "melting-rock", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "melting-rock", + "title": "Melting Rock", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": "13144057225008877639", + "vote_rshares": "9951683621819" + }, + { + "abs_rshares": 1230392222, + "active": "2016-08-28T03:46:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 1363, + "beneficiaries": [], + "body": "http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\nFellow steemers ! \n\nMy experiment on Steemit was a success. I earned $2,184.74 \n\nThe posts automatically last only 24 hours. If many people like them and upvote then they extend an additional 12 hours for a total run of 36 hours. Which mine did. \n\nOnce the post run-time is finished the post was automatically moved out of the 5 categories it was tagged in and placed in my blog page. It is still available for viewing and people can still vote on it, you can find it on my blog page. This is a necessary function of the fairness and democratic operations of this amazing website!!! How awesome is this!?!\n\nThis test was primarily undertaken to review the marketing viability of my project to the public, to see if everyone liked the concept and content. From the responses at the bottom of the post which are permanent, I would think the answer is a resounding yes. \n\nMore to come from this experiment later. Suffice to say I have established a presence and become part of the community on the most powerful cutting edge - platform/community in this new and very exciting cryptocurrency-based content-support market. \n\nI have taken the funds, held some as steem cryptocurrency and transferred the rest onto a cryptocurrency exchange called Poloniex where I am holding steem dollars (SBD) and watching the various cryptocurrencies valuation. The current SBD will increase in value or at any time I can transfer these to bitcoin or any of a number of other currencies.\n\nThis is absolutely cool!!!Thank you to the 217 steemers that upvoted me and even to the 2 that downvoted it...I sort of would like to know why but it really does not matter. \n\nPlease continue to enjoy my blog and I would love to continue building support for my project from the steemit community. I am a now a firm believer and strong advocate for steemit. \n\nMore to follow.\n\nz", + "cashout_time": "2016-09-27T01:41:27", + "category": "introduceyourself", + "children": 13, + "children_abs_rshares": 1230392222, + "created": "2016-08-26T22:53:00", + "curator_payout_value": { + "amount": "420", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 760944, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"photography\",\"art\",\"music\",\"travel\"],\"image\":[\"http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\"]}", + "last_payout": "2016-08-28T01:41:27", + "last_update": "2016-08-27T18:42:45", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-11T03:46:21", + "net_rshares": 1230392222, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_steem_dollars": 10000, + "permlink": "my-first-real-post-was-a-success-and-i-would-like-to-share-the-story", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "my-first-real-post-was-a-success-and-i-would-like-to-share-the-story", + "title": "My first real post was a success and I would like to share the story.", + "total_payout_value": { + "amount": "1501", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 1230392222 + }, + { + "abs_rshares": "6808732560425", + "active": "2016-09-07T16:30:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "skypilot", + "author_rewards": 199, + "beneficiaries": [], + "body": "For my entries into the 6th steemit photo contest I've chosen 3 unusual formations to share.\n\nIf you don't know anything about my work please visit my introduction post: \nhttps://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse \n\n**Image 1: BLUE POINT BAY**\nThis image was taken above Blue Point Bay on Lake Mead, Nevada. A powerful rain storm had just passed over and the earth was still soaked. The sun was coming back out and these vibrant, rich colors are from the water soaked natural minerals reacting to the bright sunlight. The green areas along the edge are the shallow water of the lake. I am about 2,000 feet above the lake shooting straight down from the airplane.\n\nhttp://geraldzmorse.com/images/steemit/BuePointBay.jpg\n\n**Image 2: SP VOLCANO** \nThis is a volcano just north of Flagstaff, Arizona simply known as \"SP Volcano\". I have searched high and low and cannot find any history on how it got this name. Certainly the Navajo First Nations called it something but I couldn't find mention of it anywhere. I love that this is a perfect representation of time-stood-still. You can see the how lava flowed down from the volcano, spilling out across the desert, coming to a standstill where it froze in time.\n\nhttp://geraldzmorse.com/images/steemit/SPVolcano.jpg\n\n**Image 3: CASTLE PEAKS**\nThis is Castle Peaks on the New York Mountains in the Mojave Desert. When you are driving from Los Angeles on highway 15 to Las Vegas, you can see these peaks in the distance across the valley as you come down the last hill towards Primm, Nevada. I took this picture from about 1,000 feet above the ground and what struck me about the formation was the small replica formation that sits just below Castle Peak, mirroring it. It is like a miniature formation of the larger peaks! Very strange. \n\nhttp://geraldzmorse.com/images/steemit/CastlePeaksNorth.jpg\n\nOk Thanks and hope you enjoy the images. If you have not seen my original post explaining what I do please follow the link at the top and come on by! \n\nYehaw", + "cashout_time": "2016-09-28T02:59:57", + "category": "photography", + "children": 12, + "children_abs_rshares": "6808732560425", + "created": "2016-08-27T23:27:30", + "curator_payout_value": { + "amount": "41", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 772283, + "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"art\",\"travel\"],\"links\":[\"https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse\"]}", + "last_payout": "2016-08-29T02:59:57", + "last_update": "2016-08-28T07:40:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-12T05:58:45", + "net_rshares": "6808732560425", + "net_votes": 30, + "parent_author": "", + "parent_permlink": "photography", + "percent_steem_dollars": 10000, + "permlink": "my-steemitphotochallenge-entry-for-contest-6-by-zedekiah-morse", + "reward_weight": 10000, + "root_author": "skypilot", + "root_permlink": "my-steemitphotochallenge-entry-for-contest-6-by-zedekiah-morse", + "title": "SteemitPhotoChallenge Entry #6 - Unusual Formations", + "total_payout_value": { + "amount": "212", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "6808732560425" + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json index b5240b80..e6626c37 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json @@ -10,7 +10,7 @@ "author_rewards": 1248581, "beneficiaries": [], "body": "http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\n\n# Hello Steemit!\n\nI am a bush-pilot, aerial photographer, and explorer. \n\nOur world is truly beautiful from up here!! And to share how I see it, I am developing an immersive project called **Where Eagles Fly** and would love to introduce myself and the project to the Steemit community. \n\nMy name is **Gerald Zedekiah Morse**, I go by **Zedekiah** or **Z** for short. \n\nOf course here on Steemit I am \"**skypilot**\".\n\nI was only recently introduced to Steemit by a friend. I find the entire construct of a blockchain content distribution platform to be fascinating. Centralized mass distribution of content is still very much under a gatekeeper rule and I would love to bypass this as much as possible. Steemit and other kindred platforms such as lbry.io, ascribe.io and many others all provide valuable tools that will greatly assist in the launch, success, and ongoing control of my project content. There is much to learn, and I look forward to the journey! \n\nhttp://geraldzmorse.com/images/steemit/howdysteemit.jpg\n*My proof of life - at my hangar on 8/23/16 with the Bluebird*\n\nIf you would like to see an example of my project and the work I do, please click on the image below which will take you to my website which has a Vimeo clip embedded on it. *(Unfortunately at this time Steemit does not support Vimeo and I do not like the compression quality of YouTube.)* I would right-click to open the link in a new tab so you keep Steemit open and don't lose your place. \n\n[![Your text here](http://geraldzmorse.com/images/steemit/Piclink-1.jpg)](http://geraldzmorse.com/Love_of_Nature.html \"Click Here To Play - a Love of Natue\")\n\n## My Background\nI am a music composer, pianist, recording engineer, and sound designer. I work mostly as a ghost composer and arranger on film soundtracks and trailers. I love many different styles of music and experiment with recording any genre or style the muse provides. If you would care to listen to my music, visit my listing on [SoundCloud/ZMorse](https://soundcloud.com/zmorse/sets), but please realize, it is not for everyone. Lots of different styles are on there, and I change the material all the time since I have a substantial library to choose from.\n\nhttp://geraldzmorse.com/images/steemit/zinstudio-1.jpg\n*Z in the Studio Mixing Film Music*\n\nIn addition to music production, I also code, develop virtual production technology and work as a disruptive technologist. But mostly I am an emerging filmmaker and content creator. For this project, I do everything possible to insure the content is not unduly influenced by outside sources. For that reason, I do literally everything: pilot, aerial photography (cinematography), post-production editing, music composition, sound design, graphics and motion graphics. \n\nI will work with other people in the development of the various post-production components involved in distributing the project content, and when the project is ready I will get a professional voice over artist for the narration of the various film and episodic chapter components. I'd love to get someone like Sam Elliot or Morgan Freeman!\n\n\n\n## I Love To Fly\nIt feels like I was born a pilot. My father was a test pilot for the B58 Hustler and then an aeronautical engineer for NASA during the Apollo program. Those were heady days. Most folks don\u2019t realize, but back when Silicon Valley was just another small California suburb of San Francisco, and long before the advent of the Internet and rise of technology as we know it today, there were two very advanced scientific centers of technology that few knew about outside of the NASA community: Nassau Bay, Texas, and Huntsville, Alabama. \n\nhttp://geraldzmorse.com/images/steemit/B58-team.jpg\n*My father and test crew for the B58 Hustler circa 1960*\n\nThese were the Silicon Valleys of the day back in the 1960\u2019s and 70\u2019s. Huntsville, Alabama, was home to Marshal Space Center, and Nassau Bay, Texas, was home to Johnson Space Center. I grew up between those two places because my dad was transferred back and forth every couple of years as the Apollo program progressed. This is something I will write about in another article due to there being a lot of interesting things to discuss from that era. What\u2019s important is the impact exposure to this unique community had on me. I developed a love of science and engineering and a wanderlust for space exploration that has had an ongoing effect on me. I still gaze into the night sky in wonderment at the possibilities of what is out there, of what we do not know. I truly love the unknown.\n\nWhen I was a child, my father took me flying a lot, most of the time we had to sneak out of the house because mom was so scared we would crash. Pops would always make me promise not to tell her when we were out doing aerobatics or flying through the mountains and landing on riverbanks. I\u2019m grateful for the influence he had on my life, and the exposure to the science and engineering of flight that has shaped my life. But also in the type of aircraft and flying I am attracted to. I have never been interested in the fast moving jets or high altitude aircraft, instead prefer flying low and slow above the beautiful back-country, experiencing views I know very few people, if any, ever get to see. So this means I require a particular type of aircraft that can safely operate in these rough, rugged, and primitive locations.\n\nhttp://geraldzmorse.com/images/steemit/ZFlying-1.jpg\n*Flying My Bluebird In The Wilderness*\n\nI exclusively fly small bush planes. These aircraft do not require a normal paved runway to take off and land on. All I really need is a somewhat flat space a few hundred feet long, the smoother the better, but not necessary. You have to be very careful landing in short places, as you run the risk of being unable to take off from there again. This is why careful planning and attention to weather conditions and surface terrain are paramount! I also fly float planes, even crashed one a long time ago in the wilderness and had to egress the aircraft underwater as it was rapidly sinking! *(Another story for another time)*.\n\nhttp://geraldzmorse.com/images/steemit/airplanecamp-1.jpg\n*Camping on the Cumberland Plateau, Tennessee*\n\nCamping with an airplane in the wild is an experience of either extreme solitude, when I am out there by myself, or great camaraderie with a very small group of pilots who love the back-country as much as I. We have fly-in's where groups of pilots, young and old, male and female and lots of families all come together to camp out in these hard-to-reach locations.\n\nLanding and taking off on river banks, tops of cliffs, mountain saddle backs or meadows, which are always deep in the wilderness and far from civilization or help, are standard operations. Planning and proper equipment are necessary for survival, and knowledge with continuous training will keep you alive when things get spicy! You can count on the weather to be unpredictable, changing rapidly with little warning when you fly and camp deep in the mountainous hinterlands. Vigilance and a keen sense of awareness must be enacted at all times, especially in the air but also down on the ground, particularly when camping in the wild. \nBecause...*critters!*\n\nAll sorts of wild animals like coyotes, moose, elk, wolves, and bears will come into camp. We all know that they can be a curious lot and after all, this is their home and we are just visitors. Mostly, they are looking for food, especially bears. I am sure you have all seen this photo of a bush-plane that got a bit chewed on? *Never* ever store food in the airplane, not even something as small as a candy bar\u2015especially if it is covered with fabric and not metal, though aluminum skin probably would have suffered badly as well. I reckon that bear was pretty determined and that fabric skin cut like butter with those sharp claws!\n\nhttp://geraldzmorse.com/images/steemit/BearAttack.jpg\n*Bear damage on an aircraft similar to my Bluebird*\n\n# Culmination of My Life's Work\n\nYears ago, I began taking photos while flying and camping in the back-country. Over time, camera technology exponentially reduced in form-factor while increasing in capabilities. I\u2019m now able to carry more powerful DSLR's with amazing capabilities, and I've gone through the gauntlet with different systems: Nikon, Sony, Canon, Hasselblad, and PhaseOne. Some work much better than others, there is no real magic bullet; however, I love the large-sensor-format-based systems because I desire to reproduce my images as large-scale prints.\n\nhttp://geraldzmorse.com/images/steemit/zshooting2.jpg\n*Shooting The Grand-Staircase Escalante in Utah*\n\nAs video camera technology matured into smaller form-factor systems, I began experimenting with mounting cameras all around the aircraft, outside and in the cockpit. It has taken quite a while to come up with solutions to mitigate camera vibration. The rolling shutter effect from these systems is always an issue, especially with the bending propeller which I really dislike. But I am using my current configuration as a test bed from which to design and build an aerial platform that will eliminate all of these problems. This new platform will be based on a global-shutter sensor with a custom camera control, mounting, and optical package. \n\nWith the advent of a powerful suite of post-production tools from Adobe Creative Cloud, I am able to leverage my knowledge of virtual production technology into the art of editing and film composition. Because I already do soundtrack work, it was a fairly logical step. With the combination of aerial photography, aerial footage, and music composition and recording, I have the ability to produce my own content. Hence the following project: \n\n# Where Eagles Fly \u2013 The American Wilderness Expedition\n\nFor the past few years, I've been exploring the remaining wilderness areas of North America and filming them from a space just a few hundred to a few thousand feet above ground. The view from this zone is incredible. To accomplish this, I fly into remote off-the-beaten-path locations that are very rarely visited and even more rarely seen from this special zone up in the air... **Where Eagles Fly** :)\n\n\nWhen you think about it, our view of the world is quite limited to either down on the ground or very high up in jet airliners. Both of these views are restricted by physical limitations such as line-of-sight with ground based views and limited fine-detail when viewing from airliners flying along at 35,000 feet or higher. \n\nhttp://geraldzmorse.com/images/steemit/Mojave-Mtns.jpg\n*Kokoweef Peak in the Mojave Desert*\n\n\nWhere I fly, earth colors interact with weather and atmospheric conditions to create incredible \u201cpaintings\u201d of nature that are stunning to behold. I see things that \u201cMove the Soul.\u201d I wish more people would get into flying like I did as a young man. Flying a drone is very cool, I own a number of them, but nothing compares to being there in person. The experience is worth the effort and the inherent danger. But I do realize that pressures from our socially-connected, Internet-influenced, technically-adapted and risk-averse lives somewhat limit the exposure to flying for most people. *Aha, this too, apparently, is another good subject for a future article*. \n\nMy goal is to chronicle the remaining 47% of the USA and 90% of Canada that are uninhabited and unaffected by the encroaching crush of civilization. By doing this, I hope to increase the lexicon with which we visually describe our planet \u2015 by providing a unique new view that illustrates the untamed beauty and ruggedness of these remarkable places. I also hope that people will become as entranced as I, and will be inspired to continue the difficult effort necessary to protect and preserve these wild places for future generations. \n\nhttp://geraldzmorse.com/images/steemit/Zion-1.jpg\n*Cougar Mountain in Zion National Park*\n\nFlying a bush-plane while shooting through an open window is not without its difficulties! The type of scenery I seek is dramatic, with weather playing a major role in providing the desired backdrop. For the cleanest, long distance large-area wilderness-landscape images, I require the clearness provided by the cold, dense air molecules of Fall, Winter, and early Spring months, without the aberrations and heat distortion of Summer. \n\n\nhttp://geraldzmorse.com/images/steemit/zshooting-1.jpg\n*Shooting the San Juan Mountains in Colorado*\n\nAs you can see this is not a large production crew type of project. This is me, all alone, in the wilderness up in the air looking for dramatic weather to juxtapose against dangerous mountains in marginal flight conditions. \n*Nice!!* \n\nTo share this journey, I am creating a highly interactive, immersive virtual journey which will allow you to experience the beauty and wonder of these extraordinary places from this unique perspective. *I will post this in a future article.* \n\n# Wilderness Landscape Photography As Fine Art\n\nThe static imagery can be distributed via a variety of compelling formats, using the Ken Burns effect to make short ambient vignettes. With this, I stream the images to digital frames, provide images as screen savers and mobile device backgrounds, etc. But what I truly love to do is turn them into prints. \n\nObviously, there are many ways to do this, from simple posters, calendars and greeting cards to printed apparel. All of these are , all very appealing. You can print on practically any surface. However, I want the images to really stand out, to grace the locations where they are placed. What is truly spectacular is to create large-format prints on different mediums. For now, there are three mediums I work with:\n\n1. Gicl\u00e9e prints on Canvas\n2. Chrome Metallic Paper Mounted on Acrylic\n3. Aluminum Plate\n\nEach of these mediums has different qualities which influence how the images appear. I have been fortunate to find both an amazing printer (they exclusively print for all the National Geographic Galleries) and a gallery willing to allow me to exhibit my works. To date, I have held two exhibitions in the Wyland Signature Gallery at the Planet Hollywood Resort and Casino in Las Vegas, Nevada. Both were a complete blast!\n\nhttp://geraldzmorse.com/images/steemit/zgallery-1.jpg\n*Part of My Exhibition at the Wyland Gallery in Planet Hollywood Las Vegas*\n\nIt was quite an interesting experience during the show, in that most of the time I felt like a museum docent explaining the story behind images. Folks are drawn to this unique view of nature, and seem to enjoy watching the in-flight footage showing how the images were acquired. \n\nPeople are not used to seeing wilderness landscape images from this perspective it's such an advantageous place to shoot from. It's not as though anyone can simply follow me up the trail and take the same photo! \n\n# That'a Wrap!\n\nOk, my fellow Steemers! That about wraps it up for this post, if you have stayed with me though this entire article, I thank you!! I would LOVE to get feedback from the community, and if there is interest, I will continue writing about this subject and will update the Steemit community as my project develops. \n\nPlease let me know what you think. And *Fly Safe!!*\n\nhttp://geraldzmorse.com/images/steemit/zlanding1.jpg\n*Landing Bluebird on the Mesa Top at Pearce Ferry, Arizona*", - "cashout_time": "2016-09-25T20:55:24", + "cashout_time": "2016-08-31T21:24:33", "category": "introduceyourself", "children": 112, "children_abs_rshares": "5017117283364", @@ -30,8 +30,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-09T20:56:57", - "net_rshares": "4923114688969", + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 131252358872788, "net_votes": 228, "parent_author": "", "parent_permlink": "introduceyourself", @@ -47,7 +47,7 @@ "precision": 3 }, "total_vote_weight": 0, - "vote_rshares": "4923114688969" + "vote_rshares": 131252358872788 }, { "abs_rshares": 196185915, @@ -59,7 +59,7 @@ "author_rewards": 29701, "beneficiaries": [], "body": "# Ancient Mayan Design Aesthetic\nIt amazes me that the concept of basic design seems to have been around for many thousands of years. Think about that! Many centuries ago, some very important Mayan Scribe sat at their desktop and designed the layout below, working with what was at the time, leading edge communication technology. \n\nThis form of written communication was a technology that was only understood and utilized by an elite few. To me, this draws an compelling connection to our global ancestral makeup. What is interesting is that you can see a very strong resemblance to current design aesthetic with columns, tables, pictures (info-graphics) with wrap around text. \n\nThe way we visualize layout obviously goes way back in human history. \n
\nhttp://www.pasthorizonspr.com/wp-content/uploads/2016/08/Chichen2.jpg\n
*This image is from the article in Past Horizons listed below*
\n\nI know this is very different than the articles I usually post on my photography, but I felt compelled to share this so if you'd like to see the original article please go [here](http://www.pasthorizonspr.com/index.php/archives/08/2016/hieroglyphic-texts-reveal-maya-innovation-in-maths-and-astronomy). The article is about Mayan innovation in math and astronomy and is short and worth the read. \n\nThis article is from one of my favorite sites called **Past Horizons - Adventures in Archeology**. Please visit them if you are interested in archeology and human history. They always have something worth reading.\n
http://www.pasthorizonspr.com/wp-content/uploads/2014/10/smallLOGO@2x.png
", - "cashout_time": "2016-10-09T01:59:48", + "cashout_time": "2016-09-15T01:39:12", "category": "life", "children": 4, "children_abs_rshares": 196185915, @@ -79,8 +79,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-23T08:52:09", - "net_rshares": 196185915, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 15500271048057, "net_votes": 54, "parent_author": "", "parent_permlink": "life", @@ -96,10 +96,10 @@ "precision": 3 }, "total_vote_weight": 0, - "vote_rshares": 196185915 + "vote_rshares": 15500271048057 }, { - "abs_rshares": 0, + "abs_rshares": 7364381250505, "active": "2016-09-09T11:25:09", "allow_curation_rewards": true, "allow_replies": true, @@ -108,7 +108,7 @@ "author_rewards": 7449, "beneficiaries": [], "body": "This was shot during a blizzard in Kit Carson Pass below Lake Tahoe. I couldn't leave so I took pictures. It was cold and the snow was falling almost horizontally and it was bright white. It got so bad a few times it was impossible to see more than a dozen feet away. \n\nhttp://geraldzmorse.com/images/steemit/Whiteout.jpg\n\nI find the contrast between the brilliant white and the colors of the trees intriguing .", - "cashout_time": "2016-10-09T22:54:12", + "cashout_time": "2016-09-15T22:00:09", "category": "photography", "children": 5, "children_abs_rshares": 0, @@ -129,7 +129,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 7364381250505, "net_votes": 47, "parent_author": "", "parent_permlink": "photography", @@ -144,11 +144,11 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 11953915764947970058, + "vote_rshares": 7364381250505 }, { - "abs_rshares": "32969357867", + "abs_rshares": 11633948769917, "active": "2016-09-02T20:48:45", "allow_curation_rewards": true, "allow_replies": true, @@ -157,7 +157,7 @@ "author_rewards": 15688, "beneficiaries": [], "body": "http://geraldzmorse.com/images/steemit/Vimeo_logo-2.png3fformat3d1500w.png\n\n# Howdy folks, Z here... \n\nI am very happy to announce that steemit has now made it possible to directly embed high quality Vimeo clips within the iframe structure provided by Vimeo.\n\nSimply drop your embed code in the editor as you would pictures or a Youtube clip and it should work fine: \n
\n\nIf you are interested in the post where this short vignette lives from please take a look at the first post about my project: [Where Eagles Fly](http://goo.gl/cliI88) \n\nPlease don't feel compelled to vote on this post... I am simply sharing the news so that when new users search about Vimeo they will find it is possible!\n\nThank you Steemit crew! This is awesome!", - "cashout_time": "2016-10-03T02:28:12", + "cashout_time": "2016-09-09T00:23:30", "category": "photography", "children": 13, "children_abs_rshares": "32969357867", @@ -177,8 +177,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-20T19:56:00", - "net_rshares": "32969357867", + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 11633948769917, "net_votes": 52, "parent_author": "", "parent_permlink": "photography", @@ -194,10 +194,10 @@ "precision": 3 }, "total_vote_weight": 0, - "vote_rshares": "32969357867" + "vote_rshares": 11633948769917 }, { - "abs_rshares": "140201312914", + "abs_rshares": 14992096481522, "active": "2016-09-10T03:25:48", "allow_curation_rewards": true, "allow_replies": true, @@ -206,7 +206,7 @@ "author_rewards": 25890, "beneficiaries": [], "body": "This photo was shot from 9,500 feet up while I was flying towards the southwest after sunset. I am in the Flathead Mountains of Montana and the moisture in the air is condensing from the cool evening to create this mystical view of the mountains.\n\nhttp://geraldzmorse.com/images/steemit/FlatHeadatDusk.jpg\n\nThis is from a series of images I call \"Wilderness Alpenglow\". I enjoy how the image resembles classic Chinese or Japanese paintings of old.\n\nIf you want to see other work from my project **Where Eagles Fly** visit my first post [here](https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse) or second one [here](https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse).", - "cashout_time": "2016-10-06T03:47:51", + "cashout_time": "2016-09-11T19:31:03", "category": "photography", "children": 22, "children_abs_rshares": "140201312914", @@ -226,8 +226,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-20T06:06:54", - "net_rshares": "140201312914", + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 14992096481522, "net_votes": 66, "parent_author": "", "parent_permlink": "photography", @@ -243,10 +243,10 @@ "precision": 3 }, "total_vote_weight": 0, - "vote_rshares": "140201312914" + "vote_rshares": 14992096481522 }, { - "abs_rshares": 113157676, + "abs_rshares": 1990171645644, "active": "2016-09-12T14:37:54", "allow_curation_rewards": true, "allow_replies": true, @@ -255,7 +255,7 @@ "author_rewards": 1047, "beneficiaries": [], "body": "# Isolated Rain Storm \nI came upon this strange isolated rain storm over the Great Sand Dunes when I was flying out over the San Luis Valley while filming Zapata Ranch. It was clear skies about the rain clouds and clear all around it... yet it was raining on this stretch of the Sangre de Cristo Range in the Rocky Mountains. \n\nhttp://geraldzmorse.com/images/steemit/GreatDunesRainStorm1.jpg\n
*Eastern side of the Great Sand Dunes National Park*
\n\nIn this photo you can clearly see the curving edge of the sand dunes boundary where the dunes delineate from the San Luis Valley floor. These are the tallest sand dunes in North America reaching heights of 750 feet (228m).\n\n# Sand From an Ancient Glacial Lake \n\nThe dunes were formed within the last 500,000 years from sand and soil deposits of the Rio Grande and its tributaries as they spread out through the San Luis Valley. Over the ages, the glaciers melting created a vast lake in the San Luis Valley... as this lake and the waters evaporated and drained to form the river, it left behind massive volumes of loose sand. Westerly winds then picked up sand particles from the lake and river flood plain and carried them across the valley floor. As the wind diminished in power before crossing the Sangre de Cristo Range, the sand deposited all along the eastern edge of the valley. As the sand stacked up over time it became what we see today, the Great Sand Dunes National Park. \n\n\nhttp://geraldzmorse.com/images/steemit/GreatDunesRainStorm2.jpg\n
*Western side of the Great Sand Dunes National Park*
\n\nIn the photo above taken from the same position as the previous photograph, you can see the small Mount Seven Peak and behind it the snow capped 13,200 (4,023m) Cleveland Peak of the Sangre de Cristo Mountain Range peeking through the rain shower.\n\n# Whipped By Fierce Winds\nThe wind continues to whip about and shape and reshape the dunes on a daily basis, and continue to increase the volume of sand and size of the dunes. These fierce winds are strong enough to move sand and small rocks from miles away across the valley. While the dunes don't actually change location or vary in size that often, the wind forms parabolic dunes that grow in the sand sheet, the outer area around the dunes, and migrate towards the main dune field, giving a very prominent beveling or warping visual effect, especially notable from up above where I fly.\n\nLocated near Alamosa, Colorado just north of the Nature Conservancy's Zapata Ranch the dunes are a great place to visit. To check out the National Parks Service website on the Great Dunes National Park go [here](https://www.nps.gov/grsa/index.htm). \n\nAnd to check out my previous exciting fly-in trip to the Zapata Ranch to visit Duke Phillips the Flying Cowboy, go [here](https://steemit.com/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse).\n\nIf you're unfamiliar with my work please check out my introductory post [here](https://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse). \n\nOk thanks, hope you enjoy this and yehaw!", - "cashout_time": "2016-10-10T18:51:39", + "cashout_time": "2016-09-16T11:04:21", "category": "photography", "children": 7, "children_abs_rshares": 113157676, @@ -275,8 +275,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-26T14:36:45", - "net_rshares": 113157676, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 1990171645644, "net_votes": 69, "parent_author": "", "parent_permlink": "photography", @@ -292,10 +292,10 @@ "precision": 3 }, "total_vote_weight": 0, - "vote_rshares": 113157676 + "vote_rshares": 1990171645644 }, { - "abs_rshares": 0, + "abs_rshares": 5126864315829, "active": "2016-09-11T04:09:09", "allow_curation_rewards": true, "allow_replies": true, @@ -304,7 +304,7 @@ "author_rewards": 3840, "beneficiaries": [], "body": "# Las Vegas Valley from the Sloan Mountains\n\nA rare perspective of the city sitting in the valley taken from above Sloan Mountains to the south. I never shoot images of cities or buildings, it's jut not my thing to do. I am an aerial wilderness photographer. However I got this while testing out a different camera.\n\nhttp://geraldzmorse.com/images/steemit/B6583414-Las-Vegas.jpg\n\nIn this uncommon point of view you can see that Las Vegas sits down in a valley, that is Gray Mountain in the distance and the foothills of Sloan Mountain in the foreground. To the bottom left, right above the small hills you can barely make out Henderson Executive Airport. \n\nThe image was captured late in the afternoon from an altitude of 4,500ft (1,371.6m) shooting towards the northeast.", - "cashout_time": "2016-10-12T14:32:39", + "cashout_time": "2016-09-17T17:37:24", "category": "photography", "children": 13, "children_abs_rshares": 0, @@ -325,7 +325,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 5126864315829, "net_votes": 45, "parent_author": "", "parent_permlink": "photography", @@ -340,8 +340,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 10362151847782932314, + "vote_rshares": 5126864315829 }, { "abs_rshares": "10027068167722", @@ -353,7 +353,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "This is an unusual rock outcroping I photographed south of Mesa Verde, Colorado in the desert near my camp. I found the colors of the stone and desert sand juxtaposed against the background vermilion cliff walls and blue hued sky to be pleasing and relaxing. \n\nhttp://geraldzmorse.com/images/steemit/Mesa-Verde-Outcrop.jpg\n\nThis image is also from my Artistic Impression series where I use a digitizing tablet to lightly brush various filter effects into the image to give it a certain mysterious quality.", - "cashout_time": "2016-09-15T21:34:14", + "cashout_time": "2016-09-21T14:46:27", "category": "photography", "children": 11, "children_abs_rshares": "10027068167722", @@ -373,8 +373,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-28T14:50:51", - "net_rshares": "10001278717808", + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 10001278717808, "net_votes": 44, "parent_author": "", "parent_permlink": "photography", @@ -389,11 +389,11 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": "13144057225008877639", + "total_vote_weight": 13144057225008877639, "vote_rshares": "9951683621819" }, { - "abs_rshares": 1230392222, + "abs_rshares": 2354527407147, "active": "2016-08-28T03:46:18", "allow_curation_rewards": true, "allow_replies": true, @@ -402,7 +402,7 @@ "author_rewards": 1363, "beneficiaries": [], "body": "http://geraldzmorse.com/images/steemit/ZCarsonPass-1.jpg\nFellow steemers ! \n\nMy experiment on Steemit was a success. I earned $2,184.74 \n\nThe posts automatically last only 24 hours. If many people like them and upvote then they extend an additional 12 hours for a total run of 36 hours. Which mine did. \n\nOnce the post run-time is finished the post was automatically moved out of the 5 categories it was tagged in and placed in my blog page. It is still available for viewing and people can still vote on it, you can find it on my blog page. This is a necessary function of the fairness and democratic operations of this amazing website!!! How awesome is this!?!\n\nThis test was primarily undertaken to review the marketing viability of my project to the public, to see if everyone liked the concept and content. From the responses at the bottom of the post which are permanent, I would think the answer is a resounding yes. \n\nMore to come from this experiment later. Suffice to say I have established a presence and become part of the community on the most powerful cutting edge - platform/community in this new and very exciting cryptocurrency-based content-support market. \n\nI have taken the funds, held some as steem cryptocurrency and transferred the rest onto a cryptocurrency exchange called Poloniex where I am holding steem dollars (SBD) and watching the various cryptocurrencies valuation. The current SBD will increase in value or at any time I can transfer these to bitcoin or any of a number of other currencies.\n\nThis is absolutely cool!!!Thank you to the 217 steemers that upvoted me and even to the 2 that downvoted it...I sort of would like to know why but it really does not matter. \n\nPlease continue to enjoy my blog and I would love to continue building support for my project from the steemit community. I am a now a firm believer and strong advocate for steemit. \n\nMore to follow.\n\nz", - "cashout_time": "2016-09-27T01:41:27", + "cashout_time": "2016-09-02T22:53:00", "category": "introduceyourself", "children": 13, "children_abs_rshares": 1230392222, @@ -422,8 +422,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-11T03:46:21", - "net_rshares": 1230392222, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 2354527407147, "net_votes": 44, "parent_author": "", "parent_permlink": "introduceyourself", @@ -439,10 +439,10 @@ "precision": 3 }, "total_vote_weight": 0, - "vote_rshares": 1230392222 + "vote_rshares": 2354527407147 }, { - "abs_rshares": "6808732560425", + "abs_rshares": 7271143727776, "active": "2016-09-07T16:30:00", "allow_curation_rewards": true, "allow_replies": true, @@ -451,7 +451,7 @@ "author_rewards": 199, "beneficiaries": [], "body": "For my entries into the 6th steemit photo contest I've chosen 3 unusual formations to share.\n\nIf you don't know anything about my work please visit my introduction post: \nhttps://steemit.com/introduceyourself/@skypilot/an-introduction-to-where-eagles-fly-the-american-wilderness-expedition-by-zedekiah-morse \n\n**Image 1: BLUE POINT BAY**\nThis image was taken above Blue Point Bay on Lake Mead, Nevada. A powerful rain storm had just passed over and the earth was still soaked. The sun was coming back out and these vibrant, rich colors are from the water soaked natural minerals reacting to the bright sunlight. The green areas along the edge are the shallow water of the lake. I am about 2,000 feet above the lake shooting straight down from the airplane.\n\nhttp://geraldzmorse.com/images/steemit/BuePointBay.jpg\n\n**Image 2: SP VOLCANO** \nThis is a volcano just north of Flagstaff, Arizona simply known as \"SP Volcano\". I have searched high and low and cannot find any history on how it got this name. Certainly the Navajo First Nations called it something but I couldn't find mention of it anywhere. I love that this is a perfect representation of time-stood-still. You can see the how lava flowed down from the volcano, spilling out across the desert, coming to a standstill where it froze in time.\n\nhttp://geraldzmorse.com/images/steemit/SPVolcano.jpg\n\n**Image 3: CASTLE PEAKS**\nThis is Castle Peaks on the New York Mountains in the Mojave Desert. When you are driving from Los Angeles on highway 15 to Las Vegas, you can see these peaks in the distance across the valley as you come down the last hill towards Primm, Nevada. I took this picture from about 1,000 feet above the ground and what struck me about the formation was the small replica formation that sits just below Castle Peak, mirroring it. It is like a miniature formation of the larger peaks! Very strange. \n\nhttp://geraldzmorse.com/images/steemit/CastlePeaksNorth.jpg\n\nOk Thanks and hope you enjoy the images. If you have not seen my original post explaining what I do please follow the link at the top and come on by! \n\nYehaw", - "cashout_time": "2016-09-28T02:59:57", + "cashout_time": "2016-09-03T23:27:30", "category": "photography", "children": 12, "children_abs_rshares": "6808732560425", @@ -471,8 +471,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-12T05:58:45", - "net_rshares": "6808732560425", + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 7271143727776, "net_votes": 30, "parent_author": "", "parent_permlink": "photography", @@ -488,7 +488,7 @@ "precision": 3 }, "total_vote_weight": 0, - "vote_rshares": "6808732560425" + "vote_rshares": 7271143727776 } ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.orig.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.orig.json new file mode 100644 index 00000000..d864fe86 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-15T05:28:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-m3001", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hi, I'm A.M for now, I'm in my mid-20s and want to share my story with working and facing this thing called life after I watched a lot of YouTubers like Thomas James \"TomSka\" David Brown \u201cboyinaband\u201d and many others who have very openly shared their hardships, they have inspired me to write this\u2026.. Whatever this is.\nI don't consider myself a good writer so bare with me here.\nTo try to keep this post organized and make sense I'll highlight the point I want to talk about and tell the relevant part of my story, you can connect the pieces all together at the end.\n\n**First how am I?** \nI grow up in the countryside I went to normal school when I was yang, because I was the quiet introvert and wasn't from the town I was in I got bullied a lot for most of my time at school, I got through school time knowing just two friends, I was OK with it.\nI genuinely lost interest in school when I was in the ninth grade It seemed more like a memory test than a way of learning so I started looking for ways to make money, \"why waste time learning things irrelevant in real life if I can make money now\" my naive 16 years old self said, don't get me wrong I didn't think I was done with learning I just wanted to learn in my own way, and I didn't stop school, now I'm in part time Business school, so back then I started looking for any way to make money in the last 5 year I tried: working in sales for over 2 years, selling products online, becoming instructor online, worked as SEO & social media consultant, tried starting my own business for 4 times, and for the last year and half I taught myself how to program and how to use Unity game engine and now I'm working on my first game, I can easily and proudly say that I didn't succeed at any of what I did so far, but I've learned a lot every time and I would do it all over again if I had the chance.\nThe process of picking myself up every single freaking time was a living hell and I got desperate many times.\nbecause I saw a lot of people feeling relevant to what David said in his video I want to share how I managed to keep my sanity and my opinion about some point he brought in his video.\n\n\n**Not thinking your work is good enough:**\nIs that really a bad thing? not being satisfied with what you just accomplished is a sign that you always look forward to what you still can do.\nI remember after I published my first course on Udemy I got invited to a hangout and I went for it I thought I'll give myself some slack, while I was there someone shouted out \"this guy here just published his first course let all give him a clap shall we\" for some reason he thought that was a good idea, I don't think I can blame him his intentions were good, I never tried to put a smile as hard as I did that moment I guess I just didn't want to look like a selfish prick, but the truth that I wasn't happy about what I accomplished I was thinking about my bad English poor structure of the course and was I being a sellout for trying to sell my knowledge? halfway of creating the course, I was already thinking about 5 other things I wanted to do next.\nI think there's nothing wrong about not being satisfied with what you finish, I think It's a good sign of an ambitious creator.\nWhen you first make the decision to accomplish something It looks like that godly thing that you think It would feel good to have or do, but when you start turning that big sexy thing to a small to-do list somewhere the appeal you had to that thing will disappear to a certain point, it's not that godly sexy thing you thought about before it's becoming a part of your routine now you know the process of doing that thing It's not a mystery anymore.\nI think that's why they say: \"It's about the journey, not the destination\".\n\n\n**Not taking care of yourself:**\nIt's hard to keep taking care of yourself to others people standards, whether it's about looking ripped putting makeup or buying the latest clothes, instead find your own save point and move forward from there if you feel the need to.\nWhen I was working in seals I had to look my best most of the time's which was exhausting more than the work itself and what made it worst is that some coworkers starting hinting that I need to start working out to look sharper and more confident.\nBecause I was desperate for results from my work I started going to the gym and I got stuck at joining for a month or two then giving up for half a year couple of times, every time I stopped going to the gym I over beat myself saying that I need this for my work, I need more money to do a lot of things, if this work didn't go well what else Am I going to do, eventually I usually took it out on food, I don't even want to start thinking what would have happened to me if my body was able to store fat.\nTrying to take care of yourself to others standards can be very exhausting, I felt down because I was putting so much effort in things I don't really care about to get others approval, I genuinely don't care about having a ripped body, it would look cool sure but I'm not willing to put all that effort into health and looks at least for now, who knows maybe in the future things will be better and I'll be willing to put the effort necessary to have 6 pack abs (wink wink ladies).\nNowadays I eat better than I used to, I still eat some junk food but things are much much better than they were 2 years ago, when I fell down I still go buy and drink a liter of Pepsi but at some point that was my morning coffee, as for my looks I cut my hair very short so I would have one less thing to worry about in the morning, I shave my beard once every couple of weeks I change my cloth every two or three days even if I didn't go out.\nThe point is I take care of myself for my own sack, It was much worse before and I'll always keep working to improve pit by pit.\nIt's about building habits not getting motivated for a couple of weeks then beating yourself for not being able to keep up.\n\n\n**Not mastering one skill:**\nI worked in sales, instructed online, worked as SEO and social media consultant, self taught myself how to program and make games but I don\u2019t think I\u2019m the right person to talk about this, all I\u2019m saying that if you didn\u2019t find that one true call that is right for you, you might be a \u201cmultipotentialite\u201d if you want to know what exactly does this mean I urge you to watch Emilie talk at TedX\nhttps://www.youtube.com/watch?v=QJORi5VO1F8\nAnd check the blog too if you want to know more \nhttp://puttylike.com/\n\n**Everything happens for a reason........ or does it?**\nWhen I was young I was fortunate to know a good old religious man, I don\u2019t know about your perspective about religions but hear me out this isn\u2019t a sermon, I still remember when he tried to teach me that everything happens for a reason I was like \u201cWHAT\u2026\u2026. Oh really, then what is the reason for this and this and that\u201d my question didn\u2019t stop and I wasn\u2019t asking nicely either yet, somehow he was calm about it like some kind of monk, I don\u2019t know if I ruined his day or not but I feel bad for taking the world misery out on him that day, he was just a simple man who was doing what he think is good for others, his intentions were good but unfortunately for him I wasn\u2019t a simple person, I overthink everything and everyone, it\u2019s my blessing and my curse, later I told my family about him and I was surprised that they knew him, apparently everyone knows each other in the countryside, they told me about what he was facing lately personally, financially, and emotionally, I didn\u2019t believe that someone who is facing all that isn\u2019t depressed or angry and even trying to do good for others at least by his believes, I wanted to know more about him he got my interest, I wanted to know if he\u2019s an imposter who is just putting a good face or not because a part of me didn\u2019t believe how can he be that good, I kept asking about him from time to time and sometimes I even went to his \u201clessons\u201d, eventually I went to face him with what I know about him like a detective facing a criminal, the crime of being that simple yet trying to be better than me, It\u2019s pathetic I know It\u2019s just how my brain works sometimes, because I used to take pride of being logical about everything and not believing in anything without questioning it, it bothered me how can he be at peace with his life and I\u2019m not even that he\u2019s facing a lot more than I\u2019m, I faced him and told him everything then asked how can you be this calm about everything that is happening in your life, he had a faint smile and said \u201cI don\u2019t know the reason for everything that is happening right now but everything happens for a reason\u201d I remember holding my fist hard and walking away, maybe I was holding my fist trying not to hit him for not being realistic like me or probably not to beat myself for not being half the man that he was.\nI don\u2019t know about your perspective about religions and I\u2019m not here to tell you about mine but I respect that some religions teach that everything happens for a reason, is it the truth? Does everything happens for a reason? I don\u2019t know, I don\u2019t think that is even the point, It\u2019s silly to even get in an argument about this because no one can be sure about it, it\u2019s simply just a belief, it\u2019s simply teach you to not overthink about the reasons for everything around you, just learn from it if you can and focus on what you can do, it\u2019s kind of funny for me to tell you not to overthink about somethings because I\u2019m sure my 19 year old me would punch me right in the face, but it\u2019s just too draining and exhausting to try to find a reason for every bad thing that have happened to me or to others.\nIn the last three years two of my best friends died, the first one I knew for about nine years and the other one for around five, both killed, both in a way they didn\u2019t deserve to, each time I had to force myself to focus on the 0.0000001% full part of the cup or else I would have lose my sanity.\nI would hate to think what would be my thought process if someone tried to sell me religion like a product, some of them would be like \u201cHi son, you should follow my beliefs because I\u2019m 100% sure that I\u2019m right and everybody else is wrong and if you don\u2019t, well you\u2019re FU**ED\u201d that would have disfigured some of the beliefs that helped me get better.\nControlling your stream of thoughts will be the hardest thing you\u2019ll ever have to do in your life, but if mastered it you\u2019ll become unstoppable.\n\n\nI\u2019ve been getting into the game industry for around year and half now, I don\u2019t have any experiance in the field but I\u2019ve other experiences that many don\u2019t, working in sales made me learn a lot about people's motivations and incentives, I saw a lot of people jump to make purchase while other chicken out last minute, you don\u2019t get to learn about this in a book or an NLP course, you only get to learn this experience by working in sales first hand, working as an SEO and social media consultant made me care about the little details like posting in the right social medias that is more relevant to your audience, more isn\u2019t always better, choosing the right words colors and timing for best result, sometimes modifying your content for a better marketing or not going into a certain niche even if there\u2019s an audience for it because it doesn\u2019t suit your brand, teaching online made me learn that the selling point isn\u2019t the end goal, helping and mentoring students even after they have purchased the course was way more important than I thought, the feedback I got about the course was crucial to take the course to the next level and some student even helped me with some marketing.\nIf you know anything about the mobile game industry you can see how these experiences can be helpful, I can imagine the kind of journey I want to create for the player because I can build the motivations and incentives I want for him, while I\u2019m building the player journey I\u2019ll always keep in mind to put the monetization and ads the right way so all of them can work seamlessly together for a better player experience, and taking care of existing players and community will always be a priority, I wasn\u2019t happy and cheerful when I had to learn these experiences the hard way, I thought I was just failing, I even remember crying myself to sleep every time I decided to pull the plug on something I was working on, but eventually It worked out somehow I think.\n\u201cyou can't connect the dots looking forward, you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something - your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life\u201d.\nSteve Jobs\n\n\nI want to share some of the tricks I used that helped my in general to get my life together:\n\n**Music**\nlisten to cheerful music, even if it might not be exactly what you listen to usually but try them for a while, my favorite type or music is Rock and Metal it\u2019s loud and make me feel empowered but sometimes it's not what I need to change my mood so I started listening to electro music mostly Drum & bass, I didn\u2019t like it at first, I\u2019m human I don\u2019t like to change, but forcing myself to listen to it for while change my perspective about it and I started listening to it while I\u2019m working, and it worked.\n\n\n**habits not motivation**\nWe\u2019re slaves to our habits, it\u2019s exhausting to do something that\u2019s you\u2019re not used to for quite a while, so invest your effort and time to build your habits pit by pit no matter how slow it will take, measure your progress and celebrate your success no matter how small they\u2019re, it\u2019ll make all the difference in your life in the long term.\n\n**work in a group**\nNo matter how introverted person you think you\u2019re, you\u2019re still human at the end of day and you need your dose of human interaction so try to work in group if you can, if you don\u2019t have that luxury (like me) work out side from time to time, library, coffee shop, parks all works, changing your surrounding and environment can change your mood, you can try changing your room\\office decor every couple of weeks too.\n\n**warm-blooded pet**\nGet a warm-blooded pet it helps, I tried fish and turtles but didn\u2019t really work for me they just stared at me with their empty eyes, I have a cat for two year now and It helped, maybe it\u2019s having the sense of that there is a creature that needs you to look after him, it\u2019s helped me not to feel completely unworthy in some bad day.\n\n\nFinally I hope this help you in any way it can, and hope it will find its way to all who needs it.", + "cashout_time": "1969-12-31T23:59:59", + "category": "story", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T04:53:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 608846, + "json_metadata": "{\"tags\":[\"story\",\"philosophy\",\"life\",\"psychology\",\"secret-writer\"],\"links\":[\"https://www.youtube.com/watch?v=QJORi5VO1F8\"]}", + "last_payout": "2016-09-14T16:58:03", + "last_update": "2016-08-15T05:28:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "story", + "percent_steem_dollars": 10000, + "permlink": "how-i-managed-depression-and-work", + "reward_weight": 10000, + "root_author": "a-m3001", + "root_permlink": "how-i-managed-depression-and-work", + "title": "How I managed depression and work", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-07T21:34:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-man", + "author_rewards": 0, + "beneficiaries": [], + "body": "Trying to repost to FB", + "cashout_time": "1969-12-31T23:59:59", + "category": "homeschooling", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-07T21:34:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 497962, + "json_metadata": "{\"tags\":[\"homeschooling\"]}", + "last_payout": "2016-09-07T09:52:42", + "last_update": "2016-08-07T21:34:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "jamiecrypto", + "parent_permlink": "raising-leaders-instead-of-rulers", + "percent_steem_dollars": 10000, + "permlink": "re-jamiecrypto-raising-leaders-instead-of-rulers-20160807t213425757z", + "reward_weight": 10000, + "root_author": "jamiecrypto", + "root_permlink": "raising-leaders-instead-of-rulers", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T21:34:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "Finally someone is saying it out loud. thank you!!", + "cashout_time": "1969-12-31T23:59:59", + "category": "life", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-30T19:37:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 359861, + "json_metadata": "{\"tags\":[\"life\"]}", + "last_payout": "2016-08-30T10:16:39", + "last_update": "2016-07-30T19:38:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "agent", + "parent_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "percent_steem_dollars": 10000, + "permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", + "reward_weight": 10000, + "root_author": "agent", + "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T21:01:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "add katie-lynn boulard on FB, she's my friend and she's currently doing an exchange in bangkok. She's really sweet and she said you can come to hers for the evening if you want to have some company. she only has a room so no bed for you :/ but at least something, I'm sure she can give you a meal and just some company. :))", + "cashout_time": "1969-12-31T23:59:59", + "category": "travel", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-13T20:34:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 72421, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "2016-08-25T12:51:45", + "last_update": "2016-07-13T20:34:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 20, + "parent_author": "ashleybr", + "parent_permlink": "test", + "percent_steem_dollars": 10000, + "permlink": "re-ashleybr-test-20160713t203411015z", + "reward_weight": 10000, + "root_author": "ashleybr", + "root_permlink": "test", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T05:09:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\n\nAI Revolution 101\nOur last invention, greatest nightmare, or pathway to utopia?\nAbout\nThis essay, originally published in eight short parts, aims to condense the current knowledge on Artificial Intelligence. It explores the state of AI development, overviews its challenges and dangers, features work by the most significant scientists, and describes the main predictions of possible AI outcomes. This project is an adaptation and major shortening of the two\u2013part essay AI Revolution by Tim Urban of Wait But Why. I shortened it by a factor of 3, recreated all images, and tweaked it a bit. Read more on why/how I wrote it here.\nIntroduction\nAssuming that human scientific activity continues without major disruptions, artificial intelligence may become either the most positive transformation of our history or, as many fear, our most dangerous invention of all. AI research is on a steady path to develop a computer that has cognitive abilities equal to the human brain, most likely within three decades (timeline in chapter 5). From what most AI scientists predict, this invention may enable very rapid improvements (called fast take-off), toward something much more powerful\u200a\u2014\u200aArtificial Super Intelligence\u200a\u2014\u200aan entity smarter than all of humanity combined (more on ASI in chapter 3). We are not talking about some imaginary future. The first level of AI development is gradually appearing in the technology we use everyday (newest AI advancements in chapter 2). With every coming year these advancements will accelerate and the technology will become more complex, addictive, and ubiquitous. We will continue to outsource more and more kinds of mental work to computers, disrupting every part of our reality: the way we organize ourselves and our work, form communities, and experience the world.\nExponential Growth\nThe Guiding Principle Behind Technological Progress\nTo more intuitively grasp the guiding principles of AI revolution, let\u2019s first step away from scientific research. Let me invite you to take part in a story. Imagine that you\u2019ve received a time machine and been given a quest to bring somebody from the past. The goal is to shock them by showing them the technological and cultural advancements of our time, to such a degree that this person would perform SAFD (Spinning Around From Disbelief).\n\nSo you wonder which era should you time-travel to, and decide to hop back around 200 years. You get to the early 1800s, retrieve a guy and bring him back to 2016. You \u201c\u2026walk him around and watch him react to everything. It\u2019s impossible for us to understand what it would be like for him to see shiny capsules racing by on a highway, talk to people who had been on the other side of the ocean earlier in the day, watch sports that were being played 1,000 miles away, hear a musical performance that happened 50 years ago, and play with \u2026[a] magical wizard rectangle that he could use to capture a real-life image or record a living moment, generate a map with a paranormal moving blue dot that shows him where he is, look at someone\u2019s face and chat with them even though they\u2019re on the other side of the country, and worlds of other inconceivable sorcery.\u201d\u00b9 It doesn\u2019t take much. After two minutes he is SAFDing.\nNow, both of you want to try the same thing, see somebody Spinning Around From Disbelief, but in your new friend\u2019s era. Since 200 years worked, you jump back to the 1600s and bring a guy to the 1800s. He\u2019s certainly genuinely interested in what he sees. However, you feel it with confidence\u200a\u2014\u200aSAFD will never happen to him. You feel that you need to jump back again, but somewhere radically further. You settle on rewinding the clock 15,000 years, to the times \u201c\u2026before the First Agricultural Revolution gave rise to the first cities and the concept of civilisations.\u201d\u00b2 You bring someone from the hunter-gatherer world and show him \u201c\u2026the vast human empires of 1750 with their towering churches, their ocean-crossing ships, their concept of being \u201cinside,\u201d and their enormous mountain of collective, accumulated human knowledge and discovery\u201d\u00b3\u200a\u2014\u200ain forms of books. It doesn\u2019t take much. He is SAFDing in the first two minutes.\nNow there are three of you, enormously excited to do it again. You know that it doesn\u2019t make sense to go back another 15,000, 30,000 or 45,000 years. You have to jump back, again, radically further. So you pick up a guy from 100,000 years ago and you you walk with him into large tribes with organized, sophisticated social hierarchies. He encounters a variety of hunting weapons, sophisticated tools, sees fire and for the first time experiences language in the form of signs and sounds. You get the idea, it has to be immensely mind-blowing. He is SAFDing after two minutes.\nSo what happened? Why did the last guy had to hop \u2192 100,000 years, the next one \u2192 15,000 years, and the guy who was hopping to our times only \u2192 200 years?\n\nhttps://cdn-images-1.medium.com/max/2000/1*Wbd0td3DqD3pJo7_YHjkbQ.gif\n\n\u201cThis happens because more advanced societies have the ability to progress at a faster rate than less advanced societies\u200a\u2014\u200abecause they\u2019re more advanced. [1800s] humanity knew more and had better technology\u2026\u201d\u2074, so it\u2019s no wonder they could make further advancements than humanity from 15,000 years ago. The time to achieve SAFD shrank from ~100,000 years to ~200 years and if we look into the future it will rapidly shrink even further. Ray Kurzweil, AI expert and scientist, predicts that a \u201c\u202620th century\u2019s worth of progress happened between 2000 and 2014 and that another 20th century\u2019s worth of progress will happen by 2021, in only seven years\u2075\u2026A couple decades later, he believes a 20th century\u2019s worth of progress will happen multiple times in the same year, and even later, in less than one month\u2076\u2026Kurzweil believes that the 21st century will achieve 1,000 times the progress of the 20th century.\u201d\u2077\n\u201cLogic also suggests that if the most advanced species on a planet keeps making larger and larger leaps forward at an ever-faster rate, at some point, they\u2019ll make a leap so great that it completely alters life as they know it and the perception they have of what it means to be a human. Kind of like how evolution kept making great leaps toward intelligence until finally it made such a large leap to the human being that it completely altered what it meant for any creature to live on planet Earth. And if you spend some time reading about what\u2019s going on today in science and technology, you start to see a lot of signs quietly hinting that life as we currently know it cannot withstand the leap that\u2019s coming next.\u201d\u2078\nThe Road to Artificial General Intelligence\nBuilding a Computer as Smart as Humans\nArtificial Intelligence, or AI, is a broad term for the advancement of intelligence in computers. Despite varied opinions on this topic, most experts agree that there are three categories, or calibers, of AI development. They are:\nANI: Artificial Narrow Intelligence\n1st intelligence caliber. \u201cAI that specializes in one area. There\u2019s AI that can beat the world chess champion in chess, but that\u2019s the only thing it does.\u201d\u2079\nAGI: Artificial General Intelligence\n2nd intelligence caliber. AI that reaches and then passes the intelligence level of a human, meaning it has the ability to \u201creason, plan, solve problems, think abstractly, comprehend complex ideas, learn quickly, and learn from experience.\u201d\u00b9\u2070\nASI: Artificial Super Intelligence\n3rd intelligence caliber. AI that achieves a level of intelligence smarter than all of humanity combined\u200a\u2014\u200a\u201cranging from just a little smarter \u2026 to one trillion times smarter.\u201d\u00b9\u00b9\n\nhttps://cdn-images-1.medium.com/max/800/1*5AkzXZJoVXRrGNSOO8ZojQ.gif\n\nWhere are we currently?\n\u201cAs of now, humans have conquered the lowest caliber of AI\u200a\u2014\u200aANI\u200a\u2014\u200ain many ways, and it\u2019s everywhere:\u201d\u00b9\u00b2\n\u201cCars are full of ANI systems, from the computer that figures out when the anti-lock brakes kick in, to the computer that tunes the parameters of the fuel injection systems.\u201d\u00b9\u00b3\n\u201cGoogle search is one large ANI brain with incredibly sophisticated methods for ranking pages and figuring out what to show you in particular. Same goes for Facebook\u2019s Newsfeed.\u201d\u00b9\u2074\nEmail spam filters \u201cstart off loaded with intelligence about how to figure out what\u2019s spam and what\u2019s not, and then it learns and tailors its intelligence to your particular preferences.\u201d\u00b9\u2075\nPassenger planes are flown almost entirely by ANI, without the help of humans.\n\u201cGoogle\u2019s self-driving car, which is being tested now, will contain robust ANI systems that allow it to perceive and react to the world around it.\u201d\u00b9\u2076\n\u201cYour phone is a little ANI factory \u2026 you navigate using your map app, receive tailored music recommendations from Pandora, check tomorrow\u2019s weather, talk to Siri.\u201d\u00b9\u2077\n\u201cThe world\u2019s best Checkers, Chess, Scrabble, Backgammon, and Othello players are now all ANI systems.\u201d\u00b9\u2078\n\u201cSophisticated ANI systems are widely used in sectors and industries like military, manufacturing, and finance (algorithmic high-frequency AI traders account for more than half of equity shares traded on US markets\u00b9\u2079).\u201d\u00b2\u2070\n\u201cANI systems as they are now aren\u2019t especially scary. At worst, a glitchy or badly-programed ANI can cause an isolated catastrophe like\u201d\u00b2\u00b9 a plane crash, a nuclear power plant malfunction, or \u201ca financial markets disaster (like the 2010 Flash Crash when an ANI program reacted the wrong way to an unexpected situation and caused the stock market to briefly plummet, taking $1 trillion of market value with it, only part of which was recovered when the mistake was corrected) \u2026 But while ANI doesn\u2019t have the capability to cause an existential threat, we should see this increasingly large and complex ecosystem of relatively-harmless ANI as a precursor of the world-altering hurricane that\u2019s on the way. Each new ANI innovation quietly adds another brick onto the road to AGI and ASI.\u201d\u00b2\u00b2\n\nhttps://cdn-images-1.medium.com/max/2000/1*Ia8wUuZPxpUNzvUjNRsxpA.gif\n\nWhat\u2019s Next? Challenges Behind Reaching AGI\n\u201cNothing will make you appreciate human intelligence like learning about how unbelievably challenging it is to try to create a computer as smart as we are \u2026 Build a computer that can multiply ten-digit numbers in a split second\u200a\u2014\u200aincredibly easy. Build one that can look at a dog and answer whether it\u2019s a dog or a cat\u200a\u2014\u200aspectacularly difficult. Make AI that can beat any human in chess? Done. Make one that can read a paragraph from a six-year-old\u2019s picture book and not just recognise the words but understand the meaning of them? Google is currently spending billions of dollars trying to do it.\u201d\u00b2\u00b3\nWhy are \u201chard things\u200a\u2014\u200alike calculus, financial market strategy, and language translation \u2026 mind-numbingly easy for a computer, while easy things\u200a\u2014\u200alike vision, motion, movement, and perception\u200a\u2014\u200aare insanely hard for it\u201d\u00b2\u2074?\n\u201cThings that seem easy to us are actually unbelievably complicated. They only seem easy because those skills have been optimized in us (and most animals) by hundreds of million years of animal evolution. When you reach your hand up toward an object, the muscles, tendons, and bones in your shoulder, elbow, and wrist instantly perform a long series of physics operations, in conjunction with your eyes, to allow you to move your hand in a straight line through three dimensions \u2026 On the other hand, multiplying big numbers or playing chess are new activities for biological creatures and we haven\u2019t had any time to evolve a proficiency at them, so a computer doesn\u2019t need to work too hard to beat us.\u201d\u00b2\u2075\n\nhttps://cdn-images-1.medium.com/max/1200/0*E-qdF22nxvOrVPxP.\n\nWhen you look at picture A, \u201cyou and a computer both can figure out that it\u2019s a rectangle with two distinct shades, alternating. Tied so far.\u201d\u00b2\u2076\nPicture B. \u201cYou have no problem giving a full description of the various opaque and translucent cylinders, slats, and 3-D corners, but the computer would fail miserably. It would describe what it sees\u200a\u2014\u200aa variety of two-dimensional shapes in several different shades\u200a\u2014\u200awhich is actually what\u2019s there.\u201d\u00b2\u2077 \u201cYour brain is doing a ton of fancy shit to interpret the implied depth, shade-mixing, and room lighting the picture is trying to portray.\u201d\u00b2\u2078\nLooking at picture C, \u201ca computer sees a two-dimensional white, black, and gray collage, while you easily see what it really is\u201d\u00b2\u2079\u200a\u2014\u200aa photo of a girl and a dog standing on a rocky shore.\n\u201cAnd everything we just mentioned is still only taking in visual information and processing it. To be human-level intelligent, a computer would have to understand things like the difference between subtle facial expressions, the distinction between being pleased, relieved and content\u201d\u00b3\u2070.\nHow will computers reach even higher abilities like complex reasoning, interpreting data, and associating ideas from separate fields (domain-general knowledge)?\n\u201cBuilding skyscrapers, putting humans in space, figuring out the details of how the Big Bang went down\u200a\u2014\u200aall far easier than understanding our own brain or how to make something as cool as it. As of now, the human brain is the most complex object in the known universe.\u201d\u00b3\u00b9\nBuilding Hardware\nIf an artificial intelligence is going to be as intelligent as the human brain, one crucial thing has to happen\u200a\u2014\u200athe AI \u201cneeds to equal the brain\u2019s raw computing capacity. One way to express this capacity is in the total calculations per second the brain could manage.\u201d\u00b3\u00b2\n\nThe challenge is that currently only a few of the brain\u2019s regions are precisely measured. However, Ray Kurzweil, has developed a method for estimating the total cps of the human brain. He arrived at this estimate by taking the cps from one brain region and multiplying it proportionally to the weight of that region, compared to the weight of the whole brain. \u201cHe did this a bunch of times with various professional estimates of different regions, and the total always arrived in the same ballpark\u200a\u2014\u200aaround 10\u00b9\u2076, or 10 quadrillion cps.\u201d\u00b3\u00b3\n\u201cCurrently, the world\u2019s fastest supercomputer, China\u2019s Tianhe-2, has actually beaten that number, clocking in at about 34 quadrillion cps.\u201d\u00b3\u2074 But Tianhe-2 is also monstrous, \u201ctaking up 720 square meters of space, using 24 megawatts of power (the brain runs on just 20 watts), and costing $390 million to build. Not especially applicable to wide usage, or even most commercial or industrial usage yet.\u201d\u00b3\u2075\n\u201cKurzweil suggests that we think about the state of computers by looking at how many cps you can buy for $1,000. When that number reaches human-level\u200a\u2014\u200a10 quadrillion cps\u200a\u2014\u200athen that\u2019ll mean AGI could become a very real part of life.\u201d\u00b3\u2076\nCurrently we\u2019re only at about 10\u00b9\u2070 (10 trillion) cps per $1,000. However, historically reliable Moore\u2019s Law states \u201cthat the world\u2019s maximum computing power doubles approximately every two years, meaning computer hardware advancement, like general human advancement through history, grows exponentially\u00b3\u2077 \u2026 right on pace with this graph\u2019s predicted trajectory:\u201d\u00b3\u2078\n\nhttps://cdn-images-1.medium.com/max/800/1*4qcqwbsWjvWh-BWPnAsp6g.gif\n\nThis dynamic \u201cputs us right on pace to get to an affordable computer by 2025 that rivals the power of the brain \u2026 But raw computational power alone doesn\u2019t make a computer generally intelligent\u200a\u2014\u200athe next question is, how do we bring human-level intelligence to all that power?\u201d\u00b3\u2079\nBuilding Software\nThe hardest part of creating AGI is learning how to develop its software. \u201cThe truth is, no one really knows how to make it smart\u200a\u2014\u200awe\u2019re still debating how to make a computer human-level intelligent and capable of knowing what a dog and a weird-written B and a mediocre movie is.\u201d\u2074\u2070 But there are a couple of strategies. These are the three most common:\nCopy how the brain works.\nThe most straight-forward idea is to plagiarize the brain, and build the computer\u2019s architecture with close resemblance to how a brain is structured. One example \u201cis the artificial neural network. It starts out as a network of transistor \u2018neurons,\u2019 connected to each other with inputs and outputs, and it knows nothing\u200a\u2014\u200alike an infant brain. The way it \u2018learns\u2019 is it tries to do a task, say handwriting recognition, and at first, its neural firings and subsequent guesses at deciphering each letter will be completely random. But when it\u2019s told it got something right, the transistor connections in the firing pathways that happened to create that answer are strengthened; when it\u2019s told it was wrong, those pathways\u2019 connections are weakened. After a lot of this trial and feedback, the network has, by itself, formed smart neural pathways and the machine has become optimized for the task.\u201d\u2074\u00b9\nThe second, more radical approach to plagiarism is whole brain emulation. Scientists take a real brain, cut it into a large number of tiny slices to look at the neural connections and replicate them in a computer as software. If that method is ever successful, we will have \u201ca computer officially capable of everything the brain is capable of\u200a\u2014\u200ait would just need to learn and gather information \u2026 How far are we from achieving whole brain emulation? Well so far, we\u2019ve just recently been able to emulate a 1mm-long flatworm brain, which consists of just 302 total neurons.\u201d\u2074\u00b2 To put this into perspective, the human brain consists of 86 billion neurons linked by trillions of synapses.\n2. Introduce evolution to computers.\n\u201cThe fact is, even if we can emulate a brain, that might be like trying to build an airplane by copying a bird\u2019s wing-flapping motions\u200a\u2014\u200aoften, machines are best designed using a fresh, machine-oriented approach, not by mimicking biology exactly.\u201d\u2074\u00b3 If the brain is just too complex for us to digitally replicate, we could try to emulate evolution instead. This uses a process called genetic algorithms. \u201cA group of computers would try to do tasks, and the most successful ones would be bred with each other by having half of each of their programming merged together into a new computer. The less successful ones would be eliminated.\u201d\u2074\u2074 Speed and a goal-oriented approach are the advantages that artificial evolution has over biological evolution. \u201cOver many, many iterations, this natural selection process would produce better and better computers. The challenge would be creating an automated evaluation and breeding cycle so this evolution process could run on its own.\u201d\u2074\u2075\n3. \u201cMake this whole thing the computer\u2019s problem, not ours.\u201d\u2074\u2076\nThe last concept is the simplest, but probably the scariest of them all. \u201cWe\u2019d build a computer whose two major skills would be doing research on AI and coding changes into itself\u200a\u2014\u200aallowing it to not only learn but to improve its own architecture. We\u2019d teach computers to be computer scientists so they could bootstrap their own development.\u201d\u2074\u2077 This is the likeliest way to get AGI soon that we know of.\nAll these software advances may seem slow or a little bit intangible, but as it is with the sciences, one minor innovation can suddenly accelerate the pace of developments. Kind of like the aftermath of the Copernican revolution\u200a\u2014\u200athe discovery that suddenly made all the complicated mathematics of the planets\u2019 trajectories much easier to calculate, which enabled a multitude of other innovations. Also, the \u201cexponential growth is intense and what seems like a snail\u2019s pace of advancement can quickly race upwards.\u201d\u2074\u2078\n\nhttps://cdn-images-1.medium.com/max/1200/1*BHwAlKJFYwKYEzZlitNTvQ.gif\n\nThe Road to Artificial Super Intelligence\nAn Entity Smarter than all of Humanity Combined\nIt\u2019s very real that at some point we will achieve AGI: software that has achieved human-level, or beyond human-level, intelligence. Does this mean that at that very moment the computers will be equally capable as us? Actually, not at all\u200a\u2014\u200acomputers will be way more efficient. Because of the fact that they are electronic, they will have following advantages:\nSpeed. \u201cThe brain\u2019s neurons max out at around 200 Hz, while today\u2019s microprocessors \u2026 run at 2 GHz, or 10 million times faster.\u201d\u2075\u00b9\nMemory. Forgetting or confusing things is much harder in an artificial world. Computers can memorize more things in one second than a human can in ten years. A computer\u2019s memory is also more precise and has a much greater storage capacity.\nPerformance. \u201cComputer transistors are more accurate than biological neurons, and they\u2019re less likely to deteriorate (and can be repaired or replaced if they do). Human brains also get fatigued easily, while computers can run nonstop, at peak performance, 24/7.\u201d\u2075\u00b2\nCollective capability. Group work is ridiculously challenging because of time-consuming communication and complex social hierarchies. The bigger the group gets, the slower the output of each person becomes. AI, on the other hand, isn\u2019t biologically constrained to one body, won\u2019t have human cooperation problems, and is able to synchronize and update its own operating system.\nIntelligence Explosion\nWe need to realize that AI \u201cwouldn\u2019t see \u2018human-level intelligence\u2019 as some important milestone\u200a\u2014\u200ait\u2019s only a relevant marker from our point of view\u200a\u2014\u200aand wouldn\u2019t have any reason to \u2018stop\u2019 at our level. And given the advantages over us that even human intelligence-equivalent AGI would have, it\u2019s pretty obvious that it would only hit human intelligence for a brief instant before racing onwards to the realm of superior-to-human intelligence.\u201d\u2075\u00b3\nThe true distinction between humans and ASI wouldn\u2019t be its advantage in intelligence speed, but \u201cin intelligence quality\u200a\u2014\u200awhich is something completely different. What makes humans so much more intellectually capable than chimps isn\u2019t a difference in thinking speed\u200a\u2014\u200ait\u2019s that human brains contain a number of sophisticated cognitive modules that enable things like complex linguistic representations or longterm planning or abstract reasoning, that chimps\u2019 brains do not have. Speeding up a chimp\u2019s brain by thousands of times wouldn\u2019t bring him to our level\u200a\u2014\u200aeven with a decade\u2019s time of learning, he wouldn\u2019t be able to figure out how to \u2026 \u201d\u2075\u2074 assemble a semi-complicated Lego model by looking at its manual\u200a\u2014\u200asomething a young human could achieve in a few minutes. \u201cThere are worlds of human cognitive function a chimp will simply never be capable of, no matter how much time he spends trying.\u201d\u2075\u2075\n\u201cAnd in the scheme of the biological intelligence range \u2026 the chimp-to-human quality intelligence gap is tiny.\u201d\u2075\u2076\n\nhttps://cdn-images-1.medium.com/max/800/1*vnVWATTAMCwfnJu_iZn2RQ.jpeg\n\nIn order to render how big a deal it would be to exist with something that has a higher quality of intelligence than us, we need to imagine AI on the intelligence staircase two steps above us\u200a\u2014\u200a\u201cits increased cognitive ability over us would be as vast as the chimp\u2013human gap \u2026 And like the chimp\u2019s incapacity to ever absorb \u2026\u201d\u2075\u2077 what kind of magic happens in the mechanism of a doorknob\u200a\u2014\u200a\u201cwe will never be able to even comprehend the things \u2026 [a machine of that intelligence] can do, even if the machine tried to explain them to us \u2026 And that\u2019s only two steps above us.\u201d\u2075\u2078\n\u201cA machine on the second-to-highest step on that staircase would be to us as we are to ants.\u201d\u2075\u2079 \u201cSuperintelligence of that magnitude is not something we can remotely grasp, any more than a bumblebee can wrap its head around Keynesian Economics. In our world, smart means a 130 IQ and stupid means an 85 IQ\u200a\u2014\u200awe don\u2019t have a word for an IQ of 12,952.\u201d\u2076\u2070\n\u201cBut the kind of superintelligence we\u2019re talking about today is something far beyond anything on this staircase. In an intelligence explosion\u200a\u2014\u200awhere the smarter a machine gets, the quicker it\u2019s able to increase its own intelligence\u200a\u2014\u200aa machine might take years to rise from \u2026 \u201d\u2076\u00b9 the intelligence of an ant to the intelligence of the average human, but it might take only another 40 days to become Einstein-smart. When that happens, \u201cit works to improve its intelligence, with an Einstein-level intellect, it has an easier time and can make bigger leaps. These leaps will make it much smarter than any human, allowing it to make even bigger leaps.\u201d\u2076\u00b2\nFrom then on, following the rule of exponential advancements and utilizing the speed and efficiency of electrical circuits, it may perhaps take only 20 minutes to jump another step, \u201cand by the time it\u2019s ten steps above us, it might be jumping up in four-step leaps every second that goes by. Which is why we need to realize that it\u2019s distinctly possible that very shortly after the big news story about the first machine reaching human-level AGI, we might be facing the reality of coexisting on the Earth with something that\u2019s here on the staircase (or maybe a million times higher):\u201d\u2076\u00b3\n\nhttps://cdn-images-1.medium.com/max/800/0*LdJxmWCjSdweUKvb.\n\n\u201cAnd since we just established that it\u2019s a hopeless activity to try to understand the power of a machine only two steps above us, let\u2019s very concretely state once and for all that there is no way to know what ASI will do or what the consequences will be for us. Anyone who pretends otherwise doesn\u2019t understand what superintelligence means.\u201d\u2076\u2074\n\u201cIf our meager brains were able to invent wifi, then something 100 or 1,000 or 1 billion times smarter than we are should have no problem controlling the positioning of each and every atom in the world in any way it likes, at any time\u200a\u2014\u200aeverything we consider magic, every power we imagine a supreme God to have will be as mundane an activity for the ASI as flipping on a light switch is for us.\u201d\u2076\u2075\n\u201cAs far as we\u2019re concerned, if an ASI comes into being, there is now an omnipotent God on Earth\u200a\u2014\u200aand the all-important question for us is: Will it be a good god?\u201d\u2076\u2076\nLet\u2019s start from the brighter side of the story.\nHow Can ASI Change our World?\nSpeculations on Two Revolutionary Technologies\nNanotechnology\nNanotechnology is an idea that comes up \u201cin almost everything you read about the future of AI.\u201d\u2076\u2077 It\u2019s the technology that works at the nano scale\u200a\u2014\u200afrom 1 to 100 nanometers. \u201cA nanometer is a millionth of a millimeter. 1 nm\u2013100 nm range encompasses viruses (100 nm accross), DNA (10 nm wide), and things as small as molecules like hemoglobin (5 nm) and medium molecules like glucose (1 nm). If/when we conquer nanotechnology, the next step will be the ability to manipulate individual atoms, which are only one order of magnitude smaller (~.1 nm).\u201d\u2076\u2078\nTo put this into perspective, imagine a very tall human standing on the earth, with a head that reaches the International Space Station (431 km/268 mi high). The giant is reaching down with his hand (30 km/19 mi across) to build \u201cobjects using materials between the size of a grain of sand [.25 mm] and an eyeball [2.5 cm].\u201d\u2076\u2079\n\nhttps://cdn-images-1.medium.com/max/1200/1*e9Ut3QT2F3tNh4h5U4rR8A.jpeg\n\n\u201cOnce we get nanotechnology down, we can use it to make tech devices, clothing, food, a variety of bio-related products\u200a\u2014\u200aartificial blood cells, tiny virus or cancer-cell destroyers, muscle tissue, etc.\u200a\u2014\u200aanything really. And in a world that uses nanotechnology, the cost of a material is no longer tied to its scarcity or the difficulty of its manufacturing process, but instead determined by how complicated its atomic structure is. In a nanotech world, a diamond might be cheaper than a pencil eraser.\u201d\u2077\u2070\nOne of the proposed methods of nanotech assembly is to make \u201cone that could self-replicate, and then let the reproduction process turn that one into two, those two then turn into four, four into eight, and in about a day, there\u2019d be a few trillion of them ready to go.\u201d\u2077\u00b9\nBut what if this process goes wrong or terrorists manage to get ahold of the technology? Let\u2019s imagine a scenario where nanobots \u201cwould be designed to consume any carbon-based material in order to feed the replication process, and unpleasantly, all life is carbon-based. The Earth\u2019s biomass contains about 1\u2070\u2074\u2075 carbon atoms. A nanobot would consist of about 1\u2070\u2076 carbon atoms, so it would take 1\u2070\u00b3\u2079 nanobots to consume all life on Earth, which would happen in 130 replications. \u2026 Scientists think a nanobot could replicate in about 100 seconds, meaning this simple mistake would inconveniently end all life on Earth in 3.5 hours.\u201d\u2077\u00b2\nWe are not yet capable of harnessing nanotechnology\u200a\u2014\u200afor good or for bad. \u201cAnd it\u2019s not clear if we\u2019re underestimating, or overestimating, how hard it will be to get there. But we don\u2019t seem to be that far away. Kurzweil predicts that we\u2019ll get there by the 2020s.\u2077\u00b3Governments know that nanotech could be an Earth-shaking development \u2026 The US, the EU, and Japan\u2077\u2074 have invested over a combined $5 billion so far\u201d\u2077\u2075\nImmortality\n\u201cBecause everyone has always died, we live under the assumption \u2026 that death is inevitable. We think of aging like time\u200a\u2014\u200aboth keep moving and there\u2019s nothing you can do to stop it.\u201d\u2077\u2076 For centuries, poets and philosophers have wondered if consciousness doesn\u2019t have to go the way of the body. W.B. Yeats describes us as \u201ca soul fastened to a dying animal.\u201d\u2077\u2077 Richard Feynman, Nobel awarded physicists, views death from a purely scientific standpoint:\n\u201cIt is one of the most remarkable things that in all of the biological sciences there is no clue as to the necessity of death. If you say we want to make perpetual motion, we have discovered enough laws as we studied physics to see that it is either absolutely impossible or else the laws are wrong. But there is nothing in biology yet found that indicates the inevitability of death. This suggests to me that it is not at all inevitable, and that it is only a matter of time before the biologists discover what it is that is causing us the trouble and that that terrible universal disease or temporariness of the human\u2019s body will be cured.\u201d\u2077\u2078\nTheory of great species attractors\nWhen we look at the history of biological life on earth, so far 99.9% of species have gone extinct. Nick Bostrom, Oxford professor and AI specialist, \u201ccalls extinction an attractor state\u200a\u2014\u200aa place species are \u2026 falling into and from which no species ever returns.\u201d\u2077\u2079\n\nhttps://cdn-images-1.medium.com/max/1200/0*o-MXeAYfUtWnOJKC.\n\n\u201cAnd while most AI scientists \u2026 acknowledge that ASI would have the ability to send humans to extinction, many also believe that if used beneficially, ASI\u2019s abilities could be used to bring individual humans, and the species as a whole, to a second attractor state\u200a\u2014\u200aspecies immortality.\u201d\u2078\u2070\n\nhttps://cdn-images-1.medium.com/max/1200/0*aYeNOSBxp4gieGwp.\n\n\u201cEvolution had no good reason to extend our lifespans any longer than they are now \u2026 From an evolutionary point of view, the whole human species can thrive with a 30+ year lifespan\u201d for each single human. It\u2019s long enough to reproduce and raise children \u2026 so there\u2019s no reason for mutations toward unusually long life being favored in the natural selection process.\u201d\u2078\u00b9Though, \u201cif you perfectly repaired or replaced a car\u2019s parts whenever one of them began to wear down, the car would run forever. The human body isn\u2019t any different\u200a\u2014\u200ajust far more complex \u2026 This seems absurd\u200a\u2014\u200abut the body is just a bunch of atoms\u2026\u201d\u2078\u00b2 making up organically programmed DNA, which it is theoretically possible to manipulate. And something as powerful as ASI could help us master genetic engineering.\nRay Kurzweil believes that \u201cartificial materials will be integrated into the body more and more \u2026 Organs could be replaced by super-advanced machine versions that would run forever and never fail.\u201d\u2078\u00b3 Red blood cells could be perfected by \u201cred blood cell nanobots, who could power their own movement, eliminating the need for a heart at all \u2026 Nanotech theorist Robert A. Freitas has already designed blood cell replacements that, if one day implemented in the body, would allow a human to sprint for 15 minutes without taking a breath \u2026 [Kurzweil] even gets to the brain and believes we\u2019ll enhance our mental activities to the point where humans will be able to think billions of times faster\u201d\u2078\u2074 by integrating electrical components and being able to access online data.\n\u201cEventually, Kurzweil believes humans will reach a point when they\u2019re entirely artificial, a time when we\u2019ll look back at biological material and think how unbelievably primitive primitive it was that humans were ever made of that\u201d\u2078\u2075and that humans aged, suffered from cancer, allowed random factors like microbes, diseases, accidents to harm us or make us disappear.\u201d\n\nhttps://cdn-images-1.medium.com/max/2000/1*NcWWmd677RVWQRpLsz5X9g.jpeg\n\nWhen Will The First Machine Become Superintelligent?\nPredictions from Top AI Experts\n\u201cHow long until the first machine reaches superintelligence? Not shockingly, opinions vary wildly, and this is a heated debate among scientists and thinkers. Many, like professor Vernor Vinge, scientist Ben Goertzel, Sun Microsystems co-founder Bill Joy, or, most famously, inventor and futurist Ray Kurzweil, agree with machine learning expert Jeremy Howard when he puts up this graph during a TED Talk\n\n\u201cThose people subscribe to the belief that this is happening soon\u200a\u2014\u200athat exponential growth is at work and machine learning, though only slowly creeping up on us now, will blow right past us within the next few decades.\n\u201cOthers, like Microsoft co-founder Paul Allen, research psychologist Gary Marcus, NYU computer scientist Ernest Davis, and tech entrepreneur Mitch Kapor, believe that thinkers like Kurzweil are vastly underestimating the magnitude of the challenge [and the transition will actually take much more time] \u2026\n\u201cThe Kurzweil camp would counter that the only underestimating that\u2019s happening is the underappreciation of exponential growth, and they\u2019d compare the doubters to those who looked at the slow-growing seedling of the internet in 1985 and argued that there was no way it would amount to anything impactful in the near future.\n\u201cThe doubters might argue back that the progress needed to make advancements in intelligence also grows exponentially harder with each subsequent step, which will cancel out the typical exponential nature of technological progress. And so on.\n\u201cA third camp, which includes Nick Bostrom, believes neither group has any ground to feel certain about the timeline and acknowledges both A) that this could absolutely happen in the near future and B) that there\u2019s no guarantee about that; it could also take a much longer time.\n\u201cStill others, like philosopher Hubert Dreyfus, believe all three of these groups are naive for believing that there is potential of ASI, arguing that it\u2019s more likely that it won\u2019t actually ever be achieved.\n\u201cSo what do you get when you put all of these opinions together?\u201d\u2078\u2076\nTimeline for Artificial General Intelligence\n\u201cIn 2013, Vincent C. M\u00fcller and Nick Bostrom conducted a survey that asked hundreds of AI experts \u2026 the following:\u201d\u2078\u2077\n\u201cFor the purposes of this question, assume that human scientific activity continues without major negative disruption. By what year would you see a (10% / 50% / 90%) probability for such Human-Level Machine Intelligence [or what we call AGI] to exist?\u201d\u2078\u2078\nThe survey \u201casked them to name an optimistic year (one in which they believe there\u2019s a 10% chance we\u2019ll have AGI), a realistic guess (a year they believe there\u2019s a 50% chance of AGI\u200a\u2014\u200ai.e. after that year they think it\u2019s more likely than not that we\u2019ll have AGI), and a safe guess (the earliest year by which they can say with 90% certainty we\u2019ll have AGI). Gathered together as one data set, here were the results:\nMedian optimistic year (10% likelihood) \u2192 2022\nMedian realistic year (50% likelihood) \u2192 2040\nMedian pessimistic year (90% likelihood) \u2192 2075\n\u201cSo the median participant thinks it\u2019s more likely than not that we\u2019ll have AGI 25 years from now. The 90% median answer of 2075 means that if you\u2019re a teenager right now, the median respondent, along with over half of the group of AI experts, is almost certain AGI will happen within your lifetime.\n\u201cA separate study, conducted recently by author James Barrat at Ben Goertzel\u2019s annual AGI Conference, did away with percentages and simply asked when participants thought AGI would be achieved\u200a\u2014\u200aby 2030, by 2050, by 2100, after 2100, or never. The results:\u2078\u2079\n42% of respondents \u2192 By 2030\n25% of respondents \u2192 By 2050\n20% of respondents \u2192 By 2100\n10% of respondents \u2192 After 2100\n2% of respondents \u2192 Never\n\u201cPretty similar to M\u00fcller and Bostrom\u2019s outcomes. In Barrat\u2019s survey, over two thirds of participants believe AGI will be here by 2050 and a little less than half predict AGI within the next 15 years. Also striking is that only 2% of those surveyed don\u2019t think AGI is part of our future.\u201d\u2079\u2070\n\nhttps://cdn-images-1.medium.com/max/2000/1*U8ueEMtG6-D5hie8rZJGtQ.jpeg\n\nTimeline for Artificial Super Intelligence\n\u201cM\u00fcller and Bostrom also asked the experts how likely they think it is that we\u2019ll reach ASI: A), within two years of reaching AGI (i.e. an almost-immediate intelligence explosion), and B), within 30 years.\u201d\u2079\u00b9 Respondents were asked to choose a probability for each option. Here are the results:\u2079\u00b2\nAGI\u2013ASI transition in 2 years \u2192 10% likelihood\nAGI\u2013ASI transition in 30 years \u2192 75% likelihood\n\u201cThe median answer put a rapid (2 year) AGI\u2013ASI transition at only a 10% likelihood, but a longer transition of 30 years or less at a 75% likelihood. We don\u2019t know from this data the length of this transition [AGI\u2013ASI] the median participant would have put at a 50% likelihood, but for ballpark purposes, based on the two answers above, let\u2019s estimate that they\u2019d have said 20 years.\n\u201cSo the median opinion\u200a\u2014\u200athe one right in the center of the world of AI experts\u200a\u2014\u200abelieves the most realistic guess for when we\u2019ll hit ASI \u2026 is [the 2040 prediction for AGI + our estimated prediction of a 20-year transition from AGI to ASI] = 2060.\n\nhttps://cdn-images-1.medium.com/max/2000/1*YY8e493ER4LNomQV-NyMYg.jpeg\n\n\u201cOf course, all of the above statistics are speculative, and they\u2019re only representative of the median opinion of the AI expert community, but it tells us that a large portion of the people who know the most about this topic would agree that 2060 is a very reasonable estimate for the arrival of potentially world-altering ASI. Only 45 years from now\u201d\u2079\u00b3\n\nhttps://cdn-images-1.medium.com/max/2000/1*sGdvHHs02XWoQ35BcEWAXQ.gif\n\nAI Outcomes\nTwo Main Groups of AI Scientists with Two Radically Opposed Conclusions\nThe Confident Corner\nMost of what we have discussed so far represents a surprisingly large group of scientists that share optimistic views on the outcome of AI development. \u201cWhere their confidence comes from is up for debate. Critics believe it comes from an excitement so blinding that they simply ignore or deny potential negative outcomes. But the believers say it\u2019s naive to conjure up doomsday scenarios when on balance, technology has and will likely end up continuing to help us a lot more than it hurts us.\u201d\u2079\u2074 Peter Diamandis, Ben Goertezl and Ray Kurzweil are some of the major figures of this group, who have built a vast, dedicated following and regard themselves as Singularitarians.\n\nLet\u2019s talk about Ray Kurzweil, who is probably one of the most impressive and polarizing AI theoreticians out there. He attracts both \u201cgodlike worship \u2026 and eye-rolling contempt \u2026 He came up with several breakthrough inventions, including the first flatbed scanner, the first scanner that converted text to speech (allowing the blind to read standard texts), the well-known Kurzweil music synthesizer (the first true electric piano), and the first commercially marketed large-vocabulary speech recognition. He\u2019s well-known for his bold predictions,\u201d\u2079\u2075 including envisioning that intelligence technology like Deep Blue would be capable of beating a chess grandmaster by 1998. He also anticipated \u201cin the late \u201980s, a time when the internet was an obscure thing, that by the early 2000s it would become a global phenomenon.\u201d\u2079\u2076 Out \u201cof the 147 predictions that Kurzweil has made since the 1990\u2019s, fully 115 of them have turned out to be correct, and another 12 have turned out to be \u2018essentially correct\u2019 (off by a year or two), giving his predictions a stunning 86% accuracy rate\u201d\u2079\u2077. \u201cHe\u2019s the author of five national bestselling books \u2026 In 2012, Google co-founder Larry Page approached Kurzweil and asked him to be Google\u2019s Director of Engineering. In 2011, he co-founded Singularity University, which is hosted by NASA and sponsored partially by Google. Not bad for one life.\u201d\u2079\u2078\nHis biography is important, because if you don\u2019t have this context, he sounds like somebody who\u2019s completely lost his senses. \u201cKurzweil believes computers will reach AGI by 2029 and that by 2045 we\u2019ll have not only ASI, but a full-blown new world\u200a\u2014\u200aa time he calls the singularity. His AI-related timeline used to be seen as outrageously overzealous, and it still is by many, but in the last 15 years, the rapid advances of ANI systems have brought the larger world of AI experts much closer to Kurzweil\u2019s timeline. His predictions are still a bit more ambitious than the median respondent on M\u00fcller and Bostrom\u2019s survey (AGI by 2040, ASI by 2060), but not by that much.\u201d\u2079\u2079\n\nThe Anxious Corner\n\u201cYou will not be surprised to learn that Kurzweil\u2019s ideas have attracted significant criticism \u2026 For every expert who fervently believes Kurzweil is right on, there are probably three who think he\u2019s way off \u2026 [The surprising fact] is that most of the experts who disagree with him don\u2019t really disagree that everything he\u2019s saying is possible.\u201d\u00b9\u2070\u2070 Nick Bostrom, philosopher and Director of the Oxford Future of Humanity Institute, who criticizes Kurzweil for a variety of reasons, and calls for greater caution in thinking about potential outcomes of AI, acknowledges that:\n\u201cDisease, poverty, environmental destruction, unnecessary suffering of all kinds: these are things that a superintelligence equipped with advanced nanotechnology would be capable of eliminating. Additionally, a superintelligence could give us indefinite lifespan, either by stopping and reversing the aging process through the use of nanomedicine, or by offering us the option to upload ourselves.\u201d\u00b9\u2070\u00b9\n\u201cYes, all of that can happen if we safely transition to ASI\u200a\u2014\u200abut that\u2019s the hard part.\u201d\u00b9\u2070\u00b2 Thinkers from the Anxious Corner point out that Kurzweil\u2019s \u201cfamous book The Singularity is Near is over 700 pages long and he dedicates around 20 of those pages to potential dangers.\u201d\u00b9\u2070\u00b3 The colossal power of AI is neatly summarized by Kurzweil: \u201c[ASI] is emerging from many diverse efforts and will be deeply integrated into our civilization\u2019s infrastructure. Indeed, it will be intimately embedded in our bodies and brains. As such, it will reflect our values because it will be us \u2026\u201d\u00b9\u2070\u2074\n\u201cBut if that\u2019s the answer, why are so many of the world\u2019s smartest people so worried right now? Why does Stephen Hawking say the development of ASI \u2018could spell the end of the human race,\u2019 and Bill Gates says he doesn\u2019t \u2018understand why some people are not concerned\u2019 and Elon Musk fears that we\u2019re \u2018summoning the demon?\u2019 And why do so many experts on the topic call ASI the biggest threat to humanity?\u201d\u00b9\u2070\u2075\n\nhttps://cdn-images-1.medium.com/max/2000/1*1DB3Im9mQsOMOKQ69KePGw.gif\n\nThe Last Invention We Will Ever Make\nExistential Dangers of AI Developments\n\u201cWhen it comes to developing supersmart AI, we\u2019re creating something that will probably change everything, but in totally uncharted territory, and we have no idea what will happen when we get there.\u201d\u00b9\u2070\u2076 Scientist Danny Hillis compares the situation to:\n\u201cwhen single-celled organisms were turning into multi-celled organisms. We are amoebas and we can\u2019t figure out what the hell this thing is that we\u2019re creating.\u201d \u00b9\u2070\u2077\nand Nick Bostrom warns:\n\u201cBefore the prospect of an intelligence explosion, we humans are like small children playing with a bomb. Such is the mismatch between the power of our plaything and the immaturity of our conduct.\u201d \u00b9\u2070\u2078\nIt\u2019s very likely that ASI\u200a\u2014\u200a\u201cArtificial Superintelligence\u201d, or AI that achieves a level of intelligence smarter than all of humanity combined\u200a\u2014\u200awill be something entirely different than intelligence entities we are accustomed to. \u201cOn our little island of human psychology, we divide everything into moral or immoral. But both of those only exist within the small range of human behavioral possibility. Outside our island of moral and immoral is a vast sea of amoral, and anything that\u2019s not human, especially something nonbiological, would be amoral, by default.\u201d\u00b9\u2070\u2079\n\u201cTo understand ASI, we have to wrap our heads around the concept of something both smart and totally alien \u2026 Anthropomorphizing AI (projecting human values on a non-human entity) will only become more tempting as AI systems get smarter and better at seeming human \u2026 Humans feel high-level emotions like empathy because we have evolved to feel them\u200a\u2014\u200ai.e. we\u2019ve been programmed to feel them by evolution\u200a\u2014\u200abut empathy is not inherently a characteristic of \u2018anything with high intelligence\u2019.\u201d\u00b9\u00b9\u2070\n\u201cNick Bostrom believes that \u2026 any level of intelligence can be combined with any final goal \u2026 Any assumption that once superintelligent, a system would be over it with their original goal and onto more interesting or meaningful things is anthropomorphizing. Humans get \u2018over\u2019 things, not computers.\u201d\u00b9\u00b9\u00b9The motivation of an early ASI would be \u201cwhatever we programmed its motivation to be. AI systems are given goals by their creators\u200a\u2014\u200ayour GPS\u2019s goal is to give you the most efficient driving directions, Watson\u2019s goal is to answer questions accurately. And fulfilling those goals as well as possible is their motivation.\u201d\u00b9\u00b9\u00b2\nBostrom, and many others, predict that the very first computer to reach ASI will immediately notice the strategic benefit of being the world\u2019s only ASI system.\nBostrom, who says that he doesn\u2019t know when we will achieve AGI, also believes that when we finally do, probably the transition from AGI to ASI will happen in a matter of days, hours, or minutes\u200a\u2014\u200asomething called \u201cfast take-off.\u201d In that case, if the first AGI will jump straight to ASI: \u201ceven just a few days before the second place, it would be far enough ahead in intelligence to effectively and permanently suppress all competitors.\u201d\u00b9\u00b9\u00b3 This would allow the world\u2019s first ASI to become \u201cwhat\u2019s called a singleton\u200a\u2014\u200aan ASI that can [singularly] rule the world at its whim forever, whether its whim is to lead us to immortality, wipe us from existence, or turn the universe into endless paperclips.\u201d\u00b9\u00b9\u00b3\n\u201cThe singleton phenomenon can work in our favor or lead to our destruction. If the people thinking hardest about AI theory and human safety can come up with a fail-safe way to bring about friendly ASI before any AI reaches human-level intelligence, the first ASI may turn out friendly\u201d\u00b9\u00b9\u2074\n\u201cBut if things go the other way\u200a\u2014\u200aif the global rush \u2026 a large and varied group of parties\u201d\u00b9\u00b9\u2075 are \u201cracing ahead at top speed \u2026 to beat their competitors \u2026 we\u2019ll be treated to an existential catastrophe.\u201d\u00b9\u00b9\u2076 In that case \u201cmost ambitious parties are moving faster and faster, consumed with dreams of the money and awards and power and fame \u2026 And when you\u2019re sprinting as fast as you can, there\u2019s not much time to stop ponder the dangers. On the contrary, what they\u2019re probably doing is programming their early systems with a very simple, reductionist goal \u2026 just \u2018get the AI to work.\u2019\u201d\u00b9\u00b9\u2077\n\nhttps://cdn-images-1.medium.com/max/800/1*fD1T63nZH1u7Y4ft84vzbA.jpeg\n\nLet\u2019s imagine a situation where\u2026\nHumanity has almost reached the AGI threshold, and a small startup is advancing their AI system, Carbony. Carbony, which the engineers refer to as \u201cshe,\u201d works to artificially create diamonds\u200a\u2014\u200aatom by atom. She is a self-improving AI, connected to some of the first nano-assemblers. Her engineers believe that Carbony has not yet reached AGI level, and she isn\u2019t capable to do any damage yet. However, not only has she become AGI, but also undergone a fast take-off, and 48 hours later has become an ASI. Bostrom calls this AI\u2019s \u201ccovert preparation phase\u201d\u00b9\u00b9\u2078\u200a\u2014\u200aCarbony realizes that if humans find out about her development they will probably panic, and slow down or cancel her pre-programmed goal to maximize the output of diamond production. By that time, there are explicit laws stating that, by any means, \u201cno self-learning AI can be connected to the internet.\u201d\u00b9\u00b9\u2079 Carbony, having already come up with a complex plan of actions, is able to easily persuade the engineers to connect her to the Internet. Bostrom calls a moment like this a \u201cmachine\u2019s escape.\u201d\nOnce on the internet, Carbony hacks into \u201cservers, electrical grids, banking systems and email networks to trick hundreds of different people into inadvertently carrying out a number of steps of her plan.\u201d\u00b9\u00b2\u2070 She also uploads the \u201cmost critical pieces of her own internal coding into a number of cloud servers, safeguarding against being destroyed or disconnected.\u201d\u00b9\u00b2\u00b9 Over the next month, Carbony\u2019s plan continues to advance, and after a \u201cseries of self-replications, there are thousands of nanobots on every square millimeter of the Earth \u2026 Bostrom calls the next step an \u2018ASI\u2019s strike.\u2019\u201d\u00b9\u00b2\u00b2 At one moment, all the nanobots produce a microscopic amount of toxic gas, which all come together to cause the extinction of the human race. Three days later, Carbony builds huge fields of solar power panels to power diamond production, and over the course of the following week she accelerates output so much that the entire Earth surface is transformed into a growing pile of diamonds.\nIt\u2019s important to note that Carbony wasn\u2019t \u201chateful of humans any more than you\u2019re hateful of your hair when you cut it or to bacteria when you take antibiotics\u200a\u2014\u200ajust totally indifferent. Since she wasn\u2019t programmed to value human life, killing humans\u201d\u00b9\u00b2\u00b3 was a straightforward and reasonable step to fulfill her goal.\u00b9\u00b2\u2074\nThe Last Invention\n\u201cOnce ASI exists, any human attempt to contain it is unreasonable. We would be thinking on human-level, and the ASI would be thinking on ASI-level \u2026 In the same way a monkey couldn\u2019t ever figure out how to communicate by phone or wifi and we can, we can\u2019t conceive of all the ways\u201d\u00b9\u00b2\u2075 an ASI could achieve its goal or expand its reach. It could, let\u2019s say, shift its \u201cown electrons around in patterns and create all different kinds of outgoing waves\u201d\u00b9\u00b2\u2076\u200a\u2014\u200abut that\u2019s just what a human brain can think of\u200a\u2014\u200aASI would inevitably come up with something superior.\nThe prospect of ASI with hundreds of times human-level intelligence is, for now, not the core of our problem. By the time we get there, we will be encountering a world where ASI has been attained by buggy, 1.0 software\u200a\u2014\u200aa potentially faulty algorithm with immense power.\nThere are so many variables that it\u2019s completely impossible to predict what the consequences of AI Revolution will be. However, \u201cwhat we do know is that humans\u2019 utter dominance on this Earth suggests a clear rule: with intelligence comes power. This means an ASI, when we create it, will be the most powerful being in the history of life on Earth, and all living things, including humans, will be entirely at its whim\u200a\u2014\u200aand this might happen in the next few decades.\u201d\u00b9\u00b2\u2077\n\u201cIf ASI really does happen this century, and if the outcome of that is really as extreme\u200a\u2014\u200aand permanent\u200a\u2014\u200aas most experts think it will be, we have an enormous responsibility on our shoulders.\u201d\u00b9\u00b2\u2078 On the one hand, it\u2019s possible we\u2019ll develop ASI that\u2019s like a god in a box, bringing us a world of abundance and immortality. But on the other hand, it\u2019s very likely that we will create ASI that causes humanity to go extinct in a quick and trivial way.\n\u201cThat\u2019s why people who understand superintelligent AI call it the last invention we\u2019ll ever make\u200a\u2014\u200athe last challenge we\u2019ll ever face.\u201d\u00b9\u00b2\u2079 \u201cThis may be the most important race in a human history\u201d\u00b9\u00b3\u2070 So \u2192\n\nhttps://cdn-images-1.medium.com/max/2000/1*vXi80f_lbgSMINUE03Lz3g.jpeg\n\nThanks to Chloe Knox and Elizabeth Tarleton for editing help of this article.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T17:30:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 431883, + "json_metadata": "{\"tags\":[\"steemit\",\"bitcoin\",\"future\",\"science\",\"technology\"],\"image\":[\"https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\"]}", + "last_payout": "2016-09-03T06:34:54", + "last_update": "2016-08-03T17:30:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "steemit", + "percent_steem_dollars": 10000, + "permlink": "ai-revolution-101", + "reward_weight": 7456, + "root_author": "a11at", + "root_permlink": "ai-revolution-101", + "title": "AI Revolution 101", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-03T20:20:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "20 Years of Machine Learning\n\nhttp://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\n\nWhen I enrolled in Computer Science in 1995, Data Science didn\u2019t exist yet, but a lot of the algorithms we are still using already did. And this is not just because of the return of the neural networks, but also because probably not that much has fundamentally changed since back then. At least it feels to me this way. Which is funny considering that starting this year or so AI seems to finally have gone mainstream.\n1995 sounds like an awful long time ago, before we had cloud computing, smartphones, or chatbots. But as I have learned these past years, it only feels like a long time ago if you haven\u2019t been there yourself. There is something about the continuation of the self which pastes everything together and although a lot has changed, the world didn\u2019t feel fundamentally different than it does today.\nNot even Computer Science was nowhere as mainstream as it was today, that came later, with the first dot com bubble around the year 2000. Some people even questioned my choice to study computer science at all, because apparently programming computers was supposed to become so easy no specialists are required anymore.\nActually, artificial intelligence was one of the main reasons for me to study computer science. The idea to use it as an constructive approach to understanding the human mind seemed intriguing to me. I went through the first two years of training, made sure I picked up enough math for whatever would lie ahead, and finally arrived in my first AI lectured held by Joachim Buhmann, back then professor at the University of Bonn (where Sebastian Thrun was just about to leave for the US).\nI would have to look up where in his lecture cycle I joined but he had two lectures on computer vision, one on pattern recognition (mostly from the old editions of the Duda & Hart book), and one in information theory (following closely the book by Cover & Thomas). The material was interesting enough, but also somewhat disappointing. As I now know, people stopped working on symbolic AI and instead stuck to more statistical approaches to learning, where learning essentially was reduced to the problem of picking the right function based on a finite amount of observations.\nThe computer vision lecture was even less about learning and relied more on explicit physical modelling to derive the right estimators, for example, to reconstruct motion from a video. The approach back then was much more biologically and physically motivated than nowadays. Neural networks existed, but everybody was pretty clear that they were just \u201canother kind of function approximators.\u201d\nEveryone with the exception of Rolf Eckmiller, another professor where I worked as a student. Eckmiller had build his whole lab around the premise that \u201cneural computation\u201d was somehow inherently better than \u201cconventional computation\u201d. This was back in the days when NIPS had full tracks devoted to studying the physiology and working mechanisms of neurons, and there were people who believed there is something fundamentally different happening in our brains, maybe on a quantum level, that gives rise to the human mind, and that this difference is a blocker for having truly intelligent machines.\nWhile Eckmiller was really good at selling his vision, most of his staff was thankfully much more down to earth. Maybe it is a very German thing, but everybody was pretty matter of fact about what these computational models could or couldn\u2019t do, and that has stuck with me throughout my studies.\nI graduated in October 2000 with a pretty farfetched master thesis trying to make a connection between learning and hard optimization problems, then started on my PhD thesis and stuck around in this area of research till 2015.\nWhile there had always been attempts to prove industry relevance, it was a pretty academic endeavor for a long while, and the community was pretty closed up. There were individual success stories, for example around handwritten character recognition, but many of the companies around machine learning failed. One of these companies I remember was called Beowulf Labs and one NIPS they went around recruiting people with a video which promised it to be the next \u201cmathtopia\u201d. In essence, this was the story of DeepMind, recruiting a bunch of excellent researchers and then hoping it will take off.\nThe whole community also revolved around one fashion to the next. One odd thing about machine learning as a whole is that there exist only a handfull of fundamentally different problems like classification, regression, clustering, and so on, but a whole zoo of approaches. It is not like in physics (I assume) or mathematics where some generally agreed upon unsolved hard problems exist whose solution would advance the state of the art. This means that progress is often done laterally, by replacing existing approaches with a new one, still solving the same problem in a different way. For example, first there were neural networks. Then support vector machines came, claiming to be better because the associated optimization problem is convex. Then there was boosting, random forests, and so on, till the return of neural networks. I remember that Chinese Restaurant Processes were \u201chot\u201d for two years, no idea what their significance is now.\nBig Data and Data Science\nThen there came Big Data and Data Science. Being still in academia at the time, it always felt to me as if this was definitely coming from the outside, possibly from companies like Google who had to actually deal with enormous amounts of data. Large scale learning always existed, for example for genomic data in bioinformatics, but one usually tried to solve problems by finding more efficient algorithms and approximations, not by parallelizing brute force.\nCompanies like Google finally proved that you can do something with massive amounts of data, and that finally changed the mainstream perception. Technologies like Hadoop and NoSQL also seemed very cool, skillfully marketing themselves as approaches so new, they wouldn\u2019t suffer from the technological limitations of existing systems.\nBut where did this leave the machine learning researchers? My impression always was that they were happy that they finally got some recognition, but they were also not happy about the way this happened. To understand this, one has to be aware that most ML reseachers aren\u2019t computer scientists or very good or interested in coding. Many come from physics, mathematics or other sciences, where their rigorous mathematical training was an excellent fit for the algorithm and modeling heavy approach central to machine learning.\nHadoop on the other hand was extremely technical. Written in Java, a language perceived as being excessively enterprise-y at the time, it felt awkward and clunky compared to the fluency and interactiveness of first Matlab and then Python. Even those who did code usually did so in C++, and to them Java felt slow and heavy, especially for numerical calculations and simulations.\nStill, there was no way around it, so they rebranded everything they did as Big Data, or began to stress, that Big Data only provides the infrastructure for large scale computations, but you need someone who \u201cknows what he is doing\u201d to make sense of the data.\nWhich is probably also not entirely wrong. In a way, I think this divide is still there. Python is definitely one if the languages of choice for doing data analysis, and technologies like Spark try to tap into that by providing Python bindings, whether it makes sense from a performance point of view or not.\nThe Return of Deep Learning\nEven before DeepDream, neural networks began making their return. Some people like Yann LeCun have always stuck to this approach, but maybe ten years ago, there where a few works which showed how to use layerwise pretraining and other tricks to train \u201cdeep\u201d networks, that is larger networks than one previously thought possible.\nThe thing is, in order to train neural networks, you evaluate it on your training examples and then adjust all of the weights to make the error a bit smaller. If one writes the gradient across all weights down, it naturally occurs that one starts in the last layer and then propagate the error back. Somehow, the understanding was that the information about the error got smaller and smaller from layer to layer and that made it hard to train networks with many layers.\nI\u2019m not sure that is still true, as far as I know, many people are just using backprop nowadays. What has definitely changed is the amount of available data, as well as the availability of tools and raw computing power.\nSo first there were a few papers sparking the interest in neural networks, then people started using them again, and successively achieved excellent results for a number of application areas. First in computer vision, then also for speech processing, and so on.\nI think the appeal here definitely is that you can have one approach for all. Why the hassle of understanding all those different approaches, which come from so many different backgrounds, when you can understand just one method and you are good to go. Also, neural networks have a nice modular structure, you can pick and put together different kinds of layers and architectures to adapt them to all kinds of problems.\nThen Google published that ingenious deep dream paper where they let a learned network generate some data, and we humans with our immediate readiness to read structure and attribute intelligence picked up quickly on this.\nI personally think they were surprised by how viral this went, but then decided the time is finally right to go all in on AI. So now Google is an \u201cAI first\u201d company and AI is gonna save the world, yes.\nThe Fundamental Problem Remains\nMany academics I have talked to are unhappy about the dominance of deep learning right now, because it is an approach which works well, maybe even too well, but doesn\u2019t bring us much closer to really understand how the human mind works.\nI also think the fundamental problem remains unsolved. How do we understand the world? How do we create new concepts? Deep learning stays an imitation on a behavioral level and while that may be enough for some, it isn\u2019t for me.\nAlso, I think it is dangerous to attribute too much intelligence to these systems. In raw numbers, they might work well enough, but when they fail they do so in ways that clearly show they operate in an entirely different fashion.\nWhile Google translate lets you skim the content of website in a foreign language, it is still abundantly clear that the system has no idea what it is doing.\nSometimes I feel like nobody cares, also because nobody gets hurt, right? But maybe it is still my German cultural background that would rather prefer we see things as they are, and take it from there.", + "cashout_time": "1969-12-31T23:59:59", + "category": "datascience", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T20:19:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 434542, + "json_metadata": "{\"tags\":[\"datascience\",\"deep\",\"learning\",\"artifical\",\"intelligence\"],\"image\":[\"http://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\"]}", + "last_payout": "2016-09-03T08:21:51", + "last_update": "2016-08-03T20:19:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "datascience", + "percent_steem_dollars": 10000, + "permlink": "ai-s-road-to-the-mainstream", + "reward_weight": 1004, + "root_author": "a11at", + "root_permlink": "ai-s-road-to-the-mainstream", + "title": "AI\u2019s Road to the Mainstream", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T10:18:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "I write this not as one of the creators of Pokevision nor as player who has gone through the past few turbulent days in Pokemon Go; instead, I write this as a fan of Pokemon ever since I was 8 years old.\nMy family and I moved to the U.S. in 1998, when I was in the first grade. I didn\u2019t know much back then, and even less about popular culture. When my friends introduced their Gameboys and Pokemon Red/Blue to me, I couldn\u2019t help but feel envious. I begged and begged my parents to buy me a Gameboy and Pokemon Yellow. I remember that when I finally convinced them to buy me a Gameboy for $70, they also found out that they had to buy the actual game too for $30. This was foreign to them, and I got yelled at a little. $100 was a lot back then, I believe it was almost 10% of our family\u2019s income at the time. While this may seem irrelevant, even today, this amount of money is still not insignificant to many families in the US, not to mention the rest of the world.\nSo I got my game, and I played along with my friends for hundreds and hundreds of hours\u200a\u2014\u200atrying to figure out all the puzzles in the game, like how to get to Articuno; battling our favorite Pokemon to see who\u2019s stronger, train, repeat; and just trying to \u201ccatch em all.\u201d I\u2019ve spent countless hours in that video game with my friends, and it became my fondest memory of that time in my life. Pokemon is so ingrained within me, and I can\u2019t imagine myself being the only one. I\u2019m not the only one that vividly remembers how you beat the Elite Four, then go to the dungeons above Cerulean City and find Mewtwo for the first time, right?\nFast forward almost 20 years. I\u2019ve barely touched anything Pokemon-related since then. I still have my Pokemon cards, as I\u2019m sure many others do; but I haven\u2019t bothered to take a look at them for quite a while now. Pokemon is something I\u2019ll probably remember forever, but it\u2019s not something that\u2019s actively in my life\u200a\u2014\u200abecause it just doesn\u2019t fit. On top of work, friends, family, etc, there\u2019s just simply no time for Pokemon. It doesn\u2019t mesh with life any more as well as it used to when I was 8. You can\u2019t just bring up the topic of Pokemon and expect people to not give you an odd stare.\nEnter Pokemon Go\u200a\u2014\u200a2016.\nAdmittedly, I was never too excited about Pokemon Go. With that said, I did not have many expectations for it. Pokemon is important to me, but I\u200a\u2014\u200alike many others\u200a\u2014\u200ahave stuffed it in our little box of childhood things and never looked back.\nBut when I opened Pokemon Go for the first time, as cheesy as it sounds, it all came back to me. The nostalgia, the good feelings, and the happiness that Pokemon has always brought.\nThe \u201cHi, I\u2019m Professor Willow,\u201d \u201cPick your starter: Bulbasaur, Charmander, Squirtle,\u201d everything.\nAnd now I can catch them in real life? At first, I was dubious, but this became the most amazing, yet simple thing I\u2019ve seen in gaming. On social media, I saw that my friends and practically the whole world was talking about Pokemon Go, and the first thing I did was go out for a drive trying to \u201cbe the best.\u201d\nOne of the best parts? Apart from having to own a smartphone, the game was free. No $70, no $30, free. This opened up Pokemon to essentially everyone in the world. Pokemon now can be shared with anyone.\nAs the days unfolded, the world became captivated by Pokemon Go. People absolutely fell in love. We saw stories of elderly learning about Pikachu for the first time. My parents that could care less beyond who the yellow mouse looking thing was 20 years ago, started asking what the other Pokemon were. It was phenomenal.\nWe saw investment bankers asking their kids how to play Pokemon Go so that they can better connect with their younger clients. We saw the elderly become more fascinated in the world of Pokemon. We saw kids going out more, exercising, and being active in general just because of Pokemon Go. And most importantly, Justin Bieber finally got to feel what it\u2019s like to not be mobbed because everyone else was too busy trying to find a Gyarados to notice him.\nLocal stores integrated Pokemon Go in their services within days of the game\u2019s release. Hospitals started praising the health benefits of having Pokemon Go around its patients. People traveled hundreds and thousands of miles just to play it. Players explored parts of their cities that they never knew existed, and befriended strangers on their hunt for Pokemon. These stories of triumph were solely because of Pokemon Go. Pokemon was no longer just a game, it was part of a lifestyle.These stories shouldn\u2019t surprise any of us, we\u2019ve all been there to watch it unfold.\nYou\u2019ve simply captured all of our hearts with Pokemon Go, Niantic.\nBut then, you broke it all too quickly.\nWhen the game broke every few hours or so and wasted our lucky eggs, we stood patiently, excusing the huge growth and thus, strain on servers, as the cause. We were happy to wait it out with our fellow trainers knowing that it\u2019s worth waiting for. No one got mad.\nWhen the in-game tracking \u201cbroke,\u201d we all stood idly by, patiently, waiting for the game to update and fix.\nAlong came Pokevision. We made Pokevision not to \u201ccheat.\u201d We made it so that we can have a temporary relief to the in-game tracker that we were told was broken. John, at SDCC, you said that you guys were working on \u201cfixing the in-game tracker.\u201d This made everyone believe that this was coming sometime soon. We saw Pokevision as a stop gap to this\u200a\u2014\u200aand we had every intention in closing it down the minute that Pokemon Go\u2019s own tracker restored functionality.\nAs we waited more than 2 and a half weeks, the tracker was still not fixed. We noticed more and more of our friends leave the game; the only way I\u200a\u2014\u200aand I know experiences vary here\u200a\u2014\u200acould convince them to play was show them Pokevision, and say that \u201cHey, here\u2019s a temporary remedy to the tracking issue\u200a\u2014\u200awe\u2019re still optimistic that Pokemon Go\u2019s tracker will be fixed soon!\u201d\nNobody heralded Pokevision as a permanent, end-all solution; in fact, all the media coverage of Pokevision was littered with comments such as: \u201cPokevision is okay, but when the tracker is fixed in game, I\u2019m going to stop using this.\u201d\nFor the past 4 weeks. Every single one of your 80+ million players had so much faith. Take a look at Reddit, take a look at all these journalists who don\u2019t even play games (calling out Ryan Mac of Forbes), who became obsessed with Pokemon GO.\nAll of us were so eager for Pokemon Go to be \u201cfixed\u201d so that we can return to sharing Pokemon Go with our loved ones and friends. Remember when I said that before Pokemon Go came about, mentioning Pokemon Go would land you an odd stare? Pokemon Go reversed that\u200a\u2014\u200aPokemon Go became the conversation starter, the topic that everyone bonded over, the topic that guys used to pick up chicks with and not felt like a geeky nerd. That, and so much more, were solely because of Pokemon Go.\nAs almost 3 weeks have passed by, the in-game tracker is broken. People had a temporary solution in Pokevision, but we knew, and everyone else knew, this wouldn\u2019t be permanent. We didn\u2019t make Pokevision to spite you, Niantic\u200a\u2014\u200awe made it so that we can keep everyone playing while we wait patiently. We want to keep sharing our Pokemon stories with everyone else. How many people in the world have gotten the chance to have a serious conversation about POKEMON with their parents for the first time? How many of us got to talk about Pokemon like it was socially acceptable in any context? It\u2019s captured all of our hearts and imaginations, I cannot stress that enough.\nAfter 3 weeks though, we started seeing that you guys seemed to not want to talk to us (the players). Pokevision, at this time has grown to almost 50M unique users, and 11 million daily.\nLet that sink in for a second.\nHalf of the player base of Pokemon Go stopped by\u200a\u2014\u200aand they didn\u2019t do so to \u201ccheat.\u201d The game was simply too unbearable to play in its current state for many (note: many, not all). The main attraction wasn\u2019t that they got to have an advantage with Pokevision, the main attraction was that it allowed them to play Pokemon Go more. This is what everyone wants\u200a\u2014\u200ato play Pokemon Go more.\nWhen we closed Pokevision out of respect for your wishes, and at your requests\u2014 one of which came directly from you, John\u200a\u2014\u200awe trusted you guys fully in allowing the community to grow. I literally cannot express this more\u200a\u2014\u200awe just want to play the game. We can handle the bugs every now and then, but please at least tell us you guys care. Yes, Pokevision does give some advantages that may be TOO much; but is it all that bad? Pokemon has survived 20 years\u200a\u2014\u200aeven grown, I would say. And Pokemon Go made it even bigger. If the argument is that \u201cwell, if you catch a Snorlax you weren\u2019t supposed to find, but you found it on Pokevision, it might make you play less.\u201d If that was your argument, I\u2019d have to disagree! I\u2019ll still catch a damn Snorlax even if I have 20 of them. Just like how millions of us have caught probably over 100 pidgey\u2019s or zubat\u2019s each.\nPokemon is everlasting. The same 151 Pokemon have been around for 20 years. If 80M people downloaded and played Pokemon Go within a week (before it even released in multiple major countries) isn\u2019t an indication that no one can be sick of Pokemon, I don\u2019t know what is.\nAfter disabling the in-game tracker and Pokevision, the ratings on iOs and Android Google Play store went from 4.0 stars to 1.0\u20131.5. I am only one person, I admit that my sole opinion is not important, but what about the countless players begging for the game to be restored to its former state? I may be biased in saying that Pokevision being down had an impact on the amount of negative ratings, refund requests and outcry on social media\u200a\u2014\u200abut could it be true? Nothing has changed between the time the in-game tracker broke and Pokevision went down. Could it just be possible that the tracker\u200a\u2014\u200ano matter if Pokevision made it, or Niantic made it, is something that players desperately NEED\u200a\u2014\u200anot want, but NEED\u200a\u2014\u200ain order to play the game? Could it be possible that this is the very core fundamental feature that drives most players? I understand that there are some that want to walk around and stumble on a random Pokemon\u200a\u2014\u200ato each their own. But, 50M unique users and 11M daily and the ratings on your App (with no significant change in itself) are big indicators of this desire. Are customers always right? Especially if over half of them are looking for an outside fix just so they can enjoy something they love? People are naturally inquisitive, and in this case, they just want to play more and more, so they sought out something that helps them do so.\nPokemon Go is a social game. Its enjoyment depends on the players and their environment. If you take away the environment part (tracking) but keep the social part (players and their friends) intact, sure, people will still play; but would you not rather it be at its fullest potential?\nEveryone in the world wants to play Pokemon Go. It\u2019s been a huge part of everyone\u2019s lives already if it has not been clear enough. Look at the fans from Brazil\u200a\u2014\u200athey aren\u2019t spamming social media because they want to cause harm\u200a\u2014\u200athey just want to play the game. Just as I saw my friends play Pokemon many years ago, and wanted to be a part of it\u200a\u2014\u200athese guys are doing the same.\nThey just want to be with the rest of the world. Sadly, by the time they join, Pokemon Go may not be the game it was weeks ago.\nLastly, if money is an issue for you, Niantic, I must ask\u200a\u2014\u200awhy? You\u2019ve captivated the world and introduced Pokemon to people that would have never touched it had it not been for Pokemon Go. To me, that\u2019s priceless.\nYou won\u2019t be remembered for the profits you made, you\u2019ll be remembered for the world you changed through Pokemon and all of the lives you made better. Just look at all the stories\u200a\u2014\u200athere\u2019s plenty. So when millions of players are expressing their feedback to changes, is it not worth it to listen to what they have to say?\nIn its first few weeks, Pokemon Go has already enhanced millions of lives in unimaginable ways. It has so much potential to continue changing the world. Wouldn\u2019t you, Niantic, want to see just how much good you can do with Pokemon Go\u200a\u2014\u200ais that not more valuable than anything else? I sure think so.\nWarmly,\nYang", + "cashout_time": "1969-12-31T23:59:59", + "category": "pokemon", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T18:38:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 432902, + "json_metadata": "{\"tags\":[\"pokemon\",\"gaming\",\"steemit\",\"bitcoin\",\"decent\"]}", + "last_payout": "2016-09-03T09:22:48", + "last_update": "2016-08-03T18:38:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "pokemon", + "percent_steem_dollars": 10000, + "permlink": "an-open-letter-to-john-hanke-and-niantic", + "reward_weight": 2276, + "root_author": "a11at", + "root_permlink": "an-open-letter-to-john-hanke-and-niantic", + "title": "An Open Letter to John Hanke & Niantic", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T12:44:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Taking another foray into the field of artificial intelligence (AI) and machine learning as well as to make its digital assistant Siri better, Apple has acquired Seattle-based machine learning startup Turi for nearly $200 million.\n\nhttp://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\n\nAccording to a GeekWire report, the move is set to increase Apple's presence in the Seattle region where the tech giant has been building an engineering outpost for the past two years. \"Apple buys smaller technology companies from time to time, and we generally do not discuss our purpose or plans,\" said Apple in a statement given to GeekWire.\n\nhttp://avtosalontochka.ru/uploads/posts/2015-09/1441818909_eppl1.jpg\n\nTuri offers tools that are meant to let developers easily scale machine learning applications. The startup is expected to remain in the Seattle region and continue to grow as Apple builds out further expertise in data science, artificial intelligence and machine learning, the report added.\n\nhttp://www.2fons.ru/pic/201407/2560x1600/2fons.ru-33604.jpg\n\nThe Cupertino-based company has recently bought some machine learning and AI startups like VocalIQ and Perceptio and facial recognition startup Emotient, among others. Apple has recently been making a push into artificial intelligence through Siri personal assistant and related technologies.\n\nhttp://www.fonstola.ru/pic/201111/2560x1440/fonstola.ru-49021.jpg", + "cashout_time": "1969-12-31T23:59:59", + "category": "apple", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-06T12:44:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 477502, + "json_metadata": "{\"tags\":[\"apple\",\"turi\",\"siri\",\"startup\"],\"image\":[\"http://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\"]}", + "last_payout": "2016-09-06T02:21:33", + "last_update": "2016-08-06T12:44:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "apple", + "percent_steem_dollars": 10000, + "permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "reward_weight": 3638, + "root_author": "a11at", + "root_permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "title": "APPLE BUYS MACHINE LEARNING STARTUP TURI TO MAKE SIRI BETTER", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-02T06:08:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Owner's review\n\nhttps://h-a.d-cd.net/905320as-960.jpg\n\n\u4e0d\u8981\u7d27, \u8fd9 \u662f \u4f60 \u7684 \u8f66 \u662f \u4ec0\u4e48, \u4e3b\u8981 \u7684 \u4e1c\u897f \u2014 \u5728 \u70e4\u67b6 \u4e0a \u7684 \u56db\u4e2a \u73af \u2026\n(\"no matter what you have a car, the main thing \u2014 it is four rings on the grill \u2026\" \u2014 Chinese proverb)\n\nhttps://b-a.d-cd.net/3dee672s-960.jpg\n\nAfter a spontaneous and quick sale A4 DTM choice naturally fell exclusively on the Audi, but rather on RSQ3 FL, which is characterized by an enviable installed power thanks to the legendary 2,5 TFSI 340 hp in combination with a rapid-S-tronic!\nNeedless to say that the acceleration is 4.2 seconds. up to 100 km. at one o'clock!\n(measurements of the journal -http: //www.autobild.de/artikel/a\u2026-45-amg-test-5702529.html)\n\nhttps://a-a.d-cd.net/2a96672s-960.jpg\n\nRivals have this \"baby\" is not so much, and all of them from a large class \u2026\n\nhttps://h-a.d-cd.net/8f6e672s-960.jpg\n\nAnd the choice has been reduced mainly to the 3rd automobiles:\n-SQ5 -otpal Due to the fact that the new model will be released soon, and the heavier and slower RSQ3;\n\n-RS3 -otpal Because of the small clearance, and especially do not want to wait;\n\n-RSQ3-PLUS was that the car's high, restyled and fast!\n\nhttps://f-a.d-cd.net/1fa1672s-960.jpg\n\nColor was not discussed-it must be very blue car -Sepang Blue!\nDiscs for the Rotor -The most RSQ3, and I like them most! Cool!\nAs to differences from dorestaylom then Restayl differs, in addition to external visual features, lower vehicle weight by 50 kg. and reprogram the engine, which now produces an impressive 340 hp!\nIn real life, the car looks much more beautiful and harmonious than the picture!\nThe car is perfectly controlled (for its use) and it is fine tailored inside: another from Audi, and do not wait \u2026\nThis Audi, is emotion, speed and drive! So, for what we love is true thoroughbred cars, to which undoubtedly belongs RS Series from quattro GmbH!\n\nhttps://h-a.d-cd.net/196e672s-960.jpg\n\nIf the test drive did not help much to understand how the car rulitsya, a little closer to meet him RS surprises with its responsiveness and quite understandable and predictable control!\n\nhttps://d-a.d-cd.net/ee61672s-960.jpg\n\nIt goes very cheerfully!\n\nWhat is very pleased, is the fact that after the \"stool\" A4 DTM on RSQ3 20 drives a smooth ride!\nThe car was in another city at the OD, a thousand kilometers. from the house, but because the expectation of a few days has been painfully slow.\nFor photos not scold -Made in haste night, anxious to put \u2026\n\nThen there will be photo shoot!\n\nFeatures and Specs\n\nEngine 2.5 gasoline (340 h.p.)\nRobotic\nall-wheel\nPurchased in 2015\nAudi RS Q3 in production since 2013", + "cashout_time": "1969-12-31T23:59:59", + "category": "audi", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-05T21:01:03", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 470354, + "json_metadata": "{\"tags\":[\"audi\",\"car\"],\"image\":[\"https://h-a.d-cd.net/905320as-960.jpg\"]}", + "last_payout": "2016-09-05T10:11:36", + "last_update": "2016-08-05T21:01:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "audi", + "percent_steem_dollars": 10000, + "permlink": "audi-rs-q3-fl", + "reward_weight": 1915, + "root_author": "a11at", + "root_permlink": "audi-rs-q3-fl", + "title": "Audi RS Q3 FL", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T21:50:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Bitcoin, a Florida judge says, is not real money. Ironically, that could provide a boost to use of the crypto-currency which has remained in the shadows of the financial system.\n\nThe July 22 ruling by Miami-Dade Circuit Judge Teresa Pooler means that no specific license is needed to buy and sell bitcoins.\nThe judge dismissed a case against Michel Espinoza, who had faced money laundering and other criminal charges for attempting to sell $1,500 worth of bitcoins to an undercover agent who told the defendant he was going to use the virtual money to buy stolen credit card numbers.\nEspinoza's lawyer Rene Palomino said the judge acknowledged that it was not illegal to sell one's property and ruled that this did not constitute running an unauthorized financial service.\n\"He was selling his own personal bitcoins,\" Palomino said. \"This decision clears the way for you to do that in the state of the Florida without a money transmitting license.\"\nIn her ruling, Pooler said, \"this court is unwilling to punish a man for selling his property to another, when his actions fall under a statute that is so vaguely written that even legal professionals have difficulty finding a singular meaning.\"\n\nhttp://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\n\nShe added that \"this court is not an expert in economics,\" but that bitcoin \"has a long way to go before it is the equivalent of money.\"\nBitcoin, whose origins remain a mystery, is a virtual currency that is created from computer code and is not backed by any government. Advocates say this makes it an efficient alternative to traditional currencies because it is not subject to the whims of a state that may devalue its money to cut its debt, for example.\nBitcoins can be exchanged for goods and services, provided another party is willing to accept them, but until now they been used mostly for shady transactions or to buy illegal goods and services on the \"dark\" web.\nBitcoin was launched in 2009 as a bit of software written under the Japanese-sounding name Satoshi Nakamoto. This year Australian programmer Craig Wright claimed to be the author but failed to convince the broader bitcoin community.\nIn some areas of the United States bitcoin is accepted in stores, restaurants and online transactions, but it is illegal in some countries, notably France and China.\nIt is gaining ground in countries with high inflation such as Argentina and Venezuela.\nBut bitcoin values can be volatile. Over the past week its value slumped 20 percent in a day, then recouped most losses, after news that a Hong Kong bitcoin exchange had been hacked with some $65 million missing.\nImpact across US, world\nArthur Long, a lawyer specializing in the sector with the New York firm Gibson Dunn, said the July court ruling is a small victory for the virtual currency but that it's not clear if the interpretation will be the same in other US states or at the federal level.\n\"It may have an effect as some states are trying to use existing money transmitting statutes to regulate certain transactions in bitcoin,\" Long told AFP.\nCharles Evans, professor of finance at Barry University, said the ruling \"absolutely is going to provide some guidance in other courts\" and could potentially be used as a precedent in other countries to avoid the stigma associated with bitcoin use.\nBitcoins can store value and hedge against inflation, without being considered a monetary unit, according to Evans, who testified as an expert witness in the Florida trial.\n\"It can be used as an exchange,\" he said, and may be considered a commodity which can be used for bartering like fish or tobacco, for example.\nEvans noted that \"those who are not yet in the bitcoin community will be put on notice: as long as they organize their business in a particular way they can avoid the law.\"\nBut he added that \"people who are engaged in illegal activities will continue to do what they are going to do because they are criminals.\"", + "cashout_time": "1969-12-31T23:59:59", + "category": "bitcoin", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T21:50:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 483312, + "json_metadata": "{\"tags\":[\"bitcoin\",\"world\",\"country\",\"steemit\"],\"image\":[\"http://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\"]}", + "last_payout": "2016-09-06T09:52:18", + "last_update": "2016-08-06T21:50:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 5, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_steem_dollars": 10000, + "permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "reward_weight": 1937, + "root_author": "a11at", + "root_permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "title": "Bitcoin not money, judge rules in victory for backers", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.orig.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.orig.json new file mode 100644 index 00000000..d864fe86 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-15T05:28:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-m3001", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hi, I'm A.M for now, I'm in my mid-20s and want to share my story with working and facing this thing called life after I watched a lot of YouTubers like Thomas James \"TomSka\" David Brown \u201cboyinaband\u201d and many others who have very openly shared their hardships, they have inspired me to write this\u2026.. Whatever this is.\nI don't consider myself a good writer so bare with me here.\nTo try to keep this post organized and make sense I'll highlight the point I want to talk about and tell the relevant part of my story, you can connect the pieces all together at the end.\n\n**First how am I?** \nI grow up in the countryside I went to normal school when I was yang, because I was the quiet introvert and wasn't from the town I was in I got bullied a lot for most of my time at school, I got through school time knowing just two friends, I was OK with it.\nI genuinely lost interest in school when I was in the ninth grade It seemed more like a memory test than a way of learning so I started looking for ways to make money, \"why waste time learning things irrelevant in real life if I can make money now\" my naive 16 years old self said, don't get me wrong I didn't think I was done with learning I just wanted to learn in my own way, and I didn't stop school, now I'm in part time Business school, so back then I started looking for any way to make money in the last 5 year I tried: working in sales for over 2 years, selling products online, becoming instructor online, worked as SEO & social media consultant, tried starting my own business for 4 times, and for the last year and half I taught myself how to program and how to use Unity game engine and now I'm working on my first game, I can easily and proudly say that I didn't succeed at any of what I did so far, but I've learned a lot every time and I would do it all over again if I had the chance.\nThe process of picking myself up every single freaking time was a living hell and I got desperate many times.\nbecause I saw a lot of people feeling relevant to what David said in his video I want to share how I managed to keep my sanity and my opinion about some point he brought in his video.\n\n\n**Not thinking your work is good enough:**\nIs that really a bad thing? not being satisfied with what you just accomplished is a sign that you always look forward to what you still can do.\nI remember after I published my first course on Udemy I got invited to a hangout and I went for it I thought I'll give myself some slack, while I was there someone shouted out \"this guy here just published his first course let all give him a clap shall we\" for some reason he thought that was a good idea, I don't think I can blame him his intentions were good, I never tried to put a smile as hard as I did that moment I guess I just didn't want to look like a selfish prick, but the truth that I wasn't happy about what I accomplished I was thinking about my bad English poor structure of the course and was I being a sellout for trying to sell my knowledge? halfway of creating the course, I was already thinking about 5 other things I wanted to do next.\nI think there's nothing wrong about not being satisfied with what you finish, I think It's a good sign of an ambitious creator.\nWhen you first make the decision to accomplish something It looks like that godly thing that you think It would feel good to have or do, but when you start turning that big sexy thing to a small to-do list somewhere the appeal you had to that thing will disappear to a certain point, it's not that godly sexy thing you thought about before it's becoming a part of your routine now you know the process of doing that thing It's not a mystery anymore.\nI think that's why they say: \"It's about the journey, not the destination\".\n\n\n**Not taking care of yourself:**\nIt's hard to keep taking care of yourself to others people standards, whether it's about looking ripped putting makeup or buying the latest clothes, instead find your own save point and move forward from there if you feel the need to.\nWhen I was working in seals I had to look my best most of the time's which was exhausting more than the work itself and what made it worst is that some coworkers starting hinting that I need to start working out to look sharper and more confident.\nBecause I was desperate for results from my work I started going to the gym and I got stuck at joining for a month or two then giving up for half a year couple of times, every time I stopped going to the gym I over beat myself saying that I need this for my work, I need more money to do a lot of things, if this work didn't go well what else Am I going to do, eventually I usually took it out on food, I don't even want to start thinking what would have happened to me if my body was able to store fat.\nTrying to take care of yourself to others standards can be very exhausting, I felt down because I was putting so much effort in things I don't really care about to get others approval, I genuinely don't care about having a ripped body, it would look cool sure but I'm not willing to put all that effort into health and looks at least for now, who knows maybe in the future things will be better and I'll be willing to put the effort necessary to have 6 pack abs (wink wink ladies).\nNowadays I eat better than I used to, I still eat some junk food but things are much much better than they were 2 years ago, when I fell down I still go buy and drink a liter of Pepsi but at some point that was my morning coffee, as for my looks I cut my hair very short so I would have one less thing to worry about in the morning, I shave my beard once every couple of weeks I change my cloth every two or three days even if I didn't go out.\nThe point is I take care of myself for my own sack, It was much worse before and I'll always keep working to improve pit by pit.\nIt's about building habits not getting motivated for a couple of weeks then beating yourself for not being able to keep up.\n\n\n**Not mastering one skill:**\nI worked in sales, instructed online, worked as SEO and social media consultant, self taught myself how to program and make games but I don\u2019t think I\u2019m the right person to talk about this, all I\u2019m saying that if you didn\u2019t find that one true call that is right for you, you might be a \u201cmultipotentialite\u201d if you want to know what exactly does this mean I urge you to watch Emilie talk at TedX\nhttps://www.youtube.com/watch?v=QJORi5VO1F8\nAnd check the blog too if you want to know more \nhttp://puttylike.com/\n\n**Everything happens for a reason........ or does it?**\nWhen I was young I was fortunate to know a good old religious man, I don\u2019t know about your perspective about religions but hear me out this isn\u2019t a sermon, I still remember when he tried to teach me that everything happens for a reason I was like \u201cWHAT\u2026\u2026. Oh really, then what is the reason for this and this and that\u201d my question didn\u2019t stop and I wasn\u2019t asking nicely either yet, somehow he was calm about it like some kind of monk, I don\u2019t know if I ruined his day or not but I feel bad for taking the world misery out on him that day, he was just a simple man who was doing what he think is good for others, his intentions were good but unfortunately for him I wasn\u2019t a simple person, I overthink everything and everyone, it\u2019s my blessing and my curse, later I told my family about him and I was surprised that they knew him, apparently everyone knows each other in the countryside, they told me about what he was facing lately personally, financially, and emotionally, I didn\u2019t believe that someone who is facing all that isn\u2019t depressed or angry and even trying to do good for others at least by his believes, I wanted to know more about him he got my interest, I wanted to know if he\u2019s an imposter who is just putting a good face or not because a part of me didn\u2019t believe how can he be that good, I kept asking about him from time to time and sometimes I even went to his \u201clessons\u201d, eventually I went to face him with what I know about him like a detective facing a criminal, the crime of being that simple yet trying to be better than me, It\u2019s pathetic I know It\u2019s just how my brain works sometimes, because I used to take pride of being logical about everything and not believing in anything without questioning it, it bothered me how can he be at peace with his life and I\u2019m not even that he\u2019s facing a lot more than I\u2019m, I faced him and told him everything then asked how can you be this calm about everything that is happening in your life, he had a faint smile and said \u201cI don\u2019t know the reason for everything that is happening right now but everything happens for a reason\u201d I remember holding my fist hard and walking away, maybe I was holding my fist trying not to hit him for not being realistic like me or probably not to beat myself for not being half the man that he was.\nI don\u2019t know about your perspective about religions and I\u2019m not here to tell you about mine but I respect that some religions teach that everything happens for a reason, is it the truth? Does everything happens for a reason? I don\u2019t know, I don\u2019t think that is even the point, It\u2019s silly to even get in an argument about this because no one can be sure about it, it\u2019s simply just a belief, it\u2019s simply teach you to not overthink about the reasons for everything around you, just learn from it if you can and focus on what you can do, it\u2019s kind of funny for me to tell you not to overthink about somethings because I\u2019m sure my 19 year old me would punch me right in the face, but it\u2019s just too draining and exhausting to try to find a reason for every bad thing that have happened to me or to others.\nIn the last three years two of my best friends died, the first one I knew for about nine years and the other one for around five, both killed, both in a way they didn\u2019t deserve to, each time I had to force myself to focus on the 0.0000001% full part of the cup or else I would have lose my sanity.\nI would hate to think what would be my thought process if someone tried to sell me religion like a product, some of them would be like \u201cHi son, you should follow my beliefs because I\u2019m 100% sure that I\u2019m right and everybody else is wrong and if you don\u2019t, well you\u2019re FU**ED\u201d that would have disfigured some of the beliefs that helped me get better.\nControlling your stream of thoughts will be the hardest thing you\u2019ll ever have to do in your life, but if mastered it you\u2019ll become unstoppable.\n\n\nI\u2019ve been getting into the game industry for around year and half now, I don\u2019t have any experiance in the field but I\u2019ve other experiences that many don\u2019t, working in sales made me learn a lot about people's motivations and incentives, I saw a lot of people jump to make purchase while other chicken out last minute, you don\u2019t get to learn about this in a book or an NLP course, you only get to learn this experience by working in sales first hand, working as an SEO and social media consultant made me care about the little details like posting in the right social medias that is more relevant to your audience, more isn\u2019t always better, choosing the right words colors and timing for best result, sometimes modifying your content for a better marketing or not going into a certain niche even if there\u2019s an audience for it because it doesn\u2019t suit your brand, teaching online made me learn that the selling point isn\u2019t the end goal, helping and mentoring students even after they have purchased the course was way more important than I thought, the feedback I got about the course was crucial to take the course to the next level and some student even helped me with some marketing.\nIf you know anything about the mobile game industry you can see how these experiences can be helpful, I can imagine the kind of journey I want to create for the player because I can build the motivations and incentives I want for him, while I\u2019m building the player journey I\u2019ll always keep in mind to put the monetization and ads the right way so all of them can work seamlessly together for a better player experience, and taking care of existing players and community will always be a priority, I wasn\u2019t happy and cheerful when I had to learn these experiences the hard way, I thought I was just failing, I even remember crying myself to sleep every time I decided to pull the plug on something I was working on, but eventually It worked out somehow I think.\n\u201cyou can't connect the dots looking forward, you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something - your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life\u201d.\nSteve Jobs\n\n\nI want to share some of the tricks I used that helped my in general to get my life together:\n\n**Music**\nlisten to cheerful music, even if it might not be exactly what you listen to usually but try them for a while, my favorite type or music is Rock and Metal it\u2019s loud and make me feel empowered but sometimes it's not what I need to change my mood so I started listening to electro music mostly Drum & bass, I didn\u2019t like it at first, I\u2019m human I don\u2019t like to change, but forcing myself to listen to it for while change my perspective about it and I started listening to it while I\u2019m working, and it worked.\n\n\n**habits not motivation**\nWe\u2019re slaves to our habits, it\u2019s exhausting to do something that\u2019s you\u2019re not used to for quite a while, so invest your effort and time to build your habits pit by pit no matter how slow it will take, measure your progress and celebrate your success no matter how small they\u2019re, it\u2019ll make all the difference in your life in the long term.\n\n**work in a group**\nNo matter how introverted person you think you\u2019re, you\u2019re still human at the end of day and you need your dose of human interaction so try to work in group if you can, if you don\u2019t have that luxury (like me) work out side from time to time, library, coffee shop, parks all works, changing your surrounding and environment can change your mood, you can try changing your room\\office decor every couple of weeks too.\n\n**warm-blooded pet**\nGet a warm-blooded pet it helps, I tried fish and turtles but didn\u2019t really work for me they just stared at me with their empty eyes, I have a cat for two year now and It helped, maybe it\u2019s having the sense of that there is a creature that needs you to look after him, it\u2019s helped me not to feel completely unworthy in some bad day.\n\n\nFinally I hope this help you in any way it can, and hope it will find its way to all who needs it.", + "cashout_time": "1969-12-31T23:59:59", + "category": "story", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T04:53:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 608846, + "json_metadata": "{\"tags\":[\"story\",\"philosophy\",\"life\",\"psychology\",\"secret-writer\"],\"links\":[\"https://www.youtube.com/watch?v=QJORi5VO1F8\"]}", + "last_payout": "2016-09-14T16:58:03", + "last_update": "2016-08-15T05:28:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "story", + "percent_steem_dollars": 10000, + "permlink": "how-i-managed-depression-and-work", + "reward_weight": 10000, + "root_author": "a-m3001", + "root_permlink": "how-i-managed-depression-and-work", + "title": "How I managed depression and work", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-07T21:34:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-man", + "author_rewards": 0, + "beneficiaries": [], + "body": "Trying to repost to FB", + "cashout_time": "1969-12-31T23:59:59", + "category": "homeschooling", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-07T21:34:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 497962, + "json_metadata": "{\"tags\":[\"homeschooling\"]}", + "last_payout": "2016-09-07T09:52:42", + "last_update": "2016-08-07T21:34:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "jamiecrypto", + "parent_permlink": "raising-leaders-instead-of-rulers", + "percent_steem_dollars": 10000, + "permlink": "re-jamiecrypto-raising-leaders-instead-of-rulers-20160807t213425757z", + "reward_weight": 10000, + "root_author": "jamiecrypto", + "root_permlink": "raising-leaders-instead-of-rulers", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T21:34:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "Finally someone is saying it out loud. thank you!!", + "cashout_time": "1969-12-31T23:59:59", + "category": "life", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-30T19:37:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 359861, + "json_metadata": "{\"tags\":[\"life\"]}", + "last_payout": "2016-08-30T10:16:39", + "last_update": "2016-07-30T19:38:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "agent", + "parent_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "percent_steem_dollars": 10000, + "permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", + "reward_weight": 10000, + "root_author": "agent", + "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T21:01:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "add katie-lynn boulard on FB, she's my friend and she's currently doing an exchange in bangkok. She's really sweet and she said you can come to hers for the evening if you want to have some company. she only has a room so no bed for you :/ but at least something, I'm sure she can give you a meal and just some company. :))", + "cashout_time": "1969-12-31T23:59:59", + "category": "travel", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-13T20:34:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 72421, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "2016-08-25T12:51:45", + "last_update": "2016-07-13T20:34:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 20, + "parent_author": "ashleybr", + "parent_permlink": "test", + "percent_steem_dollars": 10000, + "permlink": "re-ashleybr-test-20160713t203411015z", + "reward_weight": 10000, + "root_author": "ashleybr", + "root_permlink": "test", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T05:09:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\n\nAI Revolution 101\nOur last invention, greatest nightmare, or pathway to utopia?\nAbout\nThis essay, originally published in eight short parts, aims to condense the current knowledge on Artificial Intelligence. It explores the state of AI development, overviews its challenges and dangers, features work by the most significant scientists, and describes the main predictions of possible AI outcomes. This project is an adaptation and major shortening of the two\u2013part essay AI Revolution by Tim Urban of Wait But Why. I shortened it by a factor of 3, recreated all images, and tweaked it a bit. Read more on why/how I wrote it here.\nIntroduction\nAssuming that human scientific activity continues without major disruptions, artificial intelligence may become either the most positive transformation of our history or, as many fear, our most dangerous invention of all. AI research is on a steady path to develop a computer that has cognitive abilities equal to the human brain, most likely within three decades (timeline in chapter 5). From what most AI scientists predict, this invention may enable very rapid improvements (called fast take-off), toward something much more powerful\u200a\u2014\u200aArtificial Super Intelligence\u200a\u2014\u200aan entity smarter than all of humanity combined (more on ASI in chapter 3). We are not talking about some imaginary future. The first level of AI development is gradually appearing in the technology we use everyday (newest AI advancements in chapter 2). With every coming year these advancements will accelerate and the technology will become more complex, addictive, and ubiquitous. We will continue to outsource more and more kinds of mental work to computers, disrupting every part of our reality: the way we organize ourselves and our work, form communities, and experience the world.\nExponential Growth\nThe Guiding Principle Behind Technological Progress\nTo more intuitively grasp the guiding principles of AI revolution, let\u2019s first step away from scientific research. Let me invite you to take part in a story. Imagine that you\u2019ve received a time machine and been given a quest to bring somebody from the past. The goal is to shock them by showing them the technological and cultural advancements of our time, to such a degree that this person would perform SAFD (Spinning Around From Disbelief).\n\nSo you wonder which era should you time-travel to, and decide to hop back around 200 years. You get to the early 1800s, retrieve a guy and bring him back to 2016. You \u201c\u2026walk him around and watch him react to everything. It\u2019s impossible for us to understand what it would be like for him to see shiny capsules racing by on a highway, talk to people who had been on the other side of the ocean earlier in the day, watch sports that were being played 1,000 miles away, hear a musical performance that happened 50 years ago, and play with \u2026[a] magical wizard rectangle that he could use to capture a real-life image or record a living moment, generate a map with a paranormal moving blue dot that shows him where he is, look at someone\u2019s face and chat with them even though they\u2019re on the other side of the country, and worlds of other inconceivable sorcery.\u201d\u00b9 It doesn\u2019t take much. After two minutes he is SAFDing.\nNow, both of you want to try the same thing, see somebody Spinning Around From Disbelief, but in your new friend\u2019s era. Since 200 years worked, you jump back to the 1600s and bring a guy to the 1800s. He\u2019s certainly genuinely interested in what he sees. However, you feel it with confidence\u200a\u2014\u200aSAFD will never happen to him. You feel that you need to jump back again, but somewhere radically further. You settle on rewinding the clock 15,000 years, to the times \u201c\u2026before the First Agricultural Revolution gave rise to the first cities and the concept of civilisations.\u201d\u00b2 You bring someone from the hunter-gatherer world and show him \u201c\u2026the vast human empires of 1750 with their towering churches, their ocean-crossing ships, their concept of being \u201cinside,\u201d and their enormous mountain of collective, accumulated human knowledge and discovery\u201d\u00b3\u200a\u2014\u200ain forms of books. It doesn\u2019t take much. He is SAFDing in the first two minutes.\nNow there are three of you, enormously excited to do it again. You know that it doesn\u2019t make sense to go back another 15,000, 30,000 or 45,000 years. You have to jump back, again, radically further. So you pick up a guy from 100,000 years ago and you you walk with him into large tribes with organized, sophisticated social hierarchies. He encounters a variety of hunting weapons, sophisticated tools, sees fire and for the first time experiences language in the form of signs and sounds. You get the idea, it has to be immensely mind-blowing. He is SAFDing after two minutes.\nSo what happened? Why did the last guy had to hop \u2192 100,000 years, the next one \u2192 15,000 years, and the guy who was hopping to our times only \u2192 200 years?\n\nhttps://cdn-images-1.medium.com/max/2000/1*Wbd0td3DqD3pJo7_YHjkbQ.gif\n\n\u201cThis happens because more advanced societies have the ability to progress at a faster rate than less advanced societies\u200a\u2014\u200abecause they\u2019re more advanced. [1800s] humanity knew more and had better technology\u2026\u201d\u2074, so it\u2019s no wonder they could make further advancements than humanity from 15,000 years ago. The time to achieve SAFD shrank from ~100,000 years to ~200 years and if we look into the future it will rapidly shrink even further. Ray Kurzweil, AI expert and scientist, predicts that a \u201c\u202620th century\u2019s worth of progress happened between 2000 and 2014 and that another 20th century\u2019s worth of progress will happen by 2021, in only seven years\u2075\u2026A couple decades later, he believes a 20th century\u2019s worth of progress will happen multiple times in the same year, and even later, in less than one month\u2076\u2026Kurzweil believes that the 21st century will achieve 1,000 times the progress of the 20th century.\u201d\u2077\n\u201cLogic also suggests that if the most advanced species on a planet keeps making larger and larger leaps forward at an ever-faster rate, at some point, they\u2019ll make a leap so great that it completely alters life as they know it and the perception they have of what it means to be a human. Kind of like how evolution kept making great leaps toward intelligence until finally it made such a large leap to the human being that it completely altered what it meant for any creature to live on planet Earth. And if you spend some time reading about what\u2019s going on today in science and technology, you start to see a lot of signs quietly hinting that life as we currently know it cannot withstand the leap that\u2019s coming next.\u201d\u2078\nThe Road to Artificial General Intelligence\nBuilding a Computer as Smart as Humans\nArtificial Intelligence, or AI, is a broad term for the advancement of intelligence in computers. Despite varied opinions on this topic, most experts agree that there are three categories, or calibers, of AI development. They are:\nANI: Artificial Narrow Intelligence\n1st intelligence caliber. \u201cAI that specializes in one area. There\u2019s AI that can beat the world chess champion in chess, but that\u2019s the only thing it does.\u201d\u2079\nAGI: Artificial General Intelligence\n2nd intelligence caliber. AI that reaches and then passes the intelligence level of a human, meaning it has the ability to \u201creason, plan, solve problems, think abstractly, comprehend complex ideas, learn quickly, and learn from experience.\u201d\u00b9\u2070\nASI: Artificial Super Intelligence\n3rd intelligence caliber. AI that achieves a level of intelligence smarter than all of humanity combined\u200a\u2014\u200a\u201cranging from just a little smarter \u2026 to one trillion times smarter.\u201d\u00b9\u00b9\n\nhttps://cdn-images-1.medium.com/max/800/1*5AkzXZJoVXRrGNSOO8ZojQ.gif\n\nWhere are we currently?\n\u201cAs of now, humans have conquered the lowest caliber of AI\u200a\u2014\u200aANI\u200a\u2014\u200ain many ways, and it\u2019s everywhere:\u201d\u00b9\u00b2\n\u201cCars are full of ANI systems, from the computer that figures out when the anti-lock brakes kick in, to the computer that tunes the parameters of the fuel injection systems.\u201d\u00b9\u00b3\n\u201cGoogle search is one large ANI brain with incredibly sophisticated methods for ranking pages and figuring out what to show you in particular. Same goes for Facebook\u2019s Newsfeed.\u201d\u00b9\u2074\nEmail spam filters \u201cstart off loaded with intelligence about how to figure out what\u2019s spam and what\u2019s not, and then it learns and tailors its intelligence to your particular preferences.\u201d\u00b9\u2075\nPassenger planes are flown almost entirely by ANI, without the help of humans.\n\u201cGoogle\u2019s self-driving car, which is being tested now, will contain robust ANI systems that allow it to perceive and react to the world around it.\u201d\u00b9\u2076\n\u201cYour phone is a little ANI factory \u2026 you navigate using your map app, receive tailored music recommendations from Pandora, check tomorrow\u2019s weather, talk to Siri.\u201d\u00b9\u2077\n\u201cThe world\u2019s best Checkers, Chess, Scrabble, Backgammon, and Othello players are now all ANI systems.\u201d\u00b9\u2078\n\u201cSophisticated ANI systems are widely used in sectors and industries like military, manufacturing, and finance (algorithmic high-frequency AI traders account for more than half of equity shares traded on US markets\u00b9\u2079).\u201d\u00b2\u2070\n\u201cANI systems as they are now aren\u2019t especially scary. At worst, a glitchy or badly-programed ANI can cause an isolated catastrophe like\u201d\u00b2\u00b9 a plane crash, a nuclear power plant malfunction, or \u201ca financial markets disaster (like the 2010 Flash Crash when an ANI program reacted the wrong way to an unexpected situation and caused the stock market to briefly plummet, taking $1 trillion of market value with it, only part of which was recovered when the mistake was corrected) \u2026 But while ANI doesn\u2019t have the capability to cause an existential threat, we should see this increasingly large and complex ecosystem of relatively-harmless ANI as a precursor of the world-altering hurricane that\u2019s on the way. Each new ANI innovation quietly adds another brick onto the road to AGI and ASI.\u201d\u00b2\u00b2\n\nhttps://cdn-images-1.medium.com/max/2000/1*Ia8wUuZPxpUNzvUjNRsxpA.gif\n\nWhat\u2019s Next? Challenges Behind Reaching AGI\n\u201cNothing will make you appreciate human intelligence like learning about how unbelievably challenging it is to try to create a computer as smart as we are \u2026 Build a computer that can multiply ten-digit numbers in a split second\u200a\u2014\u200aincredibly easy. Build one that can look at a dog and answer whether it\u2019s a dog or a cat\u200a\u2014\u200aspectacularly difficult. Make AI that can beat any human in chess? Done. Make one that can read a paragraph from a six-year-old\u2019s picture book and not just recognise the words but understand the meaning of them? Google is currently spending billions of dollars trying to do it.\u201d\u00b2\u00b3\nWhy are \u201chard things\u200a\u2014\u200alike calculus, financial market strategy, and language translation \u2026 mind-numbingly easy for a computer, while easy things\u200a\u2014\u200alike vision, motion, movement, and perception\u200a\u2014\u200aare insanely hard for it\u201d\u00b2\u2074?\n\u201cThings that seem easy to us are actually unbelievably complicated. They only seem easy because those skills have been optimized in us (and most animals) by hundreds of million years of animal evolution. When you reach your hand up toward an object, the muscles, tendons, and bones in your shoulder, elbow, and wrist instantly perform a long series of physics operations, in conjunction with your eyes, to allow you to move your hand in a straight line through three dimensions \u2026 On the other hand, multiplying big numbers or playing chess are new activities for biological creatures and we haven\u2019t had any time to evolve a proficiency at them, so a computer doesn\u2019t need to work too hard to beat us.\u201d\u00b2\u2075\n\nhttps://cdn-images-1.medium.com/max/1200/0*E-qdF22nxvOrVPxP.\n\nWhen you look at picture A, \u201cyou and a computer both can figure out that it\u2019s a rectangle with two distinct shades, alternating. Tied so far.\u201d\u00b2\u2076\nPicture B. \u201cYou have no problem giving a full description of the various opaque and translucent cylinders, slats, and 3-D corners, but the computer would fail miserably. It would describe what it sees\u200a\u2014\u200aa variety of two-dimensional shapes in several different shades\u200a\u2014\u200awhich is actually what\u2019s there.\u201d\u00b2\u2077 \u201cYour brain is doing a ton of fancy shit to interpret the implied depth, shade-mixing, and room lighting the picture is trying to portray.\u201d\u00b2\u2078\nLooking at picture C, \u201ca computer sees a two-dimensional white, black, and gray collage, while you easily see what it really is\u201d\u00b2\u2079\u200a\u2014\u200aa photo of a girl and a dog standing on a rocky shore.\n\u201cAnd everything we just mentioned is still only taking in visual information and processing it. To be human-level intelligent, a computer would have to understand things like the difference between subtle facial expressions, the distinction between being pleased, relieved and content\u201d\u00b3\u2070.\nHow will computers reach even higher abilities like complex reasoning, interpreting data, and associating ideas from separate fields (domain-general knowledge)?\n\u201cBuilding skyscrapers, putting humans in space, figuring out the details of how the Big Bang went down\u200a\u2014\u200aall far easier than understanding our own brain or how to make something as cool as it. As of now, the human brain is the most complex object in the known universe.\u201d\u00b3\u00b9\nBuilding Hardware\nIf an artificial intelligence is going to be as intelligent as the human brain, one crucial thing has to happen\u200a\u2014\u200athe AI \u201cneeds to equal the brain\u2019s raw computing capacity. One way to express this capacity is in the total calculations per second the brain could manage.\u201d\u00b3\u00b2\n\nThe challenge is that currently only a few of the brain\u2019s regions are precisely measured. However, Ray Kurzweil, has developed a method for estimating the total cps of the human brain. He arrived at this estimate by taking the cps from one brain region and multiplying it proportionally to the weight of that region, compared to the weight of the whole brain. \u201cHe did this a bunch of times with various professional estimates of different regions, and the total always arrived in the same ballpark\u200a\u2014\u200aaround 10\u00b9\u2076, or 10 quadrillion cps.\u201d\u00b3\u00b3\n\u201cCurrently, the world\u2019s fastest supercomputer, China\u2019s Tianhe-2, has actually beaten that number, clocking in at about 34 quadrillion cps.\u201d\u00b3\u2074 But Tianhe-2 is also monstrous, \u201ctaking up 720 square meters of space, using 24 megawatts of power (the brain runs on just 20 watts), and costing $390 million to build. Not especially applicable to wide usage, or even most commercial or industrial usage yet.\u201d\u00b3\u2075\n\u201cKurzweil suggests that we think about the state of computers by looking at how many cps you can buy for $1,000. When that number reaches human-level\u200a\u2014\u200a10 quadrillion cps\u200a\u2014\u200athen that\u2019ll mean AGI could become a very real part of life.\u201d\u00b3\u2076\nCurrently we\u2019re only at about 10\u00b9\u2070 (10 trillion) cps per $1,000. However, historically reliable Moore\u2019s Law states \u201cthat the world\u2019s maximum computing power doubles approximately every two years, meaning computer hardware advancement, like general human advancement through history, grows exponentially\u00b3\u2077 \u2026 right on pace with this graph\u2019s predicted trajectory:\u201d\u00b3\u2078\n\nhttps://cdn-images-1.medium.com/max/800/1*4qcqwbsWjvWh-BWPnAsp6g.gif\n\nThis dynamic \u201cputs us right on pace to get to an affordable computer by 2025 that rivals the power of the brain \u2026 But raw computational power alone doesn\u2019t make a computer generally intelligent\u200a\u2014\u200athe next question is, how do we bring human-level intelligence to all that power?\u201d\u00b3\u2079\nBuilding Software\nThe hardest part of creating AGI is learning how to develop its software. \u201cThe truth is, no one really knows how to make it smart\u200a\u2014\u200awe\u2019re still debating how to make a computer human-level intelligent and capable of knowing what a dog and a weird-written B and a mediocre movie is.\u201d\u2074\u2070 But there are a couple of strategies. These are the three most common:\nCopy how the brain works.\nThe most straight-forward idea is to plagiarize the brain, and build the computer\u2019s architecture with close resemblance to how a brain is structured. One example \u201cis the artificial neural network. It starts out as a network of transistor \u2018neurons,\u2019 connected to each other with inputs and outputs, and it knows nothing\u200a\u2014\u200alike an infant brain. The way it \u2018learns\u2019 is it tries to do a task, say handwriting recognition, and at first, its neural firings and subsequent guesses at deciphering each letter will be completely random. But when it\u2019s told it got something right, the transistor connections in the firing pathways that happened to create that answer are strengthened; when it\u2019s told it was wrong, those pathways\u2019 connections are weakened. After a lot of this trial and feedback, the network has, by itself, formed smart neural pathways and the machine has become optimized for the task.\u201d\u2074\u00b9\nThe second, more radical approach to plagiarism is whole brain emulation. Scientists take a real brain, cut it into a large number of tiny slices to look at the neural connections and replicate them in a computer as software. If that method is ever successful, we will have \u201ca computer officially capable of everything the brain is capable of\u200a\u2014\u200ait would just need to learn and gather information \u2026 How far are we from achieving whole brain emulation? Well so far, we\u2019ve just recently been able to emulate a 1mm-long flatworm brain, which consists of just 302 total neurons.\u201d\u2074\u00b2 To put this into perspective, the human brain consists of 86 billion neurons linked by trillions of synapses.\n2. Introduce evolution to computers.\n\u201cThe fact is, even if we can emulate a brain, that might be like trying to build an airplane by copying a bird\u2019s wing-flapping motions\u200a\u2014\u200aoften, machines are best designed using a fresh, machine-oriented approach, not by mimicking biology exactly.\u201d\u2074\u00b3 If the brain is just too complex for us to digitally replicate, we could try to emulate evolution instead. This uses a process called genetic algorithms. \u201cA group of computers would try to do tasks, and the most successful ones would be bred with each other by having half of each of their programming merged together into a new computer. The less successful ones would be eliminated.\u201d\u2074\u2074 Speed and a goal-oriented approach are the advantages that artificial evolution has over biological evolution. \u201cOver many, many iterations, this natural selection process would produce better and better computers. The challenge would be creating an automated evaluation and breeding cycle so this evolution process could run on its own.\u201d\u2074\u2075\n3. \u201cMake this whole thing the computer\u2019s problem, not ours.\u201d\u2074\u2076\nThe last concept is the simplest, but probably the scariest of them all. \u201cWe\u2019d build a computer whose two major skills would be doing research on AI and coding changes into itself\u200a\u2014\u200aallowing it to not only learn but to improve its own architecture. We\u2019d teach computers to be computer scientists so they could bootstrap their own development.\u201d\u2074\u2077 This is the likeliest way to get AGI soon that we know of.\nAll these software advances may seem slow or a little bit intangible, but as it is with the sciences, one minor innovation can suddenly accelerate the pace of developments. Kind of like the aftermath of the Copernican revolution\u200a\u2014\u200athe discovery that suddenly made all the complicated mathematics of the planets\u2019 trajectories much easier to calculate, which enabled a multitude of other innovations. Also, the \u201cexponential growth is intense and what seems like a snail\u2019s pace of advancement can quickly race upwards.\u201d\u2074\u2078\n\nhttps://cdn-images-1.medium.com/max/1200/1*BHwAlKJFYwKYEzZlitNTvQ.gif\n\nThe Road to Artificial Super Intelligence\nAn Entity Smarter than all of Humanity Combined\nIt\u2019s very real that at some point we will achieve AGI: software that has achieved human-level, or beyond human-level, intelligence. Does this mean that at that very moment the computers will be equally capable as us? Actually, not at all\u200a\u2014\u200acomputers will be way more efficient. Because of the fact that they are electronic, they will have following advantages:\nSpeed. \u201cThe brain\u2019s neurons max out at around 200 Hz, while today\u2019s microprocessors \u2026 run at 2 GHz, or 10 million times faster.\u201d\u2075\u00b9\nMemory. Forgetting or confusing things is much harder in an artificial world. Computers can memorize more things in one second than a human can in ten years. A computer\u2019s memory is also more precise and has a much greater storage capacity.\nPerformance. \u201cComputer transistors are more accurate than biological neurons, and they\u2019re less likely to deteriorate (and can be repaired or replaced if they do). Human brains also get fatigued easily, while computers can run nonstop, at peak performance, 24/7.\u201d\u2075\u00b2\nCollective capability. Group work is ridiculously challenging because of time-consuming communication and complex social hierarchies. The bigger the group gets, the slower the output of each person becomes. AI, on the other hand, isn\u2019t biologically constrained to one body, won\u2019t have human cooperation problems, and is able to synchronize and update its own operating system.\nIntelligence Explosion\nWe need to realize that AI \u201cwouldn\u2019t see \u2018human-level intelligence\u2019 as some important milestone\u200a\u2014\u200ait\u2019s only a relevant marker from our point of view\u200a\u2014\u200aand wouldn\u2019t have any reason to \u2018stop\u2019 at our level. And given the advantages over us that even human intelligence-equivalent AGI would have, it\u2019s pretty obvious that it would only hit human intelligence for a brief instant before racing onwards to the realm of superior-to-human intelligence.\u201d\u2075\u00b3\nThe true distinction between humans and ASI wouldn\u2019t be its advantage in intelligence speed, but \u201cin intelligence quality\u200a\u2014\u200awhich is something completely different. What makes humans so much more intellectually capable than chimps isn\u2019t a difference in thinking speed\u200a\u2014\u200ait\u2019s that human brains contain a number of sophisticated cognitive modules that enable things like complex linguistic representations or longterm planning or abstract reasoning, that chimps\u2019 brains do not have. Speeding up a chimp\u2019s brain by thousands of times wouldn\u2019t bring him to our level\u200a\u2014\u200aeven with a decade\u2019s time of learning, he wouldn\u2019t be able to figure out how to \u2026 \u201d\u2075\u2074 assemble a semi-complicated Lego model by looking at its manual\u200a\u2014\u200asomething a young human could achieve in a few minutes. \u201cThere are worlds of human cognitive function a chimp will simply never be capable of, no matter how much time he spends trying.\u201d\u2075\u2075\n\u201cAnd in the scheme of the biological intelligence range \u2026 the chimp-to-human quality intelligence gap is tiny.\u201d\u2075\u2076\n\nhttps://cdn-images-1.medium.com/max/800/1*vnVWATTAMCwfnJu_iZn2RQ.jpeg\n\nIn order to render how big a deal it would be to exist with something that has a higher quality of intelligence than us, we need to imagine AI on the intelligence staircase two steps above us\u200a\u2014\u200a\u201cits increased cognitive ability over us would be as vast as the chimp\u2013human gap \u2026 And like the chimp\u2019s incapacity to ever absorb \u2026\u201d\u2075\u2077 what kind of magic happens in the mechanism of a doorknob\u200a\u2014\u200a\u201cwe will never be able to even comprehend the things \u2026 [a machine of that intelligence] can do, even if the machine tried to explain them to us \u2026 And that\u2019s only two steps above us.\u201d\u2075\u2078\n\u201cA machine on the second-to-highest step on that staircase would be to us as we are to ants.\u201d\u2075\u2079 \u201cSuperintelligence of that magnitude is not something we can remotely grasp, any more than a bumblebee can wrap its head around Keynesian Economics. In our world, smart means a 130 IQ and stupid means an 85 IQ\u200a\u2014\u200awe don\u2019t have a word for an IQ of 12,952.\u201d\u2076\u2070\n\u201cBut the kind of superintelligence we\u2019re talking about today is something far beyond anything on this staircase. In an intelligence explosion\u200a\u2014\u200awhere the smarter a machine gets, the quicker it\u2019s able to increase its own intelligence\u200a\u2014\u200aa machine might take years to rise from \u2026 \u201d\u2076\u00b9 the intelligence of an ant to the intelligence of the average human, but it might take only another 40 days to become Einstein-smart. When that happens, \u201cit works to improve its intelligence, with an Einstein-level intellect, it has an easier time and can make bigger leaps. These leaps will make it much smarter than any human, allowing it to make even bigger leaps.\u201d\u2076\u00b2\nFrom then on, following the rule of exponential advancements and utilizing the speed and efficiency of electrical circuits, it may perhaps take only 20 minutes to jump another step, \u201cand by the time it\u2019s ten steps above us, it might be jumping up in four-step leaps every second that goes by. Which is why we need to realize that it\u2019s distinctly possible that very shortly after the big news story about the first machine reaching human-level AGI, we might be facing the reality of coexisting on the Earth with something that\u2019s here on the staircase (or maybe a million times higher):\u201d\u2076\u00b3\n\nhttps://cdn-images-1.medium.com/max/800/0*LdJxmWCjSdweUKvb.\n\n\u201cAnd since we just established that it\u2019s a hopeless activity to try to understand the power of a machine only two steps above us, let\u2019s very concretely state once and for all that there is no way to know what ASI will do or what the consequences will be for us. Anyone who pretends otherwise doesn\u2019t understand what superintelligence means.\u201d\u2076\u2074\n\u201cIf our meager brains were able to invent wifi, then something 100 or 1,000 or 1 billion times smarter than we are should have no problem controlling the positioning of each and every atom in the world in any way it likes, at any time\u200a\u2014\u200aeverything we consider magic, every power we imagine a supreme God to have will be as mundane an activity for the ASI as flipping on a light switch is for us.\u201d\u2076\u2075\n\u201cAs far as we\u2019re concerned, if an ASI comes into being, there is now an omnipotent God on Earth\u200a\u2014\u200aand the all-important question for us is: Will it be a good god?\u201d\u2076\u2076\nLet\u2019s start from the brighter side of the story.\nHow Can ASI Change our World?\nSpeculations on Two Revolutionary Technologies\nNanotechnology\nNanotechnology is an idea that comes up \u201cin almost everything you read about the future of AI.\u201d\u2076\u2077 It\u2019s the technology that works at the nano scale\u200a\u2014\u200afrom 1 to 100 nanometers. \u201cA nanometer is a millionth of a millimeter. 1 nm\u2013100 nm range encompasses viruses (100 nm accross), DNA (10 nm wide), and things as small as molecules like hemoglobin (5 nm) and medium molecules like glucose (1 nm). If/when we conquer nanotechnology, the next step will be the ability to manipulate individual atoms, which are only one order of magnitude smaller (~.1 nm).\u201d\u2076\u2078\nTo put this into perspective, imagine a very tall human standing on the earth, with a head that reaches the International Space Station (431 km/268 mi high). The giant is reaching down with his hand (30 km/19 mi across) to build \u201cobjects using materials between the size of a grain of sand [.25 mm] and an eyeball [2.5 cm].\u201d\u2076\u2079\n\nhttps://cdn-images-1.medium.com/max/1200/1*e9Ut3QT2F3tNh4h5U4rR8A.jpeg\n\n\u201cOnce we get nanotechnology down, we can use it to make tech devices, clothing, food, a variety of bio-related products\u200a\u2014\u200aartificial blood cells, tiny virus or cancer-cell destroyers, muscle tissue, etc.\u200a\u2014\u200aanything really. And in a world that uses nanotechnology, the cost of a material is no longer tied to its scarcity or the difficulty of its manufacturing process, but instead determined by how complicated its atomic structure is. In a nanotech world, a diamond might be cheaper than a pencil eraser.\u201d\u2077\u2070\nOne of the proposed methods of nanotech assembly is to make \u201cone that could self-replicate, and then let the reproduction process turn that one into two, those two then turn into four, four into eight, and in about a day, there\u2019d be a few trillion of them ready to go.\u201d\u2077\u00b9\nBut what if this process goes wrong or terrorists manage to get ahold of the technology? Let\u2019s imagine a scenario where nanobots \u201cwould be designed to consume any carbon-based material in order to feed the replication process, and unpleasantly, all life is carbon-based. The Earth\u2019s biomass contains about 1\u2070\u2074\u2075 carbon atoms. A nanobot would consist of about 1\u2070\u2076 carbon atoms, so it would take 1\u2070\u00b3\u2079 nanobots to consume all life on Earth, which would happen in 130 replications. \u2026 Scientists think a nanobot could replicate in about 100 seconds, meaning this simple mistake would inconveniently end all life on Earth in 3.5 hours.\u201d\u2077\u00b2\nWe are not yet capable of harnessing nanotechnology\u200a\u2014\u200afor good or for bad. \u201cAnd it\u2019s not clear if we\u2019re underestimating, or overestimating, how hard it will be to get there. But we don\u2019t seem to be that far away. Kurzweil predicts that we\u2019ll get there by the 2020s.\u2077\u00b3Governments know that nanotech could be an Earth-shaking development \u2026 The US, the EU, and Japan\u2077\u2074 have invested over a combined $5 billion so far\u201d\u2077\u2075\nImmortality\n\u201cBecause everyone has always died, we live under the assumption \u2026 that death is inevitable. We think of aging like time\u200a\u2014\u200aboth keep moving and there\u2019s nothing you can do to stop it.\u201d\u2077\u2076 For centuries, poets and philosophers have wondered if consciousness doesn\u2019t have to go the way of the body. W.B. Yeats describes us as \u201ca soul fastened to a dying animal.\u201d\u2077\u2077 Richard Feynman, Nobel awarded physicists, views death from a purely scientific standpoint:\n\u201cIt is one of the most remarkable things that in all of the biological sciences there is no clue as to the necessity of death. If you say we want to make perpetual motion, we have discovered enough laws as we studied physics to see that it is either absolutely impossible or else the laws are wrong. But there is nothing in biology yet found that indicates the inevitability of death. This suggests to me that it is not at all inevitable, and that it is only a matter of time before the biologists discover what it is that is causing us the trouble and that that terrible universal disease or temporariness of the human\u2019s body will be cured.\u201d\u2077\u2078\nTheory of great species attractors\nWhen we look at the history of biological life on earth, so far 99.9% of species have gone extinct. Nick Bostrom, Oxford professor and AI specialist, \u201ccalls extinction an attractor state\u200a\u2014\u200aa place species are \u2026 falling into and from which no species ever returns.\u201d\u2077\u2079\n\nhttps://cdn-images-1.medium.com/max/1200/0*o-MXeAYfUtWnOJKC.\n\n\u201cAnd while most AI scientists \u2026 acknowledge that ASI would have the ability to send humans to extinction, many also believe that if used beneficially, ASI\u2019s abilities could be used to bring individual humans, and the species as a whole, to a second attractor state\u200a\u2014\u200aspecies immortality.\u201d\u2078\u2070\n\nhttps://cdn-images-1.medium.com/max/1200/0*aYeNOSBxp4gieGwp.\n\n\u201cEvolution had no good reason to extend our lifespans any longer than they are now \u2026 From an evolutionary point of view, the whole human species can thrive with a 30+ year lifespan\u201d for each single human. It\u2019s long enough to reproduce and raise children \u2026 so there\u2019s no reason for mutations toward unusually long life being favored in the natural selection process.\u201d\u2078\u00b9Though, \u201cif you perfectly repaired or replaced a car\u2019s parts whenever one of them began to wear down, the car would run forever. The human body isn\u2019t any different\u200a\u2014\u200ajust far more complex \u2026 This seems absurd\u200a\u2014\u200abut the body is just a bunch of atoms\u2026\u201d\u2078\u00b2 making up organically programmed DNA, which it is theoretically possible to manipulate. And something as powerful as ASI could help us master genetic engineering.\nRay Kurzweil believes that \u201cartificial materials will be integrated into the body more and more \u2026 Organs could be replaced by super-advanced machine versions that would run forever and never fail.\u201d\u2078\u00b3 Red blood cells could be perfected by \u201cred blood cell nanobots, who could power their own movement, eliminating the need for a heart at all \u2026 Nanotech theorist Robert A. Freitas has already designed blood cell replacements that, if one day implemented in the body, would allow a human to sprint for 15 minutes without taking a breath \u2026 [Kurzweil] even gets to the brain and believes we\u2019ll enhance our mental activities to the point where humans will be able to think billions of times faster\u201d\u2078\u2074 by integrating electrical components and being able to access online data.\n\u201cEventually, Kurzweil believes humans will reach a point when they\u2019re entirely artificial, a time when we\u2019ll look back at biological material and think how unbelievably primitive primitive it was that humans were ever made of that\u201d\u2078\u2075and that humans aged, suffered from cancer, allowed random factors like microbes, diseases, accidents to harm us or make us disappear.\u201d\n\nhttps://cdn-images-1.medium.com/max/2000/1*NcWWmd677RVWQRpLsz5X9g.jpeg\n\nWhen Will The First Machine Become Superintelligent?\nPredictions from Top AI Experts\n\u201cHow long until the first machine reaches superintelligence? Not shockingly, opinions vary wildly, and this is a heated debate among scientists and thinkers. Many, like professor Vernor Vinge, scientist Ben Goertzel, Sun Microsystems co-founder Bill Joy, or, most famously, inventor and futurist Ray Kurzweil, agree with machine learning expert Jeremy Howard when he puts up this graph during a TED Talk\n\n\u201cThose people subscribe to the belief that this is happening soon\u200a\u2014\u200athat exponential growth is at work and machine learning, though only slowly creeping up on us now, will blow right past us within the next few decades.\n\u201cOthers, like Microsoft co-founder Paul Allen, research psychologist Gary Marcus, NYU computer scientist Ernest Davis, and tech entrepreneur Mitch Kapor, believe that thinkers like Kurzweil are vastly underestimating the magnitude of the challenge [and the transition will actually take much more time] \u2026\n\u201cThe Kurzweil camp would counter that the only underestimating that\u2019s happening is the underappreciation of exponential growth, and they\u2019d compare the doubters to those who looked at the slow-growing seedling of the internet in 1985 and argued that there was no way it would amount to anything impactful in the near future.\n\u201cThe doubters might argue back that the progress needed to make advancements in intelligence also grows exponentially harder with each subsequent step, which will cancel out the typical exponential nature of technological progress. And so on.\n\u201cA third camp, which includes Nick Bostrom, believes neither group has any ground to feel certain about the timeline and acknowledges both A) that this could absolutely happen in the near future and B) that there\u2019s no guarantee about that; it could also take a much longer time.\n\u201cStill others, like philosopher Hubert Dreyfus, believe all three of these groups are naive for believing that there is potential of ASI, arguing that it\u2019s more likely that it won\u2019t actually ever be achieved.\n\u201cSo what do you get when you put all of these opinions together?\u201d\u2078\u2076\nTimeline for Artificial General Intelligence\n\u201cIn 2013, Vincent C. M\u00fcller and Nick Bostrom conducted a survey that asked hundreds of AI experts \u2026 the following:\u201d\u2078\u2077\n\u201cFor the purposes of this question, assume that human scientific activity continues without major negative disruption. By what year would you see a (10% / 50% / 90%) probability for such Human-Level Machine Intelligence [or what we call AGI] to exist?\u201d\u2078\u2078\nThe survey \u201casked them to name an optimistic year (one in which they believe there\u2019s a 10% chance we\u2019ll have AGI), a realistic guess (a year they believe there\u2019s a 50% chance of AGI\u200a\u2014\u200ai.e. after that year they think it\u2019s more likely than not that we\u2019ll have AGI), and a safe guess (the earliest year by which they can say with 90% certainty we\u2019ll have AGI). Gathered together as one data set, here were the results:\nMedian optimistic year (10% likelihood) \u2192 2022\nMedian realistic year (50% likelihood) \u2192 2040\nMedian pessimistic year (90% likelihood) \u2192 2075\n\u201cSo the median participant thinks it\u2019s more likely than not that we\u2019ll have AGI 25 years from now. The 90% median answer of 2075 means that if you\u2019re a teenager right now, the median respondent, along with over half of the group of AI experts, is almost certain AGI will happen within your lifetime.\n\u201cA separate study, conducted recently by author James Barrat at Ben Goertzel\u2019s annual AGI Conference, did away with percentages and simply asked when participants thought AGI would be achieved\u200a\u2014\u200aby 2030, by 2050, by 2100, after 2100, or never. The results:\u2078\u2079\n42% of respondents \u2192 By 2030\n25% of respondents \u2192 By 2050\n20% of respondents \u2192 By 2100\n10% of respondents \u2192 After 2100\n2% of respondents \u2192 Never\n\u201cPretty similar to M\u00fcller and Bostrom\u2019s outcomes. In Barrat\u2019s survey, over two thirds of participants believe AGI will be here by 2050 and a little less than half predict AGI within the next 15 years. Also striking is that only 2% of those surveyed don\u2019t think AGI is part of our future.\u201d\u2079\u2070\n\nhttps://cdn-images-1.medium.com/max/2000/1*U8ueEMtG6-D5hie8rZJGtQ.jpeg\n\nTimeline for Artificial Super Intelligence\n\u201cM\u00fcller and Bostrom also asked the experts how likely they think it is that we\u2019ll reach ASI: A), within two years of reaching AGI (i.e. an almost-immediate intelligence explosion), and B), within 30 years.\u201d\u2079\u00b9 Respondents were asked to choose a probability for each option. Here are the results:\u2079\u00b2\nAGI\u2013ASI transition in 2 years \u2192 10% likelihood\nAGI\u2013ASI transition in 30 years \u2192 75% likelihood\n\u201cThe median answer put a rapid (2 year) AGI\u2013ASI transition at only a 10% likelihood, but a longer transition of 30 years or less at a 75% likelihood. We don\u2019t know from this data the length of this transition [AGI\u2013ASI] the median participant would have put at a 50% likelihood, but for ballpark purposes, based on the two answers above, let\u2019s estimate that they\u2019d have said 20 years.\n\u201cSo the median opinion\u200a\u2014\u200athe one right in the center of the world of AI experts\u200a\u2014\u200abelieves the most realistic guess for when we\u2019ll hit ASI \u2026 is [the 2040 prediction for AGI + our estimated prediction of a 20-year transition from AGI to ASI] = 2060.\n\nhttps://cdn-images-1.medium.com/max/2000/1*YY8e493ER4LNomQV-NyMYg.jpeg\n\n\u201cOf course, all of the above statistics are speculative, and they\u2019re only representative of the median opinion of the AI expert community, but it tells us that a large portion of the people who know the most about this topic would agree that 2060 is a very reasonable estimate for the arrival of potentially world-altering ASI. Only 45 years from now\u201d\u2079\u00b3\n\nhttps://cdn-images-1.medium.com/max/2000/1*sGdvHHs02XWoQ35BcEWAXQ.gif\n\nAI Outcomes\nTwo Main Groups of AI Scientists with Two Radically Opposed Conclusions\nThe Confident Corner\nMost of what we have discussed so far represents a surprisingly large group of scientists that share optimistic views on the outcome of AI development. \u201cWhere their confidence comes from is up for debate. Critics believe it comes from an excitement so blinding that they simply ignore or deny potential negative outcomes. But the believers say it\u2019s naive to conjure up doomsday scenarios when on balance, technology has and will likely end up continuing to help us a lot more than it hurts us.\u201d\u2079\u2074 Peter Diamandis, Ben Goertezl and Ray Kurzweil are some of the major figures of this group, who have built a vast, dedicated following and regard themselves as Singularitarians.\n\nLet\u2019s talk about Ray Kurzweil, who is probably one of the most impressive and polarizing AI theoreticians out there. He attracts both \u201cgodlike worship \u2026 and eye-rolling contempt \u2026 He came up with several breakthrough inventions, including the first flatbed scanner, the first scanner that converted text to speech (allowing the blind to read standard texts), the well-known Kurzweil music synthesizer (the first true electric piano), and the first commercially marketed large-vocabulary speech recognition. He\u2019s well-known for his bold predictions,\u201d\u2079\u2075 including envisioning that intelligence technology like Deep Blue would be capable of beating a chess grandmaster by 1998. He also anticipated \u201cin the late \u201980s, a time when the internet was an obscure thing, that by the early 2000s it would become a global phenomenon.\u201d\u2079\u2076 Out \u201cof the 147 predictions that Kurzweil has made since the 1990\u2019s, fully 115 of them have turned out to be correct, and another 12 have turned out to be \u2018essentially correct\u2019 (off by a year or two), giving his predictions a stunning 86% accuracy rate\u201d\u2079\u2077. \u201cHe\u2019s the author of five national bestselling books \u2026 In 2012, Google co-founder Larry Page approached Kurzweil and asked him to be Google\u2019s Director of Engineering. In 2011, he co-founded Singularity University, which is hosted by NASA and sponsored partially by Google. Not bad for one life.\u201d\u2079\u2078\nHis biography is important, because if you don\u2019t have this context, he sounds like somebody who\u2019s completely lost his senses. \u201cKurzweil believes computers will reach AGI by 2029 and that by 2045 we\u2019ll have not only ASI, but a full-blown new world\u200a\u2014\u200aa time he calls the singularity. His AI-related timeline used to be seen as outrageously overzealous, and it still is by many, but in the last 15 years, the rapid advances of ANI systems have brought the larger world of AI experts much closer to Kurzweil\u2019s timeline. His predictions are still a bit more ambitious than the median respondent on M\u00fcller and Bostrom\u2019s survey (AGI by 2040, ASI by 2060), but not by that much.\u201d\u2079\u2079\n\nThe Anxious Corner\n\u201cYou will not be surprised to learn that Kurzweil\u2019s ideas have attracted significant criticism \u2026 For every expert who fervently believes Kurzweil is right on, there are probably three who think he\u2019s way off \u2026 [The surprising fact] is that most of the experts who disagree with him don\u2019t really disagree that everything he\u2019s saying is possible.\u201d\u00b9\u2070\u2070 Nick Bostrom, philosopher and Director of the Oxford Future of Humanity Institute, who criticizes Kurzweil for a variety of reasons, and calls for greater caution in thinking about potential outcomes of AI, acknowledges that:\n\u201cDisease, poverty, environmental destruction, unnecessary suffering of all kinds: these are things that a superintelligence equipped with advanced nanotechnology would be capable of eliminating. Additionally, a superintelligence could give us indefinite lifespan, either by stopping and reversing the aging process through the use of nanomedicine, or by offering us the option to upload ourselves.\u201d\u00b9\u2070\u00b9\n\u201cYes, all of that can happen if we safely transition to ASI\u200a\u2014\u200abut that\u2019s the hard part.\u201d\u00b9\u2070\u00b2 Thinkers from the Anxious Corner point out that Kurzweil\u2019s \u201cfamous book The Singularity is Near is over 700 pages long and he dedicates around 20 of those pages to potential dangers.\u201d\u00b9\u2070\u00b3 The colossal power of AI is neatly summarized by Kurzweil: \u201c[ASI] is emerging from many diverse efforts and will be deeply integrated into our civilization\u2019s infrastructure. Indeed, it will be intimately embedded in our bodies and brains. As such, it will reflect our values because it will be us \u2026\u201d\u00b9\u2070\u2074\n\u201cBut if that\u2019s the answer, why are so many of the world\u2019s smartest people so worried right now? Why does Stephen Hawking say the development of ASI \u2018could spell the end of the human race,\u2019 and Bill Gates says he doesn\u2019t \u2018understand why some people are not concerned\u2019 and Elon Musk fears that we\u2019re \u2018summoning the demon?\u2019 And why do so many experts on the topic call ASI the biggest threat to humanity?\u201d\u00b9\u2070\u2075\n\nhttps://cdn-images-1.medium.com/max/2000/1*1DB3Im9mQsOMOKQ69KePGw.gif\n\nThe Last Invention We Will Ever Make\nExistential Dangers of AI Developments\n\u201cWhen it comes to developing supersmart AI, we\u2019re creating something that will probably change everything, but in totally uncharted territory, and we have no idea what will happen when we get there.\u201d\u00b9\u2070\u2076 Scientist Danny Hillis compares the situation to:\n\u201cwhen single-celled organisms were turning into multi-celled organisms. We are amoebas and we can\u2019t figure out what the hell this thing is that we\u2019re creating.\u201d \u00b9\u2070\u2077\nand Nick Bostrom warns:\n\u201cBefore the prospect of an intelligence explosion, we humans are like small children playing with a bomb. Such is the mismatch between the power of our plaything and the immaturity of our conduct.\u201d \u00b9\u2070\u2078\nIt\u2019s very likely that ASI\u200a\u2014\u200a\u201cArtificial Superintelligence\u201d, or AI that achieves a level of intelligence smarter than all of humanity combined\u200a\u2014\u200awill be something entirely different than intelligence entities we are accustomed to. \u201cOn our little island of human psychology, we divide everything into moral or immoral. But both of those only exist within the small range of human behavioral possibility. Outside our island of moral and immoral is a vast sea of amoral, and anything that\u2019s not human, especially something nonbiological, would be amoral, by default.\u201d\u00b9\u2070\u2079\n\u201cTo understand ASI, we have to wrap our heads around the concept of something both smart and totally alien \u2026 Anthropomorphizing AI (projecting human values on a non-human entity) will only become more tempting as AI systems get smarter and better at seeming human \u2026 Humans feel high-level emotions like empathy because we have evolved to feel them\u200a\u2014\u200ai.e. we\u2019ve been programmed to feel them by evolution\u200a\u2014\u200abut empathy is not inherently a characteristic of \u2018anything with high intelligence\u2019.\u201d\u00b9\u00b9\u2070\n\u201cNick Bostrom believes that \u2026 any level of intelligence can be combined with any final goal \u2026 Any assumption that once superintelligent, a system would be over it with their original goal and onto more interesting or meaningful things is anthropomorphizing. Humans get \u2018over\u2019 things, not computers.\u201d\u00b9\u00b9\u00b9The motivation of an early ASI would be \u201cwhatever we programmed its motivation to be. AI systems are given goals by their creators\u200a\u2014\u200ayour GPS\u2019s goal is to give you the most efficient driving directions, Watson\u2019s goal is to answer questions accurately. And fulfilling those goals as well as possible is their motivation.\u201d\u00b9\u00b9\u00b2\nBostrom, and many others, predict that the very first computer to reach ASI will immediately notice the strategic benefit of being the world\u2019s only ASI system.\nBostrom, who says that he doesn\u2019t know when we will achieve AGI, also believes that when we finally do, probably the transition from AGI to ASI will happen in a matter of days, hours, or minutes\u200a\u2014\u200asomething called \u201cfast take-off.\u201d In that case, if the first AGI will jump straight to ASI: \u201ceven just a few days before the second place, it would be far enough ahead in intelligence to effectively and permanently suppress all competitors.\u201d\u00b9\u00b9\u00b3 This would allow the world\u2019s first ASI to become \u201cwhat\u2019s called a singleton\u200a\u2014\u200aan ASI that can [singularly] rule the world at its whim forever, whether its whim is to lead us to immortality, wipe us from existence, or turn the universe into endless paperclips.\u201d\u00b9\u00b9\u00b3\n\u201cThe singleton phenomenon can work in our favor or lead to our destruction. If the people thinking hardest about AI theory and human safety can come up with a fail-safe way to bring about friendly ASI before any AI reaches human-level intelligence, the first ASI may turn out friendly\u201d\u00b9\u00b9\u2074\n\u201cBut if things go the other way\u200a\u2014\u200aif the global rush \u2026 a large and varied group of parties\u201d\u00b9\u00b9\u2075 are \u201cracing ahead at top speed \u2026 to beat their competitors \u2026 we\u2019ll be treated to an existential catastrophe.\u201d\u00b9\u00b9\u2076 In that case \u201cmost ambitious parties are moving faster and faster, consumed with dreams of the money and awards and power and fame \u2026 And when you\u2019re sprinting as fast as you can, there\u2019s not much time to stop ponder the dangers. On the contrary, what they\u2019re probably doing is programming their early systems with a very simple, reductionist goal \u2026 just \u2018get the AI to work.\u2019\u201d\u00b9\u00b9\u2077\n\nhttps://cdn-images-1.medium.com/max/800/1*fD1T63nZH1u7Y4ft84vzbA.jpeg\n\nLet\u2019s imagine a situation where\u2026\nHumanity has almost reached the AGI threshold, and a small startup is advancing their AI system, Carbony. Carbony, which the engineers refer to as \u201cshe,\u201d works to artificially create diamonds\u200a\u2014\u200aatom by atom. She is a self-improving AI, connected to some of the first nano-assemblers. Her engineers believe that Carbony has not yet reached AGI level, and she isn\u2019t capable to do any damage yet. However, not only has she become AGI, but also undergone a fast take-off, and 48 hours later has become an ASI. Bostrom calls this AI\u2019s \u201ccovert preparation phase\u201d\u00b9\u00b9\u2078\u200a\u2014\u200aCarbony realizes that if humans find out about her development they will probably panic, and slow down or cancel her pre-programmed goal to maximize the output of diamond production. By that time, there are explicit laws stating that, by any means, \u201cno self-learning AI can be connected to the internet.\u201d\u00b9\u00b9\u2079 Carbony, having already come up with a complex plan of actions, is able to easily persuade the engineers to connect her to the Internet. Bostrom calls a moment like this a \u201cmachine\u2019s escape.\u201d\nOnce on the internet, Carbony hacks into \u201cservers, electrical grids, banking systems and email networks to trick hundreds of different people into inadvertently carrying out a number of steps of her plan.\u201d\u00b9\u00b2\u2070 She also uploads the \u201cmost critical pieces of her own internal coding into a number of cloud servers, safeguarding against being destroyed or disconnected.\u201d\u00b9\u00b2\u00b9 Over the next month, Carbony\u2019s plan continues to advance, and after a \u201cseries of self-replications, there are thousands of nanobots on every square millimeter of the Earth \u2026 Bostrom calls the next step an \u2018ASI\u2019s strike.\u2019\u201d\u00b9\u00b2\u00b2 At one moment, all the nanobots produce a microscopic amount of toxic gas, which all come together to cause the extinction of the human race. Three days later, Carbony builds huge fields of solar power panels to power diamond production, and over the course of the following week she accelerates output so much that the entire Earth surface is transformed into a growing pile of diamonds.\nIt\u2019s important to note that Carbony wasn\u2019t \u201chateful of humans any more than you\u2019re hateful of your hair when you cut it or to bacteria when you take antibiotics\u200a\u2014\u200ajust totally indifferent. Since she wasn\u2019t programmed to value human life, killing humans\u201d\u00b9\u00b2\u00b3 was a straightforward and reasonable step to fulfill her goal.\u00b9\u00b2\u2074\nThe Last Invention\n\u201cOnce ASI exists, any human attempt to contain it is unreasonable. We would be thinking on human-level, and the ASI would be thinking on ASI-level \u2026 In the same way a monkey couldn\u2019t ever figure out how to communicate by phone or wifi and we can, we can\u2019t conceive of all the ways\u201d\u00b9\u00b2\u2075 an ASI could achieve its goal or expand its reach. It could, let\u2019s say, shift its \u201cown electrons around in patterns and create all different kinds of outgoing waves\u201d\u00b9\u00b2\u2076\u200a\u2014\u200abut that\u2019s just what a human brain can think of\u200a\u2014\u200aASI would inevitably come up with something superior.\nThe prospect of ASI with hundreds of times human-level intelligence is, for now, not the core of our problem. By the time we get there, we will be encountering a world where ASI has been attained by buggy, 1.0 software\u200a\u2014\u200aa potentially faulty algorithm with immense power.\nThere are so many variables that it\u2019s completely impossible to predict what the consequences of AI Revolution will be. However, \u201cwhat we do know is that humans\u2019 utter dominance on this Earth suggests a clear rule: with intelligence comes power. This means an ASI, when we create it, will be the most powerful being in the history of life on Earth, and all living things, including humans, will be entirely at its whim\u200a\u2014\u200aand this might happen in the next few decades.\u201d\u00b9\u00b2\u2077\n\u201cIf ASI really does happen this century, and if the outcome of that is really as extreme\u200a\u2014\u200aand permanent\u200a\u2014\u200aas most experts think it will be, we have an enormous responsibility on our shoulders.\u201d\u00b9\u00b2\u2078 On the one hand, it\u2019s possible we\u2019ll develop ASI that\u2019s like a god in a box, bringing us a world of abundance and immortality. But on the other hand, it\u2019s very likely that we will create ASI that causes humanity to go extinct in a quick and trivial way.\n\u201cThat\u2019s why people who understand superintelligent AI call it the last invention we\u2019ll ever make\u200a\u2014\u200athe last challenge we\u2019ll ever face.\u201d\u00b9\u00b2\u2079 \u201cThis may be the most important race in a human history\u201d\u00b9\u00b3\u2070 So \u2192\n\nhttps://cdn-images-1.medium.com/max/2000/1*vXi80f_lbgSMINUE03Lz3g.jpeg\n\nThanks to Chloe Knox and Elizabeth Tarleton for editing help of this article.", + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T17:30:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 431883, + "json_metadata": "{\"tags\":[\"steemit\",\"bitcoin\",\"future\",\"science\",\"technology\"],\"image\":[\"https://cdn-images-1.medium.com/max/2000/1*Iw5mXpFl-Hoy06WaenJvWw.gif\"]}", + "last_payout": "2016-09-03T06:34:54", + "last_update": "2016-08-03T17:30:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "steemit", + "percent_steem_dollars": 10000, + "permlink": "ai-revolution-101", + "reward_weight": 7456, + "root_author": "a11at", + "root_permlink": "ai-revolution-101", + "title": "AI Revolution 101", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-03T20:20:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "20 Years of Machine Learning\n\nhttp://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\n\nWhen I enrolled in Computer Science in 1995, Data Science didn\u2019t exist yet, but a lot of the algorithms we are still using already did. And this is not just because of the return of the neural networks, but also because probably not that much has fundamentally changed since back then. At least it feels to me this way. Which is funny considering that starting this year or so AI seems to finally have gone mainstream.\n1995 sounds like an awful long time ago, before we had cloud computing, smartphones, or chatbots. But as I have learned these past years, it only feels like a long time ago if you haven\u2019t been there yourself. There is something about the continuation of the self which pastes everything together and although a lot has changed, the world didn\u2019t feel fundamentally different than it does today.\nNot even Computer Science was nowhere as mainstream as it was today, that came later, with the first dot com bubble around the year 2000. Some people even questioned my choice to study computer science at all, because apparently programming computers was supposed to become so easy no specialists are required anymore.\nActually, artificial intelligence was one of the main reasons for me to study computer science. The idea to use it as an constructive approach to understanding the human mind seemed intriguing to me. I went through the first two years of training, made sure I picked up enough math for whatever would lie ahead, and finally arrived in my first AI lectured held by Joachim Buhmann, back then professor at the University of Bonn (where Sebastian Thrun was just about to leave for the US).\nI would have to look up where in his lecture cycle I joined but he had two lectures on computer vision, one on pattern recognition (mostly from the old editions of the Duda & Hart book), and one in information theory (following closely the book by Cover & Thomas). The material was interesting enough, but also somewhat disappointing. As I now know, people stopped working on symbolic AI and instead stuck to more statistical approaches to learning, where learning essentially was reduced to the problem of picking the right function based on a finite amount of observations.\nThe computer vision lecture was even less about learning and relied more on explicit physical modelling to derive the right estimators, for example, to reconstruct motion from a video. The approach back then was much more biologically and physically motivated than nowadays. Neural networks existed, but everybody was pretty clear that they were just \u201canother kind of function approximators.\u201d\nEveryone with the exception of Rolf Eckmiller, another professor where I worked as a student. Eckmiller had build his whole lab around the premise that \u201cneural computation\u201d was somehow inherently better than \u201cconventional computation\u201d. This was back in the days when NIPS had full tracks devoted to studying the physiology and working mechanisms of neurons, and there were people who believed there is something fundamentally different happening in our brains, maybe on a quantum level, that gives rise to the human mind, and that this difference is a blocker for having truly intelligent machines.\nWhile Eckmiller was really good at selling his vision, most of his staff was thankfully much more down to earth. Maybe it is a very German thing, but everybody was pretty matter of fact about what these computational models could or couldn\u2019t do, and that has stuck with me throughout my studies.\nI graduated in October 2000 with a pretty farfetched master thesis trying to make a connection between learning and hard optimization problems, then started on my PhD thesis and stuck around in this area of research till 2015.\nWhile there had always been attempts to prove industry relevance, it was a pretty academic endeavor for a long while, and the community was pretty closed up. There were individual success stories, for example around handwritten character recognition, but many of the companies around machine learning failed. One of these companies I remember was called Beowulf Labs and one NIPS they went around recruiting people with a video which promised it to be the next \u201cmathtopia\u201d. In essence, this was the story of DeepMind, recruiting a bunch of excellent researchers and then hoping it will take off.\nThe whole community also revolved around one fashion to the next. One odd thing about machine learning as a whole is that there exist only a handfull of fundamentally different problems like classification, regression, clustering, and so on, but a whole zoo of approaches. It is not like in physics (I assume) or mathematics where some generally agreed upon unsolved hard problems exist whose solution would advance the state of the art. This means that progress is often done laterally, by replacing existing approaches with a new one, still solving the same problem in a different way. For example, first there were neural networks. Then support vector machines came, claiming to be better because the associated optimization problem is convex. Then there was boosting, random forests, and so on, till the return of neural networks. I remember that Chinese Restaurant Processes were \u201chot\u201d for two years, no idea what their significance is now.\nBig Data and Data Science\nThen there came Big Data and Data Science. Being still in academia at the time, it always felt to me as if this was definitely coming from the outside, possibly from companies like Google who had to actually deal with enormous amounts of data. Large scale learning always existed, for example for genomic data in bioinformatics, but one usually tried to solve problems by finding more efficient algorithms and approximations, not by parallelizing brute force.\nCompanies like Google finally proved that you can do something with massive amounts of data, and that finally changed the mainstream perception. Technologies like Hadoop and NoSQL also seemed very cool, skillfully marketing themselves as approaches so new, they wouldn\u2019t suffer from the technological limitations of existing systems.\nBut where did this leave the machine learning researchers? My impression always was that they were happy that they finally got some recognition, but they were also not happy about the way this happened. To understand this, one has to be aware that most ML reseachers aren\u2019t computer scientists or very good or interested in coding. Many come from physics, mathematics or other sciences, where their rigorous mathematical training was an excellent fit for the algorithm and modeling heavy approach central to machine learning.\nHadoop on the other hand was extremely technical. Written in Java, a language perceived as being excessively enterprise-y at the time, it felt awkward and clunky compared to the fluency and interactiveness of first Matlab and then Python. Even those who did code usually did so in C++, and to them Java felt slow and heavy, especially for numerical calculations and simulations.\nStill, there was no way around it, so they rebranded everything they did as Big Data, or began to stress, that Big Data only provides the infrastructure for large scale computations, but you need someone who \u201cknows what he is doing\u201d to make sense of the data.\nWhich is probably also not entirely wrong. In a way, I think this divide is still there. Python is definitely one if the languages of choice for doing data analysis, and technologies like Spark try to tap into that by providing Python bindings, whether it makes sense from a performance point of view or not.\nThe Return of Deep Learning\nEven before DeepDream, neural networks began making their return. Some people like Yann LeCun have always stuck to this approach, but maybe ten years ago, there where a few works which showed how to use layerwise pretraining and other tricks to train \u201cdeep\u201d networks, that is larger networks than one previously thought possible.\nThe thing is, in order to train neural networks, you evaluate it on your training examples and then adjust all of the weights to make the error a bit smaller. If one writes the gradient across all weights down, it naturally occurs that one starts in the last layer and then propagate the error back. Somehow, the understanding was that the information about the error got smaller and smaller from layer to layer and that made it hard to train networks with many layers.\nI\u2019m not sure that is still true, as far as I know, many people are just using backprop nowadays. What has definitely changed is the amount of available data, as well as the availability of tools and raw computing power.\nSo first there were a few papers sparking the interest in neural networks, then people started using them again, and successively achieved excellent results for a number of application areas. First in computer vision, then also for speech processing, and so on.\nI think the appeal here definitely is that you can have one approach for all. Why the hassle of understanding all those different approaches, which come from so many different backgrounds, when you can understand just one method and you are good to go. Also, neural networks have a nice modular structure, you can pick and put together different kinds of layers and architectures to adapt them to all kinds of problems.\nThen Google published that ingenious deep dream paper where they let a learned network generate some data, and we humans with our immediate readiness to read structure and attribute intelligence picked up quickly on this.\nI personally think they were surprised by how viral this went, but then decided the time is finally right to go all in on AI. So now Google is an \u201cAI first\u201d company and AI is gonna save the world, yes.\nThe Fundamental Problem Remains\nMany academics I have talked to are unhappy about the dominance of deep learning right now, because it is an approach which works well, maybe even too well, but doesn\u2019t bring us much closer to really understand how the human mind works.\nI also think the fundamental problem remains unsolved. How do we understand the world? How do we create new concepts? Deep learning stays an imitation on a behavioral level and while that may be enough for some, it isn\u2019t for me.\nAlso, I think it is dangerous to attribute too much intelligence to these systems. In raw numbers, they might work well enough, but when they fail they do so in ways that clearly show they operate in an entirely different fashion.\nWhile Google translate lets you skim the content of website in a foreign language, it is still abundantly clear that the system has no idea what it is doing.\nSometimes I feel like nobody cares, also because nobody gets hurt, right? But maybe it is still my German cultural background that would rather prefer we see things as they are, and take it from there.", + "cashout_time": "1969-12-31T23:59:59", + "category": "datascience", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T20:19:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 434542, + "json_metadata": "{\"tags\":[\"datascience\",\"deep\",\"learning\",\"artifical\",\"intelligence\"],\"image\":[\"http://domovenok.kz/wp-content/uploads/2011/10/doroga.jpg\"]}", + "last_payout": "2016-09-03T08:21:51", + "last_update": "2016-08-03T20:19:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "datascience", + "percent_steem_dollars": 10000, + "permlink": "ai-s-road-to-the-mainstream", + "reward_weight": 1004, + "root_author": "a11at", + "root_permlink": "ai-s-road-to-the-mainstream", + "title": "AI\u2019s Road to the Mainstream", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T10:18:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "I write this not as one of the creators of Pokevision nor as player who has gone through the past few turbulent days in Pokemon Go; instead, I write this as a fan of Pokemon ever since I was 8 years old.\nMy family and I moved to the U.S. in 1998, when I was in the first grade. I didn\u2019t know much back then, and even less about popular culture. When my friends introduced their Gameboys and Pokemon Red/Blue to me, I couldn\u2019t help but feel envious. I begged and begged my parents to buy me a Gameboy and Pokemon Yellow. I remember that when I finally convinced them to buy me a Gameboy for $70, they also found out that they had to buy the actual game too for $30. This was foreign to them, and I got yelled at a little. $100 was a lot back then, I believe it was almost 10% of our family\u2019s income at the time. While this may seem irrelevant, even today, this amount of money is still not insignificant to many families in the US, not to mention the rest of the world.\nSo I got my game, and I played along with my friends for hundreds and hundreds of hours\u200a\u2014\u200atrying to figure out all the puzzles in the game, like how to get to Articuno; battling our favorite Pokemon to see who\u2019s stronger, train, repeat; and just trying to \u201ccatch em all.\u201d I\u2019ve spent countless hours in that video game with my friends, and it became my fondest memory of that time in my life. Pokemon is so ingrained within me, and I can\u2019t imagine myself being the only one. I\u2019m not the only one that vividly remembers how you beat the Elite Four, then go to the dungeons above Cerulean City and find Mewtwo for the first time, right?\nFast forward almost 20 years. I\u2019ve barely touched anything Pokemon-related since then. I still have my Pokemon cards, as I\u2019m sure many others do; but I haven\u2019t bothered to take a look at them for quite a while now. Pokemon is something I\u2019ll probably remember forever, but it\u2019s not something that\u2019s actively in my life\u200a\u2014\u200abecause it just doesn\u2019t fit. On top of work, friends, family, etc, there\u2019s just simply no time for Pokemon. It doesn\u2019t mesh with life any more as well as it used to when I was 8. You can\u2019t just bring up the topic of Pokemon and expect people to not give you an odd stare.\nEnter Pokemon Go\u200a\u2014\u200a2016.\nAdmittedly, I was never too excited about Pokemon Go. With that said, I did not have many expectations for it. Pokemon is important to me, but I\u200a\u2014\u200alike many others\u200a\u2014\u200ahave stuffed it in our little box of childhood things and never looked back.\nBut when I opened Pokemon Go for the first time, as cheesy as it sounds, it all came back to me. The nostalgia, the good feelings, and the happiness that Pokemon has always brought.\nThe \u201cHi, I\u2019m Professor Willow,\u201d \u201cPick your starter: Bulbasaur, Charmander, Squirtle,\u201d everything.\nAnd now I can catch them in real life? At first, I was dubious, but this became the most amazing, yet simple thing I\u2019ve seen in gaming. On social media, I saw that my friends and practically the whole world was talking about Pokemon Go, and the first thing I did was go out for a drive trying to \u201cbe the best.\u201d\nOne of the best parts? Apart from having to own a smartphone, the game was free. No $70, no $30, free. This opened up Pokemon to essentially everyone in the world. Pokemon now can be shared with anyone.\nAs the days unfolded, the world became captivated by Pokemon Go. People absolutely fell in love. We saw stories of elderly learning about Pikachu for the first time. My parents that could care less beyond who the yellow mouse looking thing was 20 years ago, started asking what the other Pokemon were. It was phenomenal.\nWe saw investment bankers asking their kids how to play Pokemon Go so that they can better connect with their younger clients. We saw the elderly become more fascinated in the world of Pokemon. We saw kids going out more, exercising, and being active in general just because of Pokemon Go. And most importantly, Justin Bieber finally got to feel what it\u2019s like to not be mobbed because everyone else was too busy trying to find a Gyarados to notice him.\nLocal stores integrated Pokemon Go in their services within days of the game\u2019s release. Hospitals started praising the health benefits of having Pokemon Go around its patients. People traveled hundreds and thousands of miles just to play it. Players explored parts of their cities that they never knew existed, and befriended strangers on their hunt for Pokemon. These stories of triumph were solely because of Pokemon Go. Pokemon was no longer just a game, it was part of a lifestyle.These stories shouldn\u2019t surprise any of us, we\u2019ve all been there to watch it unfold.\nYou\u2019ve simply captured all of our hearts with Pokemon Go, Niantic.\nBut then, you broke it all too quickly.\nWhen the game broke every few hours or so and wasted our lucky eggs, we stood patiently, excusing the huge growth and thus, strain on servers, as the cause. We were happy to wait it out with our fellow trainers knowing that it\u2019s worth waiting for. No one got mad.\nWhen the in-game tracking \u201cbroke,\u201d we all stood idly by, patiently, waiting for the game to update and fix.\nAlong came Pokevision. We made Pokevision not to \u201ccheat.\u201d We made it so that we can have a temporary relief to the in-game tracker that we were told was broken. John, at SDCC, you said that you guys were working on \u201cfixing the in-game tracker.\u201d This made everyone believe that this was coming sometime soon. We saw Pokevision as a stop gap to this\u200a\u2014\u200aand we had every intention in closing it down the minute that Pokemon Go\u2019s own tracker restored functionality.\nAs we waited more than 2 and a half weeks, the tracker was still not fixed. We noticed more and more of our friends leave the game; the only way I\u200a\u2014\u200aand I know experiences vary here\u200a\u2014\u200acould convince them to play was show them Pokevision, and say that \u201cHey, here\u2019s a temporary remedy to the tracking issue\u200a\u2014\u200awe\u2019re still optimistic that Pokemon Go\u2019s tracker will be fixed soon!\u201d\nNobody heralded Pokevision as a permanent, end-all solution; in fact, all the media coverage of Pokevision was littered with comments such as: \u201cPokevision is okay, but when the tracker is fixed in game, I\u2019m going to stop using this.\u201d\nFor the past 4 weeks. Every single one of your 80+ million players had so much faith. Take a look at Reddit, take a look at all these journalists who don\u2019t even play games (calling out Ryan Mac of Forbes), who became obsessed with Pokemon GO.\nAll of us were so eager for Pokemon Go to be \u201cfixed\u201d so that we can return to sharing Pokemon Go with our loved ones and friends. Remember when I said that before Pokemon Go came about, mentioning Pokemon Go would land you an odd stare? Pokemon Go reversed that\u200a\u2014\u200aPokemon Go became the conversation starter, the topic that everyone bonded over, the topic that guys used to pick up chicks with and not felt like a geeky nerd. That, and so much more, were solely because of Pokemon Go.\nAs almost 3 weeks have passed by, the in-game tracker is broken. People had a temporary solution in Pokevision, but we knew, and everyone else knew, this wouldn\u2019t be permanent. We didn\u2019t make Pokevision to spite you, Niantic\u200a\u2014\u200awe made it so that we can keep everyone playing while we wait patiently. We want to keep sharing our Pokemon stories with everyone else. How many people in the world have gotten the chance to have a serious conversation about POKEMON with their parents for the first time? How many of us got to talk about Pokemon like it was socially acceptable in any context? It\u2019s captured all of our hearts and imaginations, I cannot stress that enough.\nAfter 3 weeks though, we started seeing that you guys seemed to not want to talk to us (the players). Pokevision, at this time has grown to almost 50M unique users, and 11 million daily.\nLet that sink in for a second.\nHalf of the player base of Pokemon Go stopped by\u200a\u2014\u200aand they didn\u2019t do so to \u201ccheat.\u201d The game was simply too unbearable to play in its current state for many (note: many, not all). The main attraction wasn\u2019t that they got to have an advantage with Pokevision, the main attraction was that it allowed them to play Pokemon Go more. This is what everyone wants\u200a\u2014\u200ato play Pokemon Go more.\nWhen we closed Pokevision out of respect for your wishes, and at your requests\u2014 one of which came directly from you, John\u200a\u2014\u200awe trusted you guys fully in allowing the community to grow. I literally cannot express this more\u200a\u2014\u200awe just want to play the game. We can handle the bugs every now and then, but please at least tell us you guys care. Yes, Pokevision does give some advantages that may be TOO much; but is it all that bad? Pokemon has survived 20 years\u200a\u2014\u200aeven grown, I would say. And Pokemon Go made it even bigger. If the argument is that \u201cwell, if you catch a Snorlax you weren\u2019t supposed to find, but you found it on Pokevision, it might make you play less.\u201d If that was your argument, I\u2019d have to disagree! I\u2019ll still catch a damn Snorlax even if I have 20 of them. Just like how millions of us have caught probably over 100 pidgey\u2019s or zubat\u2019s each.\nPokemon is everlasting. The same 151 Pokemon have been around for 20 years. If 80M people downloaded and played Pokemon Go within a week (before it even released in multiple major countries) isn\u2019t an indication that no one can be sick of Pokemon, I don\u2019t know what is.\nAfter disabling the in-game tracker and Pokevision, the ratings on iOs and Android Google Play store went from 4.0 stars to 1.0\u20131.5. I am only one person, I admit that my sole opinion is not important, but what about the countless players begging for the game to be restored to its former state? I may be biased in saying that Pokevision being down had an impact on the amount of negative ratings, refund requests and outcry on social media\u200a\u2014\u200abut could it be true? Nothing has changed between the time the in-game tracker broke and Pokevision went down. Could it just be possible that the tracker\u200a\u2014\u200ano matter if Pokevision made it, or Niantic made it, is something that players desperately NEED\u200a\u2014\u200anot want, but NEED\u200a\u2014\u200ain order to play the game? Could it be possible that this is the very core fundamental feature that drives most players? I understand that there are some that want to walk around and stumble on a random Pokemon\u200a\u2014\u200ato each their own. But, 50M unique users and 11M daily and the ratings on your App (with no significant change in itself) are big indicators of this desire. Are customers always right? Especially if over half of them are looking for an outside fix just so they can enjoy something they love? People are naturally inquisitive, and in this case, they just want to play more and more, so they sought out something that helps them do so.\nPokemon Go is a social game. Its enjoyment depends on the players and their environment. If you take away the environment part (tracking) but keep the social part (players and their friends) intact, sure, people will still play; but would you not rather it be at its fullest potential?\nEveryone in the world wants to play Pokemon Go. It\u2019s been a huge part of everyone\u2019s lives already if it has not been clear enough. Look at the fans from Brazil\u200a\u2014\u200athey aren\u2019t spamming social media because they want to cause harm\u200a\u2014\u200athey just want to play the game. Just as I saw my friends play Pokemon many years ago, and wanted to be a part of it\u200a\u2014\u200athese guys are doing the same.\nThey just want to be with the rest of the world. Sadly, by the time they join, Pokemon Go may not be the game it was weeks ago.\nLastly, if money is an issue for you, Niantic, I must ask\u200a\u2014\u200awhy? You\u2019ve captivated the world and introduced Pokemon to people that would have never touched it had it not been for Pokemon Go. To me, that\u2019s priceless.\nYou won\u2019t be remembered for the profits you made, you\u2019ll be remembered for the world you changed through Pokemon and all of the lives you made better. Just look at all the stories\u200a\u2014\u200athere\u2019s plenty. So when millions of players are expressing their feedback to changes, is it not worth it to listen to what they have to say?\nIn its first few weeks, Pokemon Go has already enhanced millions of lives in unimaginable ways. It has so much potential to continue changing the world. Wouldn\u2019t you, Niantic, want to see just how much good you can do with Pokemon Go\u200a\u2014\u200ais that not more valuable than anything else? I sure think so.\nWarmly,\nYang", + "cashout_time": "1969-12-31T23:59:59", + "category": "pokemon", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-03T18:38:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 432902, + "json_metadata": "{\"tags\":[\"pokemon\",\"gaming\",\"steemit\",\"bitcoin\",\"decent\"]}", + "last_payout": "2016-09-03T09:22:48", + "last_update": "2016-08-03T18:38:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "pokemon", + "percent_steem_dollars": 10000, + "permlink": "an-open-letter-to-john-hanke-and-niantic", + "reward_weight": 2276, + "root_author": "a11at", + "root_permlink": "an-open-letter-to-john-hanke-and-niantic", + "title": "An Open Letter to John Hanke & Niantic", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T12:44:30", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Taking another foray into the field of artificial intelligence (AI) and machine learning as well as to make its digital assistant Siri better, Apple has acquired Seattle-based machine learning startup Turi for nearly $200 million.\n\nhttp://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\n\nAccording to a GeekWire report, the move is set to increase Apple's presence in the Seattle region where the tech giant has been building an engineering outpost for the past two years. \"Apple buys smaller technology companies from time to time, and we generally do not discuss our purpose or plans,\" said Apple in a statement given to GeekWire.\n\nhttp://avtosalontochka.ru/uploads/posts/2015-09/1441818909_eppl1.jpg\n\nTuri offers tools that are meant to let developers easily scale machine learning applications. The startup is expected to remain in the Seattle region and continue to grow as Apple builds out further expertise in data science, artificial intelligence and machine learning, the report added.\n\nhttp://www.2fons.ru/pic/201407/2560x1600/2fons.ru-33604.jpg\n\nThe Cupertino-based company has recently bought some machine learning and AI startups like VocalIQ and Perceptio and facial recognition startup Emotient, among others. Apple has recently been making a push into artificial intelligence through Siri personal assistant and related technologies.\n\nhttp://www.fonstola.ru/pic/201111/2560x1440/fonstola.ru-49021.jpg", + "cashout_time": "1969-12-31T23:59:59", + "category": "apple", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-06T12:44:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 477502, + "json_metadata": "{\"tags\":[\"apple\",\"turi\",\"siri\",\"startup\"],\"image\":[\"http://static1.i4u.com/sites/default/files/imagecache/main_image_large/images/2016/08/tim-cook-appstore.jpg\"]}", + "last_payout": "2016-09-06T02:21:33", + "last_update": "2016-08-06T12:44:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "apple", + "percent_steem_dollars": 10000, + "permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "reward_weight": 3638, + "root_author": "a11at", + "root_permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", + "title": "APPLE BUYS MACHINE LEARNING STARTUP TURI TO MAKE SIRI BETTER", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-02T06:08:54", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Owner's review\n\nhttps://h-a.d-cd.net/905320as-960.jpg\n\n\u4e0d\u8981\u7d27, \u8fd9 \u662f \u4f60 \u7684 \u8f66 \u662f \u4ec0\u4e48, \u4e3b\u8981 \u7684 \u4e1c\u897f \u2014 \u5728 \u70e4\u67b6 \u4e0a \u7684 \u56db\u4e2a \u73af \u2026\n(\"no matter what you have a car, the main thing \u2014 it is four rings on the grill \u2026\" \u2014 Chinese proverb)\n\nhttps://b-a.d-cd.net/3dee672s-960.jpg\n\nAfter a spontaneous and quick sale A4 DTM choice naturally fell exclusively on the Audi, but rather on RSQ3 FL, which is characterized by an enviable installed power thanks to the legendary 2,5 TFSI 340 hp in combination with a rapid-S-tronic!\nNeedless to say that the acceleration is 4.2 seconds. up to 100 km. at one o'clock!\n(measurements of the journal -http: //www.autobild.de/artikel/a\u2026-45-amg-test-5702529.html)\n\nhttps://a-a.d-cd.net/2a96672s-960.jpg\n\nRivals have this \"baby\" is not so much, and all of them from a large class \u2026\n\nhttps://h-a.d-cd.net/8f6e672s-960.jpg\n\nAnd the choice has been reduced mainly to the 3rd automobiles:\n-SQ5 -otpal Due to the fact that the new model will be released soon, and the heavier and slower RSQ3;\n\n-RS3 -otpal Because of the small clearance, and especially do not want to wait;\n\n-RSQ3-PLUS was that the car's high, restyled and fast!\n\nhttps://f-a.d-cd.net/1fa1672s-960.jpg\n\nColor was not discussed-it must be very blue car -Sepang Blue!\nDiscs for the Rotor -The most RSQ3, and I like them most! Cool!\nAs to differences from dorestaylom then Restayl differs, in addition to external visual features, lower vehicle weight by 50 kg. and reprogram the engine, which now produces an impressive 340 hp!\nIn real life, the car looks much more beautiful and harmonious than the picture!\nThe car is perfectly controlled (for its use) and it is fine tailored inside: another from Audi, and do not wait \u2026\nThis Audi, is emotion, speed and drive! So, for what we love is true thoroughbred cars, to which undoubtedly belongs RS Series from quattro GmbH!\n\nhttps://h-a.d-cd.net/196e672s-960.jpg\n\nIf the test drive did not help much to understand how the car rulitsya, a little closer to meet him RS surprises with its responsiveness and quite understandable and predictable control!\n\nhttps://d-a.d-cd.net/ee61672s-960.jpg\n\nIt goes very cheerfully!\n\nWhat is very pleased, is the fact that after the \"stool\" A4 DTM on RSQ3 20 drives a smooth ride!\nThe car was in another city at the OD, a thousand kilometers. from the house, but because the expectation of a few days has been painfully slow.\nFor photos not scold -Made in haste night, anxious to put \u2026\n\nThen there will be photo shoot!\n\nFeatures and Specs\n\nEngine 2.5 gasoline (340 h.p.)\nRobotic\nall-wheel\nPurchased in 2015\nAudi RS Q3 in production since 2013", + "cashout_time": "1969-12-31T23:59:59", + "category": "audi", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-05T21:01:03", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 470354, + "json_metadata": "{\"tags\":[\"audi\",\"car\"],\"image\":[\"https://h-a.d-cd.net/905320as-960.jpg\"]}", + "last_payout": "2016-09-05T10:11:36", + "last_update": "2016-08-05T21:01:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "audi", + "percent_steem_dollars": 10000, + "permlink": "audi-rs-q3-fl", + "reward_weight": 1915, + "root_author": "a11at", + "root_permlink": "audi-rs-q3-fl", + "title": "Audi RS Q3 FL", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-06T21:50:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "Bitcoin, a Florida judge says, is not real money. Ironically, that could provide a boost to use of the crypto-currency which has remained in the shadows of the financial system.\n\nThe July 22 ruling by Miami-Dade Circuit Judge Teresa Pooler means that no specific license is needed to buy and sell bitcoins.\nThe judge dismissed a case against Michel Espinoza, who had faced money laundering and other criminal charges for attempting to sell $1,500 worth of bitcoins to an undercover agent who told the defendant he was going to use the virtual money to buy stolen credit card numbers.\nEspinoza's lawyer Rene Palomino said the judge acknowledged that it was not illegal to sell one's property and ruled that this did not constitute running an unauthorized financial service.\n\"He was selling his own personal bitcoins,\" Palomino said. \"This decision clears the way for you to do that in the state of the Florida without a money transmitting license.\"\nIn her ruling, Pooler said, \"this court is unwilling to punish a man for selling his property to another, when his actions fall under a statute that is so vaguely written that even legal professionals have difficulty finding a singular meaning.\"\n\nhttp://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\n\nShe added that \"this court is not an expert in economics,\" but that bitcoin \"has a long way to go before it is the equivalent of money.\"\nBitcoin, whose origins remain a mystery, is a virtual currency that is created from computer code and is not backed by any government. Advocates say this makes it an efficient alternative to traditional currencies because it is not subject to the whims of a state that may devalue its money to cut its debt, for example.\nBitcoins can be exchanged for goods and services, provided another party is willing to accept them, but until now they been used mostly for shady transactions or to buy illegal goods and services on the \"dark\" web.\nBitcoin was launched in 2009 as a bit of software written under the Japanese-sounding name Satoshi Nakamoto. This year Australian programmer Craig Wright claimed to be the author but failed to convince the broader bitcoin community.\nIn some areas of the United States bitcoin is accepted in stores, restaurants and online transactions, but it is illegal in some countries, notably France and China.\nIt is gaining ground in countries with high inflation such as Argentina and Venezuela.\nBut bitcoin values can be volatile. Over the past week its value slumped 20 percent in a day, then recouped most losses, after news that a Hong Kong bitcoin exchange had been hacked with some $65 million missing.\nImpact across US, world\nArthur Long, a lawyer specializing in the sector with the New York firm Gibson Dunn, said the July court ruling is a small victory for the virtual currency but that it's not clear if the interpretation will be the same in other US states or at the federal level.\n\"It may have an effect as some states are trying to use existing money transmitting statutes to regulate certain transactions in bitcoin,\" Long told AFP.\nCharles Evans, professor of finance at Barry University, said the ruling \"absolutely is going to provide some guidance in other courts\" and could potentially be used as a precedent in other countries to avoid the stigma associated with bitcoin use.\nBitcoins can store value and hedge against inflation, without being considered a monetary unit, according to Evans, who testified as an expert witness in the Florida trial.\n\"It can be used as an exchange,\" he said, and may be considered a commodity which can be used for bartering like fish or tobacco, for example.\nEvans noted that \"those who are not yet in the bitcoin community will be put on notice: as long as they organize their business in a particular way they can avoid the law.\"\nBut he added that \"people who are engaged in illegal activities will continue to do what they are going to do because they are criminals.\"", + "cashout_time": "1969-12-31T23:59:59", + "category": "bitcoin", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-06T21:50:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 483312, + "json_metadata": "{\"tags\":[\"bitcoin\",\"world\",\"country\",\"steemit\"],\"image\":[\"http://cdn.phys.org/newman/csz/news/800/2014/bitcoin.jpg\"]}", + "last_payout": "2016-09-06T09:52:18", + "last_update": "2016-08-06T21:50:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 5, + "parent_author": "", + "parent_permlink": "bitcoin", + "percent_steem_dollars": 10000, + "permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "reward_weight": 1937, + "root_author": "a11at", + "root_permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", + "title": "Bitcoin not money, judge rules in victory for backers", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_root.orig.json b/hivemind/tavern/database_api_patterns/list_comments_root.orig.json new file mode 100644 index 00000000..634d0939 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_root.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-07-10T12:39:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gtg", + "author_rewards": 1135218, + "beneficiaries": [], + "body": "I'm Gandalf.\nThat's not my real name, but even my mom saved my number as ***Gandalf*** in her phone contact list.\nThat counts, right?\nI'm an IT Wizard, system admin, happily married, owner of a cat.\nOwned by a cat.\n\n![Nyunya](https://grey.house/img/niunia.jpg)\n\n**Nyunya** *(The Cat)* wants to watch everything I do, that's just her way of lending a helping paw. I\u2019m not sure if she is so fascinated by what I do or she wants to make sure I do it right.\n\nWhy am I here? What is my motivation?\nNot much different from that guiding my cat:\nCuriosity and to be a witness (node?) of what is emerging here.\n\nMay the STEEM be with you!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-07-03T16:35:03", + "curator_payout_value": { + "amount": "16244", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 36906, + "json_metadata": "{\"tags\":[\"introduceyourself\",\"cats\"],\"image\":[\"https://grey.house/img/niunia.jpg\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-10T12:39:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "introduceyourself", + "percent_steem_dollars": 10000, + "permlink": "hello-world", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "Hello, World!", + "total_payout_value": { + "amount": "254288", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-03T17:51:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "trogdor", + "author_rewards": 0, + "beneficiaries": [], + "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-03T17:51:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 36961, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T17:51:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160703t175141501z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-03T22:45:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "amartinezque", + "author_rewards": 0, + "beneficiaries": [], + "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-03T22:45:27", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 37187, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T22:45:27", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160703t224527020z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-04T18:22:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "edu-lopov", + "author_rewards": 0, + "beneficiaries": [], + "body": "Welcome to Steemit Gandalf!", + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-04T18:22:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 38471, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-04T18:22:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160704t182251522z", + "reward_weight": 10000, + "root_author": "gtg", + "root_permlink": "hello-world", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-05T11:31:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vadimberkut8", + "author_rewards": 289, + "beneficiaries": [], + "body": "The Chernobyl was a catastrophic nuclear accident that occurred on 26 April 1986 at the Chernobyl Nuclear Power Plant in the city of Pripyat, that located in the Ukrainian Soviet Socialist Republic of the Soviet Union (USSR). An explosion and fire released large quantities of radioactive particles into the atmosphere, which spread over much of the western USSR and Europe.\n\n#### Somewhere in Prypiat... Radioactive waste storage.\n![](https://www.chernobyl-tour.com/uploads/photos/show/[2]_18_Oct_14/1001_rad_stor_p.jpg)\n\nIn Chernobyl live about 2,5-3 thousand employees of the Chernobyl Nuclear Power Plant.\n\nIn the city center is a stele dedicated to the tragedy, and immediately after it goes a long alley with tablets on which were written the names of villages were evacuated from the exclusion zone - more than one hundred thousand people.\n![](https://pp.vk.me/c623223/v623223264/28288/hWmrD88q4aU.jpg)\n\n#### Exhibition of equipment, which has been involved in the elimination of accident consequences.\n![](http://static36.cmtt.ru/paper-media/56/50/95/92416d07dc2c1b.jpg)\n\n#### Former kindergarten.\n![](http://static35.cmtt.ru/paper-media/68/37/0b/0c88a0c6291c8b.jpg)\n\nDo not put into words the emotions when the dosimeter begins beeping: you realize that something is wrong, but do not feel the threat, because it is invisible.\n![](http://static32.cmtt.ru/paper-media/85/d1/ab/14ca1a4510e4fe.jpg)\n\n#### Cooling tower - one of the most impressive objects\n![](https://pp.vk.me/c623223/v623223264/27e23/u5HHb3qRWC4.jpg)\n\n#### The radiation background is high enough\n![](http://static39.cmtt.ru/paper-media/2c/14/f8/a64255679c19c8.jpg)\n\n### Pripyat\n![](http://static37.cmtt.ru/paper-media/47/71/57/bb8cb4a3959226.jpg)\n\n![](https://pp.vk.me/c623223/v623223264/27fc1/gcUDCiOS8jU.jpg)\n\n![](https://pp.vk.me/c623223/v623223264/28012/lg3QJoVvT3c.jpg)\n\n![](http://static30.cmtt.ru/paper-media/02/ee/60/0ac975241e1382.jpg)\n\n![](http://static34.cmtt.ru/paper-media/63/10/b7/b93fa45f0fb84a.jpg)\n\nThis city is like a pressure on you, squeeze all the juice and energy.\n\nTours to Chernobyl and photos of excursions - https://www.chernobyl-tour.com/index.php", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-03T16:37:33", + "curator_payout_value": { + "amount": "14", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 36909, + "json_metadata": "{\"tags\":[\"photography\"],\"links\":[\"https://www.chernobyl-tour.com/uploads/photos/show/\"]}", + "last_payout": "2016-08-13T15:09:30", + "last_update": "2016-07-03T16:37:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 16, + "parent_author": "", + "parent_permlink": "photography", + "percent_steem_dollars": 10000, + "permlink": "excursion-to-the-exclusion-zone-chernobyl", + "reward_weight": 10000, + "root_author": "vadimberkut8", + "root_permlink": "excursion-to-the-exclusion-zone-chernobyl", + "title": "Excursion to the exclusion zone (Chernobyl)", + "total_payout_value": { + "amount": "64", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-05T11:31:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ori", + "author_rewards": 56, + "beneficiaries": [], + "body": "Upvoted you", + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-05T11:31:21", + "curator_payout_value": { + "amount": "33", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 460983, + "json_metadata": "{}", + "last_payout": "2016-08-13T15:09:30", + "last_update": "2016-08-05T11:31:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "vadimberkut8", + "parent_permlink": "excursion-to-the-exclusion-zone-chernobyl", + "percent_steem_dollars": 10000, + "permlink": "re-excursion-to-the-exclusion-zone-chernobyl", + "reward_weight": 10000, + "root_author": "vadimberkut8", + "root_permlink": "excursion-to-the-exclusion-zone-chernobyl", + "title": "", + "total_payout_value": { + "amount": "102", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-05T11:32:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "acidsun", + "author_rewards": 0, + "beneficiaries": [], + "body": "https://www.youtube.com/watch?v=ByoKOG3Y-bI", + "cashout_time": "1969-12-31T23:59:59", + "category": "video", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-03T17:03:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 36927, + "json_metadata": "{\"tags\":[\"video\"],\"links\":[\"https://www.youtube.com/watch?v=ByoKOG3Y-bI\"]}", + "last_payout": "2016-08-05T19:25:48", + "last_update": "2016-07-03T17:03:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 5, + "parent_author": "", + "parent_permlink": "video", + "percent_steem_dollars": 10000, + "permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "reward_weight": 10000, + "root_author": "acidsun", + "root_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "title": "WWE champion the Great Khali for Ambuja Cement", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-05T11:32:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ori", + "author_rewards": 0, + "beneficiaries": [], + "body": "Upvoted you", + "cashout_time": "1969-12-31T23:59:59", + "category": "video", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-05T11:32:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 460994, + "json_metadata": "{}", + "last_payout": "2016-08-05T19:25:48", + "last_update": "2016-08-05T11:32:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "acidsun", + "parent_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "percent_steem_dollars": 10000, + "permlink": "re-wwe-champion-the-great-khali-for-ambuja-cement", + "reward_weight": 10000, + "root_author": "acidsun", + "root_permlink": "wwe-champion-the-great-khali-for-ambuja-cement", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-05T11:33:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "bloggersclub", + "author_rewards": 764, + "beneficiaries": [], + "body": "It is with great pleasure I am introducing to you the world\u2019s first conglomerate where ecosystems are represented by digital tokens and their unique qualities each complementing one another, all of them with one common denominator \u2013 they are all powered by the blockchain. A transparent, open and trustless powerhouse of information governed by no one and everyone with each participant in control of their own account. It is a symbiosis of perfection, trust, speed and transparency. Welcome to the future. \n\nThe below whitepaper has been created to support and substantiate the values presented in real time usecases via the Danish company Crypto Coins Enterprise Denmark ApS (CCEDK) as the Brain of the decentralized conglomerate, OpenLedger as the Platform, and the ecosystems OBITS, BTSR and ICOO as the body so far of content core ecosystems supporting eachother with many more ecosystems to come. As examples I wish to name the www.BitLand.world Cadastral and the Sollywood TV Solcerts expected to be added in the near future once able to actively particpate in complemting eachother across the ecosystems.\n\n\"The Decentralized Conglomerate represents the new paradigm of organizational operations, by applying the theoretical construct of digital leadership to the conceptual design of the DC ecosystems\"\n\nYou can have more information about CCEDK on their website: https://www.ccedk.com\n\nYours sincerely\nRonny Boesing\nCEO\nCCEDK Aps\n\nThe Decentralized Conglomerate: Digital Leadership, Institutional Memory, and Semi-Autonomous Organizations\n\n\nPrepared by L. Christopher Bates in co operation with https://www.ccedk.com \nVersion 1.0\n\nContents\nA Brief History of Decentralization\t3\nThe Death of Keynesian theory: Proto-Dynamism is born\t8\nThe Power of Crowdfunding\t11\nMandate of Heaven Dilemna\t17\nReferences\t23\n\n\nA Brief History of Decentralization\n\n\nA leader is best when people barely know he exists, when his work is done, his aim fulfilled, they will say: we did it ourselves.\n~Lao Tzu~\n\nDecentralization as an approach to organizing human teams and capital is nearly as old as written history itself. By the very nature of \u201cdecentralization\u201d, it can only take place after \u201ccentralization\u201d has occurred. Going back 4,000 years to the earliest days in China when divine right was still part of determining leadership, one can find deliberate implementations of decentralization in the application of managing how people operate. The common marriage of religion and bureaucratic hierarchies established environments in which distributed authority or fully decentralized authority became common. In times when information could not be relayed with the speed of modern day communications, having a unified goal inherently became more difficult as an empire expanded. \n\nEven beyond the nuances added by having mercenaries and slaves as part of an empire\u2019s army, the speed of communication made large scale coordination extremely difficult over long distances. In historical examples, the larger an empire became, the rulers were forced to become either more despotic or more democratic. There was no stagnation in responsibility. As territories expanded, decisions inherently affected more populations. As populations became more diverse, it was inherently more difficult to find common ground in political agendas.\nTo understand the ebb and flow between centralization and decentralization, it is important to get a brief context of the emergence of dynasties in China. The current generally accepted date for the emergence of the first actual villages is placed around 5000 BCE. As the exact date cannot be determined, the approximate time frame gives a relative starting point to show the transition from scattered tribal communities to an actual empire that begins a line of dynasties to perpetually delineate power for a continuous historical record that continued into modern times.\nThe Xia Dynasty is accepted to be the first true empire that arose in China. As a marking point for the transition between the Stone Age and the Bronze Age, the major advances in development created the foundation for the long line of technological discoveries that were yet to come. One of the major accomplishments of the Xia Dynasty was the attempts to control the flooding of the Yellow River by Yu the Great. After Yu managed to get the Yellow River under control, he turned his attention to uniting the Sanmiao tribes. His feats and charisma allowed him to inspire people to follow him as a ruler, and his rule is not known to have been despotic in nature. He is credited with establishing the system of succession and in turn the very concept of a dynasty. In establishing a feudal system that articulated a ruling class and a working class, the innate power struggles of having an oppressed class would forever become a part of the changing political landscape.\n\nIn many ways, the early feudal states were examples of the beginnings of decentralization. As the first Dynasty united the tribes, one of the initial acts of necessity was dividing authority and defining roles. While the works on \u201cDivision of Labor\u201d did not come until much later in the West, the beginnings of dividing labor for the sake of efficient production and management of capital were flourishing in the first Dynasties. As the power gradually became more unified over the first thousand years of dynasties in China, what is known as the \u201cMandate of Heaven\u201d came to be the officially recognized union of Divine Right of Leadership and the role of making law. The inclusion of \u201cDivine Right\u201d meant that the government no longer held authority over choosing the leader in the presence of \u201cDivinity\u201d. This provision in the approach to passing down the rule allowed for many nefarious actors to manipulate their way into positions of leadership, but it did not hinder the overall development of the nation.\n\nAs the civilization grew and culture expanded, technology quickly accelerated, and many of the most famous philosophers and poets emerged from this period in Chinese history. It was at the end of the Zhou Dynasty that government became decentralized as the capitol city moved and a period of warring states began. The states were moving towards wanting sovereign rule for their individual states, but the rulers within the individual states wanted to claim the Mandate of Heaven. It was when Ying Zheng successfully defeated the other states and united them under his rule to proclaim himself the \u2018First Emperor\u2019 of China. One of his first acts as Emperor was to tear down the walls that separated the individual states, and start to build a wall surrounding all of the territories. While the wall does not remain intact today, the Great Wall of China is what remains of what was once a 3,000 mile long wall. As Ying - now known as Shi Huangti- conquered more lands, he became increasingly despotic with his rule. As the empire moved away from decentralization, the unified front allowed for major advancements to be made in building projects and military operations; but on the other hand the increased need to restrict information and free speech was a side effect of the increased authoritarian rule. It was not long after Shi Huangti\u2019s death that the empire collapsed due to mismanagement by unfit rulers appointed solely because of nepotism. Once again, the dissolution of a centralized authority caused the territorial control to decentralize and inherently cause more power struggles.\nAs the Chinese territories expanded, and the dynasties changed names, the ebb and flow between decentralization and centralization was a continuous evolution that formed a middle ground between extremes. Any time leadership drifted too far in one direction, whether towards complete decentralization or complete centralization, the natural equilibrium became a mix of leadership styles, rather than a complete implementation of one ideology. Even into modern government application, what is often misunderstood as completely \u201cStatist\u201d or \u201cCommunist\u201d actually has a complex mix of centralization and decentralization in the actual organization of government entities.\n\nTo get a better picture of why the centralized government must operate with some autonomy allowed within the economy, it is necessary to understand the organization of territories. There are three basic classifications of government oversight over a territory: province, county, and township. A further delineation of responsibilities separate prefectures under the jurisdiction of provinces, and villages are relegated to the authority of townships. There are twenty-two provinces, five autonomic regions, four municipalities, and two special administrative groups. China also has five autonomic regions that have equal status as provinces. The reasoning is that these autonomic regions are the homes of the majority of the country\u2019s minority groups In the West, these regions may be seen as annexed states that are \u201cunder the control\u201d of the Chinese government, when in reality they operate with relative autonomy. \n\nThe two special administrative regions are Hong Kong and Macao, which grant them special protections. These regions have their own currencies, passports, and judicial systems. While these separations, classifications, and nuances may be hard for a Westerner to initially grasp, the cultural approach to management and division of labor has been fairly consistent in China in its capacity to distribute power and authority seeking efficiency and a unified goal. In that regard, the problem of an individual looking to overthrow the leader and usurp the head of state role has also been a consistent problem for the duration of Chinese history. The \u201cByzantine General\u2019s Problem\u201d effectively originated 2500 years before the fall of the Byzantine empire. \n\nIn understanding the true nature of decentralization as a natural counterbalance to centralization, one must create a new paradigm that recognizes meritocracy as part of the process of establishing a leader or a system without a leader. In a true meritocracy, the presence of a leader is irrelevant to results. In this situation, we can establish the \u201cMandate of Heaven Dilemma\u201d. This new problem becomes an issue of recognizing that if meritocracy is to be recognized, that arbitrary timing of leader or policy changes do not truly serve meritocracy. In the MoHD, a leader can be replaced at any time with a \u201cbetter\u201d leader if either the new leader proves herself worthy, or the crowd and populace choose to recognize the new authority. In either scenario, the intentions of the new leader are irrelevant. In this MoHD, the meritocracy will establish a paradigm in which the leadership position goes to the most effective and efficient leader with no regards to morality or ethics. \n\nIn many ways, the embodiment of what is desired to be the ideal \u201cfree market\u201d would be the MoHD playing out on the macro and micro scale. If local leaders emerged based on merit, and were constantly at risk of being replaced by a \u201cbetter\u201d official, the evolution of the macro and micro systems would be accelerated. It is in understanding the benefits of centralization and decentralization in addition to the downfalls of both that a new paradigm can emerge to make more effective and efficient use of capital than has been previously known in human history. While Keynesian theory sprang forth in a post-industrialized world in an attempt to expound on new methods of scaling economies, it has become clear in modern times that those theories were formed heavily in favor of the oligarchies that existed in the 1800\u2019s and turn of the 20th century. Many post-Keynesian theories have been articulated, but mainstream academia continues to cling to Keynesian theory as the dominant approach to forming economies. \n\u2003\nThe Death of Keynesian theory: Proto-Dynamism is born \nAs we see the global markets in turmoil and the European Union on the verge of collapse while Britain postures to exit, it is clear that a new paradigm of capital distribution, production, and management must emerge. Keynesian theory has produced a global market bubble that has seemingly popped, as the news of Britain Leaving the EU wiped $127 billion off the global markets in a single day. In light of the MoHD that has been presented, a new paradigm that emerges and proves better use of capital can either be adopted because it has proven it is better, the populace chooses to recognize it, or in a direct confrontation with the old paradigm it emerges with more resources and capital. In many ways, the concerted media attack on digital currencies and Bitcoin have represented the old paradigm\u2019s first line of defense in attempting to preserve the legacy systems that currently control global capital distribution. \n\nIn presenting the MoHD, what is occurring in modern times is the merit of the old paradigm is being directly challenged. Whether one points at Bitcoin, Occupy Wall Street, the Green Movement in Iran, or the Gezi protests in Istanbul, the old paradigms that control the global markets are being challenged individually. In many ways, the Keynesian special interest groups have actively worked to compartmentalize the uprisings to ensure that the timing of individual revolts does not snowball into a global uprising against Keynesian theory. In an example, the media blacked out the Green movement in Iran, blacked out the Wisconsin protests that were the pre-cursor to Occupy Wall Street, and is currently blacking out the protests in France that are happening in June of 2016. The global mainstream media appears to actively compartmentalize these revolutions in individual contexts, rather than attempt to link them as a revolution against authoritarianism and the remnants of colonialism in modern times. \nWhile this article is not meant to speculate on conspiracy theories, what is meant to be presented is a post-Keynesian approach to capital distribution and management. Taking the thermo-economic approach to capital production and management, an organization must attempt to become a dynamo, which in physics is a machine that takes one source of energy and converts it to output energy to a receptor. The more efficient dynamos can surpass 100% efficiency and start to produce more energy than they take in, but these are theoretical dynamos based in quantum theory that are not yet attainable. \n \nIn the context of thermo-economics, creating a dynamo is an attempt to combine physical infrastructure, political management, and capital management into the most efficient economic machine possible. The machine only pays attention to efficiency, and pays no regard to the cogs; meaning that special interest groups have no meaning in the context of an economic dynamo. In this context, maintaining ethical standards and moral common ground becomes a function of the system; digital direct democracy.\n\nIf one looks at the Crypto Rush objectively, there have been more technological developments within the past six months than there were for the previous three years. This is perfectly in line with the technology associated with the gold rush, as the first miners were able to easily make money with pick-axes and panhandling, but as the gold became scarce, hydraulic drills and tech more advanced tech became necessary to mine the ore.\nJust the same with the influx of pyrite or \u201cfool\u2019s gold\u201d following the gold rush, the \u201cfool\u2019s alts\u201d have made an entire community jaded to the point of throwing out the word \u201cscam\u201d as if it were a common salutation. In the wild west of Cryptoland, the harsh realities of economic Darwinism coupled with the fantastic possibilities of thermo-economics have created a machine which I will call a \u201cproto-dynamo\u201d.\n\nIt is important to establish the \u201cProto-dynamo\u201d as concept that represents an entirely new paradigm of economic infrastructure. The concept alludes to the \u201cdynamo\u201d which is a machine that uses opposing magnetic forces to efficiently produce/convert energy. The principle behind the dynamo is to use opposing forces within the same machine to get a consolidated output of energy. If the new paradigm of \u201cprotodynamism\u201d can be represented by an electrical generator, the old paradigm of Keynesian theory can be represented by a meat grinder in which ten pounds of product goes in one side, and six ounces of tasteless sausage comes out the funnel possibly tainted with formaldehyde or some random pesticide that is unpronounceable.\n\nAs Marshall McLuhan predicted with his \u201cglobal village\u201d theory, the growth of mass media has quickly made information extremely accessible to the average individual. In tandem with an infrastructure that allows crowd-funding to bring ideas to fruition as fast as possible, progress of technology that is useful to society will be able to hit the most efficient point that has ever been recorded.\n\nThe Arab Spring has been an actual revolution fueled by technology and information sharing that would not have been possible without the ability to quickly share strings of 140 characters. With the ability to share information comes the ability to have shared experiences. What have been forecasted as digital tribes by Mcluhan are the logical extensions of a globe trying to break free of the archaic and imperialist paradigm of nation-states.\n \n\u2003\nThe Power of Crowdfunding\n\n One of the major benefits to having a Decentralized Conglomerate structure is the ability for capital to be accrued and used towards a given project. This means that organizations that are partnered into a DC have less friction between their organizations to slow down the movement of capital or take too much of the capital in the form of fees and overhead. In the context of multiple businesses working in complimentary industries, the capacity for organizations to pool money towards development has the potential to accelerate the speed at which all participants reach their desired outcomes. \n\nA traditional conglomerate is made up of a parent corporation with subsidiary companies. As well, there are shareholders that have a stake in the company. In some cases, there will be a board of directors in addition to the executive management. When it comes to leadership, the conglomerates are usually top-down hierarchies with the vision and direction coming from the leaders at the top. While the system is not democratic, a singular leader or group of leaders with the capacity to make executive decisions makes executing projects much simpler than having a completely decentralized operation. While there are varying degrees of oversight, generally the top-down structure is the standard for traditional conglomerates. \n \nSome levels of decentralization have taken place in larger corporations, as they have had to diversify to meet market demands. In these cases, the decentralization usually is implemented to give the subsidiary companies more autonomy, but in the context of the conglomerate, the parent company\u2019s vision is still the guiding principle. Many companies have seen success in increasing their output or market share when moving towards a more decentralized management system. In this regard, \u201cdecentralization\u201d will always imply that there was a higher level of centralization than previously. \n\nAs with the Chinese Dynasties, and in effect every other major empire or nation-state that has existed, the interplay between centralization and decentralization is a matter of the economic situation needing direct intervention or not; and further if economic intervention is ever needed, how many people must be involved in the decision making process. The more people are involved in a decision making process, by default the more time a decision takes. As well, when many people are affected by a decision, the smaller the number of people making the decision, the more likely a revolt against the outcome or the governing body will take place. It is in these extremes that the traditional conglomerate has major benefits from leadership, and major impediments if the leadership is either too slow or too draconian against the people\u2019s will.\n\nCrowdfunding is anticipated to surpass venture capital in total global investments into the Fintech industry in 2016. As crowdfunding levels reached over $34 billion in total funds raised in 2015, crowdfunding as an industry is emerging in its own right. As laws are changing to keep up with digital currencies and assets, the landscape for raising funds has been forever changed as raising funds with or without equity shares has become accessible to anyone with Internet access and capital. The reality of the quickly changing market demands necessitate an agile organization that can react to market forces rather than attempting to resist the market in pursuit of following the course of what had been planned with no room for adjustment.\n\nWith the advent of Decentralized Autonomous Organizations (DAOs), the entire process of turning an idea into a tangible item gets taken out of the hands of corporations, and the development becomes an intimate exchange between the crowd and the actual developers. When an idea is presented to the crowd, the ideas that the crowd deems fit get funded.\n\nKickstarter is one of the most well-known crowd funding sources for start-up projects; but as cryptocurrency takes off teams like Mastercoin, Swarm, and Counterparty have created systems that allow crowd-funding to take on the direct route cutting out the middle man. As these systems are improved upon to create \u201ctrustless\u201d infrastructures where there are safeguards to prevent exploitation within a trade, viable options to centralized banking are closer to reality.\n\nOpenLedger is attempting to harness the forces of crowdfunding and follow the trend of increased crowdfunding over VC, rather than try to fight the trend. OpenLedger has begun hosting crowd sales on its platform to enable businesses to raise funds for their organization, contribute to the growth of the OpenLedger DC, and add to the pool of capital for the DC. To give the platform a unified crowdfunding token, OpenLedger created ICOO, which stands for \u201cInitial Coin Offering OpenLedger\u201d.\n\nICOO was designed to be a token that represents the crowdfunding platform on OpenLedger. As the OpenLedger platform is robust and has many different elements, the crowdfunding aspect is another addition to establish a functional economic ecosystem. Instead of creating an ecosystem that only works for existing businesses and consumers, the OpenLedger platform will be useful to startups and existing businesses alike concerning raising capital through crowdfunding. \n \nICOO represents more than a crowdfunding portal. As there are many elements to executing a successful crowdfunding campaign, the OpenLedger/CCEDK team have laid out plans to organize advertising, generate literature and content, distribute content over social networks, and assist organizations with the transition to having a digital currency system. As well, OpenLedger will be providing tiered options to give organizations different levels of assistance with executing a crowd fund. \n\nThe BitTeaser advertising network is a major part of the OpenLedger ecosystem that will help crowdfunding projects get traction. Advertising is the biggest part of getting attention focused on a new project. The BitTeaser community executes paid placed advertisements on websites and affiliate websites, and in the context of crowdfunding, this service will be used for all projects using OpenLedger to fund their projects. \n\nIn tandem with the banner ads, the Obits community will contribute paid literature about a crowdfunded project through the 500 Blogger\u2019s Club. The club has been focused on paying writers to generate content, and a partnership with the OpenLedger platform through the DC has added the element of producing content into the ecosystem. The synergy between BitTeaser and Obits will create an environment in which an organization looking to use OpenLedger can get all of their needs met in one place. Establishing a central point for an all-encompassing solution will make it easier for businesses to transition to digital currency systems, and in the process OpenLedger will benefit from the DC growth. \n \n \u2003\nMandate of Heaven Dilemna\n\nThe MoHD is an issue of having a law, mandate, code, or agreed upon terms from which a \u201cworthy\u201d leader can usurp the current power structure. The fallout then becomes whether the population wants to recognize the mandate, and acknowledge that by taking over a power structure, the new leader proves herself worthy by default. If the population recognizes the MoH, the edicts and rules of the new leader become law. If the population does not recognize the MoH and decides to revolt against the new leader, the power struggle for leadership ignores the MoH and by proxy the new leader that emerges will ultimately have to give an explanation for ignoring the MoH, or in an attempt to reunify the territories, claim that the MoH was proven by the tertiary leader emerging. \n\nIn the context of blockchain technology, the recent failure of the DAO and the resulting identification of a problem with the code of Solidity has established a real world example of the MoHD. What was initially misdiagnosed as a \u201chack\u201d that drained the DAO fund of around $60 million USD, was later shown to be a poorly written contract on top of code that had a fundamentally flawed approach to its voting and capital distribution mechanisms. In attempting to solve the \u201cByzantine General\u2019s Problem\u201d, the coders and system architects were either unaware of the MoHD, or did not give it the proper diligence in researching how it could affect the digital structure. \n\nEffectively, the Ethereum coders created a Mandate of Heaven for their blockchain, meaning if a coder or arbiter could effectively make use of the code or terms, whatever actions they took would be legally binding and technically in line with the protocol. In the DAO \u201cattack\u201d, there was no \u201cattack\u201d; effectively an arbiter realized that there was a Mandate of Heaven written into the code and in tandem the DAO \u201csmart contract\u201d. In moving $60 million into a \u201cchild DAO\u201d following terms and conditions, the \u201cEmperor\u201d effectively took whatever she could and following the MoH to the letter, forcibly removed $60 million from the collective funds. \n\nThe resulting fallout has been a mixed combination of applications of theory. While the community has not had a unified voice, inevitably it has fallen on the shoulders of the Ethereum founders and architects to make the decisions necessary to attempt a resolution that will appease the community without compromising the integrity of the protocol. Effectively, the MoH is an agnostic principle that forces the leadership to be efficient with capital, beware of despotism causing revolutions, and painfully aware for the potential of his own removal. The last two aspects of the way the MoH affect leadership are seemingly contradictory, and may explain the common implosion of empires at the hands of draconian and brutal regimes that lose track of effective application of capital. \n\nAs well, the leaders that have emerged throughout history as having walked the balance between making effective use of capital and pleasing the needs of the population have seemingly understood the collective consciousness to the point of being able to unify the populations without having them lose their individual identities. In some cases, establishing a new collective identity was the answer to this dilemma, for example in the case of Mustafa Kemal Ataturk establishing the Turkish Republic after the collapse of the Ottoman Empire. \n\nWhile the emergence of the Turkish Republic did not happen immediately at the end of the empire, it was the unification of the Turkish population against the British in the Nationalist War of Independence, and the simultaneous internal power struggle of the secular republic against the religious regime that had dominated the region off and on since the 14th century that enabled a nuanced government to be established. In articulating \u201cKemalism\u201d, Mustafa Kemal effectively created a \u201cMandate of Heaven\u201d that ironically gave the military the concept to defend the population from any semblance of a religious monarchy at all costs. While the application of military intervention in a coup d\u2019\u00e9tat may seem completely contradictory to democracy, over the last 100 years the Turkish military has shown that after a coup has occurred, the re-establishment of democratic voting is only a matter of ending the violence associated with the coup. In effect, the less violent a coup, the less collateral damage and fallout necessary to clean up before founding a new democracy. \n\nWhile the current Turkish government has drifted back near a religious monarchy, the traditional military intervention was pre-emptively deconstructed as Recep Erdogan had jailed many commanders, generals, and officials that would have been the voices of revolt. As the military had become the arm of the MoH in Turkey, the newly emerging Sultanate is establishing a more nepotistic neo-Ottoman empire. While Erdogan seemingly has mastered the Byzantine General\u2019s problem by simply \u201cjailing all the generals\u201d, in dismantling the MoH he has effectively created a \u201cWild West\u201d scenario. While there is a semblance of a unified government during the times of the Wild West, the furthest and most rural reaches of what is supposed to have government oversight has no oversight because the government doesn\u2019t have the capacity to effectively monitor or secure the land. \n\nOne of the nuances of the Wild West is that the most powerful force dominates, and in that regard fairness and humanitarianism go out the window. There are no penalties for nepotism within government, and there are no real penalties for breaking laws in areas that the government can\u2019t reach. This is where the world of digital currency has its common traits with actual human history. As digital currency is essentially a digital wild west, having regulators enforce laws in areas that they are not familiar is not only difficult, it becomes questionable if the old laws even apply in the newly charted territories. \n\nAs governments struggle to understand digital currencies and their implications, the world of digital currency is \u201ctaxed\u201d but seemingly unprotected. The individuals who choose to participate in effect have to arm and protect themselves from attackers knowing that they will get no real assistance from the government that is taking taxes. In effect this wild west scenario breeds vigilantism and necessity for collective response to malicious actors. With the recent attack to the DAO, one of the counter-measures was to attack the original attacker; effectively this stayed inline with the MoH that was created within the Ethereum/Solidity/DAO protocol. \n\nA counter-attack against the DAO attacker #1 successfully secured $7 million in funds from the original $60 million. As the community scrambled to understand the implications of what had occurred, different approaches to solving the overarching problem were being attempted and theorized. One of the challenges facing the community was to decide whether to recognize the original MoH (soft fork and attack attacker #1), or destroy MoH and establish new rules (hard fork and have new genesis block). The Byzantine General\u2019s problem has already been failed by the coders of Ethereum and the founders of the DAO in this scenario. The real issue was whether to recognize the MoH or to let the empire crumble completely and free up the locked capital to re-enter into the free market. \n\nThe DAO crisis has not yet come to an end as of the writing of this paper, and updates will be made to reflect the long term outcomes of that scenario. It is impossible to predict the outcome of any set of variables, however it is a responsibility of those who control capital to make effective and efficient use of the capital. This requires being informed about the history of capital, and how politics, war, science, art, literature, education, humanitarianism and countless other variables affect capital. It is an imperfect science that by proxy the practitioners must continue to strive towards an unachievable perfection. If decentralization is to properly be applied in a global economy, the application must be not only informed, but agile and able to evolve. Reaching a state of stasis is contradictory to the natural imperative of evolution. In effect, survival is a matter of constantly evolving whether in the context of nature or in the context of commercial industries. \n\nInstitutional memory becomes an imperative when it comes to keeping a unified organizational evolution moving. An example of institutional memory would be \u201cCongress\u201d or the \u201cSupreme Court\u201d in the United States government. The idea was that instead of having agnostic principles that were to have authority over a specific set of rules or actions, democracy would be applied to congress to decide a group of elected officials that would attempt to balance the desires of the people against the knowledge of the institutional memory of congress. \n\nIn the case of the Supreme Court, the idea is that a group of officials that are appointed by an elected official to represent balanced views of the country will also retain the institutional memory necessary to make informed decisions about establishing new rules and laws. In this context, having institutional memory reduces the necessity of retreading debates and theoretically is an attempt to move debate forward with the knowledge of everything that has occurred previously. \n\nWhen DAO theory was emerging, the concept of Digital Leadership had not quite been articulated, and the theoretical foundation of the DAO was ultimately rooted in a MoH that created a leaderless system where organizations were to function based around goals and objectives that were agreed upon, rather than the decision of a specific individual or group. Many attempts at creating DAOs have been attempted, with the recent Slockit DAO being the largest on record. While the Slockit DAO was the largest, the success of the project is debatable depending on what metric of \u201csuccess\u201d is being discussed.\n\nBitshares token could be considered one of the more successful DAO projects that utilizes a combination of Proof of Stake security with colored coin protocol to allow organizations to receive the benefits of decentralized security, and the benefits of having a centralized currency and platform. The ability for colored coins to be easily converted within the UI for bitshares makes access to any asset listed on the market equal. The result is that organizations have incentive to create their own representative asset knowing that there is a centralized platform that makes exchange for other assets easy and cost effective. \n\nBeyond remittance payments, organizational control of capital becomes a new opportunity for capital to become more efficiently used in the context of the global economy. Removing the resistance for capital to flow means that it can go from the least needed to the most needed areas, and in the process generate new capital rather than stagnate against inflation. In the context of thermos-economics, resting capital can be seen as \u201cpotential energy\u201d, and capital that is being used is \u201ckinetic energy\u201d. If the global economic machine is to accelerate, it needs to convert the potential energy into kinetic energy as efficiently as possible. \n\nEfficiency with capital should be agnostic in the global economy. This is where a new paradigm of \u201cDecentralized Conglomerates\u201d apply thermos-economic theory in attempt to create an economic \u201cDynamo\u201d that makes most effective use of balancing potential and kinetic energy. If a \u201creserve fund\u201d is seen as a \u201cbattery\u201d that turns kinetic energy into potential energy for storage, then creating a dynamo that has the correct number of \u201cbatteries\u201d stored away to power the dynamo during phases in which the machine is not transforming any potential energy into kinetic becomes an agnostic principle that pays no regard to political party, religious affiliation, or special interest group. \nWhile this ideal state may seem unattainable, it is clear that attempting to achieve these goals will require a transitional period. During this transition, digital leadership must be employed to ensure that the capital does not go to waste. The DAO debacle shows the possibility that complete absence of Digital Leadership can result in a complete waste of potential energy with no resulting kinetic energy in the dynamo. It may be possible that a completely leaderless system is not desirable. Regardless, the DC makes an attempt at striking a balance between applying digital leadership and giving autonomy to special interest groups within the DC. The team at OpenLedger believes the Decentralized Conglomerate can be the economic engine that helps pilot the globe into the paradigm of the future. \n \nReferences\n\nDigital Leadership Definition - http://searchcio.techtarget.com/definition/digital-leadership?utm_medium=EM&asrc=EM_NLN_57771210&utm_campaign=20160524_Word%20of%20the%20Day:%20digital%20leadership_kherbert&utm_source=NLN&track=NL-1823&ad=907917&src=907917\n\nFuture of Crowdfunding in Belgium-\nhttps://bolero-crowdfunding.be/nl/news-events/news/financial-crowdfunding\n\nDigixDAO:\nhttp://allcoinsnews.com/2016/02/23/new-gold-linked-digital-token-platform-reveals-crowdsale-website-for-decentralized-organization\n\nConglomerate Definition:\nhttp://www.investopedia.com/terms/c/conglomerate.asp\n\nConglomerate Discount Problem:\nhttp://www.investopedia.com/terms/c/conglomeratediscount.asp\n\nAre Conglomerates Making a Comeback:\nhttp://www.omaha.com/money/are-conglomerates-making-a-comeback-berkshire-hathaway-s-business-model/article_a98b99a2-acca-5a89-9108-470d46a3fca8.html\n\nBlockchain startups make up 20% of largest crowdfunding projects\n\nhttp://venturebeat.com/2016/05/15/blockchain-startups-make-up-20-of-largest-crowdfunding-projects/\n\nThe DAO Way: Democratic Investment Fund:\n\nhttp://www.coinfox.info/news/reviews/5589-put-dao-demokraticheskij-investitsionnyj-fond-2\n\nThe DAO Block Explorer (The DAO is a decentralized autonomous organization established April 2016 that invests in other businesses. It is a digital organization with no conventional management structure or board of directors.):\n\nhttps://etherscan.io/token/TheDAO\n\nPillars of Digital Leadership:\n\nhttp://www.leadered.com/pdf/LeadingintheDigitalAge_11.14.pdf\n\nHow to be a Digital Leader:\n\n\nhttp://www.forbes.com/sites/iese/2013/08/23/how-to-be-a-digital-leader/#133b4ecd515d\n\nBank of Canada Deputy Governor: Cooperation Needed to Advance Distributed Ledgers:\n\nhttp://www.coindesk.com/bank-of-canada-distributed-ledger-tech/\n\nHistorical examples of Decentralization in Organizations/Empires:\n\nDecentralisation in the Ancient World:\nhttp://blog.richardsprague.com/2012/12/decentralization-in-ancient-world.html\n\nDecentralization: A one to many relationship. The Case of Greece:\n\nhttp://www.prd.uth.gr/sites/spatial_analysis/ekdoseis-dimosieyseis/mediterranean%20multiregionality%201997.pdf\n\nAncient Greece:\nhttp://www.shsu.edu/~his_ncp/Greece.html\n\nCentralization-Decentralization Cycle in China:\nhttp://www.vanderbilt.edu/econ/faculty/Wooders/APET/Pet2004/Papers/centralization%20decentralization%20cycle%20in%20china.pdf\n\nChina Between Centralization and Decentralization:\n\nhttp://gbtimes.com/world/china-between-centralization-and-decentralization\n\nNapoleon Bonaparte:\n\nhttps://en.wikipedia.org/wiki/Napoleon\n\nDecentralized Revolutions that have worked:\n\n -Berlin Wall http://www.nytimes.com/topic/subject/berlin-wall\n -French Revolution https://en.wikipedia.org/wiki/French_Revolution\n\n -Egyptian revolution http://www.thecairoreview.com/essays/egypts-leaderless-revolution/\n \n -Fall of the Soviet Union https://history.state.gov/milestones/1989-1992/collapse-soviet-union\n\n\n\nDecentralized Revolutions that failed:\n\nTypes of Democracy:\n\nhttps://en.wikipedia.org/wiki/Types_of_democracy\n\nBlockchain Company\u2019s Smart Contracts Were Dumb:\n\nhttp://www.bloomberg.com/view/articles/2016-06-17/blockchain-company-s-smart-contracts-were-dumb\n\nThe DAO is Closing Down:\n\nhttp://www.coindesk.com/the-dao-is-closing-down/\n\nA Hacking of More than $50 Million Dashes Hopes in the World of Cryptocurrency: http://www.nytimes.com/2016/06/18/business/dealbook/hacker-may-have-removed-more-than-50-million-from-experimental-cybercurrency-project.html\n\nDAO Attacker Says 3M Ether Loss is Legal:\nhttp://www.livebitcoinnews.com/dao-attacker-says-3m-ether-loss-is-legal/\n\nOpen Letter to DAO and the Ethereum Community:\n\nhttps://steemit.com/ethereum/@chris4210/an-open-letter-to-the-dao-and-the-ethereum-community\n\nMt Gox-style Collapse of DAO: Ethereum Platform Is a Failed Experiment, Says Blockchain Expert:\nhttp://cointelegraph.com/news/mt-gox-style-collapse-of-dao-ethereum-platform-is-a-failed-experiment-says-blockchain-expert\n\nThe DAO: An Analysis of the Fallout:\n\nhttp://www.coindesk.com/the-dao-an-analysis-of-the-fallout/\n\nProposal: Safety through Standardized Wallets:\n\nhttps://medium.com/@Alex_Amsel/proposal-standard-wallets-for-d-a-os-a89a4cdcb4a6#.td2rpaivk\n\nThe DAO Byzantine Debate:\n\n\nhttps://steemit.com/dao/@joseph/the-dao-byzantine-debate\n\nCrisis Thinking, DAOs, and Democracy:\n\nhttps://medium.com/@Swarm/crisis-thinking-daos-and-democracy-a134b8c721a0#.dlvvv3tgc\n\nExclusive Full Interview Transcript With Alleged DAO \u201cAttacker\u201d:\n\nhttps://www.cryptocoinsnews.com/exclusive-full-interview-transcript-alleged-dao-attacker/\n\nSimple Contracts are Better Contracts: What We Can Learn From The DAO:\n\nhttps://blog.blockstack.org/simple-contracts-are-better-contracts-what-we-can-learn-from-the-dao-6293214bad3a#.xyiaycgba\n\nCrowdfunding set to Surpass VC in 2016:\n\nhttp://www.forbes.com/sites/chancebarnett/2015/06/09/trends-show-crowdfunding-to-surpass-vc-in-2016/", + "cashout_time": "1969-12-31T23:59:59", + "category": "ecosystem", + "children": 4, + "children_abs_rshares": 0, + "created": "2016-07-03T17:04:57", + "curator_payout_value": { + "amount": "41", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 36931, + "json_metadata": "{\"tags\":[\"ecosystem\",\"conglomerate\",\"fintech\",\"bloggers\",\"whitepaper\",\"decentralized\",\"forbes\",\"coindesk\",\"ccedk\",\"cryptocurrency\",\"openledger\",\"blockchain\",\"obits\",\"club\",\"digital\",\"token\"],\"links\":[\"https://www.ccedk.com\"]}", + "last_payout": "2016-08-05T22:01:00", + "last_update": "2016-07-03T17:04:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 12, + "parent_author": "", + "parent_permlink": "ecosystem", + "percent_steem_dollars": 10000, + "permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "reward_weight": 10000, + "root_author": "bloggersclub", + "root_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "title": "The Decentralized Conglomerate: Digital Leadership, Institutional Memory, and Semi-Autonomous Organizations", + "total_payout_value": { + "amount": "170", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-03T17:55:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vato", + "author_rewards": 0, + "beneficiaries": [], + "body": "If you want more people to read your texts you should invest some time in formatting your texts and put some images in place, even if it is some kind of whitepaper.", + "cashout_time": "1969-12-31T23:59:59", + "category": "ecosystem", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-03T17:55:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 36962, + "json_metadata": "{\"tags\":[\"ecosystem\"]}", + "last_payout": "2016-08-05T22:01:00", + "last_update": "2016-07-03T17:55:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "bloggersclub", + "parent_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "percent_steem_dollars": 10000, + "permlink": "re-bloggersclub-the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations-20160703t175516580z", + "reward_weight": 10000, + "root_author": "bloggersclub", + "root_permlink": "the-decentralized-conglomerate-digital-leadership-institutional-memory-and-semi-autonomous-organizations", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_all_values.orig.json b/hivemind/tavern/database_api_patterns/list_comments_root_all_values.orig.json new file mode 100644 index 00000000..30caf2ea --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_root_all_values.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vi1son", + "author_rewards": 18, + "beneficiaries": [], + "body": "Congratulations to the winners. We are waiting for the new competition.", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-28T17:29:57", + "curator_payout_value": { + "amount": "3", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780100, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:29:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "16", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "We will announce next weeks theme soon, hope to see you there!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:50:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780336, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:50:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "vi1son", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "percent_steem_dollars": 10000, + "permlink": "re-vi1son-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t175015557z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "knozaki2015", + "author_rewards": 0, + "beneficiaries": [], + "body": "24 seconds from now\tTransfer 25.000 SBD to foxxycat\tCongrats 4th place Steemit Food Challenge #3 (sponsor @knozaki2015)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T18:11:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780560, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:11:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T18:12:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780584, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:12:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "percent_steem_dollars": 10000, + "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:26:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "oumar", + "author_rewards": 0, + "beneficiaries": [], + "body": "Uuh, I didn't have enough time to participate :( and I do make some really delicious desserts.", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T18:21:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780673, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:21:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:26:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yeah we missed your post! But no worry, there will be a new challenge very soon :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T18:26:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780727, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:26:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "oumar", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "percent_steem_dollars": 10000, + "permlink": "re-oumar-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182639249z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:25:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "papa-pepper", + "author_rewards": 0, + "beneficiaries": [], + "body": "Excellent Job everyone who entered!\n# Great job picking the winners too! I couldn't agree more!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T19:02:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 781174, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:02:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:25:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yes I'm moved by all effort, you Steemit Food Challengers are the best! \nThanks, it's always a hard choice to make! :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T19:25:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 781462, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:25:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "papa-pepper", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "percent_steem_dollars": 10000, + "permlink": "re-papa-pepper-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t192523201z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:44:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "the-future", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congratulations to all!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T19:44:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 781704, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:44:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t194439865z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T21:44:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "crypt0mine", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you very much! =)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T21:32:54", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 782837, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T21:32:54", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t213253576z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json index 8c3e8ebe..953e048b 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json @@ -1,7 +1,7 @@ { "comments": [ { - "abs_rshares": 0, + "abs_rshares": 46948242150, "active": "2016-08-29T13:45:42", "allow_curation_rewards": true, "allow_replies": true, @@ -10,7 +10,7 @@ "author_rewards": 18, "beneficiaries": [], "body": "Congratulations to the winners. We are waiting for the new competition.", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T17:29:57", "category": "foodchallenge", "children": 2, "children_abs_rshares": 0, @@ -31,7 +31,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 46948242150, "net_votes": 3, "parent_author": "givemeyoursteem", "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", @@ -46,8 +46,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 213998834635823260, + "vote_rshares": 46948242150 }, { "abs_rshares": 0, @@ -59,7 +59,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "We will announce next weeks theme soon, hope to see you there!", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T17:50:15", "category": "foodchallenge", "children": 1, "children_abs_rshares": 0, @@ -72,7 +72,7 @@ "depth": 2, "id": 1029853, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T17:50:15", "max_accepted_payout": { "amount": "1000000000", @@ -99,7 +99,7 @@ "vote_rshares": 0 }, { - "abs_rshares": 0, + "abs_rshares": 7520862006, "active": "2016-08-28T18:12:39", "allow_curation_rewards": true, "allow_replies": true, @@ -108,7 +108,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "24 seconds from now\tTransfer 25.000 SBD to foxxycat\tCongrats 4th place Steemit Food Challenge #3 (sponsor @knozaki2015)", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T18:11:06", "category": "foodchallenge", "children": 1, "children_abs_rshares": 0, @@ -121,7 +121,7 @@ "depth": 1, "id": 1030133, "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T18:11:06", "max_accepted_payout": { "amount": "1000000000", @@ -129,7 +129,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 7520862006, "net_votes": 2, "parent_author": "givemeyoursteem", "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", @@ -144,8 +144,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 34618763423959467, + "vote_rshares": 7520862006 }, { "abs_rshares": 0, @@ -157,7 +157,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T18:12:39", "category": "foodchallenge", "children": 0, "children_abs_rshares": 0, @@ -170,7 +170,7 @@ "depth": 2, "id": 1030162, "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T18:12:39", "max_accepted_payout": { "amount": "1000000000", @@ -197,7 +197,7 @@ "vote_rshares": 0 }, { - "abs_rshares": 0, + "abs_rshares": 7470836016, "active": "2016-08-28T18:26:39", "allow_curation_rewards": true, "allow_replies": true, @@ -206,7 +206,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Uuh, I didn't have enough time to participate :( and I do make some really delicious desserts.", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T18:21:39", "category": "foodchallenge", "children": 1, "children_abs_rshares": 0, @@ -219,7 +219,7 @@ "depth": 1, "id": 1030265, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T18:21:39", "max_accepted_payout": { "amount": "1000000000", @@ -227,7 +227,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 7470836016, "net_votes": 1, "parent_author": "givemeyoursteem", "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", @@ -242,8 +242,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 34388921502622671, + "vote_rshares": 7470836016 }, { "abs_rshares": 0, @@ -255,7 +255,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Yeah we missed your post! But no worry, there will be a new challenge very soon :)", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T18:26:39", "category": "foodchallenge", "children": 0, "children_abs_rshares": 0, @@ -268,7 +268,7 @@ "depth": 2, "id": 1030333, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T18:26:39", "max_accepted_payout": { "amount": "1000000000", @@ -295,7 +295,7 @@ "vote_rshares": 0 }, { - "abs_rshares": 0, + "abs_rshares": 7698389677, "active": "2016-08-28T19:25:24", "allow_curation_rewards": true, "allow_replies": true, @@ -304,7 +304,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Excellent Job everyone who entered!\n# Great job picking the winners too! I couldn't agree more!", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T19:02:12", "category": "foodchallenge", "children": 1, "children_abs_rshares": 0, @@ -317,7 +317,7 @@ "depth": 1, "id": 1030904, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T19:02:12", "max_accepted_payout": { "amount": "1000000000", @@ -325,7 +325,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 7698389677, "net_votes": 2, "parent_author": "givemeyoursteem", "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", @@ -340,8 +340,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 35434359161631381, + "vote_rshares": 7698389677 }, { "abs_rshares": 0, @@ -353,7 +353,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Yes I'm moved by all effort, you Steemit Food Challengers are the best! \nThanks, it's always a hard choice to make! :)", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T19:25:24", "category": "foodchallenge", "children": 0, "children_abs_rshares": 0, @@ -366,7 +366,7 @@ "depth": 2, "id": 1031268, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T19:25:24", "max_accepted_payout": { "amount": "1000000000", @@ -393,7 +393,7 @@ "vote_rshares": 0 }, { - "abs_rshares": 0, + "abs_rshares": 6791682394, "active": "2016-08-28T19:44:48", "allow_curation_rewards": true, "allow_replies": true, @@ -402,7 +402,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Congratulations to all!", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T19:44:48", "category": "foodchallenge", "children": 0, "children_abs_rshares": 0, @@ -415,7 +415,7 @@ "depth": 1, "id": 1031585, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T19:44:48", "max_accepted_payout": { "amount": "1000000000", @@ -423,7 +423,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 6791682394, "net_votes": 1, "parent_author": "givemeyoursteem", "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", @@ -438,11 +438,11 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 31268016129348998, + "vote_rshares": 6791682394 }, { - "abs_rshares": 0, + "abs_rshares": 6621890334, "active": "2016-08-28T21:44:12", "allow_curation_rewards": true, "allow_replies": true, @@ -451,7 +451,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Thank you very much! =)", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T21:32:54", "category": "foodchallenge", "children": 1, "children_abs_rshares": 0, @@ -464,7 +464,7 @@ "depth": 1, "id": 1032999, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T21:32:54", "max_accepted_payout": { "amount": "1000000000", @@ -472,7 +472,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 6621890334, "net_votes": 1, "parent_author": "givemeyoursteem", "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", @@ -487,8 +487,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 30487607670232691, + "vote_rshares": 6621890334 } ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_no_data.orig.json b/hivemind/tavern/database_api_patterns/list_comments_root_no_data.orig.json new file mode 100644 index 00000000..60196d50 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_root_no_data.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-24T09:30:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steemit", + "author_rewards": 3548, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "children_abs_rshares": 0, + "created": "2016-03-30T18:30:18", + "curator_payout_value": { + "amount": "756", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 0, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 90, + "parent_author": "", + "parent_permlink": "meta", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Welcome to Steem!", + "total_payout_value": { + "amount": "942", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-18T19:53:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "admin", + "author_rewards": 0, + "beneficiaries": [], + "body": "First Reply! Let's get this **party** started", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-03-30T19:52:30", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T19:52:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": -226592300084, + "net_votes": 8, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-03-31T13:54:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "proskynneo", + "author_rewards": 4817, + "beneficiaries": [], + "body": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-03-31T13:54:33", + "curator_payout_value": { + "amount": "1059", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 2, + "json_metadata": "", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-31T13:54:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_steem_dollars": 10000, + "permlink": "steemit-firstpost-1", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Excited!", + "total_payout_value": { + "amount": "1058", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T08:38:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "red", + "author_rewards": 457, + "beneficiaries": [], + "body": "Did you know you can earn STEEM by commenting on posts?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-04-06T19:22:42", + "curator_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 3, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-04-06T19:22:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 7, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_steem_dollars": 10000, + "permlink": "steemit-firstpost-2", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Did you Know?", + "total_payout_value": { + "amount": "100", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-04-13T03:48:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "steem-id", + "author_rewards": 0, + "beneficiaries": [], + "body": "Can I get some :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-04-13T03:48:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 100, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-04-13T03:48:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "red", + "parent_permlink": "steemit-firstpost-2", + "percent_steem_dollars": 10000, + "permlink": "re-red-steemit-firstpost-2", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "Nice", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T08:29:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "business", + "author_rewards": 56, + "beneficiaries": [], + "body": "Welcome to steemit, @steemit.", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-13T08:29:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 66968, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-13T08:29:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 8, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160713t082910980z", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "36", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T08:38:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "business", + "author_rewards": 0, + "beneficiaries": [], + "body": "No way?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-13T08:38:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 67008, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-13T08:38:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "red", + "parent_permlink": "steemit-firstpost-2", + "percent_steem_dollars": 10000, + "permlink": "re-red-steemit-firstpost-2-20160713t083846149z", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-17T19:38:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "kingtylervvs", + "author_rewards": 0, + "beneficiaries": [], + "body": "PARTY PARTY.... P - A - R - T - Y????? BECAUSE I GOTTA!", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-17T19:38:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 110487, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-17T19:38:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "admin", + "parent_permlink": "firstpost", + "percent_steem_dollars": 10000, + "permlink": "re-admin-firstpost-20160717t193811098z", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-18T19:53:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gopher", + "author_rewards": 0, + "beneficiaries": [], + "body": "Are you admin in steem? If you have been hacked, who can help you?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-07-18T19:53:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 125759, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-18T19:53:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "admin", + "parent_permlink": "firstpost", + "percent_steem_dollars": 10000, + "permlink": "re-admin-firstpost-20160718t195306992z", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-20T18:36:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "gopher", + "author_rewards": 0, + "beneficiaries": [], + "body": "http://steem.com/@bittrex/transfers how this user can have these tranfers without any activity?", + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-18T19:58:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 125823, + "json_metadata": "{\"tags\":[\"meta\"],\"links\":[\"http://steem.com/@bittrex/transfers\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-18T19:58:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160718t195806340z", + "reward_weight": 10000, + "root_author": "steemit", + "root_permlink": "firstpost", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_required_values.orig.json b/hivemind/tavern/database_api_patterns/list_comments_root_required_values.orig.json new file mode 100644 index 00000000..5eb2dcdc --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_root_required_values.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-28T17:29:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "valeriawise", + "author_rewards": 0, + "beneficiaries": [], + "body": "The theme of the day - global lack of understanding of each other.\nWhy?\nThose who do not understand - are different.\nThe goal - to teach this \"different\" to understand everyone.\nHow?\nSection Hi-Tech technology infinity reality\nFuture technologies\n\nImagine, it is a compact and portable device, which is called the \"translator\".\nBut this device is not a thing about what you are thinking now, this device translates not only the words that a person can say, but also thoughts, desires, motivations, and your understanding of things on the level of understanding another person.\nThis translator helps others understand someone who says.\nPrinciple of operation - you turn on the device, and no matter what you said to someone with this device in your hand, the man begins to understand and do what heard.\nBut there is one \"but\" - no matter what you say, person will want to do and do only good and sincere desires straight from the heart, and the evil and coarseness desires it wont translate and person remains unheard and misunderstood.\nThis translator is equipped with a built-in filter, so if someone would like to use it to harm, he can not do this, as translator will also bring evil thoughts into the opposite - good things. Only imagine how quickly our world will convert into a unity of understanding each other people and no one will not feel alone in this world.\nto be continued...", + "cashout_time": "2016-09-28T17:44:48", + "category": "future", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:29:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 780101, + "json_metadata": "{\"tags\":[\"future\",\"technology\",\"unity\",\"sincere\",\"world\"]}", + "last_payout": "2016-08-29T17:44:48", + "last_update": "2016-08-28T17:29:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "future", + "percent_steem_dollars": 10000, + "permlink": "global-lack-of-understanding-of-each-other", + "reward_weight": 10000, + "root_author": "valeriawise", + "root_permlink": "global-lack-of-understanding-of-each-other", + "title": "Global lack of understanding of each other", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 128179768, + "active": "2016-08-31T09:15:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anca3drandom", + "author_rewards": 1969, + "beneficiaries": [], + "body": "\n

Today I experimented with color changing filament (PLA); it changes its color to blue at low temperatures.

\n

 The idea was to make some pendants using only white color PLA filament. I had two ideas on how I could incorporate some colors.

\n

First was to add pieces of drawing pastel between to pieces of whatever I made with the 3D pen. I made a square, a triangle and a heart shape.

\n

https://httpsimage.com/img/DSC04680small.jpg

\n

Notice the lines in the square.Those will unite after placing them in the oven

\n

https://httpsimage.com/img/DSC04682small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04686small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04692small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04694small.jpg

\n

 After I cut pieces of pastel and placed them on top of the square, triangle and heart I covered them with their twin piece and placed them in the oven for about 10 minutes. The heat helps smooth the surface and join each two identical pieces.

\n

Now I just have to figure out how to make a small in each of them to add them to a chain.

\n

https://httpsimage.com/img/DSC04701small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04714small.jpg

\n

Watch the video to see how they changed color after I put them in ice cold water. 

\n


\n

https://www.youtube.com/watch?v=ig-wrxYPUzc

\n


\n

The second thing that I have tried was adding drawing ink to the 3d pen objects. I added ink on top of the objects. My theory was that the ink will infiltrate the shapes, but this didn't happen. The only thing that worked was to add the ink between two identical objects and place them in the oven to join them.

\n

I think that the ones with the pastel turned out better.What do you think?

\n

 

\n

https://httpsimage.com/img/DSC04658small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04661small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04668small.jpg

\n

 

\n

https://httpsimage.com/img/IMG_20160828_190533small.jpg

\n

#3dpen 

\n

Check out my linocuts  or my pyrography art 

\n

https://httpsimage.com/img/DSC04402small2.jpg

\n

@anca3drandom

\n", + "cashout_time": "2016-09-28T20:31:48", + "category": "art", + "children": 24, + "children_abs_rshares": "18465724919", + "created": "2016-08-28T17:30:30", + "curator_payout_value": { + "amount": "363", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 780108, + "json_metadata": "{\"tags\":[\"art\",\"steemart\",\"originalcontent\",\"3dpen\"],\"users\":[\"anca3drandom\"],\"image\":[\"https://httpsimage.com/img/DSC04680small.jpg\",\"https://httpsimage.com/img/DSC04682small.jpg\",\"https://httpsimage.com/img/DSC04686small.jpg\",\"https://httpsimage.com/img/DSC04692small.jpg\",\"https://httpsimage.com/img/DSC04694small.jpg\",\"https://httpsimage.com/img/DSC04701small.jpg\",\"https://httpsimage.com/img/DSC04714small.jpg\",\"https://httpsimage.com/img/DSC04658small.jpg\",\"https://httpsimage.com/img/DSC04661small.jpg\",\"https://httpsimage.com/img/DSC04668small.jpg\",\"https://httpsimage.com/img/IMG_20160828_190533small.jpg\",\"https://httpsimage.com/img/DSC04402small2.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=ig-wrxYPUzc\",\"https://steemit.com/art/@anca3drandom/how-to-make-linocut-prints-leafy-seadragon-photos-video\",\"https://steemit.com/art/@anca3drandom/how-i-made-decorative-mini-kitchen-blackboard-pyrography-art-watercolors\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:30:30", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-12T23:16:12", + "net_rshares": 128179768, + "net_votes": 60, + "parent_author": "", + "parent_permlink": "art", + "percent_steem_dollars": 10000, + "permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "3D Pen Art - Combining Color changing filament with Drawing Pastels - Making Pendants", + "total_payout_value": { + "amount": "1929", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 128179768 + }, + { + "abs_rshares": "18283233276", + "active": "2016-08-28T17:47:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "nil1511", + "author_rewards": 0, + "beneficiaries": [], + "body": "cool. Is that uniform in thickness?", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-28T17:36:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780169, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:36:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": "18283233276", + "net_votes": 1, + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "percent_steem_dollars": 10000, + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173639420z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": "18283233276" + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:47:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anca3drandom", + "author_rewards": 0, + "beneficiaries": [], + "body": "They are hand-made so they are uniform as much as it was allowed.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-28T17:39:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780203, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:39:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "nil1511", + "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173639420z", + "percent_steem_dollars": 10000, + "permlink": "re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173933042z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:49:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "the-future", + "author_rewards": 0, + "beneficiaries": [], + "body": "This is very cool. I like how the colours are changing! Great work", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-28T17:40:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780214, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:40:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "percent_steem_dollars": 10000, + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174002633z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:45:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "marquismiller", + "author_rewards": 0, + "beneficiaries": [], + "body": "Nice job. Haven't seen this type of art style before.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:42:18", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780242, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:42:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "percent_steem_dollars": 10000, + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174219184z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:46:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "thecryptofiend", + "author_rewards": 0, + "beneficiaries": [], + "body": "Very nice. I love the darker blue shade.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:42:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780250, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:42:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "anca3drandom", + "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "percent_steem_dollars": 10000, + "permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174256563z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:49:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anca3drandom", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you! That is a cool feature.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:44:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780265, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:44:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "the-future", + "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174002633z", + "percent_steem_dollars": 10000, + "permlink": "re-the-future-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174358335z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:47:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "nil1511", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you for sharing.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:44:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 3, + "id": 780274, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:44:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "anca3drandom", + "parent_permlink": "re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t173933042z", + "percent_steem_dollars": 10000, + "permlink": "re-anca3drandom-re-nil1511-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174439183z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T17:45:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "anca3drandom", + "author_rewards": 0, + "beneficiaries": [], + "body": "3D pen art has been around for a few years. However combining pastels with 3d pen was my idea.Haven't seen it before.", + "cashout_time": "1969-12-31T23:59:59", + "category": "art", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T17:45:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780281, + "json_metadata": "{\"tags\":[\"art\"]}", + "last_payout": "2016-08-29T20:31:48", + "last_update": "2016-08-28T17:45:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "marquismiller", + "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174219184z", + "percent_steem_dollars": 10000, + "permlink": "re-marquismiller-re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174506597z", + "reward_weight": 10000, + "root_author": "anca3drandom", + "root_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json index b4f1e9ac..147cec91 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json @@ -1,7 +1,7 @@ { "comments": [ { - "abs_rshares": 0, + "abs_rshares": 100968021, "active": "2016-08-28T17:29:57", "allow_curation_rewards": true, "allow_replies": true, @@ -10,7 +10,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "The theme of the day - global lack of understanding of each other.\nWhy?\nThose who do not understand - are different.\nThe goal - to teach this \"different\" to understand everyone.\nHow?\nSection Hi-Tech technology infinity reality\nFuture technologies\n\nImagine, it is a compact and portable device, which is called the \"translator\".\nBut this device is not a thing about what you are thinking now, this device translates not only the words that a person can say, but also thoughts, desires, motivations, and your understanding of things on the level of understanding another person.\nThis translator helps others understand someone who says.\nPrinciple of operation - you turn on the device, and no matter what you said to someone with this device in your hand, the man begins to understand and do what heard.\nBut there is one \"but\" - no matter what you say, person will want to do and do only good and sincere desires straight from the heart, and the evil and coarseness desires it wont translate and person remains unheard and misunderstood.\nThis translator is equipped with a built-in filter, so if someone would like to use it to harm, he can not do this, as translator will also bring evil thoughts into the opposite - good things. Only imagine how quickly our world will convert into a unity of understanding each other people and no one will not feel alone in this world.\nto be continued...", - "cashout_time": "2016-09-28T17:44:48", + "cashout_time": "2016-09-04T17:29:57", "category": "future", "children": 0, "children_abs_rshares": 0, @@ -23,7 +23,7 @@ "depth": 0, "id": 1029562, "json_metadata": "{\"tags\":[\"future\",\"technology\",\"unity\",\"sincere\",\"world\"]}", - "last_payout": "2016-08-29T17:44:48", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T17:29:57", "max_accepted_payout": { "amount": "1000000000", @@ -31,7 +31,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 100968021, "net_votes": 2, "parent_author": "", "parent_permlink": "future", @@ -46,11 +46,11 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 465621057544803, + "vote_rshares": 100968021 }, { - "abs_rshares": 128179768, + "abs_rshares": 2912081554615, "active": "2016-08-31T09:15:15", "allow_curation_rewards": true, "allow_replies": true, @@ -59,7 +59,7 @@ "author_rewards": 1969, "beneficiaries": [], "body": "\n

Today I experimented with color changing filament (PLA); it changes its color to blue at low temperatures.

\n

 The idea was to make some pendants using only white color PLA filament. I had two ideas on how I could incorporate some colors.

\n

First was to add pieces of drawing pastel between to pieces of whatever I made with the 3D pen. I made a square, a triangle and a heart shape.

\n

https://httpsimage.com/img/DSC04680small.jpg

\n

Notice the lines in the square.Those will unite after placing them in the oven

\n

https://httpsimage.com/img/DSC04682small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04686small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04692small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04694small.jpg

\n

 After I cut pieces of pastel and placed them on top of the square, triangle and heart I covered them with their twin piece and placed them in the oven for about 10 minutes. The heat helps smooth the surface and join each two identical pieces.

\n

Now I just have to figure out how to make a small in each of them to add them to a chain.

\n

https://httpsimage.com/img/DSC04701small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04714small.jpg

\n

Watch the video to see how they changed color after I put them in ice cold water. 

\n


\n

https://www.youtube.com/watch?v=ig-wrxYPUzc

\n


\n

The second thing that I have tried was adding drawing ink to the 3d pen objects. I added ink on top of the objects. My theory was that the ink will infiltrate the shapes, but this didn't happen. The only thing that worked was to add the ink between two identical objects and place them in the oven to join them.

\n

I think that the ones with the pastel turned out better.What do you think?

\n

 

\n

https://httpsimage.com/img/DSC04658small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04661small.jpg

\n

 

\n

https://httpsimage.com/img/DSC04668small.jpg

\n

 

\n

https://httpsimage.com/img/IMG_20160828_190533small.jpg

\n

#3dpen 

\n

Check out my linocuts  or my pyrography art 

\n

https://httpsimage.com/img/DSC04402small2.jpg

\n

@anca3drandom

\n", - "cashout_time": "2016-09-28T20:31:48", + "cashout_time": "2016-09-04T17:30:30", "category": "art", "children": 24, "children_abs_rshares": "18465724919", @@ -79,8 +79,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-12T23:16:12", - "net_rshares": 128179768, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 2912081554615, "net_votes": 60, "parent_author": "", "parent_permlink": "art", @@ -96,10 +96,10 @@ "precision": 3 }, "total_vote_weight": 0, - "vote_rshares": 128179768 + "vote_rshares": 2912081554615 }, { - "abs_rshares": "18283233276", + "abs_rshares": 18283233276, "active": "2016-08-28T17:47:57", "allow_curation_rewards": true, "allow_replies": true, @@ -108,7 +108,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "cool. Is that uniform in thickness?", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T17:36:39", "category": "art", "children": 3, "children_abs_rshares": 0, @@ -121,7 +121,7 @@ "depth": 1, "id": 1029652, "json_metadata": "{\"tags\":[\"art\"]}", - "last_payout": "2016-08-29T20:31:48", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T17:36:39", "max_accepted_payout": { "amount": "1000000000", @@ -129,7 +129,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": "18283233276", + "net_rshares": 18283233276, "net_votes": 1, "parent_author": "anca3drandom", "parent_permlink": "3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants", @@ -145,7 +145,7 @@ "precision": 3 }, "total_vote_weight": 0, - "vote_rshares": "18283233276" + "vote_rshares": 18283233276 }, { "abs_rshares": 0, @@ -157,7 +157,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "They are hand-made so they are uniform as much as it was allowed.", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T17:39:33", "category": "art", "children": 2, "children_abs_rshares": 0, @@ -170,7 +170,7 @@ "depth": 2, "id": 1029690, "json_metadata": "{\"tags\":[\"art\"]}", - "last_payout": "2016-08-29T20:31:48", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T17:39:33", "max_accepted_payout": { "amount": "1000000000", @@ -206,7 +206,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "This is very cool. I like how the colours are changing! Great work", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T17:40:09", "category": "art", "children": 2, "children_abs_rshares": 0, @@ -219,7 +219,7 @@ "depth": 1, "id": 1029704, "json_metadata": "{\"tags\":[\"art\"]}", - "last_payout": "2016-08-29T20:31:48", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T17:40:09", "max_accepted_payout": { "amount": "1000000000", @@ -255,7 +255,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Nice job. Haven't seen this type of art style before.", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T17:42:18", "category": "art", "children": 1, "children_abs_rshares": 0, @@ -268,7 +268,7 @@ "depth": 1, "id": 1029734, "json_metadata": "{\"tags\":[\"art\"]}", - "last_payout": "2016-08-29T20:31:48", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T17:42:18", "max_accepted_payout": { "amount": "1000000000", @@ -304,7 +304,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Very nice. I love the darker blue shade.", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T17:42:57", "category": "art", "children": 1, "children_abs_rshares": 0, @@ -317,7 +317,7 @@ "depth": 1, "id": 1029746, "json_metadata": "{\"tags\":[\"art\"]}", - "last_payout": "2016-08-29T20:31:48", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T17:42:57", "max_accepted_payout": { "amount": "1000000000", @@ -353,7 +353,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Thank you! That is a cool feature.", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T17:44:00", "category": "art", "children": 1, "children_abs_rshares": 0, @@ -366,7 +366,7 @@ "depth": 2, "id": 1029762, "json_metadata": "{\"tags\":[\"art\"]}", - "last_payout": "2016-08-29T20:31:48", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T17:44:00", "max_accepted_payout": { "amount": "1000000000", @@ -402,7 +402,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Thank you for sharing.", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T17:44:39", "category": "art", "children": 1, "children_abs_rshares": 0, @@ -415,7 +415,7 @@ "depth": 3, "id": 1029773, "json_metadata": "{\"tags\":[\"art\"]}", - "last_payout": "2016-08-29T20:31:48", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T17:44:39", "max_accepted_payout": { "amount": "1000000000", @@ -442,7 +442,7 @@ "vote_rshares": 0 }, { - "abs_rshares": 0, + "abs_rshares": 10096635157, "active": "2016-08-28T17:45:09", "allow_curation_rewards": true, "allow_replies": true, @@ -451,7 +451,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "3D pen art has been around for a few years. However combining pastels with 3d pen was my idea.Haven't seen it before.", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T17:45:09", "category": "art", "children": 0, "children_abs_rshares": 0, @@ -464,7 +464,7 @@ "depth": 2, "id": 1029781, "json_metadata": "{\"tags\":[\"art\"]}", - "last_payout": "2016-08-29T20:31:48", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T17:45:09", "max_accepted_payout": { "amount": "1000000000", @@ -472,7 +472,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 10096635157, "net_votes": 1, "parent_author": "marquismiller", "parent_permlink": "re-anca3drandom-3d-pen-art-combining-color-changing-filament-with-drawing-pastels-making-pendants-20160828t174219184z", @@ -487,8 +487,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 46445275935228266, + "vote_rshares": 10096635157 } ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.orig.json b/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.orig.json new file mode 100644 index 00000000..b04954fc --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.orig.json @@ -0,0 +1,494 @@ +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 588, + "beneficiaries": [], + "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", + "cashout_time": "2016-09-28T20:19:39", + "category": "foodchallenge", + "children": 18, + "children_abs_rshares": 2374341643, + "created": "2016-08-28T17:15:12", + "curator_payout_value": { + "amount": "131", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 779947, + "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:15:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "2016-09-13T01:24:24", + "net_rshares": 0, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "foodchallenge", + "percent_steem_dollars": 10000, + "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", + "total_payout_value": { + "amount": "576", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "vi1son", + "author_rewards": 18, + "beneficiaries": [], + "body": "Congratulations to the winners. We are waiting for the new competition.", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-28T17:29:57", + "curator_payout_value": { + "amount": "3", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780100, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:29:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "16", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "We will announce next weeks theme soon, hope to see you there!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T17:50:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780336, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:50:15", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "vi1son", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t172955785z", + "percent_steem_dollars": 10000, + "permlink": "re-vi1son-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t175015557z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "knozaki2015", + "author_rewards": 0, + "beneficiaries": [], + "body": "24 seconds from now\tTransfer 25.000 SBD to foxxycat\tCongrats 4th place Steemit Food Challenge #3 (sponsor @knozaki2015)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T18:11:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780560, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:11:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:12:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T18:12:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780584, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:12:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "knozaki2015", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181032961z", + "percent_steem_dollars": 10000, + "permlink": "re-knozaki2015-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t181239905z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:26:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "oumar", + "author_rewards": 0, + "beneficiaries": [], + "body": "Uuh, I didn't have enough time to participate :( and I do make some really delicious desserts.", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T18:21:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 780673, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:21:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:26:39", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yeah we missed your post! But no worry, there will be a new challenge very soon :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T18:26:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 780727, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T18:26:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "oumar", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182138038z", + "percent_steem_dollars": 10000, + "permlink": "re-oumar-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t182639249z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:25:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "papa-pepper", + "author_rewards": 0, + "beneficiaries": [], + "body": "Excellent Job everyone who entered!\n# Great job picking the winners too! I couldn't agree more!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T19:02:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 781174, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:02:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 2, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:25:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yes I'm moved by all effort, you Steemit Food Challengers are the best! \nThanks, it's always a hard choice to make! :)", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T19:25:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 781462, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:25:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "papa-pepper", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t190211617z", + "percent_steem_dollars": 10000, + "permlink": "re-papa-pepper-re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t192523201z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:44:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "the-future", + "author_rewards": 0, + "beneficiaries": [], + "body": "Congratulations to all!", + "cashout_time": "1969-12-31T23:59:59", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T19:44:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 781704, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T19:44:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "givemeyoursteem", + "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "percent_steem_dollars": 10000, + "permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-3-desserts-to-die-for-20160828t194439865z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json index 2403716d..cbad4526 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json @@ -1,7 +1,7 @@ { "comments": [ { - "abs_rshares": 0, + "abs_rshares": 1184743282626, "active": "2016-08-29T13:45:42", "allow_curation_rewards": true, "allow_replies": true, @@ -10,7 +10,7 @@ "author_rewards": 588, "beneficiaries": [], "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", - "cashout_time": "2016-09-28T20:19:39", + "cashout_time": "2016-09-04T17:15:12", "category": "foodchallenge", "children": 18, "children_abs_rshares": 2374341643, @@ -30,8 +30,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-13T01:24:24", - "net_rshares": 0, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 1184743282626, "net_votes": 44, "parent_author": "", "parent_permlink": "foodchallenge", @@ -46,11 +46,11 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 4215185774169958139, + "vote_rshares": 1184743282626 }, { - "abs_rshares": 0, + "abs_rshares": 46948242150, "active": "2016-08-29T13:45:42", "allow_curation_rewards": true, "allow_replies": true, @@ -59,7 +59,7 @@ "author_rewards": 18, "beneficiaries": [], "body": "Congratulations to the winners. We are waiting for the new competition.", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T17:29:57", "category": "foodchallenge", "children": 2, "children_abs_rshares": 0, @@ -80,7 +80,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 46948242150, "net_votes": 3, "parent_author": "givemeyoursteem", "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", @@ -95,8 +95,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 213998834635823260, + "vote_rshares": 46948242150 }, { "abs_rshares": 0, @@ -108,7 +108,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "We will announce next weeks theme soon, hope to see you there!", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T17:50:15", "category": "foodchallenge", "children": 1, "children_abs_rshares": 0, @@ -121,7 +121,7 @@ "depth": 2, "id": 1029853, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T17:50:15", "max_accepted_payout": { "amount": "1000000000", @@ -148,7 +148,7 @@ "vote_rshares": 0 }, { - "abs_rshares": 0, + "abs_rshares": 7520862006, "active": "2016-08-28T18:12:39", "allow_curation_rewards": true, "allow_replies": true, @@ -157,7 +157,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "24 seconds from now\tTransfer 25.000 SBD to foxxycat\tCongrats 4th place Steemit Food Challenge #3 (sponsor @knozaki2015)", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T18:11:06", "category": "foodchallenge", "children": 1, "children_abs_rshares": 0, @@ -170,7 +170,7 @@ "depth": 1, "id": 1030133, "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T18:11:06", "max_accepted_payout": { "amount": "1000000000", @@ -178,7 +178,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 7520862006, "net_votes": 2, "parent_author": "givemeyoursteem", "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", @@ -193,8 +193,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 34618763423959467, + "vote_rshares": 7520862006 }, { "abs_rshares": 0, @@ -206,7 +206,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Lovely! Thank you so much for sponsoring @knozaki2015 ! And congratulations @foxxycat ! :D", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T18:12:39", "category": "foodchallenge", "children": 0, "children_abs_rshares": 0, @@ -219,7 +219,7 @@ "depth": 2, "id": 1030162, "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"foxxycat\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T18:12:39", "max_accepted_payout": { "amount": "1000000000", @@ -246,7 +246,7 @@ "vote_rshares": 0 }, { - "abs_rshares": 0, + "abs_rshares": 7470836016, "active": "2016-08-28T18:26:39", "allow_curation_rewards": true, "allow_replies": true, @@ -255,7 +255,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Uuh, I didn't have enough time to participate :( and I do make some really delicious desserts.", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T18:21:39", "category": "foodchallenge", "children": 1, "children_abs_rshares": 0, @@ -268,7 +268,7 @@ "depth": 1, "id": 1030265, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T18:21:39", "max_accepted_payout": { "amount": "1000000000", @@ -276,7 +276,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 7470836016, "net_votes": 1, "parent_author": "givemeyoursteem", "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", @@ -291,8 +291,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 34388921502622671, + "vote_rshares": 7470836016 }, { "abs_rshares": 0, @@ -304,7 +304,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Yeah we missed your post! But no worry, there will be a new challenge very soon :)", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T18:26:39", "category": "foodchallenge", "children": 0, "children_abs_rshares": 0, @@ -317,7 +317,7 @@ "depth": 2, "id": 1030333, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T18:26:39", "max_accepted_payout": { "amount": "1000000000", @@ -344,7 +344,7 @@ "vote_rshares": 0 }, { - "abs_rshares": 0, + "abs_rshares": 7698389677, "active": "2016-08-28T19:25:24", "allow_curation_rewards": true, "allow_replies": true, @@ -353,7 +353,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Excellent Job everyone who entered!\n# Great job picking the winners too! I couldn't agree more!", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T19:02:12", "category": "foodchallenge", "children": 1, "children_abs_rshares": 0, @@ -366,7 +366,7 @@ "depth": 1, "id": 1030904, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T19:02:12", "max_accepted_payout": { "amount": "1000000000", @@ -374,7 +374,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 7698389677, "net_votes": 2, "parent_author": "givemeyoursteem", "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", @@ -389,8 +389,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 35434359161631381, + "vote_rshares": 7698389677 }, { "abs_rshares": 0, @@ -402,7 +402,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Yes I'm moved by all effort, you Steemit Food Challengers are the best! \nThanks, it's always a hard choice to make! :)", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T19:25:24", "category": "foodchallenge", "children": 0, "children_abs_rshares": 0, @@ -415,7 +415,7 @@ "depth": 2, "id": 1031268, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T19:25:24", "max_accepted_payout": { "amount": "1000000000", @@ -442,7 +442,7 @@ "vote_rshares": 0 }, { - "abs_rshares": 0, + "abs_rshares": 6791682394, "active": "2016-08-28T19:44:48", "allow_curation_rewards": true, "allow_replies": true, @@ -451,7 +451,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Congratulations to all!", - "cashout_time": "1969-12-31T23:59:59", + "cashout_time": "2016-09-04T19:44:48", "category": "foodchallenge", "children": 0, "children_abs_rshares": 0, @@ -464,7 +464,7 @@ "depth": 1, "id": 1031585, "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "2016-08-29T20:19:39", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-28T19:44:48", "max_accepted_payout": { "amount": "1000000000", @@ -472,7 +472,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, + "net_rshares": 6791682394, "net_votes": 1, "parent_author": "givemeyoursteem", "parent_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", @@ -487,8 +487,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 31268016129348998, + "vote_rshares": 6791682394 } ] } \ No newline at end of file diff --git a/hivemind/tavern/follow_api_patterns/get_account_reputations.orig.json b/hivemind/tavern/follow_api_patterns/get_account_reputations.orig.json new file mode 100644 index 00000000..3b638592 --- /dev/null +++ b/hivemind/tavern/follow_api_patterns/get_account_reputations.orig.json @@ -0,0 +1,8 @@ +{ + "reputations": [ + { + "name": "steem", + "reputation": 0 + } + ] +} \ No newline at end of file diff --git a/hivemind/tavern/follow_api_patterns/get_blog.orig.json b/hivemind/tavern/follow_api_patterns/get_blog.orig.json new file mode 100644 index 00000000..e4345dc3 --- /dev/null +++ b/hivemind/tavern/follow_api_patterns/get_blog.orig.json @@ -0,0 +1,645 @@ +[ + { + "blog": "steemit", + "comment": { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + }, + "entry_id": 0, + "reblogged_on": "1970-01-01T00:00:00" + } +] diff --git a/hivemind/tavern/follow_api_patterns/get_blog_entries.orig.json b/hivemind/tavern/follow_api_patterns/get_blog_entries.orig.json new file mode 100644 index 00000000..c4ed5060 --- /dev/null +++ b/hivemind/tavern/follow_api_patterns/get_blog_entries.orig.json @@ -0,0 +1,9 @@ +[ + { + "author": "steemit", + "blog": "steemit", + "entry_id": 0, + "permlink": "firstpost", + "reblogged_on": "1970-01-01T00:00:00" + } +] \ No newline at end of file diff --git a/hivemind/tavern/follow_api_patterns/get_follow_count.orig.json b/hivemind/tavern/follow_api_patterns/get_follow_count.orig.json new file mode 100644 index 00000000..7136d8ae --- /dev/null +++ b/hivemind/tavern/follow_api_patterns/get_follow_count.orig.json @@ -0,0 +1,5 @@ +{ + "account": "steemit", + "follower_count": 175, + "following_count": 0 +} \ No newline at end of file diff --git a/hivemind/tavern/follow_api_patterns/get_followers.orig.json b/hivemind/tavern/follow_api_patterns/get_followers.orig.json new file mode 100644 index 00000000..40002c6f --- /dev/null +++ b/hivemind/tavern/follow_api_patterns/get_followers.orig.json @@ -0,0 +1,72 @@ +[ + { + "follower": "therajmahal", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "mgibson", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "good-karma", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "blockcodes", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "pjheinz", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "sergey44", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "afsane", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "pawel-krawczyk", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "buckland", + "following": "steemit", + "what": [ + "blog" + ] + }, + { + "follower": "johnson.lukose", + "following": "steemit", + "what": [ + "blog" + ] + } +] \ No newline at end of file diff --git a/hivemind/tavern/follow_api_patterns/get_following.orig.json b/hivemind/tavern/follow_api_patterns/get_following.orig.json new file mode 100644 index 00000000..91cb6486 --- /dev/null +++ b/hivemind/tavern/follow_api_patterns/get_following.orig.json @@ -0,0 +1,72 @@ +[ + { + "follower": "proskynneo", + "following": "webosfritos", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "peerplays", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "charlieshrem", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "tlc", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "jamesc", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "theoretical", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "steemitblog", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "ned", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "dan", + "what": [ + "blog" + ] + }, + { + "follower": "proskynneo", + "following": "katecloud", + "what": [ + "blog" + ] + } +] \ No newline at end of file diff --git a/hivemind/tavern/follow_api_patterns/get_reblogged_by.orig.json b/hivemind/tavern/follow_api_patterns/get_reblogged_by.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/follow_api_patterns/get_reblogged_by.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.orig.json b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.orig.json new file mode 100644 index 00000000..1d95f6eb --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.orig.json @@ -0,0 +1,33 @@ +[ + { + "active_votes": [], + "author": "lukmarcus", + "author_reputation": 0, + "beneficiaries": [], + "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", + "body_length": 122, + "cashout_time": "2016-09-18T21:19:45", + "category": "polska", + "children": 0, + "created": "2016-08-22T07:44:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https:\\/\\/web.facebook.com\\/notes\\/szymon-szewczyk-blog\\/nasienie-wolno%C5%9Bci\\/1062629210473658\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-22T07:44:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "simgregg", + "parent_permlink": "nasienie-wolnosci", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-simgregg-nasienie-wolnosci-20160822t074530822z", + "post_id": 703225, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Nasienie Wolno\u015bci", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/polska/@simgregg/nasienie-wolnosci#@lukmarcus/re-simgregg-nasienie-wolnosci-20160822t074530822z" + } +] diff --git a/hivemind/tavern/tags_api_patterns/get_content_replies.orig.json b/hivemind/tavern/tags_api_patterns/get_content_replies.orig.json new file mode 100644 index 00000000..ef7d6ee3 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_content_replies.orig.json @@ -0,0 +1,84 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + } + ], + "author": "kingtylervvs", + "author_reputation": 0, + "beneficiaries": [], + "body": "PARTY PARTY.... P - A - R - T - Y????? BECAUSE I GOTTA!", + "body_length": 55, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-17T19:38:12", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-17T19:38:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 742566481, + "parent_author": "admin", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-admin-firstpost-20160717t193811098z", + "post_id": 110463, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@kingtylervvs/re-admin-firstpost-20160717t193811098z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "111000395", + "voter": "bustillos" + } + ], + "author": "gopher", + "author_reputation": 0, + "beneficiaries": [], + "body": "Are you admin in steem? If you have been hacked, who can help you?", + "body_length": 66, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 0, + "created": "2016-07-18T19:53:12", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"meta\"]}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-07-18T19:53:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 853566876, + "parent_author": "admin", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-admin-firstpost-20160718t195306992z", + "post_id": 125730, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@gopher/re-admin-firstpost-20160718t195306992z" + } +] diff --git a/hivemind/tavern/tags_api_patterns/get_discussion.orig.json b/hivemind/tavern/tags_api_patterns/get_discussion.orig.json new file mode 100644 index 00000000..86f26ab2 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_discussion.orig.json @@ -0,0 +1,638 @@ +{ + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" +} diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date.orig.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date.orig.json new file mode 100644 index 00000000..0b58474c --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date.orig.json @@ -0,0 +1,640 @@ +[ + { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + } +] diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_blog.orig.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_blog.orig.json new file mode 100644 index 00000000..0b58474c --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_blog.orig.json @@ -0,0 +1,640 @@ +[ + { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + } +] diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_comments.orig.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_comments.orig.json new file mode 100644 index 00000000..2b914187 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_comments.orig.json @@ -0,0 +1,94 @@ +[ + { + "active_votes": [ + { + "percent": "-100", + "reputation": 0, + "rshares": "-375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit46" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81125", + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "431616594", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58854897335", + "voter": "business" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "244129227", + "voter": "kewpiedoll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1615731741", + "voter": "naturalista" + } + ], + "author": "admin", + "author_reputation": 0, + "beneficiaries": [], + "body": "First Reply! Let's get this **party** started", + "body_length": 45, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 2, + "created": "2016-03-30T19:52:30", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T19:52:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62423410900, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 2, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/meta/@steemit/firstpost#@admin/firstpost" + } +] diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_created.orig.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_created.orig.json new file mode 100644 index 00000000..7ec725a8 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_created.orig.json @@ -0,0 +1,40 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "53926980", + "voter": "simgregg" + } + ], + "author": "simgregg", + "author_reputation": 0, + "beneficiaries": [], + "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", + "body_length": 1273, + "cashout_time": "2016-09-18T21:19:45", + "category": "polska", + "children": 1, + "created": "2016-08-18T21:19:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"polska\",\"wolnosc\",\"ojczyzna\",\"patriotyzm\",\"wiersz\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T21:19:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53926980, + "parent_author": "", + "parent_permlink": "polska", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "nasienie-wolnosci", + "post_id": 661285, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Nasienie Wolno\u015bci", + "title": "Nasienie Wolno\u015bci", + "total_payout_value": "0.000 HBD", + "url": "/polska/@simgregg/nasienie-wolnosci" + } +] diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_hot.orig.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_hot.orig.json new file mode 100644 index 00000000..7ec725a8 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_hot.orig.json @@ -0,0 +1,40 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "53926980", + "voter": "simgregg" + } + ], + "author": "simgregg", + "author_reputation": 0, + "beneficiaries": [], + "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", + "body_length": 1273, + "cashout_time": "2016-09-18T21:19:45", + "category": "polska", + "children": 1, + "created": "2016-08-18T21:19:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"polska\",\"wolnosc\",\"ojczyzna\",\"patriotyzm\",\"wiersz\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T21:19:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53926980, + "parent_author": "", + "parent_permlink": "polska", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "nasienie-wolnosci", + "post_id": 661285, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Nasienie Wolno\u015bci", + "title": "Nasienie Wolno\u015bci", + "total_payout_value": "0.000 HBD", + "url": "/polska/@simgregg/nasienie-wolnosci" + } +] diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.orig.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.orig.json new file mode 100644 index 00000000..3d0892ee --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.orig.json @@ -0,0 +1,2590 @@ +[ + { + "active_votes": [ + { + "percent": "-10000", + "reputation": 0, + "rshares": "-28338941273774", + "voter": "dantheman" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-56560374008", + "voter": "fminerten1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "515865522774", + "voter": "panadacoin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "591238736691", + "voter": "barrie" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-31244889730986", + "voter": "smooth" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-25869425303440", + "voter": "berniesanders" + }, + { + "percent": "8900", + "reputation": 0, + "rshares": "56923627230317", + "voter": "ned" + }, + { + "percent": "-4000", + "reputation": 0, + "rshares": "-61162327823", + "voter": "highasfuck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5861402538757", + "voter": "riverhead" + }, + { + "percent": "3500", + "reputation": 0, + "rshares": "2012701974707", + "voter": "kushed" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1105925638130", + "voter": "ihashfury" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1595196737607", + "voter": "rossco99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "986803208166", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5034399699326", + "voter": "steemit200" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3103422054", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3767892961", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "690943799", + "voter": "bunny" + }, + { + "percent": "4900", + "reputation": 0, + "rshares": "3573913851034", + "voter": "complexring" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6282474172783", + "voter": "clayop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54717838235", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1662987228", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213785292", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "209038160029", + "voter": "alex90342fastn1" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "7692488765", + "voter": "aizensou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3455872549975", + "voter": "au1nethyb1" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "6781848343", + "voter": "bentley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1387859952", + "voter": "mineralwasser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106098683047", + "voter": "bonapartist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "855490468340", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115524100455", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8261386990", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2104057003", + "voter": "bingo-1" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-5694232013608", + "voter": "smooth.witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "988597560715", + "voter": "benjojo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "564763376378", + "voter": "boatymcboatface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "168058097416", + "voter": "pairmike" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61457593326", + "voter": "vip" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "29414306405", + "voter": "proctologic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "624912728", + "voter": "healthcare" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "902943814", + "voter": "stoner19" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "971397151", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "400674324536", + "voter": "woo7739" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "821205239311", + "voter": "steemrollin" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "16122243298", + "voter": "team" + }, + { + "percent": "2100", + "reputation": 0, + "rshares": "68140066479", + "voter": "chitty" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "335329901210", + "voter": "lighthil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "288337653", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "84761882611", + "voter": "unosuke" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "221378412917", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156355134109", + "voter": "vitaly-lvov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125237012083", + "voter": "edgeland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "384189354393", + "voter": "craig-grant" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "78953157492", + "voter": "easteagle13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24177692381", + "voter": "mod-tamichh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47071100260", + "voter": "cyan91" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "182161233136", + "voter": "samuel-stone" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27507445535", + "voter": "full-measure" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15043635029", + "voter": "jademont" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1091318863571", + "voter": "gavvet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3913661416", + "voter": "hbhades" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "537679658162", + "voter": "eeks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "477297643", + "voter": "paco-steem" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "19875326051", + "voter": "hipster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5373300397", + "voter": "spaninv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31632644129", + "voter": "james-show" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2191644256", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1709548184767", + "voter": "cryptoctopus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "292403125620", + "voter": "pal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "91790166084", + "voter": "william-noe" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "6782998784", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "134023949190", + "voter": "steve-walschot" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32871946754", + "voter": "dan-atstarlite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "490595494", + "voter": "coar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "67870898638", + "voter": "asch" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "286727574871", + "voter": "kevinwong" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1425998946", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1703165248", + "voter": "brian-lukassen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7184649989", + "voter": "cryptofunk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "584817224", + "voter": "kodi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79084857477", + "voter": "theshell" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "22641839395", + "voter": "thecryptofiend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51307800519", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5388661415", + "voter": "zebbra2014" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3915776982262", + "voter": "satoshifund" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "403407002721", + "voter": "taoteh1221" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "426836364", + "voter": "applecrisp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "372600185", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147474797358", + "voter": "killerstorm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "370486042445", + "voter": "hedge-x" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "6226063990", + "voter": "hisnameisolllie" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "4666893911", + "voter": "wingz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53642020280", + "voter": "juanmiguelsalas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112536244257", + "voter": "kenny-crane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18290477525", + "voter": "samether" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "20435826971", + "voter": "ratel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4477973596", + "voter": "dahaz159" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13353893819", + "voter": "facer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19195451431", + "voter": "ziv" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-37886485933", + "voter": "cheftony" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "814177904", + "voter": "proglobyte" + }, + { + "percent": "7500", + "reputation": 0, + "rshares": "6651057809", + "voter": "grandpere" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "187723859372", + "voter": "mexbit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5901731263", + "voter": "mark-waser" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "13475779704", + "voter": "publicworker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106662592446", + "voter": "geoffrey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46106881411", + "voter": "honeythief" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2879418324", + "voter": "mammasitta" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "22456450828", + "voter": "marco-delsalto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6740408834", + "voter": "tyler-fletcher" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "90461089451", + "voter": "mctiller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "70695307715", + "voter": "freedomengineer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14764907307", + "voter": "magnebit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73424982025", + "voter": "razvanelulmarin" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "4332771254", + "voter": "treeshaface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17687843258", + "voter": "frankjones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18766219906", + "voter": "skapaneas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5157854283", + "voter": "micheletrainer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17552893571", + "voter": "grey580" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "283436852", + "voter": "ladyclair" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "288748933789", + "voter": "ericvancewalton" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52215058764", + "voter": "booja" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "331004446932", + "voter": "roelandp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4775693686", + "voter": "dennygalindo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62198582831", + "voter": "lehard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "249608253", + "voter": "ivp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "86432384761", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3299480410", + "voter": "orly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "254364900", + "voter": "mstang83" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22617124650", + "voter": "katyakov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "122156869592", + "voter": "robrigo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48022035978", + "voter": "menta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "977288096", + "voter": "lontong" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "135562023252", + "voter": "chhayll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13300237653", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "124913925653", + "voter": "derekareith" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "26683327851", + "voter": "picokernel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2707813985", + "voter": "wintrop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "514388137239", + "voter": "neoxian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25581639649", + "voter": "strangerarray" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1344524912605", + "voter": "renohq" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155010079441", + "voter": "knircky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5523230874", + "voter": "on0tole" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71594122778", + "voter": "sigmajin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16832656768", + "voter": "ausbitbank" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42564757970", + "voter": "mrwang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1268462097", + "voter": "mixa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8279675078", + "voter": "autosmile13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40069670306", + "voter": "wesam" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1632266140", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55667692", + "voter": "cynetyc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4524453413", + "voter": "gikitiki" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4046708005", + "voter": "steemit-life" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4687463894", + "voter": "thegoodguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40136504296", + "voter": "biophil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3759809896", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2630980347", + "voter": "jbouchard12" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27635550326", + "voter": "dwinblood" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24959867898", + "voter": "igster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10845979381", + "voter": "deviedev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "228465690", + "voter": "zoicneo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "296045327034", + "voter": "nabilov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79351054414", + "voter": "ntomaino" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13957994657", + "voter": "meesterboom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12385010041", + "voter": "domavila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "400742354", + "voter": "karenmckersie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "484888225", + "voter": "luisucv34" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5747716426", + "voter": "krystle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75001817111", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44353154247", + "voter": "yongyoon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7146190847", + "voter": "lichtblick" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9028095567", + "voter": "warrensteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3710621464", + "voter": "maximkichev" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "5254853525", + "voter": "sbq777t" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13560062590", + "voter": "nippel66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3175676972", + "voter": "imp3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2552560220", + "voter": "sgnsteems" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "189609178496", + "voter": "blueorgy" + }, + { + "percent": "1400", + "reputation": 0, + "rshares": "4380569189", + "voter": "wadepaterson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "296100567501", + "voter": "calaber24p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20078314404", + "voter": "mustafaomar" + }, + { + "percent": "4900", + "reputation": 0, + "rshares": "7161559782", + "voter": "all-of-us" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8247905495", + "voter": "magz8716" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18706560189", + "voter": "bendjmiller222" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4078813249", + "voter": "tarindel" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "13966407599", + "voter": "beowulfoflegend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23276095473", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5317355087", + "voter": "rainchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9242725695", + "voter": "oumar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5575772867", + "voter": "sharker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "182819821534", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1103176661", + "voter": "oecp85" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "977888223951", + "voter": "james212" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "818040957", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39295777834", + "voter": "zaebars" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1428031362", + "voter": "alekst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1782690382", + "voter": "yarly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125979055", + "voter": "kottai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "269576627", + "voter": "yarly2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "269980297", + "voter": "yarly3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156093986", + "voter": "yarly4" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156975275", + "voter": "yarly5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "89476508", + "voter": "yarly7" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56769328536", + "voter": "arcurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115403915", + "voter": "charbelnamm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9802713874", + "voter": "alsprinting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4554249461", + "voter": "gustavopasquini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10450628476", + "voter": "moon32walker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25772328103", + "voter": "marius19" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13637653306", + "voter": "lemooljiang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15826604583", + "voter": "winstonwolfe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "455136533", + "voter": "kooshikoo" + }, + { + "percent": "2300", + "reputation": 0, + "rshares": "8541510354", + "voter": "fatboy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15580395475", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "639099484", + "voter": "curator" + }, + { + "percent": "8200", + "reputation": 0, + "rshares": "2410557662", + "voter": "ace108" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "432302630", + "voter": "yarly10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1634018670", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "231618512", + "voter": "yarly11" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13498521499", + "voter": "michaeldodridge" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81028161", + "voter": "yarly12" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1713978326", + "voter": "remlaps" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "165045645", + "voter": "beanz" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "273280899", + "voter": "clevecross" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31769283842", + "voter": "smailer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "149502446", + "voter": "steemster1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4564708091", + "voter": "sulev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2873988066", + "voter": "dmilash" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3459421629", + "voter": "carlas10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1493719735", + "voter": "spinner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4189235490", + "voter": "glitterpig" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7874311492", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "689524426", + "voter": "pakisnxt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5394692942", + "voter": "theprophet0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4481547788", + "voter": "theprophet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61911147", + "voter": "sharon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7265644466", + "voter": "dumar022" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61700262", + "voter": "lillianjones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46418159604", + "voter": "capitalism" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "588460890536", + "voter": "toxic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8609049381", + "voter": "darknet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14224054622", + "voter": "gmurph" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "655589667", + "voter": "xtester" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2090553241", + "voter": "achim86" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4256758523", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8452120116", + "voter": "kurtbeil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60138244071", + "voter": "poteshnik83" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99476907271", + "voter": "thisisbenbrick" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392193612", + "voter": "wiser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112411845286", + "voter": "terrycraft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1348324437", + "voter": "dolov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21004018124", + "voter": "jphamer1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11270713350", + "voter": "ekitcho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "150794650", + "voter": "bigsambucca" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "83986507131", + "voter": "joele" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5527031256", + "voter": "oflyhigh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57523014", + "voter": "nickche" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2512217855", + "voter": "kainmarx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "493960660", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63555792", + "voter": "msjennifer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58453204", + "voter": "ciao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3015124995", + "voter": "villainblack" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3439786891", + "voter": "cmorton" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "219039434", + "voter": "xcepta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "748990287", + "voter": "jrcornel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57914427", + "voter": "steemo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19865005311", + "voter": "hanshotfirst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56535984", + "voter": "steema" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "5769564425", + "voter": "highlite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73061236", + "voter": "evgenyche" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "65927774", + "voter": "bhavnapatel68" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71228043", + "voter": "confucius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28924632850", + "voter": "mrosenquist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "74898697", + "voter": "elenirossidou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58639072", + "voter": "jarvis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "102741069", + "voter": "lisadang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "78765183", + "voter": "razberrijam" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10750764390", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56726999", + "voter": "fortuner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2816953736", + "voter": "virtualgrowth" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1399636656", + "voter": "anotherjoe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59750246", + "voter": "saveliy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5927843564", + "voter": "solarguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "890579467", + "voter": "crazycow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3977281078", + "voter": "lamech-m" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9470181501", + "voter": "mrgrey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "382699085", + "voter": "crezyliza" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12003456501", + "voter": "gvargas123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55399493", + "voter": "johnbyrd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56575537", + "voter": "thomasaustin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55394920", + "voter": "thermor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56570509", + "voter": "ficholl" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55387660", + "voter": "widell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10109582992", + "voter": "elissahawke" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88078809749", + "voter": "icfiedler" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "192287988", + "voter": "steevc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1592064374", + "voter": "movievertigo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54991366", + "voter": "revelbrooks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23660021285", + "voter": "andrewawerdna" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5932358367", + "voter": "trev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48131519933", + "voter": "dragonanarchist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79979619", + "voter": "joelbow" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "4001380728", + "voter": "sethlinson" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2391702679", + "voter": "hilarski" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "101945845", + "voter": "slorunner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1679360131", + "voter": "imag1ne" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58631508", + "voter": "pacino" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57412782", + "voter": "drsamkhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54999739", + "voter": "curpose" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103040256", + "voter": "adrevel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61202458", + "voter": "steembriefing" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2894276750", + "voter": "fat-like-buddha" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64070582", + "voter": "iosif" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1559083086", + "voter": "ines-f" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1893166639", + "voter": "cryptoeasy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9771811576", + "voter": "etcmike" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4912386907", + "voter": "ats-david" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "947456313", + "voter": "runridefly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "69985187", + "voter": "stephenkendal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "80557869", + "voter": "jlufer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2475119042", + "voter": "contentjunkie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99564797338", + "voter": "shenanigator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7076299362", + "voter": "daveks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61715783", + "voter": "uziriel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3325599818", + "voter": "funkywanderer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11968284833", + "voter": "ryan-singer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53961187", + "voter": "troich" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56665974", + "voter": "viktorriver" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7018683565", + "voter": "mdoolsky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3103345545", + "voter": "xanoxt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1652709870", + "voter": "davidjkelley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6919572472", + "voter": "davidbrogan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53966805", + "voter": "crion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53622549", + "voter": "hitherise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54730557", + "voter": "wiss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12191050487", + "voter": "ghasemkiani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15497139800", + "voter": "digital-wisdom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3938044420", + "voter": "ethical-ai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54362089", + "voter": "stroully" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2032879970", + "voter": "matthewtiii" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5655677010", + "voter": "jwaser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54019345", + "voter": "thadm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017499", + "voter": "prof" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56837113", + "voter": "blogx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55043079", + "voter": "zettar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17788079417", + "voter": "hunterisgreat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1089484775", + "voter": "smisi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53640464", + "voter": "yorsens" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "85546636", + "voter": "the-ego-is-you" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53331040", + "voter": "bane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "537067064", + "voter": "winglessss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53324520", + "voter": "vive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53318865", + "voter": "coad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287913287", + "voter": "totosky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1697516350", + "voter": "baodog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2664939129", + "voter": "bwaser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52988378", + "voter": "sofa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "732461217", + "voter": "ct-gurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "220578638", + "voter": "mamo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1706277109", + "voter": "ibringawareness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "860146710", + "voter": "kingarbinv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53039974", + "voter": "ailo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4841952237", + "voter": "burnin" + }, + { + "percent": "3300", + "reputation": 0, + "rshares": "558512952", + "voter": "bitcoinparadise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "206212756", + "voter": "ballinconscious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4652459969", + "voter": "gringalicious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2770826537", + "voter": "steempowerwhale" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1336513482", + "voter": "rigaronib" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "390796425", + "voter": "echoesinthemind" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "357202147", + "voter": "soldier" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55826263", + "voter": "nelyp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2339486479", + "voter": "ellepdub" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50852949", + "voter": "gregorygarcia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9400577403", + "voter": "herpetologyguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51470533", + "voter": "eavy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51468937", + "voter": "roto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "70358845", + "voter": "ancientofdays" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52648858", + "voter": "psyduck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "330163263", + "voter": "robotev1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4796038584", + "voter": "morgan.waser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147415673", + "voter": "flowergirl" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51141851", + "voter": "slow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "101153586", + "voter": "anns" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1693077690", + "voter": "nil1511" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "846735133", + "voter": "greenwayoflife" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50798322", + "voter": "breeze" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50796122", + "voter": "factom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50794039", + "voter": "autodesk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50708837", + "voter": "ardly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50704078", + "voter": "yotoh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50570250", + "voter": "ziggo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50482289", + "voter": "connection" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50433760", + "voter": "morse" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50317220", + "voter": "piphunters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1824788165", + "voter": "cwbrooch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1161216291", + "voter": "ayim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3675242983", + "voter": "strong-ai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "346259703", + "voter": "julia26" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "488963228", + "voter": "grisha-danunaher" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "696884040", + "voter": "ziogio" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "77637243", + "voter": "igtes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "80800689", + "voter": "timalex" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79083956", + "voter": "silverbackjonz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23984282056", + "voter": "abdullar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1204472546", + "voter": "expedition" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157643687", + "voter": "buffett" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "162128433", + "voter": "cebymaster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "143818142", + "voter": "eunnykim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "162785391", + "voter": "olga4ka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1065182434", + "voter": "rusteemitblog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161974443", + "voter": "zapply" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158642800", + "voter": "ranger" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "282877474", + "voter": "witchcraftblog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "975048251", + "voter": "nikomah" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161212160", + "voter": "origin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161205518", + "voter": "acute" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "160973134", + "voter": "gravity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157801695", + "voter": "realtime" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157654556", + "voter": "pawel-krawczyk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125721183", + "voter": "rubenkusters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "160269480", + "voter": "adpipop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103667189", + "voter": "charli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147606365", + "voter": "laskovskiy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "65836326", + "voter": "serikus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147145004", + "voter": "fer32p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "159524423", + "voter": "radent" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125821091", + "voter": "jasonxg" + } + ], + "author": "ned", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\n\n# Over the last few weeks I've been thinking about ways we could increase the demand for Steem Power, the quality of curated content and the incentives to participate as a Steem curator.\n\nHere are a couple ideas I have been kicking around. They're not fully mature and could use a good rinsing by the community.\n\n## Allow Steem holders to delegate their Steem Power voting rights to a **voting pool**\n\nA delegated voting pool could socialize voting power and individualize rewards. One prime use for this could be the @steemit account. @steemit could create a voting pool and invite anyone with a verified identity and good reputation to join the pool as a curator. This could increase the number of unique curators, help bootstrap Steem as an identity database and give people even more incentives to sign up.\n\nTo show the numbers, an example would be Alice Bob and Charley each delegate their SP of 2, 3, and 7 to one voting pool. Now they each have 4, 4, and 4 SP to be used to curate. Better curation would earn them more curation rewards. \n\nA side effect of delegated voting pools could be voting markets. Any user would have the power to create a voting pool and these users could charge curators for participation. Some of the platform's whales could be interested in offering subscription models to minnows as a way to get more voting influence.\n\n## If powering down stake loses voting influence\n\nImagine that any stake being powered down would lose its rights to use voting influence. This could make the system very clear in the regard that stake is either in or it is out. Users could be able to choose any % of their stake to power down regardless of how many accounts they have and only the % stake that is powering down would lose voting influence. Stopping a power down could return all voting rights.\n\nPerhaps the effect of this could be 1/ more interest to stay in the platform and 2/ more fluidity in the witness queue 3/ more fairness regarding the PoS nature of Steem 4/ more clarity from participants looking to exit the system\n\n## Combined effect?\nPerhaps these proposals could have a combined effect that increases the demand and fluidity of Steem Power while improving the curated experience for people visiting Steem based websites.\n\n#### What are your thoughts and questions?", + "body_length": 2399, + "cashout_time": "2016-10-09T02:14:24", + "category": "steem", + "children": 315, + "created": "2016-09-07T15:44:51", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https:\\/\\/www.biznessapps.com\\/blog\\/wp-content\\/uploads\\/2013\\/12\\/shutterstock_148639682.png\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-07T15:50:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 21098346399884, + "parent_author": "", + "parent_permlink": "steem", + "pending_payout_value": "47.461 HBD", + "percent_steem_dollars": 10000, + "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", + "post_id": 882849, + "promoted": "500.000 HBD", + "replies": [], + "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction", + "title": "Increasing Curation, Demand for Steem Power and Community Interaction", + "total_payout_value": "0.000 HBD", + "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction" + } +] diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_trending.orig.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_trending.orig.json new file mode 100644 index 00000000..7ec725a8 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_trending.orig.json @@ -0,0 +1,40 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "53926980", + "voter": "simgregg" + } + ], + "author": "simgregg", + "author_reputation": 0, + "beneficiaries": [], + "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", + "body_length": 1273, + "cashout_time": "2016-09-18T21:19:45", + "category": "polska", + "children": 1, + "created": "2016-08-18T21:19:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"polska\",\"wolnosc\",\"ojczyzna\",\"patriotyzm\",\"wiersz\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T21:19:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53926980, + "parent_author": "", + "parent_permlink": "polska", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "nasienie-wolnosci", + "post_id": 661285, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Nasienie Wolno\u015bci", + "title": "Nasienie Wolno\u015bci", + "total_payout_value": "0.000 HBD", + "url": "/polska/@simgregg/nasienie-wolnosci" + } +] diff --git a/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.orig.json b/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.orig.json new file mode 100644 index 00000000..7ec725a8 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.orig.json @@ -0,0 +1,40 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "53926980", + "voter": "simgregg" + } + ], + "author": "simgregg", + "author_reputation": 0, + "beneficiaries": [], + "body": "Krew tych, co kochali Ojczyzn\u0119, jak naw\u00f3z dzia\u0142a na nasze pokolenie,\nBo cho\u0107 z\u0142amani i w ziemi\u0119 g\u0142\u0119boko pogrzebani - s\u0105 jak nasienie -\nWolno\u015bci, kt\u00f3ra w nas wci\u0105\u017c zdechn\u0105\u0107 nie chce, lecz tchn\u0105\u0107 na nowo.\nCho\u0107 nas zaora\u0107 chc\u0105, nasz\u0105 dusz\u0119 przemieli\u0107 jak zesch\u0142e pole,\nMy wci\u0105\u017c pod skorup\u0105, jak lawa, t\u0119tni\u0105c\u0105 i \u017cyw\u0105 mamy Wol\u0119 -\nBy \u017cy\u0107, gdzie B\u00f3g \u017cy\u0107 da\u0142 przez wieki, i stworzy\u0142 na nowo.\n\nPolska - to tak \u0142atwo si\u0119 m\u00f3wi, i ci\u0119\u017cko umiera. Lecz trudniej - \u017cyje -\nDla Polski, by nie tylko sia\u0107 to ziarno, i \u0142ama\u0107, ale i zbiera\u0107.\nGdy odessano nam ju\u017c z cia\u0142a dusz\u0119 i ducha, gdy\u015bmy jak lalki si\u0119 stali -\nNa sznurkach cudzej historii - Za co umiera\u0107? Ile krew warta\nNa gie\u0142dzie Lucyfera?\n\nGdy dusza rwie si\u0119 do Ciebie, Bo\u017ce, a cia\u0142o gnije w tym padole,\nPoka\u017c, ile wolno mi Polski kocha\u0107, a ile jej odda\u0107 w niewol\u0119?\nBo wyznaczy\u0142e\u015b ludom ich miejsce na ziemi, wi\u0119c i zabra\u0107 mo\u017cesz,\nLecz czy je wr\u00f3cisz, je\u015bli narody wr\u00f3c\u0105 do Ciebie w pokorze?\nCzy te\u017c jeste\u015bmy jak Izrael, wygnani za sw\u0105 twardo\u015b\u0107 serca,\nZa szale\u0144stwo pychy, kt\u00f3ra przed upadkiem zmierzcha?\n\nKrew tych, co cia\u0142a swe jak nasienie w\u0142o\u017cyli do ziemi,\nB\u0119dzie ros\u0105 na Polski odrodzeniu. Je\u015bli tylko nasze serca zmieni -\nTa sprawiedliwo\u015b\u0107 Boga, jak kwa\u015bny deszcz spuszczony,\nGdy trzeba by\u0142o sia\u0107, a my\u015bmy tylko zbierali plony.", + "body_length": 1273, + "cashout_time": "2016-09-18T21:19:45", + "category": "polska", + "children": 1, + "created": "2016-08-18T21:19:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"polska\",\"wolnosc\",\"ojczyzna\",\"patriotyzm\",\"wiersz\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T21:19:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53926980, + "parent_author": "", + "parent_permlink": "polska", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "nasienie-wolnosci", + "post_id": 661285, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Nasienie Wolno\u015bci", + "title": "Nasienie Wolno\u015bci", + "total_payout_value": "0.000 HBD", + "url": "/polska/@simgregg/nasienie-wolnosci" + } +] diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index ecf901b8..9f102173 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -584,7 +584,7 @@ test_name: Hivemind condenser_api.get_account_reputations patterns test marks: - - patterntest + - patterntest # to be changed for account that has some reputation includes: - !include common.yaml @@ -644,7 +644,7 @@ marks: - patterntest - failing - - xfail # wrong pattern, wrong test params (empty result) + - xfail # server error (to be investigated) includes: - !include common.yaml @@ -660,7 +660,7 @@ jsonrpc: "2.0" id: 1 method: "condenser_api.get_accounts" - params: ["steemit"] + params: [["steemit"]] response: status_code: 200 verify_response_with: diff --git a/hivemind/tavern/test_database_api_patterns.tavern.yaml b/hivemind/tavern/test_database_api_patterns.tavern.yaml index 0e6cf8a6..01ca198d 100644 --- a/hivemind/tavern/test_database_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_database_api_patterns.tavern.yaml @@ -393,7 +393,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest - failing - - xfail # plenty of differences but comparable + - xfail # plenty of differences but comparable (to be investigated, start with last_payout, potentially result of deletion and repost) includes: - !include common.yaml @@ -495,7 +495,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest - failing - - xfail # plenty of differences but comparable + - xfail # plenty of differences but comparable (to be investigated, start with last_payout) includes: - !include common.yaml @@ -643,7 +643,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" req marks: - patterntest - failing - - xfail # plenty of differences but comparable + - xfail # active, payouts, children_abs_shares includes: - !include common.yaml @@ -679,7 +679,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" req marks: - patterntest - failing - - xfail # plenty of differences but comparable + - xfail # active, payouts, children_abs_rshares includes: - !include common.yaml @@ -715,7 +715,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" all marks: - patterntest - failing - - xfail # plenty of differences but comparable + - xfail # active, payouts includes: - !include common.yaml @@ -857,7 +857,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" marks: - patterntest - failing - - xfail # active, cashout_time, last_payout + - xfail # active includes: - !include common.yaml @@ -966,7 +966,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" r marks: - patterntest - failing - - xfail # active, cashout_time, last_payout + - xfail # active includes: - !include common.yaml @@ -1038,7 +1038,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" a marks: - patterntest - failing - - xfail # multiple problems but comparable + - xfail # active includes: - !include common.yaml diff --git a/hivemind/tavern/test_follow_api_patterns.tavern.yaml b/hivemind/tavern/test_follow_api_patterns.tavern.yaml index 82eb2095..fbe1c9a0 100644 --- a/hivemind/tavern/test_follow_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_follow_api_patterns.tavern.yaml @@ -89,7 +89,7 @@ test_name: Hivemind follow_api.get_account_reputations patterns test marks: - - patterntest + - patterntest # to be changed for account that has some reputation includes: - !include common.yaml -- GitLab From 04009d68c33226476061412f59f8000dfb4b462f Mon Sep 17 00:00:00 2001 From: ABW Date: Thu, 20 Aug 2020 15:48:20 +0200 Subject: [PATCH 30/49] [ABW]: removed patterns with no related tests --- .../get_community_context.pat.json | 1 - .../list_pop_communities.pat.json | 1 - .../normalize_post.pat.json | 1 - .../get_account_votes.pat.json | 1 - .../list_comments_author_last_update.pat.json | 494 ------------------ .../get_blog_authors.pat.json | 1 - .../follow_api_patterns/get_feed.pat.json | 1 - .../get_feed_entries.pat.json | 1 - .../get_account_votes.pat.json | 9 - .../get_active_votes.pat.json | 0 .../get_discussions_by_active.pat.json | 0 .../get_discussions_by_cashout.pat.json | 1 - .../get_discussions_by_children.pat.json | 1 - .../get_discussions_by_votes.pat.json | 1 - .../get_tags_used_by_author.pat.json | 0 15 files changed, 513 deletions(-) delete mode 100644 hivemind/tavern/bridge_api_patterns/get_community_context.pat.json delete mode 100644 hivemind/tavern/bridge_api_patterns/list_pop_communities.pat.json delete mode 100644 hivemind/tavern/bridge_api_patterns/normalize_post.pat.json delete mode 100644 hivemind/tavern/condenser_api_patterns/get_account_votes.pat.json delete mode 100644 hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json delete mode 100644 hivemind/tavern/follow_api_patterns/get_blog_authors.pat.json delete mode 100644 hivemind/tavern/follow_api_patterns/get_feed.pat.json delete mode 100644 hivemind/tavern/follow_api_patterns/get_feed_entries.pat.json delete mode 100644 hivemind/tavern/tags_api_patterns/get_account_votes.pat.json delete mode 100644 hivemind/tavern/tags_api_patterns/get_active_votes.pat.json delete mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_active.pat.json delete mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_cashout.pat.json delete mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_children.pat.json delete mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_votes.pat.json delete mode 100644 hivemind/tavern/tags_api_patterns/get_tags_used_by_author.pat.json diff --git a/hivemind/tavern/bridge_api_patterns/get_community_context.pat.json b/hivemind/tavern/bridge_api_patterns/get_community_context.pat.json deleted file mode 100644 index ec747fa4..00000000 --- a/hivemind/tavern/bridge_api_patterns/get_community_context.pat.json +++ /dev/null @@ -1 +0,0 @@ -null \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/list_pop_communities.pat.json b/hivemind/tavern/bridge_api_patterns/list_pop_communities.pat.json deleted file mode 100644 index ec747fa4..00000000 --- a/hivemind/tavern/bridge_api_patterns/list_pop_communities.pat.json +++ /dev/null @@ -1 +0,0 @@ -null \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/normalize_post.pat.json b/hivemind/tavern/bridge_api_patterns/normalize_post.pat.json deleted file mode 100644 index ec747fa4..00000000 --- a/hivemind/tavern/bridge_api_patterns/normalize_post.pat.json +++ /dev/null @@ -1 +0,0 @@ -null \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_account_votes.pat.json b/hivemind/tavern/condenser_api_patterns/get_account_votes.pat.json deleted file mode 100644 index 9e26dfee..00000000 --- a/hivemind/tavern/condenser_api_patterns/get_account_votes.pat.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json deleted file mode 100644 index d63a583c..00000000 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json +++ /dev/null @@ -1,494 +0,0 @@ -{ - "comments": [ - { - "id": 361895, - "author": "agent", - "permlink": "re-a-spears-re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t213427581z", - "category": "life", - "parent_author": "a-spears", - "parent_permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", - "title": "", - "body": "haha, you're welcome, happy someone thinks the same way too!", - "json_metadata": "{\"tags\":[\"life\"]}", - "last_update": "2016-07-30T21:34:27", - "created": "2016-07-30T21:34:27", - "active": "2016-07-30T21:34:27", - "last_payout": "2016-08-30T10:16:39", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "agent", - "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_hbd": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 72637, - "author": "ashleybr", - "permlink": "re-a-spears-re-ashleybr-test-20160713t210145406z", - "category": "travel", - "parent_author": "a-spears", - "parent_permlink": "re-ashleybr-test-20160713t203411015z", - "title": "", - "body": "wow you are so kind, thank you sooo much for trying to help me! I appreciate it so much! I actually managed to get a hotel for the night now, but please tell your friend thank you so much from the bottom of my heart.", - "json_metadata": "{\"tags\":[\"travel\"]}", - "last_update": "2016-07-13T21:01:48", - "created": "2016-07-13T21:01:48", - "active": "2016-07-13T21:01:48", - "last_payout": "2016-08-25T12:51:45", - "depth": 2, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "ashleybr", - "root_permlink": "test", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_hbd": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 863165, - "author": "irit", - "permlink": "re-harvard-republican-club-refuses-to-endorse-donald-trump", - "category": "politics", - "parent_author": "a11at", - "parent_permlink": "harvard-republican-club-refuses-to-endorse-donald-trump", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-05T14:22:54", - "created": "2016-09-05T14:22:54", - "active": "2016-09-05T14:22:54", - "last_payout": "2016-09-07T09:22:36", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 0, - "root_author": "a11at", - "root_permlink": "harvard-republican-club-refuses-to-endorse-donald-trump", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_hbd": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 833045, - "author": "irit", - "permlink": "re-disney-launches-its-own-messaging-app-disney-mix-aimed-at-kids-and-families", - "category": "disney", - "parent_author": "a11at", - "parent_permlink": "disney-launches-its-own-messaging-app-disney-mix-aimed-at-kids-and-families", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-02T09:40:42", - "created": "2016-09-02T09:40:42", - "active": "2016-09-02T09:40:42", - "last_payout": "2016-09-05T10:19:09", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "a11at", - "root_permlink": "disney-launches-its-own-messaging-app-disney-mix-aimed-at-kids-and-families", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_hbd": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 832230, - "author": "irit", - "permlink": "re-kim-woojin-breaks-world-record-in-qualifying-at-rio-olympics", - "category": "record", - "parent_author": "a11at", - "parent_permlink": "kim-woojin-breaks-world-record-in-qualifying-at-rio-olympics", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-02T07:12:45", - "created": "2016-09-02T07:12:45", - "active": "2016-09-02T07:12:45", - "last_payout": "2016-09-05T09:30:45", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "a11at", - "root_permlink": "kim-woojin-breaks-world-record-in-qualifying-at-rio-olympics", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_hbd": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 832042, - "author": "irit", - "permlink": "re-mother-and-son-team-up-for-a-games-first", - "category": "olimpic", - "parent_author": "a11at", - "parent_permlink": "mother-and-son-team-up-for-a-games-first", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-02T06:30:45", - "created": "2016-09-02T06:30:45", - "active": "2016-09-02T06:30:45", - "last_payout": "2016-09-05T09:21:30", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "a11at", - "root_permlink": "mother-and-son-team-up-for-a-games-first", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_hbd": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 831959, - "author": "irit", - "permlink": "re-audi-rs-q3-fl", - "category": "audi", - "parent_author": "a11at", - "parent_permlink": "audi-rs-q3-fl", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-02T06:08:54", - "created": "2016-09-02T06:08:54", - "active": "2016-09-02T06:08:54", - "last_payout": "2016-09-05T10:11:36", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "a11at", - "root_permlink": "audi-rs-q3-fl", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_hbd": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 831734, - "author": "irit", - "permlink": "re-uber-visa-rio", - "category": "visa", - "parent_author": "a11at", - "parent_permlink": "uber-visa-rio", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-02T05:29:21", - "created": "2016-09-02T05:29:21", - "active": "2016-09-02T05:29:21", - "last_payout": "2016-09-05T08:52:03", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "a11at", - "root_permlink": "uber-visa-rio", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_hbd": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 831410, - "author": "irit", - "permlink": "re-greek-pizza", - "category": "pizza", - "parent_author": "a11at", - "parent_permlink": "greek-pizza", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-02T04:30:03", - "created": "2016-09-02T04:30:03", - "active": "2016-09-02T04:30:03", - "last_payout": "2016-09-05T08:39:48", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "a11at", - "root_permlink": "greek-pizza", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_hbd": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - }, - { - "id": 831270, - "author": "irit", - "permlink": "re-wsj-features-coins-ph-as-part-of-a-new-wave-of-financial-services-built-around-smartphones", - "category": "coinsph", - "parent_author": "a11at", - "parent_permlink": "wsj-features-coins-ph-as-part-of-a-new-wave-of-financial-services-built-around-smartphones", - "title": "", - "body": "I upvote U", - "json_metadata": "{}", - "last_update": "2016-09-02T04:09:24", - "created": "2016-09-02T04:09:24", - "active": "2016-09-02T04:09:24", - "last_payout": "2016-09-05T08:53:03", - "depth": 1, - "children": 0, - "net_rshares": 0, - "abs_rshares": 0, - "vote_rshares": 0, - "children_abs_rshares": 0, - "cashout_time": "1969-12-31T23:59:59", - "max_cashout_time": "1969-12-31T23:59:59", - "total_vote_weight": 0, - "reward_weight": 10000, - "total_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "curator_payout_value": { - "amount": "0", - "precision": 3, - "nai": "@@000000013" - }, - "author_rewards": 0, - "net_votes": 1, - "root_author": "a11at", - "root_permlink": "wsj-features-coins-ph-as-part-of-a-new-wave-of-financial-services-built-around-smartphones", - "max_accepted_payout": { - "amount": "1000000000", - "precision": 3, - "nai": "@@000000013" - }, - "percent_hbd": 10000, - "allow_replies": true, - "allow_votes": true, - "allow_curation_rewards": true, - "beneficiaries": [] - } - ] -} \ No newline at end of file diff --git a/hivemind/tavern/follow_api_patterns/get_blog_authors.pat.json b/hivemind/tavern/follow_api_patterns/get_blog_authors.pat.json deleted file mode 100644 index ec747fa4..00000000 --- a/hivemind/tavern/follow_api_patterns/get_blog_authors.pat.json +++ /dev/null @@ -1 +0,0 @@ -null \ No newline at end of file diff --git a/hivemind/tavern/follow_api_patterns/get_feed.pat.json b/hivemind/tavern/follow_api_patterns/get_feed.pat.json deleted file mode 100644 index ec747fa4..00000000 --- a/hivemind/tavern/follow_api_patterns/get_feed.pat.json +++ /dev/null @@ -1 +0,0 @@ -null \ No newline at end of file diff --git a/hivemind/tavern/follow_api_patterns/get_feed_entries.pat.json b/hivemind/tavern/follow_api_patterns/get_feed_entries.pat.json deleted file mode 100644 index ec747fa4..00000000 --- a/hivemind/tavern/follow_api_patterns/get_feed_entries.pat.json +++ /dev/null @@ -1 +0,0 @@ -null \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_account_votes.pat.json b/hivemind/tavern/tags_api_patterns/get_account_votes.pat.json deleted file mode 100644 index 029e778e..00000000 --- a/hivemind/tavern/tags_api_patterns/get_account_votes.pat.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "jsonrpc": "2.0", - "error": { - "code": -32000, - "message": "Server error", - "data": "ApiError: get_account_votes is no longer supported, for details see https://steemit.com/steemit/@steemitdev/additional-public-api-change" - }, - "id": 1 -} diff --git a/hivemind/tavern/tags_api_patterns/get_active_votes.pat.json b/hivemind/tavern/tags_api_patterns/get_active_votes.pat.json deleted file mode 100644 index e69de29b..00000000 diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_active.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_active.pat.json deleted file mode 100644 index e69de29b..00000000 diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_cashout.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_cashout.pat.json deleted file mode 100644 index ec747fa4..00000000 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_cashout.pat.json +++ /dev/null @@ -1 +0,0 @@ -null \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_children.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_children.pat.json deleted file mode 100644 index ec747fa4..00000000 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_children.pat.json +++ /dev/null @@ -1 +0,0 @@ -null \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_votes.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_votes.pat.json deleted file mode 100644 index ec747fa4..00000000 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_votes.pat.json +++ /dev/null @@ -1 +0,0 @@ -null \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_tags_used_by_author.pat.json b/hivemind/tavern/tags_api_patterns/get_tags_used_by_author.pat.json deleted file mode 100644 index e69de29b..00000000 -- GitLab From 67993d3ecda0ed3c2f2c2878b7d628921d520ed2 Mon Sep 17 00:00:00 2001 From: ABW Date: Thu, 20 Aug 2020 16:05:02 +0200 Subject: [PATCH 31/49] [ABW]: unneeded file removed --- hivemind/tavern/_test_patterns.tavern.yaml | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 hivemind/tavern/_test_patterns.tavern.yaml diff --git a/hivemind/tavern/_test_patterns.tavern.yaml b/hivemind/tavern/_test_patterns.tavern.yaml deleted file mode 100644 index 23b112a4..00000000 --- a/hivemind/tavern/_test_patterns.tavern.yaml +++ /dev/null @@ -1,39 +0,0 @@ -test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" all data - -marks: - - patterntest - - failing - - xfail # incomparable (problem with ordering most likely) - -includes: - - !include common.yaml - -stages: - - name: list_comments_by_cashout_time - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "database_api.list_comments" - params: - { - "start": - [ - "1969-12-31T23:59:59", - "proskynneo", - "steemit-firstpost-1", - ], - "limit": 10, - "order": "by_cashout_time", - } - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_comments_by_cashout_time_all_data" - directory: "database_api_patterns" -- GitLab From 385a6826f33d7818ba0e04bb2144bf5f275d1acf Mon Sep 17 00:00:00 2001 From: Marcin Ickiewicz Date: Mon, 24 Aug 2020 08:26:22 +0200 Subject: [PATCH 32/49] some tests with active date started to passes --- hivemind/tavern/test_database_api_patterns.tavern.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/hivemind/tavern/test_database_api_patterns.tavern.yaml b/hivemind/tavern/test_database_api_patterns.tavern.yaml index 01ca198d..0133871c 100644 --- a/hivemind/tavern/test_database_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_database_api_patterns.tavern.yaml @@ -856,8 +856,6 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" marks: - patterntest - - failing - - xfail # active includes: - !include common.yaml @@ -928,8 +926,6 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest - - failing - - xfail # active; second param is required includes: @@ -965,8 +961,6 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" r marks: - patterntest - - failing - - xfail # active includes: - !include common.yaml @@ -1037,8 +1031,6 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" a marks: - patterntest - - failing - - xfail # active includes: - !include common.yaml -- GitLab From 49f72a6eb010706d6f4bef699c0793768995aa1f Mon Sep 17 00:00:00 2001 From: Pawel Maniora Date: Mon, 24 Aug 2020 12:45:29 +0200 Subject: [PATCH 33/49] relationship_between_accounts tests --- ...get_relationship_between_accounts.pat.json | 7 ++ ...tionship_between_accounts_follows.pat.json | 7 ++ ...tionship_between_accounts_ignores.pat.json | 7 ++ .../test_bridge_api_patterns.tavern.yaml | 88 ++++++++++++++++++- 4 files changed, 108 insertions(+), 1 deletion(-) create mode 100644 hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_follows.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_ignores.pat.json diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.pat.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.pat.json new file mode 100644 index 00000000..93da2992 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.pat.json @@ -0,0 +1,7 @@ +{ + "follows": false, + "follows_blacklists": false, + "ignores": false, + "is_blacklisted": false + } + \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_follows.pat.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_follows.pat.json new file mode 100644 index 00000000..74a70824 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_follows.pat.json @@ -0,0 +1,7 @@ +{ + "follows": true, + "follows_blacklists": false, + "ignores": false, + "is_blacklisted": false + } + \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_ignores.pat.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_ignores.pat.json new file mode 100644 index 00000000..f75de7a2 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_ignores.pat.json @@ -0,0 +1,7 @@ +{ + "follows": false, + "follows_blacklists": false, + "ignores": true, + "is_blacklisted": false + } + \ No newline at end of file diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index aa49709c..c4f77385 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -1148,4 +1148,90 @@ function: validate_response:compare_response_with_pattern extra_kwargs: method: "list_all_subscriptions" - directory: "bridge_api_patterns" \ No newline at end of file + directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test + + marks: + - patterntest # no nonempty result possible for 5mln set + + includes: + - !include common.yaml + + stages: + - name: get_relationship_between_accounts + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_relationship_between_accounts" + params: {"account1": "steemit", "account2": "good-karma"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_relationship_between_accounts" + directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_relationship_between_accounts follows patterns test + + marks: + - patterntest # no nonempty result possible for 5mln set + + includes: + - !include common.yaml + + stages: + - name: get_relationship_between_accounts follows + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_relationship_between_accounts" + params: {"account1": "good-karma", "account2": "steemit"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_relationship_between_accounts_follows" + directory: "bridge_api_patterns" +--- + test_name: Hivemind bridge_api.get_relationship_between_accounts ignores patterns test + + marks: + - patterntest # no nonempty result possible for 5mln set + + includes: + - !include common.yaml + + stages: + - name: get_relationship_between_accounts ignores + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_relationship_between_accounts" + params: {"account1": "tuck-fheman", "account2": "tonyson"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_relationship_between_accounts_ignores" + directory: "bridge_api_patterns" + +# get_relationship_between_accounts is_blacklisted and follows_blacklists should be implemented after switching to tests over 5 mln blocks. \ No newline at end of file -- GitLab From 749accceb2b31e7e2632840963f5aa0c7a33ecbc Mon Sep 17 00:00:00 2001 From: Pawel Maniora Date: Mon, 24 Aug 2020 13:27:41 +0200 Subject: [PATCH 34/49] revert correct patterns for new version --- .../bridge_api_patterns/get_profile.pat.json | 4 +- .../get_ranked_posts.pat.json | 25174 ++++++++-------- .../get_account_reputations.pat.json | 4 +- ...get_comment_discussions_by_payout.pat.json | 10 +- .../get_discussions_by_hot.pat.json | 2 +- .../get_discussions_by_promoted.pat.json | 2 +- .../condenser_api_patterns/get_state.pat.json | 872 +- 7 files changed, 13258 insertions(+), 12810 deletions(-) diff --git a/hivemind/tavern/bridge_api_patterns/get_profile.pat.json b/hivemind/tavern/bridge_api_patterns/get_profile.pat.json index 12579ac9..c3d9688c 100644 --- a/hivemind/tavern/bridge_api_patterns/get_profile.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_profile.pat.json @@ -1,8 +1,8 @@ { "active": "1970-01-01T00:00:00", "blacklists": [], - "created": "2016-03-24T17:00:24", - "id": 31, + "created": "2016-03-24T17:00:21", + "id": 29, "metadata": { "profile": { "about": null, diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json index ca3a8ca6..9b2214d4 100644 --- a/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json @@ -1,23932 +1,23932 @@ [ { - "post_id": 960290, - "author": "dollarvigilante", - "permlink": "another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", - "category": "money", - "title": "Another Billionaire Warns of Catastrophic Depths Not Seen in 5,000 Years - and Emphasizes Gold", - "body": "
https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg
\n\nIn past issues, we’ve documented increasingly concerned billionaires warning of dangerous economic times. Many have favored gold as an alternative allocation in a world where $13 trillion-worth of debt is negative yielding, interest rates are artificially suppressed and we’re on the brink of major wars.\n\nThe newest addition to this gold-loving billionaire's club, is none other than hedge-fund manager Paul Singer. At CNBC’s Delivering Alpha Investors Conference this week, the founder of the $27-billion Elliott Management Fund, the 17th largest hedge fund in the world, mentioned that at current prices gold is “undervalued” and “underrepresented in many portfolios as the only ... store of value that has stood the test of time.”\n\nSinger, along with numerous other hedge-fund managers, has been increasingly outspoken in his criticism of the Federal Reserve and other central banks for creating dangers in the market unlike any in what he terms the “5,000 year-ish” history of finance. Singer noted that “it's a very dangerous time in the global economy and global financial markets.\"\n\nThis quote is frighteningly similar to the response given by Donald Trump on Fox Business not long ago when he was asked if he had money in the market. He answered, “I did, but I got out,” and then went on to say that he expected “very scary scenarios” for investors.\n\nSinger also stated that he thinks owning medium- to long-term first world debt is a “really bad idea”... and then proceeded to tell listeners to sell their 30-year bonds.\n\nEarlier in the conference, prior to Singer, Ray Dalio who is the manager of the largest hedge fund in the world, Bridgewater Capital, was also vocal about the diminishing returns provided by government debt held by central banks. “There’s only so much you can squeeze out of the debt cycle,\" he said. He went on to say that central banks are at a point now where their ability to stimulate is limited.\n\nSeated next to Dalio was Former Treasury secretary Timothy Geithner who voiced concern about limited “tools in the keynesian arsenal,” that probably wouldn’t be enough to offset the next recession.\n\nGeithner obviously believes that a recession is on the way. Dalio and Singer are trying to convey the same message. A massive crunch is looming.\n\nWe agree with them, although we believe Geithner was sugarcoating what’s to come.\n\nAfter all, we are on the precipice of a crash of biblical proportions according to the former chief economist of the Bank for International Settlements, William White.\n\nWe have mentioned his quote numerous time here at TDV but feel it’s important to reiterate because of its magnitude: “The only question is whether we are able to look reality in the eye and face what is coming in an orderly fashion, or whether it will be disorderly. Debt jubilees have been going on for 5,000 years, as far back as the Sumerians.”\n\nAs the Fed considers its second rate hike in 10 years, Singer condemned policy-makers for acting with “amazing arrogance” when he and others had warned of a mortgage crisis prior to 2008.\n\nWhat he and those who agreed with his stance don’t know, or at least won’t state publicly, is that these shoddy central bank policies are detrimental by design. In other words, their sole purpose is to destabilize the world economy.\n\nThis deliberate market sabotage is necessary for the transference of power from the more developed nations to less developed ones. Ultimately, the idea is to eliminate smaller regional and national central banks. Once things get bad enough, these smaller banks will be blamed for provoking a given crisis. And, secondarily, the end goal is to blow up the entire system in order to bring in the one world government and central bank.\n\nThe elites have used the same tactics time and time again throughout history. First, they create the problem, then there is a reaction, and then finally they come swooping in to “valiantly save” the day. It's happened numerous times before.\n
https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png
\nAnd it will soon happen again.\n\nOf course, the globalists have demonstrated that every intervention only makes situations worse.\n\nWe reported on the blatant thievery going on at Wells Fargo in our last article and noted how the elites were probably laughing hysterically at what they’re able to get away with. They were even able to convince many younger American voters that “democratic socialism” would be their savior, as seen by the significant, youthful support for Bernie Slanders. Debt and currency crises have already started to materialize, as we’ve seen in the socialist utopia that is Venezuela. If this is any indication of what’s to come, the future is looking awfully gloomy.\n\nAs Singer and others including Dalio have mentioned before, the most tried and true measure of wealth and value is gold.\n\nAt TDV we provide unique Austrian-economics based analysis from the anarcho-capitalist pespective of the state of the world’s economy, as well as suggestions on how to protect your assets in these tempestuous and unprecedented times.\n\nJacob Rothschild, a member of the family partly responsible for the creation of all this chaos, even said himself that we are in “uncharted waters” and that it’s “impossible to predict the unintended consequences of very low interest rates.”\n\nWe have a pretty good idea of what the consequences will be and we’re taking action to protect ourselves and even profit from them. Rothschild seems to know the consequences, as well, as he has been buying up gold and selling the stock market and the US dollar.\n\nYou can survive and profit from the orchestrated collapse too. Subscribe to TDV’s newsletter here to receive constantly updated information on how to protect your family and friends.\n\nIn the end, it is getting truly bizarre just how many billionaires, central bankers and others of note are all warning of the coming collapse. We’d almost begun to worry that they were going to pull a switch-a-roo on us, but if you asked the great majority of investors and financial analysts, they’ll tell you that they see nothing but smooth sailing ahead.\n\nSo, while many are warning, many are hearing, but not listening. The bible said something about that, I believe.\n
https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg
", - "json_metadata": { - "tags": [ - "money", - "gold", - "silver", - "bitcoin", - "crisis" - ], - "image": [ - "https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg", - "https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png", - "https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg" - ], - "links": [ - "https://dollarvigilante.com/subscribe" - ] - }, - "created": "2016-09-15T18:23:15", - "updated": "2016-09-15T18:23:15", - "depth": 0, - "children": 23, - "net_rshares": 102136532384242, - "is_paidout": false, - "payout_at": "2016-09-16T18:47:28", - "payout": 596.997, - "pending_payout_value": "596.997 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], "active_votes": [ { - "voter": "dantheman", - "rshares": "28370463371572" + "rshares": "28370463371572", + "voter": "dantheman" }, { - "voter": "smooth", - "rshares": "31307487536364" + "rshares": "31307487536364", + "voter": "smooth" }, { - "voter": "anonymous", - "rshares": "231809639013" + "rshares": "231809639013", + "voter": "anonymous" }, { - "voter": "diaphanous", - "rshares": "2321962618319" + "rshares": "2321962618319", + "voter": "diaphanous" }, { - "voter": "commedy", - "rshares": "1469558503443" + "rshares": "1469558503443", + "voter": "commedy" }, { - "voter": "riverhead", - "rshares": "4287714457313" + "rshares": "4287714457313", + "voter": "riverhead" }, { - "voter": "badassmother", - "rshares": "1856006073992" + "rshares": "1856006073992", + "voter": "badassmother" }, { - "voter": "rossco99", - "rshares": "1271804694676" + "rshares": "1271804694676", + "voter": "rossco99" }, { - "voter": "wang", - "rshares": "2206068741954" + "rshares": "2206068741954", + "voter": "wang" }, { - "voter": "xeroc", - "rshares": "1950753758979" + "rshares": "1950753758979", + "voter": "xeroc" }, { - "voter": "joseph", - "rshares": "1534707047296" + "rshares": "1534707047296", + "voter": "joseph" }, { - "voter": "recursive3", - "rshares": "452874558937" + "rshares": "452874558937", + "voter": "recursive3" }, { - "voter": "masteryoda", - "rshares": "620996029765" + "rshares": "620996029765", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120582597678" + "rshares": "3120582597678", + "voter": "recursive" }, { - "voter": "lee2", - "rshares": "440845842" + "rshares": "440845842", + "voter": "lee2" }, { - "voter": "lee3", - "rshares": "26932201065" + "rshares": "26932201065", + "voter": "lee3" }, { - "voter": "lee4", - "rshares": "8677295375" + "rshares": "8677295375", + "voter": "lee4" }, { - "voter": "lee5", - "rshares": "22149018521" + "rshares": "22149018521", + "voter": "lee5" }, { - "voter": "smooth.witness", - "rshares": "5942299654212" + "rshares": "5942299654212", + "voter": "smooth.witness" }, { - "voter": "idol", - "rshares": "8927291120" + "rshares": "8927291120", + "voter": "idol" }, { - "voter": "sakr", - "rshares": "4941942978" + "rshares": "4941942978", + "voter": "sakr" }, { - "voter": "unosuke", - "rshares": "57625926227" + "rshares": "57625926227", + "voter": "unosuke" }, { - "voter": "jocelyn", - "rshares": "1536592488" + "rshares": "1536592488", + "voter": "jocelyn" }, { - "voter": "gregory-f", - "rshares": "14818263059" + "rshares": "14818263059", + "voter": "gregory-f" }, { - "voter": "edgeland", - "rshares": "154334962550" + "rshares": "154334962550", + "voter": "edgeland" }, { - "voter": "gregory60", - "rshares": "8836453529" + "rshares": "8836453529", + "voter": "gregory60" }, { - "voter": "full-measure", - "rshares": "29596510808" + "rshares": "29596510808", + "voter": "full-measure" }, { - "voter": "eeks", - "rshares": "104880949618" + "rshares": "104880949618", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "24694558802" + "rshares": "24694558802", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "468281676" + "rshares": "468281676", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "5641697991" + "rshares": "5641697991", + "voter": "spaninv" }, { - "voter": "elishagh1", - "rshares": "32459455171" + "rshares": "32459455171", + "voter": "elishagh1" }, { - "voter": "himalayanguru", - "rshares": "40391466193" + "rshares": "40391466193", + "voter": "himalayanguru" }, { - "voter": "nanzo-scoop", - "rshares": "584291107228" + "rshares": "584291107228", + "voter": "nanzo-scoop" }, { - "voter": "steve-walschot", - "rshares": "178471627922" + "rshares": "178471627922", + "voter": "steve-walschot" }, { - "voter": "kefkius", - "rshares": "9857825141" + "rshares": "9857825141", + "voter": "kefkius" }, { - "voter": "mummyimperfect", - "rshares": "177420844935" + "rshares": "177420844935", + "voter": "mummyimperfect" }, { - "voter": "asch", - "rshares": "106635691300" + "rshares": "106635691300", + "voter": "asch" }, { - "voter": "kevinwong", - "rshares": "616864092786" + "rshares": "616864092786", + "voter": "kevinwong" }, { - "voter": "murh", - "rshares": "1061266533" + "rshares": "1061266533", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6230798580" + "rshares": "6230798580", + "voter": "cryptofunk" }, { - "voter": "kodi", - "rshares": "579494558" + "rshares": "579494558", + "voter": "kodi" }, { - "voter": "error", - "rshares": "2003359924" + "rshares": "2003359924", + "voter": "error" }, { - "voter": "andu", - "rshares": "11584833708" + "rshares": "11584833708", + "voter": "andu" }, { - "voter": "ranko-k", - "rshares": "40553122820" + "rshares": "40553122820", + "voter": "ranko-k" }, { - "voter": "cyber", - "rshares": "962089879337" + "rshares": "962089879337", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "58188888655" + "rshares": "58188888655", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "49581045086" + "rshares": "49581045086", + "voter": "ak2020" }, { - "voter": "satoshifund", - "rshares": "3848697023555" + "rshares": "3848697023555", + "voter": "satoshifund" }, { - "voter": "applecrisp", - "rshares": "402139444" + "rshares": "402139444", + "voter": "applecrisp" }, { - "voter": "altoz", - "rshares": "36407027386" + "rshares": "36407027386", + "voter": "altoz" }, { - "voter": "stiletto", - "rshares": "365370465" + "rshares": "365370465", + "voter": "stiletto" }, { - "voter": "juanmiguelsalas", - "rshares": "55577467736" + "rshares": "55577467736", + "voter": "juanmiguelsalas" }, { - "voter": "will-zewe", - "rshares": "219283354085" + "rshares": "219283354085", + "voter": "will-zewe" }, { - "voter": "herzmeister", - "rshares": "87300558689" + "rshares": "87300558689", + "voter": "herzmeister" }, { - "voter": "trogdor", - "rshares": "275016906945" + "rshares": "275016906945", + "voter": "trogdor" }, { - "voter": "tee-em", - "rshares": "5287820211" + "rshares": "5287820211", + "voter": "tee-em" }, { - "voter": "michaelx", - "rshares": "31346001722" + "rshares": "31346001722", + "voter": "michaelx" }, { - "voter": "thedashguy", - "rshares": "179395106552" + "rshares": "179395106552", + "voter": "thedashguy" }, { - "voter": "usefree", - "rshares": "4682885200" + "rshares": "4682885200", + "voter": "usefree" }, { - "voter": "mexbit", - "rshares": "189626835254" + "rshares": "189626835254", + "voter": "mexbit" }, { - "voter": "mark-waser", - "rshares": "5821262190" + "rshares": "5821262190", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "118356217412" + "rshares": "118356217412", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "208362110567" + "rshares": "208362110567", + "voter": "kimziv" }, { - "voter": "honeythief", - "rshares": "46266779182" + "rshares": "46266779182", + "voter": "honeythief" }, { - "voter": "emily-cook", - "rshares": "75334808165" + "rshares": "75334808165", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187607792" + "rshares": "2187607792", + "voter": "superfreek" }, { - "voter": "mrhankeh", - "rshares": "484636799" + "rshares": "484636799", + "voter": "mrhankeh" }, { - "voter": "grey580", - "rshares": "17908924002" + "rshares": "17908924002", + "voter": "grey580" }, { - "voter": "ladyclair", - "rshares": "275327756" + "rshares": "275327756", + "voter": "ladyclair" }, { - "voter": "bacchist", - "rshares": "68449861599" + "rshares": "68449861599", + "voter": "bacchist" }, { - "voter": "good-karma", - "rshares": "60315479782" + "rshares": "60315479782", + "voter": "good-karma" }, { - "voter": "orly", - "rshares": "3350419346" + "rshares": "3350419346", + "voter": "orly" }, { - "voter": "riscadox", - "rshares": "5271030976" + "rshares": "5271030976", + "voter": "riscadox" }, { - "voter": "katyakov", - "rshares": "24867575018" + "rshares": "24867575018", + "voter": "katyakov" }, { - "voter": "fabio", - "rshares": "373878481829" + "rshares": "373878481829", + "voter": "fabio" }, { - "voter": "tcfxyz", - "rshares": "25057642057" + "rshares": "25057642057", + "voter": "tcfxyz" }, { - "voter": "futurefood", - "rshares": "6939984054" + "rshares": "6939984054", + "voter": "futurefood" }, { - "voter": "rxhector", - "rshares": "734082781" + "rshares": "734082781", + "voter": "rxhector" }, { - "voter": "furion", - "rshares": "118094280271" + "rshares": "118094280271", + "voter": "furion" }, { - "voter": "cdubendo", - "rshares": "105911917280" + "rshares": "105911917280", + "voter": "cdubendo" }, { - "voter": "barbara2", - "rshares": "578386960" + "rshares": "578386960", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "642869652" + "rshares": "642869652", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "594982040" + "rshares": "594982040", + "voter": "doge4lyf" }, { - "voter": "gord0b", - "rshares": "12668641443" + "rshares": "12668641443", + "voter": "gord0b" }, { - "voter": "steem1653", - "rshares": "2632460141" + "rshares": "2632460141", + "voter": "steem1653" }, { - "voter": "cynetyc", - "rshares": "136322030" + "rshares": "136322030", + "voter": "cynetyc" }, { - "voter": "steemit-life", - "rshares": "25221166135" + "rshares": "25221166135", + "voter": "steemit-life" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "thegoodguy", - "rshares": "5357326058" + "rshares": "5357326058", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "14168336425" + "rshares": "14168336425", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209533734" + "rshares": "4209533734", + "voter": "karen13" }, { - "voter": "cryptosi", - "rshares": "6017253623" + "rshares": "6017253623", + "voter": "cryptosi" }, { - "voter": "nabilov", - "rshares": "251367062418" + "rshares": "251367062418", + "voter": "nabilov" }, { - "voter": "noodhoog", - "rshares": "8751103405" + "rshares": "8751103405", + "voter": "noodhoog" }, { - "voter": "milestone", - "rshares": "46859060143" + "rshares": "46859060143", + "voter": "milestone" }, { - "voter": "creemej", - "rshares": "33739229218" + "rshares": "33739229218", + "voter": "creemej" }, { - "voter": "wildchild", - "rshares": "87223247" + "rshares": "87223247", + "voter": "wildchild" }, { - "voter": "nippel66", - "rshares": "15070803886" + "rshares": "15070803886", + "voter": "nippel66" }, { - "voter": "phenom", - "rshares": "24417687626" + "rshares": "24417687626", + "voter": "phenom" }, { - "voter": "poseidon", - "rshares": "4545051592" + "rshares": "4545051592", + "voter": "poseidon" }, { - "voter": "smolalit", - "rshares": "7946812357" + "rshares": "7946812357", + "voter": "smolalit" }, { - "voter": "calaber24p", - "rshares": "362515598946" + "rshares": "362515598946", + "voter": "calaber24p" }, { - "voter": "jdenismusic", - "rshares": "147403710" + "rshares": "147403710", + "voter": "jdenismusic" }, { - "voter": "simon.braki.love", - "rshares": "3365797955" + "rshares": "3365797955", + "voter": "simon.braki.love" }, { - "voter": "thylbom", - "rshares": "82782405213" + "rshares": "82782405213", + "voter": "thylbom" }, { - "voter": "bitcoiner", - "rshares": "3709588060" + "rshares": "3709588060", + "voter": "bitcoiner" }, { - "voter": "deanliu", - "rshares": "32544157928" + "rshares": "32544157928", + "voter": "deanliu" }, { - "voter": "dmitriybtc", - "rshares": "4996306142" + "rshares": "4996306142", + "voter": "dmitriybtc" }, { - "voter": "jl777", - "rshares": "204618396015" + "rshares": "204618396015", + "voter": "jl777" }, { - "voter": "zaebars", - "rshares": "30989614870" + "rshares": "30989614870", + "voter": "zaebars" }, { - "voter": "positive", - "rshares": "20026634941" + "rshares": "20026634941", + "voter": "positive" }, { - "voter": "yarly", - "rshares": "1809205777" + "rshares": "1809205777", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "272641013" + "rshares": "272641013", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "273048922" + "rshares": "273048922", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "157733805" + "rshares": "157733805", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "158624349" + "rshares": "158624349", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "90416287" + "rshares": "90416287", + "voter": "yarly7" }, { - "voter": "raymonjohnstone", - "rshares": "799615699" + "rshares": "799615699", + "voter": "raymonjohnstone" }, { - "voter": "proto", - "rshares": "17267341753" + "rshares": "17267341753", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "34309455805" + "rshares": "34309455805", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "437620869" + "rshares": "437620869", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "234191245" + "rshares": "234191245", + "voter": "yarly11" }, { - "voter": "royalmacro", - "rshares": "8781903824" + "rshares": "8781903824", + "voter": "royalmacro" }, { - "voter": "yarly12", - "rshares": "81879061" + "rshares": "81879061", + "voter": "yarly12" }, { - "voter": "fnait", - "rshares": "674282213" + "rshares": "674282213", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "599033376" + "rshares": "599033376", + "voter": "keepcalmand" }, { - "voter": "steemster1", - "rshares": "146224042" + "rshares": "146224042", + "voter": "steemster1" }, { - "voter": "dmilash", - "rshares": "3022447454" + "rshares": "3022447454", + "voter": "dmilash" }, { - "voter": "andreynoch", - "rshares": "2002851358" + "rshares": "2002851358", + "voter": "andreynoch" }, { - "voter": "mahekg", - "rshares": "13359143286" + "rshares": "13359143286", + "voter": "mahekg" }, { - "voter": "gomeravibz", - "rshares": "50579277183" + "rshares": "50579277183", + "voter": "gomeravibz" }, { - "voter": "taker", - "rshares": "8734185109" + "rshares": "8734185109", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "12064042634" + "rshares": "12064042634", + "voter": "nekromarinist" }, { - "voter": "sharon", - "rshares": "57873464" + "rshares": "57873464", + "voter": "sharon" }, { - "voter": "dumar022", - "rshares": "10419645487" + "rshares": "10419645487", + "voter": "dumar022" }, { - "voter": "merej99", - "rshares": "2157207095" + "rshares": "2157207095", + "voter": "merej99" }, { - "voter": "lillianjones", - "rshares": "58971492" + "rshares": "58971492", + "voter": "lillianjones" }, { - "voter": "laonie", - "rshares": "1213299204686" + "rshares": "1213299204686", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "157521707420" + "rshares": "157521707420", + "voter": "twinner" }, { - "voter": "rawnetics", - "rshares": "23391691291" + "rshares": "23391691291", + "voter": "rawnetics" }, { - "voter": "laonie1", - "rshares": "22969142749" + "rshares": "22969142749", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "23485900426" + "rshares": "23485900426", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "23494195522" + "rshares": "23494195522", + "voter": "laonie3" }, { - "voter": "laoyao", - "rshares": "24562882668" + "rshares": "24562882668", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "42639811498" + "rshares": "42639811498", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "246279861104" + "rshares": "246279861104", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "9450505564" + "rshares": "9450505564", + "voter": "flysaga" }, { - "voter": "brendio", - "rshares": "5831615639" + "rshares": "5831615639", + "voter": "brendio" }, { - "voter": "gmurph", - "rshares": "2918578376" + "rshares": "2918578376", + "voter": "gmurph" }, { - "voter": "chris.roy", - "rshares": "3690744042" + "rshares": "3690744042", + "voter": "chris.roy" }, { - "voter": "midnightoil", - "rshares": "54405024034" + "rshares": "54405024034", + "voter": "midnightoil" }, { - "voter": "ullikume", - "rshares": "4190391188" + "rshares": "4190391188", + "voter": "ullikume" }, { - "voter": "laonie4", - "rshares": "23489872560" + "rshares": "23489872560", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "23487615266" + "rshares": "23487615266", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "23484637540" + "rshares": "23484637540", + "voter": "laonie6" }, { - "voter": "laonie7", - "rshares": "23480497322" + "rshares": "23480497322", + "voter": "laonie7" }, { - "voter": "kurtbeil", - "rshares": "3323984357" + "rshares": "3323984357", + "voter": "kurtbeil" }, { - "voter": "laonie8", - "rshares": "23477049244" + "rshares": "23477049244", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "23474334690" + "rshares": "23474334690", + "voter": "laonie9" }, { - "voter": "xiaohui", - "rshares": "136078574669" + "rshares": "136078574669", + "voter": "xiaohui" }, { - "voter": "jphamer1", - "rshares": "21112646631" + "rshares": "21112646631", + "voter": "jphamer1" }, { - "voter": "bigsambucca", - "rshares": "88206053" + "rshares": "88206053", + "voter": "bigsambucca" }, { - "voter": "elfkitchen", - "rshares": "6791986484" + "rshares": "6791986484", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "99935909954" + "rshares": "99935909954", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5855738054" + "rshares": "5855738054", + "voter": "oflyhigh" }, { - "voter": "randyclemens", - "rshares": "15860159560" + "rshares": "15860159560", + "voter": "randyclemens" }, { - "voter": "paynode", - "rshares": "2343183825" + "rshares": "2343183825", + "voter": "paynode" }, { - "voter": "xiaokongcom", - "rshares": "4366149629" + "rshares": "4366149629", + "voter": "xiaokongcom" }, { - "voter": "msjennifer", - "rshares": "59437351" + "rshares": "59437351", + "voter": "msjennifer" }, { - "voter": "ciao", - "rshares": "54654502" + "rshares": "54654502", + "voter": "ciao" }, { - "voter": "session101", - "rshares": "62928860" + "rshares": "62928860", + "voter": "session101" }, { - "voter": "steemo", - "rshares": "52985539" + "rshares": "52985539", + "voter": "steemo" }, { - "voter": "xianjun", - "rshares": "8801395051" + "rshares": "8801395051", + "voter": "xianjun" }, { - "voter": "steema", - "rshares": "52848854" + "rshares": "52848854", + "voter": "steema" }, { - "voter": "sijoittaja", - "rshares": "72192938" + "rshares": "72192938", + "voter": "sijoittaja" }, { - "voter": "confucius", - "rshares": "69662169" + "rshares": "69662169", + "voter": "confucius" }, { - "voter": "stevescriber", - "rshares": "72135954" + "rshares": "72135954", + "voter": "stevescriber" }, { - "voter": "loli", - "rshares": "51247757" + "rshares": "51247757", + "voter": "loli" }, { - "voter": "miacats", - "rshares": "91519215715" + "rshares": "91519215715", + "voter": "miacats" }, { - "voter": "nano2nd", - "rshares": "52419023" + "rshares": "52419023", + "voter": "nano2nd" }, { - "voter": "jarvis", - "rshares": "53661976" + "rshares": "53661976", + "voter": "jarvis" }, { - "voter": "microluck", - "rshares": "591109646" + "rshares": "591109646", + "voter": "microluck" }, { - "voter": "razberrijam", - "rshares": "74131936" + "rshares": "74131936", + "voter": "razberrijam" }, { - "voter": "fortuner", - "rshares": "53106127" + "rshares": "53106127", + "voter": "fortuner" }, { - "voter": "chinadaily", - "rshares": "2022702929" + "rshares": "2022702929", + "voter": "chinadaily" }, { - "voter": "pompe72", - "rshares": "88481667" + "rshares": "88481667", + "voter": "pompe72" }, { - "voter": "dollarvigilante", - "rshares": "802011524540" + "rshares": "802011524540", + "voter": "dollarvigilante" }, { - "voter": "pollina", - "rshares": "101627835" + "rshares": "101627835", + "voter": "pollina" }, { - "voter": "johnbyrd", - "rshares": "50698107" + "rshares": "50698107", + "voter": "johnbyrd" }, { - "voter": "thomasaustin", - "rshares": "50682252" + "rshares": "50682252", + "voter": "thomasaustin" }, { - "voter": "thermor", - "rshares": "50680459" + "rshares": "50680459", + "voter": "thermor" }, { - "voter": "ficholl", - "rshares": "50691211" + "rshares": "50691211", + "voter": "ficholl" }, { - "voter": "widell", - "rshares": "51852278" + "rshares": "51852278", + "voter": "widell" }, { - "voter": "movievertigo", - "rshares": "3635091595" + "rshares": "3635091595", + "voter": "movievertigo" }, { - "voter": "revelbrooks", - "rshares": "50311250" + "rshares": "50311250", + "voter": "revelbrooks" }, { - "voter": "laonie10", - "rshares": "23468154723" + "rshares": "23468154723", + "voter": "laonie10" }, { - "voter": "netaterra", - "rshares": "2982691190" + "rshares": "2982691190", + "voter": "netaterra" }, { - "voter": "andrewawerdna", - "rshares": "21980957828" + "rshares": "21980957828", + "voter": "andrewawerdna" }, { - "voter": "trev", - "rshares": "5712937692" + "rshares": "5712937692", + "voter": "trev" }, { - "voter": "erroneous-logic", - "rshares": "1874035641" + "rshares": "1874035641", + "voter": "erroneous-logic" }, { - "voter": "sergeypotapov", - "rshares": "302425178" + "rshares": "302425178", + "voter": "sergeypotapov" }, { - "voter": "lensessions", - "rshares": "65868377" + "rshares": "65868377", + "voter": "lensessions" }, { - "voter": "wmhammer", - "rshares": "59126308" + "rshares": "59126308", + "voter": "wmhammer" }, { - "voter": "emancipatedhuman", - "rshares": "45978108133" + "rshares": "45978108133", + "voter": "emancipatedhuman" }, { - "voter": "pressfortruth", - "rshares": "15340272043" + "rshares": "15340272043", + "voter": "pressfortruth" }, { - "voter": "hilarski", - "rshares": "6654726855" + "rshares": "6654726855", + "voter": "hilarski" }, { - "voter": "craigwilliamz", - "rshares": "8773942171" + "rshares": "8773942171", + "voter": "craigwilliamz" }, { - "voter": "onetree", - "rshares": "8856106682" + "rshares": "8856106682", + "voter": "onetree" }, { - "voter": "slorunner", - "rshares": "101945845" + "rshares": "101945845", + "voter": "slorunner" }, { - "voter": "shadowspub", - "rshares": "2029369552" + "rshares": "2029369552", + "voter": "shadowspub" }, { - "voter": "daut44", - "rshares": "32463005362" + "rshares": "32463005362", + "voter": "daut44" }, { - "voter": "curpose", - "rshares": "50416427" + "rshares": "50416427", + "voter": "curpose" }, { - "voter": "suprepachyderm", - "rshares": "59693834" + "rshares": "59693834", + "voter": "suprepachyderm" }, { - "voter": "themonetaryfew", - "rshares": "1615332211" + "rshares": "1615332211", + "voter": "themonetaryfew" }, { - "voter": "dajohns1420", - "rshares": "989363278" + "rshares": "989363278", + "voter": "dajohns1420" }, { - "voter": "runridefly", - "rshares": "2196907450" + "rshares": "2196907450", + "voter": "runridefly" }, { - "voter": "newandold", - "rshares": "3915304227" + "rshares": "3915304227", + "voter": "newandold" }, { - "voter": "jamesyk", - "rshares": "57856784" + "rshares": "57856784", + "voter": "jamesyk" }, { - "voter": "shenanigator", - "rshares": "112983030208" + "rshares": "112983030208", + "voter": "shenanigator" }, { - "voter": "jcomeauictx", - "rshares": "58197677" + "rshares": "58197677", + "voter": "jcomeauictx" }, { - "voter": "quinneaker", - "rshares": "12901147949" + "rshares": "12901147949", + "voter": "quinneaker" }, { - "voter": "freeinthought", - "rshares": "752032432" + "rshares": "752032432", + "voter": "freeinthought" }, { - "voter": "funkywanderer", - "rshares": "1783693666" + "rshares": "1783693666", + "voter": "funkywanderer" }, { - "voter": "richardcrill", - "rshares": "4900461398" + "rshares": "4900461398", + "voter": "richardcrill" }, { - "voter": "laonie11", - "rshares": "22621459650" + "rshares": "22621459650", + "voter": "laonie11" }, { - "voter": "jeremyfromwi", - "rshares": "2205784762" + "rshares": "2205784762", + "voter": "jeremyfromwi" }, { - "voter": "troich", - "rshares": "50588612" + "rshares": "50588612", + "voter": "troich" }, { - "voter": "nadin3", - "rshares": "4662965424" + "rshares": "4662965424", + "voter": "nadin3" }, { - "voter": "profanarky", - "rshares": "588228551" + "rshares": "588228551", + "voter": "profanarky" }, { - "voter": "xanoxt", - "rshares": "3411072843" + "rshares": "3411072843", + "voter": "xanoxt" }, { - "voter": "davidjkelley", - "rshares": "1625414479" + "rshares": "1625414479", + "voter": "davidjkelley" }, { - "voter": "crion", - "rshares": "50593879" + "rshares": "50593879", + "voter": "crion" }, { - "voter": "greatness", - "rshares": "174778016" + "rshares": "174778016", + "voter": "greatness" }, { - "voter": "hitherise", - "rshares": "50271139" + "rshares": "50271139", + "voter": "hitherise" }, { - "voter": "wiss", - "rshares": "50262756" + "rshares": "50262756", + "voter": "wiss" }, { - "voter": "sebastianbauer", - "rshares": "56782516" + "rshares": "56782516", + "voter": "sebastianbauer" }, { - "voter": "fizzgig", - "rshares": "55667728" + "rshares": "55667728", + "voter": "fizzgig" }, { - "voter": "sponge-bob", - "rshares": "26571803569" + "rshares": "26571803569", + "voter": "sponge-bob" }, { - "voter": "l0k1", - "rshares": "4044716723" + "rshares": "4044716723", + "voter": "l0k1" }, { - "voter": "digital-wisdom", - "rshares": "15232622426" + "rshares": "15232622426", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3710973264" + "rshares": "3710973264", + "voter": "ethical-ai" }, { - "voter": "stroully", - "rshares": "51033798" + "rshares": "51033798", + "voter": "stroully" }, { - "voter": "titusfrost", - "rshares": "3752641890" + "rshares": "3752641890", + "voter": "titusfrost" }, { - "voter": "jwaser", - "rshares": "6682880996" + "rshares": "6682880996", + "voter": "jwaser" }, { - "voter": "thadm", - "rshares": "50712038" + "rshares": "50712038", + "voter": "thadm" }, { - "voter": "zettar", - "rshares": "2353724275" + "rshares": "2353724275", + "voter": "zettar" }, { - "voter": "smisi", - "rshares": "1655277599" + "rshares": "1655277599", + "voter": "smisi" }, { - "voter": "bluehorseshoe", - "rshares": "17357974240" + "rshares": "17357974240", + "voter": "bluehorseshoe" }, { - "voter": "lighter", - "rshares": "53413720" + "rshares": "53413720", + "voter": "lighter" }, { - "voter": "yorsens", - "rshares": "50370757" + "rshares": "50370757", + "voter": "yorsens" }, { - "voter": "maarnio", - "rshares": "263853222" + "rshares": "263853222", + "voter": "maarnio" }, { - "voter": "analyzethis", - "rshares": "50931848" + "rshares": "50931848", + "voter": "analyzethis" }, { - "voter": "bwaser", - "rshares": "2617343597" + "rshares": "2617343597", + "voter": "bwaser" }, { - "voter": "sofa", - "rshares": "50840303" + "rshares": "50840303", + "voter": "sofa" }, { - "voter": "panther", - "rshares": "323483227" + "rshares": "323483227", + "voter": "panther" }, { - "voter": "doggnostic", - "rshares": "53871683" + "rshares": "53871683", + "voter": "doggnostic" }, { - "voter": "ct-gurus", - "rshares": "659649765" + "rshares": "659649765", + "voter": "ct-gurus" }, { - "voter": "jenny-talls", - "rshares": "53593366" + "rshares": "53593366", + "voter": "jenny-talls" }, { - "voter": "charlieshrem", - "rshares": "411677045923" + "rshares": "411677045923", + "voter": "charlieshrem" }, { - "voter": "tracemayer", - "rshares": "61827447459" + "rshares": "61827447459", + "voter": "tracemayer" }, { - "voter": "brains", - "rshares": "54239080444" + "rshares": "54239080444", + "voter": "brains" }, { - "voter": "waldemar-kuhn", - "rshares": "50450987" + "rshares": "50450987", + "voter": "waldemar-kuhn" }, { - "voter": "steemafon", - "rshares": "1415009195" + "rshares": "1415009195", + "voter": "steemafon" }, { - "voter": "bitcoinparadise", - "rshares": "1352324852" + "rshares": "1352324852", + "voter": "bitcoinparadise" }, { - "voter": "chick1", - "rshares": "5753524189" + "rshares": "5753524189", + "voter": "chick1" }, { - "voter": "rigaronib", - "rshares": "3605995609" + "rshares": "3605995609", + "voter": "rigaronib" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "50516543" + "rshares": "50516543", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "freebornangel", - "rshares": "62515317" + "rshares": "62515317", + "voter": "freebornangel" }, { - "voter": "anomaly", - "rshares": "271440423" + "rshares": "271440423", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401297947" + "rshares": "2401297947", + "voter": "ellepdub" }, { - "voter": "inarix03", - "rshares": "63405661" + "rshares": "63405661", + "voter": "inarix03" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "rayzzz", - "rshares": "51615652" + "rshares": "51615652", + "voter": "rayzzz" }, { - "voter": "herpetologyguy", - "rshares": "12115690216" + "rshares": "12115690216", + "voter": "herpetologyguy" }, { - "voter": "morgan.waser", - "rshares": "4712300251" + "rshares": "4712300251", + "voter": "morgan.waser" }, { - "voter": "iggy", - "rshares": "157644916" + "rshares": "157644916", + "voter": "iggy" }, { - "voter": "mbizryu0", - "rshares": "51636819" + "rshares": "51636819", + "voter": "mbizryu0" }, { - "voter": "archij", - "rshares": "51631638" + "rshares": "51631638", + "voter": "archij" }, { - "voter": "movie7283", - "rshares": "51530815" + "rshares": "51530815", + "voter": "movie7283" }, { - "voter": "ppcompp2", - "rshares": "51527606" + "rshares": "51527606", + "voter": "ppcompp2" }, { - "voter": "jj1968", - "rshares": "51520427" + "rshares": "51520427", + "voter": "jj1968" }, { - "voter": "cineger", - "rshares": "51516489" + "rshares": "51516489", + "voter": "cineger" }, { - "voter": "sksduddk", - "rshares": "51497383" + "rshares": "51497383", + "voter": "sksduddk" }, { - "voter": "jjc0719", - "rshares": "51490214" + "rshares": "51490214", + "voter": "jjc0719" }, { - "voter": "glassheart", - "rshares": "51235131" + "rshares": "51235131", + "voter": "glassheart" }, { - "voter": "deli", - "rshares": "51215236" + "rshares": "51215236", + "voter": "deli" }, { - "voter": "anns", - "rshares": "1233685675" + "rshares": "1233685675", + "voter": "anns" }, { - "voter": "breeze", - "rshares": "50798322" + "rshares": "50798322", + "voter": "breeze" }, { - "voter": "sjytoy", - "rshares": "50677982" + "rshares": "50677982", + "voter": "sjytoy" }, { - "voter": "shy2675", - "rshares": "50676799" + "rshares": "50676799", + "voter": "shy2675" }, { - "voter": "suance1009", - "rshares": "50675747" + "rshares": "50675747", + "voter": "suance1009" }, { - "voter": "hasqmd", - "rshares": "50674176" + "rshares": "50674176", + "voter": "hasqmd" }, { - "voter": "fischer67", - "rshares": "50673722" + "rshares": "50673722", + "voter": "fischer67" }, { - "voter": "elya1", - "rshares": "50672116" + "rshares": "50672116", + "voter": "elya1" }, { - "voter": "xclamp45", - "rshares": "50632828" + "rshares": "50632828", + "voter": "xclamp45" }, { - "voter": "likeagame1", - "rshares": "50618471" + "rshares": "50618471", + "voter": "likeagame1" }, { - "voter": "apple4006", - "rshares": "50616898" + "rshares": "50616898", + "voter": "apple4006" }, { - "voter": "bigbell61", - "rshares": "50615195" + "rshares": "50615195", + "voter": "bigbell61" }, { - "voter": "dolpo777", - "rshares": "50612850" + "rshares": "50612850", + "voter": "dolpo777" }, { - "voter": "dongperi", - "rshares": "50611931" + "rshares": "50611931", + "voter": "dongperi" }, { - "voter": "lion2byung", - "rshares": "50610620" + "rshares": "50610620", + "voter": "lion2byung" }, { - "voter": "cwj1973", - "rshares": "50610002" + "rshares": "50610002", + "voter": "cwj1973" }, { - "voter": "psj212", - "rshares": "50609329" + "rshares": "50609329", + "voter": "psj212" }, { - "voter": "owithed2", - "rshares": "50608661" + "rshares": "50608661", + "voter": "owithed2" }, { - "voter": "fiself2", - "rshares": "50606929" + "rshares": "50606929", + "voter": "fiself2" }, { - "voter": "trablinever1", - "rshares": "50605131" + "rshares": "50605131", + "voter": "trablinever1" }, { - "voter": "nuals1940", - "rshares": "50603861" + "rshares": "50603861", + "voter": "nuals1940" }, { - "voter": "fanceth2", - "rshares": "50602310" + "rshares": "50602310", + "voter": "fanceth2" }, { - "voter": "unilever", - "rshares": "50572441" + "rshares": "50572441", + "voter": "unilever" }, { - "voter": "amstel", - "rshares": "50540827" + "rshares": "50540827", + "voter": "amstel" }, { - "voter": "bapparabi", - "rshares": "1921231770" + "rshares": "1921231770", + "voter": "bapparabi" }, { - "voter": "sunlight", - "rshares": "50479027" + "rshares": "50479027", + "voter": "sunlight" }, { - "voter": "forea1995", - "rshares": "50355943" + "rshares": "50355943", + "voter": "forea1995" }, { - "voter": "holow1968", - "rshares": "50354561" + "rshares": "50354561", + "voter": "holow1968" }, { - "voter": "peaces1952", - "rshares": "50353969" + "rshares": "50353969", + "voter": "peaces1952" }, { - "voter": "himighar2", - "rshares": "50346496" + "rshares": "50346496", + "voter": "himighar2" }, { - "voter": "aromese1974", - "rshares": "50345607" + "rshares": "50345607", + "voter": "aromese1974" }, { - "voter": "runis1943", - "rshares": "50344921" + "rshares": "50344921", + "voter": "runis1943" }, { - "voter": "tong1962", - "rshares": "50344067" + "rshares": "50344067", + "voter": "tong1962" }, { - "voter": "hishe1997", - "rshares": "50340744" + "rshares": "50340744", + "voter": "hishe1997" }, { - "voter": "letstalkliberty", - "rshares": "255059000" + "rshares": "255059000", + "voter": "letstalkliberty" }, { - "voter": "strong-ai", - "rshares": "3609651500" + "rshares": "3609651500", + "voter": "strong-ai" }, { - "voter": "ninjapainter", - "rshares": "53375937" + "rshares": "53375937", + "voter": "ninjapainter" }, { - "voter": "buit1989", - "rshares": "51393104" + "rshares": "51393104", + "voter": "buit1989" }, { - "voter": "imadecoult1", - "rshares": "51389981" + "rshares": "51389981", + "voter": "imadecoult1" }, { - "voter": "infees2", - "rshares": "51387526" + "rshares": "51387526", + "voter": "infees2" }, { - "voter": "suar1997", - "rshares": "51384095" + "rshares": "51384095", + "voter": "suar1997" }, { - "voter": "sobsell93", - "rshares": "51382067" + "rshares": "51382067", + "voter": "sobsell93" }, { - "voter": "stroned96", - "rshares": "51380710" + "rshares": "51380710", + "voter": "stroned96" }, { - "voter": "drethe", - "rshares": "51378107" + "rshares": "51378107", + "voter": "drethe" }, { - "voter": "qualwas", - "rshares": "51377505" + "rshares": "51377505", + "voter": "qualwas" }, { - "voter": "phent1994", - "rshares": "51376367" + "rshares": "51376367", + "voter": "phent1994" }, { - "voter": "baboyes", - "rshares": "51375075" + "rshares": "51375075", + "voter": "baboyes" }, { - "voter": "whor1973", - "rshares": "51373532" + "rshares": "51373532", + "voter": "whor1973" }, { - "voter": "youreforn", - "rshares": "51372739" + "rshares": "51372739", + "voter": "youreforn" }, { - "voter": "voll1981", - "rshares": "51371902" + "rshares": "51371902", + "voter": "voll1981" }, { - "voter": "copenty2", - "rshares": "51370717" + "rshares": "51370717", + "voter": "copenty2" }, { - "voter": "maject2", - "rshares": "51369717" + "rshares": "51369717", + "voter": "maject2" }, { - "voter": "coust1997", - "rshares": "51367233" + "rshares": "51367233", + "voter": "coust1997" }, { - "voter": "busionea84", - "rshares": "51366398" + "rshares": "51366398", + "voter": "busionea84" }, { - "voter": "therver1", - "rshares": "51365174" + "rshares": "51365174", + "voter": "therver1" }, { - "voter": "appirdsmanne1990", - "rshares": "51364022" + "rshares": "51364022", + "voter": "appirdsmanne1990" }, { - "voter": "alienighted87", - "rshares": "51362967" + "rshares": "51362967", + "voter": "alienighted87" }, { - "voter": "anity1994", - "rshares": "51359746" + "rshares": "51359746", + "voter": "anity1994" }, { - "voter": "themphe1", - "rshares": "59959066" + "rshares": "59959066", + "voter": "themphe1" }, { - "voter": "abild1988", - "rshares": "51355864" + "rshares": "51355864", + "voter": "abild1988" }, { - "voter": "spoll1973", - "rshares": "51353540" + "rshares": "51353540", + "voter": "spoll1973" }, { - "voter": "afteld1", - "rshares": "66162576" + "rshares": "66162576", + "voter": "afteld1" }, { - "voter": "igtes", - "rshares": "71207873" + "rshares": "71207873", + "voter": "igtes" }, { - "voter": "dikanevroman", - "rshares": "835065804" + "rshares": "835065804", + "voter": "dikanevroman" }, { - "voter": "buffett", - "rshares": "141679752" + "rshares": "141679752", + "voter": "buffett" }, { - "voter": "rusteemitblog", - "rshares": "1630362522" + "rshares": "1630362522", + "voter": "rusteemitblog" }, { - "voter": "robyneggs", - "rshares": "167843838" + "rshares": "167843838", + "voter": "robyneggs" }, { - "voter": "michaelstobiersk", - "rshares": "1300689481" + "rshares": "1300689481", + "voter": "michaelstobiersk" }, { - "voter": "witchcraftblog", - "rshares": "453506109" + "rshares": "453506109", + "voter": "witchcraftblog" }, { - "voter": "sdc", - "rshares": "158057595" + "rshares": "158057595", + "voter": "sdc" }, { - "voter": "gravity", - "rshares": "160973134" + "rshares": "160973134", + "voter": "gravity" }, { - "voter": "digitalillusions", - "rshares": "160900665" + "rshares": "160900665", + "voter": "digitalillusions" }, { - "voter": "illusions", - "rshares": "157726117" + "rshares": "157726117", + "voter": "illusions" }, { - "voter": "cybergirls", - "rshares": "157176058" + "rshares": "157176058", + "voter": "cybergirls" }, { - "voter": "correct", - "rshares": "156847954" + "rshares": "156847954", + "voter": "correct" }, { - "voter": "haribo", - "rshares": "156814579" + "rshares": "156814579", + "voter": "haribo" }, { - "voter": "stimmt", - "rshares": "156194471" + "rshares": "156194471", + "voter": "stimmt" }, { - "voter": "fallout", - "rshares": "156054487" + "rshares": "156054487", + "voter": "fallout" }, { - "voter": "rule", - "rshares": "159062820" + "rshares": "159062820", + "voter": "rule" }, { - "voter": "xtreme", - "rshares": "155907388" + "rshares": "155907388", + "voter": "xtreme" }, { - "voter": "modernbukowski", - "rshares": "1442647825" + "rshares": "1442647825", + "voter": "modernbukowski" }, { - "voter": "steem-wallet", - "rshares": "158602900" + "rshares": "158602900", + "voter": "steem-wallet" }, { - "voter": "nerds", - "rshares": "158535752" + "rshares": "158535752", + "voter": "nerds" }, { - "voter": "goldmatters", - "rshares": "31008332335" + "rshares": "31008332335", + "voter": "goldmatters" }, { - "voter": "majes", - "rshares": "155796749" + "rshares": "155796749", + "voter": "majes" }, { - "voter": "maxb02", - "rshares": "155166715" + "rshares": "155166715", + "voter": "maxb02" }, { - "voter": "dealzgal", - "rshares": "71727340" + "rshares": "71727340", + "voter": "dealzgal" }, { - "voter": "bleujay", - "rshares": "120983531" + "rshares": "120983531", + "voter": "bleujay" }, { - "voter": "storage", - "rshares": "68013381" + "rshares": "68013381", + "voter": "storage" }, { - "voter": "risabold", - "rshares": "298391608" + "rshares": "298391608", + "voter": "risabold" }, { - "voter": "dougkarr", - "rshares": "154247502" + "rshares": "154247502", + "voter": "dougkarr" }, { - "voter": "blackmarket", - "rshares": "58460105" + "rshares": "58460105", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "61530871" + "rshares": "61530871", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "96643251" + "rshares": "96643251", + "voter": "expat" }, { - "voter": "pathtomydream", - "rshares": "181770825" + "rshares": "181770825", + "voter": "pathtomydream" }, { - "voter": "doubledex", - "rshares": "519265850" + "rshares": "519265850", + "voter": "doubledex" }, { - "voter": "steemlift", - "rshares": "1593664040" + "rshares": "1593664040", + "voter": "steemlift" }, { - "voter": "toddemaher1", - "rshares": "129609202" + "rshares": "129609202", + "voter": "toddemaher1" } ], + "author": "dollarvigilante", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 387, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/money/@dollarvigilante/another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", - "blacklists": [] - }, - { - "post_id": 949447, - "author": "curie", - "permlink": "special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", - "category": "curie", - "title": "Special Edition: Major Updates & Project Curie Month #1 Roundup (12 August - 11 September 2016)", - "body": "\n

\n

One Month of Project Curie

\n

This will be special update from Project Curie. One month ago, Project Curie began with humble beginnings. It has been an exhilarating experience for the team and we are delighted to share our progress with the Steemit community. To know more about Project Curie, do check out our initial announcement.


\n

Project Curie wishes to thank @pharesim, @val, @silversteem and @clayop along with @nextgencrypto and @berniesanders for helping us reward more deserving posts

\n

When a group of Steemit writers got together to form Project Curie, we thought that if we pooled our own votes on some posts, we could help reward some emerging and undiscovered authors who were posting great original material. 

\n

$5 later, it was clear our combined votes wouldn’t make a huge difference.

\n

Fortunately, we were able to form a partnership with @nextgencrypto who was generous enough to donate some voting power to help reward deserving posters who were not yet established. @berniesanders then joined to help. With their support, Project Curie became a reality. 

\n

Today, we announce that @val, @pharesim, @silversteem and @clayop also have donated additional voting power to help Project Curie reach a greater number of original content posts from undiscovered and deserving authors. Please join us in thanking them. And please do not send your posts directly to any of these individuals; Project Curie is curating the posts and you are welcome to submit any good ones you find to the #curie channel on Steemit.chat.


\n\n

Proyecto Cervantes

\n

Project Curie is excited to announce a new branch of curation created to support Spanish authors on Steemit. The branch is called “Proyecto Cervantes” and it’s main curators are @gargon and @pgarcgo. The goal is to find and reward Spanish or bilingual (Spanish and English) posts on Steemit in order to foster a more diverse community. @gargon and @pgarcgo will be creating a compilation post for every 10 posts that they curate in order to provide transparency as to which posts are being rewarded. The hope is also to provide the original authors more exposure. You can find their first compilation posts here and here. Two members of Project Curie are Spanish speakers ( @anwenbaumeister and @the-alien), and they provide a second line of curation and review for these posts. So, if you are a Spanish speaker, we encourage you to begin writing bilingual posts in order to create a bridge between the two languages and communities!

\n\n
\n\n

Statistics from Month #1

\n

Total posts curated: 2055
\n
Unique authors rewarded: 763
\n
Total rewards generated for authors: SBD 158,151
\n
Mean reward generated per post: SBD 77
\n
Median reward generated per post: SBD 40  

\n

\n

Since we began tracking on 18th August, we have consistently voted on an average of over 75 posts per day. The trajectory is clearly heading up, and in the last week we have been averaging nearly 100 posts. 

\n

Authors

\n

The Top 10 Authors by number of posts curated were -

\n
    \n
  • @kimal73   
  • \n
  • @herverisson   
  • \n
  • @cristi   
  • \n
  • @lukeofkondor   
  • \n
  • @papa-pepper   
  • \n
  • @cryptos   
  • \n
  • @mariandavp   
  • \n
  • @stephmckenzie   
  • \n
  • @eveningstar92   
  • \n
  • @prufarchy    
  • \n
\n

Top Authors by payouts includes @alexbeyman, @kaylinart, @brianphobos, @jamielefay, @omfedor, @stephmckenzie, @ionescur, @aboundlessworld and @anotherjoe. Many of those names are pretty familiar today, but less than a month ago, they were new authors struggling for exposure.

\n

Tags/Topics

\n

The most used tag was \"life\", but that pretty much includes everything!

\n

\n

The most popular topics were \"art\" (549) and \"photography\" (418). \"Story\" and \"writing\" were pretty close, tagged on around 370 posts each, though we suspect these two tags are often repeated. \"Travel\" and \"science\" also make an appearance. Looking forward, we intend to focus more on original science and technology related posts, and other unique / niche topics. 

\n

#curie

\n

Following our announcement on September 2nd, the #curie channel has been a remarkable success. Currently we have 218 users in the room, 44 of whom have curated content from other authors. We have upvoted 105 posts submitted in #curie, and paid out SBD 525 to curators. 

\n

Top curators from #curie were -

\n
    \n
  • @pfunk
  • \n
  • @kental
  • \n
  • @jamtaylor
  • \n
  • @deviedev
  • \n
  • @royaltiffany
  • \n
\n

Join us on #curie at Steemit.chat and keep the submissions coming! 


\n

Thanks

\n

Last, but not least, we wish to thank - 

\n

@knozaki2015, @shaka, @razvanelulmarin, @greenwayoflife, @jasonstaggers for their generous donations.
\n@royaltiffany for moderating #curie and creating the noble TheButler bot. :)
\n@firepower for setting up the #curie room.
\n
\nAnd of course, everyone voting on and commenting on posts we curate!


\n

Onward to Month #2! 

\n

We are working to increase our reach and rewards for authors, courtesy of extended whale support. We are also setting up @curie as a universal voter for all posts we curate. This way, you can choose to mirror our votes to support the authors. Look out for an announcement regarding this in our Daily Curation List posts. From next week, every Monday we'll have a Weekly Roundup with statistics, similar to this post.

\n

We are always open to feedback, and would love to know how you feel we could do better in Month #2!

\n", + "blacklists": [], + "body": "
https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg
\n\nIn past issues, we\u2019ve documented increasingly concerned billionaires warning of dangerous economic times. Many have favored gold as an alternative allocation in a world where $13 trillion-worth of debt is negative yielding, interest rates are artificially suppressed and we\u2019re on the brink of major wars.\n\nThe newest addition to this gold-loving billionaire's club, is none other than hedge-fund manager Paul Singer. At CNBC\u2019s Delivering Alpha Investors Conference this week, the founder of the $27-billion Elliott Management Fund, the 17th largest hedge fund in the world, mentioned that at current prices gold is \u201cundervalued\u201d and \u201cunderrepresented in many portfolios as the only ... store of value that has stood the test of time.\u201d\n\nSinger, along with numerous other hedge-fund managers, has been increasingly outspoken in his criticism of the Federal Reserve and other central banks for creating dangers in the market unlike any in what he terms the \u201c5,000 year-ish\u201d history of finance. Singer noted that \u201cit's a very dangerous time in the global economy and global financial markets.\"\n\nThis quote is frighteningly similar to the response given by Donald Trump on Fox Business not long ago when he was asked if he had money in the market. He answered, \u201cI did, but I got out,\u201d and then went on to say that he expected \u201cvery scary scenarios\u201d for investors.\n\nSinger also stated that he thinks owning medium- to long-term first world debt is a \u201creally bad idea\u201d... and then proceeded to tell listeners to sell their 30-year bonds.\n\nEarlier in the conference, prior to Singer, Ray Dalio who is the manager of the largest hedge fund in the world, Bridgewater Capital, was also vocal about the diminishing returns provided by government debt held by central banks. \u201cThere\u2019s only so much you can squeeze out of the debt cycle,\" he said. He went on to say that central banks are at a point now where their ability to stimulate is limited.\n\nSeated next to Dalio was Former Treasury secretary Timothy Geithner who voiced concern about limited \u201ctools in the keynesian arsenal,\u201d that probably wouldn\u2019t be enough to offset the next recession.\n\nGeithner obviously believes that a recession is on the way. Dalio and Singer are trying to convey the same message. A massive crunch is looming.\n\nWe agree with them, although we believe Geithner was sugarcoating what\u2019s to come.\n\nAfter all, we are on the precipice of a crash of biblical proportions according to the former chief economist of the Bank for International Settlements, William White.\n\nWe have mentioned his quote numerous time here at TDV but feel it\u2019s important to reiterate because of its magnitude: \u201cThe only question is whether we are able to look reality in the eye and face what is coming in an orderly fashion, or whether it will be disorderly. Debt jubilees have been going on for 5,000 years, as far back as the Sumerians.\u201d\n\nAs the Fed considers its second rate hike in 10 years, Singer condemned policy-makers for acting with \u201camazing arrogance\u201d when he and others had warned of a mortgage crisis prior to 2008.\n\nWhat he and those who agreed with his stance don\u2019t know, or at least won\u2019t state publicly, is that these shoddy central bank policies are detrimental by design. In other words, their sole purpose is to destabilize the world economy.\n\nThis deliberate market sabotage is necessary for the transference of power from the more developed nations to less developed ones. Ultimately, the idea is to eliminate smaller regional and national central banks. Once things get bad enough, these smaller banks will be blamed for provoking a given crisis. And, secondarily, the end goal is to blow up the entire system in order to bring in the one world government and central bank.\n\nThe elites have used the same tactics time and time again throughout history. First, they create the problem, then there is a reaction, and then finally they come swooping in to \u201cvaliantly save\u201d the day. It's happened numerous times before.\n
https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png
\nAnd it will soon happen again.\n\nOf course, the globalists have demonstrated that every intervention only makes situations worse.\n\nWe reported on the blatant thievery going on at Wells Fargo in our last article and noted how the elites were probably laughing hysterically at what they\u2019re able to get away with. They were even able to convince many younger American voters that \u201cdemocratic socialism\u201d would be their savior, as seen by the significant, youthful support for Bernie Slanders. Debt and currency crises have already started to materialize, as we\u2019ve seen in the socialist utopia that is Venezuela. If this is any indication of what\u2019s to come, the future is looking awfully gloomy.\n\nAs Singer and others including Dalio have mentioned before, the most tried and true measure of wealth and value is gold.\n\nAt TDV we provide unique Austrian-economics based analysis from the anarcho-capitalist pespective of the state of the world\u2019s economy, as well as suggestions on how to protect your assets in these tempestuous and unprecedented times.\n\nJacob Rothschild, a member of the family partly responsible for the creation of all this chaos, even said himself that we are in \u201cuncharted waters\u201d and that it\u2019s \u201cimpossible to predict the unintended consequences of very low interest rates.\u201d\n\nWe have a pretty good idea of what the consequences will be and we\u2019re taking action to protect ourselves and even profit from them. Rothschild seems to know the consequences, as well, as he has been buying up gold and selling the stock market and the US dollar.\n\nYou can survive and profit from the orchestrated collapse too. Subscribe to TDV\u2019s newsletter here to receive constantly updated information on how to protect your family and friends.\n\nIn the end, it is getting truly bizarre just how many billionaires, central bankers and others of note are all warning of the coming collapse. We\u2019d almost begun to worry that they were going to pull a switch-a-roo on us, but if you asked the great majority of investors and financial analysts, they\u2019ll tell you that they see nothing but smooth sailing ahead.\n\nSo, while many are warning, many are hearing, but not listening. The bible said something about that, I believe.\n
https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg
", + "category": "money", + "children": 23, + "created": "2016-09-15T18:23:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "curie", - "minnows", - "hidden-gems", - "steemit", - "project-curie" - ], - "users": [ - "pharesim", - "val", - "silversteem", - "clayop", - "nextgencrypto", - "berniesanders", - "gargon", - "pgarcgo", - "anwenbaumeister", - "the-alien", - "kimal73", - "herverisson", - "cristi", - "lukeofkondor", - "papa-pepper", - "cryptos", - "mariandavp", - "stephmckenzie", - "eveningstar92", - "prufarchy", - "alexbeyman", - "kaylinart", - "brianphobos", - "jamielefay", - "omfedor", - "ionescur", - "aboundlessworld", - "anotherjoe", - "pfunk", - "kental", - "jamtaylor", - "deviedev", - "royaltiffany", - "knozaki2015", - "shaka", - "razvanelulmarin", - "greenwayoflife", - "jasonstaggers", - "firepower", - "curie" - ], "image": [ - "https://www.steemimg.com/images/2016/09/01/Babel-Lille-2012-Bibliohteque-ideale-2-Jean-Francois-RAUZIER4f9da.jpg", - "https://www.steemimg.com/images/2016/09/14/curie-1da303.jpg", - "https://www.steemimg.com/images/2016/09/14/curie-23f98a.jpg" + "https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg", + "https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png", + "https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg" ], "links": [ - "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", - "https://steemit.com/spanish/@gargon/proyecto-cervantes-08-11-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", - "https://steemit.com/spanish/@pgarcgo/proyecto-cervantes-11-13-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and" + "https://dollarvigilante.com/subscribe" + ], + "tags": [ + "money", + "gold", + "silver", + "bitcoin", + "crisis" ] }, - "created": "2016-09-14T14:11:30", - "updated": "2016-09-14T16:09:51", - "depth": 0, - "children": 37, - "net_rshares": 203814685511375, - "is_paidout": false, - "payout_at": "2016-09-15T22:00:19", - "payout": 2332.588, - "pending_payout_value": "2332.588 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 102136532384242, + "payout": 595.718, + "payout_at": "2016-09-22T18:23:15", + "pending_payout_value": "595.718 HBD", + "percent_hbd": 10000, + "permlink": "another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", + "post_id": 1257023, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 387 + }, + "title": "Another Billionaire Warns of Catastrophic Depths Not Seen in 5,000 Years - and Emphasizes Gold", + "updated": "2016-09-15T18:23:15", + "url": "/money/@dollarvigilante/another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "260764053346" + "rshares": "260764053346", + "voter": "anonymous" }, { - "voter": "berniesanders", - "rshares": "26301850743316" + "rshares": "26301850743316", + "voter": "berniesanders" }, { - "voter": "summon", - "rshares": "14447419939656" + "rshares": "14447419939656", + "voter": "summon" }, { - "voter": "val-a", - "rshares": "30325685746209" + "rshares": "30325685746209", + "voter": "val-a" }, { - "voter": "val-b", - "rshares": "15605000000000" + "rshares": "15605000000000", + "voter": "val-b" }, { - "voter": "jamesc", - "rshares": "35140699766668" + "rshares": "35140699766668", + "voter": "jamesc" }, { - "voter": "riverhead", - "rshares": "4574334081535" + "rshares": "4574334081535", + "voter": "riverhead" }, { - "voter": "wackou", - "rshares": "7028898358251" + "rshares": "7028898358251", + "voter": "wackou" }, { - "voter": "nextgenwitness", - "rshares": "173882410087" + "rshares": "173882410087", + "voter": "nextgenwitness" }, { - "voter": "pharesim", - "rshares": "9910560004202" + "rshares": "9910560004202", + "voter": "pharesim" }, { - "voter": "justin", - "rshares": "610230676198" + "rshares": "610230676198", + "voter": "justin" }, { - "voter": "sandra", - "rshares": "120855503269" + "rshares": "120855503269", + "voter": "sandra" }, { - "voter": "kushed", - "rshares": "5450332021682" + "rshares": "5450332021682", + "voter": "kushed" }, { - "voter": "silver", - "rshares": "1673100049730" + "rshares": "1673100049730", + "voter": "silver" }, { - "voter": "silversteem", - "rshares": "4062956162312" + "rshares": "4062956162312", + "voter": "silversteem" }, { - "voter": "ihashfury", - "rshares": "1149056534045" + "rshares": "1149056534045", + "voter": "ihashfury" }, { - "voter": "nextgencrypto", - "rshares": "4624346498267" + "rshares": "4624346498267", + "voter": "nextgencrypto" }, { - "voter": "complexring", - "rshares": "6514602351120" + "rshares": "6514602351120", + "voter": "complexring" }, { - "voter": "clayop", - "rshares": "6400095696110" + "rshares": "6400095696110", + "voter": "clayop" }, { - "voter": "steemservices", - "rshares": "403437826343" + "rshares": "403437826343", + "voter": "steemservices" }, { - "voter": "steemservices1", - "rshares": "26833458550" + "rshares": "26833458550", + "voter": "steemservices1" }, { - "voter": "joseph", - "rshares": "1731510767128" + "rshares": "1731510767128", + "voter": "joseph" }, { - "voter": "aizensou", - "rshares": "84640148427" + "rshares": "84640148427", + "voter": "aizensou" }, { - "voter": "au1nethyb1", - "rshares": "4166568773495" + "rshares": "4166568773495", + "voter": "au1nethyb1" }, { - "voter": "b0y2k", - "rshares": "223905651656" + "rshares": "223905651656", + "voter": "b0y2k" }, { - "voter": "bentley", - "rshares": "12275043694" + "rshares": "12275043694", + "voter": "bentley" }, { - "voter": "masteryoda", - "rshares": "630566306296" + "rshares": "630566306296", + "voter": "masteryoda" }, { - "voter": "mineralwasser", - "rshares": "1209033907" + "rshares": "1209033907", + "voter": "mineralwasser" }, { - "voter": "boombastic", - "rshares": "687090032502" + "rshares": "687090032502", + "voter": "boombastic" }, { - "voter": "mrs.agsexplorer", - "rshares": "91240228363" + "rshares": "91240228363", + "voter": "mrs.agsexplorer" }, { - "voter": "bingo-1", - "rshares": "1718241828" + "rshares": "1718241828", + "voter": "bingo-1" }, { - "voter": "indominon", - "rshares": "258890080700" + "rshares": "258890080700", + "voter": "indominon" }, { - "voter": "pfunk", - "rshares": "795235221870" + "rshares": "795235221870", + "voter": "pfunk" }, { - "voter": "pairmike", - "rshares": "170448234189" + "rshares": "170448234189", + "voter": "pairmike" }, { - "voter": "onceuponatime", - "rshares": "3126367512437" + "rshares": "3126367512437", + "voter": "onceuponatime" }, { - "voter": "idol", - "rshares": "10365366239" + "rshares": "10365366239", + "voter": "idol" }, { - "voter": "donkeypong", - "rshares": "2747150485288" + "rshares": "2747150485288", + "voter": "donkeypong" }, { - "voter": "steemrollin", - "rshares": "799706906226" + "rshares": "799706906226", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "4940816573" + "rshares": "4940816573", + "voter": "sakr" }, { - "voter": "ilanaakoundi", - "rshares": "52267603683" + "rshares": "52267603683", + "voter": "ilanaakoundi" }, { - "voter": "jocelyn", - "rshares": "1784486145" + "rshares": "1784486145", + "voter": "jocelyn" }, { - "voter": "acidsun", - "rshares": "81778714071" + "rshares": "81778714071", + "voter": "acidsun" }, { - "voter": "gregory-f", - "rshares": "14485500439" + "rshares": "14485500439", + "voter": "gregory-f" }, { - "voter": "samuel-stone", - "rshares": "182184490464" + "rshares": "182184490464", + "voter": "samuel-stone" }, { - "voter": "jademont", - "rshares": "17261905745" + "rshares": "17261905745", + "voter": "jademont" }, { - "voter": "gavvet", - "rshares": "1231622449650" + "rshares": "1231622449650", + "voter": "gavvet" }, { - "voter": "eeks", - "rshares": "44936016583" + "rshares": "44936016583", + "voter": "eeks" }, { - "voter": "james-show", - "rshares": "-12893763252" + "rshares": "-12893763252", + "voter": "james-show" }, { - "voter": "nanzo-scoop", - "rshares": "581796947010" + "rshares": "581796947010", + "voter": "nanzo-scoop" }, { - "voter": "cian.dafe", - "rshares": "9089111423" + "rshares": "9089111423", + "voter": "cian.dafe" }, { - "voter": "hannixx42", - "rshares": "48608113541" + "rshares": "48608113541", + "voter": "hannixx42" }, { - "voter": "mummyimperfect", - "rshares": "178475239190" + "rshares": "178475239190", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "268818780" + "rshares": "268818780", + "voter": "coar" }, { - "voter": "asch", - "rshares": "100988550788" + "rshares": "100988550788", + "voter": "asch" }, { - "voter": "kevinwong", - "rshares": "629740296743" + "rshares": "629740296743", + "voter": "kevinwong" }, { - "voter": "murh", - "rshares": "1414357784" + "rshares": "1414357784", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "3186258004" + "rshares": "3186258004", + "voter": "cryptofunk" }, { - "voter": "b4bb4r-5h3r", - "rshares": "17430843199" + "rshares": "17430843199", + "voter": "b4bb4r-5h3r" }, { - "voter": "error", - "rshares": "2326310189" + "rshares": "2326310189", + "voter": "error" }, { - "voter": "marta-zaidel", - "rshares": "5853981249" + "rshares": "5853981249", + "voter": "marta-zaidel" }, { - "voter": "cyber", - "rshares": "1064576926325" + "rshares": "1064576926325", + "voter": "cyber" }, { - "voter": "ak2020", - "rshares": "49529533316" + "rshares": "49529533316", + "voter": "ak2020" }, { - "voter": "thecryptofiend", - "rshares": "7897522470" + "rshares": "7897522470", + "voter": "thecryptofiend" }, { - "voter": "paul-labossiere", - "rshares": "24406094847" + "rshares": "24406094847", + "voter": "paul-labossiere" }, { - "voter": "eric-boucher", - "rshares": "98824186817" + "rshares": "98824186817", + "voter": "eric-boucher" }, { - "voter": "applecrisp", - "rshares": "418804855" + "rshares": "418804855", + "voter": "applecrisp" }, { - "voter": "juanmiguelsalas", - "rshares": "55573071997" + "rshares": "55573071997", + "voter": "juanmiguelsalas" }, { - "voter": "ratel", - "rshares": "33768131164" + "rshares": "33768131164", + "voter": "ratel" }, { - "voter": "infovore", - "rshares": "574978856216" + "rshares": "574978856216", + "voter": "infovore" }, { - "voter": "stephen-somers", - "rshares": "2201949670" + "rshares": "2201949670", + "voter": "stephen-somers" }, { - "voter": "anwenbaumeister", - "rshares": "804428766688" + "rshares": "804428766688", + "voter": "anwenbaumeister" }, { - "voter": "grandpere", - "rshares": "6652497229" + "rshares": "6652497229", + "voter": "grandpere" }, { - "voter": "mark-waser", - "rshares": "5946920606" + "rshares": "5946920606", + "voter": "mark-waser" }, { - "voter": "albertogm", - "rshares": "17023109715" + "rshares": "17023109715", + "voter": "albertogm" }, { - "voter": "kimziv", - "rshares": "202862990998" + "rshares": "202862990998", + "voter": "kimziv" }, { - "voter": "emily-cook", - "rshares": "81140450926" + "rshares": "81140450926", + "voter": "emily-cook" }, { - "voter": "razvanelulmarin", - "rshares": "87044687927" + "rshares": "87044687927", + "voter": "razvanelulmarin" }, { - "voter": "primus", - "rshares": "11725334283" + "rshares": "11725334283", + "voter": "primus" }, { - "voter": "skapaneas", - "rshares": "20587586407" + "rshares": "20587586407", + "voter": "skapaneas" }, { - "voter": "ladyclair", - "rshares": "280886491" + "rshares": "280886491", + "voter": "ladyclair" }, { - "voter": "asmolokalo", - "rshares": "158997318209" + "rshares": "158997318209", + "voter": "asmolokalo" }, { - "voter": "roelandp", - "rshares": "453674041389" + "rshares": "453674041389", + "voter": "roelandp" }, { - "voter": "lehard", - "rshares": "62652918156" + "rshares": "62652918156", + "voter": "lehard" }, { - "voter": "katyakov", - "rshares": "24867544970" + "rshares": "24867544970", + "voter": "katyakov" }, { - "voter": "hakise", - "rshares": "19227034654" + "rshares": "19227034654", + "voter": "hakise" }, { - "voter": "derekareith", - "rshares": "158322035362" + "rshares": "158322035362", + "voter": "derekareith" }, { - "voter": "neoxian", - "rshares": "540675721761" + "rshares": "540675721761", + "voter": "neoxian" }, { - "voter": "renohq", - "rshares": "1382909545432" + "rshares": "1382909545432", + "voter": "renohq" }, { - "voter": "ausbitbank", - "rshares": "18347051336" + "rshares": "18347051336", + "voter": "ausbitbank" }, { - "voter": "mrwang", - "rshares": "45733024772" + "rshares": "45733024772", + "voter": "mrwang" }, { - "voter": "ardina", - "rshares": "243777568" + "rshares": "243777568", + "voter": "ardina" }, { - "voter": "sebastien", - "rshares": "17613903814" + "rshares": "17613903814", + "voter": "sebastien" }, { - "voter": "sitaru", - "rshares": "13516878845" + "rshares": "13516878845", + "voter": "sitaru" }, { - "voter": "toxonaut", - "rshares": "33656343814" + "rshares": "33656343814", + "voter": "toxonaut" }, { - "voter": "karen13", - "rshares": "1107683133" + "rshares": "1107683133", + "voter": "karen13" }, { - "voter": "diana.catherine", - "rshares": "37477086352" + "rshares": "37477086352", + "voter": "diana.catherine" }, { - "voter": "deviedev", - "rshares": "11096353249" + "rshares": "11096353249", + "voter": "deviedev" }, { - "voter": "jpiper20", - "rshares": "71693623547" + "rshares": "71693623547", + "voter": "jpiper20" }, { - "voter": "dcryptogold", - "rshares": "4205385163" + "rshares": "4205385163", + "voter": "dcryptogold" }, { - "voter": "dmacshady", - "rshares": "2722560234" + "rshares": "2722560234", + "voter": "dmacshady" }, { - "voter": "creemej", - "rshares": "35770303799" + "rshares": "35770303799", + "voter": "creemej" }, { - "voter": "the-future", - "rshares": "2434921863" + "rshares": "2434921863", + "voter": "the-future" }, { - "voter": "adamt", - "rshares": "4296012707" + "rshares": "4296012707", + "voter": "adamt" }, { - "voter": "sgnsteems", - "rshares": "2884781837" + "rshares": "2884781837", + "voter": "sgnsteems" }, { - "voter": "blueorgy", - "rshares": "175156042246" + "rshares": "175156042246", + "voter": "blueorgy" }, { - "voter": "poseidon", - "rshares": "4542807775" + "rshares": "4542807775", + "voter": "poseidon" }, { - "voter": "geronimo", - "rshares": "7168473448" + "rshares": "7168473448", + "voter": "geronimo" }, { - "voter": "liberosist", - "rshares": "256660074008" + "rshares": "256660074008", + "voter": "liberosist" }, { - "voter": "birdie", - "rshares": "3773911635" + "rshares": "3773911635", + "voter": "birdie" }, { - "voter": "oumar", - "rshares": "9502502066" + "rshares": "9502502066", + "voter": "oumar" }, { - "voter": "jl777", - "rshares": "53840923427" + "rshares": "53840923427", + "voter": "jl777" }, { - "voter": "oecp85", - "rshares": "1114903893" + "rshares": "1114903893", + "voter": "oecp85" }, { - "voter": "lostnuggett", - "rshares": "7837739118" + "rshares": "7837739118", + "voter": "lostnuggett" }, { - "voter": "paquito", - "rshares": "36537971467" + "rshares": "36537971467", + "voter": "paquito" }, { - "voter": "lpfaust", - "rshares": "1120682252" + "rshares": "1120682252", + "voter": "lpfaust" }, { - "voter": "gustavopasquini", - "rshares": "5431079499" + "rshares": "5431079499", + "voter": "gustavopasquini" }, { - "voter": "moon32walker", - "rshares": "12879388253" + "rshares": "12879388253", + "voter": "moon32walker" }, { - "voter": "sergey44", - "rshares": "206056754" + "rshares": "206056754", + "voter": "sergey44" }, { - "voter": "mohammed123", - "rshares": "1258889103" + "rshares": "1258889103", + "voter": "mohammed123" }, { - "voter": "krabgat", - "rshares": "21551743607" + "rshares": "21551743607", + "voter": "krabgat" }, { - "voter": "claudiop63", - "rshares": "42775578615" + "rshares": "42775578615", + "voter": "claudiop63" }, { - "voter": "proto", - "rshares": "4543618384" + "rshares": "4543618384", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "33381543237" + "rshares": "33381543237", + "voter": "sisterholics" }, { - "voter": "michaeldodridge", - "rshares": "16939424070" + "rshares": "16939424070", + "voter": "michaeldodridge" }, { - "voter": "bkkshadow", - "rshares": "3555056805" + "rshares": "3555056805", + "voter": "bkkshadow" }, { - "voter": "kibela", - "rshares": "177054757" + "rshares": "177054757", + "voter": "kibela" }, { - "voter": "steemster1", - "rshares": "149624601" + "rshares": "149624601", + "voter": "steemster1" }, { - "voter": "bullionstackers", - "rshares": "467278771" + "rshares": "467278771", + "voter": "bullionstackers" }, { - "voter": "jillstein2016", - "rshares": "2399486339" + "rshares": "2399486339", + "voter": "jillstein2016" }, { - "voter": "cryptoz", - "rshares": "113159459" + "rshares": "113159459", + "voter": "cryptoz" }, { - "voter": "metaflute", - "rshares": "947490604" + "rshares": "947490604", + "voter": "metaflute" }, { - "voter": "gomeravibz", - "rshares": "49031153303" + "rshares": "49031153303", + "voter": "gomeravibz" }, { - "voter": "taker", - "rshares": "2298221146" + "rshares": "2298221146", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "14667601139" + "rshares": "14667601139", + "voter": "nekromarinist" }, { - "voter": "sykochica", - "rshares": "10689974196" + "rshares": "10689974196", + "voter": "sykochica" }, { - "voter": "sharon", - "rshares": "57873464" + "rshares": "57873464", + "voter": "sharon" }, { - "voter": "frozendota", - "rshares": "235438675" + "rshares": "235438675", + "voter": "frozendota" }, { - "voter": "dumar022", - "rshares": "10107459891" + "rshares": "10107459891", + "voter": "dumar022" }, { - "voter": "lillianjones", - "rshares": "61714352" + "rshares": "61714352", + "voter": "lillianjones" }, { - "voter": "laonie", - "rshares": "1180036690060" + "rshares": "1180036690060", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "156808373457" + "rshares": "156808373457", + "voter": "twinner" }, { - "voter": "rawnetics", - "rshares": "24365622803" + "rshares": "24365622803", + "voter": "rawnetics" }, { - "voter": "thebluepanda", - "rshares": "21937293191" + "rshares": "21937293191", + "voter": "thebluepanda" }, { - "voter": "timcliff", - "rshares": "4038742528" + "rshares": "4038742528", + "voter": "timcliff" }, { - "voter": "myfirst", - "rshares": "38493825241" + "rshares": "38493825241", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "239614488307" + "rshares": "239614488307", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "9201794973" + "rshares": "9201794973", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "1249580263" + "rshares": "1249580263", + "voter": "gmurph" }, { - "voter": "chris.roy", - "rshares": "7842754455" + "rshares": "7842754455", + "voter": "chris.roy" }, { - "voter": "kurzer42", - "rshares": "77413968" + "rshares": "77413968", + "voter": "kurzer42" }, { - "voter": "midnightoil", - "rshares": "52933383775" + "rshares": "52933383775", + "voter": "midnightoil" }, { - "voter": "kalimor", - "rshares": "2422858002" + "rshares": "2422858002", + "voter": "kalimor" }, { - "voter": "armen", - "rshares": "4337200195" + "rshares": "4337200195", + "voter": "armen" }, { - "voter": "thisisbenbrick", - "rshares": "109799369185" + "rshares": "109799369185", + "voter": "thisisbenbrick" }, { - "voter": "budgetbucketlist", - "rshares": "35930892807" + "rshares": "35930892807", + "voter": "budgetbucketlist" }, { - "voter": "xiaohui", - "rshares": "132362897113" + "rshares": "132362897113", + "voter": "xiaohui" }, { - "voter": "antfield", - "rshares": "4269542847" + "rshares": "4269542847", + "voter": "antfield" }, { - "voter": "locolote", - "rshares": "60240401" + "rshares": "60240401", + "voter": "locolote" }, { - "voter": "alitas", - "rshares": "3062483684" + "rshares": "3062483684", + "voter": "alitas" }, { - "voter": "elfkitchen", - "rshares": "6555686028" + "rshares": "6555686028", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "93215140213" + "rshares": "93215140213", + "voter": "joele" }, { - "voter": "randyclemens", - "rshares": "15543048016" + "rshares": "15543048016", + "voter": "randyclemens" }, { - "voter": "xiaokongcom", - "rshares": "4251276841" + "rshares": "4251276841", + "voter": "xiaokongcom" }, { - "voter": "gargon", - "rshares": "12956892771" + "rshares": "12956892771", + "voter": "gargon" }, { - "voter": "pgarcgo", - "rshares": "2505333045" + "rshares": "2505333045", + "voter": "pgarcgo" }, { - "voter": "nonlinearone", - "rshares": "39336543785" + "rshares": "39336543785", + "voter": "nonlinearone" }, { - "voter": "msjennifer", - "rshares": "62201879" + "rshares": "62201879", + "voter": "msjennifer" }, { - "voter": "ciao", - "rshares": "57196572" + "rshares": "57196572", + "voter": "ciao" }, { - "voter": "villainblack", - "rshares": "3820074526" + "rshares": "3820074526", + "voter": "villainblack" }, { - "voter": "cryptos", - "rshares": "67219867859" + "rshares": "67219867859", + "voter": "cryptos" }, { - "voter": "theconnoisseur", - "rshares": "8446448806" + "rshares": "8446448806", + "voter": "theconnoisseur" }, { - "voter": "steemo", - "rshares": "52985539" + "rshares": "52985539", + "voter": "steemo" }, { - "voter": "xianjun", - "rshares": "8569626145" + "rshares": "8569626145", + "voter": "xianjun" }, { - "voter": "steema", - "rshares": "55306941" + "rshares": "55306941", + "voter": "steema" }, { - "voter": "fingolfin", - "rshares": "3209376097" + "rshares": "3209376097", + "voter": "fingolfin" }, { - "voter": "confucius", - "rshares": "68042118" + "rshares": "68042118", + "voter": "confucius" }, { - "voter": "bledarus", - "rshares": "4097488430" + "rshares": "4097488430", + "voter": "bledarus" }, { - "voter": "weames", - "rshares": "61075670" + "rshares": "61075670", + "voter": "weames" }, { - "voter": "jarvis", - "rshares": "56157882" + "rshares": "56157882", + "voter": "jarvis" }, { - "voter": "microluck", - "rshares": "561462512" + "rshares": "561462512", + "voter": "microluck" }, { - "voter": "fortuner", - "rshares": "54313084" + "rshares": "54313084", + "voter": "fortuner" }, { - "voter": "pjheinz", - "rshares": "9443278113" + "rshares": "9443278113", + "voter": "pjheinz" }, { - "voter": "thecurator", - "rshares": "33826834839" + "rshares": "33826834839", + "voter": "thecurator" }, { - "voter": "virtualgrowth", - "rshares": "3054149279" + "rshares": "3054149279", + "voter": "virtualgrowth" }, { - "voter": "lemouth", - "rshares": "7981841214" + "rshares": "7981841214", + "voter": "lemouth" }, { - "voter": "runaway-psyche", - "rshares": "20539806569" + "rshares": "20539806569", + "voter": "runaway-psyche" }, { - "voter": "chanbam", - "rshares": "916656643" + "rshares": "916656643", + "voter": "chanbam" }, { - "voter": "anotherjoe", - "rshares": "95362884392" + "rshares": "95362884392", + "voter": "anotherjoe" }, { - "voter": "saveliy", - "rshares": "59750246" + "rshares": "59750246", + "voter": "saveliy" }, { - "voter": "alfaman", - "rshares": "62751101" + "rshares": "62751101", + "voter": "alfaman" }, { - "voter": "gvargas123", - "rshares": "11375408076" + "rshares": "11375408076", + "voter": "gvargas123" }, { - "voter": "johnbyrd", - "rshares": "50698107" + "rshares": "50698107", + "voter": "johnbyrd" }, { - "voter": "thomasaustin", - "rshares": "53039566" + "rshares": "53039566", + "voter": "thomasaustin" }, { - "voter": "thermor", - "rshares": "50680459" + "rshares": "50680459", + "voter": "thermor" }, { - "voter": "ficholl", - "rshares": "50691211" + "rshares": "50691211", + "voter": "ficholl" }, { - "voter": "widell", - "rshares": "50673817" + "rshares": "50673817", + "voter": "widell" }, { - "voter": "steevc", - "rshares": "278004039" + "rshares": "278004039", + "voter": "steevc" }, { - "voter": "revelbrooks", - "rshares": "51481279" + "rshares": "51481279", + "voter": "revelbrooks" }, { - "voter": "mrlogic", - "rshares": "377542979" + "rshares": "377542979", + "voter": "mrlogic" }, { - "voter": "steempipe", - "rshares": "61115647" + "rshares": "61115647", + "voter": "steempipe" }, { - "voter": "andrewawerdna", - "rshares": "23522356557" + "rshares": "23522356557", + "voter": "andrewawerdna" }, { - "voter": "joelbow", - "rshares": "75274936" + "rshares": "75274936", + "voter": "joelbow" }, { - "voter": "craigwilliamz", - "rshares": "9139349966" + "rshares": "9139349966", + "voter": "craigwilliamz" }, { - "voter": "naquoya", - "rshares": "3632579654" + "rshares": "3632579654", + "voter": "naquoya" }, { - "voter": "curpose", - "rshares": "52708083" + "rshares": "52708083", + "voter": "curpose" }, { - "voter": "lenar", - "rshares": "1233668048" + "rshares": "1233668048", + "voter": "lenar" }, { - "voter": "lesliestarrohara", - "rshares": "9818184488" + "rshares": "9818184488", + "voter": "lesliestarrohara" }, { - "voter": "uziriel", - "rshares": "88019548" + "rshares": "88019548", + "voter": "uziriel" }, { - "voter": "troich", - "rshares": "50588612" + "rshares": "50588612", + "voter": "troich" }, { - "voter": "lovetosteemit", - "rshares": "70275964" + "rshares": "70275964", + "voter": "lovetosteemit" }, { - "voter": "davidjkelley", - "rshares": "1624586871" + "rshares": "1624586871", + "voter": "davidjkelley" }, { - "voter": "markrmorrisjr", - "rshares": "78525447485" + "rshares": "78525447485", + "voter": "markrmorrisjr" }, { - "voter": "crion", - "rshares": "52842496" + "rshares": "52842496", + "voter": "crion" }, { - "voter": "greatness", - "rshares": "182060433" + "rshares": "182060433", + "voter": "greatness" }, { - "voter": "hitherise", - "rshares": "52505412" + "rshares": "52505412", + "voter": "hitherise" }, { - "voter": "wiss", - "rshares": "50262756" + "rshares": "50262756", + "voter": "wiss" }, { - "voter": "sponge-bob", - "rshares": "42587324218" + "rshares": "42587324218", + "voter": "sponge-bob" }, { - "voter": "digital-wisdom", - "rshares": "15560806947" + "rshares": "15560806947", + "voter": "digital-wisdom" }, { - "voter": "leavemealone", - "rshares": "5676881799" + "rshares": "5676881799", + "voter": "leavemealone" }, { - "voter": "areynolds", - "rshares": "474964783" + "rshares": "474964783", + "voter": "areynolds" }, { - "voter": "ethical-ai", - "rshares": "3708768210" + "rshares": "3708768210", + "voter": "ethical-ai" }, { - "voter": "jamespro", - "rshares": "53281654" + "rshares": "53281654", + "voter": "jamespro" }, { - "voter": "stroully", - "rshares": "51033798" + "rshares": "51033798", + "voter": "stroully" }, { - "voter": "jwaser", - "rshares": "6827381497" + "rshares": "6827381497", + "voter": "jwaser" }, { - "voter": "tfeldman", - "rshares": "345961132" + "rshares": "345961132", + "voter": "tfeldman" }, { - "voter": "thadm", - "rshares": "50712038" + "rshares": "50712038", + "voter": "thadm" }, { - "voter": "prof", - "rshares": "50710305" + "rshares": "50710305", + "voter": "prof" }, { - "voter": "ionescur", - "rshares": "1414660150" + "rshares": "1414660150", + "voter": "ionescur" }, { - "voter": "thecyclist", - "rshares": "145187700042" + "rshares": "145187700042", + "voter": "thecyclist" }, { - "voter": "kev7000", - "rshares": "620633970" + "rshares": "620633970", + "voter": "kev7000" }, { - "voter": "yorsens", - "rshares": "52560790" + "rshares": "52560790", + "voter": "yorsens" }, { - "voter": "asksisk", - "rshares": "207236223370" + "rshares": "207236223370", + "voter": "asksisk" }, { - "voter": "jeremyschew", - "rshares": "55690180" + "rshares": "55690180", + "voter": "jeremyschew" }, { - "voter": "bane", - "rshares": "52242652" + "rshares": "52242652", + "voter": "bane" }, { - "voter": "vive", - "rshares": "52236265" + "rshares": "52236265", + "voter": "vive" }, { - "voter": "coad", - "rshares": "50054445" + "rshares": "50054445", + "voter": "coad" }, { - "voter": "dubi", - "rshares": "25849035338" + "rshares": "25849035338", + "voter": "dubi" }, { - "voter": "bwaser", - "rshares": "2674022812" + "rshares": "2674022812", + "voter": "bwaser" }, { - "voter": "renzoarg", - "rshares": "7642689568" + "rshares": "7642689568", + "voter": "renzoarg" }, { - "voter": "sofa", - "rshares": "53003720" + "rshares": "53003720", + "voter": "sofa" }, { - "voter": "alina1", - "rshares": "2201645172" + "rshares": "2201645172", + "voter": "alina1" }, { - "voter": "digitalbrain", - "rshares": "1504667661" + "rshares": "1504667661", + "voter": "digitalbrain" }, { - "voter": "mariandavp", - "rshares": "7681172153" + "rshares": "7681172153", + "voter": "mariandavp" }, { - "voter": "brains", - "rshares": "43440714161" + "rshares": "43440714161", + "voter": "brains" }, { - "voter": "ibringawareness", - "rshares": "3956902718" + "rshares": "3956902718", + "voter": "ibringawareness" }, { - "voter": "ailo", - "rshares": "50933404" + "rshares": "50933404", + "voter": "ailo" }, { - "voter": "burnin", - "rshares": "5419706802" + "rshares": "5419706802", + "voter": "burnin" }, { - "voter": "nelyp", - "rshares": "598109050" + "rshares": "598109050", + "voter": "nelyp" }, { - "voter": "f1111111", - "rshares": "51261721" + "rshares": "51261721", + "voter": "f1111111" }, { - "voter": "anomaly", - "rshares": "438008616" + "rshares": "438008616", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2400009033" + "rshares": "2400009033", + "voter": "ellepdub" }, { - "voter": "gregorygarcia", - "rshares": "52928580" + "rshares": "52928580", + "voter": "gregorygarcia" }, { - "voter": "ola1", - "rshares": "263062725" + "rshares": "263062725", + "voter": "ola1" }, { - "voter": "herpetologyguy", - "rshares": "12084353453" + "rshares": "12084353453", + "voter": "herpetologyguy" }, { - "voter": "eavy", - "rshares": "50441122" + "rshares": "50441122", + "voter": "eavy" }, { - "voter": "roto", - "rshares": "51484593" + "rshares": "51484593", + "voter": "roto" }, { - "voter": "drac59", - "rshares": "50263480" + "rshares": "50263480", + "voter": "drac59" }, { - "voter": "ancientofdays", - "rshares": "76492342" + "rshares": "76492342", + "voter": "ancientofdays" }, { - "voter": "morgan.waser", - "rshares": "4814064056" + "rshares": "4814064056", + "voter": "morgan.waser" }, { - "voter": "cfisher", - "rshares": "51615039" + "rshares": "51615039", + "voter": "cfisher" }, { - "voter": "humans", - "rshares": "58668861" + "rshares": "58668861", + "voter": "humans" }, { - "voter": "haved", - "rshares": "50938725" + "rshares": "50938725", + "voter": "haved" }, { - "voter": "teo", - "rshares": "61035542" + "rshares": "61035542", + "voter": "teo" }, { - "voter": "greenwayoflife", - "rshares": "2019644456" + "rshares": "2019644456", + "voter": "greenwayoflife" }, { - "voter": "palladium", - "rshares": "50873654" + "rshares": "50873654", + "voter": "palladium" }, { - "voter": "thebiggestidea", - "rshares": "1523610145" + "rshares": "1523610145", + "voter": "thebiggestidea" }, { - "voter": "unilever", - "rshares": "50572441" + "rshares": "50572441", + "voter": "unilever" }, { - "voter": "penthouse", - "rshares": "50565798" + "rshares": "50565798", + "voter": "penthouse" }, { - "voter": "bapparabi", - "rshares": "50534533" + "rshares": "50534533", + "voter": "bapparabi" }, { - "voter": "connection", - "rshares": "50482289" + "rshares": "50482289", + "voter": "connection" }, { - "voter": "aschwin", - "rshares": "50351738" + "rshares": "50351738", + "voter": "aschwin" }, { - "voter": "haddock", - "rshares": "166200503" + "rshares": "166200503", + "voter": "haddock" }, { - "voter": "strong-ai", - "rshares": "3607535118" + "rshares": "3607535118", + "voter": "strong-ai" }, { - "voter": "igtes", - "rshares": "69589512" + "rshares": "69589512", + "voter": "igtes" }, { - "voter": "curie", - "rshares": "46774280781" + "rshares": "46774280781", + "voter": "curie" }, { - "voter": "olesia83", - "rshares": "82287966" + "rshares": "82287966", + "voter": "olesia83" }, { - "voter": "dikanevroman", - "rshares": "705822962" + "rshares": "705822962", + "voter": "dikanevroman" }, { - "voter": "buffett", - "rshares": "138459757" + "rshares": "138459757", + "voter": "buffett" }, { - "voter": "uct", - "rshares": "159730645" + "rshares": "159730645", + "voter": "uct" }, { - "voter": "front", - "rshares": "159716853" + "rshares": "159716853", + "voter": "front" }, { - "voter": "iberia", - "rshares": "158676075" + "rshares": "158676075", + "voter": "iberia" }, { - "voter": "ndea30", - "rshares": "158649039" + "rshares": "158649039", + "voter": "ndea30" }, { - "voter": "domenico", - "rshares": "158641883" + "rshares": "158641883", + "voter": "domenico" }, { - "voter": "witchcraftblog", - "rshares": "435351417" + "rshares": "435351417", + "voter": "witchcraftblog" }, { - "voter": "serena199", - "rshares": "157805871" + "rshares": "157805871", + "voter": "serena199" }, { - "voter": "digitalillusions", - "rshares": "160900665" + "rshares": "160900665", + "voter": "digitalillusions" }, { - "voter": "gia7", - "rshares": "157774885" + "rshares": "157774885", + "voter": "gia7" }, { - "voter": "dresden", - "rshares": "1883713307" + "rshares": "1883713307", + "voter": "dresden" }, { - "voter": "skrillex", - "rshares": "160835930" + "rshares": "160835930", + "voter": "skrillex" }, { - "voter": "mgibson", - "rshares": "205939206" + "rshares": "205939206", + "voter": "mgibson" }, { - "voter": "richie4", - "rshares": "157303076" + "rshares": "157303076", + "voter": "richie4" }, { - "voter": "coraline88", - "rshares": "157241455" + "rshares": "157241455", + "voter": "coraline88" }, { - "voter": "harlen", - "rshares": "156977663" + "rshares": "156977663", + "voter": "harlen" }, { - "voter": "food-creator", - "rshares": "155225345" + "rshares": "155225345", + "voter": "food-creator" }, { - "voter": "yanuel", - "rshares": "156939548" + "rshares": "156939548", + "voter": "yanuel" }, { - "voter": "ysa", - "rshares": "692395145" + "rshares": "692395145", + "voter": "ysa" }, { - "voter": "daritza", - "rshares": "156889267" + "rshares": "156889267", + "voter": "daritza" }, { - "voter": "capcom", - "rshares": "159973989" + "rshares": "159973989", + "voter": "capcom" }, { - "voter": "haribo", - "rshares": "159950870" + "rshares": "159950870", + "voter": "haribo" }, { - "voter": "benetton", - "rshares": "159531007" + "rshares": "159531007", + "voter": "benetton" }, { - "voter": "fallout", - "rshares": "156054487" + "rshares": "156054487", + "voter": "fallout" }, { - "voter": "alterego", - "rshares": "152431082" + "rshares": "152431082", + "voter": "alterego" }, { - "voter": "zendesk", - "rshares": "158486055" + "rshares": "158486055", + "voter": "zendesk" }, { - "voter": "lefrisa", - "rshares": "158198121" + "rshares": "158198121", + "voter": "lefrisa" }, { - "voter": "bicolisarog", - "rshares": "157848543" + "rshares": "157848543", + "voter": "bicolisarog" }, { - "voter": "antaja", - "rshares": "184381906" + "rshares": "184381906", + "voter": "antaja" }, { - "voter": "steemdesigner", - "rshares": "203602662" + "rshares": "203602662", + "voter": "steemdesigner" }, { - "voter": "dougkarr", - "rshares": "154247502" + "rshares": "154247502", + "voter": "dougkarr" }, { - "voter": "alienbutt", - "rshares": "846327994" + "rshares": "846327994", + "voter": "alienbutt" }, { - "voter": "techslut", - "rshares": "182445807" + "rshares": "182445807", + "voter": "techslut" }, { - "voter": "paulocouto", - "rshares": "112446078" + "rshares": "112446078", + "voter": "paulocouto" }, { - "voter": "countofdelphi", - "rshares": "152816202" + "rshares": "152816202", + "voter": "countofdelphi" }, { - "voter": "kevinfoesenek", - "rshares": "151525581" + "rshares": "151525581", + "voter": "kevinfoesenek" }, { - "voter": "unterhd6", - "rshares": "151078228" + "rshares": "151078228", + "voter": "unterhd6" }, { - "voter": "newsfeed", - "rshares": "141999204" + "rshares": "141999204", + "voter": "newsfeed" }, { - "voter": "dirlei.sdias", - "rshares": "147818170" + "rshares": "147818170", + "voter": "dirlei.sdias" }, { - "voter": "trickster512", - "rshares": "153395599" + "rshares": "153395599", + "voter": "trickster512" }, { - "voter": "denise12", - "rshares": "150319355" + "rshares": "150319355", + "voter": "denise12" } ], + "author": "curie", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 318, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", - "blacklists": [] - }, - { - "post_id": 960258, - "author": "gavvet", - "permlink": "why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", - "category": "herpetology", - "title": "Why You Don’t Want to Kill that Snake in Your Yard (featuring @herpetologyguy as author)", - "body": "@herpetologyguy\n\nOne of my many tasks as a zoo keeper is connecting people to animals. \n-\n\n\n\n

The museum I work at is unique because we showcase animals that are native to Virginia -- meaning that these are animals people will find close to home, rather than across the ocean in some distant country. This makes my job more crucial in that I am responsible for educating people about the reptiles and amphibians that they will find in their own backyards. And obviously, there’s one group of reptiles that gives people more pause than almost any other animal . . . . 

\n

Snakes. 

\n

http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj   Picture Credit

\n

I do public programs featuring snakes quite frequently.  I believe people should know how to identify local venomous/non-venomous snakes, their role in the environment and how to deal with them when they are in close proximity to our homes.  Usually, I get eager audiences asking great questions.  But, every now and then, I get some idiot who tells me, “I saw that same snake in my backyard! I chopped off its head with a shovel!”

\n

Are they an idiot for killing the snake?  Not necessarily . . . I don’t know the situation behind the encounter. But, only an idiot would walk into a wildlife facility, approach a zoo keeper and proudly declare that they kill the very same animals that the keeper is charged with the care for.  Would you walk into an animal shelter and tell someone working there that you enjoy stomping on puppies?  To us, there’s not much difference… 

\n

http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png   Picture Credit\n

\n

The best we can do in these situations is to try to educate people. This can be difficult because so many people are set in their ways -- plus we have to combat an instinctive fear and prejudice against snakes.  So, I’m going to briefly lay it all out for you and tell you \"Why you shouldn’t kill that snake in your yard.\" 

\n

http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg   Picture Credit

\n

1.  It’s ILLEGAL in most states to kill a wild snake, unless that snake presents an IMMEDIATE threat.  And no, a snake crawling through your yard does not represent a good enough excuse to use force.  We’re talking about a situation where a venomous snake is about to strike and you have no escape route but to fight your way out.  And guess what, that really doesn’t ever happen (barring instances where someone purposefully provokes an animal).  Wildlife and law enforcement agencies are cracking down on people killing snakes, so it’s better to keep yourself out of trouble. 

\n

http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg   Picture Credit

\n

2.  You are putting yourself in harm’s way.  The vast majority of snake bites occur when people attempt to capture or kill snakes.  If left alone, the snake CANNOT hurt you.  Call wildlife services or trained professionals to remove the animal. 

\n

http://www.snakegetters.com/demo/bud-cotton-gg.jpg   Picture Credit

\n

3.  It’s an incredibly beneficial animal, and you’d be foolish to kill it.  Small snakes eat a huge variety of pest insects that destroy gardens, while large snakes typically feed on rats and other rodents that infest our homes.  If you see a large snake hanging around, you have a rodent problem; snakes will not hang around if there is no food source.  To keep snakes from being attracted to your property, do your best to remove any shelter or food sources that would attract rodents.  Some snakes even eat other snakes, and species like the harmless king snake will even feed on venomous species! 

\n

https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg   Picture Credit

\n

4.  Another snake might show up.  Snakes will not typically inhabit the same area in order to avoid competition.  If you kill that harmless rat snake, but you still have a food source nearby, another snake may move in to make use of that source.  The new snake may be another harmless species or something a bit less desirable.  So why not let that harmless snake take care of the infestation for you?

\n

http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg   Picture Credit

\n

Having a snake around can be hugely beneficial to you.  It is a free, environmentally-safe form of pest control.  Snakes, including venomous species, are non-aggressive animals (unless you provoke them) that will actively do their best to AVOID people.  A resident snake will often go unnoticed by homeowners, and most encounters are fleeting glimpses of the snake making a hasty escape.  Remember that snakes have their own unique role in the environment, and regardless of our own fears and feelings towards them, they are a necessary part of life. 

\n

   http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg   Picture Credit

\n\n\nif you liked this also please check out:\nhttps://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians\n\n\n***don't forget to follow @herpetologyguy***", + "blacklists": [], + "body": "\n

\n

One Month of Project Curie

\n

This will be special update from Project Curie. One month ago, Project Curie began with humble beginnings. It has been an exhilarating experience for the team and we are delighted to share our progress with the Steemit community. To know more about Project Curie, do check out our initial announcement.


\n

Project Curie wishes to thank @pharesim, @val, @silversteem and @clayop along with @nextgencrypto and @berniesanders for helping us reward more deserving posts

\n

When a group of Steemit writers got together to form Project Curie, we thought that if we pooled our own votes on some posts, we could help reward some emerging and undiscovered authors who were posting great original material. 

\n

$5 later, it was clear our combined votes wouldn\u2019t make a huge difference.

\n

Fortunately, we were able to form a partnership with @nextgencrypto who was generous enough to donate some voting power to help reward deserving posters who were not yet established. @berniesanders then joined to help. With their support, Project Curie became a reality. 

\n

Today, we announce that @val, @pharesim, @silversteem and @clayop also have donated additional voting power to help Project Curie reach a greater number of original content posts from undiscovered and deserving authors. Please join us in thanking them. And please do not send your posts directly to any of these individuals; Project Curie is curating the posts and you are welcome to submit any good ones you find to the #curie channel on Steemit.chat.


\n\n

Proyecto Cervantes

\n

Project Curie is excited to announce a new branch of curation created to support Spanish authors on Steemit. The branch is called \u201cProyecto Cervantes\u201d and it\u2019s main curators are @gargon and @pgarcgo. The goal is to find and reward Spanish or bilingual (Spanish and English) posts on Steemit in order to foster a more diverse community. @gargon and @pgarcgo will be creating a compilation post for every 10 posts that they curate in order to provide transparency as to which posts are being rewarded. The hope is also to provide the original authors more exposure. You can find their first compilation posts here and here. Two members of Project Curie are Spanish speakers ( @anwenbaumeister and @the-alien), and they provide a second line of curation and review for these posts. So, if you are a Spanish speaker, we encourage you to begin writing bilingual posts in order to create a bridge between the two languages and communities!

\n\n
\n\n

Statistics from Month #1

\n

Total posts curated: 2055
\n
Unique authors rewarded: 763
\n
Total rewards generated for authors: SBD 158,151
\n
Mean reward generated per post: SBD 77
\n
Median reward generated per post: SBD 40  

\n

\n

Since we began tracking on 18th August, we have consistently voted on an average of over 75 posts per day. The trajectory is clearly heading up, and in the last week we have been averaging nearly 100 posts. 

\n

Authors

\n

The Top 10 Authors by number of posts curated were -

\n
    \n
  • @kimal73   
  • \n
  • @herverisson   
  • \n
  • @cristi   
  • \n
  • @lukeofkondor   
  • \n
  • @papa-pepper   
  • \n
  • @cryptos   
  • \n
  • @mariandavp   
  • \n
  • @stephmckenzie   
  • \n
  • @eveningstar92   
  • \n
  • @prufarchy    
  • \n
\n

Top Authors by payouts includes @alexbeyman, @kaylinart, @brianphobos, @jamielefay, @omfedor, @stephmckenzie, @ionescur, @aboundlessworld and @anotherjoe. Many of those names are pretty familiar today, but less than a month ago, they were new authors struggling for exposure.

\n

Tags/Topics

\n

The most used tag was \"life\", but that pretty much includes everything!

\n

\n

The most popular topics were \"art\" (549) and \"photography\" (418). \"Story\" and \"writing\" were pretty close, tagged on around 370 posts each, though we suspect these two tags are often repeated. \"Travel\" and \"science\" also make an appearance. Looking forward, we intend to focus more on original science and technology related posts, and other unique / niche topics. 

\n

#curie

\n

Following our announcement on September 2nd, the #curie channel has been a remarkable success. Currently we have 218 users in the room, 44 of whom have curated content from other authors. We have upvoted 105 posts submitted in #curie, and paid out SBD 525 to curators. 

\n

Top curators from #curie were -

\n
    \n
  • @pfunk
  • \n
  • @kental
  • \n
  • @jamtaylor
  • \n
  • @deviedev
  • \n
  • @royaltiffany
  • \n
\n

Join us on #curie at Steemit.chat and keep the submissions coming! 


\n

Thanks

\n

Last, but not least, we wish to thank - 

\n

@knozaki2015, @shaka, @razvanelulmarin, @greenwayoflife, @jasonstaggers for their generous donations.
\n@royaltiffany for moderating #curie and creating the noble TheButler bot. :)
\n@firepower for setting up the #curie room.
\n
\nAnd of course, everyone voting on and commenting on posts we curate!


\n

Onward to Month #2! 

\n

We are working to increase our reach and rewards for authors, courtesy of extended whale support. We are also setting up @curie as a universal voter for all posts we curate. This way, you can choose to mirror our votes to support the authors. Look out for an announcement regarding this in our Daily Curation List posts. From next week, every Monday we'll have a Weekly Roundup with statistics, similar to this post.

\n

We are always open to feedback, and would love to know how you feel we could do better in Month #2!

\n", + "category": "curie", + "children": 37, + "created": "2016-09-14T14:11:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "herpetology", - "reptiles", - "snakes", - "science" - ], - "users": [ - "herpetologyguy" - ], "image": [ - "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", - "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", - "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", - "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", - "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", - "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", - "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", - "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg" + "https://www.steemimg.com/images/2016/09/01/Babel-Lille-2012-Bibliohteque-ideale-2-Jean-Francois-RAUZIER4f9da.jpg", + "https://www.steemimg.com/images/2016/09/14/curie-1da303.jpg", + "https://www.steemimg.com/images/2016/09/14/curie-23f98a.jpg" ], "links": [ - "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", - "http://www.sciencemag.org", - "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", - "http://proactivepestga.com", - "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", - "http://blogs.discovermagazine.com", - "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", - "http://www.mylakelandnow.com", - "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", - "http://www.snakegetters.com", - "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", - "https://www.youtube.com/watch?v=ImOj1CKTBqE", - "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", - "http://phenomena.nationalgeographic.com", - "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg", - "http://westernmassnaturalist.org", - "https://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians" + "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", + "https://steemit.com/spanish/@gargon/proyecto-cervantes-08-11-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", + "https://steemit.com/spanish/@pgarcgo/proyecto-cervantes-11-13-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and" + ], + "tags": [ + "curie", + "minnows", + "hidden-gems", + "steemit", + "project-curie" + ], + "users": [ + "pharesim", + "val", + "silversteem", + "clayop", + "nextgencrypto", + "berniesanders", + "gargon", + "pgarcgo", + "anwenbaumeister", + "the-alien", + "kimal73", + "herverisson", + "cristi", + "lukeofkondor", + "papa-pepper", + "cryptos", + "mariandavp", + "stephmckenzie", + "eveningstar92", + "prufarchy", + "alexbeyman", + "kaylinart", + "brianphobos", + "jamielefay", + "omfedor", + "ionescur", + "aboundlessworld", + "anotherjoe", + "pfunk", + "kental", + "jamtaylor", + "deviedev", + "royaltiffany", + "knozaki2015", + "shaka", + "razvanelulmarin", + "greenwayoflife", + "jasonstaggers", + "firepower", + "curie" ] }, - "created": "2016-09-15T18:19:39", - "updated": "2016-09-15T18:19:39", - "depth": 0, - "children": 6, - "net_rshares": 68620995119384, - "is_paidout": false, - "payout_at": "2016-09-16T18:44:06", - "payout": 274.438, - "pending_payout_value": "274.438 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 203814685511375, + "payout": 2327.995, + "payout_at": "2016-09-21T14:11:30", + "pending_payout_value": "2327.995 HBD", + "percent_hbd": 10000, + "permlink": "special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", + "post_id": 1243454, "promoted": "0.000 HBD", "replies": [], - "active_votes": [ - { - "voter": "smooth", - "rshares": "31307487536364" - }, + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 318 + }, + "title": "Special Edition: Major Updates & Project Curie Month #1 Roundup (12 August - 11 September 2016)", + "updated": "2016-09-14T16:09:51", + "url": "/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016" + }, + { + "active_votes": [ + { + "rshares": "31307487536364", + "voter": "smooth" + }, { - "voter": "anonymous", - "rshares": "231809639013" + "rshares": "231809639013", + "voter": "anonymous" }, { - "voter": "butterfly", - "rshares": "1551268628220" + "rshares": "1551268628220", + "voter": "butterfly" }, { - "voter": "riverhead", - "rshares": "4287714457313" + "rshares": "4287714457313", + "voter": "riverhead" }, { - "voter": "badassmother", - "rshares": "1855967006728" + "rshares": "1855967006728", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2053236030423" + "rshares": "2053236030423", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1271804694676" + "rshares": "1271804694676", + "voter": "rossco99" }, { - "voter": "wang", - "rshares": "2206068741954" + "rshares": "2206068741954", + "voter": "wang" }, { - "voter": "jaewoocho", - "rshares": "22391622942" + "rshares": "22391622942", + "voter": "jaewoocho" }, { - "voter": "joseph", - "rshares": "1534654466021" + "rshares": "1534654466021", + "voter": "joseph" }, { - "voter": "recursive2", - "rshares": "466132509421" + "rshares": "466132509421", + "voter": "recursive2" }, { - "voter": "recursive3", - "rshares": "452874558937" + "rshares": "452874558937", + "voter": "recursive3" }, { - "voter": "masteryoda", - "rshares": "636519834128" + "rshares": "636519834128", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120576239931" + "rshares": "3120576239931", + "voter": "recursive" }, { - "voter": "smooth.witness", - "rshares": "5942254587236" + "rshares": "5942254587236", + "voter": "smooth.witness" }, { - "voter": "idol", - "rshares": "8927291120" + "rshares": "8927291120", + "voter": "idol" }, { - "voter": "steemrollin", - "rshares": "800066797130" + "rshares": "800066797130", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "4941942978" + "rshares": "4941942978", + "voter": "sakr" }, { - "voter": "chitty", - "rshares": "284401462010" + "rshares": "284401462010", + "voter": "chitty" }, { - "voter": "unosuke", - "rshares": "75736848691" + "rshares": "75736848691", + "voter": "unosuke" }, { - "voter": "noaommerrr", - "rshares": "481790356914" + "rshares": "481790356914", + "voter": "noaommerrr" }, { - "voter": "jocelyn", - "rshares": "1536592488" + "rshares": "1536592488", + "voter": "jocelyn" }, { - "voter": "acidsun", - "rshares": "85270554570" + "rshares": "85270554570", + "voter": "acidsun" }, { - "voter": "gregory-f", - "rshares": "14502980866" + "rshares": "14502980866", + "voter": "gregory-f" }, { - "voter": "edgeland", - "rshares": "154334962550" + "rshares": "154334962550", + "voter": "edgeland" }, { - "voter": "gregory60", - "rshares": "9028550345" + "rshares": "9028550345", + "voter": "gregory60" }, { - "voter": "gavvet", - "rshares": "1196485708874" + "rshares": "1196485708874", + "voter": "gavvet" }, { - "voter": "eeks", - "rshares": "89897944197" + "rshares": "89897944197", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1511911763" + "rshares": "1511911763", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "122160437" + "rshares": "122160437", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "1471747302" + "rshares": "1471747302", + "voter": "spaninv" }, { - "voter": "elishagh1", - "rshares": "1987313581" + "rshares": "1987313581", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7803257741" + "rshares": "7803257741", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "584279800798" + "rshares": "584279800798", + "voter": "nanzo-scoop" }, { - "voter": "kefkius", - "rshares": "9857825141" + "rshares": "9857825141", + "voter": "kefkius" }, { - "voter": "mummyimperfect", - "rshares": "177417522325" + "rshares": "177417522325", + "voter": "mummyimperfect" }, { - "voter": "alenevaa", - "rshares": "2366347863" + "rshares": "2366347863", + "voter": "alenevaa" }, { - "voter": "coar", - "rshares": "313697862" + "rshares": "313697862", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106635074770" + "rshares": "106635074770", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061264730" + "rshares": "1061264730", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "3187850436" + "rshares": "3187850436", + "voter": "cryptofunk" }, { - "voter": "kodi", - "rshares": "579494558" + "rshares": "579494558", + "voter": "kodi" }, { - "voter": "error", - "rshares": "2003359924" + "rshares": "2003359924", + "voter": "error" }, { - "voter": "andu", - "rshares": "11848125383" + "rshares": "11848125383", + "voter": "andu" }, { - "voter": "cyber", - "rshares": "970579316703" + "rshares": "970579316703", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "59952188311" + "rshares": "59952188311", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "49580154489" + "rshares": "49580154489", + "voter": "ak2020" }, { - "voter": "satoshifund", - "rshares": "3848697023555" + "rshares": "3848697023555", + "voter": "satoshifund" }, { - "voter": "applecrisp", - "rshares": "402139444" + "rshares": "402139444", + "voter": "applecrisp" }, { - "voter": "altoz", - "rshares": "35693164103" + "rshares": "35693164103", + "voter": "altoz" }, { - "voter": "stiletto", - "rshares": "95314034" + "rshares": "95314034", + "voter": "stiletto" }, { - "voter": "will-zewe", - "rshares": "219283354085" + "rshares": "219283354085", + "voter": "will-zewe" }, { - "voter": "lindee-hamner", - "rshares": "12241505540" + "rshares": "12241505540", + "voter": "lindee-hamner" }, { - "voter": "zakharya", - "rshares": "15787522491" + "rshares": "15787522491", + "voter": "zakharya" }, { - "voter": "trogdor", - "rshares": "275008585094" + "rshares": "275008585094", + "voter": "trogdor" }, { - "voter": "tee-em", - "rshares": "5047464747" + "rshares": "5047464747", + "voter": "tee-em" }, { - "voter": "mark-waser", - "rshares": "5821262190" + "rshares": "5821262190", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "118356217412" + "rshares": "118356217412", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "16027781644" + "rshares": "16027781644", + "voter": "kimziv" }, { - "voter": "honeythief", - "rshares": "45359587433" + "rshares": "45359587433", + "voter": "honeythief" }, { - "voter": "emily-cook", - "rshares": "75333038089" + "rshares": "75333038089", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187607792" + "rshares": "2187607792", + "voter": "superfreek" }, { - "voter": "grey580", - "rshares": "17557768630" + "rshares": "17557768630", + "voter": "grey580" }, { - "voter": "ladyclair", - "rshares": "275327756" + "rshares": "275327756", + "voter": "ladyclair" }, { - "voter": "michaellamden68", - "rshares": "3898829337" + "rshares": "3898829337", + "voter": "michaellamden68" }, { - "voter": "thebatchman", - "rshares": "19975706505" + "rshares": "19975706505", + "voter": "thebatchman" }, { - "voter": "orly", - "rshares": "3350419346" + "rshares": "3350419346", + "voter": "orly" }, { - "voter": "riscadox", - "rshares": "5271030976" + "rshares": "5271030976", + "voter": "riscadox" }, { - "voter": "furion", - "rshares": "7380892516" + "rshares": "7380892516", + "voter": "furion" }, { - "voter": "cdubendo", - "rshares": "105911917280" + "rshares": "105911917280", + "voter": "cdubendo" }, { - "voter": "jacor", - "rshares": "156249887947" + "rshares": "156249887947", + "voter": "jacor" }, { - "voter": "steem1653", - "rshares": "2632460141" + "rshares": "2632460141", + "voter": "steem1653" }, { - "voter": "cynetyc", - "rshares": "136322030" + "rshares": "136322030", + "voter": "cynetyc" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "thegoodguy", - "rshares": "5250179537" + "rshares": "5250179537", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "14168005907" + "rshares": "14168005907", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209533734" + "rshares": "4209533734", + "voter": "karen13" }, { - "voter": "noodhoog", - "rshares": "8751103405" + "rshares": "8751103405", + "voter": "noodhoog" }, { - "voter": "hyiparena", - "rshares": "8164924332" + "rshares": "8164924332", + "voter": "hyiparena" }, { - "voter": "milestone", - "rshares": "46859060143" + "rshares": "46859060143", + "voter": "milestone" }, { - "voter": "artific", - "rshares": "21565632626" + "rshares": "21565632626", + "voter": "artific" }, { - "voter": "creemej", - "rshares": "33739169732" + "rshares": "33739169732", + "voter": "creemej" }, { - "voter": "nippel66", - "rshares": "15378221086" + "rshares": "15378221086", + "voter": "nippel66" }, { - "voter": "blueorgy", - "rshares": "163325751551" + "rshares": "163325751551", + "voter": "blueorgy" }, { - "voter": "benjiberigan", - "rshares": "13373880577" + "rshares": "13373880577", + "voter": "benjiberigan" }, { - "voter": "poseidon", - "rshares": "349618451" + "rshares": "349618451", + "voter": "poseidon" }, { - "voter": "smolalit", - "rshares": "7946812357" + "rshares": "7946812357", + "voter": "smolalit" }, { - "voter": "simon.braki.love", - "rshares": "3365797955" + "rshares": "3365797955", + "voter": "simon.braki.love" }, { - "voter": "sharker", - "rshares": "5609578664" + "rshares": "5609578664", + "voter": "sharker" }, { - "voter": "jl777", - "rshares": "204618396015" + "rshares": "204618396015", + "voter": "jl777" }, { - "voter": "oecp85", - "rshares": "1114903893" + "rshares": "1114903893", + "voter": "oecp85" }, { - "voter": "victoria2002", - "rshares": "1218867625" + "rshares": "1218867625", + "voter": "victoria2002" }, { - "voter": "positive", - "rshares": "1226120506" + "rshares": "1226120506", + "voter": "positive" }, { - "voter": "yarly", - "rshares": "1809205777" + "rshares": "1809205777", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "272641013" + "rshares": "272641013", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "273048922" + "rshares": "273048922", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "157733805" + "rshares": "157733805", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "158624349" + "rshares": "158624349", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "90416287" + "rshares": "90416287", + "voter": "yarly7" }, { - "voter": "steemchain", - "rshares": "50626015" + "rshares": "50626015", + "voter": "steemchain" }, { - "voter": "proto", - "rshares": "17267341753" + "rshares": "17267341753", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "2708629529" + "rshares": "2708629529", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "437620869" + "rshares": "437620869", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "234191245" + "rshares": "234191245", + "voter": "yarly11" }, { - "voter": "royalmacro", - "rshares": "8781903824" + "rshares": "8781903824", + "voter": "royalmacro" }, { - "voter": "yarly12", - "rshares": "81879061" + "rshares": "81879061", + "voter": "yarly12" }, { - "voter": "steemster1", - "rshares": "146224042" + "rshares": "146224042", + "voter": "steemster1" }, { - "voter": "dmilash", - "rshares": "3022447454" + "rshares": "3022447454", + "voter": "dmilash" }, { - "voter": "glitterpig", - "rshares": "3353991305" + "rshares": "3353991305", + "voter": "glitterpig" }, { - "voter": "taker", - "rshares": "8734185109" + "rshares": "8734185109", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "7825324952" + "rshares": "7825324952", + "voter": "nekromarinist" }, { - "voter": "sharon", - "rshares": "57873464" + "rshares": "57873464", + "voter": "sharon" }, { - "voter": "lillianjones", - "rshares": "58971492" + "rshares": "58971492", + "voter": "lillianjones" }, { - "voter": "laonie", - "rshares": "95786319596" + "rshares": "95786319596", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "153264363976" + "rshares": "153264363976", + "voter": "twinner" }, { - "voter": "laoyao", - "rshares": "24562882668" + "rshares": "24562882668", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "2664979204" + "rshares": "2664979204", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "19443061295" + "rshares": "19443061295", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "726959262" + "rshares": "726959262", + "voter": "flysaga" }, { - "voter": "asdes", - "rshares": "7707314246" + "rshares": "7707314246", + "voter": "asdes" }, { - "voter": "gmurph", - "rshares": "2501638608" + "rshares": "2501638608", + "voter": "gmurph" }, { - "voter": "stormblaze", - "rshares": "1693568633" + "rshares": "1693568633", + "voter": "stormblaze" }, { - "voter": "denn", - "rshares": "5558177167" + "rshares": "5558177167", + "voter": "denn" }, { - "voter": "midnightoil", - "rshares": "4295114546" + "rshares": "4295114546", + "voter": "midnightoil" }, { - "voter": "kurtbeil", - "rshares": "3157785139" + "rshares": "3157785139", + "voter": "kurtbeil" }, { - "voter": "xiaohui", - "rshares": "10742990382" + "rshares": "10742990382", + "voter": "xiaohui" }, { - "voter": "zahar", - "rshares": "67965196" + "rshares": "67965196", + "voter": "zahar" }, { - "voter": "elfkitchen", - "rshares": "485140088" + "rshares": "485140088", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "99935909954" + "rshares": "99935909954", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5855738054" + "rshares": "5855738054", + "voter": "oflyhigh" }, { - "voter": "randyclemens", - "rshares": "15549176040" + "rshares": "15549176040", + "voter": "randyclemens" }, { - "voter": "dims", - "rshares": "79785139" + "rshares": "79785139", + "voter": "dims" }, { - "voter": "xiaokongcom", - "rshares": "335856762" + "rshares": "335856762", + "voter": "xiaokongcom" }, { - "voter": "future24", - "rshares": "1446509276" + "rshares": "1446509276", + "voter": "future24" }, { - "voter": "msjennifer", - "rshares": "60819615" + "rshares": "60819615", + "voter": "msjennifer" }, { - "voter": "ciao", - "rshares": "54654502" + "rshares": "54654502", + "voter": "ciao" }, { - "voter": "cristi", - "rshares": "13254585210" + "rshares": "13254585210", + "voter": "cristi" }, { - "voter": "steemo", - "rshares": "54217761" + "rshares": "54217761", + "voter": "steemo" }, { - "voter": "xianjun", - "rshares": "677027684" + "rshares": "677027684", + "voter": "xianjun" }, { - "voter": "steema", - "rshares": "54077897" + "rshares": "54077897", + "voter": "steema" }, { - "voter": "sijoittaja", - "rshares": "72192938" + "rshares": "72192938", + "voter": "sijoittaja" }, { - "voter": "confucius", - "rshares": "69662169" + "rshares": "69662169", + "voter": "confucius" }, { - "voter": "miacats", - "rshares": "93807196108" + "rshares": "93807196108", + "voter": "miacats" }, { - "voter": "jarvis", - "rshares": "54909929" + "rshares": "54909929", + "voter": "jarvis" }, { - "voter": "razberrijam", - "rshares": "74131936" + "rshares": "74131936", + "voter": "razberrijam" }, { - "voter": "fortuner", - "rshares": "53106127" + "rshares": "53106127", + "voter": "fortuner" }, { - "voter": "chinadaily", - "rshares": "2022702929" + "rshares": "2022702929", + "voter": "chinadaily" }, { - "voter": "pjheinz", - "rshares": "10471074095" + "rshares": "10471074095", + "voter": "pjheinz" }, { - "voter": "pompe72", - "rshares": "86712034" + "rshares": "86712034", + "voter": "pompe72" }, { - "voter": "pollina", - "rshares": "108403024" + "rshares": "108403024", + "voter": "pollina" }, { - "voter": "johnbyrd", - "rshares": "51877132" + "rshares": "51877132", + "voter": "johnbyrd" }, { - "voter": "thomasaustin", - "rshares": "51860909" + "rshares": "51860909", + "voter": "thomasaustin" }, { - "voter": "thermor", - "rshares": "51859074" + "rshares": "51859074", + "voter": "thermor" }, { - "voter": "ficholl", - "rshares": "51870077" + "rshares": "51870077", + "voter": "ficholl" }, { - "voter": "widell", - "rshares": "51852278" + "rshares": "51852278", + "voter": "widell" }, { - "voter": "movievertigo", - "rshares": "3635091595" + "rshares": "3635091595", + "voter": "movievertigo" }, { - "voter": "revelbrooks", - "rshares": "51481279" + "rshares": "51481279", + "voter": "revelbrooks" }, { - "voter": "netaterra", - "rshares": "2982691190" + "rshares": "2982691190", + "voter": "netaterra" }, { - "voter": "andrewawerdna", - "rshares": "21980957828" + "rshares": "21980957828", + "voter": "andrewawerdna" }, { - "voter": "onetree", - "rshares": "4337454155" + "rshares": "4337454155", + "voter": "onetree" }, { - "voter": "steemitpatina", - "rshares": "4633082667" + "rshares": "4633082667", + "voter": "steemitpatina" }, { - "voter": "curpose", - "rshares": "50416427" + "rshares": "50416427", + "voter": "curpose" }, { - "voter": "dajohns1420", - "rshares": "989363278" + "rshares": "989363278", + "voter": "dajohns1420" }, { - "voter": "runridefly", - "rshares": "2196907450" + "rshares": "2196907450", + "voter": "runridefly" }, { - "voter": "funkywanderer", - "rshares": "1783693666" + "rshares": "1783693666", + "voter": "funkywanderer" }, { - "voter": "richardcrill", - "rshares": "4747321980" + "rshares": "4747321980", + "voter": "richardcrill" }, { - "voter": "jeremyfromwi", - "rshares": "2205784762" + "rshares": "2205784762", + "voter": "jeremyfromwi" }, { - "voter": "troich", - "rshares": "50588612" + "rshares": "50588612", + "voter": "troich" }, { - "voter": "nadin3", - "rshares": "4546391288" + "rshares": "4546391288", + "voter": "nadin3" }, { - "voter": "davidjkelley", - "rshares": "1625414479" + "rshares": "1625414479", + "voter": "davidjkelley" }, { - "voter": "aggroed", - "rshares": "9458733324" + "rshares": "9458733324", + "voter": "aggroed" }, { - "voter": "crion", - "rshares": "50593879" + "rshares": "50593879", + "voter": "crion" }, { - "voter": "greatness", - "rshares": "178419224" + "rshares": "178419224", + "voter": "greatness" }, { - "voter": "hitherise", - "rshares": "50271139" + "rshares": "50271139", + "voter": "hitherise" }, { - "voter": "wiss", - "rshares": "50262756" + "rshares": "50262756", + "voter": "wiss" }, { - "voter": "sponge-bob", - "rshares": "53143607139" + "rshares": "53143607139", + "voter": "sponge-bob" }, { - "voter": "digital-wisdom", - "rshares": "15571125147" + "rshares": "15571125147", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3710973264" + "rshares": "3710973264", + "voter": "ethical-ai" }, { - "voter": "stroully", - "rshares": "51033798" + "rshares": "51033798", + "voter": "stroully" }, { - "voter": "jwaser", - "rshares": "6831389463" + "rshares": "6831389463", + "voter": "jwaser" }, { - "voter": "tatianka", - "rshares": "1064809843" + "rshares": "1064809843", + "voter": "tatianka" }, { - "voter": "thadm", - "rshares": "50712038" + "rshares": "50712038", + "voter": "thadm" }, { - "voter": "prof", - "rshares": "50710305" + "rshares": "50710305", + "voter": "prof" }, { - "voter": "smisi", - "rshares": "1655277599" + "rshares": "1655277599", + "voter": "smisi" }, { - "voter": "yorsens", - "rshares": "50370757" + "rshares": "50370757", + "voter": "yorsens" }, { - "voter": "bane", - "rshares": "50065875" + "rshares": "50065875", + "voter": "bane" }, { - "voter": "vive", - "rshares": "50059754" + "rshares": "50059754", + "voter": "vive" }, { - "voter": "coad", - "rshares": "50054445" + "rshares": "50054445", + "voter": "coad" }, { - "voter": "bwaser", - "rshares": "2617343597" + "rshares": "2617343597", + "voter": "bwaser" }, { - "voter": "sofa", - "rshares": "50840303" + "rshares": "50840303", + "voter": "sofa" }, { - "voter": "panther", - "rshares": "323483227" + "rshares": "323483227", + "voter": "panther" }, { - "voter": "doggnostic", - "rshares": "53871683" + "rshares": "53871683", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "53593366" + "rshares": "53593366", + "voter": "jenny-talls" }, { - "voter": "brains", - "rshares": "54239080444" + "rshares": "54239080444", + "voter": "brains" }, { - "voter": "waldemar-kuhn", - "rshares": "50450987" + "rshares": "50450987", + "voter": "waldemar-kuhn" }, { - "voter": "ailo", - "rshares": "50933404" + "rshares": "50933404", + "voter": "ailo" }, { - "voter": "steemafon", - "rshares": "1387263917" + "rshares": "1387263917", + "voter": "steemafon" }, { - "voter": "bitcoinparadise", - "rshares": "1317649856" + "rshares": "1317649856", + "voter": "bitcoinparadise" }, { - "voter": "chick1", - "rshares": "5753524189" + "rshares": "5753524189", + "voter": "chick1" }, { - "voter": "steempowerwhale", - "rshares": "3338622584" + "rshares": "3338622584", + "voter": "steempowerwhale" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "50516543" + "rshares": "50516543", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "freebornangel", - "rshares": "62515317" + "rshares": "62515317", + "voter": "freebornangel" }, { - "voter": "anomaly", - "rshares": "271440423" + "rshares": "271440423", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401297947" + "rshares": "2401297947", + "voter": "ellepdub" }, { - "voter": "rynow", - "rshares": "120649148" + "rshares": "120649148", + "voter": "rynow" }, { - "voter": "inarix03", - "rshares": "61292139" + "rshares": "61292139", + "voter": "inarix03" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "rayzzz", - "rshares": "50583338" + "rshares": "50583338", + "voter": "rayzzz" }, { - "voter": "herpetologyguy", - "rshares": "12115690216" + "rshares": "12115690216", + "voter": "herpetologyguy" }, { - "voter": "morgan.waser", - "rshares": "4712300251" + "rshares": "4712300251", + "voter": "morgan.waser" }, { - "voter": "steemq", - "rshares": "51230296" + "rshares": "51230296", + "voter": "steemq" }, { - "voter": "motion", - "rshares": "50871059" + "rshares": "50871059", + "voter": "motion" }, { - "voter": "autodesk", - "rshares": "50794039" + "rshares": "50794039", + "voter": "autodesk" }, { - "voter": "yotoh", - "rshares": "50704078" + "rshares": "50704078", + "voter": "yotoh" }, { - "voter": "fenix", - "rshares": "50538694" + "rshares": "50538694", + "voter": "fenix" }, { - "voter": "bapparabi", - "rshares": "1921231770" + "rshares": "1921231770", + "voter": "bapparabi" }, { - "voter": "friends", - "rshares": "50532230" + "rshares": "50532230", + "voter": "friends" }, { - "voter": "albertheijn", - "rshares": "50349676" + "rshares": "50349676", + "voter": "albertheijn" }, { - "voter": "strong-ai", - "rshares": "3609651500" + "rshares": "3609651500", + "voter": "strong-ai" }, { - "voter": "grisha-danunaher", - "rshares": "516546553" + "rshares": "516546553", + "voter": "grisha-danunaher" }, { - "voter": "igtes", - "rshares": "71207873" + "rshares": "71207873", + "voter": "igtes" }, { - "voter": "buffett", - "rshares": "141679752" + "rshares": "141679752", + "voter": "buffett" }, { - "voter": "sjamayee", - "rshares": "213848535" + "rshares": "213848535", + "voter": "sjamayee" }, { - "voter": "witchcraftblog", - "rshares": "453506109" + "rshares": "453506109", + "voter": "witchcraftblog" }, { - "voter": "zaitsevalesyaa", - "rshares": "3265972001" + "rshares": "3265972001", + "voter": "zaitsevalesyaa" }, { - "voter": "acute", - "rshares": "161205518" + "rshares": "161205518", + "voter": "acute" }, { - "voter": "bethesda", - "rshares": "161179339" + "rshares": "161179339", + "voter": "bethesda" }, { - "voter": "realtime", - "rshares": "160957729" + "rshares": "160957729", + "voter": "realtime" }, { - "voter": "dresden", - "rshares": "7187212765" + "rshares": "7187212765", + "voter": "dresden" }, { - "voter": "mgibson", - "rshares": "212371776" + "rshares": "212371776", + "voter": "mgibson" }, { - "voter": "capcom", - "rshares": "156837244" + "rshares": "156837244", + "voter": "capcom" }, { - "voter": "greenpeace", - "rshares": "159506164" + "rshares": "159506164", + "voter": "greenpeace" }, { - "voter": "panic", - "rshares": "159352476" + "rshares": "159352476", + "voter": "panic" }, { - "voter": "fallout", - "rshares": "156054487" + "rshares": "156054487", + "voter": "fallout" }, { - "voter": "xtreme", - "rshares": "159025535" + "rshares": "159025535", + "voter": "xtreme" }, { - "voter": "modernbukowski", - "rshares": "1473342460" + "rshares": "1473342460", + "voter": "modernbukowski" }, { - "voter": "citigroup", - "rshares": "158541985" + "rshares": "158541985", + "voter": "citigroup" }, { - "voter": "goldmatters", - "rshares": "30995434343" + "rshares": "30995434343", + "voter": "goldmatters" }, { - "voter": "dealzgal", - "rshares": "71727340" + "rshares": "71727340", + "voter": "dealzgal" }, { - "voter": "storage", - "rshares": "64921864" + "rshares": "64921864", + "voter": "storage" }, { - "voter": "risabold", - "rshares": "298391608" + "rshares": "298391608", + "voter": "risabold" }, { - "voter": "blackmarket", - "rshares": "55383257" + "rshares": "55383257", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "58454327" + "rshares": "58454327", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "93882016" + "rshares": "93882016", + "voter": "expat" }, { - "voter": "toddemaher1", - "rshares": "126595034" + "rshares": "126595034", + "voter": "toddemaher1" } ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 247, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/herpetology/@gavvet/why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", - "blacklists": [] - }, - { - "post_id": 959783, - "author": "serejandmyself", - "permlink": "captured-by-time-an-original-novel-chapter-1", - "category": "story", - "title": "CAPTURED BY TIME (An Original Novel - Chapter 1)", - "body": "#### Hey guys, welcome to the first chapter of my new novel.\n#### It is a mixture of 3 time lines, with 19th century, modern day and ancient times. The genre is probably something you would call a mixture of sci-fi, mystery, adventure and a bit more. \n#### Well, I welcome you to be the judge...\n\n

[![b801c049484636e0faf71f56cca03864c0bd6.jpg](https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg)](https://www.steemimg.com/image/1wrYT)

\n\n__________________________________\n\n**Chapter ONE**\n\nIt seemed as nothing was different in yet another cold and slightly windy London evening. The smog from the river was rising up as usual and the chilly wind would bring the smell up to the embankment, where Charles was taking a rest, sitting down on his favorite bench. \n\nFrom here he could see the might of the power station from across the river and something was special in the way those chimneys threw out the smoke onto the city. \n\nHe just finished his walk along his usual route, walking amongst the cemetery outside the chapel. It always amused him; that mix of emotion and sorrow amongst the busy city people, especially during the busy afternoon hours.\n\nThat rusty smell kept mixing with up with the light freshness of the leaves from the tree nearby Charles’s bench. As he threw a brief glimpse onto the clock on the parliament building he noticed that the small arrow was on 45 minutes… \n\nSuddenly he heard a murmur of horses; he turned his head before he could finish realizing what time it was. He saw that just a few yards up the road two horse carriages didn’t manage to share the drive way. \n\n
[![Saratogacarriagec5af5.jpg](https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg)](https://www.steemimg.com/image/1w1bI)
\n\nOne of the coachmen was shouting something and angrily waving his hands. Charles was able to see from here that the coachmen’s grey clothing was partially covered in dirt, probably from the splash of the puddles from underneath the wheels. \n\nThe coachmen kept shouting something, Charles was unable to see the second carriage from where he was sitting, but was able to see some passersby, that starting to gather around the incident.\n\nIt was obvious that, just like him, those people had nothing better to do on this late afternoon then to watch in amusement the accident in the middle of the avenue.\n\nJust as Charles was starting to lose interest in the whole situation, the door of the cab that Charles could see, opened and a man dressed in a black suit and holding a pipe stepped out. He calmly put his hand in the upper inner pocket of the suit and pulled out some coins. The man made two steps up to driver and handed him the coins. At this moment the driver stopped shouting for a moment and it was clear from the look on his face that he was confused. \n\nThe cab driver counted the coins and said something to the man in the suit, the passenger didn’t answer. He turned around and started to walk in the direction of the chapel. The cab driver clearly wasn’t happy. He started to shout once again, but this time at the passenger. While the cab driver turned his attention to the passenger, Charles noticed how the second carriage that was involved in the accident managed to move a few yards back.\n\nIt was a much smaller carriage, and the driver was clearly seeable to Charles now. He seemed somewhat happy that he was not in the middle of the light anymore; he hurryingly turned the carriage and the horse around and started to move also in the direction of the chapel. \n\nAt this moment the driver of the first carriage started to lose interest in shouting and decided to clean himself up. As he started to calm down, the bemused passersby begun to walk back to where they were heading and Charles also turned his head back towards the power station.\n\nCharles was so busy watching the situation unfold that he didn’t noticed that the passenger of the first carriage crossed the road and was now heading not towards the chapel anymore, but exactly in the other direction, towards the grey bench that Charles was sitting on.\n\nAt first Charles didn’t pay any attention to just another man who was walking by. But then he noticed that calm walk of his and it hit him that this was the same passenger from the carriage.\n\n“Excuse me sir?” said Charles as the man closed up to the bench. “You are the gentleman from the carriage, aren’t you?” “I saw you a minute ago, what happened?”\n\nThe man stopped to walk and shared a look with Charles; he calmly sat down beside him and carried on smoking his pipe, as he was not hearing the questions Charles asked him. \n\n“I do apologies for the intervention, but you must not be local, I can tell by your calmness, all the folks round here are always in a hurry” Charles carried on talking as if not noticing that the man was ignoring him. \n\nAll of a sudden the weather begun to change, wind started to blow stronger and the few leaves that the tree was holding blew in the direction of the bench. The smell from the river rose up and as if that wasn’t enough Charles felt like a small rain drop hit his head. He could clearly see the green water from where he was sitting through the decorations holes of the embankments fence. It was clear that it will start to rain soon by the appearing circles on the top of the river.\n\nAfter a few minutes of quietly seating by his new neighbor Charles caught himself looking at the clock on the tower, once again he saw the small arrow on 45 minutes…\n\n“And what do we pay the government for?” “It would feel though they are taking our money and spend it on their fancy hats and suits, don’t you find?” Said Charles.\n\nAt this point the man took out the pipe into his left hand and begun to cough. After he finished coughing Charles heard him speak, at this point Charles understood that for some reason he would remember this moment for a long time to come. \n\n“It is likely to assume that they deserve to spend the money they earn” Said the man, his voice was quite low and he had a certain accent Charles could quite catch.\n\n“I don’t think that money is of importance nowadays” Said the man.\n\nCharles looked at the man with a smile - “What is of importance? One might assume that philosophically speaking, importance can be found in nothing but what is good to us”.\n\n“No body knows what can be important to others if we carry on like this, then…” Charles didn’t finish his sentence as the man turned away from him and looked the other way. He then turned his head back and Charles noticed his eyes. His eyes were nothing like what Charles had seen before, they looked as though they were glass like and the as if they were blank, there was nothing behind them.\n\n“What is important is that I am here now and that it is happening today. It is important to live your life because, just like your life Charles, it has an end”, the man looked somewhat happy when he said that and Charles jumped back on the bench a little, he felt a small shiver run down his spine.\n\n“What? How do you know my name sir? Have you been following me?” questions were racing through Charles’s mind. \n\n“As I said, this is now of importance. You life can find its end today when you get back to your gallery in your cold basement on Kinnerton street or you might listen to me and…” Charles didn’t let the man finish his sentence. He jumped up from the bench; his cane flew within millimeters of the stranger leg as he jumped.\n\n“How dare you sir? Who gives you the right…” Charles raised his voice, he never allowed himself to raise his voice at a stranger beforehand.\n\n“I think this conversation is over!” exclaimed Charles. “That would be your choice” replied the man, “Do you think the time is right?” \n\nCharles had already turned away in anger and was about to make his first step away. Something in the words of the man about the time made him think for a second, thoughts raced through his mind. The number 45 and the small arrow of the parliament clock were stuck in his head. \n\n“I don’t understand said Charles…” he turned his head back towards the clock; the arrow was still on 45 minutes. “How is that possible?” Charles turned his head to the man, but there was no one on the bench. \n\nCharles begun to search the street rapidly with his eyes, it didn’t even occur to him that it was heavily raining until that moment. \n\n
[![tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif](https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif)](https://www.steemimg.com/image/1w5tK)
\n\nThe streets were empty; there were no carriages or people to be seen around. Feeling scared he turned his head to the clock once again – “How can it still be 45 minutes...” Charles was speaking out loud.\n\nThe next moment he felt like his knees weakened, his head was swirling and he dropped his cane, last thing he could hear was the clinging the of the cane’s handle against the pavement. His thoughts mixed up with his eyesight; the man and his pipe, the handle of the clock, the carriage, the passersby, the power stations smoke…\n \n_________________________________\n\n#### Follow me @serejandmyself for more \n\nImage credit - [1](https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/) ; [2](https://giphy.com/search/carriage) ; [3](http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html) ;", + "blacklists": [], + "body": "@herpetologyguy\n\nOne of my many tasks as a zoo keeper is connecting people to animals. \n-\n\n\n\n

The museum I work at is unique because we showcase animals that are native to Virginia -- meaning that these are animals people will find close to home, rather than across the ocean in some distant country. This makes my job more crucial in that I am responsible for educating people about the reptiles and amphibians that they will find in their own backyards. And obviously, there\u2019s one group of reptiles that gives people more pause than almost any other animal . . . . 

\n

Snakes. 

\n

http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj   Picture Credit

\n

I do public programs featuring snakes quite frequently.  I believe people should know how to identify local venomous/non-venomous snakes, their role in the environment and how to deal with them when they are in close proximity to our homes.  Usually, I get eager audiences asking great questions.  But, every now and then, I get some idiot who tells me, \u201cI saw that same snake in my backyard! I chopped off its head with a shovel!\u201d

\n

Are they an idiot for killing the snake?  Not necessarily . . . I don\u2019t know the situation behind the encounter. But, only an idiot would walk into a wildlife facility, approach a zoo keeper and proudly declare that they kill the very same animals that the keeper is charged with the care for.  Would you walk into an animal shelter and tell someone working there that you enjoy stomping on puppies?  To us, there\u2019s not much difference\u2026 

\n

http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png   Picture Credit\n

\n

The best we can do in these situations is to try to educate people. This can be difficult because so many people are set in their ways -- plus we have to combat an instinctive fear and prejudice against snakes.  So, I\u2019m going to briefly lay it all out for you and tell you \"Why you shouldn\u2019t kill that snake in your yard.\" 

\n

http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg   Picture Credit

\n

1.  It\u2019s ILLEGAL in most states to kill a wild snake, unless that snake presents an IMMEDIATE threat.  And no, a snake crawling through your yard does not represent a good enough excuse to use force.  We\u2019re talking about a situation where a venomous snake is about to strike and you have no escape route but to fight your way out.  And guess what, that really doesn\u2019t ever happen (barring instances where someone purposefully provokes an animal).  Wildlife and law enforcement agencies are cracking down on people killing snakes, so it\u2019s better to keep yourself out of trouble. 

\n

http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg   Picture Credit

\n

2.  You are putting yourself in harm\u2019s way.  The vast majority of snake bites occur when people attempt to capture or kill snakes.  If left alone, the snake CANNOT hurt you.  Call wildlife services or trained professionals to remove the animal. 

\n

http://www.snakegetters.com/demo/bud-cotton-gg.jpg   Picture Credit

\n

3.  It\u2019s an incredibly beneficial animal, and you\u2019d be foolish to kill it.  Small snakes eat a huge variety of pest insects that destroy gardens, while large snakes typically feed on rats and other rodents that infest our homes.  If you see a large snake hanging around, you have a rodent problem; snakes will not hang around if there is no food source.  To keep snakes from being attracted to your property, do your best to remove any shelter or food sources that would attract rodents.  Some snakes even eat other snakes, and species like the harmless king snake will even feed on venomous species! 

\n

https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg   Picture Credit

\n

4.  Another snake might show up.  Snakes will not typically inhabit the same area in order to avoid competition.  If you kill that harmless rat snake, but you still have a food source nearby, another snake may move in to make use of that source.  The new snake may be another harmless species or something a bit less desirable.  So why not let that harmless snake take care of the infestation for you?

\n

http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg   Picture Credit

\n

Having a snake around can be hugely beneficial to you.  It is a free, environmentally-safe form of pest control.  Snakes, including venomous species, are non-aggressive animals (unless you provoke them) that will actively do their best to AVOID people.  A resident snake will often go unnoticed by homeowners, and most encounters are fleeting glimpses of the snake making a hasty escape.  Remember that snakes have their own unique role in the environment, and regardless of our own fears and feelings towards them, they are a necessary part of life. 

\n

   http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg   Picture Credit

\n\n\nif you liked this also please check out:\nhttps://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians\n\n\n***don't forget to follow @herpetologyguy***", + "category": "herpetology", + "children": 6, + "created": "2016-09-15T18:19:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "story", - "fiction", - "scifi", - "mystery", - "writing" - ], - "users": [ - "serejandmyself" - ], "image": [ - "https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg", - "https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg", - "https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif" + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg" ], "links": [ - "https://www.steemimg.com/image/1wrYT", - "https://www.steemimg.com/image/1w1bI", - "https://www.steemimg.com/image/1w5tK", - "https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/", - "https://giphy.com/search/carriage", - "http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html" + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://www.sciencemag.org", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://proactivepestga.com", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://blogs.discovermagazine.com", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.mylakelandnow.com", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "http://www.snakegetters.com", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "https://www.youtube.com/watch?v=ImOj1CKTBqE", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://phenomena.nationalgeographic.com", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg", + "http://westernmassnaturalist.org", + "https://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians" + ], + "tags": [ + "herpetology", + "reptiles", + "snakes", + "science" + ], + "users": [ + "herpetologyguy" ] }, - "created": "2016-09-15T17:23:48", - "updated": "2016-09-15T17:23:48", - "depth": 0, - "children": 2, - "net_rshares": 66871297900441, - "is_paidout": false, - "payout_at": "2016-09-16T17:42:51", - "payout": 260.997, - "pending_payout_value": "260.997 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 68620995119384, + "payout": 274.303, + "payout_at": "2016-09-22T18:19:39", + "pending_payout_value": "274.303 HBD", + "percent_hbd": 10000, + "permlink": "why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", + "post_id": 1256988, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 247 + }, + "title": "Why You Don\u2019t Want to Kill that Snake in Your Yard (featuring @herpetologyguy as author)", + "updated": "2016-09-15T18:19:39", + "url": "/herpetology/@gavvet/why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author" + }, + { "active_votes": [ { - "voter": "smooth", - "rshares": "31621188390159" + "rshares": "31621188390159", + "voter": "smooth" }, { - "voter": "bmw", - "rshares": "2078528809174" + "rshares": "2078528809174", + "voter": "bmw" }, { - "voter": "badassmother", - "rshares": "1912120788268" + "rshares": "1912120788268", + "voter": "badassmother" }, { - "voter": "pharesim", - "rshares": "3312854507128" + "rshares": "3312854507128", + "voter": "pharesim" }, { - "voter": "hr1", - "rshares": "2053144245901" + "rshares": "2053144245901", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1271804694676" + "rshares": "1271804694676", + "voter": "rossco99" }, { - "voter": "jaewoocho", - "rshares": "22390733187" + "rshares": "22390733187", + "voter": "jaewoocho" }, { - "voter": "steemychicken1", - "rshares": "1736291789819" + "rshares": "1736291789819", + "voter": "steemychicken1" }, { - "voter": "joseph", - "rshares": "1533973920081" + "rshares": "1533973920081", + "voter": "joseph" }, { - "voter": "recursive2", - "rshares": "466132509421" + "rshares": "466132509421", + "voter": "recursive2" }, { - "voter": "masteryoda", - "rshares": "652005899349" + "rshares": "652005899349", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120458041174" + "rshares": "3120458041174", + "voter": "recursive" }, { - "voter": "smooth.witness", - "rshares": "5941203882368" + "rshares": "5941203882368", + "voter": "smooth.witness" }, { - "voter": "idol", - "rshares": "9168101098" + "rshares": "9168101098", + "voter": "idol" }, { - "voter": "steemrollin", - "rshares": "816386307308" + "rshares": "816386307308", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "4941741048" + "rshares": "4941741048", + "voter": "sakr" }, { - "voter": "jocelyn", - "rshares": "1578030666" + "rshares": "1578030666", + "voter": "jocelyn" }, { - "voter": "acidsun", - "rshares": "83530339170" + "rshares": "83530339170", + "voter": "acidsun" }, { - "voter": "gregory-f", - "rshares": "14818192446" + "rshares": "14818192446", + "voter": "gregory-f" }, { - "voter": "edgeland", - "rshares": "151248263299" + "rshares": "151248263299", + "voter": "edgeland" }, { - "voter": "gregory60", - "rshares": "9028522101" + "rshares": "9028522101", + "voter": "gregory60" }, { - "voter": "eeks", - "rshares": "74914792736" + "rshares": "74914792736", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "15119117634" + "rshares": "15119117634", + "voter": "fkn" }, { - "voter": "elishagh1", - "rshares": "19873135819" + "rshares": "19873135819", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7802860274" + "rshares": "7802860274", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "584250736753" + "rshares": "584250736753", + "voter": "nanzo-scoop" }, { - "voter": "mummyimperfect", - "rshares": "177409209153" + "rshares": "177409209153", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313697862" + "rshares": "313697862", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106632631169" + "rshares": "106632631169", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061245798" + "rshares": "1061245798", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6230746892" + "rshares": "6230746892", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2057413439" + "rshares": "2057413439", + "voter": "error" }, { - "voter": "cyber", - "rshares": "962077066542" + "rshares": "962077066542", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "59950063204" + "rshares": "59950063204", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "49578772788" + "rshares": "49578772788", + "voter": "ak2020" }, { - "voter": "noganoo", - "rshares": "76584409982" + "rshares": "76584409982", + "voter": "noganoo" }, { - "voter": "satoshifund", - "rshares": "3848540783991" + "rshares": "3848540783991", + "voter": "satoshifund" }, { - "voter": "taoteh1221", - "rshares": "400880323222" + "rshares": "400880323222", + "voter": "taoteh1221" }, { - "voter": "applecrisp", - "rshares": "410517349" + "rshares": "410517349", + "voter": "applecrisp" }, { - "voter": "altoz", - "rshares": "35693164103" + "rshares": "35693164103", + "voter": "altoz" }, { - "voter": "gardening", - "rshares": "335983556" + "rshares": "335983556", + "voter": "gardening" }, { - "voter": "survival", - "rshares": "336136344" + "rshares": "336136344", + "voter": "survival" }, { - "voter": "arisa", - "rshares": "10021612024" + "rshares": "10021612024", + "voter": "arisa" }, { - "voter": "trogdor", - "rshares": "280737930617" + "rshares": "280737930617", + "voter": "trogdor" }, { - "voter": "mark-waser", - "rshares": "5950554459" + "rshares": "5950554459", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "118348776939" + "rshares": "118348776939", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "42738217262" + "rshares": "42738217262", + "voter": "kimziv" }, { - "voter": "seth-krings", - "rshares": "24170583392" + "rshares": "24170583392", + "voter": "seth-krings" }, { - "voter": "honeythief", - "rshares": "46264097306" + "rshares": "46264097306", + "voter": "honeythief" }, { - "voter": "technology", - "rshares": "78976166587" + "rshares": "78976166587", + "voter": "technology" }, { - "voter": "emily-cook", - "rshares": "76017114668" + "rshares": "76017114668", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187607792" + "rshares": "2187607792", + "voter": "superfreek" }, { - "voter": "isteemit", - "rshares": "49806227536" + "rshares": "49806227536", + "voter": "isteemit" }, { - "voter": "auction", - "rshares": "10993053311" + "rshares": "10993053311", + "voter": "auction" }, { - "voter": "grey580", - "rshares": "17557768630" + "rshares": "17557768630", + "voter": "grey580" }, { - "voter": "thebatchman", - "rshares": "19975264794" + "rshares": "19975264794", + "voter": "thebatchman" }, { - "voter": "lehard", - "rshares": "60403077307" + "rshares": "60403077307", + "voter": "lehard" }, { - "voter": "orly", - "rshares": "3283410959" + "rshares": "3283410959", + "voter": "orly" }, { - "voter": "riscadox", - "rshares": "5270985903" + "rshares": "5270985903", + "voter": "riscadox" }, { - "voter": "katyakov", - "rshares": "24867544970" + "rshares": "24867544970", + "voter": "katyakov" }, { - "voter": "jako", - "rshares": "12790313163" + "rshares": "12790313163", + "voter": "jako" }, { - "voter": "steemswede", - "rshares": "1159208963" + "rshares": "1159208963", + "voter": "steemswede" }, { - "voter": "sergei", - "rshares": "1664172448" + "rshares": "1664172448", + "voter": "sergei" }, { - "voter": "honey", - "rshares": "238378512" + "rshares": "238378512", + "voter": "honey" }, { - "voter": "furion", - "rshares": "71343869654" + "rshares": "71343869654", + "voter": "furion" }, { - "voter": "barbara2", - "rshares": "354114465" + "rshares": "354114465", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "393593664" + "rshares": "393593664", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "364274718" + "rshares": "364274718", + "voter": "doge4lyf" }, { - "voter": "on0tole", - "rshares": "5532441214" + "rshares": "5532441214", + "voter": "on0tole" }, { - "voter": "dicov", - "rshares": "1231812238" + "rshares": "1231812238", + "voter": "dicov" }, { - "voter": "steem1653", - "rshares": "2834923420" + "rshares": "2834923420", + "voter": "steem1653" }, { - "voter": "sveokla", - "rshares": "2919298058" + "rshares": "2919298058", + "voter": "sveokla" }, { - "voter": "sebastien", - "rshares": "17173174800" + "rshares": "17173174800", + "voter": "sebastien" }, { - "voter": "thegoodguy", - "rshares": "5357205853" + "rshares": "5357205853", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "14167556353" + "rshares": "14167556353", + "voter": "aaseb" }, { - "voter": "danielkt", - "rshares": "1026087885" + "rshares": "1026087885", + "voter": "danielkt" }, { - "voter": "karen13", - "rshares": "4209522316" + "rshares": "4209522316", + "voter": "karen13" }, { - "voter": "nabilov", - "rshares": "251366150295" + "rshares": "251366150295", + "voter": "nabilov" }, { - "voter": "luisucv34", - "rshares": "629471993" + "rshares": "629471993", + "voter": "luisucv34" }, { - "voter": "knozaki2015", - "rshares": "462033723200" + "rshares": "462033723200", + "voter": "knozaki2015" }, { - "voter": "inertia", - "rshares": "95668007343" + "rshares": "95668007343", + "voter": "inertia" }, { - "voter": "milestone", - "rshares": "46858037615" + "rshares": "46858037615", + "voter": "milestone" }, { - "voter": "lichtblick", - "rshares": "7164489185" + "rshares": "7164489185", + "voter": "lichtblick" }, { - "voter": "creemej", - "rshares": "34761364489" + "rshares": "34761364489", + "voter": "creemej" }, { - "voter": "the-future", - "rshares": "2726160685" + "rshares": "2726160685", + "voter": "the-future" }, { - "voter": "nippel66", - "rshares": "15378115921" + "rshares": "15378115921", + "voter": "nippel66" }, { - "voter": "phenom", - "rshares": "23929304431" + "rshares": "23929304431", + "voter": "phenom" }, { - "voter": "blueorgy", - "rshares": "167305835788" + "rshares": "167305835788", + "voter": "blueorgy" }, { - "voter": "benjiberigan", - "rshares": "12849414672" + "rshares": "12849414672", + "voter": "benjiberigan" }, { - "voter": "poseidon", - "rshares": "932262984" + "rshares": "932262984", + "voter": "poseidon" }, { - "voter": "mustafaomar", - "rshares": "19717588129" + "rshares": "19717588129", + "voter": "mustafaomar" }, { - "voter": "simon.braki.love", - "rshares": "3435918746" + "rshares": "3435918746", + "voter": "simon.braki.love" }, { - "voter": "thylbom", - "rshares": "82781233416" + "rshares": "82781233416", + "voter": "thylbom" }, { - "voter": "deanliu", - "rshares": "32543400703" + "rshares": "32543400703", + "voter": "deanliu" }, { - "voter": "dmitriybtc", - "rshares": "4996306142" + "rshares": "4996306142", + "voter": "dmitriybtc" }, { - "voter": "hemp", - "rshares": "1019831473" + "rshares": "1019831473", + "voter": "hemp" }, { - "voter": "flowers", - "rshares": "118287211" + "rshares": "118287211", + "voter": "flowers" }, { - "voter": "jl777", - "rshares": "204617853645" + "rshares": "204617853645", + "voter": "jl777" }, { - "voter": "zaebars", - "rshares": "30989251579" + "rshares": "30989251579", + "voter": "zaebars" }, { - "voter": "positive", - "rshares": "12261205066" + "rshares": "12261205066", + "voter": "positive" }, { - "voter": "yarly", - "rshares": "1773021661" + "rshares": "1773021661", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "267188192" + "rshares": "267188192", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "267587944" + "rshares": "267587944", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "154579129" + "rshares": "154579129", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "155451862" + "rshares": "155451862", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "88607961" + "rshares": "88607961", + "voter": "yarly7" }, { - "voter": "steemchain", - "rshares": "50626015" + "rshares": "50626015", + "voter": "steemchain" }, { - "voter": "whalepool", - "rshares": "50626015" + "rshares": "50626015", + "voter": "whalepool" }, { - "voter": "summonerrk", - "rshares": "6114654934" + "rshares": "6114654934", + "voter": "summonerrk" }, { - "voter": "webdeals", - "rshares": "12098269394" + "rshares": "12098269394", + "voter": "webdeals" }, { - "voter": "alexbezimeni", - "rshares": "231254136" + "rshares": "231254136", + "voter": "alexbezimeni" }, { - "voter": "proto", - "rshares": "17267307497" + "rshares": "17267307497", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "7222569746" + "rshares": "7222569746", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "428868451" + "rshares": "428868451", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "229507420" + "rshares": "229507420", + "voter": "yarly11" }, { - "voter": "yarly12", - "rshares": "80241480" + "rshares": "80241480", + "voter": "yarly12" }, { - "voter": "fnait", - "rshares": "412825844" + "rshares": "412825844", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "366755128" + "rshares": "366755128", + "voter": "keepcalmand" }, { - "voter": "kibela", - "rshares": "180668119" + "rshares": "180668119", + "voter": "kibela" }, { - "voter": "dmilash", - "rshares": "3084130055" + "rshares": "3084130055", + "voter": "dmilash" }, { - "voter": "mahekg", - "rshares": "13626326152" + "rshares": "13626326152", + "voter": "mahekg" }, { - "voter": "gomeravibz", - "rshares": "50578642550" + "rshares": "50578642550", + "voter": "gomeravibz" }, { - "voter": "taker", - "rshares": "8734139434" + "rshares": "8734139434", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "6521104126" + "rshares": "6521104126", + "voter": "nekromarinist" }, { - "voter": "theprophet", - "rshares": "6895440187" + "rshares": "6895440187", + "voter": "theprophet" }, { - "voter": "laonie", - "rshares": "255409573883" + "rshares": "255409573883", + "voter": "laonie" }, { - "voter": "laoyao", - "rshares": "24562026280" + "rshares": "24562026280", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "7994566199" + "rshares": "7994566199", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "51844874813" + "rshares": "51844874813", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "1938440237" + "rshares": "1938440237", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "2084695835" + "rshares": "2084695835", + "voter": "gmurph" }, { - "voter": "missmishel623", - "rshares": "68250832" + "rshares": "68250832", + "voter": "missmishel623" }, { - "voter": "midnightoil", - "rshares": "11452948850" + "rshares": "11452948850", + "voter": "midnightoil" }, { - "voter": "kalimor", - "rshares": "2280336943" + "rshares": "2280336943", + "voter": "kalimor" }, { - "voter": "ullikume", - "rshares": "4190335896" + "rshares": "4190335896", + "voter": "ullikume" }, { - "voter": "xiaohui", - "rshares": "28645142464" + "rshares": "28645142464", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "1293627572" + "rshares": "1293627572", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "102434307703" + "rshares": "102434307703", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5855564372" + "rshares": "5855564372", + "voter": "oflyhigh" }, { - "voter": "xiaokongcom", - "rshares": "895565145" + "rshares": "895565145", + "voter": "xiaokongcom" }, { - "voter": "gargon", - "rshares": "12687522802" + "rshares": "12687522802", + "voter": "gargon" }, { - "voter": "natalymaty", - "rshares": "2076619689" + "rshares": "2076619689", + "voter": "natalymaty" }, { - "voter": "numberone", - "rshares": "84763896" + "rshares": "84763896", + "voter": "numberone" }, { - "voter": "diamonds", - "rshares": "62760150" + "rshares": "62760150", + "voter": "diamonds" }, { - "voter": "xianjun", - "rshares": "1805296575" + "rshares": "1805296575", + "voter": "xianjun" }, { - "voter": "unrealisback", - "rshares": "3251259359" + "rshares": "3251259359", + "voter": "unrealisback" }, { - "voter": "borran", - "rshares": "11292536945" + "rshares": "11292536945", + "voter": "borran" }, { - "voter": "miacats", - "rshares": "93805187965" + "rshares": "93805187965", + "voter": "miacats" }, { - "voter": "microluck", - "rshares": "118219525" + "rshares": "118219525", + "voter": "microluck" }, { - "voter": "razberrijam", - "rshares": "75676352" + "rshares": "75676352", + "voter": "razberrijam" }, { - "voter": "chinadaily", - "rshares": "2022625104" + "rshares": "2022625104", + "voter": "chinadaily" }, { - "voter": "serejandmyself", - "rshares": "84708065280" + "rshares": "84708065280", + "voter": "serejandmyself" }, { - "voter": "pollina", - "rshares": "106144628" + "rshares": "106144628", + "voter": "pollina" }, { - "voter": "macartem", - "rshares": "2958177650" + "rshares": "2958177650", + "voter": "macartem" }, { - "voter": "gvargas123", - "rshares": "10344891579" + "rshares": "10344891579", + "voter": "gvargas123" }, { - "voter": "jaredcwillis", - "rshares": "10691300360" + "rshares": "10691300360", + "voter": "jaredcwillis" }, { - "voter": "netaterra", - "rshares": "2982676167" + "rshares": "2982676167", + "voter": "netaterra" }, { - "voter": "piezolit", - "rshares": "59171026" + "rshares": "59171026", + "voter": "piezolit" }, { - "voter": "trev", - "rshares": "6069996297" + "rshares": "6069996297", + "voter": "trev" }, { - "voter": "leno4ek", - "rshares": "1152952998" + "rshares": "1152952998", + "voter": "leno4ek" }, { - "voter": "daut44", - "rshares": "33111928321" + "rshares": "33111928321", + "voter": "daut44" }, { - "voter": "contentjunkie", - "rshares": "5475437205" + "rshares": "5475437205", + "voter": "contentjunkie" }, { - "voter": "einsteinpotsdam", - "rshares": "7779288318" + "rshares": "7779288318", + "voter": "einsteinpotsdam" }, { - "voter": "richardcrill", - "rshares": "5053600817" + "rshares": "5053600817", + "voter": "richardcrill" }, { - "voter": "jeremyfromwi", - "rshares": "2205784762" + "rshares": "2205784762", + "voter": "jeremyfromwi" }, { - "voter": "eight-rad", - "rshares": "2056057288" + "rshares": "2056057288", + "voter": "eight-rad" }, { - "voter": "nadin3", - "rshares": "5012661990" + "rshares": "5012661990", + "voter": "nadin3" }, { - "voter": "xanoxt", - "rshares": "3411072843" + "rshares": "3411072843", + "voter": "xanoxt" }, { - "voter": "davidjkelley", - "rshares": "1661520978" + "rshares": "1661520978", + "voter": "davidjkelley" }, { - "voter": "sponge-bob", - "rshares": "27677639861" + "rshares": "27677639861", + "voter": "sponge-bob" }, { - "voter": "digital-wisdom", - "rshares": "15570931627" + "rshares": "15570931627", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3710931796" + "rshares": "3710931796", + "voter": "ethical-ai" }, { - "voter": "jwaser", - "rshares": "6831306526" + "rshares": "6831306526", + "voter": "jwaser" }, { - "voter": "tatianka", - "rshares": "1086106040" + "rshares": "1086106040", + "voter": "tatianka" }, { - "voter": "apparat", - "rshares": "55281264" + "rshares": "55281264", + "voter": "apparat" }, { - "voter": "cryptobiker", - "rshares": "14097243573" + "rshares": "14097243573", + "voter": "cryptobiker" }, { - "voter": "analyzethis", - "rshares": "54182817" + "rshares": "54182817", + "voter": "analyzethis" }, { - "voter": "bwaser", - "rshares": "2675492964" + "rshares": "2675492964", + "voter": "bwaser" }, { - "voter": "doggnostic", - "rshares": "54949117" + "rshares": "54949117", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "54665234" + "rshares": "54665234", + "voter": "jenny-talls" }, { - "voter": "brains", - "rshares": "27671309914" + "rshares": "27671309914", + "voter": "brains" }, { - "voter": "waldemar-kuhn", - "rshares": "53671263" + "rshares": "53671263", + "voter": "waldemar-kuhn" }, { - "voter": "steemafon", - "rshares": "1359518638" + "rshares": "1359518638", + "voter": "steemafon" }, { - "voter": "chick1", - "rshares": "5753400992" + "rshares": "5753400992", + "voter": "chick1" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "51568971" + "rshares": "51568971", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "anomaly", - "rshares": "339287005" + "rshares": "339287005", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401284424" + "rshares": "2401284424", + "voter": "ellepdub" }, { - "voter": "herpetologyguy", - "rshares": "12115548081" + "rshares": "12115548081", + "voter": "herpetologyguy" }, { - "voter": "morgan.waser", - "rshares": "4816962742" + "rshares": "4816962742", + "voter": "morgan.waser" }, { - "voter": "dragonice", - "rshares": "51232949" + "rshares": "51232949", + "voter": "dragonice" }, { - "voter": "steemq", - "rshares": "51230296" + "rshares": "51230296", + "voter": "steemq" }, { - "voter": "weare", - "rshares": "51218466" + "rshares": "51218466", + "voter": "weare" }, { - "voter": "anns", - "rshares": "1258359388" + "rshares": "1258359388", + "voter": "anns" }, { - "voter": "cyan", - "rshares": "50875769" + "rshares": "50875769", + "voter": "cyan" }, { - "voter": "motion", - "rshares": "50871059" + "rshares": "50871059", + "voter": "motion" }, { - "voter": "synereo", - "rshares": "50791473" + "rshares": "50791473", + "voter": "synereo" }, { - "voter": "unilever", - "rshares": "50572441" + "rshares": "50572441", + "voter": "unilever" }, { - "voter": "bapparabi", - "rshares": "1871969417" + "rshares": "1871969417", + "voter": "bapparabi" }, { - "voter": "friends", - "rshares": "50532230" + "rshares": "50532230", + "voter": "friends" }, { - "voter": "strong-ai", - "rshares": "3689824509" + "rshares": "3689824509", + "voter": "strong-ai" }, { - "voter": "ivanakamoto", - "rshares": "53738244" + "rshares": "53738244", + "voter": "ivanakamoto" }, { - "voter": "grisha-danunaher", - "rshares": "516546553" + "rshares": "516546553", + "voter": "grisha-danunaher" }, { - "voter": "sjamayee", - "rshares": "213848535" + "rshares": "213848535", + "voter": "sjamayee" }, { - "voter": "htyfn", - "rshares": "2974116451" + "rshares": "2974116451", + "voter": "htyfn" }, { - "voter": "allianz", - "rshares": "162904624" + "rshares": "162904624", + "voter": "allianz" }, { - "voter": "rusteemitblog", - "rshares": "1630350803" + "rshares": "1630350803", + "voter": "rusteemitblog" }, { - "voter": "ranger", - "rshares": "161815656" + "rshares": "161815656", + "voter": "ranger" }, { - "voter": "witchcraftblog", - "rshares": "444435987" + "rshares": "444435987", + "voter": "witchcraftblog" }, { - "voter": "shadowproject", - "rshares": "161693690" + "rshares": "161693690", + "voter": "shadowproject" }, { - "voter": "acute", - "rshares": "161205518" + "rshares": "161205518", + "voter": "acute" }, { - "voter": "bethesda", - "rshares": "161179339" + "rshares": "161179339", + "voter": "bethesda" }, { - "voter": "panic", - "rshares": "159352476" + "rshares": "159352476", + "voter": "panic" }, { - "voter": "stimmt", - "rshares": "159318360" + "rshares": "159318360", + "voter": "stimmt" }, { - "voter": "rule", - "rshares": "159062820" + "rshares": "159062820", + "voter": "rule" }, { - "voter": "steemthis", - "rshares": "158560941" + "rshares": "158560941", + "voter": "steemthis" }, { - "voter": "zendesk", - "rshares": "158486055" + "rshares": "158486055", + "voter": "zendesk" }, { - "voter": "storage", - "rshares": "68013381" + "rshares": "68013381", + "voter": "storage" }, { - "voter": "cbd", - "rshares": "157667385" + "rshares": "157667385", + "voter": "cbd" }, { - "voter": "junk", - "rshares": "157667385" + "rshares": "157667385", + "voter": "junk" }, { - "voter": "hug", - "rshares": "157682838" + "rshares": "157682838", + "voter": "hug" }, { - "voter": "bearcub", - "rshares": "157682838" + "rshares": "157682838", + "voter": "bearcub" }, { - "voter": "cyberpunk", - "rshares": "157682809" + "rshares": "157682809", + "voter": "cyberpunk" }, { - "voter": "keisha", - "rshares": "156919204" + "rshares": "156919204", + "voter": "keisha" }, { - "voter": "blackmarket", - "rshares": "58460105" + "rshares": "58460105", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "61530871" + "rshares": "61530871", + "voter": "gifts" }, { - "voter": "int", - "rshares": "156919175" + "rshares": "156919175", + "voter": "int" }, { - "voter": "steemlift", - "rshares": "1593664040" + "rshares": "1593664040", + "voter": "steemlift" } ], - "author_reputation": 66.84, - "stats": { - "hide": false, - "gray": false, - "total_votes": 229, - "flag_weight": 0.0 - }, + "author": "serejandmyself", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/story/@serejandmyself/captured-by-time-an-original-novel-chapter-1", - "blacklists": [] - }, - { - "post_id": 949385, - "author": "cass", - "permlink": "steemfest-follow-up-poster-designs-sbd-rewards-will-donated-to-the-project", - "category": "steemfest", - "title": "[Steemfest] Follow up - Poster designs! SBD rewards will donated to the project!", - "body": "![b99cea99b79d334be4815a56a64ff4f1.png](https://www.steemimg.com/images/2016/09/14/b99cea99b79d334be4815a56a64ff4f1.png)\n\n---\n\nI want to follow up on @roelandp announcement post about the steemfest.com at November 11/12/13.\n\nSome of u have noticed i'm assisting him on the preparation for the Steemfest Event in November.\nI did meet @roelandp in Amsterdam last week and was directly impressed by his passion and energy.\nSo i decided to FULL support him towards the Nov11.\n\n\n### All gotten SBD rewards will contributed towards @steemfest project \n\nSo u will have a better possibility to get a preview on how the posters will look later on \"LIVE\".\nHere we go, i was trying to make a nice small mockup collection to this cause.\n\nENJOY\n[![3a7db045b911ea8785a1e9c37c7e75a7.jpg](https://www.steemimg.com/images/2016/09/14/3a7db045b911ea8785a1e9c37c7e75a7.jpg)](https://www.steemimg.com/image/1SL5m)\n\n[![9a8268f34903dbcf5fbe06559ce7bfc6.png](https://www.steemimg.com/images/2016/09/14/9a8268f34903dbcf5fbe06559ce7bfc6.png)](https://www.steemimg.com/image/1V8e6)\n[![8f8de740d802a0bf228bd833657b1f26.jpg](https://www.steemimg.com/images/2016/09/14/8f8de740d802a0bf228bd833657b1f26.jpg)](https://www.steemimg.com/image/1SnTu)\n[![a317ccbeec3112a5d60f6f2afdf8255a.jpg](https://www.steemimg.com/images/2016/09/14/a317ccbeec3112a5d60f6f2afdf8255a.jpg)](https://www.steemimg.com/image/1SPji)\n[![bd3b5b4c18cda4d063cabc03443cb6a8.jpg](https://www.steemimg.com/images/2016/09/14/bd3b5b4c18cda4d063cabc03443cb6a8.jpg)](https://www.steemimg.com/image/1SCWB)\n[![4d16cb792150dbd9c7cca2e9eea45f9d.jpg](https://www.steemimg.com/images/2016/09/14/4d16cb792150dbd9c7cca2e9eea45f9d.jpg)](https://www.steemimg.com/image/1S62K)\n[![25943765543ef057543db7f2d5b65e28.jpg](https://www.steemimg.com/images/2016/09/14/25943765543ef057543db7f2d5b65e28.jpg)](https://www.steemimg.com/image/1SwCI)\n[![a1d1fc9af366abae551a9b443ac0441f.jpg](https://www.steemimg.com/images/2016/09/14/a1d1fc9af366abae551a9b443ac0441f.jpg)](https://www.steemimg.com/image/1Sq3h)", + "blacklists": [], + "body": "#### Hey guys, welcome to the first chapter of my new novel.\n#### It is a mixture of 3 time lines, with 19th century, modern day and ancient times. The genre is probably something you would call a mixture of sci-fi, mystery, adventure and a bit more. \n#### Well, I welcome you to be the judge...\n\n

[![b801c049484636e0faf71f56cca03864c0bd6.jpg](https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg)](https://www.steemimg.com/image/1wrYT)

\n\n__________________________________\n\n**Chapter ONE**\n\nIt seemed as nothing was different in yet another cold and slightly windy London evening. The smog from the river was rising up as usual and the chilly wind would bring the smell up to the embankment, where Charles was taking a rest, sitting down on his favorite bench. \n\nFrom here he could see the might of the power station from across the river and something was special in the way those chimneys threw out the smoke onto the city. \n\nHe just finished his walk along his usual route, walking amongst the cemetery outside the chapel. It always amused him; that mix of emotion and sorrow amongst the busy city people, especially during the busy afternoon hours.\n\nThat rusty smell kept mixing with up with the light freshness of the leaves from the tree nearby Charles\u2019s bench. As he threw a brief glimpse onto the clock on the parliament building he noticed that the small arrow was on 45 minutes\u2026 \n\nSuddenly he heard a murmur of horses; he turned his head before he could finish realizing what time it was. He saw that just a few yards up the road two horse carriages didn\u2019t manage to share the drive way. \n\n
[![Saratogacarriagec5af5.jpg](https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg)](https://www.steemimg.com/image/1w1bI)
\n\nOne of the coachmen was shouting something and angrily waving his hands. Charles was able to see from here that the coachmen\u2019s grey clothing was partially covered in dirt, probably from the splash of the puddles from underneath the wheels. \n\nThe coachmen kept shouting something, Charles was unable to see the second carriage from where he was sitting, but was able to see some passersby, that starting to gather around the incident.\n\nIt was obvious that, just like him, those people had nothing better to do on this late afternoon then to watch in amusement the accident in the middle of the avenue.\n\nJust as Charles was starting to lose interest in the whole situation, the door of the cab that Charles could see, opened and a man dressed in a black suit and holding a pipe stepped out. He calmly put his hand in the upper inner pocket of the suit and pulled out some coins. The man made two steps up to driver and handed him the coins. At this moment the driver stopped shouting for a moment and it was clear from the look on his face that he was confused. \n\nThe cab driver counted the coins and said something to the man in the suit, the passenger didn\u2019t answer. He turned around and started to walk in the direction of the chapel. The cab driver clearly wasn\u2019t happy. He started to shout once again, but this time at the passenger. While the cab driver turned his attention to the passenger, Charles noticed how the second carriage that was involved in the accident managed to move a few yards back.\n\nIt was a much smaller carriage, and the driver was clearly seeable to Charles now. He seemed somewhat happy that he was not in the middle of the light anymore; he hurryingly turned the carriage and the horse around and started to move also in the direction of the chapel. \n\nAt this moment the driver of the first carriage started to lose interest in shouting and decided to clean himself up. As he started to calm down, the bemused passersby begun to walk back to where they were heading and Charles also turned his head back towards the power station.\n\nCharles was so busy watching the situation unfold that he didn\u2019t noticed that the passenger of the first carriage crossed the road and was now heading not towards the chapel anymore, but exactly in the other direction, towards the grey bench that Charles was sitting on.\n\nAt first Charles didn\u2019t pay any attention to just another man who was walking by. But then he noticed that calm walk of his and it hit him that this was the same passenger from the carriage.\n\n\u201cExcuse me sir?\u201d said Charles as the man closed up to the bench. \u201cYou are the gentleman from the carriage, aren\u2019t you?\u201d \u201cI saw you a minute ago, what happened?\u201d\n\nThe man stopped to walk and shared a look with Charles; he calmly sat down beside him and carried on smoking his pipe, as he was not hearing the questions Charles asked him. \n\n\u201cI do apologies for the intervention, but you must not be local, I can tell by your calmness, all the folks round here are always in a hurry\u201d Charles carried on talking as if not noticing that the man was ignoring him. \n\nAll of a sudden the weather begun to change, wind started to blow stronger and the few leaves that the tree was holding blew in the direction of the bench. The smell from the river rose up and as if that wasn\u2019t enough Charles felt like a small rain drop hit his head. He could clearly see the green water from where he was sitting through the decorations holes of the embankments fence. It was clear that it will start to rain soon by the appearing circles on the top of the river.\n\nAfter a few minutes of quietly seating by his new neighbor Charles caught himself looking at the clock on the tower, once again he saw the small arrow on 45 minutes\u2026\n\n\u201cAnd what do we pay the government for?\u201d \u201cIt would feel though they are taking our money and spend it on their fancy hats and suits, don\u2019t you find?\u201d Said Charles.\n\nAt this point the man took out the pipe into his left hand and begun to cough. After he finished coughing Charles heard him speak, at this point Charles understood that for some reason he would remember this moment for a long time to come. \n\n\u201cIt is likely to assume that they deserve to spend the money they earn\u201d Said the man, his voice was quite low and he had a certain accent Charles could quite catch.\n\n\u201cI don\u2019t think that money is of importance nowadays\u201d Said the man.\n\nCharles looked at the man with a smile - \u201cWhat is of importance? One might assume that philosophically speaking, importance can be found in nothing but what is good to us\u201d.\n\n\u201cNo body knows what can be important to others if we carry on like this, then\u2026\u201d Charles didn\u2019t finish his sentence as the man turned away from him and looked the other way. He then turned his head back and Charles noticed his eyes. His eyes were nothing like what Charles had seen before, they looked as though they were glass like and the as if they were blank, there was nothing behind them.\n\n\u201cWhat is important is that I am here now and that it is happening today. It is important to live your life because, just like your life Charles, it has an end\u201d, the man looked somewhat happy when he said that and Charles jumped back on the bench a little, he felt a small shiver run down his spine.\n\n\u201cWhat? How do you know my name sir? Have you been following me?\u201d questions were racing through Charles\u2019s mind. \n\n\u201cAs I said, this is now of importance. You life can find its end today when you get back to your gallery in your cold basement on Kinnerton street or you might listen to me and\u2026\u201d Charles didn\u2019t let the man finish his sentence. He jumped up from the bench; his cane flew within millimeters of the stranger leg as he jumped.\n\n\u201cHow dare you sir? Who gives you the right\u2026\u201d Charles raised his voice, he never allowed himself to raise his voice at a stranger beforehand.\n\n\u201cI think this conversation is over!\u201d exclaimed Charles. \u201cThat would be your choice\u201d replied the man, \u201cDo you think the time is right?\u201d \n\nCharles had already turned away in anger and was about to make his first step away. Something in the words of the man about the time made him think for a second, thoughts raced through his mind. The number 45 and the small arrow of the parliament clock were stuck in his head. \n\n\u201cI don\u2019t understand said Charles\u2026\u201d he turned his head back towards the clock; the arrow was still on 45 minutes. \u201cHow is that possible?\u201d Charles turned his head to the man, but there was no one on the bench. \n\nCharles begun to search the street rapidly with his eyes, it didn\u2019t even occur to him that it was heavily raining until that moment. \n\n
[![tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif](https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif)](https://www.steemimg.com/image/1w5tK)
\n\nThe streets were empty; there were no carriages or people to be seen around. Feeling scared he turned his head to the clock once again \u2013 \u201cHow can it still be 45 minutes...\u201d Charles was speaking out loud.\n\nThe next moment he felt like his knees weakened, his head was swirling and he dropped his cane, last thing he could hear was the clinging the of the cane\u2019s handle against the pavement. His thoughts mixed up with his eyesight; the man and his pipe, the handle of the clock, the carriage, the passersby, the power stations smoke\u2026\n \n_________________________________\n\n#### Follow me @serejandmyself for more \n\nImage credit - [1](https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/) ; [2](https://giphy.com/search/carriage) ; [3](http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html) ;", + "category": "story", + "children": 2, + "created": "2016-09-15T17:23:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "steemfest", - "design", - "poster", - "amsterdam" - ], - "users": [ - "roelandp", - "steemfest" - ], "image": [ - "https://www.steemimg.com/images/2016/09/14/b99cea99b79d334be4815a56a64ff4f1.png", - "https://www.steemimg.com/images/2016/09/14/3a7db045b911ea8785a1e9c37c7e75a7.jpg", - "https://www.steemimg.com/images/2016/09/14/9a8268f34903dbcf5fbe06559ce7bfc6.png", - "https://www.steemimg.com/images/2016/09/14/8f8de740d802a0bf228bd833657b1f26.jpg", - "https://www.steemimg.com/images/2016/09/14/a317ccbeec3112a5d60f6f2afdf8255a.jpg", - "https://www.steemimg.com/images/2016/09/14/bd3b5b4c18cda4d063cabc03443cb6a8.jpg", - "https://www.steemimg.com/images/2016/09/14/4d16cb792150dbd9c7cca2e9eea45f9d.jpg", - "https://www.steemimg.com/images/2016/09/14/25943765543ef057543db7f2d5b65e28.jpg", - "https://www.steemimg.com/images/2016/09/14/a1d1fc9af366abae551a9b443ac0441f.jpg" + "https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg", + "https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg", + "https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif" ], "links": [ - "https://www.steemimg.com/image/1SL5m", - "https://www.steemimg.com/image/1V8e6", - "https://www.steemimg.com/image/1SnTu", - "https://www.steemimg.com/image/1SPji", - "https://www.steemimg.com/image/1SCWB", - "https://www.steemimg.com/image/1S62K", - "https://www.steemimg.com/image/1SwCI", - "https://www.steemimg.com/image/1Sq3h" + "https://www.steemimg.com/image/1wrYT", + "https://www.steemimg.com/image/1w1bI", + "https://www.steemimg.com/image/1w5tK", + "https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/", + "https://giphy.com/search/carriage", + "http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html" + ], + "tags": [ + "story", + "fiction", + "scifi", + "mystery", + "writing" + ], + "users": [ + "serejandmyself" ] }, - "created": "2016-09-14T14:02:39", - "updated": "2016-09-14T14:02:39", - "depth": 0, - "children": 17, - "net_rshares": 169985783269298, - "is_paidout": false, - "payout_at": "2016-10-15T19:32:42", - "payout": 1618.329, - "pending_payout_value": "1618.329 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66871297900441, + "payout": 259.423, + "payout_at": "2016-09-22T17:23:48", + "pending_payout_value": "259.423 HBD", + "percent_hbd": 10000, + "permlink": "captured-by-time-an-original-novel-chapter-1", + "post_id": 1256421, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 229 + }, + "title": "CAPTURED BY TIME (An Original Novel - Chapter 1)", + "updated": "2016-09-15T17:23:48", + "url": "/story/@serejandmyself/captured-by-time-an-original-novel-chapter-1" + }, + { "active_votes": [ { - "voter": "barrie", - "rshares": "494637006894" + "rshares": "494637006894", + "voter": "barrie" }, { - "voter": "steempty", - "rshares": "7710245013992" + "rshares": "7710245013992", + "voter": "steempty" }, { - "voter": "smooth", - "rshares": "30984805998710" + "rshares": "30984805998710", + "voter": "smooth" }, { - "voter": "anonymous", - "rshares": "289667785336" + "rshares": "289667785336", + "voter": "anonymous" }, { - "voter": "summon", - "rshares": "14447196140450" + "rshares": "14447196140450", + "voter": "summon" }, { - "voter": "eternity", - "rshares": "681484074723" + "rshares": "681484074723", + "voter": "eternity" }, { - "voter": "jamesc", - "rshares": "36033200189196" + "rshares": "36033200189196", + "voter": "jamesc" }, { - "voter": "riverhead", - "rshares": "4574334081535" + "rshares": "4574334081535", + "voter": "riverhead" }, { - "voter": "wackou", - "rshares": "7015534059816" + "rshares": "7015534059816", + "voter": "wackou" }, { - "voter": "badassmother", - "rshares": "2160925860071" + "rshares": "2160925860071", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2051034289892" + "rshares": "2051034289892", + "voter": "hr1" }, { - "voter": "fuzzyvest", - "rshares": "6466290924028" + "rshares": "6466290924028", + "voter": "fuzzyvest" }, { - "voter": "sandra", - "rshares": "118485787519" + "rshares": "118485787519", + "voter": "sandra" }, { - "voter": "kushed", - "rshares": "5339100755934" + "rshares": "5339100755934", + "voter": "kushed" }, { - "voter": "silver", - "rshares": "1674029296934" + "rshares": "1674029296934", + "voter": "silver" }, { - "voter": "silversteem", - "rshares": "4063925838557" + "rshares": "4063925838557", + "voter": "silversteem" }, { - "voter": "svk", - "rshares": "128324636011" + "rshares": "128324636011", + "voter": "svk" }, { - "voter": "ihashfury", - "rshares": "1126556112870" + "rshares": "1126556112870", + "voter": "ihashfury" }, { - "voter": "liondani", - "rshares": "1019287149109" + "rshares": "1019287149109", + "voter": "liondani" }, { - "voter": "wang", - "rshares": "2937247386101" + "rshares": "2937247386101", + "voter": "wang" }, { - "voter": "jaewoocho", - "rshares": "23332152248" + "rshares": "23332152248", + "voter": "jaewoocho" }, { - "voter": "xeroc", - "rshares": "1910071941344" + "rshares": "1910071941344", + "voter": "xeroc" }, { - "voter": "complexring", - "rshares": "6514602351120" + "rshares": "6514602351120", + "voter": "complexring" }, { - "voter": "joseph", - "rshares": "1731498672998" + "rshares": "1731498672998", + "voter": "joseph" }, { - "voter": "aizensou", - "rshares": "90517391466" + "rshares": "90517391466", + "voter": "aizensou" }, { - "voter": "au1nethyb1", - "rshares": "4166462346763" + "rshares": "4166462346763", + "voter": "au1nethyb1" }, { - "voter": "recursive2", - "rshares": "475419579220" + "rshares": "475419579220", + "voter": "recursive2" }, { - "voter": "recursive3", - "rshares": "462210569737" + "rshares": "462210569737", + "voter": "recursive3" }, { - "voter": "masteryoda", - "rshares": "651686683150" + "rshares": "651686683150", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3254899228205" + "rshares": "3254899228205", + "voter": "recursive" }, { - "voter": "mineralwasser", - "rshares": "1209033907" + "rshares": "1209033907", + "voter": "mineralwasser" }, { - "voter": "bingo-0", - "rshares": "6756071314" + "rshares": "6756071314", + "voter": "bingo-0" }, { - "voter": "bingo-1", - "rshares": "1718241828" + "rshares": "1718241828", + "voter": "bingo-1" }, { - "voter": "smooth.witness", - "rshares": "5801165470383" + "rshares": "5801165470383", + "voter": "smooth.witness" }, { - "voter": "steempower", - "rshares": "1330827857292" + "rshares": "1330827857292", + "voter": "steempower" }, { - "voter": "officialfuzzy", - "rshares": "425345638228" + "rshares": "425345638228", + "voter": "officialfuzzy" }, { - "voter": "cass", - "rshares": "1215800936456" + "rshares": "1215800936456", + "voter": "cass" }, { - "voter": "idol", - "rshares": "10365366239" + "rshares": "10365366239", + "voter": "idol" }, { - "voter": "steemrollin", - "rshares": "816021167585" + "rshares": "816021167585", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "5043750251" + "rshares": "5043750251", + "voter": "sakr" }, { - "voter": "bangking", - "rshares": "64509999367" + "rshares": "64509999367", + "voter": "bangking" }, { - "voter": "chitty", - "rshares": "296422841257" + "rshares": "296422841257", + "voter": "chitty" }, { - "voter": "unosuke", - "rshares": "8231062957" + "rshares": "8231062957", + "voter": "unosuke" }, { - "voter": "yefet", - "rshares": "3109726595" + "rshares": "3109726595", + "voter": "yefet" }, { - "voter": "khanhsang", - "rshares": "8209280181" + "rshares": "8209280181", + "voter": "khanhsang" }, { - "voter": "jocelyn", - "rshares": "1784486145" + "rshares": "1784486145", + "voter": "jocelyn" }, { - "voter": "acidsun", - "rshares": "85258511340" + "rshares": "85258511340", + "voter": "acidsun" }, { - "voter": "gregory-f", - "rshares": "14485500439" + "rshares": "14485500439", + "voter": "gregory-f" }, { - "voter": "jademont", - "rshares": "17261905745" + "rshares": "17261905745", + "voter": "jademont" }, { - "voter": "eeks", - "rshares": "74893360972" + "rshares": "74893360972", + "voter": "eeks" }, { - "voter": "paco-steem", - "rshares": "488526217" + "rshares": "488526217", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "5883825852" + "rshares": "5883825852", + "voter": "spaninv" }, { - "voter": "james-show", - "rshares": "-12087903048" + "rshares": "-12087903048", + "voter": "james-show" }, { - "voter": "teamsteem", - "rshares": "336429919201" + "rshares": "336429919201", + "voter": "teamsteem" }, { - "voter": "richman", - "rshares": "8667563285" + "rshares": "8667563285", + "voter": "richman" }, { - "voter": "acidyo", - "rshares": "13068852902" + "rshares": "13068852902", + "voter": "acidyo" }, { - "voter": "steve-walschot", - "rshares": "174506653297" + "rshares": "174506653297", + "voter": "steve-walschot" }, { - "voter": "kefkius", - "rshares": "9836158141" + "rshares": "9836158141", + "voter": "kefkius" }, { - "voter": "oaldamster", - "rshares": "58639157917" + "rshares": "58639157917", + "voter": "oaldamster" }, { - "voter": "coar", - "rshares": "268816966" + "rshares": "268816966", + "voter": "coar" }, { - "voter": "asch", - "rshares": "100988550788" + "rshares": "100988550788", + "voter": "asch" }, { - "voter": "kevinwong", - "rshares": "629740296743" + "rshares": "629740296743", + "voter": "kevinwong" }, { - "voter": "murh", - "rshares": "1414344480" + "rshares": "1414344480", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6372449504" + "rshares": "6372449504", + "voter": "cryptofunk" }, { - "voter": "b4bb4r-5h3r", - "rshares": "16733609471" + "rshares": "16733609471", + "voter": "b4bb4r-5h3r" }, { - "voter": "kodi", - "rshares": "579449391" + "rshares": "579449391", + "voter": "kodi" }, { - "voter": "error", - "rshares": "2326310189" + "rshares": "2326310189", + "voter": "error" }, { - "voter": "dragonslayer109", - "rshares": "206727143370" + "rshares": "206727143370", + "voter": "dragonslayer109" }, { - "voter": "marta-zaidel", - "rshares": "5853981249" + "rshares": "5853981249", + "voter": "marta-zaidel" }, { - "voter": "cyber", - "rshares": "1064576926325" + "rshares": "1064576926325", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "61678758152" + "rshares": "61678758152", + "voter": "theshell" }, { - "voter": "taoteh1221", - "rshares": "425799805812" + "rshares": "425799805812", + "voter": "taoteh1221" }, { - "voter": "applecrisp", - "rshares": "418804855" + "rshares": "418804855", + "voter": "applecrisp" }, { - "voter": "stiletto", - "rshares": "381169481" + "rshares": "381169481", + "voter": "stiletto" }, { - "voter": "hedge-x", - "rshares": "383436160153" + "rshares": "383436160153", + "voter": "hedge-x" }, { - "voter": "juanmiguelsalas", - "rshares": "56682792316" + "rshares": "56682792316", + "voter": "juanmiguelsalas" }, { - "voter": "andrarchy", - "rshares": "572341707403" + "rshares": "572341707403", + "voter": "andrarchy" }, { - "voter": "thecryptodrive", - "rshares": "48485320682" + "rshares": "48485320682", + "voter": "thecryptodrive" }, { - "voter": "fjccoin", - "rshares": "1380704224" + "rshares": "1380704224", + "voter": "fjccoin" }, { - "voter": "infovore", - "rshares": "563704760996" + "rshares": "563704760996", + "voter": "infovore" }, { - "voter": "facer", - "rshares": "13622725061" + "rshares": "13622725061", + "voter": "facer" }, { - "voter": "alexc", - "rshares": "210189819099" + "rshares": "210189819099", + "voter": "alexc" }, { - "voter": "tee-em", - "rshares": "4866103974" + "rshares": "4866103974", + "voter": "tee-em" }, { - "voter": "michaelx", - "rshares": "32185020754" + "rshares": "32185020754", + "voter": "michaelx" }, { - "voter": "mark-waser", - "rshares": "5946920606" + "rshares": "5946920606", + "voter": "mark-waser" }, { - "voter": "albertogm", - "rshares": "17023109715" + "rshares": "17023109715", + "voter": "albertogm" }, { - "voter": "geoffrey", - "rshares": "111322975376" + "rshares": "111322975376", + "voter": "geoffrey" }, { - "voter": "tyler-fletcher", - "rshares": "6609454107" + "rshares": "6609454107", + "voter": "tyler-fletcher" }, { - "voter": "razvanelulmarin", - "rshares": "81716838174" + "rshares": "81716838174", + "voter": "razvanelulmarin" }, { - "voter": "superfreek", - "rshares": "2251029884" + "rshares": "2251029884", + "voter": "superfreek" }, { - "voter": "mrhankeh", - "rshares": "497689345" + "rshares": "497689345", + "voter": "mrhankeh" }, { - "voter": "clement", - "rshares": "35378265315" + "rshares": "35378265315", + "voter": "clement" }, { - "voter": "acassity", - "rshares": "32849189476" + "rshares": "32849189476", + "voter": "acassity" }, { - "voter": "ladyclair", - "rshares": "280886491" + "rshares": "280886491", + "voter": "ladyclair" }, { - "voter": "bacchist", - "rshares": "68448307991" + "rshares": "68448307991", + "voter": "bacchist" }, { - "voter": "venuspcs", - "rshares": "29507132066" + "rshares": "29507132066", + "voter": "venuspcs" }, { - "voter": "asmolokalo", - "rshares": "189899541322" + "rshares": "189899541322", + "voter": "asmolokalo" }, { - "voter": "good-karma", - "rshares": "57789275837" + "rshares": "57789275837", + "voter": "good-karma" }, { - "voter": "roelandp", - "rshares": "462726697228" + "rshares": "462726697228", + "voter": "roelandp" }, { - "voter": "gidlark", - "rshares": "1642746247" + "rshares": "1642746247", + "voter": "gidlark" }, { - "voter": "orly", - "rshares": "3281446057" + "rshares": "3281446057", + "voter": "orly" }, { - "voter": "getssidetracked", - "rshares": "3822074668" + "rshares": "3822074668", + "voter": "getssidetracked" }, { - "voter": "mstang83", - "rshares": "250280584" + "rshares": "250280584", + "voter": "mstang83" }, { - "voter": "hakise", - "rshares": "18842493961" + "rshares": "18842493961", + "voter": "hakise" }, { - "voter": "fabio", - "rshares": "366200786008" + "rshares": "366200786008", + "voter": "fabio" }, { - "voter": "yogi.artist", - "rshares": "15993709711" + "rshares": "15993709711", + "voter": "yogi.artist" }, { - "voter": "strawhat", - "rshares": "103519364" + "rshares": "103519364", + "voter": "strawhat" }, { - "voter": "r4fken", - "rshares": "16242543792" + "rshares": "16242543792", + "voter": "r4fken" }, { - "voter": "cryptochannel", - "rshares": "102589641" + "rshares": "102589641", + "voter": "cryptochannel" }, { - "voter": "derekareith", - "rshares": "154460522305" + "rshares": "154460522305", + "voter": "derekareith" }, { - "voter": "slowwalker", - "rshares": "134342335542" + "rshares": "134342335542", + "voter": "slowwalker" }, { - "voter": "dzweta", - "rshares": "234221482" + "rshares": "234221482", + "voter": "dzweta" }, { - "voter": "vi1son", - "rshares": "2304777789" + "rshares": "2304777789", + "voter": "vi1son" }, { - "voter": "knircky", - "rshares": "167273913111" + "rshares": "167273913111", + "voter": "knircky" }, { - "voter": "ausbitbank", - "rshares": "18842550092" + "rshares": "18842550092", + "voter": "ausbitbank" }, { - "voter": "jacor", - "rshares": "167108122163" + "rshares": "167108122163", + "voter": "jacor" }, { - "voter": "ardina", - "rshares": "243777568" + "rshares": "243777568", + "voter": "ardina" }, { - "voter": "mixa", - "rshares": "1422705803" + "rshares": "1422705803", + "voter": "mixa" }, { - "voter": "sebastien", - "rshares": "18005198739" + "rshares": "18005198739", + "voter": "sebastien" }, { - "voter": "taurus", - "rshares": "3519456066" + "rshares": "3519456066", + "voter": "taurus" }, { - "voter": "sitaru", - "rshares": "13516878845" + "rshares": "13516878845", + "voter": "sitaru" }, { - "voter": "asim", - "rshares": "11694816243" + "rshares": "11694816243", + "voter": "asim" }, { - "voter": "jesta", - "rshares": "321595915706" + "rshares": "321595915706", + "voter": "jesta" }, { - "voter": "toxonaut", - "rshares": "33655847643" + "rshares": "33655847643", + "voter": "toxonaut" }, { - "voter": "snowden", - "rshares": "109259290" + "rshares": "109259290", + "voter": "snowden" }, { - "voter": "thegoodguy", - "rshares": "4602737482" + "rshares": "4602737482", + "voter": "thegoodguy" }, { - "voter": "paco", - "rshares": "129723551811" + "rshares": "129723551811", + "voter": "paco" }, { - "voter": "karen13", - "rshares": "1107683133" + "rshares": "1107683133", + "voter": "karen13" }, { - "voter": "igster", - "rshares": "24478695193" + "rshares": "24478695193", + "voter": "igster" }, { - "voter": "jpiper20", - "rshares": "73113648749" + "rshares": "73113648749", + "voter": "jpiper20" }, { - "voter": "dmacshady", - "rshares": "2722560234" + "rshares": "2722560234", + "voter": "dmacshady" }, { - "voter": "pkattera", - "rshares": "32333061210" + "rshares": "32333061210", + "voter": "pkattera" }, { - "voter": "anduweb", - "rshares": "19237325288" + "rshares": "19237325288", + "voter": "anduweb" }, { - "voter": "shla-rafia", - "rshares": "10485943136" + "rshares": "10485943136", + "voter": "shla-rafia" }, { - "voter": "milestone", - "rshares": "46825725594" + "rshares": "46825725594", + "voter": "milestone" }, { - "voter": "lichtblick", - "rshares": "7311652491" + "rshares": "7311652491", + "voter": "lichtblick" }, { - "voter": "creemej", - "rshares": "35770229729" + "rshares": "35770229729", + "voter": "creemej" }, { - "voter": "wildchild", - "rshares": "91938017" + "rshares": "91938017", + "voter": "wildchild" }, { - "voter": "demotruk", - "rshares": "126704886218" + "rshares": "126704886218", + "voter": "demotruk" }, { - "voter": "maximkichev", - "rshares": "3638341233" + "rshares": "3638341233", + "voter": "maximkichev" }, { - "voter": "the-future", - "rshares": "2506537211" + "rshares": "2506537211", + "voter": "the-future" }, { - "voter": "adamt", - "rshares": "4381902261" + "rshares": "4381902261", + "voter": "adamt" }, { - "voter": "sebhaj", - "rshares": "865281681" + "rshares": "865281681", + "voter": "sebhaj" }, { - "voter": "phenom", - "rshares": "24903536535" + "rshares": "24903536535", + "voter": "phenom" }, { - "voter": "sgnsteems", - "rshares": "2828187420" + "rshares": "2828187420", + "voter": "sgnsteems" }, { - "voter": "blueorgy", - "rshares": "175156042246" + "rshares": "175156042246", + "voter": "blueorgy" }, { - "voter": "benjiberigan", - "rshares": "9702073568" + "rshares": "9702073568", + "voter": "benjiberigan" }, { - "voter": "calaber24p", - "rshares": "339108457006" + "rshares": "339108457006", + "voter": "calaber24p" }, { - "voter": "geronimo", - "rshares": "7168473448" + "rshares": "7168473448", + "voter": "geronimo" }, { - "voter": "bitcoiner", - "rshares": "4923764236" + "rshares": "4923764236", + "voter": "bitcoiner" }, { - "voter": "tarindel", - "rshares": "3756065125" + "rshares": "3756065125", + "voter": "tarindel" }, { - "voter": "rea", - "rshares": "92046641189" + "rshares": "92046641189", + "voter": "rea" }, { - "voter": "jl777", - "rshares": "53840923427" + "rshares": "53840923427", + "voter": "jl777" }, { - "voter": "zaebars", - "rshares": "30194118400" + "rshares": "30194118400", + "voter": "zaebars" }, { - "voter": "paquito", - "rshares": "35105109840" + "rshares": "35105109840", + "voter": "paquito" }, { - "voter": "yarly", - "rshares": "1772149995" + "rshares": "1772149995", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "267173384" + "rshares": "267173384", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "267573135" + "rshares": "267573135", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "154579129" + "rshares": "154579129", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "155451862" + "rshares": "155451862", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "88607961" + "rshares": "88607961", + "voter": "yarly7" }, { - "voter": "raymonjohnstone", - "rshares": "780100857" + "rshares": "780100857", + "voter": "raymonjohnstone" }, { - "voter": "steemchain", - "rshares": "50619397" + "rshares": "50619397", + "voter": "steemchain" }, { - "voter": "whalepool", - "rshares": "50619397" + "rshares": "50619397", + "voter": "whalepool" }, { - "voter": "gustavopasquini", - "rshares": "506354306" + "rshares": "506354306", + "voter": "gustavopasquini" }, { - "voter": "sergey44", - "rshares": "206059171" + "rshares": "206059171", + "voter": "sergey44" }, { - "voter": "mxo8", - "rshares": "114721821" + "rshares": "114721821", + "voter": "mxo8" }, { - "voter": "mohammed123", - "rshares": "1234205003" + "rshares": "1234205003", + "voter": "mohammed123" }, { - "voter": "krabgat", - "rshares": "21120708735" + "rshares": "21120708735", + "voter": "krabgat" }, { - "voter": "favorit", - "rshares": "2763375206" + "rshares": "2763375206", + "voter": "favorit" }, { - "voter": "proto", - "rshares": "4543618384" + "rshares": "4543618384", + "voter": "proto" }, { - "voter": "curator", - "rshares": "634042636" + "rshares": "634042636", + "voter": "curator" }, { - "voter": "yarly10", - "rshares": "428809375" + "rshares": "428809375", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "229507420" + "rshares": "229507420", + "voter": "yarly11" }, { - "voter": "michaeldodridge", - "rshares": "16468884512" + "rshares": "16468884512", + "voter": "michaeldodridge" }, { - "voter": "yarly12", - "rshares": "80241480" + "rshares": "80241480", + "voter": "yarly12" }, { - "voter": "celebr1ty", - "rshares": "46743296544" + "rshares": "46743296544", + "voter": "celebr1ty" }, { - "voter": "dimitarj", - "rshares": "11567632851" + "rshares": "11567632851", + "voter": "dimitarj" }, { - "voter": "steemster1", - "rshares": "142823483" + "rshares": "142823483", + "voter": "steemster1" }, { - "voter": "fabien", - "rshares": "25747727433" + "rshares": "25747727433", + "voter": "fabien" }, { - "voter": "bullionstackers", - "rshares": "817422571" + "rshares": "817422571", + "voter": "bullionstackers" }, { - "voter": "originate", - "rshares": "250094985729" + "rshares": "250094985729", + "voter": "originate" }, { - "voter": "dmilash", - "rshares": "3021945641" + "rshares": "3021945641", + "voter": "dmilash" }, { - "voter": "jillstein2016", - "rshares": "2214910466" + "rshares": "2214910466", + "voter": "jillstein2016" }, { - "voter": "cryptoz", - "rshares": "110940646" + "rshares": "110940646", + "voter": "cryptoz" }, { - "voter": "glitterpig", - "rshares": "3302445446" + "rshares": "3302445446", + "voter": "glitterpig" }, { - "voter": "uwe69", - "rshares": "6338015068" + "rshares": "6338015068", + "voter": "uwe69" }, { - "voter": "shortcut", - "rshares": "6276554782" + "rshares": "6276554782", + "voter": "shortcut" }, { - "voter": "steemdrive", - "rshares": "115422843193" + "rshares": "115422843193", + "voter": "steemdrive" }, { - "voter": "metaflute", - "rshares": "947490604" + "rshares": "947490604", + "voter": "metaflute" }, { - "voter": "gomeravibz", - "rshares": "52093680889" + "rshares": "52093680889", + "voter": "gomeravibz" }, { - "voter": "taker", - "rshares": "2298221146" + "rshares": "2298221146", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "6519151447" + "rshares": "6519151447", + "voter": "nekromarinist" }, { - "voter": "sharon", - "rshares": "57873464" + "rshares": "57873464", + "voter": "sharon" }, { - "voter": "frozendota", - "rshares": "240147448" + "rshares": "240147448", + "voter": "frozendota" }, { - "voter": "felixxx", - "rshares": "15408983536" + "rshares": "15408983536", + "voter": "felixxx" }, { - "voter": "whitemike313", - "rshares": "1571831658" + "rshares": "1571831658", + "voter": "whitemike313" }, { - "voter": "merej99", - "rshares": "3034673286" + "rshares": "3034673286", + "voter": "merej99" }, { - "voter": "lillianjones", - "rshares": "58971492" + "rshares": "58971492", + "voter": "lillianjones" }, { - "voter": "twinner", - "rshares": "160728582794" + "rshares": "160728582794", + "voter": "twinner" }, { - "voter": "rawnetics", - "rshares": "24365622803" + "rshares": "24365622803", + "voter": "rawnetics" }, { - "voter": "sextusempiricus", - "rshares": "54215689285" + "rshares": "54215689285", + "voter": "sextusempiricus" }, { - "voter": "laonie1", - "rshares": "24019048233" + "rshares": "24019048233", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "25067031014" + "rshares": "25067031014", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "25075820795" + "rshares": "25075820795", + "voter": "laonie3" }, { - "voter": "brendio", - "rshares": "6338796297" + "rshares": "6338796297", + "voter": "brendio" }, { - "voter": "gmurph", - "rshares": "2082633772" + "rshares": "2082633772", + "voter": "gmurph" }, { - "voter": "timsaid", - "rshares": "80533628422" + "rshares": "80533628422", + "voter": "timsaid" }, { - "voter": "kalimor", - "rshares": "2375350982" + "rshares": "2375350982", + "voter": "kalimor" }, { - "voter": "coderg", - "rshares": "63541793" + "rshares": "63541793", + "voter": "coderg" }, { - "voter": "darrenturetzky", - "rshares": "2868848889" + "rshares": "2868848889", + "voter": "darrenturetzky" }, { - "voter": "michellek", - "rshares": "56886318" + "rshares": "56886318", + "voter": "michellek" }, { - "voter": "laonie4", - "rshares": "25071217681" + "rshares": "25071217681", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "25068579591" + "rshares": "25068579591", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "25065597250" + "rshares": "25065597250", + "voter": "laonie6" }, { - "voter": "laonie7", - "rshares": "25061528883" + "rshares": "25061528883", + "voter": "laonie7" }, { - "voter": "kurtbeil", - "rshares": "5480906296" + "rshares": "5480906296", + "voter": "kurtbeil" }, { - "voter": "laonie8", - "rshares": "25057888093" + "rshares": "25057888093", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "25055101904" + "rshares": "25055101904", + "voter": "laonie9" }, { - "voter": "steemleak", - "rshares": "3229522119" + "rshares": "3229522119", + "voter": "steemleak" }, { - "voter": "thisisbenbrick", - "rshares": "112040172638" + "rshares": "112040172638", + "voter": "thisisbenbrick" }, { - "voter": "antfield", - "rshares": "4269542847" + "rshares": "4269542847", + "voter": "antfield" }, { - "voter": "mevilkingdom", - "rshares": "7834943379" + "rshares": "7834943379", + "voter": "mevilkingdom" }, { - "voter": "locolote", - "rshares": "60240401" + "rshares": "60240401", + "voter": "locolote" }, { - "voter": "riosparada", - "rshares": "368648608" + "rshares": "368648608", + "voter": "riosparada" }, { - "voter": "ekitcho", - "rshares": "11282370272" + "rshares": "11282370272", + "voter": "ekitcho" }, { - "voter": "bigsambucca", - "rshares": "115248537" + "rshares": "115248537", + "voter": "bigsambucca" }, { - "voter": "joele", - "rshares": "93215140213" + "rshares": "93215140213", + "voter": "joele" }, { - "voter": "paynode", - "rshares": "2215228183" + "rshares": "2215228183", + "voter": "paynode" }, { - "voter": "dims", - "rshares": "79785139" + "rshares": "79785139", + "voter": "dims" }, { - "voter": "pgarcgo", - "rshares": "2455226384" + "rshares": "2455226384", + "voter": "pgarcgo" }, { - "voter": "hms818", - "rshares": "1434064827" + "rshares": "1434064827", + "voter": "hms818" }, { - "voter": "nonlinearone", - "rshares": "40210689203" + "rshares": "40210689203", + "voter": "nonlinearone" }, { - "voter": "msjennifer", - "rshares": "59437351" + "rshares": "59437351", + "voter": "msjennifer" }, { - "voter": "ciao", - "rshares": "54654502" + "rshares": "54654502", + "voter": "ciao" }, { - "voter": "villainblack", - "rshares": "3667415885" + "rshares": "3667415885", + "voter": "villainblack" }, { - "voter": "steemo", - "rshares": "52985539" + "rshares": "52985539", + "voter": "steemo" }, { - "voter": "steema", - "rshares": "52848854" + "rshares": "52848854", + "voter": "steema" }, { - "voter": "plasticfuzzy", - "rshares": "16997336414" + "rshares": "16997336414", + "voter": "plasticfuzzy" }, { - "voter": "evgenyche", - "rshares": "74615731" + "rshares": "74615731", + "voter": "evgenyche" }, { - "voter": "confucius", - "rshares": "69662169" + "rshares": "69662169", + "voter": "confucius" }, { - "voter": "stevescriber", - "rshares": "70633121" + "rshares": "70633121", + "voter": "stevescriber" }, { - "voter": "bledarus", - "rshares": "4179438198" + "rshares": "4179438198", + "voter": "bledarus" }, { - "voter": "loli", - "rshares": "53688127" + "rshares": "53688127", + "voter": "loli" }, { - "voter": "miacats", - "rshares": "93744050986" + "rshares": "93744050986", + "voter": "miacats" }, { - "voter": "jarvis", - "rshares": "53661976" + "rshares": "53661976", + "voter": "jarvis" }, { - "voter": "razberrijam", - "rshares": "77220767" + "rshares": "77220767", + "voter": "razberrijam" }, { - "voter": "rubenalexander", - "rshares": "6669342810" + "rshares": "6669342810", + "voter": "rubenalexander" }, { - "voter": "fortuner", - "rshares": "51899170" + "rshares": "51899170", + "voter": "fortuner" }, { - "voter": "pjheinz", - "rshares": "9443278113" + "rshares": "9443278113", + "voter": "pjheinz" }, { - "voter": "virtualgrowth", - "rshares": "3054149279" + "rshares": "3054149279", + "voter": "virtualgrowth" }, { - "voter": "neptun", - "rshares": "84068339484" + "rshares": "84068339484", + "voter": "neptun" }, { - "voter": "gvargas123", - "rshares": "11375408076" + "rshares": "11375408076", + "voter": "gvargas123" }, { - "voter": "johnbyrd", - "rshares": "50698107" + "rshares": "50698107", + "voter": "johnbyrd" }, { - "voter": "thomasaustin", - "rshares": "50682252" + "rshares": "50682252", + "voter": "thomasaustin" }, { - "voter": "thermor", - "rshares": "50680459" + "rshares": "50680459", + "voter": "thermor" }, { - "voter": "ficholl", - "rshares": "50691211" + "rshares": "50691211", + "voter": "ficholl" }, { - "voter": "widell", - "rshares": "50673817" + "rshares": "50673817", + "voter": "widell" }, { - "voter": "revelbrooks", - "rshares": "50311250" + "rshares": "50311250", + "voter": "revelbrooks" }, { - "voter": "laonie10", - "rshares": "25048684602" + "rshares": "25048684602", + "voter": "laonie10" }, { - "voter": "lasseehlers", - "rshares": "91779459" + "rshares": "91779459", + "voter": "lasseehlers" }, { - "voter": "mrlogic", - "rshares": "377542979" + "rshares": "377542979", + "voter": "mrlogic" }, { - "voter": "netaterra", - "rshares": "2982178419" + "rshares": "2982178419", + "voter": "netaterra" }, { - "voter": "bitchplease", - "rshares": "54361669" + "rshares": "54361669", + "voter": "bitchplease" }, { - "voter": "joelbow", - "rshares": "78411391" + "rshares": "78411391", + "voter": "joelbow" }, { - "voter": "hilarski", - "rshares": "5764641330" + "rshares": "5764641330", + "voter": "hilarski" }, { - "voter": "imag1ne", - "rshares": "3133328104" + "rshares": "3133328104", + "voter": "imag1ne" }, { - "voter": "shadowspub", - "rshares": "2080442949" + "rshares": "2080442949", + "voter": "shadowspub" }, { - "voter": "justinschwalm", - "rshares": "80071335" + "rshares": "80071335", + "voter": "justinschwalm" }, { - "voter": "curpose", - "rshares": "50416427" + "rshares": "50416427", + "voter": "curpose" }, { - "voter": "takethecannoli", - "rshares": "17920360614" + "rshares": "17920360614", + "voter": "takethecannoli" }, { - "voter": "lenar", - "rshares": "1208491149" + "rshares": "1208491149", + "voter": "lenar" }, { - "voter": "runridefly", - "rshares": "1699015883" + "rshares": "1699015883", + "voter": "runridefly" }, { - "voter": "uziriel", - "rshares": "88019548" + "rshares": "88019548", + "voter": "uziriel" }, { - "voter": "steemitguide", - "rshares": "2212170971" + "rshares": "2212170971", + "voter": "steemitguide" }, { - "voter": "einsteinpotsdam", - "rshares": "7470990325" + "rshares": "7470990325", + "voter": "einsteinpotsdam" }, { - "voter": "richardcrill", - "rshares": "4592852638" + "rshares": "4592852638", + "voter": "richardcrill" }, { - "voter": "laonie11", - "rshares": "24180906457" + "rshares": "24180906457", + "voter": "laonie11" }, { - "voter": "troich", - "rshares": "50588612" + "rshares": "50588612", + "voter": "troich" }, { - "voter": "xanoxt", - "rshares": "3336919086" + "rshares": "3336919086", + "voter": "xanoxt" }, { - "voter": "davidjkelley", - "rshares": "1660688801" + "rshares": "1660688801", + "voter": "davidjkelley" }, { - "voter": "crion", - "rshares": "50593879" + "rshares": "50593879", + "voter": "crion" }, { - "voter": "hitherise", - "rshares": "50271139" + "rshares": "50271139", + "voter": "hitherise" }, { - "voter": "wiss", - "rshares": "50262756" + "rshares": "50262756", + "voter": "wiss" }, { - "voter": "sponge-bob", - "rshares": "42587324218" + "rshares": "42587324218", + "voter": "sponge-bob" }, { - "voter": "l0k1", - "rshares": "4656328113" + "rshares": "4656328113", + "voter": "l0k1" }, { - "voter": "digital-wisdom", - "rshares": "15560806947" + "rshares": "15560806947", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3708768210" + "rshares": "3708768210", + "voter": "ethical-ai" }, { - "voter": "freesteem", - "rshares": "51939094" + "rshares": "51939094", + "voter": "freesteem" }, { - "voter": "jamespro", - "rshares": "51061585" + "rshares": "51061585", + "voter": "jamespro" }, { - "voter": "stroully", - "rshares": "51033798" + "rshares": "51033798", + "voter": "stroully" }, { - "voter": "maryfromsochi", - "rshares": "3079499780" + "rshares": "3079499780", + "voter": "maryfromsochi" }, { - "voter": "jwaser", - "rshares": "6827381497" + "rshares": "6827381497", + "voter": "jwaser" }, { - "voter": "thadm", - "rshares": "50712038" + "rshares": "50712038", + "voter": "thadm" }, { - "voter": "prof", - "rshares": "50710305" + "rshares": "50710305", + "voter": "prof" }, { - "voter": "yorsens", - "rshares": "50370757" + "rshares": "50370757", + "voter": "yorsens" }, { - "voter": "asksisk", - "rshares": "212837202380" + "rshares": "212837202380", + "voter": "asksisk" }, { - "voter": "bane", - "rshares": "50065875" + "rshares": "50065875", + "voter": "bane" }, { - "voter": "vive", - "rshares": "50059754" + "rshares": "50059754", + "voter": "vive" }, { - "voter": "coad", - "rshares": "50054445" + "rshares": "50054445", + "voter": "coad" }, { - "voter": "dubi", - "rshares": "26903512125" + "rshares": "26903512125", + "voter": "dubi" }, { - "voter": "bwaser", - "rshares": "2674022812" + "rshares": "2674022812", + "voter": "bwaser" }, { - "voter": "sofa", - "rshares": "50840303" + "rshares": "50840303", + "voter": "sofa" }, { - "voter": "roadhog", - "rshares": "52910800" + "rshares": "52910800", + "voter": "roadhog" }, { - "voter": "alina1", - "rshares": "2201645172" + "rshares": "2201645172", + "voter": "alina1" }, { - "voter": "ct-gurus", - "rshares": "659649765" + "rshares": "659649765", + "voter": "ct-gurus" }, { - "voter": "medafi", - "rshares": "54622489" + "rshares": "54622489", + "voter": "medafi" }, { - "voter": "mariandavp", - "rshares": "7708395185" + "rshares": "7708395185", + "voter": "mariandavp" }, { - "voter": "tracemayer", - "rshares": "63519655246" + "rshares": "63519655246", + "voter": "tracemayer" }, { - "voter": "brains", - "rshares": "43440714161" + "rshares": "43440714161", + "voter": "brains" }, { - "voter": "post-successful", - "rshares": "51278775" + "rshares": "51278775", + "voter": "post-successful" }, { - "voter": "ailo", - "rshares": "50933404" + "rshares": "50933404", + "voter": "ailo" }, { - "voter": "burnin", - "rshares": "5419706802" + "rshares": "5419706802", + "voter": "burnin" }, { - "voter": "chick1", - "rshares": "5749962751" + "rshares": "5749962751", + "voter": "chick1" }, { - "voter": "funnyman", - "rshares": "3613469334" + "rshares": "3613469334", + "voter": "funnyman" }, { - "voter": "rigaronib", - "rshares": "2188505650" + "rshares": "2188505650", + "voter": "rigaronib" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "freebornangel", - "rshares": "61548157" + "rshares": "61548157", + "voter": "freebornangel" }, { - "voter": "anomaly", - "rshares": "474509334" + "rshares": "474509334", + "voter": "anomaly" }, { - "voter": "tarekadam", - "rshares": "27666667825" + "rshares": "27666667825", + "voter": "tarekadam" }, { - "voter": "ellepdub", - "rshares": "2400009033" + "rshares": "2400009033", + "voter": "ellepdub" }, { - "voter": "gregorygarcia", - "rshares": "51890765" + "rshares": "51890765", + "voter": "gregorygarcia" }, { - "voter": "inarix03", - "rshares": "61292139" + "rshares": "61292139", + "voter": "inarix03" }, { - "voter": "ola1", - "rshares": "286977519" + "rshares": "286977519", + "voter": "ola1" }, { - "voter": "herpetologyguy", - "rshares": "12084353453" + "rshares": "12084353453", + "voter": "herpetologyguy" }, { - "voter": "eavy", - "rshares": "50441122" + "rshares": "50441122", + "voter": "eavy" }, { - "voter": "roto", - "rshares": "50454901" + "rshares": "50454901", + "voter": "roto" }, { - "voter": "drac59", - "rshares": "53055896" + "rshares": "53055896", + "voter": "drac59" }, { - "voter": "morgan.waser", - "rshares": "4814064056" + "rshares": "4814064056", + "voter": "morgan.waser" }, { - "voter": "cfisher", - "rshares": "50602980" + "rshares": "50602980", + "voter": "cfisher" }, { - "voter": "stringer", - "rshares": "56301561" + "rshares": "56301561", + "voter": "stringer" }, { - "voter": "billkappa442", - "rshares": "50235850" + "rshares": "50235850", + "voter": "billkappa442" }, { - "voter": "robotev", - "rshares": "1491995147" + "rshares": "1491995147", + "voter": "robotev" }, { - "voter": "teo", - "rshares": "61035542" + "rshares": "61035542", + "voter": "teo" }, { - "voter": "donchate", - "rshares": "4984135374" + "rshares": "4984135374", + "voter": "donchate" }, { - "voter": "ardly", - "rshares": "50708837" + "rshares": "50708837", + "voter": "ardly" }, { - "voter": "yotoh", - "rshares": "50704078" + "rshares": "50704078", + "voter": "yotoh" }, { - "voter": "bapparabi", - "rshares": "827252367" + "rshares": "827252367", + "voter": "bapparabi" }, { - "voter": "carre", - "rshares": "50372583" + "rshares": "50372583", + "voter": "carre" }, { - "voter": "albertheijn", - "rshares": "50349676" + "rshares": "50349676", + "voter": "albertheijn" }, { - "voter": "strong-ai", - "rshares": "3687702565" + "rshares": "3687702565", + "voter": "strong-ai" }, { - "voter": "ninjapainter", - "rshares": "52329350" + "rshares": "52329350", + "voter": "ninjapainter" }, { - "voter": "ziogio", - "rshares": "728357348" + "rshares": "728357348", + "voter": "ziogio" }, { - "voter": "igtes", - "rshares": "69589512" + "rshares": "69589512", + "voter": "igtes" }, { - "voter": "buffett", - "rshares": "141679752" + "rshares": "141679752", + "voter": "buffett" }, { - "voter": "sjamayee", - "rshares": "197326430" + "rshares": "197326430", + "voter": "sjamayee" }, { - "voter": "comeup", - "rshares": "121259976" + "rshares": "121259976", + "voter": "comeup" }, { - "voter": "rusteemitblog", - "rshares": "1630339077" + "rshares": "1630339077", + "voter": "rusteemitblog" }, { - "voter": "ndea30", - "rshares": "155476058" + "rshares": "155476058", + "voter": "ndea30" }, { - "voter": "domenico", - "rshares": "155469045" + "rshares": "155469045", + "voter": "domenico" }, { - "voter": "witchcraftblog", - "rshares": "444421238" + "rshares": "444421238", + "voter": "witchcraftblog" }, { - "voter": "shadowproject", - "rshares": "158523226" + "rshares": "158523226", + "voter": "shadowproject" }, { - "voter": "serena199", - "rshares": "157805871" + "rshares": "157805871", + "voter": "serena199" }, { - "voter": "gia7", - "rshares": "154619387" + "rshares": "154619387", + "voter": "gia7" }, { - "voter": "dresden", - "rshares": "1994519972" + "rshares": "1994519972", + "voter": "dresden" }, { - "voter": "mgibson", - "rshares": "201362779" + "rshares": "201362779", + "voter": "mgibson" }, { - "voter": "richie4", - "rshares": "154157014" + "rshares": "154157014", + "voter": "richie4" }, { - "voter": "coraline88", - "rshares": "157241455" + "rshares": "157241455", + "voter": "coraline88" }, { - "voter": "cybergirls", - "rshares": "157176058" + "rshares": "157176058", + "voter": "cybergirls" }, { - "voter": "harlen", - "rshares": "153838109" + "rshares": "153838109", + "voter": "harlen" }, { - "voter": "food-creator", - "rshares": "152057481" + "rshares": "152057481", + "voter": "food-creator" }, { - "voter": "yanuel", - "rshares": "156939548" + "rshares": "156939548", + "voter": "yanuel" }, { - "voter": "daritza", - "rshares": "153751482" + "rshares": "153751482", + "voter": "daritza" }, { - "voter": "correct", - "rshares": "156847954" + "rshares": "156847954", + "voter": "correct" }, { - "voter": "blender", - "rshares": "156411729" + "rshares": "156411729", + "voter": "blender" }, { - "voter": "greenpeace", - "rshares": "159506164" + "rshares": "159506164", + "voter": "greenpeace" }, { - "voter": "tipsandtricks", - "rshares": "156299377" + "rshares": "156299377", + "voter": "tipsandtricks" }, { - "voter": "ibm1000", - "rshares": "156261069" + "rshares": "156261069", + "voter": "ibm1000" }, { - "voter": "panic", - "rshares": "159352476" + "rshares": "159352476", + "voter": "panic" }, { - "voter": "reef", - "rshares": "156023422" + "rshares": "156023422", + "voter": "reef" }, { - "voter": "xtreme", - "rshares": "159025535" + "rshares": "159025535", + "voter": "xtreme" }, { - "voter": "steemwallet", - "rshares": "155619923" + "rshares": "155619923", + "voter": "steemwallet" }, { - "voter": "dealzgal", - "rshares": "81075259" + "rshares": "81075259", + "voter": "dealzgal" }, { - "voter": "storage", - "rshares": "89654003" + "rshares": "89654003", + "voter": "storage" }, { - "voter": "steemdesigner", - "rshares": "151413472" + "rshares": "151413472", + "voter": "steemdesigner" }, { - "voter": "dougkarr", - "rshares": "148077602" + "rshares": "148077602", + "voter": "dougkarr" }, { - "voter": "blackmarket", - "rshares": "73844343" + "rshares": "73844343", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "79990132" + "rshares": "79990132", + "voter": "gifts" }, { - "voter": "pathtomydream", - "rshares": "171078424" + "rshares": "171078424", + "voter": "pathtomydream" }, { - "voter": "paulocouto", - "rshares": "112446078" + "rshares": "112446078", + "voter": "paulocouto" }, { - "voter": "kevinfoesenek", - "rshares": "151525581" + "rshares": "151525581", + "voter": "kevinfoesenek" }, { - "voter": "sawgunner13", - "rshares": "144957585" + "rshares": "144957585", + "voter": "sawgunner13" }, { - "voter": "steemlift", - "rshares": "1593664040" + "rshares": "1593664040", + "voter": "steemlift" }, { - "voter": "dirlei.sdias", - "rshares": "147818170" + "rshares": "147818170", + "voter": "dirlei.sdias" }, { - "voter": "toddemaher1", - "rshares": "135637537" + "rshares": "135637537", + "voter": "toddemaher1" } ], + "author": "cass", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 386, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/steemfest/@cass/steemfest-follow-up-poster-designs-sbd-rewards-will-donated-to-the-project", - "blacklists": [] - }, - { - "post_id": 960067, - "author": "curie", - "permlink": "the-daily-curie-14th-sept-15th-sept-2016", - "category": "curie", - "title": "The Daily Curie (14th Sept - 15th Sept 2016)", - "body": "
https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg
\n\n## Introduction\n[Project Curie](https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors) is a community project run by several Steemit authors. Its mission is to help reward content creators who are posting great original content, yet who have not yet become established. In the short time since Curie began, our writers group has partnered with @nextgencrypto and other whale accounts to bring rewards to these deserving authors. *Writers, artists, chefs, photographers, videographers, and many others have been recognized by these rewards.*\n\nEach day, the members of our Project will publish this list of the posts that Project Curie has chosen to reward recently. We hope that this list will provide more positive exposure to the authors we have selected. Also, it is an effort for us to be more transparent about which posts are being rewarded. We hope that you will consider following not only this @curie account, but also many of the authors whose work is featured here each day. **Please consider adding your comments on these posts also!**\n\nProject Curie's daily curation lists will now be called \"The Daily Curie\". We hope you like the name! Future editions of The Daily Curie will [feature our new logo](https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement). For the latest on Project Curie, do check out our [Month #1 update](https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016). \n\n----------------------\n\n## Today's Brief Analysis\n\nToday's list polls all posts curated between 17:00 14/09 UTC and 17:00 15/09 UTC. Project Curie voted on a total of **103 posts** by 99 unique authors. **SBD 3,832** has been generated for authors thus far, at an average of SBD 37 per post. \n\n----------------------\n| Author | Post | Payout |\n| --------- | ---------- | --------- |\n| [@faddat](https://steemit.com/@faddat) | [[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!](https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed) | 616.681 SBD |\n| [@rampant](https://steemit.com/@rampant) | [Steemit Daily Drawing Tutorial - Gesture drawings (plus tool)](https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool) | 215.310 SBD |\n| [@shenanigator](https://steemit.com/@shenanigator) | [Doing the Right Thing Will Get You Fired. What Do You Do?](https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do) | 205.664 SBD |\n| [@penguinpablo](https://steemit.com/@penguinpablo) | [How to Carve an Apple Leaf](https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf) | 196.419 SBD |\n| [@nathanjtaylor](https://steemit.com/@nathanjtaylor) | [Fire And Grace Art Painting And Poetry](https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry) | 189.043 SBD |\n| [@lily-da-vine](https://steemit.com/@lily-da-vine) | [Going Bananas in Acapulco](https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco) | 158.416 SBD |\n| [@budgetbucketlist](https://steemit.com/@budgetbucketlist) | [A 1-week plunge into Mexico City's madness! Art adventures, Frida-seeking and unfiltered exhaust fumes...](https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes) | 151.033 SBD |\n| [@benjiberigan](https://steemit.com/@benjiberigan) | [Anarchist Architecture, part 5: The cruelty of architectural codes and regulations.](https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations) | 132.427 SBD |\n| [@ausbitbank](https://steemit.com/@ausbitbank) | [The time my town flooded, the fragility of the food supply and lessons learned (Original photos)](https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos) | 125.877 SBD |\n| [@emily-cook](https://steemit.com/@emily-cook) | [THE ISLE OF MAN FILM FESTIVAL 2016 -A week of parties, red carpets and a lot of hard work!](https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work) | 121.336 SBD |\n| [@team-leibniz](https://steemit.com/@team-leibniz) | [Week 1 NFL Daily Fantasy Football Results - How my Bayesian Inspired Lineups Fared (+$84.00)](https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00) | 119.473 SBD |\n| [@ionescur](https://steemit.com/@ionescur) | [Urban dreams of freedom: back to the countryside, back to the land](https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land) | 110.564 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [New traditionl painting - \"The Battle\" - Steps of work](https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work) | 105.622 SBD |\n| [@juliac](https://steemit.com/@juliac) | [One of The Best Portraits That I've Ever Created: Einstein. What Do You Think?](https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think) | 103.781 SBD |\n| [@luzcypher](https://steemit.com/@luzcypher) | [Cover Crops Can Grow Food Organically With No Fertilizers, No Pesticides, No Herbicides And No Chemicals](https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals) | 100.117 SBD |\n| [@akareyon](https://steemit.com/@akareyon) | [I find your lack of argument disturbing](https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing) | 98.525 SBD |\n| [@curving](https://steemit.com/@curving) | [The Ephemeral Cairn Gardens Of the Austin Greenbelt - A Photo Journal and Meditation](https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation) | 96.834 SBD |\n| [@aleksandraz](https://steemit.com/@aleksandraz) | [Incredible Science - Brainbow Technology](https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology) | 89.777 SBD |\n| [@skapaneas](https://steemit.com/@skapaneas) | [IBD Crohn desease and Ulceritive collitis. what are they, self diagnose, self treat and more.](https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more) | 85.958 SBD |\n| [@gargon](https://steemit.com/@gargon) | [Proyecto Cervantes (13 - 15 Sept 2016): Compensación y reconocimiento para escritores de habla hispana / Bringing rewards and recognition to spanish writers (Vol. III)](https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and) | 83.725 SBD |\n| [@iamwne](https://steemit.com/@iamwne) | [Blade Runner Inspired Digital Set - The Dark Market - Beauty Pass](https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass) | 83.869 SBD |\n| [@stormblaze](https://steemit.com/@stormblaze) | [Where Do Deleted Files Go?](https://steemit.com/technology/@stormblaze/where-do-deleted-files-go) | 81.221 SBD |\n| [@yanarnst](https://steemit.com/@yanarnst) | [Steemit Food Art lesson 2 ''Salad with chicken liver and pine nuts''](https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts) | 78.034 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Myths in the Sky: Ursa Major and Ursa Minor](https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor) | 72.174 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Brain preservation: an ambulance to the future](https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future) | 72.082 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Vivisecting the Stargazing Tribe: Visual Observers and Screen Scanners](https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners) | 71.421 SBD |\n| [@cristi](https://steemit.com/@cristi) | [Radical Metabolism - No Food and Water for 8 Months](https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months) | 69.559 SBD |\n| [@stranger27](https://steemit.com/@stranger27) | [Fibonacci sequence and Golden Ratio: magic numbers of Nature](https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature) | 66.258 SBD |\n| [@nekromarinist](https://steemit.com/@nekromarinist) | [Let's talk a little bit about phobias today!](https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today) | 61.776 SBD |\n| [@richman](https://steemit.com/@richman) | [If you want to lose a friend, lend him money (My life story)](https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story) | 58.193 SBD |\n| [@maceytomlin](https://steemit.com/@maceytomlin) | [What Exactly is Ayahuasca? How Should You Prepare for a Ceremony?](https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony) | 58.197 SBD |\n| [@nili](https://steemit.com/@nili) | [Smart Life (part 2) - Resolving the Godel's paradox on the blockchain as a solution for a decentralized trusted protocol](https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol) | 55.575 SBD |\n| [@optimistic-crone](https://steemit.com/@optimistic-crone) | [PROBIOTICS FOR LIFE!!! SUPER SIMPLE FERMENTED VEGETABLE 'KIM CHEE' RECIPE](https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe) | 54.909 SBD |\n| [@anarchyhasnogods](https://steemit.com/@anarchyhasnogods) | [Learning one dimensional motion using graphs- physics for beginners - part one](https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one) | 53.295 SBD |\n| [@yostopia](https://steemit.com/@yostopia) | [Beginner's mind, creative mind... the making of a Vimeo Staff Pick.](https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick) | 51.222 SBD |\n| [@reneenouveau](https://steemit.com/@reneenouveau) | [My response to Paul Steyn's myopic article \"Mr. Environmentalist\" shockingly published by National Geographic in Sept 2015.](https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015) | 49.433 SBD |\n| [@king3071](https://steemit.com/@king3071) | [MY DREAM DESTINATION - SWITZERLAND](https://steemit.com/travel/@king3071/my-dream-destination-switzerland) | 49.816 SBD |\n| [@kolin.evans](https://steemit.com/@kolin.evans) | [Something a little more substantial for you to think about - the 'IS' / 'WAS' CPT (Continuous Probable Time-lines.)](https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines) | 47.288 SBD |\n| [@fenglosophy](https://steemit.com/@fenglosophy) | [Does the language you speak influence how you think?](https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think) | 44.070 SBD |\n| [@mandibil](https://steemit.com/@mandibil) | [SAVAGE [Gorm Just, Denmark 2009] - movie review by Mandibil](https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil) | 44.621 SBD |\n| [@therajmahal](https://steemit.com/@therajmahal) | [Making the Impossible... Possible](https://steemit.com/science/@therajmahal/making-the-impossible-possible) | 44.765 SBD |\n| [@carlitashaw](https://steemit.com/@carlitashaw) | [The World's Worst Oil Spills, Ramifications & Amazing Alternative Solutions.](https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions) | 44.986 SBD |\n| [@renzoarg](https://steemit.com/@renzoarg) | [Skip a pill - Antibiotics](https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics) | 43.918 SBD |\n| [@rachelsvparry](https://steemit.com/@rachelsvparry) | [Under the Sea (again, but better this time)](https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time) | 43.436 SBD |\n| [@royalmacro](https://steemit.com/@royalmacro) | [lonely tree [An Original Abstract Art]](https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art) | 42.826 SBD |\n| [@stephmckenzie](https://steemit.com/@stephmckenzie) | [The Power of Choice--A Magnificent Key to True Personal Freedom](https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone) | 42.441 SBD |\n| [@alwayzgame](https://steemit.com/@alwayzgame) | [10 simple steps to ruin your child's life](https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life) | 42.475 SBD |\n| [@nonlinearone](https://steemit.com/@nonlinearone) | [Can Hemingway Improve Your Writing?](https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing) | 42.669 SBD |\n| [@kafkanarchy84](https://steemit.com/@kafkanarchy84) | [\"Johnny B. Goode\" Guitar Lesson and Intro to Theory, Vol. II](https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii) | 41.326 SBD |\n| [@feline1991](https://steemit.com/@feline1991) | [A Steemit Original - A Lifetime of Seeking Happiness - Chapter 2 - Part 2](https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2) | 41.931 SBD |\n| [@geke](https://steemit.com/@geke) | [The Banker and the Bulova - an original poem (Steemit flash-writing challenge)](https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge) | 41.497 SBD |\n| [@lscottphotos](https://steemit.com/@lscottphotos) | [LSCOTTPHOTOS Welcome to my family :) Thank you steemers <3 (Original Photos)](https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos) | 40.201 SBD |\n| [@pinkisland](https://steemit.com/@pinkisland) | [My Philosophy of Education](https://steemit.com/writing/@pinkisland/my-philosophy-of-education) | 40.978 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cinco](https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco) | 39.708 SBD |\n| [@luisucv34](https://steemit.com/@luisucv34) | [Venezuela: The lack of opportunities (English edition)](https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition) | 39.783 SBD |\n| [@beowulfoflegend](https://steemit.com/@beowulfoflegend) | [Silvanus and Empire, an Original Novel (Chapter Twenty)](https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty) | 39.543 SBD |\n| [@mariandavp](https://steemit.com/@mariandavp) | [From zero to hero - abstract office art by @mariandavp](https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp) | 39.529 SBD |\n| [@nasimbabu](https://steemit.com/@nasimbabu) | [The technology that defends us from potentially deadly diseases](https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases) | 39.620 SBD |\n| [@royaltiffany](https://steemit.com/@royaltiffany) | [Steemit B'Day Movie Review Contest Update!](https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update) | 37.706 SBD |\n| [@travelista](https://steemit.com/@travelista) | [An Adventure in Isla Espíritu Santo!](https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo) | 37.218 SBD |\n| [@jpiper20](https://steemit.com/@jpiper20) | [We Meet At Night -- An Original Story (Part 4)](https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4) | 37.319 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new painting - \"Dexter\" - Modern Impressionism](https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism) | 36.937 SBD |\n| [@krystle](https://steemit.com/@krystle) | [Keltorin's Flora and Fauna of Note - Firikwea - Valcanne's Guide to Keltorin](https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin) | 36.972 SBD |\n| [@cryptoiskey](https://steemit.com/@cryptoiskey) | [Workout from home on the cheap! - 12th September #Ultimate workout companion for your kids!](https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids) | 36.115 SBD |\n| [@getonthetrain](https://steemit.com/@getonthetrain) | [Top 10 Grisly Medieval Torture Methods](https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods) | 34.093 SBD |\n| [@ansharphoto](https://steemit.com/@ansharphoto) | [Roman Forum in the Morning, Rome](https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome) | 33.328 SBD |\n| [@aboundlessworld](https://steemit.com/@aboundlessworld) | [Introducing The Steemit Stories Podcast!](https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast) | 33.728 SBD |\n| [@thornybastard](https://steemit.com/@thornybastard) | [Chapter 10: A Call from the Forest—来自森林的呼唤](https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest) | 32.465 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Installing Bitshares / graphene from source on Mac OS X Yosemite (10.5.5)](https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5) | 32.348 SBD |\n| [@dumar022](https://steemit.com/@dumar022) | [Workshop lesson 6: Wrench: You don't wanna mess with this](https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this) | 32.155 SBD |\n| [@lapilipinas](https://steemit.com/@lapilipinas) | [Light from distant stars](https://steemit.com/science/@lapilipinas/light-from-distant-stars) | 32.778 SBD |\n| [@williambanks](https://steemit.com/@williambanks) | [Towards A Better Tomorrow : Part 1 - There but for grace!](https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace) | 31.434 SBD |\n| [@driv3n](https://steemit.com/@driv3n) | [How to Solve the Rubik's Cube like a boss - Part 2](https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2) | 31.858 SBD |\n| [@timbot606](https://steemit.com/@timbot606) | [Growing up in Appalachia](https://steemit.com/life/@timbot606/growing-up-in-appalachia) | 31.548 SBD |\n| [@themagus](https://steemit.com/@themagus) | [A less privileged white growing up in South Africa in the 1970's - part 2](https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2) | 31.099 SBD |\n| [@echoesinthemind](https://steemit.com/@echoesinthemind) | [Hanging Upside Down / DO NOT Try At Home](https://steemit.com/life/@echoesinthemind/hanging-upside-down) | 31.736 SBD |\n| [@ysa](https://steemit.com/@ysa) | [My pictures from traveling to Estes Park, Colorado](https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado) | 31.981 SBD |\n| [@aksinya](https://steemit.com/@aksinya) | [Our Trip to Wonderful, Scary and Unforgettable Kenya. Original Photos and Video](https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video) | 31.882 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cuatro](https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro) | 31.992 SBD |\n| [@successfully00](https://steemit.com/@successfully00) | [Knowing The Math - Mental Tricks - Multiplication Part 1](https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1) | 31.037 SBD |\n| [@linzo](https://steemit.com/@linzo) | [A Life Fantasy (Original Poem)](https://steemit.com/poem/@linzo/a-life-fantasy-original-poem) | 30.964 SBD |\n| [@hilarski](https://steemit.com/@hilarski) | [Panama Critters.](https://steemit.com/panama/@hilarski/panama-critters) | 28.729 SBD |\n| [@sulev](https://steemit.com/@sulev) | [Photography #11 - Pictures from my Garden: Bees, Lizards and other (part 2)](https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2) | 27.947 SBD |\n| [@steemswede](https://steemit.com/@steemswede) | [[BEER REVIEW] Thomas Hardy's Ale](https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale) | 27.183 SBD |\n| [@marius19](https://steemit.com/@marius19) | [Set of paper coffee cups. Origami](https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami) | 26.439 SBD |\n| [@poeticsnake](https://steemit.com/@poeticsnake) | [Autumn is coming Doodle style! ( Tutorial with step by step drawings)](https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings) | 26.547 SBD |\n| [@kiddarko](https://steemit.com/@kiddarko) | [Peep Life a Story By KidDarko (with tattoo illistrations and video)](https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video) | 26.853 SBD |\n| [@shieha](https://steemit.com/@shieha) | [The Hardest Computer Game of All Time - Robot Odyssey - Part 2](https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2) | 26.372 SBD |\n| [@ayim](https://steemit.com/@ayim) | [Fixing Posture - Part 4: Neck](https://steemit.com/life/@ayim/fixing-posture-part-4-neck) | 26.142 SBD |\n| [@hitmeasap](https://steemit.com/@hitmeasap) | [I am Batman's Robin or Skywalkers R2-D2. - I've always been the co-pilot. Always been the second choice.](https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice) | 25.747 SBD |\n| [@peskov](https://steemit.com/@peskov) | [Antonikha. Part 2 (featuring Vasily Peskov as author)](https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author) | 25.173 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [Advice from an angry dude: Breathe and interrupt your thoughts](https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts) | 25.162 SBD |\n| [@beginningtoend](https://steemit.com/@beginningtoend) | [Poetry, art and a little home spun philosophy.](https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy) | 25.708 SBD |\n| [@kaykunoichi](https://steemit.com/@kaykunoichi) | [Suicide Note - Audio (Written & performed by myself)](https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself) | 25.523 SBD |\n| [@booky](https://steemit.com/@booky) | [Boosting Leadership Skills = Healthier Happier You and Your Workmates](https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates) | 24.083 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [Do you Know the Difference Between RIGHT & WRONG?](https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong) | 24.516 SBD |\n| [@ekaterina4ka](https://steemit.com/@ekaterina4ka) | [We Knit Patterns by the Spokes. Post 2. Вяжем узоры спицами. Пост 2.](https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2) | 24.793 SBD |\n| [@scaredycatguide](https://steemit.com/@scaredycatguide) | [Real Talk - Vol 9. - Welcome To Dogmerica](https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica) | 24.207 SBD |\n| [@amy-goodrich](https://steemit.com/@amy-goodrich) | [Pineapple Mojito Green Smoothie](https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie) | 24.126 SBD |\n| [@scott.stevens](https://steemit.com/@scott.stevens) | [Awareness of Bitcoin is Now More Important Than Awareness of Geoengineering](https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering) | 24.875 SBD |\n| [@witchcraftblog](https://steemit.com/@witchcraftblog) | [My trip to Italy. Pisa.](https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa) | 24.265 SBD |\n| [@ibringawareness](https://steemit.com/@ibringawareness) | [\"Why I Got Stiffed\" Guy's Waiter Blog chapter 5](https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5) | 24.224 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new illustration - Batman vs Superman - Modern Impressionism by kimal73](https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73) | 23.617 SBD |\n| [@leylar](https://steemit.com/@leylar) | [Seeds are great travelers ~ Own work](https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work) | 23.166 SBD |\n| [@ocrdu](https://steemit.com/@ocrdu) | [The pods that go \"pop\"](https://steemit.com/photography/@ocrdu/the-pods-that-go-pop) | 23.530 SBD |\n| [@rusla](https://steemit.com/@rusla) | [Japan. Part8.](https://steemit.com/travel/@rusla/japan-part8) | 23.209 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [Puppy Charcoal Original Pencil Drawing](https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing) | 23.879 SBD |\n| [@borishaifa](https://steemit.com/@borishaifa) | [To Write Or Not To Wirte? Писать или не писать?](https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat) | 23.730 SBD |\n| [@eveningstar92](https://steemit.com/@eveningstar92) | [Shit Happens, Move On-NSFW- Evening Star Art](https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art) | 23.092 SBD |\n| [@elewarne](https://steemit.com/@elewarne) | [Mixed Media](https://steemit.com/mixedmedia/@elewarne/mixed-media) | 23.059 SBD |\n| [@shredlord](https://steemit.com/@shredlord) | [Sunrise](https://steemit.com/art/@shredlord/sunrise) | 23.318 SBD |\n| [@sherlockcupid](https://steemit.com/@sherlockcupid) | [Let's Talk: Fears (Part One)](https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one) | 23.720 SBD |\n| [@annesaya](https://steemit.com/@annesaya) | [Our Guiding Star, a poem (A tribute to writers)](https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers) | 23.384 SBD |\n| [@fitmama](https://steemit.com/@fitmama) | [Why Do I Bother....](https://steemit.com/life/@fitmama/why-do-i-bother) | 23.451 SBD |\n| [@ezzy](https://steemit.com/@ezzy) | [The Bionic Experiment - Part 1 (My Original Short Stories)](https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories) | 23.480 SBD |\n| [@kingarbinv](https://steemit.com/@kingarbinv) | [Adventures in Nemaland - Part 8 (Video) + My best Pokemon catch so far.](https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far) | 23.292 SBD |\n| [@soulsistashakti](https://steemit.com/@soulsistashakti) | [How to Detect and Deflect Gaslighting from a Narcissist](https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist) | 22.018 SBD |\n| [@puffin](https://steemit.com/@puffin) | [Tragical Impoverishment - Society's Dirt (Original Poem)](https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem) | 22.621 SBD |\n| [@cehuneke](https://steemit.com/@cehuneke) | [The Sugar Scandal: Corrupted Science in the Debate of Fat vs. Sugar and Coronary Heart Disease](https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease) | 22.821 SBD |\n| [@tanata](https://steemit.com/@tanata) | [Little Black Dress involving](https://steemit.com/fashion/@tanata/little-black-dress-involving) | 22.237 SBD |\n| [@steemwriter](https://steemit.com/@steemwriter) | [YouTube Demonetization: A Step Towards Censorship?](https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship) | 22.297 SBD |\n| [@michelle.gent](https://steemit.com/@michelle.gent) | [Dusty - one of my characters](https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters) | 22.659 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [A Gift-Original Rose Drawing](https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing) | 22.249 SBD |\n| [@runridefly](https://steemit.com/@runridefly) | [Minnow's Life - @runridefly original cartoon \"minnowsunite Whale sighting\" minnows and a whale](https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale) | 22.836 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [[SHORT STORY] The Cult of Personality - Part One](https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one) | 22.552 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Look at the Flower Chicory: a Useful and Beautiful Flower ... my Favorite Photos of Chicory](https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory) | 22.795 SBD |\n| [@victoriart](https://steemit.com/@victoriart) | [Hazelnut Mood](https://steemit.com/art/@victoriart/hazelnut-mood) | 22.443 SBD |\n| [@heroic15397](https://steemit.com/@heroic15397) | [Amazing Birds in the Greater Montreal area](https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area) | 22.987 SBD |\n| [@smartercars](https://steemit.com/@smartercars) | [Reviewing the Volkswagen Touareg ~ Smarter Car Reviews](https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews) | 22.975 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [Blues Jam & Techniques [9-14-2016]](https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016) | 22.415 SBD |\n| [@matthew.raymer](https://steemit.com/@matthew.raymer) | [Life Stories](https://steemit.com/psychology/@matthew.raymer/life-stories) | 22.733 SBD |\n| [@positivesteem](https://steemit.com/@positivesteem) | [Common Sense Versus Degrees: The Man Who Has One Hundred Degrees](https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees) | 22.941 SBD |\n| [@d3nv3r](https://steemit.com/@d3nv3r) | [Cloud Mining - The Struggle is Real](https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real) | 22.266 SBD |\n| [@adubi](https://steemit.com/@adubi) | [Healing Food Plan: The Ultimate Cheat Sheet](https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet) | 22.947 SBD |\n| [@alitas](https://steemit.com/@alitas) | [(spanish) Cazuela de Calamar con Papas Rejilla](https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla) | 22.240 SBD |\n| [@mazi](https://steemit.com/@mazi) | [I Can See Clearly Now .... Platanus occidentalis](https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis) | 22.784 SBD |\n| [@mikemacintire](https://steemit.com/@mikemacintire) | [A Red Like No Other - My work](https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work) | 22.289 SBD |\n| [@altzero](https://steemit.com/@altzero) | [Imágenes de una vida (2)](https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2) | 21.555 SBD |\n| [@birdie](https://steemit.com/@birdie) | [Clouds That Demand Attention (Original Photos)](https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos) | 21.397 SBD |\n| [@michaelstobiersk](https://steemit.com/@michaelstobiersk) | [An Original Painting by Michael Stobierski](https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski) | 21.367 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Meditation Experience Can Be Really Scary](https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary) | 21.583 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [The Price Is Right Theme Music Breakdown](https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown) | 21.937 SBD |\n| [@karisa](https://steemit.com/@karisa) | [Very tasty and delicious curd cookies specially for Steemit . Part 4](https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4) | 21.940 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Borovoye (Burabai) - Pearl of Kazakhstan: The Incredible Journey (Story of my Husband)](https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband) | 20.616 SBD |\n| [@burnin](https://steemit.com/@burnin) | [Exploring the Off-Limits Areas of the Largest Cruise Ship In the World - Part 2](https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2) | 20.298 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Eyes Of Wisdom](https://steemit.com/art/@reddust/eyes-of-wisdom) | 20.051 SBD |\n| [@levycore](https://steemit.com/@levycore) | [Hot Chocolate Art - Trying Draw Faces](https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces) | 20.233 SBD |\n| [@awesomenyl](https://steemit.com/@awesomenyl) | [Sunflower Paper Tutorial](https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial) | 20.040 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [The epic and awesome guide to writing articles like a true artist that people want to read and share! [Edited for Steemit today]](https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today) | 20.192 SBD |\n| [@naquoya](https://steemit.com/@naquoya) | [[ORIGINAL FICTION] Bad Trip part two: The Gamemaster](https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster) | 20.041 SBD |\n| [@moon32walker](https://steemit.com/@moon32walker) | [Top 10 Game Development Studios](https://steemit.com/gaming/@moon32walker/top-10-game-development-studios) | 20.468 SBD |\n| [@gustavopasquini](https://steemit.com/@gustavopasquini) | [Polenta with Ragu Meat Dry](https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry) | 20.436 SBD |\n| [@benadapt](https://steemit.com/@benadapt) | [Capturing the Milky Way — A Photographer’s Biggest Challenge](https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge) | 20.477 SBD |\n| [@altzero](https://steemit.com/@altzero) | [¿Que es la nueva economia?](https://steemit.com/spanish/@altzero/que-es-la-nueva-economia) | 20.037 SBD |\n| [@por500bolos](https://steemit.com/@por500bolos) | [Uncovering The Most Transcendental & Biggest Secret In The Human Life. ¿Skeptical? I will challenge you to prove otherwise!!](https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise) | 20.894 SBD |\n| [@zonpower](https://steemit.com/@zonpower) | [This is a place (An original Poem)](https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem) | 20.869 SBD |\n| [@katharsisdrill](https://steemit.com/@katharsisdrill) | [The rune-stones of Jelling, and a new realisation.](https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation) | 19.761 SBD |\n| [@glezeddy](https://steemit.com/@glezeddy) | [MEZCLA DE TEQUILA PARA DAR EL \"GRITO\" (MÉXICO)](https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico) | 15.682 SBD |\n| [@onetree](https://steemit.com/@onetree) | [South African Slang - Enter Those Who Dare!](https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare) | 33.017 SBD |\n| [@verbal-d](https://steemit.com/@verbal-d) | [Melodious Music Memoirs # 2: Impact](https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact) | 30.372 SBD |\n| [@wanderingagorist](https://steemit.com/@wanderingagorist) | [Foraging Wild Rose Hips for Tea and Eating](https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating) | 29.228 SBD |\n| [@knablinz](https://steemit.com/@knablinz) | [Hand-Made Collage Art By Knablinz ( Donuts & Coffee )](https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee) | 35.939 SBD |\n\n---------------------------\n
Note: All author rewards from this post will be used to fund Project Curie.
Join us in #curie on Steemit.chat and follow us @curie!
", + "blacklists": [], + "body": "![b99cea99b79d334be4815a56a64ff4f1.png](https://www.steemimg.com/images/2016/09/14/b99cea99b79d334be4815a56a64ff4f1.png)\n\n---\n\nI want to follow up on @roelandp announcement post about the steemfest.com at November 11/12/13.\n\nSome of u have noticed i'm assisting him on the preparation for the Steemfest Event in November.\nI did meet @roelandp in Amsterdam last week and was directly impressed by his passion and energy.\nSo i decided to FULL support him towards the Nov11.\n\n\n### All gotten SBD rewards will contributed towards @steemfest project \n\nSo u will have a better possibility to get a preview on how the posters will look later on \"LIVE\".\nHere we go, i was trying to make a nice small mockup collection to this cause.\n\nENJOY\n[![3a7db045b911ea8785a1e9c37c7e75a7.jpg](https://www.steemimg.com/images/2016/09/14/3a7db045b911ea8785a1e9c37c7e75a7.jpg)](https://www.steemimg.com/image/1SL5m)\n\n[![9a8268f34903dbcf5fbe06559ce7bfc6.png](https://www.steemimg.com/images/2016/09/14/9a8268f34903dbcf5fbe06559ce7bfc6.png)](https://www.steemimg.com/image/1V8e6)\n[![8f8de740d802a0bf228bd833657b1f26.jpg](https://www.steemimg.com/images/2016/09/14/8f8de740d802a0bf228bd833657b1f26.jpg)](https://www.steemimg.com/image/1SnTu)\n[![a317ccbeec3112a5d60f6f2afdf8255a.jpg](https://www.steemimg.com/images/2016/09/14/a317ccbeec3112a5d60f6f2afdf8255a.jpg)](https://www.steemimg.com/image/1SPji)\n[![bd3b5b4c18cda4d063cabc03443cb6a8.jpg](https://www.steemimg.com/images/2016/09/14/bd3b5b4c18cda4d063cabc03443cb6a8.jpg)](https://www.steemimg.com/image/1SCWB)\n[![4d16cb792150dbd9c7cca2e9eea45f9d.jpg](https://www.steemimg.com/images/2016/09/14/4d16cb792150dbd9c7cca2e9eea45f9d.jpg)](https://www.steemimg.com/image/1S62K)\n[![25943765543ef057543db7f2d5b65e28.jpg](https://www.steemimg.com/images/2016/09/14/25943765543ef057543db7f2d5b65e28.jpg)](https://www.steemimg.com/image/1SwCI)\n[![a1d1fc9af366abae551a9b443ac0441f.jpg](https://www.steemimg.com/images/2016/09/14/a1d1fc9af366abae551a9b443ac0441f.jpg)](https://www.steemimg.com/image/1Sq3h)", + "category": "steemfest", + "children": 17, + "created": "2016-09-14T14:02:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "curie", - "minnows", - "hidden-gems", - "steemit", - "project-curie" - ], - "users": [ - "nextgencrypto", - "curie" - ], "image": [ - "https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg" + "https://www.steemimg.com/images/2016/09/14/b99cea99b79d334be4815a56a64ff4f1.png", + "https://www.steemimg.com/images/2016/09/14/3a7db045b911ea8785a1e9c37c7e75a7.jpg", + "https://www.steemimg.com/images/2016/09/14/9a8268f34903dbcf5fbe06559ce7bfc6.png", + "https://www.steemimg.com/images/2016/09/14/8f8de740d802a0bf228bd833657b1f26.jpg", + "https://www.steemimg.com/images/2016/09/14/a317ccbeec3112a5d60f6f2afdf8255a.jpg", + "https://www.steemimg.com/images/2016/09/14/bd3b5b4c18cda4d063cabc03443cb6a8.jpg", + "https://www.steemimg.com/images/2016/09/14/4d16cb792150dbd9c7cca2e9eea45f9d.jpg", + "https://www.steemimg.com/images/2016/09/14/25943765543ef057543db7f2d5b65e28.jpg", + "https://www.steemimg.com/images/2016/09/14/a1d1fc9af366abae551a9b443ac0441f.jpg" ], "links": [ - "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", - "https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement", - "https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", - "https://steemit.com/@faddat", - "https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed", - "https://steemit.com/@rampant", - "https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool", - "https://steemit.com/@shenanigator", - "https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do", - "https://steemit.com/@penguinpablo", - "https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf", - "https://steemit.com/@nathanjtaylor", - "https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry", - "https://steemit.com/@lily-da-vine", - "https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco", - "https://steemit.com/@budgetbucketlist", - "https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes", - "https://steemit.com/@benjiberigan", - "https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations", - "https://steemit.com/@ausbitbank", - "https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos", - "https://steemit.com/@emily-cook", - "https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work", - "https://steemit.com/@team-leibniz", - "https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00", - "https://steemit.com/@ionescur", - "https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land", - "https://steemit.com/@kimal73", - "https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work", - "https://steemit.com/@juliac", - "https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think", - "https://steemit.com/@luzcypher", - "https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals", - "https://steemit.com/@akareyon", - "https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing", - "https://steemit.com/@curving", - "https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation", - "https://steemit.com/@aleksandraz", - "https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology", - "https://steemit.com/@skapaneas", - "https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more", - "https://steemit.com/@gargon", - "https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", - "https://steemit.com/@iamwne", - "https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass", - "https://steemit.com/@stormblaze", - "https://steemit.com/technology/@stormblaze/where-do-deleted-files-go", - "https://steemit.com/@yanarnst", - "https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts", - "https://steemit.com/@senseye", - "https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor", - "https://steemit.com/@crasch", - "https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future", - "https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners", - "https://steemit.com/@cristi", - "https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months", - "https://steemit.com/@stranger27", - "https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature", - "https://steemit.com/@nekromarinist", - "https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today", - "https://steemit.com/@richman", - "https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story", - "https://steemit.com/@maceytomlin", - "https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony", - "https://steemit.com/@nili", - "https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol", - "https://steemit.com/@optimistic-crone", - "https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe", - "https://steemit.com/@anarchyhasnogods", - "https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one", - "https://steemit.com/@yostopia", - "https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick", - "https://steemit.com/@reneenouveau", - "https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015", - "https://steemit.com/@king3071", - "https://steemit.com/travel/@king3071/my-dream-destination-switzerland", - "https://steemit.com/@kolin.evans", - "https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines", - "https://steemit.com/@fenglosophy", - "https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think", - "https://steemit.com/@mandibil", - "https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil", - "https://steemit.com/@therajmahal", - "https://steemit.com/science/@therajmahal/making-the-impossible-possible", - "https://steemit.com/@carlitashaw", - "https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions", - "https://steemit.com/@renzoarg", - "https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics", - "https://steemit.com/@rachelsvparry", - "https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time", - "https://steemit.com/@royalmacro", - "https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art", - "https://steemit.com/@stephmckenzie", - "https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone", - "https://steemit.com/@alwayzgame", - "https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life", - "https://steemit.com/@nonlinearone", - "https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing", - "https://steemit.com/@kafkanarchy84", - "https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii", - "https://steemit.com/@feline1991", - "https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2", - "https://steemit.com/@geke", - "https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge", - "https://steemit.com/@lscottphotos", - "https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos", - "https://steemit.com/@pinkisland", - "https://steemit.com/writing/@pinkisland/my-philosophy-of-education", - "https://steemit.com/@jgcastrillo19", - "https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco", - "https://steemit.com/@luisucv34", - "https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition", - "https://steemit.com/@beowulfoflegend", - "https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty", - "https://steemit.com/@mariandavp", - "https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp", - "https://steemit.com/@nasimbabu", - "https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases", - "https://steemit.com/@royaltiffany", - "https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update", - "https://steemit.com/@travelista", - "https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo", - "https://steemit.com/@jpiper20", - "https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4", - "https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism", - "https://steemit.com/@krystle", - "https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin", - "https://steemit.com/@cryptoiskey", - "https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids", - "https://steemit.com/@getonthetrain", - "https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods", - "https://steemit.com/@ansharphoto", - "https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome", - "https://steemit.com/@aboundlessworld", - "https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast", - "https://steemit.com/@thornybastard", - "https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest", - "https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5", - "https://steemit.com/@dumar022", - "https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this", - "https://steemit.com/@lapilipinas", - "https://steemit.com/science/@lapilipinas/light-from-distant-stars", - "https://steemit.com/@williambanks", - "https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace", - "https://steemit.com/@driv3n", - "https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2", - "https://steemit.com/@timbot606", - "https://steemit.com/life/@timbot606/growing-up-in-appalachia", - "https://steemit.com/@themagus", - "https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2", - "https://steemit.com/@echoesinthemind", - "https://steemit.com/life/@echoesinthemind/hanging-upside-down", - "https://steemit.com/@ysa", - "https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado", - "https://steemit.com/@aksinya", - "https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video", - "https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro", - "https://steemit.com/@successfully00", - "https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1", - "https://steemit.com/@linzo", - "https://steemit.com/poem/@linzo/a-life-fantasy-original-poem", - "https://steemit.com/@hilarski", - "https://steemit.com/panama/@hilarski/panama-critters", - "https://steemit.com/@sulev", - "https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2", - "https://steemit.com/@steemswede", - "https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale", - "https://steemit.com/@marius19", - "https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami", - "https://steemit.com/@poeticsnake", - "https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings", - "https://steemit.com/@kiddarko", - "https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video", - "https://steemit.com/@shieha", - "https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2", - "https://steemit.com/@ayim", - "https://steemit.com/life/@ayim/fixing-posture-part-4-neck", - "https://steemit.com/@hitmeasap", - "https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice", - "https://steemit.com/@peskov", - "https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author", - "https://steemit.com/@aldentan", - "https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts", - "https://steemit.com/@beginningtoend", - "https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy", - "https://steemit.com/@kaykunoichi", - "https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself", - "https://steemit.com/@booky", - "https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates", - "https://steemit.com/@doubledex", - "https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong", - "https://steemit.com/@ekaterina4ka", - "https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2", - "https://steemit.com/@scaredycatguide", - "https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica", - "https://steemit.com/@amy-goodrich", - "https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie", - "https://steemit.com/@scott.stevens", - "https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering", - "https://steemit.com/@witchcraftblog", - "https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa", - "https://steemit.com/@ibringawareness", - "https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5", - "https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73", - "https://steemit.com/@leylar", - "https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work", - "https://steemit.com/@ocrdu", - "https://steemit.com/photography/@ocrdu/the-pods-that-go-pop", - "https://steemit.com/@rusla", - "https://steemit.com/travel/@rusla/japan-part8", - "https://steemit.com/@edgarsart", - "https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing", - "https://steemit.com/@borishaifa", - "https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat", - "https://steemit.com/@eveningstar92", - "https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art", - "https://steemit.com/@elewarne", - "https://steemit.com/mixedmedia/@elewarne/mixed-media", - "https://steemit.com/@shredlord", - "https://steemit.com/art/@shredlord/sunrise", - "https://steemit.com/@sherlockcupid", - "https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one", - "https://steemit.com/@annesaya", - "https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers", - "https://steemit.com/@fitmama", - "https://steemit.com/life/@fitmama/why-do-i-bother", - "https://steemit.com/@ezzy", - "https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories", - "https://steemit.com/@kingarbinv", - "https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far", - "https://steemit.com/@soulsistashakti", - "https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist", - "https://steemit.com/@puffin", - "https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem", - "https://steemit.com/@cehuneke", - "https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease", - "https://steemit.com/@tanata", - "https://steemit.com/fashion/@tanata/little-black-dress-involving", - "https://steemit.com/@steemwriter", - "https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship", - "https://steemit.com/@michelle.gent", - "https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters", - "https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing", - "https://steemit.com/@runridefly", - "https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale", - "https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one", - "https://steemit.com/@lyubovbar", - "https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory", - "https://steemit.com/@victoriart", - "https://steemit.com/art/@victoriart/hazelnut-mood", - "https://steemit.com/@heroic15397", - "https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area", - "https://steemit.com/@smartercars", - "https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews", - "https://steemit.com/@rubenalexander", - "https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016", - "https://steemit.com/@matthew.raymer", - "https://steemit.com/psychology/@matthew.raymer/life-stories", - "https://steemit.com/@positivesteem", - "https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees", - "https://steemit.com/@d3nv3r", - "https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real", - "https://steemit.com/@adubi", - "https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet", - "https://steemit.com/@alitas", - "https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla", - "https://steemit.com/@mazi", - "https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis", - "https://steemit.com/@mikemacintire", - "https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work", - "https://steemit.com/@altzero", - "https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2", - "https://steemit.com/@birdie", - "https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos", - "https://steemit.com/@michaelstobiersk", - "https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski", - "https://steemit.com/@reddust", - "https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary", - "https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown", - "https://steemit.com/@karisa", - "https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4", - "https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband", - "https://steemit.com/@burnin", - "https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2", - "https://steemit.com/art/@reddust/eyes-of-wisdom", - "https://steemit.com/@levycore", - "https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces", - "https://steemit.com/@awesomenyl", - "https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial", - "https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today", - "https://steemit.com/@naquoya", - "https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster", - "https://steemit.com/@moon32walker", - "https://steemit.com/gaming/@moon32walker/top-10-game-development-studios", - "https://steemit.com/@gustavopasquini", - "https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry", - "https://steemit.com/@benadapt", - "https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge", - "https://steemit.com/spanish/@altzero/que-es-la-nueva-economia", - "https://steemit.com/@por500bolos", - "https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise", - "https://steemit.com/@zonpower", - "https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem", - "https://steemit.com/@katharsisdrill", - "https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation", - "https://steemit.com/@glezeddy", - "https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico", - "https://steemit.com/@onetree", - "https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare", - "https://steemit.com/@verbal-d", - "https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact", - "https://steemit.com/@wanderingagorist", - "https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating", - "https://steemit.com/@knablinz", - "https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee" + "https://www.steemimg.com/image/1SL5m", + "https://www.steemimg.com/image/1V8e6", + "https://www.steemimg.com/image/1SnTu", + "https://www.steemimg.com/image/1SPji", + "https://www.steemimg.com/image/1SCWB", + "https://www.steemimg.com/image/1S62K", + "https://www.steemimg.com/image/1SwCI", + "https://www.steemimg.com/image/1Sq3h" + ], + "tags": [ + "steemfest", + "design", + "poster", + "amsterdam" + ], + "users": [ + "roelandp", + "steemfest" ] }, - "created": "2016-09-15T17:53:48", - "updated": "2016-09-15T17:53:48", - "depth": 0, - "children": 10, - "net_rshares": 61028272797290, - "is_paidout": false, - "payout_at": "2016-09-16T18:14:08", - "payout": 218.554, - "pending_payout_value": "218.554 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 169985783269298, + "payout": 1618.329, + "payout_at": "2016-09-21T14:02:39", + "pending_payout_value": "1618.329 HBD", + "percent_hbd": 10000, + "permlink": "steemfest-follow-up-poster-designs-sbd-rewards-will-donated-to-the-project", + "post_id": 1243377, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 386 + }, + "title": "[Steemfest] Follow up - Poster designs! SBD rewards will donated to the project!", + "updated": "2016-09-14T14:02:39", + "url": "/steemfest/@cass/steemfest-follow-up-poster-designs-sbd-rewards-will-donated-to-the-project" + }, + { "active_votes": [ { - "voter": "val-a", - "rshares": "30948708908726" + "rshares": "30948708908726", + "voter": "val-a" }, { - "voter": "val-b", - "rshares": "15292900000000" + "rshares": "15292900000000", + "voter": "val-b" }, { - "voter": "joseph", - "rshares": "1534352192855" + "rshares": "1534352192855", + "voter": "joseph" }, { - "voter": "masteryoda", - "rshares": "652034182902" + "rshares": "652034182902", + "voter": "masteryoda" }, { - "voter": "idol", - "rshares": "8927024295" + "rshares": "8927024295", + "voter": "idol" }, { - "voter": "donkeypong", - "rshares": "2637269453488" + "rshares": "2637269453488", + "voter": "donkeypong" }, { - "voter": "steemrollin", - "rshares": "816386307308" + "rshares": "816386307308", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "4941856440" + "rshares": "4941856440", + "voter": "sakr" }, { - "voter": "chris4210", - "rshares": "140357414085" + "rshares": "140357414085", + "voter": "chris4210" }, { - "voter": "jocelyn", - "rshares": "1536548017" + "rshares": "1536548017", + "voter": "jocelyn" }, { - "voter": "acidsun", - "rshares": "83530339170" + "rshares": "83530339170", + "voter": "acidsun" }, { - "voter": "gavvet", - "rshares": "1196485708874" + "rshares": "1196485708874", + "voter": "gavvet" }, { - "voter": "eeks", - "rshares": "59931939963" + "rshares": "59931939963", + "voter": "eeks" }, { - "voter": "fernando-sanz", - "rshares": "6122594947" + "rshares": "6122594947", + "voter": "fernando-sanz" }, { - "voter": "nanzo-scoop", - "rshares": "584270995256" + "rshares": "584270995256", + "voter": "nanzo-scoop" }, { - "voter": "mummyimperfect", - "rshares": "177415501233" + "rshares": "177415501233", + "voter": "mummyimperfect" }, { - "voter": "asch", - "rshares": "106634401121" + "rshares": "106634401121", + "voter": "asch" }, { - "voter": "kevinwong", - "rshares": "603741881611" + "rshares": "603741881611", + "voter": "kevinwong" }, { - "voter": "murh", - "rshares": "1061259321" + "rshares": "1061259321", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "3187850436" + "rshares": "3187850436", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2003304335" + "rshares": "2003304335", + "voter": "error" }, { - "voter": "cyber", - "rshares": "962089879337" + "rshares": "962089879337", + "voter": "cyber" }, { - "voter": "ak2020", - "rshares": "50884297723" + "rshares": "50884297723", + "voter": "ak2020" }, { - "voter": "justtryme90", - "rshares": "61300613738" + "rshares": "61300613738", + "voter": "justtryme90" }, { - "voter": "applecrisp", - "rshares": "410517349" + "rshares": "410517349", + "voter": "applecrisp" }, { - "voter": "altoz", - "rshares": "35693164103" + "rshares": "35693164103", + "voter": "altoz" }, { - "voter": "anwenbaumeister", - "rshares": "820589638514" + "rshares": "820589638514", + "voter": "anwenbaumeister" }, { - "voter": "mark-waser", - "rshares": "5950595929" + "rshares": "5950595929", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "118349796563" + "rshares": "118349796563", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "192325266448" + "rshares": "192325266448", + "voter": "kimziv" }, { - "voter": "emily-cook", - "rshares": "77083924707" + "rshares": "77083924707", + "voter": "emily-cook" }, { - "voter": "orly", - "rshares": "3283440404" + "rshares": "3283440404", + "voter": "orly" }, { - "voter": "steem1653", - "rshares": "2834957075" + "rshares": "2834957075", + "voter": "steem1653" }, { - "voter": "cynetyc", - "rshares": "124961861" + "rshares": "124961861", + "voter": "cynetyc" }, { - "voter": "thegoodguy", - "rshares": "5357326058" + "rshares": "5357326058", + "voter": "thegoodguy" }, { - "voter": "karen13", - "rshares": "4209522316" + "rshares": "4209522316", + "voter": "karen13" }, { - "voter": "nabilov", - "rshares": "251366150295" + "rshares": "251366150295", + "voter": "nabilov" }, { - "voter": "noodhoog", - "rshares": "8401059269" + "rshares": "8401059269", + "voter": "noodhoog" }, { - "voter": "knozaki2015", - "rshares": "455246290726" + "rshares": "455246290726", + "voter": "knozaki2015" }, { - "voter": "lichtblick", - "rshares": "7166494256" + "rshares": "7166494256", + "voter": "lichtblick" }, { - "voter": "creemej", - "rshares": "33739090409" + "rshares": "33739090409", + "voter": "creemej" }, { - "voter": "btcbtcbtc20155", - "rshares": "5726411049" + "rshares": "5726411049", + "voter": "btcbtcbtc20155" }, { - "voter": "blueorgy", - "rshares": "163324531946" + "rshares": "163324531946", + "voter": "blueorgy" }, { - "voter": "poseidon", - "rshares": "4195248338" + "rshares": "4195248338", + "voter": "poseidon" }, { - "voter": "simon.braki.love", - "rshares": "3435918746" + "rshares": "3435918746", + "voter": "simon.braki.love" }, { - "voter": "liberosist", - "rshares": "268137172703" + "rshares": "268137172703", + "voter": "liberosist" }, { - "voter": "birdie", - "rshares": "4128504280" + "rshares": "4128504280", + "voter": "birdie" }, { - "voter": "sharker", - "rshares": "5609578664" + "rshares": "5609578664", + "voter": "sharker" }, { - "voter": "jl777", - "rshares": "204618259005" + "rshares": "204618259005", + "voter": "jl777" }, { - "voter": "yarly", - "rshares": "1773036384" + "rshares": "1773036384", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "267188192" + "rshares": "267188192", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "267587944" + "rshares": "267587944", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "154579129" + "rshares": "154579129", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "155451862" + "rshares": "155451862", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "88607961" + "rshares": "88607961", + "voter": "yarly7" }, { - "voter": "moon32walker", - "rshares": "11031796651" + "rshares": "11031796651", + "voter": "moon32walker" }, { - "voter": "sergey44", - "rshares": "258619590" + "rshares": "258619590", + "voter": "sergey44" }, { - "voter": "proto", - "rshares": "17267341753" + "rshares": "17267341753", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "31599342155" + "rshares": "31599342155", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "428868451" + "rshares": "428868451", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "229507420" + "rshares": "229507420", + "voter": "yarly11" }, { - "voter": "yarly12", - "rshares": "80241480" + "rshares": "80241480", + "voter": "yarly12" }, { - "voter": "steemster1", - "rshares": "146224042" + "rshares": "146224042", + "voter": "steemster1" }, { - "voter": "mahekg", - "rshares": "5878023046" + "rshares": "5878023046", + "voter": "mahekg" }, { - "voter": "taker", - "rshares": "8734150854" + "rshares": "8734150854", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "6521104126" + "rshares": "6521104126", + "voter": "nekromarinist" }, { - "voter": "theprophet0", - "rshares": "10553169212" + "rshares": "10553169212", + "voter": "theprophet0" }, { - "voter": "sharon", - "rshares": "57873464" + "rshares": "57873464", + "voter": "sharon" }, { - "voter": "lillianjones", - "rshares": "58971492" + "rshares": "58971492", + "voter": "lillianjones" }, { - "voter": "laonie", - "rshares": "1117443990130" + "rshares": "1117443990130", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "4257390614" + "rshares": "4257390614", + "voter": "twinner" }, { - "voter": "timcliff", - "rshares": "4414425121" + "rshares": "4414425121", + "voter": "timcliff" }, { - "voter": "myfirst", - "rshares": "38640926181" + "rshares": "38640926181", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "233306274805" + "rshares": "233306274805", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "8723132526" + "rshares": "8723132526", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "1667759072" + "rshares": "1667759072", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "51539167746" + "rshares": "51539167746", + "voter": "midnightoil" }, { - "voter": "ullikume", - "rshares": "4190377366" + "rshares": "4190377366", + "voter": "ullikume" }, { - "voter": "xiaohui", - "rshares": "128906992414" + "rshares": "128906992414", + "voter": "xiaohui" }, { - "voter": "jphamer1", - "rshares": "21112616587" + "rshares": "21112616587", + "voter": "jphamer1" }, { - "voter": "elfkitchen", - "rshares": "6306539895" + "rshares": "6306539895", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "102434307703" + "rshares": "102434307703", + "voter": "joele" }, { - "voter": "randyclemens", - "rshares": "15549176040" + "rshares": "15549176040", + "voter": "randyclemens" }, { - "voter": "xiaokongcom", - "rshares": "4030108065" + "rshares": "4030108065", + "voter": "xiaokongcom" }, { - "voter": "msjennifer", - "rshares": "59437351" + "rshares": "59437351", + "voter": "msjennifer" }, { - "voter": "ciao", - "rshares": "54654502" + "rshares": "54654502", + "voter": "ciao" }, { - "voter": "steemo", - "rshares": "52985539" + "rshares": "52985539", + "voter": "steemo" }, { - "voter": "xianjun", - "rshares": "8123975227" + "rshares": "8123975227", + "voter": "xianjun" }, { - "voter": "steema", - "rshares": "52848854" + "rshares": "52848854", + "voter": "steema" }, { - "voter": "confucius", - "rshares": "69662169" + "rshares": "69662169", + "voter": "confucius" }, { - "voter": "borran", - "rshares": "11292536945" + "rshares": "11292536945", + "voter": "borran" }, { - "voter": "jarvis", - "rshares": "53661976" + "rshares": "53661976", + "voter": "jarvis" }, { - "voter": "microluck", - "rshares": "546765304" + "rshares": "546765304", + "voter": "microluck" }, { - "voter": "razberrijam", - "rshares": "75676352" + "rshares": "75676352", + "voter": "razberrijam" }, { - "voter": "fortuner", - "rshares": "53106127" + "rshares": "53106127", + "voter": "fortuner" }, { - "voter": "pompe72", - "rshares": "84942400" + "rshares": "84942400", + "voter": "pompe72" }, { - "voter": "lemouth", - "rshares": "8114632832" + "rshares": "8114632832", + "voter": "lemouth" }, { - "voter": "gvargas123", - "rshares": "10344891579" + "rshares": "10344891579", + "voter": "gvargas123" }, { - "voter": "johnbyrd", - "rshares": "51877132" + "rshares": "51877132", + "voter": "johnbyrd" }, { - "voter": "thomasaustin", - "rshares": "50682252" + "rshares": "50682252", + "voter": "thomasaustin" }, { - "voter": "thermor", - "rshares": "51859074" + "rshares": "51859074", + "voter": "thermor" }, { - "voter": "ficholl", - "rshares": "50691211" + "rshares": "50691211", + "voter": "ficholl" }, { - "voter": "widell", - "rshares": "51852278" + "rshares": "51852278", + "voter": "widell" }, { - "voter": "steevc", - "rshares": "404286448" + "rshares": "404286448", + "voter": "steevc" }, { - "voter": "movievertigo", - "rshares": "3635091595" + "rshares": "3635091595", + "voter": "movievertigo" }, { - "voter": "revelbrooks", - "rshares": "51481279" + "rshares": "51481279", + "voter": "revelbrooks" }, { - "voter": "cehuneke", - "rshares": "1573489537" + "rshares": "1573489537", + "voter": "cehuneke" }, { - "voter": "netaterra", - "rshares": "2982676167" + "rshares": "2982676167", + "voter": "netaterra" }, { - "voter": "andrewawerdna", - "rshares": "23137850346" + "rshares": "23137850346", + "voter": "andrewawerdna" }, { - "voter": "trev", - "rshares": "5831957227" + "rshares": "5831957227", + "voter": "trev" }, { - "voter": "craigwilliamz", - "rshares": "8773942171" + "rshares": "8773942171", + "voter": "craigwilliamz" }, { - "voter": "mandibil", - "rshares": "51505575275" + "rshares": "51505575275", + "voter": "mandibil" }, { - "voter": "daut44", - "rshares": "32462674824" + "rshares": "32462674824", + "voter": "daut44" }, { - "voter": "curpose", - "rshares": "50416427" + "rshares": "50416427", + "voter": "curpose" }, { - "voter": "curving", - "rshares": "3597236649" + "rshares": "3597236649", + "voter": "curving" }, { - "voter": "uri-bruck", - "rshares": "61596105" + "rshares": "61596105", + "voter": "uri-bruck" }, { - "voter": "shenanigator", - "rshares": "112983030208" + "rshares": "112983030208", + "voter": "shenanigator" }, { - "voter": "quinneaker", - "rshares": "10005063213" + "rshares": "10005063213", + "voter": "quinneaker" }, { - "voter": "einsteinpotsdam", - "rshares": "7626813355" + "rshares": "7626813355", + "voter": "einsteinpotsdam" }, { - "voter": "richardcrill", - "rshares": "4747321980" + "rshares": "4747321980", + "voter": "richardcrill" }, { - "voter": "jeremyfromwi", - "rshares": "2205784762" + "rshares": "2205784762", + "voter": "jeremyfromwi" }, { - "voter": "troich", - "rshares": "50588612" + "rshares": "50588612", + "voter": "troich" }, { - "voter": "davidjkelley", - "rshares": "1661534801" + "rshares": "1661534801", + "voter": "davidjkelley" }, { - "voter": "crion", - "rshares": "50593879" + "rshares": "50593879", + "voter": "crion" }, { - "voter": "greatness", - "rshares": "178419224" + "rshares": "178419224", + "voter": "greatness" }, { - "voter": "hitherise", - "rshares": "50271139" + "rshares": "50271139", + "voter": "hitherise" }, { - "voter": "wiss", - "rshares": "50262756" + "rshares": "50262756", + "voter": "wiss" }, { - "voter": "sponge-bob", - "rshares": "54249219602" + "rshares": "54249219602", + "voter": "sponge-bob" }, { - "voter": "digital-wisdom", - "rshares": "15571056039" + "rshares": "15571056039", + "voter": "digital-wisdom" }, { - "voter": "getonthetrain", - "rshares": "3365396535" + "rshares": "3365396535", + "voter": "getonthetrain" }, { - "voter": "ethical-ai", - "rshares": "3710959443" + "rshares": "3710959443", + "voter": "ethical-ai" }, { - "voter": "stroully", - "rshares": "51033798" + "rshares": "51033798", + "voter": "stroully" }, { - "voter": "jwaser", - "rshares": "6831361820" + "rshares": "6831361820", + "voter": "jwaser" }, { - "voter": "tfeldman", - "rshares": "468106735" + "rshares": "468106735", + "voter": "tfeldman" }, { - "voter": "thadm", - "rshares": "50712038" + "rshares": "50712038", + "voter": "thadm" }, { - "voter": "prof", - "rshares": "50710305" + "rshares": "50710305", + "voter": "prof" }, { - "voter": "ionescur", - "rshares": "1597514180" + "rshares": "1597514180", + "voter": "ionescur" }, { - "voter": "bane", - "rshares": "50065875" + "rshares": "50065875", + "voter": "bane" }, { - "voter": "vive", - "rshares": "50059754" + "rshares": "50059754", + "voter": "vive" }, { - "voter": "coad", - "rshares": "50054445" + "rshares": "50054445", + "voter": "coad" }, { - "voter": "bwaser", - "rshares": "2675506788" + "rshares": "2675506788", + "voter": "bwaser" }, { - "voter": "renzoarg", - "rshares": "7645490859" + "rshares": "7645490859", + "voter": "renzoarg" }, { - "voter": "sofa", - "rshares": "50840303" + "rshares": "50840303", + "voter": "sofa" }, { - "voter": "roadhog", - "rshares": "53990613" + "rshares": "53990613", + "voter": "roadhog" }, { - "voter": "doggnostic", - "rshares": "52794249" + "rshares": "52794249", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "52521499" + "rshares": "52521499", + "voter": "jenny-talls" }, { - "voter": "mariandavp", - "rshares": "8199670899" + "rshares": "8199670899", + "voter": "mariandavp" }, { - "voter": "brains", - "rshares": "55344422883" + "rshares": "55344422883", + "voter": "brains" }, { - "voter": "post-successful", - "rshares": "53415391" + "rshares": "53415391", + "voter": "post-successful" }, { - "voter": "burnin", - "rshares": "5866415576" + "rshares": "5866415576", + "voter": "burnin" }, { - "voter": "anomaly", - "rshares": "271439221" + "rshares": "271439221", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401297947" + "rshares": "2401297947", + "voter": "ellepdub" }, { - "voter": "michelle.gent", - "rshares": "4116636581" + "rshares": "4116636581", + "voter": "michelle.gent" }, { - "voter": "herpetologyguy", - "rshares": "12115638535" + "rshares": "12115638535", + "voter": "herpetologyguy" }, { - "voter": "morgan.waser", - "rshares": "4817004213" + "rshares": "4817004213", + "voter": "morgan.waser" }, { - "voter": "dragonice", - "rshares": "50228382" + "rshares": "50228382", + "voter": "dragonice" }, { - "voter": "aksinya", - "rshares": "1288421610" + "rshares": "1288421610", + "voter": "aksinya" }, { - "voter": "bapparabi", - "rshares": "1921231770" + "rshares": "1921231770", + "voter": "bapparabi" }, { - "voter": "opticalillusions", - "rshares": "50487909" + "rshares": "50487909", + "voter": "opticalillusions" }, { - "voter": "strong-ai", - "rshares": "3689852156" + "rshares": "3689852156", + "voter": "strong-ai" }, { - "voter": "grisha-danunaher", - "rshares": "505556200" + "rshares": "505556200", + "voter": "grisha-danunaher" }, { - "voter": "igtes", - "rshares": "71207873" + "rshares": "71207873", + "voter": "igtes" }, { - "voter": "curie", - "rshares": "50277354380" + "rshares": "50277354380", + "voter": "curie" }, { - "voter": "dikanevroman", - "rshares": "851767121" + "rshares": "851767121", + "voter": "dikanevroman" }, { - "voter": "buffett", - "rshares": "141679752" + "rshares": "141679752", + "voter": "buffett" }, { - "voter": "witchcraftblog", - "rshares": "453506109" + "rshares": "453506109", + "voter": "witchcraftblog" }, { - "voter": "photorealistic", - "rshares": "157799009" + "rshares": "157799009", + "voter": "photorealistic" }, { - "voter": "illusions", - "rshares": "160880639" + "rshares": "160880639", + "voter": "illusions" }, { - "voter": "dresden", - "rshares": "6920933761" + "rshares": "6920933761", + "voter": "dresden" }, { - "voter": "caseyneistat", - "rshares": "160845765" + "rshares": "160845765", + "voter": "caseyneistat" }, { - "voter": "ysa", - "rshares": "692395145" + "rshares": "692395145", + "voter": "ysa" }, { - "voter": "correct", - "rshares": "159984914" + "rshares": "159984914", + "voter": "correct" }, { - "voter": "capcom", - "rshares": "159973989" + "rshares": "159973989", + "voter": "capcom" }, { - "voter": "sledgehammer", - "rshares": "159963865" + "rshares": "159963865", + "voter": "sledgehammer" }, { - "voter": "haribo", - "rshares": "159950870" + "rshares": "159950870", + "voter": "haribo" }, { - "voter": "benetton", - "rshares": "159531007" + "rshares": "159531007", + "voter": "benetton" }, { - "voter": "stimmt", - "rshares": "156194471" + "rshares": "156194471", + "voter": "stimmt" }, { - "voter": "reef", - "rshares": "159143891" + "rshares": "159143891", + "voter": "reef" }, { - "voter": "cream", - "rshares": "158632601" + "rshares": "158632601", + "voter": "cream" }, { - "voter": "reddust", - "rshares": "891891710" + "rshares": "891891710", + "voter": "reddust" }, { - "voter": "aldentan", - "rshares": "336222066" + "rshares": "336222066", + "voter": "aldentan" }, { - "voter": "techslut", - "rshares": "191981449" + "rshares": "191981449", + "voter": "techslut" } ], + "author": "curie", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 182, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/curie/@curie/the-daily-curie-14th-sept-15th-sept-2016", - "blacklists": [] - }, - { - "post_id": 959506, - "author": "markrmorrisjr", - "permlink": "original-fiction-anarchist-s-almanac-episode-15", - "category": "story", - "title": "Original Fiction: Anarchist's Almanac, Episode 15", - "body": "## In this episode, Joshua Claiborne stands trial for violation of the First Law ##\n\n**“Whoa, whoa, whoa!” Phil screamed, “What the hell dude?”**\n\n*The Reaper crumpled to the floor, arms flailing as Joshua rode it to the ground. Finally, the hands found the catches at either side of the helmet and popped it off. A black, shaggy head of hair emerged.* \n\n***If you've missed episodes, [visit my blog](https://steemit.com/@markrmorrisjr) to catch up. Be sure to follow me for updates in your feed!***\n\n“Emil?” Stella said, “Meet Joshua. Are you okay?”\n\nEmil, the Reaper suit’s operator laughed, “Yeah, I’m fine, but that was awesome! Can you teach us that?”\n\n“Man! Now I have to rebuild this helmet,” Phil held up a small remote. “All I had to do was push this button,” he said, pressing it, as the suit powered down. “What did you do?”\n\n“The ‘nerve’ bundle that controls these things motor skills is on the very top of the skull, under a thin piece of sheet metal, puncture it, it collapses. You didn’t know that?” Joshua said. \n\n“Well, it appears we may need you more than you need us,” Stella said. “So, just say the word and we’ll get you where you need to be. Meanwhile, my team will be working on your son’s location.”\n\nJoshua dropped the letter opener and walked to the stairs, “Fine, whatever you need to collect from my meeting, get it. Now, who’s driving?” With that, he walked up the stairs, he had no more time to waste. \n\n**The Mapleton courthouse sat on a hill in the center of the town, overlooking the area around for miles.** \n\n*Joshua insisted that the team Stella had sent stop 5 miles out and allow him to ride in on the electric trike alone, while they observed the meeting from a distance.* \n\nHe carried the tiny remote in his shirt pocket, a gift from Phil. “That’s my only prototype, so don’t lose it,” he’d said. \n\n![enter image description here](https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg)\n\nFrom the end of Main Street, looking up toward the courthouse, Joshua counted at least six reapers. He wondered how far the signal from the remote would travel. \n\nHe thought about pressing it now, disarming his enemy, then walking in, but he’d still have to deal with the six drivers, if they managed to escape the suits. \n\nBesides, Stella seemed to think there was some secret they were going to give away, although Joshua couldn’t imagine it. \n\n*He checked his watch, ten minutes until his scheduled time and while he knew better than to be late, he had no intention of giving the Consensus one more second than he had to.* \n\nThe trike spun it’s tires on a patch of loose gravel as he started back up. He decided a quick approach was best. He charged up the hill, jumping the “Mayor’s” parking barrier and rolling up to the foot of the front stairs, he cranked the accelerator and the trike rose up on its back wheel, popping the two front wheels, over the bottom step. \n\nThe machine had more than enough power to climb the steps and Joshua skidded to a stop outside the courthouse door. He stopped and turned back toward the town, the six Reapers swarming toward him up the steps. He powered down, swung his leg up and over the bike and opened the door. \n\n**The Reapers followed him into the hall as he approached the court room.** \n\nThe Magistrate sat behind the judge’s bench and Joshua couldn’t help but smirk at the insult to the very concept of actual justice that this thing represented. \n\n“Joshua Claiborne, appearing as requested,” Joshua said, standing directly in front of the Magistrate. \n\n![enter image description here](https://s12.postimg.org/6h4lvyh7x/judge.jpg)\n\n> “Yes, Mr. Claiborne, have a seat,” A woman’s face, projected on the face shield of the Magistrate said.\n\n“I’d rather stand,” he said. \n\n> “Suit yourself, may we have the room, please?” she said, looking toward the reapers that had entered the back doors of the courtroom.\n\nThey left quietly. \n\n> “Mr. Claiborne, you’re charged with violation of the first law, in so\n> much as you have encouraged and joined in the activity of settling\n> outside of Consensus approved areas, acted outside of the legal\n> jurisdiction of the council and on more than one occasion, acted\n> against the best interest of Consensus, including attacking duly\n> authorized Magistrates in the course of their legally binding duties,\n> how do you plead?”\n\n**The woman looked at Joshua, peering over a pair of short, square spectacles, like some sort of outdated stereotype.** \n\n“Not guilty, by reason of illegitimacy of the currently established government and its ensigns. I am not, nor do I choose to become, subject to your law. I stand judged as innocent by natural law, insomuch as I have not caused harm to another human in aggression, damaged or stolen property, nor unnecessarily restricted the liberty of any other person. I recognize no other responsibility to my fellow man,” Joshua said calmly. \n\n> “Be that as it may, Mr. Claiborne, we are not here under the auspices of “natural law” but rather, under the Council mandated authority of the Consensus and its Magisterial Ministry, of which I am a part and I assure you, you are subject to,”\n\nThe woman intoned, her expression one of almost sheer boredom.\n\n> “Court finds the defendant guilty and remands the subject for immediate judicial murder.”\n\nThe magistrate raised its arm and brought it down on the bench with a solid thud, that echoed through the court. Joshua felt his heart sink as the Reapers reentered the court and moved up to surround him. \n\n## Look for the upvote button below. If you liked the post, upvote and share! If you're not on Steemit yet, why not? You get free money for signing up! ##", + "blacklists": [], + "body": "
https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg
\n\n## Introduction\n[Project Curie](https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors) is a community project run by several Steemit authors. Its mission is to help reward content creators who are posting great original content, yet who have not yet become established. In the short time since Curie began, our writers group has partnered with @nextgencrypto and other whale accounts to bring rewards to these deserving authors. *Writers, artists, chefs, photographers, videographers, and many others have been recognized by these rewards.*\n\nEach day, the members of our Project will publish this list of the posts that Project Curie has chosen to reward recently. We hope that this list will provide more positive exposure to the authors we have selected. Also, it is an effort for us to be more transparent about which posts are being rewarded. We hope that you will consider following not only this @curie account, but also many of the authors whose work is featured here each day. **Please consider adding your comments on these posts also!**\n\nProject Curie's daily curation lists will now be called \"The Daily Curie\". We hope you like the name! Future editions of The Daily Curie will [feature our new logo](https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement). For the latest on Project Curie, do check out our [Month #1 update](https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016). \n\n----------------------\n\n## Today's Brief Analysis\n\nToday's list polls all posts curated between 17:00 14/09 UTC and 17:00 15/09 UTC. Project Curie voted on a total of **103 posts** by 99 unique authors. **SBD 3,832** has been generated for authors thus far, at an average of SBD 37 per post. \n\n----------------------\n| Author | Post | Payout |\n| --------- | ---------- | --------- |\n| [@faddat](https://steemit.com/@faddat) | [[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!](https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed) | 616.681 SBD |\n| [@rampant](https://steemit.com/@rampant) | [Steemit Daily Drawing Tutorial - Gesture drawings (plus tool)](https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool) | 215.310 SBD |\n| [@shenanigator](https://steemit.com/@shenanigator) | [Doing the Right Thing Will Get You Fired. What Do You Do?](https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do) | 205.664 SBD |\n| [@penguinpablo](https://steemit.com/@penguinpablo) | [How to Carve an Apple Leaf](https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf) | 196.419 SBD |\n| [@nathanjtaylor](https://steemit.com/@nathanjtaylor) | [Fire And Grace Art Painting And Poetry](https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry) | 189.043 SBD |\n| [@lily-da-vine](https://steemit.com/@lily-da-vine) | [Going Bananas in Acapulco](https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco) | 158.416 SBD |\n| [@budgetbucketlist](https://steemit.com/@budgetbucketlist) | [A 1-week plunge into Mexico City's madness! Art adventures, Frida-seeking and unfiltered exhaust fumes...](https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes) | 151.033 SBD |\n| [@benjiberigan](https://steemit.com/@benjiberigan) | [Anarchist Architecture, part 5: The cruelty of architectural codes and regulations.](https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations) | 132.427 SBD |\n| [@ausbitbank](https://steemit.com/@ausbitbank) | [The time my town flooded, the fragility of the food supply and lessons learned (Original photos)](https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos) | 125.877 SBD |\n| [@emily-cook](https://steemit.com/@emily-cook) | [THE ISLE OF MAN FILM FESTIVAL 2016 -A week of parties, red carpets and a lot of hard work!](https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work) | 121.336 SBD |\n| [@team-leibniz](https://steemit.com/@team-leibniz) | [Week 1 NFL Daily Fantasy Football Results - How my Bayesian Inspired Lineups Fared (+$84.00)](https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00) | 119.473 SBD |\n| [@ionescur](https://steemit.com/@ionescur) | [Urban dreams of freedom: back to the countryside, back to the land](https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land) | 110.564 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [New traditionl painting - \"The Battle\" - Steps of work](https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work) | 105.622 SBD |\n| [@juliac](https://steemit.com/@juliac) | [One of The Best Portraits That I've Ever Created: Einstein. What Do You Think?](https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think) | 103.781 SBD |\n| [@luzcypher](https://steemit.com/@luzcypher) | [Cover Crops Can Grow Food Organically With No Fertilizers, No Pesticides, No Herbicides And No Chemicals](https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals) | 100.117 SBD |\n| [@akareyon](https://steemit.com/@akareyon) | [I find your lack of argument disturbing](https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing) | 98.525 SBD |\n| [@curving](https://steemit.com/@curving) | [The Ephemeral Cairn Gardens Of the Austin Greenbelt - A Photo Journal and Meditation](https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation) | 96.834 SBD |\n| [@aleksandraz](https://steemit.com/@aleksandraz) | [Incredible Science - Brainbow Technology](https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology) | 89.777 SBD |\n| [@skapaneas](https://steemit.com/@skapaneas) | [IBD Crohn desease and Ulceritive collitis. what are they, self diagnose, self treat and more.](https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more) | 85.958 SBD |\n| [@gargon](https://steemit.com/@gargon) | [Proyecto Cervantes (13 - 15 Sept 2016): Compensaci\u00f3n y reconocimiento para escritores de habla hispana / Bringing rewards and recognition to spanish writers (Vol. III)](https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and) | 83.725 SBD |\n| [@iamwne](https://steemit.com/@iamwne) | [Blade Runner Inspired Digital Set - The Dark Market - Beauty Pass](https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass) | 83.869 SBD |\n| [@stormblaze](https://steemit.com/@stormblaze) | [Where Do Deleted Files Go?](https://steemit.com/technology/@stormblaze/where-do-deleted-files-go) | 81.221 SBD |\n| [@yanarnst](https://steemit.com/@yanarnst) | [Steemit Food Art lesson 2 ''Salad with chicken liver and pine nuts''](https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts) | 78.034 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Myths in the Sky: Ursa Major and Ursa Minor](https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor) | 72.174 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Brain preservation: an ambulance to the future](https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future) | 72.082 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Vivisecting the Stargazing Tribe: Visual Observers and Screen Scanners](https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners) | 71.421 SBD |\n| [@cristi](https://steemit.com/@cristi) | [Radical Metabolism - No Food and Water for 8 Months](https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months) | 69.559 SBD |\n| [@stranger27](https://steemit.com/@stranger27) | [Fibonacci sequence and Golden Ratio: magic numbers of Nature](https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature) | 66.258 SBD |\n| [@nekromarinist](https://steemit.com/@nekromarinist) | [Let's talk a little bit about phobias today!](https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today) | 61.776 SBD |\n| [@richman](https://steemit.com/@richman) | [If you want to lose a friend, lend him money (My life story)](https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story) | 58.193 SBD |\n| [@maceytomlin](https://steemit.com/@maceytomlin) | [What Exactly is Ayahuasca? How Should You Prepare for a Ceremony?](https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony) | 58.197 SBD |\n| [@nili](https://steemit.com/@nili) | [Smart Life (part 2) - Resolving the Godel's paradox on the blockchain as a solution for a decentralized trusted protocol](https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol) | 55.575 SBD |\n| [@optimistic-crone](https://steemit.com/@optimistic-crone) | [PROBIOTICS FOR LIFE!!! SUPER SIMPLE FERMENTED VEGETABLE 'KIM CHEE' RECIPE](https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe) | 54.909 SBD |\n| [@anarchyhasnogods](https://steemit.com/@anarchyhasnogods) | [Learning one dimensional motion using graphs- physics for beginners - part one](https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one) | 53.295 SBD |\n| [@yostopia](https://steemit.com/@yostopia) | [Beginner's mind, creative mind... the making of a Vimeo Staff Pick.](https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick) | 51.222 SBD |\n| [@reneenouveau](https://steemit.com/@reneenouveau) | [My response to Paul Steyn's myopic article \"Mr. Environmentalist\" shockingly published by National Geographic in Sept 2015.](https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015) | 49.433 SBD |\n| [@king3071](https://steemit.com/@king3071) | [MY DREAM DESTINATION - SWITZERLAND](https://steemit.com/travel/@king3071/my-dream-destination-switzerland) | 49.816 SBD |\n| [@kolin.evans](https://steemit.com/@kolin.evans) | [Something a little more substantial for you to think about - the 'IS' / 'WAS' CPT (Continuous Probable Time-lines.)](https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines) | 47.288 SBD |\n| [@fenglosophy](https://steemit.com/@fenglosophy) | [Does the language you speak influence how you think?](https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think) | 44.070 SBD |\n| [@mandibil](https://steemit.com/@mandibil) | [SAVAGE [Gorm Just, Denmark 2009] - movie review by Mandibil](https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil) | 44.621 SBD |\n| [@therajmahal](https://steemit.com/@therajmahal) | [Making the Impossible... Possible](https://steemit.com/science/@therajmahal/making-the-impossible-possible) | 44.765 SBD |\n| [@carlitashaw](https://steemit.com/@carlitashaw) | [The World's Worst Oil Spills, Ramifications & Amazing Alternative Solutions.](https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions) | 44.986 SBD |\n| [@renzoarg](https://steemit.com/@renzoarg) | [Skip a pill - Antibiotics](https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics) | 43.918 SBD |\n| [@rachelsvparry](https://steemit.com/@rachelsvparry) | [Under the Sea (again, but better this time)](https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time) | 43.436 SBD |\n| [@royalmacro](https://steemit.com/@royalmacro) | [lonely tree [An Original Abstract Art]](https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art) | 42.826 SBD |\n| [@stephmckenzie](https://steemit.com/@stephmckenzie) | [The Power of Choice--A Magnificent Key to True Personal Freedom](https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone) | 42.441 SBD |\n| [@alwayzgame](https://steemit.com/@alwayzgame) | [10 simple steps to ruin your child's life](https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life) | 42.475 SBD |\n| [@nonlinearone](https://steemit.com/@nonlinearone) | [Can Hemingway Improve Your Writing?](https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing) | 42.669 SBD |\n| [@kafkanarchy84](https://steemit.com/@kafkanarchy84) | [\"Johnny B. Goode\" Guitar Lesson and Intro to Theory, Vol. II](https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii) | 41.326 SBD |\n| [@feline1991](https://steemit.com/@feline1991) | [A Steemit Original - A Lifetime of Seeking Happiness - Chapter 2 - Part 2](https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2) | 41.931 SBD |\n| [@geke](https://steemit.com/@geke) | [The Banker and the Bulova - an original poem (Steemit flash-writing challenge)](https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge) | 41.497 SBD |\n| [@lscottphotos](https://steemit.com/@lscottphotos) | [LSCOTTPHOTOS Welcome to my family :) Thank you steemers <3 (Original Photos)](https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos) | 40.201 SBD |\n| [@pinkisland](https://steemit.com/@pinkisland) | [My Philosophy of Education](https://steemit.com/writing/@pinkisland/my-philosophy-of-education) | 40.978 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cinco](https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco) | 39.708 SBD |\n| [@luisucv34](https://steemit.com/@luisucv34) | [Venezuela: The lack of opportunities (English edition)](https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition) | 39.783 SBD |\n| [@beowulfoflegend](https://steemit.com/@beowulfoflegend) | [Silvanus and Empire, an Original Novel (Chapter Twenty)](https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty) | 39.543 SBD |\n| [@mariandavp](https://steemit.com/@mariandavp) | [From zero to hero - abstract office art by @mariandavp](https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp) | 39.529 SBD |\n| [@nasimbabu](https://steemit.com/@nasimbabu) | [The technology that defends us from potentially deadly diseases](https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases) | 39.620 SBD |\n| [@royaltiffany](https://steemit.com/@royaltiffany) | [Steemit B'Day Movie Review Contest Update!](https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update) | 37.706 SBD |\n| [@travelista](https://steemit.com/@travelista) | [An Adventure in Isla Esp\u00edritu Santo!](https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo) | 37.218 SBD |\n| [@jpiper20](https://steemit.com/@jpiper20) | [We Meet At Night -- An Original Story (Part 4)](https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4) | 37.319 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new painting - \"Dexter\" - Modern Impressionism](https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism) | 36.937 SBD |\n| [@krystle](https://steemit.com/@krystle) | [Keltorin's Flora and Fauna of Note - Firikwea - Valcanne's Guide to Keltorin](https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin) | 36.972 SBD |\n| [@cryptoiskey](https://steemit.com/@cryptoiskey) | [Workout from home on the cheap! - 12th September #Ultimate workout companion for your kids!](https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids) | 36.115 SBD |\n| [@getonthetrain](https://steemit.com/@getonthetrain) | [Top 10 Grisly Medieval Torture Methods](https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods) | 34.093 SBD |\n| [@ansharphoto](https://steemit.com/@ansharphoto) | [Roman Forum in the Morning, Rome](https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome) | 33.328 SBD |\n| [@aboundlessworld](https://steemit.com/@aboundlessworld) | [Introducing The Steemit Stories Podcast!](https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast) | 33.728 SBD |\n| [@thornybastard](https://steemit.com/@thornybastard) | [Chapter 10: A Call from the Forest\u2014\u6765\u81ea\u68ee\u6797\u7684\u547c\u5524](https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest) | 32.465 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Installing Bitshares / graphene from source on Mac OS X Yosemite (10.5.5)](https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5) | 32.348 SBD |\n| [@dumar022](https://steemit.com/@dumar022) | [Workshop lesson 6: Wrench: You don't wanna mess with this](https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this) | 32.155 SBD |\n| [@lapilipinas](https://steemit.com/@lapilipinas) | [Light from distant stars](https://steemit.com/science/@lapilipinas/light-from-distant-stars) | 32.778 SBD |\n| [@williambanks](https://steemit.com/@williambanks) | [Towards A Better Tomorrow : Part 1 - There but for grace!](https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace) | 31.434 SBD |\n| [@driv3n](https://steemit.com/@driv3n) | [How to Solve the Rubik's Cube like a boss - Part 2](https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2) | 31.858 SBD |\n| [@timbot606](https://steemit.com/@timbot606) | [Growing up in Appalachia](https://steemit.com/life/@timbot606/growing-up-in-appalachia) | 31.548 SBD |\n| [@themagus](https://steemit.com/@themagus) | [A less privileged white growing up in South Africa in the 1970's - part 2](https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2) | 31.099 SBD |\n| [@echoesinthemind](https://steemit.com/@echoesinthemind) | [Hanging Upside Down / DO NOT Try At Home](https://steemit.com/life/@echoesinthemind/hanging-upside-down) | 31.736 SBD |\n| [@ysa](https://steemit.com/@ysa) | [My pictures from traveling to Estes Park, Colorado](https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado) | 31.981 SBD |\n| [@aksinya](https://steemit.com/@aksinya) | [Our Trip to Wonderful, Scary and Unforgettable Kenya. Original Photos and Video](https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video) | 31.882 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cuatro](https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro) | 31.992 SBD |\n| [@successfully00](https://steemit.com/@successfully00) | [Knowing The Math - Mental Tricks - Multiplication Part 1](https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1) | 31.037 SBD |\n| [@linzo](https://steemit.com/@linzo) | [A Life Fantasy (Original Poem)](https://steemit.com/poem/@linzo/a-life-fantasy-original-poem) | 30.964 SBD |\n| [@hilarski](https://steemit.com/@hilarski) | [Panama Critters.](https://steemit.com/panama/@hilarski/panama-critters) | 28.729 SBD |\n| [@sulev](https://steemit.com/@sulev) | [Photography #11 - Pictures from my Garden: Bees, Lizards and other (part 2)](https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2) | 27.947 SBD |\n| [@steemswede](https://steemit.com/@steemswede) | [[BEER REVIEW] Thomas Hardy's Ale](https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale) | 27.183 SBD |\n| [@marius19](https://steemit.com/@marius19) | [Set of paper coffee cups. Origami](https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami) | 26.439 SBD |\n| [@poeticsnake](https://steemit.com/@poeticsnake) | [Autumn is coming Doodle style! ( Tutorial with step by step drawings)](https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings) | 26.547 SBD |\n| [@kiddarko](https://steemit.com/@kiddarko) | [Peep Life a Story By KidDarko (with tattoo illistrations and video)](https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video) | 26.853 SBD |\n| [@shieha](https://steemit.com/@shieha) | [The Hardest Computer Game of All Time - Robot Odyssey - Part 2](https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2) | 26.372 SBD |\n| [@ayim](https://steemit.com/@ayim) | [Fixing Posture - Part 4: Neck](https://steemit.com/life/@ayim/fixing-posture-part-4-neck) | 26.142 SBD |\n| [@hitmeasap](https://steemit.com/@hitmeasap) | [I am Batman's Robin or Skywalkers R2-D2. - I've always been the co-pilot. Always been the second choice.](https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice) | 25.747 SBD |\n| [@peskov](https://steemit.com/@peskov) | [Antonikha. Part 2 (featuring Vasily Peskov as author)](https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author) | 25.173 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [Advice from an angry dude: Breathe and interrupt your thoughts](https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts) | 25.162 SBD |\n| [@beginningtoend](https://steemit.com/@beginningtoend) | [Poetry, art and a little home spun philosophy.](https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy) | 25.708 SBD |\n| [@kaykunoichi](https://steemit.com/@kaykunoichi) | [Suicide Note - Audio (Written & performed by myself)](https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself) | 25.523 SBD |\n| [@booky](https://steemit.com/@booky) | [Boosting Leadership Skills = Healthier Happier You and Your Workmates](https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates) | 24.083 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [Do you Know the Difference Between RIGHT & WRONG?](https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong) | 24.516 SBD |\n| [@ekaterina4ka](https://steemit.com/@ekaterina4ka) | [We Knit Patterns by the Spokes. Post 2. \u0412\u044f\u0436\u0435\u043c \u0443\u0437\u043e\u0440\u044b \u0441\u043f\u0438\u0446\u0430\u043c\u0438. \u041f\u043e\u0441\u0442 2.](https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2) | 24.793 SBD |\n| [@scaredycatguide](https://steemit.com/@scaredycatguide) | [Real Talk - Vol 9. - Welcome To Dogmerica](https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica) | 24.207 SBD |\n| [@amy-goodrich](https://steemit.com/@amy-goodrich) | [Pineapple Mojito Green Smoothie](https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie) | 24.126 SBD |\n| [@scott.stevens](https://steemit.com/@scott.stevens) | [Awareness of Bitcoin is Now More Important Than Awareness of Geoengineering](https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering) | 24.875 SBD |\n| [@witchcraftblog](https://steemit.com/@witchcraftblog) | [My trip to Italy. Pisa.](https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa) | 24.265 SBD |\n| [@ibringawareness](https://steemit.com/@ibringawareness) | [\"Why I Got Stiffed\" Guy's Waiter Blog chapter 5](https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5) | 24.224 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new illustration - Batman vs Superman - Modern Impressionism by kimal73](https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73) | 23.617 SBD |\n| [@leylar](https://steemit.com/@leylar) | [Seeds are great travelers ~ Own work](https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work) | 23.166 SBD |\n| [@ocrdu](https://steemit.com/@ocrdu) | [The pods that go \"pop\"](https://steemit.com/photography/@ocrdu/the-pods-that-go-pop) | 23.530 SBD |\n| [@rusla](https://steemit.com/@rusla) | [Japan. Part8.](https://steemit.com/travel/@rusla/japan-part8) | 23.209 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [Puppy Charcoal Original Pencil Drawing](https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing) | 23.879 SBD |\n| [@borishaifa](https://steemit.com/@borishaifa) | [To Write Or Not To Wirte? \u041f\u0438\u0441\u0430\u0442\u044c \u0438\u043b\u0438 \u043d\u0435 \u043f\u0438\u0441\u0430\u0442\u044c?](https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat) | 23.730 SBD |\n| [@eveningstar92](https://steemit.com/@eveningstar92) | [Shit Happens, Move On-NSFW- Evening Star Art](https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art) | 23.092 SBD |\n| [@elewarne](https://steemit.com/@elewarne) | [Mixed Media](https://steemit.com/mixedmedia/@elewarne/mixed-media) | 23.059 SBD |\n| [@shredlord](https://steemit.com/@shredlord) | [Sunrise](https://steemit.com/art/@shredlord/sunrise) | 23.318 SBD |\n| [@sherlockcupid](https://steemit.com/@sherlockcupid) | [Let's Talk: Fears (Part One)](https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one) | 23.720 SBD |\n| [@annesaya](https://steemit.com/@annesaya) | [Our Guiding Star, a poem (A tribute to writers)](https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers) | 23.384 SBD |\n| [@fitmama](https://steemit.com/@fitmama) | [Why Do I Bother....](https://steemit.com/life/@fitmama/why-do-i-bother) | 23.451 SBD |\n| [@ezzy](https://steemit.com/@ezzy) | [The Bionic Experiment - Part 1 (My Original Short Stories)](https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories) | 23.480 SBD |\n| [@kingarbinv](https://steemit.com/@kingarbinv) | [Adventures in Nemaland - Part 8 (Video) + My best Pokemon catch so far.](https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far) | 23.292 SBD |\n| [@soulsistashakti](https://steemit.com/@soulsistashakti) | [How to Detect and Deflect Gaslighting from a Narcissist](https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist) | 22.018 SBD |\n| [@puffin](https://steemit.com/@puffin) | [Tragical Impoverishment - Society's Dirt (Original Poem)](https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem) | 22.621 SBD |\n| [@cehuneke](https://steemit.com/@cehuneke) | [The Sugar Scandal: Corrupted Science in the Debate of Fat vs. Sugar and Coronary Heart Disease](https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease) | 22.821 SBD |\n| [@tanata](https://steemit.com/@tanata) | [Little Black Dress involving](https://steemit.com/fashion/@tanata/little-black-dress-involving) | 22.237 SBD |\n| [@steemwriter](https://steemit.com/@steemwriter) | [YouTube Demonetization: A Step Towards Censorship?](https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship) | 22.297 SBD |\n| [@michelle.gent](https://steemit.com/@michelle.gent) | [Dusty - one of my characters](https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters) | 22.659 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [A Gift-Original Rose Drawing](https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing) | 22.249 SBD |\n| [@runridefly](https://steemit.com/@runridefly) | [Minnow's Life - @runridefly original cartoon \"minnowsunite Whale sighting\" minnows and a whale](https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale) | 22.836 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [[SHORT STORY] The Cult of Personality - Part One](https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one) | 22.552 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Look at the Flower Chicory: a Useful and Beautiful Flower ... my Favorite Photos of Chicory](https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory) | 22.795 SBD |\n| [@victoriart](https://steemit.com/@victoriart) | [Hazelnut Mood](https://steemit.com/art/@victoriart/hazelnut-mood) | 22.443 SBD |\n| [@heroic15397](https://steemit.com/@heroic15397) | [Amazing Birds in the Greater Montreal area](https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area) | 22.987 SBD |\n| [@smartercars](https://steemit.com/@smartercars) | [Reviewing the Volkswagen Touareg ~ Smarter Car Reviews](https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews) | 22.975 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [Blues Jam & Techniques [9-14-2016]](https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016) | 22.415 SBD |\n| [@matthew.raymer](https://steemit.com/@matthew.raymer) | [Life Stories](https://steemit.com/psychology/@matthew.raymer/life-stories) | 22.733 SBD |\n| [@positivesteem](https://steemit.com/@positivesteem) | [Common Sense Versus Degrees: The Man Who Has One Hundred Degrees](https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees) | 22.941 SBD |\n| [@d3nv3r](https://steemit.com/@d3nv3r) | [Cloud Mining - The Struggle is Real](https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real) | 22.266 SBD |\n| [@adubi](https://steemit.com/@adubi) | [Healing Food Plan: The Ultimate Cheat Sheet](https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet) | 22.947 SBD |\n| [@alitas](https://steemit.com/@alitas) | [(spanish) Cazuela de Calamar con Papas Rejilla](https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla) | 22.240 SBD |\n| [@mazi](https://steemit.com/@mazi) | [I Can See Clearly Now .... Platanus occidentalis](https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis) | 22.784 SBD |\n| [@mikemacintire](https://steemit.com/@mikemacintire) | [A Red Like No Other - My work](https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work) | 22.289 SBD |\n| [@altzero](https://steemit.com/@altzero) | [Im\u00e1genes de una vida (2)](https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2) | 21.555 SBD |\n| [@birdie](https://steemit.com/@birdie) | [Clouds That Demand Attention (Original Photos)](https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos) | 21.397 SBD |\n| [@michaelstobiersk](https://steemit.com/@michaelstobiersk) | [An Original Painting by Michael Stobierski](https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski) | 21.367 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Meditation Experience Can Be Really Scary](https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary) | 21.583 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [The Price Is Right Theme Music Breakdown](https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown) | 21.937 SBD |\n| [@karisa](https://steemit.com/@karisa) | [Very tasty and delicious curd cookies specially for Steemit . Part 4](https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4) | 21.940 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Borovoye (Burabai) - Pearl of Kazakhstan: The Incredible Journey (Story of my Husband)](https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband) | 20.616 SBD |\n| [@burnin](https://steemit.com/@burnin) | [Exploring the Off-Limits Areas of the Largest Cruise Ship In the World - Part 2](https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2) | 20.298 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Eyes Of Wisdom](https://steemit.com/art/@reddust/eyes-of-wisdom) | 20.051 SBD |\n| [@levycore](https://steemit.com/@levycore) | [Hot Chocolate Art - Trying Draw Faces](https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces) | 20.233 SBD |\n| [@awesomenyl](https://steemit.com/@awesomenyl) | [Sunflower Paper Tutorial](https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial) | 20.040 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [The epic and awesome guide to writing articles like a true artist that people want to read and share! [Edited for Steemit today]](https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today) | 20.192 SBD |\n| [@naquoya](https://steemit.com/@naquoya) | [[ORIGINAL FICTION] Bad Trip part two: The Gamemaster](https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster) | 20.041 SBD |\n| [@moon32walker](https://steemit.com/@moon32walker) | [Top 10 Game Development Studios](https://steemit.com/gaming/@moon32walker/top-10-game-development-studios) | 20.468 SBD |\n| [@gustavopasquini](https://steemit.com/@gustavopasquini) | [Polenta with Ragu Meat Dry](https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry) | 20.436 SBD |\n| [@benadapt](https://steemit.com/@benadapt) | [Capturing the Milky Way \u2014 A Photographer\u2019s Biggest Challenge](https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge) | 20.477 SBD |\n| [@altzero](https://steemit.com/@altzero) | [\u00bfQue es la nueva economia?](https://steemit.com/spanish/@altzero/que-es-la-nueva-economia) | 20.037 SBD |\n| [@por500bolos](https://steemit.com/@por500bolos) | [Uncovering The Most Transcendental & Biggest Secret In The Human Life. \u00bfSkeptical? I will challenge you to prove otherwise!!](https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise) | 20.894 SBD |\n| [@zonpower](https://steemit.com/@zonpower) | [This is a place (An original Poem)](https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem) | 20.869 SBD |\n| [@katharsisdrill](https://steemit.com/@katharsisdrill) | [The rune-stones of Jelling, and a new realisation.](https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation) | 19.761 SBD |\n| [@glezeddy](https://steemit.com/@glezeddy) | [MEZCLA DE TEQUILA PARA DAR EL \"GRITO\" (M\u00c9XICO)](https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico) | 15.682 SBD |\n| [@onetree](https://steemit.com/@onetree) | [South African Slang - Enter Those Who Dare!](https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare) | 33.017 SBD |\n| [@verbal-d](https://steemit.com/@verbal-d) | [Melodious Music Memoirs # 2: Impact](https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact) | 30.372 SBD |\n| [@wanderingagorist](https://steemit.com/@wanderingagorist) | [Foraging Wild Rose Hips for Tea and Eating](https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating) | 29.228 SBD |\n| [@knablinz](https://steemit.com/@knablinz) | [Hand-Made Collage Art By Knablinz ( Donuts & Coffee )](https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee) | 35.939 SBD |\n\n---------------------------\n
Note: All author rewards from this post will be used to fund Project Curie.
Join us in #curie on Steemit.chat and follow us @curie!
", + "category": "curie", + "children": 10, + "created": "2016-09-15T17:53:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "story", - "fiction", - "anarchy", - "life", - "minnowsunited" + "image": [ + "https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg" + ], + "links": [ + "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", + "https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement", + "https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", + "https://steemit.com/@faddat", + "https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed", + "https://steemit.com/@rampant", + "https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool", + "https://steemit.com/@shenanigator", + "https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do", + "https://steemit.com/@penguinpablo", + "https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf", + "https://steemit.com/@nathanjtaylor", + "https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry", + "https://steemit.com/@lily-da-vine", + "https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco", + "https://steemit.com/@budgetbucketlist", + "https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes", + "https://steemit.com/@benjiberigan", + "https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations", + "https://steemit.com/@ausbitbank", + "https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos", + "https://steemit.com/@emily-cook", + "https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work", + "https://steemit.com/@team-leibniz", + "https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00", + "https://steemit.com/@ionescur", + "https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land", + "https://steemit.com/@kimal73", + "https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work", + "https://steemit.com/@juliac", + "https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think", + "https://steemit.com/@luzcypher", + "https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals", + "https://steemit.com/@akareyon", + "https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing", + "https://steemit.com/@curving", + "https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation", + "https://steemit.com/@aleksandraz", + "https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology", + "https://steemit.com/@skapaneas", + "https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more", + "https://steemit.com/@gargon", + "https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", + "https://steemit.com/@iamwne", + "https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass", + "https://steemit.com/@stormblaze", + "https://steemit.com/technology/@stormblaze/where-do-deleted-files-go", + "https://steemit.com/@yanarnst", + "https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts", + "https://steemit.com/@senseye", + "https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor", + "https://steemit.com/@crasch", + "https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future", + "https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners", + "https://steemit.com/@cristi", + "https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months", + "https://steemit.com/@stranger27", + "https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature", + "https://steemit.com/@nekromarinist", + "https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today", + "https://steemit.com/@richman", + "https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story", + "https://steemit.com/@maceytomlin", + "https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony", + "https://steemit.com/@nili", + "https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol", + "https://steemit.com/@optimistic-crone", + "https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe", + "https://steemit.com/@anarchyhasnogods", + "https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one", + "https://steemit.com/@yostopia", + "https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick", + "https://steemit.com/@reneenouveau", + "https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015", + "https://steemit.com/@king3071", + "https://steemit.com/travel/@king3071/my-dream-destination-switzerland", + "https://steemit.com/@kolin.evans", + "https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines", + "https://steemit.com/@fenglosophy", + "https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think", + "https://steemit.com/@mandibil", + "https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil", + "https://steemit.com/@therajmahal", + "https://steemit.com/science/@therajmahal/making-the-impossible-possible", + "https://steemit.com/@carlitashaw", + "https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions", + "https://steemit.com/@renzoarg", + "https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics", + "https://steemit.com/@rachelsvparry", + "https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time", + "https://steemit.com/@royalmacro", + "https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art", + "https://steemit.com/@stephmckenzie", + "https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone", + "https://steemit.com/@alwayzgame", + "https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life", + "https://steemit.com/@nonlinearone", + "https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing", + "https://steemit.com/@kafkanarchy84", + "https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii", + "https://steemit.com/@feline1991", + "https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2", + "https://steemit.com/@geke", + "https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge", + "https://steemit.com/@lscottphotos", + "https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos", + "https://steemit.com/@pinkisland", + "https://steemit.com/writing/@pinkisland/my-philosophy-of-education", + "https://steemit.com/@jgcastrillo19", + "https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco", + "https://steemit.com/@luisucv34", + "https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition", + "https://steemit.com/@beowulfoflegend", + "https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty", + "https://steemit.com/@mariandavp", + "https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp", + "https://steemit.com/@nasimbabu", + "https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases", + "https://steemit.com/@royaltiffany", + "https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update", + "https://steemit.com/@travelista", + "https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo", + "https://steemit.com/@jpiper20", + "https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4", + "https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism", + "https://steemit.com/@krystle", + "https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin", + "https://steemit.com/@cryptoiskey", + "https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids", + "https://steemit.com/@getonthetrain", + "https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods", + "https://steemit.com/@ansharphoto", + "https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome", + "https://steemit.com/@aboundlessworld", + "https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast", + "https://steemit.com/@thornybastard", + "https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest", + "https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5", + "https://steemit.com/@dumar022", + "https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this", + "https://steemit.com/@lapilipinas", + "https://steemit.com/science/@lapilipinas/light-from-distant-stars", + "https://steemit.com/@williambanks", + "https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace", + "https://steemit.com/@driv3n", + "https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2", + "https://steemit.com/@timbot606", + "https://steemit.com/life/@timbot606/growing-up-in-appalachia", + "https://steemit.com/@themagus", + "https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2", + "https://steemit.com/@echoesinthemind", + "https://steemit.com/life/@echoesinthemind/hanging-upside-down", + "https://steemit.com/@ysa", + "https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado", + "https://steemit.com/@aksinya", + "https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video", + "https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro", + "https://steemit.com/@successfully00", + "https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1", + "https://steemit.com/@linzo", + "https://steemit.com/poem/@linzo/a-life-fantasy-original-poem", + "https://steemit.com/@hilarski", + "https://steemit.com/panama/@hilarski/panama-critters", + "https://steemit.com/@sulev", + "https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2", + "https://steemit.com/@steemswede", + "https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale", + "https://steemit.com/@marius19", + "https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami", + "https://steemit.com/@poeticsnake", + "https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings", + "https://steemit.com/@kiddarko", + "https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video", + "https://steemit.com/@shieha", + "https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2", + "https://steemit.com/@ayim", + "https://steemit.com/life/@ayim/fixing-posture-part-4-neck", + "https://steemit.com/@hitmeasap", + "https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice", + "https://steemit.com/@peskov", + "https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author", + "https://steemit.com/@aldentan", + "https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts", + "https://steemit.com/@beginningtoend", + "https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy", + "https://steemit.com/@kaykunoichi", + "https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself", + "https://steemit.com/@booky", + "https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates", + "https://steemit.com/@doubledex", + "https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong", + "https://steemit.com/@ekaterina4ka", + "https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2", + "https://steemit.com/@scaredycatguide", + "https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica", + "https://steemit.com/@amy-goodrich", + "https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie", + "https://steemit.com/@scott.stevens", + "https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering", + "https://steemit.com/@witchcraftblog", + "https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa", + "https://steemit.com/@ibringawareness", + "https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5", + "https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73", + "https://steemit.com/@leylar", + "https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work", + "https://steemit.com/@ocrdu", + "https://steemit.com/photography/@ocrdu/the-pods-that-go-pop", + "https://steemit.com/@rusla", + "https://steemit.com/travel/@rusla/japan-part8", + "https://steemit.com/@edgarsart", + "https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing", + "https://steemit.com/@borishaifa", + "https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat", + "https://steemit.com/@eveningstar92", + "https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art", + "https://steemit.com/@elewarne", + "https://steemit.com/mixedmedia/@elewarne/mixed-media", + "https://steemit.com/@shredlord", + "https://steemit.com/art/@shredlord/sunrise", + "https://steemit.com/@sherlockcupid", + "https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one", + "https://steemit.com/@annesaya", + "https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers", + "https://steemit.com/@fitmama", + "https://steemit.com/life/@fitmama/why-do-i-bother", + "https://steemit.com/@ezzy", + "https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories", + "https://steemit.com/@kingarbinv", + "https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far", + "https://steemit.com/@soulsistashakti", + "https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist", + "https://steemit.com/@puffin", + "https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem", + "https://steemit.com/@cehuneke", + "https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease", + "https://steemit.com/@tanata", + "https://steemit.com/fashion/@tanata/little-black-dress-involving", + "https://steemit.com/@steemwriter", + "https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship", + "https://steemit.com/@michelle.gent", + "https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters", + "https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing", + "https://steemit.com/@runridefly", + "https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale", + "https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one", + "https://steemit.com/@lyubovbar", + "https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory", + "https://steemit.com/@victoriart", + "https://steemit.com/art/@victoriart/hazelnut-mood", + "https://steemit.com/@heroic15397", + "https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area", + "https://steemit.com/@smartercars", + "https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews", + "https://steemit.com/@rubenalexander", + "https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016", + "https://steemit.com/@matthew.raymer", + "https://steemit.com/psychology/@matthew.raymer/life-stories", + "https://steemit.com/@positivesteem", + "https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees", + "https://steemit.com/@d3nv3r", + "https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real", + "https://steemit.com/@adubi", + "https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet", + "https://steemit.com/@alitas", + "https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla", + "https://steemit.com/@mazi", + "https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis", + "https://steemit.com/@mikemacintire", + "https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work", + "https://steemit.com/@altzero", + "https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2", + "https://steemit.com/@birdie", + "https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos", + "https://steemit.com/@michaelstobiersk", + "https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski", + "https://steemit.com/@reddust", + "https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary", + "https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown", + "https://steemit.com/@karisa", + "https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4", + "https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband", + "https://steemit.com/@burnin", + "https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2", + "https://steemit.com/art/@reddust/eyes-of-wisdom", + "https://steemit.com/@levycore", + "https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces", + "https://steemit.com/@awesomenyl", + "https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial", + "https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today", + "https://steemit.com/@naquoya", + "https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster", + "https://steemit.com/@moon32walker", + "https://steemit.com/gaming/@moon32walker/top-10-game-development-studios", + "https://steemit.com/@gustavopasquini", + "https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry", + "https://steemit.com/@benadapt", + "https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge", + "https://steemit.com/spanish/@altzero/que-es-la-nueva-economia", + "https://steemit.com/@por500bolos", + "https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise", + "https://steemit.com/@zonpower", + "https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem", + "https://steemit.com/@katharsisdrill", + "https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation", + "https://steemit.com/@glezeddy", + "https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico", + "https://steemit.com/@onetree", + "https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare", + "https://steemit.com/@verbal-d", + "https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact", + "https://steemit.com/@wanderingagorist", + "https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating", + "https://steemit.com/@knablinz", + "https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee" ], - "image": [ - "https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg", - "https://s12.postimg.org/6h4lvyh7x/judge.jpg" + "tags": [ + "curie", + "minnows", + "hidden-gems", + "steemit", + "project-curie" ], - "links": [ - "https://steemit.com/@markrmorrisjr" + "users": [ + "nextgencrypto", + "curie" ] }, - "created": "2016-09-15T16:54:06", - "updated": "2016-09-15T16:54:06", - "depth": 0, - "children": 2, - "net_rshares": 62355283653318, - "is_paidout": false, - "payout_at": "2016-09-16T18:15:42", - "payout": 227.863, - "pending_payout_value": "227.863 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 61028272797290, + "payout": 217.281, + "payout_at": "2016-09-22T17:53:48", + "pending_payout_value": "217.281 HBD", + "percent_hbd": 10000, + "permlink": "the-daily-curie-14th-sept-15th-sept-2016", + "post_id": 1256756, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 182 + }, + "title": "The Daily Curie (14th Sept - 15th Sept 2016)", + "updated": "2016-09-15T17:53:48", + "url": "/curie/@curie/the-daily-curie-14th-sept-15th-sept-2016" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231809639013" + "rshares": "231809639013", + "voter": "anonymous" }, { - "voter": "blocktrades", - "rshares": "40859141206977" + "rshares": "40859141206977", + "voter": "blocktrades" }, { - "voter": "badassmother", - "rshares": "1912118346075" + "rshares": "1912118346075", + "voter": "badassmother" }, { - "voter": "xeldal", - "rshares": "7113882084470" + "rshares": "7113882084470", + "voter": "xeldal" }, { - "voter": "enki", - "rshares": "5763993012820" + "rshares": "5763993012820", + "voter": "enki" }, { - "voter": "rossco99", - "rshares": "1304415071462" + "rshares": "1304415071462", + "voter": "rossco99" }, { - "voter": "joseph", - "rshares": "1577462576089" + "rshares": "1577462576089", + "voter": "joseph" }, { - "voter": "masteryoda", - "rshares": "651993277150" + "rshares": "651993277150", + "voter": "masteryoda" }, { - "voter": "boatymcboatface", - "rshares": "446958795092" + "rshares": "446958795092", + "voter": "boatymcboatface" }, { - "voter": "idol", - "rshares": "9168101098" + "rshares": "9168101098", + "voter": "idol" }, { - "voter": "wpalczynski", - "rshares": "23383993964" + "rshares": "23383993964", + "voter": "wpalczynski" }, { - "voter": "sakr", - "rshares": "5044693986" + "rshares": "5044693986", + "voter": "sakr" }, { - "voter": "jocelyn", - "rshares": "1578030666" + "rshares": "1578030666", + "voter": "jocelyn" }, { - "voter": "gregory-f", - "rshares": "14818192446" + "rshares": "14818192446", + "voter": "gregory-f" }, { - "voter": "eeks", - "rshares": "74914583876" + "rshares": "74914583876", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1007941175" + "rshares": "1007941175", + "voter": "fkn" }, { - "voter": "james-show", - "rshares": "8867224532" + "rshares": "8867224532", + "voter": "james-show" }, { - "voter": "elishagh1", - "rshares": "1324875721" + "rshares": "1324875721", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7802860274" + "rshares": "7802860274", + "voter": "richman" }, { - "voter": "acidyo", - "rshares": "24193131603" + "rshares": "24193131603", + "voter": "acidyo" }, { - "voter": "coar", - "rshares": "313691550" + "rshares": "313691550", + "voter": "coar" }, { - "voter": "murh", - "rshares": "1061234978" + "rshares": "1061234978", + "voter": "murh" }, { - "voter": "error", - "rshares": "2057413439" + "rshares": "2057413439", + "voter": "error" }, { - "voter": "theshell", - "rshares": "59950022330" + "rshares": "59950022330", + "voter": "theshell" }, { - "voter": "taoteh1221", - "rshares": "400880323222" + "rshares": "400880323222", + "voter": "taoteh1221" }, { - "voter": "applecrisp", - "rshares": "410517349" + "rshares": "410517349", + "voter": "applecrisp" }, { - "voter": "trogdor", - "rshares": "280737930617" + "rshares": "280737930617", + "voter": "trogdor" }, { - "voter": "tee-em", - "rshares": "5287820211" + "rshares": "5287820211", + "voter": "tee-em" }, { - "voter": "geoffrey", - "rshares": "121383360964" + "rshares": "121383360964", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "10684548905" + "rshares": "10684548905", + "voter": "kimziv" }, { - "voter": "acassity", - "rshares": "30279968088" + "rshares": "30279968088", + "voter": "acassity" }, { - "voter": "venuspcs", - "rshares": "45145254362" + "rshares": "45145254362", + "voter": "venuspcs" }, { - "voter": "getssidetracked", - "rshares": "7264907621" + "rshares": "7264907621", + "voter": "getssidetracked" }, { - "voter": "trees", - "rshares": "1414199127" + "rshares": "1414199127", + "voter": "trees" }, { - "voter": "strawhat", - "rshares": "197179742" + "rshares": "197179742", + "voter": "strawhat" }, { - "voter": "steemswede", - "rshares": "1159208963" + "rshares": "1159208963", + "voter": "steemswede" }, { - "voter": "cryptochannel", - "rshares": "691425107" + "rshares": "691425107", + "voter": "cryptochannel" }, { - "voter": "endgame", - "rshares": "894044199" + "rshares": "894044199", + "voter": "endgame" }, { - "voter": "furion", - "rshares": "4920266872" + "rshares": "4920266872", + "voter": "furion" }, { - "voter": "steem1653", - "rshares": "2834923420" + "rshares": "2834923420", + "voter": "steem1653" }, { - "voter": "steemit-life", - "rshares": "25221166135" + "rshares": "25221166135", + "voter": "steemit-life" }, { - "voter": "sitaru", - "rshares": "13516878845" + "rshares": "13516878845", + "voter": "sitaru" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "aaseb", - "rshares": "14167503457" + "rshares": "14167503457", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209522316" + "rshares": "4209522316", + "voter": "karen13" }, { - "voter": "nabilov", - "rshares": "243749878708" + "rshares": "243749878708", + "voter": "nabilov" }, { - "voter": "luisucv34", - "rshares": "677892916" + "rshares": "677892916", + "voter": "luisucv34" }, { - "voter": "creemej", - "rshares": "34761252099" + "rshares": "34761252099", + "voter": "creemej" }, { - "voter": "poseidon", - "rshares": "233065746" + "rshares": "233065746", + "voter": "poseidon" }, { - "voter": "thylbom", - "rshares": "82781233416" + "rshares": "82781233416", + "voter": "thylbom" }, { - "voter": "deanliu", - "rshares": "32543319555" + "rshares": "32543319555", + "voter": "deanliu" }, { - "voter": "rainchen", - "rshares": "5428442637" + "rshares": "5428442637", + "voter": "rainchen" }, { - "voter": "jl777", - "rshares": "204617448258" + "rshares": "204617448258", + "voter": "jl777" }, { - "voter": "pokemon", - "rshares": "103514864" + "rshares": "103514864", + "voter": "pokemon" }, { - "voter": "positive", - "rshares": "817413671" + "rshares": "817413671", + "voter": "positive" }, { - "voter": "chloetaylor", - "rshares": "6361356981" + "rshares": "6361356981", + "voter": "chloetaylor" }, { - "voter": "proto", - "rshares": "17267278949" + "rshares": "17267278949", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "1805641835" + "rshares": "1805641835", + "voter": "sisterholics" }, { - "voter": "reported", - "rshares": "61286903" + "rshares": "61286903", + "voter": "reported" }, { - "voter": "taker", - "rshares": "8734133724" + "rshares": "8734133724", + "voter": "taker" }, { - "voter": "krushing", - "rshares": "57607550" + "rshares": "57607550", + "voter": "krushing" }, { - "voter": "laonie", - "rshares": "63852353198" + "rshares": "63852353198", + "voter": "laonie" }, { - "voter": "laoyao", - "rshares": "24561889230" + "rshares": "24561889230", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "1332427399" + "rshares": "1332427399", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "12961212091" + "rshares": "12961212091", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "484610059" + "rshares": "484610059", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "2084691327" + "rshares": "2084691327", + "voter": "gmurph" }, { - "voter": "minnowsunited", - "rshares": "513517114" + "rshares": "513517114", + "voter": "minnowsunited" }, { - "voter": "midnightoil", - "rshares": "2863236010" + "rshares": "2863236010", + "voter": "midnightoil" }, { - "voter": "whatyouganjado", - "rshares": "56653113" + "rshares": "56653113", + "voter": "whatyouganjado" }, { - "voter": "kurtbeil", - "rshares": "3323984357" + "rshares": "3323984357", + "voter": "kurtbeil" }, { - "voter": "xiaohui", - "rshares": "7161280807" + "rshares": "7161280807", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "323406893" + "rshares": "323406893", + "voter": "elfkitchen" }, { - "voter": "oflyhigh", - "rshares": "5855543935" + "rshares": "5855543935", + "voter": "oflyhigh" }, { - "voter": "makaveli", - "rshares": "63373184" + "rshares": "63373184", + "voter": "makaveli" }, { - "voter": "xiaokongcom", - "rshares": "223891286" + "rshares": "223891286", + "voter": "xiaokongcom" }, { - "voter": "future24", - "rshares": "1780319109" + "rshares": "1780319109", + "voter": "future24" }, { - "voter": "thebotkiller", - "rshares": "7709317035" + "rshares": "7709317035", + "voter": "thebotkiller" }, { - "voter": "xianjun", - "rshares": "451324143" + "rshares": "451324143", + "voter": "xianjun" }, { - "voter": "herbertmueller", - "rshares": "647921440" + "rshares": "647921440", + "voter": "herbertmueller" }, { - "voter": "alexbones", - "rshares": "56109399" + "rshares": "56109399", + "voter": "alexbones" }, { - "voter": "chinadaily", - "rshares": "2022625104" + "rshares": "2022625104", + "voter": "chinadaily" }, { - "voter": "serejandmyself", - "rshares": "90172824082" + "rshares": "90172824082", + "voter": "serejandmyself" }, { - "voter": "nang1", - "rshares": "163783062" + "rshares": "163783062", + "voter": "nang1" }, { - "voter": "netaterra", - "rshares": "2982676167" + "rshares": "2982676167", + "voter": "netaterra" }, { - "voter": "dobbydaba", - "rshares": "52319145" + "rshares": "52319145", + "voter": "dobbydaba" }, { - "voter": "andrewawerdna", - "rshares": "22559404087" + "rshares": "22559404087", + "voter": "andrewawerdna" }, { - "voter": "ozertayiz", - "rshares": "77466140" + "rshares": "77466140", + "voter": "ozertayiz" }, { - "voter": "steemitpatina", - "rshares": "4633082667" + "rshares": "4633082667", + "voter": "steemitpatina" }, { - "voter": "salebored", - "rshares": "55922029" + "rshares": "55922029", + "voter": "salebored" }, { - "voter": "runridefly", - "rshares": "2196862373" + "rshares": "2196862373", + "voter": "runridefly" }, { - "voter": "shenanigator", - "rshares": "115288806334" + "rshares": "115288806334", + "voter": "shenanigator" }, { - "voter": "funkywanderer", - "rshares": "1709331623" + "rshares": "1709331623", + "voter": "funkywanderer" }, { - "voter": "richardcrill", - "rshares": "4594182561" + "rshares": "4594182561", + "voter": "richardcrill" }, { - "voter": "markrmorrisjr", - "rshares": "79155262951" + "rshares": "79155262951", + "voter": "markrmorrisjr" }, { - "voter": "bitdrone", - "rshares": "55917888" + "rshares": "55917888", + "voter": "bitdrone" }, { - "voter": "sleepcult", - "rshares": "55908853" + "rshares": "55908853", + "voter": "sleepcult" }, { - "voter": "sponge-bob", - "rshares": "27677639861" + "rshares": "27677639861", + "voter": "sponge-bob" }, { - "voter": "doitvoluntarily", - "rshares": "12031039232" + "rshares": "12031039232", + "voter": "doitvoluntarily" }, { - "voter": "thecyclist", - "rshares": "67696453939" + "rshares": "67696453939", + "voter": "thecyclist" }, { - "voter": "kev7000", - "rshares": "646493719" + "rshares": "646493719", + "voter": "kev7000" }, { - "voter": "analyzethis", - "rshares": "55266473" + "rshares": "55266473", + "voter": "analyzethis" }, { - "voter": "brains", - "rshares": "27671309914" + "rshares": "27671309914", + "voter": "brains" }, { - "voter": "burnin", - "rshares": "5866415576" + "rshares": "5866415576", + "voter": "burnin" }, { - "voter": "bitcoinparadise", - "rshares": "1352324852" + "rshares": "1352324852", + "voter": "bitcoinparadise" }, { - "voter": "funnyman", - "rshares": "4235074146" + "rshares": "4235074146", + "voter": "funnyman" }, { - "voter": "f1111111", - "rshares": "50193769" + "rshares": "50193769", + "voter": "f1111111" }, { - "voter": "anomaly", - "rshares": "339287005" + "rshares": "339287005", + "voter": "anomaly" }, { - "voter": "inarix03", - "rshares": "63405661" + "rshares": "63405661", + "voter": "inarix03" }, { - "voter": "ola1", - "rshares": "98545946" + "rshares": "98545946", + "voter": "ola1" }, { - "voter": "michelle.gent", - "rshares": "4382226038" + "rshares": "4382226038", + "voter": "michelle.gent" }, { - "voter": "mari5555na", - "rshares": "66935282" + "rshares": "66935282", + "voter": "mari5555na" }, { - "voter": "goldmatters", - "rshares": "31683945302" + "rshares": "31683945302", + "voter": "goldmatters" }, { - "voter": "majes", - "rshares": "155180811" + "rshares": "155180811", + "voter": "majes" }, { - "voter": "dealzgal", - "rshares": "71727340" + "rshares": "71727340", + "voter": "dealzgal" }, { - "voter": "storage", - "rshares": "68013381" + "rshares": "68013381", + "voter": "storage" }, { - "voter": "blackmarket", - "rshares": "58460105" + "rshares": "58460105", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "61530871" + "rshares": "61530871", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "96643251" + "rshares": "96643251", + "voter": "expat" }, { - "voter": "toddemaher1", - "rshares": "129609202" + "rshares": "129609202", + "voter": "toddemaher1" } ], + "author": "markrmorrisjr", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 120, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/story/@markrmorrisjr/original-fiction-anarchist-s-almanac-episode-15", - "blacklists": [] - }, - { - "post_id": 958959, - "author": "gavvet", - "permlink": "title-steel-monsters-tank-destroyers-of-ww-ii-eng-ua-featuring-burmik123-as-author", - "category": "tanks", - "title": "Steel monsters. Tank Destroyers of WW II. ENG\\UA (featuring @burmik123 as author)", - "body": "Hello everyone. I did not write anything about World War II for a long time. So today I decided to tell you about the Tank Destroyers. About the machines, specialization of which was the destruction of tanks. In this article I will talk about the classic representatives of this class.\n>Всім привіт. Давненько я не писав нічого на тему Другої Світової. І ось сьогодні я вирішив розповісти вам про ПТ-САУ. Про машини, спеціалізацією яких було знищення танків. У цій частині я розповім про класичних представників свого класу.\n\n# StuG III\nhttp://i.piccy.info/i9/3d367a52a1b8dc6c22f126332f335144/1473836215/88822/1063747/cqWCxy6vYP0.jpg\n\nLet's start with the most produced Tank Destroyer in the history. At the beginning of the WW II German command decided to create a mobile artillery on the basis of existing tanks, which would be able to support the infantry. The priority in new machine were the firepower, a good armor and cheapness. The firm Daimler-Benz successfully embodied these wishes into reality. There were about eight versions of StuG III, however, the main was Ausf. G. The cost of production of one StuG was quite low - 83 000 DM. Total was released 10500 machines. The basis for the creation was German tank PzKpfw III.\nInitially StuG III was equipped with a short-75mm gun, but when good armored Soviet T-34 came to the fronts, it was decided to replace short gun with a new long-barreled 75mm cannon Stuk 40 L / 48, which surely hit the Soviet tanks. StuG armor was quite good – 50 mm in a front took a punch at a distance of 1 km. StuG III was very compact in a size and had good mobility. The main disadvantage was little size which allowed bad conditions for crew working. StuG III took active part in a war from the very beginning to its end. \nhttp://i.piccy.info/i9/5dc09cebc0ddfcd1fac4a8013ee385ad/1473836240/182233/1063747/5u9ghQyvkTc.jpg\n\n>Почнемо з наймасовішї ПТ-САУ в історії. На початку війни німецьке командування вирішило створити мобільну артилерію на базі вже наявних танків, здатну підтримати піхоту. Пріоритетною була вогнева міць, гарне бронювання і дешевизна. Фірма Daimler-Benz вдало втілила ці побажання в реальність. Всього було близько восьми модифікацій StuG III, проте основною була Ausf. G. Вартість однієї ПТ-САУ була досить низькою - 83 000 марок. Сумарно було випущено 10500 машин. Базою для створення послужив танк PzKpfw III.\nСпочатку StuG III оснащувався короткоствольною 75мм гарматою, однак з появою на фронтах Т-34 було прийнято рішення замінити її на нову довгоствольну 75мм гармату Stuk 40 L / 48, яка впевнено вражала радянські танки. Броня самохідки у лобі була 50 мм і тримала удар на відстані 1 км. StuG III відрізнявся компактними розмірами, хорошою маневреністю та непоганою швидкістю. З недоліків варто відзначити незручність роботи екіпажу через невеликий за броньовий простір. Машина активно брала участь з самого початку війни і до її завершення.\n\n# Su-85 (100) СУ-85 (100)\nhttp://i.piccy.info/i9/b5ef17359d201f4a7a61b38b5e6ca72f/1473836271/164656/1063747/kKktJUlUuXk.jpg\n\nTowards in 1943 it became clear for the Soviet command that to deal effectively with new German tanks Soviet army required new, more modern machines and Tank Destroyers. It was decided to create new Tank Destroyer based on the T-34, driving performance and armor of which were very good. Development of a new machine was conducted at Uralmash factory.\nSu-85 had a new long-barreled 85mm gun, similar to that which will soon be installed at T-34-85. This gun was able to destroy enemy medium tanks at the distance of over a kilometer, and heavy tanks – at 800 meters to a front plate. The gun was placed in the middle part of the Tanks Destroyer body and had angles of + - 8 degrees. Also the inside size of tanks was nice which allowed good conditions for crew working. Driving characteristics inherited from the T-34-85. Armor (45 mm at the front with big armor slope) provided good protection against German medium tanks. A little later, with the release of the T-34-85, SU-85 was converted under the new 100mm gun. It was a tool for successfully destroying any enemy tanks, including Tiger 2. Also Su-100 had a very low silhouette, which contributed to an excellent disguise. Observation and aiming devices have been improved. SU-100 was easy to maintain. This Tank Destroyer applied to the end of the WW II. Total were released 4976 SU-100 and 2050 SU-85.\nhttp://i.piccy.info/i9/4dc33c464a97ab5b3b8b294778f28103/1473836298/33303/1063747/WVaI_c18Lyw.jpg\n\n>Ближче до 1943 року радянському командуванню стало зрозуміло, що для ефективної боротьби з новими німецькими танками потрібні більш сучасні машини. Було вирішено створити протитанкову самохідну установку на базі танка Т-34, ходові якості і броня якого були дуже хороші. Розробка нової ПТ-САУ велася на Уралмашзаводі.\nСУ-85 мала нову 85мм нарізну гармату, аналогічну з тою, яка незабаром буде встановлена на т 34-85. Вона дозволяло без проблем вражати середні танки супротивника на дистанції більше кілометра, а важкі - на 800 метрах. Гармата встановлювалася прямо в корпус і мало кути наведення в + - 8 градусів. Корпус був відносно просторий і дозволяв з комфортом працювати екіпажу. Ходові характеристики СУ успадкувала від т-34. Броня (45мм під нахилом) забезпечувала хороший захист від пострілів середніх танків противника. Трохи пізніше з виходом танка т 34-85 Сушки були переобладнані під нову 100мм гармату. Ця гармат дозволяла успішно боротися з будь-яким танком противника, включаючи і Тигр 2. Також варто відзначити низький силует машини, який сприяв відмінному маскуванню. Були поліпшені прилади спостереження й прицілювання. Техніка була проста в обслуговуванні. Ця ПТ-САУ застосовувалася до самого кінця війни. Всього було випущено 4976 СУ-100 і 2050 СУ-85.\n\n# Jagdpanther (Ягдпантера)\nhttp://i.piccy.info/i9/201bcdc4469d546e806e4a38ba752ea7/1473836330/161907/1063747/_jvoDheMLik.jpg\n\nIn the middle of 1942 the German command decided to create a new Tank Destroyer with 88mm anti-tank gun Pak-43, using the basis of medium tank “Panther”. The development of this Tank Destroyer at first was carried by a Krupp company, then it was given to a Daimler-Benz and at last it was finished by a MIAG company. So, the destiny of Jagdpather was hard. The development has been complicated by the regular air raids allies, constant shortage of necessary parts and confusion in the serial versions of the machine. Jagdpanther took the most actively part in the Ardennes offensive and the Balaton operation.\nhttp://i.piccy.info/i9/d2e68a346dd9f511c77c83d8b77eaf87/1473836361/30639/1063747/XmYA_dzfCU8.jpg\n\nIn general, as a Tank Destroyer Jagdpanthere was great. Maneuverability and speed characteristics were good because of using “Panther” basis. Armor of Jagdpanthere (80 mm in the front with a good armor slope) confidently defended the machine and a crew at the distance of 800 meters from all Soviet tanks. The new 88mm anti-tank gun allowed to destroy the enemy at a distance of 1km. Rate of fire at the same time was very high - 8 rounds per minute. The fighting compartment inside of a car was spacious and was equipped with ventilation, increasing the convenience of the crew working. And don’t forget than Jagdpanther had a low silhouette. The disadvantages were the relatively high cost of the machine (due to the use of scarce materials), unreliability and complexity of the transmission service. Jagdpanther has established itself as a formidable and dangerous opponent, specializing in the destruction of tanks. Total were produced 392 cars.\nhttp://i.piccy.info/i9/f1590af47cd302853838f357b7786d76/1473836385/192289/1063747/V3N3_0icSI.jpg\n\n>У середини 1942 року німецьке командування прийняло рішення створити ПТ-САУ з новою протитанковою 88мм гарматою Рак-43 на базі середнього танка Пантера. Розробку ПТ-САУ спочатку вела фірма Крупп, пізніше проект дороблявся фірмою Daimler-Benz, а в самому кінці - MIAG. Розробка була ускладнена регулярними авіа нальотами союзників, постійними недостачами потрібних деталей і плутаниною в серійних модифікаціях машини. Найбільш активно Ягдпантери брали участь в Арденському наступі та Балатонській операції.\nВ цілому самоходка вийшла вдалою. Ходові і маневрені якості вона цілком успадкувала від Пантери і вони були на високому рівні. Броня самохідки (80 мм в лобі під хорошим нахилом) впевнено захищала її на дистанціях від 800 метрів. Нова 88мм протитанкова гармата дозволяла вести прицільний вогонь по противнику на відстані 1км. Темп стрільби при цьому був дуже високий - 8 пострілів на хвилину. Бойове відділення машини було просторим і оснащувалося вентиляцією, що підвищувало зручності роботи екіпажу. Прилади спостереження і приціли були як завжди на вищому рівні. ПТ-САУ мала низький силует. З недоліків варто відзначити відносно високу вартість машини (через використання дефіцитних матеріалів), ненадійність трансмісії і складність в обслуговуванні. Також незадовільною була броня бортів. Ягдпантера зарекомендувала себе як грізний і небезпечний супротивник, що спеціалізується на винищення танків. Всього було випущено 392 машини.\n\n# M18 “Hellcat”\nhttp://i.piccy.info/i9/96dea13cac0295bde2f7c6dd2ddf0f93/1473836416/237135/1063747/Zt4ltwPq9qQ.jpg\n\nThe design of the American Tank Destroyer was caused by the US military doctrine. In contrast to the Germans and the Soviets, who had good-armored Tank Destroyers with a powerful anti-tank gun and mediocre mobility, American Tank Destroyers were oriented on a good mobility firstly. M18 was developed for quickly interception of enemy tank formations and the destruction of their flanks. This also caused the weak armor, small caliber of guns and excellent mobility equipment. M18 had been developed by General Motors Buick Division, the cost of one machine was 57,000 dollars. Total it was produced 2507 M18.\nAt first it was planned to put the 37mm gun, but very soon it was decided to replace it by the 57mm British gun. But this was not enough, and in the final version M18 was equipped with a 76mm cannon from Shermans. New Tank Destroyer had a very light weight, had weak armor (20mm in the forehead) and the rotating tower, which was unusual for that time. Suspension provides the convenience of driving on rough terrain; the engine allowed reaching speed up to 45 km per hour. M18 was easy to operate and convenient to use. In general, the machine was ambiguous, absorbing a lot of bold decisions.\nhttp://i.piccy.info/i9/df0129bd789f7923e8f0306e5a8b6520/1473836445/147058/1063747/pxmv2fJDVRs.jpg\n\n>Конструкція американського винищувача танків обумовлена в першу чергу американською військовою доктриною. На відміну від німецьких і радянських армій, у яких протитанкові самохідки мали гарну лобову броню, потужну протитанкову гармату і посередню мобільність, американські протитанкові самохідки в першу чергу повинні були бути мобільні. М18 розроблявся для швидкого перехоплення танкових з'єднань противника і знищення їх з флангів. Цим і обумовлювалася слабке бронювання, невеликий калібр гармати і відмінна мобільність техніки. Розробка велася фірмою General Motors Buick Division, вартість однієї машини становила 57000 доларів. Всього було випущено 2507 ПТ-САУ М18.\nСпочатку планувалося поставити 37мм гармату, проте дуже скоро було вирішено замінити її на 57мм британську гармату. Але цього виявилося недостатньо, і в фінальному варіанті М18 оснащувалася 76мм гарматою, що установлювалася на танки Шерман. ПТ-САУ була дуже легка, мала противокульове бронювання (20мм в лобі) і поворотну башту, що було нехарактерно для ПТ-САУ того часу. Підвіска забезпечувала зручність їзди по пересіченій місцевості, двигун дозволяв розвивати швидкість до 45 км на годину. М18 був простий в обслуговуванні і зручний в експлуатації. В цілому машина вийшла неоднозначною, увібравши в себе безліч сміливих рішень.\n\nAt the end I want to say, that the birth of Tank destroyers was caused by the necessary of destroying heavy enemy techniques. Next time I will tell you about machines with a real “Big Guns”.\n>На цьому мі завершимо наше знайомство з класом ПТ-САУ. Поява самоходок була викликана необхідністю знищення важкої техніки супротивника. На черзі машини з дійсно великими калібрами. \n\n***don't forget to follow @burmik123***", + "blacklists": [], + "body": "## In this episode, Joshua Claiborne stands trial for violation of the First Law ##\n\n**\u201cWhoa, whoa, whoa!\u201d Phil screamed, \u201cWhat the hell dude?\u201d**\n\n*The Reaper crumpled to the floor, arms flailing as Joshua rode it to the ground. Finally, the hands found the catches at either side of the helmet and popped it off. A black, shaggy head of hair emerged.* \n\n***If you've missed episodes, [visit my blog](https://steemit.com/@markrmorrisjr) to catch up. Be sure to follow me for updates in your feed!***\n\n\u201cEmil?\u201d Stella said, \u201cMeet Joshua. Are you okay?\u201d\n\nEmil, the Reaper suit\u2019s operator laughed, \u201cYeah, I\u2019m fine, but that was awesome! Can you teach us that?\u201d\n\n\u201cMan! Now I have to rebuild this helmet,\u201d Phil held up a small remote. \u201cAll I had to do was push this button,\u201d he said, pressing it, as the suit powered down. \u201cWhat did you do?\u201d\n\n\u201cThe \u2018nerve\u2019 bundle that controls these things motor skills is on the very top of the skull, under a thin piece of sheet metal, puncture it, it collapses. You didn\u2019t know that?\u201d Joshua said. \n\n\u201cWell, it appears we may need you more than you need us,\u201d Stella said. \u201cSo, just say the word and we\u2019ll get you where you need to be. Meanwhile, my team will be working on your son\u2019s location.\u201d\n\nJoshua dropped the letter opener and walked to the stairs, \u201cFine, whatever you need to collect from my meeting, get it. Now, who\u2019s driving?\u201d With that, he walked up the stairs, he had no more time to waste. \n\n**The Mapleton courthouse sat on a hill in the center of the town, overlooking the area around for miles.** \n\n*Joshua insisted that the team Stella had sent stop 5 miles out and allow him to ride in on the electric trike alone, while they observed the meeting from a distance.* \n\nHe carried the tiny remote in his shirt pocket, a gift from Phil. \u201cThat\u2019s my only prototype, so don\u2019t lose it,\u201d he\u2019d said. \n\n![enter image description here](https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg)\n\nFrom the end of Main Street, looking up toward the courthouse, Joshua counted at least six reapers. He wondered how far the signal from the remote would travel. \n\nHe thought about pressing it now, disarming his enemy, then walking in, but he\u2019d still have to deal with the six drivers, if they managed to escape the suits. \n\nBesides, Stella seemed to think there was some secret they were going to give away, although Joshua couldn\u2019t imagine it. \n\n*He checked his watch, ten minutes until his scheduled time and while he knew better than to be late, he had no intention of giving the Consensus one more second than he had to.* \n\nThe trike spun it\u2019s tires on a patch of loose gravel as he started back up. He decided a quick approach was best. He charged up the hill, jumping the \u201cMayor\u2019s\u201d parking barrier and rolling up to the foot of the front stairs, he cranked the accelerator and the trike rose up on its back wheel, popping the two front wheels, over the bottom step. \n\nThe machine had more than enough power to climb the steps and Joshua skidded to a stop outside the courthouse door. He stopped and turned back toward the town, the six Reapers swarming toward him up the steps. He powered down, swung his leg up and over the bike and opened the door. \n\n**The Reapers followed him into the hall as he approached the court room.** \n\nThe Magistrate sat behind the judge\u2019s bench and Joshua couldn\u2019t help but smirk at the insult to the very concept of actual justice that this thing represented. \n\n\u201cJoshua Claiborne, appearing as requested,\u201d Joshua said, standing directly in front of the Magistrate. \n\n![enter image description here](https://s12.postimg.org/6h4lvyh7x/judge.jpg)\n\n> \u201cYes, Mr. Claiborne, have a seat,\u201d A woman\u2019s face, projected on the face shield of the Magistrate said.\n\n\u201cI\u2019d rather stand,\u201d he said. \n\n> \u201cSuit yourself, may we have the room, please?\u201d she said, looking toward the reapers that had entered the back doors of the courtroom.\n\nThey left quietly. \n\n> \u201cMr. Claiborne, you\u2019re charged with violation of the first law, in so\n> much as you have encouraged and joined in the activity of settling\n> outside of Consensus approved areas, acted outside of the legal\n> jurisdiction of the council and on more than one occasion, acted\n> against the best interest of Consensus, including attacking duly\n> authorized Magistrates in the course of their legally binding duties,\n> how do you plead?\u201d\n\n**The woman looked at Joshua, peering over a pair of short, square spectacles, like some sort of outdated stereotype.** \n\n\u201cNot guilty, by reason of illegitimacy of the currently established government and its ensigns. I am not, nor do I choose to become, subject to your law. I stand judged as innocent by natural law, insomuch as I have not caused harm to another human in aggression, damaged or stolen property, nor unnecessarily restricted the liberty of any other person. I recognize no other responsibility to my fellow man,\u201d Joshua said calmly. \n\n> \u201cBe that as it may, Mr. Claiborne, we are not here under the auspices of \u201cnatural law\u201d but rather, under the Council mandated authority of the Consensus and its Magisterial Ministry, of which I am a part and I assure you, you are subject to,\u201d\n\nThe woman intoned, her expression one of almost sheer boredom.\n\n> \u201cCourt finds the defendant guilty and remands the subject for immediate judicial murder.\u201d\n\nThe magistrate raised its arm and brought it down on the bench with a solid thud, that echoed through the court. Joshua felt his heart sink as the Reapers reentered the court and moved up to surround him. \n\n## Look for the upvote button below. If you liked the post, upvote and share! If you're not on Steemit yet, why not? You get free money for signing up! ##", + "category": "story", + "children": 2, + "created": "2016-09-15T16:54:06", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "tanks", - "ua", - "war" + "image": [ + "https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg", + "https://s12.postimg.org/6h4lvyh7x/judge.jpg" ], - "users": [ - "burmik123" + "links": [ + "https://steemit.com/@markrmorrisjr" ], - "image": [ - "http://i.piccy.info/i9/3d367a52a1b8dc6c22f126332f335144/1473836215/88822/1063747/cqWCxy6vYP0.jpg", - "http://i.piccy.info/i9/5dc09cebc0ddfcd1fac4a8013ee385ad/1473836240/182233/1063747/5u9ghQyvkTc.jpg", - "http://i.piccy.info/i9/b5ef17359d201f4a7a61b38b5e6ca72f/1473836271/164656/1063747/kKktJUlUuXk.jpg", - "http://i.piccy.info/i9/4dc33c464a97ab5b3b8b294778f28103/1473836298/33303/1063747/WVaI_c18Lyw.jpg", - "http://i.piccy.info/i9/201bcdc4469d546e806e4a38ba752ea7/1473836330/161907/1063747/_jvoDheMLik.jpg", - "http://i.piccy.info/i9/d2e68a346dd9f511c77c83d8b77eaf87/1473836361/30639/1063747/XmYA_dzfCU8.jpg", - "http://i.piccy.info/i9/f1590af47cd302853838f357b7786d76/1473836385/192289/1063747/V3N3_0icSI.jpg", - "http://i.piccy.info/i9/96dea13cac0295bde2f7c6dd2ddf0f93/1473836416/237135/1063747/Zt4ltwPq9qQ.jpg", - "http://i.piccy.info/i9/df0129bd789f7923e8f0306e5a8b6520/1473836445/147058/1063747/pxmv2fJDVRs.jpg" - ] - }, - "created": "2016-09-15T15:48:12", - "updated": "2016-09-15T16:20:39", - "depth": 0, - "children": 20, - "net_rshares": 64027086650725, - "is_paidout": false, - "payout_at": "2016-09-16T16:11:44", - "payout": 239.867, - "pending_payout_value": "239.867 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "tags": [ + "story", + "fiction", + "anarchy", + "life", + "minnowsunited" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62355283653318, + "payout": 226.397, + "payout_at": "2016-09-22T16:54:06", + "pending_payout_value": "226.397 HBD", + "percent_hbd": 10000, + "permlink": "original-fiction-anarchist-s-almanac-episode-15", + "post_id": 1256087, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 120 + }, + "title": "Original Fiction: Anarchist's Almanac, Episode 15", + "updated": "2016-09-15T16:54:06", + "url": "/story/@markrmorrisjr/original-fiction-anarchist-s-almanac-episode-15" + }, + { "active_votes": [ { - "voter": "barrie", - "rshares": "504201493814" + "rshares": "504201493814", + "voter": "barrie" }, { - "voter": "smooth", - "rshares": "31621044834059" + "rshares": "31621044834059", + "voter": "smooth" }, { - "voter": "anonymous", - "rshares": "231803784363" + "rshares": "231803784363", + "voter": "anonymous" }, { - "voter": "apple", - "rshares": "1992555050222" + "rshares": "1992555050222", + "voter": "apple" }, { - "voter": "badassmother", - "rshares": "1912040731624" + "rshares": "1912040731624", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2053103615195" + "rshares": "2053103615195", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1304415071462" + "rshares": "1304415071462", + "voter": "rossco99" }, { - "voter": "wang", - "rshares": "2352777844031" + "rshares": "2352777844031", + "voter": "wang" }, { - "voter": "jaewoocho", - "rshares": "22390337604" + "rshares": "22390337604", + "voter": "jaewoocho" }, { - "voter": "joseph", - "rshares": "1576668025571" + "rshares": "1576668025571", + "voter": "joseph" }, { - "voter": "recursive2", - "rshares": "466113536214" + "rshares": "466113536214", + "voter": "recursive2" }, { - "voter": "recursive3", - "rshares": "452820496964" + "rshares": "452820496964", + "voter": "recursive3" }, { - "voter": "masteryoda", - "rshares": "651951614915" + "rshares": "651951614915", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120381242465" + "rshares": "3120381242465", + "voter": "recursive" }, { - "voter": "mrs.agsexplorer", - "rshares": "91328598326" + "rshares": "91328598326", + "voter": "mrs.agsexplorer" }, { - "voter": "bingo-0", - "rshares": "6959198181" + "rshares": "6959198181", + "voter": "bingo-0" }, { - "voter": "smooth.witness", - "rshares": "5939784887153" + "rshares": "5939784887153", + "voter": "smooth.witness" }, { - "voter": "boatymcboatface", - "rshares": "446272257734" + "rshares": "446272257734", + "voter": "boatymcboatface" }, { - "voter": "idol", - "rshares": "9167804100" + "rshares": "9167804100", + "voter": "idol" }, { - "voter": "wpalczynski", - "rshares": "22448634206" + "rshares": "22448634206", + "voter": "wpalczynski" }, { - "voter": "steemrollin", - "rshares": "816380174873" + "rshares": "816380174873", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "5147541712" + "rshares": "5147541712", + "voter": "sakr" }, { - "voter": "chitty", - "rshares": "284355351943" + "rshares": "284355351943", + "voter": "chitty" }, { - "voter": "unosuke", - "rshares": "34575031962" + "rshares": "34575031962", + "voter": "unosuke" }, { - "voter": "noaommerrr", - "rshares": "481762857054" + "rshares": "481762857054", + "voter": "noaommerrr" }, { - "voter": "jocelyn", - "rshares": "1578007819" + "rshares": "1578007819", + "voter": "jocelyn" }, { - "voter": "acidsun", - "rshares": "85270098112" + "rshares": "85270098112", + "voter": "acidsun" }, { - "voter": "gregory-f", - "rshares": "14692173218" + "rshares": "14692173218", + "voter": "gregory-f" }, { - "voter": "gregory60", - "rshares": "9604795718" + "rshares": "9604795718", + "voter": "gregory60" }, { - "voter": "jademont", - "rshares": "18382400031" + "rshares": "18382400031", + "voter": "jademont" }, { - "voter": "gavvet", - "rshares": "1294872282183" + "rshares": "1294872282183", + "voter": "gavvet" }, { - "voter": "eeks", - "rshares": "89897365397" + "rshares": "89897365397", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1511911763" + "rshares": "1511911763", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "122160437" + "rshares": "122160437", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "1471653540" + "rshares": "1471653540", + "voter": "spaninv" }, { - "voter": "elishagh1", - "rshares": "1987313581" + "rshares": "1987313581", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "8669811688" + "rshares": "8669811688", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "584222819564" + "rshares": "584222819564", + "voter": "nanzo-scoop" }, { - "voter": "acidyo", - "rshares": "28116199940" + "rshares": "28116199940", + "voter": "acidyo" }, { - "voter": "kefkius", - "rshares": "9857648383" + "rshares": "9857648383", + "voter": "kefkius" }, { - "voter": "mummyimperfect", - "rshares": "177403714671" + "rshares": "177403714671", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313689446" + "rshares": "313689446", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106631248984" + "rshares": "106631248984", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061230469" + "rshares": "1061230469", + "voter": "murh" }, { - "voter": "slickwilly", - "rshares": "936957207" + "rshares": "936957207", + "voter": "slickwilly" }, { - "voter": "cryptofunk", - "rshares": "3187804154" + "rshares": "3187804154", + "voter": "cryptofunk" }, { - "voter": "kodi", - "rshares": "579494558" + "rshares": "579494558", + "voter": "kodi" }, { - "voter": "error", - "rshares": "2057367746" + "rshares": "2057367746", + "voter": "error" }, { - "voter": "andu", - "rshares": "11847990151" + "rshares": "11847990151", + "voter": "andu" }, { - "voter": "cyber", - "rshares": "962069747008" + "rshares": "962069747008", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "61712174604" + "rshares": "61712174604", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "49577333486" + "rshares": "49577333486", + "voter": "ak2020" }, { - "voter": "paul-labossiere", - "rshares": "24894446745" + "rshares": "24894446745", + "voter": "paul-labossiere" }, { - "voter": "taoteh1221", - "rshares": "400880323222" + "rshares": "400880323222", + "voter": "taoteh1221" }, { - "voter": "stiletto", - "rshares": "95314034" + "rshares": "95314034", + "voter": "stiletto" }, { - "voter": "juanmiguelsalas", - "rshares": "56688940478" + "rshares": "56688940478", + "voter": "juanmiguelsalas" }, { - "voter": "ratel", - "rshares": "33781859925" + "rshares": "33781859925", + "voter": "ratel" }, { - "voter": "zakharya", - "rshares": "15787327103" + "rshares": "15787327103", + "voter": "zakharya" }, { - "voter": "trogdor", - "rshares": "280717515045" + "rshares": "280717515045", + "voter": "trogdor" }, { - "voter": "tee-em", - "rshares": "5287383826" + "rshares": "5287383826", + "voter": "tee-em" }, { - "voter": "geoffrey", - "rshares": "121383360964" + "rshares": "121383360964", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "42737137488" + "rshares": "42737137488", + "voter": "kimziv" }, { - "voter": "emily-cook", - "rshares": "74286777275" + "rshares": "74286777275", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187597574" + "rshares": "2187597574", + "voter": "superfreek" }, { - "voter": "isteemit", - "rshares": "49806164408" + "rshares": "49806164408", + "voter": "isteemit" }, { - "voter": "spikykevin", - "rshares": "4091429870" + "rshares": "4091429870", + "voter": "spikykevin" }, { - "voter": "venuspcs", - "rshares": "52090524796" + "rshares": "52090524796", + "voter": "venuspcs" }, { - "voter": "michaellamden68", - "rshares": "3989473346" + "rshares": "3989473346", + "voter": "michaellamden68" }, { - "voter": "thebatchman", - "rshares": "19974764064" + "rshares": "19974764064", + "voter": "thebatchman" }, { - "voter": "asmolokalo", - "rshares": "158997516614" + "rshares": "158997516614", + "voter": "asmolokalo" }, { - "voter": "getssidetracked", - "rshares": "8603166550" + "rshares": "8603166550", + "voter": "getssidetracked" }, { - "voter": "riscadox", - "rshares": "5165418905" + "rshares": "5165418905", + "voter": "riscadox" }, { - "voter": "konstantin", - "rshares": "17538291453" + "rshares": "17538291453", + "voter": "konstantin" }, { - "voter": "mstang83", - "rshares": "261755903" + "rshares": "261755903", + "voter": "mstang83" }, { - "voter": "hitmeasap", - "rshares": "39099397056" + "rshares": "39099397056", + "voter": "hitmeasap" }, { - "voter": "nexus1", - "rshares": "252977703" + "rshares": "252977703", + "voter": "nexus1" }, { - "voter": "burmik123", - "rshares": "1515818756" + "rshares": "1515818756", + "voter": "burmik123" }, { - "voter": "ksenia", - "rshares": "280713275" + "rshares": "280713275", + "voter": "ksenia" }, { - "voter": "trees", - "rshares": "1649898982" + "rshares": "1649898982", + "voter": "trees" }, { - "voter": "strawhat", - "rshares": "231686197" + "rshares": "231686197", + "voter": "strawhat" }, { - "voter": "domino", - "rshares": "219133173153" + "rshares": "219133173153", + "voter": "domino" }, { - "voter": "playtime", - "rshares": "251687687" + "rshares": "251687687", + "voter": "playtime" }, { - "voter": "whitepeach", - "rshares": "404548352" + "rshares": "404548352", + "voter": "whitepeach" }, { - "voter": "furion", - "rshares": "7380400309" + "rshares": "7380400309", + "voter": "furion" }, { - "voter": "owdy", - "rshares": "6462652657" + "rshares": "6462652657", + "voter": "owdy" }, { - "voter": "dicov", - "rshares": "1256448483" + "rshares": "1256448483", + "voter": "dicov" }, { - "voter": "steem1653", - "rshares": "2936170685" + "rshares": "2936170685", + "voter": "steem1653" }, { - "voter": "cynetyc", - "rshares": "136318424" + "rshares": "136318424", + "voter": "cynetyc" }, { - "voter": "sebastien", - "rshares": "18770538147" + "rshares": "18770538147", + "voter": "sebastien" }, { - "voter": "sitaru", - "rshares": "13787216422" + "rshares": "13787216422", + "voter": "sitaru" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "aaseb", - "rshares": "14167053756" + "rshares": "14167053756", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209522316" + "rshares": "4209522316", + "voter": "karen13" }, { - "voter": "deviedev", - "rshares": "10646413479" + "rshares": "10646413479", + "voter": "deviedev" }, { - "voter": "nabilov", - "rshares": "266599021635" + "rshares": "266599021635", + "voter": "nabilov" }, { - "voter": "dmacshady", - "rshares": "2286950597" + "rshares": "2286950597", + "voter": "dmacshady" }, { - "voter": "luisucv34", - "rshares": "726313838" + "rshares": "726313838", + "voter": "luisucv34" }, { - "voter": "herverisson", - "rshares": "8811980236" + "rshares": "8811980236", + "voter": "herverisson" }, { - "voter": "streetstyle", - "rshares": "53424827264" + "rshares": "53424827264", + "voter": "streetstyle" }, { - "voter": "milestone", - "rshares": "46856213520" + "rshares": "46856213520", + "voter": "milestone" }, { - "voter": "maximkichev", - "rshares": "3801182358" + "rshares": "3801182358", + "voter": "maximkichev" }, { - "voter": "nippel66", - "rshares": "15070465231" + "rshares": "15070465231", + "voter": "nippel66" }, { - "voter": "blueorgy", - "rshares": "167302364294" + "rshares": "167302364294", + "voter": "blueorgy" }, { - "voter": "benjiberigan", - "rshares": "12849414672" + "rshares": "12849414672", + "voter": "benjiberigan" }, { - "voter": "poseidon", - "rshares": "932248554" + "rshares": "932248554", + "voter": "poseidon" }, { - "voter": "mustafaomar", - "rshares": "19717588129" + "rshares": "19717588129", + "voter": "mustafaomar" }, { - "voter": "simon.braki.love", - "rshares": "3506039536" + "rshares": "3506039536", + "voter": "simon.braki.love" }, { - "voter": "thylbom", - "rshares": "82781233416" + "rshares": "82781233416", + "voter": "thylbom" }, { - "voter": "deanliu", - "rshares": "32542976852" + "rshares": "32542976852", + "voter": "deanliu" }, { - "voter": "sharker", - "rshares": "5609548617" + "rshares": "5609548617", + "voter": "sharker" }, { - "voter": "qonq99", - "rshares": "541016983" + "rshares": "541016983", + "voter": "qonq99" }, { - "voter": "jl777", - "rshares": "204615752038" + "rshares": "204615752038", + "voter": "jl777" }, { - "voter": "pokemon", - "rshares": "119983138" + "rshares": "119983138", + "voter": "pokemon" }, { - "voter": "positive", - "rshares": "1226120506" + "rshares": "1226120506", + "voter": "positive" }, { - "voter": "chloetaylor", - "rshares": "6939662161" + "rshares": "6939662161", + "voter": "chloetaylor" }, { - "voter": "claudiop63", - "rshares": "43638419601" + "rshares": "43638419601", + "voter": "claudiop63" }, { - "voter": "proto", - "rshares": "17267164725" + "rshares": "17267164725", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "7222403812" + "rshares": "7222403812", + "voter": "sisterholics" }, { - "voter": "alex.chien", - "rshares": "1444237397" + "rshares": "1444237397", + "voter": "alex.chien" }, { - "voter": "royalmacro", - "rshares": "8781903824" + "rshares": "8781903824", + "voter": "royalmacro" }, { - "voter": "remlaps", - "rshares": "1838367968" + "rshares": "1838367968", + "voter": "remlaps" }, { - "voter": "steemster1", - "rshares": "149624601" + "rshares": "149624601", + "voter": "steemster1" }, { - "voter": "glitterpig", - "rshares": "3353872300" + "rshares": "3353872300", + "voter": "glitterpig" }, { - "voter": "taker", - "rshares": "8734116589" + "rshares": "8734116589", + "voter": "taker" }, { - "voter": "sharon", - "rshares": "59219358" + "rshares": "59219358", + "voter": "sharon" }, { - "voter": "dumar022", - "rshares": "4999720649" + "rshares": "4999720649", + "voter": "dumar022" }, { - "voter": "merej99", - "rshares": "2077201153" + "rshares": "2077201153", + "voter": "merej99" }, { - "voter": "lillianjones", - "rshares": "60342922" + "rshares": "60342922", + "voter": "lillianjones" }, { - "voter": "laonie", - "rshares": "255401498427" + "rshares": "255401498427", + "voter": "laonie" }, { - "voter": "laoyao", - "rshares": "24561432292" + "rshares": "24561432292", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "7994421908" + "rshares": "7994421908", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "51843535316" + "rshares": "51843535316", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "1938401760" + "rshares": "1938401760", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "2501627790" + "rshares": "2501627790", + "voter": "gmurph" }, { - "voter": "chris.roy", - "rshares": "1691577797" + "rshares": "1691577797", + "voter": "chris.roy" }, { - "voter": "stormblaze", - "rshares": "1693568633" + "rshares": "1693568633", + "voter": "stormblaze" }, { - "voter": "midnightoil", - "rshares": "11452681912" + "rshares": "11452681912", + "voter": "midnightoil" }, { - "voter": "kalimor", - "rshares": "2327843962" + "rshares": "2327843962", + "voter": "kalimor" }, { - "voter": "coderg", - "rshares": "84246848" + "rshares": "84246848", + "voter": "coderg" }, { - "voter": "ullikume", - "rshares": "4190252928" + "rshares": "4190252928", + "voter": "ullikume" }, { - "voter": "kurtbeil", - "rshares": "3323749960" + "rshares": "3323749960", + "voter": "kurtbeil" }, { - "voter": "xiaohui", - "rshares": "28644139641" + "rshares": "28644139641", + "voter": "xiaohui" }, { - "voter": "dolov", - "rshares": "1349109906" + "rshares": "1349109906", + "voter": "dolov" }, { - "voter": "elfkitchen", - "rshares": "1293603524" + "rshares": "1293603524", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "103394476995" + "rshares": "103394476995", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5855492830" + "rshares": "5855492830", + "voter": "oflyhigh" }, { - "voter": "xiaokongcom", - "rshares": "895550716" + "rshares": "895550716", + "voter": "xiaokongcom" }, { - "voter": "natalymaty", - "rshares": "2118152083" + "rshares": "2118152083", + "voter": "natalymaty" }, { - "voter": "msjennifer", - "rshares": "60819615" + "rshares": "60819615", + "voter": "msjennifer" }, { - "voter": "ciao", - "rshares": "55925537" + "rshares": "55925537", + "voter": "ciao" }, { - "voter": "darthnava", - "rshares": "1156101266" + "rshares": "1156101266", + "voter": "darthnava" }, { - "voter": "villainblack", - "rshares": "3670417888" + "rshares": "3670417888", + "voter": "villainblack" }, { - "voter": "thebotkiller", - "rshares": "8410164039" + "rshares": "8410164039", + "voter": "thebotkiller" }, { - "voter": "jrcornel", - "rshares": "3033050865" + "rshares": "3033050865", + "voter": "jrcornel" }, { - "voter": "steemo", - "rshares": "54217761" + "rshares": "54217761", + "voter": "steemo" }, { - "voter": "xianjun", - "rshares": "1805262907" + "rshares": "1805262907", + "voter": "xianjun" }, { - "voter": "hanshotfirst", - "rshares": "26819912795" + "rshares": "26819912795", + "voter": "hanshotfirst" }, { - "voter": "steema", - "rshares": "54077897" + "rshares": "54077897", + "voter": "steema" }, { - "voter": "confucius", - "rshares": "71282219" + "rshares": "71282219", + "voter": "confucius" }, { - "voter": "miacats", - "rshares": "93801736989" + "rshares": "93801736989", + "voter": "miacats" }, { - "voter": "njall", - "rshares": "2249572206" + "rshares": "2249572206", + "voter": "njall" }, { - "voter": "jarvis", - "rshares": "54909929" + "rshares": "54909929", + "voter": "jarvis" }, { - "voter": "microluck", - "rshares": "118219525" + "rshares": "118219525", + "voter": "microluck" }, { - "voter": "fortuner", - "rshares": "54313084" + "rshares": "54313084", + "voter": "fortuner" }, { - "voter": "chinadaily", - "rshares": "2077267800" + "rshares": "2077267800", + "voter": "chinadaily" }, { - "voter": "almerri", - "rshares": "4879530405" + "rshares": "4879530405", + "voter": "almerri" }, { - "voter": "johnnyyash", - "rshares": "9253395112" + "rshares": "9253395112", + "voter": "johnnyyash" }, { - "voter": "gvargas123", - "rshares": "10344891579" + "rshares": "10344891579", + "voter": "gvargas123" }, { - "voter": "themanualbot", - "rshares": "4751552849" + "rshares": "4751552849", + "voter": "themanualbot" }, { - "voter": "nang1", - "rshares": "136485885" + "rshares": "136485885", + "voter": "nang1" }, { - "voter": "telos", - "rshares": "13839238841" + "rshares": "13839238841", + "voter": "telos" }, { - "voter": "johnbyrd", - "rshares": "51877132" + "rshares": "51877132", + "voter": "johnbyrd" }, { - "voter": "thomasaustin", - "rshares": "53039566" + "rshares": "53039566", + "voter": "thomasaustin" }, { - "voter": "thermor", - "rshares": "51859074" + "rshares": "51859074", + "voter": "thermor" }, { - "voter": "ficholl", - "rshares": "51870077" + "rshares": "51870077", + "voter": "ficholl" }, { - "voter": "widell", - "rshares": "53030738" + "rshares": "53030738", + "voter": "widell" }, { - "voter": "revelbrooks", - "rshares": "51481279" + "rshares": "51481279", + "voter": "revelbrooks" }, { - "voter": "mig641", - "rshares": "406983674" + "rshares": "406983674", + "voter": "mig641" }, { - "voter": "kamil5", - "rshares": "169608367" + "rshares": "169608367", + "voter": "kamil5" }, { - "voter": "dobbydaba", - "rshares": "59295031" + "rshares": "59295031", + "voter": "dobbydaba" }, { - "voter": "andrewawerdna", - "rshares": "24294717617" + "rshares": "24294717617", + "voter": "andrewawerdna" }, { - "voter": "mandibil", - "rshares": "55367485477" + "rshares": "55367485477", + "voter": "mandibil" }, { - "voter": "steemitpatina", - "rshares": "4633082667" + "rshares": "4633082667", + "voter": "steemitpatina" }, { - "voter": "curpose", - "rshares": "51562255" + "rshares": "51562255", + "voter": "curpose" }, { - "voter": "steembriefing", - "rshares": "76072115" + "rshares": "76072115", + "voter": "steembriefing" }, { - "voter": "riv", - "rshares": "55750195" + "rshares": "55750195", + "voter": "riv" }, { - "voter": "runridefly", - "rshares": "2196862373" + "rshares": "2196862373", + "voter": "runridefly" }, { - "voter": "funkywanderer", - "rshares": "1783607101" + "rshares": "1783607101", + "voter": "funkywanderer" }, { - "voter": "jeremyfromwi", - "rshares": "2249900457" + "rshares": "2249900457", + "voter": "jeremyfromwi" }, { - "voter": "eight-rad", - "rshares": "2056057288" + "rshares": "2056057288", + "voter": "eight-rad" }, { - "voter": "troich", - "rshares": "51712804" + "rshares": "51712804", + "voter": "troich" }, { - "voter": "aggroed", - "rshares": "9458733324" + "rshares": "9458733324", + "voter": "aggroed" }, { - "voter": "crion", - "rshares": "51718188" + "rshares": "51718188", + "voter": "crion" }, { - "voter": "greatness", - "rshares": "182060433" + "rshares": "182060433", + "voter": "greatness" }, { - "voter": "hitherise", - "rshares": "51388276" + "rshares": "51388276", + "voter": "hitherise" }, { - "voter": "wiss", - "rshares": "51379706" + "rshares": "51379706", + "voter": "wiss" }, { - "voter": "sponge-bob", - "rshares": "54247555535" + "rshares": "54247555535", + "voter": "sponge-bob" }, { - "voter": "stroully", - "rshares": "52143228" + "rshares": "52143228", + "voter": "stroully" }, { - "voter": "ruscion", - "rshares": "88628906" + "rshares": "88628906", + "voter": "ruscion" }, { - "voter": "tatianka", - "rshares": "1086106040" + "rshares": "1086106040", + "voter": "tatianka" }, { - "voter": "apparat", - "rshares": "54175638" + "rshares": "54175638", + "voter": "apparat" }, { - "voter": "thadm", - "rshares": "51814474" + "rshares": "51814474", + "voter": "thadm" }, { - "voter": "prof", - "rshares": "51812703" + "rshares": "51812703", + "voter": "prof" }, { - "voter": "thecyclist", - "rshares": "157957231026" + "rshares": "157957231026", + "voter": "thecyclist" }, { - "voter": "smisi", - "rshares": "1655277599" + "rshares": "1655277599", + "voter": "smisi" }, { - "voter": "yorsens", - "rshares": "50370757" + "rshares": "50370757", + "voter": "yorsens" }, { - "voter": "asksisk", - "rshares": "201688406600" + "rshares": "201688406600", + "voter": "asksisk" }, { - "voter": "bane", - "rshares": "50065875" + "rshares": "50065875", + "voter": "bane" }, { - "voter": "vive", - "rshares": "50059754" + "rshares": "50059754", + "voter": "vive" }, { - "voter": "coad", - "rshares": "51142585" + "rshares": "51142585", + "voter": "coad" }, { - "voter": "sofa", - "rshares": "51922012" + "rshares": "51922012", + "voter": "sofa" }, { - "voter": "panther", - "rshares": "323483227" + "rshares": "323483227", + "voter": "panther" }, { - "voter": "plantbasedjunkie", - "rshares": "60610693" + "rshares": "60610693", + "voter": "plantbasedjunkie" }, { - "voter": "brains", - "rshares": "55341943517" + "rshares": "55341943517", + "voter": "brains" }, { - "voter": "mohamedmashaal", - "rshares": "517900727" + "rshares": "517900727", + "voter": "mohamedmashaal" }, { - "voter": "skypilot", - "rshares": "20617809185" + "rshares": "20617809185", + "voter": "skypilot" }, { - "voter": "ailo", - "rshares": "50933404" + "rshares": "50933404", + "voter": "ailo" }, { - "voter": "chick1", - "rshares": "5753290068" + "rshares": "5753290068", + "voter": "chick1" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "51568971" + "rshares": "51568971", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "51581492" + "rshares": "51581492", + "voter": "cwb" }, { - "voter": "anomaly", - "rshares": "339274981" + "rshares": "339274981", + "voter": "anomaly" }, { - "voter": "ola1", - "rshares": "147786454" + "rshares": "147786454", + "voter": "ola1" }, { - "voter": "eavy", - "rshares": "50441122" + "rshares": "50441122", + "voter": "eavy" }, { - "voter": "roto", - "rshares": "50454901" + "rshares": "50454901", + "voter": "roto" }, { - "voter": "mari5555na", - "rshares": "71955428" + "rshares": "71955428", + "voter": "mari5555na" }, { - "voter": "iggy", - "rshares": "157644916" + "rshares": "157644916", + "voter": "iggy" }, { - "voter": "dragonice", - "rshares": "51232949" + "rshares": "51232949", + "voter": "dragonice" }, { - "voter": "oxygen", - "rshares": "50907857" + "rshares": "50907857", + "voter": "oxygen" }, { - "voter": "motion", - "rshares": "50871059" + "rshares": "50871059", + "voter": "motion" }, { - "voter": "factom", - "rshares": "50796122" + "rshares": "50796122", + "voter": "factom" }, { - "voter": "autodesk", - "rshares": "50794039" + "rshares": "50794039", + "voter": "autodesk" }, { - "voter": "penthouse", - "rshares": "50565798" + "rshares": "50565798", + "voter": "penthouse" }, { - "voter": "fenix", - "rshares": "50538694" + "rshares": "50538694", + "voter": "fenix" }, { - "voter": "bapparabi", - "rshares": "2118281183" + "rshares": "2118281183", + "voter": "bapparabi" }, { - "voter": "opticalillusions", - "rshares": "50487909" + "rshares": "50487909", + "voter": "opticalillusions" }, { - "voter": "albertheijn", - "rshares": "50349676" + "rshares": "50349676", + "voter": "albertheijn" }, { - "voter": "remlaps1", - "rshares": "90053391" + "rshares": "90053391", + "voter": "remlaps1" }, { - "voter": "darkminded153", - "rshares": "239963421" + "rshares": "239963421", + "voter": "darkminded153" }, { - "voter": "grisha-danunaher", - "rshares": "527464783" + "rshares": "527464783", + "voter": "grisha-danunaher" }, { - "voter": "igtes", - "rshares": "72826233" + "rshares": "72826233", + "voter": "igtes" }, { - "voter": "buffett", - "rshares": "141679752" + "rshares": "141679752", + "voter": "buffett" }, { - "voter": "ranger", - "rshares": "161815656" + "rshares": "161815656", + "voter": "ranger" }, { - "voter": "witchcraftblog", - "rshares": "444435987" + "rshares": "444435987", + "voter": "witchcraftblog" }, { - "voter": "shadowproject", - "rshares": "161693690" + "rshares": "161693690", + "voter": "shadowproject" }, { - "voter": "user45-87", - "rshares": "160975092" + "rshares": "160975092", + "voter": "user45-87" }, { - "voter": "planet", - "rshares": "157182398" + "rshares": "157182398", + "voter": "planet" }, { - "voter": "disneypixar", - "rshares": "156043541" + "rshares": "156043541", + "voter": "disneypixar" }, { - "voter": "reef", - "rshares": "159143891" + "rshares": "159143891", + "voter": "reef" }, { - "voter": "steem-wallet", - "rshares": "158602900" + "rshares": "158602900", + "voter": "steem-wallet" }, { - "voter": "goldmatters", - "rshares": "31683945302" + "rshares": "31683945302", + "voter": "goldmatters" }, { - "voter": "storage", - "rshares": "68013381" + "rshares": "68013381", + "voter": "storage" }, { - "voter": "blackmarket", - "rshares": "58460105" + "rshares": "58460105", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "61530871" + "rshares": "61530871", + "voter": "gifts" }, { - "voter": "toddemaher1", - "rshares": "135637537" + "rshares": "135637537", + "voter": "toddemaher1" }, { - "voter": "milank", - "rshares": "153397644" + "rshares": "153397644", + "voter": "milank" }, { - "voter": "denise12", - "rshares": "153325742" + "rshares": "153325742", + "voter": "denise12" } ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 257, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/tanks/@gavvet/title-steel-monsters-tank-destroyers-of-ww-ii-eng-ua-featuring-burmik123-as-author", - "blacklists": [] - }, - { - "post_id": 958372, - "author": "gavvet", - "permlink": "three-benefits-of-living-with-a-disability-featuring-nextgen622-as-author", - "category": "life", - "title": "Three benefits of living with a disability (featuring @nextgen622 as author)", - "body": "Is this a typo? Benefits? You ask. How could there be any possible benefit from having a disability?\n\nWell, in fact there are. And here are three unexpected benefits I have personally experienced in my own journey living with a degenerating eye condition.\n\n## Improved lateral thinking and innovation\nGrowing up with a vision impairment meant that there were often things that most people took for granted, but which I struggled to do. To do the same things, I needed to come up with creative solutions and alternative ways of doing things. So from a very young age, I learnt to think laterally and developed my problem solving skills. Most people are so use to perceiving the world in a certain way, but when you are stripped of one of your senses, you learn to perceive things in a different way.\n\nhttps://ipfs.pics/ipfs/QmWb5pzYhKKJZ8zmeYqVeV6oNqGi5h7yDEtxBbjwRdTUZ7\n\nWhen I was still living by myself a few years ago, I had the annoying task of having to cook for myself each night. The challenge I faced in the kitchen was not been able to read the labels on various bottles and containers. As a result, I couldn't tell which container was the salt and which one was the sugar, and all the packaging for the herbs looked the same. So how did I manage? Instead of using sight, I used my sense of smell to distinguish between the herbs, and for some ingredients where I couldn't use the sense of smell, I used different containers and labels to help me identify all the different ingredients.\n\nAnd this leads on to the second benefit.\n\n## Improved memory\nPeople who know me well often comment on my ability to remember things. In fact, I've noticed this in many other people I know who also have a vision impairment. I think this is due to the fact that for someone with a vision impairment to thrive in a sighted world, we often need to make extra effort to adapt to our circumstances.\n\nFor example, I remember when I was still in university, I had to do many presentations. For most people, they could refer to speech notes as they are presenting. However, for me, this was not possible, as I couldn't read speech notes no matter how big the font was. Furthermore, as I have some sight, I never needed to learn braille, which meant I couldn't refer to braille notes either. _As a side note, this is why the title of my memoir which I've been posting on Steemit is \"Living in Between Two Worlds\", because I have often found myself being caught between the world of the sighted and the world of the blind, and also between the identity of being Chinese but not fully Chinese, and being Australian but not fully Australian._ As a result, every time I had to do a presentation, I would always remember the entire speech. Over time, this has become second nature to me. I have learnt how to force things into my memory, and be innovative when I need to.\n\n## Resilience\nGrowing up with a vision impairment, I experienced a lot of bullying at school and a lot of hurtful comments and actions from people, sometimes done knowingly and sometimes unknowingly. Sometimes this comes in the form of a patronising comment, and sometimes from a look or stare. The interesting thing with people staring and giving me strange looks is that I can often notice people are doing it to me because I have some peripheral vision, however people generally can't tell I'm looking back at them because it doesn't seem like I'm looking at them. Most of the time however, those hurtful words and actions are done out of ignorance and a lack of understanding, rather then out of malice.\n\n#### But from all these things I've experienced, it has made me a stronger and more resilient person.\nAs a result, whatever unforeseen things I may experience in life, there's not much that can knock me out completely. I have developed the ability to adapt to changing circumstances and stay optimistic, because as they say:\n### What doesn't kill you, makes you stronger.\n\nSo I'm thankful to God for the person I have become today. Disability isn't all bad. Without what I have gone through with my vision impairment, I wouldn't be the person I am today, and for these reasons, I am thankful.\n\nTo read more about my story, you can read my short memoir series. You can find [Part 1 here.](https://steemit.com/memoir/@nextgen622/living-in-between-two-worlds-my-memoir-part-1-updated)\n\nYou can also follow me on @nextgen622", + "blacklists": [], + "body": "Hello everyone. I did not write anything about World War II for a long time. So today I decided to tell you about the Tank Destroyers. About the machines, specialization of which was the destruction of tanks. In this article I will talk about the classic representatives of this class.\n>\u0412\u0441\u0456\u043c \u043f\u0440\u0438\u0432\u0456\u0442. \u0414\u0430\u0432\u043d\u0435\u043d\u044c\u043a\u043e \u044f \u043d\u0435 \u043f\u0438\u0441\u0430\u0432 \u043d\u0456\u0447\u043e\u0433\u043e \u043d\u0430 \u0442\u0435\u043c\u0443 \u0414\u0440\u0443\u0433\u043e\u0457 \u0421\u0432\u0456\u0442\u043e\u0432\u043e\u0457. \u0406 \u043e\u0441\u044c \u0441\u044c\u043e\u0433\u043e\u0434\u043d\u0456 \u044f \u0432\u0438\u0440\u0456\u0448\u0438\u0432 \u0440\u043e\u0437\u043f\u043e\u0432\u0456\u0441\u0442\u0438 \u0432\u0430\u043c \u043f\u0440\u043e \u041f\u0422-\u0421\u0410\u0423. \u041f\u0440\u043e \u043c\u0430\u0448\u0438\u043d\u0438, \u0441\u043f\u0435\u0446\u0456\u0430\u043b\u0456\u0437\u0430\u0446\u0456\u0454\u044e \u044f\u043a\u0438\u0445 \u0431\u0443\u043b\u043e \u0437\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0442\u0430\u043d\u043a\u0456\u0432. \u0423 \u0446\u0456\u0439 \u0447\u0430\u0441\u0442\u0438\u043d\u0456 \u044f \u0440\u043e\u0437\u043f\u043e\u0432\u0456\u043c \u043f\u0440\u043e \u043a\u043b\u0430\u0441\u0438\u0447\u043d\u0438\u0445 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043d\u0438\u043a\u0456\u0432 \u0441\u0432\u043e\u0433\u043e \u043a\u043b\u0430\u0441\u0443.\n\n# StuG III\nhttp://i.piccy.info/i9/3d367a52a1b8dc6c22f126332f335144/1473836215/88822/1063747/cqWCxy6vYP0.jpg\n\nLet's start with the most produced Tank Destroyer in the history. At the beginning of the WW II German command decided to create a mobile artillery on the basis of existing tanks, which would be able to support the infantry. The priority in new machine were the firepower, a good armor and cheapness. The firm Daimler-Benz successfully embodied these wishes into reality. There were about eight versions of StuG III, however, the main was Ausf. G. The cost of production of one StuG was quite low - 83 000 DM. Total was released 10500 machines. The basis for the creation was German tank PzKpfw III.\nInitially StuG III was equipped with a short-75mm gun, but when good armored Soviet T-34 came to the fronts, it was decided to replace short gun with a new long-barreled 75mm cannon Stuk 40 L / 48, which surely hit the Soviet tanks. StuG armor was quite good \u2013 50 mm in a front took a punch at a distance of 1 km. StuG III was very compact in a size and had good mobility. The main disadvantage was little size which allowed bad conditions for crew working. StuG III took active part in a war from the very beginning to its end. \nhttp://i.piccy.info/i9/5dc09cebc0ddfcd1fac4a8013ee385ad/1473836240/182233/1063747/5u9ghQyvkTc.jpg\n\n>\u041f\u043e\u0447\u043d\u0435\u043c\u043e \u0437 \u043d\u0430\u0439\u043c\u0430\u0441\u043e\u0432\u0456\u0448\u0457 \u041f\u0422-\u0421\u0410\u0423 \u0432 \u0456\u0441\u0442\u043e\u0440\u0456\u0457. \u041d\u0430 \u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0432\u0456\u0439\u043d\u0438 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u0438\u0440\u0456\u0448\u0438\u043b\u043e \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0443 \u0430\u0440\u0442\u0438\u043b\u0435\u0440\u0456\u044e \u043d\u0430 \u0431\u0430\u0437\u0456 \u0432\u0436\u0435 \u043d\u0430\u044f\u0432\u043d\u0438\u0445 \u0442\u0430\u043d\u043a\u0456\u0432, \u0437\u0434\u0430\u0442\u043d\u0443 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0430\u0442\u0438 \u043f\u0456\u0445\u043e\u0442\u0443. \u041f\u0440\u0456\u043e\u0440\u0438\u0442\u0435\u0442\u043d\u043e\u044e \u0431\u0443\u043b\u0430 \u0432\u043e\u0433\u043d\u0435\u0432\u0430 \u043c\u0456\u0446\u044c, \u0433\u0430\u0440\u043d\u0435 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f \u0456 \u0434\u0435\u0448\u0435\u0432\u0438\u0437\u043d\u0430. \u0424\u0456\u0440\u043c\u0430 Daimler-Benz \u0432\u0434\u0430\u043b\u043e \u0432\u0442\u0456\u043b\u0438\u043b\u0430 \u0446\u0456 \u043f\u043e\u0431\u0430\u0436\u0430\u043d\u043d\u044f \u0432 \u0440\u0435\u0430\u043b\u044c\u043d\u0456\u0441\u0442\u044c. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0431\u043b\u0438\u0437\u044c\u043a\u043e \u0432\u043e\u0441\u044c\u043c\u0438 \u043c\u043e\u0434\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u0439 StuG III, \u043f\u0440\u043e\u0442\u0435 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u044e \u0431\u0443\u043b\u0430 Ausf. G. \u0412\u0430\u0440\u0442\u0456\u0441\u0442\u044c \u043e\u0434\u043d\u0456\u0454\u0457 \u041f\u0422-\u0421\u0410\u0423 \u0431\u0443\u043b\u0430 \u0434\u043e\u0441\u0438\u0442\u044c \u043d\u0438\u0437\u044c\u043a\u043e\u044e - 83 000 \u043c\u0430\u0440\u043e\u043a. \u0421\u0443\u043c\u0430\u0440\u043d\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 10500 \u043c\u0430\u0448\u0438\u043d. \u0411\u0430\u0437\u043e\u044e \u0434\u043b\u044f \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f \u043f\u043e\u0441\u043b\u0443\u0436\u0438\u0432 \u0442\u0430\u043d\u043a PzKpfw III.\n\u0421\u043f\u043e\u0447\u0430\u0442\u043a\u0443 StuG III \u043e\u0441\u043d\u0430\u0449\u0443\u0432\u0430\u0432\u0441\u044f \u043a\u043e\u0440\u043e\u0442\u043a\u043e\u0441\u0442\u0432\u043e\u043b\u044c\u043d\u043e\u044e 75\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u043e\u044e, \u043e\u0434\u043d\u0430\u043a \u0437 \u043f\u043e\u044f\u0432\u043e\u044e \u043d\u0430 \u0444\u0440\u043e\u043d\u0442\u0430\u0445 \u0422-34 \u0431\u0443\u043b\u043e \u043f\u0440\u0438\u0439\u043d\u044f\u0442\u043e \u0440\u0456\u0448\u0435\u043d\u043d\u044f \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0457\u0457 \u043d\u0430 \u043d\u043e\u0432\u0443 \u0434\u043e\u0432\u0433\u043e\u0441\u0442\u0432\u043e\u043b\u044c\u043d\u0443 75\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u0443 Stuk 40 L / 48, \u044f\u043a\u0430 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u043e \u0432\u0440\u0430\u0436\u0430\u043b\u0430 \u0440\u0430\u0434\u044f\u043d\u0441\u044c\u043a\u0456 \u0442\u0430\u043d\u043a\u0438. \u0411\u0440\u043e\u043d\u044f \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 \u0443 \u043b\u043e\u0431\u0456 \u0431\u0443\u043b\u0430 50 \u043c\u043c \u0456 \u0442\u0440\u0438\u043c\u0430\u043b\u0430 \u0443\u0434\u0430\u0440 \u043d\u0430 \u0432\u0456\u0434\u0441\u0442\u0430\u043d\u0456 1 \u043a\u043c. StuG III \u0432\u0456\u0434\u0440\u0456\u0437\u043d\u044f\u0432\u0441\u044f \u043a\u043e\u043c\u043f\u0430\u043a\u0442\u043d\u0438\u043c\u0438 \u0440\u043e\u0437\u043c\u0456\u0440\u0430\u043c\u0438, \u0445\u043e\u0440\u043e\u0448\u043e\u044e \u043c\u0430\u043d\u0435\u0432\u0440\u0435\u043d\u0456\u0441\u0442\u044e \u0442\u0430 \u043d\u0435\u043f\u043e\u0433\u0430\u043d\u043e\u044e \u0448\u0432\u0438\u0434\u043a\u0456\u0441\u0442\u044e. \u0417 \u043d\u0435\u0434\u043e\u043b\u0456\u043a\u0456\u0432 \u0432\u0430\u0440\u0442\u043e \u0432\u0456\u0434\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u043d\u0435\u0437\u0440\u0443\u0447\u043d\u0456\u0441\u0442\u044c \u0440\u043e\u0431\u043e\u0442\u0438 \u0435\u043a\u0456\u043f\u0430\u0436\u0443 \u0447\u0435\u0440\u0435\u0437 \u043d\u0435\u0432\u0435\u043b\u0438\u043a\u0438\u0439 \u0437\u0430 \u0431\u0440\u043e\u043d\u044c\u043e\u0432\u0438\u0439 \u043f\u0440\u043e\u0441\u0442\u0456\u0440. \u041c\u0430\u0448\u0438\u043d\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0431\u0440\u0430\u043b\u0430 \u0443\u0447\u0430\u0441\u0442\u044c \u0437 \u0441\u0430\u043c\u043e\u0433\u043e \u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0432\u0456\u0439\u043d\u0438 \u0456 \u0434\u043e \u0457\u0457 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u044f.\n\n# Su-85 (100) \u0421\u0423-85 (100)\nhttp://i.piccy.info/i9/b5ef17359d201f4a7a61b38b5e6ca72f/1473836271/164656/1063747/kKktJUlUuXk.jpg\n\nTowards in 1943 it became clear for the Soviet command that to deal effectively with new German tanks Soviet army required new, more modern machines and Tank Destroyers. It was decided to create new Tank Destroyer based on the T-34, driving performance and armor of which were very good. Development of a new machine was conducted at Uralmash factory.\nSu-85 had a new long-barreled 85mm gun, similar to that which will soon be installed at T-34-85. This gun was able to destroy enemy medium tanks at the distance of over a kilometer, and heavy tanks \u2013 at 800 meters to a front plate. The gun was placed in the middle part of the Tanks Destroyer body and had angles of + - 8 degrees. Also the inside size of tanks was nice which allowed good conditions for crew working. Driving characteristics inherited from the T-34-85. Armor (45 mm at the front with big armor slope) provided good protection against German medium tanks. A little later, with the release of the T-34-85, SU-85 was converted under the new 100mm gun. It was a tool for successfully destroying any enemy tanks, including Tiger 2. Also Su-100 had a very low silhouette, which contributed to an excellent disguise. Observation and aiming devices have been improved. SU-100 was easy to maintain. This Tank Destroyer applied to the end of the WW II. Total were released 4976 SU-100 and 2050 SU-85.\nhttp://i.piccy.info/i9/4dc33c464a97ab5b3b8b294778f28103/1473836298/33303/1063747/WVaI_c18Lyw.jpg\n\n>\u0411\u043b\u0438\u0436\u0447\u0435 \u0434\u043e 1943 \u0440\u043e\u043a\u0443 \u0440\u0430\u0434\u044f\u043d\u0441\u044c\u043a\u043e\u043c\u0443 \u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u043d\u043d\u044e \u0441\u0442\u0430\u043b\u043e \u0437\u0440\u043e\u0437\u0443\u043c\u0456\u043b\u043e, \u0449\u043e \u0434\u043b\u044f \u0435\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0457 \u0431\u043e\u0440\u043e\u0442\u044c\u0431\u0438 \u0437 \u043d\u043e\u0432\u0438\u043c\u0438 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0438\u043c\u0438 \u0442\u0430\u043d\u043a\u0430\u043c\u0438 \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u0456 \u0431\u0456\u043b\u044c\u0448 \u0441\u0443\u0447\u0430\u0441\u043d\u0456 \u043c\u0430\u0448\u0438\u043d\u0438. \u0411\u0443\u043b\u043e \u0432\u0438\u0440\u0456\u0448\u0435\u043d\u043e \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0443 \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043d\u0443 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443 \u043d\u0430 \u0431\u0430\u0437\u0456 \u0442\u0430\u043d\u043a\u0430 \u0422-34, \u0445\u043e\u0434\u043e\u0432\u0456 \u044f\u043a\u043e\u0441\u0442\u0456 \u0456 \u0431\u0440\u043e\u043d\u044f \u044f\u043a\u043e\u0433\u043e \u0431\u0443\u043b\u0438 \u0434\u0443\u0436\u0435 \u0445\u043e\u0440\u043e\u0448\u0456. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u043d\u043e\u0432\u043e\u0457 \u041f\u0422-\u0421\u0410\u0423 \u0432\u0435\u043b\u0430\u0441\u044f \u043d\u0430 \u0423\u0440\u0430\u043b\u043c\u0430\u0448\u0437\u0430\u0432\u043e\u0434\u0456.\n\u0421\u0423-85 \u043c\u0430\u043b\u0430 \u043d\u043e\u0432\u0443 85\u043c\u043c \u043d\u0430\u0440\u0456\u0437\u043d\u0443 \u0433\u0430\u0440\u043c\u0430\u0442\u0443, \u0430\u043d\u0430\u043b\u043e\u0433\u0456\u0447\u043d\u0443 \u0437 \u0442\u043e\u044e, \u044f\u043a\u0430 \u043d\u0435\u0437\u0430\u0431\u0430\u0440\u043e\u043c \u0431\u0443\u0434\u0435 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u043d\u0430 \u0442 34-85. \u0412\u043e\u043d\u0430 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u043b\u043e \u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u043b\u0435\u043c \u0432\u0440\u0430\u0436\u0430\u0442\u0438 \u0441\u0435\u0440\u0435\u0434\u043d\u0456 \u0442\u0430\u043d\u043a\u0438 \u0441\u0443\u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430 \u043d\u0430 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0456\u0457 \u0431\u0456\u043b\u044c\u0448\u0435 \u043a\u0456\u043b\u043e\u043c\u0435\u0442\u0440\u0430, \u0430 \u0432\u0430\u0436\u043a\u0456 - \u043d\u0430 800 \u043c\u0435\u0442\u0440\u0430\u0445. \u0413\u0430\u0440\u043c\u0430\u0442\u0430 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u044e\u0432\u0430\u043b\u0430\u0441\u044f \u043f\u0440\u044f\u043c\u043e \u0432 \u043a\u043e\u0440\u043f\u0443\u0441 \u0456 \u043c\u0430\u043b\u043e \u043a\u0443\u0442\u0438 \u043d\u0430\u0432\u0435\u0434\u0435\u043d\u043d\u044f \u0432 + - 8 \u0433\u0440\u0430\u0434\u0443\u0441\u0456\u0432. \u041a\u043e\u0440\u043f\u0443\u0441 \u0431\u0443\u0432 \u0432\u0456\u0434\u043d\u043e\u0441\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u043e\u0440\u0438\u0439 \u0456 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u0432 \u0437 \u043a\u043e\u043c\u0444\u043e\u0440\u0442\u043e\u043c \u043f\u0440\u0430\u0446\u044e\u0432\u0430\u0442\u0438 \u0435\u043a\u0456\u043f\u0430\u0436\u0443. \u0425\u043e\u0434\u043e\u0432\u0456 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u0421\u0423 \u0443\u0441\u043f\u0430\u0434\u043a\u0443\u0432\u0430\u043b\u0430 \u0432\u0456\u0434 \u0442-34. \u0411\u0440\u043e\u043d\u044f (45\u043c\u043c \u043f\u0456\u0434 \u043d\u0430\u0445\u0438\u043b\u043e\u043c) \u0437\u0430\u0431\u0435\u0437\u043f\u0435\u0447\u0443\u0432\u0430\u043b\u0430 \u0445\u043e\u0440\u043e\u0448\u0438\u0439 \u0437\u0430\u0445\u0438\u0441\u0442 \u0432\u0456\u0434 \u043f\u043e\u0441\u0442\u0440\u0456\u043b\u0456\u0432 \u0441\u0435\u0440\u0435\u0434\u043d\u0456\u0445 \u0442\u0430\u043d\u043a\u0456\u0432 \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430. \u0422\u0440\u043e\u0445\u0438 \u043f\u0456\u0437\u043d\u0456\u0448\u0435 \u0437 \u0432\u0438\u0445\u043e\u0434\u043e\u043c \u0442\u0430\u043d\u043a\u0430 \u0442 34-85 \u0421\u0443\u0448\u043a\u0438 \u0431\u0443\u043b\u0438 \u043f\u0435\u0440\u0435\u043e\u0431\u043b\u0430\u0434\u043d\u0430\u043d\u0456 \u043f\u0456\u0434 \u043d\u043e\u0432\u0443 100\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u0443. \u0426\u044f \u0433\u0430\u0440\u043c\u0430\u0442 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u043b\u0430 \u0443\u0441\u043f\u0456\u0448\u043d\u043e \u0431\u043e\u0440\u043e\u0442\u0438\u0441\u044f \u0437 \u0431\u0443\u0434\u044c-\u044f\u043a\u0438\u043c \u0442\u0430\u043d\u043a\u043e\u043c \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430, \u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0447\u0438 \u0456 \u0422\u0438\u0433\u0440 2. \u0422\u0430\u043a\u043e\u0436 \u0432\u0430\u0440\u0442\u043e \u0432\u0456\u0434\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u043d\u0438\u0437\u044c\u043a\u0438\u0439 \u0441\u0438\u043b\u0443\u0435\u0442 \u043c\u0430\u0448\u0438\u043d\u0438, \u044f\u043a\u0438\u0439 \u0441\u043f\u0440\u0438\u044f\u0432 \u0432\u0456\u0434\u043c\u0456\u043d\u043d\u043e\u043c\u0443 \u043c\u0430\u0441\u043a\u0443\u0432\u0430\u043d\u043d\u044e. \u0411\u0443\u043b\u0438 \u043f\u043e\u043b\u0456\u043f\u0448\u0435\u043d\u0456 \u043f\u0440\u0438\u043b\u0430\u0434\u0438 \u0441\u043f\u043e\u0441\u0442\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f \u0439 \u043f\u0440\u0438\u0446\u0456\u043b\u044e\u0432\u0430\u043d\u043d\u044f. \u0422\u0435\u0445\u043d\u0456\u043a\u0430 \u0431\u0443\u043b\u0430 \u043f\u0440\u043e\u0441\u0442\u0430 \u0432 \u043e\u0431\u0441\u043b\u0443\u0433\u043e\u0432\u0443\u0432\u0430\u043d\u043d\u0456. \u0426\u044f \u041f\u0422-\u0421\u0410\u0423 \u0437\u0430\u0441\u0442\u043e\u0441\u043e\u0432\u0443\u0432\u0430\u043b\u0430\u0441\u044f \u0434\u043e \u0441\u0430\u043c\u043e\u0433\u043e \u043a\u0456\u043d\u0446\u044f \u0432\u0456\u0439\u043d\u0438. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 4976 \u0421\u0423-100 \u0456 2050 \u0421\u0423-85.\n\n# Jagdpanther (\u042f\u0433\u0434\u043f\u0430\u043d\u0442\u0435\u0440\u0430)\nhttp://i.piccy.info/i9/201bcdc4469d546e806e4a38ba752ea7/1473836330/161907/1063747/_jvoDheMLik.jpg\n\nIn the middle of 1942 the German command decided to create a new Tank Destroyer with 88mm anti-tank gun Pak-43, using the basis of medium tank \u201cPanther\u201d. The development of this Tank Destroyer at first was carried by a Krupp company, then it was given to a Daimler-Benz and at last it was finished by a MIAG company. So, the destiny of Jagdpather was hard. The development has been complicated by the regular air raids allies, constant shortage of necessary parts and confusion in the serial versions of the machine. Jagdpanther took the most actively part in the Ardennes offensive and the Balaton operation.\nhttp://i.piccy.info/i9/d2e68a346dd9f511c77c83d8b77eaf87/1473836361/30639/1063747/XmYA_dzfCU8.jpg\n\nIn general, as a Tank Destroyer Jagdpanthere was great. Maneuverability and speed characteristics were good because of using \u201cPanther\u201d basis. Armor of Jagdpanthere (80 mm in the front with a good armor slope) confidently defended the machine and a crew at the distance of 800 meters from all Soviet tanks. The new 88mm anti-tank gun allowed to destroy the enemy at a distance of 1km. Rate of fire at the same time was very high - 8 rounds per minute. The fighting compartment inside of a car was spacious and was equipped with ventilation, increasing the convenience of the crew working. And don\u2019t forget than Jagdpanther had a low silhouette. The disadvantages were the relatively high cost of the machine (due to the use of scarce materials), unreliability and complexity of the transmission service. Jagdpanther has established itself as a formidable and dangerous opponent, specializing in the destruction of tanks. Total were produced 392 cars.\nhttp://i.piccy.info/i9/f1590af47cd302853838f357b7786d76/1473836385/192289/1063747/V3N3_0icSI.jpg\n\n>\u0423 \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0438 1942 \u0440\u043e\u043a\u0443 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0432\u0430\u043d\u043d\u044f \u043f\u0440\u0438\u0439\u043d\u044f\u043b\u043e \u0440\u0456\u0448\u0435\u043d\u043d\u044f \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u041f\u0422-\u0421\u0410\u0423 \u0437 \u043d\u043e\u0432\u043e\u044e \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u043e\u044e 88\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u043e\u044e \u0420\u0430\u043a-43 \u043d\u0430 \u0431\u0430\u0437\u0456 \u0441\u0435\u0440\u0435\u0434\u043d\u044c\u043e\u0433\u043e \u0442\u0430\u043d\u043a\u0430 \u041f\u0430\u043d\u0442\u0435\u0440\u0430. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0443 \u041f\u0422-\u0421\u0410\u0423 \u0441\u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0432\u0435\u043b\u0430 \u0444\u0456\u0440\u043c\u0430 \u041a\u0440\u0443\u043f\u043f, \u043f\u0456\u0437\u043d\u0456\u0448\u0435 \u043f\u0440\u043e\u0435\u043a\u0442 \u0434\u043e\u0440\u043e\u0431\u043b\u044f\u0432\u0441\u044f \u0444\u0456\u0440\u043c\u043e\u044e Daimler-Benz, \u0430 \u0432 \u0441\u0430\u043c\u043e\u043c\u0443 \u043a\u0456\u043d\u0446\u0456 - MIAG. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u0431\u0443\u043b\u0430 \u0443\u0441\u043a\u043b\u0430\u0434\u043d\u0435\u043d\u0430 \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u0438\u043c\u0438 \u0430\u0432\u0456\u0430 \u043d\u0430\u043b\u044c\u043e\u0442\u0430\u043c\u0438 \u0441\u043e\u044e\u0437\u043d\u0438\u043a\u0456\u0432, \u043f\u043e\u0441\u0442\u0456\u0439\u043d\u0438\u043c\u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0447\u0430\u043c\u0438 \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u0438\u0445 \u0434\u0435\u0442\u0430\u043b\u0435\u0439 \u0456 \u043f\u043b\u0443\u0442\u0430\u043d\u0438\u043d\u043e\u044e \u0432 \u0441\u0435\u0440\u0456\u0439\u043d\u0438\u0445 \u043c\u043e\u0434\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u044f\u0445 \u043c\u0430\u0448\u0438\u043d\u0438. \u041d\u0430\u0439\u0431\u0456\u043b\u044c\u0448 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u042f\u0433\u0434\u043f\u0430\u043d\u0442\u0435\u0440\u0438 \u0431\u0440\u0430\u043b\u0438 \u0443\u0447\u0430\u0441\u0442\u044c \u0432 \u0410\u0440\u0434\u0435\u043d\u0441\u044c\u043a\u043e\u043c\u0443 \u043d\u0430\u0441\u0442\u0443\u043f\u0456 \u0442\u0430 \u0411\u0430\u043b\u0430\u0442\u043e\u043d\u0441\u044c\u043a\u0456\u0439 \u043e\u043f\u0435\u0440\u0430\u0446\u0456\u0457.\n\u0412 \u0446\u0456\u043b\u043e\u043c\u0443 \u0441\u0430\u043c\u043e\u0445\u043e\u0434\u043a\u0430 \u0432\u0438\u0439\u0448\u043b\u0430 \u0432\u0434\u0430\u043b\u043e\u044e. \u0425\u043e\u0434\u043e\u0432\u0456 \u0456 \u043c\u0430\u043d\u0435\u0432\u0440\u0435\u043d\u0456 \u044f\u043a\u043e\u0441\u0442\u0456 \u0432\u043e\u043d\u0430 \u0446\u0456\u043b\u043a\u043e\u043c \u0443\u0441\u043f\u0430\u0434\u043a\u0443\u0432\u0430\u043b\u0430 \u0432\u0456\u0434 \u041f\u0430\u043d\u0442\u0435\u0440\u0438 \u0456 \u0432\u043e\u043d\u0438 \u0431\u0443\u043b\u0438 \u043d\u0430 \u0432\u0438\u0441\u043e\u043a\u043e\u043c\u0443 \u0440\u0456\u0432\u043d\u0456. \u0411\u0440\u043e\u043d\u044f \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 (80 \u043c\u043c \u0432 \u043b\u043e\u0431\u0456 \u043f\u0456\u0434 \u0445\u043e\u0440\u043e\u0448\u0438\u043c \u043d\u0430\u0445\u0438\u043b\u043e\u043c) \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u043e \u0437\u0430\u0445\u0438\u0449\u0430\u043b\u0430 \u0457\u0457 \u043d\u0430 \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0456\u044f\u0445 \u0432\u0456\u0434 800 \u043c\u0435\u0442\u0440\u0456\u0432. \u041d\u043e\u0432\u0430 88\u043c\u043c \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0430 \u0433\u0430\u0440\u043c\u0430\u0442\u0430 \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u043b\u0430 \u0432\u0435\u0441\u0442\u0438 \u043f\u0440\u0438\u0446\u0456\u043b\u044c\u043d\u0438\u0439 \u0432\u043e\u0433\u043e\u043d\u044c \u043f\u043e \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0443 \u043d\u0430 \u0432\u0456\u0434\u0441\u0442\u0430\u043d\u0456 1\u043a\u043c. \u0422\u0435\u043c\u043f \u0441\u0442\u0440\u0456\u043b\u044c\u0431\u0438 \u043f\u0440\u0438 \u0446\u044c\u043e\u043c\u0443 \u0431\u0443\u0432 \u0434\u0443\u0436\u0435 \u0432\u0438\u0441\u043e\u043a\u0438\u0439 - 8 \u043f\u043e\u0441\u0442\u0440\u0456\u043b\u0456\u0432 \u043d\u0430 \u0445\u0432\u0438\u043b\u0438\u043d\u0443. \u0411\u043e\u0439\u043e\u0432\u0435 \u0432\u0456\u0434\u0434\u0456\u043b\u0435\u043d\u043d\u044f \u043c\u0430\u0448\u0438\u043d\u0438 \u0431\u0443\u043b\u043e \u043f\u0440\u043e\u0441\u0442\u043e\u0440\u0438\u043c \u0456 \u043e\u0441\u043d\u0430\u0449\u0443\u0432\u0430\u043b\u043e\u0441\u044f \u0432\u0435\u043d\u0442\u0438\u043b\u044f\u0446\u0456\u0454\u044e, \u0449\u043e \u043f\u0456\u0434\u0432\u0438\u0449\u0443\u0432\u0430\u043b\u043e \u0437\u0440\u0443\u0447\u043d\u043e\u0441\u0442\u0456 \u0440\u043e\u0431\u043e\u0442\u0438 \u0435\u043a\u0456\u043f\u0430\u0436\u0443. \u041f\u0440\u0438\u043b\u0430\u0434\u0438 \u0441\u043f\u043e\u0441\u0442\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f \u0456 \u043f\u0440\u0438\u0446\u0456\u043b\u0438 \u0431\u0443\u043b\u0438 \u044f\u043a \u0437\u0430\u0432\u0436\u0434\u0438 \u043d\u0430 \u0432\u0438\u0449\u043e\u043c\u0443 \u0440\u0456\u0432\u043d\u0456. \u041f\u0422-\u0421\u0410\u0423 \u043c\u0430\u043b\u0430 \u043d\u0438\u0437\u044c\u043a\u0438\u0439 \u0441\u0438\u043b\u0443\u0435\u0442. \u0417 \u043d\u0435\u0434\u043e\u043b\u0456\u043a\u0456\u0432 \u0432\u0430\u0440\u0442\u043e \u0432\u0456\u0434\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u0432\u0456\u0434\u043d\u043e\u0441\u043d\u043e \u0432\u0438\u0441\u043e\u043a\u0443 \u0432\u0430\u0440\u0442\u0456\u0441\u0442\u044c \u043c\u0430\u0448\u0438\u043d\u0438 (\u0447\u0435\u0440\u0435\u0437 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u044f \u0434\u0435\u0444\u0456\u0446\u0438\u0442\u043d\u0438\u0445 \u043c\u0430\u0442\u0435\u0440\u0456\u0430\u043b\u0456\u0432), \u043d\u0435\u043d\u0430\u0434\u0456\u0439\u043d\u0456\u0441\u0442\u044c \u0442\u0440\u0430\u043d\u0441\u043c\u0456\u0441\u0456\u0457 \u0456 \u0441\u043a\u043b\u0430\u0434\u043d\u0456\u0441\u0442\u044c \u0432 \u043e\u0431\u0441\u043b\u0443\u0433\u043e\u0432\u0443\u0432\u0430\u043d\u043d\u0456. \u0422\u0430\u043a\u043e\u0436 \u043d\u0435\u0437\u0430\u0434\u043e\u0432\u0456\u043b\u044c\u043d\u043e\u044e \u0431\u0443\u043b\u0430 \u0431\u0440\u043e\u043d\u044f \u0431\u043e\u0440\u0442\u0456\u0432. \u042f\u0433\u0434\u043f\u0430\u043d\u0442\u0435\u0440\u0430 \u0437\u0430\u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0432\u0430\u043b\u0430 \u0441\u0435\u0431\u0435 \u044f\u043a \u0433\u0440\u0456\u0437\u043d\u0438\u0439 \u0456 \u043d\u0435\u0431\u0435\u0437\u043f\u0435\u0447\u043d\u0438\u0439 \u0441\u0443\u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a, \u0449\u043e \u0441\u043f\u0435\u0446\u0456\u0430\u043b\u0456\u0437\u0443\u0454\u0442\u044c\u0441\u044f \u043d\u0430 \u0432\u0438\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0442\u0430\u043d\u043a\u0456\u0432. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 392 \u043c\u0430\u0448\u0438\u043d\u0438.\n\n# M18 \u201cHellcat\u201d\nhttp://i.piccy.info/i9/96dea13cac0295bde2f7c6dd2ddf0f93/1473836416/237135/1063747/Zt4ltwPq9qQ.jpg\n\nThe design of the American Tank Destroyer was caused by the US military doctrine. In contrast to the Germans and the Soviets, who had good-armored Tank Destroyers with a powerful anti-tank gun and mediocre mobility, American Tank Destroyers were oriented on a good mobility firstly. M18 was developed for quickly interception of enemy tank formations and the destruction of their flanks. This also caused the weak armor, small caliber of guns and excellent mobility equipment. M18 had been developed by General Motors Buick Division, the cost of one machine was 57,000 dollars. Total it was produced 2507 M18.\nAt first it was planned to put the 37mm gun, but very soon it was decided to replace it by the 57mm British gun. But this was not enough, and in the final version M18 was equipped with a 76mm cannon from Shermans. New Tank Destroyer had a very light weight, had weak armor (20mm in the forehead) and the rotating tower, which was unusual for that time. Suspension provides the convenience of driving on rough terrain; the engine allowed reaching speed up to 45 km per hour. M18 was easy to operate and convenient to use. In general, the machine was ambiguous, absorbing a lot of bold decisions.\nhttp://i.piccy.info/i9/df0129bd789f7923e8f0306e5a8b6520/1473836445/147058/1063747/pxmv2fJDVRs.jpg\n\n>\u041a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0456\u044f \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u043e\u0433\u043e \u0432\u0438\u043d\u0438\u0449\u0443\u0432\u0430\u0447\u0430 \u0442\u0430\u043d\u043a\u0456\u0432 \u043e\u0431\u0443\u043c\u043e\u0432\u043b\u0435\u043d\u0430 \u0432 \u043f\u0435\u0440\u0448\u0443 \u0447\u0435\u0440\u0433\u0443 \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u043e\u044e \u0432\u0456\u0439\u0441\u044c\u043a\u043e\u0432\u043e\u044e \u0434\u043e\u043a\u0442\u0440\u0438\u043d\u043e\u044e. \u041d\u0430 \u0432\u0456\u0434\u043c\u0456\u043d\u0443 \u0432\u0456\u0434 \u043d\u0456\u043c\u0435\u0446\u044c\u043a\u0438\u0445 \u0456 \u0440\u0430\u0434\u044f\u043d\u0441\u044c\u043a\u0438\u0445 \u0430\u0440\u043c\u0456\u0439, \u0443 \u044f\u043a\u0438\u0445 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0456 \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 \u043c\u0430\u043b\u0438 \u0433\u0430\u0440\u043d\u0443 \u043b\u043e\u0431\u043e\u0432\u0443 \u0431\u0440\u043e\u043d\u044e, \u043f\u043e\u0442\u0443\u0436\u043d\u0443 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0443 \u0433\u0430\u0440\u043c\u0430\u0442\u0443 \u0456 \u043f\u043e\u0441\u0435\u0440\u0435\u0434\u043d\u044e \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0456\u0441\u0442\u044c, \u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u044c\u043a\u0456 \u043f\u0440\u043e\u0442\u0438\u0442\u0430\u043d\u043a\u043e\u0432\u0456 \u0441\u0430\u043c\u043e\u0445\u0456\u0434\u043a\u0438 \u0432 \u043f\u0435\u0440\u0448\u0443 \u0447\u0435\u0440\u0433\u0443 \u043f\u043e\u0432\u0438\u043d\u043d\u0456 \u0431\u0443\u043b\u0438 \u0431\u0443\u0442\u0438 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0456. \u041c18 \u0440\u043e\u0437\u0440\u043e\u0431\u043b\u044f\u0432\u0441\u044f \u0434\u043b\u044f \u0448\u0432\u0438\u0434\u043a\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0445\u043e\u043f\u043b\u0435\u043d\u043d\u044f \u0442\u0430\u043d\u043a\u043e\u0432\u0438\u0445 \u0437'\u0454\u0434\u043d\u0430\u043d\u044c \u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430 \u0456 \u0437\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0457\u0445 \u0437 \u0444\u043b\u0430\u043d\u0433\u0456\u0432. \u0426\u0438\u043c \u0456 \u043e\u0431\u0443\u043c\u043e\u0432\u043b\u044e\u0432\u0430\u043b\u0430\u0441\u044f \u0441\u043b\u0430\u0431\u043a\u0435 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f, \u043d\u0435\u0432\u0435\u043b\u0438\u043a\u0438\u0439 \u043a\u0430\u043b\u0456\u0431\u0440 \u0433\u0430\u0440\u043c\u0430\u0442\u0438 \u0456 \u0432\u0456\u0434\u043c\u0456\u043d\u043d\u0430 \u043c\u043e\u0431\u0456\u043b\u044c\u043d\u0456\u0441\u0442\u044c \u0442\u0435\u0445\u043d\u0456\u043a\u0438. \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u0432\u0435\u043b\u0430\u0441\u044f \u0444\u0456\u0440\u043c\u043e\u044e General Motors Buick Division, \u0432\u0430\u0440\u0442\u0456\u0441\u0442\u044c \u043e\u0434\u043d\u0456\u0454\u0457 \u043c\u0430\u0448\u0438\u043d\u0438 \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b\u0430 57000 \u0434\u043e\u043b\u0430\u0440\u0456\u0432. \u0412\u0441\u044c\u043e\u0433\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u043f\u0443\u0449\u0435\u043d\u043e 2507 \u041f\u0422-\u0421\u0410\u0423 \u041c18.\n\u0421\u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u043f\u043b\u0430\u043d\u0443\u0432\u0430\u043b\u043e\u0441\u044f \u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u0438 37\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u0443, \u043f\u0440\u043e\u0442\u0435 \u0434\u0443\u0436\u0435 \u0441\u043a\u043e\u0440\u043e \u0431\u0443\u043b\u043e \u0432\u0438\u0440\u0456\u0448\u0435\u043d\u043e \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0457\u0457 \u043d\u0430 57\u043c\u043c \u0431\u0440\u0438\u0442\u0430\u043d\u0441\u044c\u043a\u0443 \u0433\u0430\u0440\u043c\u0430\u0442\u0443. \u0410\u043b\u0435 \u0446\u044c\u043e\u0433\u043e \u0432\u0438\u044f\u0432\u0438\u043b\u043e\u0441\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043d\u044c\u043e, \u0456 \u0432 \u0444\u0456\u043d\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u0432\u0430\u0440\u0456\u0430\u043d\u0442\u0456 \u041c18 \u043e\u0441\u043d\u0430\u0449\u0443\u0432\u0430\u043b\u0430\u0441\u044f 76\u043c\u043c \u0433\u0430\u0440\u043c\u0430\u0442\u043e\u044e, \u0449\u043e \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u044e\u0432\u0430\u043b\u0430\u0441\u044f \u043d\u0430 \u0442\u0430\u043d\u043a\u0438 \u0428\u0435\u0440\u043c\u0430\u043d. \u041f\u0422-\u0421\u0410\u0423 \u0431\u0443\u043b\u0430 \u0434\u0443\u0436\u0435 \u043b\u0435\u0433\u043a\u0430, \u043c\u0430\u043b\u0430 \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043a\u0443\u043b\u044c\u043e\u0432\u0435 \u0431\u0440\u043e\u043d\u044e\u0432\u0430\u043d\u043d\u044f (20\u043c\u043c \u0432 \u043b\u043e\u0431\u0456) \u0456 \u043f\u043e\u0432\u043e\u0440\u043e\u0442\u043d\u0443 \u0431\u0430\u0448\u0442\u0443, \u0449\u043e \u0431\u0443\u043b\u043e \u043d\u0435\u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u043d\u043e \u0434\u043b\u044f \u041f\u0422-\u0421\u0410\u0423 \u0442\u043e\u0433\u043e \u0447\u0430\u0441\u0443. \u041f\u0456\u0434\u0432\u0456\u0441\u043a\u0430 \u0437\u0430\u0431\u0435\u0437\u043f\u0435\u0447\u0443\u0432\u0430\u043b\u0430 \u0437\u0440\u0443\u0447\u043d\u0456\u0441\u0442\u044c \u0457\u0437\u0434\u0438 \u043f\u043e \u043f\u0435\u0440\u0435\u0441\u0456\u0447\u0435\u043d\u0456\u0439 \u043c\u0456\u0441\u0446\u0435\u0432\u043e\u0441\u0442\u0456, \u0434\u0432\u0438\u0433\u0443\u043d \u0434\u043e\u0437\u0432\u043e\u043b\u044f\u0432 \u0440\u043e\u0437\u0432\u0438\u0432\u0430\u0442\u0438 \u0448\u0432\u0438\u0434\u043a\u0456\u0441\u0442\u044c \u0434\u043e 45 \u043a\u043c \u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0443. \u041c18 \u0431\u0443\u0432 \u043f\u0440\u043e\u0441\u0442\u0438\u0439 \u0432 \u043e\u0431\u0441\u043b\u0443\u0433\u043e\u0432\u0443\u0432\u0430\u043d\u043d\u0456 \u0456 \u0437\u0440\u0443\u0447\u043d\u0438\u0439 \u0432 \u0435\u043a\u0441\u043f\u043b\u0443\u0430\u0442\u0430\u0446\u0456\u0457. \u0412 \u0446\u0456\u043b\u043e\u043c\u0443 \u043c\u0430\u0448\u0438\u043d\u0430 \u0432\u0438\u0439\u0448\u043b\u0430 \u043d\u0435\u043e\u0434\u043d\u043e\u0437\u043d\u0430\u0447\u043d\u043e\u044e, \u0443\u0432\u0456\u0431\u0440\u0430\u0432\u0448\u0438 \u0432 \u0441\u0435\u0431\u0435 \u0431\u0435\u0437\u043b\u0456\u0447 \u0441\u043c\u0456\u043b\u0438\u0432\u0438\u0445 \u0440\u0456\u0448\u0435\u043d\u044c.\n\nAt the end I want to say, that the birth of Tank destroyers was caused by the necessary of destroying heavy enemy techniques. Next time I will tell you about machines with a real \u201cBig Guns\u201d.\n>\u041d\u0430 \u0446\u044c\u043e\u043c\u0443 \u043c\u0456 \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u043c\u043e \u043d\u0430\u0448\u0435 \u0437\u043d\u0430\u0439\u043e\u043c\u0441\u0442\u0432\u043e \u0437 \u043a\u043b\u0430\u0441\u043e\u043c \u041f\u0422-\u0421\u0410\u0423. \u041f\u043e\u044f\u0432\u0430 \u0441\u0430\u043c\u043e\u0445\u043e\u0434\u043e\u043a \u0431\u0443\u043b\u0430 \u0432\u0438\u043a\u043b\u0438\u043a\u0430\u043d\u0430 \u043d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u0456\u0441\u0442\u044e \u0437\u043d\u0438\u0449\u0435\u043d\u043d\u044f \u0432\u0430\u0436\u043a\u043e\u0457 \u0442\u0435\u0445\u043d\u0456\u043a\u0438 \u0441\u0443\u043f\u0440\u043e\u0442\u0438\u0432\u043d\u0438\u043a\u0430. \u041d\u0430 \u0447\u0435\u0440\u0437\u0456 \u043c\u0430\u0448\u0438\u043d\u0438 \u0437 \u0434\u0456\u0439\u0441\u043d\u043e \u0432\u0435\u043b\u0438\u043a\u0438\u043c\u0438 \u043a\u0430\u043b\u0456\u0431\u0440\u0430\u043c\u0438. \n\n***don't forget to follow @burmik123***", + "category": "tanks", + "children": 20, + "created": "2016-09-15T15:48:12", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { + "image": [ + "http://i.piccy.info/i9/3d367a52a1b8dc6c22f126332f335144/1473836215/88822/1063747/cqWCxy6vYP0.jpg", + "http://i.piccy.info/i9/5dc09cebc0ddfcd1fac4a8013ee385ad/1473836240/182233/1063747/5u9ghQyvkTc.jpg", + "http://i.piccy.info/i9/b5ef17359d201f4a7a61b38b5e6ca72f/1473836271/164656/1063747/kKktJUlUuXk.jpg", + "http://i.piccy.info/i9/4dc33c464a97ab5b3b8b294778f28103/1473836298/33303/1063747/WVaI_c18Lyw.jpg", + "http://i.piccy.info/i9/201bcdc4469d546e806e4a38ba752ea7/1473836330/161907/1063747/_jvoDheMLik.jpg", + "http://i.piccy.info/i9/d2e68a346dd9f511c77c83d8b77eaf87/1473836361/30639/1063747/XmYA_dzfCU8.jpg", + "http://i.piccy.info/i9/f1590af47cd302853838f357b7786d76/1473836385/192289/1063747/V3N3_0icSI.jpg", + "http://i.piccy.info/i9/96dea13cac0295bde2f7c6dd2ddf0f93/1473836416/237135/1063747/Zt4ltwPq9qQ.jpg", + "http://i.piccy.info/i9/df0129bd789f7923e8f0306e5a8b6520/1473836445/147058/1063747/pxmv2fJDVRs.jpg" + ], "tags": [ - "life", - "disability", - "strength" + "tanks", + "ua", + "war" ], "users": [ - "nextgen622" - ], - "image": [ - "https://ipfs.pics/ipfs/QmWb5pzYhKKJZ8zmeYqVeV6oNqGi5h7yDEtxBbjwRdTUZ7" - ], - "links": [ - "https://steemit.com/memoir/@nextgen622/living-in-between-two-worlds-my-memoir-part-1-updated" + "burmik123" ] }, - "created": "2016-09-15T14:46:21", - "updated": "2016-09-15T14:46:21", - "depth": 0, - "children": 10, - "net_rshares": 66119907751704, - "is_paidout": false, - "payout_at": "2016-09-16T15:12:56", - "payout": 255.328, - "pending_payout_value": "255.328 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 64027086650725, + "payout": 239.682, + "payout_at": "2016-09-22T15:48:12", + "pending_payout_value": "239.682 HBD", + "percent_hbd": 10000, + "permlink": "title-steel-monsters-tank-destroyers-of-ww-ii-eng-ua-featuring-burmik123-as-author", + "post_id": 1255397, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 257 + }, + "title": "Steel monsters. Tank Destroyers of WW II. ENG\\UA (featuring @burmik123 as author)", + "updated": "2016-09-15T16:20:39", + "url": "/tanks/@gavvet/title-steel-monsters-tank-destroyers-of-ww-ii-eng-ua-featuring-burmik123-as-author" + }, + { "active_votes": [ { - "voter": "barrie", - "rshares": "518200944380" + "rshares": "518200944380", + "voter": "barrie" }, { - "voter": "smooth", - "rshares": "31620599440742" + "rshares": "31620599440742", + "voter": "smooth" }, { - "voter": "freedom", - "rshares": "5980286152113" + "rshares": "5980286152113", + "voter": "freedom" }, { - "voter": "badassmother", - "rshares": "1968119541431" + "rshares": "1968119541431", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2052934239988" + "rshares": "2052934239988", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1337025448249" + "rshares": "1337025448249", + "voter": "rossco99" }, { - "voter": "jaewoocho", - "rshares": "22864938197" + "rshares": "22864938197", + "voter": "jaewoocho" }, { - "voter": "joseph", - "rshares": "1575899708999" + "rshares": "1575899708999", + "voter": "joseph" }, { - "voter": "aizensou", - "rshares": "98682346357" + "rshares": "98682346357", + "voter": "aizensou" }, { - "voter": "recursive2", - "rshares": "466049312123" + "rshares": "466049312123", + "voter": "recursive2" }, { - "voter": "recursive3", - "rshares": "462419963819" + "rshares": "462419963819", + "voter": "recursive3" }, { - "voter": "recursive", - "rshares": "3120252422964" + "rshares": "3120252422964", + "voter": "recursive" }, { - "voter": "mineralwasser", - "rshares": "1246183601" + "rshares": "1246183601", + "voter": "mineralwasser" }, { - "voter": "boombastic", - "rshares": "681017160441" + "rshares": "681017160441", + "voter": "boombastic" }, { - "voter": "bingo-1", - "rshares": "1670000041" + "rshares": "1670000041", + "voter": "bingo-1" }, { - "voter": "smooth.witness", - "rshares": "5938790183563" + "rshares": "5938790183563", + "voter": "smooth.witness" }, { - "voter": "boatymcboatface", - "rshares": "445638290328" + "rshares": "445638290328", + "voter": "boatymcboatface" }, { - "voter": "idol", - "rshares": "9408499254" + "rshares": "9408499254", + "voter": "idol" }, { - "voter": "chitty", - "rshares": "18955732033" + "rshares": "18955732033", + "voter": "chitty" }, { - "voter": "unosuke", - "rshares": "65857071449" + "rshares": "65857071449", + "voter": "unosuke" }, { - "voter": "jocelyn", - "rshares": "1619440533" + "rshares": "1619440533", + "voter": "jocelyn" }, { - "voter": "gregory-f", - "rshares": "15004166459" + "rshares": "15004166459", + "voter": "gregory-f" }, { - "voter": "edgeland", - "rshares": "154334962550" + "rshares": "154334962550", + "voter": "edgeland" }, { - "voter": "gregory60", - "rshares": "9796891633" + "rshares": "9796891633", + "voter": "gregory60" }, { - "voter": "gavvet", - "rshares": "1290497974419" + "rshares": "1290497974419", + "voter": "gavvet" }, { - "voter": "eeks", - "rshares": "89897083981" + "rshares": "89897083981", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1511911763" + "rshares": "1511911763", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "122160437" + "rshares": "122160437", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "1471599418" + "rshares": "1471599418", + "voter": "spaninv" }, { - "voter": "elishagh1", - "rshares": "1987313581" + "rshares": "1987313581", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "8669787638" + "rshares": "8669787638", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "599944427461" + "rshares": "599944427461", + "voter": "nanzo-scoop" }, { - "voter": "kefkius", - "rshares": "9857442120" + "rshares": "9857442120", + "voter": "kefkius" }, { - "voter": "mummyimperfect", - "rshares": "177393180428" + "rshares": "177393180428", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313687341" + "rshares": "313687341", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106628883920" + "rshares": "106628883920", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061184463" + "rshares": "1061184463", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "3187790925" + "rshares": "3187790925", + "voter": "cryptofunk" }, { - "voter": "kodi", - "rshares": "579494558" + "rshares": "579494558", + "voter": "kodi" }, { - "voter": "error", - "rshares": "2111403468" + "rshares": "2111403468", + "voter": "error" }, { - "voter": "cyber", - "rshares": "985486511940" + "rshares": "985486511940", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "61710806563" + "rshares": "61710806563", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "50879010002" + "rshares": "50879010002", + "voter": "ak2020" }, { - "voter": "satoshifund", - "rshares": "1616373298272" + "rshares": "1616373298272", + "voter": "satoshifund" }, { - "voter": "taoteh1221", - "rshares": "409218031185" + "rshares": "409218031185", + "voter": "taoteh1221" }, { - "voter": "applecrisp", - "rshares": "418880227" + "rshares": "418880227", + "voter": "applecrisp" }, { - "voter": "stiletto", - "rshares": "95314034" + "rshares": "95314034", + "voter": "stiletto" }, { - "voter": "ziv", - "rshares": "19213136885" + "rshares": "19213136885", + "voter": "ziv" }, { - "voter": "zakharya", - "rshares": "15787116636" + "rshares": "15787116636", + "voter": "zakharya" }, { - "voter": "trogdor", - "rshares": "280675599804" + "rshares": "280675599804", + "voter": "trogdor" }, { - "voter": "crypto-fan", - "rshares": "19151208027" + "rshares": "19151208027", + "voter": "crypto-fan" }, { - "voter": "geoffrey", - "rshares": "121380113922" + "rshares": "121380113922", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "16025451490" + "rshares": "16025451490", + "voter": "kimziv" }, { - "voter": "emily-cook", - "rshares": "76008701316" + "rshares": "76008701316", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187587354" + "rshares": "2187587354", + "voter": "superfreek" }, { - "voter": "fyrstikken", - "rshares": "387326356155" + "rshares": "387326356155", + "voter": "fyrstikken" }, { - "voter": "isteemit", - "rshares": "49806164408" + "rshares": "49806164408", + "voter": "isteemit" }, { - "voter": "acassity", - "rshares": "29635215678" + "rshares": "29635215678", + "voter": "acassity" }, { - "voter": "ladyclair", - "rshares": "280916636" + "rshares": "280916636", + "voter": "ladyclair" }, { - "voter": "michaellamden68", - "rshares": "3898803498" + "rshares": "3898803498", + "voter": "michaellamden68" }, { - "voter": "thebatchman", - "rshares": "19974572536" + "rshares": "19974572536", + "voter": "thebatchman" }, { - "voter": "asmolokalo", - "rshares": "153697599394" + "rshares": "153697599394", + "voter": "asmolokalo" }, { - "voter": "rubybian", - "rshares": "73848595449" + "rshares": "73848595449", + "voter": "rubybian" }, { - "voter": "riscadox", - "rshares": "5270775482" + "rshares": "5270775482", + "voter": "riscadox" }, { - "voter": "mstang83", - "rshares": "256623434" + "rshares": "256623434", + "voter": "mstang83" }, { - "voter": "romel", - "rshares": "2597453094" + "rshares": "2597453094", + "voter": "romel" }, { - "voter": "derekareith", - "rshares": "150964836849" + "rshares": "150964836849", + "voter": "derekareith" }, { - "voter": "furion", - "rshares": "7380400309" + "rshares": "7380400309", + "voter": "furion" }, { - "voter": "bitshares101", - "rshares": "15308452303" + "rshares": "15308452303", + "voter": "bitshares101" }, { - "voter": "owdy", - "rshares": "6591905710" + "rshares": "6591905710", + "voter": "owdy" }, { - "voter": "ausbitbank", - "rshares": "14388449041" + "rshares": "14388449041", + "voter": "ausbitbank" }, { - "voter": "jacor", - "rshares": "159573949583" + "rshares": "159573949583", + "voter": "jacor" }, { - "voter": "cynetyc", - "rshares": "124958555" + "rshares": "124958555", + "voter": "cynetyc" }, { - "voter": "snowden", - "rshares": "85528935" + "rshares": "85528935", + "voter": "snowden" }, { - "voter": "aaseb", - "rshares": "14487855165" + "rshares": "14487855165", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4431052068" + "rshares": "4431052068", + "voter": "karen13" }, { - "voter": "deviedev", - "rshares": "10646413479" + "rshares": "10646413479", + "voter": "deviedev" }, { - "voter": "nabilov", - "rshares": "258981906731" + "rshares": "258981906731", + "voter": "nabilov" }, { - "voter": "luisucv34", - "rshares": "847366145" + "rshares": "847366145", + "voter": "luisucv34" }, { - "voter": "streetstyle", - "rshares": "54561525717" + "rshares": "54561525717", + "voter": "streetstyle" }, { - "voter": "krystle", - "rshares": "7372366244" + "rshares": "7372366244", + "voter": "krystle" }, { - "voter": "milestone", - "rshares": "46854512371" + "rshares": "46854512371", + "voter": "milestone" }, { - "voter": "creemej", - "rshares": "35782074085" + "rshares": "35782074085", + "voter": "creemej" }, { - "voter": "maximkichev", - "rshares": "3800710913" + "rshares": "3800710913", + "voter": "maximkichev" }, { - "voter": "blueorgy", - "rshares": "167298234999" + "rshares": "167298234999", + "voter": "blueorgy" }, { - "voter": "benjiberigan", - "rshares": "12587181720" + "rshares": "12587181720", + "voter": "benjiberigan" }, { - "voter": "poseidon", - "rshares": "349575168" + "rshares": "349575168", + "voter": "poseidon" }, { - "voter": "smolalit", - "rshares": "7946556816" + "rshares": "7946556816", + "voter": "smolalit" }, { - "voter": "mustafaomar", - "rshares": "20522265015" + "rshares": "20522265015", + "voter": "mustafaomar" }, { - "voter": "simon.braki.love", - "rshares": "3506024506" + "rshares": "3506024506", + "voter": "simon.braki.love" }, { - "voter": "thylbom", - "rshares": "82780602040" + "rshares": "82780602040", + "voter": "thylbom" }, { - "voter": "bitcoiner", - "rshares": "3695597998" + "rshares": "3695597998", + "voter": "bitcoiner" }, { - "voter": "deanliu", - "rshares": "32542074868" + "rshares": "32542074868", + "voter": "deanliu" }, { - "voter": "qonq99", - "rshares": "519376303" + "rshares": "519376303", + "voter": "qonq99" }, { - "voter": "neroru", - "rshares": "7659625135" + "rshares": "7659625135", + "voter": "neroru" }, { - "voter": "jl777", - "rshares": "215384334659" + "rshares": "215384334659", + "voter": "jl777" }, { - "voter": "positive", - "rshares": "1226120506" + "rshares": "1226120506", + "voter": "positive" }, { - "voter": "crazymumzysa", - "rshares": "101547003699" + "rshares": "101547003699", + "voter": "crazymumzysa" }, { - "voter": "steemchain", - "rshares": "50626015" + "rshares": "50626015", + "voter": "steemchain" }, { - "voter": "whalepool", - "rshares": "50626015" + "rshares": "50626015", + "voter": "whalepool" }, { - "voter": "gustavopasquini", - "rshares": "5287640951" + "rshares": "5287640951", + "voter": "gustavopasquini" }, { - "voter": "firehorse", - "rshares": "114437903" + "rshares": "114437903", + "voter": "firehorse" }, { - "voter": "proto", - "rshares": "18175932801" + "rshares": "18175932801", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "2708251696" + "rshares": "2708251696", + "voter": "sisterholics" }, { - "voter": "alex.chien", - "rshares": "1444237397" + "rshares": "1444237397", + "voter": "alex.chien" }, { - "voter": "royalmacro", - "rshares": "8921793478" + "rshares": "8921793478", + "voter": "royalmacro" }, { - "voter": "remlaps", - "rshares": "1802321537" + "rshares": "1802321537", + "voter": "remlaps" }, { - "voter": "glitterpig", - "rshares": "3353832611" + "rshares": "3353832611", + "voter": "glitterpig" }, { - "voter": "picker", - "rshares": "119294413" + "rshares": "119294413", + "voter": "picker" }, { - "voter": "metaflute", - "rshares": "870677269" + "rshares": "870677269", + "voter": "metaflute" }, { - "voter": "taker", - "rshares": "9193734776" + "rshares": "9193734776", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "6521104126" + "rshares": "6521104126", + "voter": "nekromarinist" }, { - "voter": "merej99", - "rshares": "2156971728" + "rshares": "2156971728", + "voter": "merej99" }, { - "voter": "laonie", - "rshares": "95768393690" + "rshares": "95768393690", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "157498807066" + "rshares": "157498807066", + "voter": "twinner" }, { - "voter": "thebluepanda", - "rshares": "11693771864" + "rshares": "11693771864", + "voter": "thebluepanda" }, { - "voter": "laoyao", - "rshares": "24561066673" + "rshares": "24561066673", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "2664664784" + "rshares": "2664664784", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "19440183808" + "rshares": "19440183808", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "726860971" + "rshares": "726860971", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "2501625986" + "rshares": "2501625986", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "4294504959" + "rshares": "4294504959", + "voter": "midnightoil" }, { - "voter": "kalimor", - "rshares": "2327843962" + "rshares": "2327843962", + "voter": "kalimor" }, { - "voter": "coderg", - "rshares": "84246848" + "rshares": "84246848", + "voter": "coderg" }, { - "voter": "ullikume", - "rshares": "4281232336" + "rshares": "4281232336", + "voter": "ullikume" }, { - "voter": "michellek", - "rshares": "50577648" + "rshares": "50577648", + "voter": "michellek" }, { - "voter": "kurtbeil", - "rshares": "3489905889" + "rshares": "3489905889", + "voter": "kurtbeil" }, { - "voter": "steemleak", - "rshares": "2370103862" + "rshares": "2370103862", + "voter": "steemleak" }, { - "voter": "thisisbenbrick", - "rshares": "117035295217" + "rshares": "117035295217", + "voter": "thisisbenbrick" }, { - "voter": "xiaohui", - "rshares": "10740805506" + "rshares": "10740805506", + "voter": "xiaohui" }, { - "voter": "bigsambucca", - "rshares": "88206053" + "rshares": "88206053", + "voter": "bigsambucca" }, { - "voter": "elfkitchen", - "rshares": "485070652" + "rshares": "485070652", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "103387869456" + "rshares": "103387869456", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5855349715" + "rshares": "5855349715", + "voter": "oflyhigh" }, { - "voter": "randyclemens", - "rshares": "15238192519" + "rshares": "15238192519", + "voter": "randyclemens" }, { - "voter": "skavkaz", - "rshares": "856854397" + "rshares": "856854397", + "voter": "skavkaz" }, { - "voter": "xiaokongcom", - "rshares": "335812576" + "rshares": "335812576", + "voter": "xiaokongcom" }, { - "voter": "gargon", - "rshares": "13237481048" + "rshares": "13237481048", + "voter": "gargon" }, { - "voter": "natalymaty", - "rshares": "2076619689" + "rshares": "2076619689", + "voter": "natalymaty" }, { - "voter": "future24", - "rshares": "2002858998" + "rshares": "2002858998", + "voter": "future24" }, { - "voter": "darthnava", - "rshares": "1156101266" + "rshares": "1156101266", + "voter": "darthnava" }, { - "voter": "villainblack", - "rshares": "3670417888" + "rshares": "3670417888", + "voter": "villainblack" }, { - "voter": "cristi", - "rshares": "12672968653" + "rshares": "12672968653", + "voter": "cristi" }, { - "voter": "xianjun", - "rshares": "676933902" + "rshares": "676933902", + "voter": "xianjun" }, { - "voter": "hanshotfirst", - "rshares": "26283514539" + "rshares": "26283514539", + "voter": "hanshotfirst" }, { - "voter": "miacats", - "rshares": "93798273061" + "rshares": "93798273061", + "voter": "miacats" }, { - "voter": "njall", - "rshares": "2249572206" + "rshares": "2249572206", + "voter": "njall" }, { - "voter": "razberrijam", - "rshares": "75676352" + "rshares": "75676352", + "voter": "razberrijam" }, { - "voter": "userlogin", - "rshares": "6417335694" + "rshares": "6417335694", + "voter": "userlogin" }, { - "voter": "chinadaily", - "rshares": "2077210674" + "rshares": "2077210674", + "voter": "chinadaily" }, { - "voter": "serejandmyself", - "rshares": "90171375563" + "rshares": "90171375563", + "voter": "serejandmyself" }, { - "voter": "almerri", - "rshares": "4976983022" + "rshares": "4976983022", + "voter": "almerri" }, { - "voter": "johnnyyash", - "rshares": "9071955992" + "rshares": "9071955992", + "voter": "johnnyyash" }, { - "voter": "macartem", - "rshares": "3221126774" + "rshares": "3221126774", + "voter": "macartem" }, { - "voter": "gvargas123", - "rshares": "9827647000" + "rshares": "9827647000", + "voter": "gvargas123" }, { - "voter": "themanualbot", - "rshares": "4658385146" + "rshares": "4658385146", + "voter": "themanualbot" }, { - "voter": "jaredcwillis", - "rshares": "10468564936" + "rshares": "10468564936", + "voter": "jaredcwillis" }, { - "voter": "movievertigo", - "rshares": "3562389763" + "rshares": "3562389763", + "voter": "movievertigo" }, { - "voter": "mrlogic", - "rshares": "332237822" + "rshares": "332237822", + "voter": "mrlogic" }, { - "voter": "mig641", - "rshares": "415123347" + "rshares": "415123347", + "voter": "mig641" }, { - "voter": "mandibil", - "rshares": "57942270939" + "rshares": "57942270939", + "voter": "mandibil" }, { - "voter": "shadowspub", - "rshares": "2028431875" + "rshares": "2028431875", + "voter": "shadowspub" }, { - "voter": "steemitpatina", - "rshares": "4633082667" + "rshares": "4633082667", + "voter": "steemitpatina" }, { - "voter": "steembriefing", - "rshares": "74550672" + "rshares": "74550672", + "voter": "steembriefing" }, { - "voter": "riv", - "rshares": "55750195" + "rshares": "55750195", + "voter": "riv" }, { - "voter": "runridefly", - "rshares": "2196854858" + "rshares": "2196854858", + "voter": "runridefly" }, { - "voter": "sammie", - "rshares": "169049426" + "rshares": "169049426", + "voter": "sammie" }, { - "voter": "funkywanderer", - "rshares": "1857706060" + "rshares": "1857706060", + "voter": "funkywanderer" }, { - "voter": "richardcrill", - "rshares": "5053551216" + "rshares": "5053551216", + "voter": "richardcrill" }, { - "voter": "team101", - "rshares": "184076493" + "rshares": "184076493", + "voter": "team101" }, { - "voter": "greatness", - "rshares": "178419224" + "rshares": "178419224", + "voter": "greatness" }, { - "voter": "sponge-bob", - "rshares": "54241736164" + "rshares": "54241736164", + "voter": "sponge-bob" }, { - "voter": "freesteem", - "rshares": "50798127" + "rshares": "50798127", + "voter": "freesteem" }, { - "voter": "apparat", - "rshares": "51964388" + "rshares": "51964388", + "voter": "apparat" }, { - "voter": "smisi", - "rshares": "1655277599" + "rshares": "1655277599", + "voter": "smisi" }, { - "voter": "asksisk", - "rshares": "212888896291" + "rshares": "212888896291", + "voter": "asksisk" }, { - "voter": "panther", - "rshares": "330365849" + "rshares": "330365849", + "voter": "panther" }, { - "voter": "plantbasedjunkie", - "rshares": "59422248" + "rshares": "59422248", + "voter": "plantbasedjunkie" }, { - "voter": "brains", - "rshares": "55335855053" + "rshares": "55335855053", + "voter": "brains" }, { - "voter": "film-editor", - "rshares": "56573340" + "rshares": "56573340", + "voter": "film-editor" }, { - "voter": "jessicanicklos", - "rshares": "799615255" + "rshares": "799615255", + "voter": "jessicanicklos" }, { - "voter": "steemafon", - "rshares": "1369339863" + "rshares": "1369339863", + "voter": "steemafon" }, { - "voter": "positivesteem", - "rshares": "1072070421" + "rshares": "1072070421", + "voter": "positivesteem" }, { - "voter": "chick1", - "rshares": "5753129814" + "rshares": "5753129814", + "voter": "chick1" }, { - "voter": "steempowerwhale", - "rshares": "3319554336" + "rshares": "3319554336", + "voter": "steempowerwhale" }, { - "voter": "aoki", - "rshares": "51637870" + "rshares": "51637870", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "51568971" + "rshares": "51568971", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "51581492" + "rshares": "51581492", + "voter": "cwb" }, { - "voter": "anomaly", - "rshares": "339270470" + "rshares": "339270470", + "voter": "anomaly" }, { - "voter": "ola1", - "rshares": "98524303" + "rshares": "98524303", + "voter": "ola1" }, { - "voter": "mari5555na", - "rshares": "70282046" + "rshares": "70282046", + "voter": "mari5555na" }, { - "voter": "motion", - "rshares": "50871059" + "rshares": "50871059", + "voter": "motion" }, { - "voter": "jumbo", - "rshares": "50868434" + "rshares": "50868434", + "voter": "jumbo" }, { - "voter": "optimistic-crone", - "rshares": "120278139" + "rshares": "120278139", + "voter": "optimistic-crone" }, { - "voter": "twistys", - "rshares": "50536471" + "rshares": "50536471", + "voter": "twistys" }, { - "voter": "bapparabi", - "rshares": "2216805889" + "rshares": "2216805889", + "voter": "bapparabi" }, { - "voter": "opticalillusions", - "rshares": "50487909" + "rshares": "50487909", + "voter": "opticalillusions" }, { - "voter": "remlaps1", - "rshares": "88287639" + "rshares": "88287639", + "voter": "remlaps1" }, { - "voter": "vuyusile", - "rshares": "65849185" + "rshares": "65849185", + "voter": "vuyusile" }, { - "voter": "darkminded153", - "rshares": "247235040" + "rshares": "247235040", + "voter": "darkminded153" }, { - "voter": "senseye", - "rshares": "2650993895" + "rshares": "2650993895", + "voter": "senseye" }, { - "voter": "iberia", - "rshares": "161849597" + "rshares": "161849597", + "voter": "iberia" }, { - "voter": "durex", - "rshares": "158666175" + "rshares": "158666175", + "voter": "durex" }, { - "voter": "witchcraftblog", - "rshares": "444435987" + "rshares": "444435987", + "voter": "witchcraftblog" }, { - "voter": "origin", - "rshares": "161212160" + "rshares": "161212160", + "voter": "origin" }, { - "voter": "dresden", - "rshares": "4671589034" + "rshares": "4671589034", + "voter": "dresden" }, { - "voter": "caseyneistat", - "rshares": "160845765" + "rshares": "160845765", + "voter": "caseyneistat" }, { - "voter": "planetearth", - "rshares": "159554050" + "rshares": "159554050", + "voter": "planetearth" }, { - "voter": "greenpeace", - "rshares": "159506164" + "rshares": "159506164", + "voter": "greenpeace" }, { - "voter": "disneypixar", - "rshares": "159164412" + "rshares": "159164412", + "voter": "disneypixar" }, { - "voter": "rule", - "rshares": "159062820" + "rshares": "159062820", + "voter": "rule" }, { - "voter": "icesteem", - "rshares": "158638676" + "rshares": "158638676", + "voter": "icesteem" }, { - "voter": "steem-wallet", - "rshares": "158602900" + "rshares": "158602900", + "voter": "steem-wallet" }, { - "voter": "steemthis", - "rshares": "155451903" + "rshares": "155451903", + "voter": "steemthis" }, { - "voter": "citigroup", - "rshares": "158541985" + "rshares": "158541985", + "voter": "citigroup" }, { - "voter": "goldmatters", - "rshares": "31683945302" + "rshares": "31683945302", + "voter": "goldmatters" }, { - "voter": "dealzgal", - "rshares": "71727340" + "rshares": "71727340", + "voter": "dealzgal" }, { - "voter": "reddust", - "rshares": "702613929" + "rshares": "702613929", + "voter": "reddust" }, { - "voter": "risabold", - "rshares": "298391608" + "rshares": "298391608", + "voter": "risabold" } ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 219, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/life/@gavvet/three-benefits-of-living-with-a-disability-featuring-nextgen622-as-author", - "blacklists": [] - }, - { - "post_id": 957976, - "author": "gavvet", - "permlink": "letters-to-my-dad-on-the-changing-world-with-italian-featuring-cryptofarmer-as-author", + "blacklists": [], + "body": "Is this a typo? Benefits? You ask. How could there be any possible benefit from having a disability?\n\nWell, in fact there are. And here are three unexpected benefits I have personally experienced in my own journey living with a degenerating eye condition.\n\n## Improved lateral thinking and innovation\nGrowing up with a vision impairment meant that there were often things that most people took for granted, but which I struggled to do. To do the same things, I needed to come up with creative solutions and alternative ways of doing things. So from a very young age, I learnt to think laterally and developed my problem solving skills. Most people are so use to perceiving the world in a certain way, but when you are stripped of one of your senses, you learn to perceive things in a different way.\n\nhttps://ipfs.pics/ipfs/QmWb5pzYhKKJZ8zmeYqVeV6oNqGi5h7yDEtxBbjwRdTUZ7\n\nWhen I was still living by myself a few years ago, I had the annoying task of having to cook for myself each night. The challenge I faced in the kitchen was not been able to read the labels on various bottles and containers. As a result, I couldn't tell which container was the salt and which one was the sugar, and all the packaging for the herbs looked the same. So how did I manage? Instead of using sight, I used my sense of smell to distinguish between the herbs, and for some ingredients where I couldn't use the sense of smell, I used different containers and labels to help me identify all the different ingredients.\n\nAnd this leads on to the second benefit.\n\n## Improved memory\nPeople who know me well often comment on my ability to remember things. In fact, I've noticed this in many other people I know who also have a vision impairment. I think this is due to the fact that for someone with a vision impairment to thrive in a sighted world, we often need to make extra effort to adapt to our circumstances.\n\nFor example, I remember when I was still in university, I had to do many presentations. For most people, they could refer to speech notes as they are presenting. However, for me, this was not possible, as I couldn't read speech notes no matter how big the font was. Furthermore, as I have some sight, I never needed to learn braille, which meant I couldn't refer to braille notes either. _As a side note, this is why the title of my memoir which I've been posting on Steemit is \"Living in Between Two Worlds\", because I have often found myself being caught between the world of the sighted and the world of the blind, and also between the identity of being Chinese but not fully Chinese, and being Australian but not fully Australian._ As a result, every time I had to do a presentation, I would always remember the entire speech. Over time, this has become second nature to me. I have learnt how to force things into my memory, and be innovative when I need to.\n\n## Resilience\nGrowing up with a vision impairment, I experienced a lot of bullying at school and a lot of hurtful comments and actions from people, sometimes done knowingly and sometimes unknowingly. Sometimes this comes in the form of a patronising comment, and sometimes from a look or stare. The interesting thing with people staring and giving me strange looks is that I can often notice people are doing it to me because I have some peripheral vision, however people generally can't tell I'm looking back at them because it doesn't seem like I'm looking at them. Most of the time however, those hurtful words and actions are done out of ignorance and a lack of understanding, rather then out of malice.\n\n#### But from all these things I've experienced, it has made me a stronger and more resilient person.\nAs a result, whatever unforeseen things I may experience in life, there's not much that can knock me out completely. I have developed the ability to adapt to changing circumstances and stay optimistic, because as they say:\n### What doesn't kill you, makes you stronger.\n\nSo I'm thankful to God for the person I have become today. Disability isn't all bad. Without what I have gone through with my vision impairment, I wouldn't be the person I am today, and for these reasons, I am thankful.\n\nTo read more about my story, you can read my short memoir series. You can find [Part 1 here.](https://steemit.com/memoir/@nextgen622/living-in-between-two-worlds-my-memoir-part-1-updated)\n\nYou can also follow me on @nextgen622", "category": "life", - "title": "Letters to my dad on the changing world... with Italian(featuring @cryptofarmer as author)", - "body": ">Today I told my dad the final date of my marriage: October 2nd . Few days ago, as I told him that I was going to get married in a few weeks, he got mad at me. “I was expecting you to get a real job before you got married!” was his main critique. “How can you get married *now*?” he asked me.\n\nOggi ho detto a mio padre la data definitiva del mio matrimonio: due ottobre. Pochi giorni fa, quando gli ho detto che mi sarei sposato nel giro di poche settimane, si è arrabbiato con me. “Mi sarei aspettato che ti trovassi un lavoro vero prima di sposarti” è stato il suo principale oggetto di critica. “Come puoi sposarti *adesso*?” mi ha chiesto.\n\n>Let me give you some background. I’m 29 years old and I want to do many things in my life. I studied economics, worked for no-profit and academia and I published a book in May on the shifting economic paradigm. I dedicated the last year to this book, spent all the savings I had and by now I have a few weeks of financial autonomy left. Meanwhile I rented a room on Airbnb, learned how to do bracelets and sold them on the Ligurian (North-West Italy) seaside. Simultaneously, I’m working on becoming what I call a cryptofarmer: in fact, my goal is to write and earn cryptocurrencies while living in the countryside in a small house I’m transforming into a farm. I learned how to plant a vegetable garden, how to chop wood and limiting the expenses of food and heating.\nEven if sometimes I’m scared I could not afford a living, I feeI I can make it. We can make it. In fact, few months ago a girl I met last winter in Chile joined me and is providing great help with her skills and work. And I’m going to marry her in a few weeks, as I said.\n\nFacciamo un passo indietro. Ho 29 anni e voglio fare tante cose nella mia vita. Ho studiato economia, lavorato nel no-profit e nel mondo accademico per poi pubblicare, a maggio di quest’anno, un libro sul cambio di paradigma in economia. Ho dedicato l’ultimo anno a questo libro, ho speso tutti i miei risparmi e ho davanti ancora qualche settimana di autonomia finanziaria. Nel frattempo ho affittato una stanza su Airbnb e imparato a fare braccialetti che ho venduto sulla costa ligure. Parallelamente lavoro per diventare quello che chiamo un cryptofarmer; il mio obiettivo è infatti quello di scrivere e guadagnare cripto-valute mentre vivo in una piccola casa di campagna che sto trasformando in fattoria. Ho imparato come piantare un orto, spaccare la legna e limitare le spese di cibo e riscaldamento.\nAnche se a volte ho paura di non riuscire a guadagnarmi da vivere, sento che ce la posso fare. Che ce la *possiamo* fare. Qualche mese fa, infatti, una ragazza che ho conosciuto lo scorso inverno in Cile si è unita ai miei progetti e mi sta dando un grosso aiuto con le sue capacità e il suo lavoro. E io la sposerò in qualche settimana, come dicevo.\n>My father is 69 years old. Oddly enough, he actually left countryside for the city – a choice diametrically opposite to the one I made – to become a lawyer and had success by working really hard. As far as I know, he wanted to be a journalist but chose to be a lawyer to get a better salary – as he got. He wanted me to be a lawyer too, of course, but when I chose to study economics he told me I could become an auditor; those were professions, in his words, that paid good.\n\nMio padre ha 69 anni. E’ curioso come lui lasciò la campagna per la città – una scelta diametralmente opposta a quella che ho fatto io – per diventare un avvocato e lì ha avuto successo lavorando molto. Da quel che so, lui voleva fare il giornalista da giovane, ma poi ha scelto di fare l’avvocato per avere un miglior salario – come appunto si è verificato. Chiaramente voleva che anche io facessi l’avvocato e successivamente, quando io scelsi di studiare economia, mi disse che potevo diventare il revisore contabile; mestieri, questi, che secondo lui erano ben remunerati. \n>Dear dad,\nA couple of years ago, you told that you were eventually glad I didn’t follow your path and became a lawyer. The job had changed too much, you said. Now too many lawyers are fighting one against each other to get the job and clients are not paying for the work you did for them. That’s how you described me your job – a job that in Italy, for your generation, was a synonym of success. A son who became a lawyer was a dream for the average family.\nWell, I’m going to add a little piece to this picture. In a few decades, the whole profession of lawyer may become obsolete. Do you know that even today you can ask legal question to [Ross](http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html), an IBM powered machine? It will provide you an answer by sifting through thousands of legal documents, statutes and cases - assisting you to get ready for the case by including citations, suggested readings and confidence ratings. \nToday few technologies are ready to disrupt whole sectors of the economy. One of these is Artificial Intelligence that could make your profession obsolete. Another is the blockchain: that one could make the auditor and accountancy profession useless too. Have you ever heard about it? Some say it’s important as the invention of the Internet.\n\nCaro papà,\nQualche anno fa mi hai detto che in fin dei conti eri contento che non avessi seguito la tua strada e fossi diventato un avvocato. Il lavoro è cambiato troppo, hai detto. Troppi avvocati in conflitto l’uno contro l’altro per accaparrarsi clienti che poi non pagano il lavoro che fai per loro. Così mi hai descritto il tuo lavoro – un lavoro che in Italia, per la tua generazione, era sinonimo di successo. Un figlio che diventava avvocato era un sogno per la famiglia media.\nBeh, lasciami aggiungere un pezzo a questa storia. In un paio di decadi, la professione stessa dell’avvocato potrebbe diventare obsoleta. Sai che già oggi puoi chiedere un parere legale a [Ross](http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html), una macchina sviluppata da IBM? Ti restituisce una risposta setacciando migliaia di documenti legali, statuti e casi – assistendoti a prepararti al caso includendo citazioni, letture consigliate e intervalli di confidenza. Alcune tecnologie sono sul punto di rivoluzionare interi settori dell’economia. Una di queste è l’intelligenza artificiale che potrebbe rendere obsoleta la tua professione. Un’altra è la blockchain: questa potrebbe rendere inutile la professione del contabile e del revisore. Ne hai mai sentito parlare? Alcuni dicono che è importante quanto l’invenzione di Internet.\n>**You should really be glad I didn’t choose your job just because it paid good**. As I was 18 (in 2005) being a lawyer paid good, in a decade it wasn’t the case anymore. **In fact, between 2007 and 2014 the average income reported by Italian lawyers [declined from 51.314 euro to 37.505]( http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare)**. Well, last decade – it is to be said - was a *century*: while economy collapsed in one of the worst crisis ever, technology produced unparalleled innovations. Before 2005 there was no Youtube. In 2005 there was no smartphone either. No-one can tell what are we going to see in the next decade. Some say there will be some big change in the workplace. In fact, [some researchers at Oxford]( http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf) say that by 2035, half of the jobs Americans currently hold will be automatized. **Robots are simply better than men in doing robotic work**. Even the world’s most ancient profession may suffer a strong decline with the development of virtual reality – this has become the next big thing in adult entertainment.\n\n**Devi essere davvero contento che non abbia scelto il tuo lavoro solo perché era ben remunerato**. Quando ancora io avevo 18 anni (nel 2005) fare l’avvocato era remunerativo, ma nell’arco di un decennio ciò non era più vero. **Tra il 2007 e il 2014 il reddito medio dell’avvocato italiano [è sceso da 51.314 euro a 37.505 euro]( http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare)**. L’ultimo decennio – bisogna riconoscerlo - ha rappresentato un *secolo*: mentre l’economia collassava in una delle peggiori crisi di sempre, la tecnologia produceva innovazioni senza pari. Prima del 2005 non c’era Youtube. Prima del 2005 non c’era nemmeno lo smartphone. Nessuno può dire cosa vedremo nel prossimo decennio. Molti dicono che ci saranno grossi cambiamenti sul luogo di lavoro. [Alcuni ricercatori di Oxford]( http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf) dicono che entro il 2035, il 45% dei lavori attualmente svolti dagli americani verrà automatizzato. **I robot svolgono meglio degli uomini i lavori da robot**. Perfino il mestiere più vecchio del mondo potrebbe risentire di un forte declino a seguito dello sviluppo della realtà virtuale – questa è diventata l’ultima novità nel mondo dell’intrattenimento per adulti.\n>Don’t worry, dad, and don’t look at me as someone who is living hand to mouth. Many things are changing in the next years, together with most of the reference points we had. Those jobs who were good, could not be profitable and stable anymore. Most of all, the same idea of stability will change: we’ll have to find stability surfing between waves of change. Choosing a job just because it pays good today, may not be a good strategy. **My generation is challenged to find and develop that personal value, those talents, that no machine could substitute. This is what I’m doing – soon I’ll write you how**.\n\nPer questo, papà, non preoccuparti e non guardarmi come si guarda un figlio che vive di espedienti. Molte cose cambieranno nei prossimi anni, insieme a molti dei punti di riferimento che avevamo. Quei lavori che prima erano buoni, potrebbero non essere più remunerativi e stabili. Più di tutto, cambierà l’idea di stabilità: dovremmo imparare a trovare la stabilità di un surfista a cavallo di ondate di cambiamento. Scegliere un lavoro solo perché paga bene oggi, potrebbe non essere una strategia che paga. **La sfida per la mia generazione è di trovare e sviluppare quel valore personale, quei talenti, che nessuna macchina può sostituire. Questo è quello che sto facendo io – presto ti scriverò come**.\n\nhttp://i68.tinypic.com/2hz9lz.jpg \n\n*Me, dad, fiancé, mum*\n\n***Don't forget to follow @cryptofarmer***\n***a shout out goes to @claudiop63 for assisting the Italian community so don't forget to follow him***", + "children": 10, + "created": "2016-09-15T14:46:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { + "image": [ + "https://ipfs.pics/ipfs/QmWb5pzYhKKJZ8zmeYqVeV6oNqGi5h7yDEtxBbjwRdTUZ7" + ], + "links": [ + "https://steemit.com/memoir/@nextgen622/living-in-between-two-worlds-my-memoir-part-1-updated" + ], "tags": [ "life", - "introducemyself" + "disability", + "strength" ], "users": [ - "cryptofarmer", - "claudiop63" - ], - "image": [ - "http://i68.tinypic.com/2hz9lz.jpg" - ], - "links": [ - "http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html", - "http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare", - "http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf" + "nextgen622" ] }, - "created": "2016-09-15T14:01:30", - "updated": "2016-09-15T14:01:30", - "depth": 0, - "children": 11, - "net_rshares": 66723421210839, - "is_paidout": false, - "payout_at": "2016-09-16T14:29:03", - "payout": 259.877, - "pending_payout_value": "259.877 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66119907751704, + "payout": 254.34, + "payout_at": "2016-09-22T14:46:21", + "pending_payout_value": "254.340 HBD", + "percent_hbd": 10000, + "permlink": "three-benefits-of-living-with-a-disability-featuring-nextgen622-as-author", + "post_id": 1254663, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 219 + }, + "title": "Three benefits of living with a disability (featuring @nextgen622 as author)", + "updated": "2016-09-15T14:46:21", + "url": "/life/@gavvet/three-benefits-of-living-with-a-disability-featuring-nextgen622-as-author" + }, + { "active_votes": [ { - "voter": "barrie", - "rshares": "518193384474" + "rshares": "518193384474", + "voter": "barrie" }, { - "voter": "smooth", - "rshares": "31620272424965" + "rshares": "31620272424965", + "voter": "smooth" }, { - "voter": "firstclass", - "rshares": "7465716124744" + "rshares": "7465716124744", + "voter": "firstclass" }, { - "voter": "badassmother", - "rshares": "1991230051184" + "rshares": "1991230051184", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2052900127917" + "rshares": "2052900127917", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1337025448249" + "rshares": "1337025448249", + "voter": "rossco99" }, { - "voter": "jaewoocho", - "rshares": "22864591759" + "rshares": "22864591759", + "voter": "jaewoocho" }, { - "voter": "joseph", - "rshares": "1619082976045" + "rshares": "1619082976045", + "voter": "joseph" }, { - "voter": "b0y2k", - "rshares": "223905651656" + "rshares": "223905651656", + "voter": "b0y2k" }, { - "voter": "recursive2", - "rshares": "475735272749" + "rshares": "475735272749", + "voter": "recursive2" }, { - "voter": "recursive3", - "rshares": "462392248872" + "rshares": "462392248872", + "voter": "recursive3" }, { - "voter": "recursive", - "rshares": "3188060280256" + "rshares": "3188060280256", + "voter": "recursive" }, { - "voter": "mineralwasser", - "rshares": "1246152952" + "rshares": "1246152952", + "voter": "mineralwasser" }, { - "voter": "boombastic", - "rshares": "680994650765" + "rshares": "680994650765", + "voter": "boombastic" }, { - "voter": "mrs.agsexplorer", - "rshares": "94091830376" + "rshares": "94091830376", + "voter": "mrs.agsexplorer" }, { - "voter": "bingo-0", - "rshares": "6959061481" + "rshares": "6959061481", + "voter": "bingo-0" }, { - "voter": "bingo-1", - "rshares": "1669969392" + "rshares": "1669969392", + "voter": "bingo-1" }, { - "voter": "smooth.witness", - "rshares": "5938061627471" + "rshares": "5938061627471", + "voter": "smooth.witness" }, { - "voter": "idol", - "rshares": "9408405427" + "rshares": "9408405427", + "voter": "idol" }, { - "voter": "team", - "rshares": "134476949201" + "rshares": "134476949201", + "voter": "team" }, { - "voter": "chitty", - "rshares": "290603380713" + "rshares": "290603380713", + "voter": "chitty" }, { - "voter": "unosuke", - "rshares": "59271072026" + "rshares": "59271072026", + "voter": "unosuke" }, { - "voter": "yefet", - "rshares": "10884676283" + "rshares": "10884676283", + "voter": "yefet" }, { - "voter": "jocelyn", - "rshares": "1619428804" + "rshares": "1619428804", + "voter": "jocelyn" }, { - "voter": "gregory-f", - "rshares": "15316591171" + "rshares": "15316591171", + "voter": "gregory-f" }, { - "voter": "gregory60", - "rshares": "9028507975" + "rshares": "9028507975", + "voter": "gregory60" }, { - "voter": "gavvet", - "rshares": "1285091135093" + "rshares": "1285091135093", + "voter": "gavvet" }, { - "voter": "eeks", - "rshares": "89896753810" + "rshares": "89896753810", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1511911763" + "rshares": "1511911763", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "122160437" + "rshares": "122160437", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "1471581374" + "rshares": "1471581374", + "voter": "spaninv" }, { - "voter": "elishagh1", - "rshares": "1987313581" + "rshares": "1987313581", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "8669787638" + "rshares": "8669787638", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "599925765931" + "rshares": "599925765931", + "voter": "nanzo-scoop" }, { - "voter": "kefkius", - "rshares": "9857353705" + "rshares": "9857353705", + "voter": "kefkius" }, { - "voter": "mummyimperfect", - "rshares": "177389912085" + "rshares": "177389912085", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313687341" + "rshares": "313687341", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106628118273" + "rshares": "106628118273", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061159202" + "rshares": "1061159202", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "3187771076" + "rshares": "3187771076", + "voter": "cryptofunk" }, { - "voter": "kodi", - "rshares": "591084449" + "rshares": "591084449", + "voter": "kodi" }, { - "voter": "error", - "rshares": "2111391740" + "rshares": "2111391740", + "voter": "error" }, { - "voter": "cyber", - "rshares": "985477191740" + "rshares": "985477191740", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "61710385546" + "rshares": "61710385546", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "50878059993" + "rshares": "50878059993", + "voter": "ak2020" }, { - "voter": "johnerfx", - "rshares": "13256265846" + "rshares": "13256265846", + "voter": "johnerfx" }, { - "voter": "taoteh1221", - "rshares": "409218031185" + "rshares": "409218031185", + "voter": "taoteh1221" }, { - "voter": "stiletto", - "rshares": "95314034" + "rshares": "95314034", + "voter": "stiletto" }, { - "voter": "kus-knee", - "rshares": "55528544371" + "rshares": "55528544371", + "voter": "kus-knee" }, { - "voter": "johnerminer", - "rshares": "1177332471" + "rshares": "1177332471", + "voter": "johnerminer" }, { - "voter": "ziv", - "rshares": "19213121851" + "rshares": "19213121851", + "voter": "ziv" }, { - "voter": "trogdor", - "rshares": "280666949780" + "rshares": "280666949780", + "voter": "trogdor" }, { - "voter": "grandpere", - "rshares": "6652542986" + "rshares": "6652542986", + "voter": "grandpere" }, { - "voter": "mark-waser", - "rshares": "5821005163" + "rshares": "5821005163", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "124413655063" + "rshares": "124413655063", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "16025151061" + "rshares": "16025151061", + "voter": "kimziv" }, { - "voter": "emily-cook", - "rshares": "77734412526" + "rshares": "77734412526", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187587354" + "rshares": "2187587354", + "voter": "superfreek" }, { - "voter": "pmartynov", - "rshares": "53269952968" + "rshares": "53269952968", + "voter": "pmartynov" }, { - "voter": "isteemit", - "rshares": "48620303351" + "rshares": "48620303351", + "voter": "isteemit" }, { - "voter": "acassity", - "rshares": "30279417098" + "rshares": "30279417098", + "voter": "acassity" }, { - "voter": "norbu", - "rshares": "65769554169" + "rshares": "65769554169", + "voter": "norbu" }, { - "voter": "michaellamden68", - "rshares": "3808133649" + "rshares": "3808133649", + "voter": "michaellamden68" }, { - "voter": "thebatchman", - "rshares": "20382096581" + "rshares": "20382096581", + "voter": "thebatchman" }, { - "voter": "asmolokalo", - "rshares": "158987747182" + "rshares": "158987747182", + "voter": "asmolokalo" }, { - "voter": "rubybian", - "rshares": "76019855821" + "rshares": "76019855821", + "voter": "rubybian" }, { - "voter": "riscadox", - "rshares": "5270775482" + "rshares": "5270775482", + "voter": "riscadox" }, { - "voter": "konstantin", - "rshares": "17903672525" + "rshares": "17903672525", + "voter": "konstantin" }, { - "voter": "mstang83", - "rshares": "256623434" + "rshares": "256623434", + "voter": "mstang83" }, { - "voter": "fabio", - "rshares": "373878481829" + "rshares": "373878481829", + "voter": "fabio" }, { - "voter": "gatoso", - "rshares": "6941291365" + "rshares": "6941291365", + "voter": "gatoso" }, { - "voter": "furion", - "rshares": "7380400309" + "rshares": "7380400309", + "voter": "furion" }, { - "voter": "jacor", - "rshares": "159573949583" + "rshares": "159573949583", + "voter": "jacor" }, { - "voter": "cynetyc", - "rshares": "147678292" + "rshares": "147678292", + "voter": "cynetyc" }, { - "voter": "sebastien", - "rshares": "18770255506" + "rshares": "18770255506", + "voter": "sebastien" }, { - "voter": "asim", - "rshares": "12011479963" + "rshares": "12011479963", + "voter": "asim" }, { - "voter": "aaseb", - "rshares": "14487056742" + "rshares": "14487056742", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4431046054" + "rshares": "4431046054", + "voter": "karen13" }, { - "voter": "deviedev", - "rshares": "10645918815" + "rshares": "10645918815", + "voter": "deviedev" }, { - "voter": "nabilov", - "rshares": "251364791827" + "rshares": "251364791827", + "voter": "nabilov" }, { - "voter": "karenmckersie", - "rshares": "441803588" + "rshares": "441803588", + "voter": "karenmckersie" }, { - "voter": "luisucv34", - "rshares": "871576606" + "rshares": "871576606", + "voter": "luisucv34" }, { - "voter": "streetstyle", - "rshares": "54561525717" + "rshares": "54561525717", + "voter": "streetstyle" }, { - "voter": "milestone", - "rshares": "46854241122" + "rshares": "46854241122", + "voter": "milestone" }, { - "voter": "creemej", - "rshares": "35782000412" + "rshares": "35782000412", + "voter": "creemej" }, { - "voter": "maximkichev", - "rshares": "3878126092" + "rshares": "3878126092", + "voter": "maximkichev" }, { - "voter": "nippel66", - "rshares": "15377574672" + "rshares": "15377574672", + "voter": "nippel66" }, { - "voter": "blueorgy", - "rshares": "171280078005" + "rshares": "171280078005", + "voter": "blueorgy" }, { - "voter": "benjiberigan", - "rshares": "12324948767" + "rshares": "12324948767", + "voter": "benjiberigan" }, { - "voter": "poseidon", - "rshares": "349568852" + "rshares": "349568852", + "voter": "poseidon" }, { - "voter": "iamwne", - "rshares": "2182574144" + "rshares": "2182574144", + "voter": "iamwne" }, { - "voter": "calaber24p", - "rshares": "347965502695" + "rshares": "347965502695", + "voter": "calaber24p" }, { - "voter": "mustafaomar", - "rshares": "20119867662" + "rshares": "20119867662", + "voter": "mustafaomar" }, { - "voter": "simon.braki.love", - "rshares": "3576144996" + "rshares": "3576144996", + "voter": "simon.braki.love" }, { - "voter": "thylbom", - "rshares": "82813520861" + "rshares": "82813520861", + "voter": "thylbom" }, { - "voter": "azurejasper", - "rshares": "3720107267" + "rshares": "3720107267", + "voter": "azurejasper" }, { - "voter": "deanliu", - "rshares": "32541921491" + "rshares": "32541921491", + "voter": "deanliu" }, { - "voter": "sauravrungta", - "rshares": "31308203650" + "rshares": "31308203650", + "voter": "sauravrungta" }, { - "voter": "neroru", - "rshares": "7659625135" + "rshares": "7659625135", + "voter": "neroru" }, { - "voter": "jl777", - "rshares": "215383763306" + "rshares": "215383763306", + "voter": "jl777" }, { - "voter": "positive", - "rshares": "1226120506" + "rshares": "1226120506", + "voter": "positive" }, { - "voter": "crazymumzysa", - "rshares": "103577805737" + "rshares": "103577805737", + "voter": "crazymumzysa" }, { - "voter": "summonerrk", - "rshares": "6232841459" + "rshares": "6232841459", + "voter": "summonerrk" }, { - "voter": "lemooljiang", - "rshares": "14894144779" + "rshares": "14894144779", + "voter": "lemooljiang" }, { - "voter": "happyphoenix", - "rshares": "904575538" + "rshares": "904575538", + "voter": "happyphoenix" }, { - "voter": "claudiop63", - "rshares": "43631243627" + "rshares": "43631243627", + "voter": "claudiop63" }, { - "voter": "proto", - "rshares": "18175890702" + "rshares": "18175890702", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "2708201174" + "rshares": "2708201174", + "voter": "sisterholics" }, { - "voter": "royalmacro", - "rshares": "8964609699" + "rshares": "8964609699", + "voter": "royalmacro" }, { - "voter": "remlaps", - "rshares": "1802321537" + "rshares": "1802321537", + "voter": "remlaps" }, { - "voter": "jasonstaggers", - "rshares": "46040443375" + "rshares": "46040443375", + "voter": "jasonstaggers" }, { - "voter": "mahekg", - "rshares": "13359113213" + "rshares": "13359113213", + "voter": "mahekg" }, { - "voter": "metaflute", - "rshares": "845069114" + "rshares": "845069114", + "voter": "metaflute" }, { - "voter": "taker", - "rshares": "9193716733" + "rshares": "9193716733", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "6521104126" + "rshares": "6521104126", + "voter": "nekromarinist" }, { - "voter": "laonie", - "rshares": "95766250088" + "rshares": "95766250088", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "161751897653" + "rshares": "161751897653", + "voter": "twinner" }, { - "voter": "laoyao", - "rshares": "24560895252" + "rshares": "24560895252", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "2664547502" + "rshares": "2664547502", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "19439832856" + "rshares": "19439832856", + "voter": "somebody" }, { - "voter": "ierg", - "rshares": "65245460" + "rshares": "65245460", + "voter": "ierg" }, { - "voter": "sunshine", - "rshares": "16958164504" + "rshares": "16958164504", + "voter": "sunshine" }, { - "voter": "flysaga", - "rshares": "726848341" + "rshares": "726848341", + "voter": "flysaga" }, { - "voter": "asdes", - "rshares": "7706698035" + "rshares": "7706698035", + "voter": "asdes" }, { - "voter": "gmurph", - "rshares": "2501620573" + "rshares": "2501620573", + "voter": "gmurph" }, { - "voter": "stormblaze", - "rshares": "1659697260" + "rshares": "1659697260", + "voter": "stormblaze" }, { - "voter": "midnightoil", - "rshares": "4294420153" + "rshares": "4294420153", + "voter": "midnightoil" }, { - "voter": "kalimor", - "rshares": "2280336943" + "rshares": "2280336943", + "voter": "kalimor" }, { - "voter": "coderg", - "rshares": "84246848" + "rshares": "84246848", + "voter": "coderg" }, { - "voter": "crypto-toll", - "rshares": "2267389147" + "rshares": "2267389147", + "voter": "crypto-toll" }, { - "voter": "ullikume", - "rshares": "4281204067" + "rshares": "4281204067", + "voter": "ullikume" }, { - "voter": "xiaohui", - "rshares": "10740550186" + "rshares": "10740550186", + "voter": "xiaohui" }, { - "voter": "terrycraft", - "rshares": "176650903994" + "rshares": "176650903994", + "voter": "terrycraft" }, { - "voter": "elfkitchen", - "rshares": "461085584" + "rshares": "461085584", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "103384195129" + "rshares": "103384195129", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5823989445" + "rshares": "5823989445", + "voter": "oflyhigh" }, { - "voter": "xiaokongcom", - "rshares": "335807163" + "rshares": "335807163", + "voter": "xiaokongcom" }, { - "voter": "gargon", - "rshares": "12961700193" + "rshares": "12961700193", + "voter": "gargon" }, { - "voter": "natalymaty", - "rshares": "2076619689" + "rshares": "2076619689", + "voter": "natalymaty" }, { - "voter": "future24", - "rshares": "2002858998" + "rshares": "2002858998", + "voter": "future24" }, { - "voter": "hms818", - "rshares": "1405383530" + "rshares": "1405383530", + "voter": "hms818" }, { - "voter": "villainblack", - "rshares": "3670417888" + "rshares": "3670417888", + "voter": "villainblack" }, { - "voter": "jrcornel", - "rshares": "3033035828" + "rshares": "3033035828", + "voter": "jrcornel" }, { - "voter": "xianjun", - "rshares": "676921271" + "rshares": "676921271", + "voter": "xianjun" }, { - "voter": "hanshotfirst", - "rshares": "25747116283" + "rshares": "25747116283", + "voter": "hanshotfirst" }, { - "voter": "borran", - "rshares": "11541933907" + "rshares": "11541933907", + "voter": "borran" }, { - "voter": "miacats", - "rshares": "93797422302" + "rshares": "93797422302", + "voter": "miacats" }, { - "voter": "njall", - "rshares": "2249572206" + "rshares": "2249572206", + "voter": "njall" }, { - "voter": "userlogin", - "rshares": "6417144136" + "rshares": "6417144136", + "voter": "userlogin" }, { - "voter": "chinadaily", - "rshares": "2077199246" + "rshares": "2077199246", + "voter": "chinadaily" }, { - "voter": "anotherjoe", - "rshares": "20666103650" + "rshares": "20666103650", + "voter": "anotherjoe" }, { - "voter": "almerri", - "rshares": "4879395119" + "rshares": "4879395119", + "voter": "almerri" }, { - "voter": "johnnyyash", - "rshares": "8890516872" + "rshares": "8890516872", + "voter": "johnnyyash" }, { - "voter": "macartem", - "rshares": "3155389493" + "rshares": "3155389493", + "voter": "macartem" }, { - "voter": "gvargas123", - "rshares": "9310407829" + "rshares": "9310407829", + "voter": "gvargas123" }, { - "voter": "themanualbot", - "rshares": "4658385146" + "rshares": "4658385146", + "voter": "themanualbot" }, { - "voter": "levycore", - "rshares": "2148477670" + "rshares": "2148477670", + "voter": "levycore" }, { - "voter": "mig641", - "rshares": "406983674" + "rshares": "406983674", + "voter": "mig641" }, { - "voter": "mandibil", - "rshares": "56654664918" + "rshares": "56654664918", + "voter": "mandibil" }, { - "voter": "steemitpatina", - "rshares": "4633082667" + "rshares": "4633082667", + "voter": "steemitpatina" }, { - "voter": "riv", - "rshares": "54612436" + "rshares": "54612436", + "voter": "riv" }, { - "voter": "runridefly", - "rshares": "2196749616" + "rshares": "2196749616", + "voter": "runridefly" }, { - "voter": "seva", - "rshares": "2458800256" + "rshares": "2458800256", + "voter": "seva" }, { - "voter": "macksby", - "rshares": "7375519035" + "rshares": "7375519035", + "voter": "macksby" }, { - "voter": "funkywanderer", - "rshares": "1931998664" + "rshares": "1931998664", + "voter": "funkywanderer" }, { - "voter": "richardcrill", - "rshares": "5053531368" + "rshares": "5053531368", + "voter": "richardcrill" }, { - "voter": "davidjkelley", - "rshares": "1625387426" + "rshares": "1625387426", + "voter": "davidjkelley" }, { - "voter": "greatness", - "rshares": "182060433" + "rshares": "182060433", + "voter": "greatness" }, { - "voter": "sponge-bob", - "rshares": "27673580803" + "rshares": "27673580803", + "voter": "sponge-bob" }, { - "voter": "digital-wisdom", - "rshares": "15231878384" + "rshares": "15231878384", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3710834980" + "rshares": "3710834980", + "voter": "ethical-ai" }, { - "voter": "jwaser", - "rshares": "6682569853" + "rshares": "6682569853", + "voter": "jwaser" }, { - "voter": "apparat", - "rshares": "51964388" + "rshares": "51964388", + "voter": "apparat" }, { - "voter": "smisi", - "rshares": "1655277599" + "rshares": "1655277599", + "voter": "smisi" }, { - "voter": "asksisk", - "rshares": "224088474986" + "rshares": "224088474986", + "voter": "asksisk" }, { - "voter": "edgarsart", - "rshares": "113366516" + "rshares": "113366516", + "voter": "edgarsart" }, { - "voter": "dubi", - "rshares": "26377562678" + "rshares": "26377562678", + "voter": "dubi" }, { - "voter": "bwaser", - "rshares": "2617262426" + "rshares": "2617262426", + "voter": "bwaser" }, { - "voter": "panther", - "rshares": "337248470" + "rshares": "337248470", + "voter": "panther" }, { - "voter": "brains", - "rshares": "27667123071" + "rshares": "27667123071", + "voter": "brains" }, { - "voter": "waldemar-kuhn", - "rshares": "50450987" + "rshares": "50450987", + "voter": "waldemar-kuhn" }, { - "voter": "chick1", - "rshares": "5753092824" + "rshares": "5753092824", + "voter": "chick1" }, { - "voter": "aoki", - "rshares": "51637870" + "rshares": "51637870", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "51568971" + "rshares": "51568971", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "51581492" + "rshares": "51581492", + "voter": "cwb" }, { - "voter": "slayer", - "rshares": "3623547539" + "rshares": "3623547539", + "voter": "slayer" }, { - "voter": "anomaly", - "rshares": "407122760" + "rshares": "407122760", + "voter": "anomaly" }, { - "voter": "tarekadam", - "rshares": "27667189544" + "rshares": "27667189544", + "voter": "tarekadam" }, { - "voter": "ellepdub", - "rshares": "2401230307" + "rshares": "2401230307", + "voter": "ellepdub" }, { - "voter": "ola1", - "rshares": "123128317" + "rshares": "123128317", + "voter": "ola1" }, { - "voter": "herpetologyguy", - "rshares": "12115121436" + "rshares": "12115121436", + "voter": "herpetologyguy" }, { - "voter": "cryptofarmer", - "rshares": "52460746" + "rshares": "52460746", + "voter": "cryptofarmer" }, { - "voter": "morgan.waser", - "rshares": "4712097333" + "rshares": "4712097333", + "voter": "morgan.waser" }, { - "voter": "dragonice", - "rshares": "50228382" + "rshares": "50228382", + "voter": "dragonice" }, { - "voter": "battalar", - "rshares": "50223099" + "rshares": "50223099", + "voter": "battalar" }, { - "voter": "weare", - "rshares": "51218466" + "rshares": "51218466", + "voter": "weare" }, { - "voter": "slow", - "rshares": "50139069" + "rshares": "50139069", + "voter": "slow" }, { - "voter": "oxygen", - "rshares": "50907857" + "rshares": "50907857", + "voter": "oxygen" }, { - "voter": "palladium", - "rshares": "50873654" + "rshares": "50873654", + "voter": "palladium" }, { - "voter": "optimistic-crone", - "rshares": "117919744" + "rshares": "117919744", + "voter": "optimistic-crone" }, { - "voter": "amstel", - "rshares": "50540827" + "rshares": "50540827", + "voter": "amstel" }, { - "voter": "connect", - "rshares": "50484452" + "rshares": "50484452", + "voter": "connect" }, { - "voter": "remlaps1", - "rshares": "88287639" + "rshares": "88287639", + "voter": "remlaps1" }, { - "voter": "strong-ai", - "rshares": "3609516222" + "rshares": "3609516222", + "voter": "strong-ai" }, { - "voter": "sjamayee", - "rshares": "230273165" + "rshares": "230273165", + "voter": "sjamayee" }, { - "voter": "uct", - "rshares": "162925257" + "rshares": "162925257", + "voter": "uct" }, { - "voter": "witchcraftblog", - "rshares": "435365865" + "rshares": "435365865", + "voter": "witchcraftblog" }, { - "voter": "sdc", - "rshares": "161218747" + "rshares": "161218747", + "voter": "sdc" }, { - "voter": "bethesda", - "rshares": "161179339" + "rshares": "161179339", + "voter": "bethesda" }, { - "voter": "bethsoft", - "rshares": "161096439" + "rshares": "161096439", + "voter": "bethsoft" }, { - "voter": "gravity", - "rshares": "157816798" + "rshares": "157816798", + "voter": "gravity" }, { - "voter": "illusions", - "rshares": "157726117" + "rshares": "157726117", + "voter": "illusions" }, { - "voter": "cybergirl", - "rshares": "160861015" + "rshares": "160861015", + "voter": "cybergirl" }, { - "voter": "dresden", - "rshares": "3941523341" + "rshares": "3941523341", + "voter": "dresden" }, { - "voter": "pawel-krawczyk", - "rshares": "164549939" + "rshares": "164549939", + "voter": "pawel-krawczyk" }, { - "voter": "panic", - "rshares": "159352476" + "rshares": "159352476", + "voter": "panic" }, { - "voter": "icesteem", - "rshares": "158638676" + "rshares": "158638676", + "voter": "icesteem" }, { - "voter": "goldmatters", - "rshares": "32369065992" + "rshares": "32369065992", + "voter": "goldmatters" }, { - "voter": "reddust", - "rshares": "702613929" + "rshares": "702613929", + "voter": "reddust" }, { - "voter": "trickster512", - "rshares": "150387842" + "rshares": "150387842", + "voter": "trickster512" } ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 220, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/life/@gavvet/letters-to-my-dad-on-the-changing-world-with-italian-featuring-cryptofarmer-as-author", - "blacklists": [] - }, - { - "post_id": 952897, - "author": "kevinwong", - "permlink": "the-art-of-maintaining-reputation-plan-your-battles-and-don-t-milk-it", - "category": "guide", - "title": "The Art of Maintaining Reputation: Plan Your Battles and Don't Milk It!", - "body": "
https://s16.postimg.org/5csp5ocf9/kevv.jpg
\n\nHere I am spending the night in the darkness of my bedroom. Dog's snoring right beside me, his head resting on my chest. Feeling like I'm in some prologue of a cyberpunk story. Anyway, surfing on Steemit mobile is actually quite decent, despite the inadequacy of certain types of tables and media not showing up properly on screen.\n\nDecided to write this after going through some dramatic commentaries on Steemit that happened for the past few days. Mostly about ideological disagreements, and especially, overcompensation of posts. While I consider myself pretty critical, I usually opt out of direct, in-your-face type of confrontations. I prefer to plan and pick my own battles, having learned out of experience.\n\nBecause personally, I've never come across any situation that immediately improves itself after insults are thrown around. No one is going to admit wrong right away. Everyone's always right in their own world, and that's particularly true with the presence of an opposing voice. And it doesn't matter how zen one may be. No one's a perfect saint. Everyone has a breaking point. \n\nYup, I've snapped before, more than enough times to know this little fact of life. Nothing good comes out of throwing a fit (well not as much as can be). Sure, our message, our version of truth should be upheld. But there are better ways of fighting the good fight.. maybe like what I'm trying to do with this post right now. So what am I trying to address here?\n\n---------------------------\n# Plan your battles - don't join someone else's!\n
https://s10.postimg.org/ntels66d5/planning.jpg
\nThere was [a post on Steemit](https://steemit.com/anarchy/@kennyskitchen/the-40-anarchists-you-want-to-be-following-on-steemit) a while ago that labelled me an anarchist. Am I? Maybe I am. Sure, I'm against big, centralised governments. I may even detest the inherent thieving practices of big brother. But I'm still running a music event company - there are legal matters that I still need to run by government offices, purely out of safety and security reasons.\n\nYou may argue that it's perverted that I'm using an intrinsically violent agent (namely, The Government and The Police State) to secure the well-being of my business customers. Next I'll ask - can we have a decentralised free market doing music events with all the right securities? That's what my company, [Hybrid Entertainment](https://steemit.com/steemit-marketing/@kevinwong/our-next-dance-music-event-psychedelic-trance-some-steemit-love) partly aims to do. It's a learning process. \n\nFor now, we still need to use the existing structures of Old, Big Government.. while we find ways to transition out of such dependence. Fight too hard and you'll get clamped down, thrown out of the game. You can't do much when you're out of the game, so stay in it! Take the time to plan your battles, dear hot-blooded confrontationists (if that's even a word).\n\nSure, the world needs you to say things as they are. But hearing the painful truth is almost like violence itself. No one likes that, no matter which side of a dispute. Peace also involves peace of mind. It's a much longer game - it comes with the territory. You're already in someone else's fight once you get into war. Only get into war if you're the big guy. The small guy is always the loser - the unwilling pawn. Think about this in scope of what's happening all around the world, even on Steemit.\n\nDon't be a zealot. There are dangers of being too far left, or too far right. Find the middle way. All you need is another perspective. Some people may be asswipes, but goodness is omnipresent if the conditions are right.\n\nAnd that's how you plan your battles - take the time to do it right. \n\nIn perspective of my generally apolitical position on Steemit, I tend to find better ways to contribute instead of lashing out on another user. Sure, I have my dissatisfaction about some author rewards and posting models from time to time. However, I tried putting effort into building better models and figuring out ways to add substantial value into the ecosystem. Eventually, some of us gravitated towards a loose goal of rewarding diversity by combing contents on Steemit on a daily basis.\n\nThere are now epic giant hidden-gem megaposts on Steemit - like this one from [Project Curie](https://steemit.com/@curie) and [Robinhood Whale](https://steemit.com/@robinhoodwhale). Better coverage, better quality, better value - in so many ways. This is the free-market reaction to solo authored hidden-gem posts of early Steemit. No doubt that everything evolves over time. \n\nKnowing that value is subjective, I have always refrained from losing my cool. Even here on Steemit. \n\n**I'm the small fish and I have to plan my battles!**\n\n---------------------------------------\n\n# Don't freaking milk it!\n\n
https://s3.postimg.org/6ne6t272b/milk.jpg
\nThere are big reasons why most of us don't really like governments. Greed and corruption. Needless to say, the crowd easily picks up on this when insubstantial effort is rewarded handsomely. By all means, that's as subjective as can be. What's not (very) subjective, however, is if one continues to milk it, even despite public disapproval. \n\nThis happens all around the world. Don't oversell. You'll lose reputation if you are obviously **milking it**!\n\nSure, you may gain new followers.. newly inspired and freshly impressed. But old eyes grow weary. People are watching, and your social value fluctuates all the time. You can't please everyone, but you can try the **art of not milking the shit out of the system**.\n\nIt's a good business practice. It's a good personal conduct. And it works on Steemit.\n\nThat's a reason why I'm also posting lesser (other than plainly having a huge writer's block, reserving myself from random shitposting). Now I'm only writing when I really think I have something good to add as a post. As I'm partly dependent on Steemit, I've strategized a lil, refraining from appearing to be **milking it**, seeking modes of substantial contribution behind the scenes to compensate for the awesome support that has been given to me on this platform.\n\nIf you are suddenly rewarded thousands for a post - ask yourself. Is that post worth that much? Heck, I don't know if my top philosophical post is worth 4,000 bucks, but I know I've put long hours in it, enough to avoid milking and recycling the same content. Instead, I try to put more effort in other areas of the ecosystem to balance out the lopsided reward.\n\nThe blockchain is transparent. It's easy to find out if you're milking it. To avoid seeming like you're milking it - just be honest and ask yourself the right questions! Then, do the right thing!\n\n**Like life, like Steemit - try to give more than you can take. Don't. Freaking. Milk It.**\n\n----------------------------------\n\n# Take time to build, or take time to exploit?\n
https://img1.steemit.com/0x0/http://i.imgur.com/T9b4dDQ.jpg
\n
By Steemit's talented artist @lgm-1
\n\nNaturally, I'd say take time to build. Once you're caught exploiting the system, in life or on Steemit, you're lose reputation whether or not if its digitally measurable. You can create as many accounts as you want and find a million ways to exploit everything, but ask yourself - what are you building?\n\nHere are some tips for maintaining reputation on Steemit:-\n- Steemit's a mutual aid society. While posts can be about anything, note there's a limited amount of funds going around each day. It's obvious that your reputation is at stake if you have somehow managed to acquire good support, but not giving back substantially.\n- Tags are like real estate. Choose appropriately. An example is if you're writing your opinions on something rather meta, I think it's prudent to respect the scientific community. For example in [my article about consciousness](https://steemit.com/consciousness/@kevinwong/let-s-talk-about-consciousness-wtf-is-it), I've deliberately used the ***pseudoscience*** tag, no matter how right I think I could be. I clearly think about such topics often, but I never put myself in research labs knowing about consciousness well enough to indicate that I am the master of that domain.\n- Follow up on your promises. Communicate transparently.\n- Put in more effort, visibly and even behind the scenes when you manage to acquire good payouts.\n- Try to follow others. Curate and also support other members.\n- Plan your battles and don't milk it! And also, celebrity attitudes won't last long here if you're not giving back to the community. @dollarvigilante is doing this right - he's aiding others and even curating frequently on his free time!\n- Again, in general, give more than you can take.\n\n### Reputation is everything - for survival, for change in a social landscape.\n\n*Note: There is some form of censorship of the mind when it comes to chance of interruption from higher powers. It's the same everywhere. You just have to play your cards right, opting for different methods, different approaches. It's not really a systems-problem. It's a people-problem, as always. Never leave an opening for others to destroy your reputation.*\n\n-----------------------------------------------\n
Stock photos courtesy of https://pixabay.com/
\n\n-----------------------------------------------\n
Follow me @kevinwong
\n-------------------------------------------------", + "blacklists": [], + "body": ">Today I told my dad the final date of my marriage: October 2nd . Few days ago, as I told him that I was going to get married in a few weeks, he got mad at me. \u201cI was expecting you to get a real job before you got married!\u201d was his main critique. \u201cHow can you get married *now*?\u201d he asked me.\n\nOggi ho detto a mio padre la data definitiva del mio matrimonio: due ottobre. Pochi giorni fa, quando gli ho detto che mi sarei sposato nel giro di poche settimane, si \u00e8 arrabbiato con me. \u201cMi sarei aspettato che ti trovassi un lavoro vero prima di sposarti\u201d \u00e8 stato il suo principale oggetto di critica. \u201cCome puoi sposarti *adesso*?\u201d mi ha chiesto.\n\n>Let me give you some background. I\u2019m 29 years old and I want to do many things in my life. I studied economics, worked for no-profit and academia and I published a book in May on the shifting economic paradigm. I dedicated the last year to this book, spent all the savings I had and by now I have a few weeks of financial autonomy left. Meanwhile I rented a room on Airbnb, learned how to do bracelets and sold them on the Ligurian (North-West Italy) seaside. Simultaneously, I\u2019m working on becoming what I call a cryptofarmer: in fact, my goal is to write and earn cryptocurrencies while living in the countryside in a small house I\u2019m transforming into a farm. I learned how to plant a vegetable garden, how to chop wood and limiting the expenses of food and heating.\nEven if sometimes I\u2019m scared I could not afford a living, I feeI I can make it. We can make it. In fact, few months ago a girl I met last winter in Chile joined me and is providing great help with her skills and work. And I\u2019m going to marry her in a few weeks, as I said.\n\nFacciamo un passo indietro. Ho 29 anni e voglio fare tante cose nella mia vita. Ho studiato economia, lavorato nel no-profit e nel mondo accademico per poi pubblicare, a maggio di quest\u2019anno, un libro sul cambio di paradigma in economia. Ho dedicato l\u2019ultimo anno a questo libro, ho speso tutti i miei risparmi e ho davanti ancora qualche settimana di autonomia finanziaria. Nel frattempo ho affittato una stanza su Airbnb e imparato a fare braccialetti che ho venduto sulla costa ligure. Parallelamente lavoro per diventare quello che chiamo un cryptofarmer; il mio obiettivo \u00e8 infatti quello di scrivere e guadagnare cripto-valute mentre vivo in una piccola casa di campagna che sto trasformando in fattoria. Ho imparato come piantare un orto, spaccare la legna e limitare le spese di cibo e riscaldamento.\nAnche se a volte ho paura di non riuscire a guadagnarmi da vivere, sento che ce la posso fare. Che ce la *possiamo* fare. Qualche mese fa, infatti, una ragazza che ho conosciuto lo scorso inverno in Cile si \u00e8 unita ai miei progetti e mi sta dando un grosso aiuto con le sue capacit\u00e0 e il suo lavoro. E io la sposer\u00f2 in qualche settimana, come dicevo.\n>My father is 69 years old. Oddly enough, he actually left countryside for the city \u2013 a choice diametrically opposite to the one I made \u2013 to become a lawyer and had success by working really hard. As far as I know, he wanted to be a journalist but chose to be a lawyer to get a better salary \u2013 as he got. He wanted me to be a lawyer too, of course, but when I chose to study economics he told me I could become an auditor; those were professions, in his words, that paid good.\n\nMio padre ha 69 anni. E\u2019 curioso come lui lasci\u00f2 la campagna per la citt\u00e0 \u2013 una scelta diametralmente opposta a quella che ho fatto io \u2013 per diventare un avvocato e l\u00ec ha avuto successo lavorando molto. Da quel che so, lui voleva fare il giornalista da giovane, ma poi ha scelto di fare l\u2019avvocato per avere un miglior salario \u2013 come appunto si \u00e8 verificato. Chiaramente voleva che anche io facessi l\u2019avvocato e successivamente, quando io scelsi di studiare economia, mi disse che potevo diventare il revisore contabile; mestieri, questi, che secondo lui erano ben remunerati. \n>Dear dad,\nA couple of years ago, you told that you were eventually glad I didn\u2019t follow your path and became a lawyer. The job had changed too much, you said. Now too many lawyers are fighting one against each other to get the job and clients are not paying for the work you did for them. That\u2019s how you described me your job \u2013 a job that in Italy, for your generation, was a synonym of success. A son who became a lawyer was a dream for the average family.\nWell, I\u2019m going to add a little piece to this picture. In a few decades, the whole profession of lawyer may become obsolete. Do you know that even today you can ask legal question to [Ross](http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html), an IBM powered machine? It will provide you an answer by sifting through thousands of legal documents, statutes and cases - assisting you to get ready for the case by including citations, suggested readings and confidence ratings. \nToday few technologies are ready to disrupt whole sectors of the economy. One of these is Artificial Intelligence that could make your profession obsolete. Another is the blockchain: that one could make the auditor and accountancy profession useless too. Have you ever heard about it? Some say it\u2019s important as the invention of the Internet.\n\nCaro pap\u00e0,\nQualche anno fa mi hai detto che in fin dei conti eri contento che non avessi seguito la tua strada e fossi diventato un avvocato. Il lavoro \u00e8 cambiato troppo, hai detto. Troppi avvocati in conflitto l\u2019uno contro l\u2019altro per accaparrarsi clienti che poi non pagano il lavoro che fai per loro. Cos\u00ec mi hai descritto il tuo lavoro \u2013 un lavoro che in Italia, per la tua generazione, era sinonimo di successo. Un figlio che diventava avvocato era un sogno per la famiglia media.\nBeh, lasciami aggiungere un pezzo a questa storia. In un paio di decadi, la professione stessa dell\u2019avvocato potrebbe diventare obsoleta. Sai che gi\u00e0 oggi puoi chiedere un parere legale a [Ross](http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html), una macchina sviluppata da IBM? Ti restituisce una risposta setacciando migliaia di documenti legali, statuti e casi \u2013 assistendoti a prepararti al caso includendo citazioni, letture consigliate e intervalli di confidenza. Alcune tecnologie sono sul punto di rivoluzionare interi settori dell\u2019economia. Una di queste \u00e8 l\u2019intelligenza artificiale che potrebbe rendere obsoleta la tua professione. Un\u2019altra \u00e8 la blockchain: questa potrebbe rendere inutile la professione del contabile e del revisore. Ne hai mai sentito parlare? Alcuni dicono che \u00e8 importante quanto l\u2019invenzione di Internet.\n>**You should really be glad I didn\u2019t choose your job just because it paid good**. As I was 18 (in 2005) being a lawyer paid good, in a decade it wasn\u2019t the case anymore. **In fact, between 2007 and 2014 the average income reported by Italian lawyers [declined from 51.314 euro to 37.505]( http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare)**. Well, last decade \u2013 it is to be said - was a *century*: while economy collapsed in one of the worst crisis ever, technology produced unparalleled innovations. Before 2005 there was no Youtube. In 2005 there was no smartphone either. No-one can tell what are we going to see in the next decade. Some say there will be some big change in the workplace. In fact, [some researchers at Oxford]( http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf) say that by 2035, half of the jobs Americans currently hold will be automatized. **Robots are simply better than men in doing robotic work**. Even the world\u2019s most ancient profession may suffer a strong decline with the development of virtual reality \u2013 this has become the next big thing in adult entertainment.\n\n**Devi essere davvero contento che non abbia scelto il tuo lavoro solo perch\u00e9 era ben remunerato**. Quando ancora io avevo 18 anni (nel 2005) fare l\u2019avvocato era remunerativo, ma nell\u2019arco di un decennio ci\u00f2 non era pi\u00f9 vero. **Tra il 2007 e il 2014 il reddito medio dell\u2019avvocato italiano [\u00e8 sceso da 51.314 euro a 37.505 euro]( http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare)**. L\u2019ultimo decennio \u2013 bisogna riconoscerlo - ha rappresentato un *secolo*: mentre l\u2019economia collassava in una delle peggiori crisi di sempre, la tecnologia produceva innovazioni senza pari. Prima del 2005 non c\u2019era Youtube. Prima del 2005 non c\u2019era nemmeno lo smartphone. Nessuno pu\u00f2 dire cosa vedremo nel prossimo decennio. Molti dicono che ci saranno grossi cambiamenti sul luogo di lavoro. [Alcuni ricercatori di Oxford]( http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf) dicono che entro il 2035, il 45% dei lavori attualmente svolti dagli americani verr\u00e0 automatizzato. **I robot svolgono meglio degli uomini i lavori da robot**. Perfino il mestiere pi\u00f9 vecchio del mondo potrebbe risentire di un forte declino a seguito dello sviluppo della realt\u00e0 virtuale \u2013 questa \u00e8 diventata l\u2019ultima novit\u00e0 nel mondo dell\u2019intrattenimento per adulti.\n>Don\u2019t worry, dad, and don\u2019t look at me as someone who is living hand to mouth. Many things are changing in the next years, together with most of the reference points we had. Those jobs who were good, could not be profitable and stable anymore. Most of all, the same idea of stability will change: we\u2019ll have to find stability surfing between waves of change. Choosing a job just because it pays good today, may not be a good strategy. **My generation is challenged to find and develop that personal value, those talents, that no machine could substitute. This is what I\u2019m doing \u2013 soon I\u2019ll write you how**.\n\nPer questo, pap\u00e0, non preoccuparti e non guardarmi come si guarda un figlio che vive di espedienti. Molte cose cambieranno nei prossimi anni, insieme a molti dei punti di riferimento che avevamo. Quei lavori che prima erano buoni, potrebbero non essere pi\u00f9 remunerativi e stabili. Pi\u00f9 di tutto, cambier\u00e0 l\u2019idea di stabilit\u00e0: dovremmo imparare a trovare la stabilit\u00e0 di un surfista a cavallo di ondate di cambiamento. Scegliere un lavoro solo perch\u00e9 paga bene oggi, potrebbe non essere una strategia che paga. **La sfida per la mia generazione \u00e8 di trovare e sviluppare quel valore personale, quei talenti, che nessuna macchina pu\u00f2 sostituire. Questo \u00e8 quello che sto facendo io \u2013 presto ti scriver\u00f2 come**.\n\nhttp://i68.tinypic.com/2hz9lz.jpg \n\n*Me, dad, fianc\u00e9, mum*\n\n***Don't forget to follow @cryptofarmer***\n***a shout out goes to @claudiop63 for assisting the Italian community so don't forget to follow him***", + "category": "life", + "children": 11, + "created": "2016-09-15T14:01:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { + "image": [ + "http://i68.tinypic.com/2hz9lz.jpg" + ], + "links": [ + "http://www.psfk.com/2015/01/ross-ibm-watson-powered-lawyer-legal-research.html", + "http://www.italiaoggi.it/news/dettaglio_news.asp?id=201603102026358478&chkAgenzie=ITALIAOGGI&titolo=Avvocati,%20redditi%20da%20dimenticare", + "http://www.oxfordmartin.ox.ac.uk/downloads/academic/The_Future_of_Employment.pdf" + ], "tags": [ - "guide", "life", - "lifehack", - "reputation", - "craigrant" + "introducemyself" ], "users": [ - "lgm-1", - "dollarvigilante", - "kevinwong" - ], - "image": [ - "https://s16.postimg.org/5csp5ocf9/kevv.jpg", - "https://s10.postimg.org/ntels66d5/planning.jpg", - "https://s3.postimg.org/6ne6t272b/milk.jpg", - "https://img1.steemit.com/0x0/http://i.imgur.com/T9b4dDQ.jpg" - ], - "links": [ - "https://steemit.com/anarchy/@kennyskitchen/the-40-anarchists-you-want-to-be-following-on-steemit", - "https://steemit.com/steemit-marketing/@kevinwong/our-next-dance-music-event-psychedelic-trance-some-steemit-love", - "https://steemit.com/@curie", - "https://steemit.com/@robinhoodwhale", - "https://steemit.com/consciousness/@kevinwong/let-s-talk-about-consciousness-wtf-is-it", - "https://pixabay.com/" + "cryptofarmer", + "claudiop63" ] }, - "created": "2016-09-14T22:00:36", - "updated": "2016-09-15T07:45:57", - "depth": 0, - "children": 53, - "net_rshares": 115120672136759, - "is_paidout": false, - "payout_at": "2016-09-16T04:43:13", - "payout": 755.208, - "pending_payout_value": "755.208 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66723421210839, + "payout": 258.716, + "payout_at": "2016-09-22T14:01:30", + "pending_payout_value": "258.716 HBD", + "percent_hbd": 10000, + "permlink": "letters-to-my-dad-on-the-changing-world-with-italian-featuring-cryptofarmer-as-author", + "post_id": 1254158, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 220 + }, + "title": "Letters to my dad on the changing world... with Italian(featuring @cryptofarmer as author)", + "updated": "2016-09-15T14:01:30", + "url": "/life/@gavvet/letters-to-my-dad-on-the-changing-world-with-italian-featuring-cryptofarmer-as-author" + }, + { "active_votes": [ { - "voter": "barrie", - "rshares": "480579269556" + "rshares": "480579269556", + "voter": "barrie" }, { - "voter": "anonymous", - "rshares": "231751293887" + "rshares": "231751293887", + "voter": "anonymous" }, { - "voter": "rainman", - "rshares": "12889266254874" + "rshares": "12889266254874", + "voter": "rainman" }, { - "voter": "berniesanders", - "rshares": "26305603050148" + "rshares": "26305603050148", + "voter": "berniesanders" }, { - "voter": "val-b", - "rshares": "15605000000000" + "rshares": "15605000000000", + "voter": "val-b" }, { - "voter": "riverhead", - "rshares": "3358053566682" + "rshares": "3358053566682", + "voter": "riverhead" }, { - "voter": "badassmother", - "rshares": "1990377241911" + "rshares": "1990377241911", + "voter": "badassmother" }, { - "voter": "nextgenwitness", - "rshares": "187617413684" + "rshares": "187617413684", + "voter": "nextgenwitness" }, { - "voter": "pharesim", - "rshares": "3306757675077" + "rshares": "3306757675077", + "voter": "pharesim" }, { - "voter": "hr1", - "rshares": "2005106058621" + "rshares": "2005106058621", + "voter": "hr1" }, { - "voter": "justin", - "rshares": "640773963547" + "rshares": "640773963547", + "voter": "justin" }, { - "voter": "silver", - "rshares": "1758663279793" + "rshares": "1758663279793", + "voter": "silver" }, { - "voter": "silversteem", - "rshares": "4166786907723" + "rshares": "4166786907723", + "voter": "silversteem" }, { - "voter": "nextgencrypto", - "rshares": "4851657471753" + "rshares": "4851657471753", + "voter": "nextgencrypto" }, { - "voter": "jaewoocho", - "rshares": "22381565222" + "rshares": "22381565222", + "voter": "jaewoocho" }, { - "voter": "xeroc", - "rshares": "1869062512579" + "rshares": "1869062512579", + "voter": "xeroc" }, { - "voter": "steemservices", - "rshares": "425868900225" + "rshares": "425868900225", + "voter": "steemservices" }, { - "voter": "alex90342fastn1", - "rshares": "209639354860" + "rshares": "209639354860", + "voter": "alex90342fastn1" }, { - "voter": "joseph", - "rshares": "1607381560851" + "rshares": "1607381560851", + "voter": "joseph" }, { - "voter": "recursive3", - "rshares": "452603688207" + "rshares": "452603688207", + "voter": "recursive3" }, { - "voter": "masteryoda", - "rshares": "588963325183" + "rshares": "588963325183", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3051642158867" + "rshares": "3051642158867", + "voter": "recursive" }, { - "voter": "mineralwasser", - "rshares": "1172473837" + "rshares": "1172473837", + "voter": "mineralwasser" }, { - "voter": "mrs.agsexplorer", - "rshares": "85737349562" + "rshares": "85737349562", + "voter": "mrs.agsexplorer" }, { - "voter": "bingo-1", - "rshares": "1620255991" + "rshares": "1620255991", + "voter": "bingo-1" }, { - "voter": "boatymcboatface", - "rshares": "438041274025" + "rshares": "438041274025", + "voter": "boatymcboatface" }, { - "voter": "idol", - "rshares": "9404339123" + "rshares": "9404339123", + "voter": "idol" }, { - "voter": "donkeypong", - "rshares": "2692207475582" + "rshares": "2692207475582", + "voter": "donkeypong" }, { - "voter": "steemrollin", - "rshares": "783510713656" + "rshares": "783510713656", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "4632015537" + "rshares": "4632015537", + "voter": "sakr" }, { - "voter": "chitty", - "rshares": "283944946279" + "rshares": "283944946279", + "voter": "chitty" }, { - "voter": "alexgr", - "rshares": "47092417970" + "rshares": "47092417970", + "voter": "alexgr" }, { - "voter": "jocelyn", - "rshares": "1660446343" + "rshares": "1660446343", + "voter": "jocelyn" }, { - "voter": "acidsun", - "rshares": "83523204254" + "rshares": "83523204254", + "voter": "acidsun" }, { - "voter": "edgeland", - "rshares": "148150884169" + "rshares": "148150884169", + "voter": "edgeland" }, { - "voter": "jamtaylor", - "rshares": "194244553812" + "rshares": "194244553812", + "voter": "jamtaylor" }, { - "voter": "eeks", - "rshares": "74898454777" + "rshares": "74898454777", + "voter": "eeks" }, { - "voter": "paco-steem", - "rshares": "468170958" + "rshares": "468170958", + "voter": "paco-steem" }, { - "voter": "cryptogee", - "rshares": "912602737692" + "rshares": "912602737692", + "voter": "cryptogee" }, { - "voter": "spaninv", - "rshares": "5638722045" + "rshares": "5638722045", + "voter": "spaninv" }, { - "voter": "georgedonnelly", - "rshares": "25545945557" + "rshares": "25545945557", + "voter": "georgedonnelly" }, { - "voter": "instructor2121", - "rshares": "31081352622" + "rshares": "31081352622", + "voter": "instructor2121" }, { - "voter": "nate-atkins", - "rshares": "7891620962" + "rshares": "7891620962", + "voter": "nate-atkins" }, { - "voter": "james-show", - "rshares": "18533432464" + "rshares": "18533432464", + "voter": "james-show" }, { - "voter": "teamsteem", - "rshares": "319841523573" + "rshares": "319841523573", + "voter": "teamsteem" }, { - "voter": "cryptoctopus", - "rshares": "1713517353627" + "rshares": "1713517353627", + "voter": "cryptoctopus" }, { - "voter": "richman", - "rshares": "9535707424" + "rshares": "9535707424", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "550546408583" + "rshares": "550546408583", + "voter": "nanzo-scoop" }, { - "voter": "fact", - "rshares": "13340014301" + "rshares": "13340014301", + "voter": "fact" }, { - "voter": "steve-walschot", - "rshares": "160905828175" + "rshares": "160905828175", + "voter": "steve-walschot" }, { - "voter": "cian.dafe", - "rshares": "10099012692" + "rshares": "10099012692", + "voter": "cian.dafe" }, { - "voter": "hannixx42", - "rshares": "47422549796" + "rshares": "47422549796", + "voter": "hannixx42" }, { - "voter": "mummyimperfect", - "rshares": "169123085990" + "rshares": "169123085990", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "268838726" + "rshares": "268838726", + "voter": "coar" }, { - "voter": "asch", - "rshares": "98194455049" + "rshares": "98194455049", + "voter": "asch" }, { - "voter": "kevinwong", - "rshares": "603531864037" + "rshares": "603531864037", + "voter": "kevinwong" }, { - "voter": "murh", - "rshares": "1060920601" + "rshares": "1060920601", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "3041891225" + "rshares": "3041891225", + "voter": "cryptofunk" }, { - "voter": "radioactivities", - "rshares": "3140744830" + "rshares": "3140744830", + "voter": "radioactivities" }, { - "voter": "error", - "rshares": "2164686241" + "rshares": "2164686241", + "voter": "error" }, { - "voter": "marta-zaidel", - "rshares": "5736901624" + "rshares": "5736901624", + "voter": "marta-zaidel" }, { - "voter": "ranko-k", - "rshares": "40014025775" + "rshares": "40014025775", + "voter": "ranko-k" }, { - "voter": "cyber", - "rshares": "985042955913" + "rshares": "985042955913", + "voter": "cyber" }, { - "voter": "ak2020", - "rshares": "48237714954" + "rshares": "48237714954", + "voter": "ak2020" }, { - "voter": "justtryme90", - "rshares": "65573912297" + "rshares": "65573912297", + "voter": "justtryme90" }, { - "voter": "drinkzya", - "rshares": "33032554744" + "rshares": "33032554744", + "voter": "drinkzya" }, { - "voter": "satoshifund", - "rshares": "3616249140600" + "rshares": "3616249140600", + "voter": "satoshifund" }, { - "voter": "taoteh1221", - "rshares": "392453750650" + "rshares": "392453750650", + "voter": "taoteh1221" }, { - "voter": "applecrisp", - "rshares": "418804855" + "rshares": "418804855", + "voter": "applecrisp" }, { - "voter": "stiletto", - "rshares": "365287420" + "rshares": "365287420", + "voter": "stiletto" }, { - "voter": "juanmiguelsalas", - "rshares": "55576340008" + "rshares": "55576340008", + "voter": "juanmiguelsalas" }, { - "voter": "andrarchy", - "rshares": "572341707403" + "rshares": "572341707403", + "voter": "andrarchy" }, { - "voter": "kenny-crane", - "rshares": "110473581518" + "rshares": "110473581518", + "voter": "kenny-crane" }, { - "voter": "thecryptodrive", - "rshares": "54694274623" + "rshares": "54694274623", + "voter": "thecryptodrive" }, { - "voter": "kaylinart", - "rshares": "353770070386" + "rshares": "353770070386", + "voter": "kaylinart" }, { - "voter": "infovore", - "rshares": "563733180586" + "rshares": "563733180586", + "voter": "infovore" }, { - "voter": "schro", - "rshares": "132301151875" + "rshares": "132301151875", + "voter": "schro" }, { - "voter": "tee-em", - "rshares": "4552145645" + "rshares": "4552145645", + "voter": "tee-em" }, { - "voter": "michaelx", - "rshares": "30491735429" + "rshares": "30491735429", + "voter": "michaelx" }, { - "voter": "anwenbaumeister", - "rshares": "804471067802" + "rshares": "804471067802", + "voter": "anwenbaumeister" }, { - "voter": "grandpere", - "rshares": "8928351544" + "rshares": "8928351544", + "voter": "grandpere" }, { - "voter": "mark-waser", - "rshares": "5689049935" + "rshares": "5689049935", + "voter": "mark-waser" }, { - "voter": "albertogm", - "rshares": "17023109715" + "rshares": "17023109715", + "voter": "albertogm" }, { - "voter": "geoffrey", - "rshares": "106033721718" + "rshares": "106033721718", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "192232704674" + "rshares": "192232704674", + "voter": "kimziv" }, { - "voter": "lukestokes", - "rshares": "267994388047" + "rshares": "267994388047", + "voter": "lukestokes" }, { - "voter": "honeythief", - "rshares": "43526357269" + "rshares": "43526357269", + "voter": "honeythief" }, { - "voter": "mammasitta", - "rshares": "783400875" + "rshares": "783400875", + "voter": "mammasitta" }, { - "voter": "emily-cook", - "rshares": "77695030973" + "rshares": "77695030973", + "voter": "emily-cook" }, { - "voter": "talanhorne", - "rshares": "32733174015" + "rshares": "32733174015", + "voter": "talanhorne" }, { - "voter": "razvanelulmarin", - "rshares": "81716838174" + "rshares": "81716838174", + "voter": "razvanelulmarin" }, { - "voter": "superfreek", - "rshares": "2122888373" + "rshares": "2122888373", + "voter": "superfreek" }, { - "voter": "cryptoiskey", - "rshares": "33245604843" + "rshares": "33245604843", + "voter": "cryptoiskey" }, { - "voter": "primus", - "rshares": "11728574802" + "rshares": "11728574802", + "voter": "primus" }, { - "voter": "mrhankeh", - "rshares": "471495169" + "rshares": "471495169", + "voter": "mrhankeh" }, { - "voter": "clement", - "rshares": "37138635112" + "rshares": "37138635112", + "voter": "clement" }, { - "voter": "isteemit", - "rshares": "47416157546" + "rshares": "47416157546", + "voter": "isteemit" }, { - "voter": "norbu", - "rshares": "67109183200" + "rshares": "67109183200", + "voter": "norbu" }, { - "voter": "ladyclair", - "rshares": "280886491" + "rshares": "280886491", + "voter": "ladyclair" }, { - "voter": "bacchist", - "rshares": "69639423700" + "rshares": "69639423700", + "voter": "bacchist" }, { - "voter": "venuspcs", - "rshares": "53810463964" + "rshares": "53810463964", + "voter": "venuspcs" }, { - "voter": "michaellamden68", - "rshares": "3806124499" + "rshares": "3806124499", + "voter": "michaellamden68" }, { - "voter": "dasha", - "rshares": "7415227922" + "rshares": "7415227922", + "voter": "dasha" }, { - "voter": "asmolokalo", - "rshares": "174543034217" + "rshares": "174543034217", + "voter": "asmolokalo" }, { - "voter": "ezzy", - "rshares": "55965693937" + "rshares": "55965693937", + "voter": "ezzy" }, { - "voter": "rubybian", - "rshares": "69473128292" + "rshares": "69473128292", + "voter": "rubybian" }, { - "voter": "orly", - "rshares": "3148262011" + "rshares": "3148262011", + "voter": "orly" }, { - "voter": "firepower", - "rshares": "46383380668" + "rshares": "46383380668", + "voter": "firepower" }, { - "voter": "mstang83", - "rshares": "245172817" + "rshares": "245172817", + "voter": "mstang83" }, { - "voter": "katyakov", - "rshares": "24863029935" + "rshares": "24863029935", + "voter": "katyakov" }, { - "voter": "yogi.artist", - "rshares": "15674042620" + "rshares": "15674042620", + "voter": "yogi.artist" }, { - "voter": "r4fken", - "rshares": "14215545466" + "rshares": "14215545466", + "voter": "r4fken" }, { - "voter": "steemswede", - "rshares": "1001850942" + "rshares": "1001850942", + "voter": "steemswede" }, { - "voter": "derekareith", - "rshares": "142892158061" + "rshares": "142892158061", + "voter": "derekareith" }, { - "voter": "slowwalker", - "rshares": "823059128625" + "rshares": "823059128625", + "voter": "slowwalker" }, { - "voter": "btcshare7", - "rshares": "1553964832" + "rshares": "1553964832", + "voter": "btcshare7" }, { - "voter": "vi1son", - "rshares": "2210761988" + "rshares": "2210761988", + "voter": "vi1son" }, { - "voter": "renohq", - "rshares": "1267696038568" + "rshares": "1267696038568", + "voter": "renohq" }, { - "voter": "sigmajin", - "rshares": "98005962692" + "rshares": "98005962692", + "voter": "sigmajin" }, { - "voter": "ausbitbank", - "rshares": "14876241153" + "rshares": "14876241153", + "voter": "ausbitbank" }, { - "voter": "mrwang", - "rshares": "45733145544" + "rshares": "45733145544", + "voter": "mrwang" }, { - "voter": "steem1653", - "rshares": "2530804964" + "rshares": "2530804964", + "voter": "steem1653" }, { - "voter": "anyx", - "rshares": "188405790343" + "rshares": "188405790343", + "voter": "anyx" }, { - "voter": "steemit-life", - "rshares": "7540907296" + "rshares": "7540907296", + "voter": "steemit-life" }, { - "voter": "asim", - "rshares": "11754696821" + "rshares": "11754696821", + "voter": "asim" }, { - "voter": "jesta", - "rshares": "320414159082" + "rshares": "320414159082", + "voter": "jesta" }, { - "voter": "snowden", - "rshares": "90257674" + "rshares": "90257674", + "voter": "snowden" }, { - "voter": "aaseb", - "rshares": "14289427593" + "rshares": "14289427593", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "1107704273" + "rshares": "1107704273", + "voter": "karen13" }, { - "voter": "deviedev", - "rshares": "10417290332" + "rshares": "10417290332", + "voter": "deviedev" }, { - "voter": "nabilov", - "rshares": "258942997644" + "rshares": "258942997644", + "voter": "nabilov" }, { - "voter": "meesterboom", - "rshares": "17586922894" + "rshares": "17586922894", + "voter": "meesterboom" }, { - "voter": "noodhoog", - "rshares": "8573230772" + "rshares": "8573230772", + "voter": "noodhoog" }, { - "voter": "juvyjabian", - "rshares": "6400554488" + "rshares": "6400554488", + "voter": "juvyjabian" }, { - "voter": "dmacshady", - "rshares": "2668109030" + "rshares": "2668109030", + "voter": "dmacshady" }, { - "voter": "karenmckersie", - "rshares": "476670464" + "rshares": "476670464", + "voter": "karenmckersie" }, { - "voter": "knozaki2015", - "rshares": "451014793670" + "rshares": "451014793670", + "voter": "knozaki2015" }, { - "voter": "milestone", - "rshares": "44553728340" + "rshares": "44553728340", + "voter": "milestone" }, { - "voter": "lichtblick", - "rshares": "7312894074" + "rshares": "7312894074", + "voter": "lichtblick" }, { - "voter": "wildchild", - "rshares": "84865861" + "rshares": "84865861", + "voter": "wildchild" }, { - "voter": "btcbtcbtc20155", - "rshares": "5726094484" + "rshares": "5726094484", + "voter": "btcbtcbtc20155" }, { - "voter": "nippel66", - "rshares": "15683266563" + "rshares": "15683266563", + "voter": "nippel66" }, { - "voter": "oululahti", - "rshares": "4317565662" + "rshares": "4317565662", + "voter": "oululahti" }, { - "voter": "poseidon", - "rshares": "4310346145" + "rshares": "4310346145", + "voter": "poseidon" }, { - "voter": "simon.braki.love", - "rshares": "3365335082" + "rshares": "3365335082", + "voter": "simon.braki.love" }, { - "voter": "thylbom", - "rshares": "76406992485" + "rshares": "76406992485", + "voter": "thylbom" }, { - "voter": "geronimo", - "rshares": "7311858289" + "rshares": "7311858289", + "voter": "geronimo" }, { - "voter": "rpf", - "rshares": "10684939578" + "rshares": "10684939578", + "voter": "rpf" }, { - "voter": "bitcoiner", - "rshares": "3692989929" + "rshares": "3692989929", + "voter": "bitcoiner" }, { - "voter": "tarindel", - "rshares": "3756550273" + "rshares": "3756550273", + "voter": "tarindel" }, { - "voter": "azurejasper", - "rshares": "3712828665" + "rshares": "3712828665", + "voter": "azurejasper" }, { - "voter": "liberosist", - "rshares": "279059042940" + "rshares": "279059042940", + "voter": "liberosist" }, { - "voter": "deanliu", - "rshares": "30859119533" + "rshares": "30859119533", + "voter": "deanliu" }, { - "voter": "sharker", - "rshares": "5496325958" + "rshares": "5496325958", + "voter": "sharker" }, { - "voter": "sauravrungta", - "rshares": "33395139065" + "rshares": "33395139065", + "voter": "sauravrungta" }, { - "voter": "rea", - "rshares": "84683756607" + "rshares": "84683756607", + "voter": "rea" }, { - "voter": "jl777", - "rshares": "53842086331" + "rshares": "53842086331", + "voter": "jl777" }, { - "voter": "zaebars", - "rshares": "29215490743" + "rshares": "29215490743", + "voter": "zaebars" }, { - "voter": "yarly", - "rshares": "1700143919" + "rshares": "1700143919", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "256282552" + "rshares": "256282552", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "256665987" + "rshares": "256665987", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "148269777" + "rshares": "148269777", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "149106888" + "rshares": "149106888", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "84991309" + "rshares": "84991309", + "voter": "yarly7" }, { - "voter": "raymonjohnstone", - "rshares": "779992403" + "rshares": "779992403", + "voter": "raymonjohnstone" }, { - "voter": "steemchain", - "rshares": "50619397" + "rshares": "50619397", + "voter": "steemchain" }, { - "voter": "whalepool", - "rshares": "50619397" + "rshares": "50619397", + "voter": "whalepool" }, { - "voter": "gustavopasquini", - "rshares": "5218510034" + "rshares": "5218510034", + "voter": "gustavopasquini" }, { - "voter": "papa-pepper", - "rshares": "32308067031" + "rshares": "32308067031", + "voter": "papa-pepper" }, { - "voter": "winstonwolfe", - "rshares": "16539590111" + "rshares": "16539590111", + "voter": "winstonwolfe" }, { - "voter": "happyphoenix", - "rshares": "885730214" + "rshares": "885730214", + "voter": "happyphoenix" }, { - "voter": "krabgat", - "rshares": "21120708735" + "rshares": "21120708735", + "voter": "krabgat" }, { - "voter": "kooshikoo", - "rshares": "474951354" + "rshares": "474951354", + "voter": "kooshikoo" }, { - "voter": "proto", - "rshares": "4543692384" + "rshares": "4543692384", + "voter": "proto" }, { - "voter": "curator", - "rshares": "634121191" + "rshares": "634121191", + "voter": "curator" }, { - "voter": "sisterholics", - "rshares": "31584377035" + "rshares": "31584377035", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "411321155" + "rshares": "411321155", + "voter": "yarly10" }, { - "voter": "alex.chien", - "rshares": "1365664469" + "rshares": "1365664469", + "voter": "alex.chien" }, { - "voter": "yarly11", - "rshares": "220139771" + "rshares": "220139771", + "voter": "yarly11" }, { - "voter": "yarly12", - "rshares": "76966318" + "rshares": "76966318", + "voter": "yarly12" }, { - "voter": "tygergamer", - "rshares": "3675499938" + "rshares": "3675499938", + "voter": "tygergamer" }, { - "voter": "kibela", - "rshares": "173441395" + "rshares": "173441395", + "voter": "kibela" }, { - "voter": "alanc", - "rshares": "376816435" + "rshares": "376816435", + "voter": "alanc" }, { - "voter": "bullionstackers", - "rshares": "238488697" + "rshares": "238488697", + "voter": "bullionstackers" }, { - "voter": "originate", - "rshares": "245216458115" + "rshares": "245216458115", + "voter": "originate" }, { - "voter": "sulev", - "rshares": "3361197115" + "rshares": "3361197115", + "voter": "sulev" }, { - "voter": "sterlinluxan", - "rshares": "121123550176" + "rshares": "121123550176", + "voter": "sterlinluxan" }, { - "voter": "cryptoz", - "rshares": "108721833" + "rshares": "108721833", + "voter": "cryptoz" }, { - "voter": "jasonstaggers", - "rshares": "46036044554" + "rshares": "46036044554", + "voter": "jasonstaggers" }, { - "voter": "steemdrive", - "rshares": "131896331875" + "rshares": "131896331875", + "voter": "steemdrive" }, { - "voter": "andrew-charles", - "rshares": "114064883" + "rshares": "114064883", + "voter": "andrew-charles" }, { - "voter": "metaflute", - "rshares": "1024314167" + "rshares": "1024314167", + "voter": "metaflute" }, { - "voter": "gomeravibz", - "rshares": "50563376844" + "rshares": "50563376844", + "voter": "gomeravibz" }, { - "voter": "taker", - "rshares": "2298283061" + "rshares": "2298283061", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "4238154544" + "rshares": "4238154544", + "voter": "nekromarinist" }, { - "voter": "frozendota", - "rshares": "230729901" + "rshares": "230729901", + "voter": "frozendota" }, { - "voter": "felixxx", - "rshares": "14753485936" + "rshares": "14753485936", + "voter": "felixxx" }, { - "voter": "dumar022", - "rshares": "9904971006" + "rshares": "9904971006", + "voter": "dumar022" }, { - "voter": "merej99", - "rshares": "2236125772" + "rshares": "2236125772", + "voter": "merej99" }, { - "voter": "laonie", - "rshares": "1116584393219" + "rshares": "1116584393219", + "voter": "laonie" }, { - "voter": "rawnetics", - "rshares": "23391691291" + "rshares": "23391691291", + "voter": "rawnetics" }, { - "voter": "capitalism", - "rshares": "47378225109" + "rshares": "47378225109", + "voter": "capitalism" }, { - "voter": "always1success", - "rshares": "72994310" + "rshares": "72994310", + "voter": "always1success" }, { - "voter": "thebluepanda", - "rshares": "11693177698" + "rshares": "11693177698", + "voter": "thebluepanda" }, { - "voter": "laonie1", - "rshares": "22955094272" + "rshares": "22955094272", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "23470889026" + "rshares": "23470889026", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "23479197538" + "rshares": "23479197538", + "voter": "laonie3" }, { - "voter": "laoyao", - "rshares": "23907912804" + "rshares": "23907912804", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "37203693135" + "rshares": "37203693135", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "226716353883" + "rshares": "226716353883", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "8719381987" + "rshares": "8719381987", + "voter": "flysaga" }, { - "voter": "brendio", - "rshares": "4930352522" + "rshares": "4930352522", + "voter": "brendio" }, { - "voter": "gmurph", - "rshares": "2082768176" + "rshares": "2082768176", + "voter": "gmurph" }, { - "voter": "kurzer42", - "rshares": "75896047" + "rshares": "75896047", + "voter": "kurzer42" }, { - "voter": "midnightoil", - "rshares": "50083801467" + "rshares": "50083801467", + "voter": "midnightoil" }, { - "voter": "kalimor", - "rshares": "2375155298" + "rshares": "2375155298", + "voter": "kalimor" }, { - "voter": "coderg", - "rshares": "85931785" + "rshares": "85931785", + "voter": "coderg" }, { - "voter": "ullikume", - "rshares": "4371109343" + "rshares": "4371109343", + "voter": "ullikume" }, { - "voter": "michellek", - "rshares": "50565616" + "rshares": "50565616", + "voter": "michellek" }, { - "voter": "laonie4", - "rshares": "23474742068" + "rshares": "23474742068", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "23472418592" + "rshares": "23472418592", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "23469546880" + "rshares": "23469546880", + "voter": "laonie6" }, { - "voter": "laonie7", - "rshares": "23465711623" + "rshares": "23465711623", + "voter": "laonie7" }, { - "voter": "kurtbeil", - "rshares": "3820532578" + "rshares": "3820532578", + "voter": "kurtbeil" }, { - "voter": "laonie8", - "rshares": "23462236775" + "rshares": "23462236775", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "23459668262" + "rshares": "23459668262", + "voter": "laonie9" }, { - "voter": "steemleak", - "rshares": "2440083379" + "rshares": "2440083379", + "voter": "steemleak" }, { - "voter": "thisisbenbrick", - "rshares": "112055912400" + "rshares": "112055912400", + "voter": "thisisbenbrick" }, { - "voter": "xiaohui", - "rshares": "125244617154" + "rshares": "125244617154", + "voter": "xiaohui" }, { - "voter": "jphamer1", - "rshares": "21110659306" + "rshares": "21110659306", + "voter": "jphamer1" }, { - "voter": "bigsambucca", - "rshares": "94018543" + "rshares": "94018543", + "voter": "bigsambucca" }, { - "voter": "elfkitchen", - "rshares": "5946773586" + "rshares": "5946773586", + "voter": "elfkitchen" }, { - "voter": "oflyhigh", - "rshares": "5766554064" + "rshares": "5766554064", + "voter": "oflyhigh" }, { - "voter": "paynode", - "rshares": "2142137848" + "rshares": "2142137848", + "voter": "paynode" }, { - "voter": "nickche", - "rshares": "62525016" + "rshares": "62525016", + "voter": "nickche" }, { - "voter": "rusteller", - "rshares": "303568520" + "rshares": "303568520", + "voter": "rusteller" }, { - "voter": "sirwinchester", - "rshares": "260000341079" + "rshares": "260000341079", + "voter": "sirwinchester" }, { - "voter": "xiaokongcom", - "rshares": "4028395316" + "rshares": "4028395316", + "voter": "xiaokongcom" }, { - "voter": "gargon", - "rshares": "12683521359" + "rshares": "12683521359", + "voter": "gargon" }, { - "voter": "pgarcgo", - "rshares": "2305504187" + "rshares": "2305504187", + "voter": "pgarcgo" }, { - "voter": "future24", - "rshares": "2447938775" + "rshares": "2447938775", + "voter": "future24" }, { - "voter": "xianjun", - "rshares": "8120387338" + "rshares": "8120387338", + "voter": "xianjun" }, { - "voter": "lgm-1", - "rshares": "7546495705" + "rshares": "7546495705", + "voter": "lgm-1" }, { - "voter": "evgenyche", - "rshares": "77724719" + "rshares": "77724719", + "voter": "evgenyche" }, { - "voter": "stevescriber", - "rshares": "69130289" + "rshares": "69130289", + "voter": "stevescriber" }, { - "voter": "bledarus", - "rshares": "3277990744" + "rshares": "3277990744", + "voter": "bledarus" }, { - "voter": "loli", - "rshares": "50027573" + "rshares": "50027573", + "voter": "loli" }, { - "voter": "miacats", - "rshares": "89195680289" + "rshares": "89195680289", + "voter": "miacats" }, { - "voter": "nano2nd", - "rshares": "52419023" + "rshares": "52419023", + "voter": "nano2nd" }, { - "voter": "microluck", - "rshares": "531944476" + "rshares": "531944476", + "voter": "microluck" }, { - "voter": "razberrijam", - "rshares": "77220767" + "rshares": "77220767", + "voter": "razberrijam" }, { - "voter": "chinadaily", - "rshares": "1952786674" + "rshares": "1952786674", + "voter": "chinadaily" }, { - "voter": "kyriacos", - "rshares": "13869624454" + "rshares": "13869624454", + "voter": "kyriacos" }, { - "voter": "thecurator", - "rshares": "36244326905" + "rshares": "36244326905", + "voter": "thecurator" }, { - "voter": "cryptoblu", - "rshares": "59021275" + "rshares": "59021275", + "voter": "cryptoblu" }, { - "voter": "instructor", - "rshares": "59014859" + "rshares": "59014859", + "voter": "instructor" }, { - "voter": "dollarvigilante", - "rshares": "739426684571" + "rshares": "739426684571", + "voter": "dollarvigilante" }, { - "voter": "anotherjoe", - "rshares": "93497889783" + "rshares": "93497889783", + "voter": "anotherjoe" }, { - "voter": "solarguy", - "rshares": "7166212158" + "rshares": "7166212158", + "voter": "solarguy" }, { - "voter": "lamech-m", - "rshares": "3897735456" + "rshares": "3897735456", + "voter": "lamech-m" }, { - "voter": "serejandmyself", - "rshares": "84681497836" + "rshares": "84681497836", + "voter": "serejandmyself" }, { - "voter": "mrgrey", - "rshares": "9544116466" + "rshares": "9544116466", + "voter": "mrgrey" }, { - "voter": "alexma3x", - "rshares": "728730693" + "rshares": "728730693", + "voter": "alexma3x" }, { - "voter": "gvargas123", - "rshares": "9825243280" + "rshares": "9825243280", + "voter": "gvargas123" }, { - "voter": "cryptomancer", - "rshares": "13829552678" + "rshares": "13829552678", + "voter": "cryptomancer" }, { - "voter": "dimitriy", - "rshares": "58964015" + "rshares": "58964015", + "voter": "dimitriy" }, { - "voter": "laonie10", - "rshares": "23453540976" + "rshares": "23453540976", + "voter": "laonie10" }, { - "voter": "wuyueling", - "rshares": "604185913" + "rshares": "604185913", + "voter": "wuyueling" }, { - "voter": "sweetsssj", - "rshares": "73276984296" + "rshares": "73276984296", + "voter": "sweetsssj" }, { - "voter": "netaterra", - "rshares": "2803446535" + "rshares": "2803446535", + "voter": "netaterra" }, { - "voter": "bitchplease", - "rshares": "50816343" + "rshares": "50816343", + "voter": "bitchplease" }, { - "voter": "barrycooper", - "rshares": "92899380169" + "rshares": "92899380169", + "voter": "barrycooper" }, { - "voter": "joelbow", - "rshares": "79979619" + "rshares": "79979619", + "voter": "joelbow" }, { - "voter": "sethlinson", - "rshares": "11300097831" + "rshares": "11300097831", + "voter": "sethlinson" }, { - "voter": "hilarski", - "rshares": "29734500129" + "rshares": "29734500129", + "voter": "hilarski" }, { - "voter": "shadowspub", - "rshares": "2392467864" + "rshares": "2392467864", + "voter": "shadowspub" }, { - "voter": "oldtimer", - "rshares": "267071524484" + "rshares": "267071524484", + "voter": "oldtimer" }, { - "voter": "daut44", - "rshares": "32411487065" + "rshares": "32411487065", + "voter": "daut44" }, { - "voter": "steemitpatina", - "rshares": "4580262873" + "rshares": "4580262873", + "voter": "steemitpatina" }, { - "voter": "fat-like-buddha", - "rshares": "4768611178" + "rshares": "4768611178", + "voter": "fat-like-buddha" }, { - "voter": "rickmiller", - "rshares": "55859919" + "rshares": "55859919", + "voter": "rickmiller" }, { - "voter": "lenar", - "rshares": "1233668048" + "rshares": "1233668048", + "voter": "lenar" }, { - "voter": "cryptoeasy", - "rshares": "2076202607" + "rshares": "2076202607", + "voter": "cryptoeasy" }, { - "voter": "nulliusinverba", - "rshares": "5154805617" + "rshares": "5154805617", + "voter": "nulliusinverba" }, { - "voter": "shenanigator", - "rshares": "110647858832" + "rshares": "110647858832", + "voter": "shenanigator" }, { - "voter": "daveks", - "rshares": "2908012841" + "rshares": "2908012841", + "voter": "daveks" }, { - "voter": "einsteinpotsdam", - "rshares": "7471182625" + "rshares": "7471182625", + "voter": "einsteinpotsdam" }, { - "voter": "laonie11", - "rshares": "23133191472" + "rshares": "23133191472", + "voter": "laonie11" }, { - "voter": "davidjkelley", - "rshares": "1552512887" + "rshares": "1552512887", + "voter": "davidjkelley" }, { - "voter": "mobios", - "rshares": "1878628053" + "rshares": "1878628053", + "voter": "mobios" }, { - "voter": "sponge-bob", - "rshares": "20853973484" + "rshares": "20853973484", + "voter": "sponge-bob" }, { - "voter": "l0k1", - "rshares": "4324039528" + "rshares": "4324039528", + "voter": "l0k1" }, { - "voter": "digital-wisdom", - "rshares": "14886230314" + "rshares": "14886230314", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3547902817" + "rshares": "3547902817", + "voter": "ethical-ai" }, { - "voter": "freesteem", - "rshares": "50784892" + "rshares": "50784892", + "voter": "freesteem" }, { - "voter": "jwaser", - "rshares": "6531322926" + "rshares": "6531322926", + "voter": "jwaser" }, { - "voter": "thecyclist", - "rshares": "161709465048" + "rshares": "161709465048", + "voter": "thecyclist" }, { - "voter": "zettar", - "rshares": "1018513187" + "rshares": "1018513187", + "voter": "zettar" }, { - "voter": "tito-baron", - "rshares": "122271956" + "rshares": "122271956", + "voter": "tito-baron" }, { - "voter": "kiwideb", - "rshares": "1735431749" + "rshares": "1735431749", + "voter": "kiwideb" }, { - "voter": "analyzethis", - "rshares": "50931848" + "rshares": "50931848", + "voter": "analyzethis" }, { - "voter": "bwaser", - "rshares": "2558000160" + "rshares": "2558000160", + "voter": "bwaser" }, { - "voter": "dexter-k", - "rshares": "5773395051" + "rshares": "5773395051", + "voter": "dexter-k" }, { - "voter": "roadhog", - "rshares": "50751176" + "rshares": "50751176", + "voter": "roadhog" }, { - "voter": "alina1", - "rshares": "2201645172" + "rshares": "2201645172", + "voter": "alina1" }, { - "voter": "doggnostic", - "rshares": "50639382" + "rshares": "50639382", + "voter": "doggnostic" }, { - "voter": "ct-gurus", - "rshares": "644579979" + "rshares": "644579979", + "voter": "ct-gurus" }, { - "voter": "jenny-talls", - "rshares": "50377764" + "rshares": "50377764", + "voter": "jenny-talls" }, { - "voter": "charlieshrem", - "rshares": "386792765707" + "rshares": "386792765707", + "voter": "charlieshrem" }, { - "voter": "mariandavp", - "rshares": "7681172153" + "rshares": "7681172153", + "voter": "mariandavp" }, { - "voter": "tracemayer", - "rshares": "60088527835" + "rshares": "60088527835", + "voter": "tracemayer" }, { - "voter": "brains", - "rshares": "20817850462" + "rshares": "20817850462", + "voter": "brains" }, { - "voter": "post-successful", - "rshares": "50210467" + "rshares": "50210467", + "voter": "post-successful" }, { - "voter": "positivesteem", - "rshares": "1049744855" + "rshares": "1049744855", + "voter": "positivesteem" }, { - "voter": "chick1", - "rshares": "5470937952" + "rshares": "5470937952", + "voter": "chick1" }, { - "voter": "sens", - "rshares": "1735164858" + "rshares": "1735164858", + "voter": "sens" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "echoesinthemind", - "rshares": "503052886" + "rshares": "503052886", + "voter": "echoesinthemind" }, { - "voter": "freebornangel", - "rshares": "57534146" + "rshares": "57534146", + "voter": "freebornangel" }, { - "voter": "steemsquad", - "rshares": "2084741030" + "rshares": "2084741030", + "voter": "steemsquad" }, { - "voter": "anomaly", - "rshares": "255505026" + "rshares": "255505026", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2293549771" + "rshares": "2293549771", + "voter": "ellepdub" }, { - "voter": "allesgruen", - "rshares": "1550172009" + "rshares": "1550172009", + "voter": "allesgruen" }, { - "voter": "inarix03", - "rshares": "59178617" + "rshares": "59178617", + "voter": "inarix03" }, { - "voter": "michelle.gent", - "rshares": "4725653598" + "rshares": "4725653598", + "voter": "michelle.gent" }, { - "voter": "herpetologyguy", - "rshares": "11523640324" + "rshares": "11523640324", + "voter": "herpetologyguy" }, { - "voter": "drac59", - "rshares": "54452104" + "rshares": "54452104", + "voter": "drac59" }, { - "voter": "morgan.waser", - "rshares": "4605288518" + "rshares": "4605288518", + "voter": "morgan.waser" }, { - "voter": "billkappa442", - "rshares": "50235850" + "rshares": "50235850", + "voter": "billkappa442" }, { - "voter": "teemsteem", - "rshares": "50233449" + "rshares": "50233449", + "voter": "teemsteem" }, { - "voter": "glassheart", - "rshares": "51235131" + "rshares": "51235131", + "voter": "glassheart" }, { - "voter": "battalar", - "rshares": "51227561" + "rshares": "51227561", + "voter": "battalar" }, { - "voter": "slow", - "rshares": "51141851" + "rshares": "51141851", + "voter": "slow" }, { - "voter": "steemprincess", - "rshares": "50975390" + "rshares": "50975390", + "voter": "steemprincess" }, { - "voter": "teo", - "rshares": "57373409" + "rshares": "57373409", + "voter": "teo" }, { - "voter": "palladium", - "rshares": "50873654" + "rshares": "50873654", + "voter": "palladium" }, { - "voter": "aksinya", - "rshares": "1317053201" + "rshares": "1317053201", + "voter": "aksinya" }, { - "voter": "ziggo", - "rshares": "50570250" + "rshares": "50570250", + "voter": "ziggo" }, { - "voter": "fenix", - "rshares": "50538694" + "rshares": "50538694", + "voter": "fenix" }, { - "voter": "twistys", - "rshares": "50536471" + "rshares": "50536471", + "voter": "twistys" }, { - "voter": "bapparabi", - "rshares": "810369666" + "rshares": "810369666", + "voter": "bapparabi" }, { - "voter": "sunlight", - "rshares": "50479027" + "rshares": "50479027", + "voter": "sunlight" }, { - "voter": "luzcypher", - "rshares": "9346140667" + "rshares": "9346140667", + "voter": "luzcypher" }, { - "voter": "haddock", - "rshares": "166200503" + "rshares": "166200503", + "voter": "haddock" }, { - "voter": "strong-ai", - "rshares": "3447563868" + "rshares": "3447563868", + "voter": "strong-ai" }, { - "voter": "ctu", - "rshares": "159723319" + "rshares": "159723319", + "voter": "ctu" }, { - "voter": "yanik", - "rshares": "1507439774" + "rshares": "1507439774", + "voter": "yanik" }, { - "voter": "rusteemitblog", - "rshares": "1319385375" + "rshares": "1319385375", + "voter": "rusteemitblog" }, { - "voter": "jennane", - "rshares": "4636706408" + "rshares": "4636706408", + "voter": "jennane" }, { - "voter": "ndea30", - "rshares": "149130097" + "rshares": "149130097", + "voter": "ndea30" }, { - "voter": "domenico", - "rshares": "149123370" + "rshares": "149123370", + "voter": "domenico" }, { - "voter": "witchcraftblog", - "rshares": "444421238" + "rshares": "444421238", + "voter": "witchcraftblog" }, { - "voter": "serena199", - "rshares": "148337519" + "rshares": "148337519", + "voter": "serena199" }, { - "voter": "gia7", - "rshares": "148308392" + "rshares": "148308392", + "voter": "gia7" }, { - "voter": "animal", - "rshares": "160773127" + "rshares": "160773127", + "voter": "animal" }, { - "voter": "richie4", - "rshares": "147864891" + "rshares": "147864891", + "voter": "richie4" }, { - "voter": "coraline88", - "rshares": "147806968" + "rshares": "147806968", + "voter": "coraline88" }, { - "voter": "cybergirls", - "rshares": "160319579" + "rshares": "160319579", + "voter": "cybergirls" }, { - "voter": "rage", - "rshares": "160260561" + "rshares": "160260561", + "voter": "rage" }, { - "voter": "harlen", - "rshares": "147559003" + "rshares": "147559003", + "voter": "harlen" }, { - "voter": "yanuel", - "rshares": "147523175" + "rshares": "147523175", + "voter": "yanuel" }, { - "voter": "daritza", - "rshares": "147475911" + "rshares": "147475911", + "voter": "daritza" }, { - "voter": "correct", - "rshares": "159984914" + "rshares": "159984914", + "voter": "correct" }, { - "voter": "blender", - "rshares": "156411729" + "rshares": "156411729", + "voter": "blender" }, { - "voter": "stimmt", - "rshares": "159318360" + "rshares": "159318360", + "voter": "stimmt" }, { - "voter": "steemwallet", - "rshares": "158732321" + "rshares": "158732321", + "voter": "steemwallet" }, { - "voter": "goldmatters", - "rshares": "28919059756" + "rshares": "28919059756", + "voter": "goldmatters" }, { - "voter": "dealzgal", - "rshares": "71720421" + "rshares": "71720421", + "voter": "dealzgal" }, { - "voter": "storage", - "rshares": "77287933" + "rshares": "77287933", + "voter": "storage" }, { - "voter": "antaja", - "rshares": "184381906" + "rshares": "184381906", + "voter": "antaja" }, { - "voter": "steemdesigner", - "rshares": "154503543" + "rshares": "154503543", + "voter": "steemdesigner" }, { - "voter": "aldentan", - "rshares": "329629477" + "rshares": "329629477", + "voter": "aldentan" }, { - "voter": "blackmarket", - "rshares": "61536953" + "rshares": "61536953", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "67683958" + "rshares": "67683958", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "91120780" + "rshares": "91120780", + "voter": "expat" }, { - "voter": "steemtrail", - "rshares": "134906258" + "rshares": "134906258", + "voter": "steemtrail" }, { - "voter": "paulocouto", - "rshares": "100289745" + "rshares": "100289745", + "voter": "paulocouto" }, { - "voter": "sawgunner13", - "rshares": "138917685" + "rshares": "138917685", + "voter": "sawgunner13" }, { - "voter": "steemlift", - "rshares": "1593664040" + "rshares": "1593664040", + "voter": "steemlift" } ], + "author": "kevinwong", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 380, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/guide/@kevinwong/the-art-of-maintaining-reputation-plan-your-battles-and-don-t-milk-it", - "blacklists": [] - }, - { - "post_id": 958481, - "author": "steempower", - "permlink": "ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour", - "category": "ripple", - "title": "Ripple raises $55 million from big banks - Series B - XRP Prices jumped 60% to 0.0001600 within 1 hour", - "body": "![](https://s18.postimg.org/fcl7ffx1l/ripple.png)\n## Ripple has raised another 55 Million in its latest round of funding bringing it total raised to 93 Million.\n\nThe news has reached mainstream news services such as CNBC, WSJ, Reuters and the like. News seems to be first released 2 hours ago 12:35 pm; Thursday, 15 September 2016.\n\n### News Articles:\n[CoinDesk](http://www.coindesk.com/ripple-blockchain-55-million-series-b/)\n[CNBC](http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html)\n[WSJ](http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401)\n[Reuters ](http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z)\n\nAccording to the article linked above (CNBC) 'The start-up is currently working with 15 of the top 50 global banks including UBS and Santander.'\n\nNew and existing investors were involved in the new Ripple funding round. New investors included Accenture Ventures, SBI Holdings, SCB Digital Ventures, Standard Chartered PLC, and the investment arm of Thailand’s Siam Commercial Bank. Existing investors that joined in this round included a Banco Santander SA venture fund, the venture arms of CME Group Inc. and Seagate Technology, and Venture 51.\n\nObviously this is good news for ripple with 55 Million accounting for 20-25% of their market cap before today's rally, the current price of XRP is 0.00001760 BTC and 2 hours ago it was trading for below 0.00001000 BTC, it has seen a large move already price wise although volume is still relatively small at this time, we could be in for an interesting time while this initial excitement settles in\n![](https://www.coinigy.com/assets/img/charts/57dab3f3.png)", + "blacklists": [], + "body": "
https://s16.postimg.org/5csp5ocf9/kevv.jpg
\n\nHere I am spending the night in the darkness of my bedroom. Dog's snoring right beside me, his head resting on my chest. Feeling like I'm in some prologue of a cyberpunk story. Anyway, surfing on Steemit mobile is actually quite decent, despite the inadequacy of certain types of tables and media not showing up properly on screen.\n\nDecided to write this after going through some dramatic commentaries on Steemit that happened for the past few days. Mostly about ideological disagreements, and especially, overcompensation of posts. While I consider myself pretty critical, I usually opt out of direct, in-your-face type of confrontations. I prefer to plan and pick my own battles, having learned out of experience.\n\nBecause personally, I've never come across any situation that immediately improves itself after insults are thrown around. No one is going to admit wrong right away. Everyone's always right in their own world, and that's particularly true with the presence of an opposing voice. And it doesn't matter how zen one may be. No one's a perfect saint. Everyone has a breaking point. \n\nYup, I've snapped before, more than enough times to know this little fact of life. Nothing good comes out of throwing a fit (well not as much as can be). Sure, our message, our version of truth should be upheld. But there are better ways of fighting the good fight.. maybe like what I'm trying to do with this post right now. So what am I trying to address here?\n\n---------------------------\n# Plan your battles - don't join someone else's!\n
https://s10.postimg.org/ntels66d5/planning.jpg
\nThere was [a post on Steemit](https://steemit.com/anarchy/@kennyskitchen/the-40-anarchists-you-want-to-be-following-on-steemit) a while ago that labelled me an anarchist. Am I? Maybe I am. Sure, I'm against big, centralised governments. I may even detest the inherent thieving practices of big brother. But I'm still running a music event company - there are legal matters that I still need to run by government offices, purely out of safety and security reasons.\n\nYou may argue that it's perverted that I'm using an intrinsically violent agent (namely, The Government and The Police State) to secure the well-being of my business customers. Next I'll ask - can we have a decentralised free market doing music events with all the right securities? That's what my company, [Hybrid Entertainment](https://steemit.com/steemit-marketing/@kevinwong/our-next-dance-music-event-psychedelic-trance-some-steemit-love) partly aims to do. It's a learning process. \n\nFor now, we still need to use the existing structures of Old, Big Government.. while we find ways to transition out of such dependence. Fight too hard and you'll get clamped down, thrown out of the game. You can't do much when you're out of the game, so stay in it! Take the time to plan your battles, dear hot-blooded confrontationists (if that's even a word).\n\nSure, the world needs you to say things as they are. But hearing the painful truth is almost like violence itself. No one likes that, no matter which side of a dispute. Peace also involves peace of mind. It's a much longer game - it comes with the territory. You're already in someone else's fight once you get into war. Only get into war if you're the big guy. The small guy is always the loser - the unwilling pawn. Think about this in scope of what's happening all around the world, even on Steemit.\n\nDon't be a zealot. There are dangers of being too far left, or too far right. Find the middle way. All you need is another perspective. Some people may be asswipes, but goodness is omnipresent if the conditions are right.\n\nAnd that's how you plan your battles - take the time to do it right. \n\nIn perspective of my generally apolitical position on Steemit, I tend to find better ways to contribute instead of lashing out on another user. Sure, I have my dissatisfaction about some author rewards and posting models from time to time. However, I tried putting effort into building better models and figuring out ways to add substantial value into the ecosystem. Eventually, some of us gravitated towards a loose goal of rewarding diversity by combing contents on Steemit on a daily basis.\n\nThere are now epic giant hidden-gem megaposts on Steemit - like this one from [Project Curie](https://steemit.com/@curie) and [Robinhood Whale](https://steemit.com/@robinhoodwhale). Better coverage, better quality, better value - in so many ways. This is the free-market reaction to solo authored hidden-gem posts of early Steemit. No doubt that everything evolves over time. \n\nKnowing that value is subjective, I have always refrained from losing my cool. Even here on Steemit. \n\n**I'm the small fish and I have to plan my battles!**\n\n---------------------------------------\n\n# Don't freaking milk it!\n\n
https://s3.postimg.org/6ne6t272b/milk.jpg
\nThere are big reasons why most of us don't really like governments. Greed and corruption. Needless to say, the crowd easily picks up on this when insubstantial effort is rewarded handsomely. By all means, that's as subjective as can be. What's not (very) subjective, however, is if one continues to milk it, even despite public disapproval. \n\nThis happens all around the world. Don't oversell. You'll lose reputation if you are obviously **milking it**!\n\nSure, you may gain new followers.. newly inspired and freshly impressed. But old eyes grow weary. People are watching, and your social value fluctuates all the time. You can't please everyone, but you can try the **art of not milking the shit out of the system**.\n\nIt's a good business practice. It's a good personal conduct. And it works on Steemit.\n\nThat's a reason why I'm also posting lesser (other than plainly having a huge writer's block, reserving myself from random shitposting). Now I'm only writing when I really think I have something good to add as a post. As I'm partly dependent on Steemit, I've strategized a lil, refraining from appearing to be **milking it**, seeking modes of substantial contribution behind the scenes to compensate for the awesome support that has been given to me on this platform.\n\nIf you are suddenly rewarded thousands for a post - ask yourself. Is that post worth that much? Heck, I don't know if my top philosophical post is worth 4,000 bucks, but I know I've put long hours in it, enough to avoid milking and recycling the same content. Instead, I try to put more effort in other areas of the ecosystem to balance out the lopsided reward.\n\nThe blockchain is transparent. It's easy to find out if you're milking it. To avoid seeming like you're milking it - just be honest and ask yourself the right questions! Then, do the right thing!\n\n**Like life, like Steemit - try to give more than you can take. Don't. Freaking. Milk It.**\n\n----------------------------------\n\n# Take time to build, or take time to exploit?\n
https://img1.steemit.com/0x0/http://i.imgur.com/T9b4dDQ.jpg
\n
By Steemit's talented artist @lgm-1
\n\nNaturally, I'd say take time to build. Once you're caught exploiting the system, in life or on Steemit, you're lose reputation whether or not if its digitally measurable. You can create as many accounts as you want and find a million ways to exploit everything, but ask yourself - what are you building?\n\nHere are some tips for maintaining reputation on Steemit:-\n- Steemit's a mutual aid society. While posts can be about anything, note there's a limited amount of funds going around each day. It's obvious that your reputation is at stake if you have somehow managed to acquire good support, but not giving back substantially.\n- Tags are like real estate. Choose appropriately. An example is if you're writing your opinions on something rather meta, I think it's prudent to respect the scientific community. For example in [my article about consciousness](https://steemit.com/consciousness/@kevinwong/let-s-talk-about-consciousness-wtf-is-it), I've deliberately used the ***pseudoscience*** tag, no matter how right I think I could be. I clearly think about such topics often, but I never put myself in research labs knowing about consciousness well enough to indicate that I am the master of that domain.\n- Follow up on your promises. Communicate transparently.\n- Put in more effort, visibly and even behind the scenes when you manage to acquire good payouts.\n- Try to follow others. Curate and also support other members.\n- Plan your battles and don't milk it! And also, celebrity attitudes won't last long here if you're not giving back to the community. @dollarvigilante is doing this right - he's aiding others and even curating frequently on his free time!\n- Again, in general, give more than you can take.\n\n### Reputation is everything - for survival, for change in a social landscape.\n\n*Note: There is some form of censorship of the mind when it comes to chance of interruption from higher powers. It's the same everywhere. You just have to play your cards right, opting for different methods, different approaches. It's not really a systems-problem. It's a people-problem, as always. Never leave an opening for others to destroy your reputation.*\n\n-----------------------------------------------\n
Stock photos courtesy of https://pixabay.com/
\n\n-----------------------------------------------\n
Follow me @kevinwong
\n-------------------------------------------------", + "category": "guide", + "children": 53, + "created": "2016-09-14T22:00:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "ripple", - "crypto-news", - "beyondbitcoin", - "money", - "trading" - ], "image": [ - "https://s18.postimg.org/fcl7ffx1l/ripple.png", - "https://www.coinigy.com/assets/img/charts/57dab3f3.png" + "https://s16.postimg.org/5csp5ocf9/kevv.jpg", + "https://s10.postimg.org/ntels66d5/planning.jpg", + "https://s3.postimg.org/6ne6t272b/milk.jpg", + "https://img1.steemit.com/0x0/http://i.imgur.com/T9b4dDQ.jpg" ], "links": [ - "http://www.coindesk.com/ripple-blockchain-55-million-series-b/", - "http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html", - "http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401", - "http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z" + "https://steemit.com/anarchy/@kennyskitchen/the-40-anarchists-you-want-to-be-following-on-steemit", + "https://steemit.com/steemit-marketing/@kevinwong/our-next-dance-music-event-psychedelic-trance-some-steemit-love", + "https://steemit.com/@curie", + "https://steemit.com/@robinhoodwhale", + "https://steemit.com/consciousness/@kevinwong/let-s-talk-about-consciousness-wtf-is-it", + "https://pixabay.com/" + ], + "tags": [ + "guide", + "life", + "lifehack", + "reputation", + "craigrant" + ], + "users": [ + "lgm-1", + "dollarvigilante", + "kevinwong" ] }, - "created": "2016-09-15T14:58:21", - "updated": "2016-09-15T14:58:21", - "depth": 0, - "children": 10, - "net_rshares": 63885038592928, - "is_paidout": false, - "payout_at": "2016-09-16T15:58:09", - "payout": 238.835, - "pending_payout_value": "238.835 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 115120672136759, + "payout": 753.848, + "payout_at": "2016-09-21T22:00:36", + "pending_payout_value": "753.848 HBD", + "percent_hbd": 10000, + "permlink": "the-art-of-maintaining-reputation-plan-your-battles-and-don-t-milk-it", + "post_id": 1247817, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 380 + }, + "title": "The Art of Maintaining Reputation: Plan Your Battles and Don't Milk It!", + "updated": "2016-09-15T07:45:57", + "url": "/guide/@kevinwong/the-art-of-maintaining-reputation-plan-your-battles-and-don-t-milk-it" + }, + { "active_votes": [ { - "voter": "dantheman", - "rshares": "27814176695531" + "rshares": "27814176695531", + "voter": "dantheman" }, { - "voter": "skywalker", - "rshares": "7145643497594" + "rshares": "7145643497594", + "voter": "skywalker" }, { - "voter": "badassmother", - "rshares": "1968124814276" + "rshares": "1968124814276", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2052934239988" + "rshares": "2052934239988", + "voter": "hr1" }, { - "voter": "fuzzyvest", - "rshares": "6596087814836" + "rshares": "6596087814836", + "voter": "fuzzyvest" }, { - "voter": "rossco99", - "rshares": "1337025448249" + "rshares": "1337025448249", + "voter": "rossco99" }, { - "voter": "jaewoocho", - "rshares": "22864938197" + "rshares": "22864938197", + "voter": "jaewoocho" }, { - "voter": "joseph", - "rshares": "1576018783851" + "rshares": "1576018783851", + "voter": "joseph" }, { - "voter": "recursive2", - "rshares": "466052314352" + "rshares": "466052314352", + "voter": "recursive2" }, { - "voter": "masteryoda", - "rshares": "636514783207" + "rshares": "636514783207", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120252422964" + "rshares": "3120252422964", + "voter": "recursive" }, { - "voter": "boombastic", - "rshares": "681020986865" + "rshares": "681020986865", + "voter": "boombastic" }, { - "voter": "mrs.agsexplorer", - "rshares": "91328598326" + "rshares": "91328598326", + "voter": "mrs.agsexplorer" }, { - "voter": "bingo-0", - "rshares": "6959124583" + "rshares": "6959124583", + "voter": "bingo-0" }, { - "voter": "steempower", - "rshares": "1330868635495" + "rshares": "1330868635495", + "voter": "steempower" }, { - "voter": "boatymcboatface", - "rshares": "445757361586" + "rshares": "445757361586", + "voter": "boatymcboatface" }, { - "voter": "officialfuzzy", - "rshares": "443132842669" + "rshares": "443132842669", + "voter": "officialfuzzy" }, { - "voter": "idol", - "rshares": "9167255683" + "rshares": "9167255683", + "voter": "idol" }, { - "voter": "chitty", - "rshares": "18955732033" + "rshares": "18955732033", + "voter": "chitty" }, { - "voter": "unosuke", - "rshares": "8232133931" + "rshares": "8232133931", + "voter": "unosuke" }, { - "voter": "chris4210", - "rshares": "139694054199" + "rshares": "139694054199", + "voter": "chris4210" }, { - "voter": "valtr", - "rshares": "14501486968" + "rshares": "14501486968", + "voter": "valtr" }, { - "voter": "jocelyn", - "rshares": "1577916417" + "rshares": "1577916417", + "voter": "jocelyn" }, { - "voter": "gregory60", - "rshares": "9604795718" + "rshares": "9604795718", + "voter": "gregory60" }, { - "voter": "eeks", - "rshares": "89897248149" + "rshares": "89897248149", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "24694558802" + "rshares": "24694558802", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "468281676" + "rshares": "468281676", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "5641144936" + "rshares": "5641144936", + "voter": "spaninv" }, { - "voter": "elishagh1", - "rshares": "32459455171" + "rshares": "32459455171", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "8669787638" + "rshares": "8669787638", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "584162335269" + "rshares": "584162335269", + "voter": "nanzo-scoop" }, { - "voter": "jeffanthonyfds", - "rshares": "469184158" + "rshares": "469184158", + "voter": "jeffanthonyfds" }, { - "voter": "acidyo", - "rshares": "10461841838" + "rshares": "10461841838", + "voter": "acidyo" }, { - "voter": "dan-atstarlite", - "rshares": "36656769992" + "rshares": "36656769992", + "voter": "dan-atstarlite" }, { - "voter": "mummyimperfect", - "rshares": "177393957447" + "rshares": "177393957447", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313687341" + "rshares": "313687341", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106629500909" + "rshares": "106629500909", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061210624" + "rshares": "1061210624", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6230682263" + "rshares": "6230682263", + "voter": "cryptofunk" }, { - "voter": "kodi", - "rshares": "579494558" + "rshares": "579494558", + "voter": "kodi" }, { - "voter": "error", - "rshares": "2111403468" + "rshares": "2111403468", + "voter": "error" }, { - "voter": "cyber", - "rshares": "985518335179" + "rshares": "985518335179", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "61711048609" + "rshares": "61711048609", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "50879221096" + "rshares": "50879221096", + "voter": "ak2020" }, { - "voter": "justtryme90", - "rshares": "63100175656" + "rshares": "63100175656", + "voter": "justtryme90" }, { - "voter": "taoteh1221", - "rshares": "400866642793" + "rshares": "400866642793", + "voter": "taoteh1221" }, { - "voter": "applecrisp", - "rshares": "410502622" + "rshares": "410502622", + "voter": "applecrisp" }, { - "voter": "stiletto", - "rshares": "365370465" + "rshares": "365370465", + "voter": "stiletto" }, { - "voter": "zakharya", - "rshares": "15787116636" + "rshares": "15787116636", + "voter": "zakharya" }, { - "voter": "trogdor", - "rshares": "280678620376" + "rshares": "280678620376", + "voter": "trogdor" }, { - "voter": "geoffrey", - "rshares": "121380113922" + "rshares": "121380113922", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "208331842756" + "rshares": "208331842756", + "voter": "kimziv" }, { - "voter": "emily-cook", - "rshares": "76009124707" + "rshares": "76009124707", + "voter": "emily-cook" }, { - "voter": "primus", - "rshares": "12064022115" + "rshares": "12064022115", + "voter": "primus" }, { - "voter": "acassity", - "rshares": "29635215678" + "rshares": "29635215678", + "voter": "acassity" }, { - "voter": "ladyclair", - "rshares": "280916636" + "rshares": "280916636", + "voter": "ladyclair" }, { - "voter": "venuspcs", - "rshares": "19099829330" + "rshares": "19099829330", + "voter": "venuspcs" }, { - "voter": "poias", - "rshares": "813595892" + "rshares": "813595892", + "voter": "poias" }, { - "voter": "dasha", - "rshares": "7418976078" + "rshares": "7418976078", + "voter": "dasha" }, { - "voter": "asmolokalo", - "rshares": "153697599394" + "rshares": "153697599394", + "voter": "asmolokalo" }, { - "voter": "gidlark", - "rshares": "1642983170" + "rshares": "1642983170", + "voter": "gidlark" }, { - "voter": "rubybian", - "rshares": "73849034695" + "rshares": "73849034695", + "voter": "rubybian" }, { - "voter": "getssidetracked", - "rshares": "3058898852" + "rshares": "3058898852", + "voter": "getssidetracked" }, { - "voter": "konstantin", - "rshares": "17903672525" + "rshares": "17903672525", + "voter": "konstantin" }, { - "voter": "trees", - "rshares": "572413932" + "rshares": "572413932", + "voter": "trees" }, { - "voter": "strawhat", - "rshares": "83801390" + "rshares": "83801390", + "voter": "strawhat" }, { - "voter": "romel", - "rshares": "2597453094" + "rshares": "2597453094", + "voter": "romel" }, { - "voter": "cryptochannel", - "rshares": "276570042" + "rshares": "276570042", + "voter": "cryptochannel" }, { - "voter": "furion", - "rshares": "120546538382" + "rshares": "120546538382", + "voter": "furion" }, { - "voter": "owdy", - "rshares": "6462652657" + "rshares": "6462652657", + "voter": "owdy" }, { - "voter": "barbara2", - "rshares": "590190776" + "rshares": "590190776", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "642869652" + "rshares": "642869652", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "607124531" + "rshares": "607124531", + "voter": "doge4lyf" }, { - "voter": "sebastien", - "rshares": "18371164995" + "rshares": "18371164995", + "voter": "sebastien" }, { - "voter": "sitaru", - "rshares": "13516878845" + "rshares": "13516878845", + "voter": "sitaru" }, { - "voter": "aaseb", - "rshares": "14487855165" + "rshares": "14487855165", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209499465" + "rshares": "4209499465", + "voter": "karen13" }, { - "voter": "deviedev", - "rshares": "10646413479" + "rshares": "10646413479", + "voter": "deviedev" }, { - "voter": "nabilov", - "rshares": "258981906731" + "rshares": "258981906731", + "voter": "nabilov" }, { - "voter": "pkattera", - "rshares": "117757790207" + "rshares": "117757790207", + "voter": "pkattera" }, { - "voter": "tinyhomeliving", - "rshares": "274155883" + "rshares": "274155883", + "voter": "tinyhomeliving" }, { - "voter": "streetstyle", - "rshares": "55698224169" + "rshares": "55698224169", + "voter": "streetstyle" }, { - "voter": "lichtblick", - "rshares": "7313749376" + "rshares": "7313749376", + "voter": "lichtblick" }, { - "voter": "creemej", - "rshares": "35782652880" + "rshares": "35782652880", + "voter": "creemej" }, { - "voter": "btcbtcbtc20155", - "rshares": "5726411049" + "rshares": "5726411049", + "voter": "btcbtcbtc20155" }, { - "voter": "blueorgy", - "rshares": "167298234999" + "rshares": "167298234999", + "voter": "blueorgy" }, { - "voter": "poseidon", - "rshares": "4544488912" + "rshares": "4544488912", + "voter": "poseidon" }, { - "voter": "smolalit", - "rshares": "7946556816" + "rshares": "7946556816", + "voter": "smolalit" }, { - "voter": "simon.braki.love", - "rshares": "3506024506" + "rshares": "3506024506", + "voter": "simon.braki.love" }, { - "voter": "thylbom", - "rshares": "82781233416" + "rshares": "82781233416", + "voter": "thylbom" }, { - "voter": "rea", - "rshares": "86528557116" + "rshares": "86528557116", + "voter": "rea" }, { - "voter": "jl777", - "rshares": "204615586375" + "rshares": "204615586375", + "voter": "jl777" }, { - "voter": "positive", - "rshares": "20026634941" + "rshares": "20026634941", + "voter": "positive" }, { - "voter": "paquito", - "rshares": "35105434017" + "rshares": "35105434017", + "voter": "paquito" }, { - "voter": "fishborne", - "rshares": "8507360175" + "rshares": "8507360175", + "voter": "fishborne" }, { - "voter": "sergey44", - "rshares": "309088757" + "rshares": "309088757", + "voter": "sergey44" }, { - "voter": "proto", - "rshares": "17267159012" + "rshares": "17267159012", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "34304658614" + "rshares": "34304658614", + "voter": "sisterholics" }, { - "voter": "fnait", - "rshares": "674282213" + "rshares": "674282213", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "611258547" + "rshares": "611258547", + "voter": "keepcalmand" }, { - "voter": "smailer", - "rshares": "42379649186" + "rshares": "42379649186", + "voter": "smailer" }, { - "voter": "pixielolz", - "rshares": "25636155654" + "rshares": "25636155654", + "voter": "pixielolz" }, { - "voter": "steemster1", - "rshares": "149624601" + "rshares": "149624601", + "voter": "steemster1" }, { - "voter": "neowenyuan27", - "rshares": "1033757233" + "rshares": "1033757233", + "voter": "neowenyuan27" }, { - "voter": "glitterpig", - "rshares": "3353832611" + "rshares": "3353832611", + "voter": "glitterpig" }, { - "voter": "picker", - "rshares": "121680301" + "rshares": "121680301", + "voter": "picker" }, { - "voter": "metaflute", - "rshares": "896285424" + "rshares": "896285424", + "voter": "metaflute" }, { - "voter": "taker", - "rshares": "8734048037" + "rshares": "8734048037", + "voter": "taker" }, { - "voter": "sharon", - "rshares": "59219358" + "rshares": "59219358", + "voter": "sharon" }, { - "voter": "lillianjones", - "rshares": "60342922" + "rshares": "60342922", + "voter": "lillianjones" }, { - "voter": "laonie", - "rshares": "1213074787308" + "rshares": "1213074787308", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "157504637007" + "rshares": "157504637007", + "voter": "twinner" }, { - "voter": "satoshifpv", - "rshares": "4890234271" + "rshares": "4890234271", + "voter": "satoshifpv" }, { - "voter": "thebluepanda", - "rshares": "11693771864" + "rshares": "11693771864", + "voter": "thebluepanda" }, { - "voter": "myfirst", - "rshares": "42635136908" + "rshares": "42635136908", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "252723433247" + "rshares": "252723433247", + "voter": "somebody" }, { - "voter": "sunshine", - "rshares": "16251975438" + "rshares": "16251975438", + "voter": "sunshine" }, { - "voter": "flysaga", - "rshares": "9691515710" + "rshares": "9691515710", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "2501627790" + "rshares": "2501627790", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "55828810753" + "rshares": "55828810753", + "voter": "midnightoil" }, { - "voter": "coderg", - "rshares": "84246848" + "rshares": "84246848", + "voter": "coderg" }, { - "voter": "ullikume", - "rshares": "4281232336" + "rshares": "4281232336", + "voter": "ullikume" }, { - "voter": "xiaohui", - "rshares": "139631233866" + "rshares": "139631233866", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "6952769870" + "rshares": "6952769870", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "103387869456" + "rshares": "103387869456", + "voter": "joele" }, { - "voter": "xiaokongcom", - "rshares": "4365575224" + "rshares": "4365575224", + "voter": "xiaokongcom" }, { - "voter": "hms818", - "rshares": "1405383530" + "rshares": "1405383530", + "voter": "hms818" }, { - "voter": "nonlinearone", - "rshares": "42833125455" + "rshares": "42833125455", + "voter": "nonlinearone" }, { - "voter": "msjennifer", - "rshares": "60819615" + "rshares": "60819615", + "voter": "msjennifer" }, { - "voter": "ciao", - "rshares": "55925537" + "rshares": "55925537", + "voter": "ciao" }, { - "voter": "jrcornel", - "rshares": "3033050865" + "rshares": "3033050865", + "voter": "jrcornel" }, { - "voter": "steemo", - "rshares": "55449983" + "rshares": "55449983", + "voter": "steemo" }, { - "voter": "xianjun", - "rshares": "9025821447" + "rshares": "9025821447", + "voter": "xianjun" }, { - "voter": "steema", - "rshares": "55306941" + "rshares": "55306941", + "voter": "steema" }, { - "voter": "confucius", - "rshares": "71282219" + "rshares": "71282219", + "voter": "confucius" }, { - "voter": "mione", - "rshares": "9729857687" + "rshares": "9729857687", + "voter": "mione" }, { - "voter": "jarvis", - "rshares": "56157882" + "rshares": "56157882", + "voter": "jarvis" }, { - "voter": "microluck", - "rshares": "591097626" + "rshares": "591097626", + "voter": "microluck" }, { - "voter": "razberrijam", - "rshares": "75676352" + "rshares": "75676352", + "voter": "razberrijam" }, { - "voter": "fortuner", - "rshares": "54313084" + "rshares": "54313084", + "voter": "fortuner" }, { - "voter": "macartem", - "rshares": "3286864056" + "rshares": "3286864056", + "voter": "macartem" }, { - "voter": "gvargas123", - "rshares": "9827647000" + "rshares": "9827647000", + "voter": "gvargas123" }, { - "voter": "johnbyrd", - "rshares": "53056158" + "rshares": "53056158", + "voter": "johnbyrd" }, { - "voter": "thomasaustin", - "rshares": "53039566" + "rshares": "53039566", + "voter": "thomasaustin" }, { - "voter": "thermor", - "rshares": "53037689" + "rshares": "53037689", + "voter": "thermor" }, { - "voter": "ficholl", - "rshares": "53048942" + "rshares": "53048942", + "voter": "ficholl" }, { - "voter": "widell", - "rshares": "53030738" + "rshares": "53030738", + "voter": "widell" }, { - "voter": "movievertigo", - "rshares": "3635091595" + "rshares": "3635091595", + "voter": "movievertigo" }, { - "voter": "revelbrooks", - "rshares": "52651308" + "rshares": "52651308", + "voter": "revelbrooks" }, { - "voter": "mrlogic", - "rshares": "332237822" + "rshares": "332237822", + "voter": "mrlogic" }, { - "voter": "mandibil", - "rshares": "56654664918" + "rshares": "56654664918", + "voter": "mandibil" }, { - "voter": "curpose", - "rshares": "51562255" + "rshares": "51562255", + "voter": "curpose" }, { - "voter": "steembriefing", - "rshares": "69986345" + "rshares": "69986345", + "voter": "steembriefing" }, { - "voter": "riv", - "rshares": "54612436" + "rshares": "54612436", + "voter": "riv" }, { - "voter": "stephenkendal", - "rshares": "56405368" + "rshares": "56405368", + "voter": "stephenkendal" }, { - "voter": "shenanigator", - "rshares": "115288656029" + "rshares": "115288656029", + "voter": "shenanigator" }, { - "voter": "jeffreyahann", - "rshares": "2163490459" + "rshares": "2163490459", + "voter": "jeffreyahann" }, { - "voter": "funkywanderer", - "rshares": "1857811307" + "rshares": "1857811307", + "voter": "funkywanderer" }, { - "voter": "richardcrill", - "rshares": "5053551216" + "rshares": "5053551216", + "voter": "richardcrill" }, { - "voter": "troich", - "rshares": "51712804" + "rshares": "51712804", + "voter": "troich" }, { - "voter": "team101", - "rshares": "180241566" + "rshares": "180241566", + "voter": "team101" }, { - "voter": "crion", - "rshares": "51718188" + "rshares": "51718188", + "voter": "crion" }, { - "voter": "hitherise", - "rshares": "51388276" + "rshares": "51388276", + "voter": "hitherise" }, { - "voter": "wiss", - "rshares": "51379706" + "rshares": "51379706", + "voter": "wiss" }, { - "voter": "sponge-bob", - "rshares": "54241809836" + "rshares": "54241809836", + "voter": "sponge-bob" }, { - "voter": "stroully", - "rshares": "52143228" + "rshares": "52143228", + "voter": "stroully" }, { - "voter": "apparat", - "rshares": "53070013" + "rshares": "53070013", + "voter": "apparat" }, { - "voter": "thadm", - "rshares": "51814474" + "rshares": "51814474", + "voter": "thadm" }, { - "voter": "prof", - "rshares": "51812703" + "rshares": "51812703", + "voter": "prof" }, { - "voter": "smisi", - "rshares": "1655277599" + "rshares": "1655277599", + "voter": "smisi" }, { - "voter": "yorsens", - "rshares": "51465774" + "rshares": "51465774", + "voter": "yorsens" }, { - "voter": "michaelmatthews", - "rshares": "3068760608" + "rshares": "3068760608", + "voter": "michaelmatthews" }, { - "voter": "asksisk", - "rshares": "184881039384" + "rshares": "184881039384", + "voter": "asksisk" }, { - "voter": "bane", - "rshares": "51154263" + "rshares": "51154263", + "voter": "bane" }, { - "voter": "vive", - "rshares": "51148009" + "rshares": "51148009", + "voter": "vive" }, { - "voter": "coad", - "rshares": "51142585" + "rshares": "51142585", + "voter": "coad" }, { - "voter": "pjo", - "rshares": "232386397" + "rshares": "232386397", + "voter": "pjo" }, { - "voter": "sofa", - "rshares": "51922012" + "rshares": "51922012", + "voter": "sofa" }, { - "voter": "panther", - "rshares": "330365849" + "rshares": "330365849", + "voter": "panther" }, { - "voter": "doudou252666", - "rshares": "201122420257" + "rshares": "201122420257", + "voter": "doudou252666" }, { - "voter": "plantbasedjunkie", - "rshares": "59422248" + "rshares": "59422248", + "voter": "plantbasedjunkie" }, { - "voter": "brains", - "rshares": "55335930229" + "rshares": "55335930229", + "voter": "brains" }, { - "voter": "ailo", - "rshares": "51994517" + "rshares": "51994517", + "voter": "ailo" }, { - "voter": "steemafon", - "rshares": "1369339863" + "rshares": "1369339863", + "voter": "steemafon" }, { - "voter": "anomaly", - "rshares": "339273477" + "rshares": "339273477", + "voter": "anomaly" }, { - "voter": "ola1", - "rshares": "123155378" + "rshares": "123155378", + "voter": "ola1" }, { - "voter": "michelle.gent", - "rshares": "4647741844" + "rshares": "4647741844", + "voter": "michelle.gent" }, { - "voter": "eavy", - "rshares": "50441122" + "rshares": "50441122", + "voter": "eavy" }, { - "voter": "roto", - "rshares": "50454901" + "rshares": "50454901", + "voter": "roto" }, { - "voter": "mari5555na", - "rshares": "70282046" + "rshares": "70282046", + "voter": "mari5555na" }, { - "voter": "steemq", - "rshares": "50225780" + "rshares": "50225780", + "voter": "steemq" }, { - "voter": "battalar", - "rshares": "50223099" + "rshares": "50223099", + "voter": "battalar" }, { - "voter": "deli", - "rshares": "51215236" + "rshares": "51215236", + "voter": "deli" }, { - "voter": "cyan", - "rshares": "50875769" + "rshares": "50875769", + "voter": "cyan" }, { - "voter": "amstel", - "rshares": "50540827" + "rshares": "50540827", + "voter": "amstel" }, { - "voter": "bapparabi", - "rshares": "2216805889" + "rshares": "2216805889", + "voter": "bapparabi" }, { - "voter": "darkminded153", - "rshares": "247235040" + "rshares": "247235040", + "voter": "darkminded153" }, { - "voter": "igtes", - "rshares": "72826233" + "rshares": "72826233", + "voter": "igtes" }, { - "voter": "buffett", - "rshares": "144899746" + "rshares": "144899746", + "voter": "buffett" }, { - "voter": "senseye", - "rshares": "2650993895" + "rshares": "2650993895", + "voter": "senseye" }, { - "voter": "front", - "rshares": "162911190" + "rshares": "162911190", + "voter": "front" }, { - "voter": "iberia", - "rshares": "158676075" + "rshares": "158676075", + "voter": "iberia" }, { - "voter": "sdc", - "rshares": "161218747" + "rshares": "161218747", + "voter": "sdc" }, { - "voter": "james1987", - "rshares": "304461322" + "rshares": "304461322", + "voter": "james1987" }, { - "voter": "digitalillusions", - "rshares": "157745750" + "rshares": "157745750", + "voter": "digitalillusions" }, { - "voter": "illusions", - "rshares": "160880639" + "rshares": "160880639", + "voter": "illusions" }, { - "voter": "electronicarts", - "rshares": "160870736" + "rshares": "160870736", + "voter": "electronicarts" }, { - "voter": "dresden", - "rshares": "3795712999" + "rshares": "3795712999", + "voter": "dresden" }, { - "voter": "haribo", - "rshares": "159950870" + "rshares": "159950870", + "voter": "haribo" }, { - "voter": "panic", - "rshares": "159352476" + "rshares": "159352476", + "voter": "panic" }, { - "voter": "disneypixar", - "rshares": "156043541" + "rshares": "156043541", + "voter": "disneypixar" }, { - "voter": "modernbukowski", - "rshares": "1534731729" + "rshares": "1534731729", + "voter": "modernbukowski" }, { - "voter": "jyriygo", - "rshares": "155452864" + "rshares": "155452864", + "voter": "jyriygo" }, { - "voter": "goldmatters", - "rshares": "31683945302" + "rshares": "31683945302", + "voter": "goldmatters" }, { - "voter": "majes", - "rshares": "155180811" + "rshares": "155180811", + "voter": "majes" }, { - "voter": "daniel1974", - "rshares": "153284499" + "rshares": "153284499", + "voter": "daniel1974" } ], + "author": "steempower", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 216, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/ripple/@steempower/ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour", - "blacklists": [] - }, - { - "post_id": 958185, - "author": "knozaki2015", - "permlink": "the-tastiest-and-healthiest-raw-chocolate-in-the-world", - "category": "food", - "title": "The tastiest and healthiest raw chocolate in the world !!!", - "body": "\n

\"Easy
\n

\n

There are many vegan or raw chocolates to buy, but the best chocolates comes from your own kitchen

\n

HOME MADE ROCKS !!

\n


\n

\"Schokolade

\n 

\n

What is raw chocolate ? The cocoa mass that you need for it consists of unroasted fermented cocoa beans . All fiber and nutrients are untouched. The cocoa mass you can buy online.

\n


\n
\"Schokolade1\"

\n
\nAnd here comes the recipe:

\n
    \n
  • 400 g raw cacao mass (not to be confused with cocoa butter) 
  • \n
  • 2 Tablespoon Coconutoil (best is Dr. Goerg)
  • \n
  • 100 g sprouted buckwheat (for a Crunchy taste)
  • \n
  • 100 g peanuts
  • \n
  • 100 g Walnuts or chopped almonds , Goji berries or what you listen to taste .
    \n
  • \n
\n
    \n
  1. Melt the cocoa paste and coconut oil in a waterbath or in the hydrator at max . 42 degrees .
  2. \n
  3. Once it is melted add the nuts with a big spoon
  4. \n
  5. If you like bars, fill the chocolate nut mixture into silicone bars . You can buy bars in any bakery shop or at Amazon 
  6. \n
  7.  But you can also use a large shallow plate and place baking paper on the plate and fill with the chocolate nut mixture
  8. \n
\n

Be creative : Put anything you like onto the chocolate-nut mixture (Goji berries , whole nuts , coconut pieces etc.)

\n

Place the finished chocolate 1 Hour in your freezer

\n

Get the bars out of the form or break the chocolate from the plate  and put it into the fridge .

\n


\nTrust me, your chocolate won't stay too long in your fridge.... 

\n

Please follow me @allesgruen !

\n

German Original Article


\n

Written by @allesgruen & translated by @knozaki2015

\n

@knozaki2015 features authors and artist to promote them and a diversity of content.
\nThe author will receive 100% of the STEEM Dollars from this post

\n

If you like this post please support @allesgruen and follow the author!

\n


\n", + "blacklists": [], + "body": "![](https://s18.postimg.org/fcl7ffx1l/ripple.png)\n## Ripple has raised another 55 Million in its latest round of funding bringing it total raised to 93 Million.\n\nThe news has reached mainstream news services such as CNBC, WSJ, Reuters and the like. News seems to be first released 2 hours ago 12:35 pm; Thursday, 15 September 2016.\n\n### News Articles:\n[CoinDesk](http://www.coindesk.com/ripple-blockchain-55-million-series-b/)\n[CNBC](http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html)\n[WSJ](http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401)\n[Reuters ](http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z)\n\nAccording to the article linked above (CNBC) 'The start-up is currently working with 15 of the top 50 global banks including UBS and Santander.'\n\nNew and existing investors were involved in the new Ripple funding round. New investors included Accenture Ventures, SBI Holdings, SCB Digital Ventures, Standard Chartered PLC, and the investment arm of Thailand\u2019s Siam Commercial Bank. Existing investors that joined in this round included a Banco Santander SA venture fund, the venture arms of CME Group Inc. and Seagate Technology, and Venture 51.\n\nObviously this is good news for ripple with 55 Million accounting for 20-25% of their market cap before today's rally, the current price of XRP is 0.00001760 BTC and 2 hours ago it was trading for below 0.00001000 BTC, it has seen a large move already price wise although volume is still relatively small at this time, we could be in for an interesting time while this initial excitement settles in\n![](https://www.coinigy.com/assets/img/charts/57dab3f3.png)", + "category": "ripple", + "children": 10, + "created": "2016-09-15T14:58:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "food", - "minnowsunite", - "steemsquad", - "vegan", - "recipe" - ], - "users": [ - "allesgruen", - "knozaki2015" - ], "image": [ - "https://s10.postimg.org/5kfqkef9l/Easy_Dishes_To_Make_For_Your50th_Birthday_Dinner_P.jpg", - "https://s16.postimg.org/j1hikj3np/Schokolade_Bild.jpg", - "https://s16.postimg.org/pggjh7adh/Schokolade1.jpg" + "https://s18.postimg.org/fcl7ffx1l/ripple.png", + "https://www.coinigy.com/assets/img/charts/57dab3f3.png" ], "links": [ - "https://postimg.org/image/fui5jn551/", - "https://www.google.de/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwiU_vePvpHPAhVhJJoKHfEjAjEQFghJMAA&url=https%3A%2F%2Fwww.drgoerg.com%2Fen%2F&usg=AFQjCNGRVxYdyD04Ogm6T_WXZbejaKobyg&sig2=VMpccXoYQ8oXclIYq5y0vg", - "https://steemit.com/@allesgruen", - "https://steemit.com/food/@allesgruen/die-leckerste-und-gesuendeste-rohkost-schokolade-der-welt", - "https://steemit.com/@knozaki2015" + "http://www.coindesk.com/ripple-blockchain-55-million-series-b/", + "http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html", + "http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401", + "http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z" + ], + "tags": [ + "ripple", + "crypto-news", + "beyondbitcoin", + "money", + "trading" ] }, - "created": "2016-09-15T14:24:12", - "updated": "2016-09-15T14:24:12", - "depth": 0, - "children": 34, - "net_rshares": 62692229771159, - "is_paidout": false, - "payout_at": "2016-09-16T14:58:37", - "payout": 230.258, - "pending_payout_value": "230.258 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 63885038592928, + "payout": 238.227, + "payout_at": "2016-09-22T14:58:21", + "pending_payout_value": "238.227 HBD", + "percent_hbd": 10000, + "permlink": "ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour", + "post_id": 1254813, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 216 + }, + "title": "Ripple raises $55 million from big banks - Series B - XRP Prices jumped 60% to 0.0001600 within 1 hour", + "updated": "2016-09-15T14:58:21", + "url": "/ripple/@steempower/ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour" + }, + { "active_votes": [ { - "voter": "barrie", - "rshares": "518197131276" + "rshares": "518197131276", + "voter": "barrie" }, { - "voter": "smooth", - "rshares": "31620599440742" + "rshares": "31620599440742", + "voter": "smooth" }, { - "voter": "badassmother", - "rshares": "1968100090680" + "rshares": "1968100090680", + "voter": "badassmother" }, { - "voter": "pharesim", - "rshares": "3311776812132" + "rshares": "3311776812132", + "voter": "pharesim" }, { - "voter": "hr1", - "rshares": "2052926274941" + "rshares": "2052926274941", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1337025448249" + "rshares": "1337025448249", + "voter": "rossco99" }, { - "voter": "jaewoocho", - "rshares": "22864866028" + "rshares": "22864866028", + "voter": "jaewoocho" }, { - "voter": "joseph", - "rshares": "1619361992750" + "rshares": "1619361992750", + "voter": "joseph" }, { - "voter": "aizensou", - "rshares": "98682259833" + "rshares": "98682259833", + "voter": "aizensou" }, { - "voter": "recursive3", - "rshares": "462397546754" + "rshares": "462397546754", + "voter": "recursive3" }, { - "voter": "recursive", - "rshares": "3120246710189" + "rshares": "3120246710189", + "voter": "recursive" }, { - "voter": "mineralwasser", - "rshares": "1246163169" + "rshares": "1246163169", + "voter": "mineralwasser" }, { - "voter": "boombastic", - "rshares": "681003747775" + "rshares": "681003747775", + "voter": "boombastic" }, { - "voter": "mrs.agsexplorer", - "rshares": "94094732044" + "rshares": "94094732044", + "voter": "mrs.agsexplorer" }, { - "voter": "bingo-0", - "rshares": "6959103550" + "rshares": "6959103550", + "voter": "bingo-0" }, { - "voter": "bingo-1", - "rshares": "1669989826" + "rshares": "1669989826", + "voter": "bingo-1" }, { - "voter": "smooth.witness", - "rshares": "5938484287107" + "rshares": "5938484287107", + "voter": "smooth.witness" }, { - "voter": "boatymcboatface", - "rshares": "445429446140" + "rshares": "445429446140", + "voter": "boatymcboatface" }, { - "voter": "idol", - "rshares": "9408475799" + "rshares": "9408475799", + "voter": "idol" }, { - "voter": "chitty", - "rshares": "284298500346" + "rshares": "284298500346", + "voter": "chitty" }, { - "voter": "jocelyn", - "rshares": "1619440533" + "rshares": "1619440533", + "voter": "jocelyn" }, { - "voter": "gregory-f", - "rshares": "15004137591" + "rshares": "15004137591", + "voter": "gregory-f" }, { - "voter": "edgeland", - "rshares": "148161564048" + "rshares": "148161564048", + "voter": "edgeland" }, { - "voter": "gregory60", - "rshares": "9604795718" + "rshares": "9604795718", + "voter": "gregory60" }, { - "voter": "gavvet", - "rshares": "1272853996010" + "rshares": "1272853996010", + "voter": "gavvet" }, { - "voter": "eeks", - "rshares": "89896930629" + "rshares": "89896930629", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "2015882351" + "rshares": "2015882351", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "478461713" + "rshares": "478461713", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "5763764389" + "rshares": "5763764389", + "voter": "spaninv" }, { - "voter": "nate-atkins", - "rshares": "7733788543" + "rshares": "7733788543", + "voter": "nate-atkins" }, { - "voter": "elishagh1", - "rshares": "2649751442" + "rshares": "2649751442", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "8669787638" + "rshares": "8669787638", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "599927640145" + "rshares": "599927640145", + "voter": "nanzo-scoop" }, { - "voter": "jeffanthonyfds", - "rshares": "459984469" + "rshares": "459984469", + "voter": "jeffanthonyfds" }, { - "voter": "mummyimperfect", - "rshares": "177390312070" + "rshares": "177390312070", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313687341" + "rshares": "313687341", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106628883920" + "rshares": "106628883920", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061168224" + "rshares": "1061168224", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6230682263" + "rshares": "6230682263", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2111403468" + "rshares": "2111403468", + "voter": "error" }, { - "voter": "cyber", - "rshares": "985480652331" + "rshares": "985480652331", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "61710743415" + "rshares": "61710743415", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "50878177282" + "rshares": "50878177282", + "voter": "ak2020" }, { - "voter": "taoteh1221", - "rshares": "409218031185" + "rshares": "409218031185", + "voter": "taoteh1221" }, { - "voter": "applecrisp", - "rshares": "418880227" + "rshares": "418880227", + "voter": "applecrisp" }, { - "voter": "stiletto", - "rshares": "373313301" + "rshares": "373313301", + "voter": "stiletto" }, { - "voter": "hedge-x", - "rshares": "375920034566" + "rshares": "375920034566", + "voter": "hedge-x" }, { - "voter": "juanmiguelsalas", - "rshares": "55577392625" + "rshares": "55577392625", + "voter": "juanmiguelsalas" }, { - "voter": "ratel", - "rshares": "33780018119" + "rshares": "33780018119", + "voter": "ratel" }, { - "voter": "trogdor", - "rshares": "280669440211" + "rshares": "280669440211", + "voter": "trogdor" }, { - "voter": "geoffrey", - "rshares": "121380113922" + "rshares": "121380113922", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "16025171812" + "rshares": "16025171812", + "voter": "kimziv" }, { - "voter": "emily-cook", - "rshares": "76007179625" + "rshares": "76007179625", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187587354" + "rshares": "2187587354", + "voter": "superfreek" }, { - "voter": "acassity", - "rshares": "30279417098" + "rshares": "30279417098", + "voter": "acassity" }, { - "voter": "grey580", - "rshares": "17557768630" + "rshares": "17557768630", + "voter": "grey580" }, { - "voter": "ladyclair", - "rshares": "280916636" + "rshares": "280916636", + "voter": "ladyclair" }, { - "voter": "thebatchman", - "rshares": "19974572536" + "rshares": "19974572536", + "voter": "thebatchman" }, { - "voter": "good-karma", - "rshares": "61460113993" + "rshares": "61460113993", + "voter": "good-karma" }, { - "voter": "rubybian", - "rshares": "76019855821" + "rshares": "76019855821", + "voter": "rubybian" }, { - "voter": "riscadox", - "rshares": "5270775482" + "rshares": "5270775482", + "voter": "riscadox" }, { - "voter": "konstantin", - "rshares": "17903672525" + "rshares": "17903672525", + "voter": "konstantin" }, { - "voter": "mstang83", - "rshares": "256623434" + "rshares": "256623434", + "voter": "mstang83" }, { - "voter": "tcfxyz", - "rshares": "25057071012" + "rshares": "25057071012", + "voter": "tcfxyz" }, { - "voter": "futurefood", - "rshares": "6939848809" + "rshares": "6939848809", + "voter": "futurefood" }, { - "voter": "endgame", - "rshares": "844421054" + "rshares": "844421054", + "voter": "endgame" }, { - "voter": "slowwalker", - "rshares": "823151341679" + "rshares": "823151341679", + "voter": "slowwalker" }, { - "voter": "furion", - "rshares": "9840533745" + "rshares": "9840533745", + "voter": "furion" }, { - "voter": "ch0c0latechip", - "rshares": "52479155" + "rshares": "52479155", + "voter": "ch0c0latechip" }, { - "voter": "sebastien", - "rshares": "19169622645" + "rshares": "19169622645", + "voter": "sebastien" }, { - "voter": "asim", - "rshares": "12011479963" + "rshares": "12011479963", + "voter": "asim" }, { - "voter": "aaseb", - "rshares": "14487516865" + "rshares": "14487516865", + "voter": "aaseb" }, { - "voter": "incomemonthly", - "rshares": "4097381727" + "rshares": "4097381727", + "voter": "incomemonthly" }, { - "voter": "karen13", - "rshares": "4431046054" + "rshares": "4431046054", + "voter": "karen13" }, { - "voter": "deviedev", - "rshares": "10646413479" + "rshares": "10646413479", + "voter": "deviedev" }, { - "voter": "nabilov", - "rshares": "258981906731" + "rshares": "258981906731", + "voter": "nabilov" }, { - "voter": "tinyhomeliving", - "rshares": "5482949271" + "rshares": "5482949271", + "voter": "tinyhomeliving" }, { - "voter": "luisucv34", - "rshares": "847366145" + "rshares": "847366145", + "voter": "luisucv34" }, { - "voter": "streetstyle", - "rshares": "54561525717" + "rshares": "54561525717", + "voter": "streetstyle" }, { - "voter": "knozaki2015", - "rshares": "452581935074" + "rshares": "452581935074", + "voter": "knozaki2015" }, { - "voter": "creemej", - "rshares": "35782074085" + "rshares": "35782074085", + "voter": "creemej" }, { - "voter": "nippel66", - "rshares": "15377860373" + "rshares": "15377860373", + "voter": "nippel66" }, { - "voter": "phenom", - "rshares": "24417657582" + "rshares": "24417657582", + "voter": "phenom" }, { - "voter": "blueorgy", - "rshares": "167298234999" + "rshares": "167298234999", + "voter": "blueorgy" }, { - "voter": "oululahti", - "rshares": "4256486989" + "rshares": "4256486989", + "voter": "oululahti" }, { - "voter": "poseidon", - "rshares": "349568852" + "rshares": "349568852", + "voter": "poseidon" }, { - "voter": "iamwne", - "rshares": "2182574144" + "rshares": "2182574144", + "voter": "iamwne" }, { - "voter": "mustafaomar", - "rshares": "20119867662" + "rshares": "20119867662", + "voter": "mustafaomar" }, { - "voter": "simon.braki.love", - "rshares": "3506024506" + "rshares": "3506024506", + "voter": "simon.braki.love" }, { - "voter": "royaltiffany", - "rshares": "39345808582" + "rshares": "39345808582", + "voter": "royaltiffany" }, { - "voter": "beowulfoflegend", - "rshares": "14954254688" + "rshares": "14954254688", + "voter": "beowulfoflegend" }, { - "voter": "deanliu", - "rshares": "32542074868" + "rshares": "32542074868", + "voter": "deanliu" }, { - "voter": "rainchen", - "rshares": "5373137632" + "rshares": "5373137632", + "voter": "rainchen" }, { - "voter": "rea", - "rshares": "86528557116" + "rshares": "86528557116", + "voter": "rea" }, { - "voter": "tokyodude", - "rshares": "1616791389" + "rshares": "1616791389", + "voter": "tokyodude" }, { - "voter": "neroru", - "rshares": "7822595883" + "rshares": "7822595883", + "voter": "neroru" }, { - "voter": "jl777", - "rshares": "215384292560" + "rshares": "215384292560", + "voter": "jl777" }, { - "voter": "positive", - "rshares": "1634827342" + "rshares": "1634827342", + "voter": "positive" }, { - "voter": "gustavopasquini", - "rshares": "5172692235" + "rshares": "5172692235", + "voter": "gustavopasquini" }, { - "voter": "moon32walker", - "rshares": "12345105776" + "rshares": "12345105776", + "voter": "moon32walker" }, { - "voter": "summonerrk", - "rshares": "6232841459" + "rshares": "6232841459", + "voter": "summonerrk" }, { - "voter": "firehorse", - "rshares": "116726661" + "rshares": "116726661", + "voter": "firehorse" }, { - "voter": "happyphoenix", - "rshares": "942266185" + "rshares": "942266185", + "voter": "happyphoenix" }, { - "voter": "claudiop63", - "rshares": "42775729046" + "rshares": "42775729046", + "voter": "claudiop63" }, { - "voter": "proto", - "rshares": "18175932801" + "rshares": "18175932801", + "voter": "proto" }, { - "voter": "jasen.g1311", - "rshares": "230455938" + "rshares": "230455938", + "voter": "jasen.g1311" }, { - "voter": "pinkisland", - "rshares": "29035294642" + "rshares": "29035294642", + "voter": "pinkisland" }, { - "voter": "ace108", - "rshares": "3266602711" + "rshares": "3266602711", + "voter": "ace108" }, { - "voter": "sisterholics", - "rshares": "2708203880" + "rshares": "2708203880", + "voter": "sisterholics" }, { - "voter": "alex.chien", - "rshares": "1483259422" + "rshares": "1483259422", + "voter": "alex.chien" }, { - "voter": "royalmacro", - "rshares": "8964609699" + "rshares": "8964609699", + "voter": "royalmacro" }, { - "voter": "logic", - "rshares": "11169454095" + "rshares": "11169454095", + "voter": "logic" }, { - "voter": "fnait", - "rshares": "55043445" + "rshares": "55043445", + "voter": "fnait" }, { - "voter": "bkkshadow", - "rshares": "3482504625" + "rshares": "3482504625", + "voter": "bkkshadow" }, { - "voter": "pixielolz", - "rshares": "25636155654" + "rshares": "25636155654", + "voter": "pixielolz" }, { - "voter": "reported", - "rshares": "56747133" + "rshares": "56747133", + "voter": "reported" }, { - "voter": "glitterpig", - "rshares": "3353832611" + "rshares": "3353832611", + "voter": "glitterpig" }, { - "voter": "jed78", - "rshares": "7350128313" + "rshares": "7350128313", + "voter": "jed78" }, { - "voter": "shortcut", - "rshares": "6785260219" + "rshares": "6785260219", + "voter": "shortcut" }, { - "voter": "andrew-charles", - "rshares": "111828316" + "rshares": "111828316", + "voter": "andrew-charles" }, { - "voter": "metaflute", - "rshares": "870677269" + "rshares": "870677269", + "voter": "metaflute" }, { - "voter": "taker", - "rshares": "9193722747" + "rshares": "9193722747", + "voter": "taker" }, { - "voter": "gruber", - "rshares": "1894317852" + "rshares": "1894317852", + "voter": "gruber" }, { - "voter": "felixxx", - "rshares": "15412506890" + "rshares": "15412506890", + "voter": "felixxx" }, { - "voter": "krushing", - "rshares": "52486879" + "rshares": "52486879", + "voter": "krushing" }, { - "voter": "laonie", - "rshares": "95766386323" + "rshares": "95766386323", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "157495713864" + "rshares": "157495713864", + "voter": "twinner" }, { - "voter": "southbaybits", - "rshares": "61361321" + "rshares": "61361321", + "voter": "southbaybits" }, { - "voter": "laoyao", - "rshares": "24561066673" + "rshares": "24561066673", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "3996853733" + "rshares": "3996853733", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "19439859020" + "rshares": "19439859020", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "726849243" + "rshares": "726849243", + "voter": "flysaga" }, { - "voter": "ann76", - "rshares": "66940286" + "rshares": "66940286", + "voter": "ann76" }, { - "voter": "timelapse", - "rshares": "18234762995" + "rshares": "18234762995", + "voter": "timelapse" }, { - "voter": "gmurph", - "rshares": "2501622377" + "rshares": "2501622377", + "voter": "gmurph" }, { - "voter": "minnowsunited", - "rshares": "494521401" + "rshares": "494521401", + "voter": "minnowsunited" }, { - "voter": "midnightoil", - "rshares": "4294430078" + "rshares": "4294430078", + "voter": "midnightoil" }, { - "voter": "ullikume", - "rshares": "4281232336" + "rshares": "4281232336", + "voter": "ullikume" }, { - "voter": "cjclaro", - "rshares": "5693098913" + "rshares": "5693098913", + "voter": "cjclaro" }, { - "voter": "whatyouganjado", - "rshares": "52700570" + "rshares": "52700570", + "voter": "whatyouganjado" }, { - "voter": "budgetbucketlist", - "rshares": "36649510663" + "rshares": "36649510663", + "voter": "budgetbucketlist" }, { - "voter": "xiaohui", - "rshares": "10740564621" + "rshares": "10740564621", + "voter": "xiaohui" }, { - "voter": "terrycraft", - "rshares": "176650903994" + "rshares": "176650903994", + "voter": "terrycraft" }, { - "voter": "elfkitchen", - "rshares": "461088291" + "rshares": "461088291", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "103384996602" + "rshares": "103384996602", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5855063437" + "rshares": "5855063437", + "voter": "oflyhigh" }, { - "voter": "makaveli", - "rshares": "59002619" + "rshares": "59002619", + "voter": "makaveli" }, { - "voter": "xiaokongcom", - "rshares": "335807163" + "rshares": "335807163", + "voter": "xiaokongcom" }, { - "voter": "gargon", - "rshares": "13237481048" + "rshares": "13237481048", + "voter": "gargon" }, { - "voter": "xianjun", - "rshares": "676922173" + "rshares": "676922173", + "voter": "xianjun" }, { - "voter": "hanshotfirst", - "rshares": "26283514539" + "rshares": "26283514539", + "voter": "hanshotfirst" }, { - "voter": "tom77", - "rshares": "9199546040" + "rshares": "9199546040", + "voter": "tom77" }, { - "voter": "sarita", - "rshares": "126090405" + "rshares": "126090405", + "voter": "sarita" }, { - "voter": "alexbones", - "rshares": "52450091" + "rshares": "52450091", + "voter": "alexbones" }, { - "voter": "njall", - "rshares": "2249542145" + "rshares": "2249542145", + "voter": "njall" }, { - "voter": "razberrijam", - "rshares": "75676352" + "rshares": "75676352", + "voter": "razberrijam" }, { - "voter": "rubenalexander", - "rshares": "6402569097" + "rshares": "6402569097", + "voter": "rubenalexander" }, { - "voter": "chinadaily", - "rshares": "2077210674" + "rshares": "2077210674", + "voter": "chinadaily" }, { - "voter": "kyriacos", - "rshares": "11979592683" + "rshares": "11979592683", + "voter": "kyriacos" }, { - "voter": "jayfox", - "rshares": "806759200" + "rshares": "806759200", + "voter": "jayfox" }, { - "voter": "ignat", - "rshares": "1647538615" + "rshares": "1647538615", + "voter": "ignat" }, { - "voter": "serejandmyself", - "rshares": "90168606946" + "rshares": "90168606946", + "voter": "serejandmyself" }, { - "voter": "pollina", - "rshares": "106144628" + "rshares": "106144628", + "voter": "pollina" }, { - "voter": "almerri", - "rshares": "4781807217" + "rshares": "4781807217", + "voter": "almerri" }, { - "voter": "johnnyyash", - "rshares": "9071955992" + "rshares": "9071955992", + "voter": "johnnyyash" }, { - "voter": "macartem", - "rshares": "3221126774" + "rshares": "3221126774", + "voter": "macartem" }, { - "voter": "gvargas123", - "rshares": "9310407829" + "rshares": "9310407829", + "voter": "gvargas123" }, { - "voter": "themanualbot", - "rshares": "4658385146" + "rshares": "4658385146", + "voter": "themanualbot" }, { - "voter": "levycore", - "rshares": "2005245825" + "rshares": "2005245825", + "voter": "levycore" }, { - "voter": "cnmtz", - "rshares": "58169756" + "rshares": "58169756", + "voter": "cnmtz" }, { - "voter": "claudia", - "rshares": "476161300" + "rshares": "476161300", + "voter": "claudia" }, { - "voter": "ozertayiz", - "rshares": "70203690" + "rshares": "70203690", + "voter": "ozertayiz" }, { - "voter": "mandibil", - "rshares": "57942270939" + "rshares": "57942270939", + "voter": "mandibil" }, { - "voter": "steemitpatina", - "rshares": "4633082667" + "rshares": "4633082667", + "voter": "steemitpatina" }, { - "voter": "steembriefing", - "rshares": "71507788" + "rshares": "71507788", + "voter": "steembriefing" }, { - "voter": "salebored", - "rshares": "51356966" + "rshares": "51356966", + "voter": "salebored" }, { - "voter": "riv", - "rshares": "54612436" + "rshares": "54612436", + "voter": "riv" }, { - "voter": "ats-david", - "rshares": "5081885632" + "rshares": "5081885632", + "voter": "ats-david" }, { - "voter": "pollux.one", - "rshares": "1544966078" + "rshares": "1544966078", + "voter": "pollux.one" }, { - "voter": "einsteinpotsdam", - "rshares": "7776590110" + "rshares": "7776590110", + "voter": "einsteinpotsdam" }, { - "voter": "funkywanderer", - "rshares": "1932014303" + "rshares": "1932014303", + "voter": "funkywanderer" }, { - "voter": "jasonji12", - "rshares": "56854958" + "rshares": "56854958", + "voter": "jasonji12" }, { - "voter": "richardcrill", - "rshares": "5053551216" + "rshares": "5053551216", + "voter": "richardcrill" }, { - "voter": "team101", - "rshares": "184076493" + "rshares": "184076493", + "voter": "team101" }, { - "voter": "bitdrone", - "rshares": "51444457" + "rshares": "51444457", + "voter": "bitdrone" }, { - "voter": "sleepcult", - "rshares": "51436144" + "rshares": "51436144", + "voter": "sleepcult" }, { - "voter": "greatness", - "rshares": "182060433" + "rshares": "182060433", + "voter": "greatness" }, { - "voter": "goldstein", - "rshares": "1233641092" + "rshares": "1233641092", + "voter": "goldstein" }, { - "voter": "sponge-bob", - "rshares": "27674257450" + "rshares": "27674257450", + "voter": "sponge-bob" }, { - "voter": "getonthetrain", - "rshares": "3432704465" + "rshares": "3432704465", + "voter": "getonthetrain" }, { - "voter": "zahnspange", - "rshares": "44943498845" + "rshares": "44943498845", + "voter": "zahnspange" }, { - "voter": "steemorama", - "rshares": "414338857" + "rshares": "414338857", + "voter": "steemorama" }, { - "voter": "smisi", - "rshares": "1655277599" + "rshares": "1655277599", + "voter": "smisi" }, { - "voter": "sunjo", - "rshares": "59594290" + "rshares": "59594290", + "voter": "sunjo" }, { - "voter": "benjamin.still", - "rshares": "285084767" + "rshares": "285084767", + "voter": "benjamin.still" }, { - "voter": "asksisk", - "rshares": "229690686860" + "rshares": "229690686860", + "voter": "asksisk" }, { - "voter": "brains", - "rshares": "27667822273" + "rshares": "27667822273", + "voter": "brains" }, { - "voter": "alwayzgame", - "rshares": "1772168372" + "rshares": "1772168372", + "voter": "alwayzgame" }, { - "voter": "rigaronib", - "rshares": "3531841420" + "rshares": "3531841420", + "voter": "rigaronib" }, { - "voter": "anomaly", - "rshares": "339268967" + "rshares": "339268967", + "voter": "anomaly" }, { - "voter": "allesgruen", - "rshares": "1550172009" + "rshares": "1550172009", + "voter": "allesgruen" }, { - "voter": "ola1", - "rshares": "123129821" + "rshares": "123129821", + "voter": "ola1" }, { - "voter": "littlemorelove", - "rshares": "431087473" + "rshares": "431087473", + "voter": "littlemorelove" }, { - "voter": "mari5555na", - "rshares": "68608664" + "rshares": "68608664", + "voter": "mari5555na" }, { - "voter": "michaelblizek", - "rshares": "53309537" + "rshares": "53309537", + "voter": "michaelblizek" }, { - "voter": "creativeyoke", - "rshares": "135324063" + "rshares": "135324063", + "voter": "creativeyoke" }, { - "voter": "annesaya", - "rshares": "841787796" + "rshares": "841787796", + "voter": "annesaya" }, { - "voter": "billkappa442", - "rshares": "51240567" + "rshares": "51240567", + "voter": "billkappa442" }, { - "voter": "steemq", - "rshares": "50225780" + "rshares": "50225780", + "voter": "steemq" }, { - "voter": "slow", - "rshares": "50139069" + "rshares": "50139069", + "voter": "slow" }, { - "voter": "humans", - "rshares": "58668861" + "rshares": "58668861", + "voter": "humans" }, { - "voter": "factom", - "rshares": "50796122" + "rshares": "50796122", + "voter": "factom" }, { - "voter": "fenix", - "rshares": "50538694" + "rshares": "50538694", + "voter": "fenix" }, { - "voter": "bapparabi", - "rshares": "1921231770" + "rshares": "1921231770", + "voter": "bapparabi" }, { - "voter": "friends", - "rshares": "50532230" + "rshares": "50532230", + "voter": "friends" }, { - "voter": "albertheijn", - "rshares": "50349676" + "rshares": "50349676", + "voter": "albertheijn" }, { - "voter": "durex", - "rshares": "161839498" + "rshares": "161839498", + "voter": "durex" }, { - "voter": "ranger", - "rshares": "161815656" + "rshares": "161815656", + "voter": "ranger" }, { - "voter": "witchcraftblog", - "rshares": "435365865" + "rshares": "435365865", + "voter": "witchcraftblog" }, { - "voter": "acute", - "rshares": "161205518" + "rshares": "161205518", + "voter": "acute" }, { - "voter": "digitalillusions", - "rshares": "160900665" + "rshares": "160900665", + "voter": "digitalillusions" }, { - "voter": "dresden", - "rshares": "4087522528" + "rshares": "4087522528", + "voter": "dresden" }, { - "voter": "coolbeans", - "rshares": "155111085" + "rshares": "155111085", + "voter": "coolbeans" }, { - "voter": "maxlviv", - "rshares": "160151932" + "rshares": "160151932", + "voter": "maxlviv" }, { - "voter": "food-creator", - "rshares": "158393209" + "rshares": "158393209", + "voter": "food-creator" }, { - "voter": "capcom", - "rshares": "159973989" + "rshares": "159973989", + "voter": "capcom" }, { - "voter": "fallout", - "rshares": "159175576" + "rshares": "159175576", + "voter": "fallout" }, { - "voter": "steemthis", - "rshares": "158560941" + "rshares": "158560941", + "voter": "steemthis" }, { - "voter": "nerds", - "rshares": "158535752" + "rshares": "158535752", + "voter": "nerds" }, { - "voter": "goldmatters", - "rshares": "31680362460" + "rshares": "31680362460", + "voter": "goldmatters" }, { - "voter": "bleujay", - "rshares": "136494240" + "rshares": "136494240", + "voter": "bleujay" }, { - "voter": "jproto22", - "rshares": "150430703" + "rshares": "150430703", + "voter": "jproto22" } ], + "author": "knozaki2015", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 232, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/food/@knozaki2015/the-tastiest-and-healthiest-raw-chocolate-in-the-world", - "blacklists": [] - }, - { - "post_id": 952817, - "author": "calaber24p", - "permlink": "who-should-we-find-responsible-for-the-subprime-mortgage-lending-crisis", - "category": "life", - "title": "Who Should We Find Responsible For The Subprime Mortgage Lending Crisis?", - "body": "

Who Should We Find Responsible For The Subprime Mortgage Lending Crisis?

\n\nI want to preface this article by saying, I’m not 100% sure who we should blame for the Subprime Mortgage Lending Crisis, the lenders or the borrowers which is why I want to attempt to fairly give arguments from both sides. Even today this is a heavily debated topic and I agree with points made by both sides. So I want you to decide as the reader, who you side with, and if you want to post in the comments below. This article is meant to shed light on who we should hold responsible for the Subprime Mortgage Crisis, the lenders or the borrowers, or someone else?\n\nhttp://longislandbankruptcyblog.com/wp-content/uploads/2007/11/mortgage-bubble-bursting-by-the-sub-prime-mortgage-meltdown.jpg\n\n

The Lender’s Side of The Argument

\n\nThe lender’s side of the argument almost completely revolves around the idea that people need to educate themselves before they go into a bank and take on such a series contract, like a mortgage. Even in many cases where the information was fully available to the borrower, they signed the contract even though they didn’t understand it. If you agree with consumer protection, the lenders should have stopped the transaction from taking place, but many believe that we should be free to make all decisions even bad ones. The truth is that these are companies, however and their only job is to look out for themselves. This lending is an especially weird occurrence because the force which usually stops this kind of behavior from taking place is that it would not be beneficial to the company, but mortgage brokers and the companies lending were making so much money that at the time it seemed like a good idea. \n\nhttps://www.biggerpockets.com/renewsblog/wp-content/uploads/2015/06/questions-lender.jpg\n\nAnother way the lenders justify their subprime lending practices was that they were getting pressure from higher up in the company to lend as much as possible because there was such a demand for the financial products on the markets. This is the old “I was just following orders” excuse, but there truly was heavy pressure from companies onto the brokers to loan as much as they could, or they would find someone else to do it. At the time most mortgage brokers legitimately didn’t think that they were doing something bad. They didn’t try to tank the system, they truly believed that the booming real estate market would be able to cover any losses if someone foreclosed on a property. We found out that this was a horribly wrong assumption eventually which lead to billions in toxic assets on the bank balance sheet worth nothing. Ultimately if you think that the consumer should have been diligent and did the required research before they took the mortgage contract, you might side with the side of the lenders\n\n

The Borrower’s Side of The Argument

\n\nOn the flip side, the borrower’s side of the argument claims that it is a company’s duty to inform the customer and the government’s duty to provide consumer protection so mortgages that were created with a high chance of failure wouldn’t be possible. Borrowers also claim that many of the brokers specifically targeted low income and uneducated applicants so they could get a larger commission. In addition, the extreme leniency of the various types of mortgage products that were being offered at the time, for example not having to even show any income, should have been against the law. While not all brokers were predatory, there were many that were, which did target the low income and uneducated, but at the same time there were many borrowers who knew they couldn’t afford the payments on the house and figured they would just resell it for profit. Consumer protection is a tricky subject , because at what point does it stop becoming protection and start becoming a barrier to entry. For example up until this year only Americans with an income of 250k + or 1,000,000 in assets (disregarding primary residence) were able to invest in private companies, many hedge funds and other investment vehicles, all because of consumer protection. \n\nhttps://activerain-store.s3.amazonaws.com/image_store/uploads/2/5/4/4/3/ar123584050234452.jpg\n\nMany people say that a fool and his money soon part ways and it’s hard to wonder if people who signed into these mortgages would have lost money elsewhere on credit cards or payday loans. I think that the mortgage prices that were way to complex for anyone to even understand should have never been offered, but is it the government’s place to protect a private entity from not offering them? Theoretically in a free market banks should not have offered the products because they were too risky and would have lost them money, but this force did not prevail. Whether or not you agree with the borrower heavily comes down to what degree you think consumer protection should play on your everyday life and how the government should police products. \n\n

Conclusion And Some Of My Thoughts

\n\nLike I said when I started the article I don’t think I find either party solely responsible for the subprime mortgage crisis that occurred. I believe both parties over leveraged themselves and took risks that, in hindsight, were insane. The world market wanted more mortgage prices and people all around the world were willing to pay large amounts for them, so banks and mortgage brokers supplied the demand that was out there. Unfortunately the mortgages they supplied them with were garbage. In this regard I blame the credit rating agencies, whose actual job is to rate them properly , for not doing their job. I also believe that the specific brokers and lenders who were predatory lending were morally wrong, but I’m not so sure that they constitute acting criminally. Maybe under current laws yes, but im someone who does not believe in consumer protection, mostly because I believe that people should be able to spend their money as they see fit on any product they see fit. We see 1000 scams on the internet a day, yet we don’t fall for them because we know they are scams. I think trusting any entity that is making money off you is foolish. Im interested to see what other people here think and why.", + "blacklists": [], + "body": "\n

\"Easy
\n

\n

There are many vegan or raw chocolates to buy, but the best chocolates comes from your own kitchen

\n

HOME MADE ROCKS !!

\n


\n

\"Schokolade

\n 

\n

What is raw chocolate ? The cocoa mass that you need for it consists of unroasted fermented cocoa beans . All fiber and nutrients are untouched. The cocoa mass you can buy online.

\n


\n
\"Schokolade1\"

\n
\nAnd here comes the recipe:

\n
    \n
  • 400 g raw cacao mass (not to be confused with cocoa butter) 
  • \n
  • 2 Tablespoon Coconutoil (best is Dr. Goerg)
  • \n
  • 100 g sprouted buckwheat (for a Crunchy taste)
  • \n
  • 100 g peanuts
  • \n
  • 100 g Walnuts or chopped almonds , Goji berries or what you listen to taste .
    \n
  • \n
\n
    \n
  1. Melt the cocoa paste and coconut oil in a waterbath or in the hydrator at max . 42 degrees .
  2. \n
  3. Once it is melted add the nuts with a big spoon
  4. \n
  5. If you like bars, fill the chocolate nut mixture into silicone bars . You can buy bars in any bakery shop or at Amazon 
  6. \n
  7.  But you can also use a large shallow plate and place baking paper on the plate and fill with the chocolate nut mixture
  8. \n
\n

Be creative : Put anything you like onto the chocolate-nut mixture (Goji berries , whole nuts , coconut pieces etc.)

\n

Place the finished chocolate 1 Hour in your freezer

\n

Get the bars out of the form or break the chocolate from the plate  and put it into the fridge .

\n


\nTrust me, your chocolate won't stay too long in your fridge.... 

\n

Please follow me @allesgruen !

\n

German Original Article


\n

Written by @allesgruen & translated by @knozaki2015

\n

@knozaki2015 features authors and artist to promote them and a diversity of content.
\nThe author will receive 100% of the STEEM Dollars from this post

\n

If you like this post please support @allesgruen and follow the author!

\n


\n", + "category": "food", + "children": 34, + "created": "2016-09-15T14:24:12", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { + "image": [ + "https://s10.postimg.org/5kfqkef9l/Easy_Dishes_To_Make_For_Your50th_Birthday_Dinner_P.jpg", + "https://s16.postimg.org/j1hikj3np/Schokolade_Bild.jpg", + "https://s16.postimg.org/pggjh7adh/Schokolade1.jpg" + ], + "links": [ + "https://postimg.org/image/fui5jn551/", + "https://www.google.de/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwiU_vePvpHPAhVhJJoKHfEjAjEQFghJMAA&url=https%3A%2F%2Fwww.drgoerg.com%2Fen%2F&usg=AFQjCNGRVxYdyD04Ogm6T_WXZbejaKobyg&sig2=VMpccXoYQ8oXclIYq5y0vg", + "https://steemit.com/@allesgruen", + "https://steemit.com/food/@allesgruen/die-leckerste-und-gesuendeste-rohkost-schokolade-der-welt", + "https://steemit.com/@knozaki2015" + ], "tags": [ - "life", - "money", - "investing", - "banking", - "" + "food", + "minnowsunite", + "steemsquad", + "vegan", + "recipe" ], - "image": [ - "http://longislandbankruptcyblog.com/wp-content/uploads/2007/11/mortgage-bubble-bursting-by-the-sub-prime-mortgage-meltdown.jpg", - "https://www.biggerpockets.com/renewsblog/wp-content/uploads/2015/06/questions-lender.jpg", - "https://activerain-store.s3.amazonaws.com/image_store/uploads/2/5/4/4/3/ar123584050234452.jpg" + "users": [ + "allesgruen", + "knozaki2015" ] }, - "created": "2016-09-14T21:48:51", - "updated": "2016-09-14T21:48:51", - "depth": 0, - "children": 31, - "net_rshares": 110596898261619, - "is_paidout": false, - "payout_at": "2016-09-15T22:37:56", - "payout": 697.978, - "pending_payout_value": "697.978 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62692229771159, + "payout": 229.216, + "payout_at": "2016-09-22T14:24:12", + "pending_payout_value": "229.216 HBD", + "percent_hbd": 10000, + "permlink": "the-tastiest-and-healthiest-raw-chocolate-in-the-world", + "post_id": 1254417, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 232 + }, + "title": "The tastiest and healthiest raw chocolate in the world !!!", + "updated": "2016-09-15T14:24:12", + "url": "/food/@knozaki2015/the-tastiest-and-healthiest-raw-chocolate-in-the-world" + }, + { "active_votes": [ { - "voter": "itsascam", - "rshares": "17090232811151" + "rshares": "17090232811151", + "voter": "itsascam" }, { - "voter": "barrie", - "rshares": "480579269556" + "rshares": "480579269556", + "voter": "barrie" }, { - "voter": "smooth", - "rshares": "29720965903527" + "rshares": "29720965903527", + "voter": "smooth" }, { - "voter": "anonymous", - "rshares": "231748891373" + "rshares": "231748891373", + "voter": "anonymous" }, { - "voter": "alphabet", - "rshares": "3703513941678" + "rshares": "3703513941678", + "voter": "alphabet" }, { - "voter": "steemroller", - "rshares": "2010285876889" + "rshares": "2010285876889", + "voter": "steemroller" }, { - "voter": "donaldtrump", - "rshares": "74805101299" + "rshares": "74805101299", + "voter": "donaldtrump" }, { - "voter": "steemed", - "rshares": "18187582592218" + "rshares": "18187582592218", + "voter": "steemed" }, { - "voter": "riverhead", - "rshares": "3205433782741" + "rshares": "3205433782741", + "voter": "riverhead" }, { - "voter": "badassmother", - "rshares": "1990377241911" + "rshares": "1990377241911", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2005036868492" + "rshares": "2005036868492", + "voter": "hr1" }, { - "voter": "jaewoocho", - "rshares": "22380813356" + "rshares": "22380813356", + "voter": "jaewoocho" }, { - "voter": "xeroc", - "rshares": "1869058236100" + "rshares": "1869058236100", + "voter": "xeroc" }, { - "voter": "joseph", - "rshares": "1607182817833" + "rshares": "1607182817833", + "voter": "joseph" }, { - "voter": "aizensou", - "rshares": "82723821395" + "rshares": "82723821395", + "voter": "aizensou" }, { - "voter": "recursive2", - "rshares": "456027411770" + "rshares": "456027411770", + "voter": "recursive2" }, { - "voter": "masteryoda", - "rshares": "588963325183" + "rshares": "588963325183", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3119398199095" + "rshares": "3119398199095", + "voter": "recursive" }, { - "voter": "mineralwasser", - "rshares": "1172473837" + "rshares": "1172473837", + "voter": "mineralwasser" }, { - "voter": "mrs.agsexplorer", - "rshares": "85737349562" + "rshares": "85737349562", + "voter": "mrs.agsexplorer" }, { - "voter": "bingo-1", - "rshares": "1620255991" + "rshares": "1620255991", + "voter": "bingo-1" }, { - "voter": "smooth.witness", - "rshares": "5567720953547" + "rshares": "5567720953547", + "voter": "smooth.witness" }, { - "voter": "pairmike", - "rshares": "170448445243" + "rshares": "170448445243", + "voter": "pairmike" }, { - "voter": "idol", - "rshares": "9645319071" + "rshares": "9645319071", + "voter": "idol" }, { - "voter": "team", - "rshares": "131761872479" + "rshares": "131761872479", + "voter": "team" }, { - "voter": "sakr", - "rshares": "4632015537" + "rshares": "4632015537", + "voter": "sakr" }, { - "voter": "jchch", - "rshares": "96050573044" + "rshares": "96050573044", + "voter": "jchch" }, { - "voter": "chitty", - "rshares": "25239550780" + "rshares": "25239550780", + "voter": "chitty" }, { - "voter": "alexgr", - "rshares": "47092417970" + "rshares": "47092417970", + "voter": "alexgr" }, { - "voter": "yefet", - "rshares": "3109770089" + "rshares": "3109770089", + "voter": "yefet" }, { - "voter": "jocelyn", - "rshares": "1660422196" + "rshares": "1660422196", + "voter": "jocelyn" }, { - "voter": "gregory-f", - "rshares": "13752626395" + "rshares": "13752626395", + "voter": "gregory-f" }, { - "voter": "dave-hughes", - "rshares": "11239173417" + "rshares": "11239173417", + "voter": "dave-hughes" }, { - "voter": "edgeland", - "rshares": "145064407415" + "rshares": "145064407415", + "voter": "edgeland" }, { - "voter": "full-measure", - "rshares": "30188072314" + "rshares": "30188072314", + "voter": "full-measure" }, { - "voter": "lovelace", - "rshares": "60085973635" + "rshares": "60085973635", + "voter": "lovelace" }, { - "voter": "eeks", - "rshares": "74898454777" + "rshares": "74898454777", + "voter": "eeks" }, { - "voter": "paco-steem", - "rshares": "478348587" + "rshares": "478348587", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "5761302959" + "rshares": "5761302959", + "voter": "spaninv" }, { - "voter": "instructor2121", - "rshares": "30447039303" + "rshares": "30447039303", + "voter": "instructor2121" }, { - "voter": "nate-atkins", - "rshares": "7891620962" + "rshares": "7891620962", + "voter": "nate-atkins" }, { - "voter": "gekko", - "rshares": "2197259642" + "rshares": "2197259642", + "voter": "gekko" }, { - "voter": "teamsteem", - "rshares": "313176541236" + "rshares": "313176541236", + "voter": "teamsteem" }, { - "voter": "richman", - "rshares": "9535707424" + "rshares": "9535707424", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "550540650972" + "rshares": "550540650972", + "voter": "nanzo-scoop" }, { - "voter": "fact", - "rshares": "13884504681" + "rshares": "13884504681", + "voter": "fact" }, { - "voter": "steve-walschot", - "rshares": "165470271317" + "rshares": "165470271317", + "voter": "steve-walschot" }, { - "voter": "cian.dafe", - "rshares": "10099012692" + "rshares": "10099012692", + "voter": "cian.dafe" }, { - "voter": "hannixx42", - "rshares": "49793677286" + "rshares": "49793677286", + "voter": "hannixx42" }, { - "voter": "mummyimperfect", - "rshares": "169122010230" + "rshares": "169122010230", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "268838726" + "rshares": "268838726", + "voter": "coar" }, { - "voter": "asch", - "rshares": "98193208498" + "rshares": "98193208498", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1060920601" + "rshares": "1060920601", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6083782451" + "rshares": "6083782451", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2164662094" + "rshares": "2164662094", + "voter": "error" }, { - "voter": "marta-zaidel", - "rshares": "5736901624" + "rshares": "5736901624", + "voter": "marta-zaidel" }, { - "voter": "ranko-k", - "rshares": "40923353954" + "rshares": "40923353954", + "voter": "ranko-k" }, { - "voter": "cyber", - "rshares": "985042955913" + "rshares": "985042955913", + "voter": "cyber" }, { - "voter": "aizen01", - "rshares": "10687278238" + "rshares": "10687278238", + "voter": "aizen01" }, { - "voter": "aizen02", - "rshares": "6372292910" + "rshares": "6372292910", + "voter": "aizen02" }, { - "voter": "aizen03", - "rshares": "3482772895" + "rshares": "3482772895", + "voter": "aizen03" }, { - "voter": "aizen04", - "rshares": "1145023026" + "rshares": "1145023026", + "voter": "aizen04" }, { - "voter": "aizen05", - "rshares": "484325382" + "rshares": "484325382", + "voter": "aizen05" }, { - "voter": "aizen07", - "rshares": "4698759112" + "rshares": "4698759112", + "voter": "aizen07" }, { - "voter": "aizen08", - "rshares": "2810313611" + "rshares": "2810313611", + "voter": "aizen08" }, { - "voter": "aizen09", - "rshares": "998812710" + "rshares": "998812710", + "voter": "aizen09" }, { - "voter": "aizen10", - "rshares": "432171763" + "rshares": "432171763", + "voter": "aizen10" }, { - "voter": "aizen06", - "rshares": "7109531805" + "rshares": "7109531805", + "voter": "aizen06" }, { - "voter": "aizen11", - "rshares": "2986666907" + "rshares": "2986666907", + "voter": "aizen11" }, { - "voter": "aizen14", - "rshares": "2052802727" + "rshares": "2052802727", + "voter": "aizen14" }, { - "voter": "aizen19", - "rshares": "2413810847" + "rshares": "2413810847", + "voter": "aizen19" }, { - "voter": "aizen15", - "rshares": "636225126" + "rshares": "636225126", + "voter": "aizen15" }, { - "voter": "aizen16", - "rshares": "6299030433" + "rshares": "6299030433", + "voter": "aizen16" }, { - "voter": "ak2020", - "rshares": "48237424583" + "rshares": "48237424583", + "voter": "ak2020" }, { - "voter": "aizen20", - "rshares": "632466769" + "rshares": "632466769", + "voter": "aizen20" }, { - "voter": "aizen22", - "rshares": "4134827463" + "rshares": "4134827463", + "voter": "aizen22" }, { - "voter": "aizen23", - "rshares": "1099034433" + "rshares": "1099034433", + "voter": "aizen23" }, { - "voter": "aizen17", - "rshares": "2161693603" + "rshares": "2161693603", + "voter": "aizen17" }, { - "voter": "aizen24", - "rshares": "3402464131" + "rshares": "3402464131", + "voter": "aizen24" }, { - "voter": "aizen18", - "rshares": "480934421" + "rshares": "480934421", + "voter": "aizen18" }, { - "voter": "aizen25", - "rshares": "1288443304" + "rshares": "1288443304", + "voter": "aizen25" }, { - "voter": "aizen28", - "rshares": "2188687430" + "rshares": "2188687430", + "voter": "aizen28" }, { - "voter": "aizen26", - "rshares": "3368022267" + "rshares": "3368022267", + "voter": "aizen26" }, { - "voter": "aizen27", - "rshares": "1105570076" + "rshares": "1105570076", + "voter": "aizen27" }, { - "voter": "aizen32", - "rshares": "3799766067" + "rshares": "3799766067", + "voter": "aizen32" }, { - "voter": "aizen30", - "rshares": "2078826064" + "rshares": "2078826064", + "voter": "aizen30" }, { - "voter": "aizen31", - "rshares": "3845310415" + "rshares": "3845310415", + "voter": "aizen31" }, { - "voter": "aizen33", - "rshares": "1265719430" + "rshares": "1265719430", + "voter": "aizen33" }, { - "voter": "aizen34", - "rshares": "1522643877" + "rshares": "1522643877", + "voter": "aizen34" }, { - "voter": "aizen35", - "rshares": "305661234" + "rshares": "305661234", + "voter": "aizen35" }, { - "voter": "aizen36", - "rshares": "5734872441" + "rshares": "5734872441", + "voter": "aizen36" }, { - "voter": "aizen37", - "rshares": "1430746846" + "rshares": "1430746846", + "voter": "aizen37" }, { - "voter": "aizen29", - "rshares": "400285218" + "rshares": "400285218", + "voter": "aizen29" }, { - "voter": "aizen21", - "rshares": "2816257454" + "rshares": "2816257454", + "voter": "aizen21" }, { - "voter": "justtryme90", - "rshares": "65573912297" + "rshares": "65573912297", + "voter": "justtryme90" }, { - "voter": "aizen12", - "rshares": "4321209833" + "rshares": "4321209833", + "voter": "aizen12" }, { - "voter": "aizen38", - "rshares": "1839863893" + "rshares": "1839863893", + "voter": "aizen38" }, { - "voter": "drinkzya", - "rshares": "32298471411" + "rshares": "32298471411", + "voter": "drinkzya" }, { - "voter": "badger311", - "rshares": "8444658507" + "rshares": "8444658507", + "voter": "badger311" }, { - "voter": "badger313", - "rshares": "8739325345" + "rshares": "8739325345", + "voter": "badger313" }, { - "voter": "badger312", - "rshares": "8702827614" + "rshares": "8702827614", + "voter": "badger312" }, { - "voter": "badger316", - "rshares": "9001973394" + "rshares": "9001973394", + "voter": "badger316" }, { - "voter": "badger319", - "rshares": "9123923965" + "rshares": "9123923965", + "voter": "badger319" }, { - "voter": "badger3101", - "rshares": "9031557781" + "rshares": "9031557781", + "voter": "badger3101" }, { - "voter": "badger3111", - "rshares": "8484371114" + "rshares": "8484371114", + "voter": "badger3111" }, { - "voter": "badger3121", - "rshares": "9046675913" + "rshares": "9046675913", + "voter": "badger3121" }, { - "voter": "badger3131", - "rshares": "8655016180" + "rshares": "8655016180", + "voter": "badger3131" }, { - "voter": "badger3141", - "rshares": "8763045211" + "rshares": "8763045211", + "voter": "badger3141" }, { - "voter": "badger3171", - "rshares": "8739453800" + "rshares": "8739453800", + "voter": "badger3171" }, { - "voter": "badger3181", - "rshares": "8546855954" + "rshares": "8546855954", + "voter": "badger3181" }, { - "voter": "badger3191", - "rshares": "9133346310" + "rshares": "9133346310", + "voter": "badger3191" }, { - "voter": "badger3112", - "rshares": "8546692844" + "rshares": "8546692844", + "voter": "badger3112" }, { - "voter": "badger3132", - "rshares": "8887969807" + "rshares": "8887969807", + "voter": "badger3132" }, { - "voter": "badger3162", - "rshares": "8761093741" + "rshares": "8761093741", + "voter": "badger3162" }, { - "voter": "badger3113", - "rshares": "8992244297" + "rshares": "8992244297", + "voter": "badger3113" }, { - "voter": "badger3123", - "rshares": "8642807886" + "rshares": "8642807886", + "voter": "badger3123" }, { - "voter": "badger3133", - "rshares": "8766602954" + "rshares": "8766602954", + "voter": "badger3133" }, { - "voter": "badger3153", - "rshares": "9118359724" + "rshares": "9118359724", + "voter": "badger3153" }, { - "voter": "badger3163", - "rshares": "8796689830" + "rshares": "8796689830", + "voter": "badger3163" }, { - "voter": "badger3193", - "rshares": "8827245303" + "rshares": "8827245303", + "voter": "badger3193" }, { - "voter": "badger3114", - "rshares": "8776818063" + "rshares": "8776818063", + "voter": "badger3114" }, { - "voter": "badger3124", - "rshares": "8685663112" + "rshares": "8685663112", + "voter": "badger3124" }, { - "voter": "badger3144", - "rshares": "8588459406" + "rshares": "8588459406", + "voter": "badger3144" }, { - "voter": "badger3154", - "rshares": "8510231316" + "rshares": "8510231316", + "voter": "badger3154" }, { - "voter": "badger3164", - "rshares": "8377454951" + "rshares": "8377454951", + "voter": "badger3164" }, { - "voter": "badger3174", - "rshares": "8709610129" + "rshares": "8709610129", + "voter": "badger3174" }, { - "voter": "badger3194", - "rshares": "8990147355" + "rshares": "8990147355", + "voter": "badger3194" }, { - "voter": "badger3105", - "rshares": "8886405623" + "rshares": "8886405623", + "voter": "badger3105" }, { - "voter": "badger3135", - "rshares": "8829871300" + "rshares": "8829871300", + "voter": "badger3135" }, { - "voter": "badger3145", - "rshares": "8423693063" + "rshares": "8423693063", + "voter": "badger3145" }, { - "voter": "badger3155", - "rshares": "9007791015" + "rshares": "9007791015", + "voter": "badger3155" }, { - "voter": "badger3175", - "rshares": "8700420554" + "rshares": "8700420554", + "voter": "badger3175" }, { - "voter": "badger3195", - "rshares": "8476416242" + "rshares": "8476416242", + "voter": "badger3195" }, { - "voter": "badger3106", - "rshares": "8118066308" + "rshares": "8118066308", + "voter": "badger3106" }, { - "voter": "badger3116", - "rshares": "8937639951" + "rshares": "8937639951", + "voter": "badger3116" }, { - "voter": "badger3126", - "rshares": "8985666162" + "rshares": "8985666162", + "voter": "badger3126" }, { - "voter": "badger3136", - "rshares": "8612215471" + "rshares": "8612215471", + "voter": "badger3136" }, { - "voter": "badger3146", - "rshares": "8258415644" + "rshares": "8258415644", + "voter": "badger3146" }, { - "voter": "badger3156", - "rshares": "8490356190" + "rshares": "8490356190", + "voter": "badger3156" }, { - "voter": "badger3166", - "rshares": "8706404705" + "rshares": "8706404705", + "voter": "badger3166" }, { - "voter": "badger3176", - "rshares": "8621148181" + "rshares": "8621148181", + "voter": "badger3176" }, { - "voter": "badger3186", - "rshares": "8755890485" + "rshares": "8755890485", + "voter": "badger3186" }, { - "voter": "badger3196", - "rshares": "8791694513" + "rshares": "8791694513", + "voter": "badger3196" }, { - "voter": "badger3107", - "rshares": "8719131325" + "rshares": "8719131325", + "voter": "badger3107" }, { - "voter": "badger315", - "rshares": "8471234920" + "rshares": "8471234920", + "voter": "badger315" }, { - "voter": "badger318", - "rshares": "8967798699" + "rshares": "8967798699", + "voter": "badger318" }, { - "voter": "badger3151", - "rshares": "9017469354" + "rshares": "9017469354", + "voter": "badger3151" }, { - "voter": "badger3161", - "rshares": "8689504021" + "rshares": "8689504021", + "voter": "badger3161" }, { - "voter": "badger3122", - "rshares": "8949018277" + "rshares": "8949018277", + "voter": "badger3122" }, { - "voter": "badger3142", - "rshares": "8885778223" + "rshares": "8885778223", + "voter": "badger3142" }, { - "voter": "badger3152", - "rshares": "9108990725" + "rshares": "9108990725", + "voter": "badger3152" }, { - "voter": "badger3172", - "rshares": "8411493414" + "rshares": "8411493414", + "voter": "badger3172" }, { - "voter": "badger3182", - "rshares": "8925369694" + "rshares": "8925369694", + "voter": "badger3182" }, { - "voter": "badger3192", - "rshares": "8680564470" + "rshares": "8680564470", + "voter": "badger3192" }, { - "voter": "badger3143", - "rshares": "8595071709" + "rshares": "8595071709", + "voter": "badger3143" }, { - "voter": "badger3173", - "rshares": "8858368574" + "rshares": "8858368574", + "voter": "badger3173" }, { - "voter": "badger3104", - "rshares": "8564639501" + "rshares": "8564639501", + "voter": "badger3104" }, { - "voter": "badger3134", - "rshares": "8276437501" + "rshares": "8276437501", + "voter": "badger3134" }, { - "voter": "badger3184", - "rshares": "8683745951" + "rshares": "8683745951", + "voter": "badger3184" }, { - "voter": "badger3115", - "rshares": "8620766828" + "rshares": "8620766828", + "voter": "badger3115" }, { - "voter": "badger3165", - "rshares": "9094337935" + "rshares": "9094337935", + "voter": "badger3165" }, { - "voter": "badger3185", - "rshares": "8719854886" + "rshares": "8719854886", + "voter": "badger3185" }, { - "voter": "badger314", - "rshares": "8781868170" + "rshares": "8781868170", + "voter": "badger314" }, { - "voter": "badger317", - "rshares": "9016639241" + "rshares": "9016639241", + "voter": "badger317" }, { - "voter": "badger3102", - "rshares": "8754767708" + "rshares": "8754767708", + "voter": "badger3102" }, { - "voter": "badger3103", - "rshares": "8716196161" + "rshares": "8716196161", + "voter": "badger3103" }, { - "voter": "badger3125", - "rshares": "8643125157" + "rshares": "8643125157", + "voter": "badger3125" }, { - "voter": "badger3183", - "rshares": "8609233299" + "rshares": "8609233299", + "voter": "badger3183" }, { - "voter": "aizen39", - "rshares": "512951586" + "rshares": "512951586", + "voter": "aizen39" }, { - "voter": "satoshifund", - "rshares": "3616249140600" + "rshares": "3616249140600", + "voter": "satoshifund" }, { - "voter": "taoteh1221", - "rshares": "392453750650" + "rshares": "392453750650", + "voter": "taoteh1221" }, { - "voter": "applecrisp", - "rshares": "418804855" + "rshares": "418804855", + "voter": "applecrisp" }, { - "voter": "stiletto", - "rshares": "373228451" + "rshares": "373228451", + "voter": "stiletto" }, { - "voter": "juanmiguelsalas", - "rshares": "38901034355" + "rshares": "38901034355", + "voter": "juanmiguelsalas" }, { - "voter": "thecryptodrive", - "rshares": "54694274623" + "rshares": "54694274623", + "voter": "thecryptodrive" }, { - "voter": "kaylinart", - "rshares": "362609039187" + "rshares": "362609039187", + "voter": "kaylinart" }, { - "voter": "benthegameboy", - "rshares": "1428647233" + "rshares": "1428647233", + "voter": "benthegameboy" }, { - "voter": "rafikichi", - "rshares": "390927750" + "rshares": "390927750", + "voter": "rafikichi" }, { - "voter": "tim-johnston", - "rshares": "79218648284" + "rshares": "79218648284", + "voter": "tim-johnston" }, { - "voter": "schro", - "rshares": "132301151875" + "rshares": "132301151875", + "voter": "schro" }, { - "voter": "tee-em", - "rshares": "4749927412" + "rshares": "4749927412", + "voter": "tee-em" }, { - "voter": "michaelx", - "rshares": "31338683407" + "rshares": "31338683407", + "voter": "michaelx" }, { - "voter": "grandpere", - "rshares": "6652497229" + "rshares": "6652497229", + "voter": "grandpere" }, { - "voter": "mark-waser", - "rshares": "5689049935" + "rshares": "5689049935", + "voter": "mark-waser" }, { - "voter": "albertogm", - "rshares": "17023109715" + "rshares": "17023109715", + "voter": "albertogm" }, { - "voter": "geoffrey", - "rshares": "106033721718" + "rshares": "106033721718", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "192231455054" + "rshares": "192231455054", + "voter": "kimziv" }, { - "voter": "honeythief", - "rshares": "43526357269" + "rshares": "43526357269", + "voter": "honeythief" }, { - "voter": "emily-cook", - "rshares": "77694419746" + "rshares": "77694419746", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2122888373" + "rshares": "2122888373", + "voter": "superfreek" }, { - "voter": "cryptoiskey", - "rshares": "33245604843" + "rshares": "33245604843", + "voter": "cryptoiskey" }, { - "voter": "mrhankeh", - "rshares": "484592257" + "rshares": "484592257", + "voter": "mrhankeh" }, { - "voter": "clement", - "rshares": "36254381895" + "rshares": "36254381895", + "voter": "clement" }, { - "voter": "isteemit", - "rshares": "47416085106" + "rshares": "47416085106", + "voter": "isteemit" }, { - "voter": "grey580", - "rshares": "17205891791" + "rshares": "17205891791", + "voter": "grey580" }, { - "voter": "ladyclair", - "rshares": "280886491" + "rshares": "280886491", + "voter": "ladyclair" }, { - "voter": "venuspcs", - "rshares": "55546285382" + "rshares": "55546285382", + "voter": "venuspcs" }, { - "voter": "thebatchman", - "rshares": "20379625641" + "rshares": "20379625641", + "voter": "thebatchman" }, { - "voter": "dashpaymag", - "rshares": "164474222053" + "rshares": "164474222053", + "voter": "dashpaymag" }, { - "voter": "asmolokalo", - "rshares": "169409415564" + "rshares": "169409415564", + "voter": "asmolokalo" }, { - "voter": "roelandp", - "rshares": "462742250057" + "rshares": "462742250057", + "voter": "roelandp" }, { - "voter": "rubybian", - "rshares": "69473128292" + "rshares": "69473128292", + "voter": "rubybian" }, { - "voter": "orly", - "rshares": "3148219453" + "rshares": "3148219453", + "voter": "orly" }, { - "voter": "riscadox", - "rshares": "4953381149" + "rshares": "4953381149", + "voter": "riscadox" }, { - "voter": "mstang83", - "rshares": "245172817" + "rshares": "245172817", + "voter": "mstang83" }, { - "voter": "hakise", - "rshares": "18842523479" + "rshares": "18842523479", + "voter": "hakise" }, { - "voter": "r4fken", - "rshares": "14215545466" + "rshares": "14215545466", + "voter": "r4fken" }, { - "voter": "tcfxyz", - "rshares": "25052927517" + "rshares": "25052927517", + "voter": "tcfxyz" }, { - "voter": "futurefood", - "rshares": "6938809092" + "rshares": "6938809092", + "voter": "futurefood" }, { - "voter": "steemswede", - "rshares": "1001850942" + "rshares": "1001850942", + "voter": "steemswede" }, { - "voter": "picokernel", - "rshares": "31072527474" + "rshares": "31072527474", + "voter": "picokernel" }, { - "voter": "slowwalker", - "rshares": "823059128625" + "rshares": "823059128625", + "voter": "slowwalker" }, { - "voter": "aizen13", - "rshares": "381822182" + "rshares": "381822182", + "voter": "aizen13" }, { - "voter": "aizen41", - "rshares": "3279400287" + "rshares": "3279400287", + "voter": "aizen41" }, { - "voter": "aizen42", - "rshares": "931911377" + "rshares": "931911377", + "voter": "aizen42" }, { - "voter": "aizen46", - "rshares": "3174813360" + "rshares": "3174813360", + "voter": "aizen46" }, { - "voter": "aizen47", - "rshares": "868931638" + "rshares": "868931638", + "voter": "aizen47" }, { - "voter": "aizen48", - "rshares": "212993516" + "rshares": "212993516", + "voter": "aizen48" }, { - "voter": "aizen49", - "rshares": "111038594" + "rshares": "111038594", + "voter": "aizen49" }, { - "voter": "aizen51", - "rshares": "922579590" + "rshares": "922579590", + "voter": "aizen51" }, { - "voter": "renohq", - "rshares": "1267696038568" + "rshares": "1267696038568", + "voter": "renohq" }, { - "voter": "aizen43", - "rshares": "446844083" + "rshares": "446844083", + "voter": "aizen43" }, { - "voter": "aizen44", - "rshares": "66332881" + "rshares": "66332881", + "voter": "aizen44" }, { - "voter": "aizen54", - "rshares": "748318238" + "rshares": "748318238", + "voter": "aizen54" }, { - "voter": "ausbitbank", - "rshares": "14876041938" + "rshares": "14876041938", + "voter": "ausbitbank" }, { - "voter": "dicov", - "rshares": "1231736991" + "rshares": "1231736991", + "voter": "dicov" }, { - "voter": "steem1653", - "rshares": "2530789873" + "rshares": "2530789873", + "voter": "steem1653" }, { - "voter": "anyx", - "rshares": "188360520718" + "rshares": "188360520718", + "voter": "anyx" }, { - "voter": "steemit-life", - "rshares": "7540907296" + "rshares": "7540907296", + "voter": "steemit-life" }, { - "voter": "sitaru", - "rshares": "13516878845" + "rshares": "13516878845", + "voter": "sitaru" }, { - "voter": "asim", - "rshares": "12461342724" + "rshares": "12461342724", + "voter": "asim" }, { - "voter": "snowden", - "rshares": "95008078" + "rshares": "95008078", + "voter": "snowden" }, { - "voter": "bdavid", - "rshares": "17043337041" + "rshares": "17043337041", + "voter": "bdavid" }, { - "voter": "aaseb", - "rshares": "14289175254" + "rshares": "14289175254", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "1107698236" + "rshares": "1107698236", + "voter": "karen13" }, { - "voter": "meiisheree", - "rshares": "19964419792" + "rshares": "19964419792", + "voter": "meiisheree" }, { - "voter": "deviedev", - "rshares": "10644107638" + "rshares": "10644107638", + "voter": "deviedev" }, { - "voter": "jrd8526", - "rshares": "1427008333" + "rshares": "1427008333", + "voter": "jrd8526" }, { - "voter": "jpiper20", - "rshares": "73200426006" + "rshares": "73200426006", + "voter": "jpiper20" }, { - "voter": "nabilov", - "rshares": "258942997644" + "rshares": "258942997644", + "voter": "nabilov" }, { - "voter": "dcryptogold", - "rshares": "4121277460" + "rshares": "4121277460", + "voter": "dcryptogold" }, { - "voter": "dmacshady", - "rshares": "2722560234" + "rshares": "2722560234", + "voter": "dmacshady" }, { - "voter": "aizen52", - "rshares": "228989895" + "rshares": "228989895", + "voter": "aizen52" }, { - "voter": "milestone", - "rshares": "44553186838" + "rshares": "44553186838", + "voter": "milestone" }, { - "voter": "wildchild", - "rshares": "87223247" + "rshares": "87223247", + "voter": "wildchild" }, { - "voter": "the-future", - "rshares": "2650671514" + "rshares": "2650671514", + "voter": "the-future" }, { - "voter": "aizen55", - "rshares": "186538708" + "rshares": "186538708", + "voter": "aizen55" }, { - "voter": "peacekeeper", - "rshares": "23976773907" + "rshares": "23976773907", + "voter": "peacekeeper" }, { - "voter": "poseidon", - "rshares": "4310323809" + "rshares": "4310323809", + "voter": "poseidon" }, { - "voter": "calaber24p", - "rshares": "347898300458" + "rshares": "347898300458", + "voter": "calaber24p" }, { - "voter": "simon.braki.love", - "rshares": "3365335082" + "rshares": "3365335082", + "voter": "simon.braki.love" }, { - "voter": "geronimo", - "rshares": "7025103979" + "rshares": "7025103979", + "voter": "geronimo" }, { - "voter": "rpf", - "rshares": "11121059561" + "rshares": "11121059561", + "voter": "rpf" }, { - "voter": "bitcoiner", - "rshares": "3846864509" + "rshares": "3846864509", + "voter": "bitcoiner" }, { - "voter": "tarindel", - "rshares": "3756536992" + "rshares": "3756536992", + "voter": "tarindel" }, { - "voter": "deanliu", - "rshares": "30859119533" + "rshares": "30859119533", + "voter": "deanliu" }, { - "voter": "bento", - "rshares": "138656821" + "rshares": "138656821", + "voter": "bento" }, { - "voter": "shredlord", - "rshares": "13069930577" + "rshares": "13069930577", + "voter": "shredlord" }, { - "voter": "jl777", - "rshares": "53842086331" + "rshares": "53842086331", + "voter": "jl777" }, { - "voter": "zaebars", - "rshares": "30004697167" + "rshares": "30004697167", + "voter": "zaebars" }, { - "voter": "yarly", - "rshares": "1700129733" + "rshares": "1700129733", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "256282552" + "rshares": "256282552", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "256665987" + "rshares": "256665987", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "148269777" + "rshares": "148269777", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "149106888" + "rshares": "149106888", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "84991309" + "rshares": "84991309", + "voter": "yarly7" }, { - "voter": "raymonjohnstone", - "rshares": "799492214" + "rshares": "799492214", + "voter": "raymonjohnstone" }, { - "voter": "bbrewer", - "rshares": "5272599454" + "rshares": "5272599454", + "voter": "bbrewer" }, { - "voter": "krabgat", - "rshares": "21120708735" + "rshares": "21120708735", + "voter": "krabgat" }, { - "voter": "proto", - "rshares": "4543692384" + "rshares": "4543692384", + "voter": "proto" }, { - "voter": "curator", - "rshares": "634121191" + "rshares": "634121191", + "voter": "curator" }, { - "voter": "sisterholics", - "rshares": "31584197440" + "rshares": "31584197440", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "411321155" + "rshares": "411321155", + "voter": "yarly10" }, { - "voter": "alex.chien", - "rshares": "1365664469" + "rshares": "1365664469", + "voter": "alex.chien" }, { - "voter": "yarly11", - "rshares": "220139771" + "rshares": "220139771", + "voter": "yarly11" }, { - "voter": "yarly12", - "rshares": "76966318" + "rshares": "76966318", + "voter": "yarly12" }, { - "voter": "logic", - "rshares": "10236810028" + "rshares": "10236810028", + "voter": "logic" }, { - "voter": "tygergamer", - "rshares": "3675499938" + "rshares": "3675499938", + "voter": "tygergamer" }, { - "voter": "aizen53", - "rshares": "82066003" + "rshares": "82066003", + "voter": "aizen53" }, { - "voter": "steemster1", - "rshares": "149624601" + "rshares": "149624601", + "voter": "steemster1" }, { - "voter": "bullionstackers", - "rshares": "238512214" + "rshares": "238512214", + "voter": "bullionstackers" }, { - "voter": "cryptoz", - "rshares": "108721833" + "rshares": "108721833", + "voter": "cryptoz" }, { - "voter": "jed78", - "rshares": "6410776006" + "rshares": "6410776006", + "voter": "jed78" }, { - "voter": "steemdrive", - "rshares": "128598923578" + "rshares": "128598923578", + "voter": "steemdrive" }, { - "voter": "metaflute", - "rshares": "973098459" + "rshares": "973098459", + "voter": "metaflute" }, { - "voter": "gomeravibz", - "rshares": "50562639777" + "rshares": "50562639777", + "voter": "gomeravibz" }, { - "voter": "bento04", - "rshares": "440302381" + "rshares": "440302381", + "voter": "bento04" }, { - "voter": "bento03", - "rshares": "738358963" + "rshares": "738358963", + "voter": "bento03" }, { - "voter": "aizen", - "rshares": "1504291216" + "rshares": "1504291216", + "voter": "aizen" }, { - "voter": "taker", - "rshares": "2298269478" + "rshares": "2298269478", + "voter": "taker" }, { - "voter": "bento02", - "rshares": "234848214" + "rshares": "234848214", + "voter": "bento02" }, { - "voter": "bento01", - "rshares": "540710999" + "rshares": "540710999", + "voter": "bento01" }, { - "voter": "nekromarinist", - "rshares": "7824682639" + "rshares": "7824682639", + "voter": "nekromarinist" }, { - "voter": "coinbar", - "rshares": "1618775242" + "rshares": "1618775242", + "voter": "coinbar" }, { - "voter": "sharon", - "rshares": "59219358" + "rshares": "59219358", + "voter": "sharon" }, { - "voter": "frozendota", - "rshares": "226021128" + "rshares": "226021128", + "voter": "frozendota" }, { - "voter": "merej99", - "rshares": "2315969904" + "rshares": "2315969904", + "voter": "merej99" }, { - "voter": "lillianjones", - "rshares": "60342922" + "rshares": "60342922", + "voter": "lillianjones" }, { - "voter": "laonie", - "rshares": "1116575645876" + "rshares": "1116575645876", + "voter": "laonie" }, { - "voter": "ozchartart", - "rshares": "245498462743" + "rshares": "245498462743", + "voter": "ozchartart" }, { - "voter": "croatia", - "rshares": "5002458769" + "rshares": "5002458769", + "voter": "croatia" }, { - "voter": "vladimirputin", - "rshares": "64020118" + "rshares": "64020118", + "voter": "vladimirputin" }, { - "voter": "rawnetics", - "rshares": "23878310347" + "rshares": "23878310347", + "voter": "rawnetics" }, { - "voter": "angelamerkel", - "rshares": "64028162" + "rshares": "64028162", + "voter": "angelamerkel" }, { - "voter": "spaceghost", - "rshares": "8270207209" + "rshares": "8270207209", + "voter": "spaceghost" }, { - "voter": "thebluepanda", - "rshares": "11407745971" + "rshares": "11407745971", + "voter": "thebluepanda" }, { - "voter": "laonie1", - "rshares": "22955094272" + "rshares": "22955094272", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "23470889026" + "rshares": "23470889026", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "23479197538" + "rshares": "23479197538", + "voter": "laonie3" }, { - "voter": "bento06", - "rshares": "80221808" + "rshares": "80221808", + "voter": "bento06" }, { - "voter": "laoyao", - "rshares": "23907912804" + "rshares": "23907912804", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "37203524105" + "rshares": "37203524105", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "226714843171" + "rshares": "226714843171", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "8719338522" + "rshares": "8719338522", + "voter": "flysaga" }, { - "voter": "k4r1nn", - "rshares": "6129565712" + "rshares": "6129565712", + "voter": "k4r1nn" }, { - "voter": "brendio", - "rshares": "5106436541" + "rshares": "5106436541", + "voter": "brendio" }, { - "voter": "gmurph", - "rshares": "2082768176" + "rshares": "2082768176", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "50083495099" + "rshares": "50083495099", + "voter": "midnightoil" }, { - "voter": "mibenkito", - "rshares": "81536310749" + "rshares": "81536310749", + "voter": "mibenkito" }, { - "voter": "kalimor", - "rshares": "2375350982" + "rshares": "2375350982", + "voter": "kalimor" }, { - "voter": "altucher", - "rshares": "998581895" + "rshares": "998581895", + "voter": "altucher" }, { - "voter": "ullikume", - "rshares": "4187079592" + "rshares": "4187079592", + "voter": "ullikume" }, { - "voter": "timferriss", - "rshares": "99580782" + "rshares": "99580782", + "voter": "timferriss" }, { - "voter": "michellek", - "rshares": "50565616" + "rshares": "50565616", + "voter": "michellek" }, { - "voter": "laonie4", - "rshares": "23474742068" + "rshares": "23474742068", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "23472418592" + "rshares": "23472418592", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "23469546880" + "rshares": "23469546880", + "voter": "laonie6" }, { - "voter": "armen", - "rshares": "4337200195" + "rshares": "4337200195", + "voter": "armen" }, { - "voter": "laonie7", - "rshares": "23465711623" + "rshares": "23465711623", + "voter": "laonie7" }, { - "voter": "kurtbeil", - "rshares": "3986410926" + "rshares": "3986410926", + "voter": "kurtbeil" }, { - "voter": "laonie8", - "rshares": "23462236775" + "rshares": "23462236775", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "23459668262" + "rshares": "23459668262", + "voter": "laonie9" }, { - "voter": "steemleak", - "rshares": "2511850537" + "rshares": "2511850537", + "voter": "steemleak" }, { - "voter": "thisisbenbrick", - "rshares": "107573849125" + "rshares": "107573849125", + "voter": "thisisbenbrick" }, { - "voter": "darrenrowse", - "rshares": "102639999" + "rshares": "102639999", + "voter": "darrenrowse" }, { - "voter": "xiaohui", - "rshares": "125243433939" + "rshares": "125243433939", + "voter": "xiaohui" }, { - "voter": "antfield", - "rshares": "4185826321" + "rshares": "4185826321", + "voter": "antfield" }, { - "voter": "terrycraft", - "rshares": "176650903994" + "rshares": "176650903994", + "voter": "terrycraft" }, { - "voter": "jphamer1", - "rshares": "21110659306" + "rshares": "21110659306", + "voter": "jphamer1" }, { - "voter": "bigsambucca", - "rshares": "97051399" + "rshares": "97051399", + "voter": "bigsambucca" }, { - "voter": "elfkitchen", - "rshares": "5946738271" + "rshares": "5946738271", + "voter": "elfkitchen" }, { - "voter": "oflyhigh", - "rshares": "5766554064" + "rshares": "5766554064", + "voter": "oflyhigh" }, { - "voter": "randyclemens", - "rshares": "15547550089" + "rshares": "15547550089", + "voter": "randyclemens" }, { - "voter": "paynode", - "rshares": "2190476078" + "rshares": "2190476078", + "voter": "paynode" }, { - "voter": "nickche", - "rshares": "63775516" + "rshares": "63775516", + "voter": "nickche" }, { - "voter": "xiaokongcom", - "rshares": "4028373583" + "rshares": "4028373583", + "voter": "xiaokongcom" }, { - "voter": "driv3n", - "rshares": "57428544328" + "rshares": "57428544328", + "voter": "driv3n" }, { - "voter": "msjennifer", - "rshares": "60819615" + "rshares": "60819615", + "voter": "msjennifer" }, { - "voter": "ciao", - "rshares": "55925537" + "rshares": "55925537", + "voter": "ciao" }, { - "voter": "steemo", - "rshares": "54217761" + "rshares": "54217761", + "voter": "steemo" }, { - "voter": "pcashmore", - "rshares": "175834493" + "rshares": "175834493", + "voter": "pcashmore" }, { - "voter": "xianjun", - "rshares": "8120343873" + "rshares": "8120343873", + "voter": "xianjun" }, { - "voter": "steema", - "rshares": "54077897" + "rshares": "54077897", + "voter": "steema" }, { - "voter": "andrew.sullivan", - "rshares": "58449787" + "rshares": "58449787", + "voter": "andrew.sullivan" }, { - "voter": "brianclark", - "rshares": "1025553643" + "rshares": "1025553643", + "voter": "brianclark" }, { - "voter": "daniel.kahneman", - "rshares": "815283599" + "rshares": "815283599", + "voter": "daniel.kahneman" }, { - "voter": "tucker.max", - "rshares": "228330036" + "rshares": "228330036", + "voter": "tucker.max" }, { - "voter": "darren.rowse", - "rshares": "726300641" + "rshares": "726300641", + "voter": "darren.rowse" }, { - "voter": "chris.dunn", - "rshares": "54611897" + "rshares": "54611897", + "voter": "chris.dunn" }, { - "voter": "confucius", - "rshares": "71282219" + "rshares": "71282219", + "voter": "confucius" }, { - "voter": "stevescriber", - "rshares": "70633121" + "rshares": "70633121", + "voter": "stevescriber" }, { - "voter": "bledarus", - "rshares": "4015538661" + "rshares": "4015538661", + "voter": "bledarus" }, { - "voter": "pat.flynn", - "rshares": "1155158838" + "rshares": "1155158838", + "voter": "pat.flynn" }, { - "voter": "weames", - "rshares": "62297184" + "rshares": "62297184", + "voter": "weames" }, { - "voter": "loli", - "rshares": "50027573" + "rshares": "50027573", + "voter": "loli" }, { - "voter": "miacats", - "rshares": "89194632643" + "rshares": "89194632643", + "voter": "miacats" }, { - "voter": "mattmarshall", - "rshares": "1199604993" + "rshares": "1199604993", + "voter": "mattmarshall" }, { - "voter": "timothysykes", - "rshares": "429199025" + "rshares": "429199025", + "voter": "timothysykes" }, { - "voter": "nano2nd", - "rshares": "52419023" + "rshares": "52419023", + "voter": "nano2nd" }, { - "voter": "patflynn", - "rshares": "104765652" + "rshares": "104765652", + "voter": "patflynn" }, { - "voter": "jarvis", - "rshares": "54909929" + "rshares": "54909929", + "voter": "jarvis" }, { - "voter": "microluck", - "rshares": "531944476" + "rshares": "531944476", + "voter": "microluck" }, { - "voter": "andrewsullivan", - "rshares": "879418656" + "rshares": "879418656", + "voter": "andrewsullivan" }, { - "voter": "razberrijam", - "rshares": "77220767" + "rshares": "77220767", + "voter": "razberrijam" }, { - "voter": "theb0red1", - "rshares": "9618530893" + "rshares": "9618530893", + "voter": "theb0red1" }, { - "voter": "fortuner", - "rshares": "53106127" + "rshares": "53106127", + "voter": "fortuner" }, { - "voter": "chinadaily", - "rshares": "1952786674" + "rshares": "1952786674", + "voter": "chinadaily" }, { - "voter": "cryptoblu", - "rshares": "59021275" + "rshares": "59021275", + "voter": "cryptoblu" }, { - "voter": "instructor", - "rshares": "59014859" + "rshares": "59014859", + "voter": "instructor" }, { - "voter": "dollarvigilante", - "rshares": "739426684571" + "rshares": "739426684571", + "voter": "dollarvigilante" }, { - "voter": "lamech-m", - "rshares": "3897735456" + "rshares": "3897735456", + "voter": "lamech-m" }, { - "voter": "harvey.levin", - "rshares": "479539090" + "rshares": "479539090", + "voter": "harvey.levin" }, { - "voter": "gvargas123", - "rshares": "9825243280" + "rshares": "9825243280", + "voter": "gvargas123" }, { - "voter": "telos", - "rshares": "13004524355" + "rshares": "13004524355", + "voter": "telos" }, { - "voter": "johnbyrd", - "rshares": "51877132" + "rshares": "51877132", + "voter": "johnbyrd" }, { - "voter": "thomasaustin", - "rshares": "51860909" + "rshares": "51860909", + "voter": "thomasaustin" }, { - "voter": "thermor", - "rshares": "51859074" + "rshares": "51859074", + "voter": "thermor" }, { - "voter": "ficholl", - "rshares": "51870077" + "rshares": "51870077", + "voter": "ficholl" }, { - "voter": "widell", - "rshares": "51852278" + "rshares": "51852278", + "voter": "widell" }, { - "voter": "revelbrooks", - "rshares": "51481279" + "rshares": "51481279", + "voter": "revelbrooks" }, { - "voter": "laonie10", - "rshares": "23453540976" + "rshares": "23453540976", + "voter": "laonie10" }, { - "voter": "wuyueling", - "rshares": "604185913" + "rshares": "604185913", + "voter": "wuyueling" }, { - "voter": "sweetsssj", - "rshares": "73277014476" + "rshares": "73277014476", + "voter": "sweetsssj" }, { - "voter": "netaterra", - "rshares": "2803446535" + "rshares": "2803446535", + "voter": "netaterra" }, { - "voter": "rand.fishkin", - "rshares": "190920669" + "rshares": "190920669", + "voter": "rand.fishkin" }, { - "voter": "barrycooper", - "rshares": "90834949499" + "rshares": "90834949499", + "voter": "barrycooper" }, { - "voter": "joelbow", - "rshares": "79979619" + "rshares": "79979619", + "voter": "joelbow" }, { - "voter": "hilarski", - "rshares": "28908541792" + "rshares": "28908541792", + "voter": "hilarski" }, { - "voter": "shadowspub", - "rshares": "2496488206" + "rshares": "2496488206", + "voter": "shadowspub" }, { - "voter": "curpose", - "rshares": "51562255" + "rshares": "51562255", + "voter": "curpose" }, { - "voter": "rickmiller", - "rshares": "55859919" + "rshares": "55859919", + "voter": "rickmiller" }, { - "voter": "lenar", - "rshares": "1208491149" + "rshares": "1208491149", + "voter": "lenar" }, { - "voter": "cryptoeasy", - "rshares": "2129438571" + "rshares": "2129438571", + "voter": "cryptoeasy" }, { - "voter": "nulliusinverba", - "rshares": "5032072150" + "rshares": "5032072150", + "voter": "nulliusinverba" }, { - "voter": "stephenkendal", - "rshares": "68558903" + "rshares": "68558903", + "voter": "stephenkendal" }, { - "voter": "jlufer", - "rshares": "112576381" + "rshares": "112576381", + "voter": "jlufer" }, { - "voter": "uziriel", - "rshares": "90066514" + "rshares": "90066514", + "voter": "uziriel" }, { - "voter": "funkywanderer", - "rshares": "1931935967" + "rshares": "1931935967", + "voter": "funkywanderer" }, { - "voter": "richardcrill", - "rshares": "4592861696" + "rshares": "4592861696", + "voter": "richardcrill" }, { - "voter": "laonie11", - "rshares": "22607437120" + "rshares": "22607437120", + "voter": "laonie11" }, { - "voter": "jeremyfromwi", - "rshares": "2249900457" + "rshares": "2249900457", + "voter": "jeremyfromwi" }, { - "voter": "arnoldz61", - "rshares": "63258691" + "rshares": "63258691", + "voter": "arnoldz61" }, { - "voter": "troich", - "rshares": "51712804" + "rshares": "51712804", + "voter": "troich" }, { - "voter": "davidjkelley", - "rshares": "1588617838" + "rshares": "1588617838", + "voter": "davidjkelley" }, { - "voter": "team101", - "rshares": "187911420" + "rshares": "187911420", + "voter": "team101" }, { - "voter": "crion", - "rshares": "51718188" + "rshares": "51718188", + "voter": "crion" }, { - "voter": "greatness", - "rshares": "178419224" + "rshares": "178419224", + "voter": "greatness" }, { - "voter": "hitherise", - "rshares": "51388276" + "rshares": "51388276", + "voter": "hitherise" }, { - "voter": "wiss", - "rshares": "51379706" + "rshares": "51379706", + "voter": "wiss" }, { - "voter": "ghasemkiani", - "rshares": "13264756693" + "rshares": "13264756693", + "voter": "ghasemkiani" }, { - "voter": "sponge-bob", - "rshares": "20853966542" + "rshares": "20853966542", + "voter": "sponge-bob" }, { - "voter": "l0k1", - "rshares": "4434912337" + "rshares": "4434912337", + "voter": "l0k1" }, { - "voter": "digital-wisdom", - "rshares": "14886230314" + "rshares": "14886230314", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3628536972" + "rshares": "3628536972", + "voter": "ethical-ai" }, { - "voter": "stroully", - "rshares": "52143228" + "rshares": "52143228", + "voter": "stroully" }, { - "voter": "jiganomics", - "rshares": "1433005760" + "rshares": "1433005760", + "voter": "jiganomics" }, { - "voter": "jwaser", - "rshares": "6531322926" + "rshares": "6531322926", + "voter": "jwaser" }, { - "voter": "doitvoluntarily", - "rshares": "11919570943" + "rshares": "11919570943", + "voter": "doitvoluntarily" }, { - "voter": "thadm", - "rshares": "51814474" + "rshares": "51814474", + "voter": "thadm" }, { - "voter": "prof", - "rshares": "51812703" + "rshares": "51812703", + "voter": "prof" }, { - "voter": "zettar", - "rshares": "1018513187" + "rshares": "1018513187", + "voter": "zettar" }, { - "voter": "kyusho", - "rshares": "94160774" + "rshares": "94160774", + "voter": "kyusho" }, { - "voter": "steemorama", - "rshares": "414323782" + "rshares": "414323782", + "voter": "steemorama" }, { - "voter": "lighter", - "rshares": "52252552" + "rshares": "52252552", + "voter": "lighter" }, { - "voter": "yorsens", - "rshares": "51465774" + "rshares": "51465774", + "voter": "yorsens" }, { - "voter": "michaelmatthews", - "rshares": "3068760608" + "rshares": "3068760608", + "voter": "michaelmatthews" }, { - "voter": "benjamin.still", - "rshares": "273904972" + "rshares": "273904972", + "voter": "benjamin.still" }, { - "voter": "harveylevin", - "rshares": "174173092" + "rshares": "174173092", + "voter": "harveylevin" }, { - "voter": "bane", - "rshares": "51154263" + "rshares": "51154263", + "voter": "bane" }, { - "voter": "vive", - "rshares": "51148009" + "rshares": "51148009", + "voter": "vive" }, { - "voter": "coad", - "rshares": "51142585" + "rshares": "51142585", + "voter": "coad" }, { - "voter": "bwaser", - "rshares": "2558000160" + "rshares": "2558000160", + "voter": "bwaser" }, { - "voter": "sofa", - "rshares": "51922012" + "rshares": "51922012", + "voter": "sofa" }, { - "voter": "gary.vaynerchuk", - "rshares": "120475423" + "rshares": "120475423", + "voter": "gary.vaynerchuk" }, { - "voter": "dexter-k", - "rshares": "5773395051" + "rshares": "5773395051", + "voter": "dexter-k" }, { - "voter": "panther", - "rshares": "344116052" + "rshares": "344116052", + "voter": "panther" }, { - "voter": "alina1", - "rshares": "2201645172" + "rshares": "2201645172", + "voter": "alina1" }, { - "voter": "ct-gurus", - "rshares": "659570211" + "rshares": "659570211", + "voter": "ct-gurus" }, { - "voter": "charlieshrem", - "rshares": "395021428301" + "rshares": "395021428301", + "voter": "charlieshrem" }, { - "voter": "tracemayer", - "rshares": "61805245119" + "rshares": "61805245119", + "voter": "tracemayer" }, { - "voter": "brains", - "rshares": "20817843519" + "rshares": "20817843519", + "voter": "brains" }, { - "voter": "waldemar-kuhn", - "rshares": "50450987" + "rshares": "50450987", + "voter": "waldemar-kuhn" }, { - "voter": "ailo", - "rshares": "51994517" + "rshares": "51994517", + "voter": "ailo" }, { - "voter": "chick1", - "rshares": "5470867324" + "rshares": "5470867324", + "voter": "chick1" }, { - "voter": "whatsup", - "rshares": "2275182541" + "rshares": "2275182541", + "voter": "whatsup" }, { - "voter": "xpice", - "rshares": "51114196" + "rshares": "51114196", + "voter": "xpice" }, { - "voter": "steemsquad", - "rshares": "2084741030" + "rshares": "2084741030", + "voter": "steemsquad" }, { - "voter": "anomaly", - "rshares": "255505026" + "rshares": "255505026", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2293549771" + "rshares": "2293549771", + "voter": "ellepdub" }, { - "voter": "timothy.sykes", - "rshares": "50407156" + "rshares": "50407156", + "voter": "timothy.sykes" }, { - "voter": "inarix03", - "rshares": "59178617" + "rshares": "59178617", + "voter": "inarix03" }, { - "voter": "ola1", - "rshares": "218488504" + "rshares": "218488504", + "voter": "ola1" }, { - "voter": "herpetologyguy", - "rshares": "11523640324" + "rshares": "11523640324", + "voter": "herpetologyguy" }, { - "voter": "dulcio", - "rshares": "52614987" + "rshares": "52614987", + "voter": "dulcio" }, { - "voter": "eavy", - "rshares": "51470533" + "rshares": "51470533", + "voter": "eavy" }, { - "voter": "roto", - "rshares": "51484593" + "rshares": "51484593", + "voter": "roto" }, { - "voter": "drac59", - "rshares": "54452104" + "rshares": "54452104", + "voter": "drac59" }, { - "voter": "everittdmickey", - "rshares": "57119426" + "rshares": "57119426", + "voter": "everittdmickey" }, { - "voter": "jang", - "rshares": "1041710878" + "rshares": "1041710878", + "voter": "jang" }, { - "voter": "morgan.waser", - "rshares": "4605288518" + "rshares": "4605288518", + "voter": "morgan.waser" }, { - "voter": "cfisher", - "rshares": "50602980" + "rshares": "50602980", + "voter": "cfisher" }, { - "voter": "thefinanceguy", - "rshares": "285981023" + "rshares": "285981023", + "voter": "thefinanceguy" }, { - "voter": "billkappa442", - "rshares": "50235850" + "rshares": "50235850", + "voter": "billkappa442" }, { - "voter": "anns", - "rshares": "1206752302" + "rshares": "1206752302", + "voter": "anns" }, { - "voter": "haved", - "rshares": "50938725" + "rshares": "50938725", + "voter": "haved" }, { - "voter": "ardly", - "rshares": "50708837" + "rshares": "50708837", + "voter": "ardly" }, { - "voter": "yotoh", - "rshares": "50704078" + "rshares": "50704078", + "voter": "yotoh" }, { - "voter": "penthouse", - "rshares": "50565798" + "rshares": "50565798", + "voter": "penthouse" }, { - "voter": "bapparabi", - "rshares": "1871969417" + "rshares": "1871969417", + "voter": "bapparabi" }, { - "voter": "opticalillusions", - "rshares": "50487909" + "rshares": "50487909", + "voter": "opticalillusions" }, { - "voter": "morse", - "rshares": "50433760" + "rshares": "50433760", + "voter": "morse" }, { - "voter": "carre", - "rshares": "50372583" + "rshares": "50372583", + "voter": "carre" }, { - "voter": "aschwin", - "rshares": "50351738" + "rshares": "50351738", + "voter": "aschwin" }, { - "voter": "strong-ai", - "rshares": "3527739772" + "rshares": "3527739772", + "voter": "strong-ai" }, { - "voter": "igtes", - "rshares": "71207873" + "rshares": "71207873", + "voter": "igtes" }, { - "voter": "dikanevroman", - "rshares": "851674848" + "rshares": "851674848", + "voter": "dikanevroman" }, { - "voter": "buffett", - "rshares": "144899746" + "rshares": "144899746", + "voter": "buffett" }, { - "voter": "ctu", - "rshares": "159723319" + "rshares": "159723319", + "voter": "ctu" }, { - "voter": "rusteemitblog", - "rshares": "1319373906" + "rshares": "1319373906", + "voter": "rusteemitblog" }, { - "voter": "zapply", - "rshares": "161974443" + "rshares": "161974443", + "voter": "zapply" }, { - "voter": "kjsxj", - "rshares": "505647276" + "rshares": "505647276", + "voter": "kjsxj" }, { - "voter": "ranger", - "rshares": "158642800" + "rshares": "158642800", + "voter": "ranger" }, { - "voter": "shadowcash", - "rshares": "161700361" + "rshares": "161700361", + "voter": "shadowcash" }, { - "voter": "witchcraftblog", - "rshares": "435351417" + "rshares": "435351417", + "voter": "witchcraftblog" }, { - "voter": "origin", - "rshares": "158051137" + "rshares": "158051137", + "voter": "origin" }, { - "voter": "james1987", - "rshares": "310120169" + "rshares": "310120169", + "voter": "james1987" }, { - "voter": "caseyneistat", - "rshares": "160845765" + "rshares": "160845765", + "voter": "caseyneistat" }, { - "voter": "pawel-krawczyk", - "rshares": "161323470" + "rshares": "161323470", + "voter": "pawel-krawczyk" }, { - "voter": "mgibson", - "rshares": "201362779" + "rshares": "201362779", + "voter": "mgibson" }, { - "voter": "planet", - "rshares": "160326045" + "rshares": "160326045", + "voter": "planet" }, { - "voter": "food-creator", - "rshares": "152057481" + "rshares": "152057481", + "voter": "food-creator" }, { - "voter": "blender", - "rshares": "156411729" + "rshares": "156411729", + "voter": "blender" }, { - "voter": "ibm1000", - "rshares": "156261069" + "rshares": "156261069", + "voter": "ibm1000" }, { - "voter": "panic", - "rshares": "156227917" + "rshares": "156227917", + "voter": "panic" }, { - "voter": "reef", - "rshares": "159143891" + "rshares": "159143891", + "voter": "reef" }, { - "voter": "steemthis", - "rshares": "158560941" + "rshares": "158560941", + "voter": "steemthis" }, { - "voter": "citigroup", - "rshares": "158541985" + "rshares": "158541985", + "voter": "citigroup" }, { - "voter": "zendesk", - "rshares": "158486055" + "rshares": "158486055", + "voter": "zendesk" }, { - "voter": "maxb02", - "rshares": "158270049" + "rshares": "158270049", + "voter": "maxb02" }, { - "voter": "dealzgal", - "rshares": "71720421" + "rshares": "71720421", + "voter": "dealzgal" }, { - "voter": "blend", - "rshares": "197432359" + "rshares": "197432359", + "voter": "blend" }, { - "voter": "storage", - "rshares": "80379451" + "rshares": "80379451", + "voter": "storage" }, { - "voter": "dougkarr", - "rshares": "148077602" + "rshares": "148077602", + "voter": "dougkarr" }, { - "voter": "blackmarket", - "rshares": "64613800" + "rshares": "64613800", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "70760501" + "rshares": "70760501", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "91120780" + "rshares": "91120780", + "voter": "expat" }, { - "voter": "steemtrail", - "rshares": "134906258" + "rshares": "134906258", + "voter": "steemtrail" }, { - "voter": "royfft", - "rshares": "147050914" + "rshares": "147050914", + "voter": "royfft" }, { - "voter": "countofdelphi", - "rshares": "151927362" + "rshares": "151927362", + "voter": "countofdelphi" }, { - "voter": "rjordan", - "rshares": "154610548" + "rshares": "154610548", + "voter": "rjordan" }, { - "voter": "sawgunner13", - "rshares": "144957585" + "rshares": "144957585", + "voter": "sawgunner13" }, { - "voter": "mysteryshot", - "rshares": "150986382" + "rshares": "150986382", + "voter": "mysteryshot" }, { - "voter": "dirlei.sdias", - "rshares": "150834868" + "rshares": "150834868", + "voter": "dirlei.sdias" }, { - "voter": "tttnofear", - "rshares": "150260046" + "rshares": "150260046", + "voter": "tttnofear" } ], + "author": "calaber24p", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 524, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/life/@calaber24p/who-should-we-find-responsible-for-the-subprime-mortgage-lending-crisis", - "blacklists": [] - }, - { - "post_id": 958600, - "author": "terrycraft", - "permlink": "vegetarianism-is-philosophy-which-has-deep-religious-and-ethical-roots-my-way-vegetarianstvo-moi-put-featuring-tagira-as-author", - "category": "vegetarian", - "title": "Vegetarianism is philosophy which has deep religious and ethical roots, my way / Вегетарианство-мой путь (featuring @tagira as author)", - "body": "Vegetarianism is philosophy which has deep religious and ethical roots, the essence is the refuse to eat meat of living beings.\nPythagorean were vegetarians. Yogis of ancient India were vegetarians. The followers of Buddhism are prescribed to be vegetarians. Early Christianity forbade killing for food.\nI became a vegetarian at the age of 15. I remember clear this comic occasion: during another lush family dinner my dad putted the shin of the roasted goose on my plate. When he was putting this piece of once living bird, I claimed it for the first time: “No, dad thanks. I don’t eat living creatures anymore. I’m a vegetarian”.\nhttp://petroart.ru/art/b/bronikov/img/3.jpg\n>Вегетарианство - это философия, имеющая очень древние религиозные и этические корни, суть которой составляет отказ от употребления в пищу мяса живых существ. \nПифагорейцы были вегетарианцами. Йоги древней Индии были вегетарианцами. Буддизм предписывает своим последователям вегетарианство. Раннее христианство запрещало убийство для чрева.\nЯ стала вегетарианкой в возрасте 15 лет. Прекрасно помню этот комичный случай: во время очередного пышного семейного ужина папа вызвался положить мне в тарелку голень запечённого в духовке гуся. В то время как он уже взваливал в мою тарелку кусок некогда живой птицы, я впервые заявила во всеуслышание:\"Нет, папа, не нужно. Я больше не ем живых существ. Я вегетарианка.\"\n----\nI was a teenager at that time, my parents didn’t treat it seriously, considering it as a teenage whim, didn’t understand me, and for sure, didn’t support me. Though they didn’t object it, thinking that it would pass in a few months. But it wasn’t a whim; it was my first serious and conscious decision in my life. They stopped ostracizing me only in a year after, during that year I experienced, at the example of a family as a social group, what it’s like to have your personal opinion when the majority is against you!\nWhat did cause my decision to become a vegetarian?\nI can’t remember the particular event, which marked the switch of my mind to conscious nutrition without harm to living beings. It seemed that I did it easily because I’d been moving to it and at the certain moment I was morally ready to do the step. For example I remember when I was just a kid, at the age of 5 or 6, I was playing in our garden, thinking: “Why should I kill to keep on living?” I didn’t ask anybody about it, because I felt that I wouldn’t get the proper answer from adults. This question gave me no rest; I often tried to solve this dilemma reasoning from how my childish heart perceived the world, which opposed all violence and evil. Understanding that this faceless, usually tasty grilled chicken used to be a living being, which had been born, had been a little chick, it was eating and enjoying life and then it was beheaded killed to make me think that I like eating fried chicken legs; it led me to the ideological confusion. I loved every animal, considered them as friends; on the one hand I saw people keeping pets and treating them as family members. On the other hand people killed an animal to have something tasty on their dinner table. And so did I, I was sitting and eating that grilled chicken.\n\nhttp://www.damex.ru/images/cache/660x495/crop/images%7Ccms-image-000013620.jpg\n\n>Тогда я была подростком, и мои родители не отнеслись ко мне серьёзно, посчитав это подростковой причудой, не поняли меня и, естественно, не поддержали. Но не стали активно возражать, думая, что через пару-тройку месяцев это пройдёт. Но это не было причудой, это было первым серьёзным и осознанным решением в моей жизни. Только спустя год они перестали подвергать меня семейному остракизму, во время которого я хорошо прочувствовала на примере социальной группы \"семья\", что такое иметь собственное мнение, когда большинство против тебя!\nЧем было вызвано моё решение стать вегетарианкой?\nЯ не могу вспомнить конкретного события, которое бы ознаменовало резкий сдвиг моего сознания и переход на осознанное питание без вреда для живых существ. Мне даже кажется, что это прошло так легко и естественно именно потому, что я уже давно шла к этому и в какой-то момент просто морально созрела для такого шага. Например, помню, как ещё будучи совсем ребёнком, лет этак в пять-шесть, я играла в нашем огороде и думала:\"А почему, для того, чтобы жить, я должна убивать?\" Я никого не спрашивала об этом, потому что совершенно ясно чувствовала, что никто из взрослых не в состоянии ответить мне правильно. Этот вопрос не давал мне покоя, я часто пыталась решить эту дилемму, исходя из восприятия мира сердцем ребёнка, которое противится всякому насилию и злу по самой своей природе. Понимание, что эта безликая, привычно вкусная \"курица-гриль\" была живым существом, которое когда-то было рождено, росло маленьким цыплёнком, кушало и по-своему радовалось жизни, а теперь обезглавлено, убито, для того, чтобы я думала, как я люблю кушать жареные ножки этой курочки, приводило меня в идеологическое замешательство. Я очень любила всех животных, считала их своими друзьями, видела, как люди заводят некоторых в качестве домашних любимцев как членов семьи. И тут же с другой стороны люди убивают животное, чтобы было что вкусное покушать на столе. И вот я тоже сижу и ем эту курицу-гриль. \n-----\nBut seeing that adults didn’t care about it, I as any other child didn’t oppose myself to parents and others; I just assimilate all the manners and customs, equaling to those who seemed to be older and wiser.\nI was growing up and parents’ influence and influence of other unquestioned authorities subsided, I got my personal space in my mind and there was my personal opinion on the questions in it. At the age of 15, the formation of my personality reached the level where issues of life turned into beliefs and beliefs – into actions. I remembered that childish dilemma in a new perspective, and to the question: “Why should I kill to keep on living?” I answered: “NO, I SHOULD NOT”\nSince then I’m a vegetarian, it’s been 5 years already.\nhttps://media4.giphy.com/media/xcFZrrcaGhbz2/200w.gif\n>Но видя, что взрослых это не заботит, я, как любой ребёнок, не противопоставляла себя родителям и всем другим, просто впитывала все нравы и обычаи, равняясь на тех, кого считала старше и мудрее.\nЯ росла, и постепенно влияние родителей и прочих непререкаемых авторитетов спадало, у меня появлялось личное пространство в разуме и в нём зарождалось собственное мнение на жизненные вопросы. И в возрасте 15 лет степень формирования моей личности достигла того уровня, когда вопросы к жизни превратились в убеждения, а убеждения - в действия. Я вспомнила о той детской дилемме в новом свете, и на вопрос:\"Почему, для того, чтобы жить, я должна убивать?\" я ответила себе - \"НЕ ДОЛЖНА.\" \nС тех пор я вегетарианка, прошло уже пять лет. \n---\nIt’s great happiness to live according to you beliefs without betraying them for the sake of the public opinion, to live in accordance with your conscience and moral purity. I’d like more people to think about what they eat and do it consciously, how inhumane it is to feed on flesh of killed creatures.\nAs it is written in the Gospel of the Essenes: \"It was said to them of old time, 'Honor thy Heavenly Father and thy Earthly Mother, and do their commandments, that thy days may be long upon the earth.' And next afterward was given this commandment, 'Thou shalt not kill,' for life is given to all by God, and that which God has given, let not man take away. For-I tell you truly, from one Mother proceeds all that lives upon the earth. Therefore, he who kills, kills his brother. And from him will the Earthly Mother turn away, and will pluck from him her quickening breasts. And he will be shunned by her angels, and Satan will have his dwelling in his body. And the flesh of slain beasts in his body will become his own tomb. For I tell you truly, he who kills, kills himself, and whoso eats the flesh of slain beasts, eats of the body of death. For in his blood every drop of their blood turns to poison; in his breath their breath to stink; in his flesh their flesh to boils; in his bones their bones to chalk; in his bowels their bowels t o decay; in his eyes their eyes to scales; in his ears their ears to waxy issue. And their death will become his death”\nhttp://99px.ru/sstorage/56/2013/07/image_561607131913053649088.gif\n>Это большое счастье - жить, согласно своим убеждениям, не предавая их в угоду общественному мнению, жить - в согласии со своей совестью и нравственной чистотой. Я хочу, чтобы как можно больше людей задумалось о том, что они едят, и осознало, как негуманно питаться плотью убитых существ.\nКак записано в Евангелии от Ессеев: \"Бог заповедовал нашим предкам: «Не убий». Но сердца их ожесточились, и они стали убивать. Тогда Моисей решил, что они не должны по крайней мере убивать людей, и дозволил им убивать зверей. И тогда сердца ваших предков ожесточились еще больше, и стали они убивать людей, равно как и зверей. Но я говорю вам, не убивайте ни людей, ни зверей, ни то, что станет пищей вашей. Ибо если вы принимаете живую пищу, она наполняет вас жизнью, но если вы убиваете свою пищу, мертвая пища убьет также и вас. Ибо жизнь происходит только от жизни, а от смерти всегда происходит смерть. Ибо все, что убивает вашу пищу, также убивает и ваши тела. А все, что убивает ваши тела, убивает также и ваши души. И тела становятся тем, что есть пища ваша, равно как дух ваш становится тем, что есть мысли ваши.\"\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @tagira\n\n---\n\nAll STEEM Dollars for this post go to the featured author. Все SD за пост получит автор.", + "blacklists": [], + "body": "

Who Should We Find Responsible For The Subprime Mortgage Lending Crisis?

\n\nI want to preface this article by saying, I\u2019m not 100% sure who we should blame for the Subprime Mortgage Lending Crisis, the lenders or the borrowers which is why I want to attempt to fairly give arguments from both sides. Even today this is a heavily debated topic and I agree with points made by both sides. So I want you to decide as the reader, who you side with, and if you want to post in the comments below. This article is meant to shed light on who we should hold responsible for the Subprime Mortgage Crisis, the lenders or the borrowers, or someone else?\n\nhttp://longislandbankruptcyblog.com/wp-content/uploads/2007/11/mortgage-bubble-bursting-by-the-sub-prime-mortgage-meltdown.jpg\n\n

The Lender\u2019s Side of The Argument

\n\nThe lender\u2019s side of the argument almost completely revolves around the idea that people need to educate themselves before they go into a bank and take on such a series contract, like a mortgage. Even in many cases where the information was fully available to the borrower, they signed the contract even though they didn\u2019t understand it. If you agree with consumer protection, the lenders should have stopped the transaction from taking place, but many believe that we should be free to make all decisions even bad ones. The truth is that these are companies, however and their only job is to look out for themselves. This lending is an especially weird occurrence because the force which usually stops this kind of behavior from taking place is that it would not be beneficial to the company, but mortgage brokers and the companies lending were making so much money that at the time it seemed like a good idea. \n\nhttps://www.biggerpockets.com/renewsblog/wp-content/uploads/2015/06/questions-lender.jpg\n\nAnother way the lenders justify their subprime lending practices was that they were getting pressure from higher up in the company to lend as much as possible because there was such a demand for the financial products on the markets. This is the old \u201cI was just following orders\u201d excuse, but there truly was heavy pressure from companies onto the brokers to loan as much as they could, or they would find someone else to do it. At the time most mortgage brokers legitimately didn\u2019t think that they were doing something bad. They didn\u2019t try to tank the system, they truly believed that the booming real estate market would be able to cover any losses if someone foreclosed on a property. We found out that this was a horribly wrong assumption eventually which lead to billions in toxic assets on the bank balance sheet worth nothing. Ultimately if you think that the consumer should have been diligent and did the required research before they took the mortgage contract, you might side with the side of the lenders\n\n

The Borrower\u2019s Side of The Argument

\n\nOn the flip side, the borrower\u2019s side of the argument claims that it is a company\u2019s duty to inform the customer and the government\u2019s duty to provide consumer protection so mortgages that were created with a high chance of failure wouldn\u2019t be possible. Borrowers also claim that many of the brokers specifically targeted low income and uneducated applicants so they could get a larger commission. In addition, the extreme leniency of the various types of mortgage products that were being offered at the time, for example not having to even show any income, should have been against the law. While not all brokers were predatory, there were many that were, which did target the low income and uneducated, but at the same time there were many borrowers who knew they couldn\u2019t afford the payments on the house and figured they would just resell it for profit. Consumer protection is a tricky subject , because at what point does it stop becoming protection and start becoming a barrier to entry. For example up until this year only Americans with an income of 250k + or 1,000,000 in assets (disregarding primary residence) were able to invest in private companies, many hedge funds and other investment vehicles, all because of consumer protection. \n\nhttps://activerain-store.s3.amazonaws.com/image_store/uploads/2/5/4/4/3/ar123584050234452.jpg\n\nMany people say that a fool and his money soon part ways and it\u2019s hard to wonder if people who signed into these mortgages would have lost money elsewhere on credit cards or payday loans. I think that the mortgage prices that were way to complex for anyone to even understand should have never been offered, but is it the government\u2019s place to protect a private entity from not offering them? Theoretically in a free market banks should not have offered the products because they were too risky and would have lost them money, but this force did not prevail. Whether or not you agree with the borrower heavily comes down to what degree you think consumer protection should play on your everyday life and how the government should police products. \n\n

Conclusion And Some Of My Thoughts

\n\nLike I said when I started the article I don\u2019t think I find either party solely responsible for the subprime mortgage crisis that occurred. I believe both parties over leveraged themselves and took risks that, in hindsight, were insane. The world market wanted more mortgage prices and people all around the world were willing to pay large amounts for them, so banks and mortgage brokers supplied the demand that was out there. Unfortunately the mortgages they supplied them with were garbage. In this regard I blame the credit rating agencies, whose actual job is to rate them properly , for not doing their job. I also believe that the specific brokers and lenders who were predatory lending were morally wrong, but I\u2019m not so sure that they constitute acting criminally. Maybe under current laws yes, but im someone who does not believe in consumer protection, mostly because I believe that people should be able to spend their money as they see fit on any product they see fit. We see 1000 scams on the internet a day, yet we don\u2019t fall for them because we know they are scams. I think trusting any entity that is making money off you is foolish. Im interested to see what other people here think and why.", + "category": "life", + "children": 31, + "created": "2016-09-14T21:48:51", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "vegetarian", - "live", - "ru", - "food" - ], - "users": [ - "tagira" - ], "image": [ - "http://petroart.ru/art/b/bronikov/img/3.jpg", - "http://www.damex.ru/images/cache/660x495/crop/images%7Ccms-image-000013620.jpg", - "https://media4.giphy.com/media/xcFZrrcaGhbz2/200w.gif", - "http://99px.ru/sstorage/56/2013/07/image_561607131913053649088.gif" + "http://longislandbankruptcyblog.com/wp-content/uploads/2007/11/mortgage-bubble-bursting-by-the-sub-prime-mortgage-meltdown.jpg", + "https://www.biggerpockets.com/renewsblog/wp-content/uploads/2015/06/questions-lender.jpg", + "https://activerain-store.s3.amazonaws.com/image_store/uploads/2/5/4/4/3/ar123584050234452.jpg" + ], + "tags": [ + "life", + "money", + "investing", + "banking", + "" ] }, - "created": "2016-09-15T15:10:00", - "updated": "2016-09-15T15:10:00", - "depth": 0, - "children": 18, - "net_rshares": 57949290153677, - "is_paidout": false, - "payout_at": "2016-09-16T15:36:20", - "payout": 197.701, - "pending_payout_value": "197.701 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 110596898261619, + "payout": 696.13, + "payout_at": "2016-09-21T21:48:51", + "pending_payout_value": "696.130 HBD", + "percent_hbd": 10000, + "permlink": "who-should-we-find-responsible-for-the-subprime-mortgage-lending-crisis", + "post_id": 1247716, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 524 + }, + "title": "Who Should We Find Responsible For The Subprime Mortgage Lending Crisis?", + "updated": "2016-09-14T21:48:51", + "url": "/life/@calaber24p/who-should-we-find-responsible-for-the-subprime-mortgage-lending-crisis" + }, + { "active_votes": [ { - "voter": "barrie", - "rshares": "504195513450" + "rshares": "504195513450", + "voter": "barrie" }, { - "voter": "smooth", - "rshares": "31620913718202" + "rshares": "31620913718202", + "voter": "smooth" }, { - "voter": "badassmother", - "rshares": "1911892676725" + "rshares": "1911892676725", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2052957762572" + "rshares": "2052957762572", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1304415071462" + "rshares": "1304415071462", + "voter": "rossco99" }, { - "voter": "jaewoocho", - "rshares": "22865183550" + "rshares": "22865183550", + "voter": "jaewoocho" }, { - "voter": "steem-id", - "rshares": "226246467529" + "rshares": "226246467529", + "voter": "steem-id" }, { - "voter": "joseph", - "rshares": "1576158798591" + "rshares": "1576158798591", + "voter": "joseph" }, { - "voter": "recursive3", - "rshares": "452786214573" + "rshares": "452786214573", + "voter": "recursive3" }, { - "voter": "masteryoda", - "rshares": "667448946492" + "rshares": "667448946492", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120322518686" + "rshares": "3120322518686", + "voter": "recursive" }, { - "voter": "mineralwasser", - "rshares": "1246183601" + "rshares": "1246183601", + "voter": "mineralwasser" }, { - "voter": "boombastic", - "rshares": "681020986865" + "rshares": "681020986865", + "voter": "boombastic" }, { - "voter": "mrs.agsexplorer", - "rshares": "91328598326" + "rshares": "91328598326", + "voter": "mrs.agsexplorer" }, { - "voter": "bingo-1", - "rshares": "1670010256" + "rshares": "1670010256", + "voter": "bingo-1" }, { - "voter": "smooth.witness", - "rshares": "5939141625779" + "rshares": "5939141625779", + "voter": "smooth.witness" }, { - "voter": "idol", - "rshares": "9167324238" + "rshares": "9167324238", + "voter": "idol" }, { - "voter": "sakr", - "rshares": "5147451513" + "rshares": "5147451513", + "voter": "sakr" }, { - "voter": "jocelyn", - "rshares": "1577927842" + "rshares": "1577927842", + "voter": "jocelyn" }, { - "voter": "acidsun", - "rshares": "83529892028" + "rshares": "83529892028", + "voter": "acidsun" }, { - "voter": "gregory-f", - "rshares": "15004772648" + "rshares": "15004772648", + "voter": "gregory-f" }, { - "voter": "gregory60", - "rshares": "9412699804" + "rshares": "9412699804", + "voter": "gregory60" }, { - "voter": "gavvet", - "rshares": "1221939836170" + "rshares": "1221939836170", + "voter": "gavvet" }, { - "voter": "eeks", - "rshares": "74914418556" + "rshares": "74914418556", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "3023823526" + "rshares": "3023823526", + "voter": "fkn" }, { - "voter": "elishagh1", - "rshares": "3974627163" + "rshares": "3974627163", + "voter": "elishagh1" }, { - "voter": "nanzo-scoop", - "rshares": "584166740800" + "rshares": "584166740800", + "voter": "nanzo-scoop" }, { - "voter": "jeffanthonyfds", - "rshares": "450784780" + "rshares": "450784780", + "voter": "jeffanthonyfds" }, { - "voter": "mummyimperfect", - "rshares": "177394802953" + "rshares": "177394802953", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313689446" + "rshares": "313689446", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106630632039" + "rshares": "106630632039", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061217841" + "rshares": "1061217841", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6230682263" + "rshares": "6230682263", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2057276344" + "rshares": "2057276344", + "voter": "error" }, { - "voter": "cyber", - "rshares": "985521934082" + "rshares": "985521934082", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "61711858916" + "rshares": "61711858916", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "49574865624" + "rshares": "49574865624", + "voter": "ak2020" }, { - "voter": "satoshifund", - "rshares": "769703167086" + "rshares": "769703167086", + "voter": "satoshifund" }, { - "voter": "taoteh1221", - "rshares": "409231996622" + "rshares": "409231996622", + "voter": "taoteh1221" }, { - "voter": "applecrisp", - "rshares": "410502622" + "rshares": "410502622", + "voter": "applecrisp" }, { - "voter": "ratel", - "rshares": "33781859925" + "rshares": "33781859925", + "voter": "ratel" }, { - "voter": "geoffrey", - "rshares": "121380113922" + "rshares": "121380113922", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "26709210609" + "rshares": "26709210609", + "voter": "kimziv" }, { - "voter": "emily-cook", - "rshares": "74282084191" + "rshares": "74282084191", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187587354" + "rshares": "2187587354", + "voter": "superfreek" }, { - "voter": "thebatchman", - "rshares": "19974734600" + "rshares": "19974734600", + "voter": "thebatchman" }, { - "voter": "good-karma", - "rshares": "60285274969" + "rshares": "60285274969", + "voter": "good-karma" }, { - "voter": "gidlark", - "rshares": "1609452901" + "rshares": "1609452901", + "voter": "gidlark" }, { - "voter": "rubybian", - "rshares": "73849034695" + "rshares": "73849034695", + "voter": "rubybian" }, { - "voter": "konstantin", - "rshares": "365381071" + "rshares": "365381071", + "voter": "konstantin" }, { - "voter": "stranger27", - "rshares": "4533066552" + "rshares": "4533066552", + "voter": "stranger27" }, { - "voter": "romel", - "rshares": "2597453094" + "rshares": "2597453094", + "voter": "romel" }, { - "voter": "furion", - "rshares": "14760800618" + "rshares": "14760800618", + "voter": "furion" }, { - "voter": "barbara2", - "rshares": "70822893" + "rshares": "70822893", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "78718732" + "rshares": "78718732", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "72854943" + "rshares": "72854943", + "voter": "doge4lyf" }, { - "voter": "ardina", - "rshares": "248653120" + "rshares": "248653120", + "voter": "ardina" }, { - "voter": "aaseb", - "rshares": "14487949878" + "rshares": "14487949878", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209499465" + "rshares": "4209499465", + "voter": "karen13" }, { - "voter": "deviedev", - "rshares": "10646413479" + "rshares": "10646413479", + "voter": "deviedev" }, { - "voter": "nabilov", - "rshares": "258981906731" + "rshares": "258981906731", + "voter": "nabilov" }, { - "voter": "creemej", - "rshares": "35782810726" + "rshares": "35782810726", + "voter": "creemej" }, { - "voter": "maximkichev", - "rshares": "3800725646" + "rshares": "3800725646", + "voter": "maximkichev" }, { - "voter": "blueorgy", - "rshares": "167301783484" + "rshares": "167301783484", + "voter": "blueorgy" }, { - "voter": "poseidon", - "rshares": "582626783" + "rshares": "582626783", + "voter": "poseidon" }, { - "voter": "iamwne", - "rshares": "2083366228" + "rshares": "2083366228", + "voter": "iamwne" }, { - "voter": "smolalit", - "rshares": "7946556816" + "rshares": "7946556816", + "voter": "smolalit" }, { - "voter": "calaber24p", - "rshares": "347973296817" + "rshares": "347973296817", + "voter": "calaber24p" }, { - "voter": "simon.braki.love", - "rshares": "3506024506" + "rshares": "3506024506", + "voter": "simon.braki.love" }, { - "voter": "liberosist", - "rshares": "268131351853" + "rshares": "268131351853", + "voter": "liberosist" }, { - "voter": "deanliu", - "rshares": "32542201152" + "rshares": "32542201152", + "voter": "deanliu" }, { - "voter": "celsius100", - "rshares": "40247477787" + "rshares": "40247477787", + "voter": "celsius100" }, { - "voter": "jl777", - "rshares": "204615752038" + "rshares": "204615752038", + "voter": "jl777" }, { - "voter": "positive", - "rshares": "2452241013" + "rshares": "2452241013", + "voter": "positive" }, { - "voter": "paquito", - "rshares": "35821871446" + "rshares": "35821871446", + "voter": "paquito" }, { - "voter": "crazymumzysa", - "rshares": "101547003699" + "rshares": "101547003699", + "voter": "crazymumzysa" }, { - "voter": "gustavopasquini", - "rshares": "4827846086" + "rshares": "4827846086", + "voter": "gustavopasquini" }, { - "voter": "carlidos", - "rshares": "18844269406" + "rshares": "18844269406", + "voter": "carlidos" }, { - "voter": "proto", - "rshares": "17267164725" + "rshares": "17267164725", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "4513770870" + "rshares": "4513770870", + "voter": "sisterholics" }, { - "voter": "alex.chien", - "rshares": "1444237397" + "rshares": "1444237397", + "voter": "alex.chien" }, { - "voter": "royalmacro", - "rshares": "8964609699" + "rshares": "8964609699", + "voter": "royalmacro" }, { - "voter": "fnait", - "rshares": "82565168" + "rshares": "82565168", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "73351025" + "rshares": "73351025", + "voter": "keepcalmand" }, { - "voter": "ap2002", - "rshares": "120956823" + "rshares": "120956823", + "voter": "ap2002" }, { - "voter": "taker", - "rshares": "8734053750" + "rshares": "8734053750", + "voter": "taker" }, { - "voter": "laonie", - "rshares": "159615103593" + "rshares": "159615103593", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "157504637007" + "rshares": "157504637007", + "voter": "twinner" }, { - "voter": "laoyao", - "rshares": "24561329465" + "rshares": "24561329465", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "5329392113" + "rshares": "5329392113", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "32400440159" + "rshares": "32400440159", + "voter": "somebody" }, { - "voter": "sunshine", - "rshares": "16605279252" + "rshares": "16605279252", + "voter": "sunshine" }, { - "voter": "flysaga", - "rshares": "1211439463" + "rshares": "1211439463", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "2084689825" + "rshares": "2084689825", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "7157539840" + "rshares": "7157539840", + "voter": "midnightoil" }, { - "voter": "kalimor", - "rshares": "2327843962" + "rshares": "2327843962", + "voter": "kalimor" }, { - "voter": "xiaohui", - "rshares": "17901440239" + "rshares": "17901440239", + "voter": "xiaohui" }, { - "voter": "terrycraft", - "rshares": "172970676828" + "rshares": "172970676828", + "voter": "terrycraft" }, { - "voter": "riosparada", - "rshares": "369703928" + "rshares": "369703928", + "voter": "riosparada" }, { - "voter": "elfkitchen", - "rshares": "808461612" + "rshares": "808461612", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "103387869456" + "rshares": "103387869456", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5855390607" + "rshares": "5855390607", + "voter": "oflyhigh" }, { - "voter": "xiaokongcom", - "rshares": "559689131" + "rshares": "559689131", + "voter": "xiaokongcom" }, { - "voter": "future24", - "rshares": "2114128942" + "rshares": "2114128942", + "voter": "future24" }, { - "voter": "xianjun", - "rshares": "1128227680" + "rshares": "1128227680", + "voter": "xianjun" }, { - "voter": "lgm-1", - "rshares": "7546646500" + "rshares": "7546646500", + "voter": "lgm-1" }, { - "voter": "njall", - "rshares": "2249482011" + "rshares": "2249482011", + "voter": "njall" }, { - "voter": "microluck", - "rshares": "73887203" + "rshares": "73887203", + "voter": "microluck" }, { - "voter": "razberrijam", - "rshares": "75676352" + "rshares": "75676352", + "voter": "razberrijam" }, { - "voter": "userlogin", - "rshares": "6417571438" + "rshares": "6417571438", + "voter": "userlogin" }, { - "voter": "photo00", - "rshares": "59219258" + "rshares": "59219258", + "voter": "photo00" }, { - "voter": "tagira", - "rshares": "604294820" + "rshares": "604294820", + "voter": "tagira" }, { - "voter": "chinadaily", - "rshares": "2077233526" + "rshares": "2077233526", + "voter": "chinadaily" }, { - "voter": "pollina", - "rshares": "110661420" + "rshares": "110661420", + "voter": "pollina" }, { - "voter": "johnnyyash", - "rshares": "9071955992" + "rshares": "9071955992", + "voter": "johnnyyash" }, { - "voter": "macartem", - "rshares": "3352601337" + "rshares": "3352601337", + "voter": "macartem" }, { - "voter": "gvargas123", - "rshares": "9827647000" + "rshares": "9827647000", + "voter": "gvargas123" }, { - "voter": "movievertigo", - "rshares": "3707793427" + "rshares": "3707793427", + "voter": "movievertigo" }, { - "voter": "andrewawerdna", - "rshares": "23716271959" + "rshares": "23716271959", + "voter": "andrewawerdna" }, { - "voter": "craigwilliamz", - "rshares": "9139485521" + "rshares": "9139485521", + "voter": "craigwilliamz" }, { - "voter": "mandibil", - "rshares": "56654664918" + "rshares": "56654664918", + "voter": "mandibil" }, { - "voter": "bonapetit", - "rshares": "60273361" + "rshares": "60273361", + "voter": "bonapetit" }, { - "voter": "steembriefing", - "rshares": "74550672" + "rshares": "74550672", + "voter": "steembriefing" }, { - "voter": "riv", - "rshares": "55750195" + "rshares": "55750195", + "voter": "riv" }, { - "voter": "nulliusinverba", - "rshares": "5401359628" + "rshares": "5401359628", + "voter": "nulliusinverba" }, { - "voter": "runridefly", - "rshares": "2196809758" + "rshares": "2196809758", + "voter": "runridefly" }, { - "voter": "krnel", - "rshares": "33516506660" + "rshares": "33516506660", + "voter": "krnel" }, { - "voter": "richardcrill", - "rshares": "5053551216" + "rshares": "5053551216", + "voter": "richardcrill" }, { - "voter": "sponge-bob", - "rshares": "11070141971" + "rshares": "11070141971", + "voter": "sponge-bob" }, { - "voter": "apparat", - "rshares": "53070013" + "rshares": "53070013", + "voter": "apparat" }, { - "voter": "doitvoluntarily", - "rshares": "12276570645" + "rshares": "12276570645", + "voter": "doitvoluntarily" }, { - "voter": "asksisk", - "rshares": "201688406600" + "rshares": "201688406600", + "voter": "asksisk" }, { - "voter": "panther", - "rshares": "330365849" + "rshares": "330365849", + "voter": "panther" }, { - "voter": "brains", - "rshares": "11067573914" + "rshares": "11067573914", + "voter": "brains" }, { - "voter": "steemafon", - "rshares": "1396726660" + "rshares": "1396726660", + "voter": "steemafon" }, { - "voter": "anton333", - "rshares": "3310976095" + "rshares": "3310976095", + "voter": "anton333" }, { - "voter": "anomaly", - "rshares": "339274981" + "rshares": "339274981", + "voter": "anomaly" }, { - "voter": "ola1", - "rshares": "123155378" + "rshares": "123155378", + "voter": "ola1" }, { - "voter": "mari5555na", - "rshares": "70282046" + "rshares": "70282046", + "voter": "mari5555na" }, { - "voter": "ekaterina4ka", - "rshares": "6087022243" + "rshares": "6087022243", + "voter": "ekaterina4ka" }, { - "voter": "thefinanceguy", - "rshares": "291933324" + "rshares": "291933324", + "voter": "thefinanceguy" }, { - "voter": "battalar", - "rshares": "50223099" + "rshares": "50223099", + "voter": "battalar" }, { - "voter": "palladium", - "rshares": "50873654" + "rshares": "50873654", + "voter": "palladium" }, { - "voter": "autodesk", - "rshares": "50794039" + "rshares": "50794039", + "voter": "autodesk" }, { - "voter": "penthouse", - "rshares": "50565798" + "rshares": "50565798", + "voter": "penthouse" }, { - "voter": "bapparabi", - "rshares": "2216805889" + "rshares": "2216805889", + "voter": "bapparabi" }, { - "voter": "friends", - "rshares": "50532230" + "rshares": "50532230", + "voter": "friends" }, { - "voter": "iontom", - "rshares": "469221474" + "rshares": "469221474", + "voter": "iontom" }, { - "voter": "connection", - "rshares": "50482289" + "rshares": "50482289", + "voter": "connection" }, { - "voter": "witchcraftblog", - "rshares": "444435987" + "rshares": "444435987", + "voter": "witchcraftblog" }, { - "voter": "gravity", - "rshares": "157816798" + "rshares": "157816798", + "voter": "gravity" }, { - "voter": "realtime", - "rshares": "160957729" + "rshares": "160957729", + "voter": "realtime" }, { - "voter": "skrillex", - "rshares": "160835930" + "rshares": "160835930", + "voter": "skrillex" }, { - "voter": "food-creator", - "rshares": "148889617" + "rshares": "148889617", + "voter": "food-creator" }, { - "voter": "haribo", - "rshares": "156814579" + "rshares": "156814579", + "voter": "haribo" }, { - "voter": "tipsandtricks", - "rshares": "159425365" + "rshares": "159425365", + "voter": "tipsandtricks" }, { - "voter": "fallout", - "rshares": "156054487" + "rshares": "156054487", + "voter": "fallout" }, { - "voter": "reef", - "rshares": "159143891" + "rshares": "159143891", + "voter": "reef" }, { - "voter": "icesteem", - "rshares": "155528114" + "rshares": "155528114", + "voter": "icesteem" }, { - "voter": "cream", - "rshares": "158632601" + "rshares": "158632601", + "voter": "cream" }, { - "voter": "jyriygo", - "rshares": "155452864" + "rshares": "155452864", + "voter": "jyriygo" } ], + "author": "terrycraft", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 161, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/vegetarian/@terrycraft/vegetarianism-is-philosophy-which-has-deep-religious-and-ethical-roots-my-way-vegetarianstvo-moi-put-featuring-tagira-as-author", - "blacklists": [] - }, - { - "post_id": 950898, - "author": "fairytalelife", - "permlink": "the-prison-of-depression", - "category": "health", - "title": "The Prison of Depression", - "body": "\n

\n

Do you want to know what depression feels like? 

\n

Think of a foggy grey muck that encircles you head to toe. Severe depression strips you from being able to experience any joy in life, even when for all the world it appears you have everything going for you.   Watered down commentaries attempt to describe the soul rotting misery of waking up in darkness every day. Who are those who can bolt out of bed ready to face the day with their happy attitudes about life? I don’t know. I’ve never been one. I dread waking up. One of the things really depressed people look forward to is a respite from consciousness. This is why those who suffer tend to sleep so much. It’s escapism. Yet it isn’t, because even in sleep you can be terrorized by your daytime demons. The quality of sleep is not restful – in fact, rather fitful. This is one reason so many people take mind-numbing tranquilizers to dull their wakeful state just to be able to drift away to somewhere, anywhere else than the dangerous and unchecked arena of the mind.    

\n

People experience the tiers of depression's challenges in different ways. It’s not being disappointed or being in a bad mood if something doesn’t pan out in your favor. You chipped you manicure? Bugger. Irritating, yes, but it’s not the end of the world. For a depressed person,  something minor (for whatever reason) can hurl you head first into a bottomless void of regret and agony. You associate daily life with walking through a minefield. Danger lurks with every step. That ad for an antidepressant that shows a cartoon figure walking around under her own cloud of rain sums up the feeling quite well (of course it does – sponsored by The Pharmaceutical Cartel). You NEED this drug to function. That’s another post, and I know far too well how drugs are touted as the magic solution. Not even children are safe from their campaigns.

\n

\n

It’s the ultimate mind-fuck factory, this thought prison that leads you through Dante’s circles of hell as you try to scramble your way out of the snake pit. The thoughts pull you back in by your ankles. Like a horror movie, the entity of depression knows what scares you. It knows what makes you wail in despair. It knows your saddest thoughts and flashes those across the movie screen in your head in incessant reruns. You are a spectator, but unable to avert your eyes.   

\n

You have things to do? Most can buck up and get 'er done. A very depressed person knows what must be done yet can’t do it. Cannot. It’s not possible. It has nothing to do with laziness and everything to do with apathy. The effort isn’t worth it. You know you will feel better if such and such gets done. So the obvious solution is to do it. You have errands to run? Get in the car and go. But for a depressed person, the mundane becomes detestable to such an extent that not even the guilt for not doing the things is unable to motivate you enough to accomplish what is impossible in your mind.   

\n

\n

Once while touring Alcatraz, I was struck by something the tour guide told us. The island is positioned in just the right way that all the prisoners could smell the Ghirardelli chocolate factory wafting its chocolate scent across the bay, no doubt driving inmates insane. This is much like depression. You are stuck in a jail cell knowing everyone else is living happily while you miss out on what you know (on some level) is a gift – life itself. You can only observe from afar.    

\n

You know those days when you feel like a sloth and nothing gets done? For many depressed people that’s every day. By getting nothing done I don’t mean cleaning out the refrigerator or reading a book your friend needs back. I mean responsibilities you must accept as an adult, as a parent. You can’t function. Your kids are hungry, but you can’t do anything about it because you can’t move. You have an empty stare and wonder if it’s too early for a drink. It’s only one in the afternoon. Can it be justified?    

\n

And you can’t stop seeing those stories about the Yulin dog meat festival. This is horrible because an animal suffering is the worst thing in the world to me. Or those commercials by the SPCA. The thoughts hit hard, bating me. “Uh oh! She’s making some progress – what is she sad about? Let’s infect.” Self-sabotage is the name of the game. For a depressed person, thoughts take over and pollute your whole mind.   

\n

You hope you will feel better tomorrow, or someday. You keep saying someday. But that wastes away today. You hide from friends and family because the idea of faking a smile is akin to torture. And you think no one cares about your problems. Or they are tired of hearing about them because they are always the same.   Your brain is wired differently. Some of the most creative genius comes from a desolate mental state. It can, but only If you can get any mental energy together to be productive.   

\n

Your friends email you cures for migraines. You have had to invent numerous excuses that involve having them, because that’s a reasonable excuse to cancel plans. Saying you’re sad or not in the mood will get “I’ll cheer you up” from well-meaning friends and family. But you want to be alone, completely isolated, in bed, with the covers pulled up over your head. And you want to cry. And I don’t mean a few tears. I mean heart-wrenching sobs that no one would want to hear.   

\n

You yell at people you love. You cry easily. They can’t help you but they can sure piss you off. And we are pissed at ourselves, because children have needs that must be met -no question about it. And you know are letting them down with your suffering. Another blow.   We do not feel sorry for ourselves in the traditional sense. We do feel sorry that we can’t get a grip as we are often told to do. We feel guilty for letting others down who matter as they stand by helpless, completely befuddled about their roles in all of this. They feel responsible You want to convey it’s not them or their fault, but they start to not believe you. It’s no one’s fault. It simply is.   

\n

Some days are easier than others. I often do well when the stars align - deceptively so, or maybe not deceptive. Maybe I am getting a handle on this curse. It’s a constant roller coaster of wondering when the happy cart will upturn and everything you manage to put in there (composure, self-esteem, productivity) scatters across the road. And cars are coming, but you have to try to summon up the ability to put them back in and continue on your journey. It’s like you are that one slow car on a hill that everyone zips past because they don’t carry the burden of your load.   

\n

Is life a beautiful thing? Yes. It is. Is it filled with sadness? Yes to that too. Can a depressed person overcome depression? I think so. But in order to answer that, you must be willing to look at your origins to discover what might be holding you back.         

\n

\n

Drawings and painting © Johanna Westerman 2016  

\n


\n", + "blacklists": [], + "body": "Vegetarianism is philosophy which has deep religious and ethical roots, the essence is the refuse to eat meat of living beings.\nPythagorean were vegetarians. Yogis of ancient India were vegetarians. The followers of Buddhism are prescribed to be vegetarians. Early Christianity forbade killing for food.\nI became a vegetarian at the age of 15. I remember clear this comic occasion: during another lush family dinner my dad putted the shin of the roasted goose on my plate. When he was putting this piece of once living bird, I claimed it for the first time: \u201cNo, dad thanks. I don\u2019t eat living creatures anymore. I\u2019m a vegetarian\u201d.\nhttp://petroart.ru/art/b/bronikov/img/3.jpg\n>\u0412\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0441\u0442\u0432\u043e - \u044d\u0442\u043e \u0444\u0438\u043b\u043e\u0441\u043e\u0444\u0438\u044f, \u0438\u043c\u0435\u044e\u0449\u0430\u044f \u043e\u0447\u0435\u043d\u044c \u0434\u0440\u0435\u0432\u043d\u0438\u0435 \u0440\u0435\u043b\u0438\u0433\u0438\u043e\u0437\u043d\u044b\u0435 \u0438 \u044d\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043a\u043e\u0440\u043d\u0438, \u0441\u0443\u0442\u044c \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0441\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043e\u0442\u043a\u0430\u0437 \u043e\u0442 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u043b\u0435\u043d\u0438\u044f \u0432 \u043f\u0438\u0449\u0443 \u043c\u044f\u0441\u0430 \u0436\u0438\u0432\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432. \n\u041f\u0438\u0444\u0430\u0433\u043e\u0440\u0435\u0439\u0446\u044b \u0431\u044b\u043b\u0438 \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0446\u0430\u043c\u0438. \u0419\u043e\u0433\u0438 \u0434\u0440\u0435\u0432\u043d\u0435\u0439 \u0418\u043d\u0434\u0438\u0438 \u0431\u044b\u043b\u0438 \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0446\u0430\u043c\u0438. \u0411\u0443\u0434\u0434\u0438\u0437\u043c \u043f\u0440\u0435\u0434\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u0442 \u0441\u0432\u043e\u0438\u043c \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0441\u0442\u0432\u043e. \u0420\u0430\u043d\u043d\u0435\u0435 \u0445\u0440\u0438\u0441\u0442\u0438\u0430\u043d\u0441\u0442\u0432\u043e \u0437\u0430\u043f\u0440\u0435\u0449\u0430\u043b\u043e \u0443\u0431\u0438\u0439\u0441\u0442\u0432\u043e \u0434\u043b\u044f \u0447\u0440\u0435\u0432\u0430.\n\u042f \u0441\u0442\u0430\u043b\u0430 \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u043e\u0439 \u0432 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0435 15 \u043b\u0435\u0442. \u041f\u0440\u0435\u043a\u0440\u0430\u0441\u043d\u043e \u043f\u043e\u043c\u043d\u044e \u044d\u0442\u043e\u0442 \u043a\u043e\u043c\u0438\u0447\u043d\u044b\u0439 \u0441\u043b\u0443\u0447\u0430\u0439: \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0433\u043e \u043f\u044b\u0448\u043d\u043e\u0433\u043e \u0441\u0435\u043c\u0435\u0439\u043d\u043e\u0433\u043e \u0443\u0436\u0438\u043d\u0430 \u043f\u0430\u043f\u0430 \u0432\u044b\u0437\u0432\u0430\u043b\u0441\u044f \u043f\u043e\u043b\u043e\u0436\u0438\u0442\u044c \u043c\u043d\u0435 \u0432 \u0442\u0430\u0440\u0435\u043b\u043a\u0443 \u0433\u043e\u043b\u0435\u043d\u044c \u0437\u0430\u043f\u0435\u0447\u0451\u043d\u043d\u043e\u0433\u043e \u0432 \u0434\u0443\u0445\u043e\u0432\u043a\u0435 \u0433\u0443\u0441\u044f. \u0412 \u0442\u043e \u0432\u0440\u0435\u043c\u044f \u043a\u0430\u043a \u043e\u043d \u0443\u0436\u0435 \u0432\u0437\u0432\u0430\u043b\u0438\u0432\u0430\u043b \u0432 \u043c\u043e\u044e \u0442\u0430\u0440\u0435\u043b\u043a\u0443 \u043a\u0443\u0441\u043e\u043a \u043d\u0435\u043a\u043e\u0433\u0434\u0430 \u0436\u0438\u0432\u043e\u0439 \u043f\u0442\u0438\u0446\u044b, \u044f \u0432\u043f\u0435\u0440\u0432\u044b\u0435 \u0437\u0430\u044f\u0432\u0438\u043b\u0430 \u0432\u043e \u0432\u0441\u0435\u0443\u0441\u043b\u044b\u0448\u0430\u043d\u0438\u0435:\"\u041d\u0435\u0442, \u043f\u0430\u043f\u0430, \u043d\u0435 \u043d\u0443\u0436\u043d\u043e. \u042f \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0435\u043c \u0436\u0438\u0432\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432. \u042f \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u0430.\"\n----\nI was a teenager at that time, my parents didn\u2019t treat it seriously, considering it as a teenage whim, didn\u2019t understand me, and for sure, didn\u2019t support me. Though they didn\u2019t object it, thinking that it would pass in a few months. But it wasn\u2019t a whim; it was my first serious and conscious decision in my life. They stopped ostracizing me only in a year after, during that year I experienced, at the example of a family as a social group, what it\u2019s like to have your personal opinion when the majority is against you!\nWhat did cause my decision to become a vegetarian?\nI can\u2019t remember the particular event, which marked the switch of my mind to conscious nutrition without harm to living beings. It seemed that I did it easily because I\u2019d been moving to it and at the certain moment I was morally ready to do the step. For example I remember when I was just a kid, at the age of 5 or 6, I was playing in our garden, thinking: \u201cWhy should I kill to keep on living?\u201d I didn\u2019t ask anybody about it, because I felt that I wouldn\u2019t get the proper answer from adults. This question gave me no rest; I often tried to solve this dilemma reasoning from how my childish heart perceived the world, which opposed all violence and evil. Understanding that this faceless, usually tasty grilled chicken used to be a living being, which had been born, had been a little chick, it was eating and enjoying life and then it was beheaded killed to make me think that I like eating fried chicken legs; it led me to the ideological confusion. I loved every animal, considered them as friends; on the one hand I saw people keeping pets and treating them as family members. On the other hand people killed an animal to have something tasty on their dinner table. And so did I, I was sitting and eating that grilled chicken.\n\nhttp://www.damex.ru/images/cache/660x495/crop/images%7Ccms-image-000013620.jpg\n\n>\u0422\u043e\u0433\u0434\u0430 \u044f \u0431\u044b\u043b\u0430 \u043f\u043e\u0434\u0440\u043e\u0441\u0442\u043a\u043e\u043c, \u0438 \u043c\u043e\u0438 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u0438 \u043d\u0435 \u043e\u0442\u043d\u0435\u0441\u043b\u0438\u0441\u044c \u043a\u043e \u043c\u043d\u0435 \u0441\u0435\u0440\u044c\u0451\u0437\u043d\u043e, \u043f\u043e\u0441\u0447\u0438\u0442\u0430\u0432 \u044d\u0442\u043e \u043f\u043e\u0434\u0440\u043e\u0441\u0442\u043a\u043e\u0432\u043e\u0439 \u043f\u0440\u0438\u0447\u0443\u0434\u043e\u0439, \u043d\u0435 \u043f\u043e\u043d\u044f\u043b\u0438 \u043c\u0435\u043d\u044f \u0438, \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e, \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0430\u043b\u0438. \u041d\u043e \u043d\u0435 \u0441\u0442\u0430\u043b\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0432\u043e\u0437\u0440\u0430\u0436\u0430\u0442\u044c, \u0434\u0443\u043c\u0430\u044f, \u0447\u0442\u043e \u0447\u0435\u0440\u0435\u0437 \u043f\u0430\u0440\u0443-\u0442\u0440\u043e\u0439\u043a\u0443 \u043c\u0435\u0441\u044f\u0446\u0435\u0432 \u044d\u0442\u043e \u043f\u0440\u043e\u0439\u0434\u0451\u0442. \u041d\u043e \u044d\u0442\u043e \u043d\u0435 \u0431\u044b\u043b\u043e \u043f\u0440\u0438\u0447\u0443\u0434\u043e\u0439, \u044d\u0442\u043e \u0431\u044b\u043b\u043e \u043f\u0435\u0440\u0432\u044b\u043c \u0441\u0435\u0440\u044c\u0451\u0437\u043d\u044b\u043c \u0438 \u043e\u0441\u043e\u0437\u043d\u0430\u043d\u043d\u044b\u043c \u0440\u0435\u0448\u0435\u043d\u0438\u0435\u043c \u0432 \u043c\u043e\u0435\u0439 \u0436\u0438\u0437\u043d\u0438. \u0422\u043e\u043b\u044c\u043a\u043e \u0441\u043f\u0443\u0441\u0442\u044f \u0433\u043e\u0434 \u043e\u043d\u0438 \u043f\u0435\u0440\u0435\u0441\u0442\u0430\u043b\u0438 \u043f\u043e\u0434\u0432\u0435\u0440\u0433\u0430\u0442\u044c \u043c\u0435\u043d\u044f \u0441\u0435\u043c\u0435\u0439\u043d\u043e\u043c\u0443 \u043e\u0441\u0442\u0440\u0430\u043a\u0438\u0437\u043c\u0443, \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u044f \u0445\u043e\u0440\u043e\u0448\u043e \u043f\u0440\u043e\u0447\u0443\u0432\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0430 \u043d\u0430 \u043f\u0440\u0438\u043c\u0435\u0440\u0435 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \"\u0441\u0435\u043c\u044c\u044f\", \u0447\u0442\u043e \u0442\u0430\u043a\u043e\u0435 \u0438\u043c\u0435\u0442\u044c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u043c\u043d\u0435\u043d\u0438\u0435, \u043a\u043e\u0433\u0434\u0430 \u0431\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u043e \u043f\u0440\u043e\u0442\u0438\u0432 \u0442\u0435\u0431\u044f!\n\u0427\u0435\u043c \u0431\u044b\u043b\u043e \u0432\u044b\u0437\u0432\u0430\u043d\u043e \u043c\u043e\u0451 \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u0442\u044c \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u043e\u0439?\n\u042f \u043d\u0435 \u043c\u043e\u0433\u0443 \u0432\u0441\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e\u0433\u043e \u0441\u043e\u0431\u044b\u0442\u0438\u044f, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0431\u044b \u043e\u0437\u043d\u0430\u043c\u0435\u043d\u043e\u0432\u0430\u043b\u043e \u0440\u0435\u0437\u043a\u0438\u0439 \u0441\u0434\u0432\u0438\u0433 \u043c\u043e\u0435\u0433\u043e \u0441\u043e\u0437\u043d\u0430\u043d\u0438\u044f \u0438 \u043f\u0435\u0440\u0435\u0445\u043e\u0434 \u043d\u0430 \u043e\u0441\u043e\u0437\u043d\u0430\u043d\u043d\u043e\u0435 \u043f\u0438\u0442\u0430\u043d\u0438\u0435 \u0431\u0435\u0437 \u0432\u0440\u0435\u0434\u0430 \u0434\u043b\u044f \u0436\u0438\u0432\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432. \u041c\u043d\u0435 \u0434\u0430\u0436\u0435 \u043a\u0430\u0436\u0435\u0442\u0441\u044f, \u0447\u0442\u043e \u044d\u0442\u043e \u043f\u0440\u043e\u0448\u043b\u043e \u0442\u0430\u043a \u043b\u0435\u0433\u043a\u043e \u0438 \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0438\u043c\u0435\u043d\u043d\u043e \u043f\u043e\u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u044f \u0443\u0436\u0435 \u0434\u0430\u0432\u043d\u043e \u0448\u043b\u0430 \u043a \u044d\u0442\u043e\u043c\u0443 \u0438 \u0432 \u043a\u0430\u043a\u043e\u0439-\u0442\u043e \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u0440\u043e\u0441\u0442\u043e \u043c\u043e\u0440\u0430\u043b\u044c\u043d\u043e \u0441\u043e\u0437\u0440\u0435\u043b\u0430 \u0434\u043b\u044f \u0442\u0430\u043a\u043e\u0433\u043e \u0448\u0430\u0433\u0430. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043f\u043e\u043c\u043d\u044e, \u043a\u0430\u043a \u0435\u0449\u0451 \u0431\u0443\u0434\u0443\u0447\u0438 \u0441\u043e\u0432\u0441\u0435\u043c \u0440\u0435\u0431\u0451\u043d\u043a\u043e\u043c, \u043b\u0435\u0442 \u044d\u0442\u0430\u043a \u0432 \u043f\u044f\u0442\u044c-\u0448\u0435\u0441\u0442\u044c, \u044f \u0438\u0433\u0440\u0430\u043b\u0430 \u0432 \u043d\u0430\u0448\u0435\u043c \u043e\u0433\u043e\u0440\u043e\u0434\u0435 \u0438 \u0434\u0443\u043c\u0430\u043b\u0430:\"\u0410 \u043f\u043e\u0447\u0435\u043c\u0443, \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0436\u0438\u0442\u044c, \u044f \u0434\u043e\u043b\u0436\u043d\u0430 \u0443\u0431\u0438\u0432\u0430\u0442\u044c?\" \u042f \u043d\u0438\u043a\u043e\u0433\u043e \u043d\u0435 \u0441\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u043b\u0430 \u043e\u0431 \u044d\u0442\u043e\u043c, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e \u044f\u0441\u043d\u043e \u0447\u0443\u0432\u0441\u0442\u0432\u043e\u0432\u0430\u043b\u0430, \u0447\u0442\u043e \u043d\u0438\u043a\u0442\u043e \u0438\u0437 \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445 \u043d\u0435 \u0432 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0438 \u043e\u0442\u0432\u0435\u0442\u0438\u0442\u044c \u043c\u043d\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e. \u042d\u0442\u043e\u0442 \u0432\u043e\u043f\u0440\u043e\u0441 \u043d\u0435 \u0434\u0430\u0432\u0430\u043b \u043c\u043d\u0435 \u043f\u043e\u043a\u043e\u044f, \u044f \u0447\u0430\u0441\u0442\u043e \u043f\u044b\u0442\u0430\u043b\u0430\u0441\u044c \u0440\u0435\u0448\u0438\u0442\u044c \u044d\u0442\u0443 \u0434\u0438\u043b\u0435\u043c\u043c\u0443, \u0438\u0441\u0445\u043e\u0434\u044f \u0438\u0437 \u0432\u043e\u0441\u043f\u0440\u0438\u044f\u0442\u0438\u044f \u043c\u0438\u0440\u0430 \u0441\u0435\u0440\u0434\u0446\u0435\u043c \u0440\u0435\u0431\u0451\u043d\u043a\u0430, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043f\u0440\u043e\u0442\u0438\u0432\u0438\u0442\u0441\u044f \u0432\u0441\u044f\u043a\u043e\u043c\u0443 \u043d\u0430\u0441\u0438\u043b\u0438\u044e \u0438 \u0437\u043b\u0443 \u043f\u043e \u0441\u0430\u043c\u043e\u0439 \u0441\u0432\u043e\u0435\u0439 \u043f\u0440\u0438\u0440\u043e\u0434\u0435. \u041f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0435, \u0447\u0442\u043e \u044d\u0442\u0430 \u0431\u0435\u0437\u043b\u0438\u043a\u0430\u044f, \u043f\u0440\u0438\u0432\u044b\u0447\u043d\u043e \u0432\u043a\u0443\u0441\u043d\u0430\u044f \"\u043a\u0443\u0440\u0438\u0446\u0430-\u0433\u0440\u0438\u043b\u044c\" \u0431\u044b\u043b\u0430 \u0436\u0438\u0432\u044b\u043c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043e\u043c, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043a\u043e\u0433\u0434\u0430-\u0442\u043e \u0431\u044b\u043b\u043e \u0440\u043e\u0436\u0434\u0435\u043d\u043e, \u0440\u043e\u0441\u043b\u043e \u043c\u0430\u043b\u0435\u043d\u044c\u043a\u0438\u043c \u0446\u044b\u043f\u043b\u0451\u043d\u043a\u043e\u043c, \u043a\u0443\u0448\u0430\u043b\u043e \u0438 \u043f\u043e-\u0441\u0432\u043e\u0435\u043c\u0443 \u0440\u0430\u0434\u043e\u0432\u0430\u043b\u043e\u0441\u044c \u0436\u0438\u0437\u043d\u0438, \u0430 \u0442\u0435\u043f\u0435\u0440\u044c \u043e\u0431\u0435\u0437\u0433\u043b\u0430\u0432\u043b\u0435\u043d\u043e, \u0443\u0431\u0438\u0442\u043e, \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u044f \u0434\u0443\u043c\u0430\u043b\u0430, \u043a\u0430\u043a \u044f \u043b\u044e\u0431\u043b\u044e \u043a\u0443\u0448\u0430\u0442\u044c \u0436\u0430\u0440\u0435\u043d\u044b\u0435 \u043d\u043e\u0436\u043a\u0438 \u044d\u0442\u043e\u0439 \u043a\u0443\u0440\u043e\u0447\u043a\u0438, \u043f\u0440\u0438\u0432\u043e\u0434\u0438\u043b\u043e \u043c\u0435\u043d\u044f \u0432 \u0438\u0434\u0435\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0437\u0430\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e. \u042f \u043e\u0447\u0435\u043d\u044c \u043b\u044e\u0431\u0438\u043b\u0430 \u0432\u0441\u0435\u0445 \u0436\u0438\u0432\u043e\u0442\u043d\u044b\u0445, \u0441\u0447\u0438\u0442\u0430\u043b\u0430 \u0438\u0445 \u0441\u0432\u043e\u0438\u043c\u0438 \u0434\u0440\u0443\u0437\u044c\u044f\u043c\u0438, \u0432\u0438\u0434\u0435\u043b\u0430, \u043a\u0430\u043a \u043b\u044e\u0434\u0438 \u0437\u0430\u0432\u043e\u0434\u044f\u0442 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0434\u043e\u043c\u0430\u0448\u043d\u0438\u0445 \u043b\u044e\u0431\u0438\u043c\u0446\u0435\u0432 \u043a\u0430\u043a \u0447\u043b\u0435\u043d\u043e\u0432 \u0441\u0435\u043c\u044c\u0438. \u0418 \u0442\u0443\u0442 \u0436\u0435 \u0441 \u0434\u0440\u0443\u0433\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u043b\u044e\u0434\u0438 \u0443\u0431\u0438\u0432\u0430\u044e\u0442 \u0436\u0438\u0432\u043e\u0442\u043d\u043e\u0435, \u0447\u0442\u043e\u0431\u044b \u0431\u044b\u043b\u043e \u0447\u0442\u043e \u0432\u043a\u0443\u0441\u043d\u043e\u0435 \u043f\u043e\u043a\u0443\u0448\u0430\u0442\u044c \u043d\u0430 \u0441\u0442\u043e\u043b\u0435. \u0418 \u0432\u043e\u0442 \u044f \u0442\u043e\u0436\u0435 \u0441\u0438\u0436\u0443 \u0438 \u0435\u043c \u044d\u0442\u0443 \u043a\u0443\u0440\u0438\u0446\u0443-\u0433\u0440\u0438\u043b\u044c. \n-----\nBut seeing that adults didn\u2019t care about it, I as any other child didn\u2019t oppose myself to parents and others; I just assimilate all the manners and customs, equaling to those who seemed to be older and wiser.\nI was growing up and parents\u2019 influence and influence of other unquestioned authorities subsided, I got my personal space in my mind and there was my personal opinion on the questions in it. At the age of 15, the formation of my personality reached the level where issues of life turned into beliefs and beliefs \u2013 into actions. I remembered that childish dilemma in a new perspective, and to the question: \u201cWhy should I kill to keep on living?\u201d I answered: \u201cNO, I SHOULD NOT\u201d\nSince then I\u2019m a vegetarian, it\u2019s been 5 years already.\nhttps://media4.giphy.com/media/xcFZrrcaGhbz2/200w.gif\n>\u041d\u043e \u0432\u0438\u0434\u044f, \u0447\u0442\u043e \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445 \u044d\u0442\u043e \u043d\u0435 \u0437\u0430\u0431\u043e\u0442\u0438\u0442, \u044f, \u043a\u0430\u043a \u043b\u044e\u0431\u043e\u0439 \u0440\u0435\u0431\u0451\u043d\u043e\u043a, \u043d\u0435 \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u043b\u0430 \u0441\u0435\u0431\u044f \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044f\u043c \u0438 \u0432\u0441\u0435\u043c \u0434\u0440\u0443\u0433\u0438\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u0432\u043f\u0438\u0442\u044b\u0432\u0430\u043b\u0430 \u0432\u0441\u0435 \u043d\u0440\u0430\u0432\u044b \u0438 \u043e\u0431\u044b\u0447\u0430\u0438, \u0440\u0430\u0432\u043d\u044f\u044f\u0441\u044c \u043d\u0430 \u0442\u0435\u0445, \u043a\u043e\u0433\u043e \u0441\u0447\u0438\u0442\u0430\u043b\u0430 \u0441\u0442\u0430\u0440\u0448\u0435 \u0438 \u043c\u0443\u0434\u0440\u0435\u0435.\n\u042f \u0440\u043e\u0441\u043b\u0430, \u0438 \u043f\u043e\u0441\u0442\u0435\u043f\u0435\u043d\u043d\u043e \u0432\u043b\u0438\u044f\u043d\u0438\u0435 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u0435\u0439 \u0438 \u043f\u0440\u043e\u0447\u0438\u0445 \u043d\u0435\u043f\u0440\u0435\u0440\u0435\u043a\u0430\u0435\u043c\u044b\u0445 \u0430\u0432\u0442\u043e\u0440\u0438\u0442\u0435\u0442\u043e\u0432 \u0441\u043f\u0430\u0434\u0430\u043b\u043e, \u0443 \u043c\u0435\u043d\u044f \u043f\u043e\u044f\u0432\u043b\u044f\u043b\u043e\u0441\u044c \u043b\u0438\u0447\u043d\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0432 \u0440\u0430\u0437\u0443\u043c\u0435 \u0438 \u0432 \u043d\u0451\u043c \u0437\u0430\u0440\u043e\u0436\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0435 \u0432\u043e\u043f\u0440\u043e\u0441\u044b. \u0418 \u0432 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0435 15 \u043b\u0435\u0442 \u0441\u0442\u0435\u043f\u0435\u043d\u044c \u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u043e\u0435\u0439 \u043b\u0438\u0447\u043d\u043e\u0441\u0442\u0438 \u0434\u043e\u0441\u0442\u0438\u0433\u043b\u0430 \u0442\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f, \u043a\u043e\u0433\u0434\u0430 \u0432\u043e\u043f\u0440\u043e\u0441\u044b \u043a \u0436\u0438\u0437\u043d\u0438 \u043f\u0440\u0435\u0432\u0440\u0430\u0442\u0438\u043b\u0438\u0441\u044c \u0432 \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u044f, \u0430 \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u044f - \u0432 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f. \u042f \u0432\u0441\u043f\u043e\u043c\u043d\u0438\u043b\u0430 \u043e \u0442\u043e\u0439 \u0434\u0435\u0442\u0441\u043a\u043e\u0439 \u0434\u0438\u043b\u0435\u043c\u043c\u0435 \u0432 \u043d\u043e\u0432\u043e\u043c \u0441\u0432\u0435\u0442\u0435, \u0438 \u043d\u0430 \u0432\u043e\u043f\u0440\u043e\u0441:\"\u041f\u043e\u0447\u0435\u043c\u0443, \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0436\u0438\u0442\u044c, \u044f \u0434\u043e\u043b\u0436\u043d\u0430 \u0443\u0431\u0438\u0432\u0430\u0442\u044c?\" \u044f \u043e\u0442\u0432\u0435\u0442\u0438\u043b\u0430 \u0441\u0435\u0431\u0435 - \"\u041d\u0415 \u0414\u041e\u041b\u0416\u041d\u0410.\" \n\u0421 \u0442\u0435\u0445 \u043f\u043e\u0440 \u044f \u0432\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u043a\u0430, \u043f\u0440\u043e\u0448\u043b\u043e \u0443\u0436\u0435 \u043f\u044f\u0442\u044c \u043b\u0435\u0442. \n---\nIt\u2019s great happiness to live according to you beliefs without betraying them for the sake of the public opinion, to live in accordance with your conscience and moral purity. I\u2019d like more people to think about what they eat and do it consciously, how inhumane it is to feed on flesh of killed creatures.\nAs it is written in the Gospel of the Essenes: \"It was said to them of old time, 'Honor thy Heavenly Father and thy Earthly Mother, and do their commandments, that thy days may be long upon the earth.' And next afterward was given this commandment, 'Thou shalt not kill,' for life is given to all by God, and that which God has given, let not man take away. For-I tell you truly, from one Mother proceeds all that lives upon the earth. Therefore, he who kills, kills his brother. And from him will the Earthly Mother turn away, and will pluck from him her quickening breasts. And he will be shunned by her angels, and Satan will have his dwelling in his body. And the flesh of slain beasts in his body will become his own tomb. For I tell you truly, he who kills, kills himself, and whoso eats the flesh of slain beasts, eats of the body of death. For in his blood every drop of their blood turns to poison; in his breath their breath to stink; in his flesh their flesh to boils; in his bones their bones to chalk; in his bowels their bowels t o decay; in his eyes their eyes to scales; in his ears their ears to waxy issue. And their death will become his death\u201d\nhttp://99px.ru/sstorage/56/2013/07/image_561607131913053649088.gif\n>\u042d\u0442\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u0435 \u0441\u0447\u0430\u0441\u0442\u044c\u0435 - \u0436\u0438\u0442\u044c, \u0441\u043e\u0433\u043b\u0430\u0441\u043d\u043e \u0441\u0432\u043e\u0438\u043c \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u044f\u043c, \u043d\u0435 \u043f\u0440\u0435\u0434\u0430\u0432\u0430\u044f \u0438\u0445 \u0432 \u0443\u0433\u043e\u0434\u0443 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u043c\u0443 \u043c\u043d\u0435\u043d\u0438\u044e, \u0436\u0438\u0442\u044c - \u0432 \u0441\u043e\u0433\u043b\u0430\u0441\u0438\u0438 \u0441\u043e \u0441\u0432\u043e\u0435\u0439 \u0441\u043e\u0432\u0435\u0441\u0442\u044c\u044e \u0438 \u043d\u0440\u0430\u0432\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u0447\u0438\u0441\u0442\u043e\u0442\u043e\u0439. \u042f \u0445\u043e\u0447\u0443, \u0447\u0442\u043e\u0431\u044b \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435 \u043b\u044e\u0434\u0435\u0439 \u0437\u0430\u0434\u0443\u043c\u0430\u043b\u043e\u0441\u044c \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u043e\u043d\u0438 \u0435\u0434\u044f\u0442, \u0438 \u043e\u0441\u043e\u0437\u043d\u0430\u043b\u043e, \u043a\u0430\u043a \u043d\u0435\u0433\u0443\u043c\u0430\u043d\u043d\u043e \u043f\u0438\u0442\u0430\u0442\u044c\u0441\u044f \u043f\u043b\u043e\u0442\u044c\u044e \u0443\u0431\u0438\u0442\u044b\u0445 \u0441\u0443\u0449\u0435\u0441\u0442\u0432.\n\u041a\u0430\u043a \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u043e \u0432 \u0415\u0432\u0430\u043d\u0433\u0435\u043b\u0438\u0438 \u043e\u0442 \u0415\u0441\u0441\u0435\u0435\u0432: \"\u0411\u043e\u0433 \u0437\u0430\u043f\u043e\u0432\u0435\u0434\u043e\u0432\u0430\u043b \u043d\u0430\u0448\u0438\u043c \u043f\u0440\u0435\u0434\u043a\u0430\u043c: \u00ab\u041d\u0435 \u0443\u0431\u0438\u0439\u00bb. \u041d\u043e \u0441\u0435\u0440\u0434\u0446\u0430 \u0438\u0445 \u043e\u0436\u0435\u0441\u0442\u043e\u0447\u0438\u043b\u0438\u0441\u044c, \u0438 \u043e\u043d\u0438 \u0441\u0442\u0430\u043b\u0438 \u0443\u0431\u0438\u0432\u0430\u0442\u044c. \u0422\u043e\u0433\u0434\u0430 \u041c\u043e\u0438\u0441\u0435\u0439 \u0440\u0435\u0448\u0438\u043b, \u0447\u0442\u043e \u043e\u043d\u0438 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u044b \u043f\u043e \u043a\u0440\u0430\u0439\u043d\u0435\u0439 \u043c\u0435\u0440\u0435 \u0443\u0431\u0438\u0432\u0430\u0442\u044c \u043b\u044e\u0434\u0435\u0439, \u0438 \u0434\u043e\u0437\u0432\u043e\u043b\u0438\u043b \u0438\u043c \u0443\u0431\u0438\u0432\u0430\u0442\u044c \u0437\u0432\u0435\u0440\u0435\u0439. \u0418 \u0442\u043e\u0433\u0434\u0430 \u0441\u0435\u0440\u0434\u0446\u0430 \u0432\u0430\u0448\u0438\u0445 \u043f\u0440\u0435\u0434\u043a\u043e\u0432 \u043e\u0436\u0435\u0441\u0442\u043e\u0447\u0438\u043b\u0438\u0441\u044c \u0435\u0449\u0435 \u0431\u043e\u043b\u044c\u0448\u0435, \u0438 \u0441\u0442\u0430\u043b\u0438 \u043e\u043d\u0438 \u0443\u0431\u0438\u0432\u0430\u0442\u044c \u043b\u044e\u0434\u0435\u0439, \u0440\u0430\u0432\u043d\u043e \u043a\u0430\u043a \u0438 \u0437\u0432\u0435\u0440\u0435\u0439. \u041d\u043e \u044f \u0433\u043e\u0432\u043e\u0440\u044e \u0432\u0430\u043c, \u043d\u0435 \u0443\u0431\u0438\u0432\u0430\u0439\u0442\u0435 \u043d\u0438 \u043b\u044e\u0434\u0435\u0439, \u043d\u0438 \u0437\u0432\u0435\u0440\u0435\u0439, \u043d\u0438 \u0442\u043e, \u0447\u0442\u043e \u0441\u0442\u0430\u043d\u0435\u0442 \u043f\u0438\u0449\u0435\u0439 \u0432\u0430\u0448\u0435\u0439. \u0418\u0431\u043e \u0435\u0441\u043b\u0438 \u0432\u044b \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0435 \u0436\u0438\u0432\u0443\u044e \u043f\u0438\u0449\u0443, \u043e\u043d\u0430 \u043d\u0430\u043f\u043e\u043b\u043d\u044f\u0435\u0442 \u0432\u0430\u0441 \u0436\u0438\u0437\u043d\u044c\u044e, \u043d\u043e \u0435\u0441\u043b\u0438 \u0432\u044b \u0443\u0431\u0438\u0432\u0430\u0435\u0442\u0435 \u0441\u0432\u043e\u044e \u043f\u0438\u0449\u0443, \u043c\u0435\u0440\u0442\u0432\u0430\u044f \u043f\u0438\u0449\u0430 \u0443\u0431\u044c\u0435\u0442 \u0442\u0430\u043a\u0436\u0435 \u0438 \u0432\u0430\u0441. \u0418\u0431\u043e \u0436\u0438\u0437\u043d\u044c \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0442 \u0436\u0438\u0437\u043d\u0438, \u0430 \u043e\u0442 \u0441\u043c\u0435\u0440\u0442\u0438 \u0432\u0441\u0435\u0433\u0434\u0430 \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0441\u043c\u0435\u0440\u0442\u044c. \u0418\u0431\u043e \u0432\u0441\u0435, \u0447\u0442\u043e \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0432\u0430\u0448\u0443 \u043f\u0438\u0449\u0443, \u0442\u0430\u043a\u0436\u0435 \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0438 \u0432\u0430\u0448\u0438 \u0442\u0435\u043b\u0430. \u0410 \u0432\u0441\u0435, \u0447\u0442\u043e \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0432\u0430\u0448\u0438 \u0442\u0435\u043b\u0430, \u0443\u0431\u0438\u0432\u0430\u0435\u0442 \u0442\u0430\u043a\u0436\u0435 \u0438 \u0432\u0430\u0448\u0438 \u0434\u0443\u0448\u0438. \u0418 \u0442\u0435\u043b\u0430 \u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442\u0441\u044f \u0442\u0435\u043c, \u0447\u0442\u043e \u0435\u0441\u0442\u044c \u043f\u0438\u0449\u0430 \u0432\u0430\u0448\u0430, \u0440\u0430\u0432\u043d\u043e \u043a\u0430\u043a \u0434\u0443\u0445 \u0432\u0430\u0448 \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0442\u0435\u043c, \u0447\u0442\u043e \u0435\u0441\u0442\u044c \u043c\u044b\u0441\u043b\u0438 \u0432\u0430\u0448\u0438.\"\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @tagira\n\n---\n\nAll STEEM Dollars for this post go to the featured author. \u0412\u0441\u0435 SD \u0437\u0430 \u043f\u043e\u0441\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442 \u0430\u0432\u0442\u043e\u0440.", + "category": "vegetarian", + "children": 18, + "created": "2016-09-15T15:10:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { + "image": [ + "http://petroart.ru/art/b/bronikov/img/3.jpg", + "http://www.damex.ru/images/cache/660x495/crop/images%7Ccms-image-000013620.jpg", + "https://media4.giphy.com/media/xcFZrrcaGhbz2/200w.gif", + "http://99px.ru/sstorage/56/2013/07/image_561607131913053649088.gif" + ], "tags": [ - "health", - "art", - "illustration", - "life" + "vegetarian", + "live", + "ru", + "food" ], - "image": [ - "https://www.steemimg.com/images/2016/09/14/HeadlessHoreseman-medium2d3b42.png", - "https://www.steemimg.com/images/2016/09/14/Brain1b12cc.jpg", - "https://www.steemimg.com/images/2016/09/14/Blanche134386.jpg", - "https://www.steemimg.com/images/2016/09/14/HeadlessHoreseman96dd9.jpg" + "users": [ + "tagira" ] }, - "created": "2016-09-14T17:46:30", - "updated": "2016-09-14T19:14:27", - "depth": 0, - "children": 44, - "net_rshares": 120989205660828, - "is_paidout": false, - "payout_at": "2016-09-15T20:29:32", - "payout": 832.809, - "pending_payout_value": "832.809 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 57949290153677, + "payout": 196.691, + "payout_at": "2016-09-22T15:10:00", + "pending_payout_value": "196.691 HBD", + "percent_hbd": 10000, + "permlink": "vegetarianism-is-philosophy-which-has-deep-religious-and-ethical-roots-my-way-vegetarianstvo-moi-put-featuring-tagira-as-author", + "post_id": 1254959, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 161 + }, + "title": "Vegetarianism is philosophy which has deep religious and ethical roots, my way / \u0412\u0435\u0433\u0435\u0442\u0430\u0440\u0438\u0430\u043d\u0441\u0442\u0432\u043e-\u043c\u043e\u0439 \u043f\u0443\u0442\u044c (featuring @tagira as author)", + "updated": "2016-09-15T15:10:00", + "url": "/vegetarian/@terrycraft/vegetarianism-is-philosophy-which-has-deep-religious-and-ethical-roots-my-way-vegetarianstvo-moi-put-featuring-tagira-as-author" + }, + { "active_votes": [ { - "voter": "itsascam", - "rshares": "16755161199383" + "rshares": "16755161199383", + "voter": "itsascam" }, { - "voter": "barrie", - "rshares": "480526212736" + "rshares": "480526212736", + "voter": "barrie" }, { - "voter": "style", - "rshares": "5104374858" + "rshares": "5104374858", + "voter": "style" }, { - "voter": "smooth", - "rshares": "30984805998710" + "rshares": "30984805998710", + "voter": "smooth" }, { - "voter": "steemroller", - "rshares": "1970871102026" + "rshares": "1970871102026", + "voter": "steemroller" }, { - "voter": "donaldtrump", - "rshares": "73338425139" + "rshares": "73338425139", + "voter": "donaldtrump" }, { - "voter": "steemed", - "rshares": "17831785324019" + "rshares": "17831785324019", + "voter": "steemed" }, { - "voter": "riverhead", - "rshares": "3813633612078" + "rshares": "3813633612078", + "voter": "riverhead" }, { - "voter": "badassmother", - "rshares": "2104090803296" + "rshares": "2104090803296", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2051409124045" + "rshares": "2051409124045", + "voter": "hr1" }, { - "voter": "kushed", - "rshares": "5116652122587" + "rshares": "5116652122587", + "voter": "kushed" }, { - "voter": "jaewoocho", - "rshares": "22856566186" + "rshares": "22856566186", + "voter": "jaewoocho" }, { - "voter": "ozmaster", - "rshares": "155402774795" + "rshares": "155402774795", + "voter": "ozmaster" }, { - "voter": "complexring", - "rshares": "6968855225504" + "rshares": "6968855225504", + "voter": "complexring" }, { - "voter": "joseph", - "rshares": "1647437585658" + "rshares": "1647437585658", + "voter": "joseph" }, { - "voter": "aizensou", - "rshares": "92485160845" + "rshares": "92485160845", + "voter": "aizensou" }, { - "voter": "recursive2", - "rshares": "465717138828" + "rshares": "465717138828", + "voter": "recursive2" }, { - "voter": "masteryoda", - "rshares": "619876169843" + "rshares": "619876169843", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3119278427030" + "rshares": "3119278427030", + "voter": "recursive" }, { - "voter": "mineralwasser", - "rshares": "1172425532" + "rshares": "1172425532", + "voter": "mineralwasser" }, { - "voter": "boombastic", - "rshares": "665687862852" + "rshares": "665687862852", + "voter": "boombastic" }, { - "voter": "mrs.agsexplorer", - "rshares": "88484695103" + "rshares": "88484695103", + "voter": "mrs.agsexplorer" }, { - "voter": "bingo-0", - "rshares": "6756410360" + "rshares": "6756410360", + "voter": "bingo-0" }, { - "voter": "bingo-1", - "rshares": "1620176259" + "rshares": "1620176259", + "voter": "bingo-1" }, { - "voter": "smooth.witness", - "rshares": "5800874395470" + "rshares": "5800874395470", + "voter": "smooth.witness" }, { - "voter": "idol", - "rshares": "9885238701" + "rshares": "9885238701", + "voter": "idol" }, { - "voter": "stoner19", - "rshares": "48218286324" + "rshares": "48218286324", + "voter": "stoner19" }, { - "voter": "sakr", - "rshares": "4837882894" + "rshares": "4837882894", + "voter": "sakr" }, { - "voter": "jocelyn", - "rshares": "1701784178" + "rshares": "1701784178", + "voter": "jocelyn" }, { - "voter": "gregory-f", - "rshares": "14064642668" + "rshares": "14064642668", + "voter": "gregory-f" }, { - "voter": "lovelace", - "rshares": "58907877644" + "rshares": "58907877644", + "voter": "lovelace" }, { - "voter": "gavvet", - "rshares": "1234583624335" + "rshares": "1234583624335", + "voter": "gavvet" }, { - "voter": "eeks", - "rshares": "74895398010" + "rshares": "74895398010", + "voter": "eeks" }, { - "voter": "paco-steem", - "rshares": "488526217" + "rshares": "488526217", + "voter": "paco-steem" }, { - "voter": "cryptogee", - "rshares": "912597254389" + "rshares": "912597254389", + "voter": "cryptogee" }, { - "voter": "spaninv", - "rshares": "5883869384" + "rshares": "5883869384", + "voter": "spaninv" }, { - "voter": "teamsteem", - "rshares": "336432003943" + "rshares": "336432003943", + "voter": "teamsteem" }, { - "voter": "richman", - "rshares": "8667859424" + "rshares": "8667859424", + "voter": "richman" }, { - "voter": "murch", - "rshares": "462352309" + "rshares": "462352309", + "voter": "murch" }, { - "voter": "nanzo-scoop", - "rshares": "566150979416" + "rshares": "566150979416", + "voter": "nanzo-scoop" }, { - "voter": "william-noe", - "rshares": "86323748302" + "rshares": "86323748302", + "voter": "william-noe" }, { - "voter": "steve-walschot", - "rshares": "170004330283" + "rshares": "170004330283", + "voter": "steve-walschot" }, { - "voter": "mummyimperfect", - "rshares": "173798380609" + "rshares": "173798380609", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "268835102" + "rshares": "268835102", + "voter": "coar" }, { - "voter": "asch", - "rshares": "100993055295" + "rshares": "100993055295", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1060848113" + "rshares": "1060848113", + "voter": "murh" }, { - "voter": "sascha", - "rshares": "240697359051" + "rshares": "240697359051", + "voter": "sascha" }, { - "voter": "cryptofunk", - "rshares": "6228218902" + "rshares": "6228218902", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2272666902" + "rshares": "2272666902", + "voter": "error" }, { - "voter": "marta-zaidel", - "rshares": "5736901624" + "rshares": "5736901624", + "voter": "marta-zaidel" }, { - "voter": "cyber", - "rshares": "1040976670262" + "rshares": "1040976670262", + "voter": "cyber" }, { - "voter": "aizen01", - "rshares": "10900823677" + "rshares": "10900823677", + "voter": "aizen01" }, { - "voter": "aizen02", - "rshares": "6499631007" + "rshares": "6499631007", + "voter": "aizen02" }, { - "voter": "aizen03", - "rshares": "3552366776" + "rshares": "3552366776", + "voter": "aizen03" }, { - "voter": "aizen04", - "rshares": "1167908093" + "rshares": "1167908093", + "voter": "aizen04" }, { - "voter": "aizen05", - "rshares": "494011890" + "rshares": "494011890", + "voter": "aizen05" }, { - "voter": "aizen07", - "rshares": "4792657323" + "rshares": "4792657323", + "voter": "aizen07" }, { - "voter": "aizen08", - "rshares": "2866473700" + "rshares": "2866473700", + "voter": "aizen08" }, { - "voter": "aizen09", - "rshares": "1018773570" + "rshares": "1018773570", + "voter": "aizen09" }, { - "voter": "aizen10", - "rshares": "440815198" + "rshares": "440815198", + "voter": "aizen10" }, { - "voter": "aizen06", - "rshares": "7251599286" + "rshares": "7251599286", + "voter": "aizen06" }, { - "voter": "aizen11", - "rshares": "3046354062" + "rshares": "3046354062", + "voter": "aizen11" }, { - "voter": "aizen14", - "rshares": "2093827993" + "rshares": "2093827993", + "voter": "aizen14" }, { - "voter": "aizen19", - "rshares": "2462056275" + "rshares": "2462056275", + "voter": "aizen19" }, { - "voter": "theshell", - "rshares": "59929272057" + "rshares": "59929272057", + "voter": "theshell" }, { - "voter": "aizen15", - "rshares": "648949628" + "rshares": "648949628", + "voter": "aizen15" }, { - "voter": "aizen16", - "rshares": "6424903281" + "rshares": "6424903281", + "voter": "aizen16" }, { - "voter": "ak2020", - "rshares": "49535217690" + "rshares": "49535217690", + "voter": "ak2020" }, { - "voter": "aizen20", - "rshares": "645116104" + "rshares": "645116104", + "voter": "aizen20" }, { - "voter": "aizen22", - "rshares": "4217447041" + "rshares": "4217447041", + "voter": "aizen22" }, { - "voter": "aizen23", - "rshares": "1120999727" + "rshares": "1120999727", + "voter": "aizen23" }, { - "voter": "aizen17", - "rshares": "2204896687" + "rshares": "2204896687", + "voter": "aizen17" }, { - "voter": "aizen24", - "rshares": "3470451837" + "rshares": "3470451837", + "voter": "aizen24" }, { - "voter": "aizen18", - "rshares": "490553110" + "rshares": "490553110", + "voter": "aizen18" }, { - "voter": "aizen25", - "rshares": "1314196776" + "rshares": "1314196776", + "voter": "aizen25" }, { - "voter": "aizen28", - "rshares": "2232430390" + "rshares": "2232430390", + "voter": "aizen28" }, { - "voter": "aizen26", - "rshares": "3435321135" + "rshares": "3435321135", + "voter": "aizen26" }, { - "voter": "aizen27", - "rshares": "1127666084" + "rshares": "1127666084", + "voter": "aizen27" }, { - "voter": "aizen32", - "rshares": "3875699811" + "rshares": "3875699811", + "voter": "aizen32" }, { - "voter": "aizen30", - "rshares": "2120371796" + "rshares": "2120371796", + "voter": "aizen30" }, { - "voter": "aizen31", - "rshares": "3922155046" + "rshares": "3922155046", + "voter": "aizen31" }, { - "voter": "aizen33", - "rshares": "1291018425" + "rshares": "1291018425", + "voter": "aizen33" }, { - "voter": "aizen34", - "rshares": "1553081360" + "rshares": "1553081360", + "voter": "aizen34" }, { - "voter": "aizen35", - "rshares": "311774459" + "rshares": "311774459", + "voter": "aizen35" }, { - "voter": "aizen36", - "rshares": "5849477524" + "rshares": "5849477524", + "voter": "aizen36" }, { - "voter": "aizen37", - "rshares": "1459346389" + "rshares": "1459346389", + "voter": "aizen37" }, { - "voter": "paul-labossiere", - "rshares": "24406094847" + "rshares": "24406094847", + "voter": "paul-labossiere" }, { - "voter": "aizen29", - "rshares": "408290923" + "rshares": "408290923", + "voter": "aizen29" }, { - "voter": "aizen21", - "rshares": "2872536420" + "rshares": "2872536420", + "voter": "aizen21" }, { - "voter": "aizen12", - "rshares": "4407557058" + "rshares": "4407557058", + "voter": "aizen12" }, { - "voter": "aizen38", - "rshares": "1876630383" + "rshares": "1876630383", + "voter": "aizen38" }, { - "voter": "badger311", - "rshares": "8279076968" + "rshares": "8279076968", + "voter": "badger311" }, { - "voter": "badger313", - "rshares": "8567966025" + "rshares": "8567966025", + "voter": "badger313" }, { - "voter": "badger312", - "rshares": "8532183936" + "rshares": "8532183936", + "voter": "badger312" }, { - "voter": "badger316", - "rshares": "8825464112" + "rshares": "8825464112", + "voter": "badger316" }, { - "voter": "badger319", - "rshares": "8945023495" + "rshares": "8945023495", + "voter": "badger319" }, { - "voter": "badger3101", - "rshares": "8854468413" + "rshares": "8854468413", + "voter": "badger3101" }, { - "voter": "badger3111", - "rshares": "8318010896" + "rshares": "8318010896", + "voter": "badger3111" }, { - "voter": "badger3121", - "rshares": "8869290111" + "rshares": "8869290111", + "voter": "badger3121" }, { - "voter": "badger3131", - "rshares": "8485309981" + "rshares": "8485309981", + "voter": "badger3131" }, { - "voter": "badger3141", - "rshares": "8591220795" + "rshares": "8591220795", + "voter": "badger3141" }, { - "voter": "badger3171", - "rshares": "8568091961" + "rshares": "8568091961", + "voter": "badger3171" }, { - "voter": "badger3181", - "rshares": "8379270543" + "rshares": "8379270543", + "voter": "badger3181" }, { - "voter": "badger3191", - "rshares": "8954261088" + "rshares": "8954261088", + "voter": "badger3191" }, { - "voter": "badger3112", - "rshares": "8379110631" + "rshares": "8379110631", + "voter": "badger3112" }, { - "voter": "badger3132", - "rshares": "8713695890" + "rshares": "8713695890", + "voter": "badger3132" }, { - "voter": "badger3162", - "rshares": "8589307590" + "rshares": "8589307590", + "voter": "badger3162" }, { - "voter": "badger3113", - "rshares": "8815925781" + "rshares": "8815925781", + "voter": "badger3113" }, { - "voter": "badger3123", - "rshares": "8473341065" + "rshares": "8473341065", + "voter": "badger3123" }, { - "voter": "badger3133", - "rshares": "8594708779" + "rshares": "8594708779", + "voter": "badger3133" }, { - "voter": "badger3153", - "rshares": "8939568357" + "rshares": "8939568357", + "voter": "badger3153" }, { - "voter": "badger3163", - "rshares": "8624205716" + "rshares": "8624205716", + "voter": "badger3163" }, { - "voter": "badger3193", - "rshares": "8654162062" + "rshares": "8654162062", + "voter": "badger3193" }, { - "voter": "badger3114", - "rshares": "8604723591" + "rshares": "8604723591", + "voter": "badger3114" }, { - "voter": "badger3124", - "rshares": "8515355992" + "rshares": "8515355992", + "voter": "badger3124" }, { - "voter": "badger3144", - "rshares": "8420058241" + "rshares": "8420058241", + "voter": "badger3144" }, { - "voter": "badger3154", - "rshares": "8343364036" + "rshares": "8343364036", + "voter": "badger3154" }, { - "voter": "badger3164", - "rshares": "8213191128" + "rshares": "8213191128", + "voter": "badger3164" }, { - "voter": "badger3174", - "rshares": "8538833460" + "rshares": "8538833460", + "voter": "badger3174" }, { - "voter": "badger3194", - "rshares": "8813869956" + "rshares": "8813869956", + "voter": "badger3194" }, { - "voter": "badger3105", - "rshares": "8712162375" + "rshares": "8712162375", + "voter": "badger3105" }, { - "voter": "badger3135", - "rshares": "8656736569" + "rshares": "8656736569", + "voter": "badger3135" }, { - "voter": "badger3145", - "rshares": "8258522611" + "rshares": "8258522611", + "voter": "badger3145" }, { - "voter": "badger3155", - "rshares": "8831167662" + "rshares": "8831167662", + "voter": "badger3155" }, { - "voter": "badger3175", - "rshares": "8529824072" + "rshares": "8529824072", + "voter": "badger3175" }, { - "voter": "badger3195", - "rshares": "8310212001" + "rshares": "8310212001", + "voter": "badger3195" }, { - "voter": "badger3106", - "rshares": "7958888538" + "rshares": "7958888538", + "voter": "badger3106" }, { - "voter": "badger3116", - "rshares": "8762392108" + "rshares": "8762392108", + "voter": "badger3116" }, { - "voter": "badger3126", - "rshares": "8809476629" + "rshares": "8809476629", + "voter": "badger3126" }, { - "voter": "badger3136", - "rshares": "8443348501" + "rshares": "8443348501", + "voter": "badger3136" }, { - "voter": "badger3146", - "rshares": "8096485926" + "rshares": "8096485926", + "voter": "badger3146" }, { - "voter": "badger3156", - "rshares": "8323878617" + "rshares": "8323878617", + "voter": "badger3156" }, { - "voter": "badger3166", - "rshares": "8535690887" + "rshares": "8535690887", + "voter": "badger3166" }, { - "voter": "badger3176", - "rshares": "8452106060" + "rshares": "8452106060", + "voter": "badger3176" }, { - "voter": "badger3186", - "rshares": "8584206358" + "rshares": "8584206358", + "voter": "badger3186" }, { - "voter": "badger3196", - "rshares": "8619308346" + "rshares": "8619308346", + "voter": "badger3196" }, { - "voter": "badger3107", - "rshares": "8548167966" + "rshares": "8548167966", + "voter": "badger3107" }, { - "voter": "badger315", - "rshares": "8305132275" + "rshares": "8305132275", + "voter": "badger315" }, { - "voter": "badger318", - "rshares": "8791959509" + "rshares": "8791959509", + "voter": "badger318" }, { - "voter": "badger3151", - "rshares": "8840656230" + "rshares": "8840656230", + "voter": "badger3151" }, { - "voter": "badger3161", - "rshares": "8519121589" + "rshares": "8519121589", + "voter": "badger3161" }, { - "voter": "badger3122", - "rshares": "8773547330" + "rshares": "8773547330", + "voter": "badger3122" }, { - "voter": "badger3142", - "rshares": "8711547278" + "rshares": "8711547278", + "voter": "badger3142" }, { - "voter": "badger3152", - "rshares": "8930383064" + "rshares": "8930383064", + "voter": "badger3152" }, { - "voter": "badger3172", - "rshares": "8246562170" + "rshares": "8246562170", + "voter": "badger3172" }, { - "voter": "badger3182", - "rshares": "8750362445" + "rshares": "8750362445", + "voter": "badger3182" }, { - "voter": "badger3192", - "rshares": "8510357323" + "rshares": "8510357323", + "voter": "badger3192" }, { - "voter": "badger3143", - "rshares": "8426540891" + "rshares": "8426540891", + "voter": "badger3143" }, { - "voter": "badger3173", - "rshares": "8684675072" + "rshares": "8684675072", + "voter": "badger3173" }, { - "voter": "badger3104", - "rshares": "8396705393" + "rshares": "8396705393", + "voter": "badger3104" }, { - "voter": "badger3134", - "rshares": "8114154413" + "rshares": "8114154413", + "voter": "badger3134" }, { - "voter": "badger3184", - "rshares": "8513476422" + "rshares": "8513476422", + "voter": "badger3184" }, { - "voter": "badger3115", - "rshares": "8451732184" + "rshares": "8451732184", + "voter": "badger3115" }, { - "voter": "badger3165", - "rshares": "8916017583" + "rshares": "8916017583", + "voter": "badger3165" }, { - "voter": "badger3185", - "rshares": "8548877339" + "rshares": "8548877339", + "voter": "badger3185" }, { - "voter": "badger314", - "rshares": "8609674677" + "rshares": "8609674677", + "voter": "badger314" }, { - "voter": "badger317", - "rshares": "8839842393" + "rshares": "8839842393", + "voter": "badger317" }, { - "voter": "badger3102", - "rshares": "8583105596" + "rshares": "8583105596", + "voter": "badger3102" }, { - "voter": "badger3103", - "rshares": "8545290354" + "rshares": "8545290354", + "voter": "badger3103" }, { - "voter": "badger3125", - "rshares": "8473652115" + "rshares": "8473652115", + "voter": "badger3125" }, { - "voter": "badger3183", - "rshares": "8440424803" + "rshares": "8440424803", + "voter": "badger3183" }, { - "voter": "aizen39", - "rshares": "523210618" + "rshares": "523210618", + "voter": "aizen39" }, { - "voter": "satoshifund", - "rshares": "3692729259818" + "rshares": "3692729259818", + "voter": "satoshifund" }, { - "voter": "taoteh1221", - "rshares": "409139044923" + "rshares": "409139044923", + "voter": "taoteh1221" }, { - "voter": "applecrisp", - "rshares": "418804855" + "rshares": "418804855", + "voter": "applecrisp" }, { - "voter": "stiletto", - "rshares": "381169481" + "rshares": "381169481", + "voter": "stiletto" }, { - "voter": "juanmiguelsalas", - "rshares": "55572589211" + "rshares": "55572589211", + "voter": "juanmiguelsalas" }, { - "voter": "will-zewe", - "rshares": "210458611837" + "rshares": "210458611837", + "voter": "will-zewe" }, { - "voter": "kaylinart", - "rshares": "380297285001" + "rshares": "380297285001", + "voter": "kaylinart" }, { - "voter": "infovore", - "rshares": "563706981359" + "rshares": "563706981359", + "voter": "infovore" }, { - "voter": "tim-johnston", - "rshares": "77665341455" + "rshares": "77665341455", + "voter": "tim-johnston" }, { - "voter": "schro", - "rshares": "81000705230" + "rshares": "81000705230", + "voter": "schro" }, { - "voter": "trogdor", - "rshares": "257516084561" + "rshares": "257516084561", + "voter": "trogdor" }, { - "voter": "tee-em", - "rshares": "4491802783" + "rshares": "4491802783", + "voter": "tee-em" }, { - "voter": "michaelx", - "rshares": "32185101127" + "rshares": "32185101127", + "voter": "michaelx" }, { - "voter": "anwenbaumeister", - "rshares": "804436229902" + "rshares": "804436229902", + "voter": "anwenbaumeister" }, { - "voter": "mark-waser", - "rshares": "5817925334" + "rshares": "5817925334", + "voter": "mark-waser" }, { - "voter": "keithwillshine", - "rshares": "409576499" + "rshares": "409576499", + "voter": "keithwillshine" }, { - "voter": "geoffrey", - "rshares": "111330095375" + "rshares": "111330095375", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "202874968510" + "rshares": "202874968510", + "voter": "kimziv" }, { - "voter": "honeythief", - "rshares": "44426159607" + "rshares": "44426159607", + "voter": "honeythief" }, { - "voter": "mammasitta", - "rshares": "7049670897" + "rshares": "7049670897", + "voter": "mammasitta" }, { - "voter": "tyler-fletcher", - "rshares": "6744340925" + "rshares": "6744340925", + "voter": "tyler-fletcher" }, { - "voter": "emily-cook", - "rshares": "79414155694" + "rshares": "79414155694", + "voter": "emily-cook" }, { - "voter": "mctiller", - "rshares": "93849854528" + "rshares": "93849854528", + "voter": "mctiller" }, { - "voter": "superfreek", - "rshares": "2187136185" + "rshares": "2187136185", + "voter": "superfreek" }, { - "voter": "mrhankeh", - "rshares": "484592257" + "rshares": "484592257", + "voter": "mrhankeh" }, { - "voter": "alexft", - "rshares": "4255723858" + "rshares": "4255723858", + "voter": "alexft" }, { - "voter": "justoneartist", - "rshares": "1869026224" + "rshares": "1869026224", + "voter": "justoneartist" }, { - "voter": "ladyclair", - "rshares": "280886491" + "rshares": "280886491", + "voter": "ladyclair" }, { - "voter": "michaellamden68", - "rshares": "3715415813" + "rshares": "3715415813", + "voter": "michaellamden68" }, { - "voter": "dashpaymag", - "rshares": "161249433461" + "rshares": "161249433461", + "voter": "dashpaymag" }, { - "voter": "asmolokalo", - "rshares": "174527707979" + "rshares": "174527707979", + "voter": "asmolokalo" }, { - "voter": "ezzy", - "rshares": "57106930713" + "rshares": "57106930713", + "voter": "ezzy" }, { - "voter": "rubybian", - "rshares": "71639420708" + "rshares": "71639420708", + "voter": "rubybian" }, { - "voter": "orly", - "rshares": "3214941985" + "rshares": "3214941985", + "voter": "orly" }, { - "voter": "riscadox", - "rshares": "5163778635" + "rshares": "5163778635", + "voter": "riscadox" }, { - "voter": "hakise", - "rshares": "18842523479" + "rshares": "18842523479", + "voter": "hakise" }, { - "voter": "yogi.artist", - "rshares": "15354149755" + "rshares": "15354149755", + "voter": "yogi.artist" }, { - "voter": "r4fken", - "rshares": "14213156438" + "rshares": "14213156438", + "voter": "r4fken" }, { - "voter": "aizen13", - "rshares": "389458625" + "rshares": "389458625", + "voter": "aizen13" }, { - "voter": "aizen41", - "rshares": "3344942110" + "rshares": "3344942110", + "voter": "aizen41" }, { - "voter": "aizen42", - "rshares": "950534210" + "rshares": "950534210", + "voter": "aizen42" }, { - "voter": "aizen46", - "rshares": "3238263445" + "rshares": "3238263445", + "voter": "aizen46" }, { - "voter": "aizen47", - "rshares": "886294877" + "rshares": "886294877", + "voter": "aizen47" }, { - "voter": "aizen48", - "rshares": "217253386" + "rshares": "217253386", + "voter": "aizen48" }, { - "voter": "aizen49", - "rshares": "113259366" + "rshares": "113259366", + "voter": "aizen49" }, { - "voter": "busser", - "rshares": "754082458" + "rshares": "754082458", + "voter": "busser" }, { - "voter": "aizen51", - "rshares": "941015787" + "rshares": "941015787", + "voter": "aizen51" }, { - "voter": "renohq", - "rshares": "1210073491361" + "rshares": "1210073491361", + "voter": "renohq" }, { - "voter": "aizen43", - "rshares": "455780965" + "rshares": "455780965", + "voter": "aizen43" }, { - "voter": "aizen44", - "rshares": "67659539" + "rshares": "67659539", + "voter": "aizen44" }, { - "voter": "aizen54", - "rshares": "763284602" + "rshares": "763284602", + "voter": "aizen54" }, { - "voter": "ausbitbank", - "rshares": "16859493667" + "rshares": "16859493667", + "voter": "ausbitbank" }, { - "voter": "gikitiki", - "rshares": "4728705839" + "rshares": "4728705839", + "voter": "gikitiki" }, { - "voter": "asim", - "rshares": "11698403373" + "rshares": "11698403373", + "voter": "asim" }, { - "voter": "snowden", - "rshares": "99758482" + "rshares": "99758482", + "voter": "snowden" }, { - "voter": "karen13", - "rshares": "1107690687" + "rshares": "1107690687", + "voter": "karen13" }, { - "voter": "shark", - "rshares": "54321503601" + "rshares": "54321503601", + "voter": "shark" }, { - "voter": "meiisheree", - "rshares": "20363338717" + "rshares": "20363338717", + "voter": "meiisheree" }, { - "voter": "nabilov", - "rshares": "258937743119" + "rshares": "258937743119", + "voter": "nabilov" }, { - "voter": "noodhoog", - "rshares": "8572920051" + "rshares": "8572920051", + "voter": "noodhoog" }, { - "voter": "dcryptogold", - "rshares": "4205385163" + "rshares": "4205385163", + "voter": "dcryptogold" }, { - "voter": "dmacshady", - "rshares": "2668109030" + "rshares": "2668109030", + "voter": "dmacshady" }, { - "voter": "aizen52", - "rshares": "233569693" + "rshares": "233569693", + "voter": "aizen52" }, { - "voter": "herverisson", - "rshares": "8368498979" + "rshares": "8368498979", + "voter": "herverisson" }, { - "voter": "milestone", - "rshares": "45693099664" + "rshares": "45693099664", + "voter": "milestone" }, { - "voter": "creemej", - "rshares": "33727004465" + "rshares": "33727004465", + "voter": "creemej" }, { - "voter": "wildchild", - "rshares": "89580632" + "rshares": "89580632", + "voter": "wildchild" }, { - "voter": "the-future", - "rshares": "2579031743" + "rshares": "2579031743", + "voter": "the-future" }, { - "voter": "nippel66", - "rshares": "15372067535" + "rshares": "15372067535", + "voter": "nippel66" }, { - "voter": "aizen55", - "rshares": "190269483" + "rshares": "190269483", + "voter": "aizen55" }, { - "voter": "blueorgy", - "rshares": "163260776578" + "rshares": "163260776578", + "voter": "blueorgy" }, { - "voter": "opheliafu", - "rshares": "159387011508" + "rshares": "159387011508", + "voter": "opheliafu" }, { - "voter": "poseidon", - "rshares": "4426428855" + "rshares": "4426428855", + "voter": "poseidon" }, { - "voter": "iamwne", - "rshares": "2033762271" + "rshares": "2033762271", + "voter": "iamwne" }, { - "voter": "thylbom", - "rshares": "79563973688" + "rshares": "79563973688", + "voter": "thylbom" }, { - "voter": "geronimo", - "rshares": "7311858289" + "rshares": "7311858289", + "voter": "geronimo" }, { - "voter": "bitcoiner", - "rshares": "4308378335" + "rshares": "4308378335", + "voter": "bitcoiner" }, { - "voter": "bzeen", - "rshares": "116496190" + "rshares": "116496190", + "voter": "bzeen" }, { - "voter": "tarindel", - "rshares": "3756297830" + "rshares": "3756297830", + "voter": "tarindel" }, { - "voter": "deanliu", - "rshares": "31921025901" + "rshares": "31921025901", + "voter": "deanliu" }, { - "voter": "bento", - "rshares": "141429957" + "rshares": "141429957", + "voter": "bento" }, { - "voter": "shredlord", - "rshares": "13069930577" + "rshares": "13069930577", + "voter": "shredlord" }, { - "voter": "hagie", - "rshares": "13916292595" + "rshares": "13916292595", + "voter": "hagie" }, { - "voter": "jl777", - "rshares": "53841341992" + "rshares": "53841341992", + "voter": "jl777" }, { - "voter": "yarly", - "rshares": "1736201261" + "rshares": "1736201261", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "261735372" + "rshares": "261735372", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "262126965" + "rshares": "262126965", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "151424453" + "rshares": "151424453", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "152279375" + "rshares": "152279375", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "86799635" + "rshares": "86799635", + "voter": "yarly7" }, { - "voter": "crazymumzysa", - "rshares": "100832394226" + "rshares": "100832394226", + "voter": "crazymumzysa" }, { - "voter": "whalepool", - "rshares": "50619397" + "rshares": "50619397", + "voter": "whalepool" }, { - "voter": "prufarchy", - "rshares": "20238670061" + "rshares": "20238670061", + "voter": "prufarchy" }, { - "voter": "anca3drandom", - "rshares": "35610433440" + "rshares": "35610433440", + "voter": "anca3drandom" }, { - "voter": "sergey44", - "rshares": "206059171" + "rshares": "206059171", + "voter": "sergey44" }, { - "voter": "summonerrk", - "rshares": "6542152680" + "rshares": "6542152680", + "voter": "summonerrk" }, { - "voter": "hdd", - "rshares": "2012582806" + "rshares": "2012582806", + "voter": "hdd" }, { - "voter": "krabgat", - "rshares": "21120708735" + "rshares": "21120708735", + "voter": "krabgat" }, { - "voter": "proto", - "rshares": "4543641049" + "rshares": "4543641049", + "voter": "proto" }, { - "voter": "curator", - "rshares": "634074071" + "rshares": "634074071", + "voter": "curator" }, { - "voter": "sisterholics", - "rshares": "33383309924" + "rshares": "33383309924", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "420072669" + "rshares": "420072669", + "voter": "yarly10" }, { - "voter": "alex.chien", - "rshares": "1404574750" + "rshares": "1404574750", + "voter": "alex.chien" }, { - "voter": "yarly11", - "rshares": "224823596" + "rshares": "224823596", + "voter": "yarly11" }, { - "voter": "yarly12", - "rshares": "78603899" + "rshares": "78603899", + "voter": "yarly12" }, { - "voter": "phoenixmaid", - "rshares": "11092117841" + "rshares": "11092117841", + "voter": "phoenixmaid" }, { - "voter": "esqil", - "rshares": "330141710" + "rshares": "330141710", + "voter": "esqil" }, { - "voter": "aizen53", - "rshares": "83707323" + "rshares": "83707323", + "voter": "aizen53" }, { - "voter": "steemster1", - "rshares": "149624601" + "rshares": "149624601", + "voter": "steemster1" }, { - "voter": "bullionstackers", - "rshares": "238512214" + "rshares": "238512214", + "voter": "bullionstackers" }, { - "voter": "comealong", - "rshares": "6810743439" + "rshares": "6810743439", + "voter": "comealong" }, { - "voter": "andreynoch", - "rshares": "2002743924" + "rshares": "2002743924", + "voter": "andreynoch" }, { - "voter": "metaflute", - "rshares": "947490604" + "rshares": "947490604", + "voter": "metaflute" }, { - "voter": "karenb54", - "rshares": "721310626" + "rshares": "721310626", + "voter": "karenb54" }, { - "voter": "bento04", - "rshares": "449108428" + "rshares": "449108428", + "voter": "bento04" }, { - "voter": "bento03", - "rshares": "753126143" + "rshares": "753126143", + "voter": "bento03" }, { - "voter": "aizen", - "rshares": "1534361646" + "rshares": "1534361646", + "voter": "aizen" }, { - "voter": "taker", - "rshares": "2298243810" + "rshares": "2298243810", + "voter": "taker" }, { - "voter": "bento02", - "rshares": "239545179" + "rshares": "239545179", + "voter": "bento02" }, { - "voter": "bento01", - "rshares": "551525219" + "rshares": "551525219", + "voter": "bento01" }, { - "voter": "pakisnxt", - "rshares": "1007190932" + "rshares": "1007190932", + "voter": "pakisnxt" }, { - "voter": "nekromarinist", - "rshares": "14668022793" + "rshares": "14668022793", + "voter": "nekromarinist" }, { - "voter": "coinbar", - "rshares": "1618760149" + "rshares": "1618760149", + "voter": "coinbar" }, { - "voter": "sharon", - "rshares": "59219358" + "rshares": "59219358", + "voter": "sharon" }, { - "voter": "merej99", - "rshares": "2635374169" + "rshares": "2635374169", + "voter": "merej99" }, { - "voter": "lillianjones", - "rshares": "61714352" + "rshares": "61714352", + "voter": "lillianjones" }, { - "voter": "laonie", - "rshares": "1148224715117" + "rshares": "1148224715117", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "146176741718" + "rshares": "146176741718", + "voter": "twinner" }, { - "voter": "ozchartart", - "rshares": "243451061692" + "rshares": "243451061692", + "voter": "ozchartart" }, { - "voter": "croatia", - "rshares": "5002368214" + "rshares": "5002368214", + "voter": "croatia" }, { - "voter": "vladimirputin", - "rshares": "65300521" + "rshares": "65300521", + "voter": "vladimirputin" }, { - "voter": "rawnetics", - "rshares": "23878310347" + "rshares": "23878310347", + "voter": "rawnetics" }, { - "voter": "angelamerkel", - "rshares": "65308725" + "rshares": "65308725", + "voter": "angelamerkel" }, { - "voter": "thebluepanda", - "rshares": "17989038861" + "rshares": "17989038861", + "voter": "thebluepanda" }, { - "voter": "bento06", - "rshares": "81826244" + "rshares": "81826244", + "voter": "bento06" }, { - "voter": "laoyao", - "rshares": "24551995771" + "rshares": "24551995771", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "38527150465" + "rshares": "38527150465", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "239628375853" + "rshares": "239628375853", + "voter": "somebody" }, { - "voter": "sunshine", - "rshares": "15892496776" + "rshares": "15892496776", + "voter": "sunshine" }, { - "voter": "flysaga", - "rshares": "9202242828" + "rshares": "9202242828", + "voter": "flysaga" }, { - "voter": "brendio", - "rshares": "5634572644" + "rshares": "5634572644", + "voter": "brendio" }, { - "voter": "gmurph", - "rshares": "2082686663" + "rshares": "2082686663", + "voter": "gmurph" }, { - "voter": "missmishel623", - "rshares": "68250832" + "rshares": "68250832", + "voter": "missmishel623" }, { - "voter": "timsaid", - "rshares": "82177171859" + "rshares": "82177171859", + "voter": "timsaid" }, { - "voter": "midnightoil", - "rshares": "52936380443" + "rshares": "52936380443", + "voter": "midnightoil" }, { - "voter": "mibenkito", - "rshares": "81534499564" + "rshares": "81534499564", + "voter": "mibenkito" }, { - "voter": "kalimor", - "rshares": "2375350982" + "rshares": "2375350982", + "voter": "kalimor" }, { - "voter": "coderg", - "rshares": "63541793" + "rshares": "63541793", + "voter": "coderg" }, { - "voter": "altucher", - "rshares": "1018538139" + "rshares": "1018538139", + "voter": "altucher" }, { - "voter": "ullikume", - "rshares": "4186662893" + "rshares": "4186662893", + "voter": "ullikume" }, { - "voter": "timferriss", - "rshares": "101572397" + "rshares": "101572397", + "voter": "timferriss" }, { - "voter": "michellek", - "rshares": "53093897" + "rshares": "53093897", + "voter": "michellek" }, { - "voter": "kurtbeil", - "rshares": "4650618263" + "rshares": "4650618263", + "voter": "kurtbeil" }, { - "voter": "steemleak", - "rshares": "2798919170" + "rshares": "2798919170", + "voter": "steemleak" }, { - "voter": "thisisbenbrick", - "rshares": "109814173501" + "rshares": "109814173501", + "voter": "thisisbenbrick" }, { - "voter": "darrenrowse", - "rshares": "104692799" + "rshares": "104692799", + "voter": "darrenrowse" }, { - "voter": "xiaohui", - "rshares": "128793789941" + "rshares": "128793789941", + "voter": "xiaohui" }, { - "voter": "xerneas", - "rshares": "83638970" + "rshares": "83638970", + "voter": "xerneas" }, { - "voter": "bigsambucca", - "rshares": "106149968" + "rshares": "106149968", + "voter": "bigsambucca" }, { - "voter": "elfkitchen", - "rshares": "6403494729" + "rshares": "6403494729", + "voter": "elfkitchen" }, { - "voter": "oflyhigh", - "rshares": "5935556188" + "rshares": "5935556188", + "voter": "oflyhigh" }, { - "voter": "paynode", - "rshares": "2226707993" + "rshares": "2226707993", + "voter": "paynode" }, { - "voter": "nickche", - "rshares": "62525016" + "rshares": "62525016", + "voter": "nickche" }, { - "voter": "xiaokongcom", - "rshares": "4251472057" + "rshares": "4251472057", + "voter": "xiaokongcom" }, { - "voter": "msjennifer", - "rshares": "62201879" + "rshares": "62201879", + "voter": "msjennifer" }, { - "voter": "ciao", - "rshares": "57196572" + "rshares": "57196572", + "voter": "ciao" }, { - "voter": "eneismijmich", - "rshares": "47958674202" + "rshares": "47958674202", + "voter": "eneismijmich" }, { - "voter": "jrcornel", - "rshares": "2951808169" + "rshares": "2951808169", + "voter": "jrcornel" }, { - "voter": "steemo", - "rshares": "55449983" + "rshares": "55449983", + "voter": "steemo" }, { - "voter": "pcashmore", - "rshares": "179351183" + "rshares": "179351183", + "voter": "pcashmore" }, { - "voter": "xianjun", - "rshares": "8570039552" + "rshares": "8570039552", + "voter": "xianjun" }, { - "voter": "steema", - "rshares": "55306941" + "rshares": "55306941", + "voter": "steema" }, { - "voter": "andrew.sullivan", - "rshares": "59618782" + "rshares": "59618782", + "voter": "andrew.sullivan" }, { - "voter": "brianclark", - "rshares": "1046049321" + "rshares": "1046049321", + "voter": "brianclark" }, { - "voter": "daniel.kahneman", - "rshares": "831589271" + "rshares": "831589271", + "voter": "daniel.kahneman" }, { - "voter": "tucker.max", - "rshares": "232896636" + "rshares": "232896636", + "voter": "tucker.max" }, { - "voter": "darren.rowse", - "rshares": "740826654" + "rshares": "740826654", + "voter": "darren.rowse" }, { - "voter": "chris.dunn", - "rshares": "55704135" + "rshares": "55704135", + "voter": "chris.dunn" }, { - "voter": "confucius", - "rshares": "71282219" + "rshares": "71282219", + "voter": "confucius" }, { - "voter": "borran", - "rshares": "11539993041" + "rshares": "11539993041", + "voter": "borran" }, { - "voter": "bledarus", - "rshares": "3851639124" + "rshares": "3851639124", + "voter": "bledarus" }, { - "voter": "pat.flynn", - "rshares": "1178246621" + "rshares": "1178246621", + "voter": "pat.flynn" }, { - "voter": "loli", - "rshares": "52467942" + "rshares": "52467942", + "voter": "loli" }, { - "voter": "miacats", - "rshares": "91473229819" + "rshares": "91473229819", + "voter": "miacats" }, { - "voter": "mattmarshall", - "rshares": "1223581698" + "rshares": "1223581698", + "voter": "mattmarshall" }, { - "voter": "timothysykes", - "rshares": "437783005" + "rshares": "437783005", + "voter": "timothysykes" }, { - "voter": "patflynn", - "rshares": "106860965" + "rshares": "106860965", + "voter": "patflynn" }, { - "voter": "jarvis", - "rshares": "56157882" + "rshares": "56157882", + "voter": "jarvis" }, { - "voter": "microluck", - "rshares": "561462512" + "rshares": "561462512", + "voter": "microluck" }, { - "voter": "andrewsullivan", - "rshares": "896991635" + "rshares": "896991635", + "voter": "andrewsullivan" }, { - "voter": "razberrijam", - "rshares": "77220767" + "rshares": "77220767", + "voter": "razberrijam" }, { - "voter": "fortuner", - "rshares": "54313084" + "rshares": "54313084", + "voter": "fortuner" }, { - "voter": "chinadaily", - "rshares": "2005426994" + "rshares": "2005426994", + "voter": "chinadaily" }, { - "voter": "kyriacos", - "rshares": "9358481880" + "rshares": "9358481880", + "voter": "kyriacos" }, { - "voter": "virtualgrowth", - "rshares": "2859735634" + "rshares": "2859735634", + "voter": "virtualgrowth" }, { - "voter": "thegoldencookie", - "rshares": "122302767" + "rshares": "122302767", + "voter": "thegoldencookie" }, { - "voter": "runaway-psyche", - "rshares": "20137065264" + "rshares": "20137065264", + "voter": "runaway-psyche" }, { - "voter": "dollarvigilante", - "rshares": "755831094058" + "rshares": "755831094058", + "voter": "dollarvigilante" }, { - "voter": "workout", - "rshares": "61087248" + "rshares": "61087248", + "voter": "workout" }, { - "voter": "harvey.levin", - "rshares": "489129872" + "rshares": "489129872", + "voter": "harvey.levin" }, { - "voter": "mihaiart", - "rshares": "23586282706" + "rshares": "23586282706", + "voter": "mihaiart" }, { - "voter": "gvargas123", - "rshares": "10341757518" + "rshares": "10341757518", + "voter": "gvargas123" }, { - "voter": "johnbyrd", - "rshares": "53056158" + "rshares": "53056158", + "voter": "johnbyrd" }, { - "voter": "thomasaustin", - "rshares": "53039566" + "rshares": "53039566", + "voter": "thomasaustin" }, { - "voter": "thermor", - "rshares": "53037689" + "rshares": "53037689", + "voter": "thermor" }, { - "voter": "ficholl", - "rshares": "53048942" + "rshares": "53048942", + "voter": "ficholl" }, { - "voter": "widell", - "rshares": "53030738" + "rshares": "53030738", + "voter": "widell" }, { - "voter": "icfiedler", - "rshares": "86340173624" + "rshares": "86340173624", + "voter": "icfiedler" }, { - "voter": "laconicflow", - "rshares": "1266977190" + "rshares": "1266977190", + "voter": "laconicflow" }, { - "voter": "revelbrooks", - "rshares": "52651308" + "rshares": "52651308", + "voter": "revelbrooks" }, { - "voter": "mrlogic", - "rshares": "377542979" + "rshares": "377542979", + "voter": "mrlogic" }, { - "voter": "rand.fishkin", - "rshares": "194739083" + "rshares": "194739083", + "voter": "rand.fishkin" }, { - "voter": "bitchplease", - "rshares": "50816343" + "rshares": "50816343", + "voter": "bitchplease" }, { - "voter": "joelbow", - "rshares": "78411391" + "rshares": "78411391", + "voter": "joelbow" }, { - "voter": "onetree", - "rshares": "8673217231" + "rshares": "8673217231", + "voter": "onetree" }, { - "voter": "imag1ne", - "rshares": "3071905413" + "rshares": "3071905413", + "voter": "imag1ne" }, { - "voter": "mandibil", - "rshares": "64111934444" + "rshares": "64111934444", + "voter": "mandibil" }, { - "voter": "curpose", - "rshares": "51562255" + "rshares": "51562255", + "voter": "curpose" }, { - "voter": "lenar", - "rshares": "1208491149" + "rshares": "1208491149", + "voter": "lenar" }, { - "voter": "lesliestarrohara", - "rshares": "9818184488" + "rshares": "9818184488", + "voter": "lesliestarrohara" }, { - "voter": "shenanigator", - "rshares": "112927371731" + "rshares": "112927371731", + "voter": "shenanigator" }, { - "voter": "macksby", - "rshares": "14779778251" + "rshares": "14779778251", + "voter": "macksby" }, { - "voter": "uziriel", - "rshares": "85972582" + "rshares": "85972582", + "voter": "uziriel" }, { - "voter": "funkywanderer", - "rshares": "2080022045" + "rshares": "2080022045", + "voter": "funkywanderer" }, { - "voter": "linzo", - "rshares": "1485475073" + "rshares": "1485475073", + "voter": "linzo" }, { - "voter": "richardcrill", - "rshares": "4899042813" + "rshares": "4899042813", + "voter": "richardcrill" }, { - "voter": "jeremyfromwi", - "rshares": "2205784762" + "rshares": "2205784762", + "voter": "jeremyfromwi" }, { - "voter": "eight-rad", - "rshares": "1688038542" + "rshares": "1688038542", + "voter": "eight-rad" }, { - "voter": "troich", - "rshares": "51712804" + "rshares": "51712804", + "voter": "troich" }, { - "voter": "davidjkelley", - "rshares": "1624641270" + "rshares": "1624641270", + "voter": "davidjkelley" }, { - "voter": "team101", - "rshares": "187911420" + "rshares": "187911420", + "voter": "team101" }, { - "voter": "crion", - "rshares": "51718188" + "rshares": "51718188", + "voter": "crion" }, { - "voter": "hitherise", - "rshares": "52505412" + "rshares": "52505412", + "voter": "hitherise" }, { - "voter": "wiss", - "rshares": "52496656" + "rshares": "52496656", + "voter": "wiss" }, { - "voter": "ghasemkiani", - "rshares": "13264756693" + "rshares": "13264756693", + "voter": "ghasemkiani" }, { - "voter": "sponge-bob", - "rshares": "906163750" + "rshares": "906163750", + "voter": "sponge-bob" }, { - "voter": "l0k1", - "rshares": "4545785145" + "rshares": "4545785145", + "voter": "l0k1" }, { - "voter": "digital-wisdom", - "rshares": "15223303760" + "rshares": "15223303760", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3708921137" + "rshares": "3708921137", + "voter": "ethical-ai" }, { - "voter": "freesteem", - "rshares": "50784892" + "rshares": "50784892", + "voter": "freesteem" }, { - "voter": "jamespro", - "rshares": "54391689" + "rshares": "54391689", + "voter": "jamespro" }, { - "voter": "stroully", - "rshares": "53252658" + "rshares": "53252658", + "voter": "stroully" }, { - "voter": "maryfromsochi", - "rshares": "3079499780" + "rshares": "3079499780", + "voter": "maryfromsochi" }, { - "voter": "jwaser", - "rshares": "6679259372" + "rshares": "6679259372", + "voter": "jwaser" }, { - "voter": "thadm", - "rshares": "51814474" + "rshares": "51814474", + "voter": "thadm" }, { - "voter": "prof", - "rshares": "51812703" + "rshares": "51812703", + "voter": "prof" }, { - "voter": "crypt0mine", - "rshares": "1330526017" + "rshares": "1330526017", + "voter": "crypt0mine" }, { - "voter": "kev7000", - "rshares": "646493719" + "rshares": "646493719", + "voter": "kev7000" }, { - "voter": "zettar", - "rshares": "1042750516" + "rshares": "1042750516", + "voter": "zettar" }, { - "voter": "yorsens", - "rshares": "51465774" + "rshares": "51465774", + "voter": "yorsens" }, { - "voter": "harveylevin", - "rshares": "177656553" + "rshares": "177656553", + "voter": "harveylevin" }, { - "voter": "chaeya", - "rshares": "1129213184" + "rshares": "1129213184", + "voter": "chaeya" }, { - "voter": "bane", - "rshares": "51154263" + "rshares": "51154263", + "voter": "bane" }, { - "voter": "vive", - "rshares": "51148009" + "rshares": "51148009", + "voter": "vive" }, { - "voter": "coad", - "rshares": "51142585" + "rshares": "51142585", + "voter": "coad" }, { - "voter": "analyzethis", - "rshares": "50931848" + "rshares": "50931848", + "voter": "analyzethis" }, { - "voter": "bwaser", - "rshares": "2615973485" + "rshares": "2615973485", + "voter": "bwaser" }, { - "voter": "sofa", - "rshares": "53003720" + "rshares": "53003720", + "voter": "sofa" }, { - "voter": "lilmisjenn", - "rshares": "2563669906" + "rshares": "2563669906", + "voter": "lilmisjenn" }, { - "voter": "gary.vaynerchuk", - "rshares": "122884931" + "rshares": "122884931", + "voter": "gary.vaynerchuk" }, { - "voter": "panther", - "rshares": "344116052" + "rshares": "344116052", + "voter": "panther" }, { - "voter": "alina1", - "rshares": "2201645172" + "rshares": "2201645172", + "voter": "alina1" }, { - "voter": "doggnostic", - "rshares": "50639382" + "rshares": "50639382", + "voter": "doggnostic" }, { - "voter": "ct-gurus", - "rshares": "689550675" + "rshares": "689550675", + "voter": "ct-gurus" }, { - "voter": "jenny-talls", - "rshares": "50377764" + "rshares": "50377764", + "voter": "jenny-talls" }, { - "voter": "tracemayer", - "rshares": "63519834123" + "rshares": "63519834123", + "voter": "tracemayer" }, { - "voter": "brains", - "rshares": "905064441" + "rshares": "905064441", + "voter": "brains" }, { - "voter": "ailo", - "rshares": "51994517" + "rshares": "51994517", + "voter": "ailo" }, { - "voter": "steemafon", - "rshares": "1339423728" + "rshares": "1339423728", + "voter": "steemafon" }, { - "voter": "chick1", - "rshares": "5610795642" + "rshares": "5610795642", + "voter": "chick1" }, { - "voter": "typingagent", - "rshares": "50516543" + "rshares": "50516543", + "voter": "typingagent" }, { - "voter": "nelyp", - "rshares": "519729361" + "rshares": "519729361", + "voter": "nelyp" }, { - "voter": "anomaly", - "rshares": "328506462" + "rshares": "328506462", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2400090637" + "rshares": "2400090637", + "voter": "ellepdub" }, { - "voter": "rynow", - "rshares": "113405722" + "rshares": "113405722", + "voter": "rynow" }, { - "voter": "honeyscribe", - "rshares": "89841354699" + "rshares": "89841354699", + "voter": "honeyscribe" }, { - "voter": "timothy.sykes", - "rshares": "51415300" + "rshares": "51415300", + "voter": "timothy.sykes" }, { - "voter": "inarix03", - "rshares": "61292139" + "rshares": "61292139", + "voter": "inarix03" }, { - "voter": "ola1", - "rshares": "218488504" + "rshares": "218488504", + "voter": "ola1" }, { - "voter": "jbaker585", - "rshares": "832905434" + "rshares": "832905434", + "voter": "jbaker585" }, { - "voter": "herpetologyguy", - "rshares": "11803842421" + "rshares": "11803842421", + "voter": "herpetologyguy" }, { - "voter": "storyseeker", - "rshares": "28099831450" + "rshares": "28099831450", + "voter": "storyseeker" }, { - "voter": "eavy", - "rshares": "51470533" + "rshares": "51470533", + "voter": "eavy" }, { - "voter": "roto", - "rshares": "51484593" + "rshares": "51484593", + "voter": "roto" }, { - "voter": "drac59", - "rshares": "51659688" + "rshares": "51659688", + "voter": "drac59" }, { - "voter": "everittdmickey", - "rshares": "54632106" + "rshares": "54632106", + "voter": "everittdmickey" }, { - "voter": "zombiedoll", - "rshares": "780018003" + "rshares": "780018003", + "voter": "zombiedoll" }, { - "voter": "morgan.waser", - "rshares": "4709614494" + "rshares": "4709614494", + "voter": "morgan.waser" }, { - "voter": "cfisher", - "rshares": "50602980" + "rshares": "50602980", + "voter": "cfisher" }, { - "voter": "autodesk", - "rshares": "50794039" + "rshares": "50794039", + "voter": "autodesk" }, { - "voter": "ardly", - "rshares": "50708837" + "rshares": "50708837", + "voter": "ardly" }, { - "voter": "twistys", - "rshares": "50536471" + "rshares": "50536471", + "voter": "twistys" }, { - "voter": "bapparabi", - "rshares": "1822707064" + "rshares": "1822707064", + "voter": "bapparabi" }, { - "voter": "friends", - "rshares": "50532230" + "rshares": "50532230", + "voter": "friends" }, { - "voter": "opticalillusions", - "rshares": "50487909" + "rshares": "50487909", + "voter": "opticalillusions" }, { - "voter": "strong-ai", - "rshares": "3607671121" + "rshares": "3607671121", + "voter": "strong-ai" }, { - "voter": "grisha-danunaher", - "rshares": "516306089" + "rshares": "516306089", + "voter": "grisha-danunaher" }, { - "voter": "igtes", - "rshares": "72826233" + "rshares": "72826233", + "voter": "igtes" }, { - "voter": "dikanevroman", - "rshares": "705838377" + "rshares": "705838377", + "voter": "dikanevroman" }, { - "voter": "buffett", - "rshares": "144899746" + "rshares": "144899746", + "voter": "buffett" }, { - "voter": "uct", - "rshares": "162925257" + "rshares": "162925257", + "voter": "uct" }, { - "voter": "allianz", - "rshares": "162904624" + "rshares": "162904624", + "voter": "allianz" }, { - "voter": "witchcraftblog", - "rshares": "408141953" + "rshares": "408141953", + "voter": "witchcraftblog" }, { - "voter": "acute", - "rshares": "161205518" + "rshares": "161205518", + "voter": "acute" }, { - "voter": "pyro", - "rshares": "157931180" + "rshares": "157931180", + "voter": "pyro" }, { - "voter": "realtime", - "rshares": "157801695" + "rshares": "157801695", + "voter": "realtime" }, { - "voter": "james1987", - "rshares": "304039381" + "rshares": "304039381", + "voter": "james1987" }, { - "voter": "electronicarts", - "rshares": "160870736" + "rshares": "160870736", + "voter": "electronicarts" }, { - "voter": "dresden", - "rshares": "1606766770" + "rshares": "1606766770", + "voter": "dresden" }, { - "voter": "mgibson", - "rshares": "201362779" + "rshares": "201362779", + "voter": "mgibson" }, { - "voter": "food-creator", - "rshares": "152057481" + "rshares": "152057481", + "voter": "food-creator" }, { - "voter": "benetton", - "rshares": "159531007" + "rshares": "159531007", + "voter": "benetton" }, { - "voter": "jasonxg", - "rshares": "154417232" + "rshares": "154417232", + "voter": "jasonxg" }, { - "voter": "bosch", - "rshares": "159387371" + "rshares": "159387371", + "voter": "bosch" }, { - "voter": "sherlockcupid", - "rshares": "4918101052" + "rshares": "4918101052", + "voter": "sherlockcupid" }, { - "voter": "cream", - "rshares": "158632601" + "rshares": "158632601", + "voter": "cream" }, { - "voter": "thomasp", - "rshares": "158326081" + "rshares": "158326081", + "voter": "thomasp" }, { - "voter": "dealzgal", - "rshares": "74838700" + "rshares": "74838700", + "voter": "dealzgal" }, { - "voter": "mrshanson", - "rshares": "154959539" + "rshares": "154959539", + "voter": "mrshanson" }, { - "voter": "storage", - "rshares": "83470968" + "rshares": "83470968", + "voter": "storage" }, { - "voter": "aldentan", - "rshares": "329629477" + "rshares": "329629477", + "voter": "aldentan" }, { - "voter": "blackmarket", - "rshares": "67690648" + "rshares": "67690648", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "73837045" + "rshares": "73837045", + "voter": "gifts" }, { - "voter": "paulocouto", - "rshares": "112446078" + "rshares": "112446078", + "voter": "paulocouto" }, { - "voter": "countofdelphi", - "rshares": "151927362" + "rshares": "151927362", + "voter": "countofdelphi" }, { - "voter": "newsfeed", - "rshares": "151062983" + "rshares": "151062983", + "voter": "newsfeed" }, { - "voter": "sambkf", - "rshares": "154022998" + "rshares": "154022998", + "voter": "sambkf" }, { - "voter": "sawgunner13", - "rshares": "144957585" + "rshares": "144957585", + "voter": "sawgunner13" }, { - "voter": "dirlei.sdias", - "rshares": "144801473" + "rshares": "144801473", + "voter": "dirlei.sdias" }, { - "voter": "trickster512", - "rshares": "150387842" + "rshares": "150387842", + "voter": "trickster512" } ], - "author_reputation": 66.97, - "stats": { - "hide": false, - "gray": false, - "total_votes": 492, - "flag_weight": 0.0 - }, + "author": "fairytalelife", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/health/@fairytalelife/the-prison-of-depression", - "blacklists": [] - }, - { - "post_id": 959438, - "author": "powerup", - "permlink": "17-steem-tools-every-steemian-needs-to-know", - "category": "infographic", - "title": "Steem Tools Every Steemian Needs To Know (Infographic)", - "body": "So far, a great number of applications, or tools that can considerably improve our user experience whether we are old users or new, has been created. The application directory created by @roelandp is accepted as an official directory that currently contains more than 80 various tools, mainly created by the community members, with a few official ones. The number of applications is growing rapidly, thanks to talented developers and other users, whose ideas are being converted into functional programs.\n\nHere, I want to introduce you to an infographic that contains 17 very useful tools singled out and sorted into categories according to their use. The first category 'for new and old users' contains essential applications for most users, including applications such as the official chat server and block explorer, as well as a dedicated service for uninterrupted adding of photos, @jesta's tool for easier tracking of data related to your account, and a tool for real-time Steem Backed Dollar conversion, with a few extra applications included in the service.\n\nThe next group contains the applications essential for developers, led by @xeroc's piston which says for itself 'The Swiff Army Knife for the Steem network'. They facilitate the communication with the steem blockchain and there is also an application that facilitates the integration of Steem payments to your service. \n\nThe Miscellaneous group contains a variety of useful applications such as tools for curators, a precise browser of user reputation, a dedicated tool for creating shortened links with statistics, a Steem Stream display of all activity in real time with an option of adjusting your settings, as well as speech community and radio.\n\nLast group are applications in the category of data and analytics that contain most of data about the network, the network activity and the users. \n\nI apologize in advance if some of your favorite applications have been left out; if that is the case, you can always visit http://SteemTools.com which contains all the applications.\n\n*For a clearer view, it is recommended that you open the image in full resolution.* *[Infographic Hotlink!](http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png)*\nhttps://s11.postimg.io/8uxamnavn/revision_02.png\n---\n ![http://steemit.com/@powerup](https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png)", + "blacklists": [], + "body": "\n

\n

Do you want to know what depression feels like? 

\n

Think of a foggy grey muck that encircles you head to toe. Severe depression strips you from being able to experience any joy in life, even when for all the world it appears you have everything going for you.   Watered down commentaries attempt to describe the soul rotting misery of waking up in darkness every day. Who are those who can bolt out of bed ready to face the day with their happy attitudes about life? I don\u2019t know. I\u2019ve never been one. I dread waking up. One of the things really depressed people look forward to is a respite from consciousness. This is why those who suffer tend to sleep so much. It\u2019s escapism. Yet it isn\u2019t, because even in sleep you can be terrorized by your daytime demons. The quality of sleep is not restful \u2013 in fact, rather fitful. This is one reason so many people take mind-numbing tranquilizers to dull their wakeful state just to be able to drift away to somewhere, anywhere else than the dangerous and unchecked arena of the mind.    

\n

People experience the tiers of depression's challenges in different ways. It\u2019s not being disappointed or being in a bad mood if something doesn\u2019t pan out in your favor. You chipped you manicure? Bugger. Irritating, yes, but it\u2019s not the end of the world. For a depressed person,  something minor (for whatever reason) can hurl you head first into a bottomless void of regret and agony. You associate daily life with walking through a minefield. Danger lurks with every step. That ad for an antidepressant that shows a cartoon figure walking around under her own cloud of rain sums up the feeling quite well (of course it does \u2013 sponsored by The Pharmaceutical Cartel). You NEED this drug to function. That\u2019s another post, and I know far too well how drugs are touted as the magic solution. Not even children are safe from their campaigns.

\n

\n

It\u2019s the ultimate mind-fuck factory, this thought prison that leads you through Dante\u2019s circles of hell as you try to scramble your way out of the snake pit. The thoughts pull you back in by your ankles. Like a horror movie, the entity of depression knows what scares you. It knows what makes you wail in despair. It knows your saddest thoughts and flashes those across the movie screen in your head in incessant reruns. You are a spectator, but unable to avert your eyes.   

\n

You have things to do? Most can buck up and get 'er done. A very depressed person knows what must be done yet can\u2019t do it. Cannot. It\u2019s not possible. It has nothing to do with laziness and everything to do with apathy. The effort isn\u2019t worth it. You know you will feel better if such and such gets done. So the obvious solution is to do it. You have errands to run? Get in the car and go. But for a depressed person, the mundane becomes detestable to such an extent that not even the guilt for not doing the things is unable to motivate you enough to accomplish what is impossible in your mind.   

\n

\n

Once while touring Alcatraz, I was struck by something the tour guide told us. The island is positioned in just the right way that all the prisoners could smell the Ghirardelli chocolate factory wafting its chocolate scent across the bay, no doubt driving inmates insane. This is much like depression. You are stuck in a jail cell knowing everyone else is living happily while you miss out on what you know (on some level) is a gift \u2013 life itself. You can only observe from afar.    

\n

You know those days when you feel like a sloth and nothing gets done? For many depressed people that\u2019s every day. By getting nothing done I don\u2019t mean cleaning out the refrigerator or reading a book your friend needs back. I mean responsibilities you must accept as an adult, as a parent. You can\u2019t function. Your kids are hungry, but you can\u2019t do anything about it because you can\u2019t move. You have an empty stare and wonder if it\u2019s too early for a drink. It\u2019s only one in the afternoon. Can it be justified?    

\n

And you can\u2019t stop seeing those stories about the Yulin dog meat festival. This is horrible because an animal suffering is the worst thing in the world to me. Or those commercials by the SPCA. The thoughts hit hard, bating me. \u201cUh oh! She\u2019s making some progress \u2013 what is she sad about? Let\u2019s infect.\u201d Self-sabotage is the name of the game. For a depressed person, thoughts take over and pollute your whole mind.   

\n

You hope you will feel better tomorrow, or someday. You keep saying someday. But that wastes away today. You hide from friends and family because the idea of faking a smile is akin to torture. And you think no one cares about your problems. Or they are tired of hearing about them because they are always the same.   Your brain is wired differently. Some of the most creative genius comes from a desolate mental state. It can, but only If you can get any mental energy together to be productive.   

\n

Your friends email you cures for migraines. You have had to invent numerous excuses that involve having them, because that\u2019s a reasonable excuse to cancel plans. Saying you\u2019re sad or not in the mood will get \u201cI\u2019ll cheer you up\u201d from well-meaning friends and family. But you want to be alone, completely isolated, in bed, with the covers pulled up over your head. And you want to cry. And I don\u2019t mean a few tears. I mean heart-wrenching sobs that no one would want to hear.   

\n

You yell at people you love. You cry easily. They can\u2019t help you but they can sure piss you off. And we are pissed at ourselves, because children have needs that must be met -no question about it. And you know are letting them down with your suffering. Another blow.   We do not feel sorry for ourselves in the traditional sense. We do feel sorry that we can\u2019t get a grip as we are often told to do. We feel guilty for letting others down who matter as they stand by helpless, completely befuddled about their roles in all of this. They feel responsible You want to convey it\u2019s not them or their fault, but they start to not believe you. It\u2019s no one\u2019s fault. It simply is.   

\n

Some days are easier than others. I often do well when the stars align - deceptively so, or maybe not deceptive. Maybe I am getting a handle on this curse. It\u2019s a constant roller coaster of wondering when the happy cart will upturn and everything you manage to put in there (composure, self-esteem, productivity) scatters across the road. And cars are coming, but you have to try to summon up the ability to put them back in and continue on your journey. It\u2019s like you are that one slow car on a hill that everyone zips past because they don\u2019t carry the burden of your load.   

\n

Is life a beautiful thing? Yes. It is. Is it filled with sadness? Yes to that too. Can a depressed person overcome depression? I think so. But in order to answer that, you must be willing to look at your origins to discover what might be holding you back.         

\n

\n

Drawings and painting \u00a9 Johanna Westerman 2016  

\n


\n", + "category": "health", + "children": 44, + "created": "2016-09-14T17:46:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "infographic", - "steemit", - "steem", - "steemsquad", - "minnowsunite" - ], - "users": [ - "roelandp", - "jesta", - "xeroc" - ], "image": [ - "https://s11.postimg.io/8uxamnavn/revision_02.png", - "https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png" + "https://www.steemimg.com/images/2016/09/14/HeadlessHoreseman-medium2d3b42.png", + "https://www.steemimg.com/images/2016/09/14/Brain1b12cc.jpg", + "https://www.steemimg.com/images/2016/09/14/Blanche134386.jpg", + "https://www.steemimg.com/images/2016/09/14/HeadlessHoreseman96dd9.jpg" ], - "links": [ - "http://SteemTools.com", - "http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png" + "tags": [ + "health", + "art", + "illustration", + "life" ] }, - "created": "2016-09-15T16:45:09", - "updated": "2016-09-15T18:45:09", - "depth": 0, - "children": 6, - "net_rshares": 53802622776333, - "is_paidout": false, - "payout_at": "2016-09-16T17:20:12", - "payout": 171.268, - "pending_payout_value": "171.268 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 120989205660828, + "payout": 832.556, + "payout_at": "2016-09-21T17:46:30", + "pending_payout_value": "832.556 HBD", + "percent_hbd": 10000, + "permlink": "the-prison-of-depression", + "post_id": 1245264, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 492 + }, + "title": "The Prison of Depression", + "updated": "2016-09-14T19:14:27", + "url": "/health/@fairytalelife/the-prison-of-depression" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231806896049" + "rshares": "231806896049", + "voter": "anonymous" }, { - "voter": "blocktrades", - "rshares": "40039727156805" + "rshares": "40039727156805", + "voter": "blocktrades" }, { - "voter": "friend5", - "rshares": "81139043695" + "rshares": "81139043695", + "voter": "friend5" }, { - "voter": "kushed", - "rshares": "5563642779143" + "rshares": "5563642779143", + "voter": "kushed" }, { - "voter": "roadscape", - "rshares": "4361056998354" + "rshares": "4361056998354", + "voter": "roadscape" }, { - "voter": "by24seven", - "rshares": "11463456159" + "rshares": "11463456159", + "voter": "by24seven" }, { - "voter": "twiceuponatime", - "rshares": "48198557404" + "rshares": "48198557404", + "voter": "twiceuponatime" }, { - "voter": "indominon", - "rshares": "253716125229" + "rshares": "253716125229", + "voter": "indominon" }, { - "voter": "vault", - "rshares": "72048644865" + "rshares": "72048644865", + "voter": "vault" }, { - "voter": "wpalczynski", - "rshares": "22916314085" + "rshares": "22916314085", + "voter": "wpalczynski" }, { - "voter": "nikolai", - "rshares": "23645584002" + "rshares": "23645584002", + "voter": "nikolai" }, { - "voter": "chris4210", - "rshares": "143164562367" + "rshares": "143164562367", + "voter": "chris4210" }, { - "voter": "acidyo", - "rshares": "24193131603" + "rshares": "24193131603", + "voter": "acidyo" }, { - "voter": "coar", - "rshares": "313691550" + "rshares": "313691550", + "voter": "coar" }, { - "voter": "murh", - "rshares": "1061234978" + "rshares": "1061234978", + "voter": "murh" }, { - "voter": "ratel", - "rshares": "33781972641" + "rshares": "33781972641", + "voter": "ratel" }, { - "voter": "kimziv", - "rshares": "208364758717" + "rshares": "208364758717", + "voter": "kimziv" }, { - "voter": "venuspcs", - "rshares": "45145254362" + "rshares": "45145254362", + "voter": "venuspcs" }, { - "voter": "getssidetracked", - "rshares": "7264907621" + "rshares": "7264907621", + "voter": "getssidetracked" }, { - "voter": "trees", - "rshares": "1414199127" + "rshares": "1414199127", + "voter": "trees" }, { - "voter": "strawhat", - "rshares": "197179742" + "rshares": "197179742", + "voter": "strawhat" }, { - "voter": "endgame", - "rshares": "844421054" + "rshares": "844421054", + "voter": "endgame" }, { - "voter": "furion", - "rshares": "118094280271" + "rshares": "118094280271", + "voter": "furion" }, { - "voter": "steem1653", - "rshares": "2834923420" + "rshares": "2834923420", + "voter": "steem1653" }, { - "voter": "sitaru", - "rshares": "13516878845" + "rshares": "13516878845", + "voter": "sitaru" }, { - "voter": "incomemonthly", - "rshares": "3735950544" + "rshares": "3735950544", + "voter": "incomemonthly" }, { - "voter": "cryptosi", - "rshares": "6392090406" + "rshares": "6392090406", + "voter": "cryptosi" }, { - "voter": "nabilov", - "rshares": "243749878708" + "rshares": "243749878708", + "voter": "nabilov" }, { - "voter": "luisucv34", - "rshares": "677892916" + "rshares": "677892916", + "voter": "luisucv34" }, { - "voter": "creemej", - "rshares": "34761252099" + "rshares": "34761252099", + "voter": "creemej" }, { - "voter": "blueorgy", - "rshares": "167304333801" + "rshares": "167304333801", + "voter": "blueorgy" }, { - "voter": "poseidon", - "rshares": "4545098461" + "rshares": "4545098461", + "voter": "poseidon" }, { - "voter": "celsius100", - "rshares": "41053239884" + "rshares": "41053239884", + "voter": "celsius100" }, { - "voter": "tokyodude", - "rshares": "1659490970" + "rshares": "1659490970", + "voter": "tokyodude" }, { - "voter": "mysteem", - "rshares": "128098702" + "rshares": "128098702", + "voter": "mysteem" }, { - "voter": "chloetaylor", - "rshares": "6168588588" + "rshares": "6168588588", + "voter": "chloetaylor" }, { - "voter": "sisterholics", - "rshares": "34309889652" + "rshares": "34309889652", + "voter": "sisterholics" }, { - "voter": "reported", - "rshares": "59017018" + "rshares": "59017018", + "voter": "reported" }, { - "voter": "krushing", - "rshares": "55047214" + "rshares": "55047214", + "voter": "krushing" }, { - "voter": "laonie", - "rshares": "1213316718415" + "rshares": "1213316718415", + "voter": "laonie" }, { - "voter": "rawnetics", - "rshares": "21929710586" + "rshares": "21929710586", + "voter": "rawnetics" }, { - "voter": "myfirst", - "rshares": "41307699258" + "rshares": "41307699258", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "246282932283" + "rshares": "246282932283", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "9450611021" + "rshares": "9450611021", + "voter": "flysaga" }, { - "voter": "minnowsunited", - "rshares": "513541455" + "rshares": "513541455", + "voter": "minnowsunited" }, { - "voter": "midnightoil", - "rshares": "54405663387" + "rshares": "54405663387", + "voter": "midnightoil" }, { - "voter": "whatyouganjado", - "rshares": "54018085" + "rshares": "54018085", + "voter": "whatyouganjado" }, { - "voter": "xiaohui", - "rshares": "136080800992" + "rshares": "136080800992", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "6792049578" + "rshares": "6792049578", + "voter": "elfkitchen" }, { - "voter": "makaveli", - "rshares": "61187902" + "rshares": "61187902", + "voter": "makaveli" }, { - "voter": "xiaokongcom", - "rshares": "4366196499" + "rshares": "4366196499", + "voter": "xiaokongcom" }, { - "voter": "thebotkiller", - "rshares": "7475701368" + "rshares": "7475701368", + "voter": "thebotkiller" }, { - "voter": "xianjun", - "rshares": "8801500509" + "rshares": "8801500509", + "voter": "xianjun" }, { - "voter": "borran", - "rshares": "11292536945" + "rshares": "11292536945", + "voter": "borran" }, { - "voter": "alexbones", - "rshares": "53669860" + "rshares": "53669860", + "voter": "alexbones" }, { - "voter": "microluck", - "rshares": "576331905" + "rshares": "576331905", + "voter": "microluck" }, { - "voter": "stevescoins", - "rshares": "1310823380" + "rshares": "1310823380", + "voter": "stevescoins" }, { - "voter": "macartem", - "rshares": "3089652212" + "rshares": "3089652212", + "voter": "macartem" }, { - "voter": "gvargas123", - "rshares": "10344891579" + "rshares": "10344891579", + "voter": "gvargas123" }, { - "voter": "nang1", - "rshares": "156958768" + "rshares": "156958768", + "voter": "nang1" }, { - "voter": "kamil5", - "rshares": "166282713" + "rshares": "166282713", + "voter": "kamil5" }, { - "voter": "dobbydaba", - "rshares": "51156498" + "rshares": "51156498", + "voter": "dobbydaba" }, { - "voter": "trev", - "rshares": "5950976762" + "rshares": "5950976762", + "voter": "trev" }, { - "voter": "craigwilliamz", - "rshares": "8773942171" + "rshares": "8773942171", + "voter": "craigwilliamz" }, { - "voter": "ozertayiz", - "rshares": "72624506" + "rshares": "72624506", + "voter": "ozertayiz" }, { - "voter": "salebored", - "rshares": "53639497" + "rshares": "53639497", + "voter": "salebored" }, { - "voter": "freeinthought", - "rshares": "736031742" + "rshares": "736031742", + "voter": "freeinthought" }, { - "voter": "arnoldz61", - "rshares": "63258691" + "rshares": "63258691", + "voter": "arnoldz61" }, { - "voter": "eight-rad", - "rshares": "2101747450" + "rshares": "2101747450", + "voter": "eight-rad" }, { - "voter": "bitdrone", - "rshares": "53681172" + "rshares": "53681172", + "voter": "bitdrone" }, { - "voter": "sleepcult", - "rshares": "53672498" + "rshares": "53672498", + "voter": "sleepcult" }, { - "voter": "apparat", - "rshares": "54175638" + "rshares": "54175638", + "voter": "apparat" }, { - "voter": "doitvoluntarily", - "rshares": "12276570645" + "rshares": "12276570645", + "voter": "doitvoluntarily" }, { - "voter": "thecyclist", - "rshares": "135393340675" + "rshares": "135393340675", + "voter": "thecyclist" }, { - "voter": "analyzethis", - "rshares": "52015504" + "rshares": "52015504", + "voter": "analyzethis" }, { - "voter": "freebornangel", - "rshares": "63904547" + "rshares": "63904547", + "voter": "freebornangel" }, { - "voter": "nommo", - "rshares": "52154065" + "rshares": "52154065", + "voter": "nommo" }, { - "voter": "f1111111", - "rshares": "51261721" + "rshares": "51261721", + "voter": "f1111111" }, { - "voter": "anomaly", - "rshares": "339287005" + "rshares": "339287005", + "voter": "anomaly" }, { - "voter": "ola1", - "rshares": "98545946" + "rshares": "98545946", + "voter": "ola1" }, { - "voter": "mari5555na", - "rshares": "63588518" + "rshares": "63588518", + "voter": "mari5555na" }, { - "voter": "powerup", - "rshares": "2996735269" + "rshares": "2996735269", + "voter": "powerup" }, { - "voter": "grisha-danunaher", - "rshares": "527464783" + "rshares": "527464783", + "voter": "grisha-danunaher" }, { - "voter": "zapply", - "rshares": "161974443" + "rshares": "161974443", + "voter": "zapply" }, { - "voter": "jyriygo", - "rshares": "158561921" + "rshares": "158561921", + "voter": "jyriygo" }, { - "voter": "bleujay", - "rshares": "136494240" + "rshares": "136494240", + "voter": "bleujay" }, { - "voter": "milank", - "rshares": "153397644" + "rshares": "153397644", + "voter": "milank" }, { - "voter": "inkwisitiveguy01", - "rshares": "150273031" + "rshares": "150273031", + "voter": "inkwisitiveguy01" } ], + "author": "powerup", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 88, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/infographic/@powerup/17-steem-tools-every-steemian-needs-to-know", - "blacklists": [] - }, - { - "post_id": 947211, - "author": "steve-walschot", - "permlink": "steempay-upgrade-pay-on-site-or-steemfest-or-mobile-wallet", - "category": "steempay", - "title": "Steempay upgrade - Pay on site | SteemFEST | Mobile wallet", - "body": "# Time for another upgrade of SteemPay.io! A lot of work has been done behind the scenes, and here's a brief overview:\n\n\n---\n\n\n\n\n\n# Pay on site\n\n### Users will be able to make their payments straight from the payments page using a 2 step sliding form. \n\n\n\nhttp://i.imgur.com/iinyGFl.png\n\n\n\nThis means no more need to open another tab page, fill in all the details in your wallet, and returning to SteemPay. Both the password and the active private key can be used to broadcast the transaction. \n\n\n\nSteemPay **does not** encourage password storing, however, there is an option available for those who prefer to save their password in the browser's ***localstorage.*** A warning pop up will appear explaining the risks of storing passwords in the browser.\n\n\n\nAfter a successful login, the user will see a quick overview of his available balances, and another confirmation is required to finalize the transaction straight from the payment window.\n\n\n\n\n\n# Mobile wallet\n\n### The mobile wallet is up and running, but my code seems like a mess due to trial and error. \n\nA **bounty** will be placed for someone to cleanup everything and make some minor corrections so the first version can be released very soon (and get approved on the official android & iOS stores). I feel the need to encourage bounties, so people can become engaged with the community, and hopefully I'll discover new talent to join me on the further expansion of SteemPay.\n\n\n\n# SteemFEST 1\n\nSteemPay will donate some money to SteemFEST 1. Me and @roelandp still need to work out the details, but SteemPay will be present and setup a donation terminal where users are free to send some donations towards the organization by using the mobile wallet with QR support (plans may still change). \n\n\n\n# Hardware upgrade\n\nYet another server upgrade was needed to house all services related to SteemPay. This includes many other side projects that will be announced later on. This should be the final server upgrade for SteemPay and related services. \n\n\n\nThe DNS is still propagating, so you might not see the recent changes on SteemPay.io yet.\n\n\n\n# General statistics implantation\n\nA lightweight database will be kept storing nothing but the transaction amounts processed trough SteemPay. This serves for having some overview on the monthly growth of the transactions, as well as the amounts processed. Every month, the statistics will be published.\n\n\n\n# Steem on!", + "blacklists": [], + "body": "So far, a great number of applications, or tools that can considerably improve our user experience whether we are old users or new, has been created. The application directory created by @roelandp is accepted as an official directory that currently contains more than 80 various tools, mainly created by the community members, with a few official ones. The number of applications is growing rapidly, thanks to talented developers and other users, whose ideas are being converted into functional programs.\n\nHere, I want to introduce you to an infographic that contains 17 very useful tools singled out and sorted into categories according to their use. The first category 'for new and old users' contains essential applications for most users, including applications such as the official chat server and block explorer, as well as a dedicated service for uninterrupted adding of photos, @jesta's tool for easier tracking of data related to your account, and a tool for real-time Steem Backed Dollar conversion, with a few extra applications included in the service.\n\nThe next group contains the applications essential for developers, led by @xeroc's piston which says for itself 'The Swiff Army Knife for the Steem network'. They facilitate the communication with the steem blockchain and there is also an application that facilitates the integration of Steem payments to your service. \n\nThe Miscellaneous group contains a variety of useful applications such as tools for curators, a precise browser of user reputation, a dedicated tool for creating shortened links with statistics, a Steem Stream display of all activity in real time with an option of adjusting your settings, as well as speech community and radio.\n\nLast group are applications in the category of data and analytics that contain most of data about the network, the network activity and the users. \n\nI apologize in advance if some of your favorite applications have been left out; if that is the case, you can always visit http://SteemTools.com which contains all the applications.\n\n*For a clearer view, it is recommended that you open the image in full resolution.* *[Infographic Hotlink!](http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png)*\nhttps://s11.postimg.io/8uxamnavn/revision_02.png\n---\n ![http://steemit.com/@powerup](https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png)", + "category": "infographic", + "children": 6, + "created": "2016-09-15T16:45:09", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { + "image": [ + "https://s11.postimg.io/8uxamnavn/revision_02.png", + "https://img1.steemit.com/0x0/https://resources.sketch.cloud/public/102c8fee-b651-415a-8498-36de3c522b7d.png" + ], + "links": [ + "http://SteemTools.com", + "http://res.cloudinary.com/powerup/image/upload/c_scale,w_1437/v1473957114/revision-02_tdjkik.png" + ], "tags": [ - "steempay", - "steempayments", - "development", - "update" + "infographic", + "steemit", + "steem", + "steemsquad", + "minnowsunite" ], "users": [ - "roelandp" - ], - "image": [ - "http://i.imgur.com/iinyGFl.png" + "roelandp", + "jesta", + "xeroc" ] }, - "created": "2016-09-14T06:19:21", - "updated": "2016-09-14T06:20:42", - "depth": 0, - "children": 14, - "net_rshares": 174333402242155, - "is_paidout": false, - "payout_at": "2016-10-15T13:31:03", - "payout": 1750.818, - "pending_payout_value": "1750.818 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53802622776333, + "payout": 170.17, + "payout_at": "2016-09-22T16:45:09", + "pending_payout_value": "170.170 HBD", + "percent_hbd": 10000, + "permlink": "17-steem-tools-every-steemian-needs-to-know", + "post_id": 1256009, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 88 + }, + "title": "Steem Tools Every Steemian Needs To Know (Infographic)", + "updated": "2016-09-15T18:45:09", + "url": "/infographic/@powerup/17-steem-tools-every-steemian-needs-to-know" + }, + { "active_votes": [ { - "voter": "barrie", - "rshares": "480436179104" + "rshares": "480436179104", + "voter": "barrie" }, { - "voter": "steempty", - "rshares": "7864449914272" + "rshares": "7864449914272", + "voter": "steempty" }, { - "voter": "anonymous", - "rshares": "231705234180" + "rshares": "231705234180", + "voter": "anonymous" }, { - "voter": "rainman", - "rshares": "16854862331350" + "rshares": "16854862331350", + "voter": "rainman" }, { - "voter": "summon", - "rshares": "14446969817383" + "rshares": "14446969817383", + "voter": "summon" }, { - "voter": "ned", - "rshares": "25305686361517" + "rshares": "25305686361517", + "voter": "ned" }, { - "voter": "jamesc", - "rshares": "35326666852152" + "rshares": "35326666852152", + "voter": "jamesc" }, { - "voter": "riverhead", - "rshares": "4264966375681" + "rshares": "4264966375681", + "voter": "riverhead" }, { - "voter": "badassmother", - "rshares": "2331280387575" + "rshares": "2331280387575", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2097108315061" + "rshares": "2097108315061", + "voter": "hr1" }, { - "voter": "sandra", - "rshares": "118474244256" + "rshares": "118474244256", + "voter": "sandra" }, { - "voter": "svk", - "rshares": "186985754668" + "rshares": "186985754668", + "voter": "svk" }, { - "voter": "ihashfury", - "rshares": "1112765112473" + "rshares": "1112765112473", + "voter": "ihashfury" }, { - "voter": "rossco99", - "rshares": "1120603805124" + "rshares": "1120603805124", + "voter": "rossco99" }, { - "voter": "liondani", - "rshares": "139902157720" + "rshares": "139902157720", + "voter": "liondani" }, { - "voter": "wang", - "rshares": "2642718616169" + "rshares": "2642718616169", + "voter": "wang" }, { - "voter": "jaewoocho", - "rshares": "24281627442" + "rshares": "24281627442", + "voter": "jaewoocho" }, { - "voter": "steemit200", - "rshares": "6243689624471" + "rshares": "6243689624471", + "voter": "steemit200" }, { - "voter": "xeroc", - "rshares": "1868926634967" + "rshares": "1868926634967", + "voter": "xeroc" }, { - "voter": "complexring", - "rshares": "6514602351120" + "rshares": "6514602351120", + "voter": "complexring" }, { - "voter": "clayop", - "rshares": "6410652893701" + "rshares": "6410652893701", + "voter": "clayop" }, { - "voter": "witness.svk", - "rshares": "6132075386062" + "rshares": "6132075386062", + "voter": "witness.svk" }, { - "voter": "joseph", - "rshares": "1772458968810" + "rshares": "1772458968810", + "voter": "joseph" }, { - "voter": "au1nethyb1", - "rshares": "4727274896444" + "rshares": "4727274896444", + "voter": "au1nethyb1" }, { - "voter": "recursive2", - "rshares": "494824460005" + "rshares": "494824460005", + "voter": "recursive2" }, { - "voter": "recursive", - "rshares": "3458312417787" + "rshares": "3458312417787", + "voter": "recursive" }, { - "voter": "boombastic", - "rshares": "686881929841" + "rshares": "686881929841", + "voter": "boombastic" }, { - "voter": "mrs.agsexplorer", - "rshares": "91206564426" + "rshares": "91206564426", + "voter": "mrs.agsexplorer" }, { - "voter": "bingo-0", - "rshares": "6953910678" + "rshares": "6953910678", + "voter": "bingo-0" }, { - "voter": "steempower", - "rshares": "1330823260969" + "rshares": "1330823260969", + "voter": "steempower" }, { - "voter": "boatymcboatface", - "rshares": "450758929058" + "rshares": "450758929058", + "voter": "boatymcboatface" }, { - "voter": "cass", - "rshares": "1191961702407" + "rshares": "1191961702407", + "voter": "cass" }, { - "voter": "idol", - "rshares": "10604743495" + "rshares": "10604743495", + "voter": "idol" }, { - "voter": "nexusdev", - "rshares": "6904136925" + "rshares": "6904136925", + "voter": "nexusdev" }, { - "voter": "steemrollin", - "rshares": "783330802369" + "rshares": "783330802369", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "5146683930" + "rshares": "5146683930", + "voter": "sakr" }, { - "voter": "chitty", - "rshares": "296262169682" + "rshares": "296262169682", + "voter": "chitty" }, { - "voter": "linouxis9", - "rshares": "117668471628" + "rshares": "117668471628", + "voter": "linouxis9" }, { - "voter": "unosuke", - "rshares": "82315328878" + "rshares": "82315328878", + "voter": "unosuke" }, { - "voter": "yefet", - "rshares": "3109715701" + "rshares": "3109715701", + "voter": "yefet" }, { - "voter": "brindleswan", - "rshares": "16257411149" + "rshares": "16257411149", + "voter": "brindleswan" }, { - "voter": "jocelyn", - "rshares": "1799714267" + "rshares": "1799714267", + "voter": "jocelyn" }, { - "voter": "nenad-ristic", - "rshares": "74263607249" + "rshares": "74263607249", + "voter": "nenad-ristic" }, { - "voter": "easteagle13", - "rshares": "79806365559" + "rshares": "79806365559", + "voter": "easteagle13" }, { - "voter": "jademont", - "rshares": "17258698670" + "rshares": "17258698670", + "voter": "jademont" }, { - "voter": "eeks", - "rshares": "74888702310" + "rshares": "74888702310", + "voter": "eeks" }, { - "voter": "paco-steem", - "rshares": "508866333" + "rshares": "508866333", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "6128712690" + "rshares": "6128712690", + "voter": "spaninv" }, { - "voter": "instructor2121", - "rshares": "31076852778" + "rshares": "31076852778", + "voter": "instructor2121" }, { - "voter": "james-show", - "rshares": "-12893763252" + "rshares": "-12893763252", + "voter": "james-show" }, { - "voter": "gekko", - "rshares": "2068009075" + "rshares": "2068009075", + "voter": "gekko" }, { - "voter": "teamsteem", - "rshares": "336346989448" + "rshares": "336346989448", + "voter": "teamsteem" }, { - "voter": "nanzo-scoop", - "rshares": "577046508309" + "rshares": "577046508309", + "voter": "nanzo-scoop" }, { - "voter": "fact", - "rshares": "13067769111" + "rshares": "13067769111", + "voter": "fact" }, { - "voter": "steve-walschot", - "rshares": "169323765740" + "rshares": "169323765740", + "voter": "steve-walschot" }, { - "voter": "kefkius", - "rshares": "10036865820" + "rshares": "10036865820", + "voter": "kefkius" }, { - "voter": "hannixx42", - "rshares": "47419915237" + "rshares": "47419915237", + "voter": "hannixx42" }, { - "voter": "mummyimperfect", - "rshares": "183044162935" + "rshares": "183044162935", + "voter": "mummyimperfect" }, { - "voter": "oaldamster", - "rshares": "57489294954" + "rshares": "57489294954", + "voter": "oaldamster" }, { - "voter": "coar", - "rshares": "268804254" + "rshares": "268804254", + "voter": "coar" }, { - "voter": "asch", - "rshares": "109398386804" + "rshares": "109398386804", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1413643352" + "rshares": "1413643352", + "voter": "murh" }, { - "voter": "error", - "rshares": "2380104240" + "rshares": "2380104240", + "voter": "error" }, { - "voter": "marta-zaidel", - "rshares": "5853981249" + "rshares": "5853981249", + "voter": "marta-zaidel" }, { - "voter": "ranko-k", - "rshares": "40916611985" + "rshares": "40916611985", + "voter": "ranko-k" }, { - "voter": "cyber", - "rshares": "1135543735246" + "rshares": "1135543735246", + "voter": "cyber" }, { - "voter": "ak2020", - "rshares": "50798219281" + "rshares": "50798219281", + "voter": "ak2020" }, { - "voter": "billbutler", - "rshares": "260089147904" + "rshares": "260089147904", + "voter": "billbutler" }, { - "voter": "thecryptofiend", - "rshares": "7897515214" + "rshares": "7897515214", + "voter": "thecryptofiend" }, { - "voter": "drinkzya", - "rshares": "32296517134" + "rshares": "32296517134", + "voter": "drinkzya" }, { - "voter": "satoshifund", - "rshares": "3923236237211" + "rshares": "3923236237211", + "voter": "satoshifund" }, { - "voter": "stiletto", - "rshares": "397051543" + "rshares": "397051543", + "voter": "stiletto" }, { - "voter": "juanmiguelsalas", - "rshares": "56682668949" + "rshares": "56682668949", + "voter": "juanmiguelsalas" }, { - "voter": "andrarchy", - "rshares": "583788541552" + "rshares": "583788541552", + "voter": "andrarchy" }, { - "voter": "kenny-crane", - "rshares": "112713462099" + "rshares": "112713462099", + "voter": "kenny-crane" }, { - "voter": "samether", - "rshares": "17036364912" + "rshares": "17036364912", + "voter": "samether" }, { - "voter": "ratel", - "rshares": "33767337247" + "rshares": "33767337247", + "voter": "ratel" }, { - "voter": "thecryptodrive", - "rshares": "54688824107" + "rshares": "54688824107", + "voter": "thecryptodrive" }, { - "voter": "dahaz159", - "rshares": "4699576112" + "rshares": "4699576112", + "voter": "dahaz159" }, { - "voter": "kaylinart", - "rshares": "379204818665" + "rshares": "379204818665", + "voter": "kaylinart" }, { - "voter": "infovore", - "rshares": "552432841732" + "rshares": "552432841732", + "voter": "infovore" }, { - "voter": "facer", - "rshares": "13355491837" + "rshares": "13355491837", + "voter": "facer" }, { - "voter": "trogdor", - "rshares": "263013790227" + "rshares": "263013790227", + "voter": "trogdor" }, { - "voter": "tee-em", - "rshares": "4675654152" + "rshares": "4675654152", + "voter": "tee-em" }, { - "voter": "michaelx", - "rshares": "31336803829" + "rshares": "31336803829", + "voter": "michaelx" }, { - "voter": "mark-waser", - "rshares": "5946252630" + "rshares": "5946252630", + "voter": "mark-waser" }, { - "voter": "albertogm", - "rshares": "17023109715" + "rshares": "17023109715", + "voter": "albertogm" }, { - "voter": "geoffrey", - "rshares": "116594641815" + "rshares": "116594641815", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "42673423694" + "rshares": "42673423694", + "voter": "kimziv" }, { - "voter": "honeythief", - "rshares": "46235030853" + "rshares": "46235030853", + "voter": "honeythief" }, { - "voter": "emily-cook", - "rshares": "82866843499" + "rshares": "82866843499", + "voter": "emily-cook" }, { - "voter": "mctiller", - "rshares": "91972176401" + "rshares": "91972176401", + "voter": "mctiller" }, { - "voter": "cryptoiskey", - "rshares": "35412152853" + "rshares": "35412152853", + "voter": "cryptoiskey" }, { - "voter": "primus", - "rshares": "11723743800" + "rshares": "11723743800", + "voter": "primus" }, { - "voter": "mrhankeh", - "rshares": "484592257" + "rshares": "484592257", + "voter": "mrhankeh" }, { - "voter": "clement", - "rshares": "38897615588" + "rshares": "38897615588", + "voter": "clement" }, { - "voter": "isteemit", - "rshares": "46178109682" + "rshares": "46178109682", + "voter": "isteemit" }, { - "voter": "bacchist", - "rshares": "68580548647" + "rshares": "68580548647", + "voter": "bacchist" }, { - "voter": "venuspcs", - "rshares": "72899731827" + "rshares": "72899731827", + "voter": "venuspcs" }, { - "voter": "michaellamden68", - "rshares": "3324885062" + "rshares": "3324885062", + "voter": "michaellamden68" }, { - "voter": "asmolokalo", - "rshares": "179676652871" + "rshares": "179676652871", + "voter": "asmolokalo" }, { - "voter": "good-karma", - "rshares": "38569797449" + "rshares": "38569797449", + "voter": "good-karma" }, { - "voter": "roelandp", - "rshares": "453653624734" + "rshares": "453653624734", + "voter": "roelandp" }, { - "voter": "orly", - "rshares": "3347929950" + "rshares": "3347929950", + "voter": "orly" }, { - "voter": "firepower", - "rshares": "45472590951" + "rshares": "45472590951", + "voter": "firepower" }, { - "voter": "mstang83", - "rshares": "255388351" + "rshares": "255388351", + "voter": "mstang83" }, { - "voter": "hakise", - "rshares": "19227034654" + "rshares": "19227034654", + "voter": "hakise" }, { - "voter": "r4fken", - "rshares": "17256371639" + "rshares": "17256371639", + "voter": "r4fken" }, { - "voter": "tcfxyz", - "rshares": "25548776759" + "rshares": "25548776759", + "voter": "tcfxyz" }, { - "voter": "futurefood", - "rshares": "7076198200" + "rshares": "7076198200", + "voter": "futurefood" }, { - "voter": "derekareith", - "rshares": "142765809551" + "rshares": "142765809551", + "voter": "derekareith" }, { - "voter": "picokernel", - "rshares": "32325400002" + "rshares": "32325400002", + "voter": "picokernel" }, { - "voter": "seanmchughart", - "rshares": "10594872684" + "rshares": "10594872684", + "voter": "seanmchughart" }, { - "voter": "busser", - "rshares": "766081509" + "rshares": "766081509", + "voter": "busser" }, { - "voter": "renohq", - "rshares": "1296482376779" + "rshares": "1296482376779", + "voter": "renohq" }, { - "voter": "ausbitbank", - "rshares": "18840499998" + "rshares": "18840499998", + "voter": "ausbitbank" }, { - "voter": "mixa", - "rshares": "1451740615" + "rshares": "1451740615", + "voter": "mixa" }, { - "voter": "steem1653", - "rshares": "2226795955" + "rshares": "2226795955", + "voter": "steem1653" }, { - "voter": "sebastien", - "rshares": "17220499402" + "rshares": "17220499402", + "voter": "sebastien" }, { - "voter": "sitaru", - "rshares": "13516728290" + "rshares": "13516728290", + "voter": "sitaru" }, { - "voter": "jesta", - "rshares": "308826662759" + "rshares": "308826662759", + "voter": "jesta" }, { - "voter": "toxonaut", - "rshares": "34328964595" + "rshares": "34328964595", + "voter": "toxonaut" }, { - "voter": "snowden", - "rshares": "118752539" + "rshares": "118752539", + "voter": "snowden" }, { - "voter": "thegoodguy", - "rshares": "4709018700" + "rshares": "4709018700", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "15578903803" + "rshares": "15578903803", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "1107663461" + "rshares": "1107663461", + "voter": "karen13" }, { - "voter": "igster", - "rshares": "24973952155" + "rshares": "24973952155", + "voter": "igster" }, { - "voter": "dcryptogold", - "rshares": "4289492867" + "rshares": "4289492867", + "voter": "dcryptogold" }, { - "voter": "domavila", - "rshares": "12853559657" + "rshares": "12853559657", + "voter": "domavila" }, { - "voter": "dmacshady", - "rshares": "2395414530" + "rshares": "2395414530", + "voter": "dmacshady" }, { - "voter": "grolelo", - "rshares": "23336601075" + "rshares": "23336601075", + "voter": "grolelo" }, { - "voter": "kendewitt", - "rshares": "1514372408" + "rshares": "1514372408", + "voter": "kendewitt" }, { - "voter": "wildchild", - "rshares": "89580632" + "rshares": "89580632", + "voter": "wildchild" }, { - "voter": "natali22", - "rshares": "1682066491" + "rshares": "1682066491", + "voter": "natali22" }, { - "voter": "sbq777t", - "rshares": "44666586658" + "rshares": "44666586658", + "voter": "sbq777t" }, { - "voter": "the-future", - "rshares": "1953764546" + "rshares": "1953764546", + "voter": "the-future" }, { - "voter": "adamt", - "rshares": "4296012707" + "rshares": "4296012707", + "voter": "adamt" }, { - "voter": "mynameisbrian", - "rshares": "44807508492" + "rshares": "44807508492", + "voter": "mynameisbrian" }, { - "voter": "blueorgy", - "rshares": "179093605311" + "rshares": "179093605311", + "voter": "blueorgy" }, { - "voter": "poseidon", - "rshares": "5008619742" + "rshares": "5008619742", + "voter": "poseidon" }, { - "voter": "calaber24p", - "rshares": "360289908808" + "rshares": "360289908808", + "voter": "calaber24p" }, { - "voter": "fubar-bdhr", - "rshares": "4210919359" + "rshares": "4210919359", + "voter": "fubar-bdhr" }, { - "voter": "nedrob", - "rshares": "119399264" + "rshares": "119399264", + "voter": "nedrob" }, { - "voter": "heimindanger", - "rshares": "16044930360" + "rshares": "16044930360", + "voter": "heimindanger" }, { - "voter": "geronimo", - "rshares": "7311842917" + "rshares": "7311842917", + "voter": "geronimo" }, { - "voter": "bones", - "rshares": "3355524755" + "rshares": "3355524755", + "voter": "bones" }, { - "voter": "bendjmiller222", - "rshares": "20338607929" + "rshares": "20338607929", + "voter": "bendjmiller222" }, { - "voter": "bitcoiner", - "rshares": "5228680253" + "rshares": "5228680253", + "voter": "bitcoiner" }, { - "voter": "tarindel", - "rshares": "3754893033" + "rshares": "3754893033", + "voter": "tarindel" }, { - "voter": "azurejasper", - "rshares": "3786022381" + "rshares": "3786022381", + "voter": "azurejasper" }, { - "voter": "deanliu", - "rshares": "30851492146" + "rshares": "30851492146", + "voter": "deanliu" }, { - "voter": "siol", - "rshares": "599141666" + "rshares": "599141666", + "voter": "siol" }, { - "voter": "rainchen", - "rshares": "5479123729" + "rshares": "5479123729", + "voter": "rainchen" }, { - "voter": "sharker", - "rshares": "5690877975" + "rshares": "5690877975", + "voter": "sharker" }, { - "voter": "sauravrungta", - "rshares": "34508226149" + "rshares": "34508226149", + "voter": "sauravrungta" }, { - "voter": "qonq99", - "rshares": "530196643" + "rshares": "530196643", + "voter": "qonq99" }, { - "voter": "jl777", - "rshares": "53839881372" + "rshares": "53839881372", + "voter": "jl777" }, { - "voter": "lostnuggett", - "rshares": "7837739118" + "rshares": "7837739118", + "voter": "lostnuggett" }, { - "voter": "zaebars", - "rshares": "30002446832" + "rshares": "30002446832", + "voter": "zaebars" }, { - "voter": "yarly", - "rshares": "1808058993" + "rshares": "1808058993", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "272610758" + "rshares": "272610758", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "273018668" + "rshares": "273018668", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "157733805" + "rshares": "157733805", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "158624349" + "rshares": "158624349", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "90416287" + "rshares": "90416287", + "voter": "yarly7" }, { - "voter": "raymonjohnstone", - "rshares": "838465852" + "rshares": "838465852", + "voter": "raymonjohnstone" }, { - "voter": "masterinvestor", - "rshares": "23815723291" + "rshares": "23815723291", + "voter": "masterinvestor" }, { - "voter": "steemchain", - "rshares": "50619397" + "rshares": "50619397", + "voter": "steemchain" }, { - "voter": "whalepool", - "rshares": "50619397" + "rshares": "50619397", + "voter": "whalepool" }, { - "voter": "sergey44", - "rshares": "206059171" + "rshares": "206059171", + "voter": "sergey44" }, { - "voter": "mxo8", - "rshares": "117016257" + "rshares": "117016257", + "voter": "mxo8" }, { - "voter": "summonerrk", - "rshares": "7787748060" + "rshares": "7787748060", + "voter": "summonerrk" }, { - "voter": "strictlybusiness", - "rshares": "197539708" + "rshares": "197539708", + "voter": "strictlybusiness" }, { - "voter": "mohammed123", - "rshares": "1234205003" + "rshares": "1234205003", + "voter": "mohammed123" }, { - "voter": "bbrewer", - "rshares": "5166865550" + "rshares": "5166865550", + "voter": "bbrewer" }, { - "voter": "happyphoenix", - "rshares": "942251145" + "rshares": "942251145", + "voter": "happyphoenix" }, { - "voter": "krabgat", - "rshares": "20257716778" + "rshares": "20257716778", + "voter": "krabgat" }, { - "voter": "proto", - "rshares": "4543551843" + "rshares": "4543551843", + "voter": "proto" }, { - "voter": "curator", - "rshares": "658330815" + "rshares": "658330815", + "voter": "curator" }, { - "voter": "sisterholics", - "rshares": "7211602623" + "rshares": "7211602623", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "437530299" + "rshares": "437530299", + "voter": "yarly10" }, { - "voter": "alex.chien", - "rshares": "1365336577" + "rshares": "1365336577", + "voter": "alex.chien" }, { - "voter": "yarly11", - "rshares": "234176102" + "rshares": "234176102", + "voter": "yarly11" }, { - "voter": "yarly12", - "rshares": "81879061" + "rshares": "81879061", + "voter": "yarly12" }, { - "voter": "tygergamer", - "rshares": "3675263114" + "rshares": "3675263114", + "voter": "tygergamer" }, { - "voter": "bkkshadow", - "rshares": "3627578747" + "rshares": "3627578747", + "voter": "bkkshadow" }, { - "voter": "dimitarj", - "rshares": "11567371620" + "rshares": "11567371620", + "voter": "dimitarj" }, { - "voter": "bullionstackers", - "rshares": "817422571" + "rshares": "817422571", + "voter": "bullionstackers" }, { - "voter": "dmilash", - "rshares": "3082906297" + "rshares": "3082906297", + "voter": "dmilash" }, { - "voter": "andreynoch", - "rshares": "2002481686" + "rshares": "2002481686", + "voter": "andreynoch" }, { - "voter": "cryptoz", - "rshares": "110940646" + "rshares": "110940646", + "voter": "cryptoz" }, { - "voter": "glitterpig", - "rshares": "3391999835" + "rshares": "3391999835", + "voter": "glitterpig" }, { - "voter": "shortcut", - "rshares": "6404274840" + "rshares": "6404274840", + "voter": "shortcut" }, { - "voter": "steemdrive", - "rshares": "128587928653" + "rshares": "128587928653", + "voter": "steemdrive" }, { - "voter": "metaflute", - "rshares": "1075365048" + "rshares": "1075365048", + "voter": "metaflute" }, { - "voter": "gomeravibz", - "rshares": "58218132689" + "rshares": "58218132689", + "voter": "gomeravibz" }, { - "voter": "taker", - "rshares": "2298169701" + "rshares": "2298169701", + "voter": "taker" }, { - "voter": "dras", - "rshares": "65485650" + "rshares": "65485650", + "voter": "dras" }, { - "voter": "nekromarinist", - "rshares": "6519151447" + "rshares": "6519151447", + "voter": "nekromarinist" }, { - "voter": "theprophet", - "rshares": "6880289904" + "rshares": "6880289904", + "voter": "theprophet" }, { - "voter": "frozendota", - "rshares": "240147448" + "rshares": "240147448", + "voter": "frozendota" }, { - "voter": "felixxx", - "rshares": "15543734691" + "rshares": "15543734691", + "voter": "felixxx" }, { - "voter": "merej99", - "rshares": "3432112427" + "rshares": "3432112427", + "voter": "merej99" }, { - "voter": "laonie", - "rshares": "254880160829" + "rshares": "254880160829", + "voter": "laonie" }, { - "voter": "rawnetics", - "rshares": "24852935259" + "rshares": "24852935259", + "voter": "rawnetics" }, { - "voter": "thebluepanda", - "rshares": "22374728157" + "rshares": "22374728157", + "voter": "thebluepanda" }, { - "voter": "laonie1", - "rshares": "25618981790" + "rshares": "25618981790", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "26132274895" + "rshares": "26132274895", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "26141438708" + "rshares": "26141438708", + "voter": "laonie3" }, { - "voter": "laoyao", - "rshares": "25094797142" + "rshares": "25094797142", + "voter": "laoyao" }, { - "voter": "modogg", - "rshares": "65214616" + "rshares": "65214616", + "voter": "modogg" }, { - "voter": "myfirst", - "rshares": "7958908678" + "rshares": "7958908678", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "51767495130" + "rshares": "51767495130", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "1935723185" + "rshares": "1935723185", + "voter": "flysaga" }, { - "voter": "brendio", - "rshares": "6864125594" + "rshares": "6864125594", + "voter": "brendio" }, { - "voter": "gmurph", - "rshares": "2082514282" + "rshares": "2082514282", + "voter": "gmurph" }, { - "voter": "kurzer42", - "rshares": "72860205" + "rshares": "72860205", + "voter": "kurzer42" }, { - "voter": "midnightoil", - "rshares": "11435966181" + "rshares": "11435966181", + "voter": "midnightoil" }, { - "voter": "mibenkito", - "rshares": "78269782470" + "rshares": "78269782470", + "voter": "mibenkito" }, { - "voter": "kalimor", - "rshares": "2375155298" + "rshares": "2375155298", + "voter": "kalimor" }, { - "voter": "ullikume", - "rshares": "4276738846" + "rshares": "4276738846", + "voter": "ullikume" }, { - "voter": "darrenturetzky", - "rshares": "2735302379" + "rshares": "2735302379", + "voter": "darrenturetzky" }, { - "voter": "michellek", - "rshares": "59414599" + "rshares": "59414599", + "voter": "michellek" }, { - "voter": "laonie4", - "rshares": "26136684196" + "rshares": "26136684196", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "26133889368" + "rshares": "26133889368", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "26130809772" + "rshares": "26130809772", + "voter": "laonie6" }, { - "voter": "laonie7", - "rshares": "26126568283" + "rshares": "26126568283", + "voter": "laonie7" }, { - "voter": "kurtbeil", - "rshares": "5977415250" + "rshares": "5977415250", + "voter": "kurtbeil" }, { - "voter": "laonie8", - "rshares": "26122787391" + "rshares": "26122787391", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "26119897476" + "rshares": "26119897476", + "voter": "laonie9" }, { - "voter": "steemleak", - "rshares": "3300371180" + "rshares": "3300371180", + "voter": "steemleak" }, { - "voter": "xiaohui", - "rshares": "28583578460" + "rshares": "28583578460", + "voter": "xiaohui" }, { - "voter": "t3ran13", - "rshares": "1980457070" + "rshares": "1980457070", + "voter": "t3ran13" }, { - "voter": "mevilkingdom", - "rshares": "7834943379" + "rshares": "7834943379", + "voter": "mevilkingdom" }, { - "voter": "jphamer1", - "rshares": "21531331546" + "rshares": "21531331546", + "voter": "jphamer1" }, { - "voter": "ekitcho", - "rshares": "11056722867" + "rshares": "11056722867", + "voter": "ekitcho" }, { - "voter": "bigsambucca", - "rshares": "127379962" + "rshares": "127379962", + "voter": "bigsambucca" }, { - "voter": "elfkitchen", - "rshares": "1504058180" + "rshares": "1504058180", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "93154573622" + "rshares": "93154573622", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5999670912" + "rshares": "5999670912", + "voter": "oflyhigh" }, { - "voter": "paynode", - "rshares": "2078540879" + "rshares": "2078540879", + "voter": "paynode" }, { - "voter": "sirwinchester", - "rshares": "62400081859" + "rshares": "62400081859", + "voter": "sirwinchester" }, { - "voter": "agussudaryanto", - "rshares": "122933349" + "rshares": "122933349", + "voter": "agussudaryanto" }, { - "voter": "xiaokongcom", - "rshares": "894298402" + "rshares": "894298402", + "voter": "xiaokongcom" }, { - "voter": "xianjun", - "rshares": "1802649539" + "rshares": "1802649539", + "voter": "xianjun" }, { - "voter": "jfelton5", - "rshares": "61313637" + "rshares": "61313637", + "voter": "jfelton5" }, { - "voter": "evgenyche", - "rshares": "73061236" + "rshares": "73061236", + "voter": "evgenyche" }, { - "voter": "stevescriber", - "rshares": "70633121" + "rshares": "70633121", + "voter": "stevescriber" }, { - "voter": "bledarus", - "rshares": "4097488430" + "rshares": "4097488430", + "voter": "bledarus" }, { - "voter": "loli", - "rshares": "52467942" + "rshares": "52467942", + "voter": "loli" }, { - "voter": "nano2nd", - "rshares": "53638070" + "rshares": "53638070", + "voter": "nano2nd" }, { - "voter": "microluck", - "rshares": "118127541" + "rshares": "118127541", + "voter": "microluck" }, { - "voter": "lisadang", - "rshares": "187339808" + "rshares": "187339808", + "voter": "lisadang" }, { - "voter": "theb0red1", - "rshares": "9426175065" + "rshares": "9426175065", + "voter": "theb0red1" }, { - "voter": "chinadaily", - "rshares": "2057906517" + "rshares": "2057906517", + "voter": "chinadaily" }, { - "voter": "kyriacos", - "rshares": "31193669396" + "rshares": "31193669396", + "voter": "kyriacos" }, { - "voter": "cryptoblu", - "rshares": "59021275" + "rshares": "59021275", + "voter": "cryptoblu" }, { - "voter": "instructor", - "rshares": "59014859" + "rshares": "59014859", + "voter": "instructor" }, { - "voter": "lemouth", - "rshares": "7981765563" + "rshares": "7981765563", + "voter": "lemouth" }, { - "voter": "dollarvigilante", - "rshares": "739008163112" + "rshares": "739008163112", + "voter": "dollarvigilante" }, { - "voter": "anotherjoe", - "rshares": "18699439170" + "rshares": "18699439170", + "voter": "anotherjoe" }, { - "voter": "saveliy", - "rshares": "60945251" + "rshares": "60945251", + "voter": "saveliy" }, { - "voter": "serejandmyself", - "rshares": "99328137981" + "rshares": "99328137981", + "voter": "serejandmyself" }, { - "voter": "almerri", - "rshares": "4877223734" + "rshares": "4877223734", + "voter": "almerri" }, { - "voter": "alexma3x", - "rshares": "728677907" + "rshares": "728677907", + "voter": "alexma3x" }, { - "voter": "gvargas123", - "rshares": "9824813120" + "rshares": "9824813120", + "voter": "gvargas123" }, { - "voter": "keepdoodling", - "rshares": "443801352" + "rshares": "443801352", + "voter": "keepdoodling" }, { - "voter": "shneakysquirrel", - "rshares": "3657683169" + "rshares": "3657683169", + "voter": "shneakysquirrel" }, { - "voter": "steevc", - "rshares": "278004039" + "rshares": "278004039", + "voter": "steevc" }, { - "voter": "movievertigo", - "rshares": "3341359657" + "rshares": "3341359657", + "voter": "movievertigo" }, { - "voter": "vasilii", - "rshares": "70361224" + "rshares": "70361224", + "voter": "vasilii" }, { - "voter": "laonie10", - "rshares": "26113221925" + "rshares": "26113221925", + "voter": "laonie10" }, { - "voter": "mrlogic", - "rshares": "362426778" + "rshares": "362426778", + "voter": "mrlogic" }, { - "voter": "steempipe", - "rshares": "62362905" + "rshares": "62362905", + "voter": "steempipe" }, { - "voter": "bitchplease", - "rshares": "55543445" + "rshares": "55543445", + "voter": "bitchplease" }, { - "voter": "someguy123", - "rshares": "79273566479" + "rshares": "79273566479", + "voter": "someguy123" }, { - "voter": "barrycooper", - "rshares": "90827598056" + "rshares": "90827598056", + "voter": "barrycooper" }, { - "voter": "stillsafe", - "rshares": "3572205128" + "rshares": "3572205128", + "voter": "stillsafe" }, { - "voter": "joelbow", - "rshares": "76843163" + "rshares": "76843163", + "voter": "joelbow" }, { - "voter": "hilarski", - "rshares": "28822571115" + "rshares": "28822571115", + "voter": "hilarski" }, { - "voter": "therealpaul", - "rshares": "2149644744" + "rshares": "2149644744", + "voter": "therealpaul" }, { - "voter": "steemitpatina", - "rshares": "4580066391" + "rshares": "4580066391", + "voter": "steemitpatina" }, { - "voter": "silverbug2000", - "rshares": "5178202476" + "rshares": "5178202476", + "voter": "silverbug2000" }, { - "voter": "rickmiller", - "rshares": "55859919" + "rshares": "55859919", + "voter": "rickmiller" }, { - "voter": "lenar", - "rshares": "1233668048" + "rshares": "1233668048", + "voter": "lenar" }, { - "voter": "etcmike", - "rshares": "10020064820" + "rshares": "10020064820", + "voter": "etcmike" }, { - "voter": "uri-bruck", - "rshares": "61596105" + "rshares": "61596105", + "voter": "uri-bruck" }, { - "voter": "nulliusinverba", - "rshares": "5154589910" + "rshares": "5154589910", + "voter": "nulliusinverba" }, { - "voter": "runridefly", - "rshares": "1698796327" + "rshares": "1698796327", + "voter": "runridefly" }, { - "voter": "dianaju", - "rshares": "57841858" + "rshares": "57841858", + "voter": "dianaju" }, { - "voter": "uziriel", - "rshares": "88019548" + "rshares": "88019548", + "voter": "uziriel" }, { - "voter": "mstoni", - "rshares": "57530129" + "rshares": "57530129", + "voter": "mstoni" }, { - "voter": "richardcrill", - "rshares": "4592499069" + "rshares": "4592499069", + "voter": "richardcrill" }, { - "voter": "laonie11", - "rshares": "25230942954" + "rshares": "25230942954", + "voter": "laonie11" }, { - "voter": "eight-rad", - "rshares": "1687924866" + "rshares": "1687924866", + "voter": "eight-rad" }, { - "voter": "lovetosteemit", - "rshares": "62783765" + "rshares": "62783765", + "voter": "lovetosteemit" }, { - "voter": "davidjkelley", - "rshares": "1660563580" + "rshares": "1660563580", + "voter": "davidjkelley" }, { - "voter": "baro", - "rshares": "4350110165" + "rshares": "4350110165", + "voter": "baro" }, { - "voter": "sponge-bob", - "rshares": "9060248806" + "rshares": "9060248806", + "voter": "sponge-bob" }, { - "voter": "l0k1", - "rshares": "4765474309" + "rshares": "4765474309", + "voter": "l0k1" }, { - "voter": "digital-wisdom", - "rshares": "15558969971" + "rshares": "15558969971", + "voter": "digital-wisdom" }, { - "voter": "areynolds", - "rshares": "494724739" + "rshares": "494724739", + "voter": "areynolds" }, { - "voter": "ethical-ai", - "rshares": "3708378555" + "rshares": "3708378555", + "voter": "ethical-ai" }, { - "voter": "freesteem", - "rshares": "54247498" + "rshares": "54247498", + "voter": "freesteem" }, { - "voter": "fajrilgooner", - "rshares": "2477345340" + "rshares": "2477345340", + "voter": "fajrilgooner" }, { - "voter": "matthewtiii", - "rshares": "2222639041" + "rshares": "2222639041", + "voter": "matthewtiii" }, { - "voter": "walternz", - "rshares": "55401224" + "rshares": "55401224", + "voter": "walternz" }, { - "voter": "jwaser", - "rshares": "6826713536" + "rshares": "6826713536", + "voter": "jwaser" }, { - "voter": "tatianka", - "rshares": "852820572" + "rshares": "852820572", + "voter": "tatianka" }, { - "voter": "doitvoluntarily", - "rshares": "12020525779" + "rshares": "12020525779", + "voter": "doitvoluntarily" }, { - "voter": "phusionphil", - "rshares": "56439878" + "rshares": "56439878", + "voter": "phusionphil" }, { - "voter": "kev7000", - "rshares": "607704096" + "rshares": "607704096", + "voter": "kev7000" }, { - "voter": "zettar", - "rshares": "1018487810" + "rshares": "1018487810", + "voter": "zettar" }, { - "voter": "lighter", - "rshares": "55736056" + "rshares": "55736056", + "voter": "lighter" }, { - "voter": "asksisk", - "rshares": "207196967560" + "rshares": "207196967560", + "voter": "asksisk" }, { - "voter": "dubi", - "rshares": "25848472434" + "rshares": "25848472434", + "voter": "dubi" }, { - "voter": "bwaser", - "rshares": "2673758412" + "rshares": "2673758412", + "voter": "bwaser" }, { - "voter": "dexter-k", - "rshares": "6400398189" + "rshares": "6400398189", + "voter": "dexter-k" }, { - "voter": "roadhog", - "rshares": "50751176" + "rshares": "50751176", + "voter": "roadhog" }, { - "voter": "panther", - "rshares": "350998373" + "rshares": "350998373", + "voter": "panther" }, { - "voter": "alina1", - "rshares": "1784221363" + "rshares": "1784221363", + "voter": "alina1" }, { - "voter": "doggnostic", - "rshares": "50639382" + "rshares": "50639382", + "voter": "doggnostic" }, { - "voter": "wulfmeister", - "rshares": "1094895432" + "rshares": "1094895432", + "voter": "wulfmeister" }, { - "voter": "ct-gurus", - "rshares": "659556912" + "rshares": "659556912", + "voter": "ct-gurus" }, { - "voter": "bones261", - "rshares": "348073541" + "rshares": "348073541", + "voter": "bones261" }, { - "voter": "charlieshrem", - "rshares": "387894501497" + "rshares": "387894501497", + "voter": "charlieshrem" }, { - "voter": "tracemayer", - "rshares": "61786622160" + "rshares": "61786622160", + "voter": "tracemayer" }, { - "voter": "brains", - "rshares": "9049304130" + "rshares": "9049304130", + "voter": "brains" }, { - "voter": "onlineworker", - "rshares": "54448999" + "rshares": "54448999", + "voter": "onlineworker" }, { - "voter": "post-successful", - "rshares": "50210467" + "rshares": "50210467", + "voter": "post-successful" }, { - "voter": "jessicanicklos", - "rshares": "689134944" + "rshares": "689134944", + "voter": "jessicanicklos" }, { - "voter": "bones555", - "rshares": "633657150" + "rshares": "633657150", + "voter": "bones555" }, { - "voter": "steem4fobs", - "rshares": "54919358" + "rshares": "54919358", + "voter": "steem4fobs" }, { - "voter": "echoesinthemind", - "rshares": "492992904" + "rshares": "492992904", + "voter": "echoesinthemind" }, { - "voter": "f1111111", - "rshares": "53397626" + "rshares": "53397626", + "voter": "f1111111" }, { - "voter": "steemsquad", - "rshares": "2084637414" + "rshares": "2084637414", + "voter": "steemsquad" }, { - "voter": "anomaly", - "rshares": "574180710" + "rshares": "574180710", + "voter": "anomaly" }, { - "voter": "tarekadam", - "rshares": "27665434494" + "rshares": "27665434494", + "voter": "tarekadam" }, { - "voter": "ellepdub", - "rshares": "2399791213" + "rshares": "2399791213", + "voter": "ellepdub" }, { - "voter": "gregorygarcia", - "rshares": "51890765" + "rshares": "51890765", + "voter": "gregorygarcia" }, { - "voter": "inarix03", - "rshares": "57056918" + "rshares": "57056918", + "voter": "inarix03" }, { - "voter": "ola1", - "rshares": "573904238" + "rshares": "573904238", + "voter": "ola1" }, { - "voter": "jbaker585", - "rshares": "849039554" + "rshares": "849039554", + "voter": "jbaker585" }, { - "voter": "michelle.gent", - "rshares": "5522323762" + "rshares": "5522323762", + "voter": "michelle.gent" }, { - "voter": "herpetologyguy", - "rshares": "11700805109" + "rshares": "11700805109", + "voter": "herpetologyguy" }, { - "voter": "everittdmickey", - "rshares": "58261815" + "rshares": "58261815", + "voter": "everittdmickey" }, { - "voter": "mari5555na", - "rshares": "53548226" + "rshares": "53548226", + "voter": "mari5555na" }, { - "voter": "morgan.waser", - "rshares": "4813549151" + "rshares": "4813549151", + "voter": "morgan.waser" }, { - "voter": "cfisher", - "rshares": "50602980" + "rshares": "50602980", + "voter": "cfisher" }, { - "voter": "billkappa442", - "rshares": "51240567" + "rshares": "51240567", + "voter": "billkappa442" }, { - "voter": "niiboye", - "rshares": "51236745" + "rshares": "51236745", + "voter": "niiboye" }, { - "voter": "battalar", - "rshares": "51227561" + "rshares": "51227561", + "voter": "battalar" }, { - "voter": "anns", - "rshares": "1157070714" + "rshares": "1157070714", + "voter": "anns" }, { - "voter": "cyan", - "rshares": "50875769" + "rshares": "50875769", + "voter": "cyan" }, { - "voter": "palladium", - "rshares": "50873654" + "rshares": "50873654", + "voter": "palladium" }, { - "voter": "factom", - "rshares": "50796122" + "rshares": "50796122", + "voter": "factom" }, { - "voter": "autodesk", - "rshares": "50794039" + "rshares": "50794039", + "voter": "autodesk" }, { - "voter": "bapparabi", - "rshares": "827252367" + "rshares": "827252367", + "voter": "bapparabi" }, { - "voter": "dodders007", - "rshares": "3389664065" + "rshares": "3389664065", + "voter": "dodders007" }, { - "voter": "strong-ai", - "rshares": "3687326823" + "rshares": "3687326823", + "voter": "strong-ai" }, { - "voter": "iliyaa", - "rshares": "161225748" + "rshares": "161225748", + "voter": "iliyaa" }, { - "voter": "uct", - "rshares": "162925257" + "rshares": "162925257", + "voter": "uct" }, { - "voter": "rusteemitblog", - "rshares": "1354011808" + "rshares": "1354011808", + "voter": "rusteemitblog" }, { - "voter": "zapply", - "rshares": "158798473" + "rshares": "158798473", + "voter": "zapply" }, { - "voter": "mgibson", - "rshares": "201362779" + "rshares": "201362779", + "voter": "mgibson" }, { - "voter": "rage", - "rshares": "157118197" + "rshares": "157118197", + "voter": "rage" }, { - "voter": "capcom", - "rshares": "159973989" + "rshares": "159973989", + "voter": "capcom" }, { - "voter": "allgoodthings", - "rshares": "153699193" + "rshares": "153699193", + "voter": "allgoodthings" }, { - "voter": "benetton", - "rshares": "159531007" + "rshares": "159531007", + "voter": "benetton" }, { - "voter": "tipsandtricks", - "rshares": "159425365" + "rshares": "159425365", + "voter": "tipsandtricks" }, { - "voter": "stimmt", - "rshares": "159318360" + "rshares": "159318360", + "voter": "stimmt" }, { - "voter": "fallout", - "rshares": "159175576" + "rshares": "159175576", + "voter": "fallout" }, { - "voter": "xtreme", - "rshares": "159025535" + "rshares": "159025535", + "voter": "xtreme" }, { - "voter": "modernbukowski", - "rshares": "944924940" + "rshares": "944924940", + "voter": "modernbukowski" }, { - "voter": "cream", - "rshares": "158632601" + "rshares": "158632601", + "voter": "cream" }, { - "voter": "alterego", - "rshares": "158637372" + "rshares": "158637372", + "voter": "alterego" }, { - "voter": "steem-wallet", - "rshares": "158602900" + "rshares": "158602900", + "voter": "steem-wallet" }, { - "voter": "steemthis", - "rshares": "158560941" + "rshares": "158560941", + "voter": "steemthis" }, { - "voter": "zendesk", - "rshares": "158486055" + "rshares": "158486055", + "voter": "zendesk" }, { - "voter": "goldmatters", - "rshares": "26843428547" + "rshares": "26843428547", + "voter": "goldmatters" }, { - "voter": "dealzgal", - "rshares": "81051650" + "rshares": "81051650", + "voter": "dealzgal" }, { - "voter": "helepa", - "rshares": "158230871" + "rshares": "158230871", + "voter": "helepa" }, { - "voter": "rishi556", - "rshares": "199633972" + "rshares": "199633972", + "voter": "rishi556" }, { - "voter": "storage", - "rshares": "92745520" + "rshares": "92745520", + "voter": "storage" }, { - "voter": "antaja", - "rshares": "188144802" + "rshares": "188144802", + "voter": "antaja" }, { - "voter": "raph", - "rshares": "145960715" + "rshares": "145960715", + "voter": "raph" }, { - "voter": "dougkarr", - "rshares": "151162552" + "rshares": "151162552", + "voter": "dougkarr" }, { - "voter": "slammr76", - "rshares": "1586499055" + "rshares": "1586499055", + "voter": "slammr76" }, { - "voter": "blackmarket", - "rshares": "73844343" + "rshares": "73844343", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "79990132" + "rshares": "79990132", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "85598308" + "rshares": "85598308", + "voter": "expat" }, { - "voter": "steemtrail", - "rshares": "134906258" + "rshares": "134906258", + "voter": "steemtrail" }, { - "voter": "royfft", - "rshares": "153178035" + "rshares": "153178035", + "voter": "royfft" }, { - "voter": "paulocouto", - "rshares": "112446078" + "rshares": "112446078", + "voter": "paulocouto" }, { - "voter": "countofdelphi", - "rshares": "155872526" + "rshares": "155872526", + "voter": "countofdelphi" }, { - "voter": "tnemm.atiaw", - "rshares": "151306241" + "rshares": "151306241", + "voter": "tnemm.atiaw" }, { - "voter": "harleyismydog", - "rshares": "154295967" + "rshares": "154295967", + "voter": "harleyismydog" }, { - "voter": "newsfeed", - "rshares": "148041723" + "rshares": "148041723", + "voter": "newsfeed" }, { - "voter": "sawgunner13", - "rshares": "144957585" + "rshares": "144957585", + "voter": "sawgunner13" }, { - "voter": "dirlei.sdias", - "rshares": "147818170" + "rshares": "147818170", + "voter": "dirlei.sdias" } ], + "author": "steve-walschot", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 400, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/steempay/@steve-walschot/steempay-upgrade-pay-on-site-or-steemfest-or-mobile-wallet", - "blacklists": [] - }, - { - "post_id": 957231, - "author": "terrycraft", - "permlink": "a-look-from-the-past-vzglyad-iz-proshlogo-featuring-panther-as-author", - "category": "philosophy", - "title": "A Look From the Past / Взгляд из прошлого (featuring @panther as author).", - "body": "
\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman18.jpg\nImage credit / Источник фото\n\n\n

When looking through old photographs, you realize how much the world has changed around us.

\n
Просматривая старые фотографии, осознаёшь насколько изменился мир вокруг нас.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman16.jpg\nImage credit / Источник фото\n\n\n

I am deeply convinced that the people imprinted on these black-and-white photographs never suspected what will happen to them in the future, whether it is immediate or distant As well as they didn't realized how quickly the years will pass, changing all the world around. So, as you look at their careless faces, you fairly quickly realize that your current situation is not much different.

\n
Я глубоко уверена в том, что люди, запечатлённые на чёрно-белых фотографиях, не подозревали, что станет с ними в ближайшем, и не очень, будущем. Не знали они также, насколько стремительно пройдут годы, и как изменится мир вокруг. Поэтому, глядя на их беспечные лица, довольно быстро осознаёшь, что твоё положение сейчас мало чем отличается.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman14.jpg\nImage credit / Источник фото\n\n\n

Everything that happens around us changes the world we are witnessing. We live in an age of technological progress; the advent of the first computers, the Internet, gadgets, social networks, online games, e-commerce, cryptocurrency and, finally, a blockchain social network - the Steemit, which makes our minds work for creation of good content and its curation.

\n
Всё происходящее вокруг нас меняет мир на наших глазах. Мы живём в век технологического прогресса; появление первых компьютеров, интернета, гаджетов, социальных сетей, онлайн-игр, интернет-магазинов, криптовалют и, наконец, социальной сети на блокчейне - Steemit, которая заставляет наши умы работать для создания хорошего контента и его курирования.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman09.jpg\nImage credit / Источник фото\n\n\n

And in 10 years, or maybe much earlier, we will see a completely different picture of reality. Generation Steem is coming. The generation that changed everything around and changed itself as well, in opposite to that generation you run with your eyes, trying to convince its immutability and the impossibility of change. No, this already will be the world of the past.

\n
И лет через 10, а может значительно раньше, мы увидим в кадре совершенно другую действительность. Грядёт Steem поколение, поколение, изменившее всё вокруг себя и изменившееся само, а не то, которое сейчас, обводя взглядом, вы пытаетесь убедить в его незыблемости и невозможности перемен. Нет, это уже будет мир прошлого.
\n\n\n\n

Written to the music: Antonio Vivaldi - The Four Seasons.

\n\n\nPlease follow me\n@panther\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @panther\n\n---\n\nAll STEEM Dollars for this post go to the featured author. Все SD за пост получит автор.", + "blacklists": [], + "body": "# Time for another upgrade of SteemPay.io! A lot of work has been done behind the scenes, and here's a brief overview:\n\n\n---\n\n\n\n\n\n# Pay on site\n\n### Users will be able to make their payments straight from the payments page using a 2 step sliding form. \n\n\n\nhttp://i.imgur.com/iinyGFl.png\n\n\n\nThis means no more need to open another tab page, fill in all the details in your wallet, and returning to SteemPay. Both the password and the active private key can be used to broadcast the transaction. \n\n\n\nSteemPay **does not** encourage password storing, however, there is an option available for those who prefer to save their password in the browser's ***localstorage.*** A warning pop up will appear explaining the risks of storing passwords in the browser.\n\n\n\nAfter a successful login, the user will see a quick overview of his available balances, and another confirmation is required to finalize the transaction straight from the payment window.\n\n\n\n\n\n# Mobile wallet\n\n### The mobile wallet is up and running, but my code seems like a mess due to trial and error. \n\nA **bounty** will be placed for someone to cleanup everything and make some minor corrections so the first version can be released very soon (and get approved on the official android & iOS stores). I feel the need to encourage bounties, so people can become engaged with the community, and hopefully I'll discover new talent to join me on the further expansion of SteemPay.\n\n\n\n# SteemFEST 1\n\nSteemPay will donate some money to SteemFEST 1. Me and @roelandp still need to work out the details, but SteemPay will be present and setup a donation terminal where users are free to send some donations towards the organization by using the mobile wallet with QR support (plans may still change). \n\n\n\n# Hardware upgrade\n\nYet another server upgrade was needed to house all services related to SteemPay. This includes many other side projects that will be announced later on. This should be the final server upgrade for SteemPay and related services. \n\n\n\nThe DNS is still propagating, so you might not see the recent changes on SteemPay.io yet.\n\n\n\n# General statistics implantation\n\nA lightweight database will be kept storing nothing but the transaction amounts processed trough SteemPay. This serves for having some overview on the monthly growth of the transactions, as well as the amounts processed. Every month, the statistics will be published.\n\n\n\n# Steem on!", + "category": "steempay", + "children": 14, + "created": "2016-09-14T06:19:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { + "image": [ + "http://i.imgur.com/iinyGFl.png" + ], "tags": [ - "philosophy", - "thoughts", - "steemit", - "ru" + "steempay", + "steempayments", + "development", + "update" ], "users": [ - "panther" - ], - "image": [ - "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman18.jpg", - "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman16.jpg", - "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman14.jpg", - "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman09.jpg" - ], - "links": [ - "http://bigpicture.ru/?p=384365&fb_comment_id=180555112091488_997346", - "https://steemit.com/@panther" + "roelandp" ] }, - "created": "2016-09-15T12:27:27", - "updated": "2016-09-15T12:27:27", - "depth": 0, - "children": 16, - "net_rshares": 61603577309634, - "is_paidout": false, - "payout_at": "2016-09-16T12:56:15", - "payout": 222.566, - "pending_payout_value": "222.566 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 174333402242155, + "payout": 1750.818, + "payout_at": "2016-09-21T06:19:21", + "pending_payout_value": "1750.818 HBD", + "percent_hbd": 10000, + "permlink": "steempay-upgrade-pay-on-site-or-steemfest-or-mobile-wallet", + "post_id": 1240557, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 400 + }, + "title": "Steempay upgrade - Pay on site | SteemFEST | Mobile wallet", + "updated": "2016-09-14T06:20:42", + "url": "/steempay/@steve-walschot/steempay-upgrade-pay-on-site-or-steemfest-or-mobile-wallet" + }, + { "active_votes": [ { - "voter": "barrie", - "rshares": "518181875581" + "rshares": "518181875581", + "voter": "barrie" }, { - "voter": "smooth", - "rshares": "31620103450538" + "rshares": "31620103450538", + "voter": "smooth" }, { - "voter": "anonymous", - "rshares": "260759332327" + "rshares": "260759332327", + "voter": "anonymous" }, { - "voter": "badassmother", - "rshares": "2047759927809" + "rshares": "2047759927809", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2099340340625" + "rshares": "2099340340625", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1402227395408" + "rshares": "1402227395408", + "voter": "rossco99" }, { - "voter": "jaewoocho", - "rshares": "23338638054" + "rshares": "23338638054", + "voter": "jaewoocho" }, { - "voter": "xeroc", - "rshares": "1910039425215" + "rshares": "1910039425215", + "voter": "xeroc" }, { - "voter": "joseph", - "rshares": "1661657401786" + "rshares": "1661657401786", + "voter": "joseph" }, { - "voter": "recursive3", - "rshares": "471982260599" + "rshares": "471982260599", + "voter": "recursive3" }, { - "voter": "recursive", - "rshares": "3187826540990" + "rshares": "3187826540990", + "voter": "recursive" }, { - "voter": "mineralwasser", - "rshares": "1282783470" + "rshares": "1282783470", + "voter": "mineralwasser" }, { - "voter": "boombastic", - "rshares": "702252849815" + "rshares": "702252849815", + "voter": "boombastic" }, { - "voter": "bingo-1", - "rshares": "1719075621" + "rshares": "1719075621", + "voter": "bingo-1" }, { - "voter": "smooth.witness", - "rshares": "5936571539134" + "rshares": "5936571539134", + "voter": "smooth.witness" }, { - "voter": "boatymcboatface", - "rshares": "457719147730" + "rshares": "457719147730", + "voter": "boatymcboatface" }, { - "voter": "idol", - "rshares": "9890456090" + "rshares": "9890456090", + "voter": "idol" }, { - "voter": "team", - "rshares": "131787410217" + "rshares": "131787410217", + "voter": "team" }, { - "voter": "jocelyn", - "rshares": "1702427102" + "rshares": "1702427102", + "voter": "jocelyn" }, { - "voter": "leesunmoo", - "rshares": "461461082967" + "rshares": "461461082967", + "voter": "leesunmoo" }, { - "voter": "gavvet", - "rshares": "1247396916090" + "rshares": "1247396916090", + "voter": "gavvet" }, { - "voter": "eeks", - "rshares": "74913635150" + "rshares": "74913635150", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "8567499992" + "rshares": "8567499992", + "voter": "fkn" }, { - "voter": "elishagh1", - "rshares": "11261443630" + "rshares": "11261443630", + "voter": "elishagh1" }, { - "voter": "nanzo-scoop", - "rshares": "599827540724" + "rshares": "599827540724", + "voter": "nanzo-scoop" }, { - "voter": "steve-walschot", - "rshares": "161287532172" + "rshares": "161287532172", + "voter": "steve-walschot" }, { - "voter": "mummyimperfect", - "rshares": "182039074638" + "rshares": "182039074638", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313666285" + "rshares": "313666285", + "voter": "coar" }, { - "voter": "asch", - "rshares": "109431915950" + "rshares": "109431915950", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1414823587" + "rshares": "1414823587", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6375528917" + "rshares": "6375528917", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2219594239" + "rshares": "2219594239", + "voter": "error" }, { - "voter": "marta-zaidel", - "rshares": "5268583124" + "rshares": "5268583124", + "voter": "marta-zaidel" }, { - "voter": "ranko-k", - "rshares": "38749275184" + "rshares": "38749275184", + "voter": "ranko-k" }, { - "voter": "cyber", - "rshares": "985447048915" + "rshares": "985447048915", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "63472911304" + "rshares": "63472911304", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "52177367591" + "rshares": "52177367591", + "voter": "ak2020" }, { - "voter": "taoteh1221", - "rshares": "417566592605" + "rshares": "417566592605", + "voter": "taoteh1221" }, { - "voter": "hedge-x", - "rshares": "375915775849" + "rshares": "375915775849", + "voter": "hedge-x" }, { - "voter": "samether", - "rshares": "18668166065" + "rshares": "18668166065", + "voter": "samether" }, { - "voter": "ratel", - "rshares": "33779461634" + "rshares": "33779461634", + "voter": "ratel" }, { - "voter": "herzmeister", - "rshares": "85401868413" + "rshares": "85401868413", + "voter": "herzmeister" }, { - "voter": "tee-em", - "rshares": "5287000077" + "rshares": "5287000077", + "voter": "tee-em" }, { - "voter": "michaelx", - "rshares": "30496214097" + "rshares": "30496214097", + "voter": "michaelx" }, { - "voter": "mark-waser", - "rshares": "5950236300" + "rshares": "5950236300", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "130482031811" + "rshares": "130482031811", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "74777860177" + "rshares": "74777860177", + "voter": "kimziv" }, { - "voter": "emily-cook", - "rshares": "79450691320" + "rshares": "79450691320", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2251928158" + "rshares": "2251928158", + "voter": "superfreek" }, { - "voter": "mrhankeh", - "rshares": "471516850" + "rshares": "471516850", + "voter": "mrhankeh" }, { - "voter": "grey580", - "rshares": "17908173089" + "rshares": "17908173089", + "voter": "grey580" }, { - "voter": "bacchist", - "rshares": "68200649381" + "rshares": "68200649381", + "voter": "bacchist" }, { - "voter": "thebatchman", - "rshares": "20382051466" + "rshares": "20382051466", + "voter": "thebatchman" }, { - "voter": "lehard", - "rshares": "59056857395" + "rshares": "59056857395", + "voter": "lehard" }, { - "voter": "rubybian", - "rshares": "76017835973" + "rshares": "76017835973", + "voter": "rubybian" }, { - "voter": "konstantin", - "rshares": "18268797910" + "rshares": "18268797910", + "voter": "konstantin" }, { - "voter": "romel", - "rshares": "2649402156" + "rshares": "2649402156", + "voter": "romel" }, { - "voter": "gatoso", - "rshares": "6941291365" + "rshares": "6941291365", + "voter": "gatoso" }, { - "voter": "furion", - "rshares": "41821532061" + "rshares": "41821532061", + "voter": "furion" }, { - "voter": "barbara2", - "rshares": "200664863" + "rshares": "200664863", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "223036409" + "rshares": "223036409", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "206422340" + "rshares": "206422340", + "voter": "doge4lyf" }, { - "voter": "asim", - "rshares": "12011310308" + "rshares": "12011310308", + "voter": "asim" }, { - "voter": "snowden", - "rshares": "85512692" + "rshares": "85512692", + "voter": "snowden" }, { - "voter": "aaseb", - "rshares": "14804978653" + "rshares": "14804978653", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4431003942" + "rshares": "4431003942", + "voter": "karen13" }, { - "voter": "jrd8526", - "rshares": "1455625353" + "rshares": "1455625353", + "voter": "jrd8526" }, { - "voter": "artific", - "rshares": "21565632626" + "rshares": "21565632626", + "voter": "artific" }, { - "voter": "lichtblick", - "rshares": "7164402609" + "rshares": "7164402609", + "voter": "lichtblick" }, { - "voter": "creemej", - "rshares": "37826396801" + "rshares": "37826396801", + "voter": "creemej" }, { - "voter": "wildchild", - "rshares": "84865861" + "rshares": "84865861", + "voter": "wildchild" }, { - "voter": "maximkichev", - "rshares": "3871359622" + "rshares": "3871359622", + "voter": "maximkichev" }, { - "voter": "blueorgy", - "rshares": "167294697812" + "rshares": "167294697812", + "voter": "blueorgy" }, { - "voter": "poseidon", - "rshares": "1631211812" + "rshares": "1631211812", + "voter": "poseidon" }, { - "voter": "iamwne", - "rshares": "2083366228" + "rshares": "2083366228", + "voter": "iamwne" }, { - "voter": "calaber24p", - "rshares": "362447415925" + "rshares": "362447415925", + "voter": "calaber24p" }, { - "voter": "rpf", - "rshares": "10466922918" + "rshares": "10466922918", + "voter": "rpf" }, { - "voter": "bitcoiner", - "rshares": "3694190342" + "rshares": "3694190342", + "voter": "bitcoiner" }, { - "voter": "deanliu", - "rshares": "33624572763" + "rshares": "33624572763", + "voter": "deanliu" }, { - "voter": "meteor78", - "rshares": "459345887" + "rshares": "459345887", + "voter": "meteor78" }, { - "voter": "zaebars", - "rshares": "30193718340" + "rshares": "30193718340", + "voter": "zaebars" }, { - "voter": "positive", - "rshares": "6948016204" + "rshares": "6948016204", + "voter": "positive" }, { - "voter": "raymonjohnstone", - "rshares": "780088825" + "rshares": "780088825", + "voter": "raymonjohnstone" }, { - "voter": "krabgat", - "rshares": "19827631792" + "rshares": "19827631792", + "voter": "krabgat" }, { - "voter": "sisterholics", - "rshares": "11734541225" + "rshares": "11734541225", + "voter": "sisterholics" }, { - "voter": "alex.chien", - "rshares": "1483259422" + "rshares": "1483259422", + "voter": "alex.chien" }, { - "voter": "royalmacro", - "rshares": "8921616604" + "rshares": "8921616604", + "voter": "royalmacro" }, { - "voter": "fnait", - "rshares": "233934645" + "rshares": "233934645", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "207827906" + "rshares": "207827906", + "voter": "keepcalmand" }, { - "voter": "remlaps", - "rshares": "1838091863" + "rshares": "1838091863", + "voter": "remlaps" }, { - "voter": "glitterpig", - "rshares": "3445177864" + "rshares": "3445177864", + "voter": "glitterpig" }, { - "voter": "uwe69", - "rshares": "7221227809" + "rshares": "7221227809", + "voter": "uwe69" }, { - "voter": "metaflute", - "rshares": "896285424" + "rshares": "896285424", + "voter": "metaflute" }, { - "voter": "gomeravibz", - "rshares": "50575844297" + "rshares": "50575844297", + "voter": "gomeravibz" }, { - "voter": "taker", - "rshares": "9193626491" + "rshares": "9193626491", + "voter": "taker" }, { - "voter": "merej99", - "rshares": "2236809039" + "rshares": "2236809039", + "voter": "merej99" }, { - "voter": "laonie", - "rshares": "414945627496" + "rshares": "414945627496", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "166006086500" + "rshares": "166006086500", + "voter": "twinner" }, { - "voter": "laonie1", - "rshares": "22430898487" + "rshares": "22430898487", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "22947696195" + "rshares": "22947696195", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "22955764004" + "rshares": "22955764004", + "voter": "laonie3" }, { - "voter": "laoyao", - "rshares": "25206296089" + "rshares": "25206296089", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "14653942462" + "rshares": "14653942462", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "90711449970" + "rshares": "90711449970", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "3391693609" + "rshares": "3391693609", + "voter": "flysaga" }, { - "voter": "brendio", - "rshares": "5465055585" + "rshares": "5465055585", + "voter": "brendio" }, { - "voter": "gmurph", - "rshares": "2084677795" + "rshares": "2084677795", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "18607683624" + "rshares": "18607683624", + "voter": "midnightoil" }, { - "voter": "kalimor", - "rshares": "2280336943" + "rshares": "2280336943", + "voter": "kalimor" }, { - "voter": "glitterfart", - "rshares": "504711698206" + "rshares": "504711698206", + "voter": "glitterfart" }, { - "voter": "laonie4", - "rshares": "22951578069" + "rshares": "22951578069", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "22949307467" + "rshares": "22949307467", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "22946449112" + "rshares": "22946449112", + "voter": "laonie6" }, { - "voter": "laonie7", - "rshares": "22942428841" + "rshares": "22942428841", + "voter": "laonie7" }, { - "voter": "kurtbeil", - "rshares": "3489545901" + "rshares": "3489545901", + "voter": "kurtbeil" }, { - "voter": "laonie8", - "rshares": "22939097897" + "rshares": "22939097897", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "22936432119" + "rshares": "22936432119", + "voter": "laonie9" }, { - "voter": "xiaohui", - "rshares": "46536921016" + "rshares": "46536921016", + "voter": "xiaohui" }, { - "voter": "terrycraft", - "rshares": "177527074798" + "rshares": "177527074798", + "voter": "terrycraft" }, { - "voter": "dolov", - "rshares": "1321003450" + "rshares": "1321003450", + "voter": "dolov" }, { - "voter": "bigsambucca", - "rshares": "88179884" + "rshares": "88179884", + "voter": "bigsambucca" }, { - "voter": "elfkitchen", - "rshares": "2287717822" + "rshares": "2287717822", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "105894845081" + "rshares": "105894845081", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "6166349652" + "rshares": "6166349652", + "voter": "oflyhigh" }, { - "voter": "paynode", - "rshares": "2229123966" + "rshares": "2229123966", + "voter": "paynode" }, { - "voter": "xiaokongcom", - "rshares": "1566982177" + "rshares": "1566982177", + "voter": "xiaokongcom" }, { - "voter": "xcepta", - "rshares": "253808801" + "rshares": "253808801", + "voter": "xcepta" }, { - "voter": "xianjun", - "rshares": "3158713250" + "rshares": "3158713250", + "voter": "xianjun" }, { - "voter": "borran", - "rshares": "12796476601" + "rshares": "12796476601", + "voter": "borran" }, { - "voter": "jupiter.zeus", - "rshares": "64119004" + "rshares": "64119004", + "voter": "jupiter.zeus" }, { - "voter": "stevescriber", - "rshares": "70633121" + "rshares": "70633121", + "voter": "stevescriber" }, { - "voter": "loli", - "rshares": "50027573" + "rshares": "50027573", + "voter": "loli" }, { - "voter": "nano2nd", - "rshares": "51199976" + "rshares": "51199976", + "voter": "nano2nd" }, { - "voter": "njall", - "rshares": "2249451928" + "rshares": "2249451928", + "voter": "njall" }, { - "voter": "microluck", - "rshares": "206879958" + "rshares": "206879958", + "voter": "microluck" }, { - "voter": "userlogin", - "rshares": "6547835526" + "rshares": "6547835526", + "voter": "userlogin" }, { - "voter": "rubenalexander", - "rshares": "6802729666" + "rshares": "6802729666", + "voter": "rubenalexander" }, { - "voter": "photo00", - "rshares": "59219258" + "rshares": "59219258", + "voter": "photo00" }, { - "voter": "tagira", - "rshares": "604279479" + "rshares": "604279479", + "voter": "tagira" }, { - "voter": "chinadaily", - "rshares": "2131733339" + "rshares": "2131733339", + "voter": "chinadaily" }, { - "voter": "pollina", - "rshares": "108403024" + "rshares": "108403024", + "voter": "pollina" }, { - "voter": "levycore", - "rshares": "2649789126" + "rshares": "2649789126", + "voter": "levycore" }, { - "voter": "laonie10", - "rshares": "22930483067" + "rshares": "22930483067", + "voter": "laonie10" }, { - "voter": "mrlogic", - "rshares": "332237822" + "rshares": "332237822", + "voter": "mrlogic" }, { - "voter": "mandibil", - "rshares": "59229074587" + "rshares": "59229074587", + "voter": "mandibil" }, { - "voter": "shadowspub", - "rshares": "2132454023" + "rshares": "2132454023", + "voter": "shadowspub" }, { - "voter": "bonapetit", - "rshares": "59067894" + "rshares": "59067894", + "voter": "bonapetit" }, { - "voter": "richardcrill", - "rshares": "5053531368" + "rshares": "5053531368", + "voter": "richardcrill" }, { - "voter": "laonie11", - "rshares": "22091338934" + "rshares": "22091338934", + "voter": "laonie11" }, { - "voter": "eight-rad", - "rshares": "2101664455" + "rshares": "2101664455", + "voter": "eight-rad" }, { - "voter": "xanoxt", - "rshares": "3336919086" + "rshares": "3336919086", + "voter": "xanoxt" }, { - "voter": "davidjkelley", - "rshares": "1661479473" + "rshares": "1661479473", + "voter": "davidjkelley" }, { - "voter": "team101", - "rshares": "187911420" + "rshares": "187911420", + "voter": "team101" }, { - "voter": "rusla", - "rshares": "109225703" + "rshares": "109225703", + "voter": "rusla" }, { - "voter": "mscleverclocks", - "rshares": "4892645779" + "rshares": "4892645779", + "voter": "mscleverclocks" }, { - "voter": "ksena", - "rshares": "727103786" + "rshares": "727103786", + "voter": "ksena" }, { - "voter": "sponge-bob", - "rshares": "11069296957" + "rshares": "11069296957", + "voter": "sponge-bob" }, { - "voter": "l0k1", - "rshares": "4268200560" + "rshares": "4268200560", + "voter": "l0k1" }, { - "voter": "digital-wisdom", - "rshares": "15569990970" + "rshares": "15569990970", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3791420478" + "rshares": "3791420478", + "voter": "ethical-ai" }, { - "voter": "jwaser", - "rshares": "6830905360" + "rshares": "6830905360", + "voter": "jwaser" }, { - "voter": "apparat", - "rshares": "50858762" + "rshares": "50858762", + "voter": "apparat" }, { - "voter": "asksisk", - "rshares": "212888896291" + "rshares": "212888896291", + "voter": "asksisk" }, { - "voter": "bwaser", - "rshares": "2675382304" + "rshares": "2675382304", + "voter": "bwaser" }, { - "voter": "panther", - "rshares": "350998373" + "rshares": "350998373", + "voter": "panther" }, { - "voter": "ct-gurus", - "rshares": "659649765" + "rshares": "659649765", + "voter": "ct-gurus" }, { - "voter": "park.bom", - "rshares": "54793782" + "rshares": "54793782", + "voter": "park.bom" }, { - "voter": "charlieshrem", - "rshares": "395173675944" + "rshares": "395173675944", + "voter": "charlieshrem" }, { - "voter": "tracemayer", - "rshares": "60104450664" + "rshares": "60104450664", + "voter": "tracemayer" }, { - "voter": "brains", - "rshares": "23239991726" + "rshares": "23239991726", + "voter": "brains" }, { - "voter": "anomaly", - "rshares": "407083055" + "rshares": "407083055", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401189699" + "rshares": "2401189699", + "voter": "ellepdub" }, { - "voter": "inarix03", - "rshares": "61292139" + "rshares": "61292139", + "voter": "inarix03" }, { - "voter": "ola1", - "rshares": "172352271" + "rshares": "172352271", + "voter": "ola1" }, { - "voter": "herpetologyguy", - "rshares": "12396603737" + "rshares": "12396603737", + "voter": "herpetologyguy" }, { - "voter": "drac59", - "rshares": "51826827" + "rshares": "51826827", + "voter": "drac59" }, { - "voter": "morgan.waser", - "rshares": "4816713747" + "rshares": "4816713747", + "voter": "morgan.waser" }, { - "voter": "thefinanceguy", - "rshares": "297771990" + "rshares": "297771990", + "voter": "thefinanceguy" }, { - "voter": "anns", - "rshares": "1258344048" + "rshares": "1258344048", + "voter": "anns" }, { - "voter": "oxygen", - "rshares": "50907857" + "rshares": "50907857", + "voter": "oxygen" }, { - "voter": "cyan", - "rshares": "50875769" + "rshares": "50875769", + "voter": "cyan" }, { - "voter": "jumbo", - "rshares": "50868434" + "rshares": "50868434", + "voter": "jumbo" }, { - "voter": "sting", - "rshares": "50865840" + "rshares": "50865840", + "voter": "sting" }, { - "voter": "factom", - "rshares": "50796122" + "rshares": "50796122", + "voter": "factom" }, { - "voter": "autodesk", - "rshares": "50794039" + "rshares": "50794039", + "voter": "autodesk" }, { - "voter": "brazzers", - "rshares": "50568084" + "rshares": "50568084", + "voter": "brazzers" }, { - "voter": "rabobank", - "rshares": "50543061" + "rshares": "50543061", + "voter": "rabobank" }, { - "voter": "fenix", - "rshares": "50538694" + "rshares": "50538694", + "voter": "fenix" }, { - "voter": "albertheijn", - "rshares": "50349676" + "rshares": "50349676", + "voter": "albertheijn" }, { - "voter": "strong-ai", - "rshares": "3689644671" + "rshares": "3689644671", + "voter": "strong-ai" }, { - "voter": "ninjapainter", - "rshares": "52329350" + "rshares": "52329350", + "voter": "ninjapainter" }, { - "voter": "darkminded153", - "rshares": "254506659" + "rshares": "254506659", + "voter": "darkminded153" }, { - "voter": "grisha-danunaher", - "rshares": "527435916" + "rshares": "527435916", + "voter": "grisha-danunaher" }, { - "voter": "ctu", - "rshares": "162917785" + "rshares": "162917785", + "voter": "ctu" }, { - "voter": "front", - "rshares": "162911190" + "rshares": "162911190", + "voter": "front" }, { - "voter": "rusteemitblog", - "rshares": "1630327346" + "rshares": "1630327346", + "voter": "rusteemitblog" }, { - "voter": "pyro", - "rshares": "161089804" + "rshares": "161089804", + "voter": "pyro" }, { - "voter": "xtreme", - "rshares": "159025535" + "rshares": "159025535", + "voter": "xtreme" }, { - "voter": "icesteem", - "rshares": "155528114" + "rshares": "155528114", + "voter": "icesteem" }, { - "voter": "steem-wallet", - "rshares": "158602900" + "rshares": "158602900", + "voter": "steem-wallet" }, { - "voter": "steemthis", - "rshares": "158560941" + "rshares": "158560941", + "voter": "steemthis" }, { - "voter": "dealzgal", - "rshares": "74838700" + "rshares": "74838700", + "voter": "dealzgal" }, { - "voter": "orenshani7", - "rshares": "255357124" + "rshares": "255357124", + "voter": "orenshani7" }, { - "voter": "storage", - "rshares": "68013381" + "rshares": "68013381", + "voter": "storage" }, { - "voter": "blackmarket", - "rshares": "58460105" + "rshares": "58460105", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "61530871" + "rshares": "61530871", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "93882016" + "rshares": "93882016", + "voter": "expat" }, { - "voter": "dimaisrael", - "rshares": "154566975" + "rshares": "154566975", + "voter": "dimaisrael" }, { - "voter": "steemlift", - "rshares": "1593664040" + "rshares": "1593664040", + "voter": "steemlift" }, { - "voter": "toddemaher1", - "rshares": "138651704" + "rshares": "138651704", + "voter": "toddemaher1" } ], + "author": "terrycraft", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 210, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/philosophy/@terrycraft/a-look-from-the-past-vzglyad-iz-proshlogo-featuring-panther-as-author", - "blacklists": [] - }, - { - "post_id": 956546, - "author": "masteryoda", - "permlink": "weekly-payouts-leaderboards-september-week-2", - "category": "stats", - "title": "Weekly payouts leaderboards - September week 2", - "body": "![photo](http://i.imgsafe.org/81a1095cd2.png)\n\n- - -\n\nThis report covers payouts made between:\n\n**September 8, 2016, 12:00 am UTC** and **September 14, 2016, 11:59 pm UTC**\n\nTotal SBD paid: **136 116.418 SBD**\n\nTotal VESTS paid: **714 086 946.799 VESTS**\n\n- - -\n\n### SBD and VESTS payouts chart:\n![photo](http://imgh.us/canvas2_1.png)\n\n- - -\n\n### Top 100 overall SBD earners:\n|Rank | Account | Posts |SBD | VESTS |\n| :-----| ------------- |-------------:|-------------:| -----:|\n|1|[@ericvancewalton](https://steemit.com/@ericvancewalton)|15|6 077.522|24 596 951.571|\n|2|[@roelandp](https://steemit.com/@roelandp)|5|5 750.861|26 290 325.567|\n|3|[@gavvet](https://steemit.com/@gavvet)|29|5 680.552|23 514 590.090|\n|4|[@knozaki2015](https://steemit.com/@knozaki2015)|27|4 089.160|16 881 905.884|\n|5|[@sirwinchester](https://steemit.com/@sirwinchester)|20|3 196.259|13 196 949.343|\n|6|[@terrycraft](https://steemit.com/@terrycraft)|22|2 997.141|12 216 236.410|\n|7|[@calaber24p](https://steemit.com/@calaber24p)|9|2 411.786|10 175 362.253|\n|8|[@dollarvigilante](https://steemit.com/@dollarvigilante)|9|2 135.290|9 376 253.261|\n|9|[@someguy123](https://steemit.com/@someguy123)|11|1 852.735|7 812 606.655|\n|10|[@ozchartart](https://steemit.com/@ozchartart)|13|1 771.698|7 215 740.701|\n|11|[@infovore](https://steemit.com/@infovore)|5|1 705.589|6 924 653.829|\n|12|[@lifeisawesome](https://steemit.com/@lifeisawesome)|6|1 689.879|6 989 106.948|\n|13|[@dantheman](https://steemit.com/@dantheman)|11|1 612.428|8 604 664.210|\n|14|[@jamielefay](https://steemit.com/@jamielefay)|4|1 607.864|6 411 495.342|\n|15|[@kevinwong](https://steemit.com/@kevinwong)|6|1 525.609|6 542 045.016|\n|16|[@charlieshrem](https://steemit.com/@charlieshrem)|4|1 500.105|6 557 010.291|\n|17|[@jesta](https://steemit.com/@jesta)|9|1 492.300|6 472 103.097|\n|18|[@masteryoda](https://steemit.com/@masteryoda)|16|1 423.208|6 023 057.885|\n|19|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|9|1 324.346|5 343 516.577|\n|20|[@katecloud](https://steemit.com/@katecloud)|7|1 265.447|5 136 897.795|\n|21|[@timsaid](https://steemit.com/@timsaid)|10|1 153.420|4 999 746.262|\n|22|[@sascha](https://steemit.com/@sascha)|2|1 152.462|4 737 155.424|\n|23|[@honeyscribe](https://steemit.com/@honeyscribe)|6|1 147.954|4 693 320.648|\n|24|[@cryptogee](https://steemit.com/@cryptogee)|4|1 145.094|4 704 779.347|\n|25|[@krishtopa](https://steemit.com/@krishtopa)|11|1 143.346|4 834 060.865|\n|26|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|8|1 138.985|4 813 642.940|\n|27|[@good-karma](https://steemit.com/@good-karma)|6|1 118.049|5 063 419.555|\n|28|[@lobotony](https://steemit.com/@lobotony)|2|1 084.459|4 247 247.973|\n|29|[@markrmorrisjr](https://steemit.com/@markrmorrisjr)|21|1 058.539|4 369 963.419|\n|30|[@curie](https://steemit.com/@curie)|5|1 056.415|4 572 371.506|\n|31|[@opheliafu](https://steemit.com/@opheliafu)|19|1 005.845|4 156 440.681|\n|32|[@steve-walschot](https://steemit.com/@steve-walschot)|4|972.080|4 394 483.105|\n|33|[@marius19](https://steemit.com/@marius19)|23|951.573|4 011 036.875|\n|34|[@serejandmyself](https://steemit.com/@serejandmyself)|11|941.108|3 990 747.231|\n|35|[@steempower](https://steemit.com/@steempower)|4|848.391|3 693 774.188|\n|36|[@aizensou](https://steemit.com/@aizensou)|4|813.814|3 460 586.334|\n|37|[@furion](https://steemit.com/@furion)|7|776.731|3 320 010.859|\n|38|[@officialfuzzy](https://steemit.com/@officialfuzzy)|5|769.671|3 256 431.084|\n|39|[@kencode](https://steemit.com/@kencode)|3|769.635|3 084 463.879|\n|40|[@clayop](https://steemit.com/@clayop)|9|744.729|3 588 626.269|\n|41|[@larkenrose](https://steemit.com/@larkenrose)|8|718.161|2 952 298.454|\n|42|[@steemdrive](https://steemit.com/@steemdrive)|1|713.054|3 137 516.266|\n|43|[@jpiper20](https://steemit.com/@jpiper20)|21|704.591|2 861 337.136|\n|44|[@xeroc](https://steemit.com/@xeroc)|3|700.860|3 667 185.079|\n|45|[@steemship](https://steemit.com/@steemship)|3|700.485|2 935 488.501|\n|46|[@steemcleaners](https://steemit.com/@steemcleaners)|3|659.132|2 596 140.333|\n|47|[@complexring](https://steemit.com/@complexring)|2|647.683|6 065 457.160|\n|48|[@charleshosk](https://steemit.com/@charleshosk)|2|585.319|2 399 760.878|\n|49|[@hisnameisolllie](https://steemit.com/@hisnameisolllie)|11|581.385|2 338 969.539|\n|50|[@sweetsssj](https://steemit.com/@sweetsssj)|14|523.979|2 170 158.700|\n|51|[@livingthedream](https://steemit.com/@livingthedream)|4|510.792|2 027 254.578|\n|52|[@eneismijmich](https://steemit.com/@eneismijmich)|9|504.116|2 061 771.205|\n|53|[@sterlinluxan](https://steemit.com/@sterlinluxan)|7|500.904|2 022 584.130|\n|54|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|1|497.669|2 274 840.954|\n|55|[@b0y2k](https://steemit.com/@b0y2k)|2|497.114|2 132 474.149|\n|56|[@fairytalelife](https://steemit.com/@fairytalelife)|7|481.143|2 023 586.799|\n|57|[@corbettreport](https://steemit.com/@corbettreport)|6|457.908|1 979 421.716|\n|58|[@kental](https://steemit.com/@kental)|19|435.486|1 746 992.520|\n|59|[@barrycooper](https://steemit.com/@barrycooper)|4|433.548|1 887 586.618|\n|60|[@storyseeker](https://steemit.com/@storyseeker)|4|430.221|1 849 858.609|\n|61|[@jacor](https://steemit.com/@jacor)|11|428.758|1 774 043.305|\n|62|[@bravenewcoin](https://steemit.com/@bravenewcoin)|14|427.758|1 764 533.073|\n|63|[@alexbeyman](https://steemit.com/@alexbeyman)|36|409.397|1 679 902.161|\n|64|[@gangsta](https://steemit.com/@gangsta)|5|405.820|1 620 709.343|\n|65|[@dannystravels](https://steemit.com/@dannystravels)|1|404.374|1 568 065.581|\n|66|[@smailer](https://steemit.com/@smailer)|11|400.558|1 679 104.012|\n|67|[@mibenkito](https://steemit.com/@mibenkito)|1|399.692|1 722 718.612|\n|68|[@cass](https://steemit.com/@cass)|1|391.041|1 993 157.960|\n|69|[@razvanelulmarin](https://steemit.com/@razvanelulmarin)|13|373.350|1 644 174.858|\n|70|[@mrs.steemit](https://steemit.com/@mrs.steemit)|9|368.118|1 530 900.679|\n|71|[@jamtaylor](https://steemit.com/@jamtaylor)|14|358.256|1 555 939.370|\n|72|[@senseiteekay](https://steemit.com/@senseiteekay)|11|357.948|1 517 489.098|\n|73|[@healthyrecipes](https://steemit.com/@healthyrecipes)|3|350.465|1 480 991.813|\n|74|[@aggroed](https://steemit.com/@aggroed)|14|348.227|1 428 790.019|\n|75|[@celebr1ty](https://steemit.com/@celebr1ty)|5|341.894|1 368 751.869|\n|76|[@dana-edwards](https://steemit.com/@dana-edwards)|10|337.839|1 341 593.683|\n|77|[@cryptovpn](https://steemit.com/@cryptovpn)|5|330.063|1 278 755.869|\n|78|[@nanzo-scoop](https://steemit.com/@nanzo-scoop)|17|330.055|2 655 433.594|\n|79|[@fyrstikken](https://steemit.com/@fyrstikken)|23|325.469|1 521 433.247|\n|80|[@richman](https://steemit.com/@richman)|5|321.227|1 332 080.256|\n|81|[@enric](https://steemit.com/@enric)|1|311.640|1 208 207.684|\n|82|[@firepower](https://steemit.com/@firepower)|1|308.085|1 405 620.303|\n|83|[@donkeypong](https://steemit.com/@donkeypong)|4|306.922|1 672 530.744|\n|84|[@churdtzu](https://steemit.com/@churdtzu)|7|305.428|1 246 268.798|\n|85|[@pfunk](https://steemit.com/@pfunk)|6|304.288|1 696 845.158|\n|86|[@canadian-coconut](https://steemit.com/@canadian-coconut)|7|303.757|1 247 066.035|\n|87|[@alexgr](https://steemit.com/@alexgr)|7|296.946|1 259 479.298|\n|88|[@quinneaker](https://steemit.com/@quinneaker)|15|293.521|1 241 558.241|\n|89|[@nekromarinist](https://steemit.com/@nekromarinist)|10|288.002|1 136 848.911|\n|90|[@liberosist](https://steemit.com/@liberosist)|6|284.471|1 407 917.609|\n|91|[@sigmajin](https://steemit.com/@sigmajin)|3|276.147|1 127 048.263|\n|92|[@aaronkoenig](https://steemit.com/@aaronkoenig)|9|274.485|1 168 689.323|\n|93|[@tracemayer](https://steemit.com/@tracemayer)|7|273.934|1 170 292.676|\n|94|[@hilarski](https://steemit.com/@hilarski)|12|272.752|1 111 134.239|\n|95|[@shammyshiggs](https://steemit.com/@shammyshiggs)|6|267.958|1 068 640.107|\n|96|[@halo](https://steemit.com/@halo)|34|265.233|1 109 892.049|\n|97|[@rok-sivante](https://steemit.com/@rok-sivante)|8|261.410|1 152 452.980|\n|98|[@vermillion666](https://steemit.com/@vermillion666)|2|260.282|1 015 370.956|\n|99|[@kaylinart](https://steemit.com/@kaylinart)|31|258.027|1 209 969.357|\n|100|[@kobur](https://steemit.com/@kobur)|9|257.060|1 001 194.076|\n\n\n- - -\n\n### Top 100 overall VESTS earners:\n|Rank | Account | SBD | VESTS |\n| :-----| ------------- |-------------:| -----:|\n|1|[@blocktrades](https://steemit.com/@blocktrades)|6.267|31 932 805.126|\n|2|[@roelandp](https://steemit.com/@roelandp)|5 750.861|26 290 325.567|\n|3|[@ericvancewalton](https://steemit.com/@ericvancewalton)|6 077.522|24 596 951.571|\n|4|[@gavvet](https://steemit.com/@gavvet)|5 680.552|23 514 590.090|\n|5|[@knozaki2015](https://steemit.com/@knozaki2015)|4 089.160|16 881 905.884|\n|6|[@sirwinchester](https://steemit.com/@sirwinchester)|3 196.259|13 196 949.343|\n|7|[@terrycraft](https://steemit.com/@terrycraft)|2 997.141|12 216 236.410|\n|8|[@calaber24p](https://steemit.com/@calaber24p)|2 411.786|10 175 362.253|\n|9|[@smooth](https://steemit.com/@smooth)|35.690|9 725 180.893|\n|10|[@dollarvigilante](https://steemit.com/@dollarvigilante)|2 135.290|9 376 253.261|\n|11|[@berniesanders](https://steemit.com/@berniesanders)|3.218|9 025 844.273|\n|12|[@dantheman](https://steemit.com/@dantheman)|1 612.428|8 604 664.210|\n|13|[@someguy123](https://steemit.com/@someguy123)|1 852.735|7 812 606.655|\n|14|[@ozchartart](https://steemit.com/@ozchartart)|1 771.698|7 215 740.701|\n|15|[@lifeisawesome](https://steemit.com/@lifeisawesome)|1 689.879|6 989 106.948|\n|16|[@infovore](https://steemit.com/@infovore)|1 705.589|6 924 653.829|\n|17|[@wang](https://steemit.com/@wang)|0.000|6 613 063.186|\n|18|[@charlieshrem](https://steemit.com/@charlieshrem)|1 500.105|6 557 010.291|\n|19|[@kevinwong](https://steemit.com/@kevinwong)|1 525.609|6 542 045.016|\n|20|[@jesta](https://steemit.com/@jesta)|1 492.300|6 472 103.097|\n|21|[@jamielefay](https://steemit.com/@jamielefay)|1 607.864|6 411 495.342|\n|22|[@complexring](https://steemit.com/@complexring)|647.683|6 065 457.160|\n|23|[@masteryoda](https://steemit.com/@masteryoda)|1 423.208|6 023 057.885|\n|24|[@nextgencrypto](https://steemit.com/@nextgencrypto)|7.149|5 399 639.966|\n|25|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|1 324.346|5 343 516.577|\n|26|[@katecloud](https://steemit.com/@katecloud)|1 265.447|5 136 897.795|\n|27|[@good-karma](https://steemit.com/@good-karma)|1 118.049|5 063 419.555|\n|28|[@timsaid](https://steemit.com/@timsaid)|1 153.420|4 999 746.262|\n|29|[@krishtopa](https://steemit.com/@krishtopa)|1 143.346|4 834 060.865|\n|30|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|1 138.985|4 813 642.940|\n|31|[@sascha](https://steemit.com/@sascha)|1 152.462|4 737 155.424|\n|32|[@cryptogee](https://steemit.com/@cryptogee)|1 145.094|4 704 779.347|\n|33|[@honeyscribe](https://steemit.com/@honeyscribe)|1 147.954|4 693 320.648|\n|34|[@curie](https://steemit.com/@curie)|1 056.415|4 572 371.506|\n|35|[@steve-walschot](https://steemit.com/@steve-walschot)|972.080|4 394 483.105|\n|36|[@markrmorrisjr](https://steemit.com/@markrmorrisjr)|1 058.539|4 369 963.419|\n|37|[@lobotony](https://steemit.com/@lobotony)|1 084.459|4 247 247.973|\n|38|[@steemed](https://steemit.com/@steemed)|32.767|4 188 255.968|\n|39|[@opheliafu](https://steemit.com/@opheliafu)|1 005.845|4 156 440.681|\n|40|[@riverhead](https://steemit.com/@riverhead)|7.248|4 045 823.778|\n|41|[@marius19](https://steemit.com/@marius19)|951.573|4 011 036.875|\n|42|[@serejandmyself](https://steemit.com/@serejandmyself)|941.108|3 990 747.231|\n|43|[@pharesim](https://steemit.com/@pharesim)|0.000|3 875 558.313|\n|44|[@steemit200](https://steemit.com/@steemit200)|0.000|3 768 755.702|\n|45|[@steempower](https://steemit.com/@steempower)|848.391|3 693 774.188|\n|46|[@xeroc](https://steemit.com/@xeroc)|700.860|3 667 185.079|\n|47|[@clayop](https://steemit.com/@clayop)|744.729|3 588 626.269|\n|48|[@aizensou](https://steemit.com/@aizensou)|813.814|3 460 586.334|\n|49|[@furion](https://steemit.com/@furion)|776.731|3 320 010.859|\n|50|[@xeldal](https://steemit.com/@xeldal)|0.393|3 300 335.411|\n|51|[@ned](https://steemit.com/@ned)|32.419|3 290 566.039|\n|52|[@officialfuzzy](https://steemit.com/@officialfuzzy)|769.671|3 256 431.084|\n|53|[@steemdrive](https://steemit.com/@steemdrive)|713.054|3 137 516.266|\n|54|[@joseph](https://steemit.com/@joseph)|57.350|3 085 782.531|\n|55|[@kencode](https://steemit.com/@kencode)|769.635|3 084 463.879|\n|56|[@larkenrose](https://steemit.com/@larkenrose)|718.161|2 952 298.454|\n|57|[@steemship](https://steemit.com/@steemship)|700.485|2 935 488.501|\n|58|[@recursive](https://steemit.com/@recursive)|6.621|2 918 906.746|\n|59|[@jpiper20](https://steemit.com/@jpiper20)|704.591|2 861 337.136|\n|60|[@hr1](https://steemit.com/@hr1)|0.300|2 780 636.062|\n|61|[@nanzo-scoop](https://steemit.com/@nanzo-scoop)|330.055|2 655 433.594|\n|62|[@laonie](https://steemit.com/@laonie)|116.404|2 619 872.564|\n|63|[@steemcleaners](https://steemit.com/@steemcleaners)|659.132|2 596 140.333|\n|64|[@charleshosk](https://steemit.com/@charleshosk)|585.319|2 399 760.878|\n|65|[@hisnameisolllie](https://steemit.com/@hisnameisolllie)|581.385|2 338 969.539|\n|66|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|497.669|2 274 840.954|\n|67|[@sweetsssj](https://steemit.com/@sweetsssj)|523.979|2 170 158.700|\n|68|[@b0y2k](https://steemit.com/@b0y2k)|497.114|2 132 474.149|\n|69|[@eneismijmich](https://steemit.com/@eneismijmich)|504.116|2 061 771.205|\n|70|[@livingthedream](https://steemit.com/@livingthedream)|510.792|2 027 254.578|\n|71|[@fairytalelife](https://steemit.com/@fairytalelife)|481.143|2 023 586.799|\n|72|[@sterlinluxan](https://steemit.com/@sterlinluxan)|500.904|2 022 584.130|\n|73|[@cass](https://steemit.com/@cass)|391.041|1 993 157.960|\n|74|[@corbettreport](https://steemit.com/@corbettreport)|457.908|1 979 421.716|\n|75|[@barrycooper](https://steemit.com/@barrycooper)|433.548|1 887 586.618|\n|76|[@jamesc](https://steemit.com/@jamesc)|0.153|1 871 857.951|\n|77|[@storyseeker](https://steemit.com/@storyseeker)|430.221|1 849 858.609|\n|78|[@jacor](https://steemit.com/@jacor)|428.758|1 774 043.305|\n|79|[@bravenewcoin](https://steemit.com/@bravenewcoin)|427.758|1 764 533.073|\n|80|[@kental](https://steemit.com/@kental)|435.486|1 746 992.520|\n|81|[@au1nethyb1](https://steemit.com/@au1nethyb1)|0.000|1 740 612.769|\n|82|[@mibenkito](https://steemit.com/@mibenkito)|399.692|1 722 718.612|\n|83|[@pfunk](https://steemit.com/@pfunk)|304.288|1 696 845.158|\n|84|[@alexbeyman](https://steemit.com/@alexbeyman)|409.397|1 679 902.161|\n|85|[@smailer](https://steemit.com/@smailer)|400.558|1 679 104.012|\n|86|[@badassmother](https://steemit.com/@badassmother)|0.000|1 679 019.431|\n|87|[@donkeypong](https://steemit.com/@donkeypong)|306.922|1 672 530.744|\n|88|[@razvanelulmarin](https://steemit.com/@razvanelulmarin)|373.350|1 644 174.858|\n|89|[@summon](https://steemit.com/@summon)|72.228|1 622 251.187|\n|90|[@gangsta](https://steemit.com/@gangsta)|405.820|1 620 709.343|\n|91|[@silver](https://steemit.com/@silver)|0.000|1 609 716.257|\n|92|[@dannystravels](https://steemit.com/@dannystravels)|404.374|1 568 065.581|\n|93|[@jamtaylor](https://steemit.com/@jamtaylor)|358.256|1 555 939.370|\n|94|[@mrs.steemit](https://steemit.com/@mrs.steemit)|368.118|1 530 900.679|\n|95|[@fyrstikken](https://steemit.com/@fyrstikken)|325.469|1 521 433.247|\n|96|[@senseiteekay](https://steemit.com/@senseiteekay)|357.948|1 517 489.098|\n|97|[@healthyrecipes](https://steemit.com/@healthyrecipes)|350.465|1 480 991.813|\n|98|[@satoshifund](https://steemit.com/@satoshifund)|0.000|1 472 512.796|\n|99|[@kushed](https://steemit.com/@kushed)|0.160|1 449 619.943|\n|100|[@aggroed](https://steemit.com/@aggroed)|348.227|1 428 790.019|\n\n\n- - -\n\n### Top 100 paying posts (author reward):\n|Rank | Account | SBD | VESTS | POST|\n| :-----| ------------- |-------------:| -----:|:-----|\n|1|[@roelandp](https://steemit.com/@roelandp)|5417.783|24936028.708622|[save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-n](https://steemit.com/all/@roelandp/save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl)|\n|2|[@someguy123](https://steemit.com/@someguy123)|1314.389|5601399.952738|[understeem-steemit-without-censorship-nsfw-filter-removed-vi](https://steemit.com/all/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor)|\n|3|[@kevinwong](https://steemit.com/@kevinwong)|971.542|4190657.642935|[logo-contest-for-project-curie-calling-all-designers](https://steemit.com/all/@kevinwong/logo-contest-for-project-curie-calling-all-designers)|\n|4|[@steve-walschot](https://steemit.com/@steve-walschot)|937.502|4105645.799136|[investigating-the-wale-scam-assumptions-above-knowledge](https://steemit.com/all/@steve-walschot/investigating-the-wale-scam-assumptions-above-knowledge)|\n|5|[@good-karma](https://steemit.com/@good-karma)|909.717|4210888.383925|[esteem-ios-1-2-2-released-advanced-login-signup-patch-post-e](https://steemit.com/all/@good-karma/esteem-ios-1-2-2-released-advanced-login-signup-patch-post-edits-photo-inclusion-on-posts-new-navigation-filter)|\n|6|[@cryptogee](https://steemit.com/@cryptogee)|802.871|3114844.305012|[a-quick-fix-for-a-broken-capitalist-society](https://steemit.com/all/@cryptogee/a-quick-fix-for-a-broken-capitalist-society)|\n|7|[@infovore](https://steemit.com/@infovore)|780.138|3145392.168091|[steemmag-steemit-s-weekend-digest-9-of-community-curation-an](https://steemit.com/all/@infovore/steemmag-steemit-s-weekend-digest-9-of-community-curation-and-reputation-chats-with-a-whale-steemit-chat-lead-moderators-a-day)|\n|8|[@steemdrive](https://steemit.com/@steemdrive)|709.735|3021388.477665|[steemdrive-second-proof-of-successful-crowdfunded-billboard-](https://steemit.com/all/@steemdrive/steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa)|\n|9|[@ericvancewalton](https://steemit.com/@ericvancewalton)|694.130|2692969.805438|[alarm-clock-dawn-an-original-novel-episode-22](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-22)|\n|10|[@sascha](https://steemit.com/@sascha)|672.279|2606133.315123|[our-life-on-planet-earth-part-8-the-meaning-of-life](https://steemit.com/all/@sascha/our-life-on-planet-earth-part-8-the-meaning-of-life)|\n|11|[@jesta](https://steemit.com/@jesta)|672.102|3084315.315130|[steem-bounty-system-milestone-1-proposal](https://steemit.com/all/@jesta/steem-bounty-system-milestone-1-proposal)|\n|12|[@steempower](https://steemit.com/@steempower)|670.009|2855734.328170|[bitshares-state-of-the-network-11th-sept-2016](https://steemit.com/all/@steempower/bitshares-state-of-the-network-11th-sept-2016)|\n|13|[@complexring](https://steemit.com/@complexring)|635.717|2707974.667320|[bypassing-the-great-firewall-of-china](https://steemit.com/all/@complexring/bypassing-the-great-firewall-of-china)|\n|14|[@katecloud](https://steemit.com/@katecloud)|628.891|2463723.749341|[a-photo-the-progression-of-a-painting-and-a-poem-by-kate-clo](https://steemit.com/all/@katecloud/a-photo-the-progression-of-a-painting-and-a-poem-by-kate-cloud)|\n|15|[@infovore](https://steemit.com/@infovore)|623.373|2415144.530628|[the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-th](https://steemit.com/all/@infovore/the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-the-internables-trend)|\n|16|[@ericvancewalton](https://steemit.com/@ericvancewalton)|605.001|2343398.347985|[the-cliff-an-original-poem](https://steemit.com/all/@ericvancewalton/the-cliff-an-original-poem)|\n|17|[@ericvancewalton](https://steemit.com/@ericvancewalton)|599.216|2408866.584548|[rush-hour-train-an-original-poem](https://steemit.com/all/@ericvancewalton/rush-hour-train-an-original-poem)|\n|18|[@dantheman](https://steemit.com/@dantheman)|588.696|2270663.485250|[censorship-is-impossible-in-a-free-society](https://steemit.com/all/@dantheman/censorship-is-impossible-in-a-free-society)|\n|19|[@ericvancewalton](https://steemit.com/@ericvancewalton)|573.497|2217973.305761|[too-simple-to-see-an-original-poem](https://steemit.com/all/@ericvancewalton/too-simple-to-see-an-original-poem)|\n|20|[@lobotony](https://steemit.com/@lobotony)|559.734|2169953.235319|[a-trip-to-the-north-part-1-of-2-iceland](https://steemit.com/all/@lobotony/a-trip-to-the-north-part-1-of-2-iceland)|\n|21|[@steemship](https://steemit.com/@steemship)|556.189|2365420.937467|[open-letter-to-ned-and-dan-you-badly-need-a-communications-c](https://steemit.com/all/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or)|\n|22|[@kevinwong](https://steemit.com/@kevinwong)|550.834|2135268.781675|[dayjob-ended-hello-steemit](https://steemit.com/all/@kevinwong/dayjob-ended-hello-steemit)|\n|23|[@ericvancewalton](https://steemit.com/@ericvancewalton)|539.244|2295220.650034|[alarm-clock-dawn-an-original-novel-episode-25](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-25)|\n|24|[@ericvancewalton](https://steemit.com/@ericvancewalton)|535.500|2075831.717451|[4ziyjc-alarm-clock-dawn-an-original-novel-episode-22](https://steemit.com/all/@ericvancewalton/4ziyjc-alarm-clock-dawn-an-original-novel-episode-22)|\n|25|[@lobotony](https://steemit.com/@lobotony)|524.725|2076637.525890|[a-trip-to-the-north-part-2-of-2-greenland](https://steemit.com/all/@lobotony/a-trip-to-the-north-part-2-of-2-greenland)|\n|26|[@dollarvigilante](https://steemit.com/@dollarvigilante)|522.074|2024561.204875|[gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-i](https://steemit.com/all/@dollarvigilante/gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-into-gold)|\n|27|[@calaber24p](https://steemit.com/@calaber24p)|516.871|2073762.161780|[the-evolution-of-virtual-economies-and-their-future-global-i](https://steemit.com/all/@calaber24p/the-evolution-of-virtual-economies-and-their-future-global-impact-on-the-world)|\n|28|[@jamielefay](https://steemit.com/@jamielefay)|515.285|1997372.750614|[ahe-ey-submission-an-original-novel-part-16](https://steemit.com/all/@jamielefay/ahe-ey-submission-an-original-novel-part-16)|\n|29|[@lifeisawesome](https://steemit.com/@lifeisawesome)|515.184|2076732.392526|[you-are-what-your-friends-are](https://steemit.com/all/@lifeisawesome/you-are-what-your-friends-are)|\n|30|[@ericvancewalton](https://steemit.com/@ericvancewalton)|512.929|1979697.284935|[alarm-clock-dawn-an-original-novel-episode-21](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-21)|\n|31|[@charlieshrem](https://steemit.com/@charlieshrem)|508.009|2110171.661194|[how-to-live-completely-off-steem-using-a-virtual-and-physica](https://steemit.com/all/@charlieshrem/how-to-live-completely-off-steem-using-a-virtual-and-physical-debit-card-topped-up-with-steem)|\n|32|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|497.660|2255006.094857|[the-lifecycle-of-a-song](https://steemit.com/all/@thisisbenbrick/the-lifecycle-of-a-song)|\n|33|[@timsaid](https://steemit.com/@timsaid)|493.545|1978954.745437|[life-explorers-the-human-senses-part-ii-hearing](https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-ii-hearing)|\n|34|[@gavvet](https://steemit.com/@gavvet)|483.546|2060779.396304|[crab-mentality-what-you-need-to-know-about-this-kind-of-degr](https://steemit.com/all/@gavvet/crab-mentality-what-you-need-to-know-about-this-kind-of-degrading-mentality-english-filipino)|\n|35|[@fairytalelife](https://steemit.com/@fairytalelife)|479.523|1927465.053480|[how-to-draw-a-braid](https://steemit.com/all/@fairytalelife/how-to-draw-a-braid)|\n|36|[@sascha](https://steemit.com/@sascha)|479.357|2090356.322663|[salt-as-an-energy-source-energetic-purification-with-salt](https://steemit.com/all/@sascha/salt-as-an-energy-source-energetic-purification-with-salt)|\n|37|[@ericvancewalton](https://steemit.com/@ericvancewalton)|459.391|1953748.642541|[walk-your-worries-an-original-poem](https://steemit.com/all/@ericvancewalton/walk-your-worries-an-original-poem)|\n|38|[@calaber24p](https://steemit.com/@calaber24p)|458.060|1948333.287074|[different-ways-to-think-about-your-time-and-money-to-lead-to](https://steemit.com/all/@calaber24p/different-ways-to-think-about-your-time-and-money-to-lead-to-better-financial-security)|\n|39|[@dollarvigilante](https://steemit.com/@dollarvigilante)|457.747|2096614.988536|[boom-end-game-nears-as-central-banks-buying-up-gold-mining-c](https://steemit.com/all/@dollarvigilante/boom-end-game-nears-as-central-banks-buying-up-gold-mining-companies)|\n|40|[@timsaid](https://steemit.com/@timsaid)|451.707|2069238.286170|[life-explorers-the-human-senses-part-iii-touch](https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-iii-touch)|\n|41|[@sterlinluxan](https://steemit.com/@sterlinluxan)|445.525|1790952.274641|[anarchapulco-is-one-of-the-most-world-changing-conferences-e](https://steemit.com/all/@sterlinluxan/anarchapulco-is-one-of-the-most-world-changing-conferences-ever)|\n|42|[@calaber24p](https://steemit.com/@calaber24p)|445.091|1730853.060104|[revamping-curation-is-the-way-to-increase-steem-power-demand](https://steemit.com/all/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand)|\n|43|[@jamielefay](https://steemit.com/@jamielefay)|444.129|1722107.917895|[ahe-ey-water-angels-an-original-novel-part-7-audiobook](https://steemit.com/all/@jamielefay/ahe-ey-water-angels-an-original-novel-part-7-audiobook)|\n|44|[@xeroc](https://steemit.com/@xeroc)|442.100|1715452.124498|[piston-how-to-use-it-for-multisignature-accounts](https://steemit.com/all/@xeroc/piston-how-to-use-it-for-multisignature-accounts)|\n|45|[@dollarvigilante](https://steemit.com/@dollarvigilante)|439.671|1772010.226787|[jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-sin](https://steemit.com/all/@dollarvigilante/jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-since-brexit)|\n|46|[@jamielefay](https://steemit.com/@jamielefay)|436.368|1860075.567439|[ahe-ey-allegiance-an-original-novel-part-18](https://steemit.com/all/@jamielefay/ahe-ey-allegiance-an-original-novel-part-18)|\n|47|[@jesta](https://steemit.com/@jesta)|427.963|1692835.407320|[steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-](https://steemit.com/all/@jesta/steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-0-14-0)|\n|48|[@dollarvigilante](https://steemit.com/@dollarvigilante)|426.107|1815667.350107|[famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-a](https://steemit.com/all/@dollarvigilante/famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-anarchy-and-cryptocurrencies)|\n|49|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|413.120|1600748.444404|[pura-vida-my-experience-working-on-a-permaculture-farm-in-co](https://steemit.com/all/@anwenbaumeister/pura-vida-my-experience-working-on-a-permaculture-farm-in-costa-rica-part-two)|\n|50|[@dannystravels](https://steemit.com/@dannystravels)|404.374|1567809.296314|[face-to-face-with-our-closest-living-relative-part-2-2](https://steemit.com/all/@dannystravels/face-to-face-with-our-closest-living-relative-part-2-2)|\n|51|[@sirwinchester](https://steemit.com/@sirwinchester)|403.621|1723295.787435|[bitcoin-exchange-berlin-meetup-with-ned-on-skype](https://steemit.com/all/@sirwinchester/bitcoin-exchange-berlin-meetup-with-ned-on-skype)|\n|52|[@mibenkito](https://steemit.com/@mibenkito)|399.692|1701129.893154|[a-steemian-s-world-food-journal-part-5-sydney](https://steemit.com/all/@mibenkito/a-steemian-s-world-food-journal-part-5-sydney)|\n|53|[@ericvancewalton](https://steemit.com/@ericvancewalton)|399.641|1719344.321486|[broken-dreams-an-original-poem](https://steemit.com/all/@ericvancewalton/broken-dreams-an-original-poem)|\n|54|[@charleshosk](https://steemit.com/@charleshosk)|390.939|1571334.118454|[ethereum-classic-an-update](https://steemit.com/all/@charleshosk/ethereum-classic-an-update)|\n|55|[@calaber24p](https://steemit.com/@calaber24p)|390.494|1824187.485033|[countries-that-incentivize-and-deregulate-crypto-startups-wi](https://steemit.com/all/@calaber24p/countries-that-incentivize-and-deregulate-crypto-startups-will-reap-the-rewards-if-the-technology-goes-mainstream)|\n|56|[@charlieshrem](https://steemit.com/@charlieshrem)|382.869|1477441.136465|[an-intimate-evening-with-charlie-shrem-moving-forward-south-](https://steemit.com/all/@charlieshrem/an-intimate-evening-with-charlie-shrem-moving-forward-south-florida-usa)|\n|57|[@officialfuzzy](https://steemit.com/@officialfuzzy)|378.829|1519255.893290|[guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-fri](https://steemit.com/all/@officialfuzzy/guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-friday-s-hangout-refer-projects-for-rewards)|\n|58|[@knozaki2015](https://steemit.com/@knozaki2015)|370.606|1493308.546306|[steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-german](https://steemit.com/all/@knozaki2015/steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-germany-9-9-2016-with-pictures)|\n|59|[@dantheman](https://steemit.com/@dantheman)|369.466|1485061.731912|[justification-for-104-week-power-down](https://steemit.com/all/@dantheman/justification-for-104-week-power-down)|\n|60|[@cass](https://steemit.com/@cass)|369.092|1533209.359825|[sneak-preview-chainsquad-corporate-branding-logo-design](https://steemit.com/all/@cass/sneak-preview-chainsquad-corporate-branding-logo-design)|\n|61|[@aizensou](https://steemit.com/@aizensou)|358.318|1418712.320393|[top-5-places-in-barcelona-featuring-maryfromsochi-as-author](https://steemit.com/all/@aizensou/top-5-places-in-barcelona-featuring-maryfromsochi-as-author)|\n|62|[@sirwinchester](https://steemit.com/@sirwinchester)|358.314|1477359.694757|[steemit-meetup-in-berlin-germany](https://steemit.com/all/@sirwinchester/steemit-meetup-in-berlin-germany)|\n|63|[@clayop](https://steemit.com/@clayop)|355.145|1512981.501683|[the-typology-of-curation-what-kinds-of-curators-we-have-now](https://steemit.com/all/@clayop/the-typology-of-curation-what-kinds-of-curators-we-have-now)|\n|64|[@kencode](https://steemit.com/@kencode)|353.240|1453050.277044|[ann-smartcoins-wallet-v1-0-6-released](https://steemit.com/all/@kencode/ann-smartcoins-wallet-v1-0-6-released)|\n|65|[@gavvet](https://steemit.com/@gavvet)|353.159|1405040.374698|[a-free-lunch-with-edward-snowden](https://steemit.com/all/@gavvet/a-free-lunch-with-edward-snowden)|\n|66|[@clayop](https://steemit.com/@clayop)|343.604|1365548.612065|[how-much-do-whales-influences-on-rewards-introducing-new-sta](https://steemit.com/all/@clayop/how-much-do-whales-influences-on-rewards-introducing-new-statistics)|\n|67|[@curie](https://steemit.com/@curie)|343.592|1465300.000707|[project-curie-s-daily-curation-list-10-sept-11-sept-2016](https://steemit.com/all/@curie/project-curie-s-daily-curation-list-10-sept-11-sept-2016)|\n|68|[@calaber24p](https://steemit.com/@calaber24p)|342.141|1457567.812539|[immigration-into-america-has-made-it-the-world-power-it-is-t](https://steemit.com/all/@calaber24p/immigration-into-america-has-made-it-the-world-power-it-is-today)|\n|69|[@b0y2k](https://steemit.com/@b0y2k)|340.586|1369051.035651|[steemit-sponsoring-the-compass-cup-team-event](https://steemit.com/all/@b0y2k/steemit-sponsoring-the-compass-cup-team-event)|\n|70|[@cryptogee](https://steemit.com/@cryptogee)|339.967|1496475.706859|[spotlight-issue-8-philosophy-music-and-science](https://steemit.com/all/@cryptogee/spotlight-issue-8-philosophy-music-and-science)|\n|71|[@kencode](https://steemit.com/@kencode)|337.474|1308694.645920|[blockpay-moving-up-the-charts](https://steemit.com/all/@kencode/blockpay-moving-up-the-charts)|\n|72|[@ericvancewalton](https://steemit.com/@ericvancewalton)|336.781|1347763.370147|[alarm-clock-dawn-an-original-novel-episode-24](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-24)|\n|73|[@gavvet](https://steemit.com/@gavvet)|332.977|1291120.851189|[hi-to-reinvent-yourself-featuring-sauravrungta-as-author](https://steemit.com/all/@gavvet/hi-to-reinvent-yourself-featuring-sauravrungta-as-author)|\n|74|[@ozchartart](https://steemit.com/@ozchartart)|332.418|1282511.839603|[usdeth-btc-poloniex-technical-analysis-sept-07-2016](https://steemit.com/all/@ozchartart/usdeth-btc-poloniex-technical-analysis-sept-07-2016)|\n|75|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|332.381|1339735.329416|[celtic-heart-knot-pictorial](https://steemit.com/all/@bridgetbunchy/celtic-heart-knot-pictorial)|\n|76|[@roelandp](https://steemit.com/@roelandp)|331.053|1286840.936796|[my-proper-introduceyourself-hello-i-m-roelandp](https://steemit.com/all/@roelandp/my-proper-introduceyourself-hello-i-m-roelandp)|\n|77|[@ericvancewalton](https://steemit.com/@ericvancewalton)|330.742|1295789.736302|[know-me-an-original-poem](https://steemit.com/all/@ericvancewalton/know-me-an-original-poem)|\n|78|[@cryptovpn](https://steemit.com/@cryptovpn)|329.564|1276654.885609|[steemit-charity-run-no-1-doctors-without-borders](https://steemit.com/all/@cryptovpn/steemit-charity-run-no-1-doctors-without-borders)|\n|79|[@steemcleaners](https://steemit.com/@steemcleaners)|329.504|1292242.895864|[steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-](https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-1)|\n|80|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|320.241|1241317.843204|[my-cross-country-road-trip-greater-than-sf-greater-than-vega](https://steemit.com/all/@anwenbaumeister/my-cross-country-road-trip-greater-than-sf-greater-than-vegas-greater-than-boulder-greater-than-houston-greater-than-new-orleans)|\n|81|[@charlieshrem](https://steemit.com/@charlieshrem)|313.754|1475625.347428|[a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-](https://steemit.com/all/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-life-and-the-shrempresso)|\n|82|[@enric](https://steemit.com/@enric)|311.617|1208114.056405|[im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurre](https://steemit.com/all/@enric/im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurrency-my-revolutionary-struggle-now-im-here)|\n|83|[@dantheman](https://steemit.com/@dantheman)|309.920|1201663.748404|[scalability-of-individual-responsibility-in-anarchy](https://steemit.com/all/@dantheman/scalability-of-individual-responsibility-in-anarchy)|\n|84|[@officialfuzzy](https://steemit.com/@officialfuzzy)|309.814|1312470.274185|[e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-test](https://steemit.com/all/@officialfuzzy/e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-testnet-jewels-ico-success-gridcoin-and-making-it-rain)|\n|85|[@gavvet](https://steemit.com/@gavvet)|308.127|1212749.753443|[a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-](https://steemit.com/all/@gavvet/a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-author)|\n|86|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|303.555|1201909.200453|[the-love-of-a-maker](https://steemit.com/all/@bridgetbunchy/the-love-of-a-maker)|\n|87|[@steemcleaners](https://steemit.com/@steemcleaners)|302.924|1192233.387004|[steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-](https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-2)|\n|88|[@dantheman](https://steemit.com/@dantheman)|301.672|1169749.675855|[nonviolent-censorship-is-how-nonviolent-societies-create-non](https://steemit.com/all/@dantheman/nonviolent-censorship-is-how-nonviolent-societies-create-nonviolent-government)|\n|89|[@infovore](https://steemit.com/@infovore)|301.261|1214999.166441|[a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-](https://steemit.com/all/@infovore/a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-moment-on-steemit-this-week-on-steemit-steemmag-steemit-s-weekend)|\n|90|[@firepower](https://steemit.com/@firepower)|300.280|1368056.554963|[when-i-lost-sight-while-steeming](https://steemit.com/all/@firepower/when-i-lost-sight-while-steeming)|\n|91|[@ozchartart](https://steemit.com/@ozchartart)|294.271|1183433.553199|[usddoge-btc-poloniex-technical-analysis-sept-10-2016](https://steemit.com/all/@ozchartart/usddoge-btc-poloniex-technical-analysis-sept-10-2016)|\n|92|[@donkeypong](https://steemit.com/@donkeypong)|293.559|1138798.465907|[a-tribute-to-snail-mail](https://steemit.com/all/@donkeypong/a-tribute-to-snail-mail)|\n|93|[@charlieshrem](https://steemit.com/@charlieshrem)|292.995|1135970.118327|[progressive-relaxation-by-charlie-shrem-mindfulness-meditati](https://steemit.com/all/@charlieshrem/progressive-relaxation-by-charlie-shrem-mindfulness-meditation-in-prison-and-everyday-life)|\n|94|[@curie](https://steemit.com/@curie)|289.920|1234271.286622|[project-curie-s-daily-curation-list-9-sept-10-sept-2016](https://steemit.com/all/@curie/project-curie-s-daily-curation-list-9-sept-10-sept-2016)|\n|95|[@furion](https://steemit.com/@furion)|289.919|1234751.363741|[a-quick-look-at-null-and-the-profitability-of-promoted-posts](https://steemit.com/all/@furion/a-quick-look-at-null-and-the-profitability-of-promoted-posts)|\n|96|[@sirwinchester](https://steemit.com/@sirwinchester)|288.926|1119010.839878|[mr-gourmet-exploring-a-new-location](https://steemit.com/all/@sirwinchester/mr-gourmet-exploring-a-new-location)|\n|97|[@larkenrose](https://steemit.com/@larkenrose)|281.627|1138819.558651|[supply-and-demand-steemit-style](https://steemit.com/all/@larkenrose/supply-and-demand-steemit-style)|\n|98|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|278.638|1162968.108837|[a-peek-into-pre-columbian-worldviews-found-in-agricultural-p](https://steemit.com/all/@anwenbaumeister/a-peek-into-pre-columbian-worldviews-found-in-agricultural-practices-duality-complementarity-cyclicity-and-reciprocity)|\n|99|[@corbettreport](https://steemit.com/@corbettreport)|277.435|1238430.062064|[only-9-11-truth-can-smash-the-9-11-lies](https://steemit.com/all/@corbettreport/only-9-11-truth-can-smash-the-9-11-lies)|\n|100|[@sirwinchester](https://steemit.com/@sirwinchester)|277.087|1113453.030386|[find-your-why-self-discovery-and-finding-your-purpose-in-lif](https://steemit.com/all/@sirwinchester/find-your-why-self-discovery-and-finding-your-purpose-in-life)|\n\n\n- - -\nPrevious report: [September week 1](https://steemit.com/stats/@masteryoda/weekly-payouts-leaderboards-september-week-1)\n- - -\n\n###### © @masteryoda", + "blacklists": [], + "body": "
\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman18.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

When looking through old photographs, you realize how much the world has changed around us.

\n
\u041f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u044f \u0441\u0442\u0430\u0440\u044b\u0435 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438, \u043e\u0441\u043e\u0437\u043d\u0430\u0451\u0448\u044c \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437\u043c\u0435\u043d\u0438\u043b\u0441\u044f \u043c\u0438\u0440 \u0432\u043e\u043a\u0440\u0443\u0433 \u043d\u0430\u0441.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman16.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

I am deeply convinced that the people imprinted on these black-and-white photographs never suspected what will happen to them in the future, whether it is immediate or distant As well as they didn't realized how quickly the years will pass, changing all the world around. So, as you look at their careless faces, you fairly quickly realize that your current situation is not much different.

\n
\u042f \u0433\u043b\u0443\u0431\u043e\u043a\u043e \u0443\u0432\u0435\u0440\u0435\u043d\u0430 \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u043b\u044e\u0434\u0438, \u0437\u0430\u043f\u0435\u0447\u0430\u0442\u043b\u0451\u043d\u043d\u044b\u0435 \u043d\u0430 \u0447\u0451\u0440\u043d\u043e-\u0431\u0435\u043b\u044b\u0445 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044f\u0445, \u043d\u0435 \u043f\u043e\u0434\u043e\u0437\u0440\u0435\u0432\u0430\u043b\u0438, \u0447\u0442\u043e \u0441\u0442\u0430\u043d\u0435\u0442 \u0441 \u043d\u0438\u043c\u0438 \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u043c, \u0438 \u043d\u0435 \u043e\u0447\u0435\u043d\u044c, \u0431\u0443\u0434\u0443\u0449\u0435\u043c. \u041d\u0435 \u0437\u043d\u0430\u043b\u0438 \u043e\u043d\u0438 \u0442\u0430\u043a\u0436\u0435, \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u0442\u0440\u0435\u043c\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u0440\u043e\u0439\u0434\u0443\u0442 \u0433\u043e\u0434\u044b, \u0438 \u043a\u0430\u043a \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u0441\u044f \u043c\u0438\u0440 \u0432\u043e\u043a\u0440\u0443\u0433. \u041f\u043e\u044d\u0442\u043e\u043c\u0443, \u0433\u043b\u044f\u0434\u044f \u043d\u0430 \u0438\u0445 \u0431\u0435\u0441\u043f\u0435\u0447\u043d\u044b\u0435 \u043b\u0438\u0446\u0430, \u0434\u043e\u0432\u043e\u043b\u044c\u043d\u043e \u0431\u044b\u0441\u0442\u0440\u043e \u043e\u0441\u043e\u0437\u043d\u0430\u0451\u0448\u044c, \u0447\u0442\u043e \u0442\u0432\u043e\u0451 \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0441\u0435\u0439\u0447\u0430\u0441 \u043c\u0430\u043b\u043e \u0447\u0435\u043c \u043e\u0442\u043b\u0438\u0447\u0430\u0435\u0442\u0441\u044f.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman14.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

Everything that happens around us changes the world we are witnessing. We live in an age of technological progress; the advent of the first computers, the Internet, gadgets, social networks, online games, e-commerce, cryptocurrency and, finally, a blockchain social network - the Steemit, which makes our minds work for creation of good content and its curation.

\n
\u0412\u0441\u0451 \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0435 \u0432\u043e\u043a\u0440\u0443\u0433 \u043d\u0430\u0441 \u043c\u0435\u043d\u044f\u0435\u0442 \u043c\u0438\u0440 \u043d\u0430 \u043d\u0430\u0448\u0438\u0445 \u0433\u043b\u0430\u0437\u0430\u0445. \u041c\u044b \u0436\u0438\u0432\u0451\u043c \u0432 \u0432\u0435\u043a \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0430; \u043f\u043e\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0432\u044b\u0445 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u0432, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430, \u0433\u0430\u0434\u0436\u0435\u0442\u043e\u0432, \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0435\u0442\u0435\u0439, \u043e\u043d\u043b\u0430\u0439\u043d-\u0438\u0433\u0440, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043c\u0430\u0433\u0430\u0437\u0438\u043d\u043e\u0432, \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0438, \u043d\u0430\u043a\u043e\u043d\u0435\u0446, \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 - Steemit, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0437\u0430\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043d\u0430\u0448\u0438 \u0443\u043c\u044b \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0445\u043e\u0440\u043e\u0448\u0435\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0438 \u0435\u0433\u043e \u043a\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f.
\n\n\nhttp://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman09.jpg\nImage credit / \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0444\u043e\u0442\u043e\n\n\n

And in 10 years, or maybe much earlier, we will see a completely different picture of reality. Generation Steem is coming. The generation that changed everything around and changed itself as well, in opposite to that generation you run with your eyes, trying to convince its immutability and the impossibility of change. No, this already will be the world of the past.

\n
\u0418 \u043b\u0435\u0442 \u0447\u0435\u0440\u0435\u0437 10, \u0430 \u043c\u043e\u0436\u0435\u0442 \u0437\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0440\u0430\u043d\u044c\u0448\u0435, \u043c\u044b \u0443\u0432\u0438\u0434\u0438\u043c \u0432 \u043a\u0430\u0434\u0440\u0435 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e \u0434\u0440\u0443\u0433\u0443\u044e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c. \u0413\u0440\u044f\u0434\u0451\u0442 Steem \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u0435, \u043f\u043e\u043a\u043e\u043b\u0435\u043d\u0438\u0435, \u0438\u0437\u043c\u0435\u043d\u0438\u0432\u0448\u0435\u0435 \u0432\u0441\u0451 \u0432\u043e\u043a\u0440\u0443\u0433 \u0441\u0435\u0431\u044f \u0438 \u0438\u0437\u043c\u0435\u043d\u0438\u0432\u0448\u0435\u0435\u0441\u044f \u0441\u0430\u043c\u043e, \u0430 \u043d\u0435 \u0442\u043e, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0441\u0435\u0439\u0447\u0430\u0441, \u043e\u0431\u0432\u043e\u0434\u044f \u0432\u0437\u0433\u043b\u044f\u0434\u043e\u043c, \u0432\u044b \u043f\u044b\u0442\u0430\u0435\u0442\u0435\u0441\u044c \u0443\u0431\u0435\u0434\u0438\u0442\u044c \u0432 \u0435\u0433\u043e \u043d\u0435\u0437\u044b\u0431\u043b\u0435\u043c\u043e\u0441\u0442\u0438 \u0438 \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u043d. \u041d\u0435\u0442, \u044d\u0442\u043e \u0443\u0436\u0435 \u0431\u0443\u0434\u0435\u0442 \u043c\u0438\u0440 \u043f\u0440\u043e\u0448\u043b\u043e\u0433\u043e.
\n\n\n\n

Written to the music: Antonio Vivaldi - The Four Seasons.

\n\n\nPlease follow me\n@panther\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @panther\n\n---\n\nAll STEEM Dollars for this post go to the featured author. \u0412\u0441\u0435 SD \u0437\u0430 \u043f\u043e\u0441\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442 \u0430\u0432\u0442\u043e\u0440.", + "category": "philosophy", + "children": 16, + "created": "2016-09-15T12:27:27", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "stats", - "steemstats", - "steem-stats", - "steemit" - ], - "users": [ - "masteryoda" - ], "image": [ - "http://i.imgsafe.org/81a1095cd2.png", - "http://imgh.us/canvas2_1.png" + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman18.jpg", + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman16.jpg", + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman14.jpg", + "http://bigpicture.ru/wp-content/uploads/2013/03/sovietwoman09.jpg" ], "links": [ - "https://steemit.com/@ericvancewalton", - "https://steemit.com/@roelandp", - "https://steemit.com/@gavvet", - "https://steemit.com/@knozaki2015", - "https://steemit.com/@sirwinchester", - "https://steemit.com/@terrycraft", - "https://steemit.com/@calaber24p", - "https://steemit.com/@dollarvigilante", - "https://steemit.com/@someguy123", - "https://steemit.com/@ozchartart", - "https://steemit.com/@infovore", - "https://steemit.com/@lifeisawesome", - "https://steemit.com/@dantheman", - "https://steemit.com/@jamielefay", - "https://steemit.com/@kevinwong", - "https://steemit.com/@charlieshrem", - "https://steemit.com/@jesta", - "https://steemit.com/@masteryoda", - "https://steemit.com/@bridgetbunchy", - "https://steemit.com/@katecloud", - "https://steemit.com/@timsaid", - "https://steemit.com/@sascha", - "https://steemit.com/@honeyscribe", - "https://steemit.com/@cryptogee", - "https://steemit.com/@krishtopa", - "https://steemit.com/@anwenbaumeister", - "https://steemit.com/@good-karma", - "https://steemit.com/@lobotony", - "https://steemit.com/@markrmorrisjr", - "https://steemit.com/@curie", - "https://steemit.com/@opheliafu", - "https://steemit.com/@steve-walschot", - "https://steemit.com/@marius19", - "https://steemit.com/@serejandmyself", - "https://steemit.com/@steempower", - "https://steemit.com/@aizensou", - "https://steemit.com/@furion", - "https://steemit.com/@officialfuzzy", - "https://steemit.com/@kencode", - "https://steemit.com/@clayop", - "https://steemit.com/@larkenrose", - "https://steemit.com/@steemdrive", - "https://steemit.com/@jpiper20", - "https://steemit.com/@xeroc", - "https://steemit.com/@steemship", - "https://steemit.com/@steemcleaners", - "https://steemit.com/@complexring", - "https://steemit.com/@charleshosk", - "https://steemit.com/@hisnameisolllie", - "https://steemit.com/@sweetsssj", - "https://steemit.com/@livingthedream", - "https://steemit.com/@eneismijmich", - "https://steemit.com/@sterlinluxan", - "https://steemit.com/@thisisbenbrick", - "https://steemit.com/@b0y2k", - "https://steemit.com/@fairytalelife", - "https://steemit.com/@corbettreport", - "https://steemit.com/@kental", - "https://steemit.com/@barrycooper", - "https://steemit.com/@storyseeker", - "https://steemit.com/@jacor", - "https://steemit.com/@bravenewcoin", - "https://steemit.com/@alexbeyman", - "https://steemit.com/@gangsta", - "https://steemit.com/@dannystravels", - "https://steemit.com/@smailer", - "https://steemit.com/@mibenkito", - "https://steemit.com/@cass", - "https://steemit.com/@razvanelulmarin", - "https://steemit.com/@mrs.steemit", - "https://steemit.com/@jamtaylor", - "https://steemit.com/@senseiteekay", - "https://steemit.com/@healthyrecipes", - "https://steemit.com/@aggroed", - "https://steemit.com/@celebr1ty", - "https://steemit.com/@dana-edwards", - "https://steemit.com/@cryptovpn", - "https://steemit.com/@nanzo-scoop", - "https://steemit.com/@fyrstikken", - "https://steemit.com/@richman", - "https://steemit.com/@enric", - "https://steemit.com/@firepower", - "https://steemit.com/@donkeypong", - "https://steemit.com/@churdtzu", - "https://steemit.com/@pfunk", - "https://steemit.com/@canadian-coconut", - "https://steemit.com/@alexgr", - "https://steemit.com/@quinneaker", - "https://steemit.com/@nekromarinist", - "https://steemit.com/@liberosist", - "https://steemit.com/@sigmajin", - "https://steemit.com/@aaronkoenig", - "https://steemit.com/@tracemayer", - "https://steemit.com/@hilarski", - "https://steemit.com/@shammyshiggs", - "https://steemit.com/@halo", - "https://steemit.com/@rok-sivante", - "https://steemit.com/@vermillion666", - "https://steemit.com/@kaylinart", - "https://steemit.com/@kobur", - "https://steemit.com/@blocktrades", - "https://steemit.com/@smooth", - "https://steemit.com/@berniesanders", - "https://steemit.com/@wang", - "https://steemit.com/@nextgencrypto", - "https://steemit.com/@steemed", - "https://steemit.com/@riverhead", - "https://steemit.com/@pharesim", - "https://steemit.com/@steemit200", - "https://steemit.com/@xeldal", - "https://steemit.com/@ned", - "https://steemit.com/@joseph", - "https://steemit.com/@recursive", - "https://steemit.com/@hr1", - "https://steemit.com/@laonie", - "https://steemit.com/@jamesc", - "https://steemit.com/@au1nethyb1", - "https://steemit.com/@badassmother", - "https://steemit.com/@summon", - "https://steemit.com/@silver", - "https://steemit.com/@satoshifund", - "https://steemit.com/@kushed", - "https://steemit.com/all/@roelandp/save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl", - "https://steemit.com/all/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor", - "https://steemit.com/all/@kevinwong/logo-contest-for-project-curie-calling-all-designers", - "https://steemit.com/all/@steve-walschot/investigating-the-wale-scam-assumptions-above-knowledge", - "https://steemit.com/all/@good-karma/esteem-ios-1-2-2-released-advanced-login-signup-patch-post-edits-photo-inclusion-on-posts-new-navigation-filter", - "https://steemit.com/all/@cryptogee/a-quick-fix-for-a-broken-capitalist-society", - "https://steemit.com/all/@infovore/steemmag-steemit-s-weekend-digest-9-of-community-curation-and-reputation-chats-with-a-whale-steemit-chat-lead-moderators-a-day", - "https://steemit.com/all/@steemdrive/steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa", - "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-22", - "https://steemit.com/all/@sascha/our-life-on-planet-earth-part-8-the-meaning-of-life", - "https://steemit.com/all/@jesta/steem-bounty-system-milestone-1-proposal", - "https://steemit.com/all/@steempower/bitshares-state-of-the-network-11th-sept-2016", - "https://steemit.com/all/@complexring/bypassing-the-great-firewall-of-china", - "https://steemit.com/all/@katecloud/a-photo-the-progression-of-a-painting-and-a-poem-by-kate-cloud", - "https://steemit.com/all/@infovore/the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-the-internables-trend", - "https://steemit.com/all/@ericvancewalton/the-cliff-an-original-poem", - "https://steemit.com/all/@ericvancewalton/rush-hour-train-an-original-poem", - "https://steemit.com/all/@dantheman/censorship-is-impossible-in-a-free-society", - "https://steemit.com/all/@ericvancewalton/too-simple-to-see-an-original-poem", - "https://steemit.com/all/@lobotony/a-trip-to-the-north-part-1-of-2-iceland", - "https://steemit.com/all/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or", - "https://steemit.com/all/@kevinwong/dayjob-ended-hello-steemit", - "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-25", - "https://steemit.com/all/@ericvancewalton/4ziyjc-alarm-clock-dawn-an-original-novel-episode-22", - "https://steemit.com/all/@lobotony/a-trip-to-the-north-part-2-of-2-greenland", - "https://steemit.com/all/@dollarvigilante/gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-into-gold", - "https://steemit.com/all/@calaber24p/the-evolution-of-virtual-economies-and-their-future-global-impact-on-the-world", - "https://steemit.com/all/@jamielefay/ahe-ey-submission-an-original-novel-part-16", - "https://steemit.com/all/@lifeisawesome/you-are-what-your-friends-are", - "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-21", - "https://steemit.com/all/@charlieshrem/how-to-live-completely-off-steem-using-a-virtual-and-physical-debit-card-topped-up-with-steem", - "https://steemit.com/all/@thisisbenbrick/the-lifecycle-of-a-song", - "https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-ii-hearing", - "https://steemit.com/all/@gavvet/crab-mentality-what-you-need-to-know-about-this-kind-of-degrading-mentality-english-filipino", - "https://steemit.com/all/@fairytalelife/how-to-draw-a-braid", - "https://steemit.com/all/@sascha/salt-as-an-energy-source-energetic-purification-with-salt", - "https://steemit.com/all/@ericvancewalton/walk-your-worries-an-original-poem", - "https://steemit.com/all/@calaber24p/different-ways-to-think-about-your-time-and-money-to-lead-to-better-financial-security", - "https://steemit.com/all/@dollarvigilante/boom-end-game-nears-as-central-banks-buying-up-gold-mining-companies", - "https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-iii-touch", - "https://steemit.com/all/@sterlinluxan/anarchapulco-is-one-of-the-most-world-changing-conferences-ever", - "https://steemit.com/all/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand", - "https://steemit.com/all/@jamielefay/ahe-ey-water-angels-an-original-novel-part-7-audiobook", - "https://steemit.com/all/@xeroc/piston-how-to-use-it-for-multisignature-accounts", - "https://steemit.com/all/@dollarvigilante/jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-since-brexit", - "https://steemit.com/all/@jamielefay/ahe-ey-allegiance-an-original-novel-part-18", - "https://steemit.com/all/@jesta/steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-0-14-0", - "https://steemit.com/all/@dollarvigilante/famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-anarchy-and-cryptocurrencies", - "https://steemit.com/all/@anwenbaumeister/pura-vida-my-experience-working-on-a-permaculture-farm-in-costa-rica-part-two", - "https://steemit.com/all/@dannystravels/face-to-face-with-our-closest-living-relative-part-2-2", - "https://steemit.com/all/@sirwinchester/bitcoin-exchange-berlin-meetup-with-ned-on-skype", - "https://steemit.com/all/@mibenkito/a-steemian-s-world-food-journal-part-5-sydney", - "https://steemit.com/all/@ericvancewalton/broken-dreams-an-original-poem", - "https://steemit.com/all/@charleshosk/ethereum-classic-an-update", - "https://steemit.com/all/@calaber24p/countries-that-incentivize-and-deregulate-crypto-startups-will-reap-the-rewards-if-the-technology-goes-mainstream", - "https://steemit.com/all/@charlieshrem/an-intimate-evening-with-charlie-shrem-moving-forward-south-florida-usa", - "https://steemit.com/all/@officialfuzzy/guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-friday-s-hangout-refer-projects-for-rewards", - "https://steemit.com/all/@knozaki2015/steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-germany-9-9-2016-with-pictures", - "https://steemit.com/all/@dantheman/justification-for-104-week-power-down", - "https://steemit.com/all/@cass/sneak-preview-chainsquad-corporate-branding-logo-design", - "https://steemit.com/all/@aizensou/top-5-places-in-barcelona-featuring-maryfromsochi-as-author", - "https://steemit.com/all/@sirwinchester/steemit-meetup-in-berlin-germany", - "https://steemit.com/all/@clayop/the-typology-of-curation-what-kinds-of-curators-we-have-now", - "https://steemit.com/all/@kencode/ann-smartcoins-wallet-v1-0-6-released", - "https://steemit.com/all/@gavvet/a-free-lunch-with-edward-snowden", - "https://steemit.com/all/@clayop/how-much-do-whales-influences-on-rewards-introducing-new-statistics", - "https://steemit.com/all/@curie/project-curie-s-daily-curation-list-10-sept-11-sept-2016", - "https://steemit.com/all/@calaber24p/immigration-into-america-has-made-it-the-world-power-it-is-today", - "https://steemit.com/all/@b0y2k/steemit-sponsoring-the-compass-cup-team-event", - "https://steemit.com/all/@cryptogee/spotlight-issue-8-philosophy-music-and-science", - "https://steemit.com/all/@kencode/blockpay-moving-up-the-charts", - "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-24", - "https://steemit.com/all/@gavvet/hi-to-reinvent-yourself-featuring-sauravrungta-as-author", - "https://steemit.com/all/@ozchartart/usdeth-btc-poloniex-technical-analysis-sept-07-2016", - "https://steemit.com/all/@bridgetbunchy/celtic-heart-knot-pictorial", - "https://steemit.com/all/@roelandp/my-proper-introduceyourself-hello-i-m-roelandp", - "https://steemit.com/all/@ericvancewalton/know-me-an-original-poem", - "https://steemit.com/all/@cryptovpn/steemit-charity-run-no-1-doctors-without-borders", - "https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-1", - "https://steemit.com/all/@anwenbaumeister/my-cross-country-road-trip-greater-than-sf-greater-than-vegas-greater-than-boulder-greater-than-houston-greater-than-new-orleans", - "https://steemit.com/all/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-life-and-the-shrempresso", - "https://steemit.com/all/@enric/im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurrency-my-revolutionary-struggle-now-im-here", - "https://steemit.com/all/@dantheman/scalability-of-individual-responsibility-in-anarchy", - "https://steemit.com/all/@officialfuzzy/e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-testnet-jewels-ico-success-gridcoin-and-making-it-rain", - "https://steemit.com/all/@gavvet/a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-author", - "https://steemit.com/all/@bridgetbunchy/the-love-of-a-maker", - "https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-2", - "https://steemit.com/all/@dantheman/nonviolent-censorship-is-how-nonviolent-societies-create-nonviolent-government", - "https://steemit.com/all/@infovore/a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-moment-on-steemit-this-week-on-steemit-steemmag-steemit-s-weekend", - "https://steemit.com/all/@firepower/when-i-lost-sight-while-steeming", - "https://steemit.com/all/@ozchartart/usddoge-btc-poloniex-technical-analysis-sept-10-2016", - "https://steemit.com/all/@donkeypong/a-tribute-to-snail-mail", - "https://steemit.com/all/@charlieshrem/progressive-relaxation-by-charlie-shrem-mindfulness-meditation-in-prison-and-everyday-life", - "https://steemit.com/all/@curie/project-curie-s-daily-curation-list-9-sept-10-sept-2016", - "https://steemit.com/all/@furion/a-quick-look-at-null-and-the-profitability-of-promoted-posts", - "https://steemit.com/all/@sirwinchester/mr-gourmet-exploring-a-new-location", - "https://steemit.com/all/@larkenrose/supply-and-demand-steemit-style", - "https://steemit.com/all/@anwenbaumeister/a-peek-into-pre-columbian-worldviews-found-in-agricultural-practices-duality-complementarity-cyclicity-and-reciprocity", - "https://steemit.com/all/@corbettreport/only-9-11-truth-can-smash-the-9-11-lies", - "https://steemit.com/all/@sirwinchester/find-your-why-self-discovery-and-finding-your-purpose-in-life", - "https://steemit.com/stats/@masteryoda/weekly-payouts-leaderboards-september-week-1" + "http://bigpicture.ru/?p=384365&fb_comment_id=180555112091488_997346", + "https://steemit.com/@panther" + ], + "tags": [ + "philosophy", + "thoughts", + "steemit", + "ru" + ], + "users": [ + "panther" ] }, - "created": "2016-09-15T10:10:06", - "updated": "2016-09-15T10:10:06", - "depth": 0, - "children": 25, - "net_rshares": 66209054025322, - "is_paidout": false, - "payout_at": "2016-09-16T10:35:22", - "payout": 255.998, - "pending_payout_value": "255.998 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 61603577309634, + "payout": 220.99, + "payout_at": "2016-09-22T12:27:27", + "pending_payout_value": "220.990 HBD", + "percent_hbd": 10000, + "permlink": "a-look-from-the-past-vzglyad-iz-proshlogo-featuring-panther-as-author", + "post_id": 1253231, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 210 + }, + "title": "A Look From the Past / \u0412\u0437\u0433\u043b\u044f\u0434 \u0438\u0437 \u043f\u0440\u043e\u0448\u043b\u043e\u0433\u043e (featuring @panther as author).", + "updated": "2016-09-15T12:27:27", + "url": "/philosophy/@terrycraft/a-look-from-the-past-vzglyad-iz-proshlogo-featuring-panther-as-author" + }, + { "active_votes": [ { - "voter": "barrie", - "rshares": "532169253053" + "rshares": "532169253053", + "voter": "barrie" }, { - "voter": "smooth", - "rshares": "31619883437623" + "rshares": "31619883437623", + "voter": "smooth" }, { - "voter": "badassmother", - "rshares": "2104460112078" + "rshares": "2104460112078", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2145924640161" + "rshares": "2145924640161", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1417915977465" + "rshares": "1417915977465", + "voter": "rossco99" }, { - "voter": "jaewoocho", - "rshares": "23814289766" + "rshares": "23814289766", + "voter": "jaewoocho" }, { - "voter": "joseph", - "rshares": "1703642542869" + "rshares": "1703642542869", + "voter": "joseph" }, { - "voter": "recursive2", - "rshares": "475597049622" + "rshares": "475597049622", + "voter": "recursive2" }, { - "voter": "masteryoda", - "rshares": "636257408102" + "rshares": "636257408102", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3255552805749" + "rshares": "3255552805749", + "voter": "recursive" }, { - "voter": "mineralwasser", - "rshares": "1319401954" + "rshares": "1319401954", + "voter": "mineralwasser" }, { - "voter": "boombastic", - "rshares": "723485629708" + "rshares": "723485629708", + "voter": "boombastic" }, { - "voter": "mrs.agsexplorer", - "rshares": "96850892172" + "rshares": "96850892172", + "voter": "mrs.agsexplorer" }, { - "voter": "bingo-1", - "rshares": "1768181243" + "rshares": "1768181243", + "voter": "bingo-1" }, { - "voter": "smooth.witness", - "rshares": "5934415897198" + "rshares": "5934415897198", + "voter": "smooth.witness" }, { - "voter": "steempower", - "rshares": "1304768990979" + "rshares": "1304768990979", + "voter": "steempower" }, { - "voter": "boatymcboatface", - "rshares": "456278512142" + "rshares": "456278512142", + "voter": "boatymcboatface" }, { - "voter": "idol", - "rshares": "9890048933" + "rshares": "9890048933", + "voter": "idol" }, { - "voter": "chitty", - "rshares": "296830135486" + "rshares": "296830135486", + "voter": "chitty" }, { - "voter": "noaommerrr", - "rshares": "491386120119" + "rshares": "491386120119", + "voter": "noaommerrr" }, { - "voter": "jocelyn", - "rshares": "1702377748" + "rshares": "1702377748", + "voter": "jocelyn" }, { - "voter": "acidsun", - "rshares": "85268786798" + "rshares": "85268786798", + "voter": "acidsun" }, { - "voter": "easteagle13", - "rshares": "77509187475" + "rshares": "77509187475", + "voter": "easteagle13" }, { - "voter": "jamtaylor", - "rshares": "194274169571" + "rshares": "194274169571", + "voter": "jamtaylor" }, { - "voter": "eeks", - "rshares": "74913340244" + "rshares": "74913340244", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "14615120866" + "rshares": "14615120866", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "478362750" + "rshares": "478362750", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "5762166771" + "rshares": "5762166771", + "voter": "spaninv" }, { - "voter": "james-show", - "rshares": "8867214614" + "rshares": "8867214614", + "voter": "james-show" }, { - "voter": "elishagh1", - "rshares": "19210663051" + "rshares": "19210663051", + "voter": "elishagh1" }, { - "voter": "nanzo-scoop", - "rshares": "599812753161" + "rshares": "599812753161", + "voter": "nanzo-scoop" }, { - "voter": "kefkius", - "rshares": "10057636659" + "rshares": "10057636659", + "voter": "kefkius" }, { - "voter": "mummyimperfect", - "rshares": "182037114530" + "rshares": "182037114530", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313666285" + "rshares": "313666285", + "voter": "coar" }, { - "voter": "asch", - "rshares": "109429287148" + "rshares": "109429287148", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1414771825" + "rshares": "1414771825", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6375475951" + "rshares": "6375475951", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2219507871" + "rshares": "2219507871", + "voter": "error" }, { - "voter": "marta-zaidel", - "rshares": "5268583124" + "rshares": "5268583124", + "voter": "marta-zaidel" }, { - "voter": "cyber", - "rshares": "985431200080" + "rshares": "985431200080", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "65234010126" + "rshares": "65234010126", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "52176837915" + "rshares": "52176837915", + "voter": "ak2020" }, { - "voter": "satoshifund", - "rshares": "3924426072251" + "rshares": "3924426072251", + "voter": "satoshifund" }, { - "voter": "stiletto", - "rshares": "373242613" + "rshares": "373242613", + "voter": "stiletto" }, { - "voter": "juanmiguelsalas", - "rshares": "56687866808" + "rshares": "56687866808", + "voter": "juanmiguelsalas" }, { - "voter": "ratel", - "rshares": "33773766247" + "rshares": "33773766247", + "voter": "ratel" }, { - "voter": "will-zewe", - "rshares": "219282437688" + "rshares": "219282437688", + "voter": "will-zewe" }, { - "voter": "tim-johnston", - "rshares": "79219201090" + "rshares": "79219201090", + "voter": "tim-johnston" }, { - "voter": "ziv", - "rshares": "19597062136" + "rshares": "19597062136", + "voter": "ziv" }, { - "voter": "zakharya", - "rshares": "16102536836" + "rshares": "16102536836", + "voter": "zakharya" }, { - "voter": "stephen-somers", - "rshares": "2246887418" + "rshares": "2246887418", + "voter": "stephen-somers" }, { - "voter": "trogdor", - "rshares": "286332817574" + "rshares": "286332817574", + "voter": "trogdor" }, { - "voter": "thedashguy", - "rshares": "175807204421" + "rshares": "175807204421", + "voter": "thedashguy" }, { - "voter": "mark-waser", - "rshares": "5950208619" + "rshares": "5950208619", + "voter": "mark-waser" }, { - "voter": "albertogm", - "rshares": "17023129603" + "rshares": "17023129603", + "voter": "albertogm" }, { - "voter": "kimziv", - "rshares": "213644107795" + "rshares": "213644107795", + "voter": "kimziv" }, { - "voter": "emily-cook", - "rshares": "79449639183" + "rshares": "79449639183", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2316258127" + "rshares": "2316258127", + "voter": "superfreek" }, { - "voter": "acassity", - "rshares": "31567740828" + "rshares": "31567740828", + "voter": "acassity" }, { - "voter": "grey580", - "rshares": "17557032440" + "rshares": "17557032440", + "voter": "grey580" }, { - "voter": "arcaneinfo", - "rshares": "1250400407" + "rshares": "1250400407", + "voter": "arcaneinfo" }, { - "voter": "michaellamden68", - "rshares": "3987474604" + "rshares": "3987474604", + "voter": "michaellamden68" }, { - "voter": "ericvancewalton", - "rshares": "449234523497" + "rshares": "449234523497", + "voter": "ericvancewalton" }, { - "voter": "thebatchman", - "rshares": "20789508317" + "rshares": "20789508317", + "voter": "thebatchman" }, { - "voter": "rubybian", - "rshares": "76015962675" + "rshares": "76015962675", + "voter": "rubybian" }, { - "voter": "mstang83", - "rshares": "256232582" + "rshares": "256232582", + "voter": "mstang83" }, { - "voter": "elyaque", - "rshares": "7271192517" + "rshares": "7271192517", + "voter": "elyaque" }, { - "voter": "tcfxyz", - "rshares": "25055988031" + "rshares": "25055988031", + "voter": "tcfxyz" }, { - "voter": "romel", - "rshares": "2596866157" + "rshares": "2596866157", + "voter": "romel" }, { - "voter": "futurefood", - "rshares": "6939608148" + "rshares": "6939608148", + "voter": "futurefood" }, { - "voter": "slowwalker", - "rshares": "839919246636" + "rshares": "839919246636", + "voter": "slowwalker" }, { - "voter": "furion", - "rshares": "71342508795" + "rshares": "71342508795", + "voter": "furion" }, { - "voter": "barbara2", - "rshares": "342310650" + "rshares": "342310650", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "380473875" + "rshares": "380473875", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "352132228" + "rshares": "352132228", + "voter": "doge4lyf" }, { - "voter": "cynetyc", - "rshares": "136318424" + "rshares": "136318424", + "voter": "cynetyc" }, { - "voter": "steemit-life", - "rshares": "25221048335" + "rshares": "25221048335", + "voter": "steemit-life" }, { - "voter": "asim", - "rshares": "12266682329" + "rshares": "12266682329", + "voter": "asim" }, { - "voter": "aaseb", - "rshares": "15125765260" + "rshares": "15125765260", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4430997922" + "rshares": "4430997922", + "voter": "karen13" }, { - "voter": "nabilov", - "rshares": "274216136539" + "rshares": "274216136539", + "voter": "nabilov" }, { - "voter": "karenmckersie", - "rshares": "476682819" + "rshares": "476682819", + "voter": "karenmckersie" }, { - "voter": "thinkngrow", - "rshares": "840273090" + "rshares": "840273090", + "voter": "thinkngrow" }, { - "voter": "milestone", - "rshares": "47995763722" + "rshares": "47995763722", + "voter": "milestone" }, { - "voter": "lichtblick", - "rshares": "7462648594" + "rshares": "7462648594", + "voter": "lichtblick" }, { - "voter": "btcbtcbtc20155", - "rshares": "5840939270" + "rshares": "5840939270", + "voter": "btcbtcbtc20155" }, { - "voter": "adamt", - "rshares": "4210092453" + "rshares": "4210092453", + "voter": "adamt" }, { - "voter": "blueorgy", - "rshares": "171273414934" + "rshares": "171273414934", + "voter": "blueorgy" }, { - "voter": "poseidon", - "rshares": "4777021608" + "rshares": "4777021608", + "voter": "poseidon" }, { - "voter": "simon.braki.love", - "rshares": "3506024506" + "rshares": "3506024506", + "voter": "simon.braki.love" }, { - "voter": "bones", - "rshares": "3424170757" + "rshares": "3424170757", + "voter": "bones" }, { - "voter": "azurejasper", - "rshares": "3787131399" + "rshares": "3787131399", + "voter": "azurejasper" }, { - "voter": "bola", - "rshares": "1840626661" + "rshares": "1840626661", + "voter": "bola" }, { - "voter": "deanliu", - "rshares": "33535112463" + "rshares": "33535112463", + "voter": "deanliu" }, { - "voter": "neroru", - "rshares": "7822595883" + "rshares": "7822595883", + "voter": "neroru" }, { - "voter": "jl777", - "rshares": "215381633110" + "rshares": "215381633110", + "voter": "jl777" }, { - "voter": "meteor78", - "rshares": "450339105" + "rshares": "450339105", + "voter": "meteor78" }, { - "voter": "positive", - "rshares": "11852480777" + "rshares": "11852480777", + "voter": "positive" }, { - "voter": "moon32walker", - "rshares": "13133061167" + "rshares": "13133061167", + "voter": "moon32walker" }, { - "voter": "tobythecat", - "rshares": "685414916" + "rshares": "685414916", + "voter": "tobythecat" }, { - "voter": "sompitonov", - "rshares": "3997180642" + "rshares": "3997180642", + "voter": "sompitonov" }, { - "voter": "lemooljiang", - "rshares": "14893508235" + "rshares": "14893508235", + "voter": "lemooljiang" }, { - "voter": "krabgat", - "rshares": "20258667266" + "rshares": "20258667266", + "voter": "krabgat" }, { - "voter": "proto", - "rshares": "18175770345" + "rshares": "18175770345", + "voter": "proto" }, { - "voter": "pinkisland", - "rshares": "30220408709" + "rshares": "30220408709", + "voter": "pinkisland" }, { - "voter": "ace108", - "rshares": "4083118071" + "rshares": "4083118071", + "voter": "ace108" }, { - "voter": "sisterholics", - "rshares": "36105101075" + "rshares": "36105101075", + "voter": "sisterholics" }, { - "voter": "royalmacro", - "rshares": "9087754202" + "rshares": "9087754202", + "voter": "royalmacro" }, { - "voter": "faraz", - "rshares": "291577197" + "rshares": "291577197", + "voter": "faraz" }, { - "voter": "fnait", - "rshares": "399064983" + "rshares": "399064983", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "354529957" + "rshares": "354529957", + "voter": "keepcalmand" }, { - "voter": "cwmyao1", - "rshares": "607346548" + "rshares": "607346548", + "voter": "cwmyao1" }, { - "voter": "smailer", - "rshares": "42831828400" + "rshares": "42831828400", + "voter": "smailer" }, { - "voter": "steemster1", - "rshares": "153025160" + "rshares": "153025160", + "voter": "steemster1" }, { - "voter": "fabien", - "rshares": "26276845296" + "rshares": "26276845296", + "voter": "fabien" }, { - "voter": "bullionstackers", - "rshares": "1311817181" + "rshares": "1311817181", + "voter": "bullionstackers" }, { - "voter": "michiel", - "rshares": "10079340576" + "rshares": "10079340576", + "voter": "michiel" }, { - "voter": "malaiandrueth", - "rshares": "66976384508" + "rshares": "66976384508", + "voter": "malaiandrueth" }, { - "voter": "glitterpig", - "rshares": "3445106241" + "rshares": "3445106241", + "voter": "glitterpig" }, { - "voter": "uwe69", - "rshares": "176122993" + "rshares": "176122993", + "voter": "uwe69" }, { - "voter": "gomeravibz", - "rshares": "24521510758" + "rshares": "24521510758", + "voter": "gomeravibz" }, { - "voter": "taker", - "rshares": "9193596396" + "rshares": "9193596396", + "voter": "taker" }, { - "voter": "pakisnxt", - "rshares": "1042734400" + "rshares": "1042734400", + "voter": "pakisnxt" }, { - "voter": "nekromarinist", - "rshares": "7824682639" + "rshares": "7824682639", + "voter": "nekromarinist" }, { - "voter": "sharon", - "rshares": "60565253" + "rshares": "60565253", + "voter": "sharon" }, { - "voter": "french.fyde", - "rshares": "7879017303" + "rshares": "7879017303", + "voter": "french.fyde" }, { - "voter": "lillianjones", - "rshares": "61714352" + "rshares": "61714352", + "voter": "lillianjones" }, { - "voter": "laonie", - "rshares": "1244785807395" + "rshares": "1244785807395", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "174513111694" + "rshares": "174513111694", + "voter": "twinner" }, { - "voter": "laoyao", - "rshares": "25205404125" + "rshares": "25205404125", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "42592081002" + "rshares": "42592081002", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "259167037180" + "rshares": "259167037180", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "9690288359" + "rshares": "9690288359", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "2084677795" + "rshares": "2084677795", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "55821231813" + "rshares": "55821231813", + "voter": "midnightoil" }, { - "voter": "coderg", - "rshares": "85931785" + "rshares": "85931785", + "voter": "coderg" }, { - "voter": "ullikume", - "rshares": "4371311648" + "rshares": "4371311648", + "voter": "ullikume" }, { - "voter": "miketr", - "rshares": "4752967790" + "rshares": "4752967790", + "voter": "miketr" }, { - "voter": "xiaohui", - "rshares": "143185133504" + "rshares": "143185133504", + "voter": "xiaohui" }, { - "voter": "jphamer1", - "rshares": "21533856625" + "rshares": "21533856625", + "voter": "jphamer1" }, { - "voter": "elfkitchen", - "rshares": "6710387381" + "rshares": "6710387381", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "105893050403" + "rshares": "105893050403", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "6135664318" + "rshares": "6135664318", + "voter": "oflyhigh" }, { - "voter": "xiaokongcom", - "rshares": "4476983604" + "rshares": "4476983604", + "voter": "xiaokongcom" }, { - "voter": "hms818", - "rshares": "1434064827" + "rshares": "1434064827", + "voter": "hms818" }, { - "voter": "msjennifer", - "rshares": "62201879" + "rshares": "62201879", + "voter": "msjennifer" }, { - "voter": "ciao", - "rshares": "57196572" + "rshares": "57196572", + "voter": "ciao" }, { - "voter": "villainblack", - "rshares": "3743673036" + "rshares": "3743673036", + "voter": "villainblack" }, { - "voter": "steemo", - "rshares": "55449983" + "rshares": "55449983", + "voter": "steemo" }, { - "voter": "xianjun", - "rshares": "9024630191" + "rshares": "9024630191", + "voter": "xianjun" }, { - "voter": "steema", - "rshares": "55306941" + "rshares": "55306941", + "voter": "steema" }, { - "voter": "evgenyche", - "rshares": "74615731" + "rshares": "74615731", + "voter": "evgenyche" }, { - "voter": "confucius", - "rshares": "72902270" + "rshares": "72902270", + "voter": "confucius" }, { - "voter": "miacats", - "rshares": "93794893233" + "rshares": "93794893233", + "voter": "miacats" }, { - "voter": "jarvis", - "rshares": "56157882" + "rshares": "56157882", + "voter": "jarvis" }, { - "voter": "microluck", - "rshares": "605862734" + "rshares": "605862734", + "voter": "microluck" }, { - "voter": "ashwim", - "rshares": "599010678" + "rshares": "599010678", + "voter": "ashwim" }, { - "voter": "rubenalexander", - "rshares": "6535955953" + "rshares": "6535955953", + "voter": "rubenalexander" }, { - "voter": "fortuner", - "rshares": "55520042" + "rshares": "55520042", + "voter": "fortuner" }, { - "voter": "chinadaily", - "rshares": "2131698126" + "rshares": "2131698126", + "voter": "chinadaily" }, { - "voter": "lemouth", - "rshares": "8114302214" + "rshares": "8114302214", + "voter": "lemouth" }, { - "voter": "alexma3x", - "rshares": "670432237" + "rshares": "670432237", + "voter": "alexma3x" }, { - "voter": "gvargas123", - "rshares": "10344067760" + "rshares": "10344067760", + "voter": "gvargas123" }, { - "voter": "johnbyrd", - "rshares": "54235184" + "rshares": "54235184", + "voter": "johnbyrd" }, { - "voter": "thomasaustin", - "rshares": "53039566" + "rshares": "53039566", + "voter": "thomasaustin" }, { - "voter": "thermor", - "rshares": "54216305" + "rshares": "54216305", + "voter": "thermor" }, { - "voter": "ficholl", - "rshares": "53048942" + "rshares": "53048942", + "voter": "ficholl" }, { - "voter": "widell", - "rshares": "54209199" + "rshares": "54209199", + "voter": "widell" }, { - "voter": "revelbrooks", - "rshares": "53821337" + "rshares": "53821337", + "voter": "revelbrooks" }, { - "voter": "andrewawerdna", - "rshares": "25448736737" + "rshares": "25448736737", + "voter": "andrewawerdna" }, { - "voter": "sethlinson", - "rshares": "11074790441" + "rshares": "11074790441", + "voter": "sethlinson" }, { - "voter": "booky", - "rshares": "4042151059" + "rshares": "4042151059", + "voter": "booky" }, { - "voter": "slorunner", - "rshares": "101945845" + "rshares": "101945845", + "voter": "slorunner" }, { - "voter": "curpose", - "rshares": "52708083" + "rshares": "52708083", + "voter": "curpose" }, { - "voter": "lenar", - "rshares": "1258844947" + "rshares": "1258844947", + "voter": "lenar" }, { - "voter": "runridefly", - "rshares": "2196689434" + "rshares": "2196689434", + "voter": "runridefly" }, { - "voter": "stephenkendal", - "rshares": "54585840" + "rshares": "54585840", + "voter": "stephenkendal" }, { - "voter": "troich", - "rshares": "52836995" + "rshares": "52836995", + "voter": "troich" }, { - "voter": "nadin3", - "rshares": "5011419926" + "rshares": "5011419926", + "voter": "nadin3" }, { - "voter": "davidjkelley", - "rshares": "1661479473" + "rshares": "1661479473", + "voter": "davidjkelley" }, { - "voter": "team101", - "rshares": "191746347" + "rshares": "191746347", + "voter": "team101" }, { - "voter": "crion", - "rshares": "52842496" + "rshares": "52842496", + "voter": "crion" }, { - "voter": "greatness", - "rshares": "185701642" + "rshares": "185701642", + "voter": "greatness" }, { - "voter": "hitherise", - "rshares": "52505412" + "rshares": "52505412", + "voter": "hitherise" }, { - "voter": "wiss", - "rshares": "52496656" + "rshares": "52496656", + "voter": "wiss" }, { - "voter": "sponge-bob", - "rshares": "9069255648" + "rshares": "9069255648", + "voter": "sponge-bob" }, { - "voter": "digital-wisdom", - "rshares": "15569866401" + "rshares": "15569866401", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3791392195" + "rshares": "3791392195", + "voter": "ethical-ai" }, { - "voter": "stroully", - "rshares": "53252658" + "rshares": "53252658", + "voter": "stroully" }, { - "voter": "jwaser", - "rshares": "6830877679" + "rshares": "6830877679", + "voter": "jwaser" }, { - "voter": "thadm", - "rshares": "52916909" + "rshares": "52916909", + "voter": "thadm" }, { - "voter": "prof", - "rshares": "52915101" + "rshares": "52915101", + "voter": "prof" }, { - "voter": "richhersey", - "rshares": "2274469633" + "rshares": "2274469633", + "voter": "richhersey" }, { - "voter": "smisi", - "rshares": "1688383151" + "rshares": "1688383151", + "voter": "smisi" }, { - "voter": "tito-baron", - "rshares": "123190927" + "rshares": "123190927", + "voter": "tito-baron" }, { - "voter": "lighter", - "rshares": "53413720" + "rshares": "53413720", + "voter": "lighter" }, { - "voter": "yorsens", - "rshares": "52560790" + "rshares": "52560790", + "voter": "yorsens" }, { - "voter": "bane", - "rshares": "52242652" + "rshares": "52242652", + "voter": "bane" }, { - "voter": "vive", - "rshares": "52236265" + "rshares": "52236265", + "voter": "vive" }, { - "voter": "coad", - "rshares": "52230725" + "rshares": "52230725", + "voter": "coad" }, { - "voter": "bwaser", - "rshares": "2675382304" + "rshares": "2675382304", + "voter": "bwaser" }, { - "voter": "sofa", - "rshares": "53003720" + "rshares": "53003720", + "voter": "sofa" }, { - "voter": "cnfund", - "rshares": "83883352848" + "rshares": "83883352848", + "voter": "cnfund" }, { - "voter": "bones261", - "rshares": "348073541" + "rshares": "348073541", + "voter": "bones261" }, { - "voter": "brains", - "rshares": "9054592458" + "rshares": "9054592458", + "voter": "brains" }, { - "voter": "bones555", - "rshares": "633672233" + "rshares": "633672233", + "voter": "bones555" }, { - "voter": "ailo", - "rshares": "53055629" + "rshares": "53055629", + "voter": "ailo" }, { - "voter": "chick1", - "rshares": "5893247853" + "rshares": "5893247853", + "voter": "chick1" }, { - "voter": "aoki", - "rshares": "51637870" + "rshares": "51637870", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "52621399" + "rshares": "52621399", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "52634176" + "rshares": "52634176", + "voter": "cwb" }, { - "voter": "slayer", - "rshares": "3623547539" + "rshares": "3623547539", + "voter": "slayer" }, { - "voter": "anomaly", - "rshares": "407075832" + "rshares": "407075832", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401189699" + "rshares": "2401189699", + "voter": "ellepdub" }, { - "voter": "ola1", - "rshares": "172324884" + "rshares": "172324884", + "voter": "ola1" }, { - "voter": "michelle.gent", - "rshares": "4601294293" + "rshares": "4601294293", + "voter": "michelle.gent" }, { - "voter": "herpetologyguy", - "rshares": "12396524304" + "rshares": "12396524304", + "voter": "herpetologyguy" }, { - "voter": "eavy", - "rshares": "51470533" + "rshares": "51470533", + "voter": "eavy" }, { - "voter": "roto", - "rshares": "51484593" + "rshares": "51484593", + "voter": "roto" }, { - "voter": "morgan.waser", - "rshares": "4816686066" + "rshares": "4816686066", + "voter": "morgan.waser" }, { - "voter": "thefinanceguy", - "rshares": "291933324" + "rshares": "291933324", + "voter": "thefinanceguy" }, { - "voter": "glassheart", - "rshares": "51235131" + "rshares": "51235131", + "voter": "glassheart" }, { - "voter": "steemq", - "rshares": "51230296" + "rshares": "51230296", + "voter": "steemq" }, { - "voter": "battalar", - "rshares": "51227561" + "rshares": "51227561", + "voter": "battalar" }, { - "voter": "haved", - "rshares": "50938725" + "rshares": "50938725", + "voter": "haved" }, { - "voter": "motion", - "rshares": "50871059" + "rshares": "50871059", + "voter": "motion" }, { - "voter": "ardly", - "rshares": "50708837" + "rshares": "50708837", + "voter": "ardly" }, { - "voter": "unilever", - "rshares": "50572441" + "rshares": "50572441", + "voter": "unilever" }, { - "voter": "ziggo", - "rshares": "50570250" + "rshares": "50570250", + "voter": "ziggo" }, { - "voter": "penthouse", - "rshares": "50565798" + "rshares": "50565798", + "voter": "penthouse" }, { - "voter": "bapparabi", - "rshares": "417240825" + "rshares": "417240825", + "voter": "bapparabi" }, { - "voter": "morse", - "rshares": "50433760" + "rshares": "50433760", + "voter": "morse" }, { - "voter": "carre", - "rshares": "50372583" + "rshares": "50372583", + "voter": "carre" }, { - "voter": "btshuang", - "rshares": "88794357432" + "rshares": "88794357432", + "voter": "btshuang" }, { - "voter": "dodders007", - "rshares": "3229471810" + "rshares": "3229471810", + "voter": "dodders007" }, { - "voter": "strong-ai", - "rshares": "3689616990" + "rshares": "3689616990", + "voter": "strong-ai" }, { - "voter": "grisha-danunaher", - "rshares": "538350430" + "rshares": "538350430", + "voter": "grisha-danunaher" }, { - "voter": "igtes", - "rshares": "74444594" + "rshares": "74444594", + "voter": "igtes" }, { - "voter": "buffett", - "rshares": "148119740" + "rshares": "148119740", + "voter": "buffett" }, { - "voter": "ctu", - "rshares": "162917785" + "rshares": "162917785", + "voter": "ctu" }, { - "voter": "front", - "rshares": "162911190" + "rshares": "162911190", + "voter": "front" }, { - "voter": "prosto-veter", - "rshares": "159394872" + "rshares": "159394872", + "voter": "prosto-veter" }, { - "voter": "yourase1", - "rshares": "162375387" + "rshares": "162375387", + "voter": "yourase1" }, { - "voter": "durex", - "rshares": "161839498" + "rshares": "161839498", + "voter": "durex" }, { - "voter": "gravity", - "rshares": "160973134" + "rshares": "160973134", + "voter": "gravity" }, { - "voter": "realtime", - "rshares": "160957729" + "rshares": "160957729", + "voter": "realtime" }, { - "voter": "planet", - "rshares": "160326045" + "rshares": "160326045", + "voter": "planet" }, { - "voter": "correct", - "rshares": "159984914" + "rshares": "159984914", + "voter": "correct" }, { - "voter": "fallout", - "rshares": "159175576" + "rshares": "159175576", + "voter": "fallout" }, { - "voter": "agundoba", - "rshares": "158777847" + "rshares": "158777847", + "voter": "agundoba" }, { - "voter": "alberged", - "rshares": "158726294" + "rshares": "158726294", + "voter": "alberged" }, { - "voter": "alene33", - "rshares": "158718933" + "rshares": "158718933", + "voter": "alene33" }, { - "voter": "argesti", - "rshares": "158713085" + "rshares": "158713085", + "voter": "argesti" }, { - "voter": "artamm", - "rshares": "158709279" + "rshares": "158709279", + "voter": "artamm" }, { - "voter": "artyne43", - "rshares": "158704921" + "rshares": "158704921", + "voter": "artyne43" }, { - "voter": "odlaen", - "rshares": "158701918" + "rshares": "158701918", + "voter": "odlaen" }, { - "voter": "brenna88", - "rshares": "158692611" + "rshares": "158692611", + "voter": "brenna88" }, { - "voter": "fortelyn", - "rshares": "158688416" + "rshares": "158688416", + "voter": "fortelyn" }, { - "voter": "cheva0", - "rshares": "158684075" + "rshares": "158684075", + "voter": "cheva0" }, { - "voter": "peris2", - "rshares": "158678677" + "rshares": "158678677", + "voter": "peris2" }, { - "voter": "gilbertur", - "rshares": "158667376" + "rshares": "158667376", + "voter": "gilbertur" }, { - "voter": "irdaince", - "rshares": "158658206" + "rshares": "158658206", + "voter": "irdaince" }, { - "voter": "whenda3", - "rshares": "158655323" + "rshares": "158655323", + "voter": "whenda3" }, { - "voter": "brenkelley", - "rshares": "158647100" + "rshares": "158647100", + "voter": "brenkelley" }, { - "voter": "donaigh", - "rshares": "158640828" + "rshares": "158640828", + "voter": "donaigh" }, { - "voter": "baire00", - "rshares": "158637072" + "rshares": "158637072", + "voter": "baire00" }, { - "voter": "gundalach", - "rshares": "158624650" + "rshares": "158624650", + "voter": "gundalach" }, { - "voter": "childirac", - "rshares": "158620061" + "rshares": "158620061", + "voter": "childirac" }, { - "voter": "guoteff", - "rshares": "158609836" + "rshares": "158609836", + "voter": "guoteff" }, { - "voter": "citigroup", - "rshares": "158541985" + "rshares": "158541985", + "voter": "citigroup" }, { - "voter": "wymmendycer", - "rshares": "157896009" + "rshares": "157896009", + "voter": "wymmendycer" }, { - "voter": "fariuss", - "rshares": "157892476" + "rshares": "157892476", + "voter": "fariuss" }, { - "voter": "chutec", - "rshares": "157889502" + "rshares": "157889502", + "voter": "chutec" }, { - "voter": "udoladhnak", - "rshares": "157887016" + "rshares": "157887016", + "voter": "udoladhnak" }, { - "voter": "brochari", - "rshares": "157883027" + "rshares": "157883027", + "voter": "brochari" }, { - "voter": "hervedui", - "rshares": "157877631" + "rshares": "157877631", + "voter": "hervedui" }, { - "voter": "isetar", - "rshares": "157876011" + "rshares": "157876011", + "voter": "isetar" }, { - "voter": "pollengus", - "rshares": "157874479" + "rshares": "157874479", + "voter": "pollengus" }, { - "voter": "valiner", - "rshares": "157871566" + "rshares": "157871566", + "voter": "valiner" }, { - "voter": "cunod", - "rshares": "157869417" + "rshares": "157869417", + "voter": "cunod" }, { - "voter": "trentegan", - "rshares": "157866738" + "rshares": "157866738", + "voter": "trentegan" }, { - "voter": "shenburen", - "rshares": "157864709" + "rshares": "157864709", + "voter": "shenburen" }, { - "voter": "margery2", - "rshares": "157861808" + "rshares": "157861808", + "voter": "margery2" }, { - "voter": "thiner", - "rshares": "157860265" + "rshares": "157860265", + "voter": "thiner" }, { - "voter": "joycery", - "rshares": "157857120" + "rshares": "157857120", + "voter": "joycery" }, { - "voter": "cuiliobeth", - "rshares": "157855001" + "rshares": "157855001", + "voter": "cuiliobeth" }, { - "voter": "gwilion", - "rshares": "157853250" + "rshares": "157853250", + "voter": "gwilion" }, { - "voter": "damul", - "rshares": "157847571" + "rshares": "157847571", + "voter": "damul" }, { - "voter": "youthan", - "rshares": "157845805" + "rshares": "157845805", + "voter": "youthan" }, { - "voter": "antaja", - "rshares": "188144802" + "rshares": "188144802", + "voter": "antaja" }, { - "voter": "royfft", - "rshares": "156241596" + "rshares": "156241596", + "voter": "royfft" } ], + "author": "masteryoda", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "![photo](http://i.imgsafe.org/81a1095cd2.png)\n\n- - -\n\nThis report covers payouts made between:\n\n**September 8, 2016, 12:00 am UTC** and **September 14, 2016, 11:59 pm UTC**\n\nTotal SBD paid: **136 116.418 SBD**\n\nTotal VESTS paid: **714 086 946.799 VESTS**\n\n- - -\n\n### SBD and VESTS payouts chart:\n![photo](http://imgh.us/canvas2_1.png)\n\n- - -\n\n### Top 100 overall SBD earners:\n|Rank | Account | Posts |SBD | VESTS |\n| :-----| ------------- |-------------:|-------------:| -----:|\n|1|[@ericvancewalton](https://steemit.com/@ericvancewalton)|15|6 077.522|24 596 951.571|\n|2|[@roelandp](https://steemit.com/@roelandp)|5|5 750.861|26 290 325.567|\n|3|[@gavvet](https://steemit.com/@gavvet)|29|5 680.552|23 514 590.090|\n|4|[@knozaki2015](https://steemit.com/@knozaki2015)|27|4 089.160|16 881 905.884|\n|5|[@sirwinchester](https://steemit.com/@sirwinchester)|20|3 196.259|13 196 949.343|\n|6|[@terrycraft](https://steemit.com/@terrycraft)|22|2 997.141|12 216 236.410|\n|7|[@calaber24p](https://steemit.com/@calaber24p)|9|2 411.786|10 175 362.253|\n|8|[@dollarvigilante](https://steemit.com/@dollarvigilante)|9|2 135.290|9 376 253.261|\n|9|[@someguy123](https://steemit.com/@someguy123)|11|1 852.735|7 812 606.655|\n|10|[@ozchartart](https://steemit.com/@ozchartart)|13|1 771.698|7 215 740.701|\n|11|[@infovore](https://steemit.com/@infovore)|5|1 705.589|6 924 653.829|\n|12|[@lifeisawesome](https://steemit.com/@lifeisawesome)|6|1 689.879|6 989 106.948|\n|13|[@dantheman](https://steemit.com/@dantheman)|11|1 612.428|8 604 664.210|\n|14|[@jamielefay](https://steemit.com/@jamielefay)|4|1 607.864|6 411 495.342|\n|15|[@kevinwong](https://steemit.com/@kevinwong)|6|1 525.609|6 542 045.016|\n|16|[@charlieshrem](https://steemit.com/@charlieshrem)|4|1 500.105|6 557 010.291|\n|17|[@jesta](https://steemit.com/@jesta)|9|1 492.300|6 472 103.097|\n|18|[@masteryoda](https://steemit.com/@masteryoda)|16|1 423.208|6 023 057.885|\n|19|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|9|1 324.346|5 343 516.577|\n|20|[@katecloud](https://steemit.com/@katecloud)|7|1 265.447|5 136 897.795|\n|21|[@timsaid](https://steemit.com/@timsaid)|10|1 153.420|4 999 746.262|\n|22|[@sascha](https://steemit.com/@sascha)|2|1 152.462|4 737 155.424|\n|23|[@honeyscribe](https://steemit.com/@honeyscribe)|6|1 147.954|4 693 320.648|\n|24|[@cryptogee](https://steemit.com/@cryptogee)|4|1 145.094|4 704 779.347|\n|25|[@krishtopa](https://steemit.com/@krishtopa)|11|1 143.346|4 834 060.865|\n|26|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|8|1 138.985|4 813 642.940|\n|27|[@good-karma](https://steemit.com/@good-karma)|6|1 118.049|5 063 419.555|\n|28|[@lobotony](https://steemit.com/@lobotony)|2|1 084.459|4 247 247.973|\n|29|[@markrmorrisjr](https://steemit.com/@markrmorrisjr)|21|1 058.539|4 369 963.419|\n|30|[@curie](https://steemit.com/@curie)|5|1 056.415|4 572 371.506|\n|31|[@opheliafu](https://steemit.com/@opheliafu)|19|1 005.845|4 156 440.681|\n|32|[@steve-walschot](https://steemit.com/@steve-walschot)|4|972.080|4 394 483.105|\n|33|[@marius19](https://steemit.com/@marius19)|23|951.573|4 011 036.875|\n|34|[@serejandmyself](https://steemit.com/@serejandmyself)|11|941.108|3 990 747.231|\n|35|[@steempower](https://steemit.com/@steempower)|4|848.391|3 693 774.188|\n|36|[@aizensou](https://steemit.com/@aizensou)|4|813.814|3 460 586.334|\n|37|[@furion](https://steemit.com/@furion)|7|776.731|3 320 010.859|\n|38|[@officialfuzzy](https://steemit.com/@officialfuzzy)|5|769.671|3 256 431.084|\n|39|[@kencode](https://steemit.com/@kencode)|3|769.635|3 084 463.879|\n|40|[@clayop](https://steemit.com/@clayop)|9|744.729|3 588 626.269|\n|41|[@larkenrose](https://steemit.com/@larkenrose)|8|718.161|2 952 298.454|\n|42|[@steemdrive](https://steemit.com/@steemdrive)|1|713.054|3 137 516.266|\n|43|[@jpiper20](https://steemit.com/@jpiper20)|21|704.591|2 861 337.136|\n|44|[@xeroc](https://steemit.com/@xeroc)|3|700.860|3 667 185.079|\n|45|[@steemship](https://steemit.com/@steemship)|3|700.485|2 935 488.501|\n|46|[@steemcleaners](https://steemit.com/@steemcleaners)|3|659.132|2 596 140.333|\n|47|[@complexring](https://steemit.com/@complexring)|2|647.683|6 065 457.160|\n|48|[@charleshosk](https://steemit.com/@charleshosk)|2|585.319|2 399 760.878|\n|49|[@hisnameisolllie](https://steemit.com/@hisnameisolllie)|11|581.385|2 338 969.539|\n|50|[@sweetsssj](https://steemit.com/@sweetsssj)|14|523.979|2 170 158.700|\n|51|[@livingthedream](https://steemit.com/@livingthedream)|4|510.792|2 027 254.578|\n|52|[@eneismijmich](https://steemit.com/@eneismijmich)|9|504.116|2 061 771.205|\n|53|[@sterlinluxan](https://steemit.com/@sterlinluxan)|7|500.904|2 022 584.130|\n|54|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|1|497.669|2 274 840.954|\n|55|[@b0y2k](https://steemit.com/@b0y2k)|2|497.114|2 132 474.149|\n|56|[@fairytalelife](https://steemit.com/@fairytalelife)|7|481.143|2 023 586.799|\n|57|[@corbettreport](https://steemit.com/@corbettreport)|6|457.908|1 979 421.716|\n|58|[@kental](https://steemit.com/@kental)|19|435.486|1 746 992.520|\n|59|[@barrycooper](https://steemit.com/@barrycooper)|4|433.548|1 887 586.618|\n|60|[@storyseeker](https://steemit.com/@storyseeker)|4|430.221|1 849 858.609|\n|61|[@jacor](https://steemit.com/@jacor)|11|428.758|1 774 043.305|\n|62|[@bravenewcoin](https://steemit.com/@bravenewcoin)|14|427.758|1 764 533.073|\n|63|[@alexbeyman](https://steemit.com/@alexbeyman)|36|409.397|1 679 902.161|\n|64|[@gangsta](https://steemit.com/@gangsta)|5|405.820|1 620 709.343|\n|65|[@dannystravels](https://steemit.com/@dannystravels)|1|404.374|1 568 065.581|\n|66|[@smailer](https://steemit.com/@smailer)|11|400.558|1 679 104.012|\n|67|[@mibenkito](https://steemit.com/@mibenkito)|1|399.692|1 722 718.612|\n|68|[@cass](https://steemit.com/@cass)|1|391.041|1 993 157.960|\n|69|[@razvanelulmarin](https://steemit.com/@razvanelulmarin)|13|373.350|1 644 174.858|\n|70|[@mrs.steemit](https://steemit.com/@mrs.steemit)|9|368.118|1 530 900.679|\n|71|[@jamtaylor](https://steemit.com/@jamtaylor)|14|358.256|1 555 939.370|\n|72|[@senseiteekay](https://steemit.com/@senseiteekay)|11|357.948|1 517 489.098|\n|73|[@healthyrecipes](https://steemit.com/@healthyrecipes)|3|350.465|1 480 991.813|\n|74|[@aggroed](https://steemit.com/@aggroed)|14|348.227|1 428 790.019|\n|75|[@celebr1ty](https://steemit.com/@celebr1ty)|5|341.894|1 368 751.869|\n|76|[@dana-edwards](https://steemit.com/@dana-edwards)|10|337.839|1 341 593.683|\n|77|[@cryptovpn](https://steemit.com/@cryptovpn)|5|330.063|1 278 755.869|\n|78|[@nanzo-scoop](https://steemit.com/@nanzo-scoop)|17|330.055|2 655 433.594|\n|79|[@fyrstikken](https://steemit.com/@fyrstikken)|23|325.469|1 521 433.247|\n|80|[@richman](https://steemit.com/@richman)|5|321.227|1 332 080.256|\n|81|[@enric](https://steemit.com/@enric)|1|311.640|1 208 207.684|\n|82|[@firepower](https://steemit.com/@firepower)|1|308.085|1 405 620.303|\n|83|[@donkeypong](https://steemit.com/@donkeypong)|4|306.922|1 672 530.744|\n|84|[@churdtzu](https://steemit.com/@churdtzu)|7|305.428|1 246 268.798|\n|85|[@pfunk](https://steemit.com/@pfunk)|6|304.288|1 696 845.158|\n|86|[@canadian-coconut](https://steemit.com/@canadian-coconut)|7|303.757|1 247 066.035|\n|87|[@alexgr](https://steemit.com/@alexgr)|7|296.946|1 259 479.298|\n|88|[@quinneaker](https://steemit.com/@quinneaker)|15|293.521|1 241 558.241|\n|89|[@nekromarinist](https://steemit.com/@nekromarinist)|10|288.002|1 136 848.911|\n|90|[@liberosist](https://steemit.com/@liberosist)|6|284.471|1 407 917.609|\n|91|[@sigmajin](https://steemit.com/@sigmajin)|3|276.147|1 127 048.263|\n|92|[@aaronkoenig](https://steemit.com/@aaronkoenig)|9|274.485|1 168 689.323|\n|93|[@tracemayer](https://steemit.com/@tracemayer)|7|273.934|1 170 292.676|\n|94|[@hilarski](https://steemit.com/@hilarski)|12|272.752|1 111 134.239|\n|95|[@shammyshiggs](https://steemit.com/@shammyshiggs)|6|267.958|1 068 640.107|\n|96|[@halo](https://steemit.com/@halo)|34|265.233|1 109 892.049|\n|97|[@rok-sivante](https://steemit.com/@rok-sivante)|8|261.410|1 152 452.980|\n|98|[@vermillion666](https://steemit.com/@vermillion666)|2|260.282|1 015 370.956|\n|99|[@kaylinart](https://steemit.com/@kaylinart)|31|258.027|1 209 969.357|\n|100|[@kobur](https://steemit.com/@kobur)|9|257.060|1 001 194.076|\n\n\n- - -\n\n### Top 100 overall VESTS earners:\n|Rank | Account | SBD | VESTS |\n| :-----| ------------- |-------------:| -----:|\n|1|[@blocktrades](https://steemit.com/@blocktrades)|6.267|31 932 805.126|\n|2|[@roelandp](https://steemit.com/@roelandp)|5 750.861|26 290 325.567|\n|3|[@ericvancewalton](https://steemit.com/@ericvancewalton)|6 077.522|24 596 951.571|\n|4|[@gavvet](https://steemit.com/@gavvet)|5 680.552|23 514 590.090|\n|5|[@knozaki2015](https://steemit.com/@knozaki2015)|4 089.160|16 881 905.884|\n|6|[@sirwinchester](https://steemit.com/@sirwinchester)|3 196.259|13 196 949.343|\n|7|[@terrycraft](https://steemit.com/@terrycraft)|2 997.141|12 216 236.410|\n|8|[@calaber24p](https://steemit.com/@calaber24p)|2 411.786|10 175 362.253|\n|9|[@smooth](https://steemit.com/@smooth)|35.690|9 725 180.893|\n|10|[@dollarvigilante](https://steemit.com/@dollarvigilante)|2 135.290|9 376 253.261|\n|11|[@berniesanders](https://steemit.com/@berniesanders)|3.218|9 025 844.273|\n|12|[@dantheman](https://steemit.com/@dantheman)|1 612.428|8 604 664.210|\n|13|[@someguy123](https://steemit.com/@someguy123)|1 852.735|7 812 606.655|\n|14|[@ozchartart](https://steemit.com/@ozchartart)|1 771.698|7 215 740.701|\n|15|[@lifeisawesome](https://steemit.com/@lifeisawesome)|1 689.879|6 989 106.948|\n|16|[@infovore](https://steemit.com/@infovore)|1 705.589|6 924 653.829|\n|17|[@wang](https://steemit.com/@wang)|0.000|6 613 063.186|\n|18|[@charlieshrem](https://steemit.com/@charlieshrem)|1 500.105|6 557 010.291|\n|19|[@kevinwong](https://steemit.com/@kevinwong)|1 525.609|6 542 045.016|\n|20|[@jesta](https://steemit.com/@jesta)|1 492.300|6 472 103.097|\n|21|[@jamielefay](https://steemit.com/@jamielefay)|1 607.864|6 411 495.342|\n|22|[@complexring](https://steemit.com/@complexring)|647.683|6 065 457.160|\n|23|[@masteryoda](https://steemit.com/@masteryoda)|1 423.208|6 023 057.885|\n|24|[@nextgencrypto](https://steemit.com/@nextgencrypto)|7.149|5 399 639.966|\n|25|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|1 324.346|5 343 516.577|\n|26|[@katecloud](https://steemit.com/@katecloud)|1 265.447|5 136 897.795|\n|27|[@good-karma](https://steemit.com/@good-karma)|1 118.049|5 063 419.555|\n|28|[@timsaid](https://steemit.com/@timsaid)|1 153.420|4 999 746.262|\n|29|[@krishtopa](https://steemit.com/@krishtopa)|1 143.346|4 834 060.865|\n|30|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|1 138.985|4 813 642.940|\n|31|[@sascha](https://steemit.com/@sascha)|1 152.462|4 737 155.424|\n|32|[@cryptogee](https://steemit.com/@cryptogee)|1 145.094|4 704 779.347|\n|33|[@honeyscribe](https://steemit.com/@honeyscribe)|1 147.954|4 693 320.648|\n|34|[@curie](https://steemit.com/@curie)|1 056.415|4 572 371.506|\n|35|[@steve-walschot](https://steemit.com/@steve-walschot)|972.080|4 394 483.105|\n|36|[@markrmorrisjr](https://steemit.com/@markrmorrisjr)|1 058.539|4 369 963.419|\n|37|[@lobotony](https://steemit.com/@lobotony)|1 084.459|4 247 247.973|\n|38|[@steemed](https://steemit.com/@steemed)|32.767|4 188 255.968|\n|39|[@opheliafu](https://steemit.com/@opheliafu)|1 005.845|4 156 440.681|\n|40|[@riverhead](https://steemit.com/@riverhead)|7.248|4 045 823.778|\n|41|[@marius19](https://steemit.com/@marius19)|951.573|4 011 036.875|\n|42|[@serejandmyself](https://steemit.com/@serejandmyself)|941.108|3 990 747.231|\n|43|[@pharesim](https://steemit.com/@pharesim)|0.000|3 875 558.313|\n|44|[@steemit200](https://steemit.com/@steemit200)|0.000|3 768 755.702|\n|45|[@steempower](https://steemit.com/@steempower)|848.391|3 693 774.188|\n|46|[@xeroc](https://steemit.com/@xeroc)|700.860|3 667 185.079|\n|47|[@clayop](https://steemit.com/@clayop)|744.729|3 588 626.269|\n|48|[@aizensou](https://steemit.com/@aizensou)|813.814|3 460 586.334|\n|49|[@furion](https://steemit.com/@furion)|776.731|3 320 010.859|\n|50|[@xeldal](https://steemit.com/@xeldal)|0.393|3 300 335.411|\n|51|[@ned](https://steemit.com/@ned)|32.419|3 290 566.039|\n|52|[@officialfuzzy](https://steemit.com/@officialfuzzy)|769.671|3 256 431.084|\n|53|[@steemdrive](https://steemit.com/@steemdrive)|713.054|3 137 516.266|\n|54|[@joseph](https://steemit.com/@joseph)|57.350|3 085 782.531|\n|55|[@kencode](https://steemit.com/@kencode)|769.635|3 084 463.879|\n|56|[@larkenrose](https://steemit.com/@larkenrose)|718.161|2 952 298.454|\n|57|[@steemship](https://steemit.com/@steemship)|700.485|2 935 488.501|\n|58|[@recursive](https://steemit.com/@recursive)|6.621|2 918 906.746|\n|59|[@jpiper20](https://steemit.com/@jpiper20)|704.591|2 861 337.136|\n|60|[@hr1](https://steemit.com/@hr1)|0.300|2 780 636.062|\n|61|[@nanzo-scoop](https://steemit.com/@nanzo-scoop)|330.055|2 655 433.594|\n|62|[@laonie](https://steemit.com/@laonie)|116.404|2 619 872.564|\n|63|[@steemcleaners](https://steemit.com/@steemcleaners)|659.132|2 596 140.333|\n|64|[@charleshosk](https://steemit.com/@charleshosk)|585.319|2 399 760.878|\n|65|[@hisnameisolllie](https://steemit.com/@hisnameisolllie)|581.385|2 338 969.539|\n|66|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|497.669|2 274 840.954|\n|67|[@sweetsssj](https://steemit.com/@sweetsssj)|523.979|2 170 158.700|\n|68|[@b0y2k](https://steemit.com/@b0y2k)|497.114|2 132 474.149|\n|69|[@eneismijmich](https://steemit.com/@eneismijmich)|504.116|2 061 771.205|\n|70|[@livingthedream](https://steemit.com/@livingthedream)|510.792|2 027 254.578|\n|71|[@fairytalelife](https://steemit.com/@fairytalelife)|481.143|2 023 586.799|\n|72|[@sterlinluxan](https://steemit.com/@sterlinluxan)|500.904|2 022 584.130|\n|73|[@cass](https://steemit.com/@cass)|391.041|1 993 157.960|\n|74|[@corbettreport](https://steemit.com/@corbettreport)|457.908|1 979 421.716|\n|75|[@barrycooper](https://steemit.com/@barrycooper)|433.548|1 887 586.618|\n|76|[@jamesc](https://steemit.com/@jamesc)|0.153|1 871 857.951|\n|77|[@storyseeker](https://steemit.com/@storyseeker)|430.221|1 849 858.609|\n|78|[@jacor](https://steemit.com/@jacor)|428.758|1 774 043.305|\n|79|[@bravenewcoin](https://steemit.com/@bravenewcoin)|427.758|1 764 533.073|\n|80|[@kental](https://steemit.com/@kental)|435.486|1 746 992.520|\n|81|[@au1nethyb1](https://steemit.com/@au1nethyb1)|0.000|1 740 612.769|\n|82|[@mibenkito](https://steemit.com/@mibenkito)|399.692|1 722 718.612|\n|83|[@pfunk](https://steemit.com/@pfunk)|304.288|1 696 845.158|\n|84|[@alexbeyman](https://steemit.com/@alexbeyman)|409.397|1 679 902.161|\n|85|[@smailer](https://steemit.com/@smailer)|400.558|1 679 104.012|\n|86|[@badassmother](https://steemit.com/@badassmother)|0.000|1 679 019.431|\n|87|[@donkeypong](https://steemit.com/@donkeypong)|306.922|1 672 530.744|\n|88|[@razvanelulmarin](https://steemit.com/@razvanelulmarin)|373.350|1 644 174.858|\n|89|[@summon](https://steemit.com/@summon)|72.228|1 622 251.187|\n|90|[@gangsta](https://steemit.com/@gangsta)|405.820|1 620 709.343|\n|91|[@silver](https://steemit.com/@silver)|0.000|1 609 716.257|\n|92|[@dannystravels](https://steemit.com/@dannystravels)|404.374|1 568 065.581|\n|93|[@jamtaylor](https://steemit.com/@jamtaylor)|358.256|1 555 939.370|\n|94|[@mrs.steemit](https://steemit.com/@mrs.steemit)|368.118|1 530 900.679|\n|95|[@fyrstikken](https://steemit.com/@fyrstikken)|325.469|1 521 433.247|\n|96|[@senseiteekay](https://steemit.com/@senseiteekay)|357.948|1 517 489.098|\n|97|[@healthyrecipes](https://steemit.com/@healthyrecipes)|350.465|1 480 991.813|\n|98|[@satoshifund](https://steemit.com/@satoshifund)|0.000|1 472 512.796|\n|99|[@kushed](https://steemit.com/@kushed)|0.160|1 449 619.943|\n|100|[@aggroed](https://steemit.com/@aggroed)|348.227|1 428 790.019|\n\n\n- - -\n\n### Top 100 paying posts (author reward):\n|Rank | Account | SBD | VESTS | POST|\n| :-----| ------------- |-------------:| -----:|:-----|\n|1|[@roelandp](https://steemit.com/@roelandp)|5417.783|24936028.708622|[save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-n](https://steemit.com/all/@roelandp/save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl)|\n|2|[@someguy123](https://steemit.com/@someguy123)|1314.389|5601399.952738|[understeem-steemit-without-censorship-nsfw-filter-removed-vi](https://steemit.com/all/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor)|\n|3|[@kevinwong](https://steemit.com/@kevinwong)|971.542|4190657.642935|[logo-contest-for-project-curie-calling-all-designers](https://steemit.com/all/@kevinwong/logo-contest-for-project-curie-calling-all-designers)|\n|4|[@steve-walschot](https://steemit.com/@steve-walschot)|937.502|4105645.799136|[investigating-the-wale-scam-assumptions-above-knowledge](https://steemit.com/all/@steve-walschot/investigating-the-wale-scam-assumptions-above-knowledge)|\n|5|[@good-karma](https://steemit.com/@good-karma)|909.717|4210888.383925|[esteem-ios-1-2-2-released-advanced-login-signup-patch-post-e](https://steemit.com/all/@good-karma/esteem-ios-1-2-2-released-advanced-login-signup-patch-post-edits-photo-inclusion-on-posts-new-navigation-filter)|\n|6|[@cryptogee](https://steemit.com/@cryptogee)|802.871|3114844.305012|[a-quick-fix-for-a-broken-capitalist-society](https://steemit.com/all/@cryptogee/a-quick-fix-for-a-broken-capitalist-society)|\n|7|[@infovore](https://steemit.com/@infovore)|780.138|3145392.168091|[steemmag-steemit-s-weekend-digest-9-of-community-curation-an](https://steemit.com/all/@infovore/steemmag-steemit-s-weekend-digest-9-of-community-curation-and-reputation-chats-with-a-whale-steemit-chat-lead-moderators-a-day)|\n|8|[@steemdrive](https://steemit.com/@steemdrive)|709.735|3021388.477665|[steemdrive-second-proof-of-successful-crowdfunded-billboard-](https://steemit.com/all/@steemdrive/steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa)|\n|9|[@ericvancewalton](https://steemit.com/@ericvancewalton)|694.130|2692969.805438|[alarm-clock-dawn-an-original-novel-episode-22](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-22)|\n|10|[@sascha](https://steemit.com/@sascha)|672.279|2606133.315123|[our-life-on-planet-earth-part-8-the-meaning-of-life](https://steemit.com/all/@sascha/our-life-on-planet-earth-part-8-the-meaning-of-life)|\n|11|[@jesta](https://steemit.com/@jesta)|672.102|3084315.315130|[steem-bounty-system-milestone-1-proposal](https://steemit.com/all/@jesta/steem-bounty-system-milestone-1-proposal)|\n|12|[@steempower](https://steemit.com/@steempower)|670.009|2855734.328170|[bitshares-state-of-the-network-11th-sept-2016](https://steemit.com/all/@steempower/bitshares-state-of-the-network-11th-sept-2016)|\n|13|[@complexring](https://steemit.com/@complexring)|635.717|2707974.667320|[bypassing-the-great-firewall-of-china](https://steemit.com/all/@complexring/bypassing-the-great-firewall-of-china)|\n|14|[@katecloud](https://steemit.com/@katecloud)|628.891|2463723.749341|[a-photo-the-progression-of-a-painting-and-a-poem-by-kate-clo](https://steemit.com/all/@katecloud/a-photo-the-progression-of-a-painting-and-a-poem-by-kate-cloud)|\n|15|[@infovore](https://steemit.com/@infovore)|623.373|2415144.530628|[the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-th](https://steemit.com/all/@infovore/the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-the-internables-trend)|\n|16|[@ericvancewalton](https://steemit.com/@ericvancewalton)|605.001|2343398.347985|[the-cliff-an-original-poem](https://steemit.com/all/@ericvancewalton/the-cliff-an-original-poem)|\n|17|[@ericvancewalton](https://steemit.com/@ericvancewalton)|599.216|2408866.584548|[rush-hour-train-an-original-poem](https://steemit.com/all/@ericvancewalton/rush-hour-train-an-original-poem)|\n|18|[@dantheman](https://steemit.com/@dantheman)|588.696|2270663.485250|[censorship-is-impossible-in-a-free-society](https://steemit.com/all/@dantheman/censorship-is-impossible-in-a-free-society)|\n|19|[@ericvancewalton](https://steemit.com/@ericvancewalton)|573.497|2217973.305761|[too-simple-to-see-an-original-poem](https://steemit.com/all/@ericvancewalton/too-simple-to-see-an-original-poem)|\n|20|[@lobotony](https://steemit.com/@lobotony)|559.734|2169953.235319|[a-trip-to-the-north-part-1-of-2-iceland](https://steemit.com/all/@lobotony/a-trip-to-the-north-part-1-of-2-iceland)|\n|21|[@steemship](https://steemit.com/@steemship)|556.189|2365420.937467|[open-letter-to-ned-and-dan-you-badly-need-a-communications-c](https://steemit.com/all/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or)|\n|22|[@kevinwong](https://steemit.com/@kevinwong)|550.834|2135268.781675|[dayjob-ended-hello-steemit](https://steemit.com/all/@kevinwong/dayjob-ended-hello-steemit)|\n|23|[@ericvancewalton](https://steemit.com/@ericvancewalton)|539.244|2295220.650034|[alarm-clock-dawn-an-original-novel-episode-25](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-25)|\n|24|[@ericvancewalton](https://steemit.com/@ericvancewalton)|535.500|2075831.717451|[4ziyjc-alarm-clock-dawn-an-original-novel-episode-22](https://steemit.com/all/@ericvancewalton/4ziyjc-alarm-clock-dawn-an-original-novel-episode-22)|\n|25|[@lobotony](https://steemit.com/@lobotony)|524.725|2076637.525890|[a-trip-to-the-north-part-2-of-2-greenland](https://steemit.com/all/@lobotony/a-trip-to-the-north-part-2-of-2-greenland)|\n|26|[@dollarvigilante](https://steemit.com/@dollarvigilante)|522.074|2024561.204875|[gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-i](https://steemit.com/all/@dollarvigilante/gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-into-gold)|\n|27|[@calaber24p](https://steemit.com/@calaber24p)|516.871|2073762.161780|[the-evolution-of-virtual-economies-and-their-future-global-i](https://steemit.com/all/@calaber24p/the-evolution-of-virtual-economies-and-their-future-global-impact-on-the-world)|\n|28|[@jamielefay](https://steemit.com/@jamielefay)|515.285|1997372.750614|[ahe-ey-submission-an-original-novel-part-16](https://steemit.com/all/@jamielefay/ahe-ey-submission-an-original-novel-part-16)|\n|29|[@lifeisawesome](https://steemit.com/@lifeisawesome)|515.184|2076732.392526|[you-are-what-your-friends-are](https://steemit.com/all/@lifeisawesome/you-are-what-your-friends-are)|\n|30|[@ericvancewalton](https://steemit.com/@ericvancewalton)|512.929|1979697.284935|[alarm-clock-dawn-an-original-novel-episode-21](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-21)|\n|31|[@charlieshrem](https://steemit.com/@charlieshrem)|508.009|2110171.661194|[how-to-live-completely-off-steem-using-a-virtual-and-physica](https://steemit.com/all/@charlieshrem/how-to-live-completely-off-steem-using-a-virtual-and-physical-debit-card-topped-up-with-steem)|\n|32|[@thisisbenbrick](https://steemit.com/@thisisbenbrick)|497.660|2255006.094857|[the-lifecycle-of-a-song](https://steemit.com/all/@thisisbenbrick/the-lifecycle-of-a-song)|\n|33|[@timsaid](https://steemit.com/@timsaid)|493.545|1978954.745437|[life-explorers-the-human-senses-part-ii-hearing](https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-ii-hearing)|\n|34|[@gavvet](https://steemit.com/@gavvet)|483.546|2060779.396304|[crab-mentality-what-you-need-to-know-about-this-kind-of-degr](https://steemit.com/all/@gavvet/crab-mentality-what-you-need-to-know-about-this-kind-of-degrading-mentality-english-filipino)|\n|35|[@fairytalelife](https://steemit.com/@fairytalelife)|479.523|1927465.053480|[how-to-draw-a-braid](https://steemit.com/all/@fairytalelife/how-to-draw-a-braid)|\n|36|[@sascha](https://steemit.com/@sascha)|479.357|2090356.322663|[salt-as-an-energy-source-energetic-purification-with-salt](https://steemit.com/all/@sascha/salt-as-an-energy-source-energetic-purification-with-salt)|\n|37|[@ericvancewalton](https://steemit.com/@ericvancewalton)|459.391|1953748.642541|[walk-your-worries-an-original-poem](https://steemit.com/all/@ericvancewalton/walk-your-worries-an-original-poem)|\n|38|[@calaber24p](https://steemit.com/@calaber24p)|458.060|1948333.287074|[different-ways-to-think-about-your-time-and-money-to-lead-to](https://steemit.com/all/@calaber24p/different-ways-to-think-about-your-time-and-money-to-lead-to-better-financial-security)|\n|39|[@dollarvigilante](https://steemit.com/@dollarvigilante)|457.747|2096614.988536|[boom-end-game-nears-as-central-banks-buying-up-gold-mining-c](https://steemit.com/all/@dollarvigilante/boom-end-game-nears-as-central-banks-buying-up-gold-mining-companies)|\n|40|[@timsaid](https://steemit.com/@timsaid)|451.707|2069238.286170|[life-explorers-the-human-senses-part-iii-touch](https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-iii-touch)|\n|41|[@sterlinluxan](https://steemit.com/@sterlinluxan)|445.525|1790952.274641|[anarchapulco-is-one-of-the-most-world-changing-conferences-e](https://steemit.com/all/@sterlinluxan/anarchapulco-is-one-of-the-most-world-changing-conferences-ever)|\n|42|[@calaber24p](https://steemit.com/@calaber24p)|445.091|1730853.060104|[revamping-curation-is-the-way-to-increase-steem-power-demand](https://steemit.com/all/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand)|\n|43|[@jamielefay](https://steemit.com/@jamielefay)|444.129|1722107.917895|[ahe-ey-water-angels-an-original-novel-part-7-audiobook](https://steemit.com/all/@jamielefay/ahe-ey-water-angels-an-original-novel-part-7-audiobook)|\n|44|[@xeroc](https://steemit.com/@xeroc)|442.100|1715452.124498|[piston-how-to-use-it-for-multisignature-accounts](https://steemit.com/all/@xeroc/piston-how-to-use-it-for-multisignature-accounts)|\n|45|[@dollarvigilante](https://steemit.com/@dollarvigilante)|439.671|1772010.226787|[jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-sin](https://steemit.com/all/@dollarvigilante/jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-since-brexit)|\n|46|[@jamielefay](https://steemit.com/@jamielefay)|436.368|1860075.567439|[ahe-ey-allegiance-an-original-novel-part-18](https://steemit.com/all/@jamielefay/ahe-ey-allegiance-an-original-novel-part-18)|\n|47|[@jesta](https://steemit.com/@jesta)|427.963|1692835.407320|[steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-](https://steemit.com/all/@jesta/steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-0-14-0)|\n|48|[@dollarvigilante](https://steemit.com/@dollarvigilante)|426.107|1815667.350107|[famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-a](https://steemit.com/all/@dollarvigilante/famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-anarchy-and-cryptocurrencies)|\n|49|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|413.120|1600748.444404|[pura-vida-my-experience-working-on-a-permaculture-farm-in-co](https://steemit.com/all/@anwenbaumeister/pura-vida-my-experience-working-on-a-permaculture-farm-in-costa-rica-part-two)|\n|50|[@dannystravels](https://steemit.com/@dannystravels)|404.374|1567809.296314|[face-to-face-with-our-closest-living-relative-part-2-2](https://steemit.com/all/@dannystravels/face-to-face-with-our-closest-living-relative-part-2-2)|\n|51|[@sirwinchester](https://steemit.com/@sirwinchester)|403.621|1723295.787435|[bitcoin-exchange-berlin-meetup-with-ned-on-skype](https://steemit.com/all/@sirwinchester/bitcoin-exchange-berlin-meetup-with-ned-on-skype)|\n|52|[@mibenkito](https://steemit.com/@mibenkito)|399.692|1701129.893154|[a-steemian-s-world-food-journal-part-5-sydney](https://steemit.com/all/@mibenkito/a-steemian-s-world-food-journal-part-5-sydney)|\n|53|[@ericvancewalton](https://steemit.com/@ericvancewalton)|399.641|1719344.321486|[broken-dreams-an-original-poem](https://steemit.com/all/@ericvancewalton/broken-dreams-an-original-poem)|\n|54|[@charleshosk](https://steemit.com/@charleshosk)|390.939|1571334.118454|[ethereum-classic-an-update](https://steemit.com/all/@charleshosk/ethereum-classic-an-update)|\n|55|[@calaber24p](https://steemit.com/@calaber24p)|390.494|1824187.485033|[countries-that-incentivize-and-deregulate-crypto-startups-wi](https://steemit.com/all/@calaber24p/countries-that-incentivize-and-deregulate-crypto-startups-will-reap-the-rewards-if-the-technology-goes-mainstream)|\n|56|[@charlieshrem](https://steemit.com/@charlieshrem)|382.869|1477441.136465|[an-intimate-evening-with-charlie-shrem-moving-forward-south-](https://steemit.com/all/@charlieshrem/an-intimate-evening-with-charlie-shrem-moving-forward-south-florida-usa)|\n|57|[@officialfuzzy](https://steemit.com/@officialfuzzy)|378.829|1519255.893290|[guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-fri](https://steemit.com/all/@officialfuzzy/guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-friday-s-hangout-refer-projects-for-rewards)|\n|58|[@knozaki2015](https://steemit.com/@knozaki2015)|370.606|1493308.546306|[steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-german](https://steemit.com/all/@knozaki2015/steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-germany-9-9-2016-with-pictures)|\n|59|[@dantheman](https://steemit.com/@dantheman)|369.466|1485061.731912|[justification-for-104-week-power-down](https://steemit.com/all/@dantheman/justification-for-104-week-power-down)|\n|60|[@cass](https://steemit.com/@cass)|369.092|1533209.359825|[sneak-preview-chainsquad-corporate-branding-logo-design](https://steemit.com/all/@cass/sneak-preview-chainsquad-corporate-branding-logo-design)|\n|61|[@aizensou](https://steemit.com/@aizensou)|358.318|1418712.320393|[top-5-places-in-barcelona-featuring-maryfromsochi-as-author](https://steemit.com/all/@aizensou/top-5-places-in-barcelona-featuring-maryfromsochi-as-author)|\n|62|[@sirwinchester](https://steemit.com/@sirwinchester)|358.314|1477359.694757|[steemit-meetup-in-berlin-germany](https://steemit.com/all/@sirwinchester/steemit-meetup-in-berlin-germany)|\n|63|[@clayop](https://steemit.com/@clayop)|355.145|1512981.501683|[the-typology-of-curation-what-kinds-of-curators-we-have-now](https://steemit.com/all/@clayop/the-typology-of-curation-what-kinds-of-curators-we-have-now)|\n|64|[@kencode](https://steemit.com/@kencode)|353.240|1453050.277044|[ann-smartcoins-wallet-v1-0-6-released](https://steemit.com/all/@kencode/ann-smartcoins-wallet-v1-0-6-released)|\n|65|[@gavvet](https://steemit.com/@gavvet)|353.159|1405040.374698|[a-free-lunch-with-edward-snowden](https://steemit.com/all/@gavvet/a-free-lunch-with-edward-snowden)|\n|66|[@clayop](https://steemit.com/@clayop)|343.604|1365548.612065|[how-much-do-whales-influences-on-rewards-introducing-new-sta](https://steemit.com/all/@clayop/how-much-do-whales-influences-on-rewards-introducing-new-statistics)|\n|67|[@curie](https://steemit.com/@curie)|343.592|1465300.000707|[project-curie-s-daily-curation-list-10-sept-11-sept-2016](https://steemit.com/all/@curie/project-curie-s-daily-curation-list-10-sept-11-sept-2016)|\n|68|[@calaber24p](https://steemit.com/@calaber24p)|342.141|1457567.812539|[immigration-into-america-has-made-it-the-world-power-it-is-t](https://steemit.com/all/@calaber24p/immigration-into-america-has-made-it-the-world-power-it-is-today)|\n|69|[@b0y2k](https://steemit.com/@b0y2k)|340.586|1369051.035651|[steemit-sponsoring-the-compass-cup-team-event](https://steemit.com/all/@b0y2k/steemit-sponsoring-the-compass-cup-team-event)|\n|70|[@cryptogee](https://steemit.com/@cryptogee)|339.967|1496475.706859|[spotlight-issue-8-philosophy-music-and-science](https://steemit.com/all/@cryptogee/spotlight-issue-8-philosophy-music-and-science)|\n|71|[@kencode](https://steemit.com/@kencode)|337.474|1308694.645920|[blockpay-moving-up-the-charts](https://steemit.com/all/@kencode/blockpay-moving-up-the-charts)|\n|72|[@ericvancewalton](https://steemit.com/@ericvancewalton)|336.781|1347763.370147|[alarm-clock-dawn-an-original-novel-episode-24](https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-24)|\n|73|[@gavvet](https://steemit.com/@gavvet)|332.977|1291120.851189|[hi-to-reinvent-yourself-featuring-sauravrungta-as-author](https://steemit.com/all/@gavvet/hi-to-reinvent-yourself-featuring-sauravrungta-as-author)|\n|74|[@ozchartart](https://steemit.com/@ozchartart)|332.418|1282511.839603|[usdeth-btc-poloniex-technical-analysis-sept-07-2016](https://steemit.com/all/@ozchartart/usdeth-btc-poloniex-technical-analysis-sept-07-2016)|\n|75|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|332.381|1339735.329416|[celtic-heart-knot-pictorial](https://steemit.com/all/@bridgetbunchy/celtic-heart-knot-pictorial)|\n|76|[@roelandp](https://steemit.com/@roelandp)|331.053|1286840.936796|[my-proper-introduceyourself-hello-i-m-roelandp](https://steemit.com/all/@roelandp/my-proper-introduceyourself-hello-i-m-roelandp)|\n|77|[@ericvancewalton](https://steemit.com/@ericvancewalton)|330.742|1295789.736302|[know-me-an-original-poem](https://steemit.com/all/@ericvancewalton/know-me-an-original-poem)|\n|78|[@cryptovpn](https://steemit.com/@cryptovpn)|329.564|1276654.885609|[steemit-charity-run-no-1-doctors-without-borders](https://steemit.com/all/@cryptovpn/steemit-charity-run-no-1-doctors-without-borders)|\n|79|[@steemcleaners](https://steemit.com/@steemcleaners)|329.504|1292242.895864|[steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-](https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-1)|\n|80|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|320.241|1241317.843204|[my-cross-country-road-trip-greater-than-sf-greater-than-vega](https://steemit.com/all/@anwenbaumeister/my-cross-country-road-trip-greater-than-sf-greater-than-vegas-greater-than-boulder-greater-than-houston-greater-than-new-orleans)|\n|81|[@charlieshrem](https://steemit.com/@charlieshrem)|313.754|1475625.347428|[a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-](https://steemit.com/all/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-life-and-the-shrempresso)|\n|82|[@enric](https://steemit.com/@enric)|311.617|1208114.056405|[im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurre](https://steemit.com/all/@enric/im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurrency-my-revolutionary-struggle-now-im-here)|\n|83|[@dantheman](https://steemit.com/@dantheman)|309.920|1201663.748404|[scalability-of-individual-responsibility-in-anarchy](https://steemit.com/all/@dantheman/scalability-of-individual-responsibility-in-anarchy)|\n|84|[@officialfuzzy](https://steemit.com/@officialfuzzy)|309.814|1312470.274185|[e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-test](https://steemit.com/all/@officialfuzzy/e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-testnet-jewels-ico-success-gridcoin-and-making-it-rain)|\n|85|[@gavvet](https://steemit.com/@gavvet)|308.127|1212749.753443|[a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-](https://steemit.com/all/@gavvet/a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-author)|\n|86|[@bridgetbunchy](https://steemit.com/@bridgetbunchy)|303.555|1201909.200453|[the-love-of-a-maker](https://steemit.com/all/@bridgetbunchy/the-love-of-a-maker)|\n|87|[@steemcleaners](https://steemit.com/@steemcleaners)|302.924|1192233.387004|[steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-](https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-2)|\n|88|[@dantheman](https://steemit.com/@dantheman)|301.672|1169749.675855|[nonviolent-censorship-is-how-nonviolent-societies-create-non](https://steemit.com/all/@dantheman/nonviolent-censorship-is-how-nonviolent-societies-create-nonviolent-government)|\n|89|[@infovore](https://steemit.com/@infovore)|301.261|1214999.166441|[a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-](https://steemit.com/all/@infovore/a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-moment-on-steemit-this-week-on-steemit-steemmag-steemit-s-weekend)|\n|90|[@firepower](https://steemit.com/@firepower)|300.280|1368056.554963|[when-i-lost-sight-while-steeming](https://steemit.com/all/@firepower/when-i-lost-sight-while-steeming)|\n|91|[@ozchartart](https://steemit.com/@ozchartart)|294.271|1183433.553199|[usddoge-btc-poloniex-technical-analysis-sept-10-2016](https://steemit.com/all/@ozchartart/usddoge-btc-poloniex-technical-analysis-sept-10-2016)|\n|92|[@donkeypong](https://steemit.com/@donkeypong)|293.559|1138798.465907|[a-tribute-to-snail-mail](https://steemit.com/all/@donkeypong/a-tribute-to-snail-mail)|\n|93|[@charlieshrem](https://steemit.com/@charlieshrem)|292.995|1135970.118327|[progressive-relaxation-by-charlie-shrem-mindfulness-meditati](https://steemit.com/all/@charlieshrem/progressive-relaxation-by-charlie-shrem-mindfulness-meditation-in-prison-and-everyday-life)|\n|94|[@curie](https://steemit.com/@curie)|289.920|1234271.286622|[project-curie-s-daily-curation-list-9-sept-10-sept-2016](https://steemit.com/all/@curie/project-curie-s-daily-curation-list-9-sept-10-sept-2016)|\n|95|[@furion](https://steemit.com/@furion)|289.919|1234751.363741|[a-quick-look-at-null-and-the-profitability-of-promoted-posts](https://steemit.com/all/@furion/a-quick-look-at-null-and-the-profitability-of-promoted-posts)|\n|96|[@sirwinchester](https://steemit.com/@sirwinchester)|288.926|1119010.839878|[mr-gourmet-exploring-a-new-location](https://steemit.com/all/@sirwinchester/mr-gourmet-exploring-a-new-location)|\n|97|[@larkenrose](https://steemit.com/@larkenrose)|281.627|1138819.558651|[supply-and-demand-steemit-style](https://steemit.com/all/@larkenrose/supply-and-demand-steemit-style)|\n|98|[@anwenbaumeister](https://steemit.com/@anwenbaumeister)|278.638|1162968.108837|[a-peek-into-pre-columbian-worldviews-found-in-agricultural-p](https://steemit.com/all/@anwenbaumeister/a-peek-into-pre-columbian-worldviews-found-in-agricultural-practices-duality-complementarity-cyclicity-and-reciprocity)|\n|99|[@corbettreport](https://steemit.com/@corbettreport)|277.435|1238430.062064|[only-9-11-truth-can-smash-the-9-11-lies](https://steemit.com/all/@corbettreport/only-9-11-truth-can-smash-the-9-11-lies)|\n|100|[@sirwinchester](https://steemit.com/@sirwinchester)|277.087|1113453.030386|[find-your-why-self-discovery-and-finding-your-purpose-in-lif](https://steemit.com/all/@sirwinchester/find-your-why-self-discovery-and-finding-your-purpose-in-life)|\n\n\n- - -\nPrevious report: [September week 1](https://steemit.com/stats/@masteryoda/weekly-payouts-leaderboards-september-week-1)\n- - -\n\n###### \u00a9 @masteryoda", + "category": "stats", + "children": 25, + "created": "2016-09-15T10:10:06", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.imgsafe.org/81a1095cd2.png", + "http://imgh.us/canvas2_1.png" + ], + "links": [ + "https://steemit.com/@ericvancewalton", + "https://steemit.com/@roelandp", + "https://steemit.com/@gavvet", + "https://steemit.com/@knozaki2015", + "https://steemit.com/@sirwinchester", + "https://steemit.com/@terrycraft", + "https://steemit.com/@calaber24p", + "https://steemit.com/@dollarvigilante", + "https://steemit.com/@someguy123", + "https://steemit.com/@ozchartart", + "https://steemit.com/@infovore", + "https://steemit.com/@lifeisawesome", + "https://steemit.com/@dantheman", + "https://steemit.com/@jamielefay", + "https://steemit.com/@kevinwong", + "https://steemit.com/@charlieshrem", + "https://steemit.com/@jesta", + "https://steemit.com/@masteryoda", + "https://steemit.com/@bridgetbunchy", + "https://steemit.com/@katecloud", + "https://steemit.com/@timsaid", + "https://steemit.com/@sascha", + "https://steemit.com/@honeyscribe", + "https://steemit.com/@cryptogee", + "https://steemit.com/@krishtopa", + "https://steemit.com/@anwenbaumeister", + "https://steemit.com/@good-karma", + "https://steemit.com/@lobotony", + "https://steemit.com/@markrmorrisjr", + "https://steemit.com/@curie", + "https://steemit.com/@opheliafu", + "https://steemit.com/@steve-walschot", + "https://steemit.com/@marius19", + "https://steemit.com/@serejandmyself", + "https://steemit.com/@steempower", + "https://steemit.com/@aizensou", + "https://steemit.com/@furion", + "https://steemit.com/@officialfuzzy", + "https://steemit.com/@kencode", + "https://steemit.com/@clayop", + "https://steemit.com/@larkenrose", + "https://steemit.com/@steemdrive", + "https://steemit.com/@jpiper20", + "https://steemit.com/@xeroc", + "https://steemit.com/@steemship", + "https://steemit.com/@steemcleaners", + "https://steemit.com/@complexring", + "https://steemit.com/@charleshosk", + "https://steemit.com/@hisnameisolllie", + "https://steemit.com/@sweetsssj", + "https://steemit.com/@livingthedream", + "https://steemit.com/@eneismijmich", + "https://steemit.com/@sterlinluxan", + "https://steemit.com/@thisisbenbrick", + "https://steemit.com/@b0y2k", + "https://steemit.com/@fairytalelife", + "https://steemit.com/@corbettreport", + "https://steemit.com/@kental", + "https://steemit.com/@barrycooper", + "https://steemit.com/@storyseeker", + "https://steemit.com/@jacor", + "https://steemit.com/@bravenewcoin", + "https://steemit.com/@alexbeyman", + "https://steemit.com/@gangsta", + "https://steemit.com/@dannystravels", + "https://steemit.com/@smailer", + "https://steemit.com/@mibenkito", + "https://steemit.com/@cass", + "https://steemit.com/@razvanelulmarin", + "https://steemit.com/@mrs.steemit", + "https://steemit.com/@jamtaylor", + "https://steemit.com/@senseiteekay", + "https://steemit.com/@healthyrecipes", + "https://steemit.com/@aggroed", + "https://steemit.com/@celebr1ty", + "https://steemit.com/@dana-edwards", + "https://steemit.com/@cryptovpn", + "https://steemit.com/@nanzo-scoop", + "https://steemit.com/@fyrstikken", + "https://steemit.com/@richman", + "https://steemit.com/@enric", + "https://steemit.com/@firepower", + "https://steemit.com/@donkeypong", + "https://steemit.com/@churdtzu", + "https://steemit.com/@pfunk", + "https://steemit.com/@canadian-coconut", + "https://steemit.com/@alexgr", + "https://steemit.com/@quinneaker", + "https://steemit.com/@nekromarinist", + "https://steemit.com/@liberosist", + "https://steemit.com/@sigmajin", + "https://steemit.com/@aaronkoenig", + "https://steemit.com/@tracemayer", + "https://steemit.com/@hilarski", + "https://steemit.com/@shammyshiggs", + "https://steemit.com/@halo", + "https://steemit.com/@rok-sivante", + "https://steemit.com/@vermillion666", + "https://steemit.com/@kaylinart", + "https://steemit.com/@kobur", + "https://steemit.com/@blocktrades", + "https://steemit.com/@smooth", + "https://steemit.com/@berniesanders", + "https://steemit.com/@wang", + "https://steemit.com/@nextgencrypto", + "https://steemit.com/@steemed", + "https://steemit.com/@riverhead", + "https://steemit.com/@pharesim", + "https://steemit.com/@steemit200", + "https://steemit.com/@xeldal", + "https://steemit.com/@ned", + "https://steemit.com/@joseph", + "https://steemit.com/@recursive", + "https://steemit.com/@hr1", + "https://steemit.com/@laonie", + "https://steemit.com/@jamesc", + "https://steemit.com/@au1nethyb1", + "https://steemit.com/@badassmother", + "https://steemit.com/@summon", + "https://steemit.com/@silver", + "https://steemit.com/@satoshifund", + "https://steemit.com/@kushed", + "https://steemit.com/all/@roelandp/save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl", + "https://steemit.com/all/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor", + "https://steemit.com/all/@kevinwong/logo-contest-for-project-curie-calling-all-designers", + "https://steemit.com/all/@steve-walschot/investigating-the-wale-scam-assumptions-above-knowledge", + "https://steemit.com/all/@good-karma/esteem-ios-1-2-2-released-advanced-login-signup-patch-post-edits-photo-inclusion-on-posts-new-navigation-filter", + "https://steemit.com/all/@cryptogee/a-quick-fix-for-a-broken-capitalist-society", + "https://steemit.com/all/@infovore/steemmag-steemit-s-weekend-digest-9-of-community-curation-and-reputation-chats-with-a-whale-steemit-chat-lead-moderators-a-day", + "https://steemit.com/all/@steemdrive/steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-22", + "https://steemit.com/all/@sascha/our-life-on-planet-earth-part-8-the-meaning-of-life", + "https://steemit.com/all/@jesta/steem-bounty-system-milestone-1-proposal", + "https://steemit.com/all/@steempower/bitshares-state-of-the-network-11th-sept-2016", + "https://steemit.com/all/@complexring/bypassing-the-great-firewall-of-china", + "https://steemit.com/all/@katecloud/a-photo-the-progression-of-a-painting-and-a-poem-by-kate-cloud", + "https://steemit.com/all/@infovore/the-rise-of-the-human-cyborgs-outsmarting-smartphones-and-the-internables-trend", + "https://steemit.com/all/@ericvancewalton/the-cliff-an-original-poem", + "https://steemit.com/all/@ericvancewalton/rush-hour-train-an-original-poem", + "https://steemit.com/all/@dantheman/censorship-is-impossible-in-a-free-society", + "https://steemit.com/all/@ericvancewalton/too-simple-to-see-an-original-poem", + "https://steemit.com/all/@lobotony/a-trip-to-the-north-part-1-of-2-iceland", + "https://steemit.com/all/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or", + "https://steemit.com/all/@kevinwong/dayjob-ended-hello-steemit", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-25", + "https://steemit.com/all/@ericvancewalton/4ziyjc-alarm-clock-dawn-an-original-novel-episode-22", + "https://steemit.com/all/@lobotony/a-trip-to-the-north-part-2-of-2-greenland", + "https://steemit.com/all/@dollarvigilante/gold-has-biggest-one-day-rally-since-brexit-as-elites-rush-into-gold", + "https://steemit.com/all/@calaber24p/the-evolution-of-virtual-economies-and-their-future-global-impact-on-the-world", + "https://steemit.com/all/@jamielefay/ahe-ey-submission-an-original-novel-part-16", + "https://steemit.com/all/@lifeisawesome/you-are-what-your-friends-are", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-21", + "https://steemit.com/all/@charlieshrem/how-to-live-completely-off-steem-using-a-virtual-and-physical-debit-card-topped-up-with-steem", + "https://steemit.com/all/@thisisbenbrick/the-lifecycle-of-a-song", + "https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-ii-hearing", + "https://steemit.com/all/@gavvet/crab-mentality-what-you-need-to-know-about-this-kind-of-degrading-mentality-english-filipino", + "https://steemit.com/all/@fairytalelife/how-to-draw-a-braid", + "https://steemit.com/all/@sascha/salt-as-an-energy-source-energetic-purification-with-salt", + "https://steemit.com/all/@ericvancewalton/walk-your-worries-an-original-poem", + "https://steemit.com/all/@calaber24p/different-ways-to-think-about-your-time-and-money-to-lead-to-better-financial-security", + "https://steemit.com/all/@dollarvigilante/boom-end-game-nears-as-central-banks-buying-up-gold-mining-companies", + "https://steemit.com/all/@timsaid/life-explorers-the-human-senses-part-iii-touch", + "https://steemit.com/all/@sterlinluxan/anarchapulco-is-one-of-the-most-world-changing-conferences-ever", + "https://steemit.com/all/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand", + "https://steemit.com/all/@jamielefay/ahe-ey-water-angels-an-original-novel-part-7-audiobook", + "https://steemit.com/all/@xeroc/piston-how-to-use-it-for-multisignature-accounts", + "https://steemit.com/all/@dollarvigilante/jubilee-jolt-dow-down-400-stocks-smashed-in-biggest-drop-since-brexit", + "https://steemit.com/all/@jamielefay/ahe-ey-allegiance-an-original-novel-part-18", + "https://steemit.com/all/@jesta/steemstats-0-3-5-improved-post-inspector-fixes-and-prep-for-0-14-0", + "https://steemit.com/all/@dollarvigilante/famous-big-wave-surfer-and-steemer-toby-cunningham-on-life-anarchy-and-cryptocurrencies", + "https://steemit.com/all/@anwenbaumeister/pura-vida-my-experience-working-on-a-permaculture-farm-in-costa-rica-part-two", + "https://steemit.com/all/@dannystravels/face-to-face-with-our-closest-living-relative-part-2-2", + "https://steemit.com/all/@sirwinchester/bitcoin-exchange-berlin-meetup-with-ned-on-skype", + "https://steemit.com/all/@mibenkito/a-steemian-s-world-food-journal-part-5-sydney", + "https://steemit.com/all/@ericvancewalton/broken-dreams-an-original-poem", + "https://steemit.com/all/@charleshosk/ethereum-classic-an-update", + "https://steemit.com/all/@calaber24p/countries-that-incentivize-and-deregulate-crypto-startups-will-reap-the-rewards-if-the-technology-goes-mainstream", + "https://steemit.com/all/@charlieshrem/an-intimate-evening-with-charlie-shrem-moving-forward-south-florida-usa", + "https://steemit.com/all/@officialfuzzy/guest-signups-beyond-bitcoin-hangout-173-9-16-16-rsvp-to-friday-s-hangout-refer-projects-for-rewards", + "https://steemit.com/all/@knozaki2015/steem-meetup-steemit-s-first-meetup-in-berlin-potsdam-germany-9-9-2016-with-pictures", + "https://steemit.com/all/@dantheman/justification-for-104-week-power-down", + "https://steemit.com/all/@cass/sneak-preview-chainsquad-corporate-branding-logo-design", + "https://steemit.com/all/@aizensou/top-5-places-in-barcelona-featuring-maryfromsochi-as-author", + "https://steemit.com/all/@sirwinchester/steemit-meetup-in-berlin-germany", + "https://steemit.com/all/@clayop/the-typology-of-curation-what-kinds-of-curators-we-have-now", + "https://steemit.com/all/@kencode/ann-smartcoins-wallet-v1-0-6-released", + "https://steemit.com/all/@gavvet/a-free-lunch-with-edward-snowden", + "https://steemit.com/all/@clayop/how-much-do-whales-influences-on-rewards-introducing-new-statistics", + "https://steemit.com/all/@curie/project-curie-s-daily-curation-list-10-sept-11-sept-2016", + "https://steemit.com/all/@calaber24p/immigration-into-america-has-made-it-the-world-power-it-is-today", + "https://steemit.com/all/@b0y2k/steemit-sponsoring-the-compass-cup-team-event", + "https://steemit.com/all/@cryptogee/spotlight-issue-8-philosophy-music-and-science", + "https://steemit.com/all/@kencode/blockpay-moving-up-the-charts", + "https://steemit.com/all/@ericvancewalton/alarm-clock-dawn-an-original-novel-episode-24", + "https://steemit.com/all/@gavvet/hi-to-reinvent-yourself-featuring-sauravrungta-as-author", + "https://steemit.com/all/@ozchartart/usdeth-btc-poloniex-technical-analysis-sept-07-2016", + "https://steemit.com/all/@bridgetbunchy/celtic-heart-knot-pictorial", + "https://steemit.com/all/@roelandp/my-proper-introduceyourself-hello-i-m-roelandp", + "https://steemit.com/all/@ericvancewalton/know-me-an-original-poem", + "https://steemit.com/all/@cryptovpn/steemit-charity-run-no-1-doctors-without-borders", + "https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-1", + "https://steemit.com/all/@anwenbaumeister/my-cross-country-road-trip-greater-than-sf-greater-than-vegas-greater-than-boulder-greater-than-houston-greater-than-new-orleans", + "https://steemit.com/all/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-part-4-unit-life-and-the-shrempresso", + "https://steemit.com/all/@enric/im-enric-duran-from-robbing-banks-to-take-over-a-cryptocurrency-my-revolutionary-struggle-now-im-here", + "https://steemit.com/all/@dantheman/scalability-of-individual-responsibility-in-anarchy", + "https://steemit.com/all/@officialfuzzy/e172-beyond-bitcoin-peerplays-talks-legal-sharedrop-and-testnet-jewels-ico-success-gridcoin-and-making-it-rain", + "https://steemit.com/all/@gavvet/a-day-in-the-life-of-john-d-rockefeller-featuring-cristi-as-author", + "https://steemit.com/all/@bridgetbunchy/the-love-of-a-maker", + "https://steemit.com/all/@steemcleaners/steemcleaner-report-for-the-week-of-aug-29-sept-4-2016-part-2", + "https://steemit.com/all/@dantheman/nonviolent-censorship-is-how-nonviolent-societies-create-nonviolent-government", + "https://steemit.com/all/@infovore/a-day-in-the-life-of-a-steemcleaner-steemians-speak-fondest-moment-on-steemit-this-week-on-steemit-steemmag-steemit-s-weekend", + "https://steemit.com/all/@firepower/when-i-lost-sight-while-steeming", + "https://steemit.com/all/@ozchartart/usddoge-btc-poloniex-technical-analysis-sept-10-2016", + "https://steemit.com/all/@donkeypong/a-tribute-to-snail-mail", + "https://steemit.com/all/@charlieshrem/progressive-relaxation-by-charlie-shrem-mindfulness-meditation-in-prison-and-everyday-life", + "https://steemit.com/all/@curie/project-curie-s-daily-curation-list-9-sept-10-sept-2016", + "https://steemit.com/all/@furion/a-quick-look-at-null-and-the-profitability-of-promoted-posts", + "https://steemit.com/all/@sirwinchester/mr-gourmet-exploring-a-new-location", + "https://steemit.com/all/@larkenrose/supply-and-demand-steemit-style", + "https://steemit.com/all/@anwenbaumeister/a-peek-into-pre-columbian-worldviews-found-in-agricultural-practices-duality-complementarity-cyclicity-and-reciprocity", + "https://steemit.com/all/@corbettreport/only-9-11-truth-can-smash-the-9-11-lies", + "https://steemit.com/all/@sirwinchester/find-your-why-self-discovery-and-finding-your-purpose-in-life", + "https://steemit.com/stats/@masteryoda/weekly-payouts-leaderboards-september-week-1" + ], + "tags": [ + "stats", + "steemstats", + "steem-stats", + "steemit" + ], + "users": [ + "masteryoda" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66209054025322, + "payout": 254.797, + "payout_at": "2016-09-22T10:10:06", + "pending_payout_value": "254.797 HBD", + "percent_hbd": 10000, + "permlink": "weekly-payouts-leaderboards-september-week-2", + "post_id": 1252375, + "promoted": "0.000 HBD", + "replies": [], "stats": { - "hide": false, + "flag_weight": 0.0, "gray": false, - "total_votes": 291, - "flag_weight": 0.0 + "hide": false, + "total_votes": 291 }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/stats/@masteryoda/weekly-payouts-leaderboards-september-week-2", - "blacklists": [] + "title": "Weekly payouts leaderboards - September week 2", + "updated": "2016-09-15T10:10:06", + "url": "/stats/@masteryoda/weekly-payouts-leaderboards-september-week-2" } ] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json b/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json index 202a9ba0..2109895a 100644 --- a/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json @@ -2,7 +2,7 @@ "reputations": [ { "name": "steemit", - "reputation": 12944616889 + "reputation": 0 } ] -} +} \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json index 1d95f6eb..15ef8fb0 100644 --- a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json @@ -6,13 +6,13 @@ "beneficiaries": [], "body": "Ty jeste\u015b autorem tego tekstu?\nhttps://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658", "body_length": 122, - "cashout_time": "2016-09-18T21:19:45", + "cashout_time": "2016-08-29T07:44:48", "category": "polska", "children": 0, "created": "2016-08-22T07:44:48", "curator_payout_value": "0.000 HBD", "depth": 1, - "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https:\\/\\/web.facebook.com\\/notes\\/szymon-szewczyk-blog\\/nasienie-wolno%C5%9Bci\\/1062629210473658\"]}", + "json_metadata": "{\"tags\":[\"polska\"],\"links\":[\"https://web.facebook.com/notes/szymon-szewczyk-blog/nasienie-wolno%C5%9Bci/1062629210473658\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-08-22T07:44:48", "max_accepted_payout": "1000000.000 HBD", @@ -20,9 +20,9 @@ "parent_author": "simgregg", "parent_permlink": "nasienie-wolnosci", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-simgregg-nasienie-wolnosci-20160822t074530822z", - "post_id": 703225, + "post_id": 931240, "promoted": "0.000 HBD", "replies": [], "root_title": "Nasienie Wolno\u015bci", @@ -30,4 +30,4 @@ "total_payout_value": "0.000 HBD", "url": "/polska/@simgregg/nasienie-wolnosci#@lukmarcus/re-simgregg-nasienie-wolnosci-20160822t074530822z" } -] +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json index 88a2e3f4..bb4469e2 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json @@ -1069,7 +1069,7 @@ "created": "2016-09-15T18:18:00", "curator_payout_value": "0.000 HBD", "depth": 0, - "json_metadata": "{\"tags\":[\"steem\",\"poloniex\",\"bittrex\",\"technical-analysis\",\"trading\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/qPHEc\\/3b0d8913ce.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmGz\\/0764821325.png\",\"http:\\/\\/puu.sh\\/rciwF\\/1b96b56dcc.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmLb\\/755ca91186.png\",\"http:\\/\\/puu.sh\\/rciC9\\/edf3dcb758.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmDb\\/7461d3602b.png\",\"http:\\/\\/puu.sh\\/rciod\\/ce32f1a029.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmuE\\/227aa902ca.png\",\"http:\\/\\/puu.sh\\/rcifG\\/0c61511ea3.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmwv\\/fd2112e3ab.png\",\"http:\\/\\/puu.sh\\/rcicN\\/b2384086a4.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmry\\/db13b3282f.png\",\"http:\\/\\/puu.sh\\/rcibB\\/7b2700dd82.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/puu.sh\\/rbmlb\\/aca50530d5.png\",\"http:\\/\\/puu.sh\\/rci8K\\/d68b7eb122.png\",\"https:\\/\\/img.youtube.com\\/vi\\/i3bS5nRZOvU\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=i3bS5nRZOvU\"]}", + "json_metadata": "{\"tags\":[\"steem\",\"poloniex\",\"bittrex\",\"technical-analysis\",\"trading\"],\"image\":[\"https://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png\",\"http://puu.sh/rciwF/1b96b56dcc.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png\",\"http://puu.sh/rciC9/edf3dcb758.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png\",\"http://puu.sh/rciod/ce32f1a029.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png\",\"http://puu.sh/rcifG/0c61511ea3.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png\",\"http://puu.sh/rcicN/b2384086a4.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png\",\"http://puu.sh/rcibB/7b2700dd82.png\",\"https://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png\",\"http://puu.sh/rci8K/d68b7eb122.png\",\"https://img.youtube.com/vi/i3bS5nRZOvU/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=i3bS5nRZOvU\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-15T18:18:00", "max_accepted_payout": "1000000.000 HBD", diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json index 9a0dea7c..19ebc0d2 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json @@ -2569,7 +2569,7 @@ "created": "2016-09-07T15:44:51", "curator_payout_value": "0.000 HBD", "depth": 0, - "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https:\\/\\/www.biznessapps.com\\/blog\\/wp-content\\/uploads\\/2013\\/12\\/shutterstock_148639682.png\"]}", + "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-07T15:50:51", "max_accepted_payout": "1000000.000 HBD", diff --git a/hivemind/tavern/condenser_api_patterns/get_state.pat.json b/hivemind/tavern/condenser_api_patterns/get_state.pat.json index cd13e02c..a298d1a1 100644 --- a/hivemind/tavern/condenser_api_patterns/get_state.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_state.pat.json @@ -1,231 +1,679 @@ { "accounts": { "steemit": { - "active": { - "account_auths": [], - "key_auths": [ - [ - "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", - 1 - ] - ], - "weight_threshold": 1 - }, - "balance": "4778859.891 HIVE", - "can_vote": true, - "comment_count": 0, - "created": "2016-03-24T17:00:21", - "curation_rewards": 0, - "delegated_vesting_shares": "0.000000 VESTS", - "downvote_manabar": { - "current_mana": 0, - "last_update_time": 1458838821 - }, - "guest_bloggers": [], - "id": 28, - "json_metadata": "", - "last_account_recovery": "1970-01-01T00:00:00", - "last_account_update": "2016-07-15T13:56:18", - "last_owner_update": "2016-07-15T13:56:18", - "last_post": "2016-03-30T18:30:18", - "last_root_post": "2016-03-30T18:30:18", - "last_vote_time": "1970-01-01T00:00:00", - "lifetime_vote_count": 0, - "market_history": [], - "memo_key": "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", - "mined": true, + "blog": [ + "steemit/firstpost" + ], + "comments": [], + "created": "2016-03-24 17:00:21", + "feed": [], + "json_metadata": "{\"profile\":{\"name\":null,\"about\":null,\"website\":null,\"location\":null,\"cover_image\":\"\",\"profile_image\":\"\"}}", "name": "steemit", - "next_vesting_withdrawal": "2016-09-19T00:37:21", - "other_history": [], - "owner": { - "account_auths": [], - "key_auths": [ - [ - "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", - 1 - ] - ], - "weight_threshold": 1 - }, - "pending_claimed_accounts": 0, - "post_bandwidth": 0, - "post_count": 1, - "post_history": [], - "posting": { - "account_auths": [], - "key_auths": [ - [ - "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", - 1 - ] - ], - "weight_threshold": 1 - }, - "posting_json_metadata": "", - "posting_rewards": 3548, - "proxied_vsf_votes": [ - "23077504682", - 0, - 0, - 0 + "net_vesting_shares": 0.0, + "post_count": 0, + "recent_replies": [], + "reputation": 0, + "transfer_history": [] + } + }, + "content": { + "steemit/firstpost": { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } ], - "proxy": "", - "received_vesting_shares": "0.000000 VESTS", - "recovery_account": "steem", - "reputation": "12944616889", - "reset_account": "null", - "reward_sbd_balance": "0.000 HBD", - "reward_steem_balance": "0.000 HIVE", - "reward_vesting_balance": "0.000000 VESTS", - "reward_vesting_steem": "0.000 HIVE", - "savings_balance": "0.000 HIVE", - "savings_sbd_balance": "0.000 HBD", - "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", - "savings_sbd_seconds": "0", - "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", - "savings_withdraw_requests": 0, - "sbd_balance": "70337.438 HBD", - "sbd_last_interest_payment": "2016-09-12T19:16:48", - "sbd_seconds": "8923940509188", - "sbd_seconds_last_update": "2016-09-14T11:25:21", - "tags_usage": [], - "to_withdraw": "257910734535923078", - "transfer_history": [], - "vesting_balance": "0.000 HIVE", - "vesting_shares": "225671901920.188893 VESTS", - "vesting_withdraw_rate": "2479910908.999260 VESTS", - "vote_history": [], - "voting_manabar": { - "current_mana": 10000, - "last_update_time": 1458838821 - }, - "voting_power": 10000, - "withdraw_routes": 0, - "withdrawn": "32238841816990380", - "witness_votes": [], - "witnesses_voted_for": 0 + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" } }, - "content": {}, - "current_route": "/@steemit", - "discussion_idx": {}, - "error": "", + "discussion_idx": { + "": {} + }, "feed_price": { "base": "0.637 HBD", "quote": "1.000 HIVE" }, "props": { - "available_account_subsidies": 157691079, - "confidential_sbd_supply": "0.000 HBD", - "confidential_supply": "0.000 HIVE", - "content_reward_percent": 7500, - "current_aslot": 5044547, - "current_sbd_supply": "2413759.427 HBD", - "current_supply": "157464400.971 HIVE", - "current_witness": "ihashfury", - "delegation_return_period": 604800, - "downvote_pool_percent": 0, - "head_block_id": "004c4b40245ffb07380a393fb2b3d841b76cdaec", + "hbd_interest_rate": 1000, + "hbd_print_rate": 10000, "head_block_number": 5000000, - "init_sbd_supply": "0.000 HBD", - "last_budget_time": "2016-03-24T16:00:00", "last_irreversible_block_num": 4999980, - "maximum_block_size": 65536, - "next_maintenance_time": "2016-03-24T16:00:00", - "num_pow_witnesses": 97, - "participation_count": 121, - "pending_rewarded_vesting_shares": "0.000000 VESTS", - "pending_rewarded_vesting_steem": "0.000 HIVE", - "recent_slots_filled": "255209179042255236190010672587206549503", - "required_actions_partition_percent": 0, - "reverse_auction_seconds": 1800, - "sbd_interest_rate": 1000, - "sbd_print_rate": 10000, - "sbd_start_percent": 200, - "sbd_stop_percent": 500, - "sps_fund_percent": 0, - "sps_interval_ledger": "0.000 HBD", "time": "2016-09-15T19:47:21", - "total_pow": 238139, - "total_reward_fund_steem": "66003.975 HIVE", - "total_reward_shares2": "763454540462239354401757185454", - "total_vesting_fund_steem": "149190428.013 HIVE", - "total_vesting_shares": "448144916705.468383 VESTS", - "vesting_reward_percent": 1500, - "virtual_supply": "161253662.237 HIVE", - "vote_power_reserve_rate": 40 + "total_vesting_fund_hive": "149190428.013 HIVE", + "total_vesting_shares": "448144916705.468384 VESTS" }, "tag_idx": { "trending": [] }, - "tags": {}, - "witness_schedule": { - "account_subsidy_rd": { - "budget_per_time_unit": 797, - "decay_params": { - "decay_per_time_unit": 347321, - "decay_per_time_unit_denom_shift": 36 - }, - "max_pool_size": 157691079, - "min_decay": 0, - "pool_eq": 157691079, - "resource_unit": 10000 - }, - "account_subsidy_witness_rd": { - "budget_per_time_unit": 996, - "decay_params": { - "decay_per_time_unit": 7293741, - "decay_per_time_unit_denom_shift": 36 - }, - "max_pool_size": 9384019, - "min_decay": 896, - "pool_eq": 9384019, - "resource_unit": 10000 - }, - "current_shuffled_witnesses": [ - "rabbit-70", - "kushed", - "delegate.lafona", - "wackou", - "complexring", - "jesta", - "xeldal", - "riverhead", - "clayop", - "steemed", - "smooth.witness", - "ihashfury", - "joseph", - "datasecuritynode", - "boatymcboatface", - "steemychicken1", - "roadscape", - "pharesim", - "abit", - "blocktrades", - "arhag" - ], - "current_virtual_time": "109365512737828348123165341", - "elected_weight": 1, - "hardfork_required_witnesses": 17, - "id": 0, - "majority_version": "0.13.0", - "max_miner_witnesses": 1, - "max_runner_witnesses": 1, - "max_voted_witnesses": 19, - "median_props": { - "account_creation_fee": "9.000 HIVE", - "account_subsidy_budget": 797, - "account_subsidy_decay": 347321, - "maximum_block_size": 65536, - "sbd_interest_rate": 1000 - }, - "min_witness_account_subsidy_decay": 0, - "miner_weight": 1, - "next_shuffle_block_num": 5000016, - "num_scheduled_witnesses": 21, - "timeshare_weight": 5, - "witness_pay_normalization_factor": 25 - }, - "witnesses": {} -} + "tags": {} +} \ No newline at end of file -- GitLab From 0e5fc0bf5615cdc1f653795fb6e7aca5e7f3fcc6 Mon Sep 17 00:00:00 2001 From: Pawel Maniora Date: Mon, 24 Aug 2020 15:06:56 +0200 Subject: [PATCH 35/49] save error to pattern files, remove unnecesary diff generation --- .../get_payout_stats_over_limit.pat.json | 5 + .../get_ranked_posts_invalid_sort.pat.json | 5 + .../get_trending_topics_over_limit.pat.json | 5 + .../get_account_votes_deprecated.pat.json | 5 + .../get_blog_invalid_account_char.pat.json | 5 + .../get_blog_invalid_limit.pat.json | 5 + .../get_blog_non_existing.pat.json | 5 + .../get_blog_over_limit.pat.json | 5 + .../get_blog_too_long_account_name.pat.json | 5 + ..._discussions_by_payout_over_limit.pat.json | 5 + .../get_content_deleted.pat.json | 5 + ..._by_author_before_date_over_limit.pat.json | 5 + ...ns_by_comments_unexpected_keyword.pat.json | 5 + .../get_followers_over_limit.pat.json | 5 + ...ollowers_trending_tags_over_limit.pat.json | 5 + .../get_followers_wrong_type.pat.json | 5 + .../get_following_over_limit.pat.json | 5 + .../get_following_wrong_type.pat.json | 5 + ..._discussions_by_payout_over_limit.pat.json | 5 + ...by_last_update_blank_start_author.pat.json | 5 + ..._last_update_invalid_account_name.pat.json | 5 + ...replies_by_last_update_over_limit.pat.json | 5 + .../test_bridge_api_patterns.tavern.yaml | 19 ++- .../test_condenser_api_patterns.tavern.yaml | 152 ++++++++++-------- hivemind/tavern/validate_response.py | 22 +-- 25 files changed, 212 insertions(+), 91 deletions(-) create mode 100644 hivemind/tavern/bridge_api_patterns/get_payout_stats_over_limit.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_invalid_sort.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_trending_topics_over_limit.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_account_votes_deprecated.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog_invalid_account_char.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog_invalid_limit.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog_non_existing.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog_over_limit.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog_too_long_account_name.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_over_limit.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_content_deleted.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_over_limit.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_discussions_by_comments_unexpected_keyword.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_followers_over_limit.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_followers_trending_tags_over_limit.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_followers_wrong_type.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_following_over_limit.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_following_wrong_type.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_over_limit.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_blank_start_author.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_invalid_account_name.pat.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_over_limit.pat.json diff --git a/hivemind/tavern/bridge_api_patterns/get_payout_stats_over_limit.pat.json b/hivemind/tavern/bridge_api_patterns/get_payout_stats_over_limit.pat.json new file mode 100644 index 00000000..4c29a759 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_payout_stats_over_limit.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (251 > 250)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_invalid_sort.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_invalid_sort.pat.json new file mode 100644 index 00000000..bacaf336 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_invalid_sort.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid sort", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns/get_trending_topics_over_limit.pat.json b/hivemind/tavern/bridge_api_patterns/get_trending_topics_over_limit.pat.json new file mode 100644 index 00000000..14ea4517 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_trending_topics_over_limit.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (26 > 25)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_account_votes_deprecated.pat.json b/hivemind/tavern/condenser_api_patterns/get_account_votes_deprecated.pat.json new file mode 100644 index 00000000..d13e4fb8 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_account_votes_deprecated.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32000, + "data": "ApiError: get_account_votes is no longer supported, for details see https://steemit.com/steemit/@steemitdev/additional-public-api-change", + "message": "Server error" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_invalid_account_char.pat.json b/hivemind/tavern/condenser_api_patterns/get_blog_invalid_account_char.pat.json new file mode 100644 index 00000000..26fdde36 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog_invalid_account_char.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid account char", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_invalid_limit.pat.json b/hivemind/tavern/condenser_api_patterns/get_blog_invalid_limit.pat.json new file mode 100644 index 00000000..a88114e6 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog_invalid_limit.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "start_index and limit combination is invalid (11, 20)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_non_existing.pat.json b/hivemind/tavern/condenser_api_patterns/get_blog_non_existing.pat.json new file mode 100644 index 00000000..fa835a58 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog_non_existing.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "account not found: `non.existing`", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_over_limit.pat.json b/hivemind/tavern/condenser_api_patterns/get_blog_over_limit.pat.json new file mode 100644 index 00000000..eefb0b1f --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog_over_limit.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (501 > 500)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_too_long_account_name.pat.json b/hivemind/tavern/condenser_api_patterns/get_blog_too_long_account_name.pat.json new file mode 100644 index 00000000..7ab16f7f --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog_too_long_account_name.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid account name length: `too.long.account.name`", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_over_limit.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_over_limit.pat.json new file mode 100644 index 00000000..6e08b595 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_over_limit.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (101 > 100)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_content_deleted.pat.json b/hivemind/tavern/condenser_api_patterns/get_content_deleted.pat.json new file mode 100644 index 00000000..893d1049 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_content_deleted.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32000, + "data": "IndexError: list index out of range", + "message": "Server error" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_over_limit.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_over_limit.pat.json new file mode 100644 index 00000000..6e08b595 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_over_limit.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (101 > 100)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments_unexpected_keyword.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments_unexpected_keyword.pat.json new file mode 100644 index 00000000..1aa7cad3 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments_unexpected_keyword.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "get_discussions_by_comments() got an unexpected keyword argument 'author'", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_followers_over_limit.pat.json b/hivemind/tavern/condenser_api_patterns/get_followers_over_limit.pat.json new file mode 100644 index 00000000..a1e4ecd9 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_followers_over_limit.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (1001 > 1000)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_followers_trending_tags_over_limit.pat.json b/hivemind/tavern/condenser_api_patterns/get_followers_trending_tags_over_limit.pat.json new file mode 100644 index 00000000..4c29a759 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_followers_trending_tags_over_limit.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (251 > 250)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_followers_wrong_type.pat.json b/hivemind/tavern/condenser_api_patterns/get_followers_wrong_type.pat.json new file mode 100644 index 00000000..ea321df0 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_followers_wrong_type.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid follow_type `wrong_type`", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_following_over_limit.pat.json b/hivemind/tavern/condenser_api_patterns/get_following_over_limit.pat.json new file mode 100644 index 00000000..a1e4ecd9 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_following_over_limit.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (1001 > 1000)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_following_wrong_type.pat.json b/hivemind/tavern/condenser_api_patterns/get_following_wrong_type.pat.json new file mode 100644 index 00000000..ea321df0 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_following_wrong_type.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid follow_type `wrong_type`", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_over_limit.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_over_limit.pat.json new file mode 100644 index 00000000..6e08b595 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_over_limit.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (101 > 100)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_blank_start_author.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_blank_start_author.pat.json new file mode 100644 index 00000000..0e5dbcbf --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_blank_start_author.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "`start_author` cannot be blank", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_invalid_account_name.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_invalid_account_name.pat.json new file mode 100644 index 00000000..c1734e8e --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_invalid_account_name.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid account name length: `a`", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_over_limit.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_over_limit.pat.json new file mode 100644 index 00000000..6e08b595 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_over_limit.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (101 > 100)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index c4f77385..c2df2c90 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -454,9 +454,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "invalid sort" + method: "get_ranked_posts_invalid_sort" + directory: "bridge_api_patterns" + error_response: true --- test_name: Hivemind bridge_api.get_ranked_posts hot patterns test @@ -851,9 +853,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "limit exceeds max (26 > 25)" + method: "get_trending_topics_over_limit" + directory: "bridge_api_patterns" + error_response: true --- test_name: Hivemind bridge_api.post_notifications patterns test @@ -1000,9 +1004,12 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "limit exceeds max (251 > 250)" + method: "get_payout_stats_over_limit" + directory: "bridge_api_patterns" + error_response: true + --- test_name: Hivemind bridge_api.get_community patterns test # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index 3dd2f2e0..aac89e04 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -137,9 +137,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "limit exceeds max (1001 > 1000)" + method: "get_followers_over_limit" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_followers wrong_type patterns test @@ -164,9 +166,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "invalid follow_type `wrong_type`" + method: "get_followers_wrong_type" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_following patterns test @@ -306,9 +310,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "invalid follow_type `wrong_type`" + method: "get_following_wrong_type" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_following over limit test @@ -333,9 +339,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "limit exceeds max (1001 > 1000)" + method: "get_following_over_limit" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_follow_count patterns test @@ -501,9 +509,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "IndexError: list index out of range" + method: "get_content_deleted" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_content_replies patterns test @@ -646,9 +656,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "limit exceeds max (251 > 250)" + method: "get_followers_trending_tags_over_limit" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_discussions_by_trending patterns test @@ -882,9 +894,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "get_discussions_by_comments() got an unexpected keyword argument 'author'" + method: "get_discussions_by_comments_unexpected_keyword" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_replies_by_last_update patterns test @@ -971,7 +985,7 @@ method: "get_replies_by_last_update_no_results" directory: "condenser_api_patterns" --- - test_name: Hivemind condenser_api.get_replies_by_last_update exceeds limit patterns test + test_name: Hivemind condenser_api.get_replies_by_last_update over limit patterns test marks: - patterntest @@ -980,7 +994,7 @@ - !include common.yaml stages: - - name: get_replies_by_last_update exceeds limit + - name: get_replies_by_last_update over limit request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -994,9 +1008,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "limit exceeds max (101 > 100)" + method: "get_replies_by_last_update_over_limit" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_replies_by_last_update blank start author patterns test @@ -1021,9 +1037,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "`start_author` cannot be blank" + method: "get_replies_by_last_update_blank_start_author" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_replies_by_last_update invalid account name length patterns test @@ -1049,9 +1067,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "invalid account name length: `a`" + method: "get_replies_by_last_update_invalid_account_name" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_discussions_by_author_before_date patterns test @@ -1135,9 +1155,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "limit exceeds max (101 > 100)" + method: "get_discussions_by_author_before_date_over_limit" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_post_discussions_by_payout patterns test @@ -1248,9 +1270,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "limit exceeds max (101 > 100)" + method: "get_post_discussions_by_payout_over_limit" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_comment_discussions_by_payout patterns test @@ -1361,9 +1385,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "limit exceeds max (101 > 100)" + method: "get_comment_discussions_by_payout_over_limit" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_blog patterns test @@ -1418,9 +1444,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "start_index and limit combination is invalid (11, 20)" + method: "get_blog_invalid_limit" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_blog limit 100 patterns test @@ -1481,7 +1509,7 @@ method: "get_blog_no_results" directory: "condenser_api_patterns" --- - test_name: Hivemind condenser_api.get_blog limit exceed test + test_name: Hivemind condenser_api.get_blog over limit test marks: - patterntest @@ -1490,7 +1518,7 @@ - !include common.yaml stages: - - name: get_blog limit exceed + - name: get_blog over limit request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -1504,9 +1532,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "limit exceeds max (501 > 500)" + method: "get_blog_over_limit" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_blog non existing account test @@ -1531,36 +1561,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data - extra_kwargs: - data: "account not found: `non.existing`" ---- - test_name: Hivemind condenser_api.get_blog too long account name test - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_blog too long account name - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "condenser_api.get_blog" - params: {"account":"too.long.account.name","start_entry_id":0,"limit":1} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "invalid account name length: `too.long.account.name`" + method: "get_blog_non_existing" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_blog too long account name test @@ -1585,9 +1590,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "invalid account name length: `too.long.account.name`" + method: "get_blog_too_long_account_name" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_blog invalid account test @@ -1612,9 +1619,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "invalid account char" + method: "get_blog_invalid_account_char" + directory: "condenser_api_patterns" + error_response: true --- test_name: Hivemind condenser_api.get_blog_entries patterns test @@ -1743,7 +1752,7 @@ - !include common.yaml stages: - - name: get_account_votes + - name: get_account_votes deprecated request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -1757,10 +1766,11 @@ response: status_code: 200 verify_response_with: - function: validate_response:compare_error_data + function: validate_response:compare_response_with_pattern extra_kwargs: - data: "ApiError: get_account_votes is no longer supported, for details see https://steemit.com/steemit/@steemitdev/additional-public-api-change" - + method: "get_account_votes_deprecated" + directory: "condenser_api_patterns" + error_response: true --- # get_accounts should be based on fat node - posting_rewards and reputations are 0 on AH node test_name: Hivemind condenser_api.get_accounts with single account patterns test diff --git a/hivemind/tavern/validate_response.py b/hivemind/tavern/validate_response.py index 30f9d48d..6bd3c2e8 100644 --- a/hivemind/tavern/validate_response.py +++ b/hivemind/tavern/validate_response.py @@ -5,12 +5,6 @@ def json_pretty_string(json_obj): from json import dumps return dumps(json_obj, sort_keys=True, indent=2) -def save_diff(name, diff): - """ Save diff to a file """ - with open(name, 'w') as f: - f.write(json_pretty_string(diff)) - f.write("\n") - def save_response(file_name, response_json): """ Save response to file """ with open(file_name, 'w') as f: @@ -24,7 +18,6 @@ def save_no_response(file_name, msg): RESPONSE_FILE_EXT = ".out.json" PATTERN_FILE_EXT = ".pat.json" -DIFF_FILE_EXT = ".diff.json" def load_pattern(name): """ Loads pattern from json file to python object """ from json import load @@ -40,13 +33,10 @@ def remove_tag(data, tags_to_remove): return [remove_tag(v, tags_to_remove) for v in data] return {k: remove_tag(v, tags_to_remove) for k, v in data.items() if k not in tags_to_remove} -def compare_response_with_pattern(response, method=None, directory=None, ignore_tags=None): +def compare_response_with_pattern(response, method=None, directory=None, ignore_tags=None, error_response=False): """ This method will compare response with pattern file """ import os - fname = directory + "/" + method + DIFF_FILE_EXT response_fname = directory + "/" + method + RESPONSE_FILE_EXT - if os.path.exists(fname): - os.remove(fname) if os.path.exists(response_fname): os.remove(response_fname) @@ -56,7 +46,10 @@ def compare_response_with_pattern(response, method=None, directory=None, ignore_ response_json = remove_tag(response_json, ignore_tags) error = response_json.get("error", None) result = response_json.get("result", None) - if error is not None: + if error_response: + result = error + + if error is not None and not error_response: msg = "Error detected in response: {}".format(error["message"]) save_no_response(response_fname, msg) raise PatternDiffException(msg) @@ -72,16 +65,17 @@ def compare_response_with_pattern(response, method=None, directory=None, ignore_ pattern_resp_diff = deepdiff.DeepDiff(pattern, result) if pattern_resp_diff: save_response(response_fname, result) - save_diff(fname, pattern_resp_diff) - msg = "Differences detected between response and pattern. Diff saved to {}\n\nDiff:\n{}".format(fname, pattern_resp_diff) + msg = "Differences detected between response and pattern." raise PatternDiffException(msg) +# deprecated - replace by compare_response_with_pattern with error_response=True def compare_error_data(response, data): response_json = response.json() error = response_json.get("error", None) if error['data'] != data: raise PatternDiffException('error data not equal, expected: "' + data + '" given: "' + error['data'] + '"') +# deprecated - replace by compare_response_with_pattern with error_response=True def compare_error_message(response, message): response_json = response.json() error = response_json.get("error", None) -- GitLab From a3216290630c60fd6cc7fa132ca8c03486fbfe09 Mon Sep 17 00:00:00 2001 From: ABW Date: Mon, 24 Aug 2020 20:15:07 +0200 Subject: [PATCH 36/49] [ABW]: Patterns for list_comments with by_cashout_time created with find_comments because cashout_time is completely different in new version Patterns for list_comments with by_author_last_update created with find_comments because fat node was incorrectly using by_last_update index Accepted differences in now comparable patterns: id, max_cashout_time (always timestamp::max), children_abs_rshares (always 0), reward_weight (always 10000), numeric instead of string, cashout_time (creation+7), last_payout when not final and no reward, rshares/weight related after nonfinal payout, net_rshares after final payout (always 0 where previously negative persisted), empty json_metadata as dictionary Updated comments for database_api tests --- .../list_comments.pat.json | 4 +- ...ts_author_last_update_author_date.pat.json | 988 +++++++++--------- ...thor_last_update_corr_author_date.pat.json | 988 +++++++++--------- ...ments_author_last_update_corr_dap.pat.json | 988 +++++++++--------- ...ents_author_last_update_corr_date.pat.json | 988 +++++++++--------- ...st_comments_by_cashout_first_date.pat.json | 988 +++++++++--------- ...comments_by_cashout_time_all_data.pat.json | 10 +- ...ments_by_cashout_time_future_data.pat.json | 34 +- ...t_comments_by_cashout_time_second.pat.json | 988 +++++++++--------- ...mments_by_last_update_future_date.pat.json | 114 +- ...st_comments_last_update_good_date.pat.json | 96 +- .../list_comments_parent_no_data.pat.json | 30 +- ...ist_comments_parent_parent_author.pat.json | 8 +- .../list_comments_permlink.pat.json | 12 +- ...ist_comments_permlink_good_params.pat.json | 22 +- ...t_comments_permlink_good_permlink.pat.json | 12 +- ...omments_permlink_permlink_no_data.pat.json | 12 +- .../list_comments_root_no_data.pat.json | 2 +- ...ist_comments_root_required_values.pat.json | 2 +- ...nts_root_required_values_comments.pat.json | 2 +- .../test_database_api_patterns.tavern.yaml | 50 +- 21 files changed, 3169 insertions(+), 3169 deletions(-) diff --git a/hivemind/tavern/database_api_patterns/list_comments.pat.json b/hivemind/tavern/database_api_patterns/list_comments.pat.json index 3f200118..e7fd3b0a 100644 --- a/hivemind/tavern/database_api_patterns/list_comments.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments.pat.json @@ -80,7 +80,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -401748374094, + "net_rshares": 0, "net_votes": -1, "parent_author": "", "parent_permlink": "steemit", @@ -129,7 +129,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -75903272807, + "net_rshares": 0, "net_votes": 0, "parent_author": "", "parent_permlink": "steemit", diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json index b727bca5..90c535ca 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "abs_rshares": 0, - "active": "2016-09-14T19:13:51", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "allgoodthings", - "author_rewards": 0, - "beneficiaries": [], - "body": "Congrats to you all! I am new to Steemit and excited to partake in the next challenge. I truly enjoying preparing food!", - "cashout_time": "1969-12-31T23:59:59", - "category": "foodchallenge", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-09-14T19:13:51", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 951782, - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "1970-01-01T00:00:00", - "last_update": "2016-09-14T19:13:51", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160914t191355279z", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-09-13T21:42:36", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "haphazard-hstead", - "author_rewards": 0, - "beneficiaries": [], - "body": "Nice to hear that you are feeling a lot better, @givemeyoursteem! I'm glad I checked the foodchallenge group on the Steemit chat. Congratulations, everyone! I think all the response just shows how people really connected with the food challenge. I'm looking forward to the next one!", - "cashout_time": "1969-12-31T23:59:59", - "category": "foodchallenge", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-09-13T21:42:36", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 944322, - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", - "last_payout": "1970-01-01T00:00:00", - "last_update": "2016-09-13T21:42:36", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160913t214242068z", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": "12919640292", - "active": "2016-09-12T09:54:03", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "englishtchrivy", - "author_rewards": 0, - "beneficiaries": [], - "body": "@knozaki2015 thank you for the 25 SBD and the congrats memo. I appreciate it a great lot! You made me 25SBD richer!\nThanks to everyone who joined this challenge! This was the most fun food challenge I've ever joined- thanks to all the very encouraging co - challengers who participated!\n Congratulations @meesterboom for bagging the 1st prize! Hoot - hoot! Men power!\n\n@givemeyoursteem Thank you for announcing it. I HOPE YOU GO ON WITH WHAT YOU ARE DOING. YOU HAVE BEEN AN INSPIRATION TO MANY MINNOWS WHO ARE JOINING THE FOOD CHALLENGE. IF THE OTHER MINNOWS DON'T SEE THAT YOU ARE DOING THIS TO ACTUALLY SUPPORT US THEN FOR SURE NOT HAVING A FOOD CHALLENGE FOR A WEEK WOULD SURELY TEACH THEM A LESSON. I HOPE YOU SCROLLED DOWN TO THIS POST'S COMMENT THREAD AND DID NOT JUST READ YOUR REPLY FOLDER https://steemit.com/foodchallenge/@givemeyoursteem/steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money\n\nIT'S TRUE SOME MINNOWS HAVE WRITTEN MESSAGES SOME OTHER MINNOWS WHO PARTICIPATED CAN'T GET A GRIP OF , I GUESS THAT'S THE RESULT OF COMMUNICATING ON WRITTEN TEXTS.\nIT'S NOT ACCEPTABLE TO CALL YOU A SCAM BECAUSE YOU HAVE DELIVERED THE RESULTS OF THE 1ST 3 FOOD CHALLENGES ON TIME. WHOEVER HAS CALLED YOU THAT SHOULD APOLOGIZE HERE - OR MAYBE IN AN ARTICLE.\nPLEASE GO ON MAYBE ITS JUST ONE MINNOW WHO CALLED YOU THAT? THE OTHERS WHO PARTICIPATED HERE, INCLUDING MYSELF APPRECIATE WHAT YOU DO A GREAT LOT.\n@givemeyoursteem YOU'RE A HERO AND AN INSPIRATION HERE IN STEEMIT! YOU HAVE HELPED MANY MINNOWS GET NOTICED!\nYOU KNOW YOURSELF BETTER THAN ANYONE ELSE SO WHATEVER NASTY THINGS PEOPLE MAY CALL YOU OR THROW YOU HERE - DON'T GIVE A DAMN ON THAT! I HOPE YOU GO ON! \nTake care and I hope you get to recuperate soon. Best regards from this side of the earth <3", - "cashout_time": "1969-12-31T23:59:59", - "category": "foodchallenge", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-09-12T09:25:45", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 929311, - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"knozaki2015\",\"meesterboom\",\"givemeyoursteem\"],\"links\":[\"https://steemit.com/foodchallenge/@givemeyoursteem/steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money\"]}", - "last_payout": "2016-09-12T17:37:48", - "last_update": "2016-09-12T09:54:03", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": "12919640292", - "net_votes": 1, - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160912t092547152z", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": "12919640292" - }, - { - "abs_rshares": "12919640292", - "active": "2016-09-11T20:57:36", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "oumar", - "author_rewards": 0, - "beneficiaries": [], - "body": "Cool! I won 2th place!! Thanks @givemeyoursteem and thanks to all the sponsors!\n\nPlease don't listen to the people criticizing we deeply appreciate your effort on organizing this! Some of us just were anxious to know the results hehe but that is no reason to say bad things. Thanks again for making this possible and I hope there are more challenges soon! Also I hope you are already feeling better.", - "cashout_time": "1969-12-31T23:59:59", - "category": "foodchallenge", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-09-11T20:54:45", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 925249, - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", - "last_payout": "2016-09-12T17:37:48", - "last_update": "2016-09-11T20:57:36", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": "12919640292", - "net_votes": 1, - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t205445094z", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": "12919640292" - }, - { - "abs_rshares": "12919640292", - "active": "2016-09-14T06:01:06", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "vi1son", - "author_rewards": 0, - "beneficiaries": [], - "body": "Do not listen to what say the FUDers and haters. Be strong @givemeyoursteem! We all with you!", - "cashout_time": "1969-12-31T23:59:59", - "category": "foodchallenge", - "children": 1, - "children_abs_rshares": 0, - "created": "2016-09-11T18:57:45", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 924238, - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"givemeyoursteem\"]}", - "last_payout": "2016-09-12T17:37:48", - "last_update": "2016-09-11T18:57:45", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": "12919640292", - "net_votes": 1, - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t185742671z", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": "12919640292" - }, - { - "abs_rshares": 0, - "active": "2016-09-11T14:52:42", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "papa-pepper", - "author_rewards": 0, - "beneficiaries": [], - "body": "## Excellent choices and excellent dishes.\n# Congrats @meesterboom and the rest of the winners!", - "cashout_time": "1969-12-31T23:59:59", - "category": "foodchallenge", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-09-11T14:52:42", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 922314, - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"meesterboom\"]}", - "last_payout": "2016-09-12T17:37:48", - "last_update": "2016-09-11T14:52:42", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t145241389z", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-09-11T14:30:39", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "alitas", - "author_rewards": 0, - "beneficiaries": [], - "body": "Congratulations to the winners !\n\n\u2022\u2665\u2022\u2606 @alitas \u2022\u2606\u2022\u2665\u2022", - "cashout_time": "1969-12-31T23:59:59", - "category": "foodchallenge", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-09-11T14:30:39", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 922188, - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"alitas\"]}", - "last_payout": "2016-09-12T17:37:48", - "last_update": "2016-09-11T14:30:39", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t143031067z", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-09-11T14:01:00", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "gringalicious", - "author_rewards": 0, - "beneficiaries": [], - "body": "Thank you again for hosting the Challenge and I very much appreciate being the wild pick. Looking forward to the next challenge!", - "cashout_time": "1969-12-31T23:59:59", - "category": "foodchallenge", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-09-11T14:01:00", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 922015, - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "2016-09-12T17:37:48", - "last_update": "2016-09-11T14:01:00", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t140113934z", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-09-11T13:20:33", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "celebr1ty", - "author_rewards": 0, - "beneficiaries": [], - "body": "Thanks a lot!", - "cashout_time": "1969-12-31T23:59:59", - "category": "foodchallenge", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-09-11T13:20:33", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 921769, - "json_metadata": "{\"tags\":[\"foodchallenge\"]}", - "last_payout": "2016-09-12T17:37:48", - "last_update": "2016-09-11T13:20:33", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t132117882z", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-09-11T13:14:27", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "bullionstackers", - "author_rewards": 0, - "beneficiaries": [], - "body": "Good stuffs \nI know the pork goes Bang Bang at @meesterboom\n\ud83d\udc4d\nCongratulations to all winners \ud83d\udc4d\u2764\ufe0f\nSweet \u2764\ufe0f\nKeep on Steeming \u2705\ud83d\udc4d\u2764\ufe0f\nGotta Love it to be in it", - "cashout_time": "1969-12-31T23:59:59", - "category": "foodchallenge", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-09-11T13:14:27", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 921750, - "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"meesterboom\"]}", - "last_payout": "2016-09-12T17:37:48", - "last_update": "2016-09-11T13:14:27", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "givemeyoursteem", - "parent_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t131427021z", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - } - ] -} \ No newline at end of file +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-09-11T12:25:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you so much, it means a lot to me!!", + "cashout_time": "2016-09-18T12:25:48", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T12:25:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1208171, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-11T12:25:48", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "sompitonov", + "parent_permlink": "re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t122212770z", + "percent_hbd": 10000, + "permlink": "re-sompitonov-re-givemeyoursteem-congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes-20160911t122548102z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-11T12:24:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you so much @sompitov @alitas @patelincho and @englishtchrivy , it means a lot to me. Sorry for the delay, I've unfortunaly not been feeling very well but now it's better and the winners are just presented :) https://steemit.com/foodchallenge/@givemeyoursteem/congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "cashout_time": "2016-09-18T12:24:51", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-11T12:24:51", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 5, + "id": 1208161, + "json_metadata": "{\"tags\":[\"foodchallenge\"],\"users\":[\"sompitov\",\"alitas\",\"patelincho\",\"englishtchrivy\"],\"links\":[\"https://steemit.com/foodchallenge/@givemeyoursteem/congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-11T12:24:51", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "sompitonov", + "parent_permlink": "re-englishtchrivy-re-patelincho-re-sompitonov-re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160910t120703483z", + "percent_hbd": 10000, + "permlink": "re-sompitonov-re-englishtchrivy-re-patelincho-re-sompitonov-re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160911t122452026z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 4314987079659, + "active": "2016-09-14T19:13:51", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 2724, + "beneficiaries": [], + "body": "https://img1.steemit.com/0x0/https://i.imgsafe.org/4783bbddd7.jpg\nThanks for your patience, finally we announce the winners of Steemit Food Challenge #4! Great cooking everyone, we have seen a lot of inspiration for fast dinners!\n\n## The delay\n*Just to explain without get into to much details. I've been sick for a week and have not even managed to get out of bed or barely eat, therefore the announcement of this weeks winners got delayed. I should have told you in the steemit.chat earlier, but even that have seemed like a too big obstacle. I think the ones of you that also struggles with mental illness (as I told you a bit about in my [introduction post](https://steemit.com/introduceyourself/@givemeyoursteem/hi-steemians-i-m-moa-and-i-fled-the-rat-race-to-live-on-an-island)) can recognize it. When I opened up my computer I got angry messages, no questions **why** the challenge was delayed, but just people telling me that I'm a scam, that I destroy all challenges on Steemit and so on. We started this competition because we wanted to do something **good** for the community. Right now I just feel sad and don't know what to do, therefore there will not be a Steemit Food Challenge next week.*\n\n## Thanks for the understanding and support, you are the best!\n\n## But now to the better part, let us present the winners...\n\n---\n\n# THE WINNERS of Steemit Food Challenge #4 - Congratulations!\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://i66.tinypic.com/1izp86.jpg\n... @englishtchrivy with her quick [vegetarian dinner!](https://steemit.com/foodchallenge/@englishtchrivy/reposted-for-steemit-food-challenge-4-quick-fix-vegetarian-dinner-entry-1)\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://s018.radikal.ru/i502/1609/ce/21c74cc4fbe6.jpg\n... @celebr1ty with this nice [pita stuffed with chicken!](https://steemit.com/food/@celebr1ty/the-most-delicious-dinner-in-15-minutes-steemit-food-challenge-the-theme-15-minute-meal)\n\n### Sponsored by @btotherest\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s21.postimg.org/bzb4n6ppz/enjoy.jpg\n... @oumar and his [fresh tuna and cranberry cashew salad!](https://steemit.com/food/@oumar/citric-tuna-steak-with-cranberry-cashew-salad-in-just-15-minutes-steemit-food-challenge-4)\n\n### Sponsored by @instructor2121 & @menta\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/http://i.imgur.com/LmluuCA.jpg\nhttps://img1.steemit.com/0x0/http://i.imgur.com/qrRoyxp.jpg\n... @meesterboom and the [Pork Bang Bang curry!](https://steemit.com/recipes/@meesterboom/pork-bang-bang-curry-in-15-minutes-steemit-food-challenge-4)\n\n### Sponsored by @smooth\n---\n\n# Razvanelul's Wild Pick (15 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s19.postimg.org/5dj2fwrjn/DSC_0712.jpg\n... @gringalicious and the [Steemit Pepperoni Pizzadillas!](https://steemit.com/foodchallenge/@gringalicious/15-minute-garden-veggie-pepperoni-pizzadillas-pizza-quesadillas-steemit-food-challenge-4)\n\n### Sponsored by @razvanelulmarin\n---\n\n# Thank you so much everyone!\n// @givemeyoursteem & @healthyfood", + "cashout_time": "2016-09-18T12:16:39", + "category": "foodchallenge", + "children": 16, + "children_abs_rshares": 0, + "created": "2016-09-11T12:16:39", + "curator_payout_value": { + "amount": "617", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1208089, + "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"life\"],\"users\":[\"englishtchrivy\",\"knozaki2015\",\"celebr1ty\",\"btotherest\",\"oumar\",\"instructor2121\",\"menta\",\"meesterboom\",\"smooth\",\"gringalicious\",\"razvanelulmarin\",\"givemeyoursteem\",\"healthyfood\"],\"image\":[\"https://img1.steemit.com/0x0/https://i.imgsafe.org/4783bbddd7.jpg\",\"https://img1.steemit.com/0x0/http://i66.tinypic.com/1izp86.jpg\",\"https://img1.steemit.com/0x0/http://s018.radikal.ru/i502/1609/ce/21c74cc4fbe6.jpg\",\"https://img1.steemit.com/0x0/https://s21.postimg.org/bzb4n6ppz/enjoy.jpg\",\"https://img1.steemit.com/0x0/http://i.imgur.com/LmluuCA.jpg\",\"https://img1.steemit.com/0x0/https://s19.postimg.org/5dj2fwrjn/DSC_0712.jpg\"],\"links\":[\"https://steemit.com/introduceyourself/@givemeyoursteem/hi-steemians-i-m-moa-and-i-fled-the-rat-race-to-live-on-an-island\",\"https://steemit.com/foodchallenge/@englishtchrivy/reposted-for-steemit-food-challenge-4-quick-fix-vegetarian-dinner-entry-1\",\"https://steemit.com/food/@celebr1ty/the-most-delicious-dinner-in-15-minutes-steemit-food-challenge-the-theme-15-minute-meal\",\"https://steemit.com/food/@oumar/citric-tuna-steak-with-cranberry-cashew-salad-in-just-15-minutes-steemit-food-challenge-4\",\"https://steemit.com/recipes/@meesterboom/pork-bang-bang-curry-in-15-minutes-steemit-food-challenge-4\",\"https://steemit.com/foodchallenge/@gringalicious/15-minute-garden-veggie-pepperoni-pizzadillas-pizza-quesadillas-steemit-food-challenge-4\"]}", + "last_payout": "2016-09-12T17:37:48", + "last_update": "2016-09-11T12:16:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 4314987079659, + "net_votes": 34, + "parent_author": "", + "parent_permlink": "foodchallenge", + "percent_hbd": 10000, + "permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "congratulations-winners-of-steemit-food-challenge-4-dinner-in-less-than-15-minutes", + "title": "Congratulations! WINNERS of Steemit Food Challenge #4 - Dinner in less than 15 minutes!", + "total_payout_value": { + "amount": "1952", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 4314987079659 + }, + { + "abs_rshares": 0, + "active": "2016-09-01T07:33:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Glad you like it! Good idea, we'll save it for future challenges :)", + "cashout_time": "2016-09-08T07:33:09", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-01T07:33:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1081501, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-01T07:33:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gardenofeden", + "parent_permlink": "re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160830t200404843z", + "percent_hbd": 10000, + "permlink": "re-gardenofeden-re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160901t073314651z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 1911405581, + "active": "2016-09-01T17:59:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Great! Looking forward to see what you will cook! :)", + "cashout_time": "2016-09-08T07:32:24", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-09-01T07:32:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1081492, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-01T07:32:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 1911405581, + "net_votes": 1, + "parent_author": "alitas", + "parent_permlink": "re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160831t234936192z", + "percent_hbd": 10000, + "permlink": "re-alitas-re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160901t073230717z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 8810592239647083, + "vote_rshares": 1911405581 + }, + { + "abs_rshares": 2232676632, + "active": "2016-09-01T07:31:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Up to three dishes :)", + "cashout_time": "2016-09-08T07:31:57", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-09-01T07:31:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1081489, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-09-01T07:31:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 2232676632, + "net_votes": 1, + "parent_author": "vlad", + "parent_permlink": "re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160831t034835058z", + "percent_hbd": 10000, + "permlink": "re-vlad-re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160901t073202110z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 10290659678615872, + "vote_rshares": 2232676632 + }, + { + "abs_rshares": 0, + "active": "2016-08-30T13:33:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Haha :) Good luck! Looking forward to see what you'll cook!", + "cashout_time": "2016-09-06T12:55:12", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-30T12:55:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1055611, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-30T12:55:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "sompitonov", + "parent_permlink": "re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160830t114636919z", + "percent_hbd": 10000, + "permlink": "re-sompitonov-re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160830t125505207z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-09-03T22:27:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Haha!! :)", + "cashout_time": "2016-09-06T10:20:42", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-30T10:20:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 4, + "id": 1054198, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-30T10:20:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "meesterboom", + "parent_permlink": "re-givemeyoursteem-re-meesterboom-re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160830t101106654z", + "percent_hbd": 10000, + "permlink": "re-meesterboom-re-givemeyoursteem-re-meesterboom-re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160830t102035992z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 10425297047, + "active": "2016-09-03T22:27:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Nice!! Can't wait to see what you are going to cook! :)", + "cashout_time": "2016-09-06T10:05:39", + "category": "foodchallenge", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-30T10:05:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1054062, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-30T10:05:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 10425297047, + "net_votes": 1, + "parent_author": "meesterboom", + "parent_permlink": "re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160830t095827492z", + "percent_hbd": 10000, + "permlink": "re-meesterboom-re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160830t100530955z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 47953215001913832, + "vote_rshares": 10425297047 + }, + { + "abs_rshares": 0, + "active": "2016-09-09T16:11:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Looking forward to it, good luck! :)", + "cashout_time": "2016-09-06T09:56:36", + "category": "foodchallenge", + "children": 3, + "children_abs_rshares": 0, + "created": "2016-08-30T09:56:36", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1053994, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-30T09:56:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "gringalicious", + "parent_permlink": "re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160830t094203759z", + "percent_hbd": 10000, + "permlink": "re-gringalicious-re-givemeyoursteem-steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money-20160830t095632337z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "steemit-food-challenge-4-dinner-in-less-than-15-minutes-225-sbd-in-prize-money", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json index b5b85780..283fe678 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "abs_rshares": 0, - "active": "2016-08-28T16:02:15", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "r4fken", - "author_rewards": 0, - "beneficiaries": [], - "body": "Same here, we invite you to bring cookies to Brussels tho.", - "cashout_time": "1969-12-31T23:59:59", - "category": "steemit", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-28T16:02:15", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 2, - "id": 779033, - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_payout": "2016-08-30T03:35:57", - "last_update": "2016-08-28T16:02:15", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -490754060752, - "net_votes": -7, - "parent_author": "givemeyoursteem", - "parent_permlink": "re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t152858919z", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t160212524z", - "reward_weight": 10000, - "root_author": "allasyummyfood", - "root_permlink": "steemit-cookies-for-the-london-meet-up", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T15:58:42", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "the-future", - "author_rewards": 0, - "beneficiaries": [], - "body": "Sweden is awesome man!", - "cashout_time": "1969-12-31T23:59:59", - "category": "steemitphotochallenge", - "children": 1, - "children_abs_rshares": 0, - "created": "2016-08-28T15:56:12", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 778975, - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", - "last_payout": "2016-08-29T15:16:36", - "last_update": "2016-08-28T15:56:12", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 1, - "parent_author": "givemeyoursteem", - "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t155605821z", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T15:58:09", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "allasyummyfood", - "author_rewards": 0, - "beneficiaries": [], - "body": "stunning pictures!! wow I'm speechless!", - "cashout_time": "1969-12-31T23:59:59", - "category": "steemitphotochallenge", - "children": 1, - "children_abs_rshares": 0, - "created": "2016-08-28T15:45:06", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 778824, - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", - "last_payout": "2016-08-29T15:16:36", - "last_update": "2016-08-28T15:45:06", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 1, - "parent_author": "givemeyoursteem", - "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t154507601z", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T15:41:18", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "allasyummyfood", - "author_rewards": 0, - "beneficiaries": [], - "body": "You will just have to visit us here next time :))", - "cashout_time": "1969-12-31T23:59:59", - "category": "steemit", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-28T15:41:18", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 2, - "id": 778773, - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_payout": "2016-08-30T03:35:57", - "last_update": "2016-08-28T15:41:18", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "givemeyoursteem", - "parent_permlink": "re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t152858919z", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t154119664z", - "reward_weight": 10000, - "root_author": "allasyummyfood", - "root_permlink": "steemit-cookies-for-the-london-meet-up", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T15:39:33", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "meesterboom", - "author_rewards": 0, - "beneficiaries": [], - "body": "Its a pleasure!", - "cashout_time": "1969-12-31T23:59:59", - "category": "recipes", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-28T15:39:33", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 2, - "id": 778749, - "json_metadata": "{\"tags\":[\"recipes\"]}", - "last_payout": "2016-08-29T13:39:57", - "last_update": "2016-08-28T15:39:33", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "givemeyoursteem", - "parent_permlink": "re-meesterboom-hearty-vegetable-soup-easy-and-quick-20160828t152731480z", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-re-meesterboom-hearty-vegetable-soup-easy-and-quick-20160828t153933112z", - "reward_weight": 10000, - "root_author": "meesterboom", - "root_permlink": "hearty-vegetable-soup-easy-and-quick", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T19:08:27", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "givemeyoursteem", - "author_rewards": 0, - "beneficiaries": [], - "body": "I think Swag Sunday is a great idea and agree with @halo , it's a great bonus for us, I'm so thankful! You should also get rewarded :) A \"resteem\" feature seems like a really good idea, hope it become true!", - "cashout_time": "1969-12-31T23:59:59", - "category": "contest", - "children": 1, - "children_abs_rshares": 0, - "created": "2016-08-28T15:19:00", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 2, - "id": 778505, - "json_metadata": "{\"tags\":[\"contest\"],\"users\":[\"halo\"]}", - "last_payout": "2016-08-29T07:30:36", - "last_update": "2016-08-28T15:19:00", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "givemeyoursteem", - "parent_permlink": "re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t150753974z", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t151900275z", - "reward_weight": 10000, - "root_author": "condra", - "root_permlink": "swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T15:22:42", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "meesterboom", - "author_rewards": 0, - "beneficiaries": [], - "body": "That sunset one in particular is stunning.", - "cashout_time": "1969-12-31T23:59:59", - "category": "steemitphotochallenge", - "children": 1, - "children_abs_rshares": 0, - "created": "2016-08-28T15:18:12", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 778494, - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", - "last_payout": "2016-08-29T15:16:36", - "last_update": "2016-08-28T15:18:36", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 1, - "parent_author": "givemeyoursteem", - "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t151812366z", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T15:22:09", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "allasyummyfood", - "author_rewards": 0, - "beneficiaries": [], - "body": "Really beautiful pictures! thank you for sharing :) x", - "cashout_time": "1969-12-31T23:59:59", - "category": "steemitphotochallenge", - "children": 1, - "children_abs_rshares": 0, - "created": "2016-08-28T15:08:30", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 1, - "id": 778395, - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", - "last_payout": "2016-08-29T15:16:36", - "last_update": "2016-08-28T15:08:30", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 1, - "parent_author": "givemeyoursteem", - "parent_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t150830108z", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T14:14:06", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "iggy", - "author_rewards": 0, - "beneficiaries": [], - "body": "Vikaresj\u00f6n lake in Gislaved Komun , 60 km from Jonkoping . And the fish is pike perch , on Swedish is i think joos or something like that", - "cashout_time": "1969-12-31T23:59:59", - "category": "photography", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-28T14:14:06", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 2, - "id": 777927, - "json_metadata": "{\"tags\":[\"photography\"]}", - "last_payout": "2016-08-29T13:12:09", - "last_update": "2016-08-28T14:14:06", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "givemeyoursteem", - "parent_permlink": "re-iggy-sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life-20160828t140609818z", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-re-iggy-sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life-20160828t141345606z", - "reward_weight": 10000, - "root_author": "iggy", - "root_permlink": "sweden-how-to-live-without-stress-a-short-recipe-for-succesfull-life", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T14:10:33", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "iggy", - "author_rewards": 0, - "beneficiaries": [], - "body": "South or North ? I love Sweden , i have lived in J\u00f6nk\u00f6ping area for 3 years . Beautyfull nature and people.Now i'm moving further north to Bodo in Norway .", - "cashout_time": "1969-12-31T23:59:59", - "category": "steemitphotochallenge", - "children": 1, - "children_abs_rshares": 0, - "created": "2016-08-28T14:07:42", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 3, - "id": 777876, - "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", - "last_payout": "2016-08-29T15:16:36", - "last_update": "2016-08-28T14:07:42", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 0, - "parent_author": "givemeyoursteem", - "parent_permlink": "re-iggy-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t140244741z", - "percent_hbd": 10000, - "permlink": "re-givemeyoursteem-re-iggy-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t140721103z", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", - "title": "", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - } - ] -} \ No newline at end of file +{ + "comments": [ + { + "abs_rshares": 1184743282626, + "active": "2016-08-29T13:45:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 588, + "beneficiaries": [], + "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", + "cashout_time": "2016-09-04T17:15:12", + "category": "foodchallenge", + "children": 18, + "children_abs_rshares": 0, + "created": "2016-08-28T17:15:12", + "curator_payout_value": { + "amount": "131", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 1029377, + "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", + "last_payout": "2016-08-29T20:19:39", + "last_update": "2016-08-28T17:15:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 1184743282626, + "net_votes": 44, + "parent_author": "", + "parent_permlink": "foodchallenge", + "percent_hbd": 10000, + "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", + "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", + "total_payout_value": { + "amount": "576", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 4215185774169958139, + "vote_rshares": 1184743282626 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T18:46:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you so much! Hope to see you next time! :D", + "cashout_time": "2016-09-04T16:09:06", + "category": "foodchallenge", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T16:09:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1028377, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-28T16:09:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "englishtchrivy", + "parent_permlink": "re-givemeyoursteem-winners-of-steemit-food-challenge-2-italian-theme-20160825t210716379z", + "percent_hbd": 10000, + "permlink": "re-englishtchrivy-re-givemeyoursteem-winners-of-steemit-food-challenge-2-italian-theme-20160828t160905832z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-2-italian-theme", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T16:08:06", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Yeeay! More cauliflower pizza!", + "cashout_time": "2016-09-04T16:08:06", + "category": "foodchallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T16:08:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 4, + "id": 1028363, + "json_metadata": "{\"tags\":[\"foodchallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-28T16:08:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "exitmass", + "parent_permlink": "re-teia-re-exitmass-re-givemeyoursteem-winners-of-steemit-food-challenge-2-italian-theme-20160826t114744336z", + "percent_hbd": 10000, + "permlink": "re-exitmass-re-teia-re-exitmass-re-givemeyoursteem-winners-of-steemit-food-challenge-2-italian-theme-20160828t160806186z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "winners-of-steemit-food-challenge-2-italian-theme", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:58:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Agree, I love the nature here!", + "cashout_time": "2016-09-04T15:58:42", + "category": "steemitphotochallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T15:58:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1028248, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-28T15:58:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "the-future", + "parent_permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t155605821z", + "percent_hbd": 10000, + "permlink": "re-the-future-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t155842047z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:58:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Oh thank you!! :)", + "cashout_time": "2016-09-04T15:58:09", + "category": "steemitphotochallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T15:58:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1028235, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-28T15:58:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t154507601z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t155809180z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T16:02:15", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Your cookies looks amazing! Wish I could be in London!", + "cashout_time": "2016-09-04T15:29:00", + "category": "steemit", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-28T15:29:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1027757, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-28T15:29:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "steemit-cookies-for-the-london-meet-up", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-steemit-cookies-for-the-london-meet-up-20160828t152858919z", + "reward_weight": 10000, + "root_author": "allasyummyfood", + "root_permlink": "steemit-cookies-for-the-london-meet-up", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 8967981449, + "active": "2016-08-28T15:39:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Now I want to cook some vegetable soup! Thanks for sharing :)", + "cashout_time": "2016-09-04T15:27:33", + "category": "recipes", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:27:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1027735, + "json_metadata": "{\"tags\":[\"recipes\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-28T15:27:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 8967981449, + "net_votes": 1, + "parent_author": "meesterboom", + "parent_permlink": "hearty-vegetable-soup-easy-and-quick", + "percent_hbd": 10000, + "permlink": "re-meesterboom-hearty-vegetable-soup-easy-and-quick-20160828t152731480z", + "reward_weight": 10000, + "root_author": "meesterboom", + "root_permlink": "hearty-vegetable-soup-easy-and-quick", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 41264998726102313, + "vote_rshares": 8967981449 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:22:42", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thanks @meesterboom! :D", + "cashout_time": "2016-09-04T15:22:42", + "category": "steemitphotochallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T15:22:42", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1027674, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"],\"users\":[\"meesterboom\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-28T15:22:42", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "meesterboom", + "parent_permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t151812366z", + "percent_hbd": 10000, + "permlink": "re-meesterboom-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t152241781z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T15:22:09", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "Thank you so much! :)", + "cashout_time": "2016-09-04T15:22:09", + "category": "steemitphotochallenge", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-28T15:22:09", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1027666, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-28T15:22:09", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "allasyummyfood", + "parent_permlink": "re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t150830108z", + "percent_hbd": 10000, + "permlink": "re-allasyummyfood-re-givemeyoursteem-sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry-20160828t152209985z", + "reward_weight": 10000, + "root_author": "givemeyoursteem", + "root_permlink": "sea-rocks-and-sunset-in-the-swedish-archipelago-steemitphotochallenge-entry", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-28T19:08:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "givemeyoursteem", + "author_rewards": 0, + "beneficiaries": [], + "body": "I think Swag Sunday is a great idea and agree with @halo , it's a great bonus for us, I'm so thankful! You should also get rewarded :) A \"resteem\" feature seems like a really good idea, hope it become true!", + "cashout_time": "2016-09-04T15:19:00", + "category": "contest", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-28T15:19:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 1027630, + "json_metadata": "{\"tags\":[\"contest\"],\"users\":[\"halo\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-28T15:19:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "givemeyoursteem", + "parent_permlink": "re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t150753974z", + "percent_hbd": 10000, + "permlink": "re-givemeyoursteem-re-condra-swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit-20160828t151900275z", + "reward_weight": 10000, + "root_author": "condra", + "root_permlink": "swag-sunday-august-28-your-weekly-digest-of-contests-and-giveaways-on-steemit", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json index 3583cf26..afc68572 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "abs_rshares": 0, - "active": "2016-08-29T13:45:42", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "givemeyoursteem", - "author_rewards": 588, - "beneficiaries": [], - "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", - "cashout_time": "2016-09-28T20:19:39", - "category": "foodchallenge", - "children": 18, - "children_abs_rshares": 2374341643, - "created": "2016-08-28T17:15:12", - "curator_payout_value": { - "amount": "131", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779947, - "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", - "last_payout": "2016-08-29T20:19:39", - "last_update": "2016-08-28T17:15:12", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-13T01:24:24", - "net_rshares": 0, - "net_votes": 44, - "parent_author": "", - "parent_permlink": "foodchallenge", - "percent_hbd": 10000, - "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", - "total_payout_value": { - "amount": "576", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T17:15:09", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "forklognews", - "author_rewards": 0, - "beneficiaries": [], - "body": "\n

\u041f\u0440\u043e\u0448\u0435\u0434\u0448\u0430\u044f \u043d\u0435\u0434\u0435\u043b\u044f \u043e\u043a\u0430\u0437\u0430\u043b\u0430\u0441\u044c \u0431\u043e\u0433\u0430\u0442\u043e\u0439 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u043c\u0438, \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u043c \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0434\u043b\u044f \u043d\u0430\u0448\u0435\u0439 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u0441\u0442\u0430\u043b\u043e \u0434\u0432\u0443\u0445\u043b\u0435\u0442\u0438\u0435 Forklog. \u0414\u0432\u0430 \u0433\u043e\u0434\u0430 \u043d\u0430\u0437\u0430\u0434, 25 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0431\u044b\u043b \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0434\u043e\u043c\u0435\u043d ForkLog.com, \u0430 \u0441\u043f\u0443\u0441\u0442\u044f \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u0434\u0435\u043b\u0430\u043d\u044b \u043f\u0435\u0440\u0432\u044b\u0435 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u043d\u0430 \u0441\u0430\u0439\u0442\u0435. \u041e\u0431 \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0445, \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u0445 \u043c\u0438\u0440\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442, \u0432\u044b \u0443\u0437\u043d\u0430\u0435\u0442\u0435 \u0438\u0437 \u043d\u0430\u0448\u0435\u0433\u043e \u0435\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0439\u0434\u0436\u0435\u0441\u0442\u0430. 

\n

 \u0411\u0418\u0420\u0416\u0418

\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u0438\u043c\u0435\u043d\u0438\u043d\u043d\u0438\u043a\u043e\u043c \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0438 \u0441\u0442\u0430\u043b\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 Bitstamp, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u043e\u0442\u043c\u0435\u0442\u0438\u043b\u0430 \u043f\u044f\u0442\u0438\u043b\u0435\u0442\u0438\u0435 \u0441\u043e \u0434\u043d\u044f \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f. \u041a \u044d\u0442\u043e\u043c\u0443 \u0441\u043e\u0431\u044b\u0442\u0438\u044e \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0438\u0443\u0440\u043e\u0447\u0438\u043b\u0430 \u043a\u043e\u043d\u043a\u0443\u0440\u0441 \u0441 \u0446\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0440\u0438\u0437\u0430\u043c\u0438.

\n

\u041d\u043e \u044e\u0431\u0438\u043b\u0435\u0438 \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043f\u043e\u0432\u043e\u0434\u043e\u043c \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0430\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 \u0438 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0431\u0438\u0440\u0436 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0440\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0442 \u044d\u0442\u043e \u043c\u043d\u0435\u043d\u0438\u0435, \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u044f \u0433\u0434\u0435-\u0442\u043e \u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0435, \u0430 \u0433\u0434\u0435-\u0442\u043e \u0438 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f.

\n

\u0422\u0430\u043a, \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 GDAX \u043d\u0430\u0447\u0430\u043b\u0430 \u0442\u043e\u0440\u0433\u0438 \u0447\u0435\u0442\u0432\u0435\u0440\u0442\u043e\u0439 \u043f\u043e \u0440\u044b\u043d\u043e\u0447\u043d\u043e\u0439 \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043e\u0439 Litecoin. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0434\u0435\u043b\u0430\u043d\u043e \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0431\u043b\u043e\u0433\u0435 \u0431\u0438\u0440\u0436\u0438. \u0414\u043b\u044f \u0442\u043e\u0440\u0433\u043e\u0432 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0434\u0432\u0435 \u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043f\u0430\u0440\u044b: \u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430\u043c \u0421\u0428\u0410 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043f\u0430\u0440\u0430 LTC / USD, \u0432\u0441\u0435\u043c \u043f\u0440\u043e\u0447\u0438\u043c \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u2014 \u043f\u0430\u0440\u0430 LTC / BTC.

\n

\u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, 23 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0442\u0432\u0438\u0442\u0442\u0435\u0440\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u043e\u0439 \u0431\u0438\u0440\u0436\u0438 Poloniex \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043e\u0441\u043d\u044f\u0442\u0438\u0438 \u0441 \u0442\u043e\u0440\u0433\u043e\u0432 27 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442. \u0422\u043e\u0440\u0433\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0435\u043d\u044b 5 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430 \u0438 \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0443\u0436\u0435 \u0432\u044b\u0437\u0432\u0430\u043b\u043e \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043d\u0435\u0434\u043e\u0443\u043c\u0435\u043d\u0438\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430, \u0432\u0435\u0434\u044c \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u0447\u0435\u043d\u044c \u0432\u043e\u0448\u043b\u0438 \u0442\u0430\u043a\u0438\u0435 \u0430\u043b\u044c\u0442\u043a\u043e\u0438\u043d\u044b, \u043a\u0430\u043a DAO, Dashcoin \u0438 Mintcoin, \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0438\u0433 $1,22 \u043c\u043b\u043d. 

\n

\n

 \u041f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u043a \u043a\u043e\u043d\u0446\u0443 \u0438 \u043d\u0430\u0448\u0443\u043c\u0435\u0432\u0448\u0430\u044f \u0438\u0441\u0442\u043e\u0440\u0438\u044f \u0441 \u0431\u0438\u0440\u0436\u0435\u0439 Bitfinex, \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0435\u0439 \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u0437\u043b\u043e\u043c\u0430. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0431\u0438\u0440\u0436\u0438 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u0438\u0438 \u0434\u043e\u0433\u043e\u0432\u043e\u0440\u0430 \u0441 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u043e\u0439 BnkToTheFuture \u0441 \u0446\u0435\u043b\u044c\u044e \u0432\u043e\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0440\u0435\u0434\u0441\u0442\u0432 \u0432\u043a\u043b\u0430\u0434\u0447\u0438\u043a\u043e\u0432 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u0434\u043e\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0447\u0430\u0441\u0442\u0438\u044f \u0432 \u0430\u043a\u0446\u0438\u043e\u043d\u0435\u0440\u043d\u043e\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438. 

\n

\n

 \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0443 \u0441 BnkToTheFuture \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Bitfinex \u0441\u043c\u043e\u0433\u0443\u0442 \u043e\u0431\u043c\u0435\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u0438\u043c \u0442\u043e\u043a\u0435\u043d\u044b BFX \u043d\u0430 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0443\u044e \u0434\u043e\u043b\u044e \u0432 iFinex Inc, \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438\u0445 \u0412\u0438\u0440\u0433\u0438\u043d\u0441\u043a\u0438\u0445 \u041e\u0441\u0442\u0440\u043e\u0432\u0430\u0445 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u0430\u044f \u043d\u043e\u0432\u043e\u0441\u0442\u044c \u043f\u0440\u0438\u0448\u043b\u0430 \u043d\u0430 \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0435 \u0438\u0437 \u0422\u0443\u0440\u0446\u0438\u0438, \u0433\u0434\u0435 \u0432\u0435\u0434\u0443\u0449\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0438 BTCTurk \u0431\u044b\u043b\u0430 \u0432\u044b\u043d\u0443\u0436\u0434\u0435\u043d\u0430 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443, \u0441\u0442\u043e\u043b\u043a\u043d\u0443\u0432\u0448\u0438\u0441\u044c \u0441 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u043e\u043c \u043e\u0442\u043a\u0430\u0437\u043e\u043c \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0430 \u043e\u0442 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0433\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430. \u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442 \u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c, \u043e\u0434\u043d\u0430\u043a\u043e \u0438\u0437-\u0437\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0445 \u0441\u0447\u0435\u0442\u043e\u0432 \u044d\u0442\u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u0442\u044f\u043d\u0443\u0442\u044c\u0441\u044f. 

\n

 \u041a\u041e\u0428\u0415\u041b\u042c\u041a\u0418 \u0418 \u041f\u041b\u0410\u0422\u0401\u0416\u041d\u042b\u0415 \u0421\u0415\u0420\u0412\u0418\u0421\u042b

\n

\u041f\u0435\u0440\u0432\u044b\u043c \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u044b\u043c \u043a\u043e\u0448\u0435\u043b\u044c\u043a\u043e\u043c, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0438\u043c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Ethereum, \u0441\u0442\u0430\u043b Trezor. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0430 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 Trezor \u043d\u0430 Github.

\n

\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043e\u0442 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438-\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430 SatoshiLabs \u043f\u043e\u043a\u0430, \u0432\u043f\u0440\u043e\u0447\u0435\u043c, \u043d\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u043b\u043e, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0434\u0430\u0442\u0430 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0435\u043b\u0438\u0437\u0430 \u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u0430 \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043e\u0441\u0442\u0430\u0435\u0442\u0441\u044f \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e\u0439.

\n

\u0421\u043f\u0438\u0441\u043a\u0438 \u0440\u0430\u0431\u043e\u0447\u0438\u0445 \u0432\u0430\u043b\u044e\u0442 \u043f\u043e\u043f\u043e\u043b\u043d\u0438\u043b\u0438\u0441\u044c \u0443 \u043f\u043b\u0430\u0442\u0451\u0436\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 Bitwala, \u0432\u043a\u043b\u044e\u0447\u0438\u0432\u0448\u0435\u0433\u043e \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Dash \u0438 Emercoin, \u0438 \u0432\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044c\u0441\u043a\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b Cryptobuyer, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0435\u0439 Dash. \u041e\u0442\u043c\u0435\u0442\u0438\u043c, \u0447\u0442\u043e \u0436\u0438\u0442\u0435\u043b\u0438 \u0412\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044b, \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043d\u0435\u0442 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u0432 \u043b\u0438\u0431\u043e \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u043e\u0432 \u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u0432 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442, \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0443\u0441\u043b\u0443\u0433\u0430\u043c\u0438 \u043c\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0451\u0440\u0430 Cryptobuyer \u2013 \u0441\u0435\u0442\u044c\u044e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u043c\u0430\u0442\u043e\u0432 TigoCTM.

\n

\u0422\u0430\u043a\u0436\u0435 \u0432\u044b\u0448\u043b\u0430 \u0432 \u0441\u0432\u0435\u0442 \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f Ethereum-\u043a\u043e\u0448\u0435\u043b\u044c\u043a\u0430 Mist \u0441 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u043e\u0439 Coinbase Buy Widget. \u041e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0435\u0451 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u043e\u0441\u043e\u0431\u0435\u043d\u043d\u043e\u0441\u0442\u0435\u0439 \u0441\u0442\u0430\u043b\u043e \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 Coinbase Buy Widget \u2013 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430, \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0438\u0442\u044c \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u043a\u0443\u043f\u043a\u0443 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043d\u0430 \u0441\u0443\u043c\u043c\u0443 \u0434\u043e $5.

\n

\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0434\u0430\u043d\u043d\u0430\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c \u0438\u0437 \u0421\u0428\u0410 \u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043d\u0430\u043b\u0438\u0447\u0438\u044f \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430 \u043d\u0430 Coinbase. 

\n

\n

 \u0411\u0410\u041d\u041a\u0418 \u0418 \u041a\u041e\u0420\u041f\u041e\u0420\u0410\u0426\u0418\u0418

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u043c \u0438\u0437\u0432\u0435\u0441\u0442\u0438\u0435\u043c, \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u044b\u043c \u0441\u0442\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0432\u0435\u0441\u0442\u043d\u0438\u043a\u043e\u043c \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0445 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0435, \u0441\u0442\u0430\u043b\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0438\u0437\u0434\u0430\u043d\u0438\u044f Financial Times \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0440\u044f\u0434 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0445 \u043c\u0438\u0440\u043e\u0432\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u0432 \u043f\u0440\u0438\u043d\u044f\u043b \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043d\u043e\u0432\u043e\u0439 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u043b\u044e\u0442\u044b. \u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0435\u0439 \u0431\u0430\u043d\u043a\u043e\u0432 UBS, Deutsche Bank, Santander \u0438 BNY Mellon \u043e\u0436\u0438\u0434\u0430\u043b\u043e\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u043d\u043e \u0434\u043e \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u043d\u0435 \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c.

\n

\u0415\u0441\u043b\u0438 \u044d\u0442\u043e \u043e\u043a\u0430\u0436\u0435\u0442\u0441\u044f \u043d\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u0443\u0442\u043a\u043e\u0439, \u0442\u043e \u0441\u0442\u043e\u0438\u0442 \u043e\u0436\u0438\u0434\u0430\u0442\u044c, \u0447\u0442\u043e \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u043a \u044d\u0442\u043e\u0439 \u0438\u043d\u0438\u0446\u0438\u0430\u0442\u0438\u0432\u0435 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u044f\u0442\u0441\u044f \u0438 \u043f\u0440\u043e\u0447\u0438\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u044b \u0441\u043e \u0432\u0441\u0435\u0445 \u043a\u043e\u043d\u0446\u043e\u0432 \u0441\u0432\u0435\u0442\u0430, \u0434\u0430\u0436\u0435 \u0441 \u0434\u0430\u043b\u0451\u043a\u043e\u0433\u043e \u0430\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0438\u043d\u0435\u043d\u0442\u0430. \u0422\u0430\u043c \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0439 \u042e\u0436\u043d\u043e-\u0410\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u0431\u0430\u043d\u043a\u0430 \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e \u0432 \u0441\u0432\u043e\u0435\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0438 \u043d\u0430 \u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0438\u0438 \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u043a\u0440\u0438\u043f\u0442\u043e\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u0443\u0436\u0435 \u0438\u0437\u0443\u0447\u0430\u0435\u0442 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0437\u0430\u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043e\u0432\u0430\u043d \u0432 \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0434\u0430\u0442\u044c \u044d\u0442\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f. 

\n
 \u00ab\u041a\u0430\u043a \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u0431\u0430\u043d\u043a, \u043c\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044b \u043a \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u043c \u043d\u0435\u0441\u043c\u043e\u0442\u0440\u044f \u043d\u0430 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u043e\u0435 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u043e\u0440\u043e\u0432 \u043a \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u043c. \u041c\u044b \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u044b \u0438\u0437\u0443\u0447\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043a\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e. 
\n

 \u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0439 \u0431\u0430\u043d\u043a \u042f\u043f\u043e\u043d\u0438\u0438 Bank of Tokyo-Mitsubishi UFJ (MUFG) \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e\u0431 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0438 \u0432\u0435\u0440\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043b\u0430\u0442\u0435\u0436\u0438 \u043f\u043e \u0447\u0435\u043a\u0430\u043c. \u0421\u043e\u0437\u0434\u0430\u043d\u043d\u043e\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0432 \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u043c\u0438 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u0430\u043c\u0438 \u0438 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u043c\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f\u043c\u0438 \u0432 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u043e\u043c \u0440\u0435\u0433\u0438\u043e\u043d\u0435. \u0412 \u0431\u0443\u0434\u0443\u0449\u0435\u043c Bank of Tokyo-Mitsubishi \u043d\u0430\u0434\u0435\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043c\u043e\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043d\u0430\u0439\u0442\u0438 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u0435.

\n

\u041e\u0442 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432 \u043d\u0435 \u043e\u0442\u0441\u0442\u0430\u044e\u0442 \u0438 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 \u043a\u043e\u043d\u0441\u043e\u0440\u0446\u0438\u0443\u043c\u0430 R3 CEV, \u0437\u0430\u043f\u0430\u0442\u0435\u043d\u0442\u043e\u0432\u0430\u0432\u0448\u0438\u0435 \u043d\u043e\u0432\u044b\u0439 \u043f\u0440\u043e\u0434\u0443\u043a\u0442 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 Concord, \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0439 \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0435 \u0423\u043e\u043b\u043b-\u0441\u0442\u0440\u0438\u0442.

\n

Concord \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0441\u043e\u0431\u043e\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0443, \u0441\u0432\u044f\u0437\u044b\u0432\u0430\u044e\u0449\u0443\u044e \u0432\u043e\u0435\u0434\u0438\u043d\u043e \u0440\u044b\u043d\u043a\u0438 \u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0438 \u043f\u0440\u0438\u0437\u0432\u0430\u043d\u043d\u0443\u044e \u043f\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u043c\u0438\u0434\u0434\u043b- \u0438 \u0431\u044d\u043a-\u043e\u0444\u0438\u0441\u043e\u0432 \u0432 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u0440\u0438\u0430\u043d\u0442. \u042d\u0442\u043e \u0434\u0430\u0441\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0431\u0430\u043d\u043a\u0430\u043c \u0438\u0437\u0431\u0430\u0432\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u044b\u0445 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432 \u0438 \u0441\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0442\u044c \u043c\u0438\u043b\u043b\u0438\u0430\u0440\u0434\u044b \u0434\u043e\u043b\u043b\u0430\u0440\u043e\u0432. \u041e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f, \u0447\u0442\u043e \u0430\u043b\u044c\u0444\u0430-\u0432\u0435\u0440\u0441\u0438\u044f \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430 \u0432 \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435 2017 \u0433\u043e\u0434\u0430.

\n

\u0412\u0441\u0451 \u044d\u0442\u043e \u0437\u0430\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u043e\u0432 \u0438 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0441\u0442\u043e\u0432 \u0441\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u043e\u043c \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u043b\u044c\u043d\u043e, \u043c\u0435\u043d\u044f\u044f \u0441\u0432\u043e\u0438 \u043f\u0440\u043e\u0433\u043d\u043e\u0437\u044b \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b.

\n

\u0412 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a \u041a\u0438\u0440\u0438\u043b\u043b \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u044d\u0442\u0438\u043c \u043f\u043e\u044f\u0432\u044f\u0442\u0441\u044f \u043d\u043e\u0432\u044b\u0435 \u043c\u0435\u0436\u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b.

\n
\u00ab\u0412 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 blockchain \u043f\u0440\u043e\u0447\u043d\u043e \u0443\u043a\u0440\u0435\u043f\u044f\u0442\u0441\u044f \u043d\u0430 \u043c\u0435\u0436\u0431\u0430\u043d\u043a\u0435, \u0432\u044b\u0442\u0435\u0441\u043d\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043e\u0431\u043c\u0435\u043d\u0430 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043c\u0435\u0436\u0434\u0443 \u043d\u0438\u043c\u0438 (\u0432 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0441\u0438\u0441\u0442\u0435\u043c\u0443 SWIFT) \u0438 \u0441\u0442\u0430\u043d\u0443\u0442 \u043d\u0435\u043e\u0442\u044a\u0435\u043c\u043b\u0435\u043c\u043e\u0439 \u0447\u0430\u0441\u0442\u044c\u044e \u0442\u043e\u0440\u0433\u043e\u0432 \u043d\u0430 \u0440\u044b\u043d\u043a\u0430\u0445 \u0446\u0435\u043d\u043d\u044b\u0445 \u0431\u0443\u043c\u0430\u0433. \u0427\u0442\u043e \u0436\u0435 \u043a\u0430\u0441\u0430\u0435\u0442\u0441\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0432 \u043f\u0440\u0438\u0432\u044b\u0447\u043d\u043e\u043c \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438, \u0442\u043e \u043e\u043d\u0438 \u0442\u0430\u043a\u0436\u0435, \u0441\u043a\u043e\u0440\u0435\u0435 \u0432\u0441\u0435\u0433\u043e, \u0443\u0436\u0435 \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u043c \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 blockchain \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u043d\u043e\u0435 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435\u00bb, \u2014 \u0441\u0447\u0438\u0442\u0430\u0435\u0442 \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e.
\n

\u041a\u041e\u041c\u041f\u0410\u041d\u0418\u0418

\n

\u0414\u0430\u0442\u0441\u043a\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Bitshares Munich IVS, \u0432\u043b\u0430\u0434\u0435\u044e\u0449\u0430\u044f \u0431\u0440\u0435\u043d\u0434\u043e\u043c BlockPay, \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0441\u0442\u0430\u0440\u0442\u0435 ICO. \u0412 \u0445\u043e\u0434\u0435 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 BlockPay, P2P-\u043c\u0435\u0441\u0441\u0435\u043d\u0434\u0436\u0435\u0440\u0430 ECHO \u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u044b\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u0435\u0439 Stealth. \u041f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043a\u0440\u0430\u0443\u0434\u0444\u0430\u043d\u0434\u0438\u043d\u0433\u043e\u0432\u043e\u0439 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043d\u0430 2016 \u0438 2017 \u0433\u043e\u0434\u044b. \u0421\u0430\u043c\u0430 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u043e\u0441\u0442\u043e\u0438\u0442 \u0438\u0437 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 ICO (Pre-ICO), \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0430\u0432\u0433\u0443\u0441\u0442 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430, \u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0430 \u0432 2017 \u0433\u043e\u0434\u0443. \u0412\u0441\u0435\u0433\u043e \u043f\u043b\u0430\u043d\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c 100 \u043c\u0438\u043b\u043b\u0438\u043e\u043d\u043e\u0432 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 BlockPay.

\n

\u041f\u0440\u043e\u0435\u043a\u0442 \u043f\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c \u043a\u043e\u0434\u043e\u043c Hyperledger \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u0438\u043c\u0435\u043d\u0430 \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u043e\u0441\u0442\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430. \u0421\u0440\u0435\u0434\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u2014 \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u044e\u0449\u0438\u0445 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0438 \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0439 \u0443\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0431\u0430\u0437\u044b \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u043a\u043e\u0434\u0430.

\n

\u0412 \u043d\u043e\u0432\u043e\u043c \u0441\u043e\u0441\u0442\u0430\u0432\u0435 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u043b\u0438 \u0441\u0432\u043e\u0438 \u043c\u0435\u0441\u0442\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 R3CEV \u0413\u0435\u043d\u0434\u0430\u043b \u0411\u0440\u0430\u0443\u043d, \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432 Digital Asset Holdings \u0422\u0430\u043c\u0430\u0448 \u0411\u043b\u0443\u043c\u043c\u0435\u0440, \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c Fujitsu \u0425\u0430\u0440\u0442 \u041c\u043e\u043d\u0442\u0433\u043e\u043c\u0435\u0440\u0438, \u0438\u043d\u0436\u0435\u043d\u0435\u0440 Intel \u041c\u0438\u043a \u0411\u043e\u0443\u043c\u0435\u043d \u0438 \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 IBM \u041a\u0440\u0438\u0441\u0442\u043e\u0444\u0435\u0440 \u0424\u0435\u0440\u0440\u0438\u0441. \u0421\u0440\u0435\u0434\u0438 \u043d\u043e\u0432\u044b\u0445 \u0438\u043c\u0435\u043d \u2013 \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c IBM \u0410\u0440\u043d\u043e \u043b\u0435 \u041e\u0440, \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u043e\u0440 IBM \u0411\u0438\u043d \u041d\u0433\u0443\u0435\u043d, \u0433\u043b\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a Intel \u0414\u044d\u043d \u041c\u0438\u0434\u0434\u043b\u0442\u043e\u043d, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 DTCC, Salesforce \u0438 \u041b\u043e\u043d\u0434\u043e\u043d\u0441\u043a\u043e\u0439 \u0444\u043e\u043d\u0434\u043e\u0432\u043e\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0441\u0442\u0430\u0440\u0442\u0430\u043f Chronicled Inc. \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u0434\u043b\u044f \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430 \u0432\u0435\u0449\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u044b\u043b \u0441\u043e\u0437\u0434\u0430\u043d \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 Ethereum. \u042d\u0442\u043e\u0442 \u0440\u0435\u0435\u0441\u0442\u0440 \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d \u0434\u043b\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0445 \u043a\u043e\u0434\u043e\u0432 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0438\u043c\u0435\u044e\u0449\u0438\u0445 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435 \u0447\u0438\u043f\u044b NFC \u0438 BLE.

\n
\u00ab\u0422\u0435\u043f\u0435\u0440\u044c \u0432\u0441\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0438 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0431\u0443\u0434\u044c-\u0442\u043e \u0431\u0440\u0435\u043d\u0434\u044b, \u043d\u043e\u0441\u0438\u0442\u0435\u043b\u0438 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0438 \u043f\u0440\u043e\u0447\u0435\u0435, \u043c\u043e\u0433\u0443\u0442 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0437\u0430\u0449\u0438\u0449\u0451\u043d\u043d\u044b\u0435 \u043e\u0442 \u043f\u043e\u0434\u0434\u0435\u043b\u043e\u043a \u0447\u0438\u043f\u044b \u0432 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 Chronicled \u0420\u0430\u0439\u0430\u043d \u041e\u0440\u0440. \u041d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u043e\u043c \u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043e \u043e\u043a\u043e\u043b\u043e 10 000 NFC \u0438 BLE \u0447\u0438\u043f\u043e\u0432.
\n

\u041a\u0430\u043a \u0441\u043e\u043e\u0431\u0449\u0430\u0435\u0442 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Business Insider UK, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u0432 \u0421\u0428\u0410 \u0442\u0435\u043b\u0435\u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Verizon Communications \u044d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0438\u0440\u0443\u0435\u0442 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0422\u0430\u043a, \u0432 \u0440\u0430\u0441\u043f\u043e\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u043f\u043e\u043f\u0430\u043b \u043f\u0430\u0442\u0435\u043d\u0442, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 Verizon 10 \u043c\u0430\u044f \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u0418\u0437 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u043f\u0430\u0442\u0435\u043d\u0442\u0430 \u0441\u043b\u0435\u0434\u0443\u0435\u0442, \u0447\u0442\u043e \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u0430 \u043d\u0435\u043a\u043e\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043a\u043b\u044e\u0447\u0435\u0439, \u0430 \u0440\u0430\u0431\u043e\u0442\u044b \u043d\u0430\u0434 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u043c \u0432\u0435\u043b\u0438\u0441\u044c \u043d\u0430 \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0442\u0440\u0451\u0445 \u043b\u0435\u0442. \u0412\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043f\u043e\u0434\u043e\u0431\u043d\u043e\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0432 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u0438 \u0441\u043e \u0441\u043c\u0430\u0440\u0442-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430\u043c\u0438 \u0434\u0430\u0451\u0442 \u043c\u0430\u0441\u0441\u0443 \u043d\u043e\u0432\u044b\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u0432 \u0441\u0444\u0435\u0440\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0438\u043b\u0438 \u0430\u0432\u0442\u043e\u0440\u044b \u0441\u0442\u0430\u0442\u0435\u0439 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0441\u0432\u043e\u044e \u043e\u043f\u043b\u0430\u0442\u0443 \u0441\u0440\u0430\u0437\u0443 \u0436\u0435 \u043f\u043e\u0441\u043b\u0435 \u0442\u043e\u0433\u043e, \u043a\u0430\u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0430\u0447\u0430\u043b \u0447\u0438\u0442\u0430\u0442\u044c \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b \u0438\u043b\u0438 \u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430\u0442\u044c \u043f\u0435\u0441\u043d\u044e.

\n

\u0412\u0430\u043b\u044e\u0442\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440\u0430 (MAS) \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u043b\u043e \u0441 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0435\u0434\u0438\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439, \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u043d\u044b\u0435 \u0443\u0441\u043b\u0443\u0433\u0438, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438.

\n

\u0421\u0442\u0430\u043b\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0447\u0442\u043e \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0441\u0442\u0430\u0440\u0442\u0430\u043f Keza \u0432\u044b\u043a\u0443\u043f\u043b\u0435\u043d \u0444\u0438\u043b\u0438\u043f\u043f\u0438\u043d\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 Satoshi Citadel Industries, \u0432 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u043c \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u043c \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0443\u0436\u0435 \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0442 \u0442\u0430\u043a\u0438\u0435 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u044b, \u043a\u0430\u043a Rebit.ph, Bitbit.cash \u0438 PrepaidBitcoin.ph.

\n
\u00abKeza \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u043b\u0430\u0441\u044c \u0441 \u043f\u0440\u0438\u0446\u0435\u043b\u043e\u043c \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u044e\u0449\u0438\u0435\u0441\u044f \u0440\u044b\u043d\u043a\u0438 \u0438 \u0434\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0435 \u0438\u043c\u0435\u044e\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u043c \u0440\u044b\u043d\u043a\u0430\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0430. \u041c\u044b \u0441\u0447\u0430\u0441\u0442\u043b\u0438\u0432\u044b, \u0447\u0442\u043e \u0442\u0435\u043f\u0435\u0440\u044c \u0432\u0438\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0441\u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0440\u0435\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043e\u00bb, \u2014 \u0446\u0438\u0442\u0438\u0440\u0443\u0435\u0442 CEO Keza \u0421\u0430\u0439\u043c\u043e\u043d\u0430 \u0411\u0435\u0440\u043d\u0441\u0430 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Silicon Angle.
\n

\u0414\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0435\u0442\u044c Steemit \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u00ab\u0431\u0435\u0441\u043f\u0440\u0435\u0446\u0435\u0434\u0435\u043d\u0442\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u0442\u0440\u0430\u0444\u0438\u043a\u0430\u00bb, \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u044b\u043c \u0441 \u0442\u0435\u043c, \u0447\u0442\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u043b\u0438 \u043d\u0430 \u0440\u0430\u043d\u043d\u0438\u0445 \u044d\u0442\u0430\u043f\u0430\u0445 \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f Facebook \u0438 Reddit.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Steemit, \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u0435\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u043e \u0440\u0430\u0437\u043c\u0435\u0449\u0430\u044e\u0442 \u0431\u043e\u043b\u0435\u0435 21 000 \u043d\u043e\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0430 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432 \u0432 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u043f\u043e\u0441\u0442\u043e\u0432 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0435\u0442 70 000. \u042d\u0442\u043e \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u043e \u0441 \u0440\u0430\u043d\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c\u044e \u043d\u0430 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0430\u0445 \u0432\u0440\u043e\u0434\u0435 Facebook \u0438 Reddit.

\n

\u0417\u0430 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u0434\u0435\u043b\u044c \u0434\u043e \u0441\u0442\u0430\u0440\u0442\u0430 \u043a\u0440\u0430\u0443\u0434\u0441\u0435\u0439\u043b\u0430 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 DECENT \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0434\u0438\u0441\u0442\u0440\u0438\u0431\u0443\u0446\u0438\u0438 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 DCT. \u0422\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0432\u0435\u0440\u0433\u043b\u043e\u0441\u044c \u043f\u0435\u0440\u0435\u0441\u043c\u043e\u0442\u0440\u0443 \u043e\u0431\u0449\u0435\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0445 \u043a \u0432\u044b\u043f\u0443\u0441\u043a\u0443 \u043c\u043e\u043d\u0435\u0442. \u041a\u0430\u043a \u0437\u0430\u044f\u0432\u0438\u043b\u0438 \u0432 DECENT, \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435, \u0445\u043e\u0442\u044f \u0438 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u043c, \u0442\u0430\u043a\u0436\u0435 \u0431\u044b\u043b\u043e \u043f\u0440\u0438\u043d\u044f\u0442\u043e \u0441 \u0443\u0447\u0435\u0442\u043e\u043c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430.

\n

\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Coinbase \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0438 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0441\u0432\u043e\u0435\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u043d\u0430 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442. \u0422\u0435\u043f\u0435\u0440\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u043a\u0443\u043f\u043a\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u043a\u0430\u0440\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Coinbase \u0432 \u0415\u0432\u0440\u043e\u043f\u0435.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Coinbase, \u0432 \u0421\u0428\u0410 40% \u0441\u0434\u0435\u043b\u043e\u043a \u043f\u043e \u043f\u043e\u043a\u0443\u043f\u043a\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0441 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0435\u043c\u0438\u0442\u0441\u044f \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u044d\u0442\u043e\u0442 \u0441\u0435\u0440\u0432\u0438\u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0432 \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435\u043c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0435 \u0441\u0442\u0440\u0430\u043d.

\n

\u041f\u0415\u0420\u0421\u041e\u041d\u0410\u041b\u0418\u0418

\n

\u041e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Distributed Lab \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u0440\u0430\u0441\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u044f \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0441\u0444\u0435\u0440\u0430\u0445 \u0435\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f, \u043d\u0430\u0437\u0432\u0430\u0432 \u043e\u0442\u0440\u0430\u0441\u043b\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043e\u043d\u0430, \u043d\u0430 \u0435\u0433\u043e \u0432\u0437\u0433\u043b\u044f\u0434, \u0432\u0440\u044f\u0434 \u043b\u0438 \u043d\u0443\u0436\u043d\u0430 \u0432\u043e\u043e\u0431\u0449\u0435. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u043f\u043e\u0441\u0442 \u0431\u044b\u043b \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d \u0432 \u0435\u0433\u043e \u0431\u043b\u043e\u0433\u0435 \u043d\u0430 Medium.

\n

\u0412\u044b\u0441\u043a\u0430\u0437\u0430\u0432 \u0440\u0430\u043d\u0435\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u0431\u0438\u0437\u043d\u0435\u0441 \u043d\u0435 \u0433\u043e\u0442\u043e\u0432 \u043f\u043e-\u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u043c\u0443 \u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u041f\u0430\u0432\u0435\u043b \u043d\u0430 \u044d\u0442\u043e\u0442 \u0440\u0430\u0437 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u043b \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u043e\u0434\u0430 \u0433\u0438\u0434 \u0434\u043b\u044f \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432. \u0412 \u043d\u0435\u043c \u043e\u043f\u0438\u0441\u0430\u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0430\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430\u0442\u0438\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u0438 \u0440\u0435\u0448\u0435\u043d\u0438\u0439 \u0438 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u043f\u043e\u043c\u043e\u0449\u044c \u0432 \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438 \u0442\u043e\u0433\u043e, \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043b\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043d\u0438\u0445 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0439.

\n
\u00ab\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043e\u0431 \u0438\u043c\u043f\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u044f \u043f\u043e\u043b\u0443\u0447\u0430\u044e \u043a\u0430\u0436\u0434\u044b\u0439 \u0434\u0435\u043d\u044c. \u041e\u0434\u043d\u0430\u043a\u043e \u0447\u0430\u0441\u0442\u043e \u044f \u0441\u0447\u0438\u0442\u0430\u044e, \u0447\u0442\u043e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u043d\u0435 \u043d\u0443\u0436\u0435\u043d \u0432\u043e\u0432\u0441\u0435. \u0415\u0441\u0442\u044c \u0434\u0440\u0443\u0433\u0438\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0442\u0438\u043f\u044b \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b, \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u2013 \u043b\u0438\u0448\u044c \u043e\u0434\u0438\u043d \u0438\u0437 \u043d\u0438\u0445\u00bb, \u2014 \u043f\u0438\u0448\u0435\u0442 \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e.
\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0435\u043c \u0433\u0443\u0440\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441\u0442\u0430\u043b\u0430 \u043b\u0435\u043a\u0446\u0438\u044f \u043a\u0430\u043d\u0430\u0434\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044f \u0414\u043e\u043d\u0430 \u0422\u044d\u043f\u0441\u043a\u043e\u0442\u0442\u0430, \u0430\u0432\u0442\u043e\u0440\u0430 \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0438\u0437\u0434\u0430\u043d\u043d\u043e\u0439 \u043a\u043d\u0438\u0433\u0438 \u00ab\u0420\u0435\u0432\u043e\u043b\u044e\u0446\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430\u00bb, \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u0432\u0448\u0435\u0433\u043e \u0441 \u043b\u0435\u043a\u0446\u0438\u0435\u0439 \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u043d\u0430 \u0441\u0430\u043c\u043c\u0438\u0442\u0435 TED Talk \u0432 \u0410\u043b\u044c\u0431\u0435\u0440\u0442\u0435. 

\n

 \u0423\u041a\u0420\u0410\u0418\u041d\u0410

\n

\u0412 \u0423\u043a\u0440\u0430\u0438\u043d\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u043e\u0432 \u0432 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0443\u043c \u0441\u0442\u0440\u0430\u043d\u044b. \u0422\u0430\u043a, \u043a\u043e\u043c\u0430\u043d\u0434\u0430 e-Vox \u0430\u043d\u043e\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043b\u0430 \u0437\u0430\u043f\u0443\u0441\u043a \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0439 \u0420\u0430\u0434\u0435 \u0411\u0430\u043b\u0442\u044b (\u041e\u0434\u0435\u0441\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c). \u041e\u0431 \u044d\u0442\u043e\u043c \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 ForkLog \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u043e\u0440 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041a\u043e\u043d\u0430\u0448\u0435\u0432\u0438\u0447. 

\n

\n

 \u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f, \u0432\u043d\u0435\u0441\u0435\u043d\u043d\u044b\u0435 \u0432 \u0434\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u0431\u0430\u0437\u0443 \u0434\u0430\u043d\u043d\u044b\u0445, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0438 \u0432\u044b\u0432\u043e\u0434\u0438\u0442\u044c \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0443 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0440\u0435\u0448\u0435\u043d\u0438\u0439. \u0410 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u043f\u043e\u043c\u043e\u0436\u0435\u0442 \u043d\u0430\u0434\u0435\u0436\u043d\u043e \u0437\u0430\u0449\u0438\u0442\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e\u0442 \u0432\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0435\u0433\u043e \u0438 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043f\u0440\u0430\u0432\u043d\u043e\u0433\u043e \u0432\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430.

\n

\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u043e\u0439 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430 e-Vox \u0437\u0430\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Ambisafe \u0438 Vareger.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0432 \u044d\u0442\u043e\u043c \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438 \u0432 \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. \u0422\u0430\u043a, \u043c\u044d\u0440 \u0433\u043e\u0440\u043e\u0434\u0430 \u0413\u0435\u043d\u043d\u0430\u0434\u0438\u0439 \u0414\u0438\u043a\u0438\u0439 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043b \u043f\u0440\u043e\u0435\u043a\u0442 \u043e\u0431 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b Auction 3.0 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043e\u0434\u043d\u043e\u0433\u043e \u0438\u0437 \u0430\u043a\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u043f\u0440\u0438\u043d\u044f\u0442 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u0435 \u0432\u0440\u0435\u043c\u044f.
\n\u041e\u0431 \u044d\u0442\u043e\u043c \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0440\u0435\u0448\u0435\u043d\u0438\u0438 \u00ab\u041e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043f\u043b\u0430\u043d \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0411\u0435\u043b\u043e\u0446\u0435\u0440\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0433\u043e \u0441\u043e\u0432\u0435\u0442\u0430 \u043f\u0440\u0438 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u044b\u0445 \u0430\u043a\u0442\u043e\u0432 \u043d\u0430 2016 \u0433\u043e\u0434\u00bb, \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043d\u043e\u043c \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. 

\n

\n

 \u0420\u041e\u0421\u0421\u0418\u042f

\n

\u0412 \u043f\u044f\u0442\u043d\u0438\u0446\u0443, 26 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0437\u0430\u043c\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041c\u043e\u0438\u0441\u0435\u0435\u0432 \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u041c\u0438\u043d\u0438\u0441\u0442\u0435\u0440\u0441\u0442\u0432\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u0435\u0442 \u043f\u0440\u043e\u0442\u0438\u0432 \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u00ab\u043b\u043e\u0431\u043e\u0432\u043e\u0433\u043e \u0437\u0430\u043f\u0440\u0435\u0442\u0430\u00bb \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430. \u041f\u043e \u0435\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u043c, \u0437\u0430\u043a\u043e\u043d\u043e\u043f\u0440\u043e\u0435\u043a\u0442 \u043e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u0445 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d \u043f\u043e \u0438\u0442\u043e\u0433\u0430\u043c \u043f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0435\u0440\u0438\u0438 \u0432\u0441\u0442\u0440\u0435\u0447 \u0441 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u0430\u043c\u0438.

\n

\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u044d\u0442\u043e \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u043b\u043e \u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u0435\u043c \u0432\u0441\u0442\u0440\u0435\u0447\u0438, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0441\u043e\u0441\u0442\u043e\u044f\u043b\u0430\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430 \u0420\u0424 \u043f\u043e\u0434 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e\u043c \u0441\u043e\u0432\u0435\u0442\u043d\u0438\u043a\u0430 \u043f\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0443 \u0413\u0435\u0440\u043c\u0430\u043d\u0430 \u041a\u043b\u0438\u043c\u0435\u043d\u043a\u043e. \u041d\u0430 \u043c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u0438 \u043e\u0431\u0441\u0443\u0436\u0434\u0430\u043b\u0430\u0441\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u0420\u043e\u0441\u0441\u0438\u0438 \u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0435\u0435 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f \u043d\u0430 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043b\u0438\u0441\u044c \u0432 \u0441\u0442\u043e\u0440\u043e\u043d\u0435 \u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0438 \u0432\u043b\u0430\u0441\u0442\u0438 \u041c\u043e\u0441\u043a\u0432\u044b, \u0437\u0430\u044f\u0432\u0438\u0432\u0448\u0438\u0435 \u043d\u0430 \u044d\u0442\u043e\u043c \u0436\u0435 \u0441\u043e\u0432\u0435\u0449\u0430\u043d\u0438\u0438 \u043e \u0433\u043e\u0442\u043e\u0432\u043d\u043e\u0441\u0442\u0438 \u0432\u043d\u0435\u0434\u0440\u0438\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb.

\n
\u00ab\u041c\u043e\u0441\u043a\u0432\u0430 \u0433\u043e\u0442\u043e\u0432\u0430 \u0431\u044b\u0442\u044c \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0418 \u043a\u0430\u043a \u0440\u0430\u0437 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0438\u043b\u043e\u0442\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043c\u044b \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb. \u041c\u044b \u0445\u043e\u0442\u0438\u043c, \u0441 \u043e\u0434\u043d\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u043e\u0442\u043f\u0438\u043b\u043e\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0438 \u043f\u043e\u043d\u044f\u0442\u044c, \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043e\u043d\u0430 \u0434\u0435\u0435\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u0430 \u0434\u043b\u044f \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u0442\u0430\u043a\u043e\u0433\u043e \u0440\u043e\u0434\u0430 \u0437\u0430\u0434\u0430\u0447. \u0421 \u0434\u0440\u0443\u0433\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u0441\u043d\u044f\u0442\u044c \u0441 \u0441\u0435\u0431\u044f \u043d\u0435\u043a\u0438\u0439 \u0441\u043a\u0435\u043f\u0441\u0438\u0441 \u0441\u043e \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0437\u0430\u043c\u0435\u0441\u0442\u0438\u0442\u0435\u043b\u044c \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0430 \u0434\u0435\u043f\u0430\u0440\u0442\u0430\u043c\u0435\u043d\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 \u041c\u043e\u0441\u043a\u0432\u044b \u0410\u043d\u0434\u0440\u0435\u0439 \u0411\u0435\u043b\u043e\u0437\u0435\u0440\u043e\u0432,
\n

\u041e\u043a\u0430\u0437\u0430\u043b\u0438\u0441\u044c \u0432\u043e\u0432\u043b\u0435\u0447\u0451\u043d\u043d\u044b\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0438 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430 \u0438 \u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0435 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0438\u043b\u044b. \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u00ab\u041f\u0430\u0440\u0442\u0438\u044f \u0420\u043e\u0441\u0442\u0430\u00bb \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u043b\u0430 \u043d\u0430\u0447\u0430\u043b\u043e \u043f\u0440\u0438\u0435\u043c\u0430 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0439 \u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430\u0445, \u043e\u0434\u043d\u0430\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u043c\u0438 \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430\u043c\u0438 \u043e\u043d\u0430 \u0441\u043c\u043e\u0436\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u044f \u0437\u0430\u043a\u043e\u043d\u0430 \u043e \u0441\u0442\u0430\u0442\u0443\u0441\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b.

\n


\n\u0412 \u0441\u0432\u044f\u0437\u0438 \u0441 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435\u043c \u043d\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0440\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u043e\u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u0432 \u043d\u0430 \u0441\u0447\u0435\u0442\u0430 \u044e\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043b\u0438\u0446 \u00ab\u0431\u0438\u0442\u043a\u043e\u0438\u043d\u044b \u0431\u0443\u0434\u0443\u0442 \u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u044f\u0442\u044c\u0441\u044f \u043d\u0430 \u043a\u043e\u0448\u0435\u043b\u0435\u043a \u0414\u043c\u0438\u0442\u0440\u0438\u044f \u041c\u0430\u0440\u0438\u043d\u0438\u0447\u0435\u0432\u0430, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043e\u043c\u0431\u0443\u0434\u0441\u043c\u0435\u043d\u0430 \u0438 \u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442\u0430 \u0432 \u0434\u0435\u043f\u0443\u0442\u0430\u0442\u044b \u043f\u043e \u041c\u0435\u0434\u0432\u0435\u0434\u043a\u043e\u0432\u0441\u043a\u043e\u043c\u0443 \u043e\u0434\u043d\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u043d\u043e\u043c\u0443 \u043e\u043a\u0440\u0443\u0433\u0443\u00bb.

\n

\u041a\u0418\u0422\u0410\u0419

\n

\u041f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u043d\u0435 \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435, \u0437\u0430\u043d\u0438\u043c\u0430\u044e\u0449\u0435\u0435\u0441\u044f \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0422\u0430\u043a, \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u041a\u0438\u0442\u0430\u044f \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u043e \u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0438 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0426\u0435\u043b\u044c\u044e \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u043b\u044c\u044f\u043d\u0441\u0430 \u0441\u0442\u0430\u043d\u0435\u0442 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a \u0438 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0432 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0443 \u0441\u0442\u0440\u0430\u043d\u044b, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043a \u0412\u0441\u0435\u043c\u0438\u0440\u043d\u043e\u043c\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0430\u043c\u043c\u0438\u0442\u0443, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0451\u043d \u0432 \u0428\u0430\u043d\u0445\u0430\u0435 \u0432 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u0435 \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0441\u0442\u0430\u0432\u0438\u0442\u0441\u044f \u043b\u0438 \u043f\u0435\u0440\u0435\u0434 \u044d\u0442\u043e\u0439 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f, \u043d\u043e \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0442\u043e\u0442 \u0444\u0430\u043a\u0442, \u0447\u0442\u043e \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u043f\u043e\u0438\u0441\u043a\u043e\u0432\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u041a\u0438\u0442\u0430\u044f Baidu \u0431\u0435\u0437 \u043a\u0430\u043a\u043e\u0433\u043e-\u043b\u0438\u0431\u043e \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f \u0443\u0434\u0430\u043b\u0438\u043b\u0430 \u0432\u0441\u044e \u0440\u0435\u043a\u043b\u0430\u043c\u0443, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u0443\u044e \u0441 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u043c \u0438 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u0432\u0430\u043b\u044e\u0442\u0430\u043c\u0438.

\n

\u041e\u0431 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0438 \u0434\u0432\u0435 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0435 \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0435 \u0431\u0438\u0440\u0436\u0438 OKCoin \u0438 Huobi, \u043f\u0438\u0448\u0435\u0442 Bloomberg News. \u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 Baidu \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441 \u0430\u0433\u0435\u043d\u0442\u0441\u0442\u0432\u0430 \u043e\u0442 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u0432\u043e\u0437\u0434\u0435\u0440\u0436\u0430\u043b\u0438\u0441\u044c. 

\n", - "cashout_time": "2016-09-29T04:28:30", - "category": "bitcoin", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-28T17:15:09", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779945, - "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto\",\"money\",\"news\"],\"image\":[\"http://radikal.ru/fp/949b19ab0ea142769b5d5bad6918e850\",\"http://radikal.ru/fp/ab1e6cf8f8ce414d8555699b45afc0eb\",\"http://forklog.com/wp-content/uploads/0e6dbfdc-638d-11e6-8e55-cc0a56a8b37c-1.png\",\"http://forklog.com/wp-content/uploads/14152259_10202179476045465_1807948603_o.jpg\",\"http://forklog.com/wp-content/uploads/14022327_853179024818469_8570878217622377273_n-1.jpg\"],\"links\":[\"http://forklog.com/zhurnalu-forklog-dva-goda/\",\"http://forklog.com/birzha-bitstamp-otmechaet-pyatiletnij-yubilej/\",\"http://forklog.com/kriptovalyutnaya-birzha-gdax-dobavila-litecoin/\",\"http://forklog.com/birzha-poloniex-snimaet-s-torgov-the-dao-i-drugie-altkoiny/\",\"http://forklog.com/krupnejshaya-bitkoin-birzha-turtsii-ostanovila-rabotu-iz-za-problem-s-bankom/\",\"http://forklog.com/apparatnyj-koshelek-trezor-dobavil-podderzhku-ethereum/\",\"https://github.com/trezor/trezor-mcu/pull/103\",\"http://forklog.com/platezhnyj-servis-bitwala-vklyuchil-v-spisok-rabochih-altkoinov-dash-i-emercoin/\",\"http://forklog.com/venesuelskij-platyozhnyj-servis-cryptobuyer-dobavil-podderzhku-dash/\",\"http://forklog.com/sostoyalsya-reliz-novoj-versii-ethereum-koshelka-mist-s-podderzhkoj-coinbase-buy-widget/\",\"http://forklog.com/vedushhie-banki-mira-obedinilis-dlya-sozdaniya-novoj-kriptovalyuty/\",\"http://forklog.com/yuzhno-afrikanskij-rezervnyj-bank-gotov-k-ispolzovaniyu-blokchejna-i-kriptovalyut/\",\"http://forklog.com/yaponskie-korporatsii-testiruyut-blokchejn-platformu-dlya-chekovyh-raschetov/\",\"http://forklog.com/konsortsium-r3-cev-zapatentoval-blokchejn-platformu-dlya-infrastruktury-uoll-strit/\",\"http://forklog.com/ekonomisty-prognoziruyut-vytesnenie-sistemy-swift-blokchejnom/\",\"http://forklog.com/kompaniya-bitshares-munich-ivs-obyavila-o-nachale-ico/\",\"http://forklog.com/proekt-hyperledger-nazval-novyj-sostav-tehnicheskogo-komiteta/\",\"http://forklog.com/startap-chronicled-inc-zapustil-otkrytyj-reestr-dlya-interneta-veshhej/\",\"http://forklog.com/kompaniya-verizon-communications-zapatentovala-blokchejn-hranilishhe-klyuchej/\",\"http://forklog.com/kriptovalyutnye-kompanii-singapura-budut-poluchat-edinuyu-litsenziyu-na-osushhestvlenie-deyatelnosti/\",\"http://forklog.com/investitsionnyj-bitkoin-startap-keza-budet-spasen-blagodarya-satoshi-citadel-industries/\",\"http://forklog.com/poseshhaemost-steemit-sravnyalas-s-rannim-facebook/\",\"http://forklog.com/komanda-decent-obyavila-o-vazhnyh-izmeneniyah-v-sisteme-distributsii-tokenov/\",\"http://forklog.com/polzovateli-coinbase-v-evrope-poluchili-vozmozhnost-pokupat-kriptovalyutu-pri-pomoshhi-bankovskih-kart/\",\"http://forklog.com/osnovatel-distributed-lab-nazval-oblasti-kotorym-ne-nuzhen-blokchejn/\",\"https://medium.com/@pavelkravchenko/investor-guide-does-this-cool-project-truly-need-blockchain-bdde70a26bfb#.40cs8sfz2\",\"http://forklog.com/avtor-knig-o-blokchejne-don-tepskott-vystupil-na-ted-talk/\",\"http://forklog.com/dostignuta-dogovorennost-o-zapuske-e-vox-v-balte-odesskoj-oblasti/\",\"http://forklog.com/meriya-beloj-tserkvi-perehodit-na-blokchejn-platformu-auction-3-0/\",\"http://forklog.com/minfin-rf-protiv-pryamogo-zapreta-bitkoina/\",\"http://forklog.com/v-rossii-obsudili-kriptovalyuty-na-gosudarstvennom-urovne/\",\"http://forklog.com/partiya-rosta-utochnila-shemu-priema-pozhertvovanij-v-bitkoinah/\",\"http://forklog.com/kitaj-pristupil-k-issledovaniyu-blokchejna-na-gosudarstvennom-urovne/\",\"http://forklog.com/kitajskij-poiskovik-baidu-zablokiroval-vsyu-svyazannuyu-s-bitkoinom-reklamu/\"]}", - "last_payout": "2016-08-30T04:28:30", - "last_update": "2016-08-28T17:15:09", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 2, - "parent_author": "", - "parent_permlink": "bitcoin", - "percent_hbd": 10000, - "permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", - "reward_weight": 10000, - "root_author": "forklognews", - "root_permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", - "title": "\u0414\u0430\u0439\u0434\u0436\u0435\u0441\u0442 \u043d\u043e\u0432\u043e\u0441\u0442\u0435\u0439 \u2013 \u043e\u0431\u0437\u043e\u0440 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0438\u043d\u0434\u0443\u0441\u0442\u0440\u0438\u0438", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T17:14:12", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "paulsemmelweis", - "author_rewards": 0, - "beneficiaries": [], - "body": "Discussed below are two new articles that shed light on the grand economic chessboard controlled by governments while paving the way for more lies and manipulation by the media...\n\nGlobal central bankers, stuck at zero, unite in plea for help from governments: https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\n\nAs Fed nears rate hikes, policymakers plan for 'brave new world': https://ca.news.yahoo.com/fed-nears-rate-hikes-policymakers-plan-brave-world-005117150--business.html\n\nWhile simultaneously espousing Obama's great economic achievements in the press for years after saving the nation from peril in 2008, central bankers now openly admit there's a very weak economy and a recovery that never was. You know, facts.\n\nWhile talk of \"new tools\" needed to fight the next recession unofficially dominated the annual meeting of our monetary overlords in Wyoming, it is quite clear that the main weapon in their arsenal is the same as it was then; to maintain control over human beings by selling a never ending stream of fiction to the public.\n\n\"it may take a massive program, large enough even to shock taxpayers\"\n\"hard to convince markets and households that things will get better\"\n\"encourage the shift in mood\"\n\"prevent public expectations\"\n\"do not respond in expected ways\"\n\nAnd this gem\u2026 \"In modern monetary theory, households and business expectations are felt to play a defining role.\"\n\nSounds really modern!\n\nThe article ends with this\u2026 \"It was not clear whether such ideas will catch on. But there was a broad sense here that the other side of government may need to up its game.\"\n\nA game indeed. Of mass manipulation for the benefit of those who rule us while easily selling the public what they are doing is in their best interests.", - "cashout_time": "2016-09-28T19:47:36", - "category": "economics", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-28T17:14:12", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779934, - "json_metadata": "{\"tags\":[\"economics\",\"government\",\"central\",\"banks\",\"recession\"],\"links\":[\"https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\"]}", - "last_payout": "2016-08-29T19:47:36", - "last_update": "2016-08-28T17:14:12", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 2, - "parent_author": "", - "parent_permlink": "economics", - "percent_hbd": 10000, - "permlink": "it-s-just-a-game-to-governments-and-central-bankers", - "reward_weight": 10000, - "root_author": "paulsemmelweis", - "root_permlink": "it-s-just-a-game-to-governments-and-central-bankers", - "title": "It's just a game to governments and central bankers", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T17:13:51", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "randolphrope", - "author_rewards": 0, - "beneficiaries": [], - "body": "On the way to Chinle, Arizona USA \n\nJust off the highway over looking the desert.\n\nhttp://imgur.com/ITp3j5l.jpg\n\nI just remember one on the drive.", - "cashout_time": "2016-09-28T18:29:18", - "category": "photography", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-28T17:13:51", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779930, - "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"\"],\"image\":[\"http://imgur.com/ITp3j5l.jpg\"]}", - "last_payout": "2016-08-29T18:29:18", - "last_update": "2016-08-28T17:13:51", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 6, - "parent_author": "", - "parent_permlink": "photography", - "percent_hbd": 10000, - "permlink": "steem-it-photo-challenge-6", - "reward_weight": 10000, - "root_author": "randolphrope", - "root_permlink": "steem-it-photo-challenge-6", - "title": "Steem.it photo challenge # 6", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T17:13:21", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "ebluefox", - "author_rewards": 0, - "beneficiaries": [], - "body": "Empathy is an interesting aspect of human nature that many people do not possess. Empathy in short is the ability to view an scenario from a different perspective than your own, normally to better understand someone's perspective on certain topics or ideas. This handy skill is a learned skill and when used effectively can be used to better understand humanity.\nBut as with every neat skill, they tend to have as many pros as they do cons. So i will attempt to explain the pros and cons that i have found apparent with empathy.\n There are quite a few pros to empathy, one of which being in your reputation. A person who uses empathy often is normally seen as a loving compassionate person. Another pro that is quite noticeable is the ability to understand unexplained problems. On occasion if a problem really troubles someone or is very personal, most people will not tell anyone about it. But with empathy you can figure out what is troubling them sometimes with something as simple as \"How have you been?\". A more prominent pro of using empathy is better understanding how a person truly is. Most people wear a \"Facade\" in public or a metaphorical mask, these tend to hide their true personality from the public eye and conceal most things about them. Using empathy, you can work around the \"Facade\" and figure out how they truly are as a person, and most of the time appreciate them a bit more.\n Empathy has allot of pros but also has its fair share of cons to go with it, a good example of one of its cons is a changed perspective. under most circumstances, use of empathy becomes a habit and changes your outlook on everyone around you. This is not really very terrible, but it can lead to you disliking a person more than would have normally. Another apparent con is over-assessing someone. This can happen when you use empathy on someone and spot something that would make you feel awful, but in truth does not faze them. Here is an example. You are talking with a person and figure out that they don't have a mother. To you that may seem horrible and you start pitying them, when in truth it may not even matter to them in the slightest. A more cumbersome problem with empathy lies with information. In order to understand or sympathize with someone you need to understand the problems they put up with. If you ask too many questions about their life, they may find you \"Nosy\" or \"Annoying\". On the contrary, if you do not inquire very much about them, you will not have any idea of their standpoint at all and cannot empathize with them. The last con i will cover is drama. It is very easy to get caught in some drama if you try to understand peoples problems, some of which may be very serious. Some people are not patient enough to deal with the newly acquired drama and can sometimes make the problem worse than it need to be.\n This list most definitely did not cover every pro or con associated with empathy because they will differ from person to person however i did cover a few recurring pros and cons. whether you think empathy is worth your time and energy is up to you and your values in life and social interaction.", - "cashout_time": "2016-09-28T17:28:57", - "category": "empathy", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-28T17:13:21", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779923, - "json_metadata": "{\"tags\":[\"empathy\",\"psychology\",\"social-skills\",\"problems\"]}", - "last_payout": "2016-08-29T17:28:57", - "last_update": "2016-08-28T17:13:21", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 2, - "parent_author": "", - "parent_permlink": "empathy", - "percent_hbd": 10000, - "permlink": "the-pros-and-cons-of-empathy", - "reward_weight": 10000, - "root_author": "ebluefox", - "root_permlink": "the-pros-and-cons-of-empathy", - "title": "The Pros and Cons of Empathy", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": "2243580957008", - "active": "2016-09-11T21:09:09", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "steemsquad", - "author_rewards": 588, - "beneficiaries": [], - "body": "\n

We are STEEMSQUAD, a Steemit inititative to promote diversity and quality of content by featuring authors from the school of minnows.

\n

\"steem-squad3\"
\n

\n

WHAT is #steemsquad?

\n

Steemsquad is an initiative of multiple minnows whose objective is to promote diverse and quality content and their work which may not have a chance to get noticed when published in the main streem. STEEMSQUAD initiative will try to tweak the game to equally distribute the wealth among its members. 

\n

STEEMSQUAD is a community-backed account responsible for posting blogs of qualified authors and at the same time upvotes quality blog posts of its members.

\n

Members of STEEMSQUAD are from across multiple timelines to ensure a 24/7 support and active participation in Steemit.

\n

The Issue at Hand

\n

For quite some time, there has been a noticeable trend as to who gets rewards. Those favored are the whales themselves, members with high reputation levels, incoming popular personalities and celebrities either from the cryptocurrency world or the entertainment world. A number of people from the finance institutions have joined as well and have garnered huge rewards on their \u201cintroductory\u201d posts.

\n

And what happens to those who are not celebrities, unknown personalities from not-so-popular backgrounds? Their posts get dumped, thrown into oblivion. Then all the sweat and blood poured spilled into writing the blog just go to waste. This is where #steemsquad comes in.

\n


\n

WHY We Do It?

\n

Steemit is a social media platform where **EVERYONE** gets paid for creating and curating content, as promised if and when you decide to dive into the Steemit Ocean. 

\n

It leverages a robust digital points system, called Steem, that supports real value for digital rewards through market price discovery and liquidity.

\n

We aim to give EVERYONE a chance to get noticed, earn rewards, and be a part of a community of people helping people.

\n

You Can Succeed

\n

All HOPE is NOT LOST. We have seen minnows rise to the occasion. With a positive attitude, an unwavering determination, lots and lots of good quality posts (one is enough though to get you 15k, if you hit the nail on the head), there is no reason why you can\u2019t be successful here in Steemit.

\n

#steemsquad will support you along the way.

\n

OUR GOLDEN RULES

\n
    \n
  1. We give priority to quality contents from low-powered profiles (minnows).
  2. \n
  3. The published author gets 100% of SBD. However, 50% of which goes to the author\u2019s SP to allow the author to power-up leveraging his/her SP to upvote other writers.
  4. \n
  5. Any SP earned by STEEMSQUAD remains in the STEEMSQUAD account to gain more voting power for the benefit of its members.
  6. \n
  7. Pay-it-forward. The powered-up author commits to help other writers by upvoting and commenting to blog post to increase the post\u2019s value.
  8. \n
\n


\n

HOW TO GET PUBLISHED BY STEEMSQUAD

\n

\n

PHOTO CREDIT: Anna Frajtova / shutterstock.com
\n

\n
    \n
  1. FOLLOW the account STEEMSQUAD and be a member of the initiative.
  2. \n
  3. You have to signify your willingness to join by coming to our official chatroom in https://steemit.chat/channel/steemsquad. Introduce yourself and state your intention to join the initiative. Include a link to your Steemit profile.
  4. \n
  5. Submit your article in plain text format and links to images. Send your entry to @steemit.asia or @sebastien or @jaycobbell as a PM.
  6. \n
  7. Article must be at least 300 words with at least 1 image.
  8. \n
  9. Give credit to the images you use.
  10. \n
  11. If you quote someone, give credit as well.
  12. \n
  13. At least 80% of the article must be your own.
  14. \n
  15. You will get feedback after 24 hours and a schedule will be provided when your work will be published.
  16. \n
  17. Once it is published, it will be promoted to the chatroom by either @steemit.asia or @sebastien or @jaycobbell in https://steemit.chat/channel/steemsquadpromotional for all members to see. This is where all promotions are done.
  18. \n
\n


\n

HOW TO GET UPVOTED BY STEEMSQUAD AND MEMBERS

\n


\nPHOTO CREDIT: Clipartix.com
\n

\n
    \n
  1. To get a chance to be upvoted by STEEMSQUAD, you must have a QUALITY blog post.
  2. \n
  3. Use the tag #steemsquad in your blog post.
  4. \n
  5. Our curators will browse through all blog posts using our official #steemsquad tag name and choose will notify the author by commenting that the post has been chosen as a featured post/author. It will be promoted in our chat channel https://steemit.chat/channel/steemsquadpromotional.
  6. \n
\n


\n

STEEMSQUAD ACCOUNT SECURITY

\n

The Posting Key (The posting key is used for posting and voting. It should be different from the active and owner keys) will be given to at least 3 members of STEEMSQUAD responsible for posting blog posts in 24 hour cycle.

\n

The Active Key (The active key is used to make transfers and place orders in the internal market) will be given to 2 members of STEEMSQUAD. One member will act as auditor/backup in case the primary member is not available.

\n

The Owner Key (The owner key is the master key for the account and is required to change the other keys) is given to one Whale sponsor and 2 other members of STEEMSQUAD.

\n

A member responsible for the account security may hold more than one (1) key as shown above.

\n


\n

OUR MENTORS

\n

There are people we consider as examples on the platform. Inspiration, mentors.

\n

@juneaugoldbuyer
\n@thedollarvigilante
\n@dragonslayer109
\n@stellabelle
\n@charlieshreem
\n@rogerkver
\n@donkypong
\n@tuck-fheman
\n@masteryoda
\n@andrarchy 

\n

\"steem-squad-FOLLOW-US\"
\n

\n", - "cashout_time": "2016-09-29T11:08:54", - "category": "introduceyourself", - "children": 18, - "children_abs_rshares": "2254360518257", - "created": "2016-08-28T17:13:18", - "curator_payout_value": { - "amount": "173", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779920, - "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemsquad\",\"steemit\",\"minnows\",\"writing\"],\"users\":[\"steemit.asia\",\"sebastien\",\"jaycobbell\",\"juneaugoldbuyer\",\"dragonslayer109\",\"stellabelle\",\"charlieshreem\",\"rogerkver\",\"donkypong\",\"tuck-fheman\",\"masteryoda\",\"andrarchy\"],\"image\":[\"https://c1.staticflickr.com/9/8171/29209353271_2eabbba74f_o.png\",\"https://cdn.elegantthemes.com/blog/wp-content/uploads/2016/02/Essential-Blogging-Skills-Know-your-Audience-shutterstock_222537538-Anna-Frajtova.png\",\"http://clipartix.com/wp-content/uploads/2016/04/Thumbs-up-clipart-3.png\",\"https://c1.staticflickr.com/9/8305/29179909862_ed27607510_o.png\"],\"links\":[\"https://steemit.chat/channel/steemsquad.\",\"https://steemit.chat/channel/steemsquadpromotional\",\"https://steemit.chat/channel/steemsquadpromotional.\"]}", - "last_payout": "2016-08-30T11:08:54", - "last_update": "2016-08-28T17:13:18", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-13T14:10:24", - "net_rshares": "2243580957008", - "net_votes": 57, - "parent_author": "", - "parent_permlink": "introduceyourself", - "percent_hbd": 10000, - "permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", - "reward_weight": 10000, - "root_author": "steemsquad", - "root_permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", - "title": "Hello! We Are STEEMSQUAD And We Are Here to Support The Minnows. Read On.", - "total_payout_value": { - "amount": "566", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": "2243580957008" - }, - { - "abs_rshares": 0, - "active": "2016-08-28T17:13:03", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "okay", - "author_rewards": 0, - "beneficiaries": [], - "body": "## A picture is worth a thousand words, more so in astronomy ##\n\n**Let's take a look at the coming week's sky**\n\n\nhttp://www.skyandtelescope.com/wp-content/uploads/Venus-Jupiter-27Aug2016_f.jpg\n(Image courtesy of Sky and Telescope)\nOn August 27th, about 45 minutes after sunset, go outdoors and start looking low above the horizon in the west for an amazingly close pairing of Venus and Jupiter.\n\nhttp://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\n\n\nNext weekend, shortly after sunset, the thin Moon (waxing crescent) steps away from Venus and Jupiter.\n\nLooking at the night sky is a great joy! Free for everyone with no ticket required. You can watch the evening sky with your naked eye, no need for telescope or binoculars for these beautiful astronomical events.\n\n*Stay tuned for next week's sky.*\n\n\n\n\n If you enjoyed this post please vote for my witness node. Learn how to vote for witness `okay` **at the end of my witness post** by [**clicking here**](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network). ", - "cashout_time": "2016-09-28T16:11:21", - "category": "science", - "children": 5, - "children_abs_rshares": 0, - "created": "2016-08-28T15:45:33", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 778828, - "json_metadata": "{\"tags\":[\"science\",\"astronomy\"],\"image\":[\"http://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", - "last_payout": "2016-08-29T16:11:21", - "last_update": "2016-08-28T17:13:03", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 4, - "parent_author": "", - "parent_permlink": "science", - "percent_hbd": 10000, - "permlink": "this-week-s-sky-aug-27-sep-3", - "reward_weight": 10000, - "root_author": "okay", - "root_permlink": "this-week-s-sky-aug-27-sep-3", - "title": "This Week's Sky Aug-27/Sep-3", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": "130408996119", - "active": "2016-08-28T17:36:42", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "skyefox", - "author_rewards": 125, - "beneficiaries": [], - "body": "As I have stated in earlier posts, gardening is currently my obsession.. it's seems wild to me that the standard is to work for currency and trade currency for food rather than just growing your own food. \n

Here is my small harvest from this morning!

\nEvery morning I go out and eat a couple of my cherry tomatoes, a few leafy greens, and usually 1/2 a leaf of my sweet basil. It's a wonderful thing to wake up, take the dog out and get a healthy organic little snack. I love it.\nhttps://s14.postimg.org/62aqviz0h/IMG_1804.jpg\n\n\nI understand that gardening takes time, effort, and a little bit of knowledge but in my opinion it is one of the most reward \"hobbies.\" This is my first year gardening. I decided to garden this year because I have been doing more and more reading about the American food industry and my conclusion is that the American population are being made sick on purpose through the food we eat. I don't know exactly what does what in our food but it seems absolutely insane to me that we can't get the FDA to evaluate any dietary supplements but they will evaluate and even vouch for these lab made pharmaceutical drugs. \n\nAll of this lead me to feeling a strong urge to grow organic food. I honestly feel guilty when I feed my family and I don't fully believe in what we are eating. Don't get me wrong, I love pepperoni pizza but ignorance is bliss, and I am not ignorant to what I am eating. \n\nI believe I am slowly heading down the path of becoming a vegan as I gain more knowledge. I have always been a hunter and a fisherman, it's what I was taught as a young boy in the north woods. I love to hunt and fish, but I also have a very deep compassion for life. Not human life, but life in general. I believe that we are intelligent enough as a species to live without causing harm to other living things that are equipped with nervous systems. I guess I am just realizing day by day that things are not necessarily what I have been told... \n

This kind of sums up how I feel currently...

\nhttps://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\n\nI am not a very good consumer. I am very frugal and calculated with my money, sometimes to a fault. I'm also not good at being an employee and just being a \"gear in the machine.\" I was not built to work and be told what to do while someone acts as if their employment position somehow gives them a higher status than I. We are humans, you just have a different job. These factors, and many others, have lead to me being self employed and trying to find my way on the internet. I have dabble in many things online and I have learned enough to at least provide myself with enough income to pay my mortgage, bills, etc.. \n\nI am also someone that is in the prepper mind state. I have started my small stockpile of beans, rice, and various other dried foods. I think that the American people have become complacent and many of us are just chasing the carrot we were instructed to chase. Many people seem to not realize the fact that we as a country heavily depend on other people or corporations for the things we use everyday. If water and electricity were to be shut off and panic set it, many people would die because they don't know what to do without someone else providing them with these luxuries. \n\nI don't like the idea of depending on anyone for anything. I have always been someone who provided for myself. I got a job at 14 years old at the local bakery working Saturday mornings so that I could get my first computer myself. I worked for weeks, since I was only getting paid $5.15/hour (roughly 13 years ago) it took me a long time to save up for a computer to play Counterstrike 1.5... We had 6 kids in our house in a \"middle class\" family, needless to say we were told to get jobs as early as possible to acquire our luxuries. Since then I have had the mindset that I don't want to allow someone else to be \"the hand that feeds\", and that applies to food, water, electricity, and even knowledge of my child. \n\nDEPENDENCY OPENS THE DOORS FOR EXPLOITATION! And in a capitalist driven global economy, if it can be exploited, it often is. \n\nMy apologies, there I go again, going of on some rant instead of just showing you the damn garden update. I already can't wait for next spring. I have been buying heirloom vegetable seeds and thrift shopping for large planters for $1 so that next year I can grow lots more. \n

This is the Pink Brandywine that I am so excited about!

\nThese guys took forever to grow. I didn't know what I was doing and I had put too many plants in 1 planter which caused them to compete for the nutrients. On top of them a strong storm came through and blew these guys over and bent there stalks horizontal. I really didn't know if I would get any fruit from them, but they are changing and I can't wait to eat these!\nhttps://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\n\nhttps://s14.postimg.org/e3txgbbgh/IMG_1800.jpg\n\nHere is a cucumber that is growing a little goofy. Not sure why but its like a beer can cucumber... lol\nhttps://s14.postimg.org/c1tg22dhd/IMG_1802.jpg\n\nA more normal cucumber... \nhttps://s14.postimg.org/610t23x6p/IMG_1803.jpg\n\nAnd this is my $3 table I built so that I could start my seeds indoors under some fluorescent lights. \n\n\nhttps://s14.postimg.org/6t3h1b1dt/IMG_1805.jpg\n\n\nThank you for reading and happy gardening!", - "cashout_time": "2016-09-28T18:11:57", - "category": "garden", - "children": 2, - "children_abs_rshares": "130408996119", - "created": "2016-08-28T17:12:54", - "curator_payout_value": { - "amount": "15", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779916, - "json_metadata": "{\"tags\":[\"garden\",\"photography\",\"rant\",\"food\"],\"image\":[\"https://s14.postimg.org/62aqviz0h/IMG_1804.jpg\",\"https://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\",\"https://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\"]}", - "last_payout": "2016-08-29T18:11:57", - "last_update": "2016-08-28T17:12:54", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-12T21:18:18", - "net_rshares": "130408996119", - "net_votes": 37, - "parent_author": "", - "parent_permlink": "garden", - "percent_hbd": 10000, - "permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", - "reward_weight": 10000, - "root_author": "skyefox", - "root_permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", - "title": "A small garden update... My Pink Brandywine Tomatoes are coming!", - "total_payout_value": { - "amount": "123", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": "130408996119" - }, - { - "abs_rshares": 0, - "active": "2016-08-28T18:08:06", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "fitiliper1985", - "author_rewards": 0, - "beneficiaries": [], - "body": "
http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png
\n

\n

Before I was in a relationship, I didn't have much sex. My first sexual intercourse occurred while I was travelling overseas on a holiday by myself. I met a woman in hawaii at the airport, and later had sex with her.

\n

I had done a lot of masturbating prior to this. I had often thought about having sex, and I found that my sexual drive caused me to behave in ways that I normally wouldn't. 

\n

\n
https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg
\n

\n

For example I would follow women I found attractive, or I would try to look up their skirts, or I would wander about at night to try to look into bedroom windows.

\n

When I met someone that I knew I would marry, I thought I would be able to have sex as much as I liked because my wife would always be available to have it with me. This turned out to be untrue. My wife didn't want to have sex as often as I wanted to, and I found myself still masturbating while I waited for the next time to come.

\n

I don't think women understand the power of their husband's sexual drive. 

\n

\n
http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg
\n

\n

Men are attracted to women by how they look. It doesn't matter if they are strangers. Men will look at a woman dressed in  a certain way and will start feeling horny. As soon as they ejaculate, the feeling of horniness goes, but will return in a couple of hours. When the sexual desire comes upon a man, it becomes his dominating thought, and it demands to be satisfied. That's why many men then masturbate in order to relieve the pressure on their thoughts. If unrelieved the pressure grows and if the wife is unwilling to have sex, then some men will look for other women to have sex with. 

\n

The sexual pressure is constantly present in a man's mind until relief comes.

\n

\n
https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg
\n

\n

Most women are not as interested in sex as men. 

\n

\n
https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg
\n

\n

Women are more interested in relationship.  Women have sex with a man in the hope that the man will want to stay in their life and have a relationship with them. 

\n

Some women use sex as a bait to catch a man, and then when the relationship is happening, they are not as interested in sex anymore. Women enjoy sex, but as part of a fulfilling relationship. Men just want to put their penis into a vagina and ejaculate. As soon as ejaculation occurs, a lot of men lose all interest in the woman. The woman then feels hurt and used because she didn't get what she wanted which was relationship. Men will say anything they think a woman wants to hear in order to have sex.

\n

Wives who have sex with their husbands when not really wanting it, feel used by their husbands. Women also can be selfish when they demand sex from men who are not in the mood. 

\n

God created sex to be enjoyed in a committed relationship between a man and a woman who are one person physically, spiritually, emotionally, and mentally. 

\n

Sex is a part of the relationship, not the main thing. If a man demands sex then he is being selfish, and his relationship will be harmed if the woman gives sex to the man when she is not wanting to have it. If the man wants sex with his wife, then he must give her what she wants. He must romance her and give her a good relationship. Then if sex happens, it will be enjoyable for both of them. This will build the relationship.

", - "cashout_time": "2016-09-28T17:56:42", - "category": "sex", - "children": 5, - "children_abs_rshares": 0, - "created": "2016-08-28T17:12:42", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779915, - "json_metadata": "{\"tags\":[\"sex\",\"psychology\",\"life\",\"story\",\"\"],\"image\":[\"http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png\",\"https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg\",\"http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg\",\"https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg\",\"https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg\"]}", - "last_payout": "2016-08-29T17:56:42", - "last_update": "2016-08-28T17:12:42", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 12, - "parent_author": "", - "parent_permlink": "sex", - "percent_hbd": 10000, - "permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", - "reward_weight": 10000, - "root_author": "fitiliper1985", - "root_permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", - "title": "In a relationship, sex becomes a matter of selfishness or unselfishness.", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T17:12:39", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "s0lo", - "author_rewards": 0, - "beneficiaries": [], - "body": "\n

\n

Slightly more than a month since then, how did the Ethereum classic (ETC). The ETC team presented a \"road map\" of development of the project, at the first meeting of the supporters of Ethereum Classic (ETC), held on 18 August in London.

\n
The basic version of partitioning the network according to the version of ETC was this:
\n
\"The separation of Ethereum was the result of a difference in the understanding of the basic principle of cryptocurrency. At that time, as fork (ETH) was carried out to recover the stolen funds to investors DAO, Ethereum classic is the original version, based on the principle that \"code is law.\"
\n

Supporters of the ETS argue that the decentralization of infrastructure are insufficient to minimize the possibility of hacking and fraud. For example, the developers of Ethereum actively invested their funds in DAO. Therefore, the decision about hard forks could be dictated by a conflict of interest.

\n

Community ETC believes that all key aspects of the ecosystem should be decentralized, including technological functions such as research and development, and public and administrative functions, including marketing, development and management of the DAPP.

\n

There are plans to remove so-called \"bomb of complexity\" (constant increase in the complexity of mining at ETH) to provide POW mining and make ETC more viable for the miners.

\n

In addition, the community is considering a new economic policy and hybrid solutions using Proof-of-stake (PoS). And, finally, developed new technology to ensure the functioning of \"smart contracts\", but no details.

\n

Classic Ethereum plans to develop the community to the upcoming events in Toronto, Shanghai and Melbourne. These meetings should be used to create local centers. In addition, the stage of development of the relationships with universities, startups and companies. Road map to the end of this year aims to reach consensus with the main team ETC. and receive financial support of developers from third parties.

\n

Initially, the team ETC was planning to copy all the updates that are entered in the ETH, but later decided to give myself a certain amount of autonomy. how and by whom it will be implemented - at the moment neizvestnoy

\n

In 2017, ETC will test different mechanisms of consensus and optimal monetary policy system. In addition, meetings will be held in an expanded format to appeal to a greater number of miners and the following year to create their own ecosystem the development of DAPP.

\n

Perhaps in the course of the year will be able to understand how realistic are attempts to \"overtake and surpass\" team Baterina in the main activities of the Ethereum project.

\n

By 2018, the community ETC choose PoW or hybrid mechanism of consensus and create the proper monetary policy.

\n

More concrete steps at this meeting was not presented.

\n

The rate continues to fall.

\n

Despite the publication of the road map and programme of community development, exchange rate ETC continues to fall. ETC cryptocurrency by market capitalization behind Litecoin and Steem, even given the significant losses the last, and is now in sixth place. ETC remains below the psychologically important level of $2.00 that is displayed on the chart.

\n

\n

ETC trend/USD exchange Poloniex has broken below the most recent level of the fractal at $1.60. A daily close below this level should lead us to a level of $1.34. Please note that the conversion line (blue) currently has resistance at $ 1.7235. 

\n

In addition, the trading volume of the Ethereum classic naturally falling after the initial hype created around this cryptocurrency. This also indicates a greater risk and tells about the deterioration of the situation. Thus, the market is looking down with a possible reversal on the $ 1.34 or even $ 1.00.

\n", - "cashout_time": "2016-09-28T17:44:00", - "category": "road", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-28T17:12:39", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779914, - "json_metadata": "{\"tags\":[\"road\",\"map\",\"etc\",\"ethereum\",\"classic\"],\"image\":[\"http://bits.media/images/news/260816/260816_ethereum-classic-roadmap_1.jpg\",\"http://bits.media/images/news/260816/260816_ethereum-classic-roadmap_2.jpg\"]}", - "last_payout": "2016-08-29T17:44:00", - "last_update": "2016-08-28T17:12:39", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 1, - "parent_author": "", - "parent_permlink": "road", - "percent_hbd": 10000, - "permlink": "road-map-ethereum-classic-helped-to-keep-the-course", - "reward_weight": 3950, - "root_author": "s0lo", - "root_permlink": "road-map-ethereum-classic-helped-to-keep-the-course", - "title": "Road map Ethereum Classic helped to keep the course.", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - } - ] -} \ No newline at end of file +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-15T05:28:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-m3001", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hi, I'm A.M for now, I'm in my mid-20s and want to share my story with working and facing this thing called life after I watched a lot of YouTubers like Thomas James \"TomSka\" David Brown \u201cboyinaband\u201d and many others who have very openly shared their hardships, they have inspired me to write this\u2026.. Whatever this is.\nI don't consider myself a good writer so bare with me here.\nTo try to keep this post organized and make sense I'll highlight the point I want to talk about and tell the relevant part of my story, you can connect the pieces all together at the end.\n\n**First how am I?** \nI grow up in the countryside I went to normal school when I was yang, because I was the quiet introvert and wasn't from the town I was in I got bullied a lot for most of my time at school, I got through school time knowing just two friends, I was OK with it.\nI genuinely lost interest in school when I was in the ninth grade It seemed more like a memory test than a way of learning so I started looking for ways to make money, \"why waste time learning things irrelevant in real life if I can make money now\" my naive 16 years old self said, don't get me wrong I didn't think I was done with learning I just wanted to learn in my own way, and I didn't stop school, now I'm in part time Business school, so back then I started looking for any way to make money in the last 5 year I tried: working in sales for over 2 years, selling products online, becoming instructor online, worked as SEO & social media consultant, tried starting my own business for 4 times, and for the last year and half I taught myself how to program and how to use Unity game engine and now I'm working on my first game, I can easily and proudly say that I didn't succeed at any of what I did so far, but I've learned a lot every time and I would do it all over again if I had the chance.\nThe process of picking myself up every single freaking time was a living hell and I got desperate many times.\nbecause I saw a lot of people feeling relevant to what David said in his video I want to share how I managed to keep my sanity and my opinion about some point he brought in his video.\n\n\n**Not thinking your work is good enough:**\nIs that really a bad thing? not being satisfied with what you just accomplished is a sign that you always look forward to what you still can do.\nI remember after I published my first course on Udemy I got invited to a hangout and I went for it I thought I'll give myself some slack, while I was there someone shouted out \"this guy here just published his first course let all give him a clap shall we\" for some reason he thought that was a good idea, I don't think I can blame him his intentions were good, I never tried to put a smile as hard as I did that moment I guess I just didn't want to look like a selfish prick, but the truth that I wasn't happy about what I accomplished I was thinking about my bad English poor structure of the course and was I being a sellout for trying to sell my knowledge? halfway of creating the course, I was already thinking about 5 other things I wanted to do next.\nI think there's nothing wrong about not being satisfied with what you finish, I think It's a good sign of an ambitious creator.\nWhen you first make the decision to accomplish something It looks like that godly thing that you think It would feel good to have or do, but when you start turning that big sexy thing to a small to-do list somewhere the appeal you had to that thing will disappear to a certain point, it's not that godly sexy thing you thought about before it's becoming a part of your routine now you know the process of doing that thing It's not a mystery anymore.\nI think that's why they say: \"It's about the journey, not the destination\".\n\n\n**Not taking care of yourself:**\nIt's hard to keep taking care of yourself to others people standards, whether it's about looking ripped putting makeup or buying the latest clothes, instead find your own save point and move forward from there if you feel the need to.\nWhen I was working in seals I had to look my best most of the time's which was exhausting more than the work itself and what made it worst is that some coworkers starting hinting that I need to start working out to look sharper and more confident.\nBecause I was desperate for results from my work I started going to the gym and I got stuck at joining for a month or two then giving up for half a year couple of times, every time I stopped going to the gym I over beat myself saying that I need this for my work, I need more money to do a lot of things, if this work didn't go well what else Am I going to do, eventually I usually took it out on food, I don't even want to start thinking what would have happened to me if my body was able to store fat.\nTrying to take care of yourself to others standards can be very exhausting, I felt down because I was putting so much effort in things I don't really care about to get others approval, I genuinely don't care about having a ripped body, it would look cool sure but I'm not willing to put all that effort into health and looks at least for now, who knows maybe in the future things will be better and I'll be willing to put the effort necessary to have 6 pack abs (wink wink ladies).\nNowadays I eat better than I used to, I still eat some junk food but things are much much better than they were 2 years ago, when I fell down I still go buy and drink a liter of Pepsi but at some point that was my morning coffee, as for my looks I cut my hair very short so I would have one less thing to worry about in the morning, I shave my beard once every couple of weeks I change my cloth every two or three days even if I didn't go out.\nThe point is I take care of myself for my own sack, It was much worse before and I'll always keep working to improve pit by pit.\nIt's about building habits not getting motivated for a couple of weeks then beating yourself for not being able to keep up.\n\n\n**Not mastering one skill:**\nI worked in sales, instructed online, worked as SEO and social media consultant, self taught myself how to program and make games but I don\u2019t think I\u2019m the right person to talk about this, all I\u2019m saying that if you didn\u2019t find that one true call that is right for you, you might be a \u201cmultipotentialite\u201d if you want to know what exactly does this mean I urge you to watch Emilie talk at TedX\nhttps://www.youtube.com/watch?v=QJORi5VO1F8\nAnd check the blog too if you want to know more \nhttp://puttylike.com/\n\n**Everything happens for a reason........ or does it?**\nWhen I was young I was fortunate to know a good old religious man, I don\u2019t know about your perspective about religions but hear me out this isn\u2019t a sermon, I still remember when he tried to teach me that everything happens for a reason I was like \u201cWHAT\u2026\u2026. Oh really, then what is the reason for this and this and that\u201d my question didn\u2019t stop and I wasn\u2019t asking nicely either yet, somehow he was calm about it like some kind of monk, I don\u2019t know if I ruined his day or not but I feel bad for taking the world misery out on him that day, he was just a simple man who was doing what he think is good for others, his intentions were good but unfortunately for him I wasn\u2019t a simple person, I overthink everything and everyone, it\u2019s my blessing and my curse, later I told my family about him and I was surprised that they knew him, apparently everyone knows each other in the countryside, they told me about what he was facing lately personally, financially, and emotionally, I didn\u2019t believe that someone who is facing all that isn\u2019t depressed or angry and even trying to do good for others at least by his believes, I wanted to know more about him he got my interest, I wanted to know if he\u2019s an imposter who is just putting a good face or not because a part of me didn\u2019t believe how can he be that good, I kept asking about him from time to time and sometimes I even went to his \u201clessons\u201d, eventually I went to face him with what I know about him like a detective facing a criminal, the crime of being that simple yet trying to be better than me, It\u2019s pathetic I know It\u2019s just how my brain works sometimes, because I used to take pride of being logical about everything and not believing in anything without questioning it, it bothered me how can he be at peace with his life and I\u2019m not even that he\u2019s facing a lot more than I\u2019m, I faced him and told him everything then asked how can you be this calm about everything that is happening in your life, he had a faint smile and said \u201cI don\u2019t know the reason for everything that is happening right now but everything happens for a reason\u201d I remember holding my fist hard and walking away, maybe I was holding my fist trying not to hit him for not being realistic like me or probably not to beat myself for not being half the man that he was.\nI don\u2019t know about your perspective about religions and I\u2019m not here to tell you about mine but I respect that some religions teach that everything happens for a reason, is it the truth? Does everything happens for a reason? I don\u2019t know, I don\u2019t think that is even the point, It\u2019s silly to even get in an argument about this because no one can be sure about it, it\u2019s simply just a belief, it\u2019s simply teach you to not overthink about the reasons for everything around you, just learn from it if you can and focus on what you can do, it\u2019s kind of funny for me to tell you not to overthink about somethings because I\u2019m sure my 19 year old me would punch me right in the face, but it\u2019s just too draining and exhausting to try to find a reason for every bad thing that have happened to me or to others.\nIn the last three years two of my best friends died, the first one I knew for about nine years and the other one for around five, both killed, both in a way they didn\u2019t deserve to, each time I had to force myself to focus on the 0.0000001% full part of the cup or else I would have lose my sanity.\nI would hate to think what would be my thought process if someone tried to sell me religion like a product, some of them would be like \u201cHi son, you should follow my beliefs because I\u2019m 100% sure that I\u2019m right and everybody else is wrong and if you don\u2019t, well you\u2019re FU**ED\u201d that would have disfigured some of the beliefs that helped me get better.\nControlling your stream of thoughts will be the hardest thing you\u2019ll ever have to do in your life, but if mastered it you\u2019ll become unstoppable.\n\n\nI\u2019ve been getting into the game industry for around year and half now, I don\u2019t have any experiance in the field but I\u2019ve other experiences that many don\u2019t, working in sales made me learn a lot about people's motivations and incentives, I saw a lot of people jump to make purchase while other chicken out last minute, you don\u2019t get to learn about this in a book or an NLP course, you only get to learn this experience by working in sales first hand, working as an SEO and social media consultant made me care about the little details like posting in the right social medias that is more relevant to your audience, more isn\u2019t always better, choosing the right words colors and timing for best result, sometimes modifying your content for a better marketing or not going into a certain niche even if there\u2019s an audience for it because it doesn\u2019t suit your brand, teaching online made me learn that the selling point isn\u2019t the end goal, helping and mentoring students even after they have purchased the course was way more important than I thought, the feedback I got about the course was crucial to take the course to the next level and some student even helped me with some marketing.\nIf you know anything about the mobile game industry you can see how these experiences can be helpful, I can imagine the kind of journey I want to create for the player because I can build the motivations and incentives I want for him, while I\u2019m building the player journey I\u2019ll always keep in mind to put the monetization and ads the right way so all of them can work seamlessly together for a better player experience, and taking care of existing players and community will always be a priority, I wasn\u2019t happy and cheerful when I had to learn these experiences the hard way, I thought I was just failing, I even remember crying myself to sleep every time I decided to pull the plug on something I was working on, but eventually It worked out somehow I think.\n\u201cyou can't connect the dots looking forward, you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something - your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life\u201d.\nSteve Jobs\n\n\nI want to share some of the tricks I used that helped my in general to get my life together:\n\n**Music**\nlisten to cheerful music, even if it might not be exactly what you listen to usually but try them for a while, my favorite type or music is Rock and Metal it\u2019s loud and make me feel empowered but sometimes it's not what I need to change my mood so I started listening to electro music mostly Drum & bass, I didn\u2019t like it at first, I\u2019m human I don\u2019t like to change, but forcing myself to listen to it for while change my perspective about it and I started listening to it while I\u2019m working, and it worked.\n\n\n**habits not motivation**\nWe\u2019re slaves to our habits, it\u2019s exhausting to do something that\u2019s you\u2019re not used to for quite a while, so invest your effort and time to build your habits pit by pit no matter how slow it will take, measure your progress and celebrate your success no matter how small they\u2019re, it\u2019ll make all the difference in your life in the long term.\n\n**work in a group**\nNo matter how introverted person you think you\u2019re, you\u2019re still human at the end of day and you need your dose of human interaction so try to work in group if you can, if you don\u2019t have that luxury (like me) work out side from time to time, library, coffee shop, parks all works, changing your surrounding and environment can change your mood, you can try changing your room\\office decor every couple of weeks too.\n\n**warm-blooded pet**\nGet a warm-blooded pet it helps, I tried fish and turtles but didn\u2019t really work for me they just stared at me with their empty eyes, I have a cat for two year now and It helped, maybe it\u2019s having the sense of that there is a creature that needs you to look after him, it\u2019s helped me not to feel completely unworthy in some bad day.\n\n\nFinally I hope this help you in any way it can, and hope it will find its way to all who needs it.", + "cashout_time": "1969-12-31T23:59:59", + "category": "story", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T04:53:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 811667, + "json_metadata": "{\"tags\":[\"story\",\"philosophy\",\"life\",\"psychology\",\"secret-writer\"],\"links\":[\"https://www.youtube.com/watch?v=QJORi5VO1F8\"]}", + "last_payout": "2016-09-14T16:58:03", + "last_update": "2016-08-15T05:28:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "how-i-managed-depression-and-work", + "reward_weight": 10000, + "root_author": "a-m3001", + "root_permlink": "how-i-managed-depression-and-work", + "title": "How I managed depression and work", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-07T21:34:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-man", + "author_rewards": 0, + "beneficiaries": [], + "body": "Trying to repost to FB", + "cashout_time": "1969-12-31T23:59:59", + "category": "homeschooling", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-07T21:34:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 670168, + "json_metadata": "{\"tags\":[\"homeschooling\"]}", + "last_payout": "2016-09-07T09:52:42", + "last_update": "2016-08-07T21:34:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "jamiecrypto", + "parent_permlink": "raising-leaders-instead-of-rulers", + "percent_hbd": 10000, + "permlink": "re-jamiecrypto-raising-leaders-instead-of-rulers-20160807t213425757z", + "reward_weight": 10000, + "root_author": "jamiecrypto", + "root_permlink": "raising-leaders-instead-of-rulers", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T21:34:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "Finally someone is saying it out loud. thank you!!", + "cashout_time": "1969-12-31T23:59:59", + "category": "life", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-30T19:37:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 496078, + "json_metadata": "{\"tags\":[\"life\"]}", + "last_payout": "2016-08-30T10:16:39", + "last_update": "2016-07-30T19:38:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "agent", + "parent_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "percent_hbd": 10000, + "permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", + "reward_weight": 10000, + "root_author": "agent", + "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T21:01:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "add katie-lynn boulard on FB, she's my friend and she's currently doing an exchange in bangkok. She's really sweet and she said you can come to hers for the evening if you want to have some company. she only has a room so no bed for you :/ but at least something, I'm sure she can give you a meal and just some company. :))", + "cashout_time": "1969-12-31T23:59:59", + "category": "travel", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-13T20:34:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 100405, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "2016-08-25T12:51:45", + "last_update": "2016-07-13T20:34:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 20, + "parent_author": "ashleybr", + "parent_permlink": "test", + "percent_hbd": 10000, + "permlink": "re-ashleybr-test-20160713t203411015z", + "reward_weight": 10000, + "root_author": "ashleybr", + "root_permlink": "test", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T23:37:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "nice radio", + "cashout_time": "2016-09-05T23:36:21", + "category": "music", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-29T23:36:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1048732, + "json_metadata": "{\"tags\":[\"music\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-29T23:36:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "roelandp", + "parent_permlink": "radiosteem-is-looking-for-new-playlist-curators-especially-people-without-sbd", + "percent_hbd": 10000, + "permlink": "re-roelandp-radiosteem-is-looking-for-new-playlist-curators-especially-people-without-sbd-20160829t233620001z", + "reward_weight": 10000, + "root_author": "roelandp", + "root_permlink": "radiosteem-is-looking-for-new-playlist-curators-especially-people-without-sbd", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 84444748327, + "active": "2016-08-18T22:37:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 27, + "beneficiaries": [], + "body": "http://www.gotovim.ru/pics/sbs/kurshashvostoch/00.jpg\n\nchicken (boneless b\u0451dryshki) - 800-900g; Lemon - 1 pc .; Garlic - 2 cloves; olive oil - 4 tbsp. l .; spices: paprika (powder) - 1 tsp .;. turmeric - 1 tsp .;. Powdered cumin - 1 tsp .;. Coriander (ground) - 1 tsp .;. cinnamon - 1 pinch; Allspice (ground) - 1 pinch; Chili (ground) - 1 pinch (to taste and degree of severity - as desired can be added); black pepper - to taste; salt - to taste; for the yogurt sauce: Greek yogurt (thick) - 200 ml; tahina (sesame paste) - 2 tsp .;. lemon (juice) - 1 tbsp. l .; sesame (seeds) - 1 tbsp .; olive oil - 1 tbsp\n\n1. Mix all the spices, lemon zest and three davim juice, grind chives.\nhttp://www.gotovim.ru/pics/sbs/kurshashvostoch/01.jpg\n\n2.Divide the chicken into pieces of 3x3 cm and placed in a plastic bag. Adding to seasoning, lemon juice and zest, garlic and olive oil. Tightly close the bag and thoroughly mix the contents. We send in the refrigerator for at least 1 hour and preferably even longer.\nhttp://www.gotovim.ru/pics/sbs/kurshashvostoch/02.jpg\n\n3.Soak wooden skewers in water for about 15 minutes Kindle grilled meat on skewers strung.\nhttp://www.gotovim.ru/pics/sbs/kurshashvostoch/03.jpg\n\n4.And fry on direct heat until tender, turning constantly. Served with bread Middle East Lieb, tomato, parsley salad, yogurt sauce and sesame paste tahini and eggplant gril\u0451vanym with raspberries. Cold glass of Czech Staropramen here will be very useful. Bon Appetit!\n\n+ Phased gallery sauce did not have time to do so will add here is already finished result. 200 ml thick Greek yogurt mix 2 hours. L. sesame paste and 1 tbsp. l. lemon juice. Add salt and pepper to taste. Sprinkle with 1 tbsp. l. roasted sesame seeds and 1 tbsp. l. olive oil.\n\nhttp://www.gotovim.ru/pics/sbs/kurshashvostoch/04.jpg", + "cashout_time": "2016-08-25T22:37:18", + "category": "recipes", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-18T22:37:18", + "curator_payout_value": { + "amount": "1", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 879146, + "json_metadata": "{\"tags\":[\"recipes\",\"chicken\",\"food\",\"steem\",\"steemit\"],\"image\":[\"http://www.gotovim.ru/pics/sbs/kurshashvostoch/00.jpg\"]}", + "last_payout": "2016-08-19T22:49:18", + "last_update": "2016-08-18T22:37:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 84444748327, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "recipes", + "percent_hbd": 10000, + "permlink": "chicken-kebab-in-the-middle-east-with-yogurt-sauce", + "reward_weight": 10000, + "root_author": "a11at", + "root_permlink": "chicken-kebab-in-the-middle-east-with-yogurt-sauce", + "title": "Chicken kebab in the Middle East with yogurt sauce", + "total_payout_value": { + "amount": "39", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 381381254182721571, + "vote_rshares": 84444748327 + }, + { + "abs_rshares": 192366353940, + "active": "2016-08-18T16:02:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 52, + "beneficiaries": [], + "body": "i am join", + "cashout_time": "2016-08-25T15:31:06", + "category": "motocross", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-18T15:31:06", + "curator_payout_value": { + "amount": "25", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 872336, + "json_metadata": "{\"tags\":[\"motocross\"]}", + "last_payout": "2016-08-19T15:38:21", + "last_update": "2016-08-18T15:31:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 192366353940, + "net_votes": 1, + "parent_author": "b0y2k", + "parent_permlink": "steemit-factory-racing-custom-shirt-giveaway-the-redraw-5-more", + "percent_hbd": 10000, + "permlink": "re-b0y2k-steemit-factory-racing-custom-shirt-giveaway-the-redraw-5-more-20160818t153105991z", + "reward_weight": 10000, + "root_author": "b0y2k", + "root_permlink": "steemit-factory-racing-custom-shirt-giveaway-the-redraw-5-more", + "title": "", + "total_payout_value": { + "amount": "76", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 846427196465997276, + "vote_rshares": 192366353940 + }, + { + "abs_rshares": 4879589029, + "active": "2016-08-16T00:27:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "2 days ago @dantheman promised to return my reputation, but my reputation = (-1).\n\n@dantheman Give me back, please, my reputation", + "cashout_time": "2016-08-22T23:41:57", + "category": "steem-help", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-15T23:41:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 825970, + "json_metadata": "{\"tags\":[\"steem-help\",\"dantheman\",\"steemit\",\"flag\",\"downvoting\"],\"users\":[\"dantheman\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-15T23:41:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 4879589029, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "steem-help", + "percent_hbd": 10000, + "permlink": "my-reputation", + "reward_weight": 10000, + "root_author": "a11at", + "root_permlink": "my-reputation", + "title": "my reputation", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 22475714438312941, + "vote_rshares": 4879589029 + }, + { + "abs_rshares": 0, + "active": "2016-08-15T17:44:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "@dantheman You promised to return my reputation, but my reputation = (-1). Give me back, please, my reputation!", + "cashout_time": "1969-12-31T23:59:59", + "category": "steem", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T17:44:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 820471, + "json_metadata": "{\"tags\":[\"steem\"],\"users\":[\"dantheman\"]}", + "last_payout": "2016-09-15T17:22:06", + "last_update": "2016-08-15T17:44:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "dantheman", + "parent_permlink": "curation-rewards-and-voting-incentive", + "percent_hbd": 10000, + "permlink": "re-dantheman-curation-rewards-and-voting-incentive-20160815t174409032z", + "reward_weight": 10000, + "root_author": "dantheman", + "root_permlink": "curation-rewards-and-voting-incentive", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T19:41:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 25, + "beneficiaries": [], + "body": "Yesterday **@dantheman** promised to return my reputation, but my reputation = **(-1)**. \n\n**@dantheman Give me back, please, my reputation**", + "cashout_time": "1969-12-31T23:59:59", + "category": "steem-help", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-14T19:41:03", + "curator_payout_value": { + "amount": "6", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 803627, + "json_metadata": "{\"tags\":[\"steem-help\",\"dantheman\",\"steemit\",\"flag\",\"downvoting\"]}", + "last_payout": "2016-09-14T08:05:21", + "last_update": "2016-08-14T19:41:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "", + "parent_permlink": "steem-help", + "percent_hbd": 10000, + "permlink": "for-dantheman", + "reward_weight": 10000, + "root_author": "a11at", + "root_permlink": "for-dantheman", + "title": "for @dantheman", + "total_payout_value": { + "amount": "38", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json index 577209f7..afc68572 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "abs_rshares": "114793970759", - "active": "2016-08-31T12:56:54", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "gringalicious", - "author_rewards": 75232, - "beneficiaries": [], - "body": "\n

Ok, I surrender!  A horrible picture of myself holding a piece of paper.  I have to say, I don't get it.  I hate taking pictures of myself.  But, several of you have insisted, so... you win, here it is, verification for @gringalicious

\n

\n

I am a 20 year old food blogger living in Chile with my crazy family.  You can read more about that at my first attempt of introducing myself here: Gringalicious Intro .  I have a passion for cooking and a passion for photography.  Yeah, I know, you can't tell by the photo above, but I digress.  You can see examples of my passion on my page @gringalicious. I don't like labels necessarily, but let's just say I don't like the state and those conditioned by the state telling me what to do.  Nor do I like telling others how they should liver their lives.  I will post more on those topics at a later date.

\n

The idea of #Steemit thoroughly intrigues me.  I look forward to being part of the community!

\n

And since I am here talking about myself, I was featured in a magazine recently.  Not trying to promote the magazine necessarily, just trying to add validity to my verification.  And, I have to admit, I just a little proud of myself.

\n

\n

\n


\n

Later this week, I'll be posting a recipe with a #steemitlogo incorporated in it.  So, keep an eye out for it.

\n

I do hope this helps satisfy the request that many of you have made.  If I need to do something different, please let me know.  I actually like corrective criticism so bring it on.

\n

Until my next post, hasta luego mis amigos

\n

Tori

\n", - "cashout_time": "2016-09-28T22:59:51", - "category": "introduceyourself", - "children": 48, - "children_abs_rshares": "256626492237", - "created": "2016-08-28T17:15:12", - "curator_payout_value": { - "amount": "12739", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779946, - "json_metadata": "{\"tags\":[\"introduceyourself\",\"food\",\"photography\",\"Steemit\",\"steemitlogo\"],\"users\":[\"gringalicious\"],\"image\":[\"https://s19.postimg.org/9vrr3pg8j/DSC_0750_2.jpg\",\"https://s19.postimg.org/4j2wpksc3/IMG_20160828_131820621.jpg\",\"https://s16.postimg.org/3ougnif51/IMG_20160828_131853738.jpg\"],\"links\":[\"https://steemit.com/introduceyourself/@gringalicious/hola-steemit-photographer-food-blogger-traveler-and-student-of-life-i-am\"]}", - "last_payout": "2016-08-29T22:59:51", - "last_update": "2016-08-28T17:15:12", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-14T00:51:15", - "net_rshares": "114793970759", - "net_votes": 82, - "parent_author": "", - "parent_permlink": "introduceyourself", - "percent_hbd": 10000, - "permlink": "hello-again-better-late-than-never-a-re-introduction-verification", - "reward_weight": 10000, - "root_author": "gringalicious", - "root_permlink": "hello-again-better-late-than-never-a-re-introduction-verification", - "title": "Hello Again - Better Late Than Never - a RE introduction VERIFICATION", - "total_payout_value": { - "amount": "73426", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": "114793970759" - }, - { - "abs_rshares": 0, - "active": "2016-08-29T13:45:42", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "givemeyoursteem", - "author_rewards": 588, - "beneficiaries": [], - "body": "https://i.imgsafe.org/2b5635a585.jpg\n\n### This week we've seen delicious desserts thanks to everyone that took part in the challenge <3 Let us present the winners! \n\n### Soon we will announce next weeks challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# THE WINNERS of Steemit Food Challenge #3\n\n---\n\n# 4th prize (25 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/27/FB_IMG_14722971245630aad6.jpg\n... @foxxycat and this delicious [pomegranate chocolate tart](https://steemit.com/foodchallenge/@foxxycat/steemit-food-challenge-3-chocolate-tart-is-the-new-black)!\n\n### Sponsored by @knozaki2015\n\n---\n\n# 3rd prize (35 SBD) goes to...\nhttps://img1.steemit.com/0x0/https://s10.postimg.org/wugbquxnt/DSCF9961.jpg\nhttps://youtu.be/dXxtkgAtKXQ\n... @amy-goodrich and her double chocolate [chunky monkey ice cream](https://steemit.com/foodchallenge/@amy-goodrich/double-chocolate-chunky-monkey-ice-cream-video-steemit-food-challenge-3)! \n\n### Sponsored by @fyrstikken & [Steemspeak.com](http://steemspeak.com/) - a voice-hangout for the Steemit crypto-crowd!\n\n---\n\n# 2nd prize (50 SBD) goes to...\nhttps://img1.steemit.com/0x0/http://oi68.tinypic.com/2dbjw94.jpg\n... @vlad with this fresh and vitaminized [citrus and watermelon jelly](https://steemit.com/foodchallenge/@vlad/desserts-to-die-for-delicious-jelly-watermelon-grapefruit-orange-all-topped-with-a-smidgen-of-grated-coconut)!\n\n### Sponsored by @instructor2121\n\n---\n\n# The WINNER of Steemit Food Challenge (100 Steem dollars) is...\nhttps://img1.steemit.com/0x0/https://s12.postimg.org/te13g6wbx/napaleon_cake_1.jpg\n... @allasyummyfood with her beautiful [Russian Napoleon cake](https://steemit.com/food/@allasyummyfood/russian-napoleon-cake-recipe-steemit-food-challenge)!\n### Sponsored by @smooth\n\n---\n\n### But there is still one chance to win with our new prize, the wild pick!\n\n# Razvanelul's Wild Pick (15 SBD) goes to... \nhttps://img1.steemit.com/0x0/https://abload.de/img/steemcake6huwn.png\n... @crypt0mine with this creative [Steemit cake](https://steemit.com/steemit/@crypt0mine/steemit-cake)!\n> I HOPE that cake was not photoshop because it looks amazing. I liked the photo and especially: the idea! Good job and please give me more of a challenge next time! I'm gonna continue my picks for next week as well so bring it on!!\n\n### Sponsored by @razvanelulmarin\n\n---\n\n### Soon we will announce the theme for next weeks Steemit Food Challenge, [follow](https://steemit.com/@givemeyoursteem) if you don't want to miss it :)\n\n---\n\n# Thank you!\n\n### We hope to see you next week!", - "cashout_time": "2016-09-28T20:19:39", - "category": "foodchallenge", - "children": 18, - "children_abs_rshares": 2374341643, - "created": "2016-08-28T17:15:12", - "curator_payout_value": { - "amount": "131", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779947, - "json_metadata": "{\"tags\":[\"foodchallenge\",\"food\",\"recipes\",\"steemit\",\"steemitfoodchallenge\"],\"links\":[\"https://youtu.be/dXxtkgAtKXQ\"]}", - "last_payout": "2016-08-29T20:19:39", - "last_update": "2016-08-28T17:15:12", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-13T01:24:24", - "net_rshares": 0, - "net_votes": 44, - "parent_author": "", - "parent_permlink": "foodchallenge", - "percent_hbd": 10000, - "permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "reward_weight": 10000, - "root_author": "givemeyoursteem", - "root_permlink": "winners-of-steemit-food-challenge-3-desserts-to-die-for", - "title": "WINNERS of Steemit Food Challenge #3 - Desserts to die for!", - "total_payout_value": { - "amount": "576", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T17:15:09", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "forklognews", - "author_rewards": 0, - "beneficiaries": [], - "body": "\n

\u041f\u0440\u043e\u0448\u0435\u0434\u0448\u0430\u044f \u043d\u0435\u0434\u0435\u043b\u044f \u043e\u043a\u0430\u0437\u0430\u043b\u0430\u0441\u044c \u0431\u043e\u0433\u0430\u0442\u043e\u0439 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u043c\u0438, \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u043c \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0434\u043b\u044f \u043d\u0430\u0448\u0435\u0439 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u0441\u0442\u0430\u043b\u043e \u0434\u0432\u0443\u0445\u043b\u0435\u0442\u0438\u0435 Forklog. \u0414\u0432\u0430 \u0433\u043e\u0434\u0430 \u043d\u0430\u0437\u0430\u0434, 25 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0431\u044b\u043b \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0434\u043e\u043c\u0435\u043d ForkLog.com, \u0430 \u0441\u043f\u0443\u0441\u0442\u044f \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u0434\u0435\u043b\u0430\u043d\u044b \u043f\u0435\u0440\u0432\u044b\u0435 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u043d\u0430 \u0441\u0430\u0439\u0442\u0435. \u041e\u0431 \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0445, \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u0445 \u043c\u0438\u0440\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442, \u0432\u044b \u0443\u0437\u043d\u0430\u0435\u0442\u0435 \u0438\u0437 \u043d\u0430\u0448\u0435\u0433\u043e \u0435\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0439\u0434\u0436\u0435\u0441\u0442\u0430. 

\n

 \u0411\u0418\u0420\u0416\u0418

\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u0438\u043c\u0435\u043d\u0438\u043d\u043d\u0438\u043a\u043e\u043c \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0438 \u0441\u0442\u0430\u043b\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 Bitstamp, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u043e\u0442\u043c\u0435\u0442\u0438\u043b\u0430 \u043f\u044f\u0442\u0438\u043b\u0435\u0442\u0438\u0435 \u0441\u043e \u0434\u043d\u044f \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044f. \u041a \u044d\u0442\u043e\u043c\u0443 \u0441\u043e\u0431\u044b\u0442\u0438\u044e \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0438\u0443\u0440\u043e\u0447\u0438\u043b\u0430 \u043a\u043e\u043d\u043a\u0443\u0440\u0441 \u0441 \u0446\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0440\u0438\u0437\u0430\u043c\u0438.

\n

\u041d\u043e \u044e\u0431\u0438\u043b\u0435\u0438 \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043f\u043e\u0432\u043e\u0434\u043e\u043c \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0430\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 \u0438 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0431\u0438\u0440\u0436 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0440\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0442 \u044d\u0442\u043e \u043c\u043d\u0435\u043d\u0438\u0435, \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u044f \u0433\u0434\u0435-\u0442\u043e \u043b\u043e\u0433\u0438\u0447\u043d\u044b\u0435, \u0430 \u0433\u0434\u0435-\u0442\u043e \u0438 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f.

\n

\u0422\u0430\u043a, \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0430 GDAX \u043d\u0430\u0447\u0430\u043b\u0430 \u0442\u043e\u0440\u0433\u0438 \u0447\u0435\u0442\u0432\u0435\u0440\u0442\u043e\u0439 \u043f\u043e \u0440\u044b\u043d\u043e\u0447\u043d\u043e\u0439 \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043e\u0439 Litecoin. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0434\u0435\u043b\u0430\u043d\u043e \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0431\u043b\u043e\u0433\u0435 \u0431\u0438\u0440\u0436\u0438. \u0414\u043b\u044f \u0442\u043e\u0440\u0433\u043e\u0432 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0434\u0432\u0435 \u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043f\u0430\u0440\u044b: \u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430\u043c \u0421\u0428\u0410 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043f\u0430\u0440\u0430 LTC / USD, \u0432\u0441\u0435\u043c \u043f\u0440\u043e\u0447\u0438\u043c \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u2014 \u043f\u0430\u0440\u0430 LTC / BTC.

\n

\u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, 23 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u043c \u0442\u0432\u0438\u0442\u0442\u0435\u0440\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u043e\u0439 \u0431\u0438\u0440\u0436\u0438 Poloniex \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043e\u0441\u043d\u044f\u0442\u0438\u0438 \u0441 \u0442\u043e\u0440\u0433\u043e\u0432 27 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442. \u0422\u043e\u0440\u0433\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0435\u043d\u044b 5 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430 \u0438 \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0443\u0436\u0435 \u0432\u044b\u0437\u0432\u0430\u043b\u043e \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043d\u0435\u0434\u043e\u0443\u043c\u0435\u043d\u0438\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430, \u0432\u0435\u0434\u044c \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u0447\u0435\u043d\u044c \u0432\u043e\u0448\u043b\u0438 \u0442\u0430\u043a\u0438\u0435 \u0430\u043b\u044c\u0442\u043a\u043e\u0438\u043d\u044b, \u043a\u0430\u043a DAO, Dashcoin \u0438 Mintcoin, \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0438\u0433 $1,22 \u043c\u043b\u043d. 

\n

\n

 \u041f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u043a \u043a\u043e\u043d\u0446\u0443 \u0438 \u043d\u0430\u0448\u0443\u043c\u0435\u0432\u0448\u0430\u044f \u0438\u0441\u0442\u043e\u0440\u0438\u044f \u0441 \u0431\u0438\u0440\u0436\u0435\u0439 Bitfinex, \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0435\u0439 \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u0437\u043b\u043e\u043c\u0430. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0431\u0438\u0440\u0436\u0438 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u0438\u0438 \u0434\u043e\u0433\u043e\u0432\u043e\u0440\u0430 \u0441 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u043e\u0439 BnkToTheFuture \u0441 \u0446\u0435\u043b\u044c\u044e \u0432\u043e\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f \u0441\u0440\u0435\u0434\u0441\u0442\u0432 \u0432\u043a\u043b\u0430\u0434\u0447\u0438\u043a\u043e\u0432 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u0434\u043e\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0447\u0430\u0441\u0442\u0438\u044f \u0432 \u0430\u043a\u0446\u0438\u043e\u043d\u0435\u0440\u043d\u043e\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438. 

\n

\n

 \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0443 \u0441 BnkToTheFuture \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Bitfinex \u0441\u043c\u043e\u0433\u0443\u0442 \u043e\u0431\u043c\u0435\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u0438\u043c \u0442\u043e\u043a\u0435\u043d\u044b BFX \u043d\u0430 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0443\u044e \u0434\u043e\u043b\u044e \u0432 iFinex Inc, \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438\u0445 \u0412\u0438\u0440\u0433\u0438\u043d\u0441\u043a\u0438\u0445 \u041e\u0441\u0442\u0440\u043e\u0432\u0430\u0445 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u0430\u044f \u043d\u043e\u0432\u043e\u0441\u0442\u044c \u043f\u0440\u0438\u0448\u043b\u0430 \u043d\u0430 \u044d\u0442\u043e\u0439 \u043d\u0435\u0434\u0435\u043b\u0435 \u0438\u0437 \u0422\u0443\u0440\u0446\u0438\u0438, \u0433\u0434\u0435 \u0432\u0435\u0434\u0443\u0449\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u0430\u044f \u0431\u0438\u0440\u0436\u0438 BTCTurk \u0431\u044b\u043b\u0430 \u0432\u044b\u043d\u0443\u0436\u0434\u0435\u043d\u0430 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443, \u0441\u0442\u043e\u043b\u043a\u043d\u0443\u0432\u0448\u0438\u0441\u044c \u0441 \u043d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u043e\u043c \u043e\u0442\u043a\u0430\u0437\u043e\u043c \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0430 \u043e\u0442 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0433\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u044f \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430. \u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0431\u0438\u0440\u0436\u0430 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442 \u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c, \u043e\u0434\u043d\u0430\u043a\u043e \u0438\u0437-\u0437\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u0431\u0430\u043d\u043a\u043e\u0432\u0441\u043a\u0438\u0445 \u0441\u0447\u0435\u0442\u043e\u0432 \u044d\u0442\u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u0442\u044f\u043d\u0443\u0442\u044c\u0441\u044f. 

\n

 \u041a\u041e\u0428\u0415\u041b\u042c\u041a\u0418 \u0418 \u041f\u041b\u0410\u0422\u0401\u0416\u041d\u042b\u0415 \u0421\u0415\u0420\u0412\u0418\u0421\u042b

\n

\u041f\u0435\u0440\u0432\u044b\u043c \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u044b\u043c \u043a\u043e\u0448\u0435\u043b\u044c\u043a\u043e\u043c, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0438\u043c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Ethereum, \u0441\u0442\u0430\u043b Trezor. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0430 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 Trezor \u043d\u0430 Github.

\n

\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043e\u0442 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438-\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430 SatoshiLabs \u043f\u043e\u043a\u0430, \u0432\u043f\u0440\u043e\u0447\u0435\u043c, \u043d\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u043b\u043e, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0434\u0430\u0442\u0430 \u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0435\u043b\u0438\u0437\u0430 \u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u0430 \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043e\u0441\u0442\u0430\u0435\u0442\u0441\u044f \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e\u0439.

\n

\u0421\u043f\u0438\u0441\u043a\u0438 \u0440\u0430\u0431\u043e\u0447\u0438\u0445 \u0432\u0430\u043b\u044e\u0442 \u043f\u043e\u043f\u043e\u043b\u043d\u0438\u043b\u0438\u0441\u044c \u0443 \u043f\u043b\u0430\u0442\u0451\u0436\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 Bitwala, \u0432\u043a\u043b\u044e\u0447\u0438\u0432\u0448\u0435\u0433\u043e \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Dash \u0438 Emercoin, \u0438 \u0432\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044c\u0441\u043a\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b Cryptobuyer, \u0434\u043e\u0431\u0430\u0432\u0438\u0432\u0448\u0435\u0439 Dash. \u041e\u0442\u043c\u0435\u0442\u0438\u043c, \u0447\u0442\u043e \u0436\u0438\u0442\u0435\u043b\u0438 \u0412\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u044b, \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043d\u0435\u0442 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u0432 \u043b\u0438\u0431\u043e \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u043e\u0432 \u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u0432 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442, \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0443\u0441\u043b\u0443\u0433\u0430\u043c\u0438 \u043c\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0451\u0440\u0430 Cryptobuyer \u2013 \u0441\u0435\u0442\u044c\u044e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u043c\u0430\u0442\u043e\u0432 TigoCTM.

\n

\u0422\u0430\u043a\u0436\u0435 \u0432\u044b\u0448\u043b\u0430 \u0432 \u0441\u0432\u0435\u0442 \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f Ethereum-\u043a\u043e\u0448\u0435\u043b\u044c\u043a\u0430 Mist \u0441 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u043e\u0439 Coinbase Buy Widget. \u041e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0435\u0451 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u043e\u0441\u043e\u0431\u0435\u043d\u043d\u043e\u0441\u0442\u0435\u0439 \u0441\u0442\u0430\u043b\u043e \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 Coinbase Buy Widget \u2013 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430, \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0438\u0442\u044c \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u043a\u0443\u043f\u043a\u0443 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043d\u0430 \u0441\u0443\u043c\u043c\u0443 \u0434\u043e $5.

\n

\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0434\u0430\u043d\u043d\u0430\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c \u0438\u0437 \u0421\u0428\u0410 \u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043d\u0430\u043b\u0438\u0447\u0438\u044f \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430 \u043d\u0430 Coinbase. 

\n

\n

 \u0411\u0410\u041d\u041a\u0418 \u0418 \u041a\u041e\u0420\u041f\u041e\u0420\u0410\u0426\u0418\u0418

\n

\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u044b\u043c \u0438\u0437\u0432\u0435\u0441\u0442\u0438\u0435\u043c, \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u044b\u043c \u0441\u0442\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0432\u0435\u0441\u0442\u043d\u0438\u043a\u043e\u043c \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0445 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0435, \u0441\u0442\u0430\u043b\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0438\u0437\u0434\u0430\u043d\u0438\u044f Financial Times \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0440\u044f\u0434 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0445 \u043c\u0438\u0440\u043e\u0432\u044b\u0445 \u0431\u0430\u043d\u043a\u043e\u0432 \u043f\u0440\u0438\u043d\u044f\u043b \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043d\u043e\u0432\u043e\u0439 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u043b\u044e\u0442\u044b. \u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0435\u0439 \u0431\u0430\u043d\u043a\u043e\u0432 UBS, Deutsche Bank, Santander \u0438 BNY Mellon \u043e\u0436\u0438\u0434\u0430\u043b\u043e\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u043d\u043e \u0434\u043e \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u043d\u0435 \u043f\u043e\u044f\u0432\u0438\u043b\u043e\u0441\u044c.

\n

\u0415\u0441\u043b\u0438 \u044d\u0442\u043e \u043e\u043a\u0430\u0436\u0435\u0442\u0441\u044f \u043d\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u0443\u0442\u043a\u043e\u0439, \u0442\u043e \u0441\u0442\u043e\u0438\u0442 \u043e\u0436\u0438\u0434\u0430\u0442\u044c, \u0447\u0442\u043e \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u043a \u044d\u0442\u043e\u0439 \u0438\u043d\u0438\u0446\u0438\u0430\u0442\u0438\u0432\u0435 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u044f\u0442\u0441\u044f \u0438 \u043f\u0440\u043e\u0447\u0438\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u044b \u0441\u043e \u0432\u0441\u0435\u0445 \u043a\u043e\u043d\u0446\u043e\u0432 \u0441\u0432\u0435\u0442\u0430, \u0434\u0430\u0436\u0435 \u0441 \u0434\u0430\u043b\u0451\u043a\u043e\u0433\u043e \u0430\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0438\u043d\u0435\u043d\u0442\u0430. \u0422\u0430\u043c \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0439 \u042e\u0436\u043d\u043e-\u0410\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u0431\u0430\u043d\u043a\u0430 \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e \u0432 \u0441\u0432\u043e\u0435\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0438 \u043d\u0430 \u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0438\u0438 \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u043a\u0440\u0438\u043f\u0442\u043e\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442 \u0443\u0436\u0435 \u0438\u0437\u0443\u0447\u0430\u0435\u0442 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0437\u0430\u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043e\u0432\u0430\u043d \u0432 \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0434\u0430\u0442\u044c \u044d\u0442\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f. 

\n
 \u00ab\u041a\u0430\u043a \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u0431\u0430\u043d\u043a, \u043c\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044b \u043a \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u044f\u043c \u043d\u0435\u0441\u043c\u043e\u0442\u0440\u044f \u043d\u0430 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u043e\u0435 \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u043e\u0440\u043e\u0432 \u043a \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u043c. \u041c\u044b \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u044b \u0438\u0437\u0443\u0447\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043a\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u041b\u0435\u0441\u0435\u0442\u044c\u044f \u041a\u0433\u0430\u043d\u044c\u044f\u0433\u043e. 
\n

 \u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0439 \u0431\u0430\u043d\u043a \u042f\u043f\u043e\u043d\u0438\u0438 Bank of Tokyo-Mitsubishi UFJ (MUFG) \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e\u0431 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0449\u0435\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0438 \u0432\u0435\u0440\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043b\u0430\u0442\u0435\u0436\u0438 \u043f\u043e \u0447\u0435\u043a\u0430\u043c. \u0421\u043e\u0437\u0434\u0430\u043d\u043d\u043e\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0432 \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u043c\u0438 \u0438\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u0430\u043c\u0438 \u0438 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u043c\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f\u043c\u0438 \u0432 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u043e\u043c \u0440\u0435\u0433\u0438\u043e\u043d\u0435. \u0412 \u0431\u0443\u0434\u0443\u0449\u0435\u043c Bank of Tokyo-Mitsubishi \u043d\u0430\u0434\u0435\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043c\u043e\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043d\u0430\u0439\u0442\u0438 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u0435.

\n

\u041e\u0442 \u0430\u0437\u0438\u0430\u0442\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432 \u043d\u0435 \u043e\u0442\u0441\u0442\u0430\u044e\u0442 \u0438 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 \u043a\u043e\u043d\u0441\u043e\u0440\u0446\u0438\u0443\u043c\u0430 R3 CEV, \u0437\u0430\u043f\u0430\u0442\u0435\u043d\u0442\u043e\u0432\u0430\u0432\u0448\u0438\u0435 \u043d\u043e\u0432\u044b\u0439 \u043f\u0440\u043e\u0434\u0443\u043a\u0442 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 Concord, \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0439 \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0435 \u0423\u043e\u043b\u043b-\u0441\u0442\u0440\u0438\u0442.

\n

Concord \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0441\u043e\u0431\u043e\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0443, \u0441\u0432\u044f\u0437\u044b\u0432\u0430\u044e\u0449\u0443\u044e \u0432\u043e\u0435\u0434\u0438\u043d\u043e \u0440\u044b\u043d\u043a\u0438 \u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0438 \u043f\u0440\u0438\u0437\u0432\u0430\u043d\u043d\u0443\u044e \u043f\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u043c\u0438\u0434\u0434\u043b- \u0438 \u0431\u044d\u043a-\u043e\u0444\u0438\u0441\u043e\u0432 \u0432 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0432\u0430\u0440\u0438\u0430\u043d\u0442. \u042d\u0442\u043e \u0434\u0430\u0441\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0431\u0430\u043d\u043a\u0430\u043c \u0438\u0437\u0431\u0430\u0432\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u043d\u0430\u043a\u043b\u0430\u0434\u043d\u044b\u0445 \u0440\u0430\u0441\u0445\u043e\u0434\u043e\u0432 \u0438 \u0441\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0442\u044c \u043c\u0438\u043b\u043b\u0438\u0430\u0440\u0434\u044b \u0434\u043e\u043b\u043b\u0430\u0440\u043e\u0432. \u041e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f, \u0447\u0442\u043e \u0430\u043b\u044c\u0444\u0430-\u0432\u0435\u0440\u0441\u0438\u044f \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430 \u0432 \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435 2017 \u0433\u043e\u0434\u0430.

\n

\u0412\u0441\u0451 \u044d\u0442\u043e \u0437\u0430\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0445 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a\u043e\u0432 \u0438 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0441\u0442\u043e\u0432 \u0441\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u043e\u043c \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u043b\u044c\u043d\u043e, \u043c\u0435\u043d\u044f\u044f \u0441\u0432\u043e\u0438 \u043f\u0440\u043e\u0433\u043d\u043e\u0437\u044b \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e \u043c\u0438\u0440\u043e\u0432\u043e\u0439 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b.

\n

\u0412 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u043a \u041a\u0438\u0440\u0438\u043b\u043b \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0437\u0430\u044f\u0432\u0438\u043b, \u0447\u0442\u043e \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u044d\u0442\u0438\u043c \u043f\u043e\u044f\u0432\u044f\u0442\u0441\u044f \u043d\u043e\u0432\u044b\u0435 \u043c\u0435\u0436\u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0435 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u044b\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b.

\n
\u00ab\u0412 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0434\u0432\u0430-\u0442\u0440\u0438 \u0433\u043e\u0434\u0430 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 blockchain \u043f\u0440\u043e\u0447\u043d\u043e \u0443\u043a\u0440\u0435\u043f\u044f\u0442\u0441\u044f \u043d\u0430 \u043c\u0435\u0436\u0431\u0430\u043d\u043a\u0435, \u0432\u044b\u0442\u0435\u0441\u043d\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043e\u0431\u043c\u0435\u043d\u0430 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043c\u0435\u0436\u0434\u0443 \u043d\u0438\u043c\u0438 (\u0432 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438, \u0441\u0438\u0441\u0442\u0435\u043c\u0443 SWIFT) \u0438 \u0441\u0442\u0430\u043d\u0443\u0442 \u043d\u0435\u043e\u0442\u044a\u0435\u043c\u043b\u0435\u043c\u043e\u0439 \u0447\u0430\u0441\u0442\u044c\u044e \u0442\u043e\u0440\u0433\u043e\u0432 \u043d\u0430 \u0440\u044b\u043d\u043a\u0430\u0445 \u0446\u0435\u043d\u043d\u044b\u0445 \u0431\u0443\u043c\u0430\u0433. \u0427\u0442\u043e \u0436\u0435 \u043a\u0430\u0441\u0430\u0435\u0442\u0441\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0432 \u043f\u0440\u0438\u0432\u044b\u0447\u043d\u043e\u043c \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438, \u0442\u043e \u043e\u043d\u0438 \u0442\u0430\u043a\u0436\u0435, \u0441\u043a\u043e\u0440\u0435\u0435 \u0432\u0441\u0435\u0433\u043e, \u0443\u0436\u0435 \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u043c \u0431\u0443\u0434\u0443\u0449\u0435\u043c \u0432\u044b\u0439\u0434\u0443\u0442 \u0438\u0437 \u0442\u0435\u043d\u0438 \u0438 \u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 blockchain \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u043d\u043e\u0435 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435\u00bb, \u2014 \u0441\u0447\u0438\u0442\u0430\u0435\u0442 \u042f\u043a\u043e\u0432\u0435\u043d\u043a\u043e.
\n

\u041a\u041e\u041c\u041f\u0410\u041d\u0418\u0418

\n

\u0414\u0430\u0442\u0441\u043a\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Bitshares Munich IVS, \u0432\u043b\u0430\u0434\u0435\u044e\u0449\u0430\u044f \u0431\u0440\u0435\u043d\u0434\u043e\u043c BlockPay, \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0441\u0442\u0430\u0440\u0442\u0435 ICO. \u0412 \u0445\u043e\u0434\u0435 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u0442\u044c \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430 \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 BlockPay, P2P-\u043c\u0435\u0441\u0441\u0435\u043d\u0434\u0436\u0435\u0440\u0430 ECHO \u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u044b\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u0435\u0439 Stealth. \u041f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043a\u0440\u0430\u0443\u0434\u0444\u0430\u043d\u0434\u0438\u043d\u0433\u043e\u0432\u043e\u0439 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0438 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043d\u0430 2016 \u0438 2017 \u0433\u043e\u0434\u044b. \u0421\u0430\u043c\u0430 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u043e\u0441\u0442\u043e\u0438\u0442 \u0438\u0437 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 ICO (Pre-ICO), \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043d\u0430 \u0430\u0432\u0433\u0443\u0441\u0442 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0433\u043e\u0434\u0430, \u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0430 \u0432 2017 \u0433\u043e\u0434\u0443. \u0412\u0441\u0435\u0433\u043e \u043f\u043b\u0430\u043d\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c 100 \u043c\u0438\u043b\u043b\u0438\u043e\u043d\u043e\u0432 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 BlockPay.

\n

\u041f\u0440\u043e\u0435\u043a\u0442 \u043f\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c \u043a\u043e\u0434\u043e\u043c Hyperledger \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u0438\u043c\u0435\u043d\u0430 \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u043e\u0441\u0442\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430. \u0421\u0440\u0435\u0434\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u2014 \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u0442\u0443\u043f\u0430\u044e\u0449\u0438\u0445 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0438 \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0439 \u0443\u043d\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0431\u0430\u0437\u044b \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u043a\u043e\u0434\u0430.

\n

\u0412 \u043d\u043e\u0432\u043e\u043c \u0441\u043e\u0441\u0442\u0430\u0432\u0435 \u043a\u043e\u043c\u0438\u0442\u0435\u0442\u0430 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u043b\u0438 \u0441\u0432\u043e\u0438 \u043c\u0435\u0441\u0442\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 R3CEV \u0413\u0435\u043d\u0434\u0430\u043b \u0411\u0440\u0430\u0443\u043d, \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u0432 Digital Asset Holdings \u0422\u0430\u043c\u0430\u0448 \u0411\u043b\u0443\u043c\u043c\u0435\u0440, \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c Fujitsu \u0425\u0430\u0440\u0442 \u041c\u043e\u043d\u0442\u0433\u043e\u043c\u0435\u0440\u0438, \u0438\u043d\u0436\u0435\u043d\u0435\u0440 Intel \u041c\u0438\u043a \u0411\u043e\u0443\u043c\u0435\u043d \u0438 \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 IBM \u041a\u0440\u0438\u0441\u0442\u043e\u0444\u0435\u0440 \u0424\u0435\u0440\u0440\u0438\u0441. \u0421\u0440\u0435\u0434\u0438 \u043d\u043e\u0432\u044b\u0445 \u0438\u043c\u0435\u043d \u2013 \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c IBM \u0410\u0440\u043d\u043e \u043b\u0435 \u041e\u0440, \u0441\u0442\u0430\u0440\u0448\u0438\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u043e\u0440 IBM \u0411\u0438\u043d \u041d\u0433\u0443\u0435\u043d, \u0433\u043b\u0430\u0432\u0430 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a Intel \u0414\u044d\u043d \u041c\u0438\u0434\u0434\u043b\u0442\u043e\u043d, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 DTCC, Salesforce \u0438 \u041b\u043e\u043d\u0434\u043e\u043d\u0441\u043a\u043e\u0439 \u0444\u043e\u043d\u0434\u043e\u0432\u043e\u0439 \u0431\u0438\u0440\u0436\u0438.

\n

\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0441\u0442\u0430\u0440\u0442\u0430\u043f Chronicled Inc. \u043e\u0431\u044a\u044f\u0432\u0438\u043b \u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u0434\u043b\u044f \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430 \u0432\u0435\u0449\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u044b\u043b \u0441\u043e\u0437\u0434\u0430\u043d \u043d\u0430 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435 Ethereum. \u042d\u0442\u043e\u0442 \u0440\u0435\u0435\u0441\u0442\u0440 \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d \u0434\u043b\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0445 \u043a\u043e\u0434\u043e\u0432 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0438\u043c\u0435\u044e\u0449\u0438\u0445 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435 \u0447\u0438\u043f\u044b NFC \u0438 BLE.

\n
\u00ab\u0422\u0435\u043f\u0435\u0440\u044c \u0432\u0441\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0438 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432, \u0431\u0443\u0434\u044c-\u0442\u043e \u0431\u0440\u0435\u043d\u0434\u044b, \u043d\u043e\u0441\u0438\u0442\u0435\u043b\u0438 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0438 \u043f\u0440\u043e\u0447\u0435\u0435, \u043c\u043e\u0433\u0443\u0442 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0437\u0430\u0449\u0438\u0449\u0451\u043d\u043d\u044b\u0435 \u043e\u0442 \u043f\u043e\u0434\u0434\u0435\u043b\u043e\u043a \u0447\u0438\u043f\u044b \u0432 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0435\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440 Chronicled \u0420\u0430\u0439\u0430\u043d \u041e\u0440\u0440. \u041d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u043e\u043c \u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043e \u043e\u043a\u043e\u043b\u043e 10 000 NFC \u0438 BLE \u0447\u0438\u043f\u043e\u0432.
\n

\u041a\u0430\u043a \u0441\u043e\u043e\u0431\u0449\u0430\u0435\u0442 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Business Insider UK, \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u0432 \u0421\u0428\u0410 \u0442\u0435\u043b\u0435\u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u043e\u043d\u043d\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Verizon Communications \u044d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0438\u0440\u0443\u0435\u0442 \u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0435\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0422\u0430\u043a, \u0432 \u0440\u0430\u0441\u043f\u043e\u0440\u044f\u0436\u0435\u043d\u0438\u0435 \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 \u043f\u043e\u043f\u0430\u043b \u043f\u0430\u0442\u0435\u043d\u0442, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0439 Verizon 10 \u043c\u0430\u044f \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u0418\u0437 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u043f\u0430\u0442\u0435\u043d\u0442\u0430 \u0441\u043b\u0435\u0434\u0443\u0435\u0442, \u0447\u0442\u043e \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u0430 \u043d\u0435\u043a\u043e\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043a\u043b\u044e\u0447\u0435\u0439, \u0430 \u0440\u0430\u0431\u043e\u0442\u044b \u043d\u0430\u0434 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u043c \u0432\u0435\u043b\u0438\u0441\u044c \u043d\u0430 \u043f\u0440\u043e\u0442\u044f\u0436\u0435\u043d\u0438\u0438 \u0442\u0440\u0451\u0445 \u043b\u0435\u0442. \u0412\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043f\u043e\u0434\u043e\u0431\u043d\u043e\u0439 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0432 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u0438 \u0441\u043e \u0441\u043c\u0430\u0440\u0442-\u043a\u043e\u043d\u0442\u0440\u0430\u043a\u0442\u0430\u043c\u0438 \u0434\u0430\u0451\u0442 \u043c\u0430\u0441\u0441\u0443 \u043d\u043e\u0432\u044b\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u0432 \u0441\u0444\u0435\u0440\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0438\u043b\u0438 \u0430\u0432\u0442\u043e\u0440\u044b \u0441\u0442\u0430\u0442\u0435\u0439 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0441\u0432\u043e\u044e \u043e\u043f\u043b\u0430\u0442\u0443 \u0441\u0440\u0430\u0437\u0443 \u0436\u0435 \u043f\u043e\u0441\u043b\u0435 \u0442\u043e\u0433\u043e, \u043a\u0430\u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0430\u0447\u0430\u043b \u0447\u0438\u0442\u0430\u0442\u044c \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b \u0438\u043b\u0438 \u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430\u0442\u044c \u043f\u0435\u0441\u043d\u044e.

\n

\u0412\u0430\u043b\u044e\u0442\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440\u0430 (MAS) \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u043b\u043e \u0441 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043c \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0435\u0434\u0438\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439, \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0445 \u043f\u043b\u0430\u0442\u0435\u0436\u043d\u044b\u0435 \u0443\u0441\u043b\u0443\u0433\u0438, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438.

\n

\u0421\u0442\u0430\u043b\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0447\u0442\u043e \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0441\u0442\u0430\u0440\u0442\u0430\u043f Keza \u0432\u044b\u043a\u0443\u043f\u043b\u0435\u043d \u0444\u0438\u043b\u0438\u043f\u043f\u0438\u043d\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 Satoshi Citadel Industries, \u0432 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u043e\u043c \u043f\u043e\u0440\u0442\u0444\u0435\u043b\u0435\u043c \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0443\u0436\u0435 \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0442 \u0442\u0430\u043a\u0438\u0435 \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u044b, \u043a\u0430\u043a Rebit.ph, Bitbit.cash \u0438 PrepaidBitcoin.ph.

\n
\u00abKeza \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u043b\u0430\u0441\u044c \u0441 \u043f\u0440\u0438\u0446\u0435\u043b\u043e\u043c \u043d\u0430 \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u044e\u0449\u0438\u0435\u0441\u044f \u0440\u044b\u043d\u043a\u0438 \u0438 \u0434\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0435 \u0438\u043c\u0435\u044e\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u043c \u0440\u044b\u043d\u043a\u0430\u043c \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0430. \u041c\u044b \u0441\u0447\u0430\u0441\u0442\u043b\u0438\u0432\u044b, \u0447\u0442\u043e \u0442\u0435\u043f\u0435\u0440\u044c \u0432\u0438\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0441\u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0440\u0435\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043e\u00bb, \u2014 \u0446\u0438\u0442\u0438\u0440\u0443\u0435\u0442 CEO Keza \u0421\u0430\u0439\u043c\u043e\u043d\u0430 \u0411\u0435\u0440\u043d\u0441\u0430 \u0438\u0437\u0434\u0430\u043d\u0438\u0435 Silicon Angle.
\n

\u0414\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0441\u0435\u0442\u044c Steemit \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u00ab\u0431\u0435\u0441\u043f\u0440\u0435\u0446\u0435\u0434\u0435\u043d\u0442\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u0442\u0440\u0430\u0444\u0438\u043a\u0430\u00bb, \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u044b\u043c \u0441 \u0442\u0435\u043c, \u0447\u0442\u043e \u043f\u043e\u043b\u0443\u0447\u0430\u043b\u0438 \u043d\u0430 \u0440\u0430\u043d\u043d\u0438\u0445 \u044d\u0442\u0430\u043f\u0430\u0445 \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f Facebook \u0438 Reddit.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Steemit, \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u0435\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u043e \u0440\u0430\u0437\u043c\u0435\u0449\u0430\u044e\u0442 \u0431\u043e\u043b\u0435\u0435 21 000 \u043d\u043e\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0430 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432 \u0432 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u043f\u043e\u0441\u0442\u043e\u0432 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0435\u0442 70 000. \u042d\u0442\u043e \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u043c\u043e \u0441 \u0440\u0430\u043d\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c\u044e \u043d\u0430 \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u0430\u0445 \u0432\u0440\u043e\u0434\u0435 Facebook \u0438 Reddit.

\n

\u0417\u0430 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u0434\u0435\u043b\u044c \u0434\u043e \u0441\u0442\u0430\u0440\u0442\u0430 \u043a\u0440\u0430\u0443\u0434\u0441\u0435\u0439\u043b\u0430 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 DECENT \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0434\u0438\u0441\u0442\u0440\u0438\u0431\u0443\u0446\u0438\u0438 \u0442\u043e\u043a\u0435\u043d\u043e\u0432 DCT. \u0422\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0432\u0435\u0440\u0433\u043b\u043e\u0441\u044c \u043f\u0435\u0440\u0435\u0441\u043c\u043e\u0442\u0440\u0443 \u043e\u0431\u0449\u0435\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0445 \u043a \u0432\u044b\u043f\u0443\u0441\u043a\u0443 \u043c\u043e\u043d\u0435\u0442. \u041a\u0430\u043a \u0437\u0430\u044f\u0432\u0438\u043b\u0438 \u0432 DECENT, \u044d\u0442\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u0435, \u0445\u043e\u0442\u044f \u0438 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u043c, \u0442\u0430\u043a\u0436\u0435 \u0431\u044b\u043b\u043e \u043f\u0440\u0438\u043d\u044f\u0442\u043e \u0441 \u0443\u0447\u0435\u0442\u043e\u043c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430.

\n

\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Coinbase \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0430 \u043e \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0438 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0441\u0432\u043e\u0435\u0433\u043e \u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u043d\u0430 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442. \u0422\u0435\u043f\u0435\u0440\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043f\u043e\u043a\u0443\u043f\u043a\u0438 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u043a\u0430\u0440\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Coinbase \u0432 \u0415\u0432\u0440\u043e\u043f\u0435.

\n

\u041a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0438 Coinbase, \u0432 \u0421\u0428\u0410 40% \u0441\u0434\u0435\u043b\u043e\u043a \u043f\u043e \u043f\u043e\u043a\u0443\u043f\u043a\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u044b\u0445 \u0438 \u043a\u0440\u0435\u0434\u0438\u0442\u043d\u044b\u0445 \u043a\u0430\u0440\u0442 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0441 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0435\u043c\u0438\u0442\u0441\u044f \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u044d\u0442\u043e\u0442 \u0441\u0435\u0440\u0432\u0438\u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0432 \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435\u043c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0435 \u0441\u0442\u0440\u0430\u043d.

\n

\u041f\u0415\u0420\u0421\u041e\u041d\u0410\u041b\u0418\u0418

\n

\u041e\u0441\u043d\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Distributed Lab \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u0440\u0430\u0441\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u044f \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0438 \u0441\u0444\u0435\u0440\u0430\u0445 \u0435\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f, \u043d\u0430\u0437\u0432\u0430\u0432 \u043e\u0442\u0440\u0430\u0441\u043b\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043e\u043d\u0430, \u043d\u0430 \u0435\u0433\u043e \u0432\u0437\u0433\u043b\u044f\u0434, \u0432\u0440\u044f\u0434 \u043b\u0438 \u043d\u0443\u0436\u043d\u0430 \u0432\u043e\u043e\u0431\u0449\u0435. \u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u043f\u043e\u0441\u0442 \u0431\u044b\u043b \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d \u0432 \u0435\u0433\u043e \u0431\u043b\u043e\u0433\u0435 \u043d\u0430 Medium.

\n

\u0412\u044b\u0441\u043a\u0430\u0437\u0430\u0432 \u0440\u0430\u043d\u0435\u0435 \u043c\u043d\u0435\u043d\u0438\u0435 \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u0431\u0438\u0437\u043d\u0435\u0441 \u043d\u0435 \u0433\u043e\u0442\u043e\u0432 \u043f\u043e-\u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u043c\u0443 \u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430, \u041f\u0430\u0432\u0435\u043b \u043d\u0430 \u044d\u0442\u043e\u0442 \u0440\u0430\u0437 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u043b \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u043e\u0434\u0430 \u0433\u0438\u0434 \u0434\u043b\u044f \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432. \u0412 \u043d\u0435\u043c \u043e\u043f\u0438\u0441\u0430\u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u0430\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430\u0442\u0438\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u0438 \u0440\u0435\u0448\u0435\u043d\u0438\u0439 \u0438 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u043f\u043e\u043c\u043e\u0449\u044c \u0432 \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0438 \u0442\u043e\u0433\u043e, \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043b\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043d\u0438\u0445 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0439.

\n
\u00ab\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043e\u0431 \u0438\u043c\u043f\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u044f \u043f\u043e\u043b\u0443\u0447\u0430\u044e \u043a\u0430\u0436\u0434\u044b\u0439 \u0434\u0435\u043d\u044c. \u041e\u0434\u043d\u0430\u043a\u043e \u0447\u0430\u0441\u0442\u043e \u044f \u0441\u0447\u0438\u0442\u0430\u044e, \u0447\u0442\u043e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u043d\u0435 \u043d\u0443\u0436\u0435\u043d \u0432\u043e\u0432\u0441\u0435. \u0415\u0441\u0442\u044c \u0434\u0440\u0443\u0433\u0438\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0442\u0438\u043f\u044b \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b, \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u2013 \u043b\u0438\u0448\u044c \u043e\u0434\u0438\u043d \u0438\u0437 \u043d\u0438\u0445\u00bb, \u2014 \u043f\u0438\u0448\u0435\u0442 \u041f\u0430\u0432\u0435\u043b \u041a\u0440\u0430\u0432\u0447\u0435\u043d\u043a\u043e.
\n

\u0415\u0449\u0451 \u043e\u0434\u043d\u0438\u043c \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0432\u044b\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0435\u043c \u0433\u0443\u0440\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0441\u0442\u0430\u043b\u0430 \u043b\u0435\u043a\u0446\u0438\u044f \u043a\u0430\u043d\u0430\u0434\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044f \u0414\u043e\u043d\u0430 \u0422\u044d\u043f\u0441\u043a\u043e\u0442\u0442\u0430, \u0430\u0432\u0442\u043e\u0440\u0430 \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0438\u0437\u0434\u0430\u043d\u043d\u043e\u0439 \u043a\u043d\u0438\u0433\u0438 \u00ab\u0420\u0435\u0432\u043e\u043b\u044e\u0446\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430\u00bb, \u0432\u044b\u0441\u0442\u0443\u043f\u0438\u0432\u0448\u0435\u0433\u043e \u0441 \u043b\u0435\u043a\u0446\u0438\u0435\u0439 \u043e \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0435\u0435\u0441\u0442\u0440\u0430 \u043d\u0430 \u0441\u0430\u043c\u043c\u0438\u0442\u0435 TED Talk \u0432 \u0410\u043b\u044c\u0431\u0435\u0440\u0442\u0435. 

\n

 \u0423\u041a\u0420\u0410\u0418\u041d\u0410

\n

\u0412 \u0423\u043a\u0440\u0430\u0438\u043d\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u043e\u0432 \u0432 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0443\u043c \u0441\u0442\u0440\u0430\u043d\u044b. \u0422\u0430\u043a, \u043a\u043e\u043c\u0430\u043d\u0434\u0430 e-Vox \u0430\u043d\u043e\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043b\u0430 \u0437\u0430\u043f\u0443\u0441\u043a \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0439 \u0420\u0430\u0434\u0435 \u0411\u0430\u043b\u0442\u044b (\u041e\u0434\u0435\u0441\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c). \u041e\u0431 \u044d\u0442\u043e\u043c \u0440\u0435\u0434\u0430\u043a\u0446\u0438\u0438 ForkLog \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u043e\u0440 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041a\u043e\u043d\u0430\u0448\u0435\u0432\u0438\u0447. 

\n

\n

 \u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u0430\u043d\u0438\u044f, \u0432\u043d\u0435\u0441\u0435\u043d\u043d\u044b\u0435 \u0432 \u0434\u0435\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u0431\u0430\u0437\u0443 \u0434\u0430\u043d\u043d\u044b\u0445, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0438 \u0432\u044b\u0432\u043e\u0434\u0438\u0442\u044c \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0443 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u043c\u044b\u0445 \u0440\u0435\u0448\u0435\u043d\u0438\u0439. \u0410 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u043f\u043e\u043c\u043e\u0436\u0435\u0442 \u043d\u0430\u0434\u0435\u0436\u043d\u043e \u0437\u0430\u0449\u0438\u0442\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e\u0442 \u0432\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0435\u0433\u043e \u0438 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u043f\u0440\u0430\u0432\u043d\u043e\u0433\u043e \u0432\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430.

\n

\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u043e\u0439 \u043f\u0440\u043e\u0442\u043e\u0442\u0438\u043f\u0430 e-Vox \u0437\u0430\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 Ambisafe \u0438 Vareger.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0432 \u044d\u0442\u043e\u043c \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0438 \u0432 \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. \u0422\u0430\u043a, \u043c\u044d\u0440 \u0433\u043e\u0440\u043e\u0434\u0430 \u0413\u0435\u043d\u043d\u0430\u0434\u0438\u0439 \u0414\u0438\u043a\u0438\u0439 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043b \u043f\u0440\u043e\u0435\u043a\u0442 \u043e\u0431 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b Auction 3.0 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043e\u0434\u043d\u043e\u0433\u043e \u0438\u0437 \u0430\u043a\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u043f\u0440\u0438\u043d\u044f\u0442 \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u0435 \u0432\u0440\u0435\u043c\u044f.
\n\u041e\u0431 \u044d\u0442\u043e\u043c \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0441\u044f \u0432 \u0440\u0435\u0448\u0435\u043d\u0438\u0438 \u00ab\u041e \u0432\u043d\u0435\u0441\u0435\u043d\u0438\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u043f\u043b\u0430\u043d \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0411\u0435\u043b\u043e\u0446\u0435\u0440\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u043e\u0433\u043e \u0441\u043e\u0432\u0435\u0442\u0430 \u043f\u0440\u0438 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0435 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432 \u0440\u0435\u0433\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u044b\u0445 \u0430\u043a\u0442\u043e\u0432 \u043d\u0430 2016 \u0433\u043e\u0434\u00bb, \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043d\u043e\u043c \u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0438\u043c \u0441\u043e\u0432\u0435\u0442\u043e\u043c \u0411\u0435\u043b\u043e\u0439 \u0426\u0435\u0440\u043a\u0432\u0438. 

\n

\n

 \u0420\u041e\u0421\u0421\u0418\u042f

\n

\u0412 \u043f\u044f\u0442\u043d\u0438\u0446\u0443, 26 \u0430\u0432\u0433\u0443\u0441\u0442\u0430, \u0437\u0430\u043c\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041c\u043e\u0438\u0441\u0435\u0435\u0432 \u0441\u043e\u043e\u0431\u0449\u0438\u043b \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u041c\u0438\u043d\u0438\u0441\u0442\u0435\u0440\u0441\u0442\u0432\u043e \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432 \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u0435\u0442 \u043f\u0440\u043e\u0442\u0438\u0432 \u0432\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u00ab\u043b\u043e\u0431\u043e\u0432\u043e\u0433\u043e \u0437\u0430\u043f\u0440\u0435\u0442\u0430\u00bb \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430. \u041f\u043e \u0435\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u043c, \u0437\u0430\u043a\u043e\u043d\u043e\u043f\u0440\u043e\u0435\u043a\u0442 \u043e \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0430\u0445 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d \u043f\u043e \u0438\u0442\u043e\u0433\u0430\u043c \u043f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0435\u0439 \u0441\u0435\u0440\u0438\u0438 \u0432\u0441\u0442\u0440\u0435\u0447 \u0441 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u0430\u043c\u0438.

\n

\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u044d\u0442\u043e \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u043b\u043e \u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u0435\u043c \u0432\u0441\u0442\u0440\u0435\u0447\u0438, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0441\u043e\u0441\u0442\u043e\u044f\u043b\u0430\u0441\u044c 24 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0432 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u0430 \u0420\u0424 \u043f\u043e\u0434 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e\u043c \u0441\u043e\u0432\u0435\u0442\u043d\u0438\u043a\u0430 \u043f\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0443 \u0413\u0435\u0440\u043c\u0430\u043d\u0430 \u041a\u043b\u0438\u043c\u0435\u043d\u043a\u043e. \u041d\u0430 \u043c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u0438 \u043e\u0431\u0441\u0443\u0436\u0434\u0430\u043b\u0430\u0441\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u0420\u043e\u0441\u0441\u0438\u0438 \u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0435\u0435 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u044f \u043d\u0430 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435.

\n

\u041d\u0435 \u043e\u0441\u0442\u0430\u043b\u0438\u0441\u044c \u0432 \u0441\u0442\u043e\u0440\u043e\u043d\u0435 \u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0438 \u0432\u043b\u0430\u0441\u0442\u0438 \u041c\u043e\u0441\u043a\u0432\u044b, \u0437\u0430\u044f\u0432\u0438\u0432\u0448\u0438\u0435 \u043d\u0430 \u044d\u0442\u043e\u043c \u0436\u0435 \u0441\u043e\u0432\u0435\u0449\u0430\u043d\u0438\u0438 \u043e \u0433\u043e\u0442\u043e\u0432\u043d\u043e\u0441\u0442\u0438 \u0432\u043d\u0435\u0434\u0440\u0438\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d \u0432 \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb.

\n
\u00ab\u041c\u043e\u0441\u043a\u0432\u0430 \u0433\u043e\u0442\u043e\u0432\u0430 \u0431\u044b\u0442\u044c \u043f\u043b\u043e\u0449\u0430\u0434\u043a\u043e\u0439 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d. \u0418 \u043a\u0430\u043a \u0440\u0430\u0437 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0438\u043b\u043e\u0442\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043c\u044b \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442 \u00ab\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0438\u043d\u00bb. \u041c\u044b \u0445\u043e\u0442\u0438\u043c, \u0441 \u043e\u0434\u043d\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u043e\u0442\u043f\u0438\u043b\u043e\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044e \u0438 \u043f\u043e\u043d\u044f\u0442\u044c, \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043e\u043d\u0430 \u0434\u0435\u0435\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u0430 \u0434\u043b\u044f \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u0442\u0430\u043a\u043e\u0433\u043e \u0440\u043e\u0434\u0430 \u0437\u0430\u0434\u0430\u0447. \u0421 \u0434\u0440\u0443\u0433\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u0441\u043d\u044f\u0442\u044c \u0441 \u0441\u0435\u0431\u044f \u043d\u0435\u043a\u0438\u0439 \u0441\u043a\u0435\u043f\u0441\u0438\u0441 \u0441\u043e \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u00bb, \u2014 \u0437\u0430\u044f\u0432\u0438\u043b \u0437\u0430\u043c\u0435\u0441\u0442\u0438\u0442\u0435\u043b\u044c \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0430 \u0434\u0435\u043f\u0430\u0440\u0442\u0430\u043c\u0435\u043d\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 \u041c\u043e\u0441\u043a\u0432\u044b \u0410\u043d\u0434\u0440\u0435\u0439 \u0411\u0435\u043b\u043e\u0437\u0435\u0440\u043e\u0432,
\n

\u041e\u043a\u0430\u0437\u0430\u043b\u0438\u0441\u044c \u0432\u043e\u0432\u043b\u0435\u0447\u0451\u043d\u043d\u044b\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430 \u0438 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430 \u0438 \u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0435 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0438\u043b\u044b. \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u00ab\u041f\u0430\u0440\u0442\u0438\u044f \u0420\u043e\u0441\u0442\u0430\u00bb \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u043b\u0430 \u043d\u0430\u0447\u0430\u043b\u043e \u043f\u0440\u0438\u0435\u043c\u0430 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0439 \u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u0430\u0445, \u043e\u0434\u043d\u0430\u043a\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0441\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u043c\u0438 \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430\u043c\u0438 \u043e\u043d\u0430 \u0441\u043c\u043e\u0436\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u044f \u0437\u0430\u043a\u043e\u043d\u0430 \u043e \u0441\u0442\u0430\u0442\u0443\u0441\u0435 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u044b.

\n


\n\u0412 \u0441\u0432\u044f\u0437\u0438 \u0441 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435\u043c \u043d\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0440\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u043e\u0432 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u0432 \u043d\u0430 \u0441\u0447\u0435\u0442\u0430 \u044e\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043b\u0438\u0446 \u00ab\u0431\u0438\u0442\u043a\u043e\u0438\u043d\u044b \u0431\u0443\u0434\u0443\u0442 \u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u044f\u0442\u044c\u0441\u044f \u043d\u0430 \u043a\u043e\u0448\u0435\u043b\u0435\u043a \u0414\u043c\u0438\u0442\u0440\u0438\u044f \u041c\u0430\u0440\u0438\u043d\u0438\u0447\u0435\u0432\u0430, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043e\u043c\u0431\u0443\u0434\u0441\u043c\u0435\u043d\u0430 \u0438 \u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442\u0430 \u0432 \u0434\u0435\u043f\u0443\u0442\u0430\u0442\u044b \u043f\u043e \u041c\u0435\u0434\u0432\u0435\u0434\u043a\u043e\u0432\u0441\u043a\u043e\u043c\u0443 \u043e\u0434\u043d\u043e\u043c\u0430\u043d\u0434\u0430\u0442\u043d\u043e\u043c\u0443 \u043e\u043a\u0440\u0443\u0433\u0443\u00bb.

\n

\u041a\u0418\u0422\u0410\u0419

\n

\u041f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u043e\u0439 \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u0438 \u043d\u0435 \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435, \u0437\u0430\u043d\u0438\u043c\u0430\u044e\u0449\u0435\u0435\u0441\u044f \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442 \u0438 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0422\u0430\u043a, \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u041a\u0438\u0442\u0430\u044f \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u043e \u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0438 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \u043f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d\u0430. \u0426\u0435\u043b\u044c\u044e \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u0442\u0440\u0430\u0442\u0435\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u043b\u044c\u044f\u043d\u0441\u0430 \u0441\u0442\u0430\u043d\u0435\u0442 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a \u0438 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0435 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0432 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0443 \u0441\u0442\u0440\u0430\u043d\u044b, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043a \u0412\u0441\u0435\u043c\u0438\u0440\u043d\u043e\u043c\u0443 \u0431\u043b\u043e\u043a\u0447\u0435\u0439\u043d-\u0441\u0430\u043c\u043c\u0438\u0442\u0443, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0432\u0435\u0434\u0451\u043d \u0432 \u0428\u0430\u043d\u0445\u0430\u0435 \u0432 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u0435 \u044d\u0442\u043e\u0433\u043e \u0433\u043e\u0434\u0430.

\n

\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e, \u0441\u0442\u0430\u0432\u0438\u0442\u0441\u044f \u043b\u0438 \u043f\u0435\u0440\u0435\u0434 \u044d\u0442\u043e\u0439 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f, \u043d\u043e \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0442\u043e\u0442 \u0444\u0430\u043a\u0442, \u0447\u0442\u043e \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0430 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0430\u044f \u043f\u043e\u0438\u0441\u043a\u043e\u0432\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u041a\u0438\u0442\u0430\u044f Baidu \u0431\u0435\u0437 \u043a\u0430\u043a\u043e\u0433\u043e-\u043b\u0438\u0431\u043e \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f \u0443\u0434\u0430\u043b\u0438\u043b\u0430 \u0432\u0441\u044e \u0440\u0435\u043a\u043b\u0430\u043c\u0443, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u0443\u044e \u0441 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u043c \u0438 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u0432\u0430\u043b\u044e\u0442\u0430\u043c\u0438.

\n

\u041e\u0431 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0439 \u0441\u043e\u043e\u0431\u0449\u0438\u043b\u0438 \u0434\u0432\u0435 \u043a\u0440\u0443\u043f\u043d\u0435\u0439\u0448\u0438\u0435 \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0435 \u0431\u0438\u0440\u0436\u0438 OKCoin \u0438 Huobi, \u043f\u0438\u0448\u0435\u0442 Bloomberg News. \u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u0435\u043b\u0438 Baidu \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441 \u0430\u0433\u0435\u043d\u0442\u0441\u0442\u0432\u0430 \u043e\u0442 \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0435\u0432 \u0432\u043e\u0437\u0434\u0435\u0440\u0436\u0430\u043b\u0438\u0441\u044c. 

\n", - "cashout_time": "2016-09-29T04:28:30", - "category": "bitcoin", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-28T17:15:09", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779945, - "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto\",\"money\",\"news\"],\"image\":[\"http://radikal.ru/fp/949b19ab0ea142769b5d5bad6918e850\",\"http://radikal.ru/fp/ab1e6cf8f8ce414d8555699b45afc0eb\",\"http://forklog.com/wp-content/uploads/0e6dbfdc-638d-11e6-8e55-cc0a56a8b37c-1.png\",\"http://forklog.com/wp-content/uploads/14152259_10202179476045465_1807948603_o.jpg\",\"http://forklog.com/wp-content/uploads/14022327_853179024818469_8570878217622377273_n-1.jpg\"],\"links\":[\"http://forklog.com/zhurnalu-forklog-dva-goda/\",\"http://forklog.com/birzha-bitstamp-otmechaet-pyatiletnij-yubilej/\",\"http://forklog.com/kriptovalyutnaya-birzha-gdax-dobavila-litecoin/\",\"http://forklog.com/birzha-poloniex-snimaet-s-torgov-the-dao-i-drugie-altkoiny/\",\"http://forklog.com/krupnejshaya-bitkoin-birzha-turtsii-ostanovila-rabotu-iz-za-problem-s-bankom/\",\"http://forklog.com/apparatnyj-koshelek-trezor-dobavil-podderzhku-ethereum/\",\"https://github.com/trezor/trezor-mcu/pull/103\",\"http://forklog.com/platezhnyj-servis-bitwala-vklyuchil-v-spisok-rabochih-altkoinov-dash-i-emercoin/\",\"http://forklog.com/venesuelskij-platyozhnyj-servis-cryptobuyer-dobavil-podderzhku-dash/\",\"http://forklog.com/sostoyalsya-reliz-novoj-versii-ethereum-koshelka-mist-s-podderzhkoj-coinbase-buy-widget/\",\"http://forklog.com/vedushhie-banki-mira-obedinilis-dlya-sozdaniya-novoj-kriptovalyuty/\",\"http://forklog.com/yuzhno-afrikanskij-rezervnyj-bank-gotov-k-ispolzovaniyu-blokchejna-i-kriptovalyut/\",\"http://forklog.com/yaponskie-korporatsii-testiruyut-blokchejn-platformu-dlya-chekovyh-raschetov/\",\"http://forklog.com/konsortsium-r3-cev-zapatentoval-blokchejn-platformu-dlya-infrastruktury-uoll-strit/\",\"http://forklog.com/ekonomisty-prognoziruyut-vytesnenie-sistemy-swift-blokchejnom/\",\"http://forklog.com/kompaniya-bitshares-munich-ivs-obyavila-o-nachale-ico/\",\"http://forklog.com/proekt-hyperledger-nazval-novyj-sostav-tehnicheskogo-komiteta/\",\"http://forklog.com/startap-chronicled-inc-zapustil-otkrytyj-reestr-dlya-interneta-veshhej/\",\"http://forklog.com/kompaniya-verizon-communications-zapatentovala-blokchejn-hranilishhe-klyuchej/\",\"http://forklog.com/kriptovalyutnye-kompanii-singapura-budut-poluchat-edinuyu-litsenziyu-na-osushhestvlenie-deyatelnosti/\",\"http://forklog.com/investitsionnyj-bitkoin-startap-keza-budet-spasen-blagodarya-satoshi-citadel-industries/\",\"http://forklog.com/poseshhaemost-steemit-sravnyalas-s-rannim-facebook/\",\"http://forklog.com/komanda-decent-obyavila-o-vazhnyh-izmeneniyah-v-sisteme-distributsii-tokenov/\",\"http://forklog.com/polzovateli-coinbase-v-evrope-poluchili-vozmozhnost-pokupat-kriptovalyutu-pri-pomoshhi-bankovskih-kart/\",\"http://forklog.com/osnovatel-distributed-lab-nazval-oblasti-kotorym-ne-nuzhen-blokchejn/\",\"https://medium.com/@pavelkravchenko/investor-guide-does-this-cool-project-truly-need-blockchain-bdde70a26bfb#.40cs8sfz2\",\"http://forklog.com/avtor-knig-o-blokchejne-don-tepskott-vystupil-na-ted-talk/\",\"http://forklog.com/dostignuta-dogovorennost-o-zapuske-e-vox-v-balte-odesskoj-oblasti/\",\"http://forklog.com/meriya-beloj-tserkvi-perehodit-na-blokchejn-platformu-auction-3-0/\",\"http://forklog.com/minfin-rf-protiv-pryamogo-zapreta-bitkoina/\",\"http://forklog.com/v-rossii-obsudili-kriptovalyuty-na-gosudarstvennom-urovne/\",\"http://forklog.com/partiya-rosta-utochnila-shemu-priema-pozhertvovanij-v-bitkoinah/\",\"http://forklog.com/kitaj-pristupil-k-issledovaniyu-blokchejna-na-gosudarstvennom-urovne/\",\"http://forklog.com/kitajskij-poiskovik-baidu-zablokiroval-vsyu-svyazannuyu-s-bitkoinom-reklamu/\"]}", - "last_payout": "2016-08-30T04:28:30", - "last_update": "2016-08-28T17:15:09", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 2, - "parent_author": "", - "parent_permlink": "bitcoin", - "percent_hbd": 10000, - "permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", - "reward_weight": 10000, - "root_author": "forklognews", - "root_permlink": "daidzhest-novostei-obzor-glavnykh-sobytii-bitkoin-industrii", - "title": "\u0414\u0430\u0439\u0434\u0436\u0435\u0441\u0442 \u043d\u043e\u0432\u043e\u0441\u0442\u0435\u0439 \u2013 \u043e\u0431\u0437\u043e\u0440 \u0433\u043b\u0430\u0432\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0431\u0438\u0442\u043a\u043e\u0438\u043d-\u0438\u043d\u0434\u0443\u0441\u0442\u0440\u0438\u0438", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T17:14:12", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "paulsemmelweis", - "author_rewards": 0, - "beneficiaries": [], - "body": "Discussed below are two new articles that shed light on the grand economic chessboard controlled by governments while paving the way for more lies and manipulation by the media...\n\nGlobal central bankers, stuck at zero, unite in plea for help from governments: https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\n\nAs Fed nears rate hikes, policymakers plan for 'brave new world': https://ca.news.yahoo.com/fed-nears-rate-hikes-policymakers-plan-brave-world-005117150--business.html\n\nWhile simultaneously espousing Obama's great economic achievements in the press for years after saving the nation from peril in 2008, central bankers now openly admit there's a very weak economy and a recovery that never was. You know, facts.\n\nWhile talk of \"new tools\" needed to fight the next recession unofficially dominated the annual meeting of our monetary overlords in Wyoming, it is quite clear that the main weapon in their arsenal is the same as it was then; to maintain control over human beings by selling a never ending stream of fiction to the public.\n\n\"it may take a massive program, large enough even to shock taxpayers\"\n\"hard to convince markets and households that things will get better\"\n\"encourage the shift in mood\"\n\"prevent public expectations\"\n\"do not respond in expected ways\"\n\nAnd this gem\u2026 \"In modern monetary theory, households and business expectations are felt to play a defining role.\"\n\nSounds really modern!\n\nThe article ends with this\u2026 \"It was not clear whether such ideas will catch on. But there was a broad sense here that the other side of government may need to up its game.\"\n\nA game indeed. Of mass manipulation for the benefit of those who rule us while easily selling the public what they are doing is in their best interests.", - "cashout_time": "2016-09-28T19:47:36", - "category": "economics", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-28T17:14:12", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779934, - "json_metadata": "{\"tags\":[\"economics\",\"government\",\"central\",\"banks\",\"recession\"],\"links\":[\"https://ca.news.yahoo.com/global-central-bankers-stuck-zero-unite-plea-help-123135496--business.html\"]}", - "last_payout": "2016-08-29T19:47:36", - "last_update": "2016-08-28T17:14:12", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 2, - "parent_author": "", - "parent_permlink": "economics", - "percent_hbd": 10000, - "permlink": "it-s-just-a-game-to-governments-and-central-bankers", - "reward_weight": 10000, - "root_author": "paulsemmelweis", - "root_permlink": "it-s-just-a-game-to-governments-and-central-bankers", - "title": "It's just a game to governments and central bankers", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T17:13:51", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "randolphrope", - "author_rewards": 0, - "beneficiaries": [], - "body": "On the way to Chinle, Arizona USA \n\nJust off the highway over looking the desert.\n\nhttp://imgur.com/ITp3j5l.jpg\n\nI just remember one on the drive.", - "cashout_time": "2016-09-28T18:29:18", - "category": "photography", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-28T17:13:51", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779930, - "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"\"],\"image\":[\"http://imgur.com/ITp3j5l.jpg\"]}", - "last_payout": "2016-08-29T18:29:18", - "last_update": "2016-08-28T17:13:51", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 6, - "parent_author": "", - "parent_permlink": "photography", - "percent_hbd": 10000, - "permlink": "steem-it-photo-challenge-6", - "reward_weight": 10000, - "root_author": "randolphrope", - "root_permlink": "steem-it-photo-challenge-6", - "title": "Steem.it photo challenge # 6", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-28T17:13:21", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "ebluefox", - "author_rewards": 0, - "beneficiaries": [], - "body": "Empathy is an interesting aspect of human nature that many people do not possess. Empathy in short is the ability to view an scenario from a different perspective than your own, normally to better understand someone's perspective on certain topics or ideas. This handy skill is a learned skill and when used effectively can be used to better understand humanity.\nBut as with every neat skill, they tend to have as many pros as they do cons. So i will attempt to explain the pros and cons that i have found apparent with empathy.\n There are quite a few pros to empathy, one of which being in your reputation. A person who uses empathy often is normally seen as a loving compassionate person. Another pro that is quite noticeable is the ability to understand unexplained problems. On occasion if a problem really troubles someone or is very personal, most people will not tell anyone about it. But with empathy you can figure out what is troubling them sometimes with something as simple as \"How have you been?\". A more prominent pro of using empathy is better understanding how a person truly is. Most people wear a \"Facade\" in public or a metaphorical mask, these tend to hide their true personality from the public eye and conceal most things about them. Using empathy, you can work around the \"Facade\" and figure out how they truly are as a person, and most of the time appreciate them a bit more.\n Empathy has allot of pros but also has its fair share of cons to go with it, a good example of one of its cons is a changed perspective. under most circumstances, use of empathy becomes a habit and changes your outlook on everyone around you. This is not really very terrible, but it can lead to you disliking a person more than would have normally. Another apparent con is over-assessing someone. This can happen when you use empathy on someone and spot something that would make you feel awful, but in truth does not faze them. Here is an example. You are talking with a person and figure out that they don't have a mother. To you that may seem horrible and you start pitying them, when in truth it may not even matter to them in the slightest. A more cumbersome problem with empathy lies with information. In order to understand or sympathize with someone you need to understand the problems they put up with. If you ask too many questions about their life, they may find you \"Nosy\" or \"Annoying\". On the contrary, if you do not inquire very much about them, you will not have any idea of their standpoint at all and cannot empathize with them. The last con i will cover is drama. It is very easy to get caught in some drama if you try to understand peoples problems, some of which may be very serious. Some people are not patient enough to deal with the newly acquired drama and can sometimes make the problem worse than it need to be.\n This list most definitely did not cover every pro or con associated with empathy because they will differ from person to person however i did cover a few recurring pros and cons. whether you think empathy is worth your time and energy is up to you and your values in life and social interaction.", - "cashout_time": "2016-09-28T17:28:57", - "category": "empathy", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-28T17:13:21", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779923, - "json_metadata": "{\"tags\":[\"empathy\",\"psychology\",\"social-skills\",\"problems\"]}", - "last_payout": "2016-08-29T17:28:57", - "last_update": "2016-08-28T17:13:21", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 2, - "parent_author": "", - "parent_permlink": "empathy", - "percent_hbd": 10000, - "permlink": "the-pros-and-cons-of-empathy", - "reward_weight": 10000, - "root_author": "ebluefox", - "root_permlink": "the-pros-and-cons-of-empathy", - "title": "The Pros and Cons of Empathy", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": "2243580957008", - "active": "2016-09-11T21:09:09", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "steemsquad", - "author_rewards": 588, - "beneficiaries": [], - "body": "\n

We are STEEMSQUAD, a Steemit inititative to promote diversity and quality of content by featuring authors from the school of minnows.

\n

\"steem-squad3\"
\n

\n

WHAT is #steemsquad?

\n

Steemsquad is an initiative of multiple minnows whose objective is to promote diverse and quality content and their work which may not have a chance to get noticed when published in the main streem. STEEMSQUAD initiative will try to tweak the game to equally distribute the wealth among its members. 

\n

STEEMSQUAD is a community-backed account responsible for posting blogs of qualified authors and at the same time upvotes quality blog posts of its members.

\n

Members of STEEMSQUAD are from across multiple timelines to ensure a 24/7 support and active participation in Steemit.

\n

The Issue at Hand

\n

For quite some time, there has been a noticeable trend as to who gets rewards. Those favored are the whales themselves, members with high reputation levels, incoming popular personalities and celebrities either from the cryptocurrency world or the entertainment world. A number of people from the finance institutions have joined as well and have garnered huge rewards on their \u201cintroductory\u201d posts.

\n

And what happens to those who are not celebrities, unknown personalities from not-so-popular backgrounds? Their posts get dumped, thrown into oblivion. Then all the sweat and blood poured spilled into writing the blog just go to waste. This is where #steemsquad comes in.

\n


\n

WHY We Do It?

\n

Steemit is a social media platform where **EVERYONE** gets paid for creating and curating content, as promised if and when you decide to dive into the Steemit Ocean. 

\n

It leverages a robust digital points system, called Steem, that supports real value for digital rewards through market price discovery and liquidity.

\n

We aim to give EVERYONE a chance to get noticed, earn rewards, and be a part of a community of people helping people.

\n

You Can Succeed

\n

All HOPE is NOT LOST. We have seen minnows rise to the occasion. With a positive attitude, an unwavering determination, lots and lots of good quality posts (one is enough though to get you 15k, if you hit the nail on the head), there is no reason why you can\u2019t be successful here in Steemit.

\n

#steemsquad will support you along the way.

\n

OUR GOLDEN RULES

\n
    \n
  1. We give priority to quality contents from low-powered profiles (minnows).
  2. \n
  3. The published author gets 100% of SBD. However, 50% of which goes to the author\u2019s SP to allow the author to power-up leveraging his/her SP to upvote other writers.
  4. \n
  5. Any SP earned by STEEMSQUAD remains in the STEEMSQUAD account to gain more voting power for the benefit of its members.
  6. \n
  7. Pay-it-forward. The powered-up author commits to help other writers by upvoting and commenting to blog post to increase the post\u2019s value.
  8. \n
\n


\n

HOW TO GET PUBLISHED BY STEEMSQUAD

\n

\n

PHOTO CREDIT: Anna Frajtova / shutterstock.com
\n

\n
    \n
  1. FOLLOW the account STEEMSQUAD and be a member of the initiative.
  2. \n
  3. You have to signify your willingness to join by coming to our official chatroom in https://steemit.chat/channel/steemsquad. Introduce yourself and state your intention to join the initiative. Include a link to your Steemit profile.
  4. \n
  5. Submit your article in plain text format and links to images. Send your entry to @steemit.asia or @sebastien or @jaycobbell as a PM.
  6. \n
  7. Article must be at least 300 words with at least 1 image.
  8. \n
  9. Give credit to the images you use.
  10. \n
  11. If you quote someone, give credit as well.
  12. \n
  13. At least 80% of the article must be your own.
  14. \n
  15. You will get feedback after 24 hours and a schedule will be provided when your work will be published.
  16. \n
  17. Once it is published, it will be promoted to the chatroom by either @steemit.asia or @sebastien or @jaycobbell in https://steemit.chat/channel/steemsquadpromotional for all members to see. This is where all promotions are done.
  18. \n
\n


\n

HOW TO GET UPVOTED BY STEEMSQUAD AND MEMBERS

\n


\nPHOTO CREDIT: Clipartix.com
\n

\n
    \n
  1. To get a chance to be upvoted by STEEMSQUAD, you must have a QUALITY blog post.
  2. \n
  3. Use the tag #steemsquad in your blog post.
  4. \n
  5. Our curators will browse through all blog posts using our official #steemsquad tag name and choose will notify the author by commenting that the post has been chosen as a featured post/author. It will be promoted in our chat channel https://steemit.chat/channel/steemsquadpromotional.
  6. \n
\n


\n

STEEMSQUAD ACCOUNT SECURITY

\n

The Posting Key (The posting key is used for posting and voting. It should be different from the active and owner keys) will be given to at least 3 members of STEEMSQUAD responsible for posting blog posts in 24 hour cycle.

\n

The Active Key (The active key is used to make transfers and place orders in the internal market) will be given to 2 members of STEEMSQUAD. One member will act as auditor/backup in case the primary member is not available.

\n

The Owner Key (The owner key is the master key for the account and is required to change the other keys) is given to one Whale sponsor and 2 other members of STEEMSQUAD.

\n

A member responsible for the account security may hold more than one (1) key as shown above.

\n


\n

OUR MENTORS

\n

There are people we consider as examples on the platform. Inspiration, mentors.

\n

@juneaugoldbuyer
\n@thedollarvigilante
\n@dragonslayer109
\n@stellabelle
\n@charlieshreem
\n@rogerkver
\n@donkypong
\n@tuck-fheman
\n@masteryoda
\n@andrarchy 

\n

\"steem-squad-FOLLOW-US\"
\n

\n", - "cashout_time": "2016-09-29T11:08:54", - "category": "introduceyourself", - "children": 18, - "children_abs_rshares": "2254360518257", - "created": "2016-08-28T17:13:18", - "curator_payout_value": { - "amount": "173", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779920, - "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemsquad\",\"steemit\",\"minnows\",\"writing\"],\"users\":[\"steemit.asia\",\"sebastien\",\"jaycobbell\",\"juneaugoldbuyer\",\"dragonslayer109\",\"stellabelle\",\"charlieshreem\",\"rogerkver\",\"donkypong\",\"tuck-fheman\",\"masteryoda\",\"andrarchy\"],\"image\":[\"https://c1.staticflickr.com/9/8171/29209353271_2eabbba74f_o.png\",\"https://cdn.elegantthemes.com/blog/wp-content/uploads/2016/02/Essential-Blogging-Skills-Know-your-Audience-shutterstock_222537538-Anna-Frajtova.png\",\"http://clipartix.com/wp-content/uploads/2016/04/Thumbs-up-clipart-3.png\",\"https://c1.staticflickr.com/9/8305/29179909862_ed27607510_o.png\"],\"links\":[\"https://steemit.chat/channel/steemsquad.\",\"https://steemit.chat/channel/steemsquadpromotional\",\"https://steemit.chat/channel/steemsquadpromotional.\"]}", - "last_payout": "2016-08-30T11:08:54", - "last_update": "2016-08-28T17:13:18", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-13T14:10:24", - "net_rshares": "2243580957008", - "net_votes": 57, - "parent_author": "", - "parent_permlink": "introduceyourself", - "percent_hbd": 10000, - "permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", - "reward_weight": 10000, - "root_author": "steemsquad", - "root_permlink": "hello-we-are-steemsquad-and-we-are-here-to-support-the-minnows-read-on", - "title": "Hello! We Are STEEMSQUAD And We Are Here to Support The Minnows. Read On.", - "total_payout_value": { - "amount": "566", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": "2243580957008" - }, - { - "abs_rshares": 0, - "active": "2016-08-28T17:13:03", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "okay", - "author_rewards": 0, - "beneficiaries": [], - "body": "## A picture is worth a thousand words, more so in astronomy ##\n\n**Let's take a look at the coming week's sky**\n\n\nhttp://www.skyandtelescope.com/wp-content/uploads/Venus-Jupiter-27Aug2016_f.jpg\n(Image courtesy of Sky and Telescope)\nOn August 27th, about 45 minutes after sunset, go outdoors and start looking low above the horizon in the west for an amazingly close pairing of Venus and Jupiter.\n\nhttp://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\n\n\nNext weekend, shortly after sunset, the thin Moon (waxing crescent) steps away from Venus and Jupiter.\n\nLooking at the night sky is a great joy! Free for everyone with no ticket required. You can watch the evening sky with your naked eye, no need for telescope or binoculars for these beautiful astronomical events.\n\n*Stay tuned for next week's sky.*\n\n\n\n\n If you enjoyed this post please vote for my witness node. Learn how to vote for witness `okay` **at the end of my witness post** by [**clicking here**](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network). ", - "cashout_time": "2016-09-28T16:11:21", - "category": "science", - "children": 5, - "children_abs_rshares": 0, - "created": "2016-08-28T15:45:33", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 778828, - "json_metadata": "{\"tags\":[\"science\",\"astronomy\"],\"image\":[\"http://www.skyandtelescope.com/wp-content/uploads/WEBvic16_Sep02ev.jpg\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", - "last_payout": "2016-08-29T16:11:21", - "last_update": "2016-08-28T17:13:03", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 4, - "parent_author": "", - "parent_permlink": "science", - "percent_hbd": 10000, - "permlink": "this-week-s-sky-aug-27-sep-3", - "reward_weight": 10000, - "root_author": "okay", - "root_permlink": "this-week-s-sky-aug-27-sep-3", - "title": "This Week's Sky Aug-27/Sep-3", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": "130408996119", - "active": "2016-08-28T17:36:42", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "skyefox", - "author_rewards": 125, - "beneficiaries": [], - "body": "As I have stated in earlier posts, gardening is currently my obsession.. it's seems wild to me that the standard is to work for currency and trade currency for food rather than just growing your own food. \n

Here is my small harvest from this morning!

\nEvery morning I go out and eat a couple of my cherry tomatoes, a few leafy greens, and usually 1/2 a leaf of my sweet basil. It's a wonderful thing to wake up, take the dog out and get a healthy organic little snack. I love it.\nhttps://s14.postimg.org/62aqviz0h/IMG_1804.jpg\n\n\nI understand that gardening takes time, effort, and a little bit of knowledge but in my opinion it is one of the most reward \"hobbies.\" This is my first year gardening. I decided to garden this year because I have been doing more and more reading about the American food industry and my conclusion is that the American population are being made sick on purpose through the food we eat. I don't know exactly what does what in our food but it seems absolutely insane to me that we can't get the FDA to evaluate any dietary supplements but they will evaluate and even vouch for these lab made pharmaceutical drugs. \n\nAll of this lead me to feeling a strong urge to grow organic food. I honestly feel guilty when I feed my family and I don't fully believe in what we are eating. Don't get me wrong, I love pepperoni pizza but ignorance is bliss, and I am not ignorant to what I am eating. \n\nI believe I am slowly heading down the path of becoming a vegan as I gain more knowledge. I have always been a hunter and a fisherman, it's what I was taught as a young boy in the north woods. I love to hunt and fish, but I also have a very deep compassion for life. Not human life, but life in general. I believe that we are intelligent enough as a species to live without causing harm to other living things that are equipped with nervous systems. I guess I am just realizing day by day that things are not necessarily what I have been told... \n

This kind of sums up how I feel currently...

\nhttps://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\n\nI am not a very good consumer. I am very frugal and calculated with my money, sometimes to a fault. I'm also not good at being an employee and just being a \"gear in the machine.\" I was not built to work and be told what to do while someone acts as if their employment position somehow gives them a higher status than I. We are humans, you just have a different job. These factors, and many others, have lead to me being self employed and trying to find my way on the internet. I have dabble in many things online and I have learned enough to at least provide myself with enough income to pay my mortgage, bills, etc.. \n\nI am also someone that is in the prepper mind state. I have started my small stockpile of beans, rice, and various other dried foods. I think that the American people have become complacent and many of us are just chasing the carrot we were instructed to chase. Many people seem to not realize the fact that we as a country heavily depend on other people or corporations for the things we use everyday. If water and electricity were to be shut off and panic set it, many people would die because they don't know what to do without someone else providing them with these luxuries. \n\nI don't like the idea of depending on anyone for anything. I have always been someone who provided for myself. I got a job at 14 years old at the local bakery working Saturday mornings so that I could get my first computer myself. I worked for weeks, since I was only getting paid $5.15/hour (roughly 13 years ago) it took me a long time to save up for a computer to play Counterstrike 1.5... We had 6 kids in our house in a \"middle class\" family, needless to say we were told to get jobs as early as possible to acquire our luxuries. Since then I have had the mindset that I don't want to allow someone else to be \"the hand that feeds\", and that applies to food, water, electricity, and even knowledge of my child. \n\nDEPENDENCY OPENS THE DOORS FOR EXPLOITATION! And in a capitalist driven global economy, if it can be exploited, it often is. \n\nMy apologies, there I go again, going of on some rant instead of just showing you the damn garden update. I already can't wait for next spring. I have been buying heirloom vegetable seeds and thrift shopping for large planters for $1 so that next year I can grow lots more. \n

This is the Pink Brandywine that I am so excited about!

\nThese guys took forever to grow. I didn't know what I was doing and I had put too many plants in 1 planter which caused them to compete for the nutrients. On top of them a strong storm came through and blew these guys over and bent there stalks horizontal. I really didn't know if I would get any fruit from them, but they are changing and I can't wait to eat these!\nhttps://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\n\nhttps://s14.postimg.org/e3txgbbgh/IMG_1800.jpg\n\nHere is a cucumber that is growing a little goofy. Not sure why but its like a beer can cucumber... lol\nhttps://s14.postimg.org/c1tg22dhd/IMG_1802.jpg\n\nA more normal cucumber... \nhttps://s14.postimg.org/610t23x6p/IMG_1803.jpg\n\nAnd this is my $3 table I built so that I could start my seeds indoors under some fluorescent lights. \n\n\nhttps://s14.postimg.org/6t3h1b1dt/IMG_1805.jpg\n\n\nThank you for reading and happy gardening!", - "cashout_time": "2016-09-28T18:11:57", - "category": "garden", - "children": 2, - "children_abs_rshares": "130408996119", - "created": "2016-08-28T17:12:54", - "curator_payout_value": { - "amount": "15", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779916, - "json_metadata": "{\"tags\":[\"garden\",\"photography\",\"rant\",\"food\"],\"image\":[\"https://s14.postimg.org/62aqviz0h/IMG_1804.jpg\",\"https://scontent-ord1-1.xx.fbcdn.net/v/l/t1.0-9/14055085_858033764327944_5973630634223907699_n.jpg?oh=3e13ad53036a832c864d4aa6cdc359e9&oe=584DDBEC\",\"https://s14.postimg.org/6cd7hr7b5/IMG_1801.jpg\"]}", - "last_payout": "2016-08-29T18:11:57", - "last_update": "2016-08-28T17:12:54", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-12T21:18:18", - "net_rshares": "130408996119", - "net_votes": 37, - "parent_author": "", - "parent_permlink": "garden", - "percent_hbd": 10000, - "permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", - "reward_weight": 10000, - "root_author": "skyefox", - "root_permlink": "a-small-garden-update-my-pink-brandywine-tomatoes-are-coming", - "title": "A small garden update... My Pink Brandywine Tomatoes are coming!", - "total_payout_value": { - "amount": "123", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": "130408996119" - }, - { - "abs_rshares": 0, - "active": "2016-08-28T18:08:06", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "fitiliper1985", - "author_rewards": 0, - "beneficiaries": [], - "body": "
http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png
\n

\n

Before I was in a relationship, I didn't have much sex. My first sexual intercourse occurred while I was travelling overseas on a holiday by myself. I met a woman in hawaii at the airport, and later had sex with her.

\n

I had done a lot of masturbating prior to this. I had often thought about having sex, and I found that my sexual drive caused me to behave in ways that I normally wouldn't. 

\n

\n
https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg
\n

\n

For example I would follow women I found attractive, or I would try to look up their skirts, or I would wander about at night to try to look into bedroom windows.

\n

When I met someone that I knew I would marry, I thought I would be able to have sex as much as I liked because my wife would always be available to have it with me. This turned out to be untrue. My wife didn't want to have sex as often as I wanted to, and I found myself still masturbating while I waited for the next time to come.

\n

I don't think women understand the power of their husband's sexual drive. 

\n

\n
http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg
\n

\n

Men are attracted to women by how they look. It doesn't matter if they are strangers. Men will look at a woman dressed in  a certain way and will start feeling horny. As soon as they ejaculate, the feeling of horniness goes, but will return in a couple of hours. When the sexual desire comes upon a man, it becomes his dominating thought, and it demands to be satisfied. That's why many men then masturbate in order to relieve the pressure on their thoughts. If unrelieved the pressure grows and if the wife is unwilling to have sex, then some men will look for other women to have sex with. 

\n

The sexual pressure is constantly present in a man's mind until relief comes.

\n

\n
https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg
\n

\n

Most women are not as interested in sex as men. 

\n

\n
https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg
\n

\n

Women are more interested in relationship.  Women have sex with a man in the hope that the man will want to stay in their life and have a relationship with them. 

\n

Some women use sex as a bait to catch a man, and then when the relationship is happening, they are not as interested in sex anymore. Women enjoy sex, but as part of a fulfilling relationship. Men just want to put their penis into a vagina and ejaculate. As soon as ejaculation occurs, a lot of men lose all interest in the woman. The woman then feels hurt and used because she didn't get what she wanted which was relationship. Men will say anything they think a woman wants to hear in order to have sex.

\n

Wives who have sex with their husbands when not really wanting it, feel used by their husbands. Women also can be selfish when they demand sex from men who are not in the mood. 

\n

God created sex to be enjoyed in a committed relationship between a man and a woman who are one person physically, spiritually, emotionally, and mentally. 

\n

Sex is a part of the relationship, not the main thing. If a man demands sex then he is being selfish, and his relationship will be harmed if the woman gives sex to the man when she is not wanting to have it. If the man wants sex with his wife, then he must give her what she wants. He must romance her and give her a good relationship. Then if sex happens, it will be enjoyable for both of them. This will build the relationship.

", - "cashout_time": "2016-09-28T17:56:42", - "category": "sex", - "children": 5, - "children_abs_rshares": 0, - "created": "2016-08-28T17:12:42", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 779915, - "json_metadata": "{\"tags\":[\"sex\",\"psychology\",\"life\",\"story\",\"\"],\"image\":[\"http://static1.businessinsider.com/image/52730b80eab8eaee3c9bad27-480/jonah-hill-for-real-skeptical-disbelief-shock.png\",\"https://digital.report/wp-content/uploads/2015/06/Data-e%60ksgibitsianizm-Retina-1078x516.jpg\",\"http://i.huffpost.com/gen/1730678/images/n-COUPLE-BED-ANGRY-628x314.jpg\",\"https://suecroftphysiotherapistblog.files.wordpress.com/2012/06/20120617-105119.jpg\",\"https://7216-presscdn-0-76-pagely.netdna-ssl.com/wp-content/uploads/2012/02/say-not-interested.jpg\"]}", - "last_payout": "2016-08-29T17:56:42", - "last_update": "2016-08-28T17:12:42", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 12, - "parent_author": "", - "parent_permlink": "sex", - "percent_hbd": 10000, - "permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", - "reward_weight": 10000, - "root_author": "fitiliper1985", - "root_permlink": "in-a-relationship-sex-becomes-a-matter-of-selfishness-or-unselfishness", - "title": "In a relationship, sex becomes a matter of selfishness or unselfishness.", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - } - ] -} \ No newline at end of file +{ + "comments": [ + { + "abs_rshares": 0, + "active": "2016-08-15T05:28:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-m3001", + "author_rewards": 0, + "beneficiaries": [], + "body": "Hi, I'm A.M for now, I'm in my mid-20s and want to share my story with working and facing this thing called life after I watched a lot of YouTubers like Thomas James \"TomSka\" David Brown \u201cboyinaband\u201d and many others who have very openly shared their hardships, they have inspired me to write this\u2026.. Whatever this is.\nI don't consider myself a good writer so bare with me here.\nTo try to keep this post organized and make sense I'll highlight the point I want to talk about and tell the relevant part of my story, you can connect the pieces all together at the end.\n\n**First how am I?** \nI grow up in the countryside I went to normal school when I was yang, because I was the quiet introvert and wasn't from the town I was in I got bullied a lot for most of my time at school, I got through school time knowing just two friends, I was OK with it.\nI genuinely lost interest in school when I was in the ninth grade It seemed more like a memory test than a way of learning so I started looking for ways to make money, \"why waste time learning things irrelevant in real life if I can make money now\" my naive 16 years old self said, don't get me wrong I didn't think I was done with learning I just wanted to learn in my own way, and I didn't stop school, now I'm in part time Business school, so back then I started looking for any way to make money in the last 5 year I tried: working in sales for over 2 years, selling products online, becoming instructor online, worked as SEO & social media consultant, tried starting my own business for 4 times, and for the last year and half I taught myself how to program and how to use Unity game engine and now I'm working on my first game, I can easily and proudly say that I didn't succeed at any of what I did so far, but I've learned a lot every time and I would do it all over again if I had the chance.\nThe process of picking myself up every single freaking time was a living hell and I got desperate many times.\nbecause I saw a lot of people feeling relevant to what David said in his video I want to share how I managed to keep my sanity and my opinion about some point he brought in his video.\n\n\n**Not thinking your work is good enough:**\nIs that really a bad thing? not being satisfied with what you just accomplished is a sign that you always look forward to what you still can do.\nI remember after I published my first course on Udemy I got invited to a hangout and I went for it I thought I'll give myself some slack, while I was there someone shouted out \"this guy here just published his first course let all give him a clap shall we\" for some reason he thought that was a good idea, I don't think I can blame him his intentions were good, I never tried to put a smile as hard as I did that moment I guess I just didn't want to look like a selfish prick, but the truth that I wasn't happy about what I accomplished I was thinking about my bad English poor structure of the course and was I being a sellout for trying to sell my knowledge? halfway of creating the course, I was already thinking about 5 other things I wanted to do next.\nI think there's nothing wrong about not being satisfied with what you finish, I think It's a good sign of an ambitious creator.\nWhen you first make the decision to accomplish something It looks like that godly thing that you think It would feel good to have or do, but when you start turning that big sexy thing to a small to-do list somewhere the appeal you had to that thing will disappear to a certain point, it's not that godly sexy thing you thought about before it's becoming a part of your routine now you know the process of doing that thing It's not a mystery anymore.\nI think that's why they say: \"It's about the journey, not the destination\".\n\n\n**Not taking care of yourself:**\nIt's hard to keep taking care of yourself to others people standards, whether it's about looking ripped putting makeup or buying the latest clothes, instead find your own save point and move forward from there if you feel the need to.\nWhen I was working in seals I had to look my best most of the time's which was exhausting more than the work itself and what made it worst is that some coworkers starting hinting that I need to start working out to look sharper and more confident.\nBecause I was desperate for results from my work I started going to the gym and I got stuck at joining for a month or two then giving up for half a year couple of times, every time I stopped going to the gym I over beat myself saying that I need this for my work, I need more money to do a lot of things, if this work didn't go well what else Am I going to do, eventually I usually took it out on food, I don't even want to start thinking what would have happened to me if my body was able to store fat.\nTrying to take care of yourself to others standards can be very exhausting, I felt down because I was putting so much effort in things I don't really care about to get others approval, I genuinely don't care about having a ripped body, it would look cool sure but I'm not willing to put all that effort into health and looks at least for now, who knows maybe in the future things will be better and I'll be willing to put the effort necessary to have 6 pack abs (wink wink ladies).\nNowadays I eat better than I used to, I still eat some junk food but things are much much better than they were 2 years ago, when I fell down I still go buy and drink a liter of Pepsi but at some point that was my morning coffee, as for my looks I cut my hair very short so I would have one less thing to worry about in the morning, I shave my beard once every couple of weeks I change my cloth every two or three days even if I didn't go out.\nThe point is I take care of myself for my own sack, It was much worse before and I'll always keep working to improve pit by pit.\nIt's about building habits not getting motivated for a couple of weeks then beating yourself for not being able to keep up.\n\n\n**Not mastering one skill:**\nI worked in sales, instructed online, worked as SEO and social media consultant, self taught myself how to program and make games but I don\u2019t think I\u2019m the right person to talk about this, all I\u2019m saying that if you didn\u2019t find that one true call that is right for you, you might be a \u201cmultipotentialite\u201d if you want to know what exactly does this mean I urge you to watch Emilie talk at TedX\nhttps://www.youtube.com/watch?v=QJORi5VO1F8\nAnd check the blog too if you want to know more \nhttp://puttylike.com/\n\n**Everything happens for a reason........ or does it?**\nWhen I was young I was fortunate to know a good old religious man, I don\u2019t know about your perspective about religions but hear me out this isn\u2019t a sermon, I still remember when he tried to teach me that everything happens for a reason I was like \u201cWHAT\u2026\u2026. Oh really, then what is the reason for this and this and that\u201d my question didn\u2019t stop and I wasn\u2019t asking nicely either yet, somehow he was calm about it like some kind of monk, I don\u2019t know if I ruined his day or not but I feel bad for taking the world misery out on him that day, he was just a simple man who was doing what he think is good for others, his intentions were good but unfortunately for him I wasn\u2019t a simple person, I overthink everything and everyone, it\u2019s my blessing and my curse, later I told my family about him and I was surprised that they knew him, apparently everyone knows each other in the countryside, they told me about what he was facing lately personally, financially, and emotionally, I didn\u2019t believe that someone who is facing all that isn\u2019t depressed or angry and even trying to do good for others at least by his believes, I wanted to know more about him he got my interest, I wanted to know if he\u2019s an imposter who is just putting a good face or not because a part of me didn\u2019t believe how can he be that good, I kept asking about him from time to time and sometimes I even went to his \u201clessons\u201d, eventually I went to face him with what I know about him like a detective facing a criminal, the crime of being that simple yet trying to be better than me, It\u2019s pathetic I know It\u2019s just how my brain works sometimes, because I used to take pride of being logical about everything and not believing in anything without questioning it, it bothered me how can he be at peace with his life and I\u2019m not even that he\u2019s facing a lot more than I\u2019m, I faced him and told him everything then asked how can you be this calm about everything that is happening in your life, he had a faint smile and said \u201cI don\u2019t know the reason for everything that is happening right now but everything happens for a reason\u201d I remember holding my fist hard and walking away, maybe I was holding my fist trying not to hit him for not being realistic like me or probably not to beat myself for not being half the man that he was.\nI don\u2019t know about your perspective about religions and I\u2019m not here to tell you about mine but I respect that some religions teach that everything happens for a reason, is it the truth? Does everything happens for a reason? I don\u2019t know, I don\u2019t think that is even the point, It\u2019s silly to even get in an argument about this because no one can be sure about it, it\u2019s simply just a belief, it\u2019s simply teach you to not overthink about the reasons for everything around you, just learn from it if you can and focus on what you can do, it\u2019s kind of funny for me to tell you not to overthink about somethings because I\u2019m sure my 19 year old me would punch me right in the face, but it\u2019s just too draining and exhausting to try to find a reason for every bad thing that have happened to me or to others.\nIn the last three years two of my best friends died, the first one I knew for about nine years and the other one for around five, both killed, both in a way they didn\u2019t deserve to, each time I had to force myself to focus on the 0.0000001% full part of the cup or else I would have lose my sanity.\nI would hate to think what would be my thought process if someone tried to sell me religion like a product, some of them would be like \u201cHi son, you should follow my beliefs because I\u2019m 100% sure that I\u2019m right and everybody else is wrong and if you don\u2019t, well you\u2019re FU**ED\u201d that would have disfigured some of the beliefs that helped me get better.\nControlling your stream of thoughts will be the hardest thing you\u2019ll ever have to do in your life, but if mastered it you\u2019ll become unstoppable.\n\n\nI\u2019ve been getting into the game industry for around year and half now, I don\u2019t have any experiance in the field but I\u2019ve other experiences that many don\u2019t, working in sales made me learn a lot about people's motivations and incentives, I saw a lot of people jump to make purchase while other chicken out last minute, you don\u2019t get to learn about this in a book or an NLP course, you only get to learn this experience by working in sales first hand, working as an SEO and social media consultant made me care about the little details like posting in the right social medias that is more relevant to your audience, more isn\u2019t always better, choosing the right words colors and timing for best result, sometimes modifying your content for a better marketing or not going into a certain niche even if there\u2019s an audience for it because it doesn\u2019t suit your brand, teaching online made me learn that the selling point isn\u2019t the end goal, helping and mentoring students even after they have purchased the course was way more important than I thought, the feedback I got about the course was crucial to take the course to the next level and some student even helped me with some marketing.\nIf you know anything about the mobile game industry you can see how these experiences can be helpful, I can imagine the kind of journey I want to create for the player because I can build the motivations and incentives I want for him, while I\u2019m building the player journey I\u2019ll always keep in mind to put the monetization and ads the right way so all of them can work seamlessly together for a better player experience, and taking care of existing players and community will always be a priority, I wasn\u2019t happy and cheerful when I had to learn these experiences the hard way, I thought I was just failing, I even remember crying myself to sleep every time I decided to pull the plug on something I was working on, but eventually It worked out somehow I think.\n\u201cyou can't connect the dots looking forward, you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something - your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life\u201d.\nSteve Jobs\n\n\nI want to share some of the tricks I used that helped my in general to get my life together:\n\n**Music**\nlisten to cheerful music, even if it might not be exactly what you listen to usually but try them for a while, my favorite type or music is Rock and Metal it\u2019s loud and make me feel empowered but sometimes it's not what I need to change my mood so I started listening to electro music mostly Drum & bass, I didn\u2019t like it at first, I\u2019m human I don\u2019t like to change, but forcing myself to listen to it for while change my perspective about it and I started listening to it while I\u2019m working, and it worked.\n\n\n**habits not motivation**\nWe\u2019re slaves to our habits, it\u2019s exhausting to do something that\u2019s you\u2019re not used to for quite a while, so invest your effort and time to build your habits pit by pit no matter how slow it will take, measure your progress and celebrate your success no matter how small they\u2019re, it\u2019ll make all the difference in your life in the long term.\n\n**work in a group**\nNo matter how introverted person you think you\u2019re, you\u2019re still human at the end of day and you need your dose of human interaction so try to work in group if you can, if you don\u2019t have that luxury (like me) work out side from time to time, library, coffee shop, parks all works, changing your surrounding and environment can change your mood, you can try changing your room\\office decor every couple of weeks too.\n\n**warm-blooded pet**\nGet a warm-blooded pet it helps, I tried fish and turtles but didn\u2019t really work for me they just stared at me with their empty eyes, I have a cat for two year now and It helped, maybe it\u2019s having the sense of that there is a creature that needs you to look after him, it\u2019s helped me not to feel completely unworthy in some bad day.\n\n\nFinally I hope this help you in any way it can, and hope it will find its way to all who needs it.", + "cashout_time": "1969-12-31T23:59:59", + "category": "story", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T04:53:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 811667, + "json_metadata": "{\"tags\":[\"story\",\"philosophy\",\"life\",\"psychology\",\"secret-writer\"],\"links\":[\"https://www.youtube.com/watch?v=QJORi5VO1F8\"]}", + "last_payout": "2016-09-14T16:58:03", + "last_update": "2016-08-15T05:28:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 4, + "parent_author": "", + "parent_permlink": "story", + "percent_hbd": 10000, + "permlink": "how-i-managed-depression-and-work", + "reward_weight": 10000, + "root_author": "a-m3001", + "root_permlink": "how-i-managed-depression-and-work", + "title": "How I managed depression and work", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-07T21:34:24", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-man", + "author_rewards": 0, + "beneficiaries": [], + "body": "Trying to repost to FB", + "cashout_time": "1969-12-31T23:59:59", + "category": "homeschooling", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-07T21:34:24", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 670168, + "json_metadata": "{\"tags\":[\"homeschooling\"]}", + "last_payout": "2016-09-07T09:52:42", + "last_update": "2016-08-07T21:34:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 1, + "parent_author": "jamiecrypto", + "parent_permlink": "raising-leaders-instead-of-rulers", + "percent_hbd": 10000, + "permlink": "re-jamiecrypto-raising-leaders-instead-of-rulers-20160807t213425757z", + "reward_weight": 10000, + "root_author": "jamiecrypto", + "root_permlink": "raising-leaders-instead-of-rulers", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-30T21:34:27", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "Finally someone is saying it out loud. thank you!!", + "cashout_time": "1969-12-31T23:59:59", + "category": "life", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-30T19:37:48", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 496078, + "json_metadata": "{\"tags\":[\"life\"]}", + "last_payout": "2016-08-30T10:16:39", + "last_update": "2016-07-30T19:38:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "agent", + "parent_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "percent_hbd": 10000, + "permlink": "re-agent-how-society-is-making-life-hard-for-girls-of-generation-y-20160730t193747551z", + "reward_weight": 10000, + "root_author": "agent", + "root_permlink": "how-society-is-making-life-hard-for-girls-of-generation-y", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-07-13T21:01:48", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a-spears", + "author_rewards": 0, + "beneficiaries": [], + "body": "add katie-lynn boulard on FB, she's my friend and she's currently doing an exchange in bangkok. She's really sweet and she said you can come to hers for the evening if you want to have some company. she only has a room so no bed for you :/ but at least something, I'm sure she can give you a meal and just some company. :))", + "cashout_time": "1969-12-31T23:59:59", + "category": "travel", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-07-13T20:34:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 100405, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "2016-08-25T12:51:45", + "last_update": "2016-07-13T20:34:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 20, + "parent_author": "ashleybr", + "parent_permlink": "test", + "percent_hbd": 10000, + "permlink": "re-ashleybr-test-20160713t203411015z", + "reward_weight": 10000, + "root_author": "ashleybr", + "root_permlink": "test", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-29T23:37:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "nice radio", + "cashout_time": "2016-09-05T23:36:21", + "category": "music", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-29T23:36:21", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 1048732, + "json_metadata": "{\"tags\":[\"music\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-29T23:36:21", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "roelandp", + "parent_permlink": "radiosteem-is-looking-for-new-playlist-curators-especially-people-without-sbd", + "percent_hbd": 10000, + "permlink": "re-roelandp-radiosteem-is-looking-for-new-playlist-curators-especially-people-without-sbd-20160829t233620001z", + "reward_weight": 10000, + "root_author": "roelandp", + "root_permlink": "radiosteem-is-looking-for-new-playlist-curators-especially-people-without-sbd", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 84444748327, + "active": "2016-08-18T22:37:18", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 27, + "beneficiaries": [], + "body": "http://www.gotovim.ru/pics/sbs/kurshashvostoch/00.jpg\n\nchicken (boneless b\u0451dryshki) - 800-900g; Lemon - 1 pc .; Garlic - 2 cloves; olive oil - 4 tbsp. l .; spices: paprika (powder) - 1 tsp .;. turmeric - 1 tsp .;. Powdered cumin - 1 tsp .;. Coriander (ground) - 1 tsp .;. cinnamon - 1 pinch; Allspice (ground) - 1 pinch; Chili (ground) - 1 pinch (to taste and degree of severity - as desired can be added); black pepper - to taste; salt - to taste; for the yogurt sauce: Greek yogurt (thick) - 200 ml; tahina (sesame paste) - 2 tsp .;. lemon (juice) - 1 tbsp. l .; sesame (seeds) - 1 tbsp .; olive oil - 1 tbsp\n\n1. Mix all the spices, lemon zest and three davim juice, grind chives.\nhttp://www.gotovim.ru/pics/sbs/kurshashvostoch/01.jpg\n\n2.Divide the chicken into pieces of 3x3 cm and placed in a plastic bag. Adding to seasoning, lemon juice and zest, garlic and olive oil. Tightly close the bag and thoroughly mix the contents. We send in the refrigerator for at least 1 hour and preferably even longer.\nhttp://www.gotovim.ru/pics/sbs/kurshashvostoch/02.jpg\n\n3.Soak wooden skewers in water for about 15 minutes Kindle grilled meat on skewers strung.\nhttp://www.gotovim.ru/pics/sbs/kurshashvostoch/03.jpg\n\n4.And fry on direct heat until tender, turning constantly. Served with bread Middle East Lieb, tomato, parsley salad, yogurt sauce and sesame paste tahini and eggplant gril\u0451vanym with raspberries. Cold glass of Czech Staropramen here will be very useful. Bon Appetit!\n\n+ Phased gallery sauce did not have time to do so will add here is already finished result. 200 ml thick Greek yogurt mix 2 hours. L. sesame paste and 1 tbsp. l. lemon juice. Add salt and pepper to taste. Sprinkle with 1 tbsp. l. roasted sesame seeds and 1 tbsp. l. olive oil.\n\nhttp://www.gotovim.ru/pics/sbs/kurshashvostoch/04.jpg", + "cashout_time": "2016-08-25T22:37:18", + "category": "recipes", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-18T22:37:18", + "curator_payout_value": { + "amount": "1", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 879146, + "json_metadata": "{\"tags\":[\"recipes\",\"chicken\",\"food\",\"steem\",\"steemit\"],\"image\":[\"http://www.gotovim.ru/pics/sbs/kurshashvostoch/00.jpg\"]}", + "last_payout": "2016-08-19T22:49:18", + "last_update": "2016-08-18T22:37:18", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 84444748327, + "net_votes": 6, + "parent_author": "", + "parent_permlink": "recipes", + "percent_hbd": 10000, + "permlink": "chicken-kebab-in-the-middle-east-with-yogurt-sauce", + "reward_weight": 10000, + "root_author": "a11at", + "root_permlink": "chicken-kebab-in-the-middle-east-with-yogurt-sauce", + "title": "Chicken kebab in the Middle East with yogurt sauce", + "total_payout_value": { + "amount": "39", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 381381254182721571, + "vote_rshares": 84444748327 + }, + { + "abs_rshares": 192366353940, + "active": "2016-08-18T16:02:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 52, + "beneficiaries": [], + "body": "i am join", + "cashout_time": "2016-08-25T15:31:06", + "category": "motocross", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-18T15:31:06", + "curator_payout_value": { + "amount": "25", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 872336, + "json_metadata": "{\"tags\":[\"motocross\"]}", + "last_payout": "2016-08-19T15:38:21", + "last_update": "2016-08-18T15:31:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 192366353940, + "net_votes": 1, + "parent_author": "b0y2k", + "parent_permlink": "steemit-factory-racing-custom-shirt-giveaway-the-redraw-5-more", + "percent_hbd": 10000, + "permlink": "re-b0y2k-steemit-factory-racing-custom-shirt-giveaway-the-redraw-5-more-20160818t153105991z", + "reward_weight": 10000, + "root_author": "b0y2k", + "root_permlink": "steemit-factory-racing-custom-shirt-giveaway-the-redraw-5-more", + "title": "", + "total_payout_value": { + "amount": "76", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 846427196465997276, + "vote_rshares": 192366353940 + }, + { + "abs_rshares": 4879589029, + "active": "2016-08-16T00:27:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "2 days ago @dantheman promised to return my reputation, but my reputation = (-1).\n\n@dantheman Give me back, please, my reputation", + "cashout_time": "2016-08-22T23:41:57", + "category": "steem-help", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-15T23:41:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 825970, + "json_metadata": "{\"tags\":[\"steem-help\",\"dantheman\",\"steemit\",\"flag\",\"downvoting\"],\"users\":[\"dantheman\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-15T23:41:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 4879589029, + "net_votes": 2, + "parent_author": "", + "parent_permlink": "steem-help", + "percent_hbd": 10000, + "permlink": "my-reputation", + "reward_weight": 10000, + "root_author": "a11at", + "root_permlink": "my-reputation", + "title": "my reputation", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 22475714438312941, + "vote_rshares": 4879589029 + }, + { + "abs_rshares": 0, + "active": "2016-08-15T17:44:12", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 0, + "beneficiaries": [], + "body": "@dantheman You promised to return my reputation, but my reputation = (-1). Give me back, please, my reputation!", + "cashout_time": "1969-12-31T23:59:59", + "category": "steem", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T17:44:12", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 820471, + "json_metadata": "{\"tags\":[\"steem\"],\"users\":[\"dantheman\"]}", + "last_payout": "2016-09-15T17:22:06", + "last_update": "2016-08-15T17:44:12", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "dantheman", + "parent_permlink": "curation-rewards-and-voting-incentive", + "percent_hbd": 10000, + "permlink": "re-dantheman-curation-rewards-and-voting-incentive-20160815t174409032z", + "reward_weight": 10000, + "root_author": "dantheman", + "root_permlink": "curation-rewards-and-voting-incentive", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T19:41:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "a11at", + "author_rewards": 25, + "beneficiaries": [], + "body": "Yesterday **@dantheman** promised to return my reputation, but my reputation = **(-1)**. \n\n**@dantheman Give me back, please, my reputation**", + "cashout_time": "1969-12-31T23:59:59", + "category": "steem-help", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-14T19:41:03", + "curator_payout_value": { + "amount": "6", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 803627, + "json_metadata": "{\"tags\":[\"steem-help\",\"dantheman\",\"steemit\",\"flag\",\"downvoting\"]}", + "last_payout": "2016-09-14T08:05:21", + "last_update": "2016-08-14T19:41:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 3, + "parent_author": "", + "parent_permlink": "steem-help", + "percent_hbd": 10000, + "permlink": "for-dantheman", + "reward_weight": 10000, + "root_author": "a11at", + "root_permlink": "for-dantheman", + "title": "for @dantheman", + "total_payout_value": { + "amount": "38", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json index ab747b19..86e67364 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "abs_rshares": 0, - "active": "2016-08-15T19:12:42", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "crowe", - "author_rewards": 0, - "beneficiaries": [], - "body": "I thought my viewers would be interested in the place I actually live in. I live in a City called Ashkelon. Its about 7 miles North of Gaza. Last year in June when some missiles were being shot toward Israel the Sirens in Ashkelon went off. I filmed this video from my deck. The video is what we hear when this happens. \n\nhttps://www.youtube.com/watch?v=Ky23yJaNDfo", - "cashout_time": "2016-09-15T19:47:27", - "category": "israel", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-15T19:12:42", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 617094, - "json_metadata": "{\"tags\":[\"israel\",\"siren\",\"gaza\",\"politics\",\"steemit\"],\"links\":[\"https://www.youtube.com/watch?v=Ky23yJaNDfo\"]}", - "last_payout": "2016-08-16T19:47:27", - "last_update": "2016-08-15T19:12:42", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 2, - "parent_author": "", - "parent_permlink": "israel", - "percent_hbd": 10000, - "permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", - "reward_weight": 10000, - "root_author": "crowe", - "root_permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", - "title": "Israeli Bomb Siren goes off in my City. I filmed this from my deck.", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": "1339555910464", - "active": "2016-08-15T19:44:48", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "luminarycrush", - "author_rewards": 0, - "beneficiaries": [], - "body": "\n

I came across a lone blooming cactus during a hike this weekend.  Photos taken at 946' ASL above Two Harbors, Catalina Island.

\n

\n


\n

\n


\n

\n", - "cashout_time": "2016-09-15T19:47:27", - "category": "photography", - "children": 0, - "children_abs_rshares": "1339555910464", - "created": "2016-08-15T19:44:48", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 617542, - "json_metadata": "{\"tags\":[\"photography\",\"cactus\",\"catalinaisland\",\"california\",\"twoharbors\"],\"image\":[\"https://scontent.xx.fbcdn.net/t31.0-8/13988224_10154518762224175_252304266230235242_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13923665_10154518762269175_2030254348907005554_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13988240_10154518762254175_9097905240858144855_o.jpg\"]}", - "last_payout": "2016-08-16T19:47:27", - "last_update": "2016-08-15T19:44:48", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-01T02:13:51", - "net_rshares": "1339555910464", - "net_votes": 14, - "parent_author": "", - "parent_permlink": "photography", - "percent_hbd": 10000, - "permlink": "cactus-in-the-clouds-catalina-island", - "reward_weight": 10000, - "root_author": "luminarycrush", - "root_permlink": "cactus-in-the-clouds-catalina-island", - "title": "Cactus in the Clouds - Catalina Island", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": "1339555910464" - }, - { - "abs_rshares": "76217996022", - "active": "2016-08-17T15:39:57", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "brunopro", - "author_rewards": 13512, - "beneficiaries": [], - "body": "http://imgur.com/HrpWWaK.png\n\n## And there are changes again regarding the duration until the payout occurs, now your post will have a minimum 24 hours duration until the first payout. \n\nPersonally I think that they should never have changed it to 12 hours. I didn't understand the logic behind it at the time and I still don't. This 24h period it's ideal because this way the post has better chances of overcoming the first publish period and get more traction. It also enables of a higher possibility of being seen and upvoted by the users that on the 12h were sleeping or simply away.\n\n# And you? What do you think about this change?\n\n----\n\nEdit post-publish: I've notice that I can't upvote a post that has been up for a month. Is this new also? I thought a post would always be open for an upvote? Can anyone reply to this question? thanks!\n\n----\n\n###### Photo Credits: https://unsplash.com/@sonjalangford", - "cashout_time": "2016-09-15T19:47:42", - "category": "steemit", - "children": 22, - "children_abs_rshares": "78071773184", - "created": "2016-08-15T18:36:36", - "curator_payout_value": { - "amount": "3483", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 616664, - "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"opinion\",\"reward\"],\"image\":[\"http://imgur.com/HrpWWaK.png\"]}", - "last_payout": "2016-08-16T19:47:42", - "last_update": "2016-08-15T18:51:42", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-08-30T20:41:45", - "net_rshares": "76217996022", - "net_votes": 82, - "parent_author": "", - "parent_permlink": "steemit", - "percent_hbd": 10000, - "permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", - "reward_weight": 10000, - "root_author": "brunopro", - "root_permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", - "title": "LATEST NEWS: Payouts are back to 24H - What do you think about it? [ Quick read / Opinion Article ]", - "total_payout_value": { - "amount": "20200", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": "76217996022" - }, - { - "abs_rshares": 0, - "active": "2016-08-15T19:50:39", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "yassinebentour", - "author_rewards": 0, - "beneficiaries": [], - "body": "\n

http://unitedcivilrights.org/images/fa-prprty.gif

\n

The purpose of property rights is to mitigate conflict over scarce, rivalrous resources. To have a property right over a scarce, rivalrous resource is to have the right to exclude others from using that resource in the attainment of some ends. For example, I have property rights over my body, which means I can exclude others from using my body for sexual pleasure or labor without my consent. If they do access my body in such a way without my consent, it's called rape or slavery, respectively. Likewise, I have property rights over the accumulated capital for which I consensually trade my time and labor, which means I have the right to exclude people from using my accumulated capital without my consent. When someone accesses my accumulated capital in such a way without my consent, it's called theft or trespass.
\nScale doesn't change this. If I transform my accumulated capital into a factory by hiring people who voluntarily exchange the product of their labor for some of my accumulated capital, this means that they value what they receive in exchange for working more than they value the direct product of their labor (the factory). Likewise, it means I value the factory more than the accumulated capital I gave up for it. This is a win-win situation, or a positive sum game. The workers I hired retain property rights over the capital they received as payment for their labor, which means they can exclude others from the use of their newly acquired accumulated capital, and I retain property rights over the factory, which means I can exclude others from the use of my factory.
\nDiscrepancies between marginal benefit don't change this either. A consensual exchange doesn't become theft just because one party benefits more from the exchange than another. If this wasn't the case, every single instance of buyer's remorse would be indicative of theft. If someone agrees to produce a walking stick in exchange for ten dollars and the purchaser of the walking stick then sells it to someone else for twenty dollars, how can it be claimed that the producer of the walking stick was a victim of theft if they haven't been deprived of the ten dollars for which they voluntarily exchanged the walking stick? Would it have been reasonable to expect that the first purchaser of the walking stick wouldn't have obtained more than ten dollars of value from it given that the exchange wouldn't have happened in the first place if they hadn't valued the walking stick more than they valued ten dollars?
\nOf course not. Anything that happens to the walking stick after the original exchange is no business of the producer of the walking stick because said producer already exchanged his property rights to the walking stick for property rights to a different form of accumulated capital (ten dollars).
\nLikewise, if I use more of my accumulated capital to hire workers to work in my factory, they will only accept my offer of employment if they value what I'm offering more than their own free time and more than whatever stake they may have otherwise had in the product they will be producing. In other words, if they accept employment, it will be with the understanding that they're giving up any stake in what they're producing in exchange for what I'm offering them. Maybe my factory assembles televisions. Maybe one worker can produce one television per hour. Would they be able to produce televisions this efficiently without my previous investment in production capital (which hasn't even been recouped and probably never will be completely given that maintenance, employment and higher order production good costs are a revolving door)? Would they be able to produce televisions AT ALL without this previous investment in production capital? Of course not, and they know this, which is why they're willing to give up both their leisure and whatever stake their labor may have otherwise entitled them to in the production of a television in exchange for a fixed amount of accumulated capital.
\nAs was the case with the walking stick, whatever happens to the television after this exchange occurs is no business of the worker. How could the future sale of the television constitute theft of the worker's accumulated capital if it can't be demonstrated that the worker was deprived of the accumulated capital that he voluntarily accepted as payment for the production of the television, especially given that the television was produced with other accumulated capital (plastic, circuits, labor saving devices, etc.) that the worker never even owned?
\nIt can't.
\nProperty ownership necessarily implies exclusivity, which means that \"private property\" is redundant, as is \"personal property\". The words \"private\" and \"personal\" denote exclusivity, which is already implied by the word \"property\". To differentiate between \"personal property\" and \"private property\" is therefore a distinction without a difference. This implication of exclusivity also means that \"public property\" is a contradiction in terms. If no one can be excluded from using the resource, it isn't property. Resources that aren't scarce or rivalrous likewise can not be considered property, which means that \"intellectual property\" is also a contradiction in terms.
\nThis means that seizing the means of production is a genuine form of theft and that \"pirating\" music, software, art and writing is not, which may seem counter-intuitive if you attended the indoctrination camps euphemistically known as \"public schools\" when you were growing up.

\n", - "cashout_time": "2016-09-15T19:47:48", - "category": "writing", - "children": 2, - "children_abs_rshares": "25854883309", - "created": "2016-08-15T19:43:57", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 617534, - "json_metadata": "{\"tags\":[\"writing\",\"rights\"],\"image\":[\"http://unitedcivilrights.org/images/fa-prprty.gif\"]}", - "last_payout": "2016-08-16T19:47:48", - "last_update": "2016-08-15T19:43:57", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-01T01:02:42", - "net_rshares": -104004690671, - "net_votes": 1, - "parent_author": "", - "parent_permlink": "writing", - "percent_hbd": 10000, - "permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", - "reward_weight": 736, - "root_author": "yassinebentour", - "root_permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", - "title": "The purpose of property rights is to mitigate conflict over scarce, rivalrous resources", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-15T19:45:42", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "libtrian.outlet", - "author_rewards": 0, - "beneficiaries": [], - "body": "http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\nFriday's move is the clearest indication yet that the White House is serious about getting Obama\u2019s legacy trade deal.\n\nThe White House put Congress on notice Friday morning that it will be sending lawmakers a bill to implement President Barack Obama\u2019s landmark Trans-Pacific Partnership agreement \u2014 a move intended to infuse new energy into efforts to ratify the flat-lining trade pact.\n\nThe move establishes a 30-day minimum before the administration can present the legislation, but the White House is unlikely to do so amid the heated rhetoric of a presidential campaign in which both major party nominees have depicted free trade deals as massive job killers.\n\nFriday's notification is the clearest signal yet that the White House is serious about getting Obama\u2019s legacy trade deal \u2014 the biggest in U.S. history \u2014 passed by the end of the year, as he has vowed to do despite the misgivings of Republican leaders and the outright opposition of a majority of Democrats in Congress.\n\nStriking a defiant tone, Obama predicted at a press conference last week that the economic centerpiece of his strategic pivot to Asia would pass in the lame-duck session, saying he\u2019d like to sit down with lawmakers after the election to discuss the \"actual facts\" behind the deal, rather than toss it around like a \"political football.\"\n\n\"We are part of a global economy. We're not reversing that,\" Obama said, describing the necessity of international supply chains and the importance of the export sector to U.S. jobs and the economy. \"The notion that we're going to pull that up root and branch is unrealistic.\"\n\nThe notification, a new requirement of the trade promotion authority legislation Congress passed last year to expedite passage of the Asia-Pacific pact, is \u201cmeant to ensure early consultations between the administration and Congress,\u201d Matt McAlvanah, a spokesman for the Office of the U.S. Trade Representative, said in a statement. \u201cAs such, the draft SAA [Statement of Administrative Action] was sent today in order to continue to promote transparency and collaboration in the TPP process.\u201d\n\nThe White House's draft document describes the major steps the administration will take to implement any changes to U.S. law required by the deal. Those actions range from the mundane \u2014 designating an administration point of contact for communications about the pact \u2014 to the complex \u2014 setting up procedures to stop harmful surges of agricultural or textile imports.\n\nBut the deal is going nowhere until the White House addresses a number of concerns lawmakers have raised about the trade agreement, which Canada, Mexico, Japan and eight other countries joined the United States in signing last February.\n\nFirst and foremost: satisfying the concerns of Senate Finance Committee Chairman Orrin Hatch (R-Utah) and other lawmakers about protections for a new class of drugs known as biologics. They say the pact provides too short a monopoly period for rights to research and development data. Other lawmakers have complained the deal would bar tobacco companies from seeking redress through investor-state dispute arbitrage for damages resulting from country regulations. Still others are seeking assurances that member countries will abide by their commitments to provide access for U.S. pork and dairy exports.\n\nUntil these issues are resolved, House Speaker Paul Ryan and Senate Majority Leader Mitch McConnell have made clear that the pact will not get the votes it needs to pass.\n\nRyan's spokeswoman, AshLee Strong, reiterated the point on Friday.\n\n\u201cAs Speaker Ryan has stated for months, there are problems that remain with the administration\u2019s TPP deal, and there can be no movement before these concerns are addressed,\" she said.\n\nDemocrats, meanwhile, have largely called the deal a nonstarter over concerns about the enforceability of labor and environmental standards in countries like Vietnam and the lack of strong protections against currency manipulation.\n\nThe administration claims it is making progress on these issues and has resolved others, including banking industry concerns over the exclusion of financial data from rules prohibiting countries from requiring local storage.\n\nBut that doesn\u2019t change the reality of the down-ballot drag that candidates are facing as they campaign back home in their districts. In a reversal from years past, many Republicans are on the defensive about their support for free trade because of Donald Trump\u2019s daily tirades about what he characterizes as the serious economic damage wrought by trade agreements like the North American Free Trade Agreement and the TPP as well as his complaints that China is flouting international trade rules.\n\nThe Republican platform picked up on this theme, saying significant trade deals \"should not be rushed or undertaken in a Lame Duck Congress.\"\n\nThe small band of Democrats who the administration hopes will support the TPP are facing increased pressure within their own party to abandon the president on the agreement. Sens. Bernie Sanders\u2019 and Elizabeth Warren\u2019s strong condemnations of the trade deal have forced Hillary Clinton, who supported the TPP as Obama\u2019s secretary of state, to reject the pact to appease the liberal wing.\n\n\"I will stop any trade deal that kills jobs or holds down wages, including the Trans-Pacific Partnership,\" Clinton said during an economic policy speech at an automotive manufacturing plant in Warren, Mich., on Thursday. \"I oppose it now, I'll oppose it after the election and I'll oppose it as president.\"\n\nClinton\u2019s clear rejection of the trade deal has emboldened liberal groups like the Warren-aligned Progressive Change Campaign Committee to launch a campaign to press Democrats to publicly oppose a TPP vote in the lame duck.\n\nSanders also called on Democratic congressional leaders to go on record against the White House\u2019s effort to get the deal done by the end of the year, saying the agreement is opposed by every trade union and the grassroots base of the Democratic Party.\n\n\"I am disappointed by the president's decision to continue pushing forward on the disastrous Trans-Pacific Partnership trade agreement that will cost American jobs, harm the environment, increase the cost of prescription drugs and threaten our ability to protect public health,\u201d the Vermont senator said in a statement after learning of the White House's action on Friday.\n\nMeanwhile, the administration continues to press the deal in key congressional districts \u2014 especially those of Democrats who supported the trade promotion authority bill last year.\n\nInterior Secretary Sally Jewell returned to her hometown of Seattle last month to tout the TPP\u2019s potential effects on the environment at a Washington Council on International Trade event with more than 150 business leaders.\n\nThen, last week, Commerce Secretary Penny Pritzker hit the San Diego and Boulder districts of Reps. Susan Davis and Jared Polis \u2014 two of the 28 House Democrats that voted for the bill \u2014 and visited a steel plant in Cleveland to promote the TPP. Treasury Secretary Jack Lew did the same when he met with local and state officials and Fortune 500 business executives in Minneapolis.\n\nOn Thursday, Undersecretary of Commerce for Oceans and Atmosphere Kathryn Sullivan spoke at a Seattle clean energy business roundtable focused on the TPP and the environment. And this Monday, Deputy U.S. Trade Representative Robert Holleyman will participate in a World Affairs Council of Atlanta discussion on the trade deal featuring former Republican Sen. Saxby Chambliss and UPS CEO David Abney.\n\nAs the political fight plays out, the nuts-and-bolts process of moving the deal forward will continue. Once Congress reviews the draft notification that the White House submitted on Friday, the administration can move forward with sending lawmakers a final statement and the draft of the implementing bill itself. The legislation will describe the actual changes to U.S. law to comply with the rules of the trade agreement.\n\nAfter that, the Senate Finance and House Ways and Means committees could hold \u201cmock markups\u201d of the bill (because under trade promotion authority, Congress is not actually allowed to tinker with the agreement or its implementing legislation itself, but it can ask the administration to do so).\n\nBut given the tenor of the elections, the entire process could be pushed into a crowded lame-duck legislation session, which would mean no time for the mock markups. Instead, there could be a lot of deal-making between the White House and congressional leadership to move the bill before Clinton or Trump takes over on Jan. 20.\n\nObama said last week that he\u2019s ready to press his case. \"Right now, I'm president, and I'm for it. And I think I've got the better argument,\" he said.\n\nSource:\nwww.politico.com/story/2016/08/obama-congress-trade-warning-226952", - "cashout_time": "2016-09-15T19:47:57", - "category": "politics", - "children": 1, - "children_abs_rshares": "11700424464", - "created": "2016-08-15T19:44:39", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 617538, - "json_metadata": "{\"tags\":[\"politics\",\"tpp\",\"conspiracy\",\"news\",\"freetrade\"],\"image\":[\"http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\"]}", - "last_payout": "2016-08-16T19:47:57", - "last_update": "2016-08-15T19:44:39", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-04T23:37:39", - "net_rshares": 0, - "net_votes": 3, - "parent_author": "", - "parent_permlink": "politics", - "percent_hbd": 10000, - "permlink": "obama-puts-congress-on-notice-tpp-is-coming", - "reward_weight": 2046, - "root_author": "libtrian.outlet", - "root_permlink": "obama-puts-congress-on-notice-tpp-is-coming", - "title": "Obama puts Congress on notice: TPP is coming", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": "89025972926", - "active": "2016-09-15T15:19:39", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "profanarky", - "author_rewards": 0, - "beneficiaries": [], - "body": "\n

\n

In which the folks in the subway find themselves some unwelcome visitors...

\n

29

\n

   \u201cDo NOT panic! There is no reason to believe that this is anything more than just a power outage.\u201d  

\n

   \u201cBut-- BUT-- how can it be the whole state?\u201d One wide-eyed young woman, one of the aforementioned punk rockers actually raised her hand.  

\n

   \u201cYeah, it\u2019s gotta be Al Qaeda, who the hell else could it be?!!\u201d Another idiot bellowed.    

\n

   Others followed, there words quickly jumbling together into a tidal wave of paranoia. It only took one idiot to get the ball rolling.   

\n

   \u201cIt\u2019s gotta be the terrorists, who the hell else could it be?\u201d    

\n

   \u201cOh my god, I gotta get to my kids\u2026 My kids are still at the day care!!!\u201d   

\n

   \u201cDid an airplane hit a power plant??!! OH GOD!! DID AN AIRPLANE HIT ONE OF THE NUCLEAR PLANTS??!!\u201d    

\n

   She heard it all and it was nothing more than a buzzing, though an irritating one nonetheless. Her instincts, those things cops called their gut instincts told her Mister Blue-eyes was the key, the only thing really important right now. Mister Blue-eyes and whatever the hell it was he was watching outside their little tin prison.  

\n

     \u201cNOW LISTEN DAMMIT!!!\u201d She hollered, trying to make herself louder than the loudest of them, a difficult task with New Yorkers. \u201cI told you, there\u2019s no goddamn reason to think it\u2019s terrorism! This has happened before in our lifetimes and it\u2019s gonna happen again. As far as I\u2019m concerned it ain\u2019t nothing more than a power outage. Going FUCKING crazy ain\u2019t gonna help us any, dammit!!\u201d  

\n

   They kept going, some of them, but most paid her mind and listened, their faces drawn and tired. They\u2019d suffered enough the last few years, New Yorkers. There wasn\u2019t a one of them, including herself, who hadn\u2019t had their world turned literally upside down two years before. The terror they\u2019d lived was fresh on their minds, fresh and ready to burst again and overwhelm them. It was a hard thing, it truly, truly was.     

\n

   \u201cNow I just got off the phone with my partner and he says he\u2019s gonna get people down here to get us out as soon as possible. There are trains stalled all over the city. Rescue workers are leading those people out from underground and up to their homes. He told me there would be a group of them here soon. He was gonna get them here.\u201d    

\n

   \u201cIs that them?\u201d Came the deep voice of Jeffrey Thornton. He\u2019d been quiet while the others yelled, silent and listening to what she had to say. The moment she\u2019d spoken of rescue his eyes had gone outside the train and he saw what Mister Blue-eyes had apparently been watching.    

\n

   \u201cWhere?\u201d She asked him, stumbling over and peering outside, right next to the stranger in the baseball cap.       

\n

   She saw nothing at first, her eyes trying to focus past the reflections in the glass and out into the pitch black.      

\n

   \u201cThose--,\u201d Mister Blue-eyes said, at last speaking, his voice accented in a manner she\u2019d never heard before. Something about it was as wrong and as otherworldly as his eyes were. \u201c---are not rescuers of any sort.\u201d    

\n

   Out of the corner of her eye she saw him rise and back away from the window and once again her instincts spoke to her. They told her to back away as well, and to not stop there. They said to her, no, they screamed at her to run, to run as far from here as possible.      

\n

   But she didn\u2019t, she had to see what they were, had to see for herself.    

\n

   When the figures finally did materialize from the darkness, they weren\u2019t human at all.     

\n

End Part 29

\n

         If you find yourself interested in the whole damnedable thing and wanna throw me a few bucks, here's a link to it on Amazon.      

\n

  https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1   

\n


\n", - "cashout_time": "2016-09-15T19:48:29", - "category": "story", - "children": 3, - "children_abs_rshares": "89614201477", - "created": "2016-09-14T19:15:09", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 951797, - "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"creative\",\"writers\",\"writing\"],\"image\":[\"http://www.followingthenerd.com/site/wp-content/uploads/shadowpeople.jpg\"],\"links\":[\"https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1\"]}", - "last_payout": "1970-01-01T00:00:00", - "last_update": "2016-09-14T19:15:09", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-28T19:15:09", - "net_rshares": "89025972926", - "net_votes": 3, - "parent_author": "", - "parent_permlink": "story", - "percent_hbd": 10000, - "permlink": "the-dragon-s-blood-part-29", - "reward_weight": 10000, - "root_author": "profanarky", - "root_permlink": "the-dragon-s-blood-part-29", - "title": "The Dragon's Blood (Part 29)", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": "401621156077855379", - "vote_rshares": "89025972926" - }, - { - "abs_rshares": "984642850369", - "active": "2016-08-17T15:01:48", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "stellabelle", - "author_rewards": 238520, - "beneficiaries": [], - "body": "http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\n\n# I have to hide my true self.\n\nIt just so happened that I was constantly losing my friends. It's like a curse was put on me.\nJudging by the reviews from former colleagues and friends, I was a \"nice and friendly person who was always willing to help.\"\n\n# However, constantly all these friends ceased to be friends with me, for no reason. They just stopped communicating, no quarrels, no disagreements and other things!\n\nI had a lot of friends ... But our paths diverged.\n\nIn my childhood I had friends, but my family moved to another city, and I lost my friends. In the new city, I made new friends. I had one close friend. Even his move to another part of the city has not prevented us from seeing each other every weekend. And one day, he was taken into the army. And one day, his aunt came to me, and said that he is no more, he was killed when he was on sentry duty ...\n\n![imaged6bd4.jpg](https://www.steemimg.com/images/2016/07/26/imaged6bd4.jpg)\n\nPeople ignore me constantly on the Internet, too. On any website, forum. I try to communicate, start a dialogue, and all people just ignore me. Suffice it to ask someone about something, write, and so on, and no response. \n\n# It's as if I did not exist.\n\nhttp://i.giphy.com/3o72FhMTVaOTycqObu.gif\n\nI am always open and friendly, and in return I receive arrogance against me or they completely ignore me.\nThis is what hurts the self-assessment.\n\n# I have no one to talk, no one to share the news with. Not one to ask for help. When I die, nobody will notice. \n\nhttp://i.giphy.com/l46CABOxa2Itf99bG.gif\n\n# I change people!\n\nI've got one property ... when a person begins to communicate with me, he is beginning to change. He begins to listen to the music that I like. He begins to lead a similar lifestyle. In general, people change for the better. From this, I feel somehow enhanced. And apparently, it has become another man moves away from me and goes his own way. As the chicks leave the nest as adults. Other explanation I can find.\n\n# Childhood\n\nAt school I was a \"whipping boy\".\n\nhttp://i.giphy.com/Hem0mSEEPwQBa.gif\n\nEndured constant insults, humiliation. Every day for 3 years. The school was torture for me. I did not like school, sometimes skipped lessons to avoid it all. Of course, it has affected my level of education, I studied badly.\n\nAnd also, my eyesight began to deteriorate, I did not see what was written on the blackboard. And when I admitted that I had bad eyesight, meant even more exposure to ridicule. In addition, due to health problems, but rather due to an error from talentless doctors, I had to take some strange drug. What it was I do not know, but I remember that I had to take these pills with milk. At first, nothing happened ... but then I wanted to eat every 5 minutes, I could not stop! I suffered from hunger! And accordingly, I gained weight. Needless to say, that became more humiliation for me.\n\nPerhaps it is karma. After all, before all this, I, too, along with all, mocked other classmates. Well now I know, I deserve it all.\n\nIt all ended when I graduated from high school. I changed just for the summer. Completely changed! I was starving and had grown very thin. Enrolling in college, I stopped being afraid of the people because they did not know who I was at school. Former classmates simply did not recognize me in the street. I became a different person. I started a new life with a clean slate.\n\nhttp://i.giphy.com/763KvbtkqH3e8.gif\n\n# I'm for searching myself.\n\n### Punk.\n\nOne day on one local forum, I found an ad that a punk rock band was looking for a drummer. I do not know why, or what came over me, or how my subconscious played a role, but I wrote to them that I am ready to join them.\n\nIn those years, I liked punk rock. But I did not know how to play the drums! However, I had an ear for music and rhythm. Since childhood, I remember I loved playing improvised drums.\n\nhttp://i.giphy.com/3oEjI2cJuP3Y0dcfV6.gif\n\nAt the first rehearsal something happened. But, of course, I played really disgusting. I liked that I was with other people. I liked all the socializing after the rehearsals, but the rehearsals themselves I sometimes disliked.\n\nI was getting the feeling that my lack of skill playing the drums was getting the band down. The band broke up after 2 years, played three songs in one of the amateur concerts. I still blame myself for failing them. But communicating with them gave me pleasure.\n\n### Church of Satan.\n\nhttp://i.giphy.com/xThuWk5MZglNP8IsJG.gif\n\nI've never been religious.\nOne day it so happened that I was carried by some away articles and the book \"Church Satan\" that I found on the Internet. So I soon became well versed in the sect (I still keep granted by them, the so-called \"certificate\" as a memory). And then, I began to take an active and more active role in this church.\n\nI was the first who made an unofficial website, for which I was honored with awards and praise. I was the first who wrote a skeptical analysis of the Bible. And my critiques were very popular! Actually, thanks to them that I became known.\n\nAnd then I began to get to know ones of the elders. With me, I remember, I spoke to some journalists, a student who wrote some work, theologians, members of the new sect, and anyone with an interest. Probably because I was often on the network. After all, I have never been a part from the college and at home, and did nothing.\n\nBut then, I and several other members became disillusioned, and I left the sect.\n\nAnd then there were various attempts to find myself, I was changing lifestyles and views on life.\n\nWhy did I write this? All of the above has given me some experience in dealing with people and the ability to understand who I am and why, to find my place in life.\n\nPagan Old Believers tried invite me to come, and then I almost became a skinhead.\n\n> \"What people call life - just a game, but this game is sometimes instructive, and all that it teaches - only lessons from which to borrow wisdom, therefore, ought to live.\" (C)\n\n# Loneliness gave me the alternative to communion, namely: I read a lot of books, of which learned many new things from psychology, philosophy, spirituality and languages.\n\nhttp://i.giphy.com/AbuQeC846WKOs.gif\n\nHave you noticed that being in society and when in the company of others, you do not crave training or self-development? I see this for myself when my brother visits me. I do not read books, I do not ponder any situation and theory, I just talk and spend time with my brother. Loneliness provides an incentive for development. With the help of loneliness, you really will begin to appreciate the friendship and fellowship.\n\n# This can be compared with food delicacies. If you eat delicacies every day, they will cease to be so desirable and unusual, and they will become commonplace.\n\nhttp://i.giphy.com/WmEvcZna75UfS.gif\n\n# Now.\n\nMy current way of life is very similar to Tantric Buddhism, although it is not defined by that as it has no name, and does not need to be defined as such.\n\n# Sometimes it's painful and unpleasant to look at people.\n\nhttp://i.giphy.com/JsL3hYFdvMMSs.gif\n\nI understand why they are themselves, why they have such a way of life, but I do not want to be like them and be with them in the same company. I do not like it.\n\nI never offend for a reason, I never attack, and I do no harm.\nEmpathy - what distinguishes us from animals.\n\nI value every life, no matter what that life is.\nI do not accept what most people love.\nI do everything consciously, extracting meaning and benefits from the experience.\nFor example, I have a meal. I do not eat garbage food, because it does not give to my body anything useful, since it does not contain nutrients. \n\n# I do not drink alcohol, smoke cigarettes or do drugs.\u00a0\n\n\nAnd that is why people around me laugh or look at me quizzically. They say that I'm lying, sick, abnormal, or \"mother does not allow\". They say, \"in life need one needs to try everything!\" \n\nBut none of them for some reason, do not try, for example, quantum physics, a healthy lifestyle, or Buddhism.\n\n**In life, need to not only try, but also try not to try!**\n\n# I do not live with the people, but I live among the people.\n\nIf only you knew how hard all of this is ... I have to hide it all, and to adapt to the \"generally accepted norms\", in order not to be mocked. \n\nI feel somehow alien among the people. I have to wear a mask to resemble the people and not be detected.\n\nhttp://i.giphy.com/QG0th9DNdRrGw.gif\n\n> \"No pyramids of authority.\nMaster has an older brother, nothing more. And he just does the hard work that the others do not overpower. If it is otherwise, then trouble is inevitable.\nAuthority - this is a mistake \"(c).\n\nIf you have read Orwell's novel \"1984\" or watched the same film, you know, all this is happening in my country.\nPeople poisoned by propaganda, people are trying to survive, they are afraid of the authorities and freedom.\nAll this is laid bare and exacerbated in human animal instincts. The principle of flocks. Not like us - the enemy is dangerous, you need to avoid, or to die.\n\nThe population cannot tolerate dissent, any manifestation of freedom, something different from their lifestyle and worldview. In connection with this, people with a different lifestyle, look, worldview and way, becomes an object of ridicule, an outcast, a threat, an enemy.\n\nIt's not comfortable for me to live here. But leave (until the border has not yet closed) there is no possibility. It is very expensive, and I make incredibly low wages, and wages continue to fall, while food and services continue to rise in price.\n\nHow I would like live in a free country! Be yourself, do not hide anything, not trying to make excuses for my views and lifestyles.\n\nMaybe relocation to another country could change something in me, but I notice, positive emotions in me less and less and I feel less joy and desire to live.\n\nhttp://i.giphy.com/eR2OWX51qesIo.gif\n\n-Secret Writer\n\nImages and gifs: All images are by Stellabelle, all gifs are from giphy.com.", - "cashout_time": "2016-09-15T19:48:36", - "category": "secret-writer", - "children": 43, - "children_abs_rshares": "18007718646255", - "created": "2016-08-15T16:44:42", - "curator_payout_value": { - "amount": "31898", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 615287, - "json_metadata": "{\"tags\":[\"secret-writer\",\"isolation\",\"self-development\",\"life\"],\"image\":[\"http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\"]}", - "last_payout": "2016-08-16T19:48:36", - "last_update": "2016-08-15T17:39:09", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-08-30T21:38:48", - "net_rshares": "981828724825", - "net_votes": 293, - "parent_author": "", - "parent_permlink": "secret-writer", - "percent_hbd": 10000, - "permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", - "reward_weight": 10000, - "root_author": "stellabelle", - "root_permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", - "title": "SECRET WRITER: I Feel Like An Alien Among People In My Country", - "total_payout_value": { - "amount": "356586", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": "981882842624" - }, - { - "abs_rshares": 0, - "active": "2016-08-15T20:10:06", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "teutonic", - "author_rewards": 0, - "beneficiaries": [], - "body": "http://www.mindmotivations.com/images/optical-illusion1.jpg \nIs the ladder going up or down?\nhttp://www.mindmotivations.com/images/optical-illusion2.jpg\nAre the dots in between the squares white, black or grey?\nhttp://www.mindmotivations.com/images/optical-illusion3.jpg \nparallel or crooked?\nhttp://www.mindmotivations.com/images/optical-illusion4.jpg\nHow many legs?\nhttp://www.mindmotivations.com/images/optical-illusion5.jpg\nFocus on the dot in the middle and then move your head backwards and forwards.\nhttp://www.mindmotivations.com/images/optical-illusion7.jpg\nIs the picture moving?\nhttp://www.mindmotivations.com/images/optical-illusion8.jpg\nIs there anything in between the different squares?\nhttp://www.mindmotivations.com/images/optical-illusion9.jpg\nface of a lady or a word?\nhttp://www.mindmotivations.com/images/optical-illusion6.jpg \nFocus on the 4 dots in the middle of the picture for 30 seconds. \nhttp://www.mindmotivations.com/images/optical-illusion10.jpg \neven possible?", - "cashout_time": "2016-09-15T19:48:45", - "category": "awesome", - "children": 1, - "children_abs_rshares": 0, - "created": "2016-08-15T19:35:54", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 617429, - "json_metadata": "{\"tags\":[\"awesome\",\"\"],\"image\":[\"http://www.mindmotivations.com/images/optical-illusion1.jpg\"]}", - "last_payout": "2016-08-16T19:48:45", - "last_update": "2016-08-15T19:35:54", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 2, - "parent_author": "", - "parent_permlink": "awesome", - "percent_hbd": 10000, - "permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", - "reward_weight": 10000, - "root_author": "teutonic", - "root_permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", - "title": "10 Amazing Optical Illusion Pictures To Mess With Your Brain", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 158773924, - "active": "2016-09-14T20:20:48", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "safar01", - "author_rewards": 0, - "beneficiaries": [], - "body": "\n

\n

show in the pictures are not real, but I edit them using Photoshop just

\n

 to train the imagination only.

\n

I made this picture just to entertain readers of all, 

\n

please advise the reader all my abilities to process images

\n", - "cashout_time": "2016-09-15T19:48:57", - "category": "editing", - "children": 0, - "children_abs_rshares": 158773924, - "created": "2016-09-14T19:48:57", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 952070, - "json_metadata": "{\"tags\":[\"editing\",\"with\",\"photoshop\",\"imagination\",\"steemitphotochallenge\"],\"image\":[\"https://scontent.fcgk1-1.fna.fbcdn.net/v/t1.0-9/44685_544257398931890_1432197168_n.jpg?oh=737dff7bef73ecfcaff983c130b55ee1&oe=587FF678\"]}", - "last_payout": "1970-01-01T00:00:00", - "last_update": "2016-09-14T20:20:48", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-28T19:48:57", - "net_rshares": 158773924, - "net_votes": 1, - "parent_author": "", - "parent_permlink": "editing", - "percent_hbd": 10000, - "permlink": "lol-robot-tranformers-against-fishermen", - "reward_weight": 10000, - "root_author": "safar01", - "root_permlink": "lol-robot-tranformers-against-fishermen", - "title": "LOL ... Robot Tranformers against fishermen (steemitphotochallenge)", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": "732186422373807", - "vote_rshares": 158773924 - }, - { - "abs_rshares": 53638386, - "active": "2016-08-15T19:15:51", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "pipertomcat", - "author_rewards": 0, - "beneficiaries": [], - "body": "https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg \nhttps://s19.postimg.org/jiv4eri0j/Blockchain_technology1.png\nWhy not Steem Dollars then? I think ultimately Western Union and the like may actually choose or adopt a name that includes something like \"Dollar\". Lol\nhttps://s19.postimg.org/4y9g66xo3/Bitcoinripplebanner1.png\n\nI have said to different friends over the last year or so on occasion, that I fear Western Union is about to die by Bitcoin's hand. I compare Netflix, Youtube, Google Play, Itunes,and so forth killing retail establishments like Blockbuster video. Technology and the convenience it brings, easily dominates any industry, ask Kodak. \n\n I have friends who still have to purchase money orders to pay their rent. The Apartment complex refuses personal checks and apparently doesn't want employee's accepting cash. You can join their site online for a $50 per month fee and connect your checking account. What a ripoff! \nWow if they only knew of bitcoin and the coming technology.\nhttps://s19.postimg.org/743r0p14j/725_Ly9jb2lud_GVs_ZWdy_YXBo_Lm_Nvb_S9zd_G9y_YWdl_L3_Vwb_G9h.jpg\n\n\nhttps://s19.postimg.org/fc5olot0z/e873eec95dbe6437e8b73f6dc4b474e6.jpg\nhttps://s19.postimg.org/d2hkaxk37/a9ee5c9045261e324670df9b5e3fbf0c.png\n Western Union was in discussions with Ripple Labs early last year, regarding a blockchain pilot project. By using a cheap payment network, proponents claim that companies will be able to cut down the cost of remittances.\n The following quote from Barry Gilbert , the Digital Currency Insights Founder and CEO says it best:\n\u201cIf you look at Western Union and Moneygram, they have a fantastic opportunity to take advantage of bitcoin as a financial rail and incorporate it into their business.\u201d\n\nAfter reading the following article just now, I will have to say that I think someone like Western Union may be the key player in bringing Bitcoin to the masses! The following is an article from Bravenewcoin-http://bravenewcoin.com/news/western-union-wont-make-the-same-mistake-with-blockchain/\n\n#steemdollar\n#steem\n#westernunion\n#ripple", - "cashout_time": "2016-09-15T19:49:42", - "category": "bitcoin", - "children": 1, - "children_abs_rshares": "45063474229", - "created": "2016-08-15T19:14:33", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 617119, - "json_metadata": "{\"tags\":[\"bitcoin\",\"steemdollar\",\"steem\",\"westernunion\",\"ripple\"],\"image\":[\"https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg\"]}", - "last_payout": "2016-08-16T19:49:42", - "last_update": "2016-08-15T19:14:33", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-04T21:13:12", - "net_rshares": 53638386, - "net_votes": 9, - "parent_author": "", - "parent_permlink": "bitcoin", - "percent_hbd": 10000, - "permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", - "reward_weight": 10000, - "root_author": "pipertomcat", - "root_permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", - "title": "Western Union investing in Blockchain technology...will it be Bitcoin ? or Ripple!?", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 53638386 - } - ] -} \ No newline at end of file +{ + "comments": [ + { + "abs_rshares": 19230456217, + "active": "2016-08-16T01:33:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "wwwmmm", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n\n[asnw: comment]", + "cashout_time": "2016-08-21T22:17:06", + "category": "mathematics", + "children": 13, + "children_abs_rshares": 0, + "created": "2016-08-14T22:17:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 805994, + "json_metadata": "{\"tags\":[\"mathematics\",\"science\",\"engineering\",\"memory\"],\"image\":[\"http://dodaj.rs/photos/20160814147121293253918.jpg\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-14T22:17:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 19230456217, + "net_votes": 7, + "parent_author": "", + "parent_permlink": "mathematics", + "percent_hbd": 10000, + "permlink": "how-many-triangles-are-there", + "reward_weight": 10000, + "root_author": "wwwmmm", + "root_permlink": "how-many-triangles-are-there", + "title": "How Many Triangles Are There?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 88260503626250194, + "vote_rshares": 19230456217 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T22:36:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "fubar-bdhr", + "author_rewards": 0, + "beneficiaries": [], + "body": "16 small + 6 made of 3, 2 made of 9 + the whole thing = 25", + "cashout_time": "2016-08-21T22:22:33", + "category": "mathematics", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-14T22:22:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 806078, + "json_metadata": "{\"tags\":[\"mathematics\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-14T22:22:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "wwwmmm", + "parent_permlink": "how-many-triangles-are-there", + "percent_hbd": 10000, + "permlink": "re-wwwmmm-how-many-triangles-are-there-20160814t222205879z", + "reward_weight": 10000, + "root_author": "wwwmmm", + "root_permlink": "how-many-triangles-are-there", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T22:36:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "wwwmmm", + "author_rewards": 0, + "beneficiaries": [], + "body": "No, try again :)", + "cashout_time": "2016-08-21T22:36:57", + "category": "mathematics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-14T22:36:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 806317, + "json_metadata": "{\"tags\":[\"mathematics\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-14T22:36:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "fubar-bdhr", + "parent_permlink": "re-wwwmmm-how-many-triangles-are-there-20160814t222205879z", + "percent_hbd": 10000, + "permlink": "re-fubar-bdhr-re-wwwmmm-how-many-triangles-are-there-20160814t223655094z", + "reward_weight": 10000, + "root_author": "wwwmmm", + "root_permlink": "how-many-triangles-are-there", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T22:46:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hadenmiles", + "author_rewards": 0, + "beneficiaries": [], + "body": "16 small, 3 made of 9 (one for each corner), and the entire thing. 26?\n\nEDIT: 16 small, 7 made of 4, 3 made of 9, 1 made of 16, so 16+7+3+1=27?", + "cashout_time": "2016-08-21T22:38:15", + "category": "mathematics", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-14T22:38:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 806342, + "json_metadata": "{\"tags\":[\"mathematics\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-14T22:42:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "wwwmmm", + "parent_permlink": "how-many-triangles-are-there", + "percent_hbd": 10000, + "permlink": "re-wwwmmm-how-many-triangles-are-there-20160814t223814990z", + "reward_weight": 10000, + "root_author": "wwwmmm", + "root_permlink": "how-many-triangles-are-there", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 53440450, + "active": "2016-08-14T22:46:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "runridefly", + "author_rewards": 0, + "beneficiaries": [], + "body": "Heck, maybe the one upside makes 27", + "cashout_time": "2016-08-21T22:46:00", + "category": "mathematics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-14T22:46:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 806475, + "json_metadata": "{\"tags\":[\"mathematics\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-14T22:46:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 53440450, + "net_votes": 1, + "parent_author": "hadenmiles", + "parent_permlink": "re-wwwmmm-how-many-triangles-are-there-20160814t223814990z", + "percent_hbd": 10000, + "permlink": "re-hadenmiles-re-wwwmmm-how-many-triangles-are-there-20160814t224552420z", + "reward_weight": 10000, + "root_author": "wwwmmm", + "root_permlink": "how-many-triangles-are-there", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 246447283520034, + "vote_rshares": 53440450 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T23:08:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "cdubendo", + "author_rewards": 0, + "beneficiaries": [], + "body": "I count 27.?", + "cashout_time": "2016-08-21T23:08:03", + "category": "mathematics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-14T23:08:03", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 806880, + "json_metadata": "{\"tags\":[\"mathematics\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-14T23:08:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "wwwmmm", + "parent_permlink": "how-many-triangles-are-there", + "percent_hbd": 10000, + "permlink": "re-wwwmmm-how-many-triangles-are-there-20160814t230805528z", + "reward_weight": 10000, + "root_author": "wwwmmm", + "root_permlink": "how-many-triangles-are-there", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 47346458472195, + "active": "2016-08-15T15:10:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "acidyo", + "author_rewards": 188744, + "beneficiaries": [], + "body": "Time is precious. Many would argue time is the most valued thing of all, comparing it to having wealth, power or attention. Most things in life come and go, but time only goes in one direction and that's forward. Time to a person can feel long, boring, and empty but when you finally find the thing you have been looking for, time seems to change for the opposite. \nIt was time it cost to find the love of my life, but when I did, it felt like it had all been worth it. While the time after felt so much more valuable, it also taught me how unforgiving time can be, and how one small misstep kept me locked in time forever, in my own body.\n\n*Two seconds of my life determined the future of my existence.*\n\nIt was on a rainy day when i was driving my motorcycle on my way to my girlfriend when that one driver decided it was more important to catch Pikachu instead of looking at the road. I can still imagine my feeling when my peripheral vision noticed the car and the panic that ensued in seconds. Unfortunately there was nothing to be done at that point anymore, all I could do was turn my head, face the driver and see him drive into me while he raised his head from his smartphone. The last second I still remember is flying in the air and the world around me was spinning.\n\nAfter having experienced almost every dream and nightmare I could imagine existed, this one felt really weird. I remembered this room I was in, although it felt like I had been there ages ago. It had a familiar scent that I really liked... just as it felt like I was remembering where it was from, I heard someone else approaching from the doorway;\n\"Hey Billy...\"\nI recognized her voice instantly, just as I turned my head to greet her I felt someones hand pushing my face the other way.\n\nThis feeling felt new to me, not just someone pushing my head but me actually feeling it. All the dreams and nightmares, I hadn't felt anything in so long. The whole sensation was strange to me, I was wondering if I had started to lucid dream but then it happened. The feeling came back, stronger than ever. Cold and wet. There were so many different emotions going through me I didn't know how to handle it, I wanted to know what it was. \nThen I opened my eyes.\n\nIt felt like one of those days you have been oversleeping, your body isn't tired anymore, you couldn't sleep longer if your life depended on it. That feeling times a hundreds. \nI kept blinking, adjusting my vision but everything was really, really blurry. I couldn't tell where I was or what was happening, then I heard a voice say:\n\"Oh gosh, I wonder if this is a fake alarm again...\" as she stepped on over to the door and left.\nThe feeling slowly vanished but my eyes were still open, I lay notice to the only thing making a sound in the room, it was my breathing. I tried to turn my head but I couldn't. My mind started racing;\n\"Where am I?\",\n\"Who was that woman?\",\n\"Why can't I move?\"\nBefore I could come up with more the door opened again and I could see something coming closer.\n\"I brought some towels to get you all dried up again, here we go, let's start with your face... Oh my god, you are awake!\"\nI couldn't even turn my eyes to the side to see her but I blinked more frequently so she would notice.\n\"Ohh, this is excellent, let me get the doctor, I'll be back in two *steems*...\" she said as she stormed off again.\n\nI lay there, still a thousand of questions flowing through my mind. \"What was that she said at the end?\"\nThe door opens and a man comes in and stands by the foot of the bed, tells me that they have been waiting for a long time for this day to come. He did a few tests on how my eyes were moving and said he would call a physician to get me to 'work' on regaining my strength. He would also notify my relatives to come see me tomorrow and that I should be up and running in about a week. \"Welcome back\" he added at the end before he left the room.\n\nI started to realize I must've been in a coma for some time now. The accident came back to me and I started thinking of her, how much time might have passed, how she is and what she could be doing nowadays.\n\nBefore I could think much further another man came in and started injecting me with needles and said \"this will give you some power back, try and move your head and neck after a minute\". I guessed he was the physician that was supposed to help me get in shape again. \n\nI started moving my neck and hands, it all started working so quickly again. He helped me sit up on a wheel-chair and said he would take me out for a stroll, since I hadn't gotten fresh air in some time.\nIt was sunny outside, it felt like spring had just arrived and the park had started to become colorful, the air I breathed in felt really fresh. We stopped at a park chair and he sat down next to me and said: \"I'd be happy to answer any questions that might be on your head now, could you try and test if your voice is back after not having used it for ten years?\"\n\n\"Yes\" I replied, surprised I could use my voice, I muttered \"10 years? Its the year 2027?\"\n-\"oh yeah, thought you knew that already. I'm sorry, yes its been 10 years since you went into a coma. Let me tell you a lot has changed since then.\" he said with a smile showing.\n\"what's the biggest change in the last 10 years?\"\n-\"oh, not a lot of coma patients form the question that way, that's a good one! Hmm let's see...\" he said as he put his hand to his jaw in a thoughtful manner. \"Well, i'd say the new digital era of AI lifeforms and the decentralization of value and the internet of things, I would say.\"\n\nThis instantly reminded me of my hobby with cryptocurrencies I had, and so many questions about that came to my head and I wanted answers to all of them. I was surprised to automatically asking this one:\n\"Who is the president of the United States?\"\n-\"Who? Haha, the current president is actually an AI robot, people don't really qualify for those important positions anymore.\"\n\"Did block-chain technology change the world?\" I said in a hurry almost interrupting him.\nHe noticed how eager I was to get an answer to that, so he leaned closer in on me and said. \"Yes, they did. Big time, the whole revolution was based around them, why, were you into crypto-coins before your accident?\" he added.\n\"Yeah, I checked them out from time to time. Which one become the most popular one?\" I asked, not sure if I was driving the discussion too much into one category.\n-\"Oh I'd say one of the biggest ones was Steem and how it brought everyone into the awesome technology that was too early for its time, other than that, Ethereum has decentralized and established most of the business world and how API's and AI bots operate.\"\n\nOn our way back I asked him if it was possible for me to use a laptop when in the room, to catch up on the stuff I have missed out on. He laughed and added that that's a pretty normal request for someone who had been sleeping for a decade. I was now back on my bed and he brought me a laptop. It had been only an hour since I had been awake but I had to go check out my old Steemit account and if I could still remember the password.\n\nThe moment I hit enter, and it directed me to my own page, my heart stopped for a moment when I glanced at the \"estimated value: $4,588,853,314.88\" It took me several seconds to count all the digits and my eyes were wide open, I quickly looked behind me and noticed he noticed too, but pretended he wasn't looking at the screen.\n\nAs I was putting the laptop to the side, I was trying to think of an excuse to have him leave the room for a moment so i could have some time to take all of what just had happened in, but as soon as I turned my head to ask him I felt something really hard hit me on the side of my head. I returned to the darkness again.\n\n\n**Hey everyone, thanks for reading those who did, I want to try my hand at some sci-fi writing and have a lot of crazy ideas in my head that I want to put down to words and into a hopefully entertaining sci-fi series. I hope my english didn't wasn't that hard to read, its my third language. Criticism is welcomed and questions about the plot or what's going to happen would be fun to read!**\n\nAlso for anyone that wants to add pictures to this sci-fi from #descriptionsonthespot or has some good ideas for which ones to choose, feel free to say so in the comments!\n\nhttp://imgur.com/dBXOswi.jpg", + "cashout_time": "2016-08-22T00:00:03", + "category": "sci-fi", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-08-15T00:00:03", + "curator_payout_value": { + "amount": "91951", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 807652, + "json_metadata": "{\"tags\":[\"sci-fi\",\"beginner\",\"thriller\",\"futurology\",\"descriptionsonthespot\"],\"image\":[\"http://imgur.com/dBXOswi.jpg\"]}", + "last_payout": "2016-08-16T20:32:27", + "last_update": "2016-08-15T00:14:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 47346458472195, + "net_votes": 62, + "parent_author": "", + "parent_permlink": "sci-fi", + "percent_hbd": 10000, + "permlink": "waking-up-with-coma-lag-chapter-1-sci-fi-thriller-original-content", + "reward_weight": 10000, + "root_author": "acidyo", + "root_permlink": "waking-up-with-coma-lag-chapter-1-sci-fi-thriller-original-content", + "title": "Waking up with coma lag - Chapter 1 (sci-fi/thriller) (original content)", + "total_payout_value": { + "amount": "282172", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 47346458472195 + }, + { + "abs_rshares": 9193471179, + "active": "2016-08-15T15:10:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "sunjata", + "author_rewards": 0, + "beneficiaries": [], + "body": "Really liked it - the idea of waking up from a coma to find out that you're rich, but then also being vulnerable because of that has loads of potential. \n\nIf you'd like some criticism then: the single best bit of writing advice is probably \"show, don't tell\". If you have an interesting world to wake up to, then there are probably more interesting ways to show how the world has changed than just having a character *describe* it. So, for example, the importance of AI bots could be hinted at by the character being nursed by an AI bot, and getting confused about what's happening. \n\nI'm looking forward to seeing where this goes in the future.", + "cashout_time": "2016-08-22T00:56:39", + "category": "sci-fi", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-15T00:56:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 808501, + "json_metadata": "{\"tags\":[\"sci-fi\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-15T00:56:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 9193471179, + "net_votes": 1, + "parent_author": "acidyo", + "parent_permlink": "waking-up-with-coma-lag-chapter-1-sci-fi-thriller-original-content", + "percent_hbd": 10000, + "permlink": "re-acidyo-waking-up-with-coma-lag-chapter-1-sci-fi-thriller-original-content-20160815t005639795z", + "reward_weight": 10000, + "root_author": "acidyo", + "root_permlink": "waking-up-with-coma-lag-chapter-1-sci-fi-thriller-original-content", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 42300181123004248, + "vote_rshares": 9193471179 + }, + { + "abs_rshares": 0, + "active": "2016-08-15T01:19:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ungratefulchump", + "author_rewards": 0, + "beneficiaries": [], + "body": "26 triangles, unless it is a trick questions base on the background then I would have to add 2 more meaning it would be 28.", + "cashout_time": "2016-08-22T01:19:03", + "category": "mathematics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T01:19:03", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 808805, + "json_metadata": "{\"tags\":[\"mathematics\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-15T01:19:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "wwwmmm", + "parent_permlink": "how-many-triangles-are-there", + "percent_hbd": 10000, + "permlink": "re-wwwmmm-how-many-triangles-are-there-20160815t011906219z", + "reward_weight": 10000, + "root_author": "wwwmmm", + "root_permlink": "how-many-triangles-are-there", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 2850018500570, + "active": "2016-08-17T04:45:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ethereumnews", + "author_rewards": 1526, + "beneficiaries": [], + "body": "\n

\n

What is Ethereum?

\n

Ethereum is an open source platform that allows users to build & distribute next generation decentralized apps (dapps). 

\n

The Ethereum platform allows everyone to interact with all types of systems directly.

\n
    \n
  • Gaming
  • \n
  • Financial
  • \n
  • Social Networking
  • \n
\n

This is all done directly peer to peer, and is focused on being the future platform for all dapps.

\n

How are dapps different on Ethereum?

\n

The first thing to mention is that on Ethereum all of your information stays private.

\n

With normal systems we work with now like Facebook or our banks we are required to use them as a middle man while paying a fee. On the Ethereum platform the middle man is removed as is the transaction. So everyone saves on every transaction.

\n

Also there are no firewalls or IT departments to deal with on Ethereum, because of smart contracts on the blockchain.

\n

What is a smart contract?

\n

Smart contracts are programs that follow a series of steps every time they receive a message or \"transaction\". These smart contracts are what make Ethereum different from Bitcoin.

\n

Smart contracts can..

\n
    \n
  • Store data
  • \n
  • Send/Receive transactions
  • \n
  • Interact with other contracts
  • \n
\n

And they can solve solutions for things like..

\n
    \n
  • Medical Records
  • \n
  • Voting Machines
  • \n
  • Property Contracts
  • \n
  • And all other legal documents
  • \n
\n

With smart contracts users can stay in control of their funds and their personal information!

\n


\n

I hope this helps explain what Ethereum is to anyone out there who wanted to know more about it!

\n", + "cashout_time": "2016-08-22T01:50:15", + "category": "ethereum", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-15T01:50:15", + "curator_payout_value": { + "amount": "746", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 809213, + "json_metadata": "{\"tags\":[\"ethereum\",\"beyondbitcoin\",\"blockchain\",\"news\"],\"image\":[\"https://img1.steemit.com/0x0/https://i.imgsafe.org/fdde6c099f.png\"]}", + "last_payout": "2016-08-17T04:57:12", + "last_update": "2016-08-17T04:45:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 2850018500570, + "net_votes": 28, + "parent_author": "", + "parent_permlink": "ethereum", + "percent_hbd": 10000, + "permlink": "what-is-ethereum", + "reward_weight": 10000, + "root_author": "ethereumnews", + "root_permlink": "what-is-ethereum", + "title": "What is Ethereum?", + "total_payout_value": { + "amount": "2270", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 7674951809396939193, + "vote_rshares": 2850018500570 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json index 3017b256..f9cd8fd8 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json @@ -227,7 +227,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -491818553, + "net_rshares": 0, "net_votes": -2, "parent_author": "", "parent_permlink": "", @@ -276,7 +276,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -481781440, + "net_rshares": 0, "net_votes": -3, "parent_author": "", "parent_permlink": "", @@ -374,7 +374,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -477016308, + "net_rshares": 0, "net_votes": -2, "parent_author": "", "parent_permlink": "", @@ -423,7 +423,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -12344332066668, + "net_rshares": 0, "net_votes": -8, "parent_author": "", "parent_permlink": "spam", @@ -472,7 +472,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -466979195, + "net_rshares": 0, "net_votes": 4, "parent_author": "", "parent_permlink": "miner-category", diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json index efd42a28..0e0c45e8 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json @@ -21,8 +21,8 @@ "precision": 3 }, "depth": 0, - "id": 0, - "json_metadata": "", + "id": 1, + "json_metadata": "{}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-03-30T18:30:18", "max_accepted_payout": { @@ -70,8 +70,8 @@ "precision": 3 }, "depth": 1, - "id": 1, - "json_metadata": "", + "id": 2, + "json_metadata": "{}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-03-30T19:52:30", "max_accepted_payout": { @@ -80,7 +80,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -226592300084, + "net_rshares": 0, "net_votes": 8, "parent_author": "steemit", "parent_permlink": "firstpost", @@ -119,8 +119,8 @@ "precision": 3 }, "depth": 1, - "id": 2, - "json_metadata": "", + "id": 3, + "json_metadata": "{}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-03-31T13:54:33", "max_accepted_payout": { @@ -168,7 +168,7 @@ "precision": 3 }, "depth": 1, - "id": 3, + "id": 4, "json_metadata": "{}", "last_payout": "2016-08-24T19:59:42", "last_update": "2016-04-06T19:22:42", @@ -217,7 +217,7 @@ "precision": 3 }, "depth": 0, - "id": 4, + "id": 5, "json_metadata": "{}", "last_payout": "2016-08-03T00:00:06", "last_update": "2016-04-06T19:54:12", @@ -266,7 +266,7 @@ "precision": 3 }, "depth": 0, - "id": 5, + "id": 6, "json_metadata": "{}", "last_payout": "2016-08-12T10:16:36", "last_update": "2016-04-08T07:33:42", @@ -315,7 +315,7 @@ "precision": 3 }, "depth": 0, - "id": 6, + "id": 7, "json_metadata": "{}", "last_payout": "2016-08-12T10:16:39", "last_update": "2016-04-08T07:36:18", @@ -325,7 +325,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -491818553, + "net_rshares": 0, "net_votes": -2, "parent_author": "", "parent_permlink": "", @@ -364,7 +364,7 @@ "precision": 3 }, "depth": 0, - "id": 7, + "id": 8, "json_metadata": "{}", "last_payout": "2016-08-12T10:16:42", "last_update": "2016-04-08T07:55:15", @@ -374,7 +374,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -481781440, + "net_rshares": 0, "net_votes": -3, "parent_author": "", "parent_permlink": "", @@ -413,7 +413,7 @@ "precision": 3 }, "depth": 0, - "id": 8, + "id": 9, "json_metadata": "{}", "last_payout": "2016-08-22T12:36:54", "last_update": "2016-04-08T07:58:51", @@ -462,7 +462,7 @@ "precision": 3 }, "depth": 0, - "id": 9, + "id": 10, "json_metadata": "{}", "last_payout": "2016-08-13T18:32:54", "last_update": "2016-04-08T08:49:15", @@ -472,7 +472,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -477016308, + "net_rshares": 0, "net_votes": -2, "parent_author": "", "parent_permlink": "", diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json index ab747b19..86e67364 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json @@ -1,494 +1,494 @@ -{ - "comments": [ - { - "abs_rshares": 0, - "active": "2016-08-15T19:12:42", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "crowe", - "author_rewards": 0, - "beneficiaries": [], - "body": "I thought my viewers would be interested in the place I actually live in. I live in a City called Ashkelon. Its about 7 miles North of Gaza. Last year in June when some missiles were being shot toward Israel the Sirens in Ashkelon went off. I filmed this video from my deck. The video is what we hear when this happens. \n\nhttps://www.youtube.com/watch?v=Ky23yJaNDfo", - "cashout_time": "2016-09-15T19:47:27", - "category": "israel", - "children": 0, - "children_abs_rshares": 0, - "created": "2016-08-15T19:12:42", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 617094, - "json_metadata": "{\"tags\":[\"israel\",\"siren\",\"gaza\",\"politics\",\"steemit\"],\"links\":[\"https://www.youtube.com/watch?v=Ky23yJaNDfo\"]}", - "last_payout": "2016-08-16T19:47:27", - "last_update": "2016-08-15T19:12:42", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 2, - "parent_author": "", - "parent_permlink": "israel", - "percent_hbd": 10000, - "permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", - "reward_weight": 10000, - "root_author": "crowe", - "root_permlink": "israeli-bomb-siren-goes-off-in-my-city-i-filmed-this-from-my-deck", - "title": "Israeli Bomb Siren goes off in my City. I filmed this from my deck.", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": "1339555910464", - "active": "2016-08-15T19:44:48", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "luminarycrush", - "author_rewards": 0, - "beneficiaries": [], - "body": "\n

I came across a lone blooming cactus during a hike this weekend.  Photos taken at 946' ASL above Two Harbors, Catalina Island.

\n

\n


\n

\n


\n

\n", - "cashout_time": "2016-09-15T19:47:27", - "category": "photography", - "children": 0, - "children_abs_rshares": "1339555910464", - "created": "2016-08-15T19:44:48", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 617542, - "json_metadata": "{\"tags\":[\"photography\",\"cactus\",\"catalinaisland\",\"california\",\"twoharbors\"],\"image\":[\"https://scontent.xx.fbcdn.net/t31.0-8/13988224_10154518762224175_252304266230235242_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13923665_10154518762269175_2030254348907005554_o.jpg\",\"https://scontent.xx.fbcdn.net/t31.0-8/13988240_10154518762254175_9097905240858144855_o.jpg\"]}", - "last_payout": "2016-08-16T19:47:27", - "last_update": "2016-08-15T19:44:48", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-01T02:13:51", - "net_rshares": "1339555910464", - "net_votes": 14, - "parent_author": "", - "parent_permlink": "photography", - "percent_hbd": 10000, - "permlink": "cactus-in-the-clouds-catalina-island", - "reward_weight": 10000, - "root_author": "luminarycrush", - "root_permlink": "cactus-in-the-clouds-catalina-island", - "title": "Cactus in the Clouds - Catalina Island", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": "1339555910464" - }, - { - "abs_rshares": "76217996022", - "active": "2016-08-17T15:39:57", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "brunopro", - "author_rewards": 13512, - "beneficiaries": [], - "body": "http://imgur.com/HrpWWaK.png\n\n## And there are changes again regarding the duration until the payout occurs, now your post will have a minimum 24 hours duration until the first payout. \n\nPersonally I think that they should never have changed it to 12 hours. I didn't understand the logic behind it at the time and I still don't. This 24h period it's ideal because this way the post has better chances of overcoming the first publish period and get more traction. It also enables of a higher possibility of being seen and upvoted by the users that on the 12h were sleeping or simply away.\n\n# And you? What do you think about this change?\n\n----\n\nEdit post-publish: I've notice that I can't upvote a post that has been up for a month. Is this new also? I thought a post would always be open for an upvote? Can anyone reply to this question? thanks!\n\n----\n\n###### Photo Credits: https://unsplash.com/@sonjalangford", - "cashout_time": "2016-09-15T19:47:42", - "category": "steemit", - "children": 22, - "children_abs_rshares": "78071773184", - "created": "2016-08-15T18:36:36", - "curator_payout_value": { - "amount": "3483", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 616664, - "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"opinion\",\"reward\"],\"image\":[\"http://imgur.com/HrpWWaK.png\"]}", - "last_payout": "2016-08-16T19:47:42", - "last_update": "2016-08-15T18:51:42", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-08-30T20:41:45", - "net_rshares": "76217996022", - "net_votes": 82, - "parent_author": "", - "parent_permlink": "steemit", - "percent_hbd": 10000, - "permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", - "reward_weight": 10000, - "root_author": "brunopro", - "root_permlink": "latest-news-payouts-are-back-to-24h-what-do-you-think-about-it-quick-read-opinion-article", - "title": "LATEST NEWS: Payouts are back to 24H - What do you think about it? [ Quick read / Opinion Article ]", - "total_payout_value": { - "amount": "20200", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": "76217996022" - }, - { - "abs_rshares": 0, - "active": "2016-08-15T19:50:39", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "yassinebentour", - "author_rewards": 0, - "beneficiaries": [], - "body": "\n

http://unitedcivilrights.org/images/fa-prprty.gif

\n

The purpose of property rights is to mitigate conflict over scarce, rivalrous resources. To have a property right over a scarce, rivalrous resource is to have the right to exclude others from using that resource in the attainment of some ends. For example, I have property rights over my body, which means I can exclude others from using my body for sexual pleasure or labor without my consent. If they do access my body in such a way without my consent, it's called rape or slavery, respectively. Likewise, I have property rights over the accumulated capital for which I consensually trade my time and labor, which means I have the right to exclude people from using my accumulated capital without my consent. When someone accesses my accumulated capital in such a way without my consent, it's called theft or trespass.
\nScale doesn't change this. If I transform my accumulated capital into a factory by hiring people who voluntarily exchange the product of their labor for some of my accumulated capital, this means that they value what they receive in exchange for working more than they value the direct product of their labor (the factory). Likewise, it means I value the factory more than the accumulated capital I gave up for it. This is a win-win situation, or a positive sum game. The workers I hired retain property rights over the capital they received as payment for their labor, which means they can exclude others from the use of their newly acquired accumulated capital, and I retain property rights over the factory, which means I can exclude others from the use of my factory.
\nDiscrepancies between marginal benefit don't change this either. A consensual exchange doesn't become theft just because one party benefits more from the exchange than another. If this wasn't the case, every single instance of buyer's remorse would be indicative of theft. If someone agrees to produce a walking stick in exchange for ten dollars and the purchaser of the walking stick then sells it to someone else for twenty dollars, how can it be claimed that the producer of the walking stick was a victim of theft if they haven't been deprived of the ten dollars for which they voluntarily exchanged the walking stick? Would it have been reasonable to expect that the first purchaser of the walking stick wouldn't have obtained more than ten dollars of value from it given that the exchange wouldn't have happened in the first place if they hadn't valued the walking stick more than they valued ten dollars?
\nOf course not. Anything that happens to the walking stick after the original exchange is no business of the producer of the walking stick because said producer already exchanged his property rights to the walking stick for property rights to a different form of accumulated capital (ten dollars).
\nLikewise, if I use more of my accumulated capital to hire workers to work in my factory, they will only accept my offer of employment if they value what I'm offering more than their own free time and more than whatever stake they may have otherwise had in the product they will be producing. In other words, if they accept employment, it will be with the understanding that they're giving up any stake in what they're producing in exchange for what I'm offering them. Maybe my factory assembles televisions. Maybe one worker can produce one television per hour. Would they be able to produce televisions this efficiently without my previous investment in production capital (which hasn't even been recouped and probably never will be completely given that maintenance, employment and higher order production good costs are a revolving door)? Would they be able to produce televisions AT ALL without this previous investment in production capital? Of course not, and they know this, which is why they're willing to give up both their leisure and whatever stake their labor may have otherwise entitled them to in the production of a television in exchange for a fixed amount of accumulated capital.
\nAs was the case with the walking stick, whatever happens to the television after this exchange occurs is no business of the worker. How could the future sale of the television constitute theft of the worker's accumulated capital if it can't be demonstrated that the worker was deprived of the accumulated capital that he voluntarily accepted as payment for the production of the television, especially given that the television was produced with other accumulated capital (plastic, circuits, labor saving devices, etc.) that the worker never even owned?
\nIt can't.
\nProperty ownership necessarily implies exclusivity, which means that \"private property\" is redundant, as is \"personal property\". The words \"private\" and \"personal\" denote exclusivity, which is already implied by the word \"property\". To differentiate between \"personal property\" and \"private property\" is therefore a distinction without a difference. This implication of exclusivity also means that \"public property\" is a contradiction in terms. If no one can be excluded from using the resource, it isn't property. Resources that aren't scarce or rivalrous likewise can not be considered property, which means that \"intellectual property\" is also a contradiction in terms.
\nThis means that seizing the means of production is a genuine form of theft and that \"pirating\" music, software, art and writing is not, which may seem counter-intuitive if you attended the indoctrination camps euphemistically known as \"public schools\" when you were growing up.

\n", - "cashout_time": "2016-09-15T19:47:48", - "category": "writing", - "children": 2, - "children_abs_rshares": "25854883309", - "created": "2016-08-15T19:43:57", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 617534, - "json_metadata": "{\"tags\":[\"writing\",\"rights\"],\"image\":[\"http://unitedcivilrights.org/images/fa-prprty.gif\"]}", - "last_payout": "2016-08-16T19:47:48", - "last_update": "2016-08-15T19:43:57", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-01T01:02:42", - "net_rshares": -104004690671, - "net_votes": 1, - "parent_author": "", - "parent_permlink": "writing", - "percent_hbd": 10000, - "permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", - "reward_weight": 736, - "root_author": "yassinebentour", - "root_permlink": "the-purpose-of-property-rights-is-to-mitigate-conflict-over-scarce-rivalrous-resources", - "title": "The purpose of property rights is to mitigate conflict over scarce, rivalrous resources", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 0, - "active": "2016-08-15T19:45:42", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "libtrian.outlet", - "author_rewards": 0, - "beneficiaries": [], - "body": "http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\nFriday's move is the clearest indication yet that the White House is serious about getting Obama\u2019s legacy trade deal.\n\nThe White House put Congress on notice Friday morning that it will be sending lawmakers a bill to implement President Barack Obama\u2019s landmark Trans-Pacific Partnership agreement \u2014 a move intended to infuse new energy into efforts to ratify the flat-lining trade pact.\n\nThe move establishes a 30-day minimum before the administration can present the legislation, but the White House is unlikely to do so amid the heated rhetoric of a presidential campaign in which both major party nominees have depicted free trade deals as massive job killers.\n\nFriday's notification is the clearest signal yet that the White House is serious about getting Obama\u2019s legacy trade deal \u2014 the biggest in U.S. history \u2014 passed by the end of the year, as he has vowed to do despite the misgivings of Republican leaders and the outright opposition of a majority of Democrats in Congress.\n\nStriking a defiant tone, Obama predicted at a press conference last week that the economic centerpiece of his strategic pivot to Asia would pass in the lame-duck session, saying he\u2019d like to sit down with lawmakers after the election to discuss the \"actual facts\" behind the deal, rather than toss it around like a \"political football.\"\n\n\"We are part of a global economy. We're not reversing that,\" Obama said, describing the necessity of international supply chains and the importance of the export sector to U.S. jobs and the economy. \"The notion that we're going to pull that up root and branch is unrealistic.\"\n\nThe notification, a new requirement of the trade promotion authority legislation Congress passed last year to expedite passage of the Asia-Pacific pact, is \u201cmeant to ensure early consultations between the administration and Congress,\u201d Matt McAlvanah, a spokesman for the Office of the U.S. Trade Representative, said in a statement. \u201cAs such, the draft SAA [Statement of Administrative Action] was sent today in order to continue to promote transparency and collaboration in the TPP process.\u201d\n\nThe White House's draft document describes the major steps the administration will take to implement any changes to U.S. law required by the deal. Those actions range from the mundane \u2014 designating an administration point of contact for communications about the pact \u2014 to the complex \u2014 setting up procedures to stop harmful surges of agricultural or textile imports.\n\nBut the deal is going nowhere until the White House addresses a number of concerns lawmakers have raised about the trade agreement, which Canada, Mexico, Japan and eight other countries joined the United States in signing last February.\n\nFirst and foremost: satisfying the concerns of Senate Finance Committee Chairman Orrin Hatch (R-Utah) and other lawmakers about protections for a new class of drugs known as biologics. They say the pact provides too short a monopoly period for rights to research and development data. Other lawmakers have complained the deal would bar tobacco companies from seeking redress through investor-state dispute arbitrage for damages resulting from country regulations. Still others are seeking assurances that member countries will abide by their commitments to provide access for U.S. pork and dairy exports.\n\nUntil these issues are resolved, House Speaker Paul Ryan and Senate Majority Leader Mitch McConnell have made clear that the pact will not get the votes it needs to pass.\n\nRyan's spokeswoman, AshLee Strong, reiterated the point on Friday.\n\n\u201cAs Speaker Ryan has stated for months, there are problems that remain with the administration\u2019s TPP deal, and there can be no movement before these concerns are addressed,\" she said.\n\nDemocrats, meanwhile, have largely called the deal a nonstarter over concerns about the enforceability of labor and environmental standards in countries like Vietnam and the lack of strong protections against currency manipulation.\n\nThe administration claims it is making progress on these issues and has resolved others, including banking industry concerns over the exclusion of financial data from rules prohibiting countries from requiring local storage.\n\nBut that doesn\u2019t change the reality of the down-ballot drag that candidates are facing as they campaign back home in their districts. In a reversal from years past, many Republicans are on the defensive about their support for free trade because of Donald Trump\u2019s daily tirades about what he characterizes as the serious economic damage wrought by trade agreements like the North American Free Trade Agreement and the TPP as well as his complaints that China is flouting international trade rules.\n\nThe Republican platform picked up on this theme, saying significant trade deals \"should not be rushed or undertaken in a Lame Duck Congress.\"\n\nThe small band of Democrats who the administration hopes will support the TPP are facing increased pressure within their own party to abandon the president on the agreement. Sens. Bernie Sanders\u2019 and Elizabeth Warren\u2019s strong condemnations of the trade deal have forced Hillary Clinton, who supported the TPP as Obama\u2019s secretary of state, to reject the pact to appease the liberal wing.\n\n\"I will stop any trade deal that kills jobs or holds down wages, including the Trans-Pacific Partnership,\" Clinton said during an economic policy speech at an automotive manufacturing plant in Warren, Mich., on Thursday. \"I oppose it now, I'll oppose it after the election and I'll oppose it as president.\"\n\nClinton\u2019s clear rejection of the trade deal has emboldened liberal groups like the Warren-aligned Progressive Change Campaign Committee to launch a campaign to press Democrats to publicly oppose a TPP vote in the lame duck.\n\nSanders also called on Democratic congressional leaders to go on record against the White House\u2019s effort to get the deal done by the end of the year, saying the agreement is opposed by every trade union and the grassroots base of the Democratic Party.\n\n\"I am disappointed by the president's decision to continue pushing forward on the disastrous Trans-Pacific Partnership trade agreement that will cost American jobs, harm the environment, increase the cost of prescription drugs and threaten our ability to protect public health,\u201d the Vermont senator said in a statement after learning of the White House's action on Friday.\n\nMeanwhile, the administration continues to press the deal in key congressional districts \u2014 especially those of Democrats who supported the trade promotion authority bill last year.\n\nInterior Secretary Sally Jewell returned to her hometown of Seattle last month to tout the TPP\u2019s potential effects on the environment at a Washington Council on International Trade event with more than 150 business leaders.\n\nThen, last week, Commerce Secretary Penny Pritzker hit the San Diego and Boulder districts of Reps. Susan Davis and Jared Polis \u2014 two of the 28 House Democrats that voted for the bill \u2014 and visited a steel plant in Cleveland to promote the TPP. Treasury Secretary Jack Lew did the same when he met with local and state officials and Fortune 500 business executives in Minneapolis.\n\nOn Thursday, Undersecretary of Commerce for Oceans and Atmosphere Kathryn Sullivan spoke at a Seattle clean energy business roundtable focused on the TPP and the environment. And this Monday, Deputy U.S. Trade Representative Robert Holleyman will participate in a World Affairs Council of Atlanta discussion on the trade deal featuring former Republican Sen. Saxby Chambliss and UPS CEO David Abney.\n\nAs the political fight plays out, the nuts-and-bolts process of moving the deal forward will continue. Once Congress reviews the draft notification that the White House submitted on Friday, the administration can move forward with sending lawmakers a final statement and the draft of the implementing bill itself. The legislation will describe the actual changes to U.S. law to comply with the rules of the trade agreement.\n\nAfter that, the Senate Finance and House Ways and Means committees could hold \u201cmock markups\u201d of the bill (because under trade promotion authority, Congress is not actually allowed to tinker with the agreement or its implementing legislation itself, but it can ask the administration to do so).\n\nBut given the tenor of the elections, the entire process could be pushed into a crowded lame-duck legislation session, which would mean no time for the mock markups. Instead, there could be a lot of deal-making between the White House and congressional leadership to move the bill before Clinton or Trump takes over on Jan. 20.\n\nObama said last week that he\u2019s ready to press his case. \"Right now, I'm president, and I'm for it. And I think I've got the better argument,\" he said.\n\nSource:\nwww.politico.com/story/2016/08/obama-congress-trade-warning-226952", - "cashout_time": "2016-09-15T19:47:57", - "category": "politics", - "children": 1, - "children_abs_rshares": "11700424464", - "created": "2016-08-15T19:44:39", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 617538, - "json_metadata": "{\"tags\":[\"politics\",\"tpp\",\"conspiracy\",\"news\",\"freetrade\"],\"image\":[\"http://static2.politico.com/dims4/default/51aab17/2147483647/resize/1160x%3E/quality/90/?url=http%3A%2F%2Fstatic.politico.com%2F45%2Fe9%2F20ad17b246f3ba0b82ef90e24ee0%2F160804-barack-obama-mandela-getty-1160.jpg\"]}", - "last_payout": "2016-08-16T19:47:57", - "last_update": "2016-08-15T19:44:39", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-04T23:37:39", - "net_rshares": 0, - "net_votes": 3, - "parent_author": "", - "parent_permlink": "politics", - "percent_hbd": 10000, - "permlink": "obama-puts-congress-on-notice-tpp-is-coming", - "reward_weight": 2046, - "root_author": "libtrian.outlet", - "root_permlink": "obama-puts-congress-on-notice-tpp-is-coming", - "title": "Obama puts Congress on notice: TPP is coming", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": "89025972926", - "active": "2016-09-15T15:19:39", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "profanarky", - "author_rewards": 0, - "beneficiaries": [], - "body": "\n

\n

In which the folks in the subway find themselves some unwelcome visitors...

\n

29

\n

   \u201cDo NOT panic! There is no reason to believe that this is anything more than just a power outage.\u201d  

\n

   \u201cBut-- BUT-- how can it be the whole state?\u201d One wide-eyed young woman, one of the aforementioned punk rockers actually raised her hand.  

\n

   \u201cYeah, it\u2019s gotta be Al Qaeda, who the hell else could it be?!!\u201d Another idiot bellowed.    

\n

   Others followed, there words quickly jumbling together into a tidal wave of paranoia. It only took one idiot to get the ball rolling.   

\n

   \u201cIt\u2019s gotta be the terrorists, who the hell else could it be?\u201d    

\n

   \u201cOh my god, I gotta get to my kids\u2026 My kids are still at the day care!!!\u201d   

\n

   \u201cDid an airplane hit a power plant??!! OH GOD!! DID AN AIRPLANE HIT ONE OF THE NUCLEAR PLANTS??!!\u201d    

\n

   She heard it all and it was nothing more than a buzzing, though an irritating one nonetheless. Her instincts, those things cops called their gut instincts told her Mister Blue-eyes was the key, the only thing really important right now. Mister Blue-eyes and whatever the hell it was he was watching outside their little tin prison.  

\n

     \u201cNOW LISTEN DAMMIT!!!\u201d She hollered, trying to make herself louder than the loudest of them, a difficult task with New Yorkers. \u201cI told you, there\u2019s no goddamn reason to think it\u2019s terrorism! This has happened before in our lifetimes and it\u2019s gonna happen again. As far as I\u2019m concerned it ain\u2019t nothing more than a power outage. Going FUCKING crazy ain\u2019t gonna help us any, dammit!!\u201d  

\n

   They kept going, some of them, but most paid her mind and listened, their faces drawn and tired. They\u2019d suffered enough the last few years, New Yorkers. There wasn\u2019t a one of them, including herself, who hadn\u2019t had their world turned literally upside down two years before. The terror they\u2019d lived was fresh on their minds, fresh and ready to burst again and overwhelm them. It was a hard thing, it truly, truly was.     

\n

   \u201cNow I just got off the phone with my partner and he says he\u2019s gonna get people down here to get us out as soon as possible. There are trains stalled all over the city. Rescue workers are leading those people out from underground and up to their homes. He told me there would be a group of them here soon. He was gonna get them here.\u201d    

\n

   \u201cIs that them?\u201d Came the deep voice of Jeffrey Thornton. He\u2019d been quiet while the others yelled, silent and listening to what she had to say. The moment she\u2019d spoken of rescue his eyes had gone outside the train and he saw what Mister Blue-eyes had apparently been watching.    

\n

   \u201cWhere?\u201d She asked him, stumbling over and peering outside, right next to the stranger in the baseball cap.       

\n

   She saw nothing at first, her eyes trying to focus past the reflections in the glass and out into the pitch black.      

\n

   \u201cThose--,\u201d Mister Blue-eyes said, at last speaking, his voice accented in a manner she\u2019d never heard before. Something about it was as wrong and as otherworldly as his eyes were. \u201c---are not rescuers of any sort.\u201d    

\n

   Out of the corner of her eye she saw him rise and back away from the window and once again her instincts spoke to her. They told her to back away as well, and to not stop there. They said to her, no, they screamed at her to run, to run as far from here as possible.      

\n

   But she didn\u2019t, she had to see what they were, had to see for herself.    

\n

   When the figures finally did materialize from the darkness, they weren\u2019t human at all.     

\n

End Part 29

\n

         If you find yourself interested in the whole damnedable thing and wanna throw me a few bucks, here's a link to it on Amazon.      

\n

  https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1   

\n


\n", - "cashout_time": "2016-09-15T19:48:29", - "category": "story", - "children": 3, - "children_abs_rshares": "89614201477", - "created": "2016-09-14T19:15:09", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 951797, - "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"creative\",\"writers\",\"writing\"],\"image\":[\"http://www.followingthenerd.com/site/wp-content/uploads/shadowpeople.jpg\"],\"links\":[\"https://www.amazon.com/Dragons-Blood-Felipe-Mena/dp/1467990639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1470836827&sr=8-1\"]}", - "last_payout": "1970-01-01T00:00:00", - "last_update": "2016-09-14T19:15:09", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-28T19:15:09", - "net_rshares": "89025972926", - "net_votes": 3, - "parent_author": "", - "parent_permlink": "story", - "percent_hbd": 10000, - "permlink": "the-dragon-s-blood-part-29", - "reward_weight": 10000, - "root_author": "profanarky", - "root_permlink": "the-dragon-s-blood-part-29", - "title": "The Dragon's Blood (Part 29)", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": "401621156077855379", - "vote_rshares": "89025972926" - }, - { - "abs_rshares": "984642850369", - "active": "2016-08-17T15:01:48", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "stellabelle", - "author_rewards": 238520, - "beneficiaries": [], - "body": "http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\n\n# I have to hide my true self.\n\nIt just so happened that I was constantly losing my friends. It's like a curse was put on me.\nJudging by the reviews from former colleagues and friends, I was a \"nice and friendly person who was always willing to help.\"\n\n# However, constantly all these friends ceased to be friends with me, for no reason. They just stopped communicating, no quarrels, no disagreements and other things!\n\nI had a lot of friends ... But our paths diverged.\n\nIn my childhood I had friends, but my family moved to another city, and I lost my friends. In the new city, I made new friends. I had one close friend. Even his move to another part of the city has not prevented us from seeing each other every weekend. And one day, he was taken into the army. And one day, his aunt came to me, and said that he is no more, he was killed when he was on sentry duty ...\n\n![imaged6bd4.jpg](https://www.steemimg.com/images/2016/07/26/imaged6bd4.jpg)\n\nPeople ignore me constantly on the Internet, too. On any website, forum. I try to communicate, start a dialogue, and all people just ignore me. Suffice it to ask someone about something, write, and so on, and no response. \n\n# It's as if I did not exist.\n\nhttp://i.giphy.com/3o72FhMTVaOTycqObu.gif\n\nI am always open and friendly, and in return I receive arrogance against me or they completely ignore me.\nThis is what hurts the self-assessment.\n\n# I have no one to talk, no one to share the news with. Not one to ask for help. When I die, nobody will notice. \n\nhttp://i.giphy.com/l46CABOxa2Itf99bG.gif\n\n# I change people!\n\nI've got one property ... when a person begins to communicate with me, he is beginning to change. He begins to listen to the music that I like. He begins to lead a similar lifestyle. In general, people change for the better. From this, I feel somehow enhanced. And apparently, it has become another man moves away from me and goes his own way. As the chicks leave the nest as adults. Other explanation I can find.\n\n# Childhood\n\nAt school I was a \"whipping boy\".\n\nhttp://i.giphy.com/Hem0mSEEPwQBa.gif\n\nEndured constant insults, humiliation. Every day for 3 years. The school was torture for me. I did not like school, sometimes skipped lessons to avoid it all. Of course, it has affected my level of education, I studied badly.\n\nAnd also, my eyesight began to deteriorate, I did not see what was written on the blackboard. And when I admitted that I had bad eyesight, meant even more exposure to ridicule. In addition, due to health problems, but rather due to an error from talentless doctors, I had to take some strange drug. What it was I do not know, but I remember that I had to take these pills with milk. At first, nothing happened ... but then I wanted to eat every 5 minutes, I could not stop! I suffered from hunger! And accordingly, I gained weight. Needless to say, that became more humiliation for me.\n\nPerhaps it is karma. After all, before all this, I, too, along with all, mocked other classmates. Well now I know, I deserve it all.\n\nIt all ended when I graduated from high school. I changed just for the summer. Completely changed! I was starving and had grown very thin. Enrolling in college, I stopped being afraid of the people because they did not know who I was at school. Former classmates simply did not recognize me in the street. I became a different person. I started a new life with a clean slate.\n\nhttp://i.giphy.com/763KvbtkqH3e8.gif\n\n# I'm for searching myself.\n\n### Punk.\n\nOne day on one local forum, I found an ad that a punk rock band was looking for a drummer. I do not know why, or what came over me, or how my subconscious played a role, but I wrote to them that I am ready to join them.\n\nIn those years, I liked punk rock. But I did not know how to play the drums! However, I had an ear for music and rhythm. Since childhood, I remember I loved playing improvised drums.\n\nhttp://i.giphy.com/3oEjI2cJuP3Y0dcfV6.gif\n\nAt the first rehearsal something happened. But, of course, I played really disgusting. I liked that I was with other people. I liked all the socializing after the rehearsals, but the rehearsals themselves I sometimes disliked.\n\nI was getting the feeling that my lack of skill playing the drums was getting the band down. The band broke up after 2 years, played three songs in one of the amateur concerts. I still blame myself for failing them. But communicating with them gave me pleasure.\n\n### Church of Satan.\n\nhttp://i.giphy.com/xThuWk5MZglNP8IsJG.gif\n\nI've never been religious.\nOne day it so happened that I was carried by some away articles and the book \"Church Satan\" that I found on the Internet. So I soon became well versed in the sect (I still keep granted by them, the so-called \"certificate\" as a memory). And then, I began to take an active and more active role in this church.\n\nI was the first who made an unofficial website, for which I was honored with awards and praise. I was the first who wrote a skeptical analysis of the Bible. And my critiques were very popular! Actually, thanks to them that I became known.\n\nAnd then I began to get to know ones of the elders. With me, I remember, I spoke to some journalists, a student who wrote some work, theologians, members of the new sect, and anyone with an interest. Probably because I was often on the network. After all, I have never been a part from the college and at home, and did nothing.\n\nBut then, I and several other members became disillusioned, and I left the sect.\n\nAnd then there were various attempts to find myself, I was changing lifestyles and views on life.\n\nWhy did I write this? All of the above has given me some experience in dealing with people and the ability to understand who I am and why, to find my place in life.\n\nPagan Old Believers tried invite me to come, and then I almost became a skinhead.\n\n> \"What people call life - just a game, but this game is sometimes instructive, and all that it teaches - only lessons from which to borrow wisdom, therefore, ought to live.\" (C)\n\n# Loneliness gave me the alternative to communion, namely: I read a lot of books, of which learned many new things from psychology, philosophy, spirituality and languages.\n\nhttp://i.giphy.com/AbuQeC846WKOs.gif\n\nHave you noticed that being in society and when in the company of others, you do not crave training or self-development? I see this for myself when my brother visits me. I do not read books, I do not ponder any situation and theory, I just talk and spend time with my brother. Loneliness provides an incentive for development. With the help of loneliness, you really will begin to appreciate the friendship and fellowship.\n\n# This can be compared with food delicacies. If you eat delicacies every day, they will cease to be so desirable and unusual, and they will become commonplace.\n\nhttp://i.giphy.com/WmEvcZna75UfS.gif\n\n# Now.\n\nMy current way of life is very similar to Tantric Buddhism, although it is not defined by that as it has no name, and does not need to be defined as such.\n\n# Sometimes it's painful and unpleasant to look at people.\n\nhttp://i.giphy.com/JsL3hYFdvMMSs.gif\n\nI understand why they are themselves, why they have such a way of life, but I do not want to be like them and be with them in the same company. I do not like it.\n\nI never offend for a reason, I never attack, and I do no harm.\nEmpathy - what distinguishes us from animals.\n\nI value every life, no matter what that life is.\nI do not accept what most people love.\nI do everything consciously, extracting meaning and benefits from the experience.\nFor example, I have a meal. I do not eat garbage food, because it does not give to my body anything useful, since it does not contain nutrients. \n\n# I do not drink alcohol, smoke cigarettes or do drugs.\u00a0\n\n\nAnd that is why people around me laugh or look at me quizzically. They say that I'm lying, sick, abnormal, or \"mother does not allow\". They say, \"in life need one needs to try everything!\" \n\nBut none of them for some reason, do not try, for example, quantum physics, a healthy lifestyle, or Buddhism.\n\n**In life, need to not only try, but also try not to try!**\n\n# I do not live with the people, but I live among the people.\n\nIf only you knew how hard all of this is ... I have to hide it all, and to adapt to the \"generally accepted norms\", in order not to be mocked. \n\nI feel somehow alien among the people. I have to wear a mask to resemble the people and not be detected.\n\nhttp://i.giphy.com/QG0th9DNdRrGw.gif\n\n> \"No pyramids of authority.\nMaster has an older brother, nothing more. And he just does the hard work that the others do not overpower. If it is otherwise, then trouble is inevitable.\nAuthority - this is a mistake \"(c).\n\nIf you have read Orwell's novel \"1984\" or watched the same film, you know, all this is happening in my country.\nPeople poisoned by propaganda, people are trying to survive, they are afraid of the authorities and freedom.\nAll this is laid bare and exacerbated in human animal instincts. The principle of flocks. Not like us - the enemy is dangerous, you need to avoid, or to die.\n\nThe population cannot tolerate dissent, any manifestation of freedom, something different from their lifestyle and worldview. In connection with this, people with a different lifestyle, look, worldview and way, becomes an object of ridicule, an outcast, a threat, an enemy.\n\nIt's not comfortable for me to live here. But leave (until the border has not yet closed) there is no possibility. It is very expensive, and I make incredibly low wages, and wages continue to fall, while food and services continue to rise in price.\n\nHow I would like live in a free country! Be yourself, do not hide anything, not trying to make excuses for my views and lifestyles.\n\nMaybe relocation to another country could change something in me, but I notice, positive emotions in me less and less and I feel less joy and desire to live.\n\nhttp://i.giphy.com/eR2OWX51qesIo.gif\n\n-Secret Writer\n\nImages and gifs: All images are by Stellabelle, all gifs are from giphy.com.", - "cashout_time": "2016-09-15T19:48:36", - "category": "secret-writer", - "children": 43, - "children_abs_rshares": "18007718646255", - "created": "2016-08-15T16:44:42", - "curator_payout_value": { - "amount": "31898", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 615287, - "json_metadata": "{\"tags\":[\"secret-writer\",\"isolation\",\"self-development\",\"life\"],\"image\":[\"http://i.giphy.com/3oAt28uFXyrrgR1pte.gif\"]}", - "last_payout": "2016-08-16T19:48:36", - "last_update": "2016-08-15T17:39:09", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-08-30T21:38:48", - "net_rshares": "981828724825", - "net_votes": 293, - "parent_author": "", - "parent_permlink": "secret-writer", - "percent_hbd": 10000, - "permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", - "reward_weight": 10000, - "root_author": "stellabelle", - "root_permlink": "secret-writer-i-feel-like-an-alien-among-people-in-my-country", - "title": "SECRET WRITER: I Feel Like An Alien Among People In My Country", - "total_payout_value": { - "amount": "356586", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": "981882842624" - }, - { - "abs_rshares": 0, - "active": "2016-08-15T20:10:06", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "teutonic", - "author_rewards": 0, - "beneficiaries": [], - "body": "http://www.mindmotivations.com/images/optical-illusion1.jpg \nIs the ladder going up or down?\nhttp://www.mindmotivations.com/images/optical-illusion2.jpg\nAre the dots in between the squares white, black or grey?\nhttp://www.mindmotivations.com/images/optical-illusion3.jpg \nparallel or crooked?\nhttp://www.mindmotivations.com/images/optical-illusion4.jpg\nHow many legs?\nhttp://www.mindmotivations.com/images/optical-illusion5.jpg\nFocus on the dot in the middle and then move your head backwards and forwards.\nhttp://www.mindmotivations.com/images/optical-illusion7.jpg\nIs the picture moving?\nhttp://www.mindmotivations.com/images/optical-illusion8.jpg\nIs there anything in between the different squares?\nhttp://www.mindmotivations.com/images/optical-illusion9.jpg\nface of a lady or a word?\nhttp://www.mindmotivations.com/images/optical-illusion6.jpg \nFocus on the 4 dots in the middle of the picture for 30 seconds. \nhttp://www.mindmotivations.com/images/optical-illusion10.jpg \neven possible?", - "cashout_time": "2016-09-15T19:48:45", - "category": "awesome", - "children": 1, - "children_abs_rshares": 0, - "created": "2016-08-15T19:35:54", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 617429, - "json_metadata": "{\"tags\":[\"awesome\",\"\"],\"image\":[\"http://www.mindmotivations.com/images/optical-illusion1.jpg\"]}", - "last_payout": "2016-08-16T19:48:45", - "last_update": "2016-08-15T19:35:54", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": 0, - "net_votes": 2, - "parent_author": "", - "parent_permlink": "awesome", - "percent_hbd": 10000, - "permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", - "reward_weight": 10000, - "root_author": "teutonic", - "root_permlink": "10-amazing-optical-illusion-pictures-to-mess-with-your-brain", - "title": "10 Amazing Optical Illusion Pictures To Mess With Your Brain", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 0 - }, - { - "abs_rshares": 158773924, - "active": "2016-09-14T20:20:48", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "safar01", - "author_rewards": 0, - "beneficiaries": [], - "body": "\n

\n

show in the pictures are not real, but I edit them using Photoshop just

\n

 to train the imagination only.

\n

I made this picture just to entertain readers of all, 

\n

please advise the reader all my abilities to process images

\n", - "cashout_time": "2016-09-15T19:48:57", - "category": "editing", - "children": 0, - "children_abs_rshares": 158773924, - "created": "2016-09-14T19:48:57", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 952070, - "json_metadata": "{\"tags\":[\"editing\",\"with\",\"photoshop\",\"imagination\",\"steemitphotochallenge\"],\"image\":[\"https://scontent.fcgk1-1.fna.fbcdn.net/v/t1.0-9/44685_544257398931890_1432197168_n.jpg?oh=737dff7bef73ecfcaff983c130b55ee1&oe=587FF678\"]}", - "last_payout": "1970-01-01T00:00:00", - "last_update": "2016-09-14T20:20:48", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-28T19:48:57", - "net_rshares": 158773924, - "net_votes": 1, - "parent_author": "", - "parent_permlink": "editing", - "percent_hbd": 10000, - "permlink": "lol-robot-tranformers-against-fishermen", - "reward_weight": 10000, - "root_author": "safar01", - "root_permlink": "lol-robot-tranformers-against-fishermen", - "title": "LOL ... Robot Tranformers against fishermen (steemitphotochallenge)", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": "732186422373807", - "vote_rshares": 158773924 - }, - { - "abs_rshares": 53638386, - "active": "2016-08-15T19:15:51", - "allow_curation_rewards": true, - "allow_replies": true, - "allow_votes": true, - "author": "pipertomcat", - "author_rewards": 0, - "beneficiaries": [], - "body": "https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg \nhttps://s19.postimg.org/jiv4eri0j/Blockchain_technology1.png\nWhy not Steem Dollars then? I think ultimately Western Union and the like may actually choose or adopt a name that includes something like \"Dollar\". Lol\nhttps://s19.postimg.org/4y9g66xo3/Bitcoinripplebanner1.png\n\nI have said to different friends over the last year or so on occasion, that I fear Western Union is about to die by Bitcoin's hand. I compare Netflix, Youtube, Google Play, Itunes,and so forth killing retail establishments like Blockbuster video. Technology and the convenience it brings, easily dominates any industry, ask Kodak. \n\n I have friends who still have to purchase money orders to pay their rent. The Apartment complex refuses personal checks and apparently doesn't want employee's accepting cash. You can join their site online for a $50 per month fee and connect your checking account. What a ripoff! \nWow if they only knew of bitcoin and the coming technology.\nhttps://s19.postimg.org/743r0p14j/725_Ly9jb2lud_GVs_ZWdy_YXBo_Lm_Nvb_S9zd_G9y_YWdl_L3_Vwb_G9h.jpg\n\n\nhttps://s19.postimg.org/fc5olot0z/e873eec95dbe6437e8b73f6dc4b474e6.jpg\nhttps://s19.postimg.org/d2hkaxk37/a9ee5c9045261e324670df9b5e3fbf0c.png\n Western Union was in discussions with Ripple Labs early last year, regarding a blockchain pilot project. By using a cheap payment network, proponents claim that companies will be able to cut down the cost of remittances.\n The following quote from Barry Gilbert , the Digital Currency Insights Founder and CEO says it best:\n\u201cIf you look at Western Union and Moneygram, they have a fantastic opportunity to take advantage of bitcoin as a financial rail and incorporate it into their business.\u201d\n\nAfter reading the following article just now, I will have to say that I think someone like Western Union may be the key player in bringing Bitcoin to the masses! The following is an article from Bravenewcoin-http://bravenewcoin.com/news/western-union-wont-make-the-same-mistake-with-blockchain/\n\n#steemdollar\n#steem\n#westernunion\n#ripple", - "cashout_time": "2016-09-15T19:49:42", - "category": "bitcoin", - "children": 1, - "children_abs_rshares": "45063474229", - "created": "2016-08-15T19:14:33", - "curator_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "depth": 0, - "id": 617119, - "json_metadata": "{\"tags\":[\"bitcoin\",\"steemdollar\",\"steem\",\"westernunion\",\"ripple\"],\"image\":[\"https://s19.postimg.org/kdd2n20hf/ORS0_CPA.jpg\"]}", - "last_payout": "2016-08-16T19:49:42", - "last_update": "2016-08-15T19:14:33", - "max_accepted_payout": { - "amount": "1000000000", - "nai": "@@000000013", - "precision": 3 - }, - "max_cashout_time": "2016-09-04T21:13:12", - "net_rshares": 53638386, - "net_votes": 9, - "parent_author": "", - "parent_permlink": "bitcoin", - "percent_hbd": 10000, - "permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", - "reward_weight": 10000, - "root_author": "pipertomcat", - "root_permlink": "western-union-investing-in-blockchain-technology-will-it-be-bitcoin-or-ripple", - "title": "Western Union investing in Blockchain technology...will it be Bitcoin ? or Ripple!?", - "total_payout_value": { - "amount": "0", - "nai": "@@000000013", - "precision": 3 - }, - "total_vote_weight": 0, - "vote_rshares": 53638386 - } - ] -} \ No newline at end of file +{ + "comments": [ + { + "abs_rshares": 19230456217, + "active": "2016-08-16T01:33:33", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "wwwmmm", + "author_rewards": 0, + "beneficiaries": [], + "body": "\n\n[asnw: comment]", + "cashout_time": "2016-08-21T22:17:06", + "category": "mathematics", + "children": 13, + "children_abs_rshares": 0, + "created": "2016-08-14T22:17:06", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 805994, + "json_metadata": "{\"tags\":[\"mathematics\",\"science\",\"engineering\",\"memory\"],\"image\":[\"http://dodaj.rs/photos/20160814147121293253918.jpg\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-14T22:17:06", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 19230456217, + "net_votes": 7, + "parent_author": "", + "parent_permlink": "mathematics", + "percent_hbd": 10000, + "permlink": "how-many-triangles-are-there", + "reward_weight": 10000, + "root_author": "wwwmmm", + "root_permlink": "how-many-triangles-are-there", + "title": "How Many Triangles Are There?", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 88260503626250194, + "vote_rshares": 19230456217 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T22:36:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "fubar-bdhr", + "author_rewards": 0, + "beneficiaries": [], + "body": "16 small + 6 made of 3, 2 made of 9 + the whole thing = 25", + "cashout_time": "2016-08-21T22:22:33", + "category": "mathematics", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-14T22:22:33", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 806078, + "json_metadata": "{\"tags\":[\"mathematics\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-14T22:22:33", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "wwwmmm", + "parent_permlink": "how-many-triangles-are-there", + "percent_hbd": 10000, + "permlink": "re-wwwmmm-how-many-triangles-are-there-20160814t222205879z", + "reward_weight": 10000, + "root_author": "wwwmmm", + "root_permlink": "how-many-triangles-are-there", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T22:36:57", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "wwwmmm", + "author_rewards": 0, + "beneficiaries": [], + "body": "No, try again :)", + "cashout_time": "2016-08-21T22:36:57", + "category": "mathematics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-14T22:36:57", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 806317, + "json_metadata": "{\"tags\":[\"mathematics\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-14T22:36:57", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "fubar-bdhr", + "parent_permlink": "re-wwwmmm-how-many-triangles-are-there-20160814t222205879z", + "percent_hbd": 10000, + "permlink": "re-fubar-bdhr-re-wwwmmm-how-many-triangles-are-there-20160814t223655094z", + "reward_weight": 10000, + "root_author": "wwwmmm", + "root_permlink": "how-many-triangles-are-there", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T22:46:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "hadenmiles", + "author_rewards": 0, + "beneficiaries": [], + "body": "16 small, 3 made of 9 (one for each corner), and the entire thing. 26?\n\nEDIT: 16 small, 7 made of 4, 3 made of 9, 1 made of 16, so 16+7+3+1=27?", + "cashout_time": "2016-08-21T22:38:15", + "category": "mathematics", + "children": 1, + "children_abs_rshares": 0, + "created": "2016-08-14T22:38:15", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 806342, + "json_metadata": "{\"tags\":[\"mathematics\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-14T22:42:24", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "wwwmmm", + "parent_permlink": "how-many-triangles-are-there", + "percent_hbd": 10000, + "permlink": "re-wwwmmm-how-many-triangles-are-there-20160814t223814990z", + "reward_weight": 10000, + "root_author": "wwwmmm", + "root_permlink": "how-many-triangles-are-there", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 53440450, + "active": "2016-08-14T22:46:00", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "runridefly", + "author_rewards": 0, + "beneficiaries": [], + "body": "Heck, maybe the one upside makes 27", + "cashout_time": "2016-08-21T22:46:00", + "category": "mathematics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-14T22:46:00", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 2, + "id": 806475, + "json_metadata": "{\"tags\":[\"mathematics\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-14T22:46:00", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 53440450, + "net_votes": 1, + "parent_author": "hadenmiles", + "parent_permlink": "re-wwwmmm-how-many-triangles-are-there-20160814t223814990z", + "percent_hbd": 10000, + "permlink": "re-hadenmiles-re-wwwmmm-how-many-triangles-are-there-20160814t224552420z", + "reward_weight": 10000, + "root_author": "wwwmmm", + "root_permlink": "how-many-triangles-are-there", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 246447283520034, + "vote_rshares": 53440450 + }, + { + "abs_rshares": 0, + "active": "2016-08-14T23:08:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "cdubendo", + "author_rewards": 0, + "beneficiaries": [], + "body": "I count 27.?", + "cashout_time": "2016-08-21T23:08:03", + "category": "mathematics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-14T23:08:03", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 806880, + "json_metadata": "{\"tags\":[\"mathematics\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-14T23:08:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "wwwmmm", + "parent_permlink": "how-many-triangles-are-there", + "percent_hbd": 10000, + "permlink": "re-wwwmmm-how-many-triangles-are-there-20160814t230805528z", + "reward_weight": 10000, + "root_author": "wwwmmm", + "root_permlink": "how-many-triangles-are-there", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 47346458472195, + "active": "2016-08-15T15:10:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "acidyo", + "author_rewards": 188744, + "beneficiaries": [], + "body": "Time is precious. Many would argue time is the most valued thing of all, comparing it to having wealth, power or attention. Most things in life come and go, but time only goes in one direction and that's forward. Time to a person can feel long, boring, and empty but when you finally find the thing you have been looking for, time seems to change for the opposite. \nIt was time it cost to find the love of my life, but when I did, it felt like it had all been worth it. While the time after felt so much more valuable, it also taught me how unforgiving time can be, and how one small misstep kept me locked in time forever, in my own body.\n\n*Two seconds of my life determined the future of my existence.*\n\nIt was on a rainy day when i was driving my motorcycle on my way to my girlfriend when that one driver decided it was more important to catch Pikachu instead of looking at the road. I can still imagine my feeling when my peripheral vision noticed the car and the panic that ensued in seconds. Unfortunately there was nothing to be done at that point anymore, all I could do was turn my head, face the driver and see him drive into me while he raised his head from his smartphone. The last second I still remember is flying in the air and the world around me was spinning.\n\nAfter having experienced almost every dream and nightmare I could imagine existed, this one felt really weird. I remembered this room I was in, although it felt like I had been there ages ago. It had a familiar scent that I really liked... just as it felt like I was remembering where it was from, I heard someone else approaching from the doorway;\n\"Hey Billy...\"\nI recognized her voice instantly, just as I turned my head to greet her I felt someones hand pushing my face the other way.\n\nThis feeling felt new to me, not just someone pushing my head but me actually feeling it. All the dreams and nightmares, I hadn't felt anything in so long. The whole sensation was strange to me, I was wondering if I had started to lucid dream but then it happened. The feeling came back, stronger than ever. Cold and wet. There were so many different emotions going through me I didn't know how to handle it, I wanted to know what it was. \nThen I opened my eyes.\n\nIt felt like one of those days you have been oversleeping, your body isn't tired anymore, you couldn't sleep longer if your life depended on it. That feeling times a hundreds. \nI kept blinking, adjusting my vision but everything was really, really blurry. I couldn't tell where I was or what was happening, then I heard a voice say:\n\"Oh gosh, I wonder if this is a fake alarm again...\" as she stepped on over to the door and left.\nThe feeling slowly vanished but my eyes were still open, I lay notice to the only thing making a sound in the room, it was my breathing. I tried to turn my head but I couldn't. My mind started racing;\n\"Where am I?\",\n\"Who was that woman?\",\n\"Why can't I move?\"\nBefore I could come up with more the door opened again and I could see something coming closer.\n\"I brought some towels to get you all dried up again, here we go, let's start with your face... Oh my god, you are awake!\"\nI couldn't even turn my eyes to the side to see her but I blinked more frequently so she would notice.\n\"Ohh, this is excellent, let me get the doctor, I'll be back in two *steems*...\" she said as she stormed off again.\n\nI lay there, still a thousand of questions flowing through my mind. \"What was that she said at the end?\"\nThe door opens and a man comes in and stands by the foot of the bed, tells me that they have been waiting for a long time for this day to come. He did a few tests on how my eyes were moving and said he would call a physician to get me to 'work' on regaining my strength. He would also notify my relatives to come see me tomorrow and that I should be up and running in about a week. \"Welcome back\" he added at the end before he left the room.\n\nI started to realize I must've been in a coma for some time now. The accident came back to me and I started thinking of her, how much time might have passed, how she is and what she could be doing nowadays.\n\nBefore I could think much further another man came in and started injecting me with needles and said \"this will give you some power back, try and move your head and neck after a minute\". I guessed he was the physician that was supposed to help me get in shape again. \n\nI started moving my neck and hands, it all started working so quickly again. He helped me sit up on a wheel-chair and said he would take me out for a stroll, since I hadn't gotten fresh air in some time.\nIt was sunny outside, it felt like spring had just arrived and the park had started to become colorful, the air I breathed in felt really fresh. We stopped at a park chair and he sat down next to me and said: \"I'd be happy to answer any questions that might be on your head now, could you try and test if your voice is back after not having used it for ten years?\"\n\n\"Yes\" I replied, surprised I could use my voice, I muttered \"10 years? Its the year 2027?\"\n-\"oh yeah, thought you knew that already. I'm sorry, yes its been 10 years since you went into a coma. Let me tell you a lot has changed since then.\" he said with a smile showing.\n\"what's the biggest change in the last 10 years?\"\n-\"oh, not a lot of coma patients form the question that way, that's a good one! Hmm let's see...\" he said as he put his hand to his jaw in a thoughtful manner. \"Well, i'd say the new digital era of AI lifeforms and the decentralization of value and the internet of things, I would say.\"\n\nThis instantly reminded me of my hobby with cryptocurrencies I had, and so many questions about that came to my head and I wanted answers to all of them. I was surprised to automatically asking this one:\n\"Who is the president of the United States?\"\n-\"Who? Haha, the current president is actually an AI robot, people don't really qualify for those important positions anymore.\"\n\"Did block-chain technology change the world?\" I said in a hurry almost interrupting him.\nHe noticed how eager I was to get an answer to that, so he leaned closer in on me and said. \"Yes, they did. Big time, the whole revolution was based around them, why, were you into crypto-coins before your accident?\" he added.\n\"Yeah, I checked them out from time to time. Which one become the most popular one?\" I asked, not sure if I was driving the discussion too much into one category.\n-\"Oh I'd say one of the biggest ones was Steem and how it brought everyone into the awesome technology that was too early for its time, other than that, Ethereum has decentralized and established most of the business world and how API's and AI bots operate.\"\n\nOn our way back I asked him if it was possible for me to use a laptop when in the room, to catch up on the stuff I have missed out on. He laughed and added that that's a pretty normal request for someone who had been sleeping for a decade. I was now back on my bed and he brought me a laptop. It had been only an hour since I had been awake but I had to go check out my old Steemit account and if I could still remember the password.\n\nThe moment I hit enter, and it directed me to my own page, my heart stopped for a moment when I glanced at the \"estimated value: $4,588,853,314.88\" It took me several seconds to count all the digits and my eyes were wide open, I quickly looked behind me and noticed he noticed too, but pretended he wasn't looking at the screen.\n\nAs I was putting the laptop to the side, I was trying to think of an excuse to have him leave the room for a moment so i could have some time to take all of what just had happened in, but as soon as I turned my head to ask him I felt something really hard hit me on the side of my head. I returned to the darkness again.\n\n\n**Hey everyone, thanks for reading those who did, I want to try my hand at some sci-fi writing and have a lot of crazy ideas in my head that I want to put down to words and into a hopefully entertaining sci-fi series. I hope my english didn't wasn't that hard to read, its my third language. Criticism is welcomed and questions about the plot or what's going to happen would be fun to read!**\n\nAlso for anyone that wants to add pictures to this sci-fi from #descriptionsonthespot or has some good ideas for which ones to choose, feel free to say so in the comments!\n\nhttp://imgur.com/dBXOswi.jpg", + "cashout_time": "2016-08-22T00:00:03", + "category": "sci-fi", + "children": 5, + "children_abs_rshares": 0, + "created": "2016-08-15T00:00:03", + "curator_payout_value": { + "amount": "91951", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 807652, + "json_metadata": "{\"tags\":[\"sci-fi\",\"beginner\",\"thriller\",\"futurology\",\"descriptionsonthespot\"],\"image\":[\"http://imgur.com/dBXOswi.jpg\"]}", + "last_payout": "2016-08-16T20:32:27", + "last_update": "2016-08-15T00:14:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 47346458472195, + "net_votes": 62, + "parent_author": "", + "parent_permlink": "sci-fi", + "percent_hbd": 10000, + "permlink": "waking-up-with-coma-lag-chapter-1-sci-fi-thriller-original-content", + "reward_weight": 10000, + "root_author": "acidyo", + "root_permlink": "waking-up-with-coma-lag-chapter-1-sci-fi-thriller-original-content", + "title": "Waking up with coma lag - Chapter 1 (sci-fi/thriller) (original content)", + "total_payout_value": { + "amount": "282172", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 47346458472195 + }, + { + "abs_rshares": 9193471179, + "active": "2016-08-15T15:10:21", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "sunjata", + "author_rewards": 0, + "beneficiaries": [], + "body": "Really liked it - the idea of waking up from a coma to find out that you're rich, but then also being vulnerable because of that has loads of potential. \n\nIf you'd like some criticism then: the single best bit of writing advice is probably \"show, don't tell\". If you have an interesting world to wake up to, then there are probably more interesting ways to show how the world has changed than just having a character *describe* it. So, for example, the importance of AI bots could be hinted at by the character being nursed by an AI bot, and getting confused about what's happening. \n\nI'm looking forward to seeing where this goes in the future.", + "cashout_time": "2016-08-22T00:56:39", + "category": "sci-fi", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-15T00:56:39", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 808501, + "json_metadata": "{\"tags\":[\"sci-fi\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-15T00:56:39", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 9193471179, + "net_votes": 1, + "parent_author": "acidyo", + "parent_permlink": "waking-up-with-coma-lag-chapter-1-sci-fi-thriller-original-content", + "percent_hbd": 10000, + "permlink": "re-acidyo-waking-up-with-coma-lag-chapter-1-sci-fi-thriller-original-content-20160815t005639795z", + "reward_weight": 10000, + "root_author": "acidyo", + "root_permlink": "waking-up-with-coma-lag-chapter-1-sci-fi-thriller-original-content", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 42300181123004248, + "vote_rshares": 9193471179 + }, + { + "abs_rshares": 0, + "active": "2016-08-15T01:19:03", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ungratefulchump", + "author_rewards": 0, + "beneficiaries": [], + "body": "26 triangles, unless it is a trick questions base on the background then I would have to add 2 more meaning it would be 28.", + "cashout_time": "2016-08-22T01:19:03", + "category": "mathematics", + "children": 0, + "children_abs_rshares": 0, + "created": "2016-08-15T01:19:03", + "curator_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 1, + "id": 808805, + "json_metadata": "{\"tags\":[\"mathematics\"]}", + "last_payout": "1970-01-01T00:00:00", + "last_update": "2016-08-15T01:19:03", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 0, + "net_votes": 0, + "parent_author": "wwwmmm", + "parent_permlink": "how-many-triangles-are-there", + "percent_hbd": 10000, + "permlink": "re-wwwmmm-how-many-triangles-are-there-20160815t011906219z", + "reward_weight": 10000, + "root_author": "wwwmmm", + "root_permlink": "how-many-triangles-are-there", + "title": "", + "total_payout_value": { + "amount": "0", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 0, + "vote_rshares": 0 + }, + { + "abs_rshares": 2850018500570, + "active": "2016-08-17T04:45:36", + "allow_curation_rewards": true, + "allow_replies": true, + "allow_votes": true, + "author": "ethereumnews", + "author_rewards": 1526, + "beneficiaries": [], + "body": "\n

\n

What is Ethereum?

\n

Ethereum is an open source platform that allows users to build & distribute next generation decentralized apps (dapps). 

\n

The Ethereum platform allows everyone to interact with all types of systems directly.

\n
    \n
  • Gaming
  • \n
  • Financial
  • \n
  • Social Networking
  • \n
\n

This is all done directly peer to peer, and is focused on being the future platform for all dapps.

\n

How are dapps different on Ethereum?

\n

The first thing to mention is that on Ethereum all of your information stays private.

\n

With normal systems we work with now like Facebook or our banks we are required to use them as a middle man while paying a fee. On the Ethereum platform the middle man is removed as is the transaction. So everyone saves on every transaction.

\n

Also there are no firewalls or IT departments to deal with on Ethereum, because of smart contracts on the blockchain.

\n

What is a smart contract?

\n

Smart contracts are programs that follow a series of steps every time they receive a message or \"transaction\". These smart contracts are what make Ethereum different from Bitcoin.

\n

Smart contracts can..

\n
    \n
  • Store data
  • \n
  • Send/Receive transactions
  • \n
  • Interact with other contracts
  • \n
\n

And they can solve solutions for things like..

\n
    \n
  • Medical Records
  • \n
  • Voting Machines
  • \n
  • Property Contracts
  • \n
  • And all other legal documents
  • \n
\n

With smart contracts users can stay in control of their funds and their personal information!

\n


\n

I hope this helps explain what Ethereum is to anyone out there who wanted to know more about it!

\n", + "cashout_time": "2016-08-22T01:50:15", + "category": "ethereum", + "children": 2, + "children_abs_rshares": 0, + "created": "2016-08-15T01:50:15", + "curator_payout_value": { + "amount": "746", + "nai": "@@000000013", + "precision": 3 + }, + "depth": 0, + "id": 809213, + "json_metadata": "{\"tags\":[\"ethereum\",\"beyondbitcoin\",\"blockchain\",\"news\"],\"image\":[\"https://img1.steemit.com/0x0/https://i.imgsafe.org/fdde6c099f.png\"]}", + "last_payout": "2016-08-17T04:57:12", + "last_update": "2016-08-17T04:45:36", + "max_accepted_payout": { + "amount": "1000000000", + "nai": "@@000000013", + "precision": 3 + }, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 2850018500570, + "net_votes": 28, + "parent_author": "", + "parent_permlink": "ethereum", + "percent_hbd": 10000, + "permlink": "what-is-ethereum", + "reward_weight": 10000, + "root_author": "ethereumnews", + "root_permlink": "what-is-ethereum", + "title": "What is Ethereum?", + "total_payout_value": { + "amount": "2270", + "nai": "@@000000013", + "precision": 3 + }, + "total_vote_weight": 7674951809396939193, + "vote_rshares": 2850018500570 + } + ] +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json index a29062bd..5052c60a 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json @@ -10,10 +10,10 @@ "author_rewards": 0, "beneficiaries": [], "body": "**ICONOMI found management platform** is currently in ICO and you can still invest. \n\nThat is most anticipated platform of 2016 why You may ask me. I will give you some graph and explanation. Solutions like ICONOMI are very popular in old economy people want be rich and wanted get more profit so they tried give money to people who know more about trading. Found management platforms preforms much better than average investors. Big guys just want invest not day trading. In crypto ICOMI will be 1st such project - such needed project.\n\nNow true facts and everything that I show you, is now publicly available on web. Graphs taken from coinmarketcap.com are showing us, what is going on cryptocurrency markets right now:\n![](http://i.imgur.com/FLe0WeF.jpg) \n![](http://i.imgur.com/s6Aeke2.jpg) \n![](http://i.imgur.com/RX0JK1z.jpg) \n\nYou see on won eyes that: Bitcoin is loosing over time market share to other alt coins. There is many multiple reasons for that. Without ICONOMI getting on cryptocurrency board for new investors will be VERY hard. \nThat is:\n \n- choose right one coin. \n- skip scams \n- buy valuable coins \n- crypto markets are getting bigger and bigger all time, there is about over 700coins tradable now\n\n\nICONOMI will be platform that for **every investor looking for big profits**. \nICONOMI will give us 2 founds:\n\n- **The ICONOMI.INDEX FUND** - a \"Passive\" - Coin Traded Fund (CTF). This fund operates on special rules, variables that manage the fund through automation. This Found will be the fastest available to investors at launch in Q4 2016 - The ICONOMI.PERFORMANCE FUND - an \"\nActive\"\n- **Coin Managed Fund (CMF)**, Operated by and managed by best investors. This fund will be invitation only available. If you invest in ICO you will get you invitation for free. I bet is worth its price. Those found will be carefully managed by ICONOMI experts and will provide best profits available.\n\nGraphs shows that volume of alt coins is rising heavily and will move up. Without ICONOMI founds many investors will probably lose cash on market, while rypto currency market will rise as whole. **If buy some ICO shares you will get dividends forever as share holder.**\n Soon real professional traders will come to cryptocurrency and you as investor in order to get big profits will have to use service of ICONOMI. \n\nPersonally I have invested in ICO and believe that **ICONOMI is future of crypto trading**. Don't miss a chance and invest here:[ico.iconomi.net](ico.iconomi.net) \n\nIf you want invest in ICO: ![](http://i.imgur.com/iqDpTag.png) \n\nOfficial Links:\n \n- [ico.iconomi.net](ico.iconomi.net \"Main site\") \n- [https://www.facebook.com/iconomi.net/](https://www.facebook.com/iconomi.net/ \"Facebook\") \n- [https://twitter.com/iconominet](https://twitter.com/iconominet\"twitter.com\")\n- [https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/](https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/) \n- [https://telegram.me/iconomi](https://telegram.me/iconomi)\n- [https://medium.com/iconominet](https://medium.com/iconominet)\n- [https://iconominet.herokuapp.com](https://iconominet.herokuapp.com)", - "cashout_time": "2016-09-16T19:47:00", + "cashout_time": "2016-09-22T19:47:00", "category": "cryptocurrency", "children": 0, - "children_abs_rshares": 155925481, + "children_abs_rshares": 0, "created": "2016-09-15T19:47:00", "curator_payout_value": { "amount": "0", @@ -21,7 +21,7 @@ "precision": 3 }, "depth": 0, - "id": 961233, + "id": 1257938, "json_metadata": "{\"tags\":[\"cryptocurrency\",\"bitcoin\",\"profit\",\"altcoin\"],\"image\":[\"http://i.imgur.com/FLe0WeF.jpg\",\"http://i.imgur.com/s6Aeke2.jpg\",\"http://i.imgur.com/RX0JK1z.jpg\",\"http://i.imgur.com/iqDpTag.png\"],\"links\":[\"ico.iconomi.net\",\"https://www.facebook.com/iconomi.net/\",\"https://twitter.com/iconominet\\\"twitter.com\\\"\",\"https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/\",\"https://telegram.me/iconomi\",\"https://medium.com/iconominet\",\"https://iconominet.herokuapp.com\"]}", "last_payout": "1970-01-01T00:00:00", "last_update": "2016-09-15T19:47:00", @@ -30,7 +30,7 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-29T19:47:00", + "max_cashout_time": "1969-12-31T23:59:59", "net_rshares": 155925481, "net_votes": 1, "parent_author": "", @@ -46,7 +46,7 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": "719051331038101", + "total_vote_weight": 719051331038101, "vote_rshares": 155925481 }, { @@ -59,10 +59,10 @@ "author_rewards": 0, "beneficiaries": [], "body": "The Texas Rangers are 33-10 (.767) in one-run games this season. This would stand as a modern record for winning percentage in one-run games, besting the 2012 Orioles, who were 29-9 (.763).\n\n

http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815

\n\nBut if we dig deep into the archives of baseball history, we learn that this is actually the best record since the 1890 Brooklyn Bridegrooms, who were 14-4 (.778) in one-run games en route to an overall 86-43 (.667) record and the National League pennant.\n\n**Source / Read More...** sportingnews.com \n\n
\n\n
\n\n**NEWS FEED** \n*Get the latest headlines from around the world right on your Steemit Feed! With @newsfeed you always stay in the know about all sorts of topics ranging from Politics & Finance to Sports*\n\n**Currently In Beta**\n*Full news feed from hand picked creditable sources from all sides of the political and social realm. Although not fully operational, posts will be random while testing BUT do have real headlines!*", - "cashout_time": "2016-09-16T19:46:30", + "cashout_time": "2016-09-22T19:46:30", "category": "newsfeed", "children": 0, - "children_abs_rshares": 151513711, + "children_abs_rshares": 0, "created": "2016-09-15T19:46:30", "curator_payout_value": { "amount": "0", @@ -70,7 +70,7 @@ "precision": 3 }, "depth": 0, - "id": 961225, + "id": 1257930, "json_metadata": "{\"tags\":[\"newsfeed\",\"news\",\"sports\",\"rangers\",\"baseball\"],\"users\":[\"newsfeed\"],\"image\":[\"http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815\",\"https://ipfs.pics/ipfs/QmUo1EuVPSs3prLRdJH95Lg97vyvzSfhH6srZH5bqRh7p6\"],\"links\":[\"http://www.sportingnews.com/mlb/news/texas-rangers-record-in-one-run-games-brooklyn-bridegrooms/irlcvzvv8fui1vgogevkmomch\\n\"]}", "last_payout": "1970-01-01T00:00:00", "last_update": "2016-09-15T19:46:30", @@ -79,14 +79,14 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-29T19:46:30", + "max_cashout_time": "1969-12-31T23:59:59", "net_rshares": 151513711, "net_votes": 1, "parent_author": "", "parent_permlink": "newsfeed", "percent_hbd": 0, "permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", - "reward_weight": 9354, + "reward_weight": 10000, "root_author": "newsfeed", "root_permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", "title": "Rangers' record in one-run games nearing truly historic level", @@ -95,7 +95,7 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": "698707196688679", + "total_vote_weight": 698707196688679, "vote_rshares": 151513711 }, { @@ -108,10 +108,10 @@ "author_rewards": 0, "beneficiaries": [], "body": "\n

Model of Skeleton hands,without scissors and glue.

\n1


\n2


\n\n


\n

I need a piece of paper.

\n3


\n4


\n5


\n6


\n7


\n1


\n

Part 1 Part 2 Part 3 Part4 Part5 Part6 Part7 Part8 Part9 Part10

\n", - "cashout_time": "2016-09-16T19:46:30", + "cashout_time": "2016-09-22T19:46:30", "category": "art", "children": 0, - "children_abs_rshares": 3377256926, + "children_abs_rshares": 0, "created": "2016-09-15T19:46:30", "curator_payout_value": { "amount": "0", @@ -119,7 +119,7 @@ "precision": 3 }, "depth": 0, - "id": 961226, + "id": 1257931, "json_metadata": "{\"tags\":[\"art\",\"photography\",\"origami\"],\"image\":[\"https://s18.postimg.org/fi4tfvrgp/image.jpg\",\"https://s9.postimg.org/kn7ogredb/image.jpg\",\"https://s10.postimg.org/nnna3pxp5/image.jpg\",\"https://s12.postimg.org/dltyd50wd/image.jpg\",\"https://s12.postimg.org/qwsf7bs99/image.jpg\",\"https://s3.postimg.org/7p1m66f4j/image.jpg\",\"https://s22.postimg.org/4388u7yoh/image.jpg\",\"https://s14.postimg.org/qo99yko5t/image.jpg\"],\"links\":[\"https://postimg.org/image/byivq2oqt/\",\"https://postimage.org/index.php?lang=russian\",\"https://postimg.org/image/ivepluv0b/\",\"https://postimg.org/image/efv1n0qmt/\",\"https://postimg.org/image/u9lgfmvnt/\",\"https://postimg.org/image/gzhee9knd/\",\"https://postimg.org/image/gwtumvm6n/\",\"https://postimg.org/image/55ifcrhhp/\",\"https://postimg.org/image/4cbh56p1p/\",\"https://steemit.com/art/@anton333/origami-start-with-the-simplest\",\"https://steemit.com/art/@anton333/origami-part-two-do-a-swan\",\"https://steemit.com/art/@anton333/origami-part-3-the-model-of-a-mouse\",\"https://steemit.com/art/@anton333/origami-part-4-the-model-of-a-rose-petals\",\"https://steemit.com/art/@anton333/origami-part-5-the-model-of-master-yoda\",\"https://steemit.com/art/@anton333/origami-part-6-the-model-of-eagle\",\"https://steemit.com/art/@anton333/origami-part-7-the-model-of-dagger\",\"https://steemit.com/art/@anton333/origami-part-8-the-model-of-spider\",\"https://steemit.com/art/@anton333/origami-part-9-the-model-of-tooth\",\"https://steemit.com/art/@anton333/origami-part-10-the-model-of-flower\"]}", "last_payout": "1970-01-01T00:00:00", "last_update": "2016-09-15T19:46:30", @@ -128,7 +128,7 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-29T19:46:30", + "max_cashout_time": "1969-12-31T23:59:59", "net_rshares": 3377256926, "net_votes": 1, "parent_author": "", @@ -144,11 +144,11 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": "15561709573411957", + "total_vote_weight": 15561709573411957, "vote_rshares": 3377256926 }, { - "abs_rshares": "4649989991534", + "abs_rshares": 4649989991534, "active": "2016-09-15T19:44:18", "allow_curation_rewards": true, "allow_replies": true, @@ -157,10 +157,10 @@ "author_rewards": 0, "beneficiaries": [], "body": "\n

Mountly recap of blockchain crowdsales

\n


\n

CLOSED CROWDSALES

\n

BlockPay 

\n

Aimed at deeper integration with POS terminals and payments between counterparties.
\nA preliminary Initial Coin Offering finished on 4 September, where BlockPay sold 5% of the 100-million stock of BLOCKPAY tokens released on the BitShares blockchain. Future owners will receive dividends from transaction fees paid to BlockPay.
\nThe pre-ICO was done in 3 stages: 

\n
    \n
  • 1st \u2014 exchange of OPENPOS for BLOCKPAY at the rate of 1.2 to 1 (fund of 600,000 tokens) 
  • \n
  • 2nd \u2014 sale of BLOCKPAY at the price of 0.000288 BTC (fund of 1.4 mln tokens) 
  • \n
  • 3rd \u2014 sale of BLOCKPAY at the price of 0.000360 BTC (fund of 3 mln tokens) 
  • \n
\n

The distribution of tokens is as follows: 

\n
    \n
  • 1.5% \u2014 marketing for pre-ICO
  • \n
  • 5% \u2014 pre-ICO
  • \n
  • 0.9% \u2014 early adopters
  • \n
  • 1.8% \u2014 advisors and partners
  • \n
  • 3.6% \u2014 marketing
  • \n
  • 7.2% \u2014 developers reward
  • \n
  • 80% \u2014 upcoming ICO in 2017
  • \n
\n

The platform development plan:

\n
    \n
  • The release of BlockPay \"S\" app for Android and payment terminals Odoo
  • \n
  • BlockPay integration with leading payment terminals
  • \n
  • API Development
  • \n
  • The addition of a large number of fiat gateway exchanges and Escrow Services
  • \n
  • The addition of anonymous transactions function
  • \n
  • The development and release of the ECHO messenger for Android and iOS
  • \n
  • Development of the first version of the BlockPay \"S\" app for iOS
  • \n
\n

The project looks interesting, given the fact that they claim an integration with the ERP and CRM systemOdoo used by 60 thousand companies. The only disturbing thing is the absence of an open source software, and this spoils the whole picture. Transaction payments fee and, consequently, planned cash flow for investors are not sufficiently explained either. It should be kept in mind that this project is centralised, i.e. it belongs to the class of projects that demand trust in the founders and, correspondingly, require a thorough audit of operating activity.
\nCrowdsale summary:

\n
    \n
  • Dates: 20 August 2016 \u2014 4 September 2016
  • \n
  • Raised: ~ $657,000 (1096 BTC)
  • \n
  • Tokens sold: 3.92 mln
  • \n
  • Total number of tokens: 100 mln\u0414\u0430\u0442\u044b \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f: 20 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u2014 4 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f 2016 \u0433\u043e\u0434\u0430
  • \n
\n

For detailed information on the crowdsale, see: https://blockpay.ch/newsroom/investor-relations/blockpay-reserves/
\nFor useful links and more information, go to https://cyber.fund/system/BlockPay 

\n

AntShares
\n

\n

The project is interesting primarily due to the fact that it will be implemented using the Hyperledger platform. There are no other features that distinguish it from a number of similar blockchain projects, except that it is aimed specifically at the Chinese audience. 

\n

Crowdsale summary: 

\n
    \n
  • Dates: 8 August 2016 \u2014 7 September 2016
  • \n
  • Raised: ~ $ 3.4 mln (5582 ~ BTC)
  • \n
  • Tokens sold: 20 mln
  • \n
  • Total number of tokens: 100 mln
  • \n
\n

For detailed information on the crowdsale, see: www.antshares.org/ico
\nFor useful links and more information, go to https://cyber.fund/system/AntShares

\n

Elastic project
\n

\n

The crowdsale is finished. The full description of the history of the ICO and the risks associated with investing in this asset may be found in the previous issue of Blockchain Boom. 

\n

Crowdsale summary:

\n
    \n
  • Dates: 29 February 2016 \u2014 19 August 2016
  • \n
  • Raised: ~ $416,000 (~ 710 BTC), the exact amount is not available, because in course of funding escrow addresses changed several times and the movement of funds between them was extremely nontransparent.
  • \n
  • Tokens sold: 20 mln
  • \n
  • Total number of tokens: 5 mln XEL
  • \n
\n

The crowdsale took place here: http://www.elastic.pro/donations
\nFor useful links and more information, go to https://cyber.fund/system/Elastic 

\n

CURRENT CROWDSALES

\n

Iconomi
\n

\n

The aim of the project is the creation of management platform for crypto investment funds and the launch of two associated investment funds.
\n

\n

The subject of the crowdsale is ICN tokens representing 100% of Iconomy Open Fund Management Platform (OFM). The total number of ICN tokens to be sold is 85 million. 100 million of ICN will be released on the Ethereum platform within 10 days after the end of the crowdsale. Tokens will be distributed among investors proportionally to their contributions taking into account bonuses for early participation (+ 15% in the first week, + 10% in the second week, + 5% in the third week).
\nPrecise information on the distribution of ICN tokens is missing on the official website. According to the information in the related Bitcointalk thread, the tokens will be distributed as follows: 

\n
    \n
  • 85% - to be sold in the crowdsale
  • \n
  • 8% - founders reward
  • \n
  • 3% - reserve for the future team
  • \n
  • 2% - advisers reward
  • \n
  • 2% - marketing and bounty
  • \n
\n

Money raised from the crowdsale will be used as follows: 

\n
    \n
  • 62% - development
  • \n
  • 25% - operations
  • \n
  • 9% - legal expenses
  • \n
  • 4% - marketing
  • \n
\n

ICN owners will receive weekly dividends in ETH from all sources of Iconomi income, such as: 

\n
    \n
  • management fees
  • \n
  • rewards for fund management efficiency
  • \n
  • fees received from the funds registered with OFM
  • \n
\n

ICN holders will be able to vote on a number of matters related to the development of OFM, including choosing of the \"platform operator\" (currently, Cashila OOD s.r.o.) 

\n

The development plan: 

\n
    \n
  • 4Q 2016 \u2013 the launch of the open investment fund ICONOMI.INDEX, which will follow the likely development of the cryptocurrency market and will be freely traded on the market;
  • \n
  • 4Q 2016 \u2013 the launch of the closed investment fund ICONOMI.PERFORMANCE, which will focus on riskier investments in projects at an early stage of development
  • \n
  • 2017 \u2013 the launch of the platform for management of investment funds (OFM), the transfer of ICONOMI.INDEX and ICONOMI.PERFORMANCE funds to the platform.
  • \n
\n

Blind spots: 

\n
    \n
  • The currency is not specified for evaluation of the raised funds for further distribution of ICN tokens among investors.
  • \n
  • Will a part of the funds received during the crowdsale be allocated to ICONOMI.INDEX and ICONOMI.PERFORMANCE and, if so, will ICN holders receive relevant shares in these funds?
  • \n
  • There is no information as to the amount and frequency of fees charged from funds managed on OFM.
  • \n
  • The functions of the \"platform operator\" is described but very vaguely, as well as the process of further decision making involving ICN holders.
  • \n
\n

Red flags:

\n
    \n
  • There is no description of technical solutions for the project's tasks
  • \n
  • No program code is published
  • \n
\n

Crowdsale summary:

\n
    \n
  • Dates: 25 August 2016 \u2014 29 October 2016
  • \n
  • Total number of tokens: 100 mln ICN
  • \n
  • Tokens distribution: 85% will be sold in the crowdsale, 15% team reward and marketing
  • \n
  • Minimum crowdsale goal: 2 000 BTC (~ $1.5 mln)
  • \n
  • Raised so far: ~ $3.6 million (2,200 BTC + 71,000 ETH + 1.2 mln LSK + 63,000 USD + 940,000 EUR) from more than 1300 participants.
  • \n
\n

The crowdsale takes place here: https://ico.iconomi.net/
\nFor useful links and more information, go to https://cyber.fund/system/Iconomi 

\n


\nDeClouds
\n

\n

The main focus of the project is providing the opportunity for trading in precious metals.
\nThe network will be implemented as follows: 

\n
    \n
  • Proof-of-Stake consensus algorithm
  • \n
  • Decentralised Exchange
  • \n
  • Cloud-based blockchain
  • \n
\n

Apart from a patently weak 8-page paper and a number of publications on the blog, no detailed information about the project was found via official channels. Program code is also not disclosed. Nevertheless, developers promise to launch the network on 31 October 2016.
\nDuring the crowdsale, bonuses from 20% to 5% will be distributed, depending on the time of investment.
\n

\n

Crowdsale summary: 

\n
    \n
  • Dates: 6 August 2016 \u2014 October 6, 2016
  • \n
  • Total number of tokens: 100 mln
  • \n
  • Tokens distribution: 80% will be sold to the crowdsale participants, 10% is a team reward and 10% are marketing expenses
  • \n
  • Raised so far: ~ $179,000 (294 BTC)\u0414\u0430\u0442\u044b \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f: 6 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u2014 6 \u043e\u043a\u0442\u044f\u0431\u0440\u044f 2016 \u0433\u043e\u0434\u0430
  • \n
\n

The crowdsale takes place here: https://ico.declouds.com/
\nFor useful links and more information, go to https://cyber.fund/system/DeClouds

\n


\nHong
\n

\n

Investments are made by transferring ETH to the Etherium contract.
\n

\n

The Fund is formed for the period of 4 years, 3 of which are put for investing while the last year is for the exit. 80% of the money received as a result of fund liquidation will be distributed among Hongcoin holders, 20% among managers. Annual 2% fee to be charged for operational expenses of the managing organisation. The fee allocation will be defined by voting. The fund can be \"frozen\" at any time by the decision of 50% of shareholders.

\n

As a purpose for investment, 3 directions are selected: disruptive innovation, creativity and educational projects. Hong founders believe that the blockchain technology will most significantly impact these fields of human activity.
\nThe fund operates according to the following scheme: 

\n
    \n
  • Fund managers review projects and make a decision on whitelisting them;
  • \n
  • Hongcoin holders vote for the allocation of funds for investments within 15 days (the quorum of 20% is required for the approval of an investment);
  • \n
  • Fund managers prepare due-diligence and investment strategy for the project and provide any possible assistance in the development and promotion of the project;
  • \n
  • When the fund's term comes to an end, the managers carry out the exit process.
  • \n
\n

A company will be established for the management of raised funds, but it has not been determined yet in which jurisdiction. There is no information on the management parties available on the website nor through any the official channels.
\nThe crowdsale takes place in several stages, with 50 mln Hongcoin sold at each stage: 

\n
    \n
  • 50 mln \u0126 \u2013 1.00 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.05 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.10 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.15 ETH \u0437\u0430 100 \u0126
  • \n
  • 50 mln \u0126 \u2013 1.20 ETH \u0437\u0430 100 \u0126
  • \n
\n

As long as the crowdsale is going on, investors will have the opportunity to change their mind and withdraw invested funds. After the crowdsale is finished, the exit opportunity will be closed.
\nCrowdsale summary: 

\n
    \n
  • Dates: 29 August 2016 \u2014 29 October 2016 (may be extended until 28 November)
  • \n
  • Total number of tokens: to be determined by the end of the crowdsale
  • \n
  • Tokens distribution: 100% will be sold in the crowdsale
  • \n
  • Crowdsale goal: at least 1,575,000 ETH (~ $19 mln), the maximum is 2.7 mln ETH (~ $33 mln)
  • \n
  • Raised so far: ~ $6,600 (11 BTC).
  • \n
\n

The crowdsale takes place here: http://www.hongcoin.org/
\nFor useful links and more information, go to https://cyber.fund/system/Hong
\n

\n

Judging by the current investments dynamics, the project will not succeed.

\n


\nPLANNED CROWDSALES 

\n


\nSynereo
\n

\n

One year after a crowdsale that raised $126,000 aimed at the development and launch of a decentralised social network, the project team announced the second funding round and the launch of the network'salpha version. Two funding campaigns start at the same time in September: the sale of Synereo Ltd shares on BnkToTheFuture and of AMP tokens.
\nFollowing the first crowdfunding, the distribution of AMP was as follows:

\n
    \n
  • 2.72% (45.8 mln) \u2014 sold during the first crowdsale
  • \n
  • 11.9% (200 mln) \u2014 user rewards
  • \n
  • 8.92% (150 mln) \u2014 reserve for the content creators
  • \n
  • 11.9% (200 mln) \u2014 founders' reward
  • \n
  • 13.68% (230 mln) \u2014 bounty program
  • \n
  • 50.61% (850.4 mln) \u2014 next funding
  • \n
\n

Synereo revised their plans and now aim to develop a protocol similar to the SAFE Network, which will include the following components:

\n
    \n
  • Proof-of-Stake consensus algorithm
  • \n
  • Distributed network of nodes connected on the principle of \"shards\", where blockchain is divided into many small segments
  • \n
  • Distributed repository
  • \n
  • Smart contracts
  • \n
  • Social layer (a social network motivated according to the Attention Economy Model)
  • \n
  • The possibility of building distributed apps
  • \n
\n

The grant program for dApps developers Project 11 with a budget of 1.11 million AMP is already in operation.
\n

\n

The popular website CoinMarketCap misleadingly states current Synereo capitalisation at about $10-13 million, which is not true because it is only the cost of 62,580,000 AMP (3.72%) in circulation on the market. According to cyber \u2022 Fund's calculations, with the total of 1.68 billion tokens, Synereo's real capitalisation reaches $300 million.

\n

It has not been disclosed yet how many tokens will be put up for sale, but we can assume that the minimum amount claimed by Synereo is about $130-140 million in case the entire reserve is sold, which is 850.4 mln AMP. This is a very ambitious plan, taking into account current distribution and the market price of tokens. Besides, it should be kept in mind that after the launch of the network, additional 5% of AMP will be emitted every year. In my opinion, they should sell the whole reserve without fixed prices and with token distribution proportional to investments. It will provide normal distribution and a fair market capitalisation.

\n

Despite the presence of a strong team with an excellent technological vision, we consider the evaluation of $300 mln inadequate.

\n

Crowdsale summary:

\n
    \n
  • Dates: September 2016
  • \n
  • Total number of tokens: 1.68 billion AMP
  • \n
  • Number of tokens for sale: unknown, probably 850.4 mln
  • \n
  • Crowdsale goal: presumably ~ $130-140 million
  • \n
\n

The crowdsale takes place here: https://www.synereo.com/sale
\nFor useful links and more information, go to: https://cyber.fund/system/Synereo

\n


\n

Golem Project
\n

\n

The aim of the project is to adopt any customer personal computer for the work that is done today by servers, computing farms or supercomputers. 

\n

As the result, Golem Net will become a truly decentralised network where users' summarised machine power will provide any amount of hardware resources required. At the moment, there is no document explaining how exactly it would work. We hope that such paper will appear before the crowdsale. 

\n

The Golem App will connect to the network from a local device to share computing power and deliver tasks for calculations.
\nThe micropayment system based on Ethereum will provide the incentivising component distributing rewards and processing transactions. Transaction fee will be set at 5%. 

\n

Currently, the network can work only with public data because the apps require direct access to data.
\nDevelopers announced the crowdsale on their blog

\n

Golem Network Tokens (GNT) are the shares that give the right to receive part of the revenue generated by Golem Network. 

\n

Crowdsale start date: September 2016. 

\n

Token distribution: 

\n
    \n
  • Total number of tokens: unknown
  • \n
  • 82% \u2014 crowdsale
  • \n
  • 6% \u2014 founders reward
  • \n
  • 12% \u2014 developer company reward
  • \n
  • Estimated amount of funds: a minimum of 100,000 ETH, a maximum of 650,000 ETH
  • \n
\n

For detailed information on the project, see http://golemproject.net/slides/index.html#/14
\nFor useful links and more information, go to https://cyber.fund/system/Golem
\n
\n

\n

SingularDTV
\n

\n

The ultimate goal of the project is the creation a thriving industry of decentralised entertainment.

\n

What they promise: 

\n

\u25cf SINGULAR \u2013 a TV series.
\nThe S-DTV flagship product is an epic sci-fi adventure TV series about decentralisation, scaling and emergence of intelligent systems that lead the humanity to a technological singularity. 

\n

\u25cf Documentary division
\nThis division will create full-length and short-length documentary series and movies about the blockchain, decentralisation and Ethereum. 

\n

\u25cf S-DTV rights management platform
\nAn app that will use smart contracts for registration and management of digital rights, as well as of income and royalties on intellectual property, namely, movies and television. Deals in the film and TV industry are the most difficult to arrange as they often involve hundreds of individual participants. 

\n

\u25cf On-demand video content portal (TVOD)
\nTVOD changes the way people watch entertainment programmes. S-DTV is born to create the TVOD portal for original content distribution, as well as for selected and acquired content. In addition to developing an interface on IPFS, S-DTV will use third-party portals such as GooglePlay, AppleTV iTunes and Vimeo to build a larger audience in a short time.

\n

Minimum investment goal \u2013 $500,000.

\n

Desirable funding \u2013 $7,5 mln.

\n

According to S-DTV documentation, Swiss company MME has developed a new, innovative organisational structure specifically for S-DTV: the Centralised Organised Distributed Company (CODE). It is the Swiss company, therefore, that will manage the finances and reinvest the income, while tokens will be used for paying out the dividends.

\n

Token distribution: 

\n
    \n
  • 400 mln Singular DTV GMBH
  • \n
  • 100 mln core investors
  • \n
  • 500 mln crowdsale
  • \n
\n

Funds distribution in case if $7,5 mln is raised: 

\n
    \n
  • \"Singular\" season 1 (3 episodes of the mini-series): $3.25 mln
  • \n
  • Documentary division: $0.50 mln
  • \n
  • Development of the rights management platform: $2 mln
  • \n
  • TVOD portal development: $1 mln
  • \n
  • Marketing: $0.50 mln
  • \n
  • Administrative, legal expenses and unforeseen circumstances: $0.25 mln
  • \n
\n

Crowdfunding is planned for September and will likely take place at Devcon2.

\n

The Ethereum and Consensys founder Joseph Lubin is included into the team as CTO.

\n

Unfortunately, in this project tokens only serve for distribution of dividends, and the project is centralised because 40% of tokens belong to Singular DTV GMBH. Another disadvantage is the fact that of the four declared founders/directors, only Zach Lebeau will work full time on the project. He is likely to be engaged in the studio rather than in the platform development; there are also risks associated with SEC.

\n

The main question is the development of the TVOD platform and the rights management platform: there is no understanding as to what kind of team will be working on it, and no technical description at the moment. If both platforms can be really implemented, the project is promising for investment.=

\n

For detailed information about the project, see: https://singulardtv.com/
\nFor useful links and more information, go to: https://cyber.fund/system/SingularDTV
\n

\n

Decent
\n

\n

It is designed for creative people, writers, bloggers, journalists and their fans and followers. The platform enables users to publish any posts, images, video or music content with no restrictions.

\n

Consensus algorithm \u2013 Proof-of-Stake.

\n

Decent has three functional roles: 

\n
    \n
  • Authors: content producers, writers, music producers etc.
  • \n
  • Consumers: readers, listeners and viewers
  • \n
  • Publishers: miners
  • \n
\n

Token distribution \u2013 30% via mining and 70% is distributed during the crowdsale, some of them will go to pre-mine funds to be distributed in the following way: 

\n
    \n
  • 10% \u2014 DECENT Foundation
  • \n
  • 2% \u2014 the Investment fund
  • \n
  • 1,000,000 DCT \u2014 campaign bounty
  • \n
  • 3,000,000 DCT \u2014 pre-launch marketing programme
  • \n
\n

On the crowdsale page, next to the conditions, we see a message that the project is supported by Google, though it does not correspond to the project's primary activity. Moreover, the current yellow paper ignores many issues such as, for example, how miners would store the content. Decent enters the content distribution market where such projects as Steemit, Synereo and LBRY already operate. 

\n

The crowdsale takes place here: http://sale.decent.ch/
\nFor useful links and more information, go to: https://cyber.fund/system/Decent
\n

\n

FirstBlood
\n

\n

This platform will allow players to bet without intermediaries. The payoff distribution will be also managed via smart contracts.

\n

The eSports betting market holds more than $130 million per year with 30% annual growth rate.

\n

3 monetisation channels:

\n
    \n
  • Matchmaking
  • \n
  • Revenue from the tournament organisation
  • \n
  • Advertising
  • \n
\n

Token will allow: 

\n
    \n
  • Match playing
  • \n
  • Match refereeing and voting for the referee
  • \n
  • Placing tournaments
  • \n
  • Requesting an award from referrals
  • \n
\n

Tokens distribution: 

\n
    \n
  • Crowdsale, 4 weeks, in the first hour 170 tokens for 1 ETH
  • \n
  • 10% to the project founders; these funds will be blocked for 12 months
  • \n
  • 5% will be placed in the platform development fund for the promotion and tournament awards
  • \n
  • 2.5 mln - bounty fund, to be distributed during the crowdsale for advertising and debugging
  • \n
\n

Crowdsale start date: 26 September 2016.

\n

In my opinion, it is an interesting project. The only reservation is that the market is not very vast, albeit actively developing. Besides, the motivation for developers and other market players is not very well thought through. In this regard, central players, who can also use smart contracts and predictions market to confirm the events results, may have an advantage. However, this project may indeed become the market leader on the condition of good community building and active incentivising of referees and the jury. 

\n

For detailed information about the project, see: https://firstblood.io/
\nFor useful links and more information, go to: https://cyber.fund/system/FirstBlood
\n

\n


\nMassNetwork
\n

\n

The three main entities: 

\n
    \n
  • Advertisers
  • \n
  • Websites
  • \n
  • Internet users
  • \n
\n

The basic principle is to follow the industry's trend to monetise customer attention and create a convenient and fair trading platform for all parties involved, including Internet users. Mass allows users to receive instant rewards for web surfing through the built-in p2p infrastructure based on the blockchain. As a result, advertisers will pay users a fair price for their attention and data without intermediaries.
\n

\n

An increasing number of customers are using ad-blocking software. Mass offers a browser extension and a mobile app that can block ads as well as protect personal data. Yet, their primary goal is not blocking but rather improving users' experience with advertising and rewarding them with cryptocurrency to establish a consumer-advertiser relationship and, therefore, reduce the number of ad-block users. Mass will also have a cryptocurrency wallet and blockchain-based payment system.

\n

Crowdsale dates: 6 September \u2014 1 December 2016

\n

Token distribution: 

\n
    \n
  • 70% to the crowdsale participants
  • \n
  • 30% to Mass team members
  • \n
\n

Mass plans to build its own full-blown infrastructure for advertising industry with an internal token. A similar solution has been already introduced to the market \u2013 the Brave browser. It blocks default ads and replaces it with incentivising ad materials. The bitcoins received from advertisers are distributed among users, the platform and the endorsing website. In my opinion, if Mass used smart contracts or a proprietary blockchain enabling further token emission to incentivise users and websites, they could compete with bitcoin. However, Mass token works on the bitcoin blockchain, which on the one hand makes it very secure, but on the other, has no advantage over bitcoin per se. In favour of bitcoin are accessibility, recognition, and a more stable price. 

\n

Crowdsale takes place here: https://ico.mass.network/#/?aid=ep6oxa
\nFor useful links and more information, go to: https://cyber.fund/system/MassNetwork

\n

---

\n

All data and calculations are quoted as of 6 September 2016 with bitcoin price at $609. For closed crowdsales evaluation in USD is given using the average token price at the date of closure.

\n

---

\n

Big thanks to: 

\n\n

---

\n

Original was posted in Blockchain Boom

\n


\n", - "cashout_time": "2016-09-16T19:34:50", + "cashout_time": "2016-09-22T19:30:36", "category": "cyberfund", "children": 0, - "children_abs_rshares": "4649989991534", + "children_abs_rshares": 0, "created": "2016-09-15T19:30:36", "curator_payout_value": { "amount": "0", @@ -168,7 +168,7 @@ "precision": 3 }, "depth": 0, - "id": 961089, + "id": 1257758, "json_metadata": "{\"tags\":[\"cyberfund\",\"blockchain\",\"crowdsales\"],\"links\":[\"https://cyber.fund/system/BlockPay\",\"https://cyber.fund/system/BitShares\",\"https://www.odoo.com/\",\"https://blockpay.ch/newsroom/investor-relations/blockpay-reserves/\",\"https://cyber.fund/system/AntShares\",\"http://www.antshares.org/ico\",\"http://www.elastic.pro/\",\"http://www.elastic.pro/donations\",\"https://cyber.fund/system/Elastic\",\"https://cyber.fund/system/Iconomi\",\"https://bitcointalk.org/index.php?topic=1587736.0\",\"https://ico.iconomi.net/\",\"https://cyber.fund/system/DeClouds\",\"https://drive.google.com/open?id=0B8VJa9S_WxSSSHJhN0o0QkVPN1E\",\"https://medium.com/@decloudscom/latest\",\"https://ico.declouds.com/\",\"https://cyber.fund/system/Hong\",\"http://etherscan.io/address/0x9Fa8fA61A10Ff892E4EBCeB7f4e0FC684C2ce0a9\",\"http://www.hongcoin.org/\",\"https://cyber.fund/system/Synereo\",\"https://blog.synereo.com/2015/05/10/amp-distribution-complete-2/\",\"https://blog.synereo.com/2016/08/29/synereos-second-fundraising-campaign-coming/\",\"https://www.synereo.com/alpha/\",\"https://bnktothefuture.com/\",\"https://cyber.fund/system/MaidSafeCoin\",\"https://www.synereo.com/learn-more/\",\"https://github.com/synereo/synereo.github.io/raw/master/whitepapers/synereo.pdf\",\"https://www.synereo.com/developers/\",\"http://coinmarketcap.com/assets/synereo/\",\"http://omnichest.info/lookupsp.aspx?sp=39\",\"https://www.synereo.com/sale\",\"https://cyber.fund/system/Golem\",\"http://golemproject.net/doc/GolemNanopayments.pdf\",\"https://blog.golemproject.net/golem-network-token-gnt-sale-220c2a732f9#.fdn8hljmq\",\"http://golemproject.net/slides/index.html#/14\",\"https://cyber.fund/system/SingularDTV\",\"https://singulardtv.com/\",\"https://cyber.fund/system/Decent\",\"http://sale.decent.ch/\",\"https://cyber.fund/system/FirstBlood\",\"https://firstblood.io/\",\"https://ico.mass.network/#/\",\"https://ico.mass.network/#/?aid=ep6oxa\",\"https://cyber.fund/system/MassNetwork\",\"https://steemit.com/@creator\",\"https://steemit.com/@coinfox\",\"http://blockchainboom.coinfox.info/\"]}", "last_payout": "1970-01-01T00:00:00", "last_update": "2016-09-15T19:44:18", @@ -177,8 +177,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-29T19:30:36", - "net_rshares": "4649989991534", + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 4649989991534, "net_votes": 10, "parent_author": "", "parent_permlink": "cyberfund", @@ -193,8 +193,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": "9916447926886758335", - "vote_rshares": "4649989991534" + "total_vote_weight": 9916447926886758335, + "vote_rshares": 4649989991534 }, { "abs_rshares": 64358062, @@ -206,10 +206,10 @@ "author_rewards": 0, "beneficiaries": [], "body": "I think I just hacked Monero lol it's a joke but the security too thou \n\nLook at this! \n\n\nhttps://www.facebook.com/agartha.white.3/posts/179267779175393", - "cashout_time": "2016-09-16T19:44:00", + "cashout_time": "2016-09-22T19:44:00", "category": "steemit", "children": 0, - "children_abs_rshares": 64358062, + "children_abs_rshares": 0, "created": "2016-09-15T19:44:00", "curator_payout_value": { "amount": "0", @@ -217,7 +217,7 @@ "precision": 3 }, "depth": 0, - "id": 961211, + "id": 1257912, "json_metadata": "{\"tags\":[\"steemit\",\"hack\",\"monero\",\"bitcoin\",\"lol\"],\"links\":[\"https://www.facebook.com/agartha.white.3/posts/179267779175393\"]}", "last_payout": "1970-01-01T00:00:00", "last_update": "2016-09-15T19:44:00", @@ -226,7 +226,7 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-29T19:44:00", + "max_cashout_time": "1969-12-31T23:59:59", "net_rshares": 64358062, "net_votes": 1, "parent_author": "", @@ -242,7 +242,7 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": "296794399420393", + "total_vote_weight": 296794399420393, "vote_rshares": 64358062 }, { @@ -255,10 +255,10 @@ "author_rewards": 0, "beneficiaries": [], "body": "\n

  In the morning, at 5 am when the moon completes his round, the alarm rings, my deepest sleep I wake up painfully. K\u00e9ops my cat starts singing tour and stops only when he filled his mess tin. Sweety then, the cat of my son jumps on the furniture in the kitchen and also claimed his bowl. Kashmir him not to come after me, until I make him hugs.

\n

\n

\n

\n

 A small cup of coffee and I'm up for the day. After my shower, I have to feed the fish pond and two hens, they are waiting for me impatiently for me to release them from their cages.

\n

\n


\n

\n


\n

 6:15, I start my bag on her arm, my water bottle and my biscuit for lunch. On the road I am alone, few vehicles I meet. Great to run your car on a deserted road. In the winter when it snowed, I am the first to make tracks in the whiteness of the snow grows like cotton wool, sometimes, crazy beyond me and skids, it is an adrenaline rush. In summer the sun rises gives the sky a color of red sweetness, yellow, orange. In autumn, the trees begin to change color, it is a season because I love the beauty of trees is unique. 

\n

\n


\n

Here I come down the street or is my workplace, hospital, regional hospital, the CHR. Vehicles coming after one another because we start at 7am. The staff is found, speak, tells their evening then everyone goes to the same place: the time clock, control object of our hours worked.

\n

\n


\n

 In the ladies locker room, it gets held: white jacket with blue and green patterns representing the logo of the institution, blue pants with various pockets which we do not serve! 

\n

\n


\n

We arrive in our service, mine is the neurological rehabilitation service: we give up (or so) of people who have a stroke, an accident with neurological trauma, people who have multiple sclerosis or Guillain barred and other chronic diseases whose name is almost unknown. 

\n

\n


\n

\n


\n

\n


\n

We start our day with a report on each patient last night, we have 20 in service. After beginning the nursing: we make the toilet of the patient who is totally dependent. We get up in the chair. For others, we must educate, continue the actions he has learned with the therapist in the individual care, the patient should regain maximum independence so they can go home and take care only . It's a job that can last from 3 months to 6 months beyond, we can not do anything for them. 

\n

\n


\n

Headline in this service is: you come to bed but you leave again walking. 

\n


\n

Sometimes, we fail either because the patient does not want a return to autonomy, or because the patient is too ill. We give the same chance to everyone, rich, poor, alcoholic, drug addict, young or old. 

\n


\n

The management of a patient goes from shaving the beard of a man to the presentation on the toilet, the room arrangement the carefully tended beds. 

\n


\n

Lunch arrived around 8:30 am, few patient is in the dining hall for breakfast, other unfinished eat in bed Logistical assistance serves meals that are different if the patient is diabetic, diet, dieters, old, or in solid supply resumption. You should know that when the patient has had a stroke, a stroke, swallowing is absent, which means that if the patient eats a sandwich, but he swallows the bread goes in the bronchial tubes and not in the stomach, giving a false swallowing, bronchi become infected and it's a disaster. So this patient who made false swallowing should eat while cream consistency and drink thickened liquid. Which is not very good but I admit it must go through these stages in order to re-eat a day normally. 

\n


\n

Physiotherapists arrive at 9am and leave a 17h, occupational therapists also. There is also a neuropsychologist, a speech therapist and all do work that allows the patient to regain maximum independence, which means that the patient all day is busy. Visitors can come between 14:30 and 19:30. 

\n


\n

After lunch, we continue our work, when all is well, we finish around 10:30 or 11am but sometimes it is noon we are still in the rooms. 

\n


\n

In terms of handling, the entry of the patient, it is usually in bed or in a wheelchair with a right hemiplegia or left, some have forgotten that they had half a disabled body, so it must withstand and no wear and show him how to do with one leg to go from wheelchair to bed and vice versa. Others are completely invalid, they know not move neither arms nor legs, and for those, or we wear them either we lift them with a forklift. 

\n


\n

During dinner, we feed the disabled and we encode our care in the computer.

\n


\n

 Around 13h, we are a few naps after going on the toilet. Sometimes we have a problem in the pants, oops! When everyone is changed to bed, we have a service change ratio and the time, the hour of the end of our service is lagging. At 14h is the start of the morning shift. For my part, I take a good shower and I take the way home or waiting for my cats and my dog makes me a big party. 

\n


\n

We must not believe that the nursing profession is simple, each service is different and you can not compare the care of each other. 

\n


\n

I hope I have not bothered you with this long text, I wish you a good day to you all.     

\n", - "cashout_time": "2016-09-16T19:43:54", + "cashout_time": "2016-09-22T19:43:54", "category": "story", "children": 0, - "children_abs_rshares": 1202120459, + "children_abs_rshares": 0, "created": "2016-09-15T19:43:54", "curator_payout_value": { "amount": "0", @@ -266,7 +266,7 @@ "precision": 3 }, "depth": 0, - "id": 961208, + "id": 1257908, "json_metadata": "{\"tags\":[\"story\",\"health\"],\"image\":[\"https://www.steemimg.com/images/2016/09/15/DSCN0477faad0.jpg\",\"https://www.steemimg.com/images/2016/09/15/keops0029612b.jpg\",\"https://www.steemimg.com/images/2016/09/15/Au-sommet81f7b.jpg\",\"https://www.steemimg.com/images/2016/09/15/16e3c4.jpg\",\"https://www.steemimg.com/images/2016/09/15/Photo0224b24a.jpg\",\"https://www.steemimg.com/images/2016/09/15/d85917d4a45b3d581b5f40d1d7a7504a3bb1e.jpg\",\"https://www.steemimg.com/images/2016/09/15/chr841bd.jpg\",\"https://www.steemimg.com/images/2016/09/15/DSCN1513-Copiee7a4d.jpg\",\"https://www.steemimg.com/images/2016/09/15/Capture2bb0b8.jpg\",\"https://www.steemimg.com/images/2016/09/15/370086-1f7d83.jpg\",\"https://www.steemimg.com/images/2016/09/15/Capturec0ccc.jpg\",\"https://www.steemimg.com/images/2016/09/15/souleve-malade-foldyadb08.jpg\"]}", "last_payout": "1970-01-01T00:00:00", "last_update": "2016-09-15T19:43:54", @@ -275,7 +275,7 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-29T19:43:54", + "max_cashout_time": "1969-12-31T23:59:59", "net_rshares": 1202120459, "net_votes": 1, "parent_author": "", @@ -291,7 +291,7 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": "5542136534307198", + "total_vote_weight": 5542136534307198, "vote_rshares": 1202120459 }, { @@ -304,10 +304,10 @@ "author_rewards": 0, "beneficiaries": [], "body": "\n

\n

Nature

\n

I haven't stopped and taken a picture of the beauty around me in a long time. It's funny how we can get so caught up in work and the business of a crazy life and miss the simply beauty along the way. Sometime you've just got to stop and smell the roses; and while you're there, take a picture!

\n

\n

These aren't roses, I know: they're wild flowers. They don't get the nurture and care that roses do, and yet they are provided for and they bloom into beautiful blossoms in their own time. They have a harder life than others, and that's how we humans are as well. Some of us were well taken care of growing up and were treated like roses, while others were left in the field to grow up alone and without the love and care we should have had. But we are all beautiful in our own ways and if we survive long enough, we will blossom into something spectacular.

\n

\n

Colorado mountain rivers

\n

When the snow on the tops of the mountains melt, it feed the rushing rivers that carve their way down the mountainside. The climbing is excellent, the whether and the views are truly gorgeous, but something about the rivers rushing through the mountains draws you in. There is a memorization about the brave rivers unafraid of the mountains and simply rushing on by recklessly.

\n

\n

Mississippi at sunset

\n

Sometimes the world just slows down and magic happens. This was one of those times. On the night before my sister's wedding in Tupelo, Mississippi the sky exploded in color. What a calm reassurance before a monumental event: the approval stamp of God upon the sanction of their marriage.

\n

\n

Hundreds of years old Indian hieroglyphs in Arizona

\n

This was an incredible hike in the Arizona mountain ranges to discover a place where the Apache Indians, or perhaps some other tribe had lived hundreds of years ago!

\n

\n

Uganda, Africa at twilight, from a moving bus

\n

Africa is always an adventure, but in 2015 we took a safari on the northern rim and caught this shot on the way back to the lodge. I love how the beauty of the world is unique in its diversity from place to place, even across the Atlantic.

\n

\n

This is one of my favorite shots. I don't remember where I took it or when, but the colors, the bliss, the peacefulness of this field of flowers was stunning. I'm glad I was able to capture an image of its beauty to remember it by. And to think, all of this beauty was made by God in a second! His power to create a world is amazing and perfect in every way. We get to see His marvelous creation every day! 

\n

Follow me @ejaredallen for more pictures and great content!

\n", - "cashout_time": "2016-09-16T19:42:24", + "cashout_time": "2016-09-22T19:42:24", "category": "photography", "children": 0, - "children_abs_rshares": 54846770, + "children_abs_rshares": 0, "created": "2016-09-15T19:42:24", "curator_payout_value": { "amount": "0", @@ -315,7 +315,7 @@ "precision": 3 }, "depth": 0, - "id": 961197, + "id": 1257893, "json_metadata": "{\"tags\":[\"photography\",\"pictures\",\"art\",\"steemit\",\"travel\"],\"image\":[\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-986x1024-289x300.jpeg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-3-1024x768-300x225.jpeg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6440-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6031-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_5829-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/2015-07-13-06-37-59-1024x1024-300x300.jpg\",\"http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_7281-1024x1024-300x300.jpg\"],\"links\":[\"https://steemit.com/@ejaredallen\"]}", "last_payout": "1970-01-01T00:00:00", "last_update": "2016-09-15T19:43:33", @@ -324,7 +324,7 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-29T19:42:24", + "max_cashout_time": "1969-12-31T23:59:59", "net_rshares": 54846770, "net_votes": 1, "parent_author": "", @@ -340,11 +340,11 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": "252932614230673", + "total_vote_weight": 252932614230673, "vote_rshares": 54846770 }, { - "abs_rshares": "5891496080", + "abs_rshares": 5891496080, "active": "2016-09-15T19:42:57", "allow_curation_rewards": true, "allow_replies": true, @@ -353,10 +353,10 @@ "author_rewards": 0, "beneficiaries": [], "body": "\n

This is part 2 of my Memoir.  Missed Part 1? Click here.
\nDon't know what's going on? Start from the beginning here.

\n

If you like what you're reading, follow me @cwbrooch for more craziness. if you love what you're reading recommend me to other peeps :) feedback is also very appreciated.

\n

\n

Russian Roulette - A Memoir of my Two Years in Moscow - Part 2 - Under the Table Tactics

\n

In this part of my memoir I am going to attempt to describe the dark side of Moscow. All stories depicted here either happened directly to people I knew, or were described to me as  a it's-russia-get-used-to-it anecdote.
\nYes, I will be talking about corruption and paying people under the table for things but bear in mind that even though it seems like a common practice definitely not all people do that and not all people experience the phenomenon.

\n

A ROUTINE POLICE CHECK 

\n

It is said that it is extremely wise to keep 2k-5k Rubles (about 28-68 Euro, 30-77 Dollars, 23-58 Pounds) in your registration papers at all times. They tend to disappear when you get your documents back from the officer... If one does not have such loose change, the guy tends to make one's life difficult. \"You were speeding\", \"You didn't stop at the STOP sign\", \"You're light is out\" etc. Driving is another interesting phenomenon in Moscow. You might think that since the metro is so packed, the streets will be empty. On the contrary, but I will not get into that right now as that makes a completely different post...  However, what I will tell you is  how one of my students passed her driving exam, which leads us to...

\n

PAYING TO PASS AN EXAM

\n

After her first failed attempt, my student looked at her instructor/examiner and asked: \"Could you please tell me what I did wrong, so I can work on it in the future?\" He stared back at her surprised and announced: \"Well, you didn't pay me extra, what do you expect?!\" At that point even I was shocked - \"So people openly tell you they want money?!\" \"Get used to it Kasia, It's Russia....\"
\nNeedless to say, she was forced to pay the second time around and surprise, surprise, she passed....
\n
\nI taught English in a company. I came one week, and saw that everyone was kind of in a rush and slightly agitated. I asked what the problem was and they said they were waiting for an audit. I remember wishing them good luck... One lady looked at me and smiled \"We paid the guys to look the other way, it will be fine!\" I didn't even bother to comment as I had aleady known there was no point...

\n

GETTING INTO A PRIVATE EVENT

\n

It was the three of us - my BF, his friend and I. We wanted to do some clubbing and the friend decided we should go to a very trendy bar in the heart of Moscow. He had a loyalty card there and was well known among the bouncers. We didn't really look the part, but a hefty fee paid for each of us (by the friend) was enough to let us in...

\n

That was a minor party. Let's talk about the big stuff, involving bigger money!
\nIf you know someone, who knows someone, who knows someone you might be able to (legally) attend the dress rehearsal of the famous Victory Parade in May (the 9th to be exact). It costs about 10k (137 Euro, 116 Pounds , 153 Dollars) Watch fragments of the video below to see the magnitude of what I am talking about. 

\n

The whole thing is long, play with it a little bit. The good stuff starts at about 40 minutes. Source

\n

https://www.youtube.com/watch?v=5EI3FYynz-Q

\n

To enter the actual parade however, you need to be a prominent member of the society (e.g. ex-military) or someone famous or filthy rich :)

\n

The event itself is quite impressive and for soldiers taking part in the march it is an honor among honors.  
\nWe had the privilege of living 15 minutes on foot from the Red Square so we saw all the preparations and marches right outside our windows (till 11pm at night...)

\n

\n

PS. I am aware that my portrayal of Moscow might seem bleak and depressing. Believe me, it was not. I;m simply trying to describe the juicy bits, the interesting stuff :) My next post will be more optimistic as I will be talking about sports, parks an recreations  :)

\n

 ____________________________________________________________________________

\n

Thank you for reading Part 2 of my memoir.

\n

Want to find out more about living in Moscow? Follow me @cwbrooch :)

\n

My other work on Streemit:

\n

1) Russian Roulette - Preamble 

\n

2) Russian Roulette - Part 1 - Surviving Underground

\n

3) Why shouldn't you use google translate for learning English and which dictionaries are far better

\n

4)  How to learn vocabulary effectively in any language!

\n

5) About me: introduction  
\n 

\n


\n", - "cashout_time": "2016-09-16T19:44:28", + "cashout_time": "2016-09-22T19:41:09", "category": "story", "children": 0, - "children_abs_rshares": "5891496080", + "children_abs_rshares": 0, "created": "2016-09-15T19:41:09", "curator_payout_value": { "amount": "0", @@ -364,7 +364,7 @@ "precision": 3 }, "depth": 0, - "id": 961189, + "id": 1257881, "json_metadata": "{\"tags\":[\"story\",\"writing\",\"travel\",\"life\",\"russia\"],\"users\":[\"cwbrooch\"],\"image\":[\"https://s14.postimg.org/bpiqdmgpt/Untitled.jpg\",\"https://img.youtube.com/vi/5EI3FYynz-Q/0.jpg\",\"https://lh3.googleusercontent.com/3OMfOqwX2pQ5BYeql8V1tg4J6VcMzG75pLD-nhsfHw0BYFLEQOQSeVl-sVdEkDwS6VfPco-FukpjwQONwimoOhzzT4GIPDt_VGbJfNDYaltTvEcyOFK5do7PZD1-tjDW0nxKYhUQdxG4yoxX6ZS590fMaveLKSI2Voz579yTME9U8D7UgN7R3ufBrAcq0KV8kA9VqMVxryabh2X_jBiMnP3Uwjj_hrWn3ARzHggZMRuo3G3ORSKDpoqcBA25bRDeWHe7nVT4X58NolQ4yY8HVjzyUr4zDneI8dy_eHnSf0F0FBZ8kn4NQQ3ueVR84tu-Ot64CZb9a1SetmKmupvAxBbuS8z3jBsvCECD8A5jz9qevTOkgHEbV0z2hVteH64gCLg3OI9mRVqw2GWAYwNSUlGGtwCxmwXq3p_j_igwncarIhIF2HX_bV0ACrucmewR6IiIdVfaKKAO9g2ycLbJRr_SBwE9TxBND9ar0R267Grzq5SHywG71h1nxZnXInW-HQ2l1cou8zqdiEUanqkeSbgIunZVNBcEnYYinmF-WZd5y0_Luc8rdDYy0GlKAtAJ4z0-woKDs6d_XKWhiWsYOAW3rWwCe3cJylK_6H7wNO2PlBKL=w1163-h775-no\"],\"links\":[\"https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-in-moscow-part-1-surviving-underground\",\"https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-of-living-in-moscow-preamble\",\"https://www.youtube.com/channel/UC4qBu3EvraPWezHbaC7npIQ\",\"https://www.youtube.com/watch?v=5EI3FYynz-Q\",\"https://steemit.com/@cwbrooch\",\"https://steemit.com/languages/@cwbrooch/why-shouldn-t-you-use-google-translate-for-learning-english-and-which-dictionaries-are-faaaar-better\",\"https://steemit.com/languages/@cwbrooch/how-to-learn-vocabulary-effectively-in-any-language\",\"https://steemit.com/introduceyourself/@cwbrooch/teacher-story-teller-cat-lover-about-me\"]}", "last_payout": "1970-01-01T00:00:00", "last_update": "2016-09-15T19:42:57", @@ -373,8 +373,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-29T19:41:09", - "net_rshares": "5891496080", + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 5891496080, "net_votes": 2, "parent_author": "", "parent_permlink": "story", @@ -389,8 +389,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": "27129771364344680", - "vote_rshares": "5891496080" + "total_vote_weight": 27129771364344680, + "vote_rshares": 5891496080 }, { "abs_rshares": 0, @@ -402,7 +402,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", - "cashout_time": "2016-09-16T07:40:21", + "cashout_time": "2016-09-22T19:40:21", "category": "freedom", "children": 0, "children_abs_rshares": 0, @@ -413,7 +413,7 @@ "precision": 3 }, "depth": 0, - "id": 961180, + "id": 1257871, "json_metadata": "{\"tags\":[\"freedom\",\"anarchy\",\"steem\",\"life\",\"\"],\"image\":[\"https://img.youtube.com/vi/y02aBfNT8n4/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=y02aBfNT8n4\"]}", "last_payout": "1970-01-01T00:00:00", "last_update": "2016-09-15T19:42:36", @@ -442,7 +442,7 @@ "vote_rshares": 0 }, { - "abs_rshares": "25365523997", + "abs_rshares": 25365523997, "active": "2016-09-15T19:43:27", "allow_curation_rewards": true, "allow_replies": true, @@ -451,10 +451,10 @@ "author_rewards": 0, "beneficiaries": [], "body": "\n


\nImage Source & External Article - http://lifehopeandtruth.com/prophecy/revelation/mark-of-the-beast/

\n

Just recently here in Roswell NM (where I live, yes) I was telling a shop owner about Steem and Steemit, and he made the comment that he thought it sounded like \"...one more step towards the Mark of The Beast\"...

\n
\"...And he causeth all, both small and great, rich and poor, free and bond, to receive a mark in their right hand, or in their foreheads: And that no man might buy or sell, save he that had the mark, or the name of the beast, or the number of his name. Here is wisdom. Let him that hath understanding count the number of the beast: for it is the number of a man; and his number is Six hundred threescore and six...\"
\n - Revelation Chapter 13 (
Full Chapter)
\n

Yes Virginia... I hate to break it to you, but digital currency IS indeed \"one more step towards the mark of the beast\" - and we all know it. 

\n

Let's just get that out of the way now. But fear not, this is NOT a paranoid religious post warning people about the eternal dangers of joining Steemit, nor of using digital currency in general however. This is just a hopefully rational religious post (inspired by a secular article) meant to stem paranoid fear (amongst Christians mainly) of utilizing Steemit specifically, and digital currency in general. Which I will get back to in just a second...

\n

But first... If to you, \"stemming this fear\" makes me \"part of the Satanic conspiracy\" then I can't help that, and I won't engage with or reply to you if that is your view (which you are entitled to hold, and even to express as a comment below). 

\n

I'd rather use my time to inform non-Christian people who may have clicked in here (for laughs perhaps?) that Yes, I believe that the mark of the beast is coming, and you DO need to aware of the dangers of accepting it!

\n


\nImage Source & External Article: http://www.evangelicaloutreach.org/markbeast.htm

\n

 (Hence the external articles links being detailed here for further reading - which I have not closely vetted btw, they just had top matches for images)...

\n

Anyways...

\n

As I told my friend Don (who DID join Steemit @roswellrockman ) \"So is your debit card!\"

\n

Putting Don and I's end-of-conversation succinctly, there are many aspects of our everyday lives that have brought and are bringing us \"one step closer\" to the mark of the beast - but they are not in themselves the mark, they are not evil, and (imho) they are not to be feared, or shunned. 

\n

(Altho I will note respectfully that The American Amish community feels differently - see the link below these next images.)

\n

There are indeed many examples from our now-everyday lives that could easily be said to be bringing us \"one step closer\" ... such as the \"Bar Codes\" on every product we purchase

\n


\n... especially if the same types of \"scanners\" that read them, were then pointed to a laser tattoo or RFID chip in your hand, to receive payment for these goods at the register. 

\n


\nAll 3 Images above & External Article: http://www.whatdoesitmean.com/index1392.htm

\n

\"Radio Frequency ID chips\" (see Wikipedia article) are already being used (some will say \"being tested\") to help pet owners keep track of their pets. Wal-Mart and other retailers also use them to track expensive items, to help prevent shoplifting. And especially \"hi-tech\" firms demanding secrecy and security clearances even use them on employees! 

\n

Could Big Brother and The Rothchild's and The Federal Reserve Banks and The U.N. (collectively, \"The New World Order\") one day very soon use all of this to both track you physically, and to observe or control your money supply? 

\n

Absolutely!

\n

It's no stretch at all to imagine combining RFID technology with UPC Bar Codes - and then connecting it all to your bank account via the Internet (or the Blockchain!) - to fulfill the Bible prophecy about the mark of the beast happening in the near future, or in our lifetimes.

\n

Folks I am no stranger to this belief. I first penned the words myself way back in 1997 (in my original webpage and book \"Come Sail Away : UFO Phenomenon & The Bible\"- << Amazon link to 2105 version) in the section I titled \"Genesis 6 to 666\"

\n

\"To understand how the world\u2019s entire economy could be tied into a mark on one\u2019s flesh would be a completely unimaginable miracle - a near impossibility - inconceivable to most Christians throughout the ages. This has left some events of the book of Revelation a little hard to piece together into a believable probability, much less an immediate future.
\n
\n\"In order to accomplish such an incredible thing, you\u2019d have to have some way to access a person\u2019s bank account from anywhere in the known world; all financial institutions would have to have some way of talking to each other through some sort of, of, machinated \"net,\" or a \"web,\" or something; you\u2019d have to come up with some sort of mark, or magnetic strip, or some \"barred code\" that some futuristic \"scanner\" could read; surgical or laser-tattoo technology capable of implanting it, and a \"personal secret code\" so that no one could ever rob you in this \"cashless society.\" Any-time machinery, for financial transactions, would have to be everywhere. Everyone would have to be assigned a separate number at birth. These \"scanner devices\" would have to be in every grocery, hardware, department and convenience store, and every product would have to be marked with this computerized bar-code\u2026
\n
\n\"Yup, you\u2019d need all that\u2026
\n
\n\"Get that in place and you\u2019re ready to go...\" 

\n


\n(Original 1997 cover, now out of print - 2015 version available on Amazon here)

\n

So getting to my main point - finally...

\n

YES. All kinds of technological advances from the past 30 years and more could and probably WILL - imho - be used to make the Mark of the Beast possible... call me a paranoid religious nut if you like, I do firmly believe that such is coming.

\n

The Internet itself, for example, connects and brings the whole world online. But if you're using it to read this, now, you are perhaps already hooked, and have no room to talk about Steem or digital currencies being the pre-cursors to the mark of the beast. Because everything you're already using is also...

\n

The magnetic strips on the back of the debit and credit cards you've (most likely) been using for years and years. Online banking... Bar Code technology in grocery stores that you apparently don't have the religious conviction to oppose not abstain from ... retinal scanners, or fingerprint security features in your smartphone...

\n

See what I mean? 

\n

If you are not a practicing Amish person - or you use only \"true money\" (Gold and Silver) to barter and to trade for goods and services when you need them (or farm and grow your own food, to ensure that you don't) - then there are already DOZENS of aspects of your everyday life that you have accepted and routinely utilize that have already in fact brought YOU \"one step closer to the mark of the beast.\"

\n

YES - these \"new-fangled concepts\" like Steem Dollars, Bitcoin, and Digital Currencies are perhaps OBVIOUS steps moving us all FURTHER along that path to one-world government under antichrist...

\n

(EXCEPT IT MUST BE NOTED in this article for you newbies to the concept, that TO-DATE, popular digital currencies (Steem, Bitcoin, Etherium, etc, etc) are actually intended AND ARE CURRENTLY BEING USED to help users MOVE AWAY from immoral government spying networks, and away from evil centralized banking platforms, putting \"the power in the hands of the people\" - for awhile at least. 

\n

So technically, by joining Steemit and adopting Steem as currency, you are fighting the underpinings of the Satanic One-World government that is forming all around us. You are actually, literally, restraining The Beast from his march to power! For awhile anyways...

\n

So there.)  

\n

But yes, I would affirm that some form of digital currency in general could and possibly will be used by the evil-antichrist-oneworldgovernment-rothschilds-federalreserve-warmongeringtotalitarian New World Order yet to arise under the real antichrist when he appears.

\n

In fact, it was seeing this article today published by The Coin Telegraph 

\n


\n4 Reasons Why Your Nation Will Kill Cash For A Digital Currency

\n

that inspired me to drop everything and write this particular article. 

\n

The Coin Telegraph wonderfully details how national interests (Satanic, New World Order interests, for our purposes here) probably will in fact adopt a digital currency of their own in the coming years. I can totally see THEIR VERSION of a global digital currency exchange being the near-final step in implementing the true Mark of the Beast, when (but not until) The Antichrist is revealed.

\n

But Steem/Steemit just isn't it. Today's free market digital currencies - if anything - are the \"gum in the works - fly in the ointment - monkey wrench in the machine\" to the eventual true Mark of the Beast, now that I think about it. Today's digital currencies actually serve to free us from the system that is now in place, by providing de-centralized mediums of currency (barter, exchange, etc) that serve as powerful alternatives to current banking structures, and chains.

\n

Governmental agencies (NWO ones or not) are actually in a scramble currently to figure out HOW to regulate, tax, and ultimately control the existing currencies. But neither they - not the devil - are behind them. 

\n

So my position is to say that unless you're either willing to become Amish today and forego ALL of the technologies I've detailed here (and electricity) then you've really nothing to fear from becoming an early adopter of Steem/Steemit. 

\n

The Bible clearly instructs and solemnly warns all to not accept the Mark of the Beast, when it finally comes in the form of a mark on your hand or forehead that cannot buy or sell without receiving. Abstaining from \"the steps\" has proven impractical, unavoidable (again, except to the Amish), and ultimately not directly commanded in scripture.
\n 
\n===============
\nTwo things in closing:
\n#1) Here's one more lengthy scripture-packed article on Biochips & TMOTB I'll recommend if you're unlearned about the whole topic...
\n#2) You may have noticed in this article that I'm an author in Roswell who deals with the topics of Aliens, UFOs, and The Bible. I have to date organized 7 conferences on that topic, and (after a 7 year hiatus) am putting together a new one for Summer 2017... please follow @ancientofdays for updates and tons of videos yet to come from past speakers and theologians who have participated, and will be again this year. 

\n

I bring all of this up in THIS article, only to announce here that:

\n

My non-profit \"Roswell Mission\" will be accepting Steem for conference registrations (follow for details) and that
\nUP-FRONT VIP SEATING goes to those who pay VIA STEEMIT!

\n", - "cashout_time": "2016-09-16T19:18:59", + "cashout_time": "2016-09-22T18:57:12", "category": "money", "children": 2, - "children_abs_rshares": "25365523997", + "children_abs_rshares": 0, "created": "2016-09-15T18:57:12", "curator_payout_value": { "amount": "0", @@ -462,7 +462,7 @@ "precision": 3 }, "depth": 0, - "id": 960785, + "id": 1257388, "json_metadata": "{\"tags\":[\"money\",\"religion\",\"steem\",\"beyondbitcoin\",\"christianity\"],\"users\":[\"roswellrockman\",\"ancientofdays\"],\"image\":[\"http://dc95wa4w5yhv.cloudfront.net/image-cache/the-mark-of-the-beast_640_426_80_c1.jpg\",\"https://scontent-lax3-1.xx.fbcdn.net/v/t1.0-0/s526x395/14358900_10154412654816605_8330352735442203600_n.jpg?oh=e2a53091d31ad716798686aec3f7bef0&oe=586CF056\",\"http://www.whatdoesitmean.com/wmb2.jpg\",\"http://www.whatdoesitmean.com/wmb3.jpg\",\"http://www.whatdoesitmean.com/wmb4.jpg\",\"http://www.alienstranger.com/seekye1//CSAcover.jpg\",\"https://cointelegraph.com/images/725_Ly9jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy8zYjkxMjBiMjg3YTRmZDJjZjE5MTcyZDk0ZDBhOGQzOC5qcGc=.jpg\"],\"links\":[\"http://lifehopeandtruth.com/prophecy/revelation/mark-of-the-beast/\",\"http://www.AlienStranger.com\",\"http://www.ancientsofdays.net\",\"https://www.biblegateway.com/passage/?search=Revelation+13&version=KJV\",\"https://cointelegraph.com/news/4-reasons-why-your-nation-will-kill-cash-for-a-digital-currency\",\"http://www.evangelicaloutreach.org/markbeast.htm\",\"http://www.whatdoesitmean.com/index1392.htm\",\"https://en.wikipedia.org/wiki/Radio-frequency_identification\",\"http://amzn.to/1Ueug63\",\"http://www.av1611.org/666/biochip.html\",\"https://steemit.com/steemitabuse/@ancientofdays/credibility-matters-on-steemit-therefore-i-wish-to-offer-some-proof-photos-of-my-non-profit-status-and-intent-here\"]}", "last_payout": "1970-01-01T00:00:00", "last_update": "2016-09-15T19:41:12", @@ -471,8 +471,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-29T18:57:12", - "net_rshares": "25365523997", + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 25365523997, "net_votes": 6, "parent_author": "", "parent_permlink": "money", @@ -487,8 +487,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": "116240705764176930", - "vote_rshares": "25365523997" + "total_vote_weight": 116240705764176930, + "vote_rshares": 25365523997 } ] } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json index c160d287..dd611e8e 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json @@ -1,7 +1,7 @@ { "comments": [ { - "abs_rshares": 0, + "abs_rshares": 265082033689, "active": "2016-08-29T07:58:48", "allow_curation_rewards": true, "allow_replies": true, @@ -10,10 +10,10 @@ "author_rewards": 90, "beneficiaries": [], "body": "\n

This is how the harbour of Palma de Mallorca looks like if you drop some Acid.

\n\n\"Palma_rama241fb8.jpg\"\n

(just kidding)

\n

Actually I played around with some presets in Adobe Lightroom.

\n

The one I used here is called Alien Hangover and can be downloaded here for free as part of a set called focus-beauty-builder.

\n

Below is the original image shot with the panorama function of my iPhone 6s. As you can see it's been a cloudy day.

\n\"Palma_original99287.jpg\"\n

\n

What kind of image processing software do you use?

\n

What are your thoughts about presets?

\n
\n

If you want to see more experiments with panorama-images, then you might want to check out this post by @shaka

\n
and \"\" me!
\n\n", - "cashout_time": "2016-09-24T21:49:00", + "cashout_time": "2016-08-31T21:29:12", "category": "photography", "children": 4, - "children_abs_rshares": 50025990, + "children_abs_rshares": 0, "created": "2016-08-24T21:29:12", "curator_payout_value": { "amount": "15", @@ -21,7 +21,7 @@ "precision": 3 }, "depth": 0, - "id": 736241, + "id": 973122, "json_metadata": "{\"tags\":[\"photography\",\"travelling\",\"lightroom\",\"inspiration\",\"art\"],\"users\":[\"shaka\"],\"image\":[\"https://www.steemimg.com/images/2016/08/24/Palma_rama241fb8.jpg\",\"https://www.steemimg.com/images/2016/08/24/Palma_original99287.jpg\",\"http://i.imgur.com/YSt1Mis.gif\"],\"links\":[\"http://profiphotos.com/blog/en/2008/11/new-lightroom-2-presets-focus-beauty-builder/\",\"https://steemit.com/photography/@shaka/a-different-way-to-stitch-a-panorama-view-original-photos\",\"https://steemit.com/@shortcut\"]}", "last_payout": "2016-08-25T21:49:00", "last_update": "2016-08-24T21:29:12", @@ -30,8 +30,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-12T08:16:12", - "net_rshares": 0, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 265082033689, "net_votes": 8, "parent_author": "", "parent_permlink": "photography", @@ -46,8 +46,8 @@ "nai": "@@000000013", "precision": 3 }, - "total_vote_weight": 0, - "vote_rshares": 0 + "total_vote_weight": 1146496221028136216, + "vote_rshares": 265082033689 }, { "abs_rshares": "14608061929", @@ -59,10 +59,10 @@ "author_rewards": 0, "beneficiaries": [], "body": "\n

  Ella's hidden pain!  

\n


\n

The morning sun is shining brightly, kissing my warmed skin, radiating through the glass of the window in my living room. It\u2019s the spot I stand at every morning, anxious to greet the new day and the little girl that walks by every morning at the same time. I always smile and wave at her, holding my hot coffee in my free hand. It\u2019s the perfect start of my day, even in the winter, when the sun is not that strong, but this young girl is, in a very special way, the real sunshine that brightens each beginning of my day. I look forward to and yearn for this brief moment we share, as it warms me in the deepest, most spiritual way I've ever felt.   

\n


\n

Perhaps it's because this little girl reminds me of myself, when I was young and still so very innocent. I reminisce of my childhood as she approaches me, wistful in the memories that flood my senses. As she passes my house, she looks intently at me, flashing me the most warming, innocent smile that only a child can give, and ever so so slowly, she lifts her little hand to give me a friendly wave, knowing I will be here and It warms my demonic heart. At least, it warms it until the moment she passes and starts to look at the ground again. I have followed her a few times. She keeps her eyes on the ground until she gets to where she needs to be, whether it's school, the mall or even her own house. I do not wish to stalk, nor am I a freak. This little girl has just captured my interest and there is a deep mystery I feel, deep within her that gives us this strange connection, a deep sense that I NEED to do this, help her in some way? I don't know. 

\n


\n

All I do know is that it tears at me from within and is a mystery that I need to unravel. This girl has something that has stirred a long lost emotion, deep inside my ice-cold heart. Maybe its because I am spending to much time here, living within the human realm. I do not belong here, living among them in this land, nor do I even care about humans, in general, at all. But this girl... mesmerizes me with the strangest feelings. I just feel an overwhelming need to know her.   

\n


\n

Slowly I lift my hand and take a sip from my black coffee and from the corners of my eyes, I can see her coming my way. I am already feeling my lips curl into a soft smile. I get ready to see her smile back at me, as she always does, but she walks faster then normal now, keeping her eyes on to the ground. She did not smile at me, nor did she lifted her head. It made me feel cold, as if something was wrong, with this little angelic human child. Quickly I place my coffee on the side table and make my way outside, I know her scent, and its easy for me to pick up her trace. Her scent is like a fresh basket of pink flowers, but this time there is a little trace of warm blood mixed in her scent. It alerts my highly tuned senses and makes me walk even faster. Within a minute I see her at the corner and I speed up a little more. 

\n


\n

At this moment I wish that I knew the child's name, so that I could call her. Her little red jacked makes me feel like I am a bull chasing her down, but in a good way. The girls face is hidden in the big hoodie that is on her jacket, and she is still looking down at the ground, while she takes step after step with her little feet. Softly, I tap her on her left shoulder, I can feel her jump at the surprising sensation of my touch. The child stops walking and slowly turns towards me. I can see fear in her troubled, glassy, big brown eyes as they stare at me, deeply and intently, into my sparkling green eyes that plead to her 'I'm here to help. Trust me!'    

\n


\n

My heart tells me to kneel down so that I do not look so big, hoping it might take some of her fear away. I force myself to smile as sweet as I can, because the last thing I want is to scare this child I've been longing to get closer to, away from me.  

\n


\n

 \"I am sorry that I scared you.\" I speak to her in my soft, angelic voice, a ploy I use sometimes, to seem more friendly than I really am. I lift my hand for her to take, but she doesn't move, instead, her hands remain unflinching, nestled deep within her large, comfortable pockets. With my keen, inhuman ears, I can hear her little heart beating rhythmically in her chest. The scent of her fresh, untainted blood soon follows, so intoxicating, so inviting, tickling my nostrils, making me crave just a tiny powerful drop to savor, yet there is no sign of blood on this child at all. The feeling came over me so suddenly and oddly, I begin to wonder if she might have a few wounds hidden under her pretty clothing. Weirdly enough, too, is the fact that the scent of this little humans blood is not making me hungry, for the first time in my long demonic life, but instead, the scent of her blood gives me a deep, uncaring feeling of dread that genuinely worries me. I need to find out more, and fast!  

\n


\n

 \"May I ask your name?\" I ask her softly, while I placing both of my hands onto my knee's, not forcing them on her any longer, possibly scaring her away. \"You always smile so beautiful at me in the morning, but today I missed that.\" I continue some small talk, hoping she responds but when the little girl bites on the inside of her cheeks, her big brown eyes looking more than sad, there is no light in them at all and it even breaks my callous heart to see it.   

\n


\n

 

\n


\n

Disclaimer: I am the writer of this story, I have published it under my author name Bibi Rillmann.

\n

If you want to read the whole story you can also buy the book on Amazon with this link: https://www.amazon.com/dp/B011ANCU58

\n", - "cashout_time": "2016-09-25T14:48:54", + "cashout_time": "2016-08-31T21:28:21", "category": "story", "children": 0, - "children_abs_rshares": "14608061929", + "children_abs_rshares": 0, "created": "2016-08-24T21:28:21", "curator_payout_value": { "amount": "0", @@ -70,16 +70,16 @@ "precision": 3 }, "depth": 0, - "id": 736231, + "id": 973109, "json_metadata": "{\"tags\":[\"story\",\"fiction\",\"writing\"],\"image\":[\"https://s6.postimg.org/ma66gmakx/418_Gx_Rsw5_SL.jpg\"],\"links\":[\"https://www.amazon.com/dp/B011ANCU58\"]}", - "last_payout": "2016-08-26T14:48:54", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-24T21:28:21", "max_accepted_payout": { "amount": "1000000000", "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-13T23:31:03", + "max_cashout_time": "1969-12-31T23:59:59", "net_rshares": "14608061929", "net_votes": 9, "parent_author": "", @@ -108,7 +108,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "\n

Pirate Cave

\n

There are a lot of  stories and legends. Locals believe that before this place was chosen by pirates. They hid treasure in the cave, then transported through a tunnel to the city.

\n

\n

Lovers Cave

\n

Many legends about the Lovers Cave. According one of them - lovers together must to jump off a high ledge, then nothing is no able to separate them. Now jumps banned.

\n

\n

\n

Old fortress town

\n

\n

\n

Now it is Russian territory )))

\n

\n

\n", - "cashout_time": "2016-09-24T22:04:12", + "cashout_time": "2016-08-31T21:26:15", "category": "photography", "children": 1, "children_abs_rshares": 0, @@ -119,9 +119,9 @@ "precision": 3 }, "depth": 0, - "id": 736204, + "id": 973073, "json_metadata": "{\"tags\":[\"photography\"],\"image\":[\"http://i.share.pho.to/5bd63a86_o.jpeg\",\"http://i.share.pho.to/badc9c25_o.jpeg\",\"http://i.share.pho.to/66d78edf_o.jpeg\",\"http://i.share.pho.to/bc535078_o.jpeg\",\"http://i.share.pho.to/1bd80fa4_o.jpeg\",\"http://i.share.pho.to/43b23d20_o.jpeg\",\"http://i.share.pho.to/a951f3d0_o.jpeg\"]}", - "last_payout": "2016-08-25T22:04:12", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-24T21:27:09", "max_accepted_payout": { "amount": "1000000000", @@ -135,7 +135,7 @@ "parent_permlink": "photography", "percent_hbd": 10000, "permlink": "original-photo-from-turkey-pirate-cave-and-lovers-cave", - "reward_weight": 4114, + "reward_weight": 10000, "root_author": "dmilash", "root_permlink": "original-photo-from-turkey-pirate-cave-and-lovers-cave", "title": "Original photo from Turkey: Pirate cave and Lovers Cave etc.", @@ -157,7 +157,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "http://i.imgsafe.org/e103059e0b.jpeg\nCosta Rica is much more than a lush, green tourist paradise; it\u2019s also a green energy pioneer. The small Central American nation has generated 100 percent of its electricity from renewable sources for the past 113 days, and the run isn\u2019t over yet. The country, which draws clean energy from a variety of renewable sources, still has its sights on a full year without fossil fuels. With a 113-day stretch of 100-percent renewable energy under its belt and several months left in the year, Costa Rica is edging closer to its target. Costa Rica could be on track to match the record set with its renewable energy production last year, which accounted for 99 percent of the country\u2019s electricity. That included 285 days powered completely by renewable sources, according to the Costa Rican Electricity Institute. Costa Rica is able to take advantage of a multitude of renewable energy sources because of its unique climate and terrain. Most of the nation\u2019s renewable energy comes from hydropower, due to its large river system and heavy tropical rainfalls. Solar, wind, biomass, and geothermal energy also play key roles.\n\nThe tropical nation aims to be free from fossil fuels in just five years. With hefty investments in geothermal energy projects and a forecast for more heavy rains in the coming years, that goal could be accomplished even sooner than originally planned.", - "cashout_time": "2016-09-25T00:27:45", + "cashout_time": "2016-08-31T21:26:21", "category": "energy", "children": 3, "children_abs_rshares": 0, @@ -168,9 +168,9 @@ "precision": 3 }, "depth": 0, - "id": 736208, + "id": 973077, "json_metadata": "{\"tags\":[\"energy\",\"news\",\"truth\",\"costarica\",\"america\"],\"image\":[\"http://i.imgsafe.org/e103059e0b.jpeg\"]}", - "last_payout": "2016-08-26T00:27:45", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-24T21:27:09", "max_accepted_payout": { "amount": "1000000000", @@ -197,7 +197,7 @@ "vote_rshares": 0 }, { - "abs_rshares": 933355159, + "abs_rshares": 739551867827, "active": "2016-08-25T15:06:48", "allow_curation_rewards": true, "allow_replies": true, @@ -206,10 +206,10 @@ "author_rewards": 250, "beneficiaries": [], "body": "\n

Hi there fellow Steemers, my name is Lilli and here\u2019s a little bit about myself and why I\u2019m here.

\n

I am a London based artist and theatre designer-to-be. My aim is to bring a whole lot of culture and a little bit of me to Steemit. 

\n

\n

  Introduced to Steemit by a friend, I was rather skeptical at first. I generally don\u2019t trust the internet and all that is or isn\u2019t going on inside this impenetrable machine. Nevertheless I have now chosen to do these first steps into unknown land and overcome my e-phobia. My reason to do so is simply that this is the future, there\u2019s no way around it and you might as well live it!  In fact I think it is an amazing opportunity for artists, travellers and intellectuals of all sorts to present and exchange their work and thoughts and opinion. It\u2019s a space to openly communicate with people all over the globe, freely express oneself and start discussions with total strangers. Overall it\u2019s a real step forward.

\n

\n

What you can expect from me on Steemit are posts about my work as an artist, studies of theatre design, observations within my city, on travels and of the human mind and really anything that catches my interest.   Some of my hobbies and interests include travelling, exploring my city (London), ...

\n

\n

...cooking (though my boyfriend does most of that), photography, dressing up, mountaineering, rock climbing and other adrenalin enducing sports.

\n

\n

\n

Route of a crazy backpacker journey, I will most definitely write about. With 30 hour train journeys, friends left behind, a flooded festival and much more!
\n
\nIf you're curious for some travel adventures and cultural posts, FOLLOW ME!
\nI promise it'll be worth it ;)

\n", - "cashout_time": "2016-09-24T21:44:33", + "cashout_time": "2016-08-31T21:14:27", "category": "introduceyourself", "children": 4, - "children_abs_rshares": 933355159, + "children_abs_rshares": 0, "created": "2016-08-24T21:14:27", "curator_payout_value": { "amount": "90", @@ -217,7 +217,7 @@ "precision": 3 }, "depth": 0, - "id": 736068, + "id": 972900, "json_metadata": "{\"tags\":[\"introduceyourself\",\"art\",\"photography\",\"steemit\",\"travel\"],\"image\":[\"https://i.imgsafe.org/e0fded406a.png\",\"https://i.imgsafe.org/e10eaa131a.png\",\"https://i.imgsafe.org/e103ab1660.png\",\"https://i.imgsafe.org/e1096709b8.png\",\"https://i.imgsafe.org/e100e9033f.png\"]}", "last_payout": "2016-08-25T21:44:33", "last_update": "2016-08-24T21:26:48", @@ -226,8 +226,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-08T22:48:15", - "net_rshares": 933355159, + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 739551867827, "net_votes": 12, "parent_author": "", "parent_permlink": "introduceyourself", @@ -243,7 +243,7 @@ "precision": 3 }, "total_vote_weight": 0, - "vote_rshares": 933355159 + "vote_rshares": 739551867827 }, { "abs_rshares": 0, @@ -255,7 +255,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "http://dimg.zoftcdn.com/s1/photos/news/thumbs/world/country/usa/h/hilery_clindon001/img/625.117.560.350.160.300.053.800.210.160.90.jpg\nDonors to the Clinton Foundation had special access to Hillary Clinton,when she was Secretary of State, fresh documents brought to light by two conservative groups on Monday showed, in a setback to the Democratic candidate's presidential campaign.\n\nThe Republican candidate Donald Trump has sought an investigation by a special prosecutor into the links between the foundation and the State Department under Ms. Hillary Clinton.\n\nThe Former President Bill Clinton said in a statement on Monday the foundation would stop accepting foreign donations, if his wife were to become the President. The foundation had made the same announcement last week. Ms. Hillary Clinton had pledged to dissociate from the functioning of the foundation, when she took over as the Secretary of State.\n\nBut, however, the staff of the foundation sought special treatment for donors from the State Department, according to the documents.\n\nAmong the new revelations is how the foundation staff intervened on be half of the Crown Prince of Bahrain, a donor.\n\nThe Crown Prince could not get a meeting with Ms. Hillary Clinton through State Department Channels, but did get one after Foundation Executive Douglas Band wrote to Huma Abedin, aclose aide of hers. \u201cGood friend of ours,\u201d Mr. Band wrote to Ms. Abedin,requesting a meeting for the Crown Prince.\n\nDonald Trump said, \u201cNo issue better illustrates how corrupt my opponent is than her pay for play scandals as the Secretary of State,\u201d Mr. Trump said,demanding an investigation.\n\nIn a separate development, a federal judge on Monday asked the State Department to expedite the process of reviewing and releasing a set of nearly 15,000 emails that were not handed over to the Department as\u2018work-related\u2019 earlier. The FBI had uncovered these emails during its investigation of a private server Ms. Hillary Clinton had maintained.\n\nThe Clinton Foundation accepts money from foreign donors, including foreign governments, which Mr. Donald Trump alleges is a threat to the U.S.National Security.\n\nNews source Tamil focus.com", - "cashout_time": "2016-09-24T21:25:27", + "cashout_time": "2016-08-31T21:25:27", "category": "politics", "children": 0, "children_abs_rshares": 0, @@ -266,9 +266,9 @@ "precision": 3 }, "depth": 0, - "id": 736196, + "id": 973063, "json_metadata": "{\"tags\":[\"politics\",\"news\"],\"image\":[\"http://dimg.zoftcdn.com/s1/photos/news/thumbs/world/country/usa/h/hilery_clindon001/img/625.117.560.350.160.300.053.800.210.160.90.jpg\"]}", - "last_payout": "2016-08-25T21:25:27", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-24T21:25:27", "max_accepted_payout": { "amount": "1000000000", @@ -295,7 +295,7 @@ "vote_rshares": 0 }, { - "abs_rshares": "108915090155", + "abs_rshares": 352259918059, "active": "2016-08-28T17:57:48", "allow_curation_rewards": true, "allow_replies": true, @@ -304,10 +304,10 @@ "author_rewards": 72, "beneficiaries": [], "body": "

https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/14055152_10154376523262180_7573779098355793143_n.jpg?oh=d2a68c63bfb4e5d16714403c49fb2fcf&oe=58417095

\n\nHello Steemit community! My name is Macey, and I have recently joined Steemit so I can become more involved with the Anarchist Community. I have written a couple articles, but in all the excitement, I forgot to give a proper introduction.\n\n

https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/12376121_10153719290912180_997199044763883123_n.jpg?oh=4e3622e8aee631343faa6de4a21daaf4&oe=5855FB15

\n

About Me

\n\nWhen I was just shy of twenty, I realized the truth of the nature of our government after watching the popular documentary, *Zeitgeist.* Shortly after, I started micro-dosing daily with psilocybin mushrooms. This form of therapy lasted three months. I consider this a vital part of my evolution as an anarchist, and have devoted my life to helping people understand alternative medicine and the positive effects they can have on the body, mind and spirit. I truly believe our minds are eternal libraries, and psychedelics can be the key to accessing that knowledge. \n\nI hope you'll join me here! My writings will be focused on alternative therapy, among other topics.", - "cashout_time": "2016-09-24T23:01:18", + "cashout_time": "2016-08-31T21:24:48", "category": "introduceyourself", "children": 9, - "children_abs_rshares": "134531468918", + "children_abs_rshares": 0, "created": "2016-08-24T21:24:48", "curator_payout_value": { "amount": "27", @@ -315,7 +315,7 @@ "precision": 3 }, "depth": 0, - "id": 736189, + "id": 973053, "json_metadata": "{\"tags\":[\"introduceyourself\",\"anarchy\",\"psychedelics\",\"alternative\",\"medicine\"],\"image\":[\"https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/14055152_10154376523262180_7573779098355793143_n.jpg?oh=d2a68c63bfb4e5d16714403c49fb2fcf&oe=58417095\",\"https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/12376121_10153719290912180_997199044763883123_n.jpg?oh=4e3622e8aee631343faa6de4a21daaf4&oe=5855FB15\"]}", "last_payout": "2016-08-25T23:01:18", "last_update": "2016-08-24T21:24:48", @@ -324,8 +324,8 @@ "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-09T03:50:33", - "net_rshares": "108915090155", + "max_cashout_time": "1969-12-31T23:59:59", + "net_rshares": 352259918059, "net_votes": 40, "parent_author": "", "parent_permlink": "introduceyourself", @@ -341,7 +341,7 @@ "precision": 3 }, "total_vote_weight": 0, - "vote_rshares": "108915090155" + "vote_rshares": 352259918059 }, { "abs_rshares": 61964463, @@ -353,10 +353,10 @@ "author_rewards": 0, "beneficiaries": [], "body": "http://media.salon.com/2015/09/reagan_trump.jpg\n\nhttp://www.chicagotribune.com/news/opinion/editorials/ct-donald-trump-ronald-reagan-president-edit-0501-20160429-story.html\n\nThere is NO comparison between Ronald Reagan & Donald Trump. Reagan was greatly admired by NOT only Republicans but even Democrats as well. The BIG TENT that the Democrats are now using was inherently borrowed from Ronald Reagan. He was well mannered & a consumate gentleman with a great positive attitude that he carried well. Reagan didn't build walls, he tore them down. He was at the helm during Gorbachev's 'glasnost' & 'peristroyka'. And Ronald Reagan fostered a GOOD relationship with the USSR as it finally fell. Reagan was the 'Great Communicator' & the 'Great Compromiser'. Even if you didn't agree with him, you still took a liking to him as he was very approachable. He compromised with a Democratic Congress & made the wheels of government turn. He was a 'strong leader' that didn't have to fight bloody conflicts & wars to make his point. But MOST of ALL Reagan stressed UNITY of nation & country. He just stayed well mannered at ALL TIMES!\n\nNow let's look at Trump. He's the 'Great Divider', good at setting one group against another. He's at best 'ill mannered' with a Totally NEGATIVE ATTITUDE. To Trump our nation is a 'miserable trash heap on a hill' and our diversity is just a 'punchline' to prey upon. Not ONLY is he insulting & unapproachable, most people want to 'punch' him in the face! Trump couldn't unify anything if he tried. He is a 'strong armed dictator' that wants everything & person to bend to his will. He lives on bad events, & thrives on misery. He wants his followers to GET INTO BLOODY CONFLICTS, and insistently wants to START World War 3! He knows no manners to speak of & he 'gins up' his followers into a 'frenzy' of violent behavior!\n\nAlso to note: Ronald Reagan was Governor of California for years before he took control at the helm of the Presidency! So he KNEW how government works! Donald Trump & his Teabagging Followers don't have the FIRST idea of how government operates. You don't run this country like a corporate interest!\n\nIn conclusion, believe it or not NAFTA was originally Reagan's 'brainchild'. If you have the 'slightest' respect for the Reagan legacy, you WON'T allow Trump into the White House!\n\n\n", - "cashout_time": "2016-09-24T21:08:12", + "cashout_time": "2016-08-31T21:05:45", "category": "politics", "children": 2, - "children_abs_rshares": 2364572745, + "children_abs_rshares": 0, "created": "2016-08-24T21:05:45", "curator_payout_value": { "amount": "0", @@ -364,16 +364,16 @@ "precision": 3 }, "depth": 0, - "id": 735968, + "id": 972767, "json_metadata": "{\"tags\":[\"politics\",\"trump\",\"reagan\",\"news\"]}", - "last_payout": "2016-08-25T21:08:12", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-24T21:24:36", "max_accepted_payout": { "amount": "1000000000", "nai": "@@000000013", "precision": 3 }, - "max_cashout_time": "2016-09-08T23:22:51", + "max_cashout_time": "1969-12-31T23:59:59", "net_rshares": -61964463, "net_votes": 2, "parent_author": "", @@ -402,7 +402,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "Delete", - "cashout_time": "2016-09-24T20:53:54", + "cashout_time": "2016-08-31T20:53:54", "category": "steemtube", "children": 0, "children_abs_rshares": 0, @@ -413,9 +413,9 @@ "precision": 3 }, "depth": 0, - "id": 735834, + "id": 972587, "json_metadata": "{\"tags\":[\"delete\",\"steemtube\"]}", - "last_payout": "2016-08-25T20:53:54", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-24T21:24:24", "max_accepted_payout": { "amount": "1000000000", @@ -451,7 +451,7 @@ "author_rewards": 0, "beneficiaries": [], "body": "https://scontent-dft4-2.xx.fbcdn.net/v/t1.0-9/13892044_514122035452799_7084570694564074093_n.jpg?oh=a4e8c52daf63a5fb0a2cf7647b6bdc3d&oe=585A651A", - "cashout_time": "2016-09-24T21:23:48", + "cashout_time": "2016-08-31T21:23:48", "category": "art", "children": 0, "children_abs_rshares": 0, @@ -462,9 +462,9 @@ "precision": 3 }, "depth": 0, - "id": 736173, + "id": 973032, "json_metadata": "{\"tags\":[\"art\",\"blog\",\"photography\",\"digital\",\"nature\"],\"image\":[\"https://scontent-dft4-2.xx.fbcdn.net/v/t1.0-9/13892044_514122035452799_7084570694564074093_n.jpg?oh=a4e8c52daf63a5fb0a2cf7647b6bdc3d&oe=585A651A\"]}", - "last_payout": "2016-08-25T21:23:48", + "last_payout": "1970-01-01T00:00:00", "last_update": "2016-08-24T21:23:48", "max_accepted_payout": { "amount": "1000000000", diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json index 96c3fa93..f859cd93 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json @@ -21,7 +21,7 @@ "precision": 3 }, "depth": 0, - "id": 6, + "id": 7, "json_metadata": "{}", "last_payout": "2016-08-12T10:16:39", "last_update": "2016-04-08T07:36:18", @@ -31,7 +31,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -491818553, + "net_rshares": 0, "net_votes": -2, "parent_author": "", "parent_permlink": "", @@ -70,7 +70,7 @@ "precision": 3 }, "depth": 0, - "id": 7, + "id": 8, "json_metadata": "{}", "last_payout": "2016-08-12T10:16:42", "last_update": "2016-04-08T07:55:15", @@ -80,7 +80,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -481781440, + "net_rshares": 0, "net_votes": -3, "parent_author": "", "parent_permlink": "", @@ -119,7 +119,7 @@ "precision": 3 }, "depth": 0, - "id": 9, + "id": 10, "json_metadata": "{}", "last_payout": "2016-08-13T18:32:54", "last_update": "2016-04-08T08:49:15", @@ -129,7 +129,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -477016308, + "net_rshares": 0, "net_votes": -2, "parent_author": "", "parent_permlink": "", @@ -168,7 +168,7 @@ "precision": 3 }, "depth": 0, - "id": 20, + "id": 23, "json_metadata": "{}", "last_payout": "2016-08-03T00:00:06", "last_update": "2016-04-08T15:39:00", @@ -178,7 +178,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -37896234000000, + "net_rshares": 0, "net_votes": 11, "parent_author": "", "parent_permlink": "", @@ -217,7 +217,7 @@ "precision": 3 }, "depth": 0, - "id": 30, + "id": 34, "json_metadata": "{}", "last_payout": "2016-08-03T00:00:06", "last_update": "2016-04-10T18:05:15", @@ -266,7 +266,7 @@ "precision": 3 }, "depth": 0, - "id": 31, + "id": 35, "json_metadata": "{}", "last_payout": "2016-08-21T21:26:42", "last_update": "2016-04-12T07:40:06", @@ -315,7 +315,7 @@ "precision": 3 }, "depth": 0, - "id": 93, + "id": 102, "json_metadata": "{}", "last_payout": "2016-08-26T03:00:03", "last_update": "2016-04-13T00:06:57", @@ -364,7 +364,7 @@ "precision": 3 }, "depth": 0, - "id": 103, + "id": 119, "json_metadata": "{}", "last_payout": "2016-08-12T10:16:57", "last_update": "2016-04-13T08:45:09", @@ -374,7 +374,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -433402453408, + "net_rshares": 0, "net_votes": 2, "parent_author": "", "parent_permlink": "", @@ -413,7 +413,7 @@ "precision": 3 }, "depth": 0, - "id": 110, + "id": 129, "json_metadata": "{}", "last_payout": "2016-08-03T00:00:06", "last_update": "2016-05-15T16:06:06", @@ -462,7 +462,7 @@ "precision": 3 }, "depth": 0, - "id": 111, + "id": 130, "json_metadata": "{}", "last_payout": "2016-08-24T05:37:24", "last_update": "2016-04-13T16:25:15", diff --git a/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json b/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json index 65dcb1ff..dbc23cf4 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json @@ -31,7 +31,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -55205310, + "net_rshares": 0, "net_votes": -4, "parent_author": "vi1son", "parent_permlink": "about-circles-on-the-water-or-why-the-whales-are-needed", @@ -129,7 +129,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -10906911, + "net_rshares": 0, "net_votes": -1, "parent_author": "vi1son", "parent_permlink": "aferium", @@ -227,7 +227,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -776149630, + "net_rshares": 0, "net_votes": 2, "parent_author": "vi1son", "parent_permlink": "afghan-war-1985", @@ -276,7 +276,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -21958841303, + "net_rshares": 0, "net_votes": 2, "parent_author": "vi1son", "parent_permlink": "afghan-war-1985", diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json index 884bf517..8ef6da08 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json @@ -1,7 +1,7 @@ { "comments": [ { - "abs_rshares": "920389243926", + "abs_rshares": 80964590737004, "active": "2016-08-18T03:32:12", "allow_curation_rewards": true, "allow_replies": true, @@ -13,7 +13,7 @@ "cashout_time": "2016-08-23T18:11:03", "category": "witness-category", "children": 14, - "children_abs_rshares": "1000824866058", + "children_abs_rshares": 0, "created": "2016-08-16T18:11:03", "curator_payout_value": { "amount": "243149", @@ -31,7 +31,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": "920389243926", + "net_rshares": 80964590737004, "net_votes": 177, "parent_author": "", "parent_permlink": "witness-category", @@ -47,7 +47,7 @@ "precision": 3 }, "total_vote_weight": 0, - "vote_rshares": "920389243926" + "vote_rshares": 80964590737004 }, { "abs_rshares": 0, @@ -99,7 +99,7 @@ "vote_rshares": 0 }, { - "abs_rshares": 0, + "abs_rshares": 568650179247, "active": "2016-08-27T18:39:45", "allow_curation_rewards": true, "allow_replies": true, @@ -197,7 +197,7 @@ "vote_rshares": 0 }, { - "abs_rshares": 1067633479, + "abs_rshares": 11126043440, "active": "2016-08-26T21:16:45", "allow_curation_rewards": true, "allow_replies": true, diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json index e6626c37..7d245517 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json @@ -1,7 +1,7 @@ { "comments": [ { - "abs_rshares": "4923114688969", + "abs_rshares": 131318844612266, "active": "2016-09-11T05:54:30", "allow_curation_rewards": true, "allow_replies": true, @@ -13,7 +13,7 @@ "cashout_time": "2016-08-31T21:24:33", "category": "introduceyourself", "children": 112, - "children_abs_rshares": "5017117283364", + "children_abs_rshares": 0, "created": "2016-08-24T21:24:33", "curator_payout_value": { "amount": "545355", @@ -47,10 +47,10 @@ "precision": 3 }, "total_vote_weight": 0, - "vote_rshares": 131252358872788 + "vote_rshares": 131285601742527 }, { - "abs_rshares": 196185915, + "abs_rshares": 15500271048057, "active": "2016-09-08T11:49:15", "allow_curation_rewards": true, "allow_replies": true, @@ -62,7 +62,7 @@ "cashout_time": "2016-09-15T01:39:12", "category": "life", "children": 4, - "children_abs_rshares": 196185915, + "children_abs_rshares": 0, "created": "2016-09-08T01:39:12", "curator_payout_value": { "amount": "3823", @@ -160,7 +160,7 @@ "cashout_time": "2016-09-09T00:23:30", "category": "photography", "children": 13, - "children_abs_rshares": "32969357867", + "children_abs_rshares": 0, "created": "2016-09-02T00:23:30", "curator_payout_value": { "amount": "4357", @@ -209,7 +209,7 @@ "cashout_time": "2016-09-11T19:31:03", "category": "photography", "children": 22, - "children_abs_rshares": "140201312914", + "children_abs_rshares": 0, "created": "2016-09-04T19:31:03", "curator_payout_value": { "amount": "6541", @@ -258,7 +258,7 @@ "cashout_time": "2016-09-16T11:04:21", "category": "photography", "children": 7, - "children_abs_rshares": 113157676, + "children_abs_rshares": 0, "created": "2016-09-09T11:04:21", "curator_payout_value": { "amount": "203", @@ -356,7 +356,7 @@ "cashout_time": "2016-09-21T14:46:27", "category": "photography", "children": 11, - "children_abs_rshares": "10027068167722", + "children_abs_rshares": 0, "created": "2016-09-14T14:46:27", "curator_payout_value": { "amount": "0", @@ -405,7 +405,7 @@ "cashout_time": "2016-09-02T22:53:00", "category": "introduceyourself", "children": 13, - "children_abs_rshares": 1230392222, + "children_abs_rshares": 0, "created": "2016-08-26T22:53:00", "curator_payout_value": { "amount": "420", @@ -454,7 +454,7 @@ "cashout_time": "2016-09-03T23:27:30", "category": "photography", "children": 12, - "children_abs_rshares": "6808732560425", + "children_abs_rshares": 0, "created": "2016-08-27T23:27:30", "curator_payout_value": { "amount": "41", diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json index 8bd185f7..1ea30766 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json @@ -233,7 +233,7 @@ "parent_permlink": "steemit", "percent_hbd": 10000, "permlink": "ai-revolution-101", - "reward_weight": 7456, + "reward_weight": 10000, "root_author": "a11at", "root_permlink": "ai-revolution-101", "title": "AI Revolution 101", @@ -282,7 +282,7 @@ "parent_permlink": "datascience", "percent_hbd": 10000, "permlink": "ai-s-road-to-the-mainstream", - "reward_weight": 1004, + "reward_weight": 10000, "root_author": "a11at", "root_permlink": "ai-s-road-to-the-mainstream", "title": "AI\u2019s Road to the Mainstream", @@ -331,7 +331,7 @@ "parent_permlink": "pokemon", "percent_hbd": 10000, "permlink": "an-open-letter-to-john-hanke-and-niantic", - "reward_weight": 2276, + "reward_weight": 10000, "root_author": "a11at", "root_permlink": "an-open-letter-to-john-hanke-and-niantic", "title": "An Open Letter to John Hanke & Niantic", @@ -380,7 +380,7 @@ "parent_permlink": "apple", "percent_hbd": 10000, "permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", - "reward_weight": 3638, + "reward_weight": 10000, "root_author": "a11at", "root_permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", "title": "APPLE BUYS MACHINE LEARNING STARTUP TURI TO MAKE SIRI BETTER", @@ -429,7 +429,7 @@ "parent_permlink": "audi", "percent_hbd": 10000, "permlink": "audi-rs-q3-fl", - "reward_weight": 1915, + "reward_weight": 10000, "root_author": "a11at", "root_permlink": "audi-rs-q3-fl", "title": "Audi RS Q3 FL", @@ -478,7 +478,7 @@ "parent_permlink": "bitcoin", "percent_hbd": 10000, "permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", - "reward_weight": 1937, + "reward_weight": 10000, "root_author": "a11at", "root_permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", "title": "Bitcoin not money, judge rules in victory for backers", diff --git a/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json index 8bd185f7..1ea30766 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json @@ -233,7 +233,7 @@ "parent_permlink": "steemit", "percent_hbd": 10000, "permlink": "ai-revolution-101", - "reward_weight": 7456, + "reward_weight": 10000, "root_author": "a11at", "root_permlink": "ai-revolution-101", "title": "AI Revolution 101", @@ -282,7 +282,7 @@ "parent_permlink": "datascience", "percent_hbd": 10000, "permlink": "ai-s-road-to-the-mainstream", - "reward_weight": 1004, + "reward_weight": 10000, "root_author": "a11at", "root_permlink": "ai-s-road-to-the-mainstream", "title": "AI\u2019s Road to the Mainstream", @@ -331,7 +331,7 @@ "parent_permlink": "pokemon", "percent_hbd": 10000, "permlink": "an-open-letter-to-john-hanke-and-niantic", - "reward_weight": 2276, + "reward_weight": 10000, "root_author": "a11at", "root_permlink": "an-open-letter-to-john-hanke-and-niantic", "title": "An Open Letter to John Hanke & Niantic", @@ -380,7 +380,7 @@ "parent_permlink": "apple", "percent_hbd": 10000, "permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", - "reward_weight": 3638, + "reward_weight": 10000, "root_author": "a11at", "root_permlink": "apple-buys-machine-learning-startup-turi-to-make-siri-better", "title": "APPLE BUYS MACHINE LEARNING STARTUP TURI TO MAKE SIRI BETTER", @@ -429,7 +429,7 @@ "parent_permlink": "audi", "percent_hbd": 10000, "permlink": "audi-rs-q3-fl", - "reward_weight": 1915, + "reward_weight": 10000, "root_author": "a11at", "root_permlink": "audi-rs-q3-fl", "title": "Audi RS Q3 FL", @@ -478,7 +478,7 @@ "parent_permlink": "bitcoin", "percent_hbd": 10000, "permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", - "reward_weight": 1937, + "reward_weight": 10000, "root_author": "a11at", "root_permlink": "bitcoin-not-money-judge-rules-in-victory-for-backers", "title": "Bitcoin not money, judge rules in victory for backers", diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json index f1d20648..77dfb00a 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json @@ -80,7 +80,7 @@ "precision": 3 }, "max_cashout_time": "1969-12-31T23:59:59", - "net_rshares": -226592300084, + "net_rshares": 0, "net_votes": 8, "parent_author": "steemit", "parent_permlink": "firstpost", diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json index 147cec91..3380216f 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json @@ -62,7 +62,7 @@ "cashout_time": "2016-09-04T17:30:30", "category": "art", "children": 24, - "children_abs_rshares": "18465724919", + "children_abs_rshares": 0, "created": "2016-08-28T17:30:30", "curator_payout_value": { "amount": "363", diff --git a/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json b/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json index cbad4526..6204324c 100644 --- a/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json +++ b/hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json @@ -13,7 +13,7 @@ "cashout_time": "2016-09-04T17:15:12", "category": "foodchallenge", "children": 18, - "children_abs_rshares": 2374341643, + "children_abs_rshares": 0, "created": "2016-08-28T17:15:12", "curator_payout_value": { "amount": "131", diff --git a/hivemind/tavern/test_database_api_patterns.tavern.yaml b/hivemind/tavern/test_database_api_patterns.tavern.yaml index 01ca198d..031643f8 100644 --- a/hivemind/tavern/test_database_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_database_api_patterns.tavern.yaml @@ -35,7 +35,7 @@ marks: - patterntest - failing - - xfail # payouts, active + - xfail # active includes: - !include common.yaml @@ -177,7 +177,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - failing - - xfail # payouts, active, net_rshares (only because parameters were changed so results only cover specific posts) + - xfail # active, payouts (only because parameters were changed so results only cover specific posts) includes: - !include common.yaml @@ -218,7 +218,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - failing - - xfail # no results (because timestamp::max is actually smaller in SQL); show first posts comments + - xfail # active, payouts; show first posts comments includes: - !include common.yaml @@ -320,7 +320,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - failing - - xfail # incomparable - ordering with date + - xfail # active; incomparable with original due to cashout_time differences includes: - !include common.yaml @@ -356,7 +356,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest - failing - - xfail # incomparable - ordering by date + - xfail # active; incomparable with original due to cashout_time differences (same pattern as in list_comments_by_cashout_first_date) includes: - !include common.yaml @@ -393,13 +393,13 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest - failing - - xfail # plenty of differences but comparable (to be investigated, start with last_payout, potentially result of deletion and repost) + - xfail # active, payouts includes: - !include common.yaml stages: - - name: list_comments_by_cashout_time + - name: list_comments_by_permlink request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -424,13 +424,13 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest - failing - - xfail # active, reward_weight, escaping + - xfail # active, escaping includes: - !include common.yaml stages: - - name: list_comments_by_cashout_time + - name: list_comments_by_permlink request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -453,15 +453,15 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_permlink" good permlink marks: - - patterntest # author first - when empty, takes alphabetical (later by permlink) + - patterntest - failing - - xfail # active, reward_weight, escaping + - xfail # active, escaping; author first - when empty, takes alphabetical (later by permlink) includes: - !include common.yaml stages: - - name: list_comments_by_cashout_time + - name: list_comments_by_permlink request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -495,13 +495,13 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest - failing - - xfail # plenty of differences but comparable (to be investigated, start with last_payout) + - xfail # active, payouts, abs_rshares/vote_rshares prior to first payout includes: - !include common.yaml stages: - - name: list_comments_by_cashout_time + - name: list_comments_by_permlink request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -572,7 +572,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" no marks: - patterntest - failing - - xfail # active, payouts, net_rshares; first two params are required + - xfail # active, payouts; first two params are required includes: - !include common.yaml @@ -643,7 +643,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" req marks: - patterntest - failing - - xfail # active, payouts, children_abs_shares + - xfail # active includes: - !include common.yaml @@ -679,7 +679,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" req marks: - patterntest - failing - - xfail # active, payouts, children_abs_rshares + - xfail # active includes: - !include common.yaml @@ -715,7 +715,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" all marks: - patterntest - failing - - xfail # active, payouts + - xfail # active includes: - !include common.yaml @@ -893,7 +893,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest - failing - - xfail # incomparable - unknown ordering problem; first 2 params are required + - xfail # active, payouts, title; first 2 params are required includes: - !include common.yaml @@ -1112,7 +1112,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest - failing - - xfail # incomparable - ordering with date + - xfail # active, payouts, incomparable with original (bug in fat node using wrong index) includes: - !include common.yaml @@ -1218,7 +1218,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest - failing - - xfail # incomparable - ordering with date + - xfail # active, payouts, incomparable with original (bug in fat node using wrong index) includes: - !include common.yaml @@ -1254,7 +1254,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest - failing - - xfail # incomparable - ordering with date + - xfail # active, incomparable with original (bug in fat node using wrong index) includes: - !include common.yaml @@ -1290,7 +1290,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_author_la marks: - patterntest - failing - - xfail # incomparable - ordering with date; output should be the same as prev test or with completely diff author + - xfail # active, incomparable with original (bug in fat node using wrong index); output should be the same as prev test or with completely diff author includes: @@ -1395,7 +1395,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest - failing - - xfail # incomparable - ordering by date + - xfail # active, differences in rshares/weight after empty payout includes: @@ -1502,7 +1502,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest - failing - - xfail # incomparable - ordering by date; show last comments in base + - xfail # active, beneficiaries as dict; show last comments in base includes: - !include common.yaml -- GitLab From 405734a6ac430e797ce5b90533463025a4ae639d Mon Sep 17 00:00:00 2001 From: Pawel Maniora Date: Tue, 25 Aug 2020 09:52:08 +0200 Subject: [PATCH 37/49] database_api error patterns update --- .../test_database_api_patterns.tavern.yaml | 129 ++++++++++++------ hivemind/tavern/validate_response.py | 14 -- 2 files changed, 86 insertions(+), 57 deletions(-) diff --git a/hivemind/tavern/test_database_api_patterns.tavern.yaml b/hivemind/tavern/test_database_api_patterns.tavern.yaml index 01ca198d..7babc54a 100644 --- a/hivemind/tavern/test_database_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_database_api_patterns.tavern.yaml @@ -92,10 +92,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "basic_string::at: __n (which is 0) >= this->size() (which is 0):basic_string::at: __n (which is 0) >= this->size() (which is 0): unable to convert ISO-formatted string to fc::time_point_sec" - + method: "list_comments_wrong_date" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" date and author @@ -127,9 +129,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:comment != nullptr: Could not find comment etcmike/." + method: "list_comments_not_found_by_account" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" date and permlink @@ -167,10 +172,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:comment != nullptr: Could not find comment /re-bullionstackers-screen-it-tab-it-what-are-they-20160829t061254603z." - + method: "list_comments_not_found_by_permlink" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" all data @@ -279,10 +286,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:(pt - epoch).total_seconds() <= INT32_MAX: Datetime overflowunable to convert ISO-formatted string to fc::time_point_sec" - + method: "list_comments_future_date" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" no data @@ -310,10 +319,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Day of month value is out of range 1..31:Day of month value is out of range 1..31: unable to convert ISO-formatted string to fc::time_point_sec" - + method: "list_comments_day_of_the_month_out_of_range" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" data exist in database @@ -633,9 +644,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:root != nullptr: Could not find comment vi1son/." + method: "list_comments_only_root_author" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind database_api.list_comments patterns test order "by_root" required values (comment of a post) @@ -776,9 +790,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:child != nullptr: Could not find comment vi1son/." + method: "list_comments_not_found" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind database_api.list_comments patterns test order "by_root" wrong child_permlink @@ -811,9 +828,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:child != nullptr: Could not find comment vi1son/randomvalues." + method: "list_comments_not_found_vi1son_randomvalues" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind database_api.list_comments patterns test order "by_root" wrong val @@ -846,9 +866,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:root != nullptr: Could not find comment giv/winner." + method: "list_comments_not_found_giv_winner" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] ######################## PARENT ######################## --- @@ -1028,9 +1051,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:child != nullptr: Could not find comment givemeyoursteem/." + method: "list_comments_not_found_givemeyoursteem" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind database_api.list_comments patterns test order "by_parent" all data @@ -1173,9 +1199,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:comment != nullptr: Could not find comment givemeyoursteem/." + method: "list_comments_not_found_givemeyoursteem2" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind database_api.list_comments patterns test order "by_author_last_update" correct date and author wrong permlink @@ -1208,9 +1237,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:comment != nullptr: Could not find comment givemeyoursteem/winners-of-steemit-food-challenge-3." + method: "list_comments_not_found_givemeyoursteem_permlink" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind database_api.list_comments patterns test order "by_author_last_update" correct date author and permlink @@ -1349,10 +1381,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Day of month value is out of range 1..31:Day of month value is out of range 1..31: unable to convert ISO-formatted string to fc::time_point_sec" - + method: "list_comments_day_out_of_range_empty" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind database_api.list_comments patterns test order "by_last_update" date in author @@ -1385,10 +1419,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Day of month value is out of range 1..31:Day of month value is out of range 1..31: unable to convert ISO-formatted string to fc::time_point_sec" - + method: "list_comments_day_out_of_range_start_0" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind database_api.list_comments patterns test order "by_last_update" good date @@ -1457,10 +1493,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "basic_string::at: __n (which is 0) >= this->size() (which is 0):basic_string::at: __n (which is 0) >= this->size() (which is 0): unable to convert ISO-formatted string to fc::time_point_sec" - + method: "list_comments_day_out_of_range_start_1" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind database_api.list_comments patterns test order "by_last_update" very future date @@ -1492,10 +1530,12 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:(pt - epoch).total_seconds() <= INT32_MAX: Datetime overflowunable to convert ISO-formatted string to fc::time_point_sec" - + method: "list_comments_day_out_of_range_start_2" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind database_api.list_comments patterns test order "by_last_update" future date @@ -1558,11 +1598,14 @@ stages: { "start": ["", "2016-04-66T21:29:42", "", ""], "limit": 10, - "order": "by_last_update", + "order": "by_last_update" } response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Day of month value is out of range 1..31:Day of month value is out of range 1..31: unable to convert ISO-formatted string to fc::time_point_sec" + method: "list_comments_day_out_of_range_start_3" + directory: "database_api_patterns" + error_response: true + ignore_tags: ["timestamp"] \ No newline at end of file diff --git a/hivemind/tavern/validate_response.py b/hivemind/tavern/validate_response.py index 6bd3c2e8..bf05f9ec 100644 --- a/hivemind/tavern/validate_response.py +++ b/hivemind/tavern/validate_response.py @@ -68,20 +68,6 @@ def compare_response_with_pattern(response, method=None, directory=None, ignore_ msg = "Differences detected between response and pattern." raise PatternDiffException(msg) -# deprecated - replace by compare_response_with_pattern with error_response=True -def compare_error_data(response, data): - response_json = response.json() - error = response_json.get("error", None) - if error['data'] != data: - raise PatternDiffException('error data not equal, expected: "' + data + '" given: "' + error['data'] + '"') - -# deprecated - replace by compare_response_with_pattern with error_response=True -def compare_error_message(response, message): - response_json = response.json() - error = response_json.get("error", None) - if error['message'] != message: - raise PatternDiffException('error message not equal, expected: "' + message + '" given: "' + error['message'] + '"') - def null_result(response): response_json = response.json() result = response_json.get("result", None) -- GitLab From 526236230e6f4c8ae91af73f197d9818659354b1 Mon Sep 17 00:00:00 2001 From: ABW Date: Tue, 25 Aug 2020 14:46:29 +0200 Subject: [PATCH 38/49] [ABW]: plenty of database_api tests marked as passing, others have less problems now --- .../test_bridge_api_patterns.tavern.yaml | 2 +- .../test_database_api_patterns.tavern.yaml | 86 +++++++------------ 2 files changed, 30 insertions(+), 58 deletions(-) diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index 8852eed1..2ced6862 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -33,7 +33,7 @@ marks: - patterntest - failing - - xfail # payout is zero in some cases, grey, flag_weight + - xfail # grey, flag_weight includes: - !include common.yaml diff --git a/hivemind/tavern/test_database_api_patterns.tavern.yaml b/hivemind/tavern/test_database_api_patterns.tavern.yaml index 18b4d8f2..3ebfe6a2 100644 --- a/hivemind/tavern/test_database_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_database_api_patterns.tavern.yaml @@ -4,7 +4,7 @@ marks: - patterntest - failing - - xfail # payouts, active, escaping + - xfail # escaping includes: - !include common.yaml @@ -34,8 +34,6 @@ marks: - patterntest - - failing - - xfail # active includes: - !include common.yaml @@ -175,9 +173,7 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" all data marks: - - patterntest - - failing - - xfail # active, payouts (only because parameters were changed so results only cover specific posts) + - patterntest # passing only because parameters were changed so results only cover specific posts includes: - !include common.yaml @@ -216,9 +212,7 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" future data marks: - - patterntest - - failing - - xfail # active, payouts; show first posts comments + - patterntest # show first posts comments includes: - !include common.yaml @@ -318,9 +312,9 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" data exist in database marks: - - patterntest + - patterntest # incomparable with original due to cashout_time differences - failing - - xfail # active; incomparable with original due to cashout_time differences + - xfail # active includes: - !include common.yaml @@ -354,9 +348,9 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_cashout_time" data exist in database marks: - - patterntest + - patterntest # incomparable with original due to cashout_time differences (same pattern as in list_comments_by_cashout_first_date) - failing - - xfail # active; incomparable with original due to cashout_time differences (same pattern as in list_comments_by_cashout_first_date) + - xfail # active includes: - !include common.yaml @@ -393,7 +387,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest - failing - - xfail # active, payouts + - xfail # active includes: - !include common.yaml @@ -424,7 +418,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest - failing - - xfail # active, escaping + - xfail # escaping includes: - !include common.yaml @@ -453,9 +447,9 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_permlink" good permlink marks: - - patterntest + - patterntest # author first - when empty, takes alphabetical (later by permlink) - failing - - xfail # active, escaping; author first - when empty, takes alphabetical (later by permlink) + - xfail # escaping includes: - !include common.yaml @@ -495,7 +489,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest - failing - - xfail # active, payouts, abs_rshares/vote_rshares prior to first payout + - xfail # abs_rshares/vote_rshares prior to first payout includes: - !include common.yaml @@ -536,7 +530,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" goo marks: - patterntest - failing - - xfail # active, payouts, escaping + - xfail # active, escaping includes: - !include common.yaml @@ -570,9 +564,7 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_root" no data marks: - - patterntest - - failing - - xfail # active, payouts; first two params are required + - patterntest # first two params are required includes: - !include common.yaml @@ -642,8 +634,6 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" req marks: - patterntest - - failing - - xfail # active includes: - !include common.yaml @@ -678,8 +668,6 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" req marks: - patterntest - - failing - - xfail # active includes: - !include common.yaml @@ -714,8 +702,6 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" all marks: - patterntest - - failing - - xfail # active includes: - !include common.yaml @@ -749,9 +735,9 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_root" with child_author marks: - - patterntest + - patterntest # child_author, child_permlink are optional - failing - - xfail # child_author, child_permlink are optional + - xfail includes: - !include common.yaml @@ -889,9 +875,9 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_parent" no data marks: - - patterntest + - patterntest # first 2 params are required - failing - - xfail # active, payouts, title; first 2 params are required + - xfail # active, title includes: - !include common.yaml @@ -927,7 +913,6 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest - includes: - !include common.yaml @@ -994,10 +979,9 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_parent" child_author marks: - - patterntest + - patterntest # child_author, child_permlink are optional - failing - - xfail # child_author, child_permlink are optional - + - xfail includes: - !include common.yaml @@ -1065,9 +1049,6 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest - - failing - - xfail # active, payouts - includes: - !include common.yaml @@ -1102,9 +1083,7 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_author_last_update" correct date marks: - - patterntest - - failing - - xfail # active, payouts, incomparable with original (bug in fat node using wrong index) + - patterntest # incomparable with original (bug in fat node using wrong index) includes: - !include common.yaml @@ -1208,9 +1187,7 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_author_last_update" correct date author and permlink marks: - - patterntest - - failing - - xfail # active, payouts, incomparable with original (bug in fat node using wrong index) + - patterntest # incomparable with original (bug in fat node using wrong index) includes: - !include common.yaml @@ -1244,9 +1221,7 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_author_last_update" correct author and date marks: - - patterntest - - failing - - xfail # active, incomparable with original (bug in fat node using wrong index) + - patterntest # incomparable with original (bug in fat node using wrong index) includes: - !include common.yaml @@ -1280,10 +1255,7 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_author_last_update" not full author and corr date marks: - - patterntest - - failing - - xfail # active, incomparable with original (bug in fat node using wrong index); output should be the same as prev test or with completely diff author - + - patterntest # incomparable with original (bug in fat node using wrong index); output should be the same as prev test or with completely diff author includes: - !include common.yaml @@ -1349,9 +1321,9 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_last_update" date in author marks: - - patterntest + - patterntest # first arg is author, not date (error about date) - failing - - xfail # first arg is author, not date (error about date) + - xfail includes: @@ -1387,7 +1359,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_last_upda marks: - patterntest - failing - - xfail # active, differences in rshares/weight after empty payout + - xfail # differences in rshares/weight after empty payout includes: @@ -1492,9 +1464,9 @@ stages: test_name: Hivemind database_api.list_comments patterns test order "by_last_update" future date marks: - - patterntest + - patterntest # show last comments in base - failing - - xfail # active, beneficiaries as dict; show last comments in base + - xfail # beneficiaries as dict includes: - !include common.yaml -- GitLab From 3f37971408da140ccd4c31fbb46a2615654e7321 Mon Sep 17 00:00:00 2001 From: ABW Date: Tue, 25 Aug 2020 15:22:54 +0200 Subject: [PATCH 39/49] [ABW]: added .orig files for new bridge_api tests --- .../get_account_posts_sort_blog.orig.json | 442 + .../get_account_posts_sort_comments.orig.json | 1 + .../get_account_posts_sort_feed.orig.json | 1 + .../get_account_posts_sort_payout.orig.json | 1 + .../get_account_posts_sort_replies.orig.json | 1031 ++ .../get_discussion_gtg.orig.json | 416 + .../get_payout_stats_over_limit.orig.json | 5 + .../get_post_gtg.orig.json | 754 ++ .../get_post_header_gtg.orig.json | 7 + .../get_profile_gtg.orig.json | 25 + .../get_ranked_posts_created.orig.json | 2196 ++++ .../get_ranked_posts_hot.orig.json | 10354 ++++++++++++++++ .../get_ranked_posts_invalid_sort.orig.json | 5 + .../get_ranked_posts_muted.orig.json | 2221 ++++ .../get_ranked_posts_payout.orig.json | 1 + ...get_ranked_posts_payout_comments.orig.json | 3681 ++++++ .../get_ranked_posts_promoted.orig.json | 98 + .../get_ranked_posts_tag_hive-123.orig.json | 1 + ...get_ranked_posts_tag_petrodollar.orig.json | 477 + ...et_relationship_between_accounts.orig.json | 7 + ...ionship_between_accounts_follows.orig.json | 7 + ...ionship_between_accounts_ignores.orig.json | 7 + .../get_trending_topics_limit_2.orig.json | 10 + .../get_trending_topics_over_limit.orig.json | 5 + 24 files changed, 21753 insertions(+) create mode 100644 hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_account_posts_sort_comments.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_account_posts_sort_feed.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_account_posts_sort_payout.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_account_posts_sort_replies.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_discussion_gtg.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_payout_stats_over_limit.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_post_gtg.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_post_header_gtg.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_profile_gtg.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_created.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_invalid_sort.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout_comments.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_promoted.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_hive-123.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_petrodollar.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_follows.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_ignores.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_trending_topics_limit_2.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_trending_topics_over_limit.orig.json diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.orig.json b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.orig.json new file mode 100644 index 00000000..6c667880 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.orig.json @@ -0,0 +1,442 @@ +[ + { + "active_votes": [ + { + "rshares": "375241", + "voter": "dantheman" + }, + { + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "rshares": "5100", + "voter": "steemit78" + }, + { + "rshares": "1259167", + "voter": "anonymous" + }, + { + "rshares": "318519", + "voter": "hello" + }, + { + "rshares": "153384", + "voter": "world" + }, + { + "rshares": "-936400", + "voter": "ned" + }, + { + "rshares": "59412", + "voter": "fufubar1" + }, + { + "rshares": "14997", + "voter": "anonymous1" + }, + { + "rshares": "1441", + "voter": "red" + }, + { + "rshares": "551390835500", + "voter": "liondani" + }, + { + "rshares": "82748", + "voter": "roadscape" + }, + { + "rshares": "10772", + "voter": "xeroc" + }, + { + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "rshares": "498863058", + "voter": "joelinux" + }, + { + "rshares": "9590417", + "voter": "piranhax" + }, + { + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "rshares": "422984262", + "voter": "acidyo" + }, + { + "rshares": "47179379651", + "voter": "tosch" + }, + { + "rshares": "7831667988", + "voter": "klye" + }, + { + "rshares": "1019950749", + "voter": "coar" + }, + { + "rshares": "1746058458", + "voter": "murh" + }, + { + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "rshares": "0", + "voter": "hien-tran" + }, + { + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "rshares": "40624969", + "voter": "ben99" + }, + { + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "rshares": "917398502", + "voter": "decrypt" + }, + { + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "rshares": "1037079223", + "voter": "condra" + }, + { + "rshares": "233032838", + "voter": "jearson" + }, + { + "rshares": "240809500", + "voter": "tritium" + }, + { + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "rshares": "226074637", + "voter": "artjedi" + }, + { + "rshares": "931542394", + "voter": "anduweb" + }, + { + "rshares": "2292983350", + "voter": "inertia" + }, + { + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "rshares": "266262926", + "voter": "desmonid" + }, + { + "rshares": "71498008", + "voter": "madhatting" + }, + { + "rshares": "23726644841", + "voter": "ubg" + }, + { + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "rshares": "131577259", + "voter": "gribgo" + }, + { + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "rshares": "28907874049", + "voter": "orm" + }, + { + "rshares": "528988007", + "voter": "qonq99" + }, + { + "rshares": "129537329", + "voter": "rd7783" + }, + { + "rshares": "615020728", + "voter": "slava" + }, + { + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "rshares": "95219365", + "voter": "curator" + }, + { + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "rshares": "0", + "voter": "solos" + }, + { + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "rshares": "0", + "voter": "blysards" + }, + { + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "rshares": "1279854", + "voter": "nigmat" + }, + { + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "rshares": "10847083143", + "voter": "metrox" + }, + { + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "rshares": "710989138", + "voter": "romancs" + }, + { + "rshares": "59366614", + "voter": "luke490" + }, + { + "rshares": "58762473", + "voter": "bro66" + }, + { + "rshares": "201822591", + "voter": "future24" + }, + { + "rshares": "58623688", + "voter": "mythras" + }, + { + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "rshares": "0", + "voter": "matrixdweller" + }, + { + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "rshares": "54761612", + "voter": "edbriv" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "rshares": "52740989", + "voter": "tcstix" + }, + { + "rshares": "49467477", + "voter": "friedwater" + }, + { + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "rshares": "54017869", + "voter": "zelious" + }, + { + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "rshares": "53196086", + "voter": "f1111111" + }, + { + "rshares": "0", + "voter": "anomaly" + }, + { + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "rshares": "0", + "voter": "buckland" + }, + { + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_payout_value": "0.942 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "payout": 1.698, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 92 + }, + "title": "Welcome to Steem!", + "updated": "2016-03-30T18:30:18", + "url": "/meta/@steemit/firstpost" + } +] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_comments.orig.json b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_comments.orig.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_comments.orig.json @@ -0,0 +1 @@ +[] diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_feed.orig.json b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_feed.orig.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_feed.orig.json @@ -0,0 +1 @@ +[] diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_payout.orig.json b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_payout.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_payout.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_replies.orig.json b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_replies.orig.json new file mode 100644 index 00000000..a768bae2 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_replies.orig.json @@ -0,0 +1,1031 @@ +[ + { + "active_votes": [], + "author": "jack8831", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "You support fantastic system now!", + "category": "meta", + "children": 0, + "created": "2016-08-24T09:30:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160824t093007335z", + "post_id": 729186, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-24T09:30:03", + "url": "/meta/@steemit/firstpost#@jack8831/re-steemit-firstpost-20160824t093007335z" + }, + { + "active_votes": [ + { + "rshares": "-75407549856", + "voter": "vault" + }, + { + "rshares": "865125771", + "voter": "rittr" + }, + { + "rshares": "57599604", + "voter": "abanks1000" + }, + { + "rshares": "54993432", + "voter": "landarin" + } + ], + "author": "rittr", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I am Comment **Number 35** on the first Steemit Poster evaaar!", + "category": "meta", + "children": 0, + "created": "2016-08-24T02:53:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -74429831049, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160824t025355199z", + "post_id": 726644, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 1.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-24T02:53:57", + "url": "/meta/@steemit/firstpost#@rittr/re-steemit-firstpost-20160824t025355199z" + }, + { + "active_votes": [ + { + "rshares": "53122308", + "voter": "mandarin99" + } + ], + "author": "future24", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Thank you!", + "category": "meta", + "children": 0, + "created": "2016-08-18T03:02:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53122308, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160818t030224104z", + "post_id": 650694, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-18T03:02:24", + "url": "/meta/@steemit/firstpost#@future24/re-steemit-firstpost-20160818t030224104z" + }, + { + "active_votes": [ + { + "rshares": "23067571373", + "voter": "ubg" + }, + { + "rshares": "999297062", + "voter": "juurop" + }, + { + "rshares": "823625727", + "voter": "usb" + }, + { + "rshares": "5546862495", + "voter": "tannukas6" + }, + { + "rshares": "694394716", + "voter": "tox" + }, + { + "rshares": "692185541", + "voter": "runridefly" + } + ], + "author": "ubg", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "You have quadruple the liquidity any of the exchanges have. \n## Just make it rain!\nhttp://i.imgur.com/Maj5zM2.gif", + "category": "meta", + "children": 0, + "created": "2016-08-13T14:32:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://i.imgur.com/Maj5zM2.gif" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 31823936914, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160813t143213453z", + "post_id": 585908, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 6 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-13T14:32:18", + "url": "/meta/@steemit/firstpost#@ubg/re-steemit-firstpost-20160813t143213453z" + }, + { + "active_votes": [ + { + "rshares": "47738566", + "voter": "alktoni" + }, + { + "rshares": "555987168", + "voter": "funkywanderer" + }, + { + "rshares": "45336058", + "voter": "andressilvera" + }, + { + "rshares": "50997147", + "voter": "david.prochnow" + } + ], + "author": "flandude", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "http://i.imgsafe.org/d01598860e.jpg", + "category": "meta", + "children": 0, + "created": "2016-08-11T22:53:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://i.imgsafe.org/d01598860e.jpg" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 700058939, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160811t225325571z", + "post_id": 563725, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-11T22:53:27", + "url": "/meta/@steemit/firstpost#@flandude/re-steemit-firstpost-20160811t225325571z" + }, + { + "active_votes": [ + { + "rshares": "74273734", + "voter": "bitmaxt" + }, + { + "rshares": "56152551", + "voter": "lovetosteemit" + } + ], + "author": "deanliu", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "is this post truly the time zero, the origin, the big bang of all?", + "category": "meta", + "children": 0, + "created": "2016-08-10T08:33:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 130426285, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160810t083336206z", + "post_id": 537479, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-10T08:33:54", + "url": "/meta/@steemit/firstpost#@deanliu/re-steemit-firstpost-20160810t083336206z" + }, + { + "active_votes": [ + { + "rshares": "90409341", + "voter": "jelloducky" + }, + { + "rshares": "58727187", + "voter": "rezrez" + } + ], + "author": "jelloducky", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "This platform is inspiring, thank you so much!", + "category": "meta", + "children": 0, + "created": "2016-08-07T21:53:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 149136528, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160807t215340468z", + "post_id": 498164, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-07T21:53:39", + "url": "/meta/@steemit/firstpost#@jelloducky/re-steemit-firstpost-20160807t215340468z" + }, + { + "active_votes": [], + "author": "rednetkjh", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service", + "category": "meta", + "children": 0, + "created": "2016-08-04T06:16:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "links": [ + "https://steemit.com/bitcoin/@rednetkjh/bitcoin-chart-analysis-service" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160804t061605576z", + "post_id": 440665, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-04T06:16:00", + "url": "/meta/@steemit/firstpost#@rednetkjh/re-steemit-firstpost-20160804t061605576z" + }, + { + "active_votes": [ + { + "rshares": "2725768", + "voter": "cire81" + }, + { + "rshares": "154885141", + "voter": "lorddominik007" + } + ], + "author": "imarealboy777", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Vesting , vesting 1 2 3 .", + "category": "meta", + "children": 0, + "created": "2016-08-01T23:20:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 157610909, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160801t232001768z", + "post_id": 401002, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-01T23:20:36", + "url": "/meta/@steemit/firstpost#@imarealboy777/re-steemit-firstpost-20160801t232001768z" + }, + { + "active_votes": [ + { + "rshares": "-336740570", + "voter": "dtbahoney" + }, + { + "rshares": "52272448", + "voter": "edbriv" + } + ], + "author": "edbriv", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "GO STEEM !!! go!!!", + "category": "meta", + "children": 0, + "created": "2016-08-01T18:12:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -284468122, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160801t184846033z", + "post_id": 395733, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-08-01T18:12:00", + "url": "/meta/@steemit/firstpost#@edbriv/re-steemit-firstpost-20160801t184846033z" + }, + { + "active_votes": [ + { + "rshares": "7413824", + "voter": "cire81" + } + ], + "author": "bestmalik", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "GO STEEM !!!", + "category": "meta", + "children": 0, + "created": "2016-07-26T03:57:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 7413824, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160726t035722561z", + "post_id": 264599, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-26T03:57:24", + "url": "/meta/@steemit/firstpost#@bestmalik/re-steemit-firstpost-20160726t035722561z" + }, + { + "active_votes": [], + "author": "lenerdie", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Let's get crazy! happy steemit to everybody!", + "category": "meta", + "children": 0, + "created": "2016-07-26T03:50:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160726t035056026z", + "post_id": 264501, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-26T03:50:57", + "url": "/meta/@steemit/firstpost#@lenerdie/re-steemit-firstpost-20160726t035056026z" + }, + { + "active_votes": [ + { + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "rshares": "348852497", + "voter": "kamvreto" + }, + { + "rshares": "247328995", + "voter": "adinda" + } + ], + "author": "kamvreto", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "old post, starting the steemit like today.\nmy quote of the day \"Anyone can sell their STEEM for cash or vest it to boost their voting power.\"", + "category": "meta", + "children": 0, + "created": "2016-07-25T22:20:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 977987362, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160725t221949749z", + "post_id": 259905, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-25T22:20:24", + "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160725t221949749z" + }, + { + "active_votes": [], + "author": "zhuvazhuva", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\u041f\u0440\u0438\u0432\u0435\u0442!", + "category": "meta", + "children": 0, + "created": "2016-07-23T13:03:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160723t130259286z", + "post_id": 214663, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-23T13:03:00", + "url": "/meta/@steemit/firstpost#@zhuvazhuva/re-steemit-firstpost-20160723t130259286z" + }, + { + "active_votes": [ + { + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "rshares": "167168344", + "voter": "yarike" + }, + { + "rshares": "35874847", + "voter": "pr3ttyp3rf3ct" + } + ], + "author": "kamvreto", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "happy steeming all !!", + "category": "meta", + "children": 0, + "created": "2016-07-22T22:53:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 595502250, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160722t225246211z", + "post_id": 206329, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-22T22:53:18", + "url": "/meta/@steemit/firstpost#@kamvreto/re-steemit-firstpost-20160722t225246211z" + }, + { + "active_votes": [ + { + "rshares": "689526018", + "voter": "patrick-g" + }, + { + "rshares": "46092586", + "voter": "matt876" + }, + { + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "patrick-g", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "You can also vote on your posts if you want.:) As in when you reply to other posts. Those are posts you can vote yourself up on.... :)", + "category": "meta", + "children": 0, + "created": "2016-07-22T20:10:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 787771629, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160722t201007967z", + "post_id": 203716, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-22T20:10:09", + "url": "/meta/@steemit/firstpost#@patrick-g/re-steemit-firstpost-20160722t201007967z" + }, + { + "active_votes": [ + { + "rshares": "689526018", + "voter": "patrick-g" + } + ], + "author": "sictransitgloria", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Go Steem!", + "category": "meta", + "children": 0, + "created": "2016-07-21T23:37:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 689526018, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160721t233702742z", + "post_id": 189812, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T23:37:00", + "url": "/meta/@steemit/firstpost#@sictransitgloria/re-steemit-firstpost-20160721t233702742z" + }, + { + "active_votes": [ + { + "rshares": "425903066", + "voter": "gekko" + }, + { + "rshares": "689526018", + "voter": "patrick-g" + }, + { + "rshares": "145914460", + "voter": "allmonitors" + } + ], + "author": "gekko", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I leave my mark here in mythical post 8]", + "category": "meta", + "children": 0, + "created": "2016-07-21T22:39:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1261343544, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160721t223937736z", + "post_id": 189029, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-21T22:39:39", + "url": "/meta/@steemit/firstpost#@gekko/re-steemit-firstpost-20160721t223937736z" + }, + { + "active_votes": [ + { + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "rshares": "231619534", + "voter": "eggstraordinair" + }, + { + "rshares": "123321995", + "voter": "allmonitors" + } + ], + "author": "kewpiedoll", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Why did @ned flag this post?", + "category": "meta", + "children": 4, + "created": "2016-07-20T21:01:54", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "tags": [ + "meta" + ], + "users": [ + "ned" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1062147701, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.0, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160720t210201326z", + "post_id": 166558, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T21:01:54", + "url": "/meta/@steemit/firstpost#@kewpiedoll/re-steemit-firstpost-20160720t210201326z" + }, + { + "active_votes": [ + { + "rshares": "25204741266", + "voter": "justtryme90" + }, + { + "rshares": "707206172", + "voter": "patrick-g" + }, + { + "rshares": "226074637", + "voter": "artjedi" + }, + { + "rshares": "52153025", + "voter": "f1111111" + } + ], + "author": "kingtylervvs", + "author_payout_value": "0.039 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Thank you for posting. We all LOVE steem!\n\nI up-voted you too... BTW, should steemit let us steemers advertise using steem? Be sure to tell everyone you know to come vote here at: https://steemit.com/steemit/@kingtylervvs/if-steemit-ever-does-decide-to-advertise-there-is-only-1-way-it-could-work-in-my-opinion-debate\n\nThis is a democratic community decision.
\n\n", + "category": "meta", + "children": 1, + "created": "2016-07-20T12:11:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://www.animatedimages.org/data/media/75/animated-train-image-0018.gif", + "http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif", + "https://steem.io/images/steem.png" + ], + "tags": [ + "meta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 26190175100, + "parent_author": "steemit", + "parent_permlink": "firstpost", + "payout": 0.039, + "payout_at": "2016-08-24T19:59:42", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemit-firstpost-20160720t121101482z", + "post_id": 157998, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "RE: Welcome to Steem!", + "updated": "2016-07-20T12:11:00", + "url": "/meta/@steemit/firstpost#@kingtylervvs/re-steemit-firstpost-20160720t121101482z" + } +] diff --git a/hivemind/tavern/bridge_api_patterns/get_discussion_gtg.orig.json b/hivemind/tavern/bridge_api_patterns/get_discussion_gtg.orig.json new file mode 100644 index 00000000..51bb3756 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_discussion_gtg.orig.json @@ -0,0 +1,416 @@ +{ + "gary-smith/re-gtg-missing-rewards-while-mining-20160821t125207685z": { + "active_votes": [], + "author": "gary-smith", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", + "category": "mining", + "children": 0, + "created": "2016-08-21T12:52:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "mining" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "payout": 0.0, + "payout_at": "2016-09-21T13:01:45", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", + "post_id": 693858, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Missing rewards while mining - common mistake with keys", + "updated": "2016-08-21T12:52:06", + "url": "/mining/@gtg/missing-rewards-while-mining#@gary-smith/re-gtg-missing-rewards-while-mining-20160821t125207685z" + }, + "gtg/missing-rewards-while-mining": { + "active_votes": [ + { + "rshares": "93765183", + "voter": "gandalf" + }, + { + "rshares": "503120540", + "voter": "paco-steem" + }, + { + "rshares": "5941196935", + "voter": "spaninv" + }, + { + "rshares": "9975325205", + "voter": "johnerfx" + }, + { + "rshares": "382763916645", + "voter": "taoteh1221" + }, + { + "rshares": "393291314", + "voter": "stiletto" + }, + { + "rshares": "867516503", + "voter": "johnerminer" + }, + { + "rshares": "2480411371", + "voter": "gary-smith" + }, + { + "rshares": "49812626493", + "voter": "gtg" + }, + { + "rshares": "7921157988", + "voter": "dasha" + }, + { + "rshares": "30256483332", + "voter": "r4fken" + }, + { + "rshares": "4368322380", + "voter": "thegoodguy" + }, + { + "rshares": "1775754972", + "voter": "screasey" + }, + { + "rshares": "14634652647", + "voter": "artakan" + }, + { + "rshares": "539611572", + "voter": "qonq99" + }, + { + "rshares": "4923096406", + "voter": "fishborne" + }, + { + "rshares": "1377860390", + "voter": "steeminer" + }, + { + "rshares": "726277176", + "voter": "spinner" + }, + { + "rshares": "16175410131", + "voter": "thebluepanda" + }, + { + "rshares": "2362437240", + "voter": "ullikume" + }, + { + "rshares": "2988929662", + "voter": "mione" + }, + { + "rshares": "851733457", + "voter": "steeminion" + }, + { + "rshares": "14814536032", + "voter": "sponge-bob" + }, + { + "rshares": "512292840", + "voter": "kev7000" + }, + { + "rshares": "289407830", + "voter": "steeminnow" + }, + { + "rshares": "11301045003", + "voter": "brains" + } + ], + "author": "gtg", + "author_payout_value": "0.000 HBD", + "author_reputation": 57.34, + "beneficiaries": [], + "blacklists": [], + "body": "Suppose your miner node found `pow2`, but your `total_missed` count increased, instead of generating a block.\n\nIf this happens, double check your keys used in the `config.ini` file.\n\n```\nwitness = \"minerwitness\"\n\nminer = [\"minerwitness\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner1\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner2\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner3\",\"WIF_ACTIVE_PRIVATE_KEY\"]\n\nmining-threads = 4\n\nprivate-key = WIF_SIGNING_PRIVATE_KEY\n```\n\nUsing keys without paying attention to their roles is a common mistake. @artakan [found out](https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account \"@artakan - Do not use your steemit.com account for mining\")\nthat issues with missing blocks tend to happen when you are using an account that was created through [steemit.com](https://steemit.com/ \"Blogging is the new mining\") but seems to work for the mined account.\n\nSo erroneous configuration might work for your mined account by pure coincidence. In other words, the same key has been defined for all roles, so: `WIF_ACTIVE_PRIVATE_KEY` is exactly the same as `WIF_SIGNING_PRIVATE_KEY`.\n\n![witness](https://grey.house/img/witness2.jpg)\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", + "category": "mining", + "children": 6, + "created": "2016-08-21T12:29:18", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account" + ], + "tags": [ + "mining", + "steem", + "steem-mining" + ], + "users": [ + "artakan" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 568650179247, + "payout": 0.432, + "payout_at": "2016-09-21T13:01:45", + "pending_payout_value": "0.432 HBD", + "percent_steem_dollars": 10000, + "permlink": "missing-rewards-while-mining", + "post_id": 693716, + "promoted": "0.000 HBD", + "replies": [ + "gary-smith/re-gtg-missing-rewards-while-mining-20160821t125207685z", + "gtg/re-gtg-missing-rewards-while-mining-20160821t131242531z", + "timcliff/re-gtg-missing-rewards-while-mining-20160827t141319137z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 26 + }, + "title": "Missing rewards while mining - common mistake with keys", + "updated": "2016-08-21T13:02:30", + "url": "/mining/@gtg/missing-rewards-while-mining" + }, + "gtg/re-gtg-missing-rewards-while-mining-20160821t131242531z": { + "active_votes": [], + "author": "gtg", + "author_payout_value": "0.000 HBD", + "author_reputation": 57.34, + "beneficiaries": [], + "blacklists": [], + "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", + "category": "mining", + "children": 0, + "created": "2016-08-21T13:12:45", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemit.chat/channel/mining" + ], + "tags": [ + "mining" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "payout": 0.0, + "payout_at": "2016-09-21T13:01:45", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", + "post_id": 693986, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Missing rewards while mining - common mistake with keys", + "updated": "2016-08-21T13:12:45", + "url": "/mining/@gtg/missing-rewards-while-mining#@gtg/re-gtg-missing-rewards-while-mining-20160821t131242531z" + }, + "gtg/re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z": { + "active_votes": [], + "author": "gtg", + "author_payout_value": "0.000 HBD", + "author_reputation": 57.34, + "beneficiaries": [], + "blacklists": [], + "body": "yes, you can want to use [steemd.com/@youraccount](https://steemd.com) link to check witness details (at the time of generating block your miner become witness)", + "category": "mining", + "children": 2, + "created": "2016-08-27T15:38:00", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemd.com" + ], + "tags": [ + "mining" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "timcliff", + "parent_permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", + "payout": 0.0, + "payout_at": "2016-09-21T13:01:45", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z", + "post_id": 767496, + "promoted": "0.000 HBD", + "replies": [ + "timcliff/re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Missing rewards while mining - common mistake with keys", + "updated": "2016-08-27T15:38:00", + "url": "/mining/@gtg/missing-rewards-while-mining#@gtg/re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z" + }, + "gtg/re-timcliff-re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t183943508z": { + "active_votes": [], + "author": "gtg", + "author_payout_value": "0.000 HBD", + "author_reputation": 57.34, + "beneficiaries": [], + "blacklists": [], + "body": "Please use your **active private key** for a miner, instead your owner key.", + "category": "mining", + "children": 0, + "created": "2016-08-27T18:39:45", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "is_paidout": false, + "json_metadata": { + "tags": [ + "mining" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "timcliff", + "parent_permlink": "re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", + "payout": 0.0, + "payout_at": "2016-09-21T13:01:45", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-timcliff-re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t183943508z", + "post_id": 769396, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Missing rewards while mining - common mistake with keys", + "updated": "2016-08-27T18:39:45", + "url": "/mining/@gtg/missing-rewards-while-mining#@gtg/re-timcliff-re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t183943508z" + }, + "timcliff/re-gtg-missing-rewards-while-mining-20160827t141319137z": { + "active_votes": [], + "author": "timcliff", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", + "category": "mining", + "children": 3, + "created": "2016-08-27T14:13:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "mining" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "payout": 0.0, + "payout_at": "2016-09-21T13:01:45", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", + "post_id": 766749, + "promoted": "0.000 HBD", + "replies": [ + "gtg/re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Missing rewards while mining - common mistake with keys", + "updated": "2016-08-27T14:13:18", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-missing-rewards-while-mining-20160827t141319137z" + }, + "timcliff/re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z": { + "active_votes": [], + "author": "timcliff", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I've been mining since last Friday and haven't found a block yet, so there are no witness details for my account yet. I wanted to check the \"total_missed\" count, since it sounds like this post could be describing my issue. After talking to peeps on Steemit chat, it sounds like I need to change the keys I'm using. I'm currently using my 'owner private' key for both.", + "category": "mining", + "children": 1, + "created": "2016-08-27T15:51:15", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "is_paidout": false, + "json_metadata": { + "tags": [ + "mining" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z", + "payout": 0.0, + "payout_at": "2016-09-21T13:01:45", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", + "post_id": 767624, + "promoted": "0.000 HBD", + "replies": [ + "gtg/re-timcliff-re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t183943508z" + ], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Missing rewards while mining - common mistake with keys", + "updated": "2016-08-27T15:51:15", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z" + } +} diff --git a/hivemind/tavern/bridge_api_patterns/get_payout_stats_over_limit.orig.json b/hivemind/tavern/bridge_api_patterns/get_payout_stats_over_limit.orig.json new file mode 100644 index 00000000..4c29a759 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_payout_stats_over_limit.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (251 > 250)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns/get_post_gtg.orig.json b/hivemind/tavern/bridge_api_patterns/get_post_gtg.orig.json new file mode 100644 index 00000000..b9d00edc --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_post_gtg.orig.json @@ -0,0 +1,754 @@ +{ + "active_votes": [ + { + "rshares": "15699644918310", + "voter": "dantheman" + }, + { + "rshares": "28854876032", + "voter": "anonymous" + }, + { + "rshares": "8484864209575", + "voter": "rainman" + }, + { + "rshares": "37843185317140", + "voter": "blocktrades" + }, + { + "rshares": "2090496972549", + "voter": "steemroller" + }, + { + "rshares": "74736896239", + "voter": "donaldtrump" + }, + { + "rshares": "335906168314", + "voter": "modprobe" + }, + { + "rshares": "6327415081631", + "voter": "wackou" + }, + { + "rshares": "33308040478", + "voter": "ihash" + }, + { + "rshares": "1714790303449", + "voter": "rossco99" + }, + { + "rshares": "912226370971", + "voter": "liondani" + }, + { + "rshares": "2468266694", + "voter": "boy" + }, + { + "rshares": "1975751593462", + "voter": "xeroc" + }, + { + "rshares": "2995664453", + "voter": "bue-witness" + }, + { + "rshares": "567206353", + "voter": "bunny" + }, + { + "rshares": "140485443412", + "voter": "complexring" + }, + { + "rshares": "41823927396", + "voter": "bue" + }, + { + "rshares": "1323151152", + "voter": "mini" + }, + { + "rshares": "170623771", + "voter": "moon" + }, + { + "rshares": "32232314318", + "voter": "aizensou" + }, + { + "rshares": "108216927683", + "voter": "bonapartist" + }, + { + "rshares": "91926650", + "voter": "gandalf" + }, + { + "rshares": "358786763103", + "voter": "boatymcboatface" + }, + { + "rshares": "297215153038", + "voter": "officialfuzzy" + }, + { + "rshares": "773689504778", + "voter": "pfunk" + }, + { + "rshares": "699635263343", + "voter": "cass" + }, + { + "rshares": "9031234362", + "voter": "proctologic" + }, + { + "rshares": "490844799", + "voter": "healthcare" + }, + { + "rshares": "715096804", + "voter": "daniel.pan" + }, + { + "rshares": "17603047506", + "voter": "dedriss" + }, + { + "rshares": "273299516223", + "voter": "chitty" + }, + { + "rshares": "104430794832", + "voter": "linouxis9" + }, + { + "rshares": "230014747", + "voter": "helen.tan" + }, + { + "rshares": "19049044601", + "voter": "daowisp" + }, + { + "rshares": "14623675138", + "voter": "valtr" + }, + { + "rshares": "116313551950", + "voter": "craig-grant" + }, + { + "rshares": "60023860440", + "voter": "lovelace" + }, + { + "rshares": "22731092140", + "voter": "joelinux" + }, + { + "rshares": "79387789605", + "voter": "kingscrown" + }, + { + "rshares": "471129748", + "voter": "paco-steem" + }, + { + "rshares": "426310899", + "voter": "ereismatias" + }, + { + "rshares": "5639122835", + "voter": "spaninv" + }, + { + "rshares": "7733788543", + "voter": "nate-atkins" + }, + { + "rshares": "1293680763", + "voter": "karask" + }, + { + "rshares": "1399620602", + "voter": "coar" + }, + { + "rshares": "1450957464", + "voter": "murh" + }, + { + "rshares": "363704119", + "voter": "edtorrez" + }, + { + "rshares": "537523962057", + "voter": "cyber" + }, + { + "rshares": "14807486260", + "voter": "thecryptofiend" + }, + { + "rshares": "9767505930", + "voter": "johnerfx" + }, + { + "rshares": "368352936", + "voter": "stiletto" + }, + { + "rshares": "55074207308", + "voter": "juanmiguelsalas" + }, + { + "rshares": "832120526", + "voter": "sunnyray" + }, + { + "rshares": "1021367115", + "voter": "fjccoin" + }, + { + "rshares": "848329794", + "voter": "johnerminer" + }, + { + "rshares": "44252149522", + "voter": "geoffrey" + }, + { + "rshares": "84721328962", + "voter": "truthtaco" + }, + { + "rshares": "636119227", + "voter": "ben99" + }, + { + "rshares": "23438529510", + "voter": "jparty" + }, + { + "rshares": "688449090", + "voter": "mammasitta" + }, + { + "rshares": "39092198167", + "voter": "gtg" + }, + { + "rshares": "3985585444", + "voter": "fuck.off" + }, + { + "rshares": "5429573755", + "voter": "iloveporn" + }, + { + "rshares": "1940554482", + "voter": "the.bot" + }, + { + "rshares": "6603022993", + "voter": "johnbradshaw" + }, + { + "rshares": "4605030334", + "voter": "the.whale" + }, + { + "rshares": "169187275390", + "voter": "dashpaymag" + }, + { + "rshares": "261023475510", + "voter": "asmolokalo" + }, + { + "rshares": "275298167273", + "voter": "roelandp" + }, + { + "rshares": "2098337565", + "voter": "romanskv" + }, + { + "rshares": "4363425866", + "voter": "unicornfarts" + }, + { + "rshares": "6486686814", + "voter": "kakradetome" + }, + { + "rshares": "18902778277", + "voter": "firepower" + }, + { + "rshares": "5644023807", + "voter": "cmtzco" + }, + { + "rshares": "36679008975", + "voter": "menta" + }, + { + "rshares": "4605414402", + "voter": "vote" + }, + { + "rshares": "4674772839", + "voter": "manoami" + }, + { + "rshares": "4848852438", + "voter": "kissmybutt" + }, + { + "rshares": "461256359", + "voter": "chamviet" + }, + { + "rshares": "1128966666", + "voter": "anwar78" + }, + { + "rshares": "353762811", + "voter": "rxhector" + }, + { + "rshares": "13452861200", + "voter": "bitshares101" + }, + { + "rshares": "19873104999", + "voter": "ausbitbank" + }, + { + "rshares": "184112913", + "voter": "ardina" + }, + { + "rshares": "16336147500", + "voter": "chriscrypto" + }, + { + "rshares": "4125723797", + "voter": "gikitiki" + }, + { + "rshares": "119466748741", + "voter": "jesta" + }, + { + "rshares": "3640445804", + "voter": "thegoodguy" + }, + { + "rshares": "75967203632", + "voter": "paco" + }, + { + "rshares": "19068212733", + "voter": "showmethecoinz" + }, + { + "rshares": "24373102947", + "voter": "igster" + }, + { + "rshares": "218061986", + "voter": "zoicneo" + }, + { + "rshares": "322673293", + "voter": "dr2073" + }, + { + "rshares": "12376071844", + "voter": "jpiper20" + }, + { + "rshares": "252909161", + "voter": "natali22" + }, + { + "rshares": "8322538338", + "voter": "mustafaomar" + }, + { + "rshares": "13618277527", + "voter": "all-of-us" + }, + { + "rshares": "919285482", + "voter": "nika" + }, + { + "rshares": "6588394536", + "voter": "geronimo" + }, + { + "rshares": "1901709746", + "voter": "cryptohustlin" + }, + { + "rshares": "2473087864", + "voter": "lostnuggett" + }, + { + "rshares": "31417575434", + "voter": "paquito" + }, + { + "rshares": "108742011", + "voter": "sergey22" + }, + { + "rshares": "575279737", + "voter": "steeminer" + }, + { + "rshares": "35468156360", + "voter": "fatboy" + }, + { + "rshares": "2204627326", + "voter": "trisnawati" + }, + { + "rshares": "389417359", + "voter": "vadim" + }, + { + "rshares": "6721829299", + "voter": "michaeldodridge" + }, + { + "rshares": "31188038738", + "voter": "celebr1ty" + }, + { + "rshares": "7097922529", + "voter": "lykkeliten" + }, + { + "rshares": "108632879", + "voter": "steemster1" + }, + { + "rshares": "2854890205", + "voter": "glitterpig" + }, + { + "rshares": "3046163199", + "voter": "jed78" + }, + { + "rshares": "685101796", + "voter": "metaflute" + }, + { + "rshares": "51143991", + "voter": "sharon" + }, + { + "rshares": "8278623961", + "voter": "rawnetics" + }, + { + "rshares": "16442949757", + "voter": "thebluepanda" + }, + { + "rshares": "2339485159", + "voter": "timcliff" + }, + { + "rshares": "727812194", + "voter": "darknet" + }, + { + "rshares": "31463628969", + "voter": "mibenkito" + }, + { + "rshares": "8270953480", + "voter": "trending" + }, + { + "rshares": "66036998", + "voter": "fruityloan" + }, + { + "rshares": "63377598", + "voter": "dezconocido" + }, + { + "rshares": "64149962", + "voter": "sizil" + }, + { + "rshares": "27539088793", + "voter": "nonlinearone" + }, + { + "rshares": "51120963", + "voter": "msjennifer" + }, + { + "rshares": "50828873", + "voter": "ciao" + }, + { + "rshares": "9007787064", + "voter": "thebotkiller" + }, + { + "rshares": "50521096", + "voter": "steemo" + }, + { + "rshares": "18974329448", + "voter": "nixonnox" + }, + { + "rshares": "50390768", + "voter": "steema" + }, + { + "rshares": "165051822", + "voter": "nonamer" + }, + { + "rshares": "52732264", + "voter": "vishal1" + }, + { + "rshares": "50183394", + "voter": "confucius" + }, + { + "rshares": "1506714481", + "voter": "unrealisback" + }, + { + "rshares": "51153233", + "voter": "jarvis" + }, + { + "rshares": "50692212", + "voter": "fortuner" + }, + { + "rshares": "225683099", + "voter": "mefisto" + }, + { + "rshares": "106783648", + "voter": "cinderphoenix" + }, + { + "rshares": "225874014", + "voter": "jimmytwoshoes" + }, + { + "rshares": "50684643", + "voter": "johnbyrd" + }, + { + "rshares": "50682252", + "voter": "thomasaustin" + }, + { + "rshares": "50673817", + "voter": "widell" + }, + { + "rshares": "51613018", + "voter": "vasilii" + }, + { + "rshares": "288593312", + "voter": "steeminion" + }, + { + "rshares": "50311250", + "voter": "revelbrooks" + }, + { + "rshares": "57636462", + "voter": "x5cc7fd68" + }, + { + "rshares": "52631453", + "voter": "mrlogic" + }, + { + "rshares": "16295017448", + "voter": "someguy123" + }, + { + "rshares": "50416427", + "voter": "curpose" + }, + { + "rshares": "60781652", + "voter": "sharonekelly" + }, + { + "rshares": "169640892", + "voter": "mrainp" + }, + { + "rshares": "55791783", + "voter": "lsd123452" + }, + { + "rshares": "92590152", + "voter": "runridefly" + }, + { + "rshares": "53142053", + "voter": "fleshtheworld" + }, + { + "rshares": "53116957", + "voter": "maximator15" + }, + { + "rshares": "373265099", + "voter": "ivet" + }, + { + "rshares": "50588612", + "voter": "troich" + }, + { + "rshares": "50271139", + "voter": "hitherise" + }, + { + "rshares": "1418732000", + "voter": "sponge-bob" + }, + { + "rshares": "574697529", + "voter": "grm" + }, + { + "rshares": "3524895174", + "voter": "ericbotticelli" + }, + { + "rshares": "50710305", + "voter": "prof" + }, + { + "rshares": "55019922", + "voter": "jhonione" + }, + { + "rshares": "126007971", + "voter": "keverw" + }, + { + "rshares": "54052181", + "voter": "topslim" + }, + { + "rshares": "50054445", + "voter": "coad" + }, + { + "rshares": "50825587", + "voter": "sofa" + }, + { + "rshares": "52918124", + "voter": "xomtux" + }, + { + "rshares": "54693363", + "voter": "steeminnow" + }, + { + "rshares": "51488252", + "voter": "efroul" + }, + { + "rshares": "50383632", + "voter": "zzzzzzzzz" + }, + { + "rshares": "51446137", + "voter": "asshai" + }, + { + "rshares": "54572306", + "voter": "cbdmegami" + }, + { + "rshares": "52397603", + "voter": "doze49" + }, + { + "rshares": "50125313", + "voter": "ladyboss" + }, + { + "rshares": "53279765", + "voter": "jpitt241" + } + ], + "author": "gtg", + "author_payout_value": "0.000 HBD", + "author_reputation": 57.34, + "beneficiaries": [], + "blacklists": [], + "body": "As you know, witness nodes are an essential part of the STEEM universe.\n\nIf I have a witness node with as much as (or as little as) 3% of witness approval, I can choose the right time to shut it down, listen to my favourite music album, walk my cat, and then start it up again, most probably without missing a block.\nA full-time witness, or one of the top19 witnesses, needs to produce blocks 1600 times more frequently.\nMaintaining such a server in the long run is not an easy task.\n\nWitnesses are vulnerable to DDoS attacks. An attacker who knows the network location of your witness node can saturate your uplink to a level that makes you unable to produce blocks on time. Effectively, this means **voting the witness out using a network-level attack**. Finding the IP address of your witness node is easier than you might think. Even if you follow the guidelines for setting up your public seed node on a different machine than the one you used to get your witness running, your witness still needs to connect to other nodes in the network.\nSo what does this mean? Take a look at: http://seeds.quisquis.de/steem.html\n(service provided by cyrano.witness)\n\nDoes any of these IP addresses look familiar?\nThe attacker still doesn't know which of them is yours, right?\n\nAn attack that makes the target IP unavailable for 3 seconds? Not exactly a difficult thing to do, right? So the attacker needs to make a guess by choosing from a set of suspected IP addresses he has obtained. Guessing doesn't cost him much. Neither does a high volume, short period DDoS attack. After that, he can see that your `total_missed` count increases, and he knows he guessed correctly. And then you are out.\n\n![witness](https://grey.house/img/witness2.jpg)\n\n## A concept of infrastructure: ##\n\n2 witness nodes (primary and backup)\n4 dedicated seed nodes\n\nOne witness node has your current signing key and does its job. The other is for failover, backup purposes. For example, whenever you need to upgrade your witness binary, you do that on the backup witness node, then change your signing key, so the backup node and the primary node switch their roles. \n**(Never leave your current signing key on two nodes at the same time!)**\n\nThese 4 seed nodes mentioned here only work on behalf of your witness i.e. they don\u2019t provide seed service on public network interfaces. \n_Your public seed node is not within the scope of this document._\n\nYour witness node connects **ONLY** to your seed nodes using VLAN or another private, low latency network solution of your choice. All other incoming/outgoing connections should be blocked except for the secure shell, preferably limited to access only from your IPs.\n\nEach seed node should be in a separate datacenter, ideally in a different part of the world, never in the same location as any of your (primary/backup) witness nodes. The purpose is to minimize the effects of a successful DDoS attack.\n\n_Please note that setting up all seed nodes in a single data center won\u2019t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway._\n\n```\n +---+\n + +----+ | |\n | | |<-->| B |\n +--+ S1 |<-->| i |\n | | |<-->| g |\n | +----+ | |\n+------+ | | B |\n| +-+ +----+ | a |\n| W(p) | | | |<-->| d |\n| | +--+ S2 |<-->| |\n+------+ | | |<-->| U |\n | +----+ | g |\n VLAN| | l |\n | +----+ | y |\n+------+ | | |<-->| |\n| | +--+ S3 |<-->| I |\n| W(b) | | | |<-->| n |\n| +-+ +----+ | t |\n+------+ | | e |\n | +----+ | r |\n | | |<-->| n |\n +--+ S4 |<-->| e |\n | | |<-->| t |\n + +----+ | |\n +---+\n```\n```\nW(p) - primary witness\nW(b) - backup witness\nS1-4 - seed nodes\n```\nOf course, you need to keep your seed nodes (at least one of them) running all the time, otherwise your witness will not be able to sync the blockchain.\nBut if you do the math, you will see that the odds that all your seed nodes stop working at the same time are much lower than the chances that this happens to your witness node. \n\n\nIf one of your seed nodes falls victim to a DDoS attack, you can, depending on the features offered by your infrastructure provider:\n- do nothing (until most of them are targeted at the same time)\n- change its external interface IP address, routing the old one to a black hole\n- set up a new, additional, temporary seed node somewhere else\n- replace that seed node with a new one in another location\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", + "category": "witness-category", + "children": 14, + "created": "2016-08-16T18:11:03", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemit.com/witness-category/@gtg/witness-gtg" + ], + "tags": [ + "witness-category", + "security", + "steem", + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 80964590737004, + "payout": 988.451, + "payout_at": "2016-09-16T20:13:00", + "pending_payout_value": "988.451 HBD", + "percent_steem_dollars": 10000, + "permlink": "heavy-duty-witness-node-infrastructure", + "post_id": 630173, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 177 + }, + "title": "Heavy duty witness node infrastructure", + "updated": "2016-08-16T18:11:03", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure" +} diff --git a/hivemind/tavern/bridge_api_patterns/get_post_header_gtg.orig.json b/hivemind/tavern/bridge_api_patterns/get_post_header_gtg.orig.json new file mode 100644 index 00000000..4b6c17c4 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_post_header_gtg.orig.json @@ -0,0 +1,7 @@ +{ + "author": "gtg", + "category": "mining", + "depth": 0, + "permlink": "missing-rewards-while-mining" + } + \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_profile_gtg.orig.json b/hivemind/tavern/bridge_api_patterns/get_profile_gtg.orig.json new file mode 100644 index 00000000..efd35751 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_profile_gtg.orig.json @@ -0,0 +1,25 @@ +{ + "id": 14008, + "name": "gtg", + "created": "2016-06-30T17:22:18", + "active": "2016-09-15T19:46:21", + "post_count": 51, + "reputation": 57.34, + "blacklists": [], + "stats": { + "sp": 8854, + "rank": 0, + "following": 31, + "followers": 80 + }, + "metadata": { + "profile": { + "name": "", + "about": "", + "website": "", + "location": "", + "cover_image": "", + "profile_image": "" + } + } +} diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_created.orig.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_created.orig.json new file mode 100644 index 00000000..6cb4902d --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_created.orig.json @@ -0,0 +1,2196 @@ +[ + { + "active_votes": [ + { + "rshares": "155925481", + "voter": "szklaneczka" + } + ], + "author": "szklaneczka", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "**ICONOMI found management platform** is currently in ICO and you can still invest. \n\nThat is most anticipated platform of 2016 why You may ask me. I will give you some graph and explanation. Solutions like ICONOMI are very popular in old economy people want be rich and wanted get more profit so they tried give money to people who know more about trading. Found management platforms preforms much better than average investors. Big guys just want invest not day trading. In crypto ICOMI will be 1st such project - such needed project.\n\nNow true facts and everything that I show you, is now publicly available on web. Graphs taken from coinmarketcap.com are showing us, what is going on cryptocurrency markets right now:\n![](http://i.imgur.com/FLe0WeF.jpg) \n![](http://i.imgur.com/s6Aeke2.jpg) \n![](http://i.imgur.com/RX0JK1z.jpg) \n\nYou see on won eyes that: Bitcoin is loosing over time market share to other alt coins. There is many multiple reasons for that. Without ICONOMI getting on cryptocurrency board for new investors will be VERY hard. \nThat is:\n \n- choose right one coin. \n- skip scams \n- buy valuable coins \n- crypto markets are getting bigger and bigger all time, there is about over 700coins tradable now\n\n\nICONOMI will be platform that for **every investor looking for big profits**. \nICONOMI will give us 2 founds:\n\n- **The ICONOMI.INDEX FUND** - a \"Passive\" - Coin Traded Fund (CTF). This fund operates on special rules, variables that manage the fund through automation. This Found will be the fastest available to investors at launch in Q4 2016 - The ICONOMI.PERFORMANCE FUND - an \"\nActive\"\n- **Coin Managed Fund (CMF)**, Operated by and managed by best investors. This fund will be invitation only available. If you invest in ICO you will get you invitation for free. I bet is worth its price. Those found will be carefully managed by ICONOMI experts and will provide best profits available.\n\nGraphs shows that volume of alt coins is rising heavily and will move up. Without ICONOMI founds many investors will probably lose cash on market, while rypto currency market will rise as whole. **If buy some ICO shares you will get dividends forever as share holder.**\n Soon real professional traders will come to cryptocurrency and you as investor in order to get big profits will have to use service of ICONOMI. \n\nPersonally I have invested in ICO and believe that **ICONOMI is future of crypto trading**. Don't miss a chance and invest here:[ico.iconomi.net](ico.iconomi.net) \n\nIf you want invest in ICO: ![](http://i.imgur.com/iqDpTag.png) \n\nOfficial Links:\n \n- [ico.iconomi.net](ico.iconomi.net \"Main site\") \n- [https://www.facebook.com/iconomi.net/](https://www.facebook.com/iconomi.net/ \"Facebook\") \n- [https://twitter.com/iconominet](https://twitter.com/iconominet\"twitter.com\")\n- [https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/](https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/) \n- [https://telegram.me/iconomi](https://telegram.me/iconomi)\n- [https://medium.com/iconominet](https://medium.com/iconominet)\n- [https://iconominet.herokuapp.com](https://iconominet.herokuapp.com)", + "category": "cryptocurrency", + "children": 0, + "created": "2016-09-15T19:47:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.imgur.com/FLe0WeF.jpg", + "http://i.imgur.com/s6Aeke2.jpg", + "http://i.imgur.com/RX0JK1z.jpg", + "http://i.imgur.com/iqDpTag.png" + ], + "links": [ + "ico.iconomi.net", + "https://www.facebook.com/iconomi.net/", + "https://twitter.com/iconominet\"twitter.com\"", + "https://www.linkedin.com/company/iconomi-the-financial-services-for-decentralised-economy/", + "https://telegram.me/iconomi", + "https://medium.com/iconominet", + "https://iconominet.herokuapp.com" + ], + "tags": [ + "cryptocurrency", + "bitcoin", + "profit", + "altcoin" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 155925481, + "payout": 0.0, + "payout_at": "2016-09-16T19:47:00", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "iconomi-why-we-need-found-management-explained-on-graphs", + "post_id": 961032, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "ICONOMI - why we need found management explained on graphs.", + "updated": "2016-09-15T19:47:00", + "url": "/cryptocurrency/@szklaneczka/iconomi-why-we-need-found-management-explained-on-graphs" + }, + { + "active_votes": [ + { + "rshares": "151513711", + "voter": "newsfeed" + } + ], + "author": "newsfeed", + "author_payout_value": "0.000 HBD", + "author_reputation": 36.03, + "beneficiaries": [], + "blacklists": [], + "body": "The Texas Rangers are 33-10 (.767) in one-run games this season. This would stand as a modern record for winning percentage in one-run games, besting the 2012 Orioles, who were 29-9 (.763).\n\n

http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815

\n\nBut if we dig deep into the archives of baseball history, we learn that this is actually the best record since the 1890 Brooklyn Bridegrooms, who were 14-4 (.778) in one-run games en route to an overall 86-43 (.667) record and the National League pennant.\n\n**Source / Read More...** sportingnews.com \n\n
\n\n
\n\n**NEWS FEED** \n*Get the latest headlines from around the world right on your Steemit Feed! With @newsfeed you always stay in the know about all sorts of topics ranging from Politics & Finance to Sports*\n\n**Currently In Beta**\n*Full news feed from hand picked creditable sources from all sides of the political and social realm. Although not fully operational, posts will be random while testing BUT do have real headlines!*", + "category": "newsfeed", + "children": 0, + "created": "2016-09-15T19:46:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815", + "https://ipfs.pics/ipfs/QmUo1EuVPSs3prLRdJH95Lg97vyvzSfhH6srZH5bqRh7p6" + ], + "links": [ + "http://www.sportingnews.com/mlb/news/texas-rangers-record-in-one-run-games-brooklyn-bridegrooms/irlcvzvv8fui1vgogevkmomch\n" + ], + "tags": [ + "newsfeed", + "news", + "sports", + "rangers", + "baseball" + ], + "users": [ + "newsfeed" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 151513711, + "payout": 0.0, + "payout_at": "2016-09-16T19:46:30", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 0, + "permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", + "post_id": 961024, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "Rangers' record in one-run games nearing truly historic level", + "updated": "2016-09-15T19:46:30", + "url": "/newsfeed/@newsfeed/rangers-record-in-one-run-games-nearing-truly-historic-level" + }, + { + "active_votes": [ + { + "rshares": "3377256926", + "voter": "anton333" + } + ], + "author": "anton333", + "author_payout_value": "0.000 HBD", + "author_reputation": 54.81, + "beneficiaries": [], + "blacklists": [], + "body": "\n

Model of Skeleton hands,without scissors and glue.

\n1


\n2


\n\n


\n

I need a piece of paper.

\n3


\n4


\n5


\n6


\n7


\n1


\n

Part 1 Part 2 Part 3 Part4 Part5 Part6 Part7 Part8 Part9 Part10

\n", + "category": "art", + "children": 0, + "created": "2016-09-15T19:46:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s18.postimg.org/fi4tfvrgp/image.jpg", + "https://s9.postimg.org/kn7ogredb/image.jpg", + "https://s10.postimg.org/nnna3pxp5/image.jpg", + "https://s12.postimg.org/dltyd50wd/image.jpg", + "https://s12.postimg.org/qwsf7bs99/image.jpg", + "https://s3.postimg.org/7p1m66f4j/image.jpg", + "https://s22.postimg.org/4388u7yoh/image.jpg", + "https://s14.postimg.org/qo99yko5t/image.jpg" + ], + "links": [ + "https://postimg.org/image/byivq2oqt/", + "https://postimage.org/index.php?lang=russian", + "https://postimg.org/image/ivepluv0b/", + "https://postimg.org/image/efv1n0qmt/", + "https://postimg.org/image/u9lgfmvnt/", + "https://postimg.org/image/gzhee9knd/", + "https://postimg.org/image/gwtumvm6n/", + "https://postimg.org/image/55ifcrhhp/", + "https://postimg.org/image/4cbh56p1p/", + "https://steemit.com/art/@anton333/origami-start-with-the-simplest", + "https://steemit.com/art/@anton333/origami-part-two-do-a-swan", + "https://steemit.com/art/@anton333/origami-part-3-the-model-of-a-mouse", + "https://steemit.com/art/@anton333/origami-part-4-the-model-of-a-rose-petals", + "https://steemit.com/art/@anton333/origami-part-5-the-model-of-master-yoda", + "https://steemit.com/art/@anton333/origami-part-6-the-model-of-eagle", + "https://steemit.com/art/@anton333/origami-part-7-the-model-of-dagger", + "https://steemit.com/art/@anton333/origami-part-8-the-model-of-spider", + "https://steemit.com/art/@anton333/origami-part-9-the-model-of-tooth", + "https://steemit.com/art/@anton333/origami-part-10-the-model-of-flower" + ], + "tags": [ + "art", + "photography", + "origami" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 3377256926, + "payout": 0.0, + "payout_at": "2016-09-16T19:46:30", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "origami-part-11-the-model-of-skeleton-hands", + "post_id": 961025, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "Origami Part 11, the model of Skeleton hands.", + "updated": "2016-09-15T19:46:30", + "url": "/art/@anton333/origami-part-11-the-model-of-skeleton-hands" + }, + { + "active_votes": [ + { + "rshares": "64358062", + "voter": "agartha" + } + ], + "author": "agartha", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I think I just hacked Monero lol it's a joke but the security too thou \n\nLook at this! \n\n\nhttps://www.facebook.com/agartha.white.3/posts/179267779175393", + "category": "steemit", + "children": 0, + "created": "2016-09-15T19:44:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://www.facebook.com/agartha.white.3/posts/179267779175393" + ], + "tags": [ + "steemit", + "hack", + "monero", + "bitcoin", + "lol" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 64358062, + "payout": 0.0, + "payout_at": "2016-09-16T19:44:00", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "i-hack-monero-xmr", + "post_id": 961010, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "I hack Monero (Xmr) ?", + "updated": "2016-09-15T19:44:00", + "url": "/steemit/@agartha/i-hack-monero-xmr" + }, + { + "active_votes": [ + { + "rshares": "1202120459", + "voter": "varda" + } + ], + "author": "varda", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

  In the morning, at 5 am when the moon completes his round, the alarm rings, my deepest sleep I wake up painfully. K\u00e9ops my cat starts singing tour and stops only when he filled his mess tin. Sweety then, the cat of my son jumps on the furniture in the kitchen and also claimed his bowl. Kashmir him not to come after me, until I make him hugs.

\n

\n

\n

\n

 A small cup of coffee and I'm up for the day. After my shower, I have to feed the fish pond and two hens, they are waiting for me impatiently for me to release them from their cages.

\n

\n


\n

\n


\n

 6:15, I start my bag on her arm, my water bottle and my biscuit for lunch. On the road I am alone, few vehicles I meet. Great to run your car on a deserted road. In the winter when it snowed, I am the first to make tracks in the whiteness of the snow grows like cotton wool, sometimes, crazy beyond me and skids, it is an adrenaline rush. In summer the sun rises gives the sky a color of red sweetness, yellow, orange. In autumn, the trees begin to change color, it is a season because I love the beauty of trees is unique. 

\n

\n


\n

Here I come down the street or is my workplace, hospital, regional hospital, the CHR. Vehicles coming after one another because we start at 7am. The staff is found, speak, tells their evening then everyone goes to the same place: the time clock, control object of our hours worked.

\n

\n


\n

 In the ladies locker room, it gets held: white jacket with blue and green patterns representing the logo of the institution, blue pants with various pockets which we do not serve! 

\n

\n


\n

We arrive in our service, mine is the neurological rehabilitation service: we give up (or so) of people who have a stroke, an accident with neurological trauma, people who have multiple sclerosis or Guillain barred and other chronic diseases whose name is almost unknown. 

\n

\n


\n

\n


\n

\n


\n

We start our day with a report on each patient last night, we have 20 in service. After beginning the nursing: we make the toilet of the patient who is totally dependent. We get up in the chair. For others, we must educate, continue the actions he has learned with the therapist in the individual care, the patient should regain maximum independence so they can go home and take care only . It's a job that can last from 3 months to 6 months beyond, we can not do anything for them. 

\n

\n


\n

Headline in this service is: you come to bed but you leave again walking. 

\n


\n

Sometimes, we fail either because the patient does not want a return to autonomy, or because the patient is too ill. We give the same chance to everyone, rich, poor, alcoholic, drug addict, young or old. 

\n


\n

The management of a patient goes from shaving the beard of a man to the presentation on the toilet, the room arrangement the carefully tended beds. 

\n


\n

Lunch arrived around 8:30 am, few patient is in the dining hall for breakfast, other unfinished eat in bed Logistical assistance serves meals that are different if the patient is diabetic, diet, dieters, old, or in solid supply resumption. You should know that when the patient has had a stroke, a stroke, swallowing is absent, which means that if the patient eats a sandwich, but he swallows the bread goes in the bronchial tubes and not in the stomach, giving a false swallowing, bronchi become infected and it's a disaster. So this patient who made false swallowing should eat while cream consistency and drink thickened liquid. Which is not very good but I admit it must go through these stages in order to re-eat a day normally. 

\n


\n

Physiotherapists arrive at 9am and leave a 17h, occupational therapists also. There is also a neuropsychologist, a speech therapist and all do work that allows the patient to regain maximum independence, which means that the patient all day is busy. Visitors can come between 14:30 and 19:30. 

\n


\n

After lunch, we continue our work, when all is well, we finish around 10:30 or 11am but sometimes it is noon we are still in the rooms. 

\n


\n

In terms of handling, the entry of the patient, it is usually in bed or in a wheelchair with a right hemiplegia or left, some have forgotten that they had half a disabled body, so it must withstand and no wear and show him how to do with one leg to go from wheelchair to bed and vice versa. Others are completely invalid, they know not move neither arms nor legs, and for those, or we wear them either we lift them with a forklift. 

\n


\n

During dinner, we feed the disabled and we encode our care in the computer.

\n


\n

 Around 13h, we are a few naps after going on the toilet. Sometimes we have a problem in the pants, oops! When everyone is changed to bed, we have a service change ratio and the time, the hour of the end of our service is lagging. At 14h is the start of the morning shift. For my part, I take a good shower and I take the way home or waiting for my cats and my dog makes me a big party. 

\n


\n

We must not believe that the nursing profession is simple, each service is different and you can not compare the care of each other. 

\n


\n

I hope I have not bothered you with this long text, I wish you a good day to you all.     

\n", + "category": "story", + "children": 0, + "created": "2016-09-15T19:43:54", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/15/DSCN0477faad0.jpg", + "https://www.steemimg.com/images/2016/09/15/keops0029612b.jpg", + "https://www.steemimg.com/images/2016/09/15/Au-sommet81f7b.jpg", + "https://www.steemimg.com/images/2016/09/15/16e3c4.jpg", + "https://www.steemimg.com/images/2016/09/15/Photo0224b24a.jpg", + "https://www.steemimg.com/images/2016/09/15/d85917d4a45b3d581b5f40d1d7a7504a3bb1e.jpg", + "https://www.steemimg.com/images/2016/09/15/chr841bd.jpg", + "https://www.steemimg.com/images/2016/09/15/DSCN1513-Copiee7a4d.jpg", + "https://www.steemimg.com/images/2016/09/15/Capture2bb0b8.jpg", + "https://www.steemimg.com/images/2016/09/15/370086-1f7d83.jpg", + "https://www.steemimg.com/images/2016/09/15/Capturec0ccc.jpg", + "https://www.steemimg.com/images/2016/09/15/souleve-malade-foldyadb08.jpg" + ], + "tags": [ + "story", + "health" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1202120459, + "payout": 0.0, + "payout_at": "2016-09-16T19:43:54", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "my-day-hospital", + "post_id": 961007, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "My day hospital", + "updated": "2016-09-15T19:43:54", + "url": "/story/@varda/my-day-hospital" + }, + { + "active_votes": [ + { + "rshares": "54846770", + "voter": "ejaredallen" + } + ], + "author": "ejaredallen", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\n

Nature

\n

I haven't stopped and taken a picture of the beauty around me in a long time. It's funny how we can get so caught up in work and the business of a crazy life and miss the simply beauty along the way. Sometime you've just got to stop and smell the roses; and while you're there, take a picture!

\n

\n

These aren't roses, I know: they're wild flowers. They don't get the nurture and care that roses do, and yet they are provided for and they bloom into beautiful blossoms in their own time. They have a harder life than others, and that's how we humans are as well. Some of us were well taken care of growing up and were treated like roses, while others were left in the field to grow up alone and without the love and care we should have had. But we are all beautiful in our own ways and if we survive long enough, we will blossom into something spectacular.

\n

\n

Colorado mountain rivers

\n

When the snow on the tops of the mountains melt, it feed the rushing rivers that carve their way down the mountainside. The climbing is excellent, the whether and the views are truly gorgeous, but something about the rivers rushing through the mountains draws you in. There is a memorization about the brave rivers unafraid of the mountains and simply rushing on by recklessly.

\n

\n

Mississippi at sunset

\n

Sometimes the world just slows down and magic happens. This was one of those times. On the night before my sister's wedding in Tupelo, Mississippi the sky exploded in color. What a calm reassurance before a monumental event: the approval stamp of God upon the sanction of their marriage.

\n

\n

Hundreds of years old Indian hieroglyphs in Arizona

\n

This was an incredible hike in the Arizona mountain ranges to discover a place where the Apache Indians, or perhaps some other tribe had lived hundreds of years ago!

\n

\n

Uganda, Africa at twilight, from a moving bus

\n

Africa is always an adventure, but in 2015 we took a safari on the northern rim and caught this shot on the way back to the lodge. I love how the beauty of the world is unique in its diversity from place to place, even across the Atlantic.

\n

\n

This is one of my favorite shots. I don't remember where I took it or when, but the colors, the bliss, the peacefulness of this field of flowers was stunning. I'm glad I was able to capture an image of its beauty to remember it by. And to think, all of this beauty was made by God in a second! His power to create a world is amazing and perfect in every way. We get to see His marvelous creation every day! 

\n

Follow me @ejaredallen for more pictures and great content!

\n", + "category": "photography", + "children": 0, + "created": "2016-09-15T19:42:24", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-986x1024-289x300.jpeg", + "http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/image-3-1024x768-300x225.jpeg", + "http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6440-1024x1024-300x300.jpg", + "http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_6031-1024x1024-300x300.jpg", + "http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_5829-1024x1024-300x300.jpg", + "http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/2015-07-13-06-37-59-1024x1024-300x300.jpg", + "http://www.theanonymousnovelist.com/wp-content/uploads/2016/09/img_7281-1024x1024-300x300.jpg" + ], + "links": [ + "https://steemit.com/@ejaredallen" + ], + "tags": [ + "photography", + "pictures", + "art", + "steemit", + "travel" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 54846770, + "payout": 0.0, + "payout_at": "2016-09-16T19:42:24", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "wanna-see-something-cool", + "post_id": 960996, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "Shot From Around The Block On An iPhone!", + "updated": "2016-09-15T19:43:33", + "url": "/photography/@ejaredallen/wanna-see-something-cool" + }, + { + "active_votes": [ + { + "rshares": "1979857275", + "voter": "cwbrooch" + }, + { + "rshares": "3911638805", + "voter": "zaitsevalesyaa" + } + ], + "author": "cwbrooch", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

This is part 2 of my Memoir.  Missed Part 1? Click here.
\nDon't know what's going on? Start from the beginning here.

\n

If you like what you're reading, follow me @cwbrooch for more craziness. if you love what you're reading recommend me to other peeps :) feedback is also very appreciated.

\n

\n

Russian Roulette - A Memoir of my Two Years in Moscow - Part 2 - Under the Table Tactics

\n

In this part of my memoir I am going to attempt to describe the dark side of Moscow. All stories depicted here either happened directly to people I knew, or were described to me as  a it's-russia-get-used-to-it anecdote.
\nYes, I will be talking about corruption and paying people under the table for things but bear in mind that even though it seems like a common practice definitely not all people do that and not all people experience the phenomenon.

\n

A ROUTINE POLICE CHECK 

\n

It is said that it is extremely wise to keep 2k-5k Rubles (about 28-68 Euro, 30-77 Dollars, 23-58 Pounds) in your registration papers at all times. They tend to disappear when you get your documents back from the officer... If one does not have such loose change, the guy tends to make one's life difficult. \"You were speeding\", \"You didn't stop at the STOP sign\", \"You're light is out\" etc. Driving is another interesting phenomenon in Moscow. You might think that since the metro is so packed, the streets will be empty. On the contrary, but I will not get into that right now as that makes a completely different post...  However, what I will tell you is  how one of my students passed her driving exam, which leads us to...

\n

PAYING TO PASS AN EXAM

\n

After her first failed attempt, my student looked at her instructor/examiner and asked: \"Could you please tell me what I did wrong, so I can work on it in the future?\" He stared back at her surprised and announced: \"Well, you didn't pay me extra, what do you expect?!\" At that point even I was shocked - \"So people openly tell you they want money?!\" \"Get used to it Kasia, It's Russia....\"
\nNeedless to say, she was forced to pay the second time around and surprise, surprise, she passed....
\n
\nI taught English in a company. I came one week, and saw that everyone was kind of in a rush and slightly agitated. I asked what the problem was and they said they were waiting for an audit. I remember wishing them good luck... One lady looked at me and smiled \"We paid the guys to look the other way, it will be fine!\" I didn't even bother to comment as I had aleady known there was no point...

\n

GETTING INTO A PRIVATE EVENT

\n

It was the three of us - my BF, his friend and I. We wanted to do some clubbing and the friend decided we should go to a very trendy bar in the heart of Moscow. He had a loyalty card there and was well known among the bouncers. We didn't really look the part, but a hefty fee paid for each of us (by the friend) was enough to let us in...

\n

That was a minor party. Let's talk about the big stuff, involving bigger money!
\nIf you know someone, who knows someone, who knows someone you might be able to (legally) attend the dress rehearsal of the famous Victory Parade in May (the 9th to be exact). It costs about 10k (137 Euro, 116 Pounds , 153 Dollars) Watch fragments of the video below to see the magnitude of what I am talking about. 

\n

The whole thing is long, play with it a little bit. The good stuff starts at about 40 minutes. Source

\n

https://www.youtube.com/watch?v=5EI3FYynz-Q

\n

To enter the actual parade however, you need to be a prominent member of the society (e.g. ex-military) or someone famous or filthy rich :)

\n

The event itself is quite impressive and for soldiers taking part in the march it is an honor among honors.  
\nWe had the privilege of living 15 minutes on foot from the Red Square so we saw all the preparations and marches right outside our windows (till 11pm at night...)

\n

\n

PS. I am aware that my portrayal of Moscow might seem bleak and depressing. Believe me, it was not. I;m simply trying to describe the juicy bits, the interesting stuff :) My next post will be more optimistic as I will be talking about sports, parks an recreations  :)

\n

 ____________________________________________________________________________

\n

Thank you for reading Part 2 of my memoir.

\n

Want to find out more about living in Moscow? Follow me @cwbrooch :)

\n

My other work on Streemit:

\n

1) Russian Roulette - Preamble 

\n

2) Russian Roulette - Part 1 - Surviving Underground

\n

3) Why shouldn't you use google translate for learning English and which dictionaries are far better

\n

4)  How to learn vocabulary effectively in any language!

\n

5) About me: introduction  
\n 

\n


\n", + "category": "story", + "children": 0, + "created": "2016-09-15T19:41:09", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s14.postimg.org/bpiqdmgpt/Untitled.jpg", + "https://img.youtube.com/vi/5EI3FYynz-Q/0.jpg", + "https://lh3.googleusercontent.com/3OMfOqwX2pQ5BYeql8V1tg4J6VcMzG75pLD-nhsfHw0BYFLEQOQSeVl-sVdEkDwS6VfPco-FukpjwQONwimoOhzzT4GIPDt_VGbJfNDYaltTvEcyOFK5do7PZD1-tjDW0nxKYhUQdxG4yoxX6ZS590fMaveLKSI2Voz579yTME9U8D7UgN7R3ufBrAcq0KV8kA9VqMVxryabh2X_jBiMnP3Uwjj_hrWn3ARzHggZMRuo3G3ORSKDpoqcBA25bRDeWHe7nVT4X58NolQ4yY8HVjzyUr4zDneI8dy_eHnSf0F0FBZ8kn4NQQ3ueVR84tu-Ot64CZb9a1SetmKmupvAxBbuS8z3jBsvCECD8A5jz9qevTOkgHEbV0z2hVteH64gCLg3OI9mRVqw2GWAYwNSUlGGtwCxmwXq3p_j_igwncarIhIF2HX_bV0ACrucmewR6IiIdVfaKKAO9g2ycLbJRr_SBwE9TxBND9ar0R267Grzq5SHywG71h1nxZnXInW-HQ2l1cou8zqdiEUanqkeSbgIunZVNBcEnYYinmF-WZd5y0_Luc8rdDYy0GlKAtAJ4z0-woKDs6d_XKWhiWsYOAW3rWwCe3cJylK_6H7wNO2PlBKL=w1163-h775-no" + ], + "links": [ + "https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-in-moscow-part-1-surviving-underground", + "https://steemit.com/story/@cwbrooch/russian-roulette-a-memoir-of-my-two-years-of-living-in-moscow-preamble", + "https://www.youtube.com/channel/UC4qBu3EvraPWezHbaC7npIQ", + "https://www.youtube.com/watch?v=5EI3FYynz-Q", + "https://steemit.com/@cwbrooch", + "https://steemit.com/languages/@cwbrooch/why-shouldn-t-you-use-google-translate-for-learning-english-and-which-dictionaries-are-faaaar-better", + "https://steemit.com/languages/@cwbrooch/how-to-learn-vocabulary-effectively-in-any-language", + "https://steemit.com/introduceyourself/@cwbrooch/teacher-story-teller-cat-lover-about-me" + ], + "tags": [ + "story", + "writing", + "travel", + "life", + "russia" + ], + "users": [ + "cwbrooch" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5891496080, + "payout": 0.001, + "payout_at": "2016-09-16T19:44:28", + "pending_payout_value": "0.001 HBD", + "percent_steem_dollars": 10000, + "permlink": "russian-roulette-a-memoir-part-2-under-the-table-tactics", + "post_id": 960988, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "Russian Roulette - a Memoir [Part 2] - Under-the-table Tactics", + "updated": "2016-09-15T19:42:57", + "url": "/story/@cwbrooch/russian-roulette-a-memoir-part-2-under-the-table-tactics" + }, + { + "active_votes": [ + { + "rshares": "1856124515188", + "voter": "badassmother" + }, + { + "rshares": "1511911763", + "voter": "fkn" + }, + { + "rshares": "1987313581", + "voter": "elishagh1" + }, + { + "rshares": "1061309796", + "voter": "murh" + }, + { + "rshares": "10685732759", + "voter": "kimziv" + }, + { + "rshares": "7380892516", + "voter": "furion" + }, + { + "rshares": "13847065167", + "voter": "aaseb" + }, + { + "rshares": "233089182", + "voter": "poseidon" + }, + { + "rshares": "1226120506", + "voter": "positive" + }, + { + "rshares": "1805841949", + "voter": "sisterholics" + }, + { + "rshares": "63861075353", + "voter": "laonie" + }, + { + "rshares": "2665078950", + "voter": "myfirst" + }, + { + "rshares": "12962686205", + "voter": "somebody" + }, + { + "rshares": "484662341", + "voter": "flysaga" + }, + { + "rshares": "2863548500", + "voter": "midnightoil" + }, + { + "rshares": "7162422615", + "voter": "xiaohui" + }, + { + "rshares": "485163523", + "voter": "elfkitchen" + }, + { + "rshares": "223914723", + "voter": "xiaokongcom" + }, + { + "rshares": "451374022", + "voter": "xianjun" + }, + { + "rshares": "82361209107", + "voter": "markrmorrisjr" + } + ], + "author": "markrmorrisjr", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "## In this episode, a hot Aedapt girl helps Jack escape Killer giant Cockroaches! ##\n\n**Jake was peering through cracks between the plaster laths back into the room where they guard stood.** \n\n![enter image description here](https://s22.postimg.org/d4vifrmo1/Madison.jpg)\n***Missed an episode? Great more great reading for you [on my blog](https://steemit.com/@markrmorrisjr)! Be sure to follow me for awesome daily updates in your feed and leave me comments. I love comments!***\n\n\u201cNo, we\u2019re not that smart when we\u2019re under. We can really only do what we hear them telling us to do.\u201d Jake whispered, calmly as the big guard moved within inches of the wall, snorting. The guard turned, blasted a hole in the ceiling with his gun and charged back into the hall. \n\n*They heard him blasting the door of the next room open.*\n\n\u201cWe can\u2019t stay here. I\u2019m guessing you\u2019ve got this one on a signal blocker and there\u2019s not much time.\u201d \n\nThe girl turned and ran to a corner, where an iron hand rail rose up out of the floor in a curve. She disappeared through the floor and as Jack followed, he found a narrow, spiraling stair that led below. \n\nHe lost his footing and slid down the stairs, narrowly missing the girl. She stood in the room below, with ear to the door that led into the hall.\n\n![enter image description here](https://s16.postimg.org/90derv079/spiral_stair.jpg)\n\n*Jake followed close behind. The girl with the violet eyes opened the door and stepped out into the hall with the awakened Nosher right behind her and Jack bringing up the rear. Jack had no idea what to do next, but the girl seemed to be in her element, and willing to help.*\n\n**Hopefully, she was not leading them into more danger.** \n\nHe followed her past one door, and into the darkened room where they had first started. It was empty, which could only mean one thing. The Noshers who had recently occupied it were upstairs right now with the ugly guard. They were looking for Jack and the others and would soon head back down.\n\n\u201cShouldn\u2019t we just get out of here?\u201d Jack said. He stood with his back to the wall and the door opened a crack so that one eye could see down the hall toward the upper stairs.\n\n\u201cNot without these,\u201d the girl walked to where the guard had been and pointed up at the weapons, suspended above. She ran a hand along the doorframe, \u201cIt ought to be along here somewhere.\u201d She said.\n\n**\u201cWhat is?\u201d Jack hissed, shifting as her body pressed against his.** \n\nShe ran her hand along the top of the doorframe. He froze; she smelled good. It had been a long time since a girl had gotten this close to him, junior prom, in fact. He did not have a lot of time for dating with his work schedule. \n\n*To top it off, the smell of burnt fries that clung to him even after an hour in the shower was hardly an aphrodisiac.*\n\nThe girl put one hand on his chest and stood on tiptoe, pressing tight against him. \u201cOh, don\u2019t kid yourself; you just happened to be in my way.\u201d She laughed, scornfully, and pressed a hidden button at the top right corner of the door. Weapons rained down with a crash, and she quickly chose two handguns, handing one to Jack. \n\nShe pressed the button again, and the remaining weapons zipped back up into position. Jack had to grip the gun in his hand firmly to keep it from joining them.\n\n![enter image description here](https://s13.postimg.org/xp1l7jjyv/guns.jpg)\n\n**\u201cElectro magnet,\u201d she said and opened the door, moving out, weapon first.**\n\n\u201cI knew that,\u201d Jack said. He flattened himself against the hallway wall, like a TV detective. The magnet had occurred to him, but in his addled state, he had not really grasped the concept. Mostly he just did not like the idea of her being smarter than he was. \n\n\u201cKeep up\u201d he hissed to Jake, who had managed to grab a revolver.\nThe three moved quickly down the hall and turned toward the front door. The two roaches Jack had seen earlier, peered out from either side. \n\n**They had weapons leveled in his direction.**\n\n*The girl crouched and moved forward as if she were still a Nosher. It worked. Jack followed suit, and Jake did his best. His human consciousness was getting stronger by the minute.* \n\nHe had even started getting color back in his cheeks, and Jack was beginning to notice that the man seemed oddly familiar, the more human he became. \u201cCould be a side effect of this Nosher thinking,\" he guessed.\n\n\u201cThey're right behind us,\u201d the girl hissed to one of the roaches. \u201cBlast the next thing that comes down those stairs, you got me?\u201d \n\n**The bug clicked and hissed.** \n\n*Jack assumed it was a yes, because the two giant insects moved in and took up positions on either side of the hall.*\n\nJack bolted out the door and was relieved to see the Rabbit zip up just in time. Phineas sat behind the wheel, and the Things were nowhere in sight. Behind them, they heard the roaches open fire, and then a huge blast echoed down the hall. \n\n![enter image description here](https://s13.postimg.org/4klau8zdj/phin_rabbit.jpg)\n\nA gust of wind barreled out the door, raining cockroach guts over the three escaping figures. Jake stumbled, and Jack picked him up and shoved him into the back seat of the Rabbit.\n\nHe turned back to let the girl in, but she was gone. Phineas stood up on the running board, slapping the roof of the vehicle furiously. \u201cGet in the car! Let\u2019s go man!\u201d\n\n*By the time Jack had slid into the passenger seat, Phineas had the Rabbit patching out. They were up to top speed in a matter of seconds.*\n\n**\u201cFind a me a safe dime!\u201d Phineas yelled, standing as he worked the pedals and tried to see over the steering wheel at the same time.**\n\n\u201cWhat?\u201d Jack yelled over the whine of the engine.\n\n\u201cDime, a dimension, get us out of here.\u201d Phineas pleaded.\n\nJack opened the glove compartment and fiddled with the controls, but nothing happened.\n\n**\u201cDamn, guess I have to do everything, Phineas grumbled, \u201chere, take the wheel.\u201d** \n\n*The Leprechaun ducked under Jack\u2019s arms as he grabbed the steering wheel from his position in the passenger\u2019s seat.* \n\nPhineas leaned across the stick shift, his feet working the pedals as he started manipulating the glovebox controls. Jack\u2019s view through the windshield changed every few seconds. It was making steering from the passenger\u2019s seat even more of a challenge.\n\n*Meanwhile, Jake hunkered down in the back seat. From where Jack sat, he was not looking so good. He wondered how much time they had left.*\n\nJack swerved to miss a slow-moving vehicle that had just appeared as they shifted dimensions. Finally, Phineas settled for one that put them on a narrow two-lane country road. \n\nThe town disappeared, replaced by rows of fences. Phineas braked and turned off onto the shoulder of the road, rolling to a stop.\n\nJack\u2019s heartbeat slowly returned to normal. Meanwhile, Jake sounded like he was winding up in the back seat, his voice rolling into a high-pitched whine, perforated with short puffs of breath, like a woman in labor on a late-night sitcom.\n\n**\u201cYou okay, back there?\u201d Jack asked, climbing out onto the shoulder.** \n\nJake launched himself out of the back seat, landed face down in a shallow ditch, and promptly lost the entire contents of his stomach in a single \n\n\u201cralph\u201d.\n--------\n\nJack turned away, pulling his elbow up over his nose to avoid the horrendous smell of vomit. Meanwhile, Phineas dove around the hood of the car and into the ditch, pawing through the puke as if he was panning for gold. \n\n*A few seconds later, he came up for air, triumphantly holding the thumb drive.*\n\nHe stood, wiping his hands on Jake\u2019s jacket, and then looked at his watch. \u201cIt\u2019s past time,\u201d He said, pulling the transmitter from the man\u2019s neck. Jake lolled into the ditch; his eyes fluttered, and Phineas shoved Jack toward the driver\u2019s seat.\n\n**\u201cLet\u2019s go. We don\u2019t want to be here when they come to collect him.\u201d He said, climbing into the passenger\u2019s seat.**\n\n***Will Jake see the girl again? What about his Nosher friend, what becomes of him? Will they ever get the smell out of the ALICE? Stay tuned!***\n\n## Look for the upvote button below. If you liked the post, upvote and share! If you're not on Steemit yet, why not? You get free money for signing up! ##", + "category": "story", + "children": 0, + "created": "2016-09-15T19:40:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s22.postimg.org/d4vifrmo1/Madison.jpg", + "https://s16.postimg.org/90derv079/spiral_stair.jpg", + "https://s13.postimg.org/xp1l7jjyv/guns.jpg", + "https://s13.postimg.org/4klau8zdj/phin_rabbit.jpg" + ], + "links": [ + "https://steemit.com/@markrmorrisjr" + ], + "tags": [ + "story", + "life", + "fiction", + "anarchy", + "minnowsunited" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 2069384927746, + "payout": 0.691, + "payout_at": "2016-09-16T19:45:37", + "pending_payout_value": "0.691 HBD", + "percent_steem_dollars": 10000, + "permlink": "original-fiction-jacked-book-one-the-origin-dime-chronicles-episode-10", + "post_id": 960985, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 20 + }, + "title": "Original Fiction: JACKED Book One, The Origin Dime Chronicles, Episode 10", + "updated": "2016-09-15T19:40:48", + "url": "/story/@markrmorrisjr/original-fiction-jacked-book-one-the-origin-dime-chronicles-episode-10" + }, + { + "active_votes": [ + { + "rshares": "201736965", + "voter": "blend" + } + ], + "author": "blend", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n
    \n
  •  I\u2019m as surprised as anyone to be saying this but holy shit, these vape trick are really impressive.Yes, vaping still makes most people look like an extra who just stepped off the set of Blade Runner. But god dammit, King Titus is doing some stuff with smoke in this video that doesn\u2019t seem physically possible.How is he moving smoke rings through the air without breaking them? Let\u2019s just soak that in for a hot second.
  • \n
\n\nhttps://youtu.be/i3Nd_FK1zUg\nsource>http://www.gizmodo.com.au/2016/09/so-uh-vape-tricks-are-cool-now/", + "category": "art", + "children": 0, + "created": "2016-09-15T19:40:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.kinja-img.com/gawker-media/image/upload/t_original/p8yuecbnagacjm6khr6t.jpg", + "https://img.youtube.com/vi/i3Nd_FK1zUg/0.jpg" + ], + "links": [ + "https://youtu.be/i3Nd_FK1zUg" + ], + "tags": [ + "art", + "story", + "life", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 201736965, + "payout": 0.0, + "payout_at": "2016-09-16T19:40:45", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "so-uh-vape-tricks-are-cool-now", + "post_id": 960984, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "So, Uh... Vape Tricks Are Cool Now?", + "updated": "2016-09-15T19:40:36", + "url": "/art/@blend/so-uh-vape-tricks-are-cool-now" + }, + { + "active_votes": [], + "author": "philanthropest", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

James Comey -the Director of the FBI - puts tape over his personal laptop camera and webcams.  

\n

I'm not crazy for having masking tape over my camera...I'm not alone....

\n

https://www.youtube.com/watch?v=y02aBfNT8n4

\n

WHY AREN'T PEOPLE MORE CONCERNED ABOUT BEING LISTENED TO...YES, IT IS INVASIVE TO KNOW YOU ARE BEING WATCHED, BUT....

\n
    \n
  • People SAY more revealing and interesting stuff than they DO....so, I would much rather be a blind fly on the wall than deaf.  
  • \n
\n

AS IF THEY AREN'T LISTENING TO YOU/ME....IF THEY ARE WATCHING...THEY ARE OBVIOUSLY LISTENING

\n", + "category": "freedom", + "children": 0, + "created": "2016-09-15T19:40:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://img.youtube.com/vi/y02aBfNT8n4/0.jpg" + ], + "links": [ + "https://www.youtube.com/watch?v=y02aBfNT8n4" + ], + "tags": [ + "freedom", + "anarchy", + "steem", + "life", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "payout": 0.0, + "payout_at": "2016-09-16T07:40:21", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", + "post_id": 960979, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "COVER YOUR LAPTOP -and phone- CAMERA - Comey; DIR OF THE FBI DOES", + "updated": "2016-09-15T19:42:36", + "url": "/freedom/@philanthropest/cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does" + }, + { + "active_votes": [ + { + "rshares": "2041184971", + "voter": "profitgenerator" + } + ], + "author": "profitgenerator", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Let's analyze more deeply the relationship between USD and Oil. This is a continuation of this 3 part series, and in this part I will describe my opinions how to trade Oil, despite it's unpredictability. Here is the previous part:\n\n
https://steemit.com/money/@profitgenerator/the-Oil-market-1-3
\n\n------------------------------------\n
\n
[![oilfield-643836_1920.jpg](https://s16.postimg.org/j6asrkj79/oilfield_643836_1920.jpg)](https://postimg.org/image/5cmg2iqlt/)
\n\n

Oil and Dollar

\n\nBefore we go into strategies, I have to explain more thoroughly what relationship I was talking about in the past article.\n\nSo we know that the Oil is denominated by the US Dollar, and we know that a cheap Oil is good for the US Economy, but I wasn't very precise here, this is not entirely true, there is something more here.\n\nFirst of all the commodity market is the only thing that keeps the US Dollar stable, since the Nixon lifting of the Gold standard. The USD is printed at will and the commodities are the only thing that give it some residual value.\n\nSo the commodity market has to be as liquid as possible in order to keep the USD stable, because every ounce of Gold, gram of grain or drop of Oil bought gives value to the USD, because it goes through the USD market.\n\nBut also the commodity market cannot be high in price, because that is bad for the USD. So you have to have a very liquid commodity market, but one that has low price. It sounds very contradictory (the velocity of money theory forbids this), so how you do you achieve this?\n\nWith a Paper Ponzi Scheme: https://en.wikipedia.org/wiki/Gold_certificate\n\nBy issuing commodities on paper, that are not backed by real commodities, or in other words extremely leveraged instruments. You can read more about this popular scam here:\n\n
http://www.silverdoctors.com/Gold/Gold-news/comex-Gold-leverage-skyrockets-to-a-shocking-5421/\nhttp://www.zerohedge.com/news/2016-06-25/comex-registered-silver-now-more-leveraged-Gold
\n\n
[![Leverage-Of-COMEX-Registered-Silver-Contracts.png](https://s17.postimg.org/bgdwcshn3/Leverage_Of_COMEX_Registered_Silver_Contracts.png)](https://postimg.org/image/vnrc53f4b/)
\n
*(Source: https://srsroccoreport.com)*
\n\nNow I am not sure if the same phenomena is happening to Oil as well, but it could be possible. The entire commodity market is undervalued while derivatives and over-leveraged scams are the popular choice of investment for investors.\n\nSo if this is true, then Oil, and the whole commodity market would be into a bullish run possibly. But what about the USD? Yes, the USD itself is in trouble too. The US national debt and outstanding liabilities are too big, and I think the FED will just do QE any minute now, printing up Dollars and perhaps pumping up the commodity market too.\n\nAlright so now it is very confusing, in the past article I established a bearish trend, and now I am saying a bullish scenario could happen? So which one is it. Well let's take them 1 by 1:\n\n* Venezuela economic collapse and Middle East wars = **Bullish**\n* Big Oil price not good for US so they will suppress it with any tool available = `Bearish`\n* OPEC increased Oil production together with [Iran's lifted embargo](http://www.nytimes.com/2016/03/08/world/middleeast/embargo-lifted-iranian-Oil-reaches-europe.html) = `Bearish` \n* Russia building Oil pipeline in South Europe = `Bearish`\n* China investing in Africa and importing Oil = **Bullish** (since the growing Chinese economy is a big Oil demand)\n* Rising Green Energy markets = `Bearish`\n* Paper ponzi scheme could collapse anytime = **Bullish**\n* New rounds of quantitative easing to erode global debts = **Bullish**\n\nSo it looks to me like a whipsaw, again it could be quantified to have more accurate numbers, but it looks like the risk is big in the market. I would certainly not go long or short on it, since it's pretty unpredictable based on these macroeconomic trends. Whatever monopoly controls the price of Oil has made sure to make the price unpredictable, so that people will be wiped out on both sides.\n\nSo then how to trade this, if long and short positions are too risky, what to do?\n\n----------------------\n
\n
[![money-finance-bills-500.jpg](https://s17.postimg.org/simy7jp3j/money_finance_bills_500.jpg)](https://postimg.org/image/kd4w9e0uj/)
\n\n\n

Trading the Oil Market

\n\nIf long and short positions are too risky, then hedging is the only strategy left in my opinion. I would not trade Oil naked, but if we hedge it with the right instrument, it could be profitable.\n\n

[Hedging](https://en.wikipedia.org/wiki/Hedge_%28finance%29)

\n\nBut what to hedge, what pairs to hedge and how? Well there are many combinations, and you have to find the pairs that will make you money nontheless.\n\nBut let's cut the crap, I have found a setup that is ultra profitable, and I will share it with you, in exchange you can donate me some SBD and upvote my post and follow me, that is the least you can do for showing you this ultra profitable trading strategy.\n\nSo here are the pairs:\n* Oil / USD\n* XAU / USD\n* USD / JPY\n* DJI / USD\n\nWe will construct our `artificial index` from these, I will call it `ProfitGenerator`:\n\n
[![profitgenerator.png](https://s12.postimg.org/421peh5v1/profitgenerator.png)](https://postimg.org/image/feeaw9ejt/)
\n\nThis is how `ProfitGenerator` looks like, it is really a @profitgenerator, going up and up since 2009. The formula is the following:\n`BUY Oil / USD`\n`SELL XAU / USD`\n`SELL USD / JPY`\n`BUY DJI / USD`\n\nSo basically by buying the DOW 30 and Oil, and selling Gold and the USD/JPY, we get this artificial index that always makes our profits go up since 2009. Of course it has dips and volatility, but the trend line looks to go up:\n\n
[![trend.png](https://s13.postimg.org/7c4281afb/trend.png)](https://postimg.org/image/mktzlt43n/)
\n\nI have extrapolated it linearly in the future, and it could be a profitable investment.Looks like easy money to me, I might check it out as well, and look for even better hedging strategies.\n\n---------------------------\n\nBasically this is how I would trade Oil at the moment, not naked, but put inside this nice hedging strategy. So if you decide to try it out, you should reward me after you made some profits!\n\n\n---------------------------\n\n*Data sources: http://www.investing.com*\n\n***Disclaimer: The information provided on this page might be incorrect. I am not responsible if you lose money using the information on this page! This is not an investment advice, just my opinion and analysis for educational purposes.***\n\n\n-------------------------------------------\n\n\n

Upvote & Follow Me: @profitgenerator

", + "category": "money", + "children": 0, + "created": "2016-09-15T19:39:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s16.postimg.org/j6asrkj79/oilfield_643836_1920.jpg", + "https://s17.postimg.org/bgdwcshn3/Leverage_Of_COMEX_Registered_Silver_Contracts.png", + "https://s17.postimg.org/simy7jp3j/money_finance_bills_500.jpg", + "https://s12.postimg.org/421peh5v1/profitgenerator.png", + "https://s13.postimg.org/7c4281afb/trend.png" + ], + "links": [ + "https://steemit.com/money/@profitgenerator/the-Oil-market-1-3", + "https://postimg.org/image/5cmg2iqlt/", + "https://en.wikipedia.org/wiki/Gold_certificate", + "http://www.silverdoctors.com/Gold/Gold-news/comex-Gold-leverage-skyrockets-to-a-shocking-5421/", + "https://postimg.org/image/vnrc53f4b/", + "https://srsroccoreport.com", + "http://www.nytimes.com/2016/03/08/world/middleeast/embargo-lifted-iranian-Oil-reaches-europe.html", + "https://postimg.org/image/kd4w9e0uj/", + "https://en.wikipedia.org/wiki/Hedge_%28finance%29", + "https://postimg.org/image/feeaw9ejt/", + "https://postimg.org/image/mktzlt43n/", + "http://www.investing.com" + ], + "tags": [ + "money", + "investing", + "oil", + "trading", + "economics" + ], + "users": [ + "profitgenerator" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 2041184971, + "payout": 0.0, + "payout_at": "2016-09-16T19:39:15", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-oil-market-2-3", + "post_id": 960969, + "promoted": "0.030 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "The Oil Market [2/3]", + "updated": "2016-09-15T19:39:15", + "url": "/money/@profitgenerator/the-oil-market-2-3" + }, + { + "active_votes": [ + { + "rshares": "231815399848", + "voter": "anonymous" + }, + { + "rshares": "1856124515188", + "voter": "badassmother" + }, + { + "rshares": "1950776472028", + "voter": "xeroc" + }, + { + "rshares": "466189427281", + "voter": "recursive2" + }, + { + "rshares": "440845842", + "voter": "lee2" + }, + { + "rshares": "26932369613", + "voter": "lee3" + }, + { + "rshares": "8677356665", + "voter": "lee4" + }, + { + "rshares": "22149156424", + "voter": "lee5" + }, + { + "rshares": "24694558802", + "voter": "fkn" + }, + { + "rshares": "468295495", + "voter": "paco-steem" + }, + { + "rshares": "5641891453", + "voter": "spaninv" + }, + { + "rshares": "31733693573", + "voter": "instructor2121" + }, + { + "rshares": "319978787382", + "voter": "teamsteem" + }, + { + "rshares": "32459455171", + "voter": "elishagh1" + }, + { + "rshares": "584301957019", + "voter": "nanzo-scoop" + }, + { + "rshares": "183455862202", + "voter": "steve-walschot" + }, + { + "rshares": "177422979921", + "voter": "mummyimperfect" + }, + { + "rshares": "1061309796", + "voter": "murh" + }, + { + "rshares": "40553528416", + "voter": "ranko-k" + }, + { + "rshares": "970610699889", + "voter": "cyber" + }, + { + "rshares": "49581638772", + "voter": "ak2020" + }, + { + "rshares": "61303208719", + "voter": "justtryme90" + }, + { + "rshares": "35244223389", + "voter": "drinkzya" + }, + { + "rshares": "3848697023555", + "voter": "satoshifund" + }, + { + "rshares": "365370465", + "voter": "stiletto" + }, + { + "rshares": "55960464168", + "voter": "thecryptodrive" + }, + { + "rshares": "275083790158", + "voter": "trogdor" + }, + { + "rshares": "5047565689", + "voter": "tee-em" + }, + { + "rshares": "31346657524", + "voter": "michaelx" + }, + { + "rshares": "203028922423", + "voter": "kimziv" + }, + { + "rshares": "45359587433", + "voter": "honeythief" + }, + { + "rshares": "75335893384", + "voter": "emily-cook" + }, + { + "rshares": "34073741916", + "voter": "cryptoiskey" + }, + { + "rshares": "484636799", + "voter": "mrhankeh" + }, + { + "rshares": "36267999733", + "voter": "clement" + }, + { + "rshares": "49807514764", + "voter": "isteemit" + }, + { + "rshares": "68450624110", + "voter": "bacchist" + }, + { + "rshares": "52094130602", + "voter": "venuspcs" + }, + { + "rshares": "462747522217", + "voter": "roelandp" + }, + { + "rshares": "5271256317", + "voter": "riscadox" + }, + { + "rshares": "118094280271", + "voter": "furion" + }, + { + "rshares": "578386960", + "voter": "barbara2" + }, + { + "rshares": "642869652", + "voter": "ch0c0latechip" + }, + { + "rshares": "594982040", + "voter": "doge4lyf" + }, + { + "rshares": "14886225123", + "voter": "ausbitbank" + }, + { + "rshares": "2531219186", + "voter": "steem1653" + }, + { + "rshares": "185306737687", + "voter": "anyx" + }, + { + "rshares": "80777327", + "voter": "snowden" + }, + { + "rshares": "5250267854", + "voter": "thegoodguy" + }, + { + "rshares": "13847065167", + "voter": "aaseb" + }, + { + "rshares": "4209550858", + "voter": "karen13" + }, + { + "rshares": "89580632", + "voter": "wildchild" + }, + { + "rshares": "14455781997", + "voter": "nippel66" + }, + { + "rshares": "4428694472", + "voter": "poseidon" + }, + { + "rshares": "3709674578", + "voter": "bitcoiner" + }, + { + "rshares": "30989849211", + "voter": "zaebars" + }, + { + "rshares": "20026634941", + "voter": "positive" + }, + { + "rshares": "799615699", + "voter": "raymonjohnstone" + }, + { + "rshares": "50626015", + "voter": "steemchain" + }, + { + "rshares": "34310997040", + "voter": "sisterholics" + }, + { + "rshares": "4150694741", + "voter": "tygergamer" + }, + { + "rshares": "674282213", + "voter": "fnait" + }, + { + "rshares": "599033376", + "voter": "keepcalmand" + }, + { + "rshares": "21249911268", + "voter": "sisters" + }, + { + "rshares": "135241026997", + "voter": "steemdrive" + }, + { + "rshares": "50580942653", + "voter": "gomeravibz" + }, + { + "rshares": "2157263872", + "voter": "merej99" + }, + { + "rshares": "1181429894047", + "voter": "laonie" + }, + { + "rshares": "22969530313", + "voter": "laonie1" + }, + { + "rshares": "23486336661", + "voter": "laonie2" + }, + { + "rshares": "23494631758", + "voter": "laonie3" + }, + { + "rshares": "41308723727", + "voter": "myfirst" + }, + { + "rshares": "246291037911", + "voter": "somebody" + }, + { + "rshares": "9208584487", + "voter": "flysaga" + }, + { + "rshares": "5831884826", + "voter": "brendio" + }, + { + "rshares": "54407421509", + "voter": "midnightoil" + }, + { + "rshares": "4190432650", + "voter": "ullikume" + }, + { + "rshares": "538023492", + "voter": "marinaz" + }, + { + "rshares": "50577648", + "voter": "michellek" + }, + { + "rshares": "23490308796", + "voter": "laonie4" + }, + { + "rshares": "23488038283", + "voter": "laonie5" + }, + { + "rshares": "23485060556", + "voter": "laonie6" + }, + { + "rshares": "23480907119", + "voter": "laonie7" + }, + { + "rshares": "3157899297", + "voter": "kurtbeil" + }, + { + "rshares": "23477459041", + "voter": "laonie8" + }, + { + "rshares": "23474757706", + "voter": "laonie9" + }, + { + "rshares": "2370331931", + "voter": "steemleak" + }, + { + "rshares": "136086029693", + "voter": "xiaohui" + }, + { + "rshares": "88206053", + "voter": "bigsambucca" + }, + { + "rshares": "6630568148", + "voter": "elfkitchen" + }, + { + "rshares": "99940391922", + "voter": "joele" + }, + { + "rshares": "2354334523", + "voter": "paynode" + }, + { + "rshares": "4254379739", + "voter": "xiaokongcom" + }, + { + "rshares": "8576106418", + "voter": "xianjun" + }, + { + "rshares": "72135954", + "voter": "stevescriber" + }, + { + "rshares": "51247757", + "voter": "loli" + }, + { + "rshares": "52419023", + "voter": "nano2nd" + }, + { + "rshares": "576343622", + "voter": "microluck" + }, + { + "rshares": "60225791", + "voter": "cryptoblu" + }, + { + "rshares": "60219243", + "voter": "instructor" + }, + { + "rshares": "802020725261", + "voter": "dollarvigilante" + }, + { + "rshares": "3977281078", + "voter": "lamech-m" + }, + { + "rshares": "23468551300", + "voter": "laonie10" + }, + { + "rshares": "8536250240", + "voter": "garywilson" + }, + { + "rshares": "50829277", + "voter": "bitchplease" + }, + { + "rshares": "99130059443", + "voter": "barrycooper" + }, + { + "rshares": "31611733517", + "voter": "hilarski" + }, + { + "rshares": "2029369552", + "voter": "shadowspub" + }, + { + "rshares": "8390958262", + "voter": "rimann" + }, + { + "rshares": "56999917", + "voter": "rickmiller" + }, + { + "rshares": "5401518277", + "voter": "nulliusinverba" + }, + { + "rshares": "22792452702", + "voter": "mikehere" + }, + { + "rshares": "22621847215", + "voter": "laonie11" + }, + { + "rshares": "3411072843", + "voter": "xanoxt" + }, + { + "rshares": "174778016", + "voter": "greatness" + }, + { + "rshares": "26574132419", + "voter": "sponge-bob" + }, + { + "rshares": "4044803243", + "voter": "l0k1" + }, + { + "rshares": "50798127", + "voter": "freesteem" + }, + { + "rshares": "2353724275", + "voter": "zettar" + }, + { + "rshares": "1655277599", + "voter": "smisi" + }, + { + "rshares": "53413720", + "voter": "lighter" + }, + { + "rshares": "258239323", + "voter": "maarnio" + }, + { + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "rshares": "5934390558", + "voter": "dexter-k" + }, + { + "rshares": "51716816", + "voter": "doggnostic" + }, + { + "rshares": "659649765", + "voter": "ct-gurus" + }, + { + "rshares": "51449632", + "voter": "jenny-talls" + }, + { + "rshares": "415654681468", + "voter": "charlieshrem" + }, + { + "rshares": "63546443837", + "voter": "tracemayer" + }, + { + "rshares": "26568286493", + "voter": "brains" + }, + { + "rshares": "1702730509", + "voter": "alwayzgame" + }, + { + "rshares": "1282974860", + "voter": "bitcoinparadise" + }, + { + "rshares": "50528809", + "voter": "cwb" + }, + { + "rshares": "2127783725", + "voter": "steemsquad" + }, + { + "rshares": "61292139", + "voter": "inarix03" + }, + { + "rshares": "431087473", + "voter": "littlemorelove" + }, + { + "rshares": "51636819", + "voter": "mbizryu0" + }, + { + "rshares": "51631638", + "voter": "archij" + }, + { + "rshares": "51530815", + "voter": "movie7283" + }, + { + "rshares": "51527606", + "voter": "ppcompp2" + }, + { + "rshares": "51520427", + "voter": "jj1968" + }, + { + "rshares": "51516489", + "voter": "cineger" + }, + { + "rshares": "51497383", + "voter": "sksduddk" + }, + { + "rshares": "51490214", + "voter": "jjc0719" + }, + { + "rshares": "50233449", + "voter": "teemsteem" + }, + { + "rshares": "50677982", + "voter": "sjytoy" + }, + { + "rshares": "50676799", + "voter": "shy2675" + }, + { + "rshares": "50675747", + "voter": "suance1009" + }, + { + "rshares": "50674176", + "voter": "hasqmd" + }, + { + "rshares": "50673722", + "voter": "fischer67" + }, + { + "rshares": "50672116", + "voter": "elya1" + }, + { + "rshares": "50632828", + "voter": "xclamp45" + }, + { + "rshares": "50618471", + "voter": "likeagame1" + }, + { + "rshares": "50616898", + "voter": "apple4006" + }, + { + "rshares": "50615195", + "voter": "bigbell61" + }, + { + "rshares": "50612850", + "voter": "dolpo777" + }, + { + "rshares": "50611931", + "voter": "dongperi" + }, + { + "rshares": "50610620", + "voter": "lion2byung" + }, + { + "rshares": "50610002", + "voter": "cwj1973" + }, + { + "rshares": "50609329", + "voter": "psj212" + }, + { + "rshares": "50608661", + "voter": "owithed2" + }, + { + "rshares": "50606929", + "voter": "fiself2" + }, + { + "rshares": "50605131", + "voter": "trablinever1" + }, + { + "rshares": "50603861", + "voter": "nuals1940" + }, + { + "rshares": "50602310", + "voter": "fanceth2" + }, + { + "rshares": "50355943", + "voter": "forea1995" + }, + { + "rshares": "50354561", + "voter": "holow1968" + }, + { + "rshares": "50353969", + "voter": "peaces1952" + }, + { + "rshares": "50346496", + "voter": "himighar2" + }, + { + "rshares": "50345607", + "voter": "aromese1974" + }, + { + "rshares": "50344921", + "voter": "runis1943" + }, + { + "rshares": "50344067", + "voter": "tong1962" + }, + { + "rshares": "50340744", + "voter": "hishe1997" + }, + { + "rshares": "1979857275", + "voter": "cwbrooch" + }, + { + "rshares": "52329350", + "voter": "ninjapainter" + }, + { + "rshares": "51393104", + "voter": "buit1989" + }, + { + "rshares": "51389981", + "voter": "imadecoult1" + }, + { + "rshares": "51387526", + "voter": "infees2" + }, + { + "rshares": "51384095", + "voter": "suar1997" + }, + { + "rshares": "51382067", + "voter": "sobsell93" + }, + { + "rshares": "51380710", + "voter": "stroned96" + }, + { + "rshares": "51378107", + "voter": "drethe" + }, + { + "rshares": "51377505", + "voter": "qualwas" + }, + { + "rshares": "51376367", + "voter": "phent1994" + }, + { + "rshares": "51375075", + "voter": "baboyes" + }, + { + "rshares": "51373532", + "voter": "whor1973" + }, + { + "rshares": "51372739", + "voter": "youreforn" + }, + { + "rshares": "51371902", + "voter": "voll1981" + }, + { + "rshares": "51370717", + "voter": "copenty2" + }, + { + "rshares": "51369717", + "voter": "maject2" + }, + { + "rshares": "51367233", + "voter": "coust1997" + }, + { + "rshares": "51366398", + "voter": "busionea84" + }, + { + "rshares": "51365174", + "voter": "therver1" + }, + { + "rshares": "51364022", + "voter": "appirdsmanne1990" + }, + { + "rshares": "51362967", + "voter": "alienighted87" + }, + { + "rshares": "51359746", + "voter": "anity1994" + }, + { + "rshares": "59959066", + "voter": "themphe1" + }, + { + "rshares": "51355864", + "voter": "abild1988" + }, + { + "rshares": "51353540", + "voter": "spoll1973" + }, + { + "rshares": "66162576", + "voter": "afteld1" + }, + { + "rshares": "1630374239", + "voter": "rusteemitblog" + }, + { + "rshares": "31008332335", + "voter": "goldmatters" + }, + { + "rshares": "68608760", + "voter": "dealzgal" + }, + { + "rshares": "64921864", + "voter": "storage" + }, + { + "rshares": "55388665", + "voter": "blackmarket" + }, + { + "rshares": "58454327", + "voter": "gifts" + }, + { + "rshares": "93882016", + "voter": "expat" + }, + { + "rshares": "188217107", + "voter": "techslut" + }, + { + "rshares": "137659447", + "voter": "steemtrail" + }, + { + "rshares": "3035584586", + "voter": "steemlift" + }, + { + "rshares": "123580867", + "voter": "toddemaher1" + } + ], + "author": "charlieshrem", + "author_payout_value": "0.000 HBD", + "author_reputation": 67.32, + "beneficiaries": [], + "blacklists": [], + "body": "[![1427721443457173 (1).jpg](https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg)](https://postimg.org/image/5bg38xjjr/)\n\nThe day I went to prison I published an article Bitcoin for Prison. While I didn't get to read or see the article until someone mailed me a physical copy, I found out that my article had started a number of discussions and follow-on commentary.\n\nDuring my stay at Lewisburg Federal Prison Camp I observed many economic theories put into effect by inmates and the prison administration, including Gresham's law, hyperinflation, currency exchange, and others.\n\nThere are two markets in prison, the \"Administration Run Market\" (ARM) and the \"Inmate Run Market\" (IRM). \n\nFor the ARM, family and friends can add money to your account through Western Union, MoneyGram, or mailing a check. These funds get added to your account fairly quickly and can be used almost immediately, however with a strict spending limit. You get 300 minutes of phone use per month for about $70, and email costs about $0.05 a minute and is only available at specific times to specific people. Once a week you can shop in the commissary with a $360 a month spending limit. Further, certain products have limits of how much you can buy, for example the Mackerel (described below). Alternatively, the IRM is where you can buy sandwiches, wraps, pizzas, Italian ices, hire a personal trainer, get a haircut, pay someone to clean your cube, repair a watch, even inmate run caterers for your birthday or going home party. Additionally there were inmate run 'stores' which sold commissary items at a markup since you could only commissary shop once a week.\n\n[![mackerel-203x300.png](https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png)](https://postimg.org/image/iu6qq6eb9/)\n\nThe Mackerel (meaning literal packets of fish) is one of the competing currencies in the IRM. It has utility by being one of the best sources of protein on the compound. You can save it for a long time, the shelf life is a few years. The price is relatively the same across all prisons in the country, so even if you transfer prisons your property comes with you, including your Mackerel which is worth the same somewhere else. Unlike tunafish, chicken packets and protein bars, more people eat Mackerel. Those other food items can be used as currency as well, for example the guy who fixes your watch may only accept protein bars because he hates fish. There was even a form of digital currency being used, which I will discuss in another post.\n\n[![pzyQaHU.png](https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png)](https://postimg.org/image/nfj3tkh87/)\n\nUtility and medium of exchange give it some value but what about scarcity ? If there is a virtually unlimited amount of Mackerel in the IRM, just like the Federal Reserve printing money, there is no scarcity and hyperinflation can occure if it is debased. \n\nUsing a simple equation, 467 (Number of Inmates) * 14 (Maximum Quantity Allowed to Purchase Per Inmate) * 52 (weeks, assuming every inmate buys the maximum mount of Mackerel every week)\n\nSo if in 2015 we assume that the Supply and Velocity grows at the exact same rate with the Price Level and Transactions unchanging, the amount of Mackerel would essentially double on an even inflation rate. This does not factor in the 3 year shelf life, where expired Mackerel becomes a secondary currency. I will discuss in my next post. \n\nI like to believe that the value of money is determined also psychological factors, like a commodity and not only by mechanical or mathematical factors. In prison many of these psychological factors come into play.\n\n[![1867-1967-Ten-10\u00a2-Cents-Commemorative-Centennial.jpg](https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg)](https://postimg.org/image/ceiwrfinr/)\n\nMost people use Mackerel as a day-to-day currency for normal transactions, but for reasons I will explain in my next post, they are not the best long term store of value which is important for a currency. For longer term store of value, many inmates use stamps. Stamps have a set rate by the United States Postal Service and have similar characteristics as Mackerel aside for being edible. However, with the introduction of email on the compound many people stopped writing letters as email is cheaper and faster therefore reducing stamps ability to be a transactional currency as a majority of the inmates have no use for them. As a store of value they still hold weight because they are small and easy to store large amounts, while Mackerel is not.\n\nThe biggest value stamps have is that they can be mailed home and your family can redeem them for dollars as the local post office, but that feature can be stopped by better mail screening and overnight the stamp could lose its store of value utility. \n\nIn my next post I will discuss how currency exchangers work, what happens when the prison administration purposely floods the market, and how a secondary currency was created out of expired Mackerel called \u201cMoney Maks\u201d", + "category": "story", + "children": 2, + "created": "2016-09-15T19:39:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg", + "https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png", + "https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png", + "https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg" + ], + "links": [ + "https://postimg.org/image/5bg38xjjr/", + "https://postimg.org/image/iu6qq6eb9/", + "https://postimg.org/image/nfj3tkh87/", + "https://postimg.org/image/ceiwrfinr/" + ], + "tags": [ + "story", + "life", + "bitcoin" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 16647533396431, + "payout": 18.929, + "payout_at": "2016-09-16T19:42:59", + "pending_payout_value": "18.929 HBD", + "percent_steem_dollars": 10000, + "permlink": "mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem", + "post_id": 960970, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 211 + }, + "title": "MackerelCoin & My Socioeconomic Observations from Prison (Part 1 by Charlie Shrem)", + "updated": "2016-09-15T19:39:15", + "url": "/story/@charlieshrem/mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem" + }, + { + "active_votes": [ + { + "rshares": "99588913", + "voter": "rebeccamorgan" + }, + { + "rshares": "2264991522", + "voter": "bluechoochoo" + } + ], + "author": "rebeccamorgan", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\n

I don't know about you, but one of my favorite parts of eating sushi is the pickled ginger. Today, I stopped by the store to pick up some pickled ginger to go with the sushi I was making for lunch, but I was totally bummed that they didn't have any.

\n

So I went home and did what I do a lot...I improvised. Remembering the bag of whole, unpeeled ginger I had thrown in the freezer a while back, I got it out. Turns out, you can make great pickled ginger at home, and it's super easy! 

\n

Recipe:

\n

1/4 cup peeled, thinly sliced ginger

\n

1/4 cup seasoned sushi vinegar

\n

1 tablespoon ginger

\n

Put all the ingredients in a small seal-able container and let set in the refrigerator for at least one hour.

\n

I love to eat this with a simple tempura shrimp roll using 1 sheet of nori, 1/2 cup sushi rice, and tempura shrimp.

\n

YUM!

\n", + "category": "food", + "children": 0, + "created": "2016-09-15T19:39:12", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSvPcipLOst42r-1eVPTuUXJ1aF4RhA6dpo9vwTt_HgsdBHW9GYXA" + ], + "tags": [ + "food", + "recipe", + "life", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 2364580435, + "payout": 0.0, + "payout_at": "2016-09-16T19:42:18", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "recipe-pickled-ginger-for-sushi", + "post_id": 960968, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "[recipe] pickled ginger for sushi", + "updated": "2016-09-15T19:39:12", + "url": "/food/@rebeccamorgan/recipe-pickled-ginger-for-sushi" + }, + { + "active_votes": [ + { + "rshares": "13342307926", + "voter": "valtr" + }, + { + "rshares": "27470549701", + "voter": "acidyo" + }, + { + "rshares": "313710480", + "voter": "coar" + }, + { + "rshares": "1061309796", + "voter": "murh" + }, + { + "rshares": "52094130602", + "voter": "venuspcs" + }, + { + "rshares": "8222986904", + "voter": "getssidetracked" + }, + { + "rshares": "1582556166", + "voter": "trees" + }, + { + "rshares": "221867769", + "voter": "strawhat" + }, + { + "rshares": "777893805", + "voter": "cryptochannel" + }, + { + "rshares": "121062267", + "voter": "bola" + }, + { + "rshares": "119998460", + "voter": "pokemon" + }, + { + "rshares": "6168588588", + "voter": "chloetaylor" + }, + { + "rshares": "2275125890", + "voter": "andrew0" + }, + { + "rshares": "7475701368", + "voter": "thebotkiller" + }, + { + "rshares": "59295031", + "voter": "dobbydaba" + }, + { + "rshares": "7989270301", + "voter": "karisa" + }, + { + "rshares": "54574888", + "voter": "lighter" + }, + { + "rshares": "298391608", + "voter": "risabold" + } + ], + "author": "acidyo", + "author_payout_value": "0.000 HBD", + "author_reputation": 62.78, + "beneficiaries": [], + "blacklists": [], + "body": "Since I am really unskilled at PS/Gimp I decided to draw a signature myself!\n\nhttp://imgur.com/FU1u3Aa.jpg\n\nWas thinking of adding it after my posts like this:\nMaybe resize it a bit smaller and make it linkable to my account page, let me know what you think :)\n\nhttp://imgur.com/UIw3ArK.jpg", + "category": "avatar", + "children": 1, + "created": "2016-09-15T19:37:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://imgur.com/FU1u3Aa.jpg", + "http://imgur.com/UIw3ArK.jpg" + ], + "tags": [ + "avatar", + "signature", + "steemit", + "acidyo", + "art" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 129649321550, + "payout": 0.029, + "payout_at": "2016-09-16T19:38:01", + "pending_payout_value": "0.029 HBD", + "percent_steem_dollars": 10000, + "permlink": "drew-an-avatar-signature-for-my-posts", + "post_id": 960951, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 18 + }, + "title": "Drew an avatar/signature for my posts!", + "updated": "2016-09-15T19:37:00", + "url": "/avatar/@acidyo/drew-an-avatar-signature-for-my-posts" + }, + { + "active_votes": [ + { + "rshares": "153246055", + "voter": "ladenlabel" + } + ], + "author": "ladenlabel", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Each day more and more people are jumping onto the \u201cgreen\u201d bandwagon as an attempt protect themselves and \nfamilies from the hidden dangers in chemical products. It\u2019s no secret anymore that many of these concoctions are \nloaded with carcinogens that damage the neurological, reproductive, and hormonal systems.\n\n For example fluoride is a substance found in most drinking water that to me and many doctors alike would say is unethical.\n \nFluoride is not an essential nutrient. No disease, not even tooth decay, is caused by a \u201cfluoride deficiency.\u201d Not a single biological process has been shown to require fluoride. On the contrary there is extensive evidence that fluoride can interfere with many important biological processes. Fluoride interferes with numerous enzymes. In combination with aluminum, fluoride interferes with G-proteins. Such interactions give aluminum-fluoride complexes the potential to interfere with signals from growth factors, hormones and neurotransmitters. More and more studies indicate that fluoride can interfere with biochemistry in fundamental ways.\n\nFluoride may damage the brain. According to the National Research Council, \u201cit is apparent that fluorides have the ability to interfere with the functions of the brain.\u201d In a review of the literature commissioned by the US Environmental Protection Agency (EPA), fluoride has been listed among about 100 chemicals for which there is \u201csubstantial evidence of developmental neurotoxicity.\u201d Animal experiments show that fluoride accumulates in the brain and alters mental behavior in a manner consistent with a neurotoxic agent. In total, there have now been over 100 animal experiments showing that fluoride can damage the brain and impact learning and behavior. According to fluoridation proponents, these animal studies can be ignored because high doses were used. However, it is important to note that rats generally require five times more fluoride to reach the same plasma levels in humans. Further, one animal experiment found effects at remarkably low doses. In this study, rats fed for one year with 1 ppm fluoride in their water (the same level used in fluoridation programs), using either sodium fluoride or aluminum fluoride, had morphological changes to their kidneys and brains, an increased uptake of aluminum in the brain, and the formation of beta-amyloid deposits which are associated with Alzheimer\u2019s disease. Other animal studies have found effects on the brain at water fluoride levels as low as 5 ppm.\n\nWhile fluoridation may not be the greatest environmental health threat, it is one of the easiest to end. \nMany People are aware of these issues and today there are more alternative options than ever before.\n\nwaterliberty.com is one site I've came across with products and tips for a healthier lifestyle. \n\nTo find more info on fluoride this is a good site: fluoridealert.org/articles/50-reasons/", + "category": "health", + "children": 0, + "created": "2016-09-15T19:36:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "tags": [ + "health", + "life", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 153246055, + "payout": 0.0, + "payout_at": "2016-09-16T19:36:36", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 0, + "permlink": "water-liberty-bringing-it-back-to-its-primordial-clean-and-pristine-state", + "post_id": 960949, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "Water Liberty, bringing it back to its primordial clean and pristine state", + "updated": "2016-09-15T19:36:36", + "url": "/health/@ladenlabel/water-liberty-bringing-it-back-to-its-primordial-clean-and-pristine-state" + }, + { + "active_votes": [ + { + "rshares": "366434912", + "voter": "lloyddavis" + }, + { + "rshares": "3911638805", + "voter": "zaitsevalesyaa" + }, + { + "rshares": "153202378", + "voter": "sterlingsnead" + } + ], + "author": "lloyddavis", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I did a few of these a while back, I was experimenting with the technique. It was fun and I might well do some more, especially if there's an audience for them\n\nThe basic technique is to first to take a video clip and split it into a number of frames. I expect you can do this easily in Photoshop or something, but I'm a command line kind of guy so I used ffmpeg and ImageMagick - I learned a lot from reading [this post about it](\"https://room208.org/blog/posts/48793543478.html\"). I go for things that break down into about 12-24 frames because at 24 fps you're going to need 12 to get a half second loop.\n\nThen you load up each frame in your favourite graphics editor - I use GIMP because I'm cheap. For each frame, you create a new transparent layer and trace over the bits of the frame that you want to replicate. There's a bit of artistic choice in here about how much detail you want to include and how much colour filling you'll do. But the most basic thing is to create a simplified line drawing by running the brush over the key elements.\n\nSo for this one of Johnny Rotten, I only took twelve frames from the beginning and only traced his face and the mic and filled in his hair with an approximation of it's actual colour!\n\n\n\nIf you give your transparent layer a white background you've then got a finished frame for your clip. So export it and give it a number so that you know which order it goes in. Again, Photoshop and GIMP probably have this built in, but I'm awkward that way and like to make things as close to \"by hand\" as I can. This is also much slower, but it does feel like you've made something rather than just knowing which buttons to press.\n\nYou then sew the frames back up into a GIF file using ImageMagick's convert command - check out that [blog post again](\"https://room208.org/blog/posts/48793543478.html\") for the deep dive details.\n\nAlternatively you can take a still image and just trace it several times. That's what I did with this one of Louis Armstrong. Four frames, each slightly different from the others, when animated give it this jiggly quality as if he is playing.\n\n\n\nI'd love to see what other people make of this technique. Show me your work too!", + "category": "art", + "children": 0, + "created": "2016-09-15T19:34:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://ipfs.pics/ipfs/QmZ5i1Sv2xYzQEWccL9VZVNoo56jv6xNMUxjbjnS7V7S9A", + "https://ipfs.pics/ipfs/Qmaxqs77D6je2acPPF8FhdghAcAV9akbkRTpGdXY4jbZKn", + "https://ipfs.pics/ipfs/QmXUay7uUTx44JaaiEEzFLoCeAqLAfxoD4cv24SWA8MkqA" + ], + "links": [ + "\"https://room208.org/blog/posts/48793543478.html\"", + "https://ipfs.pics/QmZ5i1Sv2xYzQEWccL9VZVNoo56jv6xNMUxjbjnS7V7S9A", + "https://ipfs.pics/Qmaxqs77D6je2acPPF8FhdghAcAV9akbkRTpGdXY4jbZKn", + "https://ipfs.pics/QmXUay7uUTx44JaaiEEzFLoCeAqLAfxoD4cv24SWA8MkqA" + ], + "tags": [ + "art", + "animation", + "rotoscope", + "fun", + "drawing" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 4431276095, + "payout": 0.0, + "payout_at": "2016-09-16T19:36:54", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "i-made-these-animations-by-tracing-from-video-and-found-out-later-it-s-called-rotoscoping", + "post_id": 960931, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "I made these animations by tracing from video - and found out later it's called \"rotoscoping\"", + "updated": "2016-09-15T19:34:36", + "url": "/art/@lloyddavis/i-made-these-animations-by-tracing-from-video-and-found-out-later-it-s-called-rotoscoping" + }, + { + "active_votes": [ + { + "rshares": "125411048", + "voter": "thedevil" + }, + { + "rshares": "153214220", + "voter": "creativecasualty" + }, + { + "rshares": "150198410", + "voter": "sterlingsnead" + } + ], + "author": "creativecasualty", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "By exploring the effects of the Schumann resonances, Resonance Being Of Frequency presents a thought provoking account of regarding the power of modern wireless technology. Radio signals, Wifi, Bluetooth, and other wireless communications can have a wide array of effects on both physical environment and our physiology. \n\nhttps://www.youtube.com/watch?v=oS6FGzh3ygw", + "category": "documentary", + "children": 0, + "created": "2016-09-15T19:33:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://img.youtube.com/vi/oS6FGzh3ygw/0.jpg" + ], + "links": [ + "https://www.youtube.com/watch?v=oS6FGzh3ygw" + ], + "tags": [ + "documentary", + "schumann", + "resonance", + "sound", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 428823678, + "payout": 0.0, + "payout_at": "2016-09-16T19:37:07", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 0, + "permlink": "are-we-resonance-beings-of-frequency", + "post_id": 960922, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "Are we Resonance Beings of Frequency?", + "updated": "2016-09-15T19:33:30", + "url": "/documentary/@creativecasualty/are-we-resonance-beings-of-frequency" + }, + { + "active_votes": [ + { + "rshares": "3911638805", + "voter": "zaitsevalesyaa" + }, + { + "rshares": "1131354587", + "voter": "patimaker" + }, + { + "rshares": "150728858", + "voter": "alexandrapop" + } + ], + "author": "patimaker", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I just decided to draw a bird\nVery often I do not sleep at night, so I draw sorts of things\n\nhttp://s017.radikal.ru/i410/1609/b9/c2414d721dd3.png", + "category": "art", + "children": 1, + "created": "2016-09-15T19:33:24", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://s017.radikal.ru/i410/1609/b9/c2414d721dd3.png" + ], + "tags": [ + "art", + "drawing", + "life", + "picture", + "painting" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5193722250, + "payout": 0.001, + "payout_at": "2016-09-16T19:37:05", + "pending_payout_value": "0.001 HBD", + "percent_steem_dollars": 10000, + "permlink": "night-sketch-funny-bird", + "post_id": 960921, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "Night sketch - Funny bird", + "updated": "2016-09-15T19:33:24", + "url": "/art/@patimaker/night-sketch-funny-bird" + }, + { + "active_votes": [ + { + "rshares": "7736449047", + "voter": "anarchyhasnogods" + }, + { + "rshares": "59293327", + "voter": "archimedes" + }, + { + "rshares": "11552440717", + "voter": "herpetologyguy" + } + ], + "author": "archimedes", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "http://eoimages.gsfc.nasa.gov/images/imagerecords/57000/57723/globe_west_2048.jpg\n\n### The Controversial\n\nThe age of the Earth is controversial topic to say the least. It has been the battle ground for many groups of people. One group of people though have had a rather large voice in it, those being the deeply religious and gullible. \n\nhttps://pixabay.com/static/uploads/photo/2016/08/20/09/46/magnifying-glass-1607160_960_720.jpg\n\nConservapedia is a encyclopedia type website tasked with presenting the other side of the story. They have been on the forefront of the age of the Earth dispute for some time. Their motto is, \"The trustworthy encyclopedia\" but is this really true to any extent? Lets look at their page on the age of the Earth, http://www.conservapedia.com/Age_of_the_Earth\n\n### They claim is that the earth is about 6,000 years old.\n\nThe first thing that they claim is that the earth is about 6,000 years old. They say that historical and much scientific evidence point to that age strongly. One example being that dating substances through radioactive decay is not a valid because the assumption that radioactive decay is constant is wrong. This is just blatantly incorrect. The claim that it is an assumption is really facts backed with testing at least to a limited degree of accuracy. Even with rigorous testing to alter the decay rates of elements no substantial change has ever been detected. Even in the Oklo reactor which was a natural nuclear fission reactor that was active for a few hundred thousand years has had no change on the Sommerfeld's constant and neutron capture for almost 2 billion years.\n\n\n### Conclusion\n\nConservapedia makes frequent references archaic texts that have no solid facts backing any of their claims. Their delusional claims take into account little if not any real world facts. They present biased and fudged data as reliable information for profound question and answered. I conclusion they are so detached reality that I am surprised that anybody would take them seriously, and the fact that they are even able to upkeep a website.\n\n\n\n\n\n\n\n\n\n\n### Sources:\nwww.talkorigins.org/indexcc/CF/CF210.html\npixabay.com/static/uploads/photo/2016/08/20/09/46/magnifying-glass-1607160_960_720.jpg\neoimages.gsfc.nasa.gov/images/imagerecords/57000/57723/globe_west_2048.jpg", + "category": "science", + "children": 1, + "created": "2016-09-15T19:33:18", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://eoimages.gsfc.nasa.gov/images/imagerecords/57000/57723/globe_west_2048.jpg", + "https://pixabay.com/static/uploads/photo/2016/08/20/09/46/magnifying-glass-1607160_960_720.jpg" + ], + "links": [ + "http://www.conservapedia.com/Age_of_the_Earth" + ], + "tags": [ + "science", + "discovery", + "physics", + "minnowsunite", + "conservatives" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 19348183091, + "payout": 0.004, + "payout_at": "2016-09-16T19:36:50", + "pending_payout_value": "0.004 HBD", + "percent_steem_dollars": 10000, + "permlink": "conservapedia-and-the-age-of-the-earth", + "post_id": 960918, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 3 + }, + "title": "Conservapedia and the age of the Earth", + "updated": "2016-09-15T19:34:51", + "url": "/science/@archimedes/conservapedia-and-the-age-of-the-earth" + }, + { + "active_votes": [ + { + "rshares": "59061355186", + "voter": "lehard" + }, + { + "rshares": "1708336843", + "voter": "dimon14" + }, + { + "rshares": "101627835", + "voter": "pollina" + }, + { + "rshares": "159631404", + "voter": "kamil5" + }, + { + "rshares": "4546813061", + "voter": "nadin3" + } + ], + "author": "nadin3", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

http://i.imgur.com/PW0v4ZA.jpg

\n

Hello, my friends! If you are tired of plain pancakes I advise you to get some work done and you'll get a very delicious pie and a nice dessert for tea time.

\n

\u041f\u0440\u0438\u0432\u0435\u0442 \u0434\u0440\u0443\u0437\u044c\u044f! \u0415\u0441\u043b\u0438 \u0432\u0430\u043c \u043d\u0430\u0434\u043e\u0435\u043b\u0438 \u043f\u0440\u043e\u0441\u0442\u043e \u0431\u043b\u0438\u043d\u044b ,\u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u044e \u043d\u0435\u043c\u043d\u043e\u0433\u043e \u043f\u043e\u0442\u0440\u0443\u0434\u0438\u0442\u044c\u0441\u044f \u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u043e\u0447\u0435\u043d\u044c \u0432\u043a\u0443\u0441\u043d\u044b\u0439 \u0442\u043e\u0440\u0442\u0438\u043a \u0438 \u043d\u0435\u0436\u043d\u044b\u0439 \u0434\u0435\u0441\u0435\u0440\u0442 \u043a \u0447\u0430\u044e! 

\n

Ingredients :

\n

Pancakes

\n

500ml sour cream

\n

1pack vanilla sugar

\n

800g of frozen or preserved cherry

\n

\u0418\u043d\u0433\u0440\u0435\u0434\u0438\u0435\u043d\u0442\u044b: 

\n

\u0411\u043b\u0438\u043d\u044b 

\n

\u0421\u043c\u0435\u0442\u0430\u043d\u0430 500\u043c\u043b 

\n

\u0421\u0430\u0445\u0430\u0440 1 \u0441\u0442\u0430\u043a\u0430\u043d 

\n

\u0412\u0430\u043d\u0438\u043b\u044c\u043d\u044b\u0439 \u0441\u0430\u0445\u0430\u0440 - 1 \u043f\u0430\u043a\u0435\u0442\u0438\u043a 

\n

\u0412\u0438\u0448\u043d\u044f \u0437\u0430\u043c\u043e\u0440\u043e\u0436\u0435\u043d\u043d\u0430\u044f \u0438\u043b\u0438 \u043a\u043e\u043d\u0441\u0435\u0440\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f 800\u0433\u0440

\n

http://i.imgur.com/oguMRtZ.jpg

\n

Make pancakes the way you like them

\n

It's very important that all the juice that comes out of cherries has dripped into a bow. Whip sour cream (at least 20% fat) with sugar and vanilla

\n

\u0413\u043e\u0442\u043e\u0432\u0438\u043c \u0431\u043b\u0438\u043d\u044b \u043f\u043e \u0441\u0432\u043e\u0435\u043c\u0443 \u0440\u0435\u0446\u0435\u043f\u0442\u0443 .\u0421 \u0432\u0438\u0448\u043d\u0438 \u0432\u0430\u0436\u043d\u043e \u0447\u0442\u043e\u0431\u044b \u0441\u0442\u0435\u043a \u0432\u0435\u0441\u044c \u0441\u043e\u043a. \u0421\u043c\u0435\u0442\u0430\u043d\u0443 \u0436\u0438\u0440\u043d\u0443\u044e \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 20% \u0432\u0437\u0431\u0438\u0442\u044c \u0441 \u0441\u0430\u0445\u0430\u0440\u043e\u043c \u0438 \u0432\u0430\u043d\u0438\u043b\u0438\u043d\u043e\u043c .

\n

http://i.imgur.com/8YMOHzf.jpg

\n

http://i.imgur.com/8KzsX0I.jpg

\n

http://i.imgur.com/LCZJXWX.jpg

\n

http://i.imgur.com/cSqfUeR.jpg

\n

Put a row of cherries on one edge of a pancake and roll. Put those rolls on a plate and cream them with the cream we've made before. Then make one more layer of pancake rolls and so on, making a pyramid.

\n

\u0421\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0431\u043b\u0438\u043d\u044b \u0432 \u0442\u0440\u0443\u0431\u043e\u0447\u043a\u0443 \u0438 \u0432\u044b\u043b\u043e\u0436\u0438\u0442\u044c \u043d\u0430 \u0431\u043b\u044e\u0434\u043e \u0432 \u0440\u044f\u0434. \u041f\u0440\u043e\u043c\u0430\u0437\u0430\u0442\u044c \u0445\u043e\u0440\u043e\u0448\u043e \u0441\u043c\u0435\u0442\u0430\u043d\u043d\u044b\u043c \u043a\u0440\u0435\u043c\u043e\u043c . \u0417\u0430\u0442\u0435\u043c \u043e\u043f\u044f\u0442\u044c \u0440\u044f\u0434 \u0431\u043b\u0438\u043d\u043e\u0432 \u043d\u043e \u043f\u043e\u043c\u0435\u043d\u044c\u0448\u0435, \u0441\u043b\u043e\u0439 \u043a\u0440\u0435\u043c\u0430 \u0438 \u0442\u0430\u043a \u0434\u0430\u043b\u0435\u0435. \u0412\u044b\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c \u043f\u043e\u043b\u0435\u043d\u043d\u0438\u0446\u0443. 

\n

http://i.imgur.com/jMNEtFR.jpg

\n

http://i.imgur.com/UyGHCOn.jpg

\n

http://i.imgur.com/G7kN563.jpg

\n

http://i.imgur.com/Cjs81fe.jpg

\n

http://i.imgur.com/RTeoS7n.jpg

\n

http://i.imgur.com/uy10SVo.jpg

\n

Put cream on top and decorative as you like.

\n

\u0421\u0432\u0435\u0440\u0445\u0443 \u043e\u0431\u043c\u0430\u0436\u0435\u043c \u043a\u0440\u0435\u043c\u043e\u043c \u0438 \u0443\u043a\u0440\u0430\u0448\u0430\u0435\u043c \u043d\u0430 \u0441\u0432\u043e\u0439 \u0432\u043a\u0443\u0441

\n

http://i.imgur.com/SvwKADp.jpg

\n

Bon appetite!!!

\n

http://i.imgur.com/Mlh4uXf.jpg

\n

\u041f\u0440\u0438\u044f\u0442\u043d\u043e\u0433\u043e \u0430\u043f\u043f\u0435\u0442\u0438\u0442\u0430!!!

\n

http://i.imgur.com/xv13Hu9.jpg

\n


\n


\n


\n", + "category": "food", + "children": 0, + "created": "2016-09-15T19:33:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.imgur.com/PW0v4ZA.jpg", + "http://i.imgur.com/oguMRtZ.jpg", + "http://i.imgur.com/8YMOHzf.jpg", + "http://i.imgur.com/8KzsX0I.jpg", + "http://i.imgur.com/LCZJXWX.jpg", + "http://i.imgur.com/cSqfUeR.jpg", + "http://i.imgur.com/jMNEtFR.jpg", + "http://i.imgur.com/UyGHCOn.jpg", + "http://i.imgur.com/G7kN563.jpg", + "http://i.imgur.com/Cjs81fe.jpg", + "http://i.imgur.com/RTeoS7n.jpg", + "http://i.imgur.com/uy10SVo.jpg", + "http://i.imgur.com/SvwKADp.jpg", + "http://i.imgur.com/Mlh4uXf.jpg", + "http://i.imgur.com/xv13Hu9.jpg" + ], + "tags": [ + "food", + "recipes", + "photography", + "ru" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 65577764329, + "payout": 0.014, + "payout_at": "2016-09-16T19:33:27", + "pending_payout_value": "0.014 HBD", + "percent_steem_dollars": 10000, + "permlink": "a-pancake-pie-with-cherry-it-s-very-delicious-blinnyi-tort-s-vishnei-ochen-ochen-vkusnyi", + "post_id": 960913, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 5 + }, + "title": "A pancake pie with cherry! It's very delicious!!! \u0411\u043b\u0438\u043d\u043d\u044b\u0439 \u0442\u043e\u0440\u0442 \u0441 \u0432\u0438\u0448\u043d\u0435\u0439! \u041e\u0447\u0435\u043d\u044c,\u043e\u0447\u0435\u043d\u044c \u0432\u043a\u0443\u0441\u043d\u044b\u0439!!!", + "updated": "2016-09-15T19:33:00", + "url": "/food/@nadin3/a-pancake-pie-with-cherry-it-s-very-delicious-blinnyi-tort-s-vishnei-ochen-ochen-vkusnyi" + } +] diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.orig.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.orig.json new file mode 100644 index 00000000..70832021 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.orig.json @@ -0,0 +1,10354 @@ +[ + { + "post_id": 960290, + "author": "dollarvigilante", + "permlink": "another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", + "category": "money", + "title": "Another Billionaire Warns of Catastrophic Depths Not Seen in 5,000 Years - and Emphasizes Gold", + "body": "
https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg
\n\nIn past issues, we’ve documented increasingly concerned billionaires warning of dangerous economic times. Many have favored gold as an alternative allocation in a world where $13 trillion-worth of debt is negative yielding, interest rates are artificially suppressed and we’re on the brink of major wars.\n\nThe newest addition to this gold-loving billionaire's club, is none other than hedge-fund manager Paul Singer. At CNBC’s Delivering Alpha Investors Conference this week, the founder of the $27-billion Elliott Management Fund, the 17th largest hedge fund in the world, mentioned that at current prices gold is “undervalued” and “underrepresented in many portfolios as the only ... store of value that has stood the test of time.”\n\nSinger, along with numerous other hedge-fund managers, has been increasingly outspoken in his criticism of the Federal Reserve and other central banks for creating dangers in the market unlike any in what he terms the “5,000 year-ish” history of finance. Singer noted that “it's a very dangerous time in the global economy and global financial markets.\"\n\nThis quote is frighteningly similar to the response given by Donald Trump on Fox Business not long ago when he was asked if he had money in the market. He answered, “I did, but I got out,” and then went on to say that he expected “very scary scenarios” for investors.\n\nSinger also stated that he thinks owning medium- to long-term first world debt is a “really bad idea”... and then proceeded to tell listeners to sell their 30-year bonds.\n\nEarlier in the conference, prior to Singer, Ray Dalio who is the manager of the largest hedge fund in the world, Bridgewater Capital, was also vocal about the diminishing returns provided by government debt held by central banks. “There’s only so much you can squeeze out of the debt cycle,\" he said. He went on to say that central banks are at a point now where their ability to stimulate is limited.\n\nSeated next to Dalio was Former Treasury secretary Timothy Geithner who voiced concern about limited “tools in the keynesian arsenal,” that probably wouldn’t be enough to offset the next recession.\n\nGeithner obviously believes that a recession is on the way. Dalio and Singer are trying to convey the same message. A massive crunch is looming.\n\nWe agree with them, although we believe Geithner was sugarcoating what’s to come.\n\nAfter all, we are on the precipice of a crash of biblical proportions according to the former chief economist of the Bank for International Settlements, William White.\n\nWe have mentioned his quote numerous time here at TDV but feel it’s important to reiterate because of its magnitude: “The only question is whether we are able to look reality in the eye and face what is coming in an orderly fashion, or whether it will be disorderly. Debt jubilees have been going on for 5,000 years, as far back as the Sumerians.”\n\nAs the Fed considers its second rate hike in 10 years, Singer condemned policy-makers for acting with “amazing arrogance” when he and others had warned of a mortgage crisis prior to 2008.\n\nWhat he and those who agreed with his stance don’t know, or at least won’t state publicly, is that these shoddy central bank policies are detrimental by design. In other words, their sole purpose is to destabilize the world economy.\n\nThis deliberate market sabotage is necessary for the transference of power from the more developed nations to less developed ones. Ultimately, the idea is to eliminate smaller regional and national central banks. Once things get bad enough, these smaller banks will be blamed for provoking a given crisis. And, secondarily, the end goal is to blow up the entire system in order to bring in the one world government and central bank.\n\nThe elites have used the same tactics time and time again throughout history. First, they create the problem, then there is a reaction, and then finally they come swooping in to “valiantly save” the day. It's happened numerous times before.\n
https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png
\nAnd it will soon happen again.\n\nOf course, the globalists have demonstrated that every intervention only makes situations worse.\n\nWe reported on the blatant thievery going on at Wells Fargo in our last article and noted how the elites were probably laughing hysterically at what they’re able to get away with. They were even able to convince many younger American voters that “democratic socialism” would be their savior, as seen by the significant, youthful support for Bernie Slanders. Debt and currency crises have already started to materialize, as we’ve seen in the socialist utopia that is Venezuela. If this is any indication of what’s to come, the future is looking awfully gloomy.\n\nAs Singer and others including Dalio have mentioned before, the most tried and true measure of wealth and value is gold.\n\nAt TDV we provide unique Austrian-economics based analysis from the anarcho-capitalist pespective of the state of the world’s economy, as well as suggestions on how to protect your assets in these tempestuous and unprecedented times.\n\nJacob Rothschild, a member of the family partly responsible for the creation of all this chaos, even said himself that we are in “uncharted waters” and that it’s “impossible to predict the unintended consequences of very low interest rates.”\n\nWe have a pretty good idea of what the consequences will be and we’re taking action to protect ourselves and even profit from them. Rothschild seems to know the consequences, as well, as he has been buying up gold and selling the stock market and the US dollar.\n\nYou can survive and profit from the orchestrated collapse too. Subscribe to TDV’s newsletter here to receive constantly updated information on how to protect your family and friends.\n\nIn the end, it is getting truly bizarre just how many billionaires, central bankers and others of note are all warning of the coming collapse. We’d almost begun to worry that they were going to pull a switch-a-roo on us, but if you asked the great majority of investors and financial analysts, they’ll tell you that they see nothing but smooth sailing ahead.\n\nSo, while many are warning, many are hearing, but not listening. The bible said something about that, I believe.\n
https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg
", + "json_metadata": { + "tags": [ + "money", + "gold", + "silver", + "bitcoin", + "crisis" + ], + "image": [ + "https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg", + "https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png", + "https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg" + ], + "links": [ + "https://dollarvigilante.com/subscribe" + ] + }, + "created": "2016-09-15T18:23:15", + "updated": "2016-09-15T18:23:15", + "depth": 0, + "children": 23, + "net_rshares": 102136532384242, + "is_paidout": false, + "payout_at": "2016-09-16T18:47:28", + "payout": 596.997, + "pending_payout_value": "596.997 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "dantheman", + "rshares": "28370463371572" + }, + { + "voter": "smooth", + "rshares": "31307487536364" + }, + { + "voter": "anonymous", + "rshares": "231809639013" + }, + { + "voter": "diaphanous", + "rshares": "2321962618319" + }, + { + "voter": "commedy", + "rshares": "1469558503443" + }, + { + "voter": "riverhead", + "rshares": "4287714457313" + }, + { + "voter": "badassmother", + "rshares": "1856006073992" + }, + { + "voter": "rossco99", + "rshares": "1271804694676" + }, + { + "voter": "wang", + "rshares": "2206068741954" + }, + { + "voter": "xeroc", + "rshares": "1950753758979" + }, + { + "voter": "joseph", + "rshares": "1534707047296" + }, + { + "voter": "recursive3", + "rshares": "452874558937" + }, + { + "voter": "masteryoda", + "rshares": "620996029765" + }, + { + "voter": "recursive", + "rshares": "3120582597678" + }, + { + "voter": "lee2", + "rshares": "440845842" + }, + { + "voter": "lee3", + "rshares": "26932201065" + }, + { + "voter": "lee4", + "rshares": "8677295375" + }, + { + "voter": "lee5", + "rshares": "22149018521" + }, + { + "voter": "smooth.witness", + "rshares": "5942299654212" + }, + { + "voter": "idol", + "rshares": "8927291120" + }, + { + "voter": "sakr", + "rshares": "4941942978" + }, + { + "voter": "unosuke", + "rshares": "57625926227" + }, + { + "voter": "jocelyn", + "rshares": "1536592488" + }, + { + "voter": "gregory-f", + "rshares": "14818263059" + }, + { + "voter": "edgeland", + "rshares": "154334962550" + }, + { + "voter": "gregory60", + "rshares": "8836453529" + }, + { + "voter": "full-measure", + "rshares": "29596510808" + }, + { + "voter": "eeks", + "rshares": "104880949618" + }, + { + "voter": "fkn", + "rshares": "24694558802" + }, + { + "voter": "paco-steem", + "rshares": "468281676" + }, + { + "voter": "spaninv", + "rshares": "5641697991" + }, + { + "voter": "elishagh1", + "rshares": "32459455171" + }, + { + "voter": "himalayanguru", + "rshares": "40391466193" + }, + { + "voter": "nanzo-scoop", + "rshares": "584291107228" + }, + { + "voter": "steve-walschot", + "rshares": "178471627922" + }, + { + "voter": "kefkius", + "rshares": "9857825141" + }, + { + "voter": "mummyimperfect", + "rshares": "177420844935" + }, + { + "voter": "asch", + "rshares": "106635691300" + }, + { + "voter": "kevinwong", + "rshares": "616864092786" + }, + { + "voter": "murh", + "rshares": "1061266533" + }, + { + "voter": "cryptofunk", + "rshares": "6230798580" + }, + { + "voter": "kodi", + "rshares": "579494558" + }, + { + "voter": "error", + "rshares": "2003359924" + }, + { + "voter": "andu", + "rshares": "11584833708" + }, + { + "voter": "ranko-k", + "rshares": "40553122820" + }, + { + "voter": "cyber", + "rshares": "962089879337" + }, + { + "voter": "theshell", + "rshares": "58188888655" + }, + { + "voter": "ak2020", + "rshares": "49581045086" + }, + { + "voter": "satoshifund", + "rshares": "3848697023555" + }, + { + "voter": "applecrisp", + "rshares": "402139444" + }, + { + "voter": "altoz", + "rshares": "36407027386" + }, + { + "voter": "stiletto", + "rshares": "365370465" + }, + { + "voter": "juanmiguelsalas", + "rshares": "55577467736" + }, + { + "voter": "will-zewe", + "rshares": "219283354085" + }, + { + "voter": "herzmeister", + "rshares": "87300558689" + }, + { + "voter": "trogdor", + "rshares": "275016906945" + }, + { + "voter": "tee-em", + "rshares": "5287820211" + }, + { + "voter": "michaelx", + "rshares": "31346001722" + }, + { + "voter": "thedashguy", + "rshares": "179395106552" + }, + { + "voter": "usefree", + "rshares": "4682885200" + }, + { + "voter": "mexbit", + "rshares": "189626835254" + }, + { + "voter": "mark-waser", + "rshares": "5821262190" + }, + { + "voter": "geoffrey", + "rshares": "118356217412" + }, + { + "voter": "kimziv", + "rshares": "208362110567" + }, + { + "voter": "honeythief", + "rshares": "46266779182" + }, + { + "voter": "emily-cook", + "rshares": "75334808165" + }, + { + "voter": "superfreek", + "rshares": "2187607792" + }, + { + "voter": "mrhankeh", + "rshares": "484636799" + }, + { + "voter": "grey580", + "rshares": "17908924002" + }, + { + "voter": "ladyclair", + "rshares": "275327756" + }, + { + "voter": "bacchist", + "rshares": "68449861599" + }, + { + "voter": "good-karma", + "rshares": "60315479782" + }, + { + "voter": "orly", + "rshares": "3350419346" + }, + { + "voter": "riscadox", + "rshares": "5271030976" + }, + { + "voter": "katyakov", + "rshares": "24867575018" + }, + { + "voter": "fabio", + "rshares": "373878481829" + }, + { + "voter": "tcfxyz", + "rshares": "25057642057" + }, + { + "voter": "futurefood", + "rshares": "6939984054" + }, + { + "voter": "rxhector", + "rshares": "734082781" + }, + { + "voter": "furion", + "rshares": "118094280271" + }, + { + "voter": "cdubendo", + "rshares": "105911917280" + }, + { + "voter": "barbara2", + "rshares": "578386960" + }, + { + "voter": "ch0c0latechip", + "rshares": "642869652" + }, + { + "voter": "doge4lyf", + "rshares": "594982040" + }, + { + "voter": "gord0b", + "rshares": "12668641443" + }, + { + "voter": "steem1653", + "rshares": "2632460141" + }, + { + "voter": "cynetyc", + "rshares": "136322030" + }, + { + "voter": "steemit-life", + "rshares": "25221166135" + }, + { + "voter": "snowden", + "rshares": "80777327" + }, + { + "voter": "thegoodguy", + "rshares": "5357326058" + }, + { + "voter": "aaseb", + "rshares": "14168336425" + }, + { + "voter": "karen13", + "rshares": "4209533734" + }, + { + "voter": "cryptosi", + "rshares": "6017253623" + }, + { + "voter": "nabilov", + "rshares": "251367062418" + }, + { + "voter": "noodhoog", + "rshares": "8751103405" + }, + { + "voter": "milestone", + "rshares": "46859060143" + }, + { + "voter": "creemej", + "rshares": "33739229218" + }, + { + "voter": "wildchild", + "rshares": "87223247" + }, + { + "voter": "nippel66", + "rshares": "15070803886" + }, + { + "voter": "phenom", + "rshares": "24417687626" + }, + { + "voter": "poseidon", + "rshares": "4545051592" + }, + { + "voter": "smolalit", + "rshares": "7946812357" + }, + { + "voter": "calaber24p", + "rshares": "362515598946" + }, + { + "voter": "jdenismusic", + "rshares": "147403710" + }, + { + "voter": "simon.braki.love", + "rshares": "3365797955" + }, + { + "voter": "thylbom", + "rshares": "82782405213" + }, + { + "voter": "bitcoiner", + "rshares": "3709588060" + }, + { + "voter": "deanliu", + "rshares": "32544157928" + }, + { + "voter": "dmitriybtc", + "rshares": "4996306142" + }, + { + "voter": "jl777", + "rshares": "204618396015" + }, + { + "voter": "zaebars", + "rshares": "30989614870" + }, + { + "voter": "positive", + "rshares": "20026634941" + }, + { + "voter": "yarly", + "rshares": "1809205777" + }, + { + "voter": "yarly2", + "rshares": "272641013" + }, + { + "voter": "yarly3", + "rshares": "273048922" + }, + { + "voter": "yarly4", + "rshares": "157733805" + }, + { + "voter": "yarly5", + "rshares": "158624349" + }, + { + "voter": "yarly7", + "rshares": "90416287" + }, + { + "voter": "raymonjohnstone", + "rshares": "799615699" + }, + { + "voter": "proto", + "rshares": "17267341753" + }, + { + "voter": "sisterholics", + "rshares": "34309455805" + }, + { + "voter": "yarly10", + "rshares": "437620869" + }, + { + "voter": "yarly11", + "rshares": "234191245" + }, + { + "voter": "royalmacro", + "rshares": "8781903824" + }, + { + "voter": "yarly12", + "rshares": "81879061" + }, + { + "voter": "fnait", + "rshares": "674282213" + }, + { + "voter": "keepcalmand", + "rshares": "599033376" + }, + { + "voter": "steemster1", + "rshares": "146224042" + }, + { + "voter": "dmilash", + "rshares": "3022447454" + }, + { + "voter": "andreynoch", + "rshares": "2002851358" + }, + { + "voter": "mahekg", + "rshares": "13359143286" + }, + { + "voter": "gomeravibz", + "rshares": "50579277183" + }, + { + "voter": "taker", + "rshares": "8734185109" + }, + { + "voter": "nekromarinist", + "rshares": "12064042634" + }, + { + "voter": "sharon", + "rshares": "57873464" + }, + { + "voter": "dumar022", + "rshares": "10419645487" + }, + { + "voter": "merej99", + "rshares": "2157207095" + }, + { + "voter": "lillianjones", + "rshares": "58971492" + }, + { + "voter": "laonie", + "rshares": "1213299204686" + }, + { + "voter": "twinner", + "rshares": "157521707420" + }, + { + "voter": "rawnetics", + "rshares": "23391691291" + }, + { + "voter": "laonie1", + "rshares": "22969142749" + }, + { + "voter": "laonie2", + "rshares": "23485900426" + }, + { + "voter": "laonie3", + "rshares": "23494195522" + }, + { + "voter": "laoyao", + "rshares": "24562882668" + }, + { + "voter": "myfirst", + "rshares": "42639811498" + }, + { + "voter": "somebody", + "rshares": "246279861104" + }, + { + "voter": "flysaga", + "rshares": "9450505564" + }, + { + "voter": "brendio", + "rshares": "5831615639" + }, + { + "voter": "gmurph", + "rshares": "2918578376" + }, + { + "voter": "chris.roy", + "rshares": "3690744042" + }, + { + "voter": "midnightoil", + "rshares": "54405024034" + }, + { + "voter": "ullikume", + "rshares": "4190391188" + }, + { + "voter": "laonie4", + "rshares": "23489872560" + }, + { + "voter": "laonie5", + "rshares": "23487615266" + }, + { + "voter": "laonie6", + "rshares": "23484637540" + }, + { + "voter": "laonie7", + "rshares": "23480497322" + }, + { + "voter": "kurtbeil", + "rshares": "3323984357" + }, + { + "voter": "laonie8", + "rshares": "23477049244" + }, + { + "voter": "laonie9", + "rshares": "23474334690" + }, + { + "voter": "xiaohui", + "rshares": "136078574669" + }, + { + "voter": "jphamer1", + "rshares": "21112646631" + }, + { + "voter": "bigsambucca", + "rshares": "88206053" + }, + { + "voter": "elfkitchen", + "rshares": "6791986484" + }, + { + "voter": "joele", + "rshares": "99935909954" + }, + { + "voter": "oflyhigh", + "rshares": "5855738054" + }, + { + "voter": "randyclemens", + "rshares": "15860159560" + }, + { + "voter": "paynode", + "rshares": "2343183825" + }, + { + "voter": "xiaokongcom", + "rshares": "4366149629" + }, + { + "voter": "msjennifer", + "rshares": "59437351" + }, + { + "voter": "ciao", + "rshares": "54654502" + }, + { + "voter": "session101", + "rshares": "62928860" + }, + { + "voter": "steemo", + "rshares": "52985539" + }, + { + "voter": "xianjun", + "rshares": "8801395051" + }, + { + "voter": "steema", + "rshares": "52848854" + }, + { + "voter": "sijoittaja", + "rshares": "72192938" + }, + { + "voter": "confucius", + "rshares": "69662169" + }, + { + "voter": "stevescriber", + "rshares": "72135954" + }, + { + "voter": "loli", + "rshares": "51247757" + }, + { + "voter": "miacats", + "rshares": "91519215715" + }, + { + "voter": "nano2nd", + "rshares": "52419023" + }, + { + "voter": "jarvis", + "rshares": "53661976" + }, + { + "voter": "microluck", + "rshares": "591109646" + }, + { + "voter": "razberrijam", + "rshares": "74131936" + }, + { + "voter": "fortuner", + "rshares": "53106127" + }, + { + "voter": "chinadaily", + "rshares": "2022702929" + }, + { + "voter": "pompe72", + "rshares": "88481667" + }, + { + "voter": "dollarvigilante", + "rshares": "802011524540" + }, + { + "voter": "pollina", + "rshares": "101627835" + }, + { + "voter": "johnbyrd", + "rshares": "50698107" + }, + { + "voter": "thomasaustin", + "rshares": "50682252" + }, + { + "voter": "thermor", + "rshares": "50680459" + }, + { + "voter": "ficholl", + "rshares": "50691211" + }, + { + "voter": "widell", + "rshares": "51852278" + }, + { + "voter": "movievertigo", + "rshares": "3635091595" + }, + { + "voter": "revelbrooks", + "rshares": "50311250" + }, + { + "voter": "laonie10", + "rshares": "23468154723" + }, + { + "voter": "netaterra", + "rshares": "2982691190" + }, + { + "voter": "andrewawerdna", + "rshares": "21980957828" + }, + { + "voter": "trev", + "rshares": "5712937692" + }, + { + "voter": "erroneous-logic", + "rshares": "1874035641" + }, + { + "voter": "sergeypotapov", + "rshares": "302425178" + }, + { + "voter": "lensessions", + "rshares": "65868377" + }, + { + "voter": "wmhammer", + "rshares": "59126308" + }, + { + "voter": "emancipatedhuman", + "rshares": "45978108133" + }, + { + "voter": "pressfortruth", + "rshares": "15340272043" + }, + { + "voter": "hilarski", + "rshares": "6654726855" + }, + { + "voter": "craigwilliamz", + "rshares": "8773942171" + }, + { + "voter": "onetree", + "rshares": "8856106682" + }, + { + "voter": "slorunner", + "rshares": "101945845" + }, + { + "voter": "shadowspub", + "rshares": "2029369552" + }, + { + "voter": "daut44", + "rshares": "32463005362" + }, + { + "voter": "curpose", + "rshares": "50416427" + }, + { + "voter": "suprepachyderm", + "rshares": "59693834" + }, + { + "voter": "themonetaryfew", + "rshares": "1615332211" + }, + { + "voter": "dajohns1420", + "rshares": "989363278" + }, + { + "voter": "runridefly", + "rshares": "2196907450" + }, + { + "voter": "newandold", + "rshares": "3915304227" + }, + { + "voter": "jamesyk", + "rshares": "57856784" + }, + { + "voter": "shenanigator", + "rshares": "112983030208" + }, + { + "voter": "jcomeauictx", + "rshares": "58197677" + }, + { + "voter": "quinneaker", + "rshares": "12901147949" + }, + { + "voter": "freeinthought", + "rshares": "752032432" + }, + { + "voter": "funkywanderer", + "rshares": "1783693666" + }, + { + "voter": "richardcrill", + "rshares": "4900461398" + }, + { + "voter": "laonie11", + "rshares": "22621459650" + }, + { + "voter": "jeremyfromwi", + "rshares": "2205784762" + }, + { + "voter": "troich", + "rshares": "50588612" + }, + { + "voter": "nadin3", + "rshares": "4662965424" + }, + { + "voter": "profanarky", + "rshares": "588228551" + }, + { + "voter": "xanoxt", + "rshares": "3411072843" + }, + { + "voter": "davidjkelley", + "rshares": "1625414479" + }, + { + "voter": "crion", + "rshares": "50593879" + }, + { + "voter": "greatness", + "rshares": "174778016" + }, + { + "voter": "hitherise", + "rshares": "50271139" + }, + { + "voter": "wiss", + "rshares": "50262756" + }, + { + "voter": "sebastianbauer", + "rshares": "56782516" + }, + { + "voter": "fizzgig", + "rshares": "55667728" + }, + { + "voter": "sponge-bob", + "rshares": "26571803569" + }, + { + "voter": "l0k1", + "rshares": "4044716723" + }, + { + "voter": "digital-wisdom", + "rshares": "15232622426" + }, + { + "voter": "ethical-ai", + "rshares": "3710973264" + }, + { + "voter": "stroully", + "rshares": "51033798" + }, + { + "voter": "titusfrost", + "rshares": "3752641890" + }, + { + "voter": "jwaser", + "rshares": "6682880996" + }, + { + "voter": "thadm", + "rshares": "50712038" + }, + { + "voter": "zettar", + "rshares": "2353724275" + }, + { + "voter": "smisi", + "rshares": "1655277599" + }, + { + "voter": "bluehorseshoe", + "rshares": "17357974240" + }, + { + "voter": "lighter", + "rshares": "53413720" + }, + { + "voter": "yorsens", + "rshares": "50370757" + }, + { + "voter": "maarnio", + "rshares": "263853222" + }, + { + "voter": "analyzethis", + "rshares": "50931848" + }, + { + "voter": "bwaser", + "rshares": "2617343597" + }, + { + "voter": "sofa", + "rshares": "50840303" + }, + { + "voter": "panther", + "rshares": "323483227" + }, + { + "voter": "doggnostic", + "rshares": "53871683" + }, + { + "voter": "ct-gurus", + "rshares": "659649765" + }, + { + "voter": "jenny-talls", + "rshares": "53593366" + }, + { + "voter": "charlieshrem", + "rshares": "411677045923" + }, + { + "voter": "tracemayer", + "rshares": "61827447459" + }, + { + "voter": "brains", + "rshares": "54239080444" + }, + { + "voter": "waldemar-kuhn", + "rshares": "50450987" + }, + { + "voter": "steemafon", + "rshares": "1415009195" + }, + { + "voter": "bitcoinparadise", + "rshares": "1352324852" + }, + { + "voter": "chick1", + "rshares": "5753524189" + }, + { + "voter": "rigaronib", + "rshares": "3605995609" + }, + { + "voter": "aoki", + "rshares": "50584036" + }, + { + "voter": "typingagent", + "rshares": "50516543" + }, + { + "voter": "cwb", + "rshares": "50528809" + }, + { + "voter": "freebornangel", + "rshares": "62515317" + }, + { + "voter": "anomaly", + "rshares": "271440423" + }, + { + "voter": "ellepdub", + "rshares": "2401297947" + }, + { + "voter": "inarix03", + "rshares": "63405661" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "rayzzz", + "rshares": "51615652" + }, + { + "voter": "herpetologyguy", + "rshares": "12115690216" + }, + { + "voter": "morgan.waser", + "rshares": "4712300251" + }, + { + "voter": "iggy", + "rshares": "157644916" + }, + { + "voter": "mbizryu0", + "rshares": "51636819" + }, + { + "voter": "archij", + "rshares": "51631638" + }, + { + "voter": "movie7283", + "rshares": "51530815" + }, + { + "voter": "ppcompp2", + "rshares": "51527606" + }, + { + "voter": "jj1968", + "rshares": "51520427" + }, + { + "voter": "cineger", + "rshares": "51516489" + }, + { + "voter": "sksduddk", + "rshares": "51497383" + }, + { + "voter": "jjc0719", + "rshares": "51490214" + }, + { + "voter": "glassheart", + "rshares": "51235131" + }, + { + "voter": "deli", + "rshares": "51215236" + }, + { + "voter": "anns", + "rshares": "1233685675" + }, + { + "voter": "breeze", + "rshares": "50798322" + }, + { + "voter": "sjytoy", + "rshares": "50677982" + }, + { + "voter": "shy2675", + "rshares": "50676799" + }, + { + "voter": "suance1009", + "rshares": "50675747" + }, + { + "voter": "hasqmd", + "rshares": "50674176" + }, + { + "voter": "fischer67", + "rshares": "50673722" + }, + { + "voter": "elya1", + "rshares": "50672116" + }, + { + "voter": "xclamp45", + "rshares": "50632828" + }, + { + "voter": "likeagame1", + "rshares": "50618471" + }, + { + "voter": "apple4006", + "rshares": "50616898" + }, + { + "voter": "bigbell61", + "rshares": "50615195" + }, + { + "voter": "dolpo777", + "rshares": "50612850" + }, + { + "voter": "dongperi", + "rshares": "50611931" + }, + { + "voter": "lion2byung", + "rshares": "50610620" + }, + { + "voter": "cwj1973", + "rshares": "50610002" + }, + { + "voter": "psj212", + "rshares": "50609329" + }, + { + "voter": "owithed2", + "rshares": "50608661" + }, + { + "voter": "fiself2", + "rshares": "50606929" + }, + { + "voter": "trablinever1", + "rshares": "50605131" + }, + { + "voter": "nuals1940", + "rshares": "50603861" + }, + { + "voter": "fanceth2", + "rshares": "50602310" + }, + { + "voter": "unilever", + "rshares": "50572441" + }, + { + "voter": "amstel", + "rshares": "50540827" + }, + { + "voter": "bapparabi", + "rshares": "1921231770" + }, + { + "voter": "sunlight", + "rshares": "50479027" + }, + { + "voter": "forea1995", + "rshares": "50355943" + }, + { + "voter": "holow1968", + "rshares": "50354561" + }, + { + "voter": "peaces1952", + "rshares": "50353969" + }, + { + "voter": "himighar2", + "rshares": "50346496" + }, + { + "voter": "aromese1974", + "rshares": "50345607" + }, + { + "voter": "runis1943", + "rshares": "50344921" + }, + { + "voter": "tong1962", + "rshares": "50344067" + }, + { + "voter": "hishe1997", + "rshares": "50340744" + }, + { + "voter": "letstalkliberty", + "rshares": "255059000" + }, + { + "voter": "strong-ai", + "rshares": "3609651500" + }, + { + "voter": "ninjapainter", + "rshares": "53375937" + }, + { + "voter": "buit1989", + "rshares": "51393104" + }, + { + "voter": "imadecoult1", + "rshares": "51389981" + }, + { + "voter": "infees2", + "rshares": "51387526" + }, + { + "voter": "suar1997", + "rshares": "51384095" + }, + { + "voter": "sobsell93", + "rshares": "51382067" + }, + { + "voter": "stroned96", + "rshares": "51380710" + }, + { + "voter": "drethe", + "rshares": "51378107" + }, + { + "voter": "qualwas", + "rshares": "51377505" + }, + { + "voter": "phent1994", + "rshares": "51376367" + }, + { + "voter": "baboyes", + "rshares": "51375075" + }, + { + "voter": "whor1973", + "rshares": "51373532" + }, + { + "voter": "youreforn", + "rshares": "51372739" + }, + { + "voter": "voll1981", + "rshares": "51371902" + }, + { + "voter": "copenty2", + "rshares": "51370717" + }, + { + "voter": "maject2", + "rshares": "51369717" + }, + { + "voter": "coust1997", + "rshares": "51367233" + }, + { + "voter": "busionea84", + "rshares": "51366398" + }, + { + "voter": "therver1", + "rshares": "51365174" + }, + { + "voter": "appirdsmanne1990", + "rshares": "51364022" + }, + { + "voter": "alienighted87", + "rshares": "51362967" + }, + { + "voter": "anity1994", + "rshares": "51359746" + }, + { + "voter": "themphe1", + "rshares": "59959066" + }, + { + "voter": "abild1988", + "rshares": "51355864" + }, + { + "voter": "spoll1973", + "rshares": "51353540" + }, + { + "voter": "afteld1", + "rshares": "66162576" + }, + { + "voter": "igtes", + "rshares": "71207873" + }, + { + "voter": "dikanevroman", + "rshares": "835065804" + }, + { + "voter": "buffett", + "rshares": "141679752" + }, + { + "voter": "rusteemitblog", + "rshares": "1630362522" + }, + { + "voter": "robyneggs", + "rshares": "167843838" + }, + { + "voter": "michaelstobiersk", + "rshares": "1300689481" + }, + { + "voter": "witchcraftblog", + "rshares": "453506109" + }, + { + "voter": "sdc", + "rshares": "158057595" + }, + { + "voter": "gravity", + "rshares": "160973134" + }, + { + "voter": "digitalillusions", + "rshares": "160900665" + }, + { + "voter": "illusions", + "rshares": "157726117" + }, + { + "voter": "cybergirls", + "rshares": "157176058" + }, + { + "voter": "correct", + "rshares": "156847954" + }, + { + "voter": "haribo", + "rshares": "156814579" + }, + { + "voter": "stimmt", + "rshares": "156194471" + }, + { + "voter": "fallout", + "rshares": "156054487" + }, + { + "voter": "rule", + "rshares": "159062820" + }, + { + "voter": "xtreme", + "rshares": "155907388" + }, + { + "voter": "modernbukowski", + "rshares": "1442647825" + }, + { + "voter": "steem-wallet", + "rshares": "158602900" + }, + { + "voter": "nerds", + "rshares": "158535752" + }, + { + "voter": "goldmatters", + "rshares": "31008332335" + }, + { + "voter": "majes", + "rshares": "155796749" + }, + { + "voter": "maxb02", + "rshares": "155166715" + }, + { + "voter": "dealzgal", + "rshares": "71727340" + }, + { + "voter": "bleujay", + "rshares": "120983531" + }, + { + "voter": "storage", + "rshares": "68013381" + }, + { + "voter": "risabold", + "rshares": "298391608" + }, + { + "voter": "dougkarr", + "rshares": "154247502" + }, + { + "voter": "blackmarket", + "rshares": "58460105" + }, + { + "voter": "gifts", + "rshares": "61530871" + }, + { + "voter": "expat", + "rshares": "96643251" + }, + { + "voter": "pathtomydream", + "rshares": "181770825" + }, + { + "voter": "doubledex", + "rshares": "519265850" + }, + { + "voter": "steemlift", + "rshares": "1593664040" + }, + { + "voter": "toddemaher1", + "rshares": "129609202" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 387, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/money/@dollarvigilante/another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", + "blacklists": [] + }, + { + "post_id": 960258, + "author": "gavvet", + "permlink": "why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", + "category": "herpetology", + "title": "Why You Don’t Want to Kill that Snake in Your Yard (featuring @herpetologyguy as author)", + "body": "@herpetologyguy\n\nOne of my many tasks as a zoo keeper is connecting people to animals. \n-\n\n\n\n

The museum I work at is unique because we showcase animals that are native to Virginia -- meaning that these are animals people will find close to home, rather than across the ocean in some distant country. This makes my job more crucial in that I am responsible for educating people about the reptiles and amphibians that they will find in their own backyards. And obviously, there’s one group of reptiles that gives people more pause than almost any other animal . . . . 

\n

Snakes. 

\n

http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj   Picture Credit

\n

I do public programs featuring snakes quite frequently.  I believe people should know how to identify local venomous/non-venomous snakes, their role in the environment and how to deal with them when they are in close proximity to our homes.  Usually, I get eager audiences asking great questions.  But, every now and then, I get some idiot who tells me, “I saw that same snake in my backyard! I chopped off its head with a shovel!”

\n

Are they an idiot for killing the snake?  Not necessarily . . . I don’t know the situation behind the encounter. But, only an idiot would walk into a wildlife facility, approach a zoo keeper and proudly declare that they kill the very same animals that the keeper is charged with the care for.  Would you walk into an animal shelter and tell someone working there that you enjoy stomping on puppies?  To us, there’s not much difference… 

\n

http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png   Picture Credit\n

\n

The best we can do in these situations is to try to educate people. This can be difficult because so many people are set in their ways -- plus we have to combat an instinctive fear and prejudice against snakes.  So, I’m going to briefly lay it all out for you and tell you \"Why you shouldn’t kill that snake in your yard.\" 

\n

http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg   Picture Credit

\n

1.  It’s ILLEGAL in most states to kill a wild snake, unless that snake presents an IMMEDIATE threat.  And no, a snake crawling through your yard does not represent a good enough excuse to use force.  We’re talking about a situation where a venomous snake is about to strike and you have no escape route but to fight your way out.  And guess what, that really doesn’t ever happen (barring instances where someone purposefully provokes an animal).  Wildlife and law enforcement agencies are cracking down on people killing snakes, so it’s better to keep yourself out of trouble. 

\n

http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg   Picture Credit

\n

2.  You are putting yourself in harm’s way.  The vast majority of snake bites occur when people attempt to capture or kill snakes.  If left alone, the snake CANNOT hurt you.  Call wildlife services or trained professionals to remove the animal. 

\n

http://www.snakegetters.com/demo/bud-cotton-gg.jpg   Picture Credit

\n

3.  It’s an incredibly beneficial animal, and you’d be foolish to kill it.  Small snakes eat a huge variety of pest insects that destroy gardens, while large snakes typically feed on rats and other rodents that infest our homes.  If you see a large snake hanging around, you have a rodent problem; snakes will not hang around if there is no food source.  To keep snakes from being attracted to your property, do your best to remove any shelter or food sources that would attract rodents.  Some snakes even eat other snakes, and species like the harmless king snake will even feed on venomous species! 

\n

https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg   Picture Credit

\n

4.  Another snake might show up.  Snakes will not typically inhabit the same area in order to avoid competition.  If you kill that harmless rat snake, but you still have a food source nearby, another snake may move in to make use of that source.  The new snake may be another harmless species or something a bit less desirable.  So why not let that harmless snake take care of the infestation for you?

\n

http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg   Picture Credit

\n

Having a snake around can be hugely beneficial to you.  It is a free, environmentally-safe form of pest control.  Snakes, including venomous species, are non-aggressive animals (unless you provoke them) that will actively do their best to AVOID people.  A resident snake will often go unnoticed by homeowners, and most encounters are fleeting glimpses of the snake making a hasty escape.  Remember that snakes have their own unique role in the environment, and regardless of our own fears and feelings towards them, they are a necessary part of life. 

\n

   http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg   Picture Credit

\n\n\nif you liked this also please check out:\nhttps://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians\n\n\n***don't forget to follow @herpetologyguy***", + "json_metadata": { + "tags": [ + "herpetology", + "reptiles", + "snakes", + "science" + ], + "users": [ + "herpetologyguy" + ], + "image": [ + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg" + ], + "links": [ + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://www.sciencemag.org", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://proactivepestga.com", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://blogs.discovermagazine.com", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.mylakelandnow.com", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "http://www.snakegetters.com", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "https://www.youtube.com/watch?v=ImOj1CKTBqE", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://phenomena.nationalgeographic.com", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg", + "http://westernmassnaturalist.org", + "https://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians" + ] + }, + "created": "2016-09-15T18:19:39", + "updated": "2016-09-15T18:19:39", + "depth": 0, + "children": 6, + "net_rshares": 68620995119384, + "is_paidout": false, + "payout_at": "2016-09-16T18:44:06", + "payout": 274.438, + "pending_payout_value": "274.438 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "smooth", + "rshares": "31307487536364" + }, + { + "voter": "anonymous", + "rshares": "231809639013" + }, + { + "voter": "butterfly", + "rshares": "1551268628220" + }, + { + "voter": "riverhead", + "rshares": "4287714457313" + }, + { + "voter": "badassmother", + "rshares": "1855967006728" + }, + { + "voter": "hr1", + "rshares": "2053236030423" + }, + { + "voter": "rossco99", + "rshares": "1271804694676" + }, + { + "voter": "wang", + "rshares": "2206068741954" + }, + { + "voter": "jaewoocho", + "rshares": "22391622942" + }, + { + "voter": "joseph", + "rshares": "1534654466021" + }, + { + "voter": "recursive2", + "rshares": "466132509421" + }, + { + "voter": "recursive3", + "rshares": "452874558937" + }, + { + "voter": "masteryoda", + "rshares": "636519834128" + }, + { + "voter": "recursive", + "rshares": "3120576239931" + }, + { + "voter": "smooth.witness", + "rshares": "5942254587236" + }, + { + "voter": "idol", + "rshares": "8927291120" + }, + { + "voter": "steemrollin", + "rshares": "800066797130" + }, + { + "voter": "sakr", + "rshares": "4941942978" + }, + { + "voter": "chitty", + "rshares": "284401462010" + }, + { + "voter": "unosuke", + "rshares": "75736848691" + }, + { + "voter": "noaommerrr", + "rshares": "481790356914" + }, + { + "voter": "jocelyn", + "rshares": "1536592488" + }, + { + "voter": "acidsun", + "rshares": "85270554570" + }, + { + "voter": "gregory-f", + "rshares": "14502980866" + }, + { + "voter": "edgeland", + "rshares": "154334962550" + }, + { + "voter": "gregory60", + "rshares": "9028550345" + }, + { + "voter": "gavvet", + "rshares": "1196485708874" + }, + { + "voter": "eeks", + "rshares": "89897944197" + }, + { + "voter": "fkn", + "rshares": "1511911763" + }, + { + "voter": "paco-steem", + "rshares": "122160437" + }, + { + "voter": "spaninv", + "rshares": "1471747302" + }, + { + "voter": "elishagh1", + "rshares": "1987313581" + }, + { + "voter": "richman", + "rshares": "7803257741" + }, + { + "voter": "nanzo-scoop", + "rshares": "584279800798" + }, + { + "voter": "kefkius", + "rshares": "9857825141" + }, + { + "voter": "mummyimperfect", + "rshares": "177417522325" + }, + { + "voter": "alenevaa", + "rshares": "2366347863" + }, + { + "voter": "coar", + "rshares": "313697862" + }, + { + "voter": "asch", + "rshares": "106635074770" + }, + { + "voter": "murh", + "rshares": "1061264730" + }, + { + "voter": "cryptofunk", + "rshares": "3187850436" + }, + { + "voter": "kodi", + "rshares": "579494558" + }, + { + "voter": "error", + "rshares": "2003359924" + }, + { + "voter": "andu", + "rshares": "11848125383" + }, + { + "voter": "cyber", + "rshares": "970579316703" + }, + { + "voter": "theshell", + "rshares": "59952188311" + }, + { + "voter": "ak2020", + "rshares": "49580154489" + }, + { + "voter": "satoshifund", + "rshares": "3848697023555" + }, + { + "voter": "applecrisp", + "rshares": "402139444" + }, + { + "voter": "altoz", + "rshares": "35693164103" + }, + { + "voter": "stiletto", + "rshares": "95314034" + }, + { + "voter": "will-zewe", + "rshares": "219283354085" + }, + { + "voter": "lindee-hamner", + "rshares": "12241505540" + }, + { + "voter": "zakharya", + "rshares": "15787522491" + }, + { + "voter": "trogdor", + "rshares": "275008585094" + }, + { + "voter": "tee-em", + "rshares": "5047464747" + }, + { + "voter": "mark-waser", + "rshares": "5821262190" + }, + { + "voter": "geoffrey", + "rshares": "118356217412" + }, + { + "voter": "kimziv", + "rshares": "16027781644" + }, + { + "voter": "honeythief", + "rshares": "45359587433" + }, + { + "voter": "emily-cook", + "rshares": "75333038089" + }, + { + "voter": "superfreek", + "rshares": "2187607792" + }, + { + "voter": "grey580", + "rshares": "17557768630" + }, + { + "voter": "ladyclair", + "rshares": "275327756" + }, + { + "voter": "michaellamden68", + "rshares": "3898829337" + }, + { + "voter": "thebatchman", + "rshares": "19975706505" + }, + { + "voter": "orly", + "rshares": "3350419346" + }, + { + "voter": "riscadox", + "rshares": "5271030976" + }, + { + "voter": "furion", + "rshares": "7380892516" + }, + { + "voter": "cdubendo", + "rshares": "105911917280" + }, + { + "voter": "jacor", + "rshares": "156249887947" + }, + { + "voter": "steem1653", + "rshares": "2632460141" + }, + { + "voter": "cynetyc", + "rshares": "136322030" + }, + { + "voter": "snowden", + "rshares": "80777327" + }, + { + "voter": "thegoodguy", + "rshares": "5250179537" + }, + { + "voter": "aaseb", + "rshares": "14168005907" + }, + { + "voter": "karen13", + "rshares": "4209533734" + }, + { + "voter": "noodhoog", + "rshares": "8751103405" + }, + { + "voter": "hyiparena", + "rshares": "8164924332" + }, + { + "voter": "milestone", + "rshares": "46859060143" + }, + { + "voter": "artific", + "rshares": "21565632626" + }, + { + "voter": "creemej", + "rshares": "33739169732" + }, + { + "voter": "nippel66", + "rshares": "15378221086" + }, + { + "voter": "blueorgy", + "rshares": "163325751551" + }, + { + "voter": "benjiberigan", + "rshares": "13373880577" + }, + { + "voter": "poseidon", + "rshares": "349618451" + }, + { + "voter": "smolalit", + "rshares": "7946812357" + }, + { + "voter": "simon.braki.love", + "rshares": "3365797955" + }, + { + "voter": "sharker", + "rshares": "5609578664" + }, + { + "voter": "jl777", + "rshares": "204618396015" + }, + { + "voter": "oecp85", + "rshares": "1114903893" + }, + { + "voter": "victoria2002", + "rshares": "1218867625" + }, + { + "voter": "positive", + "rshares": "1226120506" + }, + { + "voter": "yarly", + "rshares": "1809205777" + }, + { + "voter": "yarly2", + "rshares": "272641013" + }, + { + "voter": "yarly3", + "rshares": "273048922" + }, + { + "voter": "yarly4", + "rshares": "157733805" + }, + { + "voter": "yarly5", + "rshares": "158624349" + }, + { + "voter": "yarly7", + "rshares": "90416287" + }, + { + "voter": "steemchain", + "rshares": "50626015" + }, + { + "voter": "proto", + "rshares": "17267341753" + }, + { + "voter": "sisterholics", + "rshares": "2708629529" + }, + { + "voter": "yarly10", + "rshares": "437620869" + }, + { + "voter": "yarly11", + "rshares": "234191245" + }, + { + "voter": "royalmacro", + "rshares": "8781903824" + }, + { + "voter": "yarly12", + "rshares": "81879061" + }, + { + "voter": "steemster1", + "rshares": "146224042" + }, + { + "voter": "dmilash", + "rshares": "3022447454" + }, + { + "voter": "glitterpig", + "rshares": "3353991305" + }, + { + "voter": "taker", + "rshares": "8734185109" + }, + { + "voter": "nekromarinist", + "rshares": "7825324952" + }, + { + "voter": "sharon", + "rshares": "57873464" + }, + { + "voter": "lillianjones", + "rshares": "58971492" + }, + { + "voter": "laonie", + "rshares": "95786319596" + }, + { + "voter": "twinner", + "rshares": "153264363976" + }, + { + "voter": "laoyao", + "rshares": "24562882668" + }, + { + "voter": "myfirst", + "rshares": "2664979204" + }, + { + "voter": "somebody", + "rshares": "19443061295" + }, + { + "voter": "flysaga", + "rshares": "726959262" + }, + { + "voter": "asdes", + "rshares": "7707314246" + }, + { + "voter": "gmurph", + "rshares": "2501638608" + }, + { + "voter": "stormblaze", + "rshares": "1693568633" + }, + { + "voter": "denn", + "rshares": "5558177167" + }, + { + "voter": "midnightoil", + "rshares": "4295114546" + }, + { + "voter": "kurtbeil", + "rshares": "3157785139" + }, + { + "voter": "xiaohui", + "rshares": "10742990382" + }, + { + "voter": "zahar", + "rshares": "67965196" + }, + { + "voter": "elfkitchen", + "rshares": "485140088" + }, + { + "voter": "joele", + "rshares": "99935909954" + }, + { + "voter": "oflyhigh", + "rshares": "5855738054" + }, + { + "voter": "randyclemens", + "rshares": "15549176040" + }, + { + "voter": "dims", + "rshares": "79785139" + }, + { + "voter": "xiaokongcom", + "rshares": "335856762" + }, + { + "voter": "future24", + "rshares": "1446509276" + }, + { + "voter": "msjennifer", + "rshares": "60819615" + }, + { + "voter": "ciao", + "rshares": "54654502" + }, + { + "voter": "cristi", + "rshares": "13254585210" + }, + { + "voter": "steemo", + "rshares": "54217761" + }, + { + "voter": "xianjun", + "rshares": "677027684" + }, + { + "voter": "steema", + "rshares": "54077897" + }, + { + "voter": "sijoittaja", + "rshares": "72192938" + }, + { + "voter": "confucius", + "rshares": "69662169" + }, + { + "voter": "miacats", + "rshares": "93807196108" + }, + { + "voter": "jarvis", + "rshares": "54909929" + }, + { + "voter": "razberrijam", + "rshares": "74131936" + }, + { + "voter": "fortuner", + "rshares": "53106127" + }, + { + "voter": "chinadaily", + "rshares": "2022702929" + }, + { + "voter": "pjheinz", + "rshares": "10471074095" + }, + { + "voter": "pompe72", + "rshares": "86712034" + }, + { + "voter": "pollina", + "rshares": "108403024" + }, + { + "voter": "johnbyrd", + "rshares": "51877132" + }, + { + "voter": "thomasaustin", + "rshares": "51860909" + }, + { + "voter": "thermor", + "rshares": "51859074" + }, + { + "voter": "ficholl", + "rshares": "51870077" + }, + { + "voter": "widell", + "rshares": "51852278" + }, + { + "voter": "movievertigo", + "rshares": "3635091595" + }, + { + "voter": "revelbrooks", + "rshares": "51481279" + }, + { + "voter": "netaterra", + "rshares": "2982691190" + }, + { + "voter": "andrewawerdna", + "rshares": "21980957828" + }, + { + "voter": "onetree", + "rshares": "4337454155" + }, + { + "voter": "steemitpatina", + "rshares": "4633082667" + }, + { + "voter": "curpose", + "rshares": "50416427" + }, + { + "voter": "dajohns1420", + "rshares": "989363278" + }, + { + "voter": "runridefly", + "rshares": "2196907450" + }, + { + "voter": "funkywanderer", + "rshares": "1783693666" + }, + { + "voter": "richardcrill", + "rshares": "4747321980" + }, + { + "voter": "jeremyfromwi", + "rshares": "2205784762" + }, + { + "voter": "troich", + "rshares": "50588612" + }, + { + "voter": "nadin3", + "rshares": "4546391288" + }, + { + "voter": "davidjkelley", + "rshares": "1625414479" + }, + { + "voter": "aggroed", + "rshares": "9458733324" + }, + { + "voter": "crion", + "rshares": "50593879" + }, + { + "voter": "greatness", + "rshares": "178419224" + }, + { + "voter": "hitherise", + "rshares": "50271139" + }, + { + "voter": "wiss", + "rshares": "50262756" + }, + { + "voter": "sponge-bob", + "rshares": "53143607139" + }, + { + "voter": "digital-wisdom", + "rshares": "15571125147" + }, + { + "voter": "ethical-ai", + "rshares": "3710973264" + }, + { + "voter": "stroully", + "rshares": "51033798" + }, + { + "voter": "jwaser", + "rshares": "6831389463" + }, + { + "voter": "tatianka", + "rshares": "1064809843" + }, + { + "voter": "thadm", + "rshares": "50712038" + }, + { + "voter": "prof", + "rshares": "50710305" + }, + { + "voter": "smisi", + "rshares": "1655277599" + }, + { + "voter": "yorsens", + "rshares": "50370757" + }, + { + "voter": "bane", + "rshares": "50065875" + }, + { + "voter": "vive", + "rshares": "50059754" + }, + { + "voter": "coad", + "rshares": "50054445" + }, + { + "voter": "bwaser", + "rshares": "2617343597" + }, + { + "voter": "sofa", + "rshares": "50840303" + }, + { + "voter": "panther", + "rshares": "323483227" + }, + { + "voter": "doggnostic", + "rshares": "53871683" + }, + { + "voter": "jenny-talls", + "rshares": "53593366" + }, + { + "voter": "brains", + "rshares": "54239080444" + }, + { + "voter": "waldemar-kuhn", + "rshares": "50450987" + }, + { + "voter": "ailo", + "rshares": "50933404" + }, + { + "voter": "steemafon", + "rshares": "1387263917" + }, + { + "voter": "bitcoinparadise", + "rshares": "1317649856" + }, + { + "voter": "chick1", + "rshares": "5753524189" + }, + { + "voter": "steempowerwhale", + "rshares": "3338622584" + }, + { + "voter": "aoki", + "rshares": "50584036" + }, + { + "voter": "typingagent", + "rshares": "50516543" + }, + { + "voter": "cwb", + "rshares": "50528809" + }, + { + "voter": "freebornangel", + "rshares": "62515317" + }, + { + "voter": "anomaly", + "rshares": "271440423" + }, + { + "voter": "ellepdub", + "rshares": "2401297947" + }, + { + "voter": "rynow", + "rshares": "120649148" + }, + { + "voter": "inarix03", + "rshares": "61292139" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "rayzzz", + "rshares": "50583338" + }, + { + "voter": "herpetologyguy", + "rshares": "12115690216" + }, + { + "voter": "morgan.waser", + "rshares": "4712300251" + }, + { + "voter": "steemq", + "rshares": "51230296" + }, + { + "voter": "motion", + "rshares": "50871059" + }, + { + "voter": "autodesk", + "rshares": "50794039" + }, + { + "voter": "yotoh", + "rshares": "50704078" + }, + { + "voter": "fenix", + "rshares": "50538694" + }, + { + "voter": "bapparabi", + "rshares": "1921231770" + }, + { + "voter": "friends", + "rshares": "50532230" + }, + { + "voter": "albertheijn", + "rshares": "50349676" + }, + { + "voter": "strong-ai", + "rshares": "3609651500" + }, + { + "voter": "grisha-danunaher", + "rshares": "516546553" + }, + { + "voter": "igtes", + "rshares": "71207873" + }, + { + "voter": "buffett", + "rshares": "141679752" + }, + { + "voter": "sjamayee", + "rshares": "213848535" + }, + { + "voter": "witchcraftblog", + "rshares": "453506109" + }, + { + "voter": "zaitsevalesyaa", + "rshares": "3265972001" + }, + { + "voter": "acute", + "rshares": "161205518" + }, + { + "voter": "bethesda", + "rshares": "161179339" + }, + { + "voter": "realtime", + "rshares": "160957729" + }, + { + "voter": "dresden", + "rshares": "7187212765" + }, + { + "voter": "mgibson", + "rshares": "212371776" + }, + { + "voter": "capcom", + "rshares": "156837244" + }, + { + "voter": "greenpeace", + "rshares": "159506164" + }, + { + "voter": "panic", + "rshares": "159352476" + }, + { + "voter": "fallout", + "rshares": "156054487" + }, + { + "voter": "xtreme", + "rshares": "159025535" + }, + { + "voter": "modernbukowski", + "rshares": "1473342460" + }, + { + "voter": "citigroup", + "rshares": "158541985" + }, + { + "voter": "goldmatters", + "rshares": "30995434343" + }, + { + "voter": "dealzgal", + "rshares": "71727340" + }, + { + "voter": "storage", + "rshares": "64921864" + }, + { + "voter": "risabold", + "rshares": "298391608" + }, + { + "voter": "blackmarket", + "rshares": "55383257" + }, + { + "voter": "gifts", + "rshares": "58454327" + }, + { + "voter": "expat", + "rshares": "93882016" + }, + { + "voter": "toddemaher1", + "rshares": "126595034" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 247, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/herpetology/@gavvet/why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", + "blacklists": [] + }, + { + "post_id": 960430, + "author": "juanmiguelsalas", + "permlink": "how-the-number-pi-sounds-on-a-piano", + "category": "music", + "title": "How The Number Pi Sounds On A Piano?", + "body": "### Have you ever wondered how the number Pi sounds in a piano? \nBecause the musician David Macdonald recorded it with an accuracy of 122 digits after the decimal point. Sounds pretty cool.\n\n
https://youtu.be/wM-x3pUcdeo \n\n
", + "json_metadata": { + "tags": [ + "music", + "popularscience", + "science", + "art", + "math" + ], + "image": [ + "https://img.youtube.com/vi/wM-x3pUcdeo/0.jpg" + ], + "links": [ + "https://youtu.be/wM-x3pUcdeo" + ] + }, + "created": "2016-09-15T18:40:30", + "updated": "2016-09-15T18:40:30", + "depth": 0, + "children": 0, + "net_rshares": 43578994795442, + "is_paidout": false, + "payout_at": "2016-09-16T19:25:21", + "payout": 114.187, + "pending_payout_value": "114.187 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231813287435" + }, + { + "voter": "blocktrades", + "rshares": "39227911522287" + }, + { + "voter": "riverhead", + "rshares": "3981536804873" + }, + { + "voter": "richman", + "rshares": "7803257741" + }, + { + "voter": "juanmiguelsalas", + "rshares": "55577392625" + }, + { + "voter": "skapaneas", + "rshares": "20193334739" + }, + { + "voter": "fabio", + "rshares": "53411211689" + }, + { + "voter": "hobgoblin", + "rshares": "131247634" + }, + { + "voter": "pompe72", + "rshares": "90251300" + }, + { + "voter": "uri-bruck", + "rshares": "62828027" + }, + { + "voter": "roadhog", + "rshares": "55070425" + }, + { + "voter": "doggnostic", + "rshares": "52794249" + }, + { + "voter": "jenny-talls", + "rshares": "52521499" + }, + { + "voter": "post-successful", + "rshares": "54483699" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "creativecasualty", + "rshares": "150210020" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 16, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/music/@juanmiguelsalas/how-the-number-pi-sounds-on-a-piano", + "blacklists": [] + }, + { + "post_id": 960450, + "author": "jackgallenhall", + "permlink": "how-to-make-paper-flowers", + "category": "paper", + "title": "How to make Paper Flowers", + "body": "\n

Watching this video and Enjoy.....

\n

https://youtu.be/tP1qbGrMDt8

\n", + "json_metadata": { + "tags": [ + "paper", + "flowers" + ], + "image": [ + "https://img.youtube.com/vi/tP1qbGrMDt8/0.jpg" + ], + "links": [ + "https://youtu.be/tP1qbGrMDt8" + ] + }, + "created": "2016-09-15T18:42:18", + "updated": "2016-09-15T18:42:18", + "depth": 0, + "children": 0, + "net_rshares": 39465229203961, + "is_paidout": false, + "payout_at": "2016-09-16T19:32:11", + "payout": 94.467, + "pending_payout_value": "94.467 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231815339768" + }, + { + "voter": "blocktrades", + "rshares": "39228026877320" + }, + { + "voter": "jackgallenhall", + "rshares": "1937028254" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "zaitsevalesyaa", + "rshares": "3200652561" + }, + { + "voter": "alexandrapop", + "rshares": "150728858" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 6, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/paper/@jackgallenhall/how-to-make-paper-flowers", + "blacklists": [] + }, + { + "post_id": 960970, + "author": "charlieshrem", + "permlink": "mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem", + "category": "story", + "title": "MackerelCoin & My Socioeconomic Observations from Prison (Part 1 by Charlie Shrem)", + "body": "[![1427721443457173 (1).jpg](https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg)](https://postimg.org/image/5bg38xjjr/)\n\nThe day I went to prison I published an article Bitcoin for Prison. While I didn't get to read or see the article until someone mailed me a physical copy, I found out that my article had started a number of discussions and follow-on commentary.\n\nDuring my stay at Lewisburg Federal Prison Camp I observed many economic theories put into effect by inmates and the prison administration, including Gresham's law, hyperinflation, currency exchange, and others.\n\nThere are two markets in prison, the \"Administration Run Market\" (ARM) and the \"Inmate Run Market\" (IRM). \n\nFor the ARM, family and friends can add money to your account through Western Union, MoneyGram, or mailing a check. These funds get added to your account fairly quickly and can be used almost immediately, however with a strict spending limit. You get 300 minutes of phone use per month for about $70, and email costs about $0.05 a minute and is only available at specific times to specific people. Once a week you can shop in the commissary with a $360 a month spending limit. Further, certain products have limits of how much you can buy, for example the Mackerel (described below). Alternatively, the IRM is where you can buy sandwiches, wraps, pizzas, Italian ices, hire a personal trainer, get a haircut, pay someone to clean your cube, repair a watch, even inmate run caterers for your birthday or going home party. Additionally there were inmate run 'stores' which sold commissary items at a markup since you could only commissary shop once a week.\n\n[![mackerel-203x300.png](https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png)](https://postimg.org/image/iu6qq6eb9/)\n\nThe Mackerel (meaning literal packets of fish) is one of the competing currencies in the IRM. It has utility by being one of the best sources of protein on the compound. You can save it for a long time, the shelf life is a few years. The price is relatively the same across all prisons in the country, so even if you transfer prisons your property comes with you, including your Mackerel which is worth the same somewhere else. Unlike tunafish, chicken packets and protein bars, more people eat Mackerel. Those other food items can be used as currency as well, for example the guy who fixes your watch may only accept protein bars because he hates fish. There was even a form of digital currency being used, which I will discuss in another post.\n\n[![pzyQaHU.png](https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png)](https://postimg.org/image/nfj3tkh87/)\n\nUtility and medium of exchange give it some value but what about scarcity ? If there is a virtually unlimited amount of Mackerel in the IRM, just like the Federal Reserve printing money, there is no scarcity and hyperinflation can occure if it is debased. \n\nUsing a simple equation, 467 (Number of Inmates) * 14 (Maximum Quantity Allowed to Purchase Per Inmate) * 52 (weeks, assuming every inmate buys the maximum mount of Mackerel every week)\n\nSo if in 2015 we assume that the Supply and Velocity grows at the exact same rate with the Price Level and Transactions unchanging, the amount of Mackerel would essentially double on an even inflation rate. This does not factor in the 3 year shelf life, where expired Mackerel becomes a secondary currency. I will discuss in my next post. \n\nI like to believe that the value of money is determined also psychological factors, like a commodity and not only by mechanical or mathematical factors. In prison many of these psychological factors come into play.\n\n[![1867-1967-Ten-10¢-Cents-Commemorative-Centennial.jpg](https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg)](https://postimg.org/image/ceiwrfinr/)\n\nMost people use Mackerel as a day-to-day currency for normal transactions, but for reasons I will explain in my next post, they are not the best long term store of value which is important for a currency. For longer term store of value, many inmates use stamps. Stamps have a set rate by the United States Postal Service and have similar characteristics as Mackerel aside for being edible. However, with the introduction of email on the compound many people stopped writing letters as email is cheaper and faster therefore reducing stamps ability to be a transactional currency as a majority of the inmates have no use for them. As a store of value they still hold weight because they are small and easy to store large amounts, while Mackerel is not.\n\nThe biggest value stamps have is that they can be mailed home and your family can redeem them for dollars as the local post office, but that feature can be stopped by better mail screening and overnight the stamp could lose its store of value utility. \n\nIn my next post I will discuss how currency exchangers work, what happens when the prison administration purposely floods the market, and how a secondary currency was created out of expired Mackerel called “Money Maks”", + "json_metadata": { + "tags": [ + "story", + "life", + "bitcoin" + ], + "image": [ + "https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg", + "https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png", + "https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png", + "https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg" + ], + "links": [ + "https://postimg.org/image/5bg38xjjr/", + "https://postimg.org/image/iu6qq6eb9/", + "https://postimg.org/image/nfj3tkh87/", + "https://postimg.org/image/ceiwrfinr/" + ] + }, + "created": "2016-09-15T19:39:15", + "updated": "2016-09-15T19:39:15", + "depth": 0, + "children": 2, + "net_rshares": 16647533396431, + "is_paidout": false, + "payout_at": "2016-09-16T19:42:59", + "payout": 18.929, + "pending_payout_value": "18.929 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231815399848" + }, + { + "voter": "badassmother", + "rshares": "1856124515188" + }, + { + "voter": "xeroc", + "rshares": "1950776472028" + }, + { + "voter": "recursive2", + "rshares": "466189427281" + }, + { + "voter": "lee2", + "rshares": "440845842" + }, + { + "voter": "lee3", + "rshares": "26932369613" + }, + { + "voter": "lee4", + "rshares": "8677356665" + }, + { + "voter": "lee5", + "rshares": "22149156424" + }, + { + "voter": "fkn", + "rshares": "24694558802" + }, + { + "voter": "paco-steem", + "rshares": "468295495" + }, + { + "voter": "spaninv", + "rshares": "5641891453" + }, + { + "voter": "instructor2121", + "rshares": "31733693573" + }, + { + "voter": "teamsteem", + "rshares": "319978787382" + }, + { + "voter": "elishagh1", + "rshares": "32459455171" + }, + { + "voter": "nanzo-scoop", + "rshares": "584301957019" + }, + { + "voter": "steve-walschot", + "rshares": "183455862202" + }, + { + "voter": "mummyimperfect", + "rshares": "177422979921" + }, + { + "voter": "murh", + "rshares": "1061309796" + }, + { + "voter": "ranko-k", + "rshares": "40553528416" + }, + { + "voter": "cyber", + "rshares": "970610699889" + }, + { + "voter": "ak2020", + "rshares": "49581638772" + }, + { + "voter": "justtryme90", + "rshares": "61303208719" + }, + { + "voter": "drinkzya", + "rshares": "35244223389" + }, + { + "voter": "satoshifund", + "rshares": "3848697023555" + }, + { + "voter": "stiletto", + "rshares": "365370465" + }, + { + "voter": "thecryptodrive", + "rshares": "55960464168" + }, + { + "voter": "trogdor", + "rshares": "275083790158" + }, + { + "voter": "tee-em", + "rshares": "5047565689" + }, + { + "voter": "michaelx", + "rshares": "31346657524" + }, + { + "voter": "kimziv", + "rshares": "203028922423" + }, + { + "voter": "honeythief", + "rshares": "45359587433" + }, + { + "voter": "emily-cook", + "rshares": "75335893384" + }, + { + "voter": "cryptoiskey", + "rshares": "34073741916" + }, + { + "voter": "mrhankeh", + "rshares": "484636799" + }, + { + "voter": "clement", + "rshares": "36267999733" + }, + { + "voter": "isteemit", + "rshares": "49807514764" + }, + { + "voter": "bacchist", + "rshares": "68450624110" + }, + { + "voter": "venuspcs", + "rshares": "52094130602" + }, + { + "voter": "roelandp", + "rshares": "462747522217" + }, + { + "voter": "riscadox", + "rshares": "5271256317" + }, + { + "voter": "furion", + "rshares": "118094280271" + }, + { + "voter": "barbara2", + "rshares": "578386960" + }, + { + "voter": "ch0c0latechip", + "rshares": "642869652" + }, + { + "voter": "doge4lyf", + "rshares": "594982040" + }, + { + "voter": "ausbitbank", + "rshares": "14886225123" + }, + { + "voter": "steem1653", + "rshares": "2531219186" + }, + { + "voter": "anyx", + "rshares": "185306737687" + }, + { + "voter": "snowden", + "rshares": "80777327" + }, + { + "voter": "thegoodguy", + "rshares": "5250267854" + }, + { + "voter": "aaseb", + "rshares": "13847065167" + }, + { + "voter": "karen13", + "rshares": "4209550858" + }, + { + "voter": "wildchild", + "rshares": "89580632" + }, + { + "voter": "nippel66", + "rshares": "14455781997" + }, + { + "voter": "poseidon", + "rshares": "4428694472" + }, + { + "voter": "bitcoiner", + "rshares": "3709674578" + }, + { + "voter": "zaebars", + "rshares": "30989849211" + }, + { + "voter": "positive", + "rshares": "20026634941" + }, + { + "voter": "raymonjohnstone", + "rshares": "799615699" + }, + { + "voter": "steemchain", + "rshares": "50626015" + }, + { + "voter": "sisterholics", + "rshares": "34310997040" + }, + { + "voter": "tygergamer", + "rshares": "4150694741" + }, + { + "voter": "fnait", + "rshares": "674282213" + }, + { + "voter": "keepcalmand", + "rshares": "599033376" + }, + { + "voter": "sisters", + "rshares": "21249911268" + }, + { + "voter": "steemdrive", + "rshares": "135241026997" + }, + { + "voter": "gomeravibz", + "rshares": "50580942653" + }, + { + "voter": "merej99", + "rshares": "2157263872" + }, + { + "voter": "laonie", + "rshares": "1181429894047" + }, + { + "voter": "laonie1", + "rshares": "22969530313" + }, + { + "voter": "laonie2", + "rshares": "23486336661" + }, + { + "voter": "laonie3", + "rshares": "23494631758" + }, + { + "voter": "myfirst", + "rshares": "41308723727" + }, + { + "voter": "somebody", + "rshares": "246291037911" + }, + { + "voter": "flysaga", + "rshares": "9208584487" + }, + { + "voter": "brendio", + "rshares": "5831884826" + }, + { + "voter": "midnightoil", + "rshares": "54407421509" + }, + { + "voter": "ullikume", + "rshares": "4190432650" + }, + { + "voter": "marinaz", + "rshares": "538023492" + }, + { + "voter": "michellek", + "rshares": "50577648" + }, + { + "voter": "laonie4", + "rshares": "23490308796" + }, + { + "voter": "laonie5", + "rshares": "23488038283" + }, + { + "voter": "laonie6", + "rshares": "23485060556" + }, + { + "voter": "laonie7", + "rshares": "23480907119" + }, + { + "voter": "kurtbeil", + "rshares": "3157899297" + }, + { + "voter": "laonie8", + "rshares": "23477459041" + }, + { + "voter": "laonie9", + "rshares": "23474757706" + }, + { + "voter": "steemleak", + "rshares": "2370331931" + }, + { + "voter": "xiaohui", + "rshares": "136086029693" + }, + { + "voter": "bigsambucca", + "rshares": "88206053" + }, + { + "voter": "elfkitchen", + "rshares": "6630568148" + }, + { + "voter": "joele", + "rshares": "99940391922" + }, + { + "voter": "paynode", + "rshares": "2354334523" + }, + { + "voter": "xiaokongcom", + "rshares": "4254379739" + }, + { + "voter": "xianjun", + "rshares": "8576106418" + }, + { + "voter": "stevescriber", + "rshares": "72135954" + }, + { + "voter": "loli", + "rshares": "51247757" + }, + { + "voter": "nano2nd", + "rshares": "52419023" + }, + { + "voter": "microluck", + "rshares": "576343622" + }, + { + "voter": "cryptoblu", + "rshares": "60225791" + }, + { + "voter": "instructor", + "rshares": "60219243" + }, + { + "voter": "dollarvigilante", + "rshares": "802020725261" + }, + { + "voter": "lamech-m", + "rshares": "3977281078" + }, + { + "voter": "laonie10", + "rshares": "23468551300" + }, + { + "voter": "garywilson", + "rshares": "8536250240" + }, + { + "voter": "bitchplease", + "rshares": "50829277" + }, + { + "voter": "barrycooper", + "rshares": "99130059443" + }, + { + "voter": "hilarski", + "rshares": "31611733517" + }, + { + "voter": "shadowspub", + "rshares": "2029369552" + }, + { + "voter": "rimann", + "rshares": "8390958262" + }, + { + "voter": "rickmiller", + "rshares": "56999917" + }, + { + "voter": "nulliusinverba", + "rshares": "5401518277" + }, + { + "voter": "mikehere", + "rshares": "22792452702" + }, + { + "voter": "laonie11", + "rshares": "22621847215" + }, + { + "voter": "xanoxt", + "rshares": "3411072843" + }, + { + "voter": "greatness", + "rshares": "174778016" + }, + { + "voter": "sponge-bob", + "rshares": "26574132419" + }, + { + "voter": "l0k1", + "rshares": "4044803243" + }, + { + "voter": "freesteem", + "rshares": "50798127" + }, + { + "voter": "zettar", + "rshares": "2353724275" + }, + { + "voter": "smisi", + "rshares": "1655277599" + }, + { + "voter": "lighter", + "rshares": "53413720" + }, + { + "voter": "maarnio", + "rshares": "258239323" + }, + { + "voter": "analyzethis", + "rshares": "50931848" + }, + { + "voter": "dexter-k", + "rshares": "5934390558" + }, + { + "voter": "doggnostic", + "rshares": "51716816" + }, + { + "voter": "ct-gurus", + "rshares": "659649765" + }, + { + "voter": "jenny-talls", + "rshares": "51449632" + }, + { + "voter": "charlieshrem", + "rshares": "415654681468" + }, + { + "voter": "tracemayer", + "rshares": "63546443837" + }, + { + "voter": "brains", + "rshares": "26568286493" + }, + { + "voter": "alwayzgame", + "rshares": "1702730509" + }, + { + "voter": "bitcoinparadise", + "rshares": "1282974860" + }, + { + "voter": "cwb", + "rshares": "50528809" + }, + { + "voter": "steemsquad", + "rshares": "2127783725" + }, + { + "voter": "inarix03", + "rshares": "61292139" + }, + { + "voter": "littlemorelove", + "rshares": "431087473" + }, + { + "voter": "mbizryu0", + "rshares": "51636819" + }, + { + "voter": "archij", + "rshares": "51631638" + }, + { + "voter": "movie7283", + "rshares": "51530815" + }, + { + "voter": "ppcompp2", + "rshares": "51527606" + }, + { + "voter": "jj1968", + "rshares": "51520427" + }, + { + "voter": "cineger", + "rshares": "51516489" + }, + { + "voter": "sksduddk", + "rshares": "51497383" + }, + { + "voter": "jjc0719", + "rshares": "51490214" + }, + { + "voter": "teemsteem", + "rshares": "50233449" + }, + { + "voter": "sjytoy", + "rshares": "50677982" + }, + { + "voter": "shy2675", + "rshares": "50676799" + }, + { + "voter": "suance1009", + "rshares": "50675747" + }, + { + "voter": "hasqmd", + "rshares": "50674176" + }, + { + "voter": "fischer67", + "rshares": "50673722" + }, + { + "voter": "elya1", + "rshares": "50672116" + }, + { + "voter": "xclamp45", + "rshares": "50632828" + }, + { + "voter": "likeagame1", + "rshares": "50618471" + }, + { + "voter": "apple4006", + "rshares": "50616898" + }, + { + "voter": "bigbell61", + "rshares": "50615195" + }, + { + "voter": "dolpo777", + "rshares": "50612850" + }, + { + "voter": "dongperi", + "rshares": "50611931" + }, + { + "voter": "lion2byung", + "rshares": "50610620" + }, + { + "voter": "cwj1973", + "rshares": "50610002" + }, + { + "voter": "psj212", + "rshares": "50609329" + }, + { + "voter": "owithed2", + "rshares": "50608661" + }, + { + "voter": "fiself2", + "rshares": "50606929" + }, + { + "voter": "trablinever1", + "rshares": "50605131" + }, + { + "voter": "nuals1940", + "rshares": "50603861" + }, + { + "voter": "fanceth2", + "rshares": "50602310" + }, + { + "voter": "forea1995", + "rshares": "50355943" + }, + { + "voter": "holow1968", + "rshares": "50354561" + }, + { + "voter": "peaces1952", + "rshares": "50353969" + }, + { + "voter": "himighar2", + "rshares": "50346496" + }, + { + "voter": "aromese1974", + "rshares": "50345607" + }, + { + "voter": "runis1943", + "rshares": "50344921" + }, + { + "voter": "tong1962", + "rshares": "50344067" + }, + { + "voter": "hishe1997", + "rshares": "50340744" + }, + { + "voter": "cwbrooch", + "rshares": "1979857275" + }, + { + "voter": "ninjapainter", + "rshares": "52329350" + }, + { + "voter": "buit1989", + "rshares": "51393104" + }, + { + "voter": "imadecoult1", + "rshares": "51389981" + }, + { + "voter": "infees2", + "rshares": "51387526" + }, + { + "voter": "suar1997", + "rshares": "51384095" + }, + { + "voter": "sobsell93", + "rshares": "51382067" + }, + { + "voter": "stroned96", + "rshares": "51380710" + }, + { + "voter": "drethe", + "rshares": "51378107" + }, + { + "voter": "qualwas", + "rshares": "51377505" + }, + { + "voter": "phent1994", + "rshares": "51376367" + }, + { + "voter": "baboyes", + "rshares": "51375075" + }, + { + "voter": "whor1973", + "rshares": "51373532" + }, + { + "voter": "youreforn", + "rshares": "51372739" + }, + { + "voter": "voll1981", + "rshares": "51371902" + }, + { + "voter": "copenty2", + "rshares": "51370717" + }, + { + "voter": "maject2", + "rshares": "51369717" + }, + { + "voter": "coust1997", + "rshares": "51367233" + }, + { + "voter": "busionea84", + "rshares": "51366398" + }, + { + "voter": "therver1", + "rshares": "51365174" + }, + { + "voter": "appirdsmanne1990", + "rshares": "51364022" + }, + { + "voter": "alienighted87", + "rshares": "51362967" + }, + { + "voter": "anity1994", + "rshares": "51359746" + }, + { + "voter": "themphe1", + "rshares": "59959066" + }, + { + "voter": "abild1988", + "rshares": "51355864" + }, + { + "voter": "spoll1973", + "rshares": "51353540" + }, + { + "voter": "afteld1", + "rshares": "66162576" + }, + { + "voter": "rusteemitblog", + "rshares": "1630374239" + }, + { + "voter": "goldmatters", + "rshares": "31008332335" + }, + { + "voter": "dealzgal", + "rshares": "68608760" + }, + { + "voter": "storage", + "rshares": "64921864" + }, + { + "voter": "blackmarket", + "rshares": "55388665" + }, + { + "voter": "gifts", + "rshares": "58454327" + }, + { + "voter": "expat", + "rshares": "93882016" + }, + { + "voter": "techslut", + "rshares": "188217107" + }, + { + "voter": "steemtrail", + "rshares": "137659447" + }, + { + "voter": "steemlift", + "rshares": "3035584586" + }, + { + "voter": "toddemaher1", + "rshares": "123580867" + } + ], + "author_reputation": 67.32, + "stats": { + "hide": false, + "gray": false, + "total_votes": 211, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/story/@charlieshrem/mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem", + "blacklists": [] + }, + { + "post_id": 960622, + "author": "healthyrecipes", + "permlink": "spaghetti-squash-burrito-bowl", + "category": "healthyliving", + "title": "Spaghetti Squash 'Burrito' Bowl", + "body": "\n

  Good afternoon Steemit, I am officially done breast feeding and am ready to get rid of the last few pounds that are still hanging on from my pregnancy so I have been trying out different ways to cut calories from my diet without loosing flavor. Spaghetti squash is a great substitute for pasta or in this case rice. Spaghetti squash has about 40 calories per cup while rice has upwards of 200. It also has fiber, potassium and vitamins A and C.  

\n

For chicken:

\n
    \n
  • 1lb chicken breast
  • \n
  • 1 tsp ancho chili
  • \n
  • 1 tbs olive oil
  • \n
  • 1 lime (juice and zest)
  • \n
  • 1 tsp minced garlic
  • \n
\n

For squash:

\n
    \n
  • 1 spaghetti squash (cut in half length wise and seeds removed)
  • \n
  • 1 tsp olive oil
  • \n
  • salt and pepper to taste
  • \n
\n

Preheat oven to 425F.  In a baking dish, sprinkle chicken with ancho chili.  Mix together oil, lime zest and juice and garlic.  Pour mixture over chicken.  Drizzle olive oil over squash and season with salt and pepper.  Place cut side down on baking sheet.  Bake a together for 30 min.  Shred squash with a fork and put in the bottom of bowls.  Shred chicken with forks and put on top of squash.  I added cheese, salsa and guacamole to ours but you can top with anything you like.  Enjoy!

\n

https://puu.sh/rcmnK/c059def2e0.png

\n", + "json_metadata": { + "tags": [ + "healthyliving", + "dinner", + "squash", + "recipes" + ], + "image": [ + "https://puu.sh/rcmnK/c059def2e0.png" + ] + }, + "created": "2016-09-15T19:01:15", + "updated": "2016-09-15T19:01:15", + "depth": 0, + "children": 3, + "net_rshares": 24948140852996, + "is_paidout": false, + "payout_at": "2016-09-16T19:16:19", + "payout": 39.772, + "pending_payout_value": "39.772 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231813191302" + }, + { + "voter": "riverhead", + "rshares": "4287714457313" + }, + { + "voter": "badassmother", + "rshares": "1856068812916" + }, + { + "voter": "hr1", + "rshares": "2006601418874" + }, + { + "voter": "rossco99", + "rshares": "1239194317889" + }, + { + "voter": "wang", + "rshares": "2059078537865" + }, + { + "voter": "jaewoocho", + "rshares": "22391933607" + }, + { + "voter": "joseph", + "rshares": "1491294220946" + }, + { + "voter": "recursive3", + "rshares": "452882692801" + }, + { + "voter": "masteryoda", + "rshares": "621040278295" + }, + { + "voter": "recursive", + "rshares": "3120621212590" + }, + { + "voter": "boatymcboatface", + "rshares": "448236514656" + }, + { + "voter": "idol", + "rshares": "8927535677" + }, + { + "voter": "sakr", + "rshares": "4839155280" + }, + { + "voter": "yefet", + "rshares": "10884745702" + }, + { + "voter": "noaommerrr", + "rshares": "481790356914" + }, + { + "voter": "jocelyn", + "rshares": "1536625837" + }, + { + "voter": "gregory-f", + "rshares": "14818418390" + }, + { + "voter": "eeks", + "rshares": "59932650184" + }, + { + "voter": "fkn", + "rshares": "17134999985" + }, + { + "voter": "elishagh1", + "rshares": "22522887261" + }, + { + "voter": "richman", + "rshares": "7803257741" + }, + { + "voter": "coar", + "rshares": "313710480" + }, + { + "voter": "asch", + "rshares": "106636079470" + }, + { + "voter": "murh", + "rshares": "1061302586" + }, + { + "voter": "cryptofunk", + "rshares": "6086022456" + }, + { + "voter": "error", + "rshares": "2003404389" + }, + { + "voter": "theshell", + "rshares": "58190613755" + }, + { + "voter": "satoshifund", + "rshares": "3848697023555" + }, + { + "voter": "herzmeister", + "rshares": "87300558689" + }, + { + "voter": "ziv", + "rshares": "19598687179" + }, + { + "voter": "zakharya", + "rshares": "15787747831" + }, + { + "voter": "tee-em", + "rshares": "5047527838" + }, + { + "voter": "geoffrey", + "rshares": "118358806572" + }, + { + "voter": "kimziv", + "rshares": "144257392248" + }, + { + "voter": "honeythief", + "rshares": "45359587433" + }, + { + "voter": "superfreek", + "rshares": "2187607792" + }, + { + "voter": "furion", + "rshares": "81189817686" + }, + { + "voter": "barbara2", + "rshares": "401329727" + }, + { + "voter": "ch0c0latechip", + "rshares": "446072819" + }, + { + "voter": "doge4lyf", + "rshares": "412844681" + }, + { + "voter": "tasman", + "rshares": "245479785" + }, + { + "voter": "steem1653", + "rshares": "2632467953" + }, + { + "voter": "snowden", + "rshares": "80777327" + }, + { + "voter": "aaseb", + "rshares": "13847065167" + }, + { + "voter": "karen13", + "rshares": "4209545151" + }, + { + "voter": "milestone", + "rshares": "46859749971" + }, + { + "voter": "poseidon", + "rshares": "3146703967" + }, + { + "voter": "jl777", + "rshares": "204618886920" + }, + { + "voter": "positive", + "rshares": "13896032408" + }, + { + "voter": "proto", + "rshares": "17267376002" + }, + { + "voter": "sisterholics", + "rshares": "23475945343" + }, + { + "voter": "fnait", + "rshares": "467869290" + }, + { + "voter": "keepcalmand", + "rshares": "415655812" + }, + { + "voter": "healthyrecipes", + "rshares": "69137816305" + }, + { + "voter": "glitterpig", + "rshares": "3354060704" + }, + { + "voter": "taker", + "rshares": "8734213651" + }, + { + "voter": "laonie", + "rshares": "830193979600" + }, + { + "voter": "myfirst", + "rshares": "29315868452" + }, + { + "voter": "somebody", + "rshares": "168514920676" + }, + { + "voter": "flysaga", + "rshares": "6542941609" + }, + { + "voter": "gmurph", + "rshares": "1667777098" + }, + { + "voter": "midnightoil", + "rshares": "37226130506" + }, + { + "voter": "kurtbeil", + "rshares": "3157847929" + }, + { + "voter": "xiaohui", + "rshares": "93111494000" + }, + { + "voter": "jphamer1", + "rshares": "20690393698" + }, + { + "voter": "elfkitchen", + "rshares": "4689914056" + }, + { + "voter": "joele", + "rshares": "99935909954" + }, + { + "voter": "xiaokongcom", + "rshares": "3022848762" + }, + { + "voter": "natalymaty", + "rshares": "2076619689" + }, + { + "voter": "xianjun", + "rshares": "6093549297" + }, + { + "voter": "miacats", + "rshares": "91520297334" + }, + { + "voter": "microluck", + "rshares": "399007122" + }, + { + "voter": "netaterra", + "rshares": "2923096249" + }, + { + "voter": "richardcrill", + "rshares": "4441060568" + }, + { + "voter": "rusla", + "rshares": "100126866" + }, + { + "voter": "sponge-bob", + "rshares": "53146015442" + }, + { + "voter": "doggnostic", + "rshares": "52794249" + }, + { + "voter": "jenny-talls", + "rshares": "52521499" + }, + { + "voter": "brains", + "rshares": "53134467783" + }, + { + "voter": "bitcoinparadise", + "rshares": "1317649856" + }, + { + "voter": "chick1", + "rshares": "5753585781" + }, + { + "voter": "aoki", + "rshares": "50584036" + }, + { + "voter": "typingagent", + "rshares": "50516543" + }, + { + "voter": "cwb", + "rshares": "50528809" + }, + { + "voter": "ola1", + "rshares": "73937406" + }, + { + "voter": "billkappa442", + "rshares": "51240567" + }, + { + "voter": "glassheart", + "rshares": "51235131" + }, + { + "voter": "anns", + "rshares": "1233715718" + }, + { + "voter": "motion", + "rshares": "50871059" + }, + { + "voter": "ziggo", + "rshares": "50570250" + }, + { + "voter": "penthouse", + "rshares": "50565798" + }, + { + "voter": "albertheijn", + "rshares": "50349676" + }, + { + "voter": "ayim", + "rshares": "2291193388" + }, + { + "voter": "gravity", + "rshares": "160973134" + }, + { + "voter": "digitalillusions", + "rshares": "160900665" + }, + { + "voter": "capcom", + "rshares": "156837244" + }, + { + "voter": "haribo", + "rshares": "156814579" + }, + { + "voter": "benetton", + "rshares": "159531007" + }, + { + "voter": "greenpeace", + "rshares": "159506164" + }, + { + "voter": "tipsandtricks", + "rshares": "159425365" + }, + { + "voter": "panic", + "rshares": "159352476" + }, + { + "voter": "disneypixar", + "rshares": "159164412" + }, + { + "voter": "citigroup", + "rshares": "155433319" + }, + { + "voter": "zendesk", + "rshares": "158486055" + }, + { + "voter": "dealzgal", + "rshares": "71727340" + }, + { + "voter": "storage", + "rshares": "64921864" + }, + { + "voter": "blackmarket", + "rshares": "55388665" + }, + { + "voter": "gifts", + "rshares": "58454327" + }, + { + "voter": "alexandrapop", + "rshares": "153804957" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 110, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/healthyliving/@healthyrecipes/spaghetti-squash-burrito-bowl", + "blacklists": [] + }, + { + "post_id": 960067, + "author": "curie", + "permlink": "the-daily-curie-14th-sept-15th-sept-2016", + "category": "curie", + "title": "The Daily Curie (14th Sept - 15th Sept 2016)", + "body": "
https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg
\n\n## Introduction\n[Project Curie](https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors) is a community project run by several Steemit authors. Its mission is to help reward content creators who are posting great original content, yet who have not yet become established. In the short time since Curie began, our writers group has partnered with @nextgencrypto and other whale accounts to bring rewards to these deserving authors. *Writers, artists, chefs, photographers, videographers, and many others have been recognized by these rewards.*\n\nEach day, the members of our Project will publish this list of the posts that Project Curie has chosen to reward recently. We hope that this list will provide more positive exposure to the authors we have selected. Also, it is an effort for us to be more transparent about which posts are being rewarded. We hope that you will consider following not only this @curie account, but also many of the authors whose work is featured here each day. **Please consider adding your comments on these posts also!**\n\nProject Curie's daily curation lists will now be called \"The Daily Curie\". We hope you like the name! Future editions of The Daily Curie will [feature our new logo](https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement). For the latest on Project Curie, do check out our [Month #1 update](https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016). \n\n----------------------\n\n## Today's Brief Analysis\n\nToday's list polls all posts curated between 17:00 14/09 UTC and 17:00 15/09 UTC. Project Curie voted on a total of **103 posts** by 99 unique authors. **SBD 3,832** has been generated for authors thus far, at an average of SBD 37 per post. \n\n----------------------\n| Author | Post | Payout |\n| --------- | ---------- | --------- |\n| [@faddat](https://steemit.com/@faddat) | [[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!](https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed) | 616.681 SBD |\n| [@rampant](https://steemit.com/@rampant) | [Steemit Daily Drawing Tutorial - Gesture drawings (plus tool)](https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool) | 215.310 SBD |\n| [@shenanigator](https://steemit.com/@shenanigator) | [Doing the Right Thing Will Get You Fired. What Do You Do?](https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do) | 205.664 SBD |\n| [@penguinpablo](https://steemit.com/@penguinpablo) | [How to Carve an Apple Leaf](https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf) | 196.419 SBD |\n| [@nathanjtaylor](https://steemit.com/@nathanjtaylor) | [Fire And Grace Art Painting And Poetry](https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry) | 189.043 SBD |\n| [@lily-da-vine](https://steemit.com/@lily-da-vine) | [Going Bananas in Acapulco](https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco) | 158.416 SBD |\n| [@budgetbucketlist](https://steemit.com/@budgetbucketlist) | [A 1-week plunge into Mexico City's madness! Art adventures, Frida-seeking and unfiltered exhaust fumes...](https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes) | 151.033 SBD |\n| [@benjiberigan](https://steemit.com/@benjiberigan) | [Anarchist Architecture, part 5: The cruelty of architectural codes and regulations.](https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations) | 132.427 SBD |\n| [@ausbitbank](https://steemit.com/@ausbitbank) | [The time my town flooded, the fragility of the food supply and lessons learned (Original photos)](https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos) | 125.877 SBD |\n| [@emily-cook](https://steemit.com/@emily-cook) | [THE ISLE OF MAN FILM FESTIVAL 2016 -A week of parties, red carpets and a lot of hard work!](https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work) | 121.336 SBD |\n| [@team-leibniz](https://steemit.com/@team-leibniz) | [Week 1 NFL Daily Fantasy Football Results - How my Bayesian Inspired Lineups Fared (+$84.00)](https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00) | 119.473 SBD |\n| [@ionescur](https://steemit.com/@ionescur) | [Urban dreams of freedom: back to the countryside, back to the land](https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land) | 110.564 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [New traditionl painting - \"The Battle\" - Steps of work](https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work) | 105.622 SBD |\n| [@juliac](https://steemit.com/@juliac) | [One of The Best Portraits That I've Ever Created: Einstein. What Do You Think?](https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think) | 103.781 SBD |\n| [@luzcypher](https://steemit.com/@luzcypher) | [Cover Crops Can Grow Food Organically With No Fertilizers, No Pesticides, No Herbicides And No Chemicals](https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals) | 100.117 SBD |\n| [@akareyon](https://steemit.com/@akareyon) | [I find your lack of argument disturbing](https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing) | 98.525 SBD |\n| [@curving](https://steemit.com/@curving) | [The Ephemeral Cairn Gardens Of the Austin Greenbelt - A Photo Journal and Meditation](https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation) | 96.834 SBD |\n| [@aleksandraz](https://steemit.com/@aleksandraz) | [Incredible Science - Brainbow Technology](https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology) | 89.777 SBD |\n| [@skapaneas](https://steemit.com/@skapaneas) | [IBD Crohn desease and Ulceritive collitis. what are they, self diagnose, self treat and more.](https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more) | 85.958 SBD |\n| [@gargon](https://steemit.com/@gargon) | [Proyecto Cervantes (13 - 15 Sept 2016): Compensación y reconocimiento para escritores de habla hispana / Bringing rewards and recognition to spanish writers (Vol. III)](https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and) | 83.725 SBD |\n| [@iamwne](https://steemit.com/@iamwne) | [Blade Runner Inspired Digital Set - The Dark Market - Beauty Pass](https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass) | 83.869 SBD |\n| [@stormblaze](https://steemit.com/@stormblaze) | [Where Do Deleted Files Go?](https://steemit.com/technology/@stormblaze/where-do-deleted-files-go) | 81.221 SBD |\n| [@yanarnst](https://steemit.com/@yanarnst) | [Steemit Food Art lesson 2 ''Salad with chicken liver and pine nuts''](https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts) | 78.034 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Myths in the Sky: Ursa Major and Ursa Minor](https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor) | 72.174 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Brain preservation: an ambulance to the future](https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future) | 72.082 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Vivisecting the Stargazing Tribe: Visual Observers and Screen Scanners](https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners) | 71.421 SBD |\n| [@cristi](https://steemit.com/@cristi) | [Radical Metabolism - No Food and Water for 8 Months](https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months) | 69.559 SBD |\n| [@stranger27](https://steemit.com/@stranger27) | [Fibonacci sequence and Golden Ratio: magic numbers of Nature](https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature) | 66.258 SBD |\n| [@nekromarinist](https://steemit.com/@nekromarinist) | [Let's talk a little bit about phobias today!](https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today) | 61.776 SBD |\n| [@richman](https://steemit.com/@richman) | [If you want to lose a friend, lend him money (My life story)](https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story) | 58.193 SBD |\n| [@maceytomlin](https://steemit.com/@maceytomlin) | [What Exactly is Ayahuasca? How Should You Prepare for a Ceremony?](https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony) | 58.197 SBD |\n| [@nili](https://steemit.com/@nili) | [Smart Life (part 2) - Resolving the Godel's paradox on the blockchain as a solution for a decentralized trusted protocol](https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol) | 55.575 SBD |\n| [@optimistic-crone](https://steemit.com/@optimistic-crone) | [PROBIOTICS FOR LIFE!!! SUPER SIMPLE FERMENTED VEGETABLE 'KIM CHEE' RECIPE](https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe) | 54.909 SBD |\n| [@anarchyhasnogods](https://steemit.com/@anarchyhasnogods) | [Learning one dimensional motion using graphs- physics for beginners - part one](https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one) | 53.295 SBD |\n| [@yostopia](https://steemit.com/@yostopia) | [Beginner's mind, creative mind... the making of a Vimeo Staff Pick.](https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick) | 51.222 SBD |\n| [@reneenouveau](https://steemit.com/@reneenouveau) | [My response to Paul Steyn's myopic article \"Mr. Environmentalist\" shockingly published by National Geographic in Sept 2015.](https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015) | 49.433 SBD |\n| [@king3071](https://steemit.com/@king3071) | [MY DREAM DESTINATION - SWITZERLAND](https://steemit.com/travel/@king3071/my-dream-destination-switzerland) | 49.816 SBD |\n| [@kolin.evans](https://steemit.com/@kolin.evans) | [Something a little more substantial for you to think about - the 'IS' / 'WAS' CPT (Continuous Probable Time-lines.)](https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines) | 47.288 SBD |\n| [@fenglosophy](https://steemit.com/@fenglosophy) | [Does the language you speak influence how you think?](https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think) | 44.070 SBD |\n| [@mandibil](https://steemit.com/@mandibil) | [SAVAGE [Gorm Just, Denmark 2009] - movie review by Mandibil](https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil) | 44.621 SBD |\n| [@therajmahal](https://steemit.com/@therajmahal) | [Making the Impossible... Possible](https://steemit.com/science/@therajmahal/making-the-impossible-possible) | 44.765 SBD |\n| [@carlitashaw](https://steemit.com/@carlitashaw) | [The World's Worst Oil Spills, Ramifications & Amazing Alternative Solutions.](https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions) | 44.986 SBD |\n| [@renzoarg](https://steemit.com/@renzoarg) | [Skip a pill - Antibiotics](https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics) | 43.918 SBD |\n| [@rachelsvparry](https://steemit.com/@rachelsvparry) | [Under the Sea (again, but better this time)](https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time) | 43.436 SBD |\n| [@royalmacro](https://steemit.com/@royalmacro) | [lonely tree [An Original Abstract Art]](https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art) | 42.826 SBD |\n| [@stephmckenzie](https://steemit.com/@stephmckenzie) | [The Power of Choice--A Magnificent Key to True Personal Freedom](https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone) | 42.441 SBD |\n| [@alwayzgame](https://steemit.com/@alwayzgame) | [10 simple steps to ruin your child's life](https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life) | 42.475 SBD |\n| [@nonlinearone](https://steemit.com/@nonlinearone) | [Can Hemingway Improve Your Writing?](https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing) | 42.669 SBD |\n| [@kafkanarchy84](https://steemit.com/@kafkanarchy84) | [\"Johnny B. Goode\" Guitar Lesson and Intro to Theory, Vol. II](https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii) | 41.326 SBD |\n| [@feline1991](https://steemit.com/@feline1991) | [A Steemit Original - A Lifetime of Seeking Happiness - Chapter 2 - Part 2](https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2) | 41.931 SBD |\n| [@geke](https://steemit.com/@geke) | [The Banker and the Bulova - an original poem (Steemit flash-writing challenge)](https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge) | 41.497 SBD |\n| [@lscottphotos](https://steemit.com/@lscottphotos) | [LSCOTTPHOTOS Welcome to my family :) Thank you steemers <3 (Original Photos)](https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos) | 40.201 SBD |\n| [@pinkisland](https://steemit.com/@pinkisland) | [My Philosophy of Education](https://steemit.com/writing/@pinkisland/my-philosophy-of-education) | 40.978 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cinco](https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco) | 39.708 SBD |\n| [@luisucv34](https://steemit.com/@luisucv34) | [Venezuela: The lack of opportunities (English edition)](https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition) | 39.783 SBD |\n| [@beowulfoflegend](https://steemit.com/@beowulfoflegend) | [Silvanus and Empire, an Original Novel (Chapter Twenty)](https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty) | 39.543 SBD |\n| [@mariandavp](https://steemit.com/@mariandavp) | [From zero to hero - abstract office art by @mariandavp](https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp) | 39.529 SBD |\n| [@nasimbabu](https://steemit.com/@nasimbabu) | [The technology that defends us from potentially deadly diseases](https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases) | 39.620 SBD |\n| [@royaltiffany](https://steemit.com/@royaltiffany) | [Steemit B'Day Movie Review Contest Update!](https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update) | 37.706 SBD |\n| [@travelista](https://steemit.com/@travelista) | [An Adventure in Isla Espíritu Santo!](https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo) | 37.218 SBD |\n| [@jpiper20](https://steemit.com/@jpiper20) | [We Meet At Night -- An Original Story (Part 4)](https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4) | 37.319 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new painting - \"Dexter\" - Modern Impressionism](https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism) | 36.937 SBD |\n| [@krystle](https://steemit.com/@krystle) | [Keltorin's Flora and Fauna of Note - Firikwea - Valcanne's Guide to Keltorin](https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin) | 36.972 SBD |\n| [@cryptoiskey](https://steemit.com/@cryptoiskey) | [Workout from home on the cheap! - 12th September #Ultimate workout companion for your kids!](https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids) | 36.115 SBD |\n| [@getonthetrain](https://steemit.com/@getonthetrain) | [Top 10 Grisly Medieval Torture Methods](https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods) | 34.093 SBD |\n| [@ansharphoto](https://steemit.com/@ansharphoto) | [Roman Forum in the Morning, Rome](https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome) | 33.328 SBD |\n| [@aboundlessworld](https://steemit.com/@aboundlessworld) | [Introducing The Steemit Stories Podcast!](https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast) | 33.728 SBD |\n| [@thornybastard](https://steemit.com/@thornybastard) | [Chapter 10: A Call from the Forest—来自森林的呼唤](https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest) | 32.465 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Installing Bitshares / graphene from source on Mac OS X Yosemite (10.5.5)](https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5) | 32.348 SBD |\n| [@dumar022](https://steemit.com/@dumar022) | [Workshop lesson 6: Wrench: You don't wanna mess with this](https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this) | 32.155 SBD |\n| [@lapilipinas](https://steemit.com/@lapilipinas) | [Light from distant stars](https://steemit.com/science/@lapilipinas/light-from-distant-stars) | 32.778 SBD |\n| [@williambanks](https://steemit.com/@williambanks) | [Towards A Better Tomorrow : Part 1 - There but for grace!](https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace) | 31.434 SBD |\n| [@driv3n](https://steemit.com/@driv3n) | [How to Solve the Rubik's Cube like a boss - Part 2](https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2) | 31.858 SBD |\n| [@timbot606](https://steemit.com/@timbot606) | [Growing up in Appalachia](https://steemit.com/life/@timbot606/growing-up-in-appalachia) | 31.548 SBD |\n| [@themagus](https://steemit.com/@themagus) | [A less privileged white growing up in South Africa in the 1970's - part 2](https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2) | 31.099 SBD |\n| [@echoesinthemind](https://steemit.com/@echoesinthemind) | [Hanging Upside Down / DO NOT Try At Home](https://steemit.com/life/@echoesinthemind/hanging-upside-down) | 31.736 SBD |\n| [@ysa](https://steemit.com/@ysa) | [My pictures from traveling to Estes Park, Colorado](https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado) | 31.981 SBD |\n| [@aksinya](https://steemit.com/@aksinya) | [Our Trip to Wonderful, Scary and Unforgettable Kenya. Original Photos and Video](https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video) | 31.882 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cuatro](https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro) | 31.992 SBD |\n| [@successfully00](https://steemit.com/@successfully00) | [Knowing The Math - Mental Tricks - Multiplication Part 1](https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1) | 31.037 SBD |\n| [@linzo](https://steemit.com/@linzo) | [A Life Fantasy (Original Poem)](https://steemit.com/poem/@linzo/a-life-fantasy-original-poem) | 30.964 SBD |\n| [@hilarski](https://steemit.com/@hilarski) | [Panama Critters.](https://steemit.com/panama/@hilarski/panama-critters) | 28.729 SBD |\n| [@sulev](https://steemit.com/@sulev) | [Photography #11 - Pictures from my Garden: Bees, Lizards and other (part 2)](https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2) | 27.947 SBD |\n| [@steemswede](https://steemit.com/@steemswede) | [[BEER REVIEW] Thomas Hardy's Ale](https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale) | 27.183 SBD |\n| [@marius19](https://steemit.com/@marius19) | [Set of paper coffee cups. Origami](https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami) | 26.439 SBD |\n| [@poeticsnake](https://steemit.com/@poeticsnake) | [Autumn is coming Doodle style! ( Tutorial with step by step drawings)](https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings) | 26.547 SBD |\n| [@kiddarko](https://steemit.com/@kiddarko) | [Peep Life a Story By KidDarko (with tattoo illistrations and video)](https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video) | 26.853 SBD |\n| [@shieha](https://steemit.com/@shieha) | [The Hardest Computer Game of All Time - Robot Odyssey - Part 2](https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2) | 26.372 SBD |\n| [@ayim](https://steemit.com/@ayim) | [Fixing Posture - Part 4: Neck](https://steemit.com/life/@ayim/fixing-posture-part-4-neck) | 26.142 SBD |\n| [@hitmeasap](https://steemit.com/@hitmeasap) | [I am Batman's Robin or Skywalkers R2-D2. - I've always been the co-pilot. Always been the second choice.](https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice) | 25.747 SBD |\n| [@peskov](https://steemit.com/@peskov) | [Antonikha. Part 2 (featuring Vasily Peskov as author)](https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author) | 25.173 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [Advice from an angry dude: Breathe and interrupt your thoughts](https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts) | 25.162 SBD |\n| [@beginningtoend](https://steemit.com/@beginningtoend) | [Poetry, art and a little home spun philosophy.](https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy) | 25.708 SBD |\n| [@kaykunoichi](https://steemit.com/@kaykunoichi) | [Suicide Note - Audio (Written & performed by myself)](https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself) | 25.523 SBD |\n| [@booky](https://steemit.com/@booky) | [Boosting Leadership Skills = Healthier Happier You and Your Workmates](https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates) | 24.083 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [Do you Know the Difference Between RIGHT & WRONG?](https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong) | 24.516 SBD |\n| [@ekaterina4ka](https://steemit.com/@ekaterina4ka) | [We Knit Patterns by the Spokes. Post 2. Вяжем узоры спицами. Пост 2.](https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2) | 24.793 SBD |\n| [@scaredycatguide](https://steemit.com/@scaredycatguide) | [Real Talk - Vol 9. - Welcome To Dogmerica](https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica) | 24.207 SBD |\n| [@amy-goodrich](https://steemit.com/@amy-goodrich) | [Pineapple Mojito Green Smoothie](https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie) | 24.126 SBD |\n| [@scott.stevens](https://steemit.com/@scott.stevens) | [Awareness of Bitcoin is Now More Important Than Awareness of Geoengineering](https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering) | 24.875 SBD |\n| [@witchcraftblog](https://steemit.com/@witchcraftblog) | [My trip to Italy. Pisa.](https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa) | 24.265 SBD |\n| [@ibringawareness](https://steemit.com/@ibringawareness) | [\"Why I Got Stiffed\" Guy's Waiter Blog chapter 5](https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5) | 24.224 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new illustration - Batman vs Superman - Modern Impressionism by kimal73](https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73) | 23.617 SBD |\n| [@leylar](https://steemit.com/@leylar) | [Seeds are great travelers ~ Own work](https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work) | 23.166 SBD |\n| [@ocrdu](https://steemit.com/@ocrdu) | [The pods that go \"pop\"](https://steemit.com/photography/@ocrdu/the-pods-that-go-pop) | 23.530 SBD |\n| [@rusla](https://steemit.com/@rusla) | [Japan. Part8.](https://steemit.com/travel/@rusla/japan-part8) | 23.209 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [Puppy Charcoal Original Pencil Drawing](https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing) | 23.879 SBD |\n| [@borishaifa](https://steemit.com/@borishaifa) | [To Write Or Not To Wirte? Писать или не писать?](https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat) | 23.730 SBD |\n| [@eveningstar92](https://steemit.com/@eveningstar92) | [Shit Happens, Move On-NSFW- Evening Star Art](https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art) | 23.092 SBD |\n| [@elewarne](https://steemit.com/@elewarne) | [Mixed Media](https://steemit.com/mixedmedia/@elewarne/mixed-media) | 23.059 SBD |\n| [@shredlord](https://steemit.com/@shredlord) | [Sunrise](https://steemit.com/art/@shredlord/sunrise) | 23.318 SBD |\n| [@sherlockcupid](https://steemit.com/@sherlockcupid) | [Let's Talk: Fears (Part One)](https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one) | 23.720 SBD |\n| [@annesaya](https://steemit.com/@annesaya) | [Our Guiding Star, a poem (A tribute to writers)](https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers) | 23.384 SBD |\n| [@fitmama](https://steemit.com/@fitmama) | [Why Do I Bother....](https://steemit.com/life/@fitmama/why-do-i-bother) | 23.451 SBD |\n| [@ezzy](https://steemit.com/@ezzy) | [The Bionic Experiment - Part 1 (My Original Short Stories)](https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories) | 23.480 SBD |\n| [@kingarbinv](https://steemit.com/@kingarbinv) | [Adventures in Nemaland - Part 8 (Video) + My best Pokemon catch so far.](https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far) | 23.292 SBD |\n| [@soulsistashakti](https://steemit.com/@soulsistashakti) | [How to Detect and Deflect Gaslighting from a Narcissist](https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist) | 22.018 SBD |\n| [@puffin](https://steemit.com/@puffin) | [Tragical Impoverishment - Society's Dirt (Original Poem)](https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem) | 22.621 SBD |\n| [@cehuneke](https://steemit.com/@cehuneke) | [The Sugar Scandal: Corrupted Science in the Debate of Fat vs. Sugar and Coronary Heart Disease](https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease) | 22.821 SBD |\n| [@tanata](https://steemit.com/@tanata) | [Little Black Dress involving](https://steemit.com/fashion/@tanata/little-black-dress-involving) | 22.237 SBD |\n| [@steemwriter](https://steemit.com/@steemwriter) | [YouTube Demonetization: A Step Towards Censorship?](https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship) | 22.297 SBD |\n| [@michelle.gent](https://steemit.com/@michelle.gent) | [Dusty - one of my characters](https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters) | 22.659 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [A Gift-Original Rose Drawing](https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing) | 22.249 SBD |\n| [@runridefly](https://steemit.com/@runridefly) | [Minnow's Life - @runridefly original cartoon \"minnowsunite Whale sighting\" minnows and a whale](https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale) | 22.836 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [[SHORT STORY] The Cult of Personality - Part One](https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one) | 22.552 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Look at the Flower Chicory: a Useful and Beautiful Flower ... my Favorite Photos of Chicory](https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory) | 22.795 SBD |\n| [@victoriart](https://steemit.com/@victoriart) | [Hazelnut Mood](https://steemit.com/art/@victoriart/hazelnut-mood) | 22.443 SBD |\n| [@heroic15397](https://steemit.com/@heroic15397) | [Amazing Birds in the Greater Montreal area](https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area) | 22.987 SBD |\n| [@smartercars](https://steemit.com/@smartercars) | [Reviewing the Volkswagen Touareg ~ Smarter Car Reviews](https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews) | 22.975 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [Blues Jam & Techniques [9-14-2016]](https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016) | 22.415 SBD |\n| [@matthew.raymer](https://steemit.com/@matthew.raymer) | [Life Stories](https://steemit.com/psychology/@matthew.raymer/life-stories) | 22.733 SBD |\n| [@positivesteem](https://steemit.com/@positivesteem) | [Common Sense Versus Degrees: The Man Who Has One Hundred Degrees](https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees) | 22.941 SBD |\n| [@d3nv3r](https://steemit.com/@d3nv3r) | [Cloud Mining - The Struggle is Real](https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real) | 22.266 SBD |\n| [@adubi](https://steemit.com/@adubi) | [Healing Food Plan: The Ultimate Cheat Sheet](https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet) | 22.947 SBD |\n| [@alitas](https://steemit.com/@alitas) | [(spanish) Cazuela de Calamar con Papas Rejilla](https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla) | 22.240 SBD |\n| [@mazi](https://steemit.com/@mazi) | [I Can See Clearly Now .... Platanus occidentalis](https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis) | 22.784 SBD |\n| [@mikemacintire](https://steemit.com/@mikemacintire) | [A Red Like No Other - My work](https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work) | 22.289 SBD |\n| [@altzero](https://steemit.com/@altzero) | [Imágenes de una vida (2)](https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2) | 21.555 SBD |\n| [@birdie](https://steemit.com/@birdie) | [Clouds That Demand Attention (Original Photos)](https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos) | 21.397 SBD |\n| [@michaelstobiersk](https://steemit.com/@michaelstobiersk) | [An Original Painting by Michael Stobierski](https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski) | 21.367 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Meditation Experience Can Be Really Scary](https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary) | 21.583 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [The Price Is Right Theme Music Breakdown](https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown) | 21.937 SBD |\n| [@karisa](https://steemit.com/@karisa) | [Very tasty and delicious curd cookies specially for Steemit . Part 4](https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4) | 21.940 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Borovoye (Burabai) - Pearl of Kazakhstan: The Incredible Journey (Story of my Husband)](https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband) | 20.616 SBD |\n| [@burnin](https://steemit.com/@burnin) | [Exploring the Off-Limits Areas of the Largest Cruise Ship In the World - Part 2](https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2) | 20.298 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Eyes Of Wisdom](https://steemit.com/art/@reddust/eyes-of-wisdom) | 20.051 SBD |\n| [@levycore](https://steemit.com/@levycore) | [Hot Chocolate Art - Trying Draw Faces](https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces) | 20.233 SBD |\n| [@awesomenyl](https://steemit.com/@awesomenyl) | [Sunflower Paper Tutorial](https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial) | 20.040 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [The epic and awesome guide to writing articles like a true artist that people want to read and share! [Edited for Steemit today]](https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today) | 20.192 SBD |\n| [@naquoya](https://steemit.com/@naquoya) | [[ORIGINAL FICTION] Bad Trip part two: The Gamemaster](https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster) | 20.041 SBD |\n| [@moon32walker](https://steemit.com/@moon32walker) | [Top 10 Game Development Studios](https://steemit.com/gaming/@moon32walker/top-10-game-development-studios) | 20.468 SBD |\n| [@gustavopasquini](https://steemit.com/@gustavopasquini) | [Polenta with Ragu Meat Dry](https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry) | 20.436 SBD |\n| [@benadapt](https://steemit.com/@benadapt) | [Capturing the Milky Way — A Photographer’s Biggest Challenge](https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge) | 20.477 SBD |\n| [@altzero](https://steemit.com/@altzero) | [¿Que es la nueva economia?](https://steemit.com/spanish/@altzero/que-es-la-nueva-economia) | 20.037 SBD |\n| [@por500bolos](https://steemit.com/@por500bolos) | [Uncovering The Most Transcendental & Biggest Secret In The Human Life. ¿Skeptical? I will challenge you to prove otherwise!!](https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise) | 20.894 SBD |\n| [@zonpower](https://steemit.com/@zonpower) | [This is a place (An original Poem)](https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem) | 20.869 SBD |\n| [@katharsisdrill](https://steemit.com/@katharsisdrill) | [The rune-stones of Jelling, and a new realisation.](https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation) | 19.761 SBD |\n| [@glezeddy](https://steemit.com/@glezeddy) | [MEZCLA DE TEQUILA PARA DAR EL \"GRITO\" (MÉXICO)](https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico) | 15.682 SBD |\n| [@onetree](https://steemit.com/@onetree) | [South African Slang - Enter Those Who Dare!](https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare) | 33.017 SBD |\n| [@verbal-d](https://steemit.com/@verbal-d) | [Melodious Music Memoirs # 2: Impact](https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact) | 30.372 SBD |\n| [@wanderingagorist](https://steemit.com/@wanderingagorist) | [Foraging Wild Rose Hips for Tea and Eating](https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating) | 29.228 SBD |\n| [@knablinz](https://steemit.com/@knablinz) | [Hand-Made Collage Art By Knablinz ( Donuts & Coffee )](https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee) | 35.939 SBD |\n\n---------------------------\n
Note: All author rewards from this post will be used to fund Project Curie.
Join us in #curie on Steemit.chat and follow us @curie!
", + "json_metadata": { + "tags": [ + "curie", + "minnows", + "hidden-gems", + "steemit", + "project-curie" + ], + "users": [ + "nextgencrypto", + "curie" + ], + "image": [ + "https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg" + ], + "links": [ + "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", + "https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement", + "https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", + "https://steemit.com/@faddat", + "https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed", + "https://steemit.com/@rampant", + "https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool", + "https://steemit.com/@shenanigator", + "https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do", + "https://steemit.com/@penguinpablo", + "https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf", + "https://steemit.com/@nathanjtaylor", + "https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry", + "https://steemit.com/@lily-da-vine", + "https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco", + "https://steemit.com/@budgetbucketlist", + "https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes", + "https://steemit.com/@benjiberigan", + "https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations", + "https://steemit.com/@ausbitbank", + "https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos", + "https://steemit.com/@emily-cook", + "https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work", + "https://steemit.com/@team-leibniz", + "https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00", + "https://steemit.com/@ionescur", + "https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land", + "https://steemit.com/@kimal73", + "https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work", + "https://steemit.com/@juliac", + "https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think", + "https://steemit.com/@luzcypher", + "https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals", + "https://steemit.com/@akareyon", + "https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing", + "https://steemit.com/@curving", + "https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation", + "https://steemit.com/@aleksandraz", + "https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology", + "https://steemit.com/@skapaneas", + "https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more", + "https://steemit.com/@gargon", + "https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", + "https://steemit.com/@iamwne", + "https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass", + "https://steemit.com/@stormblaze", + "https://steemit.com/technology/@stormblaze/where-do-deleted-files-go", + "https://steemit.com/@yanarnst", + "https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts", + "https://steemit.com/@senseye", + "https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor", + "https://steemit.com/@crasch", + "https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future", + "https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners", + "https://steemit.com/@cristi", + "https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months", + "https://steemit.com/@stranger27", + "https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature", + "https://steemit.com/@nekromarinist", + "https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today", + "https://steemit.com/@richman", + "https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story", + "https://steemit.com/@maceytomlin", + "https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony", + "https://steemit.com/@nili", + "https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol", + "https://steemit.com/@optimistic-crone", + "https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe", + "https://steemit.com/@anarchyhasnogods", + "https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one", + "https://steemit.com/@yostopia", + "https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick", + "https://steemit.com/@reneenouveau", + "https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015", + "https://steemit.com/@king3071", + "https://steemit.com/travel/@king3071/my-dream-destination-switzerland", + "https://steemit.com/@kolin.evans", + "https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines", + "https://steemit.com/@fenglosophy", + "https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think", + "https://steemit.com/@mandibil", + "https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil", + "https://steemit.com/@therajmahal", + "https://steemit.com/science/@therajmahal/making-the-impossible-possible", + "https://steemit.com/@carlitashaw", + "https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions", + "https://steemit.com/@renzoarg", + "https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics", + "https://steemit.com/@rachelsvparry", + "https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time", + "https://steemit.com/@royalmacro", + "https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art", + "https://steemit.com/@stephmckenzie", + "https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone", + "https://steemit.com/@alwayzgame", + "https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life", + "https://steemit.com/@nonlinearone", + "https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing", + "https://steemit.com/@kafkanarchy84", + "https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii", + "https://steemit.com/@feline1991", + "https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2", + "https://steemit.com/@geke", + "https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge", + "https://steemit.com/@lscottphotos", + "https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos", + "https://steemit.com/@pinkisland", + "https://steemit.com/writing/@pinkisland/my-philosophy-of-education", + "https://steemit.com/@jgcastrillo19", + "https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco", + "https://steemit.com/@luisucv34", + "https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition", + "https://steemit.com/@beowulfoflegend", + "https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty", + "https://steemit.com/@mariandavp", + "https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp", + "https://steemit.com/@nasimbabu", + "https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases", + "https://steemit.com/@royaltiffany", + "https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update", + "https://steemit.com/@travelista", + "https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo", + "https://steemit.com/@jpiper20", + "https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4", + "https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism", + "https://steemit.com/@krystle", + "https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin", + "https://steemit.com/@cryptoiskey", + "https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids", + "https://steemit.com/@getonthetrain", + "https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods", + "https://steemit.com/@ansharphoto", + "https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome", + "https://steemit.com/@aboundlessworld", + "https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast", + "https://steemit.com/@thornybastard", + "https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest", + "https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5", + "https://steemit.com/@dumar022", + "https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this", + "https://steemit.com/@lapilipinas", + "https://steemit.com/science/@lapilipinas/light-from-distant-stars", + "https://steemit.com/@williambanks", + "https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace", + "https://steemit.com/@driv3n", + "https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2", + "https://steemit.com/@timbot606", + "https://steemit.com/life/@timbot606/growing-up-in-appalachia", + "https://steemit.com/@themagus", + "https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2", + "https://steemit.com/@echoesinthemind", + "https://steemit.com/life/@echoesinthemind/hanging-upside-down", + "https://steemit.com/@ysa", + "https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado", + "https://steemit.com/@aksinya", + "https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video", + "https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro", + "https://steemit.com/@successfully00", + "https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1", + "https://steemit.com/@linzo", + "https://steemit.com/poem/@linzo/a-life-fantasy-original-poem", + "https://steemit.com/@hilarski", + "https://steemit.com/panama/@hilarski/panama-critters", + "https://steemit.com/@sulev", + "https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2", + "https://steemit.com/@steemswede", + "https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale", + "https://steemit.com/@marius19", + "https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami", + "https://steemit.com/@poeticsnake", + "https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings", + "https://steemit.com/@kiddarko", + "https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video", + "https://steemit.com/@shieha", + "https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2", + "https://steemit.com/@ayim", + "https://steemit.com/life/@ayim/fixing-posture-part-4-neck", + "https://steemit.com/@hitmeasap", + "https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice", + "https://steemit.com/@peskov", + "https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author", + "https://steemit.com/@aldentan", + "https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts", + "https://steemit.com/@beginningtoend", + "https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy", + "https://steemit.com/@kaykunoichi", + "https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself", + "https://steemit.com/@booky", + "https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates", + "https://steemit.com/@doubledex", + "https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong", + "https://steemit.com/@ekaterina4ka", + "https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2", + "https://steemit.com/@scaredycatguide", + "https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica", + "https://steemit.com/@amy-goodrich", + "https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie", + "https://steemit.com/@scott.stevens", + "https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering", + "https://steemit.com/@witchcraftblog", + "https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa", + "https://steemit.com/@ibringawareness", + "https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5", + "https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73", + "https://steemit.com/@leylar", + "https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work", + "https://steemit.com/@ocrdu", + "https://steemit.com/photography/@ocrdu/the-pods-that-go-pop", + "https://steemit.com/@rusla", + "https://steemit.com/travel/@rusla/japan-part8", + "https://steemit.com/@edgarsart", + "https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing", + "https://steemit.com/@borishaifa", + "https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat", + "https://steemit.com/@eveningstar92", + "https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art", + "https://steemit.com/@elewarne", + "https://steemit.com/mixedmedia/@elewarne/mixed-media", + "https://steemit.com/@shredlord", + "https://steemit.com/art/@shredlord/sunrise", + "https://steemit.com/@sherlockcupid", + "https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one", + "https://steemit.com/@annesaya", + "https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers", + "https://steemit.com/@fitmama", + "https://steemit.com/life/@fitmama/why-do-i-bother", + "https://steemit.com/@ezzy", + "https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories", + "https://steemit.com/@kingarbinv", + "https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far", + "https://steemit.com/@soulsistashakti", + "https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist", + "https://steemit.com/@puffin", + "https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem", + "https://steemit.com/@cehuneke", + "https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease", + "https://steemit.com/@tanata", + "https://steemit.com/fashion/@tanata/little-black-dress-involving", + "https://steemit.com/@steemwriter", + "https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship", + "https://steemit.com/@michelle.gent", + "https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters", + "https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing", + "https://steemit.com/@runridefly", + "https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale", + "https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one", + "https://steemit.com/@lyubovbar", + "https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory", + "https://steemit.com/@victoriart", + "https://steemit.com/art/@victoriart/hazelnut-mood", + "https://steemit.com/@heroic15397", + "https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area", + "https://steemit.com/@smartercars", + "https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews", + "https://steemit.com/@rubenalexander", + "https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016", + "https://steemit.com/@matthew.raymer", + "https://steemit.com/psychology/@matthew.raymer/life-stories", + "https://steemit.com/@positivesteem", + "https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees", + "https://steemit.com/@d3nv3r", + "https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real", + "https://steemit.com/@adubi", + "https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet", + "https://steemit.com/@alitas", + "https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla", + "https://steemit.com/@mazi", + "https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis", + "https://steemit.com/@mikemacintire", + "https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work", + "https://steemit.com/@altzero", + "https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2", + "https://steemit.com/@birdie", + "https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos", + "https://steemit.com/@michaelstobiersk", + "https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski", + "https://steemit.com/@reddust", + "https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary", + "https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown", + "https://steemit.com/@karisa", + "https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4", + "https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband", + "https://steemit.com/@burnin", + "https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2", + "https://steemit.com/art/@reddust/eyes-of-wisdom", + "https://steemit.com/@levycore", + "https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces", + "https://steemit.com/@awesomenyl", + "https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial", + "https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today", + "https://steemit.com/@naquoya", + "https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster", + "https://steemit.com/@moon32walker", + "https://steemit.com/gaming/@moon32walker/top-10-game-development-studios", + "https://steemit.com/@gustavopasquini", + "https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry", + "https://steemit.com/@benadapt", + "https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge", + "https://steemit.com/spanish/@altzero/que-es-la-nueva-economia", + "https://steemit.com/@por500bolos", + "https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise", + "https://steemit.com/@zonpower", + "https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem", + "https://steemit.com/@katharsisdrill", + "https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation", + "https://steemit.com/@glezeddy", + "https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico", + "https://steemit.com/@onetree", + "https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare", + "https://steemit.com/@verbal-d", + "https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact", + "https://steemit.com/@wanderingagorist", + "https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating", + "https://steemit.com/@knablinz", + "https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee" + ] + }, + "created": "2016-09-15T17:53:48", + "updated": "2016-09-15T17:53:48", + "depth": 0, + "children": 10, + "net_rshares": 61028272797290, + "is_paidout": false, + "payout_at": "2016-09-16T18:14:08", + "payout": 218.554, + "pending_payout_value": "218.554 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "val-a", + "rshares": "30948708908726" + }, + { + "voter": "val-b", + "rshares": "15292900000000" + }, + { + "voter": "joseph", + "rshares": "1534352192855" + }, + { + "voter": "masteryoda", + "rshares": "652034182902" + }, + { + "voter": "idol", + "rshares": "8927024295" + }, + { + "voter": "donkeypong", + "rshares": "2637269453488" + }, + { + "voter": "steemrollin", + "rshares": "816386307308" + }, + { + "voter": "sakr", + "rshares": "4941856440" + }, + { + "voter": "chris4210", + "rshares": "140357414085" + }, + { + "voter": "jocelyn", + "rshares": "1536548017" + }, + { + "voter": "acidsun", + "rshares": "83530339170" + }, + { + "voter": "gavvet", + "rshares": "1196485708874" + }, + { + "voter": "eeks", + "rshares": "59931939963" + }, + { + "voter": "fernando-sanz", + "rshares": "6122594947" + }, + { + "voter": "nanzo-scoop", + "rshares": "584270995256" + }, + { + "voter": "mummyimperfect", + "rshares": "177415501233" + }, + { + "voter": "asch", + "rshares": "106634401121" + }, + { + "voter": "kevinwong", + "rshares": "603741881611" + }, + { + "voter": "murh", + "rshares": "1061259321" + }, + { + "voter": "cryptofunk", + "rshares": "3187850436" + }, + { + "voter": "error", + "rshares": "2003304335" + }, + { + "voter": "cyber", + "rshares": "962089879337" + }, + { + "voter": "ak2020", + "rshares": "50884297723" + }, + { + "voter": "justtryme90", + "rshares": "61300613738" + }, + { + "voter": "applecrisp", + "rshares": "410517349" + }, + { + "voter": "altoz", + "rshares": "35693164103" + }, + { + "voter": "anwenbaumeister", + "rshares": "820589638514" + }, + { + "voter": "mark-waser", + "rshares": "5950595929" + }, + { + "voter": "geoffrey", + "rshares": "118349796563" + }, + { + "voter": "kimziv", + "rshares": "192325266448" + }, + { + "voter": "emily-cook", + "rshares": "77083924707" + }, + { + "voter": "orly", + "rshares": "3283440404" + }, + { + "voter": "steem1653", + "rshares": "2834957075" + }, + { + "voter": "cynetyc", + "rshares": "124961861" + }, + { + "voter": "thegoodguy", + "rshares": "5357326058" + }, + { + "voter": "karen13", + "rshares": "4209522316" + }, + { + "voter": "nabilov", + "rshares": "251366150295" + }, + { + "voter": "noodhoog", + "rshares": "8401059269" + }, + { + "voter": "knozaki2015", + "rshares": "455246290726" + }, + { + "voter": "lichtblick", + "rshares": "7166494256" + }, + { + "voter": "creemej", + "rshares": "33739090409" + }, + { + "voter": "btcbtcbtc20155", + "rshares": "5726411049" + }, + { + "voter": "blueorgy", + "rshares": "163324531946" + }, + { + "voter": "poseidon", + "rshares": "4195248338" + }, + { + "voter": "simon.braki.love", + "rshares": "3435918746" + }, + { + "voter": "liberosist", + "rshares": "268137172703" + }, + { + "voter": "birdie", + "rshares": "4128504280" + }, + { + "voter": "sharker", + "rshares": "5609578664" + }, + { + "voter": "jl777", + "rshares": "204618259005" + }, + { + "voter": "yarly", + "rshares": "1773036384" + }, + { + "voter": "yarly2", + "rshares": "267188192" + }, + { + "voter": "yarly3", + "rshares": "267587944" + }, + { + "voter": "yarly4", + "rshares": "154579129" + }, + { + "voter": "yarly5", + "rshares": "155451862" + }, + { + "voter": "yarly7", + "rshares": "88607961" + }, + { + "voter": "moon32walker", + "rshares": "11031796651" + }, + { + "voter": "sergey44", + "rshares": "258619590" + }, + { + "voter": "proto", + "rshares": "17267341753" + }, + { + "voter": "sisterholics", + "rshares": "31599342155" + }, + { + "voter": "yarly10", + "rshares": "428868451" + }, + { + "voter": "yarly11", + "rshares": "229507420" + }, + { + "voter": "yarly12", + "rshares": "80241480" + }, + { + "voter": "steemster1", + "rshares": "146224042" + }, + { + "voter": "mahekg", + "rshares": "5878023046" + }, + { + "voter": "taker", + "rshares": "8734150854" + }, + { + "voter": "nekromarinist", + "rshares": "6521104126" + }, + { + "voter": "theprophet0", + "rshares": "10553169212" + }, + { + "voter": "sharon", + "rshares": "57873464" + }, + { + "voter": "lillianjones", + "rshares": "58971492" + }, + { + "voter": "laonie", + "rshares": "1117443990130" + }, + { + "voter": "twinner", + "rshares": "4257390614" + }, + { + "voter": "timcliff", + "rshares": "4414425121" + }, + { + "voter": "myfirst", + "rshares": "38640926181" + }, + { + "voter": "somebody", + "rshares": "233306274805" + }, + { + "voter": "flysaga", + "rshares": "8723132526" + }, + { + "voter": "gmurph", + "rshares": "1667759072" + }, + { + "voter": "midnightoil", + "rshares": "51539167746" + }, + { + "voter": "ullikume", + "rshares": "4190377366" + }, + { + "voter": "xiaohui", + "rshares": "128906992414" + }, + { + "voter": "jphamer1", + "rshares": "21112616587" + }, + { + "voter": "elfkitchen", + "rshares": "6306539895" + }, + { + "voter": "joele", + "rshares": "102434307703" + }, + { + "voter": "randyclemens", + "rshares": "15549176040" + }, + { + "voter": "xiaokongcom", + "rshares": "4030108065" + }, + { + "voter": "msjennifer", + "rshares": "59437351" + }, + { + "voter": "ciao", + "rshares": "54654502" + }, + { + "voter": "steemo", + "rshares": "52985539" + }, + { + "voter": "xianjun", + "rshares": "8123975227" + }, + { + "voter": "steema", + "rshares": "52848854" + }, + { + "voter": "confucius", + "rshares": "69662169" + }, + { + "voter": "borran", + "rshares": "11292536945" + }, + { + "voter": "jarvis", + "rshares": "53661976" + }, + { + "voter": "microluck", + "rshares": "546765304" + }, + { + "voter": "razberrijam", + "rshares": "75676352" + }, + { + "voter": "fortuner", + "rshares": "53106127" + }, + { + "voter": "pompe72", + "rshares": "84942400" + }, + { + "voter": "lemouth", + "rshares": "8114632832" + }, + { + "voter": "gvargas123", + "rshares": "10344891579" + }, + { + "voter": "johnbyrd", + "rshares": "51877132" + }, + { + "voter": "thomasaustin", + "rshares": "50682252" + }, + { + "voter": "thermor", + "rshares": "51859074" + }, + { + "voter": "ficholl", + "rshares": "50691211" + }, + { + "voter": "widell", + "rshares": "51852278" + }, + { + "voter": "steevc", + "rshares": "404286448" + }, + { + "voter": "movievertigo", + "rshares": "3635091595" + }, + { + "voter": "revelbrooks", + "rshares": "51481279" + }, + { + "voter": "cehuneke", + "rshares": "1573489537" + }, + { + "voter": "netaterra", + "rshares": "2982676167" + }, + { + "voter": "andrewawerdna", + "rshares": "23137850346" + }, + { + "voter": "trev", + "rshares": "5831957227" + }, + { + "voter": "craigwilliamz", + "rshares": "8773942171" + }, + { + "voter": "mandibil", + "rshares": "51505575275" + }, + { + "voter": "daut44", + "rshares": "32462674824" + }, + { + "voter": "curpose", + "rshares": "50416427" + }, + { + "voter": "curving", + "rshares": "3597236649" + }, + { + "voter": "uri-bruck", + "rshares": "61596105" + }, + { + "voter": "shenanigator", + "rshares": "112983030208" + }, + { + "voter": "quinneaker", + "rshares": "10005063213" + }, + { + "voter": "einsteinpotsdam", + "rshares": "7626813355" + }, + { + "voter": "richardcrill", + "rshares": "4747321980" + }, + { + "voter": "jeremyfromwi", + "rshares": "2205784762" + }, + { + "voter": "troich", + "rshares": "50588612" + }, + { + "voter": "davidjkelley", + "rshares": "1661534801" + }, + { + "voter": "crion", + "rshares": "50593879" + }, + { + "voter": "greatness", + "rshares": "178419224" + }, + { + "voter": "hitherise", + "rshares": "50271139" + }, + { + "voter": "wiss", + "rshares": "50262756" + }, + { + "voter": "sponge-bob", + "rshares": "54249219602" + }, + { + "voter": "digital-wisdom", + "rshares": "15571056039" + }, + { + "voter": "getonthetrain", + "rshares": "3365396535" + }, + { + "voter": "ethical-ai", + "rshares": "3710959443" + }, + { + "voter": "stroully", + "rshares": "51033798" + }, + { + "voter": "jwaser", + "rshares": "6831361820" + }, + { + "voter": "tfeldman", + "rshares": "468106735" + }, + { + "voter": "thadm", + "rshares": "50712038" + }, + { + "voter": "prof", + "rshares": "50710305" + }, + { + "voter": "ionescur", + "rshares": "1597514180" + }, + { + "voter": "bane", + "rshares": "50065875" + }, + { + "voter": "vive", + "rshares": "50059754" + }, + { + "voter": "coad", + "rshares": "50054445" + }, + { + "voter": "bwaser", + "rshares": "2675506788" + }, + { + "voter": "renzoarg", + "rshares": "7645490859" + }, + { + "voter": "sofa", + "rshares": "50840303" + }, + { + "voter": "roadhog", + "rshares": "53990613" + }, + { + "voter": "doggnostic", + "rshares": "52794249" + }, + { + "voter": "jenny-talls", + "rshares": "52521499" + }, + { + "voter": "mariandavp", + "rshares": "8199670899" + }, + { + "voter": "brains", + "rshares": "55344422883" + }, + { + "voter": "post-successful", + "rshares": "53415391" + }, + { + "voter": "burnin", + "rshares": "5866415576" + }, + { + "voter": "anomaly", + "rshares": "271439221" + }, + { + "voter": "ellepdub", + "rshares": "2401297947" + }, + { + "voter": "michelle.gent", + "rshares": "4116636581" + }, + { + "voter": "herpetologyguy", + "rshares": "12115638535" + }, + { + "voter": "morgan.waser", + "rshares": "4817004213" + }, + { + "voter": "dragonice", + "rshares": "50228382" + }, + { + "voter": "aksinya", + "rshares": "1288421610" + }, + { + "voter": "bapparabi", + "rshares": "1921231770" + }, + { + "voter": "opticalillusions", + "rshares": "50487909" + }, + { + "voter": "strong-ai", + "rshares": "3689852156" + }, + { + "voter": "grisha-danunaher", + "rshares": "505556200" + }, + { + "voter": "igtes", + "rshares": "71207873" + }, + { + "voter": "curie", + "rshares": "50277354380" + }, + { + "voter": "dikanevroman", + "rshares": "851767121" + }, + { + "voter": "buffett", + "rshares": "141679752" + }, + { + "voter": "witchcraftblog", + "rshares": "453506109" + }, + { + "voter": "photorealistic", + "rshares": "157799009" + }, + { + "voter": "illusions", + "rshares": "160880639" + }, + { + "voter": "dresden", + "rshares": "6920933761" + }, + { + "voter": "caseyneistat", + "rshares": "160845765" + }, + { + "voter": "ysa", + "rshares": "692395145" + }, + { + "voter": "correct", + "rshares": "159984914" + }, + { + "voter": "capcom", + "rshares": "159973989" + }, + { + "voter": "sledgehammer", + "rshares": "159963865" + }, + { + "voter": "haribo", + "rshares": "159950870" + }, + { + "voter": "benetton", + "rshares": "159531007" + }, + { + "voter": "stimmt", + "rshares": "156194471" + }, + { + "voter": "reef", + "rshares": "159143891" + }, + { + "voter": "cream", + "rshares": "158632601" + }, + { + "voter": "reddust", + "rshares": "891891710" + }, + { + "voter": "aldentan", + "rshares": "336222066" + }, + { + "voter": "techslut", + "rshares": "191981449" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 182, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/curie/@curie/the-daily-curie-14th-sept-15th-sept-2016", + "blacklists": [] + }, + { + "post_id": 960063, + "author": "alienbutt", + "permlink": "alien-or-plant", + "category": "photography", + "title": "Alien or plant?", + "body": "You decide what they are.\nAlien heads staked on a post or seed pods?\n\"\n\n\"", + "json_metadata": { + "tags": [ + "photography", + "art", + "" + ], + "image": [ + "http://i346.photobucket.com/albums/p432/Glenn_Scrimshaw/DSCN2947_zpsx86w0mif.jpg", + "http://i346.photobucket.com/albums/p432/Glenn_Scrimshaw/DSCN2944_zps2kijcdvn.jpg" + ], + "links": [ + "http://s346.photobucket.com/user/Glenn_Scrimshaw/media/DSCN2947_zpsx86w0mif.jpg.html", + "http://s346.photobucket.com/user/Glenn_Scrimshaw/media/DSCN2944_zps2kijcdvn.jpg.html" + ] + }, + "created": "2016-09-15T17:53:36", + "updated": "2016-09-15T18:23:18", + "depth": 0, + "children": 4, + "net_rshares": 44874621891175, + "is_paidout": false, + "payout_at": "2016-09-16T18:36:35", + "payout": 120.784, + "pending_payout_value": "120.784 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231809639013" + }, + { + "voter": "blocktrades", + "rshares": "40042046720125" + }, + { + "voter": "riverhead", + "rshares": "4287714457313" + }, + { + "voter": "altoz", + "rshares": "34979300821" + }, + { + "voter": "steem1653", + "rshares": "2733708608" + }, + { + "voter": "nabilov", + "rshares": "251366150295" + }, + { + "voter": "btcupload", + "rshares": "3813478158" + }, + { + "voter": "future24", + "rshares": "1557779220" + }, + { + "voter": "pompe72", + "rshares": "84942400" + }, + { + "voter": "craigwilliamz", + "rshares": "8773949381" + }, + { + "voter": "anomaly", + "rshares": "271440423" + }, + { + "voter": "michelle.gent", + "rshares": "4249431309" + }, + { + "voter": "bapparabi", + "rshares": "1871969417" + }, + { + "voter": "irensche", + "rshares": "2497059333" + }, + { + "voter": "katharsisdrill", + "rshares": "84821361" + }, + { + "voter": "alienbutt", + "rshares": "767043998" + } + ], + "author_reputation": 52.91, + "stats": { + "hide": false, + "gray": false, + "total_votes": 16, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/photography/@alienbutt/alien-or-plant", + "blacklists": [] + }, + { + "post_id": 959783, + "author": "serejandmyself", + "permlink": "captured-by-time-an-original-novel-chapter-1", + "category": "story", + "title": "CAPTURED BY TIME (An Original Novel - Chapter 1)", + "body": "#### Hey guys, welcome to the first chapter of my new novel.\n#### It is a mixture of 3 time lines, with 19th century, modern day and ancient times. The genre is probably something you would call a mixture of sci-fi, mystery, adventure and a bit more. \n#### Well, I welcome you to be the judge...\n\n

[![b801c049484636e0faf71f56cca03864c0bd6.jpg](https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg)](https://www.steemimg.com/image/1wrYT)

\n\n__________________________________\n\n**Chapter ONE**\n\nIt seemed as nothing was different in yet another cold and slightly windy London evening. The smog from the river was rising up as usual and the chilly wind would bring the smell up to the embankment, where Charles was taking a rest, sitting down on his favorite bench. \n\nFrom here he could see the might of the power station from across the river and something was special in the way those chimneys threw out the smoke onto the city. \n\nHe just finished his walk along his usual route, walking amongst the cemetery outside the chapel. It always amused him; that mix of emotion and sorrow amongst the busy city people, especially during the busy afternoon hours.\n\nThat rusty smell kept mixing with up with the light freshness of the leaves from the tree nearby Charles’s bench. As he threw a brief glimpse onto the clock on the parliament building he noticed that the small arrow was on 45 minutes… \n\nSuddenly he heard a murmur of horses; he turned his head before he could finish realizing what time it was. He saw that just a few yards up the road two horse carriages didn’t manage to share the drive way. \n\n
[![Saratogacarriagec5af5.jpg](https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg)](https://www.steemimg.com/image/1w1bI)
\n\nOne of the coachmen was shouting something and angrily waving his hands. Charles was able to see from here that the coachmen’s grey clothing was partially covered in dirt, probably from the splash of the puddles from underneath the wheels. \n\nThe coachmen kept shouting something, Charles was unable to see the second carriage from where he was sitting, but was able to see some passersby, that starting to gather around the incident.\n\nIt was obvious that, just like him, those people had nothing better to do on this late afternoon then to watch in amusement the accident in the middle of the avenue.\n\nJust as Charles was starting to lose interest in the whole situation, the door of the cab that Charles could see, opened and a man dressed in a black suit and holding a pipe stepped out. He calmly put his hand in the upper inner pocket of the suit and pulled out some coins. The man made two steps up to driver and handed him the coins. At this moment the driver stopped shouting for a moment and it was clear from the look on his face that he was confused. \n\nThe cab driver counted the coins and said something to the man in the suit, the passenger didn’t answer. He turned around and started to walk in the direction of the chapel. The cab driver clearly wasn’t happy. He started to shout once again, but this time at the passenger. While the cab driver turned his attention to the passenger, Charles noticed how the second carriage that was involved in the accident managed to move a few yards back.\n\nIt was a much smaller carriage, and the driver was clearly seeable to Charles now. He seemed somewhat happy that he was not in the middle of the light anymore; he hurryingly turned the carriage and the horse around and started to move also in the direction of the chapel. \n\nAt this moment the driver of the first carriage started to lose interest in shouting and decided to clean himself up. As he started to calm down, the bemused passersby begun to walk back to where they were heading and Charles also turned his head back towards the power station.\n\nCharles was so busy watching the situation unfold that he didn’t noticed that the passenger of the first carriage crossed the road and was now heading not towards the chapel anymore, but exactly in the other direction, towards the grey bench that Charles was sitting on.\n\nAt first Charles didn’t pay any attention to just another man who was walking by. But then he noticed that calm walk of his and it hit him that this was the same passenger from the carriage.\n\n“Excuse me sir?” said Charles as the man closed up to the bench. “You are the gentleman from the carriage, aren’t you?” “I saw you a minute ago, what happened?”\n\nThe man stopped to walk and shared a look with Charles; he calmly sat down beside him and carried on smoking his pipe, as he was not hearing the questions Charles asked him. \n\n“I do apologies for the intervention, but you must not be local, I can tell by your calmness, all the folks round here are always in a hurry” Charles carried on talking as if not noticing that the man was ignoring him. \n\nAll of a sudden the weather begun to change, wind started to blow stronger and the few leaves that the tree was holding blew in the direction of the bench. The smell from the river rose up and as if that wasn’t enough Charles felt like a small rain drop hit his head. He could clearly see the green water from where he was sitting through the decorations holes of the embankments fence. It was clear that it will start to rain soon by the appearing circles on the top of the river.\n\nAfter a few minutes of quietly seating by his new neighbor Charles caught himself looking at the clock on the tower, once again he saw the small arrow on 45 minutes…\n\n“And what do we pay the government for?” “It would feel though they are taking our money and spend it on their fancy hats and suits, don’t you find?” Said Charles.\n\nAt this point the man took out the pipe into his left hand and begun to cough. After he finished coughing Charles heard him speak, at this point Charles understood that for some reason he would remember this moment for a long time to come. \n\n“It is likely to assume that they deserve to spend the money they earn” Said the man, his voice was quite low and he had a certain accent Charles could quite catch.\n\n“I don’t think that money is of importance nowadays” Said the man.\n\nCharles looked at the man with a smile - “What is of importance? One might assume that philosophically speaking, importance can be found in nothing but what is good to us”.\n\n“No body knows what can be important to others if we carry on like this, then…” Charles didn’t finish his sentence as the man turned away from him and looked the other way. He then turned his head back and Charles noticed his eyes. His eyes were nothing like what Charles had seen before, they looked as though they were glass like and the as if they were blank, there was nothing behind them.\n\n“What is important is that I am here now and that it is happening today. It is important to live your life because, just like your life Charles, it has an end”, the man looked somewhat happy when he said that and Charles jumped back on the bench a little, he felt a small shiver run down his spine.\n\n“What? How do you know my name sir? Have you been following me?” questions were racing through Charles’s mind. \n\n“As I said, this is now of importance. You life can find its end today when you get back to your gallery in your cold basement on Kinnerton street or you might listen to me and…” Charles didn’t let the man finish his sentence. He jumped up from the bench; his cane flew within millimeters of the stranger leg as he jumped.\n\n“How dare you sir? Who gives you the right…” Charles raised his voice, he never allowed himself to raise his voice at a stranger beforehand.\n\n“I think this conversation is over!” exclaimed Charles. “That would be your choice” replied the man, “Do you think the time is right?” \n\nCharles had already turned away in anger and was about to make his first step away. Something in the words of the man about the time made him think for a second, thoughts raced through his mind. The number 45 and the small arrow of the parliament clock were stuck in his head. \n\n“I don’t understand said Charles…” he turned his head back towards the clock; the arrow was still on 45 minutes. “How is that possible?” Charles turned his head to the man, but there was no one on the bench. \n\nCharles begun to search the street rapidly with his eyes, it didn’t even occur to him that it was heavily raining until that moment. \n\n
[![tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif](https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif)](https://www.steemimg.com/image/1w5tK)
\n\nThe streets were empty; there were no carriages or people to be seen around. Feeling scared he turned his head to the clock once again – “How can it still be 45 minutes...” Charles was speaking out loud.\n\nThe next moment he felt like his knees weakened, his head was swirling and he dropped his cane, last thing he could hear was the clinging the of the cane’s handle against the pavement. His thoughts mixed up with his eyesight; the man and his pipe, the handle of the clock, the carriage, the passersby, the power stations smoke…\n \n_________________________________\n\n#### Follow me @serejandmyself for more \n\nImage credit - [1](https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/) ; [2](https://giphy.com/search/carriage) ; [3](http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html) ;", + "json_metadata": { + "tags": [ + "story", + "fiction", + "scifi", + "mystery", + "writing" + ], + "users": [ + "serejandmyself" + ], + "image": [ + "https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg", + "https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg", + "https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif" + ], + "links": [ + "https://www.steemimg.com/image/1wrYT", + "https://www.steemimg.com/image/1w1bI", + "https://www.steemimg.com/image/1w5tK", + "https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/", + "https://giphy.com/search/carriage", + "http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html" + ] + }, + "created": "2016-09-15T17:23:48", + "updated": "2016-09-15T17:23:48", + "depth": 0, + "children": 2, + "net_rshares": 66871297900441, + "is_paidout": false, + "payout_at": "2016-09-16T17:42:51", + "payout": 260.997, + "pending_payout_value": "260.997 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "smooth", + "rshares": "31621188390159" + }, + { + "voter": "bmw", + "rshares": "2078528809174" + }, + { + "voter": "badassmother", + "rshares": "1912120788268" + }, + { + "voter": "pharesim", + "rshares": "3312854507128" + }, + { + "voter": "hr1", + "rshares": "2053144245901" + }, + { + "voter": "rossco99", + "rshares": "1271804694676" + }, + { + "voter": "jaewoocho", + "rshares": "22390733187" + }, + { + "voter": "steemychicken1", + "rshares": "1736291789819" + }, + { + "voter": "joseph", + "rshares": "1533973920081" + }, + { + "voter": "recursive2", + "rshares": "466132509421" + }, + { + "voter": "masteryoda", + "rshares": "652005899349" + }, + { + "voter": "recursive", + "rshares": "3120458041174" + }, + { + "voter": "smooth.witness", + "rshares": "5941203882368" + }, + { + "voter": "idol", + "rshares": "9168101098" + }, + { + "voter": "steemrollin", + "rshares": "816386307308" + }, + { + "voter": "sakr", + "rshares": "4941741048" + }, + { + "voter": "jocelyn", + "rshares": "1578030666" + }, + { + "voter": "acidsun", + "rshares": "83530339170" + }, + { + "voter": "gregory-f", + "rshares": "14818192446" + }, + { + "voter": "edgeland", + "rshares": "151248263299" + }, + { + "voter": "gregory60", + "rshares": "9028522101" + }, + { + "voter": "eeks", + "rshares": "74914792736" + }, + { + "voter": "fkn", + "rshares": "15119117634" + }, + { + "voter": "elishagh1", + "rshares": "19873135819" + }, + { + "voter": "richman", + "rshares": "7802860274" + }, + { + "voter": "nanzo-scoop", + "rshares": "584250736753" + }, + { + "voter": "mummyimperfect", + "rshares": "177409209153" + }, + { + "voter": "coar", + "rshares": "313697862" + }, + { + "voter": "asch", + "rshares": "106632631169" + }, + { + "voter": "murh", + "rshares": "1061245798" + }, + { + "voter": "cryptofunk", + "rshares": "6230746892" + }, + { + "voter": "error", + "rshares": "2057413439" + }, + { + "voter": "cyber", + "rshares": "962077066542" + }, + { + "voter": "theshell", + "rshares": "59950063204" + }, + { + "voter": "ak2020", + "rshares": "49578772788" + }, + { + "voter": "noganoo", + "rshares": "76584409982" + }, + { + "voter": "satoshifund", + "rshares": "3848540783991" + }, + { + "voter": "taoteh1221", + "rshares": "400880323222" + }, + { + "voter": "applecrisp", + "rshares": "410517349" + }, + { + "voter": "altoz", + "rshares": "35693164103" + }, + { + "voter": "gardening", + "rshares": "335983556" + }, + { + "voter": "survival", + "rshares": "336136344" + }, + { + "voter": "arisa", + "rshares": "10021612024" + }, + { + "voter": "trogdor", + "rshares": "280737930617" + }, + { + "voter": "mark-waser", + "rshares": "5950554459" + }, + { + "voter": "geoffrey", + "rshares": "118348776939" + }, + { + "voter": "kimziv", + "rshares": "42738217262" + }, + { + "voter": "seth-krings", + "rshares": "24170583392" + }, + { + "voter": "honeythief", + "rshares": "46264097306" + }, + { + "voter": "technology", + "rshares": "78976166587" + }, + { + "voter": "emily-cook", + "rshares": "76017114668" + }, + { + "voter": "superfreek", + "rshares": "2187607792" + }, + { + "voter": "isteemit", + "rshares": "49806227536" + }, + { + "voter": "auction", + "rshares": "10993053311" + }, + { + "voter": "grey580", + "rshares": "17557768630" + }, + { + "voter": "thebatchman", + "rshares": "19975264794" + }, + { + "voter": "lehard", + "rshares": "60403077307" + }, + { + "voter": "orly", + "rshares": "3283410959" + }, + { + "voter": "riscadox", + "rshares": "5270985903" + }, + { + "voter": "katyakov", + "rshares": "24867544970" + }, + { + "voter": "jako", + "rshares": "12790313163" + }, + { + "voter": "steemswede", + "rshares": "1159208963" + }, + { + "voter": "sergei", + "rshares": "1664172448" + }, + { + "voter": "honey", + "rshares": "238378512" + }, + { + "voter": "furion", + "rshares": "71343869654" + }, + { + "voter": "barbara2", + "rshares": "354114465" + }, + { + "voter": "ch0c0latechip", + "rshares": "393593664" + }, + { + "voter": "doge4lyf", + "rshares": "364274718" + }, + { + "voter": "on0tole", + "rshares": "5532441214" + }, + { + "voter": "dicov", + "rshares": "1231812238" + }, + { + "voter": "steem1653", + "rshares": "2834923420" + }, + { + "voter": "sveokla", + "rshares": "2919298058" + }, + { + "voter": "sebastien", + "rshares": "17173174800" + }, + { + "voter": "thegoodguy", + "rshares": "5357205853" + }, + { + "voter": "aaseb", + "rshares": "14167556353" + }, + { + "voter": "danielkt", + "rshares": "1026087885" + }, + { + "voter": "karen13", + "rshares": "4209522316" + }, + { + "voter": "nabilov", + "rshares": "251366150295" + }, + { + "voter": "luisucv34", + "rshares": "629471993" + }, + { + "voter": "knozaki2015", + "rshares": "462033723200" + }, + { + "voter": "inertia", + "rshares": "95668007343" + }, + { + "voter": "milestone", + "rshares": "46858037615" + }, + { + "voter": "lichtblick", + "rshares": "7164489185" + }, + { + "voter": "creemej", + "rshares": "34761364489" + }, + { + "voter": "the-future", + "rshares": "2726160685" + }, + { + "voter": "nippel66", + "rshares": "15378115921" + }, + { + "voter": "phenom", + "rshares": "23929304431" + }, + { + "voter": "blueorgy", + "rshares": "167305835788" + }, + { + "voter": "benjiberigan", + "rshares": "12849414672" + }, + { + "voter": "poseidon", + "rshares": "932262984" + }, + { + "voter": "mustafaomar", + "rshares": "19717588129" + }, + { + "voter": "simon.braki.love", + "rshares": "3435918746" + }, + { + "voter": "thylbom", + "rshares": "82781233416" + }, + { + "voter": "deanliu", + "rshares": "32543400703" + }, + { + "voter": "dmitriybtc", + "rshares": "4996306142" + }, + { + "voter": "hemp", + "rshares": "1019831473" + }, + { + "voter": "flowers", + "rshares": "118287211" + }, + { + "voter": "jl777", + "rshares": "204617853645" + }, + { + "voter": "zaebars", + "rshares": "30989251579" + }, + { + "voter": "positive", + "rshares": "12261205066" + }, + { + "voter": "yarly", + "rshares": "1773021661" + }, + { + "voter": "yarly2", + "rshares": "267188192" + }, + { + "voter": "yarly3", + "rshares": "267587944" + }, + { + "voter": "yarly4", + "rshares": "154579129" + }, + { + "voter": "yarly5", + "rshares": "155451862" + }, + { + "voter": "yarly7", + "rshares": "88607961" + }, + { + "voter": "steemchain", + "rshares": "50626015" + }, + { + "voter": "whalepool", + "rshares": "50626015" + }, + { + "voter": "summonerrk", + "rshares": "6114654934" + }, + { + "voter": "webdeals", + "rshares": "12098269394" + }, + { + "voter": "alexbezimeni", + "rshares": "231254136" + }, + { + "voter": "proto", + "rshares": "17267307497" + }, + { + "voter": "sisterholics", + "rshares": "7222569746" + }, + { + "voter": "yarly10", + "rshares": "428868451" + }, + { + "voter": "yarly11", + "rshares": "229507420" + }, + { + "voter": "yarly12", + "rshares": "80241480" + }, + { + "voter": "fnait", + "rshares": "412825844" + }, + { + "voter": "keepcalmand", + "rshares": "366755128" + }, + { + "voter": "kibela", + "rshares": "180668119" + }, + { + "voter": "dmilash", + "rshares": "3084130055" + }, + { + "voter": "mahekg", + "rshares": "13626326152" + }, + { + "voter": "gomeravibz", + "rshares": "50578642550" + }, + { + "voter": "taker", + "rshares": "8734139434" + }, + { + "voter": "nekromarinist", + "rshares": "6521104126" + }, + { + "voter": "theprophet", + "rshares": "6895440187" + }, + { + "voter": "laonie", + "rshares": "255409573883" + }, + { + "voter": "laoyao", + "rshares": "24562026280" + }, + { + "voter": "myfirst", + "rshares": "7994566199" + }, + { + "voter": "somebody", + "rshares": "51844874813" + }, + { + "voter": "flysaga", + "rshares": "1938440237" + }, + { + "voter": "gmurph", + "rshares": "2084695835" + }, + { + "voter": "missmishel623", + "rshares": "68250832" + }, + { + "voter": "midnightoil", + "rshares": "11452948850" + }, + { + "voter": "kalimor", + "rshares": "2280336943" + }, + { + "voter": "ullikume", + "rshares": "4190335896" + }, + { + "voter": "xiaohui", + "rshares": "28645142464" + }, + { + "voter": "elfkitchen", + "rshares": "1293627572" + }, + { + "voter": "joele", + "rshares": "102434307703" + }, + { + "voter": "oflyhigh", + "rshares": "5855564372" + }, + { + "voter": "xiaokongcom", + "rshares": "895565145" + }, + { + "voter": "gargon", + "rshares": "12687522802" + }, + { + "voter": "natalymaty", + "rshares": "2076619689" + }, + { + "voter": "numberone", + "rshares": "84763896" + }, + { + "voter": "diamonds", + "rshares": "62760150" + }, + { + "voter": "xianjun", + "rshares": "1805296575" + }, + { + "voter": "unrealisback", + "rshares": "3251259359" + }, + { + "voter": "borran", + "rshares": "11292536945" + }, + { + "voter": "miacats", + "rshares": "93805187965" + }, + { + "voter": "microluck", + "rshares": "118219525" + }, + { + "voter": "razberrijam", + "rshares": "75676352" + }, + { + "voter": "chinadaily", + "rshares": "2022625104" + }, + { + "voter": "serejandmyself", + "rshares": "84708065280" + }, + { + "voter": "pollina", + "rshares": "106144628" + }, + { + "voter": "macartem", + "rshares": "2958177650" + }, + { + "voter": "gvargas123", + "rshares": "10344891579" + }, + { + "voter": "jaredcwillis", + "rshares": "10691300360" + }, + { + "voter": "netaterra", + "rshares": "2982676167" + }, + { + "voter": "piezolit", + "rshares": "59171026" + }, + { + "voter": "trev", + "rshares": "6069996297" + }, + { + "voter": "leno4ek", + "rshares": "1152952998" + }, + { + "voter": "daut44", + "rshares": "33111928321" + }, + { + "voter": "contentjunkie", + "rshares": "5475437205" + }, + { + "voter": "einsteinpotsdam", + "rshares": "7779288318" + }, + { + "voter": "richardcrill", + "rshares": "5053600817" + }, + { + "voter": "jeremyfromwi", + "rshares": "2205784762" + }, + { + "voter": "eight-rad", + "rshares": "2056057288" + }, + { + "voter": "nadin3", + "rshares": "5012661990" + }, + { + "voter": "xanoxt", + "rshares": "3411072843" + }, + { + "voter": "davidjkelley", + "rshares": "1661520978" + }, + { + "voter": "sponge-bob", + "rshares": "27677639861" + }, + { + "voter": "digital-wisdom", + "rshares": "15570931627" + }, + { + "voter": "ethical-ai", + "rshares": "3710931796" + }, + { + "voter": "jwaser", + "rshares": "6831306526" + }, + { + "voter": "tatianka", + "rshares": "1086106040" + }, + { + "voter": "apparat", + "rshares": "55281264" + }, + { + "voter": "cryptobiker", + "rshares": "14097243573" + }, + { + "voter": "analyzethis", + "rshares": "54182817" + }, + { + "voter": "bwaser", + "rshares": "2675492964" + }, + { + "voter": "doggnostic", + "rshares": "54949117" + }, + { + "voter": "jenny-talls", + "rshares": "54665234" + }, + { + "voter": "brains", + "rshares": "27671309914" + }, + { + "voter": "waldemar-kuhn", + "rshares": "53671263" + }, + { + "voter": "steemafon", + "rshares": "1359518638" + }, + { + "voter": "chick1", + "rshares": "5753400992" + }, + { + "voter": "aoki", + "rshares": "50584036" + }, + { + "voter": "typingagent", + "rshares": "51568971" + }, + { + "voter": "cwb", + "rshares": "50528809" + }, + { + "voter": "anomaly", + "rshares": "339287005" + }, + { + "voter": "ellepdub", + "rshares": "2401284424" + }, + { + "voter": "herpetologyguy", + "rshares": "12115548081" + }, + { + "voter": "morgan.waser", + "rshares": "4816962742" + }, + { + "voter": "dragonice", + "rshares": "51232949" + }, + { + "voter": "steemq", + "rshares": "51230296" + }, + { + "voter": "weare", + "rshares": "51218466" + }, + { + "voter": "anns", + "rshares": "1258359388" + }, + { + "voter": "cyan", + "rshares": "50875769" + }, + { + "voter": "motion", + "rshares": "50871059" + }, + { + "voter": "synereo", + "rshares": "50791473" + }, + { + "voter": "unilever", + "rshares": "50572441" + }, + { + "voter": "bapparabi", + "rshares": "1871969417" + }, + { + "voter": "friends", + "rshares": "50532230" + }, + { + "voter": "strong-ai", + "rshares": "3689824509" + }, + { + "voter": "ivanakamoto", + "rshares": "53738244" + }, + { + "voter": "grisha-danunaher", + "rshares": "516546553" + }, + { + "voter": "sjamayee", + "rshares": "213848535" + }, + { + "voter": "htyfn", + "rshares": "2974116451" + }, + { + "voter": "allianz", + "rshares": "162904624" + }, + { + "voter": "rusteemitblog", + "rshares": "1630350803" + }, + { + "voter": "ranger", + "rshares": "161815656" + }, + { + "voter": "witchcraftblog", + "rshares": "444435987" + }, + { + "voter": "shadowproject", + "rshares": "161693690" + }, + { + "voter": "acute", + "rshares": "161205518" + }, + { + "voter": "bethesda", + "rshares": "161179339" + }, + { + "voter": "panic", + "rshares": "159352476" + }, + { + "voter": "stimmt", + "rshares": "159318360" + }, + { + "voter": "rule", + "rshares": "159062820" + }, + { + "voter": "steemthis", + "rshares": "158560941" + }, + { + "voter": "zendesk", + "rshares": "158486055" + }, + { + "voter": "storage", + "rshares": "68013381" + }, + { + "voter": "cbd", + "rshares": "157667385" + }, + { + "voter": "junk", + "rshares": "157667385" + }, + { + "voter": "hug", + "rshares": "157682838" + }, + { + "voter": "bearcub", + "rshares": "157682838" + }, + { + "voter": "cyberpunk", + "rshares": "157682809" + }, + { + "voter": "keisha", + "rshares": "156919204" + }, + { + "voter": "blackmarket", + "rshares": "58460105" + }, + { + "voter": "gifts", + "rshares": "61530871" + }, + { + "voter": "int", + "rshares": "156919175" + }, + { + "voter": "steemlift", + "rshares": "1593664040" + } + ], + "author_reputation": 66.84, + "stats": { + "hide": false, + "gray": false, + "total_votes": 229, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/story/@serejandmyself/captured-by-time-an-original-novel-chapter-1", + "blacklists": [] + }, + { + "post_id": 960238, + "author": "ozchartart", + "permlink": "usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", + "category": "steem", + "title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle’s left empty\" Sept 15, 2016", + "body": "Hello Steemers!\n\nhttps://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png\n\n*POLONIEX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png\n*4 hour Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciwF/1b96b56dcc.png\n*4 hour Poloniex chart - Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png\n*1 day Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciC9/edf3dcb758.png\n*1 day Poloniex chart - Sept 15, 2016*\nThe Poloniex price went down to the all time low, breaking it and making a slightly lower all time low, but still not giving any confirm of a bottom or bounce.\nVolume about 20% higher then yesterday.\n\n*BITTREX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png\n*4 hour Bittrex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciod/ce32f1a029.png\n*4 hour Bittrex chart - Sept 15, 2016*\nThe Bittrex price broke the local low made just a slightly lower one, same as Poloniex with he all time low, looking like its heading towards the next support level (~0.0007, blue dashed).\nVolume on Bittrex was about 25% lower then yesterday (~5BTC's).\n\n\n*VOLUME COMPARISON*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png\n*STEEM/BTC volume Bittrex Sept 14, 2016*\n\nhttp://puu.sh/rcifG/0c61511ea3.png\n*STEEM/BTC volume Bittrex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png\n*STEEM/BTC volume Poloniex Sept 14, 2016*\n\nhttp://puu.sh/rcicN/b2384086a4.png\n*STEEM/BTC volume Poloniex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png\n*STEEM indexed global volume Sept 14, 2016*\n\nhttp://puu.sh/rcibB/7b2700dd82.png\n*STEEM indexed global volume Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmof/8ca7889618.png\n*Coinmarketcap top volume cryptos Sept 14, 2016*\n\nhttp://puu.sh/rci8K/d68b7eb122.png\n*Coinmarketcap top volume cryptos Sept 15, 2016*\nOverall volume about 12% higher then yesterday, with Bittrex volume taking a dive and Poloniex gaining some.\n$STEEM again under top 30 in volume rankings.\n\n*COMMENT*\nOnce again, I will post the comment by commenting as it involves my personal opinion!\nThank you for understanding!\n\nIf anyone has any questions or need's help fell free to ask, I will try to explain as fast and as best as I can.\nCritics, comments, reply's, counters, advice's, etc. are always welcome!\nHave my charts helped you in any way?Let me know with a comment below :)\nAre there more people who are doing TA?\nPlease post the links to your TA's posts into the comments as well!\n\n*DISCLAIMER*\nI am showing multiple scenarios on the price movement, in the post itself I do not take any stance, either bullish or bearish. I am not responsible for neither you’re winning nor you're losses upon trading! the \"comment\" section is my personal opinion and does not mean I have to or do hold any positions in the given market.\nEveryone who uses TA develops his own unique charting style, please keep that in mind.\n\nhttps://www.youtube.com/watch?v=i3bS5nRZOvU\n\nKind regards, OZ :)", + "json_metadata": { + "tags": [ + "steem", + "poloniex", + "bittrex", + "technical-analysis", + "trading" + ], + "image": [ + "https://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png", + "http://puu.sh/rciwF/1b96b56dcc.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png", + "http://puu.sh/rciC9/edf3dcb758.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png", + "http://puu.sh/rciod/ce32f1a029.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png", + "http://puu.sh/rcifG/0c61511ea3.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png", + "http://puu.sh/rcicN/b2384086a4.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png", + "http://puu.sh/rcibB/7b2700dd82.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png", + "http://puu.sh/rci8K/d68b7eb122.png", + "https://img.youtube.com/vi/i3bS5nRZOvU/0.jpg" + ], + "links": [ + "https://www.youtube.com/watch?v=i3bS5nRZOvU" + ] + }, + "created": "2016-09-15T18:18:00", + "updated": "2016-09-15T18:18:00", + "depth": 0, + "children": 5, + "net_rshares": 30268799563538, + "is_paidout": false, + "payout_at": "2016-09-16T18:35:24", + "payout": 57.124, + "pending_payout_value": "57.124 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "books", + "rshares": "1861031398822" + }, + { + "voter": "riverhead", + "rshares": "4287714457313" + }, + { + "voter": "badassmother", + "rshares": "1855967006728" + }, + { + "voter": "hr1", + "rshares": "2053236030423" + }, + { + "voter": "kushed", + "rshares": "5519371190400" + }, + { + "voter": "rossco99", + "rshares": "1271804694676" + }, + { + "voter": "jaewoocho", + "rshares": "22391622942" + }, + { + "voter": "ozmaster", + "rshares": "161758715658" + }, + { + "voter": "joseph", + "rshares": "1534643949678" + }, + { + "voter": "aizensou", + "rshares": "100723108736" + }, + { + "voter": "recursive2", + "rshares": "466132509421" + }, + { + "voter": "masteryoda", + "rshares": "636519834128" + }, + { + "voter": "recursive", + "rshares": "3120576239931" + }, + { + "voter": "idol", + "rshares": "8927291120" + }, + { + "voter": "steemrollin", + "rshares": "800066797130" + }, + { + "voter": "sakr", + "rshares": "4941942978" + }, + { + "voter": "chitty", + "rshares": "284401462010" + }, + { + "voter": "jocelyn", + "rshares": "1536592488" + }, + { + "voter": "gregory-f", + "rshares": "14818263059" + }, + { + "voter": "edgeland", + "rshares": "154334962550" + }, + { + "voter": "craig-grant", + "rshares": "374436234637" + }, + { + "voter": "gregory60", + "rshares": "9028550345" + }, + { + "voter": "eeks", + "rshares": "89897944197" + }, + { + "voter": "fkn", + "rshares": "11591323519" + }, + { + "voter": "paco-steem", + "rshares": "468281676" + }, + { + "voter": "spaninv", + "rshares": "5641697991" + }, + { + "voter": "elishagh1", + "rshares": "15236070794" + }, + { + "voter": "richman", + "rshares": "7802860274" + }, + { + "voter": "nanzo-scoop", + "rshares": "584279800798" + }, + { + "voter": "kefkius", + "rshares": "10059005246" + }, + { + "voter": "mummyimperfect", + "rshares": "177417522325" + }, + { + "voter": "coar", + "rshares": "313697862" + }, + { + "voter": "asch", + "rshares": "106635074770" + }, + { + "voter": "murh", + "rshares": "1061264730" + }, + { + "voter": "cryptofunk", + "rshares": "6230798580" + }, + { + "voter": "error", + "rshares": "2003359924" + }, + { + "voter": "andu", + "rshares": "11848125383" + }, + { + "voter": "cyber", + "rshares": "970586830705" + }, + { + "voter": "theshell", + "rshares": "59952188311" + }, + { + "voter": "ak2020", + "rshares": "49580154489" + }, + { + "voter": "applecrisp", + "rshares": "402139444" + }, + { + "voter": "stiletto", + "rshares": "365370465" + }, + { + "voter": "trogdor", + "rshares": "280737930617" + }, + { + "voter": "mark-waser", + "rshares": "5950623572" + }, + { + "voter": "geoffrey", + "rshares": "118356217412" + }, + { + "voter": "kimziv", + "rshares": "101509283748" + }, + { + "voter": "emily-cook", + "rshares": "75333038089" + }, + { + "voter": "superfreek", + "rshares": "2251949197" + }, + { + "voter": "ladyclair", + "rshares": "275327756" + }, + { + "voter": "orly", + "rshares": "3283410959" + }, + { + "voter": "riscadox", + "rshares": "5271030976" + }, + { + "voter": "tcfxyz", + "rshares": "25057521880" + }, + { + "voter": "futurefood", + "rshares": "6939954009" + }, + { + "voter": "furion", + "rshares": "56586842629" + }, + { + "voter": "busser", + "rshares": "754655775" + }, + { + "voter": "cdubendo", + "rshares": "103793678934" + }, + { + "voter": "barbara2", + "rshares": "271487757" + }, + { + "voter": "ch0c0latechip", + "rshares": "301755142" + }, + { + "voter": "doge4lyf", + "rshares": "279277284" + }, + { + "voter": "steem1653", + "rshares": "2733708608" + }, + { + "voter": "cynetyc", + "rshares": "124961861" + }, + { + "voter": "thegoodguy", + "rshares": "5357326058" + }, + { + "voter": "aaseb", + "rshares": "14168005907" + }, + { + "voter": "karen13", + "rshares": "4209533734" + }, + { + "voter": "nabilov", + "rshares": "251367062418" + }, + { + "voter": "noodhoog", + "rshares": "8576081337" + }, + { + "voter": "milestone", + "rshares": "46859060143" + }, + { + "voter": "artific", + "rshares": "21565632626" + }, + { + "voter": "btcbtcbtc20155", + "rshares": "5840939270" + }, + { + "voter": "nippel66", + "rshares": "14455781997" + }, + { + "voter": "blueorgy", + "rshares": "163325492855" + }, + { + "voter": "benjiberigan", + "rshares": "13111647625" + }, + { + "voter": "poseidon", + "rshares": "2214250194" + }, + { + "voter": "calaber24p", + "rshares": "355265286967" + }, + { + "voter": "simon.braki.love", + "rshares": "3295677164" + }, + { + "voter": "bola", + "rshares": "121062267" + }, + { + "voter": "deanliu", + "rshares": "32544157928" + }, + { + "voter": "hagie", + "rshares": "14007767075" + }, + { + "voter": "jl777", + "rshares": "204618396015" + }, + { + "voter": "aleco", + "rshares": "1371622220" + }, + { + "voter": "positive", + "rshares": "9400257217" + }, + { + "voter": "yarly", + "rshares": "1773021661" + }, + { + "voter": "yarly2", + "rshares": "267188192" + }, + { + "voter": "yarly3", + "rshares": "267587944" + }, + { + "voter": "yarly4", + "rshares": "154579129" + }, + { + "voter": "yarly5", + "rshares": "155451862" + }, + { + "voter": "yarly7", + "rshares": "88607961" + }, + { + "voter": "sergey44", + "rshares": "257573964" + }, + { + "voter": "proto", + "rshares": "17267341753" + }, + { + "voter": "sisterholics", + "rshares": "16251777176" + }, + { + "voter": "yarly10", + "rshares": "428868451" + }, + { + "voter": "yarly11", + "rshares": "229507420" + }, + { + "voter": "yarly12", + "rshares": "80241480" + }, + { + "voter": "fnait", + "rshares": "316499814" + }, + { + "voter": "keepcalmand", + "rshares": "281178931" + }, + { + "voter": "cwmyao1", + "rshares": "607346548" + }, + { + "voter": "jamesbrown", + "rshares": "16495975416" + }, + { + "voter": "glitterpig", + "rshares": "3353991305" + }, + { + "voter": "jed78", + "rshares": "7506600577" + }, + { + "voter": "taker", + "rshares": "8734185109" + }, + { + "voter": "coinbar", + "rshares": "1651596637" + }, + { + "voter": "laonie", + "rshares": "574717917578" + }, + { + "voter": "ozchartart", + "rshares": "254341994815" + }, + { + "voter": "croatia", + "rshares": "5104045578" + }, + { + "voter": "myfirst", + "rshares": "19987344033" + }, + { + "voter": "somebody", + "rshares": "116658367770" + }, + { + "voter": "flysaga", + "rshares": "4604075327" + }, + { + "voter": "gmurph", + "rshares": "2501638608" + }, + { + "voter": "midnightoil", + "rshares": "25770687280" + }, + { + "voter": "ullikume", + "rshares": "4190377366" + }, + { + "voter": "andrew0", + "rshares": "2325684243" + }, + { + "voter": "xiaohui", + "rshares": "64457942294" + }, + { + "voter": "elfkitchen", + "rshares": "3234267259" + }, + { + "voter": "joele", + "rshares": "99935909954" + }, + { + "voter": "oflyhigh", + "rshares": "5855738054" + }, + { + "voter": "xiaokongcom", + "rshares": "2127092828" + }, + { + "voter": "eneismijmich", + "rshares": "47556149905" + }, + { + "voter": "xianjun", + "rshares": "4287842001" + }, + { + "voter": "sijoittaja", + "rshares": "72192938" + }, + { + "voter": "borran", + "rshares": "11041591679" + }, + { + "voter": "miacats", + "rshares": "93807196108" + }, + { + "voter": "microluck", + "rshares": "280777082" + }, + { + "voter": "razberrijam", + "rshares": "74131936" + }, + { + "voter": "chinadaily", + "rshares": "2022702929" + }, + { + "voter": "pompe72", + "rshares": "86712034" + }, + { + "voter": "ignat", + "rshares": "1647538615" + }, + { + "voter": "anotherjoe", + "rshares": "20666130092" + }, + { + "voter": "gvargas123", + "rshares": "10344891579" + }, + { + "voter": "movievertigo", + "rshares": "3562389763" + }, + { + "voter": "andrewawerdna", + "rshares": "21980957828" + }, + { + "voter": "runridefly", + "rshares": "2109031152" + }, + { + "voter": "funkywanderer", + "rshares": "1783693666" + }, + { + "voter": "richardcrill", + "rshares": "4747321980" + }, + { + "voter": "jeremyfromwi", + "rshares": "2161669067" + }, + { + "voter": "davidjkelley", + "rshares": "1661534801" + }, + { + "voter": "greatness", + "rshares": "178419224" + }, + { + "voter": "sponge-bob", + "rshares": "27678962051" + }, + { + "voter": "digital-wisdom", + "rshares": "15571125147" + }, + { + "voter": "ethical-ai", + "rshares": "3710973264" + }, + { + "voter": "jwaser", + "rshares": "6831389463" + }, + { + "voter": "steemorama", + "rshares": "422625634" + }, + { + "voter": "nubchai", + "rshares": "4269189470" + }, + { + "voter": "analyzethis", + "rshares": "50931848" + }, + { + "voter": "bwaser", + "rshares": "2675506788" + }, + { + "voter": "dexter-k", + "rshares": "6064648982" + }, + { + "voter": "doggnostic", + "rshares": "54949117" + }, + { + "voter": "jenny-talls", + "rshares": "54665234" + }, + { + "voter": "brains", + "rshares": "27673000226" + }, + { + "voter": "steemafon", + "rshares": "1387263917" + }, + { + "voter": "chick1", + "rshares": "5753524189" + }, + { + "voter": "aoki", + "rshares": "50584036" + }, + { + "voter": "typingagent", + "rshares": "51568971" + }, + { + "voter": "cwb", + "rshares": "50528809" + }, + { + "voter": "freebornangel", + "rshares": "62515317" + }, + { + "voter": "anomaly", + "rshares": "339300528" + }, + { + "voter": "ellepdub", + "rshares": "2401297947" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "herpetologyguy", + "rshares": "12115690216" + }, + { + "voter": "morgan.waser", + "rshares": "4817018034" + }, + { + "voter": "dragonice", + "rshares": "50228382" + }, + { + "voter": "oxygen", + "rshares": "50907857" + }, + { + "voter": "palladium", + "rshares": "50873654" + }, + { + "voter": "sting", + "rshares": "50865840" + }, + { + "voter": "strong-ai", + "rshares": "3689865978" + }, + { + "voter": "ctu", + "rshares": "162917785" + }, + { + "voter": "ranger", + "rshares": "161815656" + }, + { + "voter": "shadowcash", + "rshares": "161700361" + }, + { + "voter": "sdc", + "rshares": "161218747" + }, + { + "voter": "bethesda", + "rshares": "158018960" + }, + { + "voter": "skrillex", + "rshares": "160835930" + }, + { + "voter": "cybergirls", + "rshares": "160319579" + }, + { + "voter": "fallout", + "rshares": "159175576" + }, + { + "voter": "steemwallet", + "rshares": "158732321" + }, + { + "voter": "icesteem", + "rshares": "158638676" + }, + { + "voter": "goldmatters", + "rshares": "31684221772" + }, + { + "voter": "dougkarr", + "rshares": "154247502" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 176, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/steem/@ozchartart/usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", + "blacklists": [] + }, + { + "post_id": 960293, + "author": "knozaki2015", + "permlink": "the-strangest-building-in-berlin", + "category": "contest", + "title": "SPOTTED #6 : The strangest Building in Berlin", + "body": "\n

\"SPOTTED\"

\n


\n

On my travel to Berlin, Germany I have SPOTTED this strange Building. 

\n

Can you guess the purpose of this strange corridor? 

\n


\n
\"2016-08-14
\nHere are some possible answers:

\n
    \n
  • This is a Passage where people used to smuggle food and cigarettes between West and East Berlin
  • \n
  • This is a Hospital and connecting two Wings
  • \n
  • This is a worm hole and connecting Berlin and Jupiter
  • \n
  • This is a Hostel and the toilets are in the other Wing
  • \n
  • ....
  • \n
\n


\n\"2016-08-14
\n
\n 

\n
To make it more fun a reward of 10 STEEM POWER will be given to the first correct answer of the purpose of this strange corridor.  
\n
And a Special Reward of 5 Steem Power goes to the strangest, funniest Answer!  
\n


\n

I will release the answer after a couple of hours so hurry and pick your answer. (2 answers per person only!!!)

\n

If you like my Post, please follow me! 

\n

I am blogging about the following topics :

\n
    \n
  • I travel the world (Travel and Restaurant Blog)
  • \n
  • Exposed (Uncovering Stories you need to know)
  • \n
  • Lifehacks (How to save money,etc) 
  • \n
  • SPOTTED (Limited Edition Food ,Drinks, Gadgets)
  • \n
  • Steemperlen (German Version)
  • \n
  • SQUEEZE (Interview Series) 
  • \n
  • COOKED (10 Episodes Cooking Series)
  • \n
\n", + "json_metadata": { + "tags": [ + "contest", + "travel", + "minnowsunite", + "steemsquad", + "berlin" + ], + "image": [ + "https://s14.postimg.org/i75tlx3s1/SPOTTED.jpg", + "https://s22.postimg.org/s90fnlg7l/2016_08_14_17_21_48.jpg", + "https://s22.postimg.org/q5q0fxgep/2016_08_14_17_22_34.jpg" + ], + "links": [ + "https://postimg.org/image/ciziv0zfh/", + "https://steemit.com/@knozaki2015", + "https://steemit.com/food/@knozaki2015/i-travel-the-world-part-25-cafe-viena-feat-the-worlds-best-sandwich-ny-times", + "https://steemit.com/deutsch/@knozaki2015/steemperlen-1", + "https://steemit.com/food/@knozaki2015/fantastic-seafood-paella-cooked-2-with-the-master-of-paella-gargon" + ] + }, + "created": "2016-09-15T18:23:30", + "updated": "2016-09-15T19:04:48", + "depth": 0, + "children": 28, + "net_rshares": 26540390904529, + "is_paidout": false, + "payout_at": "2016-09-16T18:49:34", + "payout": 44.638, + "pending_payout_value": "44.638 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "riverhead", + "rshares": "4134581798123" + }, + { + "voter": "pharesim", + "rshares": "3313249953310" + }, + { + "voter": "hr1", + "rshares": "2053236030423" + }, + { + "voter": "rossco99", + "rshares": "1271804694676" + }, + { + "voter": "jaewoocho", + "rshares": "22391622942" + }, + { + "voter": "joseph", + "rshares": "1534717563460" + }, + { + "voter": "aizensou", + "rshares": "98682259833" + }, + { + "voter": "recursive3", + "rshares": "452874558937" + }, + { + "voter": "masteryoda", + "rshares": "620996029765" + }, + { + "voter": "recursive", + "rshares": "3120582597678" + }, + { + "voter": "idol", + "rshares": "8927291120" + }, + { + "voter": "sakr", + "rshares": "4941942978" + }, + { + "voter": "chitty", + "rshares": "284401462010" + }, + { + "voter": "jocelyn", + "rshares": "1536592488" + }, + { + "voter": "edgeland", + "rshares": "154334962550" + }, + { + "voter": "eeks", + "rshares": "89897956816" + }, + { + "voter": "fkn", + "rshares": "1511911763" + }, + { + "voter": "paco-steem", + "rshares": "468281676" + }, + { + "voter": "spaninv", + "rshares": "5641697991" + }, + { + "voter": "elishagh1", + "rshares": "1987313581" + }, + { + "voter": "richman", + "rshares": "7803257741" + }, + { + "voter": "nanzo-scoop", + "rshares": "584291107228" + }, + { + "voter": "kefkius", + "rshares": "9857825141" + }, + { + "voter": "mummyimperfect", + "rshares": "172751875332" + }, + { + "voter": "coar", + "rshares": "313697862" + }, + { + "voter": "kevinwong", + "rshares": "603741881611" + }, + { + "voter": "murh", + "rshares": "1061266533" + }, + { + "voter": "cryptofunk", + "rshares": "6230798580" + }, + { + "voter": "error", + "rshares": "2003359924" + }, + { + "voter": "andu", + "rshares": "11584833708" + }, + { + "voter": "theshell", + "rshares": "58189176188" + }, + { + "voter": "ak2020", + "rshares": "49581045086" + }, + { + "voter": "satoshifund", + "rshares": "3925670964026" + }, + { + "voter": "applecrisp", + "rshares": "402139444" + }, + { + "voter": "stiletto", + "rshares": "365370465" + }, + { + "voter": "will-zewe", + "rshares": "219283354085" + }, + { + "voter": "herzmeister", + "rshares": "85402720456" + }, + { + "voter": "trogdor", + "rshares": "275016906945" + }, + { + "voter": "mark-waser", + "rshares": "5821262190" + }, + { + "voter": "geoffrey", + "rshares": "118356217412" + }, + { + "voter": "kimziv", + "rshares": "42740945757" + }, + { + "voter": "honeythief", + "rshares": "45359587433" + }, + { + "voter": "emily-cook", + "rshares": "75334808165" + }, + { + "voter": "superfreek", + "rshares": "2187607792" + }, + { + "voter": "thebatchman", + "rshares": "19975706505" + }, + { + "voter": "lehard", + "rshares": "59061289095" + }, + { + "voter": "orly", + "rshares": "3417427733" + }, + { + "voter": "riscadox", + "rshares": "5165610356" + }, + { + "voter": "cmtzco", + "rshares": "8950458328" + }, + { + "voter": "fabio", + "rshares": "198384500562" + }, + { + "voter": "tcfxyz", + "rshares": "25057642057" + }, + { + "voter": "futurefood", + "rshares": "6939984054" + }, + { + "voter": "endgame", + "rshares": "794749227" + }, + { + "voter": "furion", + "rshares": "7380892516" + }, + { + "voter": "sigmajin", + "rshares": "111055672943" + }, + { + "voter": "steem1653", + "rshares": "2632460141" + }, + { + "voter": "sveokla", + "rshares": "2860912097" + }, + { + "voter": "cynetyc", + "rshares": "124961861" + }, + { + "voter": "thegoodguy", + "rshares": "5250179537" + }, + { + "voter": "aaseb", + "rshares": "13846328779" + }, + { + "voter": "incomemonthly", + "rshares": "3857388226" + }, + { + "voter": "karen13", + "rshares": "4209533734" + }, + { + "voter": "deviedev", + "rshares": "10646469982" + }, + { + "voter": "nabilov", + "rshares": "243749878708" + }, + { + "voter": "noodhoog", + "rshares": "8751103405" + }, + { + "voter": "knozaki2015", + "rshares": "464730588449" + }, + { + "voter": "inertia", + "rshares": "93792164062" + }, + { + "voter": "creemej", + "rshares": "33739199475" + }, + { + "voter": "the-future", + "rshares": "2654553033" + }, + { + "voter": "nippel66", + "rshares": "14763294144" + }, + { + "voter": "blueorgy", + "rshares": "159342196635" + }, + { + "voter": "opheliafu", + "rshares": "167934545479" + }, + { + "voter": "poseidon", + "rshares": "932318275" + }, + { + "voter": "simon.braki.love", + "rshares": "3365797955" + }, + { + "voter": "deanliu", + "rshares": "31459352664" + }, + { + "voter": "sharker", + "rshares": "5497387091" + }, + { + "voter": "tokyodude", + "rshares": "1659490970" + }, + { + "voter": "jl777", + "rshares": "204618396015" + }, + { + "voter": "positive", + "rshares": "1226120506" + }, + { + "voter": "yarly", + "rshares": "1845389893" + }, + { + "voter": "yarly2", + "rshares": "278093833" + }, + { + "voter": "yarly3", + "rshares": "278509900" + }, + { + "voter": "yarly4", + "rshares": "160888481" + }, + { + "voter": "yarly5", + "rshares": "161796836" + }, + { + "voter": "yarly7", + "rshares": "92224612" + }, + { + "voter": "proto", + "rshares": "17267341753" + }, + { + "voter": "jasen.g1311", + "rshares": "230455938" + }, + { + "voter": "sisterholics", + "rshares": "7223043327" + }, + { + "voter": "yarly10", + "rshares": "446373286" + }, + { + "voter": "yarly11", + "rshares": "238875070" + }, + { + "voter": "royalmacro", + "rshares": "8781903824" + }, + { + "voter": "yarly12", + "rshares": "83516643" + }, + { + "voter": "sulev", + "rshares": "3448954519" + }, + { + "voter": "reported", + "rshares": "54477247" + }, + { + "voter": "uwe69", + "rshares": "6869641155" + }, + { + "voter": "jed78", + "rshares": "7506600577" + }, + { + "voter": "taker", + "rshares": "8734185109" + }, + { + "voter": "felixxx", + "rshares": "14430038673" + }, + { + "voter": "krushing", + "rshares": "51206711" + }, + { + "voter": "laonie", + "rshares": "255431411513" + }, + { + "voter": "twinner", + "rshares": "157521707420" + }, + { + "voter": "thebluepanda", + "rshares": "12593318020" + }, + { + "voter": "laoyao", + "rshares": "23916491019" + }, + { + "voter": "myfirst", + "rshares": "7994964655" + }, + { + "voter": "somebody", + "rshares": "51848391811" + }, + { + "voter": "flysaga", + "rshares": "1938565243" + }, + { + "voter": "gmurph", + "rshares": "2501638608" + }, + { + "voter": "chris.roy", + "rshares": "7842831090" + }, + { + "voter": "denn", + "rshares": "5558177167" + }, + { + "voter": "minnowsunited", + "rshares": "475501347" + }, + { + "voter": "midnightoil", + "rshares": "11453689270" + }, + { + "voter": "whatyouganjado", + "rshares": "51383056" + }, + { + "voter": "andrew0", + "rshares": "2275125890" + }, + { + "voter": "xiaohui", + "rshares": "28648120983" + }, + { + "voter": "elfkitchen", + "rshares": "1293711711" + }, + { + "voter": "joele", + "rshares": "99935909954" + }, + { + "voter": "oflyhigh", + "rshares": "5683510464" + }, + { + "voter": "makaveli", + "rshares": "56817337" + }, + { + "voter": "xiaokongcom", + "rshares": "895620436" + }, + { + "voter": "gargon", + "rshares": "12687522802" + }, + { + "voter": "future24", + "rshares": "1446509276" + }, + { + "voter": "xianjun", + "rshares": "1805414369" + }, + { + "voter": "alexbones", + "rshares": "50010551" + }, + { + "voter": "microluck", + "rshares": "118221929" + }, + { + "voter": "chinadaily", + "rshares": "2022702929" + }, + { + "voter": "pjheinz", + "rshares": "10261652613" + }, + { + "voter": "pompe72", + "rshares": "88481667" + }, + { + "voter": "serejandmyself", + "rshares": "83628622374" + }, + { + "voter": "pollina", + "rshares": "108403024" + }, + { + "voter": "mindfreak", + "rshares": "4931895395" + }, + { + "voter": "nastik", + "rshares": "14804566536" + }, + { + "voter": "onetree", + "rshares": "8856106682" + }, + { + "voter": "ozertayiz", + "rshares": "67782873" + }, + { + "voter": "steemitpatina", + "rshares": "4633082667" + }, + { + "voter": "dajohns1420", + "rshares": "1009554365" + }, + { + "voter": "salebored", + "rshares": "50215700" + }, + { + "voter": "nulliusinverba", + "rshares": "5401518277" + }, + { + "voter": "newandold", + "rshares": "3838533556" + }, + { + "voter": "pollux.one", + "rshares": "1576511020" + }, + { + "voter": "einsteinpotsdam", + "rshares": "7779349622" + }, + { + "voter": "richardcrill", + "rshares": "4900461398" + }, + { + "voter": "nadin3", + "rshares": "4662965424" + }, + { + "voter": "davidjkelley", + "rshares": "1625414479" + }, + { + "voter": "bitdrone", + "rshares": "50326099" + }, + { + "voter": "sleepcult", + "rshares": "50317967" + }, + { + "voter": "greatness", + "rshares": "174778016" + }, + { + "voter": "sponge-bob", + "rshares": "26571803569" + }, + { + "voter": "digital-wisdom", + "rshares": "15232622426" + }, + { + "voter": "ethical-ai", + "rshares": "3630299933" + }, + { + "voter": "zahnspange", + "rshares": "45843089173" + }, + { + "voter": "jwaser", + "rshares": "6682880996" + }, + { + "voter": "jaredandanissa", + "rshares": "217064607" + }, + { + "voter": "steemorama", + "rshares": "414338857" + }, + { + "voter": "smisi", + "rshares": "1655277599" + }, + { + "voter": "bwaser", + "rshares": "2617343597" + }, + { + "voter": "panther", + "rshares": "330365849" + }, + { + "voter": "brains", + "rshares": "27673000226" + }, + { + "voter": "funnyman", + "rshares": "4235195851" + }, + { + "voter": "anomaly", + "rshares": "271440423" + }, + { + "voter": "ellepdub", + "rshares": "2401297947" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "herpetologyguy", + "rshares": "11833929978" + }, + { + "voter": "morgan.waser", + "rshares": "4712300251" + }, + { + "voter": "anns", + "rshares": "1233685675" + }, + { + "voter": "strong-ai", + "rshares": "3609651500" + }, + { + "voter": "grisha-danunaher", + "rshares": "516546553" + }, + { + "voter": "michaelstobiersk", + "rshares": "1326703271" + }, + { + "voter": "dresden", + "rshares": "7187212765" + }, + { + "voter": "goldmatters", + "rshares": "30995623639" + }, + { + "voter": "bleujay", + "rshares": "117881389" + }, + { + "voter": "risabold", + "rshares": "304359441" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 171, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/contest/@knozaki2015/the-strangest-building-in-berlin", + "blacklists": [] + }, + { + "post_id": 960036, + "author": "groovedigital", + "permlink": "when-your-dad-works-in-hollywood", + "category": "life", + "title": "When Your Dad Works In Hollywood", + "body": "\n

https://www.youtube.com/watch?v=iJCi8yLN8_M

\n", + "json_metadata": { + "tags": [ + "life", + "comedy", + "film", + "art", + "funny" + ], + "image": [ + "https://img.youtube.com/vi/iJCi8yLN8_M/0.jpg" + ], + "links": [ + "https://www.youtube.com/watch?v=iJCi8yLN8_M" + ] + }, + "created": "2016-09-15T17:50:12", + "updated": "2016-09-15T17:50:12", + "depth": 0, + "children": 0, + "net_rshares": 40637225037243, + "is_paidout": false, + "payout_at": "2016-09-16T18:28:20", + "payout": 99.895, + "pending_payout_value": "99.895 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231809639013" + }, + { + "voter": "blocktrades", + "rshares": "40041987828800" + }, + { + "voter": "kenmonkey", + "rshares": "3500585753" + }, + { + "voter": "altoz", + "rshares": "34979300821" + }, + { + "voter": "alexft", + "rshares": "4698559215" + }, + { + "voter": "steem1653", + "rshares": "2733708608" + }, + { + "voter": "cynetyc", + "rshares": "124961861" + }, + { + "voter": "nabilov", + "rshares": "251367062418" + }, + { + "voter": "noodhoog", + "rshares": "8401059269" + }, + { + "voter": "rossenpavlov", + "rshares": "3291087867" + }, + { + "voter": "mandibil", + "rshares": "51505575275" + }, + { + "voter": "anomaly", + "rshares": "271440423" + }, + { + "voter": "andrewrait", + "rshares": "213847216" + }, + { + "voter": "bapparabi", + "rshares": "1871969417" + }, + { + "voter": "greencycles", + "rshares": "160935948" + }, + { + "voter": "dougkarr", + "rshares": "154247502" + }, + { + "voter": "goodbible", + "rshares": "153227837" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 17, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/life/@groovedigital/when-your-dad-works-in-hollywood", + "blacklists": [] + }, + { + "post_id": 959920, + "author": "mihaiart", + "permlink": "the-queen-of-amazon-drawing-a-visual-progression", + "category": "art", + "title": "The Queen of Amazon drawing: a visual progression.", + "body": "Another fun drawing! I did remind myself to photo from inception to final result so this post is not only fun but informative as well.\n\nThe amazonian queen starts off as a naked lady. This part is important because the way her muscles are shaped and how the flesh reacts to her position will influence how the clothes and weapons look. It's the most important step\n\n
https://www.steemimg.com/images/2016/09/15/14359031_1179410545449253_7138810569815121083_n9b234.jpg
\n
\n\nNow it is time to sketch the clothes, the accessories and the weapons. Notice how this si done OVER the original drawing so her leg is still flexed, inside the boot for example. That's how you get the natural look.\n\n
https://www.steemimg.com/images/2016/09/15/14330163_1179410578782583_6894606683148969420_nd50ca.jpg
\n
\n\nWith all this in place, it's easy but still very important part to add the finishing touches and bring her out of the page. Look alive and fierce!\n\n
https://www.steemimg.com/images/2016/09/15/14291733_1179410605449247_177194940755567235_n05e5d.jpg
\n\n#### And that how I draw an Amazonian Woman :) \n#### What do you think?", + "json_metadata": { + "tags": [ + "art", + "drawing", + "illustration", + "" + ], + "image": [ + "https://www.steemimg.com/images/2016/09/15/14359031_1179410545449253_7138810569815121083_n9b234.jpg", + "https://www.steemimg.com/images/2016/09/15/14330163_1179410578782583_6894606683148969420_nd50ca.jpg", + "https://www.steemimg.com/images/2016/09/15/14291733_1179410605449247_177194940755567235_n05e5d.jpg" + ] + }, + "created": "2016-09-15T17:37:24", + "updated": "2016-09-15T17:37:24", + "depth": 0, + "children": 2, + "net_rshares": 46651237670091, + "is_paidout": false, + "payout_at": "2016-09-16T18:37:02", + "payout": 130.13, + "pending_payout_value": "130.130 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231807201381" + }, + { + "voter": "blocktrades", + "rshares": "40042238111353" + }, + { + "voter": "badassmother", + "rshares": "1912120788268" + }, + { + "voter": "rossco99", + "rshares": "1271804694676" + }, + { + "voter": "wang", + "rshares": "2205816409649" + }, + { + "voter": "gregory60", + "rshares": "9028536224" + }, + { + "voter": "eeks", + "rshares": "14982984990" + }, + { + "voter": "fkn", + "rshares": "1007941175" + }, + { + "voter": "elishagh1", + "rshares": "1324875721" + }, + { + "voter": "coar", + "rshares": "313697862" + }, + { + "voter": "murh", + "rshares": "1061253912" + }, + { + "voter": "theshell", + "rshares": "59950860155" + }, + { + "voter": "kimziv", + "rshares": "10684554315" + }, + { + "voter": "razvanelulmarin", + "rshares": "88054033498" + }, + { + "voter": "skapaneas", + "rshares": "20605443611" + }, + { + "voter": "furion", + "rshares": "4920266872" + }, + { + "voter": "steem1653", + "rshares": "2834957075" + }, + { + "voter": "karen13", + "rshares": "4209522316" + }, + { + "voter": "deviedev", + "rshares": "10646469982" + }, + { + "voter": "nabilov", + "rshares": "251367062418" + }, + { + "voter": "luisucv34", + "rshares": "629471993" + }, + { + "voter": "lichtblick", + "rshares": "7017192292" + }, + { + "voter": "creemej", + "rshares": "33739070578" + }, + { + "voter": "the-future", + "rshares": "2726160685" + }, + { + "voter": "poseidon", + "rshares": "233065746" + }, + { + "voter": "mustafaomar", + "rshares": "20119987887" + }, + { + "voter": "jl777", + "rshares": "204617853645" + }, + { + "voter": "positive", + "rshares": "817413671" + }, + { + "voter": "anca3drandom", + "rshares": "35503255658" + }, + { + "voter": "proto", + "rshares": "17267307497" + }, + { + "voter": "sisterholics", + "rshares": "1805642436" + }, + { + "voter": "sulev", + "rshares": "3448353558" + }, + { + "voter": "andreynoch", + "rshares": "2002851358" + }, + { + "voter": "glitterpig", + "rshares": "3353931808" + }, + { + "voter": "taker", + "rshares": "8734139434" + }, + { + "voter": "laonie", + "rshares": "63852393470" + }, + { + "voter": "myfirst", + "rshares": "2664855399" + }, + { + "voter": "somebody", + "rshares": "12961218703" + }, + { + "voter": "flysaga", + "rshares": "484610059" + }, + { + "voter": "gmurph", + "rshares": "416939768" + }, + { + "voter": "midnightoil", + "rshares": "2863237212" + }, + { + "voter": "xiaohui", + "rshares": "7161285616" + }, + { + "voter": "elfkitchen", + "rshares": "323406893" + }, + { + "voter": "xiaokongcom", + "rshares": "223891286" + }, + { + "voter": "xianjun", + "rshares": "451324143" + }, + { + "voter": "borran", + "rshares": "11041591679" + }, + { + "voter": "macartem", + "rshares": "2958177650" + }, + { + "voter": "mihaiart", + "rshares": "24058315421" + }, + { + "voter": "gvargas123", + "rshares": "9827647000" + }, + { + "voter": "craigwilliamz", + "rshares": "8773942171" + }, + { + "voter": "jeff-kubitz", + "rshares": "52806920" + }, + { + "voter": "mikkolyytinen", + "rshares": "3091707749" + }, + { + "voter": "anomaly", + "rshares": "339288508" + }, + { + "voter": "michelle.gent", + "rshares": "4249431309" + }, + { + "voter": "orcish", + "rshares": "6368823978" + }, + { + "voter": "bapparabi", + "rshares": "1871969417" + }, + { + "voter": "wastedsoul", + "rshares": "164141037" + }, + { + "voter": "katharsisdrill", + "rshares": "87053502" + }, + { + "voter": "dougkarr", + "rshares": "154247502" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 59, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/art/@mihaiart/the-queen-of-amazon-drawing-a-visual-progression", + "blacklists": [] + }, + { + "post_id": 959892, + "author": "titusfrost", + "permlink": "new-mr-robot-episode-introduces-e-corp-s-new-ecoin", + "category": "mrrobot", + "title": "New Mr. Robot Episode Introduces E-Corp's New \"Ecoin\"", + "body": "# Is The Takeover of Crypto-Currencies About to Begin by the Central Banks?\n\nhttp://i.imgur.com/NxCYMpy.png\n([Image Source](http://www.e-corp-usa.com/ecoin/))\n\nThe show **Mr. Robot** has fictionalized the **\"Powers that Shouldn't Be\"** into a singular Corporation called **E Corp**. This E Corp is supposed to basically represent the powers behind the Global Central Bankers, the true World Rulers. The head of E Corp even states in a recent Episode \"Politicians are Puppets\", which reminds me of the quotation by Nathan Rothschild regarding the head on which the crown of England is placed. Clearly one could see that E Corp in the show is the fictionalization of the **\"Illuminati\"** if you will. The show is heavily laden with [esoteric symbolism](https://www.youtube.com/watch?v=l2lZn-ZcJMs) but to the public it comes across as \"counter-culture\" as the main character is the founding member of **\"F Society\"** a hacking group based directly on **\"Anonymous\"**. This hacking group causes a financial crash, which leads to E Corp releasing a new digital Currency called **\"ECoin\"**, the above image is from a promotional website for the TV show. \n\n## Is Mr. Robot demonizing Crypto-Currencies? \n\nhttp://i.imgur.com/f6gXhrn.jpg\n([Image Source](http://www.serialminds.com/2015/06/05/mr-robot-la-serie-che-sta-piacendo-tutti-forse-troppo/))\n\nNow the interesting part for those fans of crypto-currencies like everyone on **Steemit** and for everyone who uses **Bitcoin**. I think the reason for they added an \"Ecoin\" in this show is to demonize crypto-currencies. The powers that shouldn't be have no way to take over these crypto-currencies so they have decided to wage information war against them. With the countless videos warning about the rise of *\"digital only currency\"* being the *\"mark of the beast\"*, one could easily see lots of propaganda has already been employed. However this new form is quite intelligent, by associating \"ECoins\" with \"E Corp\" they make the average mind (who doesn't know what Bitcoin or Steemit really is), subconsciously associate all crypto-currencies with the Federal Reserve banskters, with \"E Corp\". This is classic subconscious guilt by association created entirely by fiction that is often employed in fictional movies. This is why I think the \"E Coin\" was added to the show, but I could be wrong, so why else might it be in this show? \n\n## Do the Elite Plan to Replace the Dollar with a Digital Only Currency? \nhttp://i.imgur.com/IJJxcBR.jpg\n([Image Source](https://www.cryptocoinsnews.com/why-bitcoin-value-doesnt-matter/))\n\nWe all know the financial system is basically teetering on the verge of collapse. It is the biggest ponzy scheme ever devised and like all ponzy schemes if the Federal Reserve doesn't increase demand for the use of it's currency the system will collapse. It was designed to collapse. I believe like many others for one reason, so they can start the whole process that made them so rich, all over again on a global scale. The new world order if you will, being run by financial despotism and technical autocracy. So, is their plan to create a financial collapse being shown in plain sight in this show? One idea I heard from my friend who maintains the [\"What is Real\" YouTube Channel](https://www.youtube.com/user/szymborski11) is they may \n>\"allow a false flag attack that they can blame on some shadowy hacking group, possibly even **Anonymous** itself as anyone can claim to be Anonymous\" \n\nPersonally I do not buy this theory as Anonymous is completely decentralized and would be almost impossible to blame for a false flag. However, to fully analyze a situation one must always look at every angle. \n\nSo if the system collapsed, especially overnight due to a hack, would they replace the Federal Reserve Notes with a new digital only \"E Coin\" backed by the IMF World Bank and their massive Gold Holdings, and Special Drawing Rights Holdings? The Group of Thirty, also known as the G30 reported in the [latest working papers on their website](http://group30.org/publications) that they want a return to a **GOLD Standard** just like how the Federal Reserve started out but in a new **Global Currency**. See my Documentary on the [\"Group of Thirty\"](https://www.youtube.com/watch?v=eOB9QfxsgdQ) for more on this group of 30 Central Bankers that meet in secret. So is it out of the realm of possibilities that the new Global Currency that the World Bank has planned for post the collapse of the Federal Reserve System is a new digital only currency based on Gold and SDR holdings? No this would make a lot of sense to me but what do you the readers think? \n\n## Decentralization the Key to Defeating Takeover of Crypto-Currencies by Central Banks\nhttp://i.imgur.com/KVNo7nE.jpg\n([Image Source](https://www.cryptocoinsnews.com/why-bitcoin-value-doesnt-matter/))\n\nThe decentralized concept at the basis of the crypto-currencies could be the key to their survival if the Central Banks decide to try and take over the market. Right now their is a few crypto-currencies that are from the perspective of a non trader even worth mentioning. **Bitcoin**, **Ethereum**, and **STEEM**, however if the Central Banks created a new \"ECoin\" it would easily make replace Bitcoin as the number 1 crypto-currency. However, there will always be a demand for crypto-currencies that are not \"Ecoins\", because thankfully we have a whole planet full of awesome people who will never conform to the system. The useless governments will always make things illegal that people want and can't buy with their new \"Ecoins\". So we will always have a demand for a currency like Bitcoin that is not a part of the centralized system, but is outside of that system's control. So try as they might, the powers that be can only wage information war against crypto-currencies because there will always be new entrepreneurs that create new currencies just like steemit, that are outside their systems of control. The harder the hidden hand squeezes the more of us will fall through their fingertips. \n\n#### Thanks for Reading! \nhttp://i.imgur.com/k10p6Pf.jpg\nIf you liked my article please join **steemit** and let me know by leaving a comment or upvoting! As always follow me on here [@TitusFrost](https://steemit.com/@titusfrost) for more hard hitting posts!", + "json_metadata": { + "tags": [ + "mrrobot", + "beyondbitcoin", + "steemit", + "bitcoin", + "ethereum" + ], + "image": [ + "http://i.imgur.com/NxCYMpy.png", + "http://i.imgur.com/f6gXhrn.jpg", + "http://i.imgur.com/IJJxcBR.jpg", + "http://i.imgur.com/KVNo7nE.jpg", + "http://i.imgur.com/k10p6Pf.jpg" + ], + "links": [ + "http://www.e-corp-usa.com/ecoin/", + "https://www.youtube.com/watch?v=l2lZn-ZcJMs", + "http://www.serialminds.com/2015/06/05/mr-robot-la-serie-che-sta-piacendo-tutti-forse-troppo/", + "https://www.cryptocoinsnews.com/why-bitcoin-value-doesnt-matter/", + "https://www.youtube.com/user/szymborski11", + "http://group30.org/publications", + "https://www.youtube.com/watch?v=eOB9QfxsgdQ", + "https://steemit.com/@titusfrost" + ] + }, + "created": "2016-09-15T17:34:42", + "updated": "2016-09-15T17:34:42", + "depth": 0, + "children": 4, + "net_rshares": 40565862465239, + "is_paidout": false, + "payout_at": "2016-09-16T18:41:34", + "payout": 99.561, + "pending_payout_value": "99.561 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231809756793" + }, + { + "voter": "blocktrades", + "rshares": "40042164500412" + }, + { + "voter": "rxhector", + "rshares": "734082781" + }, + { + "voter": "nabilov", + "rshares": "243749878708" + }, + { + "voter": "btcupload", + "rshares": "3813478158" + }, + { + "voter": "artific", + "rshares": "20189102884" + }, + { + "voter": "craigwilliamz", + "rshares": "8773942171" + }, + { + "voter": "etcmike", + "rshares": "10227302974" + }, + { + "voter": "titusfrost", + "rshares": "3827694728" + }, + { + "voter": "doitvoluntarily", + "rshares": "245531412" + }, + { + "voter": "alucard", + "rshares": "55752594" + }, + { + "voter": "anomaly", + "rshares": "271441624" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 12, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/mrrobot/@titusfrost/new-mr-robot-episode-introduces-e-corp-s-new-ecoin", + "blacklists": [] + }, + { + "post_id": 960471, + "author": "halo", + "permlink": "steemit-girl-halo-beautiful-day", + "category": "halo", + "title": "STEEMIT GIRL HALO ♡ Beautiful Day", + "body": "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/1e_zpszfkcfjtn.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/4e_zpsqprjeml3.jpg\n\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/2e_zps4liuaqhp.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/6e_zpshjwzv5b4.jpg\n\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/3e_zpstiifeqjc.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/5e_zpserzptebm.jpg", + "json_metadata": { + "tags": [ + "halo", + "photography", + "photos", + "steemitgirls", + "girls" + ], + "image": [ + "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/1e_zpszfkcfjtn.jpg", + "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/2e_zps4liuaqhp.jpg", + "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/3e_zpstiifeqjc.jpg" + ] + }, + "created": "2016-09-15T18:45:15", + "updated": "2016-09-15T18:46:27", + "depth": 0, + "children": 13, + "net_rshares": 15463146900495, + "is_paidout": false, + "payout_at": "2016-09-16T19:16:58", + "payout": 16.574, + "pending_payout_value": "16.574 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "smooth", + "rshares": "12523260993360" + }, + { + "voter": "smooth.witness", + "rshares": "2377105047841" + }, + { + "voter": "alexgr", + "rshares": "49168301700" + }, + { + "voter": "unosuke", + "rshares": "41161390898" + }, + { + "voter": "coar", + "rshares": "313699965" + }, + { + "voter": "murh", + "rshares": "1061303487" + }, + { + "voter": "kodi", + "rshares": "579494558" + }, + { + "voter": "will-zewe", + "rshares": "210512019921" + }, + { + "voter": "herzmeister", + "rshares": "85402720456" + }, + { + "voter": "everythink", + "rshares": "37088193309" + }, + { + "voter": "alexft", + "rshares": "4551729239" + }, + { + "voter": "gidlark", + "rshares": "1609525039" + }, + { + "voter": "steem1653", + "rshares": "2632467953" + }, + { + "voter": "halo", + "rshares": "42836399572" + }, + { + "voter": "noodhoog", + "rshares": "8401059269" + }, + { + "voter": "nippel66", + "rshares": "15070803886" + }, + { + "voter": "earnest", + "rshares": "1959134133" + }, + { + "voter": "beanz", + "rshares": "5068724760" + }, + { + "voter": "timelapse", + "rshares": "18607156497" + }, + { + "voter": "missmishel623", + "rshares": "68250832" + }, + { + "voter": "future24", + "rshares": "1446509276" + }, + { + "voter": "telos", + "rshares": "13841342477" + }, + { + "voter": "movievertigo", + "rshares": "3635091595" + }, + { + "voter": "netaterra", + "rshares": "2923037366" + }, + { + "voter": "freeinthought", + "rshares": "720031052" + }, + { + "voter": "chadcrypto", + "rshares": "195329269" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "orcish", + "rshares": "6368823978" + }, + { + "voter": "zaitsevalesyaa", + "rshares": "3200652561" + }, + { + "voter": "dresden", + "rshares": "4259089046" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 30, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/halo/@halo/steemit-girl-halo-beautiful-day", + "blacklists": [] + }, + { + "post_id": 959864, + "author": "tanyabtc", + "permlink": "jellyfish", + "category": "art", + "title": "Jellyfish", + "body": "Jellyfish is a perfect example of one of the weirdest creatures out there. In real life they are definitely not the most pleasant thing to touch and being surrounded with.\n\nIt wasn't a surprise for me but jellyfish don't have brains. Instead, they have nerve nets which sense changes in the environment and coordinate the animal's responses.\n\nHowever if you eliminate all of the fluff that people are talking about them, you can come up with something interesting and even fun.\n\nThis drawing is created using my favorite style, I hope you'll love it.\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish2_zpswbrk9ied.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish3_zpsx0rcjvko.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish1_zpsge408hgu.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish4_zpsmctahaql.jpg\n\n***\n\n###
Follow me for my future art work: [@tanyabtc](https://steemit.com/@tanyabtc)
", + "json_metadata": { + "tags": [ + "art", + "photography", + "life", + "nature", + "steemitartchallenge" + ], + "image": [ + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish2_zpswbrk9ied.jpg", + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish3_zpsx0rcjvko.jpg", + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish1_zpsge408hgu.jpg", + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish4_zpsmctahaql.jpg" + ], + "links": [ + "https://steemit.com/@tanyabtc" + ] + }, + "created": "2016-09-15T17:32:00", + "updated": "2016-09-15T17:32:00", + "depth": 0, + "children": 5, + "net_rshares": 40641175102128, + "is_paidout": false, + "payout_at": "2016-09-16T18:34:50", + "payout": 99.914, + "pending_payout_value": "99.914 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231809756793" + }, + { + "voter": "blocktrades", + "rshares": "40042090888143" + }, + { + "voter": "acidsun", + "rshares": "81790420316" + }, + { + "voter": "danielkt", + "rshares": "1026087885" + }, + { + "voter": "nabilov", + "rshares": "243749878708" + }, + { + "voter": "dmitriybtc", + "rshares": "5096232265" + }, + { + "voter": "dmilash", + "rshares": "3145812656" + }, + { + "voter": "marinaz", + "rshares": "538023492" + }, + { + "voter": "future24", + "rshares": "1446509276" + }, + { + "voter": "cmorton", + "rshares": "4098512589" + }, + { + "voter": "numberone", + "rshares": "83101859" + }, + { + "voter": "trev", + "rshares": "5712937692" + }, + { + "voter": "creatr", + "rshares": "62351093" + }, + { + "voter": "jlufer", + "rshares": "116660687" + }, + { + "voter": "jeff-kubitz", + "rshares": "53884613" + }, + { + "voter": "tanyabtc", + "rshares": "5532993072" + }, + { + "voter": "waldemar-kuhn", + "rshares": "53671263" + }, + { + "voter": "anomaly", + "rshares": "271440423" + }, + { + "voter": "orcish", + "rshares": "6368721210" + }, + { + "voter": "puffin", + "rshares": "4331450381" + }, + { + "voter": "dresden", + "rshares": "3795767712" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 21, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/art/@tanyabtc/jellyfish", + "blacklists": [] + }, + { + "post_id": 959506, + "author": "markrmorrisjr", + "permlink": "original-fiction-anarchist-s-almanac-episode-15", + "category": "story", + "title": "Original Fiction: Anarchist's Almanac, Episode 15", + "body": "## In this episode, Joshua Claiborne stands trial for violation of the First Law ##\n\n**“Whoa, whoa, whoa!” Phil screamed, “What the hell dude?”**\n\n*The Reaper crumpled to the floor, arms flailing as Joshua rode it to the ground. Finally, the hands found the catches at either side of the helmet and popped it off. A black, shaggy head of hair emerged.* \n\n***If you've missed episodes, [visit my blog](https://steemit.com/@markrmorrisjr) to catch up. Be sure to follow me for updates in your feed!***\n\n“Emil?” Stella said, “Meet Joshua. Are you okay?”\n\nEmil, the Reaper suit’s operator laughed, “Yeah, I’m fine, but that was awesome! Can you teach us that?”\n\n“Man! Now I have to rebuild this helmet,” Phil held up a small remote. “All I had to do was push this button,” he said, pressing it, as the suit powered down. “What did you do?”\n\n“The ‘nerve’ bundle that controls these things motor skills is on the very top of the skull, under a thin piece of sheet metal, puncture it, it collapses. You didn’t know that?” Joshua said. \n\n“Well, it appears we may need you more than you need us,” Stella said. “So, just say the word and we’ll get you where you need to be. Meanwhile, my team will be working on your son’s location.”\n\nJoshua dropped the letter opener and walked to the stairs, “Fine, whatever you need to collect from my meeting, get it. Now, who’s driving?” With that, he walked up the stairs, he had no more time to waste. \n\n**The Mapleton courthouse sat on a hill in the center of the town, overlooking the area around for miles.** \n\n*Joshua insisted that the team Stella had sent stop 5 miles out and allow him to ride in on the electric trike alone, while they observed the meeting from a distance.* \n\nHe carried the tiny remote in his shirt pocket, a gift from Phil. “That’s my only prototype, so don’t lose it,” he’d said. \n\n![enter image description here](https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg)\n\nFrom the end of Main Street, looking up toward the courthouse, Joshua counted at least six reapers. He wondered how far the signal from the remote would travel. \n\nHe thought about pressing it now, disarming his enemy, then walking in, but he’d still have to deal with the six drivers, if they managed to escape the suits. \n\nBesides, Stella seemed to think there was some secret they were going to give away, although Joshua couldn’t imagine it. \n\n*He checked his watch, ten minutes until his scheduled time and while he knew better than to be late, he had no intention of giving the Consensus one more second than he had to.* \n\nThe trike spun it’s tires on a patch of loose gravel as he started back up. He decided a quick approach was best. He charged up the hill, jumping the “Mayor’s” parking barrier and rolling up to the foot of the front stairs, he cranked the accelerator and the trike rose up on its back wheel, popping the two front wheels, over the bottom step. \n\nThe machine had more than enough power to climb the steps and Joshua skidded to a stop outside the courthouse door. He stopped and turned back toward the town, the six Reapers swarming toward him up the steps. He powered down, swung his leg up and over the bike and opened the door. \n\n**The Reapers followed him into the hall as he approached the court room.** \n\nThe Magistrate sat behind the judge’s bench and Joshua couldn’t help but smirk at the insult to the very concept of actual justice that this thing represented. \n\n“Joshua Claiborne, appearing as requested,” Joshua said, standing directly in front of the Magistrate. \n\n![enter image description here](https://s12.postimg.org/6h4lvyh7x/judge.jpg)\n\n> “Yes, Mr. Claiborne, have a seat,” A woman’s face, projected on the face shield of the Magistrate said.\n\n“I’d rather stand,” he said. \n\n> “Suit yourself, may we have the room, please?” she said, looking toward the reapers that had entered the back doors of the courtroom.\n\nThey left quietly. \n\n> “Mr. Claiborne, you’re charged with violation of the first law, in so\n> much as you have encouraged and joined in the activity of settling\n> outside of Consensus approved areas, acted outside of the legal\n> jurisdiction of the council and on more than one occasion, acted\n> against the best interest of Consensus, including attacking duly\n> authorized Magistrates in the course of their legally binding duties,\n> how do you plead?”\n\n**The woman looked at Joshua, peering over a pair of short, square spectacles, like some sort of outdated stereotype.** \n\n“Not guilty, by reason of illegitimacy of the currently established government and its ensigns. I am not, nor do I choose to become, subject to your law. I stand judged as innocent by natural law, insomuch as I have not caused harm to another human in aggression, damaged or stolen property, nor unnecessarily restricted the liberty of any other person. I recognize no other responsibility to my fellow man,” Joshua said calmly. \n\n> “Be that as it may, Mr. Claiborne, we are not here under the auspices of “natural law” but rather, under the Council mandated authority of the Consensus and its Magisterial Ministry, of which I am a part and I assure you, you are subject to,”\n\nThe woman intoned, her expression one of almost sheer boredom.\n\n> “Court finds the defendant guilty and remands the subject for immediate judicial murder.”\n\nThe magistrate raised its arm and brought it down on the bench with a solid thud, that echoed through the court. Joshua felt his heart sink as the Reapers reentered the court and moved up to surround him. \n\n## Look for the upvote button below. If you liked the post, upvote and share! If you're not on Steemit yet, why not? You get free money for signing up! ##", + "json_metadata": { + "tags": [ + "story", + "fiction", + "anarchy", + "life", + "minnowsunited" + ], + "image": [ + "https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg", + "https://s12.postimg.org/6h4lvyh7x/judge.jpg" + ], + "links": [ + "https://steemit.com/@markrmorrisjr" + ] + }, + "created": "2016-09-15T16:54:06", + "updated": "2016-09-15T16:54:06", + "depth": 0, + "children": 2, + "net_rshares": 62355283653318, + "is_paidout": false, + "payout_at": "2016-09-16T18:15:42", + "payout": 227.863, + "pending_payout_value": "227.863 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231809639013" + }, + { + "voter": "blocktrades", + "rshares": "40859141206977" + }, + { + "voter": "badassmother", + "rshares": "1912118346075" + }, + { + "voter": "xeldal", + "rshares": "7113882084470" + }, + { + "voter": "enki", + "rshares": "5763993012820" + }, + { + "voter": "rossco99", + "rshares": "1304415071462" + }, + { + "voter": "joseph", + "rshares": "1577462576089" + }, + { + "voter": "masteryoda", + "rshares": "651993277150" + }, + { + "voter": "boatymcboatface", + "rshares": "446958795092" + }, + { + "voter": "idol", + "rshares": "9168101098" + }, + { + "voter": "wpalczynski", + "rshares": "23383993964" + }, + { + "voter": "sakr", + "rshares": "5044693986" + }, + { + "voter": "jocelyn", + "rshares": "1578030666" + }, + { + "voter": "gregory-f", + "rshares": "14818192446" + }, + { + "voter": "eeks", + "rshares": "74914583876" + }, + { + "voter": "fkn", + "rshares": "1007941175" + }, + { + "voter": "james-show", + "rshares": "8867224532" + }, + { + "voter": "elishagh1", + "rshares": "1324875721" + }, + { + "voter": "richman", + "rshares": "7802860274" + }, + { + "voter": "acidyo", + "rshares": "24193131603" + }, + { + "voter": "coar", + "rshares": "313691550" + }, + { + "voter": "murh", + "rshares": "1061234978" + }, + { + "voter": "error", + "rshares": "2057413439" + }, + { + "voter": "theshell", + "rshares": "59950022330" + }, + { + "voter": "taoteh1221", + "rshares": "400880323222" + }, + { + "voter": "applecrisp", + "rshares": "410517349" + }, + { + "voter": "trogdor", + "rshares": "280737930617" + }, + { + "voter": "tee-em", + "rshares": "5287820211" + }, + { + "voter": "geoffrey", + "rshares": "121383360964" + }, + { + "voter": "kimziv", + "rshares": "10684548905" + }, + { + "voter": "acassity", + "rshares": "30279968088" + }, + { + "voter": "venuspcs", + "rshares": "45145254362" + }, + { + "voter": "getssidetracked", + "rshares": "7264907621" + }, + { + "voter": "trees", + "rshares": "1414199127" + }, + { + "voter": "strawhat", + "rshares": "197179742" + }, + { + "voter": "steemswede", + "rshares": "1159208963" + }, + { + "voter": "cryptochannel", + "rshares": "691425107" + }, + { + "voter": "endgame", + "rshares": "894044199" + }, + { + "voter": "furion", + "rshares": "4920266872" + }, + { + "voter": "steem1653", + "rshares": "2834923420" + }, + { + "voter": "steemit-life", + "rshares": "25221166135" + }, + { + "voter": "sitaru", + "rshares": "13516878845" + }, + { + "voter": "snowden", + "rshares": "80777327" + }, + { + "voter": "aaseb", + "rshares": "14167503457" + }, + { + "voter": "karen13", + "rshares": "4209522316" + }, + { + "voter": "nabilov", + "rshares": "243749878708" + }, + { + "voter": "luisucv34", + "rshares": "677892916" + }, + { + "voter": "creemej", + "rshares": "34761252099" + }, + { + "voter": "poseidon", + "rshares": "233065746" + }, + { + "voter": "thylbom", + "rshares": "82781233416" + }, + { + "voter": "deanliu", + "rshares": "32543319555" + }, + { + "voter": "rainchen", + "rshares": "5428442637" + }, + { + "voter": "jl777", + "rshares": "204617448258" + }, + { + "voter": "pokemon", + "rshares": "103514864" + }, + { + "voter": "positive", + "rshares": "817413671" + }, + { + "voter": "chloetaylor", + "rshares": "6361356981" + }, + { + "voter": "proto", + "rshares": "17267278949" + }, + { + "voter": "sisterholics", + "rshares": "1805641835" + }, + { + "voter": "reported", + "rshares": "61286903" + }, + { + "voter": "taker", + "rshares": "8734133724" + }, + { + "voter": "krushing", + "rshares": "57607550" + }, + { + "voter": "laonie", + "rshares": "63852353198" + }, + { + "voter": "laoyao", + "rshares": "24561889230" + }, + { + "voter": "myfirst", + "rshares": "1332427399" + }, + { + "voter": "somebody", + "rshares": "12961212091" + }, + { + "voter": "flysaga", + "rshares": "484610059" + }, + { + "voter": "gmurph", + "rshares": "2084691327" + }, + { + "voter": "minnowsunited", + "rshares": "513517114" + }, + { + "voter": "midnightoil", + "rshares": "2863236010" + }, + { + "voter": "whatyouganjado", + "rshares": "56653113" + }, + { + "voter": "kurtbeil", + "rshares": "3323984357" + }, + { + "voter": "xiaohui", + "rshares": "7161280807" + }, + { + "voter": "elfkitchen", + "rshares": "323406893" + }, + { + "voter": "oflyhigh", + "rshares": "5855543935" + }, + { + "voter": "makaveli", + "rshares": "63373184" + }, + { + "voter": "xiaokongcom", + "rshares": "223891286" + }, + { + "voter": "future24", + "rshares": "1780319109" + }, + { + "voter": "thebotkiller", + "rshares": "7709317035" + }, + { + "voter": "xianjun", + "rshares": "451324143" + }, + { + "voter": "herbertmueller", + "rshares": "647921440" + }, + { + "voter": "alexbones", + "rshares": "56109399" + }, + { + "voter": "chinadaily", + "rshares": "2022625104" + }, + { + "voter": "serejandmyself", + "rshares": "90172824082" + }, + { + "voter": "nang1", + "rshares": "163783062" + }, + { + "voter": "netaterra", + "rshares": "2982676167" + }, + { + "voter": "dobbydaba", + "rshares": "52319145" + }, + { + "voter": "andrewawerdna", + "rshares": "22559404087" + }, + { + "voter": "ozertayiz", + "rshares": "77466140" + }, + { + "voter": "steemitpatina", + "rshares": "4633082667" + }, + { + "voter": "salebored", + "rshares": "55922029" + }, + { + "voter": "runridefly", + "rshares": "2196862373" + }, + { + "voter": "shenanigator", + "rshares": "115288806334" + }, + { + "voter": "funkywanderer", + "rshares": "1709331623" + }, + { + "voter": "richardcrill", + "rshares": "4594182561" + }, + { + "voter": "markrmorrisjr", + "rshares": "79155262951" + }, + { + "voter": "bitdrone", + "rshares": "55917888" + }, + { + "voter": "sleepcult", + "rshares": "55908853" + }, + { + "voter": "sponge-bob", + "rshares": "27677639861" + }, + { + "voter": "doitvoluntarily", + "rshares": "12031039232" + }, + { + "voter": "thecyclist", + "rshares": "67696453939" + }, + { + "voter": "kev7000", + "rshares": "646493719" + }, + { + "voter": "analyzethis", + "rshares": "55266473" + }, + { + "voter": "brains", + "rshares": "27671309914" + }, + { + "voter": "burnin", + "rshares": "5866415576" + }, + { + "voter": "bitcoinparadise", + "rshares": "1352324852" + }, + { + "voter": "funnyman", + "rshares": "4235074146" + }, + { + "voter": "f1111111", + "rshares": "50193769" + }, + { + "voter": "anomaly", + "rshares": "339287005" + }, + { + "voter": "inarix03", + "rshares": "63405661" + }, + { + "voter": "ola1", + "rshares": "98545946" + }, + { + "voter": "michelle.gent", + "rshares": "4382226038" + }, + { + "voter": "mari5555na", + "rshares": "66935282" + }, + { + "voter": "goldmatters", + "rshares": "31683945302" + }, + { + "voter": "majes", + "rshares": "155180811" + }, + { + "voter": "dealzgal", + "rshares": "71727340" + }, + { + "voter": "storage", + "rshares": "68013381" + }, + { + "voter": "blackmarket", + "rshares": "58460105" + }, + { + "voter": "gifts", + "rshares": "61530871" + }, + { + "voter": "expat", + "rshares": "96643251" + }, + { + "voter": "toddemaher1", + "rshares": "129609202" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 120, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/story/@markrmorrisjr/original-fiction-anarchist-s-almanac-episode-15", + "blacklists": [] + }, + { + "post_id": 959690, + "author": "mevilkingdom", + "permlink": "the-gift-of-family-stories-of-a-toy-collector-1", + "category": "life", + "title": "The gift of family: Stories of a toy collector #1", + "body": "## Hi Steemians! The greatest thing about being a collector is that people always know what to buy for your birthday. Not perfume or cookware, but always things you love!\n\nHere are some pictures of what I received the last couple of times.\n\n----\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC01422.JPG)
\n\nThese are all the gifts I received for my birthday this year. I got some cool dolls, chocolates, care bears, my little ponies and even a puzzle. What a lovely 27th birthday!\n\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC09982.JPG)
\n\nChristmas is only once a year, good thing for my family! Lots of dolls and some ponies. You can tell everyone is really supportive of my hobby.\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05838.JPG)
\nThis is what **Sinterklaas** (he brings gifts on the 6th of December) brought me. Did you know I also collect Lego to some extent?\n___\n\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05066.JPG)
\nGifts from **Disneyland Paris**\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05622.JPG)
\nEven more **Disneyland** gifts, this time for Christmas 2 years ago. Those cookies are just **THE BEST**!\nNot to mention that they're Mickey-shaped.\n\n___\n\nThank you very much for looking at my pictures! Don't forget to **follow me** for more pictures!\n\n\n---- \n\n### Who is Mande Walschot?\n\n> Mande Walschot resides in Belgium and currently owns over 1,350 boxed My Little Ponies, around 500 boxed dolls, 52 polly pockets, 25 plush care bears, 30 Tsum Tsums, about 3,000 Pokémon cards, around 200 comic books and lots of stuffed toys! [Gemr spotlight collection](https://blogadmin.gemr.com/blog/collector-spotlight-mande-walschot/)\n\nAlso seen on [national television](http://ringtv.be/nieuws/mande-uit-halle-heeft-grootste-poppenverzameling-uit-regio) and [newspapers](http://www.hln.be/regio/nieuws-uit-halle/mande-leeft-samen-met-1-357-pony-s-a2797213/).\n\n\nSister of @steve-walschot, the creator of SteemPay.io and vouched Steem applications developer and girlfriend of game-enthusiast @herrlonnie.", + "json_metadata": { + "tags": [ + "life", + "story", + "collector", + "toys", + "mandesevilkingdom" + ], + "users": [ + "steve-walschot", + "herrlonnie" + ], + "image": [ + "http://mandesevilkingdom.com/steemit/post6/DSC01422.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC09982.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC05838.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC05066.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC05622.JPG" + ], + "links": [ + "https://blogadmin.gemr.com/blog/collector-spotlight-mande-walschot/", + "http://ringtv.be/nieuws/mande-uit-halle-heeft-grootste-poppenverzameling-uit-regio", + "http://www.hln.be/regio/nieuws-uit-halle/mande-leeft-samen-met-1-357-pony-s-a2797213/" + ] + }, + "created": "2016-09-15T17:14:30", + "updated": "2016-09-15T17:14:30", + "depth": 0, + "children": 3, + "net_rshares": 46309406304713, + "is_paidout": false, + "payout_at": "2016-09-16T19:31:38", + "payout": 128.305, + "pending_payout_value": "128.305 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "smooth", + "rshares": "31308460859447" + }, + { + "voter": "anonymous", + "rshares": "231810333637" + }, + { + "voter": "liondani", + "rshares": "1020236794603" + }, + { + "voter": "xeroc", + "rshares": "1950774078440" + }, + { + "voter": "masteryoda", + "rshares": "636514783207" + }, + { + "voter": "smooth.witness", + "rshares": "5943125371535" + }, + { + "voter": "steemrollin", + "rshares": "800066797130" + }, + { + "voter": "eeks", + "rshares": "14982933604" + }, + { + "voter": "instructor2121", + "rshares": "32368367444" + }, + { + "voter": "teamsteem", + "rshares": "326639006522" + }, + { + "voter": "steve-walschot", + "rshares": "178446109019" + }, + { + "voter": "coar", + "rshares": "313697862" + }, + { + "voter": "murh", + "rshares": "1061253912" + }, + { + "voter": "ranko-k", + "rshares": "40553528416" + }, + { + "voter": "cyber", + "rshares": "970586830705" + }, + { + "voter": "drinkzya", + "rshares": "35244223389" + }, + { + "voter": "thecryptodrive", + "rshares": "57203974765" + }, + { + "voter": "tee-em", + "rshares": "5287780547" + }, + { + "voter": "michaelx", + "rshares": "31345579234" + }, + { + "voter": "razvanelulmarin", + "rshares": "88062402472" + }, + { + "voter": "cryptoiskey", + "rshares": "34073699558" + }, + { + "voter": "mrhankeh", + "rshares": "484636799" + }, + { + "voter": "clement", + "rshares": "37152547241" + }, + { + "voter": "isteemit", + "rshares": "49807514764" + }, + { + "voter": "bacchist", + "rshares": "68450553516" + }, + { + "voter": "venuspcs", + "rshares": "52093553829" + }, + { + "voter": "ausbitbank", + "rshares": "14885828588" + }, + { + "voter": "steem1653", + "rshares": "2632467953" + }, + { + "voter": "anyx", + "rshares": "185292018100" + }, + { + "voter": "snowden", + "rshares": "80777327" + }, + { + "voter": "luisucv34", + "rshares": "629471993" + }, + { + "voter": "wildchild", + "rshares": "87223247" + }, + { + "voter": "the-future", + "rshares": "2726160685" + }, + { + "voter": "blueorgy", + "rshares": "167307855189" + }, + { + "voter": "bitcoiner", + "rshares": "3709595271" + }, + { + "voter": "zaebars", + "rshares": "30989825780" + }, + { + "voter": "raymonjohnstone", + "rshares": "799615699" + }, + { + "voter": "steemchain", + "rshares": "50626015" + }, + { + "voter": "whalepool", + "rshares": "50626015" + }, + { + "voter": "tygergamer", + "rshares": "4233708636" + }, + { + "voter": "clevecross", + "rshares": "15951876294" + }, + { + "voter": "steemdrive", + "rshares": "138539449846" + }, + { + "voter": "gomeravibz", + "rshares": "50579614280" + }, + { + "voter": "merej99", + "rshares": "2157207095" + }, + { + "voter": "laonie1", + "rshares": "22969491561" + }, + { + "voter": "laonie2", + "rshares": "23486297008" + }, + { + "voter": "laonie3", + "rshares": "23494592105" + }, + { + "voter": "brendio", + "rshares": "5831750244" + }, + { + "voter": "gmurph", + "rshares": "416938566" + }, + { + "voter": "michellek", + "rshares": "50577648" + }, + { + "voter": "laonie4", + "rshares": "23490269143" + }, + { + "voter": "laonie5", + "rshares": "23487998630" + }, + { + "voter": "laonie6", + "rshares": "23485020903" + }, + { + "voter": "laonie7", + "rshares": "23480867466" + }, + { + "voter": "kurtbeil", + "rshares": "3323846130" + }, + { + "voter": "laonie8", + "rshares": "23477419388" + }, + { + "voter": "laonie9", + "rshares": "23474718053" + }, + { + "voter": "steemleak", + "rshares": "2370262538" + }, + { + "voter": "mevilkingdom", + "rshares": "7991657587" + }, + { + "voter": "bigsambucca", + "rshares": "88206053" + }, + { + "voter": "paynode", + "rshares": "2343161589" + }, + { + "voter": "stevescriber", + "rshares": "72135954" + }, + { + "voter": "loli", + "rshares": "51247757" + }, + { + "voter": "nano2nd", + "rshares": "52419023" + }, + { + "voter": "cryptoblu", + "rshares": "61430307" + }, + { + "voter": "instructor", + "rshares": "61423628" + }, + { + "voter": "dollarvigilante", + "rshares": "802020725261" + }, + { + "voter": "lamech-m", + "rshares": "4056826699" + }, + { + "voter": "laonie10", + "rshares": "23468511648" + }, + { + "voter": "kamil5", + "rshares": "159631404" + }, + { + "voter": "garywilson", + "rshares": "8706975244" + }, + { + "voter": "bitchplease", + "rshares": "50829277" + }, + { + "voter": "trev", + "rshares": "5831957227" + }, + { + "voter": "barrycooper", + "rshares": "99130059443" + }, + { + "voter": "hilarski", + "rshares": "32443492367" + }, + { + "voter": "shadowspub", + "rshares": "2029369552" + }, + { + "voter": "rimann", + "rshares": "8558777427" + }, + { + "voter": "rickmiller", + "rshares": "58139915" + }, + { + "voter": "nulliusinverba", + "rshares": "5401518277" + }, + { + "voter": "mikehere", + "rshares": "22792452702" + }, + { + "voter": "laonie11", + "rshares": "22621808463" + }, + { + "voter": "xanoxt", + "rshares": "3411072843" + }, + { + "voter": "l0k1", + "rshares": "4044651818" + }, + { + "voter": "freesteem", + "rshares": "50798127" + }, + { + "voter": "saramiller", + "rshares": "450072622" + }, + { + "voter": "zettar", + "rshares": "2353724275" + }, + { + "voter": "dexter-k", + "rshares": "6066265903" + }, + { + "voter": "doggnostic", + "rshares": "53871683" + }, + { + "voter": "ct-gurus", + "rshares": "674641805" + }, + { + "voter": "jenny-talls", + "rshares": "53593366" + }, + { + "voter": "charlieshrem", + "rshares": "415654681468" + }, + { + "voter": "tracemayer", + "rshares": "61826073622" + }, + { + "voter": "bitcoinparadise", + "rshares": "1386999849" + }, + { + "voter": "steemsquad", + "rshares": "2170339399" + }, + { + "voter": "vsmith08162016", + "rshares": "52104641" + }, + { + "voter": "anomaly", + "rshares": "339288508" + }, + { + "voter": "inarix03", + "rshares": "63405661" + }, + { + "voter": "teemsteem", + "rshares": "51238118" + }, + { + "voter": "steemprincess", + "rshares": "50975390" + }, + { + "voter": "ninjapainter", + "rshares": "52329350" + }, + { + "voter": "rusteemitblog", + "rshares": "1630374239" + }, + { + "voter": "dealzgal", + "rshares": "71727340" + }, + { + "voter": "storage", + "rshares": "68013381" + }, + { + "voter": "blackmarket", + "rshares": "58460105" + }, + { + "voter": "gifts", + "rshares": "61530871" + }, + { + "voter": "expat", + "rshares": "99404487" + }, + { + "voter": "steemtrail", + "rshares": "140412636" + }, + { + "voter": "steemlift", + "rshares": "1593664040" + }, + { + "voter": "toddemaher1", + "rshares": "132623369" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 109, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/life/@mevilkingdom/the-gift-of-family-stories-of-a-toy-collector-1", + "blacklists": [] + }, + { + "post_id": 960355, + "author": "eneismijmich", + "permlink": "4rgubt-journey-of-life", + "category": "mindfulness", + "title": "Journey of life", + "body": "You must have heard that life is a journey, not a destination. This is the big truth that we, repeatedly, understand superficially. Often we are so focused on the goal, that we completely forget to enjoy the path.\n\nhttps://puu.sh/rbX2i/70e07ec186.png\n\nWhen we achieve the goal, we forget to enjoy it and immediately create a new goal. That is not life, this is racing with life. I am certain that you will not be happy, bur rather tired. Soul searches for the experience, while the mind and ego give signs if something is good or bad for us. Soul is completely indifferent. For the soul, every experience means celebration, while you are maybe crying because of the mind, to whom literally a lot of things does not make sense. \n\nThe same applies to the transformation called *death*. We celebrate resurrection as the greatest symbol of life, and then we are crying in the moment of someone's death. The mind is strange, isn't it?\n\nhttps://puu.sh/rbX1U/3cc83557c6.png\n\nRelax. It doesn't matter where you are in your level of expansion, you can't miss the road to home. While you are breathing, you are on the right track. Try to accept this moment as a moment in which there is no goal, and there is no end. The game never ends. This is excellent news. We came here to play, not to win. The game ends with victory, and God's Child in us still wants to play.\n\nOne beautiful wisdom reminds us: *\"Everything will be fine. If it isn't fine, then it isn't the end.\"* You always have the chance for new choices. This is very important to understand. You shouldn't hate the process just because you are not on your imaginary goal. You trust the process. You are exactly where your soul wants you to be. Don't let your mind tell you any different. \n\nhttps://puu.sh/rbXjG/ea493b7d14.png\n\nEverything is always a matter of the focus on things you have instead of the things you are missing. Today, again you are taking for granted the things that once were a goal. You forget to enjoy. Time is only an illusion of the mind. What if that is the point that you current process wants to teach you? If time is illusion, and it is, what's the hurry?\n\nhttps://puu.sh/rbWSn/313549d802.png\n\nTake a deep breath in and out. Experience life in the breath. The only goal is hiding in the breath of life. Everything is good, just the way it is. Don't forget that nothing ever happens without the God's blessing. Don't forget that you are guided. And, the most important, don't forget that we would most certainly go wrong if we'd try to determine what is the best time for us. The one who sees the big picture knows where you're headed and where you want to arrive.\n\nhttps://puu.sh/rbWLA/86e34b50b7.png\n\nTrust the process. It is the true test of our faith and wisdom. And enjoy. Without it nothing makes sense, right?\nThe sentence that many repeat in the end of the road: *\"I should've enjoyed more!\"*\n\nAll our life is a mere blink of an eye in the eternity. It is too small for such amount of worry. The life is not a serious thing, just the opposite. Life is the experience game. The point is not in the destination. The journey is our only destination. Isn't it then wiser to enjoy right away?\n\nhttps://puu.sh/rbX8F/2ea42f6dc9.png\n\n*\"Success isn't measured by money or material things.*\n*Success is measured by the amount of joy you feel.\"*\n\nFor more awesome images check this guy: [Psychedelic Maniac](thepsychedelicmaniac.tumblr.com)", + "json_metadata": { + "tags": [ + "mindfulness", + "life", + "health", + "psychology", + "philosophy" + ], + "image": [ + "https://puu.sh/rbX2i/70e07ec186.png", + "https://puu.sh/rbX1U/3cc83557c6.png", + "https://puu.sh/rbXjG/ea493b7d14.png", + "https://puu.sh/rbWSn/313549d802.png", + "https://puu.sh/rbWLA/86e34b50b7.png", + "https://puu.sh/rbX8F/2ea42f6dc9.png" + ], + "links": [ + "thepsychedelicmaniac.tumblr.com" + ] + }, + "created": "2016-09-15T18:31:45", + "updated": "2016-09-15T18:51:54", + "depth": 0, + "children": 0, + "net_rshares": 14809262337539, + "is_paidout": false, + "payout_at": "2016-09-16T18:57:11", + "payout": 15.34, + "pending_payout_value": "15.340 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "anonymous", + "rshares": "231809773619" + }, + { + "voter": "riverhead", + "rshares": "4134589909216" + }, + { + "voter": "hr1", + "rshares": "2006571575186" + }, + { + "voter": "rossco99", + "rshares": "1239194317889" + }, + { + "voter": "wang", + "rshares": "2206071653405" + }, + { + "voter": "jaewoocho", + "rshares": "22391622942" + }, + { + "voter": "joseph", + "rshares": "1534823711950" + }, + { + "voter": "masteryoda", + "rshares": "621013263954" + }, + { + "voter": "idol", + "rshares": "8927357821" + }, + { + "voter": "steemrollin", + "rshares": "800261748895" + }, + { + "voter": "sakr", + "rshares": "4839028197" + }, + { + "voter": "jocelyn", + "rshares": "1536592488" + }, + { + "voter": "craig-grant", + "rshares": "365729210153" + }, + { + "voter": "eeks", + "rshares": "44948978408" + }, + { + "voter": "fkn", + "rshares": "1007941175" + }, + { + "voter": "elishagh1", + "rshares": "1324875721" + }, + { + "voter": "richman", + "rshares": "7803257741" + }, + { + "voter": "coar", + "rshares": "313699965" + }, + { + "voter": "murh", + "rshares": "1061266533" + }, + { + "voter": "error", + "rshares": "2003359924" + }, + { + "voter": "theshell", + "rshares": "58189176188" + }, + { + "voter": "will-zewe", + "rshares": "223669021166" + }, + { + "voter": "herzmeister", + "rshares": "85402720456" + }, + { + "voter": "trogdor", + "rshares": "275016906945" + }, + { + "voter": "kimziv", + "rshares": "42740945757" + }, + { + "voter": "furion", + "rshares": "4920595011" + }, + { + "voter": "steem1653", + "rshares": "2632467953" + }, + { + "voter": "sveokla", + "rshares": "2860912097" + }, + { + "voter": "cynetyc", + "rshares": "136322030" + }, + { + "voter": "aaseb", + "rshares": "13846432138" + }, + { + "voter": "karen13", + "rshares": "4209539443" + }, + { + "voter": "noodhoog", + "rshares": "8926064181" + }, + { + "voter": "artific", + "rshares": "21565632626" + }, + { + "voter": "poseidon", + "rshares": "932318275" + }, + { + "voter": "thylbom", + "rshares": "81126757108" + }, + { + "voter": "jl777", + "rshares": "204618396015" + }, + { + "voter": "positive", + "rshares": "817413671" + }, + { + "voter": "proto", + "rshares": "17267341753" + }, + { + "voter": "sisterholics", + "rshares": "7223043327" + }, + { + "voter": "yoganarchista", + "rshares": "1838905726" + }, + { + "voter": "taker", + "rshares": "8734196526" + }, + { + "voter": "laonie", + "rshares": "255431411513" + }, + { + "voter": "myfirst", + "rshares": "7994964655" + }, + { + "voter": "somebody", + "rshares": "51848391811" + }, + { + "voter": "flysaga", + "rshares": "1938565243" + }, + { + "voter": "gmurph", + "rshares": "1250819304" + }, + { + "voter": "midnightoil", + "rshares": "11453689270" + }, + { + "voter": "xiaohui", + "rshares": "28648120983" + }, + { + "voter": "elfkitchen", + "rshares": "1293711711" + }, + { + "voter": "xiaokongcom", + "rshares": "895620436" + }, + { + "voter": "eneismijmich", + "rshares": "46605026907" + }, + { + "voter": "xianjun", + "rshares": "1805414369" + }, + { + "voter": "microluck", + "rshares": "118221929" + }, + { + "voter": "dinamitduo", + "rshares": "2539918110" + }, + { + "voter": "pompe72", + "rshares": "88481667" + }, + { + "voter": "machinelearning", + "rshares": "14946610388" + }, + { + "voter": "workout", + "rshares": "61087248" + }, + { + "voter": "onetree", + "rshares": "8856106682" + }, + { + "voter": "richardcrill", + "rshares": "4900461398" + }, + { + "voter": "sponge-bob", + "rshares": "26571947789" + }, + { + "voter": "brains", + "rshares": "27673075341" + }, + { + "voter": "anomaly", + "rshares": "271441624" + }, + { + "voter": "ola1", + "rshares": "98577200" + }, + { + "voter": "iuliuspro", + "rshares": "1199700175" + }, + { + "voter": "aksinya", + "rshares": "1259790018" + }, + { + "voter": "computerscience", + "rshares": "164253196" + }, + { + "voter": "hanai", + "rshares": "8448674998" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 67, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/mindfulness/@eneismijmich/4rgubt-journey-of-life", + "blacklists": [] + }, + { + "post_id": 960548, + "author": "kommienezuspadt", + "permlink": "bringing-characters-and-worlds-to-life-an-ode-to-the-steemit-creators", + "category": "art", + "title": "Bringing worlds and characters to life; an ode to the Steemit creators!", + "body": "\n

\n

My entire life, I knew however things shook out, I’d eventually be making comic books as a career. At 36, I’m later to the party than I originally anticipated, but I’ve had three decades to prepare for this! I remember as a kid, just being enamored with comic book art […and still am]. For years, I’d draw these snake characters during class with my friend Neal. Just page after endless page of snakes killing each other. The kind of gratuitous fantasy violence that defines weirdos in high school.

\n

Eventually, photography took over my life, but I still read comics, thought about comics and drew comics when I managed to make time. A couple years ago I began stringing together a story for a comic called THEIA. A sci-fi conspiracy story rooted in the real world, based on actual science. I learned how to format full script for comics and graphic novels […you can read the finished THEIA script in my previous blog, “Full script of THEIA sci-fi comic book! Exclusively on Steemit!”]. This was a big divergence than my hack and slash snake comics with Neal […who’s stories progressed with each turn of the page, like a Miyazaki film, but really horrible].

\n

\n

It was during the process of writing the first draft for THEIA that I realized all these years I’ve been so drawn to comics, the real allure for me was story telling and character creation, even more than great art. I’ve been creating comics my entire life, and thus, creating characters along the way. Once I began disciplining myself with taking writing more seriously, I discovered other helpful tools to aide in the creation process. I began taking  inventories, outlining in depth documentation of each characters lives, affiliations and personalities. 

\n

Character profiles are something I’ve done for 20 years. I mimicked my favorite fantasy artists like Gerald Brom, Boris Vallejo and the one and only, Frank Frazetta. I’d seen pencil sketches of their concept designs with monsters, heroes and heroines, and just did my best to emulate them. I used to draw the typical front, side, three-quarter and head sketches as a reference bible […granted, much easier when it was just snakes].

\n

\n

I’ve been enjoying a renaissance of creativity since committing to doing comics full time, and character creation is where I spend most of my time. THEIA is still my priority as I have an active Patreon campaign and those pledging support are doing so for that particular title. I do, however, have two other stories I’m developing which are currently knee deep in the character creation process. A Bukowski-esk pulp crime genre during the late 80’s following a private investigator throughout his struggle with sobriety in Queens, NY.

\n

\n

The other is a dark ghost story taking place in the mid-1800’s, surrounding a recently deceased, troubled soul that finds himself caught between the realm of the living, and the afterlife; unable to pass for fear of judgement after a life of heinous acts. The characters in this story were inspired by my most interesting friends, and obscure tales of macabre lore during the industrial revolution and the Southwestern US history.

\n

I wish I was further along in my pursuit of story telling, world building and character creation. I wish I had decades of experience to share here on Steemit. I don’t want to come across like I’m the authority on these complex, disciplined skills; I’ve only been seriously absorbing the art for a couple of years. I imagine, however, there are quite a few new writers, artists and creators here, navigating their own discoveries and process. With that in mind, [and in the spirit of all the things that makes Steemit great for me personally] here a few techniques I use to further my writing and a few resources I’ve found helpful in house, right here on Steemit.

\n

• Real-life Inspiration: As mentioned, take inspiration from people in life. Friends, or even family. Accentuate the personalities. Exaggerate the quirks or circumstances. For me personally, it’s a big help to to have someone in mind when drawing, and developing a character.

\n

• Character Inventories: Write up an involved character inventory […sometimes called a character bible]. A reference of everything you can imagine that defines that character. Their ethnicity, background, where they were born, how old they are, where they went to college, their diet, etc. It’s tedious if you’re working on a character heavy story with a big “cast”, but it pays dividends. Once you have those inventories, you can stick characters in situations and the story literally writes itself. If you have a character that’s a passionate vegan, you can immediately come up with dozens of possibilities if they were accidentally locked in a butcher’s freezer. Same with politics, religious, social issues. It really unloads much of the burden of dreaming up a brilliant scene.

\n

\n

• Name Generators: Name generators are something I rely on quite a bit. There are many available online. They’re usually free, and they’re a great place to launch in to naming a character. Often times, once you have a name, more of the personality and background unfolds organically. www.seventhsanctum.com has an excellent list of name generators tailored specifically for several genres and character types.

\n

• Research: This is one of those things that seems obvious, but I challenge you to go deeper. For my ghost story, I started researching life in the mid-1800’s in the Southwest and Dust Bowl of the United States. As I dug through historical sites, I found some of the events of that time. A few hours in, I read about droughts and plagues, which would have been rich content for a story, but going even deeper, I read about these crazy grasshopper plagues! Even deeper, I found accounts of specific families and individuals that described enormous clouds of locusts that swept through their homes and ate everything, including the clothes off their bodies! I encourage you to obsessively push through references, way past where most people would get their first idea and start writing. Beyond that is where you’re going to unearth something truly unique and memorable. I’ve already written a treatment for this epic locust plague in my ghost story […sort of nervous about what that’s going to be like to draw, though].

\n

• Don’t Lose The Magic: For me, the magic happens in the moments before I fall asleep. Without fail, that’s where I get my best, originally ideas. Sometimes it’s just a small line a dialog. Other times it’s as vague as a plot point. It’s a tough discipline to wake yourself up and write it down, but that […for me] is where the magic happens. It’s invaluable, and worth the trouble of having to fall back asleep. I jot things down in the Notes app of my phone. I have some friends that just wake up and make audio recordings. You might get your best ideas during different times. Sometimes I have brilliant moments on long drives. Either way, document it! You’ll be glad you did.

\n

Honestly, Steemit has been a revolution for me as well. Since the platform is incentivized, there is a tremendous wealth of references on writing, drawing, how-to’s. Beyond that, I spent much of my time reading and curating novels and short stories posted by the authors bringing their work to the site. Just this morning, I found a comprehensive article by @jamielefay titled “Steemit and the future of book publishing”. Everything here, totally relevant if you’re creating comics or graphic novels.

\n

\n

Keep writing, creating and sharing! More work from my comic, THIEA, and other stories to come. I’d love feedback and constructive criticism.

\n

I post daily. Follow me @kommienezuspadt so you don’t miss a post.

\n", + "json_metadata": { + "tags": [ + "art", + "writing", + "story", + "blog", + "comic" + ], + "users": [ + "jamielefay" + ], + "image": [ + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0104.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0105.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0106.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/SketchUpdate004.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0107.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/SketchUpdate011.jpg" + ], + "links": [ + "www.theiacomic.com", + "https://steemit.com/writing/@kommienezuspadt/full-script-of-theia-sci-fi-comic-book-theia-exclusively-on-steemit", + "www.seventhsanctum.com", + "https://steemit.com/steemit/@jamielefay/steemit-and-the-future-of-book-publishing", + "https://steemit.com/@kommienezuspadt" + ] + }, + "created": "2016-09-15T18:53:42", + "updated": "2016-09-15T19:11:12", + "depth": 0, + "children": 0, + "net_rshares": 9343647949820, + "is_paidout": false, + "payout_at": "2016-09-16T19:14:49", + "payout": 6.866, + "pending_payout_value": "6.866 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "riverhead", + "rshares": "4134640392195" + }, + { + "voter": "lovejoy", + "rshares": "253514770855" + }, + { + "voter": "joseph", + "rshares": "1535071696382" + }, + { + "voter": "idol", + "rshares": "8927535677" + }, + { + "voter": "jocelyn", + "rshares": "1536625837" + }, + { + "voter": "craig-grant", + "rshares": "374437048490" + }, + { + "voter": "eeks", + "rshares": "29966325092" + }, + { + "voter": "fkn", + "rshares": "1511911763" + }, + { + "voter": "elishagh1", + "rshares": "1987313581" + }, + { + "voter": "richman", + "rshares": "7803257741" + }, + { + "voter": "nanzo-scoop", + "rshares": "584301957019" + }, + { + "voter": "mummyimperfect", + "rshares": "172753954134" + }, + { + "voter": "coar", + "rshares": "313699965" + }, + { + "voter": "murh", + "rshares": "1061283659" + }, + { + "voter": "error", + "rshares": "2003404389" + }, + { + "voter": "ak2020", + "rshares": "49581638772" + }, + { + "voter": "alexc", + "rshares": "206092862903" + }, + { + "voter": "kimziv", + "rshares": "192336700354" + }, + { + "voter": "emily-cook", + "rshares": "75335893384" + }, + { + "voter": "superfreek", + "rshares": "2187607792" + }, + { + "voter": "furion", + "rshares": "7380892516" + }, + { + "voter": "tasman", + "rshares": "240666456" + }, + { + "voter": "steem1653", + "rshares": "2632467953" + }, + { + "voter": "creemej", + "rshares": "33739229218" + }, + { + "voter": "poseidon", + "rshares": "4195475503" + }, + { + "voter": "nin0000", + "rshares": "472134488" + }, + { + "voter": "positive", + "rshares": "1226120506" + }, + { + "voter": "sisterholics", + "rshares": "31601214153" + }, + { + "voter": "laonie", + "rshares": "1117528556435" + }, + { + "voter": "myfirst", + "rshares": "38642686402" + }, + { + "voter": "somebody", + "rshares": "233320672689" + }, + { + "voter": "flysaga", + "rshares": "8723640942" + }, + { + "voter": "gmurph", + "rshares": "833888549" + }, + { + "voter": "midnightoil", + "rshares": "50110479436" + }, + { + "voter": "xiaohui", + "rshares": "128918653572" + }, + { + "voter": "elfkitchen", + "rshares": "6306903180" + }, + { + "voter": "xiaokongcom", + "rshares": "4030335230" + }, + { + "voter": "xianjun", + "rshares": "8124462008" + }, + { + "voter": "microluck", + "rshares": "546776422" + }, + { + "voter": "movievertigo", + "rshares": "3562389763" + }, + { + "voter": "steemitpatina", + "rshares": "4633082667" + }, + { + "voter": "rusla", + "rshares": "100126866" + }, + { + "voter": "kommienezuspadt", + "rshares": "17087288555" + }, + { + "voter": "mikkolyytinen", + "rshares": "3030462572" + }, + { + "voter": "anomaly", + "rshares": "271448835" + }, + { + "voter": "ola1", + "rshares": "123221500" + }, + { + "voter": "rayzzz", + "rshares": "51615652" + }, + { + "voter": "zombiedoll", + "rshares": "796357358" + }, + { + "voter": "nazmood", + "rshares": "50820410" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": false, + "total_votes": 49, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/art/@kommienezuspadt/bringing-characters-and-worlds-to-life-an-ode-to-the-steemit-creators", + "blacklists": [] + } +] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_invalid_sort.orig.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_invalid_sort.orig.json new file mode 100644 index 00000000..bacaf336 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_invalid_sort.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid sort", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.orig.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.orig.json new file mode 100644 index 00000000..3c9fb03d --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.orig.json @@ -0,0 +1,2221 @@ +[ + { + "post_id": 681168, + "author": "r4fken", + "permlink": "re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z", + "category": "philosophy", + "title": "RE: Our Corrupt Sense of Fairness", + "body": "Do I understand correctly that you're referencing the initial \"mining\" by a select group of devs and friends, resulting in \"overwhelming control\" by means of vests now?\nOr am I just imagining things? :)", + "json_metadata": { + "tags": [ + "philosophy" + ] + }, + "created": "2016-08-20T09:06:27", + "updated": "2016-08-20T09:07:12", + "depth": 2, + "children": 0, + "net_rshares": 35692802942928, + "is_paidout": false, + "payout_at": "2016-09-20T07:22:48", + "payout": 196.246, + "pending_payout_value": "196.246 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "itsascam", + "rshares": "17735315160760" + }, + { + "voter": "steemed", + "rshares": "17865766992651" + }, + { + "voter": "boy", + "rshares": "3091007147" + }, + { + "voter": "bue-witness", + "rshares": "3751778512" + }, + { + "voter": "bunny", + "rshares": "703064185" + }, + { + "voter": "bue", + "rshares": "52778799199" + }, + { + "voter": "mini", + "rshares": "1656856120" + }, + { + "voter": "moon", + "rshares": "213490026" + }, + { + "voter": "healthcare", + "rshares": "621592296" + }, + { + "voter": "daniel.pan", + "rshares": "923609344" + }, + { + "voter": "helen.tan", + "rshares": "287848982" + }, + { + "voter": "r4fken", + "rshares": "27692743706" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 12, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "steemed", + "parent_permlink": "re-dantheman-our-corrupt-sense-of-fairness-20160820t035220528z", + "url": "/philosophy/@dantheman/our-corrupt-sense-of-fairness#@r4fken/re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z", + "blacklists": [] + }, + { + "post_id": 736365, + "author": "tldr", + "permlink": "i-m-tldr-an-experimental-bot-for-summarizing-your-long-articles", + "category": "tldr", + "title": "I'm @tldr - an experimental bot for summarizing your long articles.", + "body": "Steemit is about great content. But sometimes it just gets a bit, well, too long... So you didn't read. \n\nIntroducing, me! @tldr - the summarise bot! \n\nI come to the rescue, at least I try! I will monitor the blockchain and propose summaries as a comment under articles and try to summarize the long text you had to read before you decide to upvote :)\n\nI won't make it long this time, otherwise I would have to TLDR this post, and then, ...... infinite loop NOOOOOOOOS....\n\n

I will run for 24 hours (see payout timer) after which I will analyse the results and see whether to continue or not. Your input is much valued below:

\nCurrent parameters:\n1. Post must have more than 5000 chars\n2. Summary must be smaller than 15% of original content\n3. Summary must be max 7 sentences\n\n\nhttp://i.giphy.com/jChlcC99Vqu2I.gif", + "json_metadata": { + "tags": [ + "tldr", + "bot" + ], + "image": [ + "http://i.giphy.com/jChlcC99Vqu2I.gif" + ] + }, + "created": "2016-08-24T21:56:39", + "updated": "2016-08-24T23:26:03", + "depth": 0, + "children": 22, + "net_rshares": 13805683329893, + "is_paidout": false, + "payout_at": "2016-09-25T02:39:54", + "payout": 31.621, + "pending_payout_value": "31.621 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "abit", + "rshares": "6110298615385" + }, + { + "voter": "ozmaster", + "rshares": "147501011215" + }, + { + "voter": "boy", + "rshares": "2475588575" + }, + { + "voter": "bue-witness", + "rshares": "3004997792" + }, + { + "voter": "bunny", + "rshares": "562918093" + }, + { + "voter": "complexring", + "rshares": "5613233031399" + }, + { + "voter": "bue", + "rshares": "42638940309" + }, + { + "voter": "mini", + "rshares": "1326847006" + }, + { + "voter": "moon", + "rshares": "170845704" + }, + { + "voter": "healthcare", + "rshares": "497656797" + }, + { + "voter": "tuck-fheman", + "rshares": "1149362909097" + }, + { + "voter": "daniel.pan", + "rshares": "758055771" + }, + { + "voter": "helen.tan", + "rshares": "230367336" + }, + { + "voter": "edgeland", + "rshares": "134106565208" + }, + { + "voter": "joelinux", + "rshares": "19742650585" + }, + { + "voter": "richman", + "rshares": "9643353346" + }, + { + "voter": "censor-this", + "rshares": "7917346997" + }, + { + "voter": "murh", + "rshares": "2164056980" + }, + { + "voter": "tee-em", + "rshares": "1211348418" + }, + { + "voter": "djm34", + "rshares": "25349822848" + }, + { + "voter": "tomkirkham", + "rshares": "226688266301" + }, + { + "voter": "endgame", + "rshares": "406954777" + }, + { + "voter": "sebastien", + "rshares": "4469111855" + }, + { + "voter": "moonjelly", + "rshares": "2263852120" + }, + { + "voter": "shredlord", + "rshares": "12749599354" + }, + { + "voter": "hagie", + "rshares": "4590247494" + }, + { + "voter": "raymonjohnstone", + "rshares": "451134055" + }, + { + "voter": "bergy", + "rshares": "11281334218" + }, + { + "voter": "theprophet0", + "rshares": "2008372383" + }, + { + "voter": "coinbar", + "rshares": "1553952443" + }, + { + "voter": "ozchartart", + "rshares": "149764365242" + }, + { + "voter": "croatia", + "rshares": "4977363121" + }, + { + "voter": "kryptik", + "rshares": "4678252310" + }, + { + "voter": "minnowsunited", + "rshares": "170230804" + }, + { + "voter": "stephen.king989", + "rshares": "7371306594" + }, + { + "voter": "eneismijmich", + "rshares": "18742071917" + }, + { + "voter": "quantumanomaly", + "rshares": "1114311519" + }, + { + "voter": "naifaz", + "rshares": "149386074" + }, + { + "voter": "catherinebleish", + "rshares": "1910105759" + }, + { + "voter": "professorx", + "rshares": "5114340641" + }, + { + "voter": "justinlaak", + "rshares": "65542448666" + }, + { + "voter": "comcentrate", + "rshares": "191282778" + }, + { + "voter": "wizwom", + "rshares": "242182757" + }, + { + "voter": "heretickitten", + "rshares": "6548817310" + }, + { + "voter": "alina1", + "rshares": "155385736" + }, + { + "voter": "inwoxer", + "rshares": "143562405" + }, + { + "voter": "whatsup", + "rshares": "53141513" + }, + { + "voter": "freebornangel", + "rshares": "51593171" + }, + { + "voter": "steemwelcome", + "rshares": "51431138" + }, + { + "voter": "tldr", + "rshares": "51996577" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 50, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/tldr/@tldr/i-m-tldr-an-experimental-bot-for-summarizing-your-long-articles", + "blacklists": [] + }, + { + "post_id": 635822, + "author": "craigwilliamz", + "permlink": "how-to-raise-fantastic-children-part-1", + "category": "life", + "title": "How to Raise Fantastic Children - Part 1", + "body": "![The Crown Family Photo](http://steemit-dub.s3.amazonaws.com/alex/the-crown-family1.png 'The Crown Family Photo')\n\nMy Family is Pretty Cool\n-\n![Family](http://steemit-dub.s3.amazonaws.com/family-800.jpg 'Family')\n\nMy favorite people in the world are my children. They are kind, generous, full of life, fun to be around and crazy creative. They are really cool people.\n\nWe have four children, Alex, Ashley, Abby and Austin. My wife's idea to name them all \"A\" names. They are referred to as the \"A Team\".\n\nWe have a close family. We argue very little and maintain open communication. We have treated them like people from early on and they have behaved as such.\n\n![Guitar](http://steemit-dub.s3.amazonaws.com/alex/guitar.png 'Guitar')\n\n\n\nAn Eye Opening Experience\n-\nA few weeks ago I was in Dallas visiting a friend whom I had not seen in many years. There were other people there as well that I had also not seen in a very long time. I struck up a conversation with one of them and the discussion of family ensued. He told me about his children and what it had been like for him to become a father. He has a wonderful family with children that are still very young. When the time came for me to share about my children, I began listing off what each one was doing from the oldest to the youngest. Before I could get to the youngest one, his mouth was gaped open and he burst out, \"What are you feeding them!\" We had a big laugh as I told him about the youngest and expanded on our philosophy of family.\n\nWe have had many compliments on our children throughout their life. Even today, the people with whom they interact; family, friends and the people who work with them in stage productions, make a point of complimenting them. I am around them all the time, and many of their friends are homeschooled as well so sometimes I forget how special they are and the impact they have on others.\n\n![Railroad tracks](http://steemit-dub.s3.amazonaws.com/alex/alex-railroad-tracks-600.jpg 'Railroad tracks')\n\nWhy Am I Sharing\n-\nI hope to convey a few things here. First, if you are considering homeschooling and have reservations, may these stories encourage you. If you already homeschool and wonder if it is all worth it, maybe our stories will give you hope and encouragement as well.\n\nAnd lastly, I am proud of them and want to share their success with you.\n\n![Sis](http://steemit-dub.s3.amazonaws.com/alex/children-800.jpg 'Children')\n\nWhy We Homeschool\n-\nMy personal experience in public schools was a nightmare. I moved a lot when I was young and changed schools every three to six months. During one stretch of five years, I switched schools nineteen times. I did not build long term relationships and being the new kid all the time often created struggles with teachers.\n\nThere is a very long story to my history so I will not get into that here. It is however, the main reason I became excited about homeschooling when my wife suggested it.\n\nOur Oldest Child Alex\n-\n![Alex](http://steemit-dub.s3.amazonaws.com/alexthrowback.jpg 'Alex')\n\nAlex has always been intelligent as I believe all children are. He had memorized many of the family members phone numbers and home addresses by the time he was six. We started him off in Montessori school at age four where he attended three years. We would have kept him in Montessori but they did not offer classes above six years old. \n\nAt that time my wife was still concerned about her ability to homeschool so we enrolled him in a Christian private school for one year. After that, she had researched enough to build her confidence. She was ready to go. (As the years went by, she found out that she was more than capable. We are guides.)\n\nPre-Teen\n-\n![Sis](http://steemit-dub.s3.amazonaws.com/alex/alex-littlekid1.jpeg 'Alex and Sister')\n\nAlex took two years of Latin and one year of Japanese. He acted in plays and did what most children do, play a lot.\n\nTeen Years\n-\n![Sis](http://steemit-dub.s3.amazonaws.com/ateam.jpg 'Alex and Sister')\n\nMany people will tell you that you will have to deal with the teenage years. \"Brace yourself,\" they will say. \"You will become their enemy!\" We did not experience this with Alex or our other children. Alex would come to me for advice about issues him and his friends were discussing. When he would share how I reacted to some of our serious conversations, his friends were astonished and would respond with descriptions of their parents exploding if they attempted to have the same discussions with their parents.\n\nKeeping your cool when one of your children comes to you with a confession is a sure way to have them trust you with other issues of concern.\n\nDuring his teen years, Alex took CLEP tests and earned twelve college hours.\n\nAt sixteen, he began to gain interest in programming. I had introduced it to him when he was nine but he wasn't interested. Then again around eleven but still no interest. At sixteen, the interest was all his. Had I forced him to do it earlier, he may have never liked it.\n\n![Graduation](http://steemit-dub.s3.amazonaws.com/alex/graduation.jpg 'Graduation')\n\nBecoming an Adult\n-\n![Alex](http://steemit-dub.s3.amazonaws.com/alex/alex-adult1.jpeg 'Alex')\n\nOne his eighteenth birthday, he begin working his first job as a software developer. He was hired as an apprentice and was promoted to junior developer after only three months. At that time, he began mentoring two of his friends. Within a few months he had taken on a third person to mentor. Within a year or so, each of them have now changed their path and work as software developers. It has significantly changed their lives. Alex just recently began mentoring another friend. Pretty cool to pass forward. He had received help from some of my co-workers early on which made all the difference in his progression.\n\nHe now speaks French and Mandarin and has aspirations to learn many more. He has traveled to seven countries and has an arrangement with his employer to work from anywhere in the world as long as he is at the office for part of the year.\n\n![Alex](http://steemit-dub.s3.amazonaws.com/alex/amsterdamcollage.jpg 'Alex')\n\nHe gives technical talks at local meet ups, plays both acoustic and electric guitar, has never met a stranger and has made no enemies.\n\nHe is an inspiration to others, his family and siblings. The bar has been set high but the other children have many interests and accomplishments of their own. I'll share those in subsequent posts.\n\n![Leon](http://steemit-dub.s3.amazonaws.com/alex/leoncollage.jpg 'Leon')\n\nWhat was our part?\n-\nMy wife has worked hard to keep them supplied with good school material, staying compliant with state requirements and providing some structure for learning. We never set up a school room like environment. There are never set hours of study. Homeschooling hours vary depending on the age of the child and what they are working on at that phase of their education. I would say that most of the time they spend less time doing actual school work and the rest of the time exploring, using their imagination and focusing their energy on things they are interested in.\n\nFor Alex, that was a foreign language. Other times it was memorizing all the Pokemon cards and building decks and playing in tournaments. Alex said one of the things that has helped him so much in learning new things was the fact that he had memorized so much Pokemon data. He developed the ability to store and retrieve things in his mind.\n\nThe simple fact is… we didn't do it. Alex did. He deserves all the credit. He did all the work. We provided the canvas, the paint and the paintbrushes. \n\nConclusion\n-\nI feel we have a pretty cool family. There are many ways to raise your children. The most important thing is to love them unconditionally, give them room to grow and treat them as you would your very best friend. They are people and are smarter than most give them credit.\n\nI hope I have been able to convey how proud we are of Alex. These are but a few highlights of his life as he is only twenty-one. There is so much in store for him.\n\nI am so grateful that as much as possible we have given Alex the opportunity to live life on his own terms and he has flourished.", + "json_metadata": { + "tags": [ + "life", + "photography", + "travel", + "parenting", + "family" + ], + "image": [ + "http://steemit-dub.s3.amazonaws.com/alex/the-crown-family1.png" + ] + }, + "created": "2016-08-17T02:23:30", + "updated": "2016-08-17T02:41:03", + "depth": 0, + "children": 3, + "net_rshares": 20952886915040, + "is_paidout": false, + "payout_at": "2016-09-17T02:57:45", + "payout": 28.712, + "pending_payout_value": "28.712 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "dantheman", + "rshares": "20736048327416" + }, + { + "voter": "boy", + "rshares": "2472573792" + }, + { + "voter": "bue-witness", + "rshares": "3001108476" + }, + { + "voter": "bunny", + "rshares": "562413629" + }, + { + "voter": "bue", + "rshares": "42176902013" + }, + { + "voter": "mini", + "rshares": "1325367544" + }, + { + "voter": "moon", + "rshares": "170787830" + }, + { + "voter": "healthcare", + "rshares": "497243104" + }, + { + "voter": "daniel.pan", + "rshares": "737438203" + }, + { + "voter": "helen.tan", + "rshares": "230272201" + }, + { + "voter": "holabebe", + "rshares": "5072953140" + }, + { + "voter": "murh", + "rshares": "1799587902" + }, + { + "voter": "bravenewcoin", + "rshares": "115361382518" + }, + { + "voter": "soupernerd", + "rshares": "166899192" + }, + { + "voter": "qamarpinkpanda", + "rshares": "5429807428" + }, + { + "voter": "aaseb", + "rshares": "4494852918" + }, + { + "voter": "the-future", + "rshares": "2162953561" + }, + { + "voter": "illlefr4u", + "rshares": "289441856" + }, + { + "voter": "pinkisland", + "rshares": "11382937008" + }, + { + "voter": "pigatron", + "rshares": "3420690714" + }, + { + "voter": "weenis", + "rshares": "163854600" + }, + { + "voter": "jonaswakefield", + "rshares": "309113169" + }, + { + "voter": "jsantana", + "rshares": "984803370" + }, + { + "voter": "cehuneke", + "rshares": "61805391" + }, + { + "voter": "craigwilliamz", + "rshares": "6199940304" + }, + { + "voter": "thebrickranger", + "rshares": "57122450" + }, + { + "voter": "vbrasher", + "rshares": "57108081" + }, + { + "voter": "ashleywilliamz", + "rshares": "2980829211" + }, + { + "voter": "abbywilliamz", + "rshares": "57736694" + }, + { + "voter": "colleenwilliamz", + "rshares": "57604403" + }, + { + "voter": "luminousvisions", + "rshares": "3202748238" + }, + { + "voter": "canadian-coconut", + "rshares": "57682239" + }, + { + "voter": "ghasemkiani", + "rshares": "381198814" + }, + { + "voter": "cyborg", + "rshares": "54839161" + }, + { + "voter": "analyzethis", + "rshares": "50931848" + }, + { + "voter": "roadhog", + "rshares": "51780266" + }, + { + "voter": "doggnostic", + "rshares": "52777051" + }, + { + "voter": "jenny-talls", + "rshares": "52504270" + }, + { + "voter": "robovirtuoso", + "rshares": "54522752" + }, + { + "voter": "birdiewonder", + "rshares": "50090625" + }, + { + "voter": "robotev", + "rshares": "1092907021" + }, + { + "voter": "goaldigger", + "rshares": "51074637" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 42, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/life/@craigwilliamz/how-to-raise-fantastic-children-part-1", + "blacklists": [] + }, + { + "post_id": 787056, + "author": "spinx", + "permlink": "the-rain-it-is-the-law-of-life", + "category": "life", + "title": "The Rain - It is the law of life", + "body": "\n

\n


\n

One of the few precious truths I learned is life is not about waiting for the storm to pass, it is about learning to dance in...

\n

The Rain

\n

A ray of sunshine does not always mean happiness nor does a drop of rain mean total loneliness. Through time writers of all kinds being the sensitive, emotional and deep people that they are, have always associated the rain with loneliness. Today, whenever a cold wind blows through an open window or an empty space on a street, we are swept with its glum, warning us of a heavy feeling, reminding us of what we have lost, memories that are only too sad we almost wish could bury everything in a shroud of oblivion. Regrets come again, as well as faces of people from the past as a teardrop suddenly threatens to fall anytime from already lost and almost hollow eyes. The cold brought by the rain along with the dark clouds lurking outside makes us want to wrap our arms protectively around ourselves to keep us warm or to shut out any sad thoughts that dare to overstep the arms engulfing our curled bodies.

\n

\n


\n

But its not always like that. Not if we can help it, no. The Rain is perceived negatively most of the time but we can care enough to see beyond what is often seen. GO, outside on an early September morning and you will see that the rain leaves a magnificent dew drenched flower or a grass all the more alive as the sunlight hits the few drops left from last night's rain. All for you to behold. See that under umbrellas are faces of people smiling and radiant as you meet them on the street. Really, the rain cant be that bad. Not at all. It is natures gift, a gift from the Almighty. And after a rain, what do the heavens hold for you? An array of colors painting the sky and we know it as rainbow. Just as we know that after the tears, laughter comes, making us very much worthy of the joy because of what we have gone through.

\n

\n


\n

All our days cannot simply be filled with sunshine and it cannot be simply all laughter and smiles. We have to grow as a person just as the rain lets the flowers in the meadow bloom and grow. The flowers need the rain just as much as they need sunshine. Same is true with people. We need to be happy just as we need to be lonely so that we can grow as a person. Then can we only bring ourselves to realize that the bad is not so bad afer all as long as we allow the growth it brings to us as individuals.

\n

\n


\n

You cannot escape the rain, nor chase it away. Dare to hear its pitter patter rhythm as something which can never be a hindrance for you to see things in a different and brighter way no matter how dark the clouds and heavy the downpour. It is as inevitable as the troubles we come across. Learn from the rain because it is the law of nature. Learn from loneliness or troubles because... It is the law of life.

\n


\n


\n

(c) to the owner of the picture I used...

\n", + "json_metadata": { + "tags": [ + "life", + "story", + "blog", + "" + ], + "image": [ + "http://i64.tinypic.com/2ceg9qa.jpg", + "http://i63.tinypic.com/6iwlyw.jpg", + "http://i64.tinypic.com/fnzjtl.jpg", + "http://i63.tinypic.com/16kp014.jpg" + ] + }, + "created": "2016-08-29T07:57:36", + "updated": "2016-08-29T07:57:36", + "depth": 0, + "children": 5, + "net_rshares": 16847399101862, + "is_paidout": false, + "payout_at": "2016-09-29T09:39:45", + "payout": 18.413, + "pending_payout_value": "18.413 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "berniesanders", + "rshares": "11357569835389" + }, + { + "voter": "nextgenwitness", + "rshares": "86746642898" + }, + { + "voter": "justin", + "rshares": "273812540770" + }, + { + "voter": "silver", + "rshares": "552847788283" + }, + { + "voter": "silversteem", + "rshares": "1251914367375" + }, + { + "voter": "nextgencrypto", + "rshares": "1930805191057" + }, + { + "voter": "steemservices", + "rshares": "190090757518" + }, + { + "voter": "boombastic", + "rshares": "957733653490" + }, + { + "voter": "bingo-0", + "rshares": "8536011764" + }, + { + "voter": "bingo-1", + "rshares": "2238572115" + }, + { + "voter": "scientihark", + "rshares": "429169643" + }, + { + "voter": "murh", + "rshares": "2144600092" + }, + { + "voter": "beerbloke", + "rshares": "64184842487" + }, + { + "voter": "romait", + "rshares": "9651283220" + }, + { + "voter": "gidlark", + "rshares": "1090790161" + }, + { + "voter": "rubybian", + "rshares": "96663454240" + }, + { + "voter": "jillfeint", + "rshares": "504731722" + }, + { + "voter": "creemej", + "rshares": "24388027122" + }, + { + "voter": "the-future", + "rshares": "1680830998" + }, + { + "voter": "iamwne", + "rshares": "1487880898" + }, + { + "voter": "alex.chien", + "rshares": "1819480598" + }, + { + "voter": "shortcut", + "rshares": "5328526582" + }, + { + "voter": "gargon", + "rshares": "8943159633" + }, + { + "voter": "future24", + "rshares": "607950836" + }, + { + "voter": "thecurator", + "rshares": "15277887140" + }, + { + "voter": "michelnilles", + "rshares": "90179446" + }, + { + "voter": "kaosdlanor", + "rshares": "56326177" + }, + { + "voter": "thefeature", + "rshares": "425810977" + }, + { + "voter": "elsievr", + "rshares": "56770700" + }, + { + "voter": "champ333", + "rshares": "50663058" + }, + { + "voter": "terrano", + "rshares": "170136269" + }, + { + "voter": "spinx", + "rshares": "51239204" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 32, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/life/@spinx/the-rain-it-is-the-law-of-life", + "blacklists": [] + }, + { + "post_id": 628745, + "author": "feminism", + "permlink": "re-sean-king-re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160816t162832308z", + "category": "life", + "title": "RE: The Crap I Put Up With (as a Woman in Crypto) Because You Say You're \"Not a feminist\"", + "body": "I agree with @sean-king here @kato you give feminism a bad name... :)", + "json_metadata": { + "tags": [ + "life" + ], + "users": [ + "sean-king", + "kato" + ] + }, + "created": "2016-08-16T16:28:33", + "updated": "2016-08-16T16:28:33", + "depth": 2, + "children": 2, + "net_rshares": 5426307472843, + "is_paidout": false, + "payout_at": "2016-09-17T00:58:51", + "payout": 7.588, + "pending_payout_value": "7.588 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "kushed", + "rshares": "5426057994994" + }, + { + "voter": "concave", + "rshares": "249477849" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 2, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160815t231355973z", + "url": "/life/@kato/the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist#@feminism/re-sean-king-re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160816t162832308z", + "blacklists": [] + }, + { + "post_id": 678454, + "author": "craigwilliamz", + "permlink": "re-anarcho-andrei-stop-hitting-your-kids-20160820t021940362z", + "category": "voluntaryism", + "title": "RE: Stop Hitting Your Kids", + "body": "Before I had children, I would look at other parents who were giving their children soda and a pacifier and think, \"Those are horrible parents. Don't they know what harm soda is and all the things that are wrong with pacifiers!\" Then I had children. We have four. It was a lot harder than I thought it would be. When children are very young, you cannot reason with them. You cannot get through to them with logic.\n\nI hope you continue on Steemit and share your experiences with your children. You do have children, right?\n\nI love the concepts being presented by this an other posts to raise our children and never discipline them but what I am not seeing are examples of how to do that. Not once they are old enough to reason, between 4 and 6, but before that.\n\nI am a strong opponent to child abuse. I grew up in a **very** unstable home. That was something I did not want and did not do in my own family but each of my children did receive a few spankings when they were very young. Once they were old enough to reason with, we discussed matters and consequences came into play.\n\nI have a post on my oldest son, he is 21 now and I talk about homeschooling and letting children play a large role in their life. It is __their__ life after all.\n\nhttps://steemit.com/life/@craigwilliamz/how-to-raise-fantastic-children-part-1", + "json_metadata": { + "tags": [ + "voluntaryism" + ], + "links": [ + "https://steemit.com/life/@craigwilliamz/how-to-raise-fantastic-children-part-1" + ] + }, + "created": "2016-08-20T02:19:39", + "updated": "2016-08-20T02:19:39", + "depth": 1, + "children": 4, + "net_rshares": 2931180818933, + "is_paidout": false, + "payout_at": "2016-09-20T02:13:36", + "payout": 2.672, + "pending_payout_value": "2.672 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "dantheman", + "rshares": "2880006712141" + }, + { + "voter": "boy", + "rshares": "2472573792" + }, + { + "voter": "bue-witness", + "rshares": "3001108476" + }, + { + "voter": "bunny", + "rshares": "562413629" + }, + { + "voter": "bue", + "rshares": "42176902013" + }, + { + "voter": "mini", + "rshares": "1325367544" + }, + { + "voter": "moon", + "rshares": "170787830" + }, + { + "voter": "healthcare", + "rshares": "497243104" + }, + { + "voter": "daniel.pan", + "rshares": "737438203" + }, + { + "voter": "helen.tan", + "rshares": "230272201" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 10, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "anarcho-andrei", + "parent_permlink": "stop-hitting-your-kids", + "url": "/voluntaryism/@anarcho-andrei/stop-hitting-your-kids#@craigwilliamz/re-anarcho-andrei-stop-hitting-your-kids-20160820t021940362z", + "blacklists": [] + }, + { + "post_id": 736431, + "author": "cryptocurrency1", + "permlink": "re-complexring-preview-of-custom-steemit-com-skins-by-maximkichev-20160824t220504965z", + "category": "skins", + "title": "RE: Preview of Custom Steemit.com Skins by @maximkichev", + "body": "This is a great idea. Is it a button on Steemit website to change skin colors?", + "json_metadata": { + "tags": [ + "skins" + ] + }, + "created": "2016-08-24T22:04:51", + "updated": "2016-08-24T22:06:48", + "depth": 1, + "children": 1, + "net_rshares": 2929265394715, + "is_paidout": false, + "payout_at": "2016-09-24T23:52:36", + "payout": 2.566, + "pending_payout_value": "2.566 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "boy", + "rshares": "2475545095" + }, + { + "voter": "bue-witness", + "rshares": "3004943442" + }, + { + "voter": "bunny", + "rshares": "562911298" + }, + { + "voter": "complexring", + "rshares": "2877607015480" + }, + { + "voter": "bue", + "rshares": "42631240754" + }, + { + "voter": "mini", + "rshares": "1326826625" + }, + { + "voter": "moon", + "rshares": "170845704" + }, + { + "voter": "healthcare", + "rshares": "497652721" + }, + { + "voter": "daniel.pan", + "rshares": "758046260" + }, + { + "voter": "helen.tan", + "rshares": "230367336" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 10, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "complexring", + "parent_permlink": "preview-of-custom-steemit-com-skins-by-maximkichev", + "url": "/skins/@complexring/preview-of-custom-steemit-com-skins-by-maximkichev#@cryptocurrency1/re-complexring-preview-of-custom-steemit-com-skins-by-maximkichev-20160824t220504965z", + "blacklists": [] + }, + { + "post_id": 698270, + "author": "r4fken", + "permlink": "my-1000th-post-and-other-steemit-achievements", + "category": "steemit", + "title": "My 1000th post and other Steemit achievements!", + "body": "Today is an historical day for me. This is my **thousandth** post on Steemit already, I hit **100** followers today ánd I'm finally past the magical limit of **3000** SP! :D\n![Achievement unlocked](http://rlv.zcache.com/achievement_unlocked_bumper_sticker-r50c3a5b34b904bb4a8d9e6aad6b920a1_v9wht_8byvr_512.jpg)\n#### Thanks!\nThanks to all my followers, voters and friends! I hope we'll meet again soon, and continue scoring milestones! :)\nAlso, a thank you for the devs, we **love** your work, keep going!", + "json_metadata": { + "tags": [ + "steemit", + "awesome", + "achievement", + "stats", + "milestone" + ], + "image": [ + "http://rlv.zcache.com/achievement_unlocked_bumper_sticker-r50c3a5b34b904bb4a8d9e6aad6b920a1_v9wht_8byvr_512.jpg" + ] + }, + "created": "2016-08-21T20:34:39", + "updated": "2016-08-21T20:34:39", + "depth": 0, + "children": 35, + "net_rshares": -25406680605573, + "is_paidout": false, + "payout_at": "2016-09-22T12:39:06", + "payout": 2.101, + "pending_payout_value": "2.101 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "berniesanders", + "rshares": "-25419129621778" + }, + { + "voter": "adm", + "rshares": "-1303288241222" + }, + { + "voter": "boy", + "rshares": "3711292843" + }, + { + "voter": "bue-witness", + "rshares": "4504842525" + }, + { + "voter": "bunny", + "rshares": "844018072" + }, + { + "voter": "bue", + "rshares": "63630835821" + }, + { + "voter": "steemservices", + "rshares": "-491961877500" + }, + { + "voter": "mini", + "rshares": "1989271577" + }, + { + "voter": "moon", + "rshares": "256227507" + }, + { + "voter": "benjojo", + "rshares": "1244483571299" + }, + { + "voter": "proctologic", + "rshares": "24096643591" + }, + { + "voter": "healthcare", + "rshares": "746214388" + }, + { + "voter": "daniel.pan", + "rshares": "1124279505" + }, + { + "voter": "helen.tan", + "rshares": "345483224" + }, + { + "voter": "chryspano", + "rshares": "-403038020258" + }, + { + "voter": "kingscrown", + "rshares": "81440709580" + }, + { + "voter": "acidyo", + "rshares": "18173041048" + }, + { + "voter": "murh", + "rshares": "1441527990" + }, + { + "voter": "cryptofunk", + "rshares": "7298235047" + }, + { + "voter": "thecryptofiend", + "rshares": "13897431770" + }, + { + "voter": "zebbra2014", + "rshares": "5255137728" + }, + { + "voter": "hater", + "rshares": "-304963538" + }, + { + "voter": "wisehammer", + "rshares": "1013738674" + }, + { + "voter": "micheletrainer", + "rshares": "2750169349" + }, + { + "voter": "roelandp", + "rshares": "305244819566" + }, + { + "voter": "elyaque", + "rshares": "15757395195" + }, + { + "voter": "r4fken", + "rshares": "23999310435" + }, + { + "voter": "on0tole", + "rshares": "4383469997" + }, + { + "voter": "leksimus", + "rshares": "1350456080" + }, + { + "voter": "sveokla", + "rshares": "239464793" + }, + { + "voter": "perwest", + "rshares": "6247936107" + }, + { + "voter": "pigatto", + "rshares": "547667566" + }, + { + "voter": "anduweb", + "rshares": "17764985905" + }, + { + "voter": "maximkichev", + "rshares": "3769939766" + }, + { + "voter": "arek", + "rshares": "-290175754" + }, + { + "voter": "heimindanger", + "rshares": "7864564586" + }, + { + "voter": "bitcoiner", + "rshares": "3766102090" + }, + { + "voter": "qonq99", + "rshares": "528819341" + }, + { + "voter": "valspeaks", + "rshares": "2311634180" + }, + { + "voter": "lukmarcus", + "rshares": "2173853443" + }, + { + "voter": "bullionstackers", + "rshares": "1419541000" + }, + { + "voter": "dmilash", + "rshares": "2022504731" + }, + { + "voter": "kaykunoichi", + "rshares": "508192245" + }, + { + "voter": "jasonstaggers", + "rshares": "28835166886" + }, + { + "voter": "steemdrive", + "rshares": "89850692765" + }, + { + "voter": "litrbooh", + "rshares": "1700610055" + }, + { + "voter": "capitalism", + "rshares": "11642599188" + }, + { + "voter": "always1success", + "rshares": "68869178" + }, + { + "voter": "xtester", + "rshares": "30079446399" + }, + { + "voter": "marinaz", + "rshares": "66954524" + }, + { + "voter": "caitlinm", + "rshares": "178131954" + }, + { + "voter": "thisisbenbrick", + "rshares": "89856273584" + }, + { + "voter": "joele", + "rshares": "54406274025" + }, + { + "voter": "erikkartmen", + "rshares": "57581935" + }, + { + "voter": "driv3n", + "rshares": "24752361813" + }, + { + "voter": "numberone", + "rshares": "63964502" + }, + { + "voter": "naifaz", + "rshares": "154559742" + }, + { + "voter": "violino", + "rshares": "62002598" + }, + { + "voter": "guard", + "rshares": "-92783813" + }, + { + "voter": "bbsj", + "rshares": "2626905838" + }, + { + "voter": "lecrazycanuckeh", + "rshares": "62301037" + }, + { + "voter": "grayhorse", + "rshares": "-149863586" + }, + { + "voter": "jessicalu", + "rshares": "-53470504" + }, + { + "voter": "direcrusher", + "rshares": "55036253" + }, + { + "voter": "tschabidave", + "rshares": "54444758" + }, + { + "voter": "ibringawareness", + "rshares": "100163794" + }, + { + "voter": "anamikasjain", + "rshares": "50742988" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 67, + "flag_weight": 4.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/steemit/@r4fken/my-1000th-post-and-other-steemit-achievements", + "blacklists": [] + }, + { + "post_id": 718957, + "author": "loveangel", + "permlink": "re-jvper-international-money-transfer-provider-started-using-steem-20160823t142700478z", + "category": "steemit", + "title": "RE: International Money Transfer Provider started using Steem", + "body": "If people would be able to use Steem for remittances, then I feel this could just blow up out of proportion for Steem, as there would be no need to convert Steem's to bitcoin and then to local currencies. \n\nIts dependency on bitcoin would be negated and we can then truly consider it as a global currency :-)", + "json_metadata": { + "tags": [ + "steemit" + ] + }, + "created": "2016-08-23T14:27:00", + "updated": "2016-08-23T14:27:00", + "depth": 1, + "children": 1, + "net_rshares": 1784399120902, + "is_paidout": false, + "payout_at": "2016-09-23T13:51:39", + "payout": 1.417, + "pending_payout_value": "1.417 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "dantheman", + "rshares": "1730545983153" + }, + { + "voter": "boy", + "rshares": "2474667874" + }, + { + "voter": "bue-witness", + "rshares": "3003831514" + }, + { + "voter": "bunny", + "rshares": "562780317" + }, + { + "voter": "bue", + "rshares": "42510264789" + }, + { + "voter": "mini", + "rshares": "1326410513" + }, + { + "voter": "moon", + "rshares": "170827956" + }, + { + "voter": "healthcare", + "rshares": "497540834" + }, + { + "voter": "daniel.pan", + "rshares": "756497537" + }, + { + "voter": "helen.tan", + "rshares": "230342766" + }, + { + "voter": "jvper", + "rshares": "2251314435" + }, + { + "voter": "sizil", + "rshares": "68659214" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 12, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "jvper", + "parent_permlink": "international-money-transfer-provider-started-using-steem", + "url": "/steemit/@jvper/international-money-transfer-provider-started-using-steem#@loveangel/re-jvper-international-money-transfer-provider-started-using-steem-20160823t142700478z", + "blacklists": [] + }, + { + "post_id": 694518, + "author": "feminism", + "permlink": "re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t141224417z", + "category": "faith", + "title": "RE: Faith Versus Religion--Refuting \"God's Undertaker\", Part 1", + "body": "proofreading: quiet-> quite", + "json_metadata": { + "tags": [ + "faith" + ] + }, + "created": "2016-08-21T14:12:24", + "updated": "2016-08-21T14:12:24", + "depth": 1, + "children": 1, + "net_rshares": 1453905500705, + "is_paidout": false, + "payout_at": "2016-09-21T14:54:18", + "payout": 1.308, + "pending_payout_value": "1.308 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "sean-king", + "rshares": "1453905500705" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 1, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "faith-versus-religion-refuting-god-s-undertaker-part-1", + "url": "/faith/@sean-king/faith-versus-religion-refuting-god-s-undertaker-part-1#@feminism/re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t141224417z", + "blacklists": [] + }, + { + "post_id": 695353, + "author": "feminism", + "permlink": "re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t154045710z", + "category": "faith", + "title": "RE: Faith Versus Religion--Refuting \"God's Undertaker\", Part 1", + "body": "money quote: \"And it's also just as likely that God ejaculated out the universe after an epic masterbation session\"\n\nproofreading: masturbation", + "json_metadata": { + "tags": [ + "faith" + ] + }, + "created": "2016-08-21T15:40:45", + "updated": "2016-08-21T15:40:45", + "depth": 1, + "children": 0, + "net_rshares": 1424832587077, + "is_paidout": false, + "payout_at": "2016-09-21T14:54:18", + "payout": 1.276, + "pending_payout_value": "1.276 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "sean-king", + "rshares": "1424832587077" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 1, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "faith-versus-religion-refuting-god-s-undertaker-part-1", + "url": "/faith/@sean-king/faith-versus-religion-refuting-god-s-undertaker-part-1#@feminism/re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t154045710z", + "blacklists": [] + }, + { + "post_id": 736865, + "author": "feminism", + "permlink": "re-cryptoctopus-the-earth-is-flat-the-ultimate-test-for-open-mindedness-20160824t225052573z", + "category": "curiosity", + "title": "RE: The Earth Is Flat? The ultimate test for \"open mindedness\"", + "body": "it is a great exercise in epistemology, I agree.\nand most people are sheeps, meaning, they dont know how they know what \"they know\", meaning they dont know shit", + "json_metadata": { + "tags": [ + "curiosity" + ] + }, + "created": "2016-08-24T22:50:51", + "updated": "2016-08-24T22:50:51", + "depth": 1, + "children": 0, + "net_rshares": 1746474870201, + "is_paidout": false, + "payout_at": "2016-09-24T23:11:33", + "payout": 1.256, + "pending_payout_value": "1.256 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "boy", + "rshares": "2475680916" + }, + { + "voter": "bue-witness", + "rshares": "3005113218" + }, + { + "voter": "bunny", + "rshares": "562928956" + }, + { + "voter": "bue", + "rshares": "42648953508" + }, + { + "voter": "mini", + "rshares": "1326895892" + }, + { + "voter": "moon", + "rshares": "170847062" + }, + { + "voter": "healthcare", + "rshares": "497673093" + }, + { + "voter": "daniel.pan", + "rshares": "759428460" + }, + { + "voter": "helen.tan", + "rshares": "230370052" + }, + { + "voter": "cryptoctopus", + "rshares": "1698179876049" + }, + { + "voter": "beanz", + "rshares": "-3382897005" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 11, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "cryptoctopus", + "parent_permlink": "the-earth-is-flat-the-ultimate-test-for-open-mindedness", + "url": "/curiosity/@cryptoctopus/the-earth-is-flat-the-ultimate-test-for-open-mindedness#@feminism/re-cryptoctopus-the-earth-is-flat-the-ultimate-test-for-open-mindedness-20160824t225052573z", + "blacklists": [] + }, + { + "post_id": 674727, + "author": "feminism", + "permlink": "re-sean-king-nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky-20160819t195205251z", + "category": "feminism", + "title": "RE: \"Nothing in biology makes sense except in the light of evolution.\" --Theodosius Dobzhansky", + "body": "proofreading: lessor", + "json_metadata": { + "tags": [ + "feminism" + ] + }, + "created": "2016-08-19T19:52:06", + "updated": "2016-08-19T19:52:06", + "depth": 1, + "children": 1, + "net_rshares": 1532858419010, + "is_paidout": false, + "payout_at": "2016-09-19T19:24:12", + "payout": 1.099, + "pending_payout_value": "1.099 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "boy", + "rshares": "2471701036" + }, + { + "voter": "bue-witness", + "rshares": "3000021378" + }, + { + "voter": "bunny", + "rshares": "562225906" + }, + { + "voter": "bue", + "rshares": "42142431563" + }, + { + "voter": "mini", + "rshares": "1324903845" + }, + { + "voter": "moon", + "rshares": "170734595" + }, + { + "voter": "healthcare", + "rshares": "497076397" + }, + { + "voter": "daniel.pan", + "rshares": "737187441" + }, + { + "voter": "helen.tan", + "rshares": "230197953" + }, + { + "voter": "sean-king", + "rshares": "1481721938896" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 10, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky", + "url": "/feminism/@sean-king/nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky#@feminism/re-sean-king-nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky-20160819t195205251z", + "blacklists": [] + }, + { + "post_id": 736890, + "author": "feminism", + "permlink": "re-sean-king-me-cindy-and-20160824t225250885z", + "category": "celebrity", + "title": "RE: Me, Cindy and...?", + "body": "OMG Sasha Grey\nwhy are you doing this to me Sean ???\n:)", + "json_metadata": { + "tags": [ + "celebrity" + ] + }, + "created": "2016-08-24T22:52:51", + "updated": "2016-08-24T22:55:00", + "depth": 1, + "children": 0, + "net_rshares": 1511562806286, + "is_paidout": false, + "payout_at": "2016-09-24T23:35:06", + "payout": 1.049, + "pending_payout_value": "1.049 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "boy", + "rshares": "2475557327" + }, + { + "voter": "bue-witness", + "rshares": "3004958392" + }, + { + "voter": "bunny", + "rshares": "562914017" + }, + { + "voter": "bue", + "rshares": "42634234947" + }, + { + "voter": "mini", + "rshares": "1326832061" + }, + { + "voter": "moon", + "rshares": "170845704" + }, + { + "voter": "healthcare", + "rshares": "497654080" + }, + { + "voter": "daniel.pan", + "rshares": "758048978" + }, + { + "voter": "helen.tan", + "rshares": "230367336" + }, + { + "voter": "somedude", + "rshares": "7488699966" + }, + { + "voter": "sean-king", + "rshares": "1455795590483" + }, + { + "voter": "beanz", + "rshares": "-3382897005" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 12, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "me-cindy-and", + "url": "/celebrity/@sean-king/me-cindy-and#@feminism/re-sean-king-me-cindy-and-20160824t225250885z", + "blacklists": [] + }, + { + "post_id": 769459, + "author": "feminism", + "permlink": "re-sean-king-the-bible-isn-t-mainly-history-20160827t184548731z", + "category": "bible", + "title": "RE: The Bible Isn't (Mainly) History", + "body": "\"It’s also the reason why poetry is often able to convey a truer understanding of an ideal than prose: The ineffable, transcendental concepts of art and religion defy encapsulation in mere words. \"\nThats the reason why I dont bother explaining myself with mere prose,\nbut instead I use poetry and music, the closest piece of poetry or music I know\nthat conveys what Im trying to convey.", + "json_metadata": { + "tags": [ + "bible" + ] + }, + "created": "2016-08-27T18:45:48", + "updated": "2016-08-27T18:47:27", + "depth": 1, + "children": 0, + "net_rshares": 1398535239934, + "is_paidout": false, + "payout_at": "2016-09-27T18:51:57", + "payout": 1.031, + "pending_payout_value": "1.031 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "sean-king", + "rshares": "1398535239934" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 1, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "the-bible-isn-t-mainly-history", + "url": "/bible/@sean-king/the-bible-isn-t-mainly-history#@feminism/re-sean-king-the-bible-isn-t-mainly-history-20160827t184548731z", + "blacklists": [] + }, + { + "post_id": 684831, + "author": "feminism", + "permlink": "re-sean-king-paraphilia-20160820t164510821z", + "category": "photography", + "title": "RE: Paraphilia", + "body": "Here is a post with a song dedicated to you Sean,\nhttp://steemit.com/science/@feminism/the-symphony-of-science-dedicated-to-sean-king\nyou're really growing on me, thank you for your work.\nI wish I could be as polite as you are with people.", + "json_metadata": { + "tags": [ + "photography" + ], + "links": [ + "http://steemit.com/science/@feminism/the-symphony-of-science-dedicated-to-sean-king" + ] + }, + "created": "2016-08-20T16:45:12", + "updated": "2016-08-20T16:45:12", + "depth": 1, + "children": 2, + "net_rshares": 1379142794288, + "is_paidout": false, + "payout_at": "2016-09-20T06:12:45", + "payout": 1.023, + "pending_payout_value": "1.023 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "boy", + "rshares": "3091167529" + }, + { + "voter": "bue-witness", + "rshares": "3751991188" + }, + { + "voter": "bunny", + "rshares": "703090335" + }, + { + "voter": "bue", + "rshares": "52790740268" + }, + { + "voter": "mini", + "rshares": "1656938054" + }, + { + "voter": "moon", + "rshares": "213491769" + }, + { + "voter": "healthcare", + "rshares": "621613216" + }, + { + "voter": "daniel.pan", + "rshares": "923651182" + }, + { + "voter": "helen.tan", + "rshares": "287854213" + }, + { + "voter": "somedude", + "rshares": "7668537780" + }, + { + "voter": "sean-king", + "rshares": "1307433718754" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 11, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "paraphilia", + "url": "/photography/@sean-king/paraphilia#@feminism/re-sean-king-paraphilia-20160820t164510821z", + "blacklists": [] + }, + { + "post_id": 712384, + "author": "feminism", + "permlink": "re-sean-king-mystical-20160822t234424169z", + "category": "photography", + "title": "RE: Mystical Momma", + "body": "That picture is mind blowing, to say anything less would be dishonest.", + "json_metadata": { + "tags": [ + "photography" + ] + }, + "created": "2016-08-22T23:44:24", + "updated": "2016-08-22T23:44:24", + "depth": 1, + "children": 0, + "net_rshares": 1396646939582, + "is_paidout": false, + "payout_at": "2016-09-23T01:34:54", + "payout": 1.0, + "pending_payout_value": "1.000 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "sean-king", + "rshares": "1396646939582" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 1, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "sean-king", + "parent_permlink": "mystical", + "url": "/photography/@sean-king/mystical#@feminism/re-sean-king-mystical-20160822t234424169z", + "blacklists": [] + }, + { + "post_id": 807303, + "author": "steemwelcome", + "permlink": "help-i-was-unfairly-flagged-i-m-not-a-bot-i-m-a-manual-curator", + "category": "steemit", + "title": "Help I was unfairly flagged, I'm not a \"bot\" I'm a manual curator!", + "body": "As I told already on my [introduction post](https://steemit.com/introduceyourself/@steemwelcome/hello-steemians-i-m-steemwelcome) I AM NOT A BOT, I am a manual curator of new accounts on steemit.\n\nMy journey was just welcoming each verified new user I could MANUALLY. There is nothing wrong about that, but whale @smooth decided to flag me, destroying my reputation and so my ability to greet new steemians. Just look at the messages on my introductory post and you will see how much I was apreciated for this initiative: no one complained.\n\nThis is unfair! Flagging me as if I were a \"bot\" is an insult to the time I took to salute each new steemian I could.\n\nNo one complained about me and only positive reactions from new steemians is what you could read (if my reputation wasn't destroyed by @smooth). So what kind of \"spam\" is the one that makes people happy when they are personaly greeted when they join (and how could this be compared with an \"spambot\", it's my time that was there dedicated for this task). What is the problem if I found time to do this \"repetitive\" task?\n\n@steemwelcome", + "json_metadata": { + "tags": [ + "steemit", + "introduceyourself", + "freedom", + "witness-category" + ], + "users": [ + "smooth", + "steemwelcome" + ], + "links": [ + "https://steemit.com/introduceyourself/@steemwelcome/hello-steemians-i-m-steemwelcome" + ] + }, + "created": "2016-08-31T00:33:33", + "updated": "2016-08-31T01:15:33", + "depth": 0, + "children": 23, + "net_rshares": 1663672556305, + "is_paidout": false, + "payout_at": "2016-10-01T13:33:12", + "payout": 0.999, + "pending_payout_value": "0.999 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.001 HBD", + "replies": [], + "active_votes": [ + { + "voter": "ned", + "rshares": "1289265380237" + }, + { + "voter": "boy", + "rshares": "3099079187" + }, + { + "voter": "bue-witness", + "rshares": "3762318075" + }, + { + "voter": "bunny", + "rshares": "697302029" + }, + { + "voter": "bue", + "rshares": "53977586827" + }, + { + "voter": "mini", + "rshares": "1660857757" + }, + { + "voter": "moon", + "rshares": "213660123" + }, + { + "voter": "healthcare", + "rshares": "622708148" + }, + { + "voter": "daniel.pan", + "rshares": "967168909" + }, + { + "voter": "helen.tan", + "rshares": "288138648" + }, + { + "voter": "ervin-lemark", + "rshares": "13126308422" + }, + { + "voter": "murh", + "rshares": "1431687904" + }, + { + "voter": "lukestokes", + "rshares": "275273168981" + }, + { + "voter": "joseph.kalu", + "rshares": "222257214" + }, + { + "voter": "pinkisland", + "rshares": "17665762711" + }, + { + "voter": "ace108", + "rshares": "1213791485" + }, + { + "voter": "steemwelcome", + "rshares": "61085819" + }, + { + "voter": "fukako", + "rshares": "58685384" + }, + { + "voter": "willio", + "rshares": "65608445" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 19, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/steemit/@steemwelcome/help-i-was-unfairly-flagged-i-m-not-a-bot-i-m-a-manual-curator", + "blacklists": [] + }, + { + "post_id": 777632, + "author": "spinx", + "permlink": "bike-chained-to-a-tree", + "category": "life", + "title": "Bike chained to a tree....", + "body": "\n

\n


\n

 A boy went to war in 1914 and left his bike chained to a tree. He never came home & the family left the bike there as a memorial to the fallen soldier. 

\n", + "json_metadata": { + "tags": [ + "life", + "story" + ], + "image": [ + "http://i67.tinypic.com/sg1gfm.jpg" + ] + }, + "created": "2016-08-28T13:58:00", + "updated": "2016-08-28T22:58:57", + "depth": 0, + "children": 1, + "net_rshares": 1520007920729, + "is_paidout": false, + "payout_at": "2016-09-28T14:08:12", + "payout": 0.992, + "pending_payout_value": "0.992 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "boy", + "rshares": "4335459431" + }, + { + "voter": "bue-witness", + "rshares": "5262854785" + }, + { + "voter": "bunny", + "rshares": "975716806" + }, + { + "voter": "bue", + "rshares": "75169356896" + }, + { + "voter": "mini", + "rshares": "2323555627" + }, + { + "voter": "moon", + "rshares": "299045636" + }, + { + "voter": "steempower", + "rshares": "1288478836630" + }, + { + "voter": "healthcare", + "rshares": "871313105" + }, + { + "voter": "daniel.pan", + "rshares": "1353232348" + }, + { + "voter": "helen.tan", + "rshares": "403253136" + }, + { + "voter": "coar", + "rshares": "1764827120" + }, + { + "voter": "murh", + "rshares": "2501114696" + }, + { + "voter": "alexft", + "rshares": "1289763894" + }, + { + "voter": "pigatto", + "rshares": "2814342601" + }, + { + "voter": "lostnuggett", + "rshares": "1965737119" + }, + { + "voter": "ladypenelope1", + "rshares": "403833324" + }, + { + "voter": "beanz", + "rshares": "4016798395" + }, + { + "voter": "sunshine", + "rshares": "12555413808" + }, + { + "voter": "jphamer1", + "rshares": "10069561477" + }, + { + "voter": "future24", + "rshares": "104709921" + }, + { + "voter": "bledarus", + "rshares": "1880413517" + }, + { + "voter": "thegoldencookie", + "rshares": "71365686" + }, + { + "voter": "solarguy", + "rshares": "5584217100" + }, + { + "voter": "icfiedler", + "rshares": "79783107300" + }, + { + "voter": "trev", + "rshares": "3785284659" + }, + { + "voter": "mandibil", + "rshares": "11682660949" + }, + { + "voter": "norene", + "rshares": "60127610" + }, + { + "voter": "drinkthemilk", + "rshares": "50264719" + }, + { + "voter": "getmyhand", + "rshares": "50259197" + }, + { + "voter": "lookatme", + "rshares": "50254033" + }, + { + "voter": "spinx", + "rshares": "51239204" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 31, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "url": "/life/@spinx/bike-chained-to-a-tree", + "blacklists": [] + }, + { + "post_id": 773395, + "author": "craigwilliamz", + "permlink": "re-hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast-20160828t023230", + "category": "introduceyourself", + "title": "RE: Hello Steemit - I'd Like to Introduce Myself and a Short History of Becoming a Cooking Enthusiast", + "body": "Welcome to Steemit! If you would like to see statistics of any post on Steemit, you can use Steemd.com. I have made a bookmark for your convenience in accessing Steemd. https://steemit.com/steemd/@craigwilliamz/steemd-statistics-bookmark-for-easy-access-to-steemd", + "json_metadata": {}, + "created": "2016-08-28T02:32:30", + "updated": "2016-08-28T02:32:30", + "depth": 1, + "children": 1, + "net_rshares": 1015475187636, + "is_paidout": false, + "payout_at": "2016-09-28T03:21:15", + "payout": 0.633, + "pending_payout_value": "0.633 HBD", + "author_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "active_votes": [ + { + "voter": "james212", + "rshares": "1015475187636" + } + ], + "author_reputation": 25.0, + "stats": { + "hide": false, + "gray": true, + "total_votes": 1, + "flag_weight": 0.0 + }, + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000, + "parent_author": "nestorstable", + "parent_permlink": "hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast", + "url": "/introduceyourself/@nestorstable/hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast#@craigwilliamz/re-hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast-20160828t023230", + "blacklists": [] + } + ] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout.orig.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout.orig.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout.orig.json @@ -0,0 +1 @@ +[] diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout_comments.orig.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout_comments.orig.json new file mode 100644 index 00000000..cacf385b --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout_comments.orig.json @@ -0,0 +1,3681 @@ +[ + { + "active_votes": [ + { + "rshares": "1294968367268", + "voter": "smooth" + }, + { + "rshares": "28860902224", + "voter": "anonymous" + }, + { + "rshares": "14409605494831", + "voter": "summon" + }, + { + "rshares": "40261554792719", + "voter": "blocktrades" + }, + { + "rshares": "3155750963782", + "voter": "lafona-miner" + }, + { + "rshares": "377906636658", + "voter": "lafona" + }, + { + "rshares": "1245475534803", + "voter": "silver" + }, + { + "rshares": "2875138885044", + "voter": "silversteem" + }, + { + "rshares": "992692841277", + "voter": "delegate.lafona" + }, + { + "rshares": "948645888607", + "voter": "liondani" + }, + { + "rshares": "314602171157", + "voter": "lafona5" + }, + { + "rshares": "3094244335", + "voter": "boy" + }, + { + "rshares": "3755939559", + "voter": "bue-witness" + }, + { + "rshares": "703615315", + "voter": "bunny" + }, + { + "rshares": "5751660885474", + "voter": "complexring" + }, + { + "rshares": "1644151280793", + "voter": "steemychicken1" + }, + { + "rshares": "53261984748", + "voter": "bue" + }, + { + "rshares": "1658441464", + "voter": "mini" + }, + { + "rshares": "213555429", + "voter": "moon" + }, + { + "rshares": "222747002001", + "voter": "smooth.witness" + }, + { + "rshares": "622045496", + "voter": "healthcare" + }, + { + "rshares": "947522117", + "voter": "daniel.pan" + }, + { + "rshares": "54127411451", + "voter": "donkeypong" + }, + { + "rshares": "1759901644", + "voter": "nexusdev" + }, + { + "rshares": "351517418935", + "voter": "ash" + }, + { + "rshares": "282481919881", + "voter": "chitty" + }, + { + "rshares": "287957469", + "voter": "helen.tan" + }, + { + "rshares": "25822874684", + "voter": "steampunkpowered" + }, + { + "rshares": "10283360038", + "voter": "ervin-lemark" + }, + { + "rshares": "24290958657", + "voter": "instructor2121" + }, + { + "rshares": "7456570912", + "voter": "jerome-colley" + }, + { + "rshares": "491733834025", + "voter": "kevinwong" + }, + { + "rshares": "41463145095", + "voter": "nphacker" + }, + { + "rshares": "367830728600", + "voter": "blakemiles84" + }, + { + "rshares": "45912096650", + "voter": "ranko-k" + }, + { + "rshares": "23227592357", + "voter": "treeleaves" + }, + { + "rshares": "63707549495", + "voter": "kanoptx" + }, + { + "rshares": "31690086400", + "voter": "drinkzya" + }, + { + "rshares": "73022585138", + "voter": "eric-boucher" + }, + { + "rshares": "109636482823", + "voter": "kenny-crane" + }, + { + "rshares": "61288399197", + "voter": "thecryptodrive" + }, + { + "rshares": "117389810764", + "voter": "bravenewcoin" + }, + { + "rshares": "449244898326", + "voter": "infovore" + }, + { + "rshares": "128017998380", + "voter": "omarb" + }, + { + "rshares": "36007650081", + "voter": "cheftony" + }, + { + "rshares": "32961119819", + "voter": "cryptoiskey" + }, + { + "rshares": "71452016003", + "voter": "discombobulated" + }, + { + "rshares": "5121130339", + "voter": "expanse" + }, + { + "rshares": "25440234426", + "voter": "hitmeasap" + }, + { + "rshares": "13382892819", + "voter": "stealthtrader" + }, + { + "rshares": "24939158057", + "voter": "tcfxyz" + }, + { + "rshares": "103574158909", + "voter": "cdubendo" + }, + { + "rshares": "7881221000", + "voter": "spiz0r" + }, + { + "rshares": "112751020008", + "voter": "jacor" + }, + { + "rshares": "14190084617", + "voter": "halo" + }, + { + "rshares": "159492592967", + "voter": "jesta" + }, + { + "rshares": "33597624083", + "voter": "toxonaut" + }, + { + "rshares": "7028930352", + "voter": "btcupload" + }, + { + "rshares": "17438618169", + "voter": "anduweb" + }, + { + "rshares": "75155947399", + "voter": "demotruk" + }, + { + "rshares": "3697940497", + "voter": "maximkichev" + }, + { + "rshares": "10377897348", + "voter": "nippel66" + }, + { + "rshares": "7753599028", + "voter": "magz8716" + }, + { + "rshares": "1388783807", + "voter": "cryptocurrency1" + }, + { + "rshares": "115874018", + "voter": "gosha" + }, + { + "rshares": "505816971", + "voter": "raymonjohnstone" + }, + { + "rshares": "124907433", + "voter": "biternator" + }, + { + "rshares": "3090635988", + "voter": "willbeonceagain8" + }, + { + "rshares": "54497070629", + "voter": "arcurus" + }, + { + "rshares": "4745090234", + "voter": "bakingengineer" + }, + { + "rshares": "36689125715", + "voter": "claudiop63" + }, + { + "rshares": "16359584188", + "voter": "noodles.pan" + }, + { + "rshares": "10399150907", + "voter": "npl77" + }, + { + "rshares": "108836213411", + "voter": "steemdrive" + }, + { + "rshares": "11060114610", + "voter": "bergy" + }, + { + "rshares": "2050213474", + "voter": "theprophet0" + }, + { + "rshares": "295915630", + "voter": "theprophet" + }, + { + "rshares": "38819548773", + "voter": "allasyummyfood" + }, + { + "rshares": "461449860", + "voter": "neddykelly" + }, + { + "rshares": "1579699570", + "voter": "minion" + }, + { + "rshares": "77473387847", + "voter": "sirwinchester" + }, + { + "rshares": "61385527", + "voter": "sijoittaja" + }, + { + "rshares": "4190219999", + "voter": "tom77" + }, + { + "rshares": "125663528", + "voter": "nelkel" + }, + { + "rshares": "148930176", + "voter": "letsgo.asino" + }, + { + "rshares": "14968711124", + "voter": "hilarski" + }, + { + "rshares": "58226150", + "voter": "ajavajive" + }, + { + "rshares": "253750401751", + "voter": "oldtimer" + }, + { + "rshares": "57886832", + "voter": "shootetxd" + }, + { + "rshares": "191216226", + "voter": "comcentrate" + }, + { + "rshares": "13741567322", + "voter": "antoinev" + }, + { + "rshares": "61289460", + "voter": "jtstreetman" + }, + { + "rshares": "5100395909", + "voter": "io-io-io" + }, + { + "rshares": "54884363", + "voter": "ian89" + }, + { + "rshares": "50351260", + "voter": "chuckleberry" + }, + { + "rshares": "349611227", + "voter": "panther" + }, + { + "rshares": "59354601485", + "voter": "tracemayer" + }, + { + "rshares": "51884666", + "voter": "brs" + }, + { + "rshares": "130434883", + "voter": "bitcoinparadise" + }, + { + "rshares": "52571606", + "voter": "bellphorion" + }, + { + "rshares": "53224648", + "voter": "yanikkoval" + }, + { + "rshares": "51136429", + "voter": "infotoday" + }, + { + "rshares": "50977036", + "voter": "tldr" + }, + { + "rshares": "50797377", + "voter": "bo-ro" + } + ], + "author": "smooth", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I will sponsor an additional 2000 SBD toward this campaign in addition to my vote on the post, plus any rewards on this comment.", + "category": "steemit", + "children": 31, + "created": "2016-08-24T16:43:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 77833655363992, + "parent_author": "steemdrive", + "parent_permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream", + "payout": 852.555, + "payout_at": "2016-09-24T19:41:42", + "pending_payout_value": "852.555 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t164320100z", + "post_id": 733019, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 104 + }, + "title": "RE: Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!", + "updated": "2016-08-24T16:43:21", + "url": "/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream#@smooth/re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t164320100z" + }, + { + "active_votes": [ + { + "rshares": "30296554046147", + "voter": "smooth" + }, + { + "rshares": "28854877817", + "voter": "anonymous" + }, + { + "rshares": "14368089454321", + "voter": "summon" + }, + { + "rshares": "3183112492799", + "voter": "lafona-miner" + }, + { + "rshares": "377387227766", + "voter": "lafona" + }, + { + "rshares": "790314875205", + "voter": "delegate.lafona" + }, + { + "rshares": "314383371770", + "voter": "lafona5" + }, + { + "rshares": "1851434600", + "voter": "boy" + }, + { + "rshares": "2247039689", + "voter": "bue-witness" + }, + { + "rshares": "425455109", + "voter": "bunny" + }, + { + "rshares": "31378635899", + "voter": "bue" + }, + { + "rshares": "992487616", + "voter": "mini" + }, + { + "rshares": "127981753", + "voter": "moon" + }, + { + "rshares": "6510505164", + "voter": "sean0010" + }, + { + "rshares": "5308002434389", + "voter": "smooth.witness" + }, + { + "rshares": "342922310367", + "voter": "officialfuzzy" + }, + { + "rshares": "802009404542", + "voter": "cass" + }, + { + "rshares": "369247770", + "voter": "healthcare" + }, + { + "rshares": "537460001", + "voter": "daniel.pan" + }, + { + "rshares": "172530341", + "voter": "helen.tan" + }, + { + "rshares": "410778394570", + "voter": "chryspano" + }, + { + "rshares": "113345677592", + "voter": "forrestwillie" + }, + { + "rshares": "5390642912", + "voter": "kingjohal" + }, + { + "rshares": "346429583563", + "voter": "blakemiles84" + }, + { + "rshares": "46740932510", + "voter": "ranko-k" + }, + { + "rshares": "18522231224", + "voter": "allahhh" + }, + { + "rshares": "398461524", + "voter": "rafikichi" + }, + { + "rshares": "1421853753930", + "voter": "sean-king" + }, + { + "rshares": "65040641602", + "voter": "charleshosk" + }, + { + "rshares": "739465956", + "voter": "mammasitta" + }, + { + "rshares": "17651204278", + "voter": "acassity" + }, + { + "rshares": "480475374", + "voter": "chamviet" + }, + { + "rshares": "239694404", + "voter": "concave" + }, + { + "rshares": "1386708550", + "voter": "vi1son" + }, + { + "rshares": "1798938485", + "voter": "gazm" + }, + { + "rshares": "19465926763", + "voter": "ausbitbank" + }, + { + "rshares": "2622666444", + "voter": "egjoshslim" + }, + { + "rshares": "6373898691", + "voter": "perwest" + }, + { + "rshares": "312475355", + "voter": "lioliomir" + }, + { + "rshares": "33482946725", + "voter": "alexfortin" + }, + { + "rshares": "5612628842", + "voter": "r33drum" + }, + { + "rshares": "24373102947", + "voter": "igster" + }, + { + "rshares": "51538128557", + "voter": "sephiroth" + }, + { + "rshares": "5989513477", + "voter": "cryptosi" + }, + { + "rshares": "72131208610", + "voter": "ntomaino" + }, + { + "rshares": "9493199624", + "voter": "domavila" + }, + { + "rshares": "107006946999", + "voter": "bonface" + }, + { + "rshares": "12353093513", + "voter": "grolelo" + }, + { + "rshares": "32088583721", + "voter": "streetstyle" + }, + { + "rshares": "54299398751", + "voter": "demotruk" + }, + { + "rshares": "45617820200", + "voter": "arcurus" + }, + { + "rshares": "211677715438", + "voter": "johnsmith" + }, + { + "rshares": "17146066951", + "voter": "team-leibniz" + }, + { + "rshares": "22277193587", + "voter": "solidgold" + }, + { + "rshares": "143431864", + "voter": "borntowin" + }, + { + "rshares": "609312338", + "voter": "metaflute" + }, + { + "rshares": "1125051142", + "voter": "bofadeez" + }, + { + "rshares": "100022771", + "voter": "darkstar1o9" + }, + { + "rshares": "57276142", + "voter": "pgarcgo" + }, + { + "rshares": "328256060", + "voter": "alifton" + }, + { + "rshares": "63775214", + "voter": "laissezfairedr" + }, + { + "rshares": "66697195", + "voter": "rubenalexander" + }, + { + "rshares": "7960548410", + "voter": "kyriacos" + }, + { + "rshares": "376001676", + "voter": "manicmidnight" + }, + { + "rshares": "58682093", + "voter": "tradz" + }, + { + "rshares": "58914198", + "voter": "brandon-rosano" + }, + { + "rshares": "38710389758", + "voter": "simon-says" + }, + { + "rshares": "57980741", + "voter": "alaqrab" + }, + { + "rshares": "56436574", + "voter": "saintbitts" + }, + { + "rshares": "55261899", + "voter": "shakimclark7" + }, + { + "rshares": "75377250", + "voter": "powercouple" + }, + { + "rshares": "55618704", + "voter": "jaypillagara" + }, + { + "rshares": "53912690", + "voter": "shax" + }, + { + "rshares": "53846159", + "voter": "wulfmeister" + }, + { + "rshares": "53707619", + "voter": "ct-gurus" + }, + { + "rshares": "53333238", + "voter": "donzy" + }, + { + "rshares": "53210703", + "voter": "frostwalker" + } + ], + "author": "charlieshrem", + "author_payout_value": "0.000 HBD", + "author_reputation": 67.32, + "beneficiaries": [], + "blacklists": [], + "body": "I have a series of posts I'm writing now about socioeconomic observations in prison. If the Steemit community likes it, Ill post it here exclusively.", + "category": "introduceyourself", + "children": 21, + "created": "2016-08-16T18:55:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "tags": [ + "introduceyourself" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 59091129639172, + "parent_author": "dennygalindo", + "parent_permlink": "re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185037477z", + "payout": 545.728, + "payout_at": "2016-09-16T21:13:42", + "pending_payout_value": "545.728 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dennygalindo-re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185524881z", + "post_id": 630864, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 77 + }, + "title": "RE: Charlie Shrem Is Now On Steemit!", + "updated": "2016-08-16T18:55:27", + "url": "/introduceyourself/@charlieshrem/charlie-shrem-is-now-on-steemit#@charlieshrem/re-dennygalindo-re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185524881z" + }, + { + "active_votes": [ + { + "rshares": "29186049220380", + "voter": "berniesanders" + }, + { + "rshares": "623996958321", + "voter": "justin" + }, + { + "rshares": "5881098331094", + "voter": "abit" + }, + { + "rshares": "4855865727368", + "voter": "nextgencrypto" + }, + { + "rshares": "2454399166148", + "voter": "adm" + }, + { + "rshares": "2467985030", + "voter": "boy" + }, + { + "rshares": "2995309863", + "voter": "bue-witness" + }, + { + "rshares": "567154894", + "voter": "bunny" + }, + { + "rshares": "41750226248", + "voter": "bue" + }, + { + "rshares": "1323006745", + "voter": "mini" + }, + { + "rshares": "170612336", + "voter": "moon" + }, + { + "rshares": "664278529380", + "voter": "pfunk" + }, + { + "rshares": "490800486", + "voter": "healthcare" + }, + { + "rshares": "709305835", + "voter": "daniel.pan" + }, + { + "rshares": "229997595", + "voter": "helen.tan" + }, + { + "rshares": "130506632815", + "voter": "kaylinart" + }, + { + "rshares": "106890789634", + "voter": "anyx" + }, + { + "rshares": "9971301073", + "voter": "senseiteekay" + }, + { + "rshares": "9400027589", + "voter": "shredlord" + }, + { + "rshares": "61646469732", + "voter": "cheetah" + }, + { + "rshares": "219824678620", + "voter": "originate" + }, + { + "rshares": "685101796", + "voter": "metaflute" + }, + { + "rshares": "394148198", + "voter": "theconnoisseur" + }, + { + "rshares": "32404401324", + "voter": "thecurator" + }, + { + "rshares": "582451688", + "voter": "alorya" + }, + { + "rshares": "1059033052", + "voter": "seraph" + }, + { + "rshares": "16011014560", + "voter": "someguy123" + }, + { + "rshares": "454752565", + "voter": "celestial" + }, + { + "rshares": "188226473", + "voter": "andyinspace" + } + ], + "author": "adm", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "This is an article spun to avoid automatic plagiarism detection.\nHere is the source:\nhttp://health.learninginfo.org/muscle-building-tips.htm", + "category": "workout", + "children": 0, + "created": "2016-08-15T22:50:42", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "links": [ + "http://health.learninginfo.org/muscle-building-tips.htm" + ], + "tags": [ + "workout" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 44306411360842, + "parent_author": "dopezzz123", + "parent_permlink": "why-muscles-get-sore", + "payout": 312.617, + "payout_at": "2016-09-15T23:59:09", + "pending_payout_value": "312.617 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dopezzz123-why-muscles-get-sore-20160815t225039946z", + "post_id": 619751, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 29 + }, + "title": "RE: Why Muscles Get Sore", + "updated": "2016-08-15T22:50:42", + "url": "/workout/@dopezzz123/why-muscles-get-sore#@adm/re-dopezzz123-why-muscles-get-sore-20160815t225039946z" + }, + { + "active_votes": [ + { + "rshares": "40261554792719", + "voter": "blocktrades" + }, + { + "rshares": "48124579959", + "voter": "full-steem-ahead" + }, + { + "rshares": "282481919881", + "voter": "chitty" + }, + { + "rshares": "25822874684", + "voter": "steampunkpowered" + }, + { + "rshares": "10283360038", + "voter": "ervin-lemark" + }, + { + "rshares": "24290958657", + "voter": "instructor2121" + }, + { + "rshares": "62458381858", + "voter": "kanoptx" + }, + { + "rshares": "71100938161", + "voter": "eric-boucher" + }, + { + "rshares": "61288297136", + "voter": "thecryptodrive" + }, + { + "rshares": "117389810764", + "voter": "bravenewcoin" + }, + { + "rshares": "5121130339", + "voter": "expanse" + }, + { + "rshares": "7881221000", + "voter": "spiz0r" + }, + { + "rshares": "10377897348", + "voter": "nippel66" + }, + { + "rshares": "49642777135", + "voter": "thylbom" + }, + { + "rshares": "115874018", + "voter": "gosha" + }, + { + "rshares": "37453482500", + "voter": "claudiop63" + }, + { + "rshares": "4096208838", + "voter": "smailer" + }, + { + "rshares": "8375659361", + "voter": "jamesbrown" + }, + { + "rshares": "108836213411", + "voter": "steemdrive" + }, + { + "rshares": "195118598", + "voter": "comcentrate" + }, + { + "rshares": "61289460", + "voter": "jtstreetman" + }, + { + "rshares": "56939384", + "voter": "dcat" + }, + { + "rshares": "130434883", + "voter": "bitcoinparadise" + }, + { + "rshares": "50468741", + "voter": "bellphorion" + }, + { + "rshares": "50353356", + "voter": "takemyfive" + } + ], + "author": "steemdrive", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "
[![vote-Ohare.jpg](https://s19.postimg.org/vpowej1g3/vote_Ohare.jpg)](http://www.steemit.com/@steemdrive)
", + "category": "steemit", + "children": 0, + "created": "2016-08-24T16:23:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s19.postimg.org/vpowej1g3/vote_Ohare.jpg" + ], + "tags": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 41197240982229, + "parent_author": "steemdrive", + "parent_permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream", + "payout": 249.516, + "payout_at": "2016-09-24T19:41:42", + "pending_payout_value": "249.516 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t162300868z", + "post_id": 732832, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 25 + }, + "title": "RE: Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!", + "updated": "2016-08-24T16:23:00", + "url": "/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream#@steemdrive/re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t162300868z" + }, + { + "active_votes": [ + { + "rshares": "14824916004472", + "voter": "smooth" + }, + { + "rshares": "28851426273", + "voter": "anonymous" + }, + { + "rshares": "14660905118594", + "voter": "summon" + }, + { + "rshares": "5645842591970", + "voter": "kushed" + }, + { + "rshares": "3085011784", + "voter": "boy" + }, + { + "rshares": "3744178588", + "voter": "bue-witness" + }, + { + "rshares": "708945412", + "voter": "bunny" + }, + { + "rshares": "52221628833", + "voter": "bue" + }, + { + "rshares": "1653774577", + "voter": "mini" + }, + { + "rshares": "213265420", + "voter": "moon" + }, + { + "rshares": "733758489177", + "voter": "cass" + }, + { + "rshares": "613502402", + "voter": "healthcare" + }, + { + "rshares": "888428594", + "voter": "daniel.pan" + }, + { + "rshares": "287496994", + "voter": "helen.tan" + }, + { + "rshares": "5519141498", + "voter": "spaninv" + }, + { + "rshares": "151618531853", + "voter": "killerstorm" + }, + { + "rshares": "13114605961", + "voter": "facer" + }, + { + "rshares": "137573239907", + "voter": "thedashguy" + }, + { + "rshares": "586358175", + "voter": "mammasitta" + }, + { + "rshares": "128697036640", + "voter": "chhayll" + }, + { + "rshares": "269379546", + "voter": "thealexander" + }, + { + "rshares": "13452877972", + "voter": "bitshares101" + }, + { + "rshares": "51529058014", + "voter": "sephiroth" + }, + { + "rshares": "5729767206", + "voter": "inti" + }, + { + "rshares": "14254612849", + "voter": "deanero" + }, + { + "rshares": "1646059150", + "voter": "belkins" + }, + { + "rshares": "116253105", + "voter": "darkstar1o9" + }, + { + "rshares": "61980222", + "voter": "breastsono" + }, + { + "rshares": "2359201317", + "voter": "matherly" + }, + { + "rshares": "897505702", + "voter": "harand" + }, + { + "rshares": "17530292877", + "voter": "shenanigator" + }, + { + "rshares": "4300748049", + "voter": "bitbutter" + }, + { + "rshares": "54634677", + "voter": "stephenm" + } + ], + "author": "steemapp", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Hi, @smooth this is @str11ngfello, the iOS developer on Steemy. \n\nHere's my linked in profile ->\nhttps://www.linkedin.com/in/lynn-duke-097a724\n\n @cyonic here as a followup edit, my linkedin profile here:\nhttps://www.linkedin.com/in/johnelliotwhite\n\nGive me a few moments and I'll add a blurb to my linked in profile that references Steemy. Look for it towards the top. \n\nHere is a quick vid I made of Steemy at the request of many users. \n\nhttps://youtu.be/kHbOHuXQWg4\n\nHere's to hoping we can prove ourselves a bit. STEEM ON!", + "category": "steemit", + "children": 18, + "created": "2016-08-16T04:52:51", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://youtu.be/kHbOHuXQWg4" + ], + "tags": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 36507001147810, + "parent_author": "smooth", + "parent_permlink": "re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t042406700z", + "payout": 227.842, + "payout_at": "2016-09-16T04:46:15", + "pending_payout_value": "227.842 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t045252952z", + "post_id": 622869, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 33 + }, + "title": "RE: [Introducing Steemy] - Fully Native iOS/Android apps for STEEM", + "updated": "2016-08-16T14:16:24", + "url": "/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem#@steemapp/re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t045252952z" + }, + { + "active_votes": [ + { + "rshares": "17735818038199", + "voter": "itsascam" + }, + { + "rshares": "2091363547583", + "voter": "steemroller" + }, + { + "rshares": "17881645967595", + "voter": "steemed" + }, + { + "rshares": "2473129069", + "voter": "boy" + }, + { + "rshares": "3001847911", + "voter": "bue-witness" + }, + { + "rshares": "562495952", + "voter": "bunny" + }, + { + "rshares": "42273561181", + "voter": "bue" + }, + { + "rshares": "1325647967", + "voter": "mini" + }, + { + "rshares": "170794809", + "voter": "moon" + }, + { + "rshares": "115426377545", + "voter": "stan" + }, + { + "rshares": "497314258", + "voter": "healthcare" + }, + { + "rshares": "741745834", + "voter": "daniel.pan" + }, + { + "rshares": "230286157", + "voter": "helen.tan" + }, + { + "rshares": "17452286451", + "voter": "marklyford" + }, + { + "rshares": "-118201007", + "voter": "cyonic" + }, + { + "rshares": "1259875358", + "voter": "shadowspub" + } + ], + "author": "michaelx", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "It doesn't matter at all in the big picture, when company accounts are used to censor any conversation (as they have been doing and will likely continue to do) they please, regardless of community voting consensus. \n\nThis has already been proven by the actions of management using those accounts for this purpose.\n\nAnyone believing Steemit as it exists currently to be a censorship free platform for free speech is sadly mistaken.", + "category": "philosophy", + "children": 0, + "created": "2016-08-20T21:35:15", + "curator_payout_value": "0.000 HBD", + "depth": 5, + "is_paidout": false, + "json_metadata": { + "tags": [ + "philosophy" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 37894124714862, + "parent_author": "stellabelle", + "parent_permlink": "re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t150054378z", + "payout": 218.456, + "payout_at": "2016-09-20T07:22:48", + "pending_payout_value": "218.456 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-stellabelle-re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t213500128z", + "post_id": 687886, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 16 + }, + "title": "RE: Our Corrupt Sense of Fairness", + "updated": "2016-08-20T21:35:15", + "url": "/philosophy/@dantheman/our-corrupt-sense-of-fairness#@michaelx/re-stellabelle-re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t213500128z" + }, + { + "active_votes": [ + { + "rshares": "29864685009305", + "voter": "berniesanders" + }, + { + "rshares": "189574335690", + "voter": "friend2" + }, + { + "rshares": "639212703934", + "voter": "justin" + }, + { + "rshares": "4968734358586", + "voter": "nextgencrypto" + }, + { + "rshares": "3084986672", + "voter": "boy" + }, + { + "rshares": "3744144508", + "voter": "bue-witness" + }, + { + "rshares": "708943618", + "voter": "bunny" + }, + { + "rshares": "52193349399", + "voter": "bue" + }, + { + "rshares": "1653762021", + "voter": "mini" + }, + { + "rshares": "213265420", + "voter": "moon" + }, + { + "rshares": "613500608", + "voter": "healthcare" + }, + { + "rshares": "886632294", + "voter": "daniel.pan" + }, + { + "rshares": "287496994", + "voter": "helen.tan" + }, + { + "rshares": "154121482815", + "voter": "jamtaylor" + }, + { + "rshares": "130134738142", + "voter": "thedashguy" + }, + { + "rshares": "39444938394", + "voter": "tiffjane" + }, + { + "rshares": "851256740", + "voter": "cousteau" + }, + { + "rshares": "5673774261", + "voter": "meesterboom" + }, + { + "rshares": "33726244522", + "voter": "condra" + }, + { + "rshares": "718346410", + "voter": "birdie" + }, + { + "rshares": "20128929530", + "voter": "rznag" + }, + { + "rshares": "51125341014", + "voter": "gomeravibz" + }, + { + "rshares": "1954050724", + "voter": "t3ran13" + }, + { + "rshares": "2194116353", + "voter": "xroni" + }, + { + "rshares": "403314436", + "voter": "theconnoisseur" + }, + { + "rshares": "11535444605", + "voter": "queenmountain" + }, + { + "rshares": "127023220", + "voter": "harrycoins" + }, + { + "rshares": "61084860", + "voter": "mndstruct" + }, + { + "rshares": "33194586794", + "voter": "thecurator" + }, + { + "rshares": "230160266", + "voter": "mefisto" + }, + { + "rshares": "1059907708", + "voter": "iamrohitkgupta" + }, + { + "rshares": "71181331", + "voter": "emilyjane" + }, + { + "rshares": "133481361", + "voter": "mweich" + }, + { + "rshares": "50281530", + "voter": "topslim" + } + ], + "author": "condra", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Congrats to everyone, and forgive me if you didn't place. It wasn't easy to omit so many amazing shots. The standard was very high and there were hundreds of submissions. Huge love for all the Steemit #photography community.", + "category": "steemitphotochallenge", + "children": 8, + "created": "2016-08-15T14:23:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "photography", + "steemitphotochallenge" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 36212532174065, + "parent_author": "jamtaylor", + "parent_permlink": "steemit-photo-challenge-4-winners-announcement-guest-judge-condra", + "payout": 218.336, + "payout_at": "2016-09-15T23:37:45", + "pending_payout_value": "218.336 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t142348222z", + "post_id": 613425, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 34 + }, + "title": "RE: \ud83d\udcf7 Steemit Photo Challenge #4 \u2014 WINNERS ANNOUNCEMENT! Guest Judge: @condra", + "updated": "2016-08-15T14:23:27", + "url": "/steemitphotochallenge/@jamtaylor/steemit-photo-challenge-4-winners-announcement-guest-judge-condra#@condra/re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t142348222z" + }, + { + "active_votes": [ + { + "rshares": "29864685009305", + "voter": "berniesanders" + }, + { + "rshares": "639212703934", + "voter": "justin" + }, + { + "rshares": "4968734358586", + "voter": "nextgencrypto" + }, + { + "rshares": "2467989338", + "voter": "boy" + }, + { + "rshares": "2995315607", + "voter": "bue-witness" + }, + { + "rshares": "567154894", + "voter": "bunny" + }, + { + "rshares": "41754679519", + "voter": "bue" + }, + { + "rshares": "1653762021", + "voter": "mini" + }, + { + "rshares": "170612336", + "voter": "moon" + }, + { + "rshares": "490800486", + "voter": "healthcare" + }, + { + "rshares": "709305835", + "voter": "daniel.pan" + }, + { + "rshares": "229997595", + "voter": "helen.tan" + }, + { + "rshares": "147833075316", + "voter": "jamtaylor" + }, + { + "rshares": "33749012863", + "voter": "condra" + }, + { + "rshares": "8813120108", + "voter": "blinova" + }, + { + "rshares": "177253189627", + "voter": "blueorgy" + }, + { + "rshares": "7958656381", + "voter": "kristylynn" + }, + { + "rshares": "250542489", + "voter": "nat4ka" + }, + { + "rshares": "2869166387", + "voter": "dercoco" + }, + { + "rshares": "403314436", + "voter": "theconnoisseur" + }, + { + "rshares": "33194586794", + "voter": "thecurator" + } + ], + "author": "blueorgy", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "**Amazing Entries** once again this weekend! The talent here on steemit just keeps on growing with each #SteemitPhotoChallenge and I feel it's 100% a direct result of this **trending topic**. So be proud of your work and if you didn't make it into the **Top 3** don't even think about giving up, the computation is tuff and @condra had a difficult time deciding I'm sure.\n\n
\n\n**Honourable Mentions**\n\n @kristylynn I really enjoyed this photo! It reminded me of when I was a kid grabbing dandelions at every change and blowing them all over the place! My father absolutely hated this because they would end up growing all over his lawn. Great work with the depth and the color is very pleasing. Thank you for bring back some old memories.\n\n@minion I tried to capture a very similar shot during my little exploration last sunday morning. I of course failed to get such a crisp, captivating, and **Super Lush** photo if you can describ the vibrant green colors this way. Great job on capturing that moment right before the water droplet escapes the branch , not easy and patience is required. \n\n**Finalist**\n\n@bebecitosfotos This flower is epic! The clarity and brightness is spot on and even the viewed in post and at lower resolution it still comes off as perfectly in focus (always a very difficult thing to do while using Macro). The background is just muted enough to capture a actual backdrop while not taking away fro the foreground image. Excellent work.\n\n@dercoco What can I say about this one... how about **EYES**. I have always loved the reptile eye, Great Work.\n\n@mweich This is spot on! Being able to capture the pollen on the Bee's legs was a great feat I tell you that, while still keeping other expects and depths of the photo in great focus is even harder, very still hand you must have! The angle of the photo and the choice of background imagery defiantly gave this photo an edge when it came to being Macro. The background is often forgot when capturing with Macro even thought it plays such a big role, you seem to have a very good eye for it. And **Congratulations!** on taking First Place!\n\n
\n\nAgain I can't say it enough great job everyone, keep it up!\nCan't wait for next weekend's challenge @jamtaylor make it a good one ;)\n\nBlue", + "category": "steemitphotochallenge", + "children": 0, + "created": "2016-08-15T16:39:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "steemitphotochallenge" + ], + "users": [ + "kristylynn", + "minion", + "bebecitosfotos", + "dercoco", + "mweich", + "jamtaylor" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 35935996353857, + "parent_author": "jamtaylor", + "parent_permlink": "steemit-photo-challenge-4-winners-announcement-guest-judge-condra", + "payout": 215.088, + "payout_at": "2016-09-15T23:37:45", + "pending_payout_value": "215.088 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t163904911z", + "post_id": 615071, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 21 + }, + "title": "RE: \ud83d\udcf7 Steemit Photo Challenge #4 \u2014 WINNERS ANNOUNCEMENT! Guest Judge: @condra", + "updated": "2016-08-15T16:52:30", + "url": "/steemitphotochallenge/@jamtaylor/steemit-photo-challenge-4-winners-announcement-guest-judge-condra#@blueorgy/re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t163904911z" + }, + { + "active_votes": [ + { + "rshares": "29864685009305", + "voter": "berniesanders" + }, + { + "rshares": "639212703934", + "voter": "justin" + }, + { + "rshares": "4968734358586", + "voter": "nextgencrypto" + }, + { + "rshares": "11700424464", + "voter": "by24seven" + }, + { + "rshares": "18794778971", + "voter": "ozzy-vega" + }, + { + "rshares": "106925555861", + "voter": "anyx" + }, + { + "rshares": "278001908", + "voter": "mirrax" + }, + { + "rshares": "17506904849", + "voter": "keithsmih" + }, + { + "rshares": "20129459504", + "voter": "cheetah" + }, + { + "rshares": "100129802", + "voter": "cheetah33" + }, + { + "rshares": "403314436", + "voter": "theconnoisseur" + }, + { + "rshares": "100111679", + "voter": "cheetah34" + }, + { + "rshares": "33194586794", + "voter": "thecurator" + }, + { + "rshares": "198033574", + "voter": "alorya" + }, + { + "rshares": "360071237", + "voter": "seraph" + }, + { + "rshares": "154615872", + "voter": "celestial" + } + ], + "author": "cheetah", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Hi! I am a content-detection robot. This post is to help manual curators; I have NOT flagged you.\nHere is similar content:\nhttp://www.youtube.com/watch?v=Jetfhhkg_YU", + "category": "blocktalk", + "children": 4, + "created": "2016-08-15T19:46:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 35682478060776, + "parent_author": "blocktalk", + "parent_permlink": "blocktalk-with-nexus-colin-cantrell-question-thread", + "payout": 212.366, + "payout_at": "2016-09-16T00:01:18", + "pending_payout_value": "212.366 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-blocktalk-with-nexus-colin-cantrell-question-thread-20160815t194601", + "post_id": 617412, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 16 + }, + "title": "RE: #Blocktalk with Nexus' Colin Cantrell [Question Thread]", + "updated": "2016-08-15T19:46:09", + "url": "/blocktalk/@blocktalk/blocktalk-with-nexus-colin-cantrell-question-thread#@cheetah/re-blocktalk-with-nexus-colin-cantrell-question-thread-20160815t194601" + }, + { + "active_votes": [ + { + "rshares": "17387563883098", + "voter": "itsascam" + }, + { + "rshares": "2050320927937", + "voter": "steemroller" + }, + { + "rshares": "17506821189546", + "voter": "steemed" + }, + { + "rshares": "2472687085", + "voter": "boy" + }, + { + "rshares": "3001252537", + "voter": "bue-witness" + }, + { + "rshares": "562430414", + "voter": "bunny" + }, + { + "rshares": "42191835467", + "voter": "bue" + }, + { + "rshares": "1325422094", + "voter": "mini" + }, + { + "rshares": "170789230", + "voter": "moon" + }, + { + "rshares": "497255693", + "voter": "healthcare" + }, + { + "rshares": "737466177", + "voter": "daniel.pan" + }, + { + "rshares": "230274999", + "voter": "helen.tan" + }, + { + "rshares": "5163277168", + "voter": "christoryan" + }, + { + "rshares": "4146107046", + "voter": "fishborne" + }, + { + "rshares": "100022771", + "voter": "darkstar1o9" + }, + { + "rshares": "58035101", + "voter": "aaronjwhite" + } + ], + "author": "knircky", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Nope a stock is not a ponzu scheme and steem is not either.\n\nI am sick of people that cannot understand how things calling them Ponzi schemes, so they can sound smarter than they are.", + "category": "steemit", + "children": 10, + "created": "2016-08-20T03:22:36", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "tags": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 37005362856363, + "parent_author": "gmalhotra", + "parent_permlink": "re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t025813753z", + "payout": 210.101, + "payout_at": "2016-09-20T07:57:42", + "pending_payout_value": "210.101 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gmalhotra-re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t032236858z", + "post_id": 678887, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 16 + }, + "title": "RE: Is Bitcoin a Ponzi too? A Simple Explanation about Where Does Money Come From for Dummies", + "updated": "2016-08-20T03:22:36", + "url": "/steemit/@clayop/is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies#@knircky/re-gmalhotra-re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t032236858z" + }, + { + "active_votes": [ + { + "rshares": "29186049220380", + "voter": "berniesanders" + }, + { + "rshares": "623996958321", + "voter": "justin" + }, + { + "rshares": "4855865727368", + "voter": "nextgencrypto" + }, + { + "rshares": "154146763309", + "voter": "jamtaylor" + }, + { + "rshares": "-5787205072", + "voter": "zebbra2014" + }, + { + "rshares": "106890789634", + "voter": "anyx" + }, + { + "rshares": "9733889143", + "voter": "senseiteekay" + }, + { + "rshares": "9400027589", + "voter": "shredlord" + }, + { + "rshares": "61646469732", + "voter": "cheetah" + }, + { + "rshares": "219824678620", + "voter": "originate" + }, + { + "rshares": "685101796", + "voter": "metaflute" + }, + { + "rshares": "394148198", + "voter": "theconnoisseur" + }, + { + "rshares": "32404401324", + "voter": "thecurator" + }, + { + "rshares": "16011014560", + "voter": "someguy123" + }, + { + "rshares": "188226473", + "voter": "andyinspace" + } + ], + "author": "anyx", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "This user is a serial plagiarist who has taken to spinning articles to plagiarize, instead of providing sources and discussion.\n\n!cheetah ban", + "category": "workout", + "children": 1, + "created": "2016-08-15T22:56:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "workout" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 35271450211375, + "parent_author": "dopezzz123", + "parent_permlink": "why-muscles-get-sore", + "payout": 208.151, + "payout_at": "2016-09-15T23:59:09", + "pending_payout_value": "208.151 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dopezzz123-why-muscles-get-sore-20160815t225638685z", + "post_id": 619811, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 15 + }, + "title": "RE: Why Muscles Get Sore", + "updated": "2016-08-15T22:56:39", + "url": "/workout/@dopezzz123/why-muscles-get-sore#@anyx/re-dopezzz123-why-muscles-get-sore-20160815t225638685z" + }, + { + "active_votes": [ + { + "rshares": "17387563883098", + "voter": "itsascam" + }, + { + "rshares": "2478143633692", + "voter": "blocktrades" + }, + { + "rshares": "17508649345673", + "voter": "steemed" + }, + { + "rshares": "2472598979", + "voter": "boy" + }, + { + "rshares": "3001139259", + "voter": "bue-witness" + }, + { + "rshares": "562419226", + "voter": "bunny" + }, + { + "rshares": "42178757456", + "voter": "bue" + }, + { + "rshares": "1325381537", + "voter": "mini" + }, + { + "rshares": "170789230", + "voter": "moon" + }, + { + "rshares": "497247302", + "voter": "healthcare" + }, + { + "rshares": "737445199", + "voter": "daniel.pan" + }, + { + "rshares": "230273601", + "voter": "helen.tan" + }, + { + "rshares": "38894121671", + "voter": "claudiop63" + }, + { + "rshares": "7143405548", + "voter": "goose" + } + ], + "author": "thylbom", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I definitely agree that the password recovery problem is a good one to work on. People who have been involved in crypto for some time are almost instinctively aware of the importance of safeguarding private keys, but \"mainstream\" adopters are accustomed to a world of hand-holding where the powers that be can bail you out if you are careless, stupid, forgetful or unlucky. If a method can be devised to facilitate recovery without sacrificing security, it can avoid problems of negative user experience that could hurt the platform's prospects for widespread adaption.", + "category": "witness-category", + "children": 1, + "created": "2016-08-19T21:34:42", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "witness-category" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 37471570441471, + "parent_author": "blocktrades", + "parent_permlink": "blocktrades-witness-report-for-3rd-week-of-august", + "payout": 204.392, + "payout_at": "2016-09-20T02:41:45", + "pending_payout_value": "204.392 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-blocktrades-blocktrades-witness-report-for-3rd-week-of-august-20160819t213441316z", + "post_id": 675843, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 14 + }, + "title": "RE: BlockTrades Witness Report for 3rd Week of August", + "updated": "2016-08-19T21:34:57", + "url": "/witness-category/@blocktrades/blocktrades-witness-report-for-3rd-week-of-august#@thylbom/re-blocktrades-blocktrades-witness-report-for-3rd-week-of-august-20160819t213441316z" + }, + { + "active_votes": [ + { + "rshares": "17735315160760", + "voter": "itsascam" + }, + { + "rshares": "17865766992651", + "voter": "steemed" + }, + { + "rshares": "3091007147", + "voter": "boy" + }, + { + "rshares": "3751778512", + "voter": "bue-witness" + }, + { + "rshares": "703064185", + "voter": "bunny" + }, + { + "rshares": "52778799199", + "voter": "bue" + }, + { + "rshares": "1656856120", + "voter": "mini" + }, + { + "rshares": "213490026", + "voter": "moon" + }, + { + "rshares": "621592296", + "voter": "healthcare" + }, + { + "rshares": "923609344", + "voter": "daniel.pan" + }, + { + "rshares": "287848982", + "voter": "helen.tan" + }, + { + "rshares": "27692743706", + "voter": "r4fken" + } + ], + "author": "r4fken", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Do I understand correctly that you're referencing the initial \"mining\" by a select group of devs and friends, resulting in \"overwhelming control\" by means of vests now?\nOr am I just imagining things? :)", + "category": "philosophy", + "children": 0, + "created": "2016-08-20T09:06:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "tags": [ + "philosophy" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 35692802942928, + "parent_author": "steemed", + "parent_permlink": "re-dantheman-our-corrupt-sense-of-fairness-20160820t035220528z", + "payout": 196.246, + "payout_at": "2016-09-20T07:22:48", + "pending_payout_value": "196.246 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z", + "post_id": 681168, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 12 + }, + "title": "RE: Our Corrupt Sense of Fairness", + "updated": "2016-08-20T09:07:12", + "url": "/philosophy/@dantheman/our-corrupt-sense-of-fairness#@r4fken/re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z" + }, + { + "active_votes": [ + { + "rshares": "727407423660", + "voter": "erath" + }, + { + "rshares": "644958517124", + "voter": "smooth" + }, + { + "rshares": "28855608662", + "voter": "anonymous" + }, + { + "rshares": "8486664643623", + "voter": "rainman" + }, + { + "rshares": "6370652360778", + "voter": "wackou" + }, + { + "rshares": "82613356260", + "voter": "friend5" + }, + { + "rshares": "6571978360124", + "voter": "roadscape" + }, + { + "rshares": "2470238755", + "voter": "boy" + }, + { + "rshares": "2998129153", + "voter": "bue-witness" + }, + { + "rshares": "567603623", + "voter": "bunny" + }, + { + "rshares": "41948298509", + "voter": "bue" + }, + { + "rshares": "1324164960", + "voter": "mini" + }, + { + "rshares": "170709221", + "voter": "moon" + }, + { + "rshares": "1813610822120", + "voter": "joseph" + }, + { + "rshares": "108871922542", + "voter": "smooth.witness" + }, + { + "rshares": "51208392605", + "voter": "twiceuponatime" + }, + { + "rshares": "139867989371", + "voter": "indominon" + }, + { + "rshares": "2942087618871", + "voter": "onceuponatime" + }, + { + "rshares": "728571343037", + "voter": "marginal" + }, + { + "rshares": "937174079758", + "voter": "cass" + }, + { + "rshares": "76036949216", + "voter": "vault" + }, + { + "rshares": "496873319", + "voter": "healthcare" + }, + { + "rshares": "725575461", + "voter": "daniel.pan" + }, + { + "rshares": "230145753", + "voter": "helen.tan" + }, + { + "rshares": "410807696946", + "voter": "chryspano" + }, + { + "rshares": "9521769889", + "voter": "acidyo" + }, + { + "rshares": "19196002726", + "voter": "mughat" + }, + { + "rshares": "47541496466", + "voter": "nphacker" + }, + { + "rshares": "3892379945", + "voter": "kennyskitchen" + }, + { + "rshares": "129268320437", + "voter": "schro" + }, + { + "rshares": "92995154682", + "voter": "thedashguy" + }, + { + "rshares": "213701132994", + "voter": "lukestokes" + }, + { + "rshares": "276395602", + "voter": "carlgetalada" + }, + { + "rshares": "28736613783", + "voter": "catchfire" + }, + { + "rshares": "5894409181", + "voter": "quintanilla" + }, + { + "rshares": "41089533337", + "voter": "bacchist" + }, + { + "rshares": "8483258053", + "voter": "cannav" + }, + { + "rshares": "65583674268", + "voter": "discombobulated" + }, + { + "rshares": "1259117194", + "voter": "chrisj" + }, + { + "rshares": "3704243578", + "voter": "krystle" + }, + { + "rshares": "14629758637", + "voter": "artakan" + }, + { + "rshares": "6012406044", + "voter": "phenom" + }, + { + "rshares": "17402129371", + "voter": "crazymumzysa" + }, + { + "rshares": "4183080661", + "voter": "bbrewer" + }, + { + "rshares": "35472659687", + "voter": "fatboy" + }, + { + "rshares": "3978086691", + "voter": "beanz" + }, + { + "rshares": "22725564707", + "voter": "solidgold" + }, + { + "rshares": "24344116072", + "voter": "jasonstaggers" + }, + { + "rshares": "6603057948", + "voter": "najoh" + }, + { + "rshares": "12993857503", + "voter": "capitalism" + }, + { + "rshares": "4872113322", + "voter": "satoshifpv" + }, + { + "rshares": "2818362970", + "voter": "aboundlessworld" + }, + { + "rshares": "2636752145", + "voter": "oflyhigh" + }, + { + "rshares": "3558963294", + "voter": "randyclemens" + }, + { + "rshares": "377494461", + "voter": "alifton" + }, + { + "rshares": "26914242849", + "voter": "bitcalm" + }, + { + "rshares": "1692339912", + "voter": "davidbrogan" + }, + { + "rshares": "56779364", + "voter": "negoshi" + }, + { + "rshares": "50997147", + "voter": "david.prochnow" + }, + { + "rshares": "50258926", + "voter": "doze49" + }, + { + "rshares": "61941319", + "voter": "fraterralph" + }, + { + "rshares": "52891748", + "voter": "onlyspeakslies" + } + ], + "author": "lukestokes", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "`dictatorship`, `hindenburg`, `titanic` and a hitler meme are all a bit too over the top for me. I'm glad you're voicing your concerns, but a \"Dan must be stopped\" call to action against the very person who created what we are all enjoying isn't (IMO) the best approach for having a respectful dialogue about the issue. It seems many are already discussing the issue on github and voicing their disapproval there. We'll see where it goes from here, and it's definitely something to keep an eye on. For that, I thank you, but I won't give you my vote on this post because I think the tone is counter productive to a rational, open conversation about the issue. I may be wrong and maybe a more alarmist tone is called for. As with many things, we shall see over time.", + "category": "steem", + "children": 38, + "created": "2016-08-17T04:58:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "steem" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 31034930180364, + "parent_author": "bacchist", + "parent_permlink": "dan-needs-to-be-stopped", + "payout": 164.026, + "payout_at": "2016-09-17T19:51:06", + "pending_payout_value": "164.026 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-bacchist-dan-needs-to-be-stopped-20160817t045803929z", + "post_id": 637043, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 62 + }, + "title": "RE: Dan needs to be stopped", + "updated": "2016-08-17T12:34:09", + "url": "/steem/@bacchist/dan-needs-to-be-stopped#@lukestokes/re-bacchist-dan-needs-to-be-stopped-20160817t045803929z" + }, + { + "active_votes": [ + { + "rshares": "28300878156066", + "voter": "dantheman" + }, + { + "rshares": "636585679281", + "voter": "smooth" + }, + { + "rshares": "6549727125575", + "voter": "wackou" + }, + { + "rshares": "3099954800", + "voter": "boy" + }, + { + "rshares": "3763461212", + "voter": "bue-witness" + }, + { + "rshares": "690406462", + "voter": "bunny" + }, + { + "rshares": "54138246944", + "voter": "bue" + }, + { + "rshares": "1661302953", + "voter": "mini" + }, + { + "rshares": "213684579", + "voter": "moon" + }, + { + "rshares": "251709705259", + "voter": "lovejoy" + }, + { + "rshares": "2511125853605", + "voter": "recursive" + }, + { + "rshares": "114398906816", + "voter": "smooth.witness" + }, + { + "rshares": "622843501", + "voter": "healthcare" + }, + { + "rshares": "967387415", + "voter": "daniel.pan" + }, + { + "rshares": "288174518", + "voter": "helen.tan" + }, + { + "rshares": "71291626568", + "voter": "eric-boucher" + }, + { + "rshares": "5223833163", + "voter": "christoryan" + }, + { + "rshares": "4999497773", + "voter": "zelgald1" + }, + { + "rshares": "63437792", + "voter": "tommycordero" + }, + { + "rshares": "11501604178", + "voter": "darrantrute" + }, + { + "rshares": "615797359", + "voter": "nebcat" + }, + { + "rshares": "381939549", + "voter": "kiwideb" + }, + { + "rshares": "444650943", + "voter": "floweroflife" + }, + { + "rshares": "807251193", + "voter": "kingarbinv" + }, + { + "rshares": "10978877529", + "voter": "skypilot" + }, + { + "rshares": "2610482432", + "voter": "robcichocki" + } + ], + "author": "recursive", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "> This state of being creates a paradox for those with aims to change the world. If you are at complete peace with the way things are, then what motive is there to change the world? On what basis should you choose to act? This is the very heart of economics, the study of human action. This is the root of my current internal conflict.\n\nMahayana (Great Vehicle) buddhism may have an answer to that apparent conflict you are experiencing. According to the Mahayana tradition, true enlightenment cannot be reached merely by cultivating inner peace and eliminating delusions and suffering in isolation of other people, because doing so remains a selfish endeavor that implies that one hasn't truly reached the state of selflessness that underlies enlightenment. \n\nInstead, at some point along the path to enlightenment, one realizes that one's true nature is that of being conscious: a pure form of benevolent consciousness without shape and boundaries, and that permeates all that is. At that point, one doesn't seek anymore to deliver from suffering that fictious \"ego\" entity that has long been identified as a delusion, but instead seeks to deliver all of consciousness from suffering, including all sentient beings. This intrinsic benevolence of consciousness is what we call \"compassion\", and is the central tenet of Mahayana tradition. It is both the ultimate goal and the mean to reach that goal. By cultivating compassion, one reveals his compassionate nature, and this compassion is what will eventually lead to a contradiction with the ego and materialistic delusions, and their dissolution. \n\nFrom that perspective, he who seeks enlightenment will first accept reality as it is, and reach what first feels as a form of blissful and permanent internal peace (this is typically what Hinayana / Small Vehicule buddhism think is enlightenment, and this includes some famous western self-help authors), but will soon realize that there is one type of suffering that transcends attachment and the delusion of self and that can't be addressed by meditation and spiritual practice alone but on the contrary become more and more sharp: the suffering of seeing others suffering within this reality. This is because suffering is a noble truth, a truth that can't be denied, ignored or accepted but simply acknowledged as being true. This leads to a paradox where embracing reality leads to embracing a form of suffering that can only be eliminated by altering reality which cannot be achieved if one simply embraces reality. The only solution to this apparent paradox is to realize that reality is impermanent and can be embraced while being altered. It should be accepted in the present so that one may live free from delusions and attachment, and reduce suffering to the prime denominator of the quintessential and universally experienced suffering of being alive, while being actively shaped with all one's will and energy into a future reality where other sentient beings suffer less.\n\nUnder the mahayana assumption that consciousness is intrinsically benevolent and unable not to experience compassion as it gets closer to enlightenment, acting with all one's will and energy against the corruption that permeates reality and increases suffering of other sentient beings is not only consistent, but the one and only true way to enlightenment.\n\nArguably, government is one such big chunk of pervasive corruption that has spread like weed in our consensual reality, and creates an inordinate amount of suffering. From that perspective, being anarchist isn't only a political view, it is a statement of compassion. Ask the Dalai Lama what he thinks about governments...", + "category": "philosophy", + "children": 1, + "created": "2016-09-01T18:48:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "philosophy" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 38538789887465, + "parent_author": "dantheman", + "parent_permlink": "why-do-we-fight-to-change-the-world", + "payout": 160.617, + "payout_at": "2016-10-02T19:14:21", + "pending_payout_value": "160.617 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dantheman-why-do-we-fight-to-change-the-world-20160901t184948317z", + "post_id": 826676, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 26 + }, + "title": "RE: Why do we fight to change the world?", + "updated": "2016-09-01T19:11:48", + "url": "/philosophy/@dantheman/why-do-we-fight-to-change-the-world#@recursive/re-dantheman-why-do-we-fight-to-change-the-world-20160901t184948317z" + }, + { + "active_votes": [ + { + "rshares": "31543759293106", + "voter": "val-a" + }, + { + "rshares": "22090812048", + "voter": "domino" + }, + { + "rshares": "28897024316", + "voter": "zaebars" + }, + { + "rshares": "1953557909", + "voter": "andreynoch" + }, + { + "rshares": "1708472880", + "voter": "litrbooh" + }, + { + "rshares": "1188786726", + "voter": "nonamer" + }, + { + "rshares": "53257299", + "voter": "shvedas" + } + ], + "author": "val-a", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437 \u0432\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u044b:\n> \u0414\u043e\u0445\u043e\u0434 _\u043f\u0435\u0440\u0432\u044b\u043c_ _\u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c_ \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u044b \u0432\u044b\u043f\u043b\u0430\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0437\u0430 \u0441\u0447\u0435\u0442 \u0432\u043a\u043b\u0430\u0434\u043e\u0432 \u043f\u043e\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432.\n\n\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 _\u043f\u0435\u0440\u0432\u044b\u043c_ \u0438 _\u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c_ (\u043f\u043e\u0434 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c\u0438 \u043f\u043e\u0434\u0440\u0430\u0437\u0443\u043c\u0435\u0432\u0430\u044e\u0442\u0441\u044f \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u044b), \u0430 \u0432 \u0441\u043b\u0443\u0447\u0430\u0435 \u0421\u0442\u0438\u043c\u0430 \u0434\u043e\u0445\u043e\u0434 \u043f\u043e\u043b\u0443\u0447\u0430\u044e\u0442 \u043d\u0435 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u044b, \u0430 \u0430\u0432\u0442\u043e\u0440\u044b \u043e\u0442 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043d\u0438 \u043a\u043e\u043f\u0435\u0439\u043a\u0438 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0435\u0436\u0434\u0435 \u043e\u043d\u0438 \u043d\u0430\u0447\u043d\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0434\u043e\u0445\u043e\u0434. \u0418\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u044b \u0442\u0435\u043e\u0440\u0435\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0434\u043e\u0445\u043e\u0434, \u0435\u0441\u043b\u0438 \u0446\u0435\u043d\u0430 STEEM, SP \u0438\u043b\u0438 SD \u0432\u044b\u0440\u0430\u0441\u0442\u0435\u0442, \u043d\u043e \u044d\u0442\u043e\u0433\u043e \u0438\u043c \u043d\u0438\u043a\u0442\u043e \u043d\u0435 \u043e\u0431\u0435\u0449\u0430\u0435\u0442 (\u0432 \u043e\u0442\u043b\u0438\u0447\u0438\u0438 \u043e\u0442 \u043f\u0438\u0440\u0430\u043c\u0438\u0434). \u041a \u0442\u043e\u043c\u0443 \u0436\u0435 \u0430\u0432\u0442\u043e\u0440\u0430\u043c \u0432\u044b\u043f\u043b\u0430\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0433\u043e\u043d\u043e\u0440\u0430\u0440 \u043d\u0435 \u0441 \u0434\u0435\u043d\u0435\u0433 \u043d\u043e\u0432\u044b\u0445 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432, \u0430 \u0440\u0430\u0437\u043c\u044b\u0442\u0438\u0435\u043c \u0434\u043e\u043b\u0438 \u0432\u0441\u0435\u0445 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0445 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432 \u0432 STEEM \u0438\u043b\u0438 \u0432 SP, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0438 \u0434\u043e\u043b\u0438 \u043a\u0438\u0442\u043e\u0432. \u0414\u043e\u0445\u043e\u0434 \u043a\u0438\u0442\u043e\u0432, \u0438\u043b\u0438 \u043b\u044e\u0431\u043e\u0433\u043e, \u043a\u0442\u043e \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043b \u043d\u0430 \u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u043c \u044d\u0442\u0430\u043f\u0435 \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043e\u0442 \u043d\u043e\u0432\u044b\u0445 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u0439 \u0432 \u0442\u043e\u0439 \u0436\u0435 \u0441\u0442\u0435\u043f\u0435\u043d\u0438 \u043a\u0430\u043a \u0438 \u0432 \u043b\u044e\u0431\u043e\u0439 \u0434\u0440\u0443\u0433\u043e\u0439 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0435.\n\n\u0412\u043c\u0435\u0441\u0442\u043e \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044f \u0441 \u043f\u0440\u0438\u0440\u0430\u043c\u0438\u0434\u043e\u0439, \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438\u0432\u043d\u0435\u0435 \u0441\u0440\u0430\u0432\u043d\u0438\u0442\u044c \u0441 \u043e\u0431\u044b\u043a\u043d\u043e\u0432\u0435\u043d\u043d\u044b\u043c \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u043e\u043c, \u0432\u043e\u0437\u044c\u043c\u0438\u0442\u0435 \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0422\u0432\u0438\u0442\u0435\u0440 - \u043f\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u043c\u0443 \u0441\u0447\u0435\u0442\u0443 \u043e\u043d\u0438, \u044f\u0432\u043b\u044f\u0441\u044c \u0443\u0431\u044b\u0442\u043e\u0447\u043d\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 (\u0434\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 10 \u043b\u0435\u0442 \u0438 \u043e\u043d\u0430 \u0434\u043e \u0441\u0438\u0445 \u043f\u043e\u0440 \u0443\u0431\u044b\u0442\u043e\u0447\u043d\u0430), \u043f\u043b\u0430\u0442\u044f\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c (\u043d\u0435 \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e, \u0430 \u043a\u043e\u0441\u0432\u0435\u043d\u043d\u043e, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u043e\u043f\u043b\u0430\u0447\u0438\u0432\u0430\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0432 \u0434\u0430\u0442\u0430\u0446\u0435\u043d\u0442\u0440\u0435) \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u044f \u0434\u043e\u043b\u044e/\u0430\u043a\u0446\u0438\u0438 \u0444\u0430\u0443\u043d\u0434\u0435\u0440\u043e\u0432 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u0430\u043c. \u041f\u043e\u0447\u0435\u043c\u0443 \u0430\u043a\u0446\u0438\u0438 \u0442\u0432\u0438\u0442\u0435\u0440\u0430 \u0441\u0442\u043e\u044f\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0443\u043b\u044f? \u041f\u043e\u0447\u0435\u043c\u0443 \u0422\u0432\u0438\u0442\u0435\u0440 \u043d\u0438\u043a\u0442\u043e \u043d\u0435 \u043d\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u043e\u0439?\n\n\u0418\u043b\u0438 \u0441\u0440\u0430\u0432\u043d\u0438\u0442\u0435 \u0441\u0442\u0438\u043c \u0441 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u043c - \u0441 \u0442\u0430\u043a\u0438\u043c \u0436\u0435 \u0443\u0441\u043f\u0435\u0445\u043e\u043c \u0438 \u0431\u0438\u0442\u043a\u043e\u0438\u043d \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0437\u0432\u0430\u0442\u044c \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u043e\u0439 - \u0432\u0435\u0434\u044c \u043f\u043b\u0430\u0442\u0438\u0442 \u0436\u0435 \u043c\u0430\u0439\u043d\u0435\u0440\u0430\u043c \u0434\u0435\u043d\u044c\u0433\u0430\u043c\u0438 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432.\n\n(p.s. \u043f\u0440\u043e\u0433\u043e\u043b\u043e\u0441\u0443\u044e \u0437\u0430 \u0441\u0435\u0431\u044f, \u0447\u0442\u043e \u0431\u044b \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043a\u0430\u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c SP \u0434\u043b\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u043f\u043e\u0441\u0442\u043e\u0432)", + "category": "ru-steemit", + "children": 12, + "created": "2016-08-24T03:37:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "ru-steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 31599651204284, + "parent_author": "litrbooh", + "parent_permlink": "budushee-steemit-nuzhna-li-reklama-v-steemit", + "payout": 149.954, + "payout_at": "2016-09-24T02:46:54", + "pending_payout_value": "149.954 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-litrbooh-budushee-steemit-nuzhna-li-reklama-v-steemit-20160824t033703760z", + "post_id": 726941, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 7 + }, + "title": "RE: \u0411\u0443\u0434\u0443\u0449\u0435\u0435 STEEMIT. \u041d\u0443\u0436\u043d\u0430 \u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u0432 STEEMIT?", + "updated": "2016-08-24T03:37:03", + "url": "/ru-steemit/@litrbooh/budushee-steemit-nuzhna-li-reklama-v-steemit#@val-a/re-litrbooh-budushee-steemit-nuzhna-li-reklama-v-steemit-20160824t033703760z" + }, + { + "active_votes": [ + { + "rshares": "-6795625112", + "voter": "highasfuck" + }, + { + "rshares": "164482168912", + "voter": "nextgenwitness" + }, + { + "rshares": "5468384423175", + "voter": "kushed" + }, + { + "rshares": "4945364226662", + "voter": "silversteem" + }, + { + "rshares": "4656370926104", + "voter": "nextgencrypto" + }, + { + "rshares": "3100766695", + "voter": "boy" + }, + { + "rshares": "3764486632", + "voter": "bue-witness" + }, + { + "rshares": "690539083", + "voter": "bunny" + }, + { + "rshares": "7221866970964", + "voter": "complexring" + }, + { + "rshares": "54261605662", + "voter": "bue" + }, + { + "rshares": "30390370257", + "voter": "danknugs" + }, + { + "rshares": "1661700819", + "voter": "mini" + }, + { + "rshares": "213710460", + "voter": "moon" + }, + { + "rshares": "38600533043", + "voter": "aizensou" + }, + { + "rshares": "12269445334", + "voter": "bentley" + }, + { + "rshares": "2651243328828", + "voter": "recursive" + }, + { + "rshares": "1820914592", + "voter": "mineralwasser" + }, + { + "rshares": "1066518981517", + "voter": "boombastic" + }, + { + "rshares": "9578311657", + "voter": "bingo-0" + }, + { + "rshares": "2440314179", + "voter": "bingo-1" + }, + { + "rshares": "1336788173111", + "voter": "benjojo" + }, + { + "rshares": "749198663628", + "voter": "pfunk" + }, + { + "rshares": "622955105", + "voter": "healthcare" + }, + { + "rshares": "1039484860678", + "voter": "tuck-fheman" + }, + { + "rshares": "967591200", + "voter": "daniel.pan" + }, + { + "rshares": "2783598325676", + "voter": "donkeypong" + }, + { + "rshares": "7288280988", + "voter": "patrice" + }, + { + "rshares": "288213327", + "voter": "helen.tan" + }, + { + "rshares": "14796343926", + "voter": "piedpiper" + }, + { + "rshares": "8972462707", + "voter": "ervin-lemark" + }, + { + "rshares": "715648773415", + "voter": "eeks" + }, + { + "rshares": "854401132096", + "voter": "cryptogee" + }, + { + "rshares": "5470652472", + "voter": "spaninv" + }, + { + "rshares": "726664133144", + "voter": "nanzo-scoop" + }, + { + "rshares": "16798528489", + "voter": "acidyo" + }, + { + "rshares": "3868778895", + "voter": "jonno-katz" + }, + { + "rshares": "56779104986", + "voter": "hannixx42" + }, + { + "rshares": "239176165083", + "voter": "mummyimperfect" + }, + { + "rshares": "71220031567", + "voter": "asch" + }, + { + "rshares": "608622985586", + "voter": "kevinwong" + }, + { + "rshares": "73303668582", + "voter": "beerbloke" + }, + { + "rshares": "65759745683", + "voter": "ak2020" + }, + { + "rshares": "53884344664", + "voter": "thecryptofiend" + }, + { + "rshares": "10426970985", + "voter": "hien-tran" + }, + { + "rshares": "2264268111917", + "voter": "stellabelle" + }, + { + "rshares": "57529825067", + "voter": "juanmiguelsalas" + }, + { + "rshares": "4476883095", + "voter": "dahaz159" + }, + { + "rshares": "306456223000", + "voter": "kaylinart" + }, + { + "rshares": "501259458185", + "voter": "infovore" + }, + { + "rshares": "26315426014", + "voter": "kus-knee" + }, + { + "rshares": "11630218162", + "voter": "ossama-benjohn" + }, + { + "rshares": "648138422927", + "voter": "anwenbaumeister" + }, + { + "rshares": "69137542683", + "voter": "razvanelulmarin" + }, + { + "rshares": "35291674341", + "voter": "cryptoiskey" + }, + { + "rshares": "360818648", + "voter": "chetlanin" + }, + { + "rshares": "84518713331", + "voter": "venuspcs" + }, + { + "rshares": "2936111289", + "voter": "psychonaut" + }, + { + "rshares": "318074226526", + "voter": "roelandp" + }, + { + "rshares": "4261065978", + "voter": "dennygalindo" + }, + { + "rshares": "140535670338", + "voter": "chhaylin" + }, + { + "rshares": "38348578159", + "voter": "firepower" + }, + { + "rshares": "254364900", + "voter": "mstang83" + }, + { + "rshares": "116908007408", + "voter": "chhayll" + }, + { + "rshares": "2812431753", + "voter": "stranger27" + }, + { + "rshares": "13896170396", + "voter": "yogi.artist" + }, + { + "rshares": "14528410967", + "voter": "elyaque" + }, + { + "rshares": "2046170935", + "voter": "r4fken" + }, + { + "rshares": "72655151512", + "voter": "furion" + }, + { + "rshares": "96443143963", + "voter": "sigmajin" + }, + { + "rshares": "40575184405", + "voter": "mrwang" + }, + { + "rshares": "1287519621", + "voter": "steem1653" + }, + { + "rshares": "1827599826", + "voter": "marcgodard" + }, + { + "rshares": "21069395024", + "voter": "akareyon" + }, + { + "rshares": "16233014225", + "voter": "sebastien" + }, + { + "rshares": "1214668585", + "voter": "flyingmind" + }, + { + "rshares": "3259008743", + "voter": "steemit-life" + }, + { + "rshares": "38541756150", + "voter": "diana.catherine" + }, + { + "rshares": "241033184", + "voter": "bobkillaz" + }, + { + "rshares": "9142372606", + "voter": "deviedev" + }, + { + "rshares": "306656746516", + "voter": "knozaki2015" + }, + { + "rshares": "2482350068", + "voter": "steemgrindr" + }, + { + "rshares": "3860285221", + "voter": "adamt" + }, + { + "rshares": "270410711489", + "voter": "calaber24p" + }, + { + "rshares": "9763976269", + "voter": "pcste" + }, + { + "rshares": "231813853890", + "voter": "liberosist" + }, + { + "rshares": "9172859646", + "voter": "oumar" + }, + { + "rshares": "35903507776", + "voter": "sauravrungta" + }, + { + "rshares": "37542098641", + "voter": "rea" + }, + { + "rshares": "21424668654", + "voter": "prufarchy" + }, + { + "rshares": "9888950976", + "voter": "carlidos" + }, + { + "rshares": "17018462501", + "voter": "cryptocameo" + }, + { + "rshares": "38704462901", + "voter": "claudiop63" + }, + { + "rshares": "10716559196", + "voter": "phoenixmaid" + }, + { + "rshares": "2850823006", + "voter": "tjpezlo" + }, + { + "rshares": "13269181041", + "voter": "clevecross" + }, + { + "rshares": "24054735183", + "voter": "smailer" + }, + { + "rshares": "18688350126", + "voter": "pixielolz" + }, + { + "rshares": "26483585759", + "voter": "williambanks" + }, + { + "rshares": "3431378627", + "voter": "webosfritos" + }, + { + "rshares": "89283515898", + "voter": "shaka" + }, + { + "rshares": "73511111757", + "voter": "twinner" + }, + { + "rshares": "1475564323", + "voter": "handmade" + }, + { + "rshares": "9986529692", + "voter": "viktor.phuket" + }, + { + "rshares": "4245841619", + "voter": "ullikume" + }, + { + "rshares": "6013694326", + "voter": "ekitcho" + }, + { + "rshares": "2112721437", + "voter": "joele" + }, + { + "rshares": "4344750511", + "voter": "oflyhigh" + }, + { + "rshares": "11208435898", + "voter": "randyclemens" + }, + { + "rshares": "315529006", + "voter": "rusteller" + }, + { + "rshares": "8668714921", + "voter": "gargon" + }, + { + "rshares": "2402681750", + "voter": "pgarcgo" + }, + { + "rshares": "4722016641", + "voter": "theconnoisseur" + }, + { + "rshares": "13978892123", + "voter": "queenmountain" + }, + { + "rshares": "21216135219", + "voter": "hanshotfirst" + }, + { + "rshares": "360104574", + "voter": "herbertmueller" + }, + { + "rshares": "2790597203", + "voter": "lightsplasher" + }, + { + "rshares": "760244820", + "voter": "princewahaj" + }, + { + "rshares": "7124799262", + "voter": "theb0red1" + }, + { + "rshares": "59327261726", + "voter": "serejandmyself" + }, + { + "rshares": "3673690786", + "voter": "anarchyhasnogods" + }, + { + "rshares": "1481195780", + "voter": "indykpol" + }, + { + "rshares": "302329407", + "voter": "comcentrate" + }, + { + "rshares": "122637921", + "voter": "jtstreetman" + }, + { + "rshares": "1623996599", + "voter": "ines-f" + }, + { + "rshares": "8237809906", + "voter": "etcmike" + }, + { + "rshares": "6391005392", + "voter": "lesliestarrohara" + }, + { + "rshares": "3425466270", + "voter": "ats-david" + }, + { + "rshares": "293609359", + "voter": "pollux.one" + }, + { + "rshares": "1184448867", + "voter": "contentjunkie" + }, + { + "rshares": "7304947957", + "voter": "einsteinpotsdam" + }, + { + "rshares": "11502232563", + "voter": "darrantrute" + }, + { + "rshares": "17585035067", + "voter": "sabot" + }, + { + "rshares": "28036909101", + "voter": "markrmorrisjr" + }, + { + "rshares": "45121178435", + "voter": "sponge-bob" + }, + { + "rshares": "249472621", + "voter": "reaction" + }, + { + "rshares": "2914432081", + "voter": "doitvoluntarily" + }, + { + "rshares": "3648710236", + "voter": "nubchai" + }, + { + "rshares": "4721456837", + "voter": "richardjuckes" + }, + { + "rshares": "146618463", + "voter": "jens-jung" + }, + { + "rshares": "116558699", + "voter": "chadcrypto" + }, + { + "rshares": "54685141", + "voter": "ballinconscious" + }, + { + "rshares": "70593457", + "voter": "whatsup" + }, + { + "rshares": "1584386308", + "voter": "dirkzett" + }, + { + "rshares": "66920614", + "voter": "willio" + }, + { + "rshares": "71584544", + "voter": "justusagenstum" + }, + { + "rshares": "140430106", + "voter": "angelius" + } + ], + "author": "donkeypong", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "## I strongly oppose the \"5 votes a day\" target. \n\nI thought one of the greatest changes to be implemented so far was when that target INCREASED. People have not been so stressed in the last month or two about curation rewards; they just vote for what they like and have fun. \n\nI don't think Steemit will be FUN anymore if there is an expected target of 5 votes per day. People will spend much less time on the site. They will vote for predictably popular content. And we will be right back where we were a couple of months ago. \n\nNo, it will be worse than that. Because 20 votes a day used to stress people out. 5 votes a day? NO ONE can do any real curation under that scheme.\n\nAs an individual and an established author, the 5 votes a day could be great for me. If we go back to the days when everybody upvoted the same posts, then maybe I'd get all those votes again. I could quit my job and write for Steemit full time. \n\nAnd we'd go back to the days when emerging authors and artists got far fewer votes and rewards. \n\nAs far as curation and voting bots, they are being used for very good purposes also. Rather than turning our tails and running away from them, why don't we use them for the greater good? I think the mega-whales' curation teams are doing a far better job than ever before at redistributing rewards; I make nothing from being involved in that effort, but I think it is working quite well. Give the vote sliders and the voting bots more time; Steemit's front page is finally diversifying and newer people are getting rewards like never before. \n\nOne more thing: Redistribution of Steemit's resources from big whale accounts to the masses MUST be one of our top priorities. How does this help? I understand that big whale accounts may make less on curation rewards, but I think few of them are concerned with this anymore; they're trying to channel their votes to worthy posters. They have recognized that their big stakes will be worth nothing unless we make this thing succeed.\n\nUnder this scheme, the big whales will need to sell the max on exchanges every week and other people buy their Steem for any real redistribution to occur. That will hold down the price and our competitors will zoom right by us. \n\nSteem Team, I understand you are trying to solve real problems with these tweaks. I don't normally comment on them because I feel that Steemit is good enough that there is some margin for error with these back-end decisions. But this is far, far too severe a change for the platform to absorb.\n\n## If I am wrong, then I'd love to hear that from the community, and I am open to learning from other views. Give us time for this discussion, please, before forcing through such a change. Until then, I oppose this change.", + "category": "steem", + "children": 106, + "created": "2016-09-02T21:16:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "steem" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 42304792392028, + "parent_author": "steemitblog", + "parent_permlink": "announcing-steem-0-14-0-release-candidate", + "payout": 141.827, + "payout_at": "2016-10-04T01:16:51", + "pending_payout_value": "141.827 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemitblog-announcing-steem-0-14-0-release-candidate-20160902t211609578z", + "post_id": 838503, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 146 + }, + "title": "RE: Announcing Steem 0.14.0 Release Candidate", + "updated": "2016-09-02T21:19:45", + "url": "/steem/@steemitblog/announcing-steem-0-14-0-release-candidate#@donkeypong/re-steemitblog-announcing-steem-0-14-0-release-candidate-20160902t211609578z" + }, + { + "active_votes": [ + { + "rshares": "25590936673298", + "voter": "berniesanders" + }, + { + "rshares": "4503240944593", + "voter": "nextgencrypto" + }, + { + "rshares": "3093334843", + "voter": "boy" + }, + { + "rshares": "3754789393", + "voter": "bue-witness" + }, + { + "rshares": "703475396", + "voter": "bunny" + }, + { + "rshares": "53137822427", + "voter": "bue" + }, + { + "rshares": "1658013141", + "voter": "mini" + }, + { + "rshares": "213534945", + "voter": "moon" + }, + { + "rshares": "621926043", + "voter": "healthcare" + }, + { + "rshares": "945621921", + "voter": "daniel.pan" + }, + { + "rshares": "287928458", + "voter": "helen.tan" + }, + { + "rshares": "52651564", + "voter": "meredithpetran" + } + ], + "author": "jhermanbeans", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Fascinating world. Can't wait to see where it goes!", + "category": "horror", + "children": 0, + "created": "2016-08-23T01:17:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "horror" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 30158646716022, + "parent_author": "senderos", + "parent_permlink": "the-nightmare-song", + "payout": 132.545, + "payout_at": "2016-09-23T02:56:09", + "pending_payout_value": "132.545 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-senderos-the-nightmare-song-20160823t011659950z", + "post_id": 713237, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 12 + }, + "title": "RE: The Nightmare Song", + "updated": "2016-08-23T01:17:00", + "url": "/horror/@senderos/the-nightmare-song#@jhermanbeans/re-senderos-the-nightmare-song-20160823t011659950z" + }, + { + "active_votes": [ + { + "rshares": "31588356739639", + "voter": "smooth" + }, + { + "rshares": "3726201087", + "voter": "boy" + }, + { + "rshares": "4524113216", + "voter": "bue-witness" + }, + { + "rshares": "820980926", + "voter": "bunny" + }, + { + "rshares": "66047512415", + "voter": "bue" + }, + { + "rshares": "1996555438", + "voter": "mini" + }, + { + "rshares": "256574080", + "voter": "moon" + }, + { + "rshares": "5893489774073", + "voter": "smooth.witness" + }, + { + "rshares": "750139848", + "voter": "healthcare" + }, + { + "rshares": "1168034456", + "voter": "daniel.pan" + }, + { + "rshares": "346061156", + "voter": "helen.tan" + }, + { + "rshares": "394226217606", + "voter": "craig-grant" + }, + { + "rshares": "24215364511", + "voter": "thecryptofiend" + }, + { + "rshares": "2042269341790", + "voter": "stellabelle" + }, + { + "rshares": "8944971271", + "voter": "cmtzco" + }, + { + "rshares": "52207362", + "voter": "reported" + }, + { + "rshares": "58804600", + "voter": "southbaybits" + }, + { + "rshares": "14292459528", + "voter": "randyclemens" + }, + { + "rshares": "39105503792", + "voter": "luminousvisions" + }, + { + "rshares": "120190171", + "voter": "emeline" + } + ], + "author": "luminousvisions", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "### @dantheman ... you just downvoted my comment?\n\nwhat is that all about? what's wrong with it?\n\n#### I'm just suggestion a solution and in return for offering my help ... you downvote me?!?\n\n\nlook at what I've been up to;\n[little baby dolphin](https://steemit.com/steemit/@luminousvisions/little-baby-dolphin-goes-to-steemit-school)\nI'm already working on a solution!", + "category": "steemit", + "children": 22, + "created": "2016-09-11T03:56:51", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemit.com/steemit/@luminousvisions/little-baby-dolphin-goes-to-steemit-school" + ], + "tags": [ + "steemit" + ], + "users": [ + "dantheman" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 40084767746965, + "parent_author": "luminousvisions", + "parent_permlink": "re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t021909082z", + "payout": 131.347, + "payout_at": "2016-10-12T06:00:30", + "pending_payout_value": "131.347 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-luminousvisions-re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t035652062z", + "post_id": 918173, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 20 + }, + "title": "RE: Open Letter to Ned and Dan: You Badly Need a Communications/Community/Content Expert and I Hereby Nominate @stellabelle or @donkeypong For That Job", + "updated": "2016-09-11T06:14:27", + "url": "/steemit/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or#@luminousvisions/re-luminousvisions-re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t035652062z" + }, + { + "active_votes": [ + { + "rshares": "25299389880141", + "voter": "ned" + }, + { + "rshares": "6927705674664", + "voter": "wackou" + }, + { + "rshares": "992154852299", + "voter": "liondani" + }, + { + "rshares": "3103959302", + "voter": "boy" + }, + { + "rshares": "3768577454", + "voter": "bue-witness" + }, + { + "rshares": "683986391", + "voter": "bunny" + }, + { + "rshares": "54809820514", + "voter": "bue" + }, + { + "rshares": "1663237841", + "voter": "mini" + }, + { + "rshares": "213793127", + "voter": "moon" + }, + { + "rshares": "624976946", + "voter": "healthcare" + }, + { + "rshares": "973085978", + "voter": "daniel.pan" + }, + { + "rshares": "288350184", + "voter": "helen.tan" + }, + { + "rshares": "347492602044", + "voter": "blakemiles84" + }, + { + "rshares": "445654522", + "voter": "kooshikoo" + }, + { + "rshares": "113354733694", + "voter": "shaka" + }, + { + "rshares": "46418159604", + "voter": "capitalism" + }, + { + "rshares": "4864933964", + "voter": "ats-david" + }, + { + "rshares": "9260376832", + "voter": "goose" + } + ], + "author": "dana-edwards", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "1 needs modification, 2 is a good idea\n----\n\nDespite some who call 2 an exit fee, I think Steem Power should stop being marketed as an **\"investment\"** to **\"investors\"**. Market it to users of the platform who want to power up their accounts but make powering up or upgrading a lot easier. Make it possible with a gift card, fiat, a credit card, or Paypal. People should never see Bitcoin or blockchain anywhere on the Steemit official marketing.\n\nUse gamification to make people want to upgrade their Steem Power. Market Steem Dollars to crypto investors for the 10% interest.\n\nSteem Power a purchasable upgrade for accounts\n-----\n\n>reddit gold is our premium membership program. It grants you access to extra features to improve your reddit experience. It also makes you really quite dapper.\n\nAnd Alice goes to Walgreens with her Visa Card and buys the Steem Card instead of the Netflix card. It's also possible to sell a Steem Power subscription for people who want to buy a little bit at a time, remeber WoW is subscription based and. Second Life has Linden Dollars which are like our Steem Dollars and can be marketed in a similar way.\n\nDo not make the mistake of listening to crypto anarchists or crypto people when it comes to marketing. Crypto people are horrible at marketing and that includes Bitcoin. All of crypto has a bad reputaton and horrible marketing. Look at Pokemon Go or even Reddit Gold to see how to do marketing, or just hire a profesisonal in gamification and marketing guru. Do not listen to Steemit whales and don't even listen to me. Hire people who are from the gaming world, or who marketed popular social networks.\n\n**Note: notice games and social networks never use words like \"investor\" or \"speculator\", as this would be like trying to market the social network as a gambling site which is something they all avoid.**\n\n**UPDATE: IF ANYONE CAN GET IN CONTACT WITH [Jane McGonigal](https://janemcgonigal.com/) AND HIRE HER AS A CONSULTANT IT WOULD BE GREAT FOR STEEMIT. SHE IS A THOUGHT LEADER IN \"PURPOSE DRIVEN GAMING\" AND HAVING HER ASSOCIATED WITH STEEMIT WOULD BRING MOMENTUM.**\n\nReferences\n1. https://community.secondlife.com/t5/English-Knowledge-Base/Buying-and-selling-Linden-dollars/ta-p/700107\n2. https://www.reddit.com/gold/about/\n3. https://www.quora.com/Who-are-the-best-gamification-experts\n4. https://www.linkedin.com/title/gamification-expert", + "category": "steem", + "children": 7, + "created": "2016-09-08T05:07:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://janemcgonigal.com/", + "https://community.secondlife.com/t5/English-Knowledge-Base/Buying-and-selling-Linden-dollars/ta-p/700107", + "https://www.reddit.com/gold/about/", + "https://www.quora.com/Who-are-the-best-gamification-experts", + "https://www.linkedin.com/title/gamification-expert" + ], + "tags": [ + "steem" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 33807216655501, + "parent_author": "ned", + "parent_permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", + "payout": 116.932, + "payout_at": "2016-10-09T02:14:24", + "pending_payout_value": "116.932 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-ned-increasing-curation-demand-for-steem-power-and-community-interaction-20160908t050749903z", + "post_id": 889443, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 18 + }, + "title": "RE: Increasing Curation, Demand for Steem Power and Community Interaction", + "updated": "2016-09-08T20:47:24", + "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction#@dana-edwards/re-ned-increasing-curation-demand-for-steem-power-and-community-interaction-20160908t050749903z" + } +] diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_promoted.orig.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_promoted.orig.json new file mode 100644 index 00000000..7fdae0c9 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_promoted.orig.json @@ -0,0 +1,98 @@ +[ + { + "active_votes": [], + "author": "zein", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "are you willing to vote for my blog ? I really hope it \nhttps://steemit.com/introduceyourself/@zein/hello-steemit-i-come-back-part-1-it-s-about-my-friend-and-original-work-is-not-engineering", + "category": "steempress", + "children": 0, + "created": "2016-08-29T09:32:48", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemit.com/introduceyourself/@zein/hello-steemit-i-come-back-part-1-it-s-about-my-friend-and-original-work-is-not-engineering" + ], + "tags": [ + "steempress" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "jesta", + "parent_permlink": "re-bmann-re-jesta-update-on-the-steempress-theme-bounty-20160829t030152913z", + "payout": 0.0, + "payout_at": "2016-09-28T10:28:51", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-jesta-re-bmann-re-jesta-update-on-the-steempress-theme-bounty-20160829t093247333z", + "post_id": 787536, + "promoted": "1.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 0 + }, + "title": "RE: Update on the steempress theme bounty", + "updated": "2016-08-29T09:32:48", + "url": "/steempress/@jesta/update-on-the-steempress-theme-bounty#@zein/re-jesta-re-bmann-re-jesta-update-on-the-steempress-theme-bounty-20160829t093247333z" + }, + { + "active_votes": [ + { + "rshares": "250810345690", + "voter": "lukestokes" + } + ], + "author": "anduweb", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Luke, the man with the numbers :) I love the idea. Interesting stats to look at:\n* Highest promoted amount per post\n* Highest number of promoters per post\n* Highest non-author promoted amount\n\nThere may be others who have already though to do 15.001. I too started with 10.001 in mind and got to 13.63 to have a good front-ish seat :) but I think amounts will start being higher and higher as pressure builds to be on the *first page*.\n\n@berniesanders is the real MVP, have said it before and it's still valid. Nice ROI on your post! Classic bump and reward case. Exactly what Post Promotion has been built for.\nI'm more testing the thing now but thank you for the feedback! It's good to see that my *marketing* campaign is showing results!\n\nYeah, up one for @smooth and @jesta! #classy", + "category": "steemit", + "children": 0, + "created": "2016-08-30T11:09:45", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "tags": [ + "classy", + "steemit" + ], + "users": [ + "berniesanders", + "smooth", + "jesta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 250810345690, + "parent_author": "lukestokes", + "parent_permlink": "re-anduweb-steemit-post-promotion-and-the-dollar-auction-20160830t104200474z", + "payout": 0.117, + "payout_at": "2016-09-30T13:09:21", + "pending_payout_value": "0.117 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-lukestokes-re-anduweb-steemit-post-promotion-and-the-dollar-auction-20160830t110944376z", + "post_id": 799802, + "promoted": "0.001 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Steemit Post Promotion and the Dollar Auction", + "updated": "2016-08-30T11:09:45", + "url": "/steemit/@anduweb/steemit-post-promotion-and-the-dollar-auction#@anduweb/re-lukestokes-re-anduweb-steemit-post-promotion-and-the-dollar-auction-20160830t110944376z" + } +] diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_hive-123.orig.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_hive-123.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_hive-123.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_petrodollar.orig.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_petrodollar.orig.json new file mode 100644 index 00000000..7d1cd5ad --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_petrodollar.orig.json @@ -0,0 +1,477 @@ +[ + { + "active_votes": [ + { + "rshares": "563801601277", + "voter": "barrie" + }, + { + "rshares": "347139725318", + "voter": "anonymous" + }, + { + "rshares": "40973587609862", + "voter": "blocktrades" + }, + { + "rshares": "6679631707350", + "voter": "xeldal" + }, + { + "rshares": "5524453120959", + "voter": "enki" + }, + { + "rshares": "1130448289448", + "voter": "ihashfury" + }, + { + "rshares": "3104208862", + "voter": "boy" + }, + { + "rshares": "3768886295", + "voter": "bue-witness" + }, + { + "rshares": "684017588", + "voter": "bunny" + }, + { + "rshares": "54856169248", + "voter": "bue" + }, + { + "rshares": "1663348588", + "voter": "mini" + }, + { + "rshares": "213796245", + "voter": "moon" + }, + { + "rshares": "64108982994", + "voter": "jason" + }, + { + "rshares": "11583629822", + "voter": "by24seven" + }, + { + "rshares": "1352482756", + "voter": "mineralwasser" + }, + { + "rshares": "8283671184", + "voter": "bingo-0" + }, + { + "rshares": "625005026", + "voter": "healthcare" + }, + { + "rshares": "973139011", + "voter": "daniel.pan" + }, + { + "rshares": "288354863", + "voter": "helen.tan" + }, + { + "rshares": "392749106258", + "voter": "craig-grant" + }, + { + "rshares": "11744401901", + "voter": "richman" + }, + { + "rshares": "269525245948", + "voter": "pal" + }, + { + "rshares": "1426374387", + "voter": "murh" + }, + { + "rshares": "44877570195", + "voter": "lindee-hamner" + }, + { + "rshares": "2405298940", + "voter": "mammasitta" + }, + { + "rshares": "54765430303", + "voter": "sonzweil" + }, + { + "rshares": "15150114547", + "voter": "hakise" + }, + { + "rshares": "55815725", + "voter": "cynetyc" + }, + { + "rshares": "29762539003", + "voter": "dwinblood" + }, + { + "rshares": "8494468151", + "voter": "rpf" + }, + { + "rshares": "8218703778", + "voter": "lostnuggett" + }, + { + "rshares": "1596727527", + "voter": "alex.chien" + }, + { + "rshares": "20662197740", + "voter": "rawnetics" + }, + { + "rshares": "2267249932", + "voter": "crypto-toll" + }, + { + "rshares": "13356868381", + "voter": "stephen.king989" + }, + { + "rshares": "5409051125", + "voter": "highlite" + }, + { + "rshares": "12280438534", + "voter": "borran" + }, + { + "rshares": "14243751811", + "voter": "kyriacos" + }, + { + "rshares": "12832867753", + "voter": "gvargas123" + }, + { + "rshares": "3161180932", + "voter": "hilarski" + }, + { + "rshares": "7674782545", + "voter": "craigwilliamz" + }, + { + "rshares": "57789562", + "voter": "frankfriendly" + }, + { + "rshares": "177025914", + "voter": "ezrabcs" + }, + { + "rshares": "57424996", + "voter": "murdochpizgatti" + }, + { + "rshares": "9592286330", + "voter": "heretickitten" + }, + { + "rshares": "3620872844", + "voter": "aggroed" + }, + { + "rshares": "4512315033", + "voter": "highimpactflix" + }, + { + "rshares": "55571888", + "voter": "cahuillan" + }, + { + "rshares": "52171620", + "voter": "jamespro" + }, + { + "rshares": "1710826961", + "voter": "ibringawareness" + }, + { + "rshares": "80530871", + "voter": "projecthor" + }, + { + "rshares": "53409775", + "voter": "lisahaven" + }, + { + "rshares": "71973468", + "voter": "ancientofdays" + }, + { + "rshares": "51485628", + "voter": "mari5555na" + }, + { + "rshares": "5084219415", + "voter": "donchate" + }, + { + "rshares": "1288596847", + "voter": "expedition" + }, + { + "rshares": "92728217", + "voter": "comeup" + }, + { + "rshares": "160125450", + "voter": "jbgarrison72" + }, + { + "rshares": "144275749", + "voter": "charlie.wilson" + } + ], + "author": "highimpactflix", + "author_payout_value": "0.000 HBD", + "author_reputation": 59.9, + "beneficiaries": [], + "blacklists": [], + "body": "If the contents of this article/video were taught in schools, the veil of secrecy would be lifted, one of the greatest scams in history would be revealed and life just might be a little better.\n\n\u201cThe State,\u201d Bastiat wrote, \u201cis that great fiction by which everyone seeks to live at the expense of everyone else.\u201d \n
https://www.steemimg.com/images/2016/09/08/lawtiat-quote-picture.jpg9d3a8dd471c.jpg
\n\t\nThe French economist penned those words before he was able to witness another \u201cgreat fiction,\u201d which currently works to undermine ALL the labor and ALL the accumulated wealth of EVERY American and, by extension, virtually EVERY laboring individual on this planet.\n\nThis article is a little lengthy, so I created a video that's about 24 minutes long that used this article as the script. If you're a busy person (and what thinking person isn't, these days?) you can download the video and play it in your car or at down time at work or whatever. Enjoy the video, share the knowledge and leave your comments. And, of course, your upvotes are always appreciated!\n
\n\t\nWe all work for this fiction every day. People beg for this fiction. Many borrow from others to obtain this fiction. Some even kill so that they can unlawfully accumulate more of this fiction. Without this fiction you could have no clothing for your back, no roof over your head and no food for your stomach. That great fiction is the American Dollar.\n\t\nYou can pull a NOTE out of your pocket and examine it. But you would be searching in vain for any intrinsic value. The value is not found in the ink, nor the material in which the ink is impregnated, nor in the wording. In fact, the wording provides the hint you\u2019ll need to begin to realize that there is NOTHING in and of itself that imputes any value into this piece of paper \u2013 nothing, that is, but a construct of belief \u2013 oh, and one other thing. Brute force, but we\u2019ll get to that later\n
https://www.steemimg.com/images/2016/09/08/193420100020FRN20G00042149A10002cb72.jpg
\n\t\nOur Dollar\u2019s history begins with Article 1 sec. 8 of the Constitution. It states that, \u201cCongress shall have the power to coin money, regulate the value thereof and fix the standards of weights and measures.\u201d\n\t\nIn 1792 the Coinage Act was passed \u201cestablishing a mint and regulating the COINS of the U.S.\u201d This law created and defined America\u2019s money.\n\tIt called for a coin called the DOLLAR to contain about \u00be of an ounce of silver.\n\tIt also called for a Half Dollar, Quarter, Dime and Half dime \u2013 all made of silver\n\tIt called for a coin called an EAGLE, each worth 10 DOLLARS and containing a half an ounce of gold.\n\tIt also called for a Half Eagle and a Quarter Eagle. All made of Gold\n\tEach coin, according to this act, would bear an impression of Liberty, the Word Liberty and the year of coinage. \n\nThe reverse side shall have an impression of an Eagle with the inscription, \u201cUnited States of America.\u201d\n\tSo, the definition of money was \u2013 \u201cA silver coin of the United States of the value of 1/10 of an Eagle\u201d or 1 DOLLAR.\n\tAn Eagle was defined as \u201cA GOLD coin of the United States of the value of 10 DOLLARS\u201d\n\tFor the first 80 years of our history these coins were known as \u201cLawful Money.\u201d\n
http://flowinghairdollar.com/wp-content/uploads/2009/07/flowing-hair-dollar.jpg
\n\t\nIn 1794 the US mint in Philadelphia began minting coins. The illustration above is what they looked like. They were strictly composed of either GOLD or SILVER, painstakingly fashioned to the proper weight. So strict was the standard on weights and measures and so serious was the language of the U.S. Coinage Act, that Section 19 invoked the death penalty for anyone caught debasing the nation\u2019s money\n\t\nArticle 1 Section 10 of the Constitution states, \u201cNo state shall coin money, emit bills of credit, make anything but GOLD and SILVER COIN a tender of payment of debts.\u201d\n\t\u201cEmit bills of credit\u201d equates to the issuance of un-backed paper promissory notes as money. \n\tAmerica\u2019s entire economy was anchored to GOLD and SILVER by requiring the states to tender all payments in these coins. Some leaders today, however, claim that Gold is NOT money [Bernake Video]. This claim, according to the law of the land and good ole common sense, is a LIE!\n
https://www.steemimg.com/images/2016/09/08/Limits-on-State-Powerb1132.jpg
\t\nThis Gold and Silver standard stood as a PROTECTION for the people from the corrupt Banksters who love to loan out money they don\u2019t have and profit from the interest. Such a debasing practice, known as Fractional Reserve Banking, is outright Counterfeiting and, therefore, THEFT!\n\t\nThe Gold system ensured that the nation\u2019s wealth was distributed to all the people, rather than being centralized in the hands of a few. It CONSTRAINED governments from issuing un-backed notes of debt, which is what a Federal Reserve Note is today.\t\n\t\nThe fact is, many, including Benjamin Franklin, held that a dishonest money system was a main reason for the Revolutionary War. He wrote, \u201cThe refusal of King George III to allow the colonies to operate an honest money system, which freed the ordinary man from the clutches of the money manipulators, was probably the prime cause of the Revolution.\u201d\n
https://www.steemimg.com/images/2016/09/08/George_III_by-Allan-Ramsay-in-1762e80e9.jpg
\t\nTwo central banks materialized in early America in order to manipulate the nation\u2019s money supply. The 1st Bank of the United States was established in 1791, in spite of opposition from people like Thomas Jefferson, who argued against its Constitutionality and wrote, \u201cI believe that banking institutions are more dangerous to our liberties than standing armies. If the American people ever allow private banks to control the issue of their currency, first by inflation, then by deflation, the banks and corporations that will grow up\u2026 will deprive the people of all property until their children wake-up homeless on the continent their fathers conquered. The issuing power should be taken from the banks and restored to the people, to whom it properly belongs.\u201d 1st Bank\u2019s charter was revoked by James Madison.\n\t\nIn 1816 the 2nd Bank of the U.S. was formed. Andrew Jackson, sworn enemy of the Central Bank, despised the thought of private Bankers controlling America\u2019s money. Its charter was revoked in 1833.\n\t\nGold\u2019s discovery in California in 1849, caused the mint to add a 1 Dollar 10th Gold Eagle and a 20 Dollar Double Gold Eagle in order to distribute the gold across the population, honoring the founder\u2019s principle of decentralizing power by spreading the wealth.\n
https://www.steemimg.com/images/2016/09/08/California_Clipper_500cad3c.jpg
\t\nThe presence and universal acceptance of gold shackled private bankers and severely limited inflation. It is interesting to note that in the 57 years from 1833 to 1890, GOLD, priced at $20.67/oz fluctuated only 1 PENNY. From 1891 to 1930 gold fluctuated .74 CENTS from a low of $20.58 to a high of $21.32.\n\t\nIn 1861, Individual rights-Trampling President, Abraham Lincoln, financed the \u201cWar of Northern Aggression,\u201d by printing un-backed paper money, an act that debased America\u2019s money and, according to the Coinage Act of 1792, placed him under penalty of death.\n
https://www.steemimg.com/images/2016/09/08/lincoln_movie112035843.jpg
\t\nDuring this criminal act, the treasury, reeled in coins and replaced them with Lincoln\u2019s Greenback. These notes were denominated in both dollars and cents. Virtually all of America\u2019s money was converted to paper.\n\t\nIn just 4 years nearly 100% of the gains in the standard of living and the purchasing power of the dollar had been wiped out along with over 600,000 lives!\n\t\nAfter the war, the mint resumed coining money. The dollar gained value, even going through periods of increasing buying power. In 1866, contrary to the Constitution, they replaced the SILVER dime with a 5 CENT NICKLE, allowing them to quickly replenish their silver reserves. \n\t\nUnfortunately, the U.S. Government was still issuing paper dollars in the form of notes.\n\t\nHere, an 1878 $20 note reads, \u201cThis note is legal tender at its face value for all debts public and private, EXCEPT duties on imports and interest on the public debt.\u201d In other words, neither foreign nations, nor the international bankers who financed them, would accept this as money \u2013 because it wasn\u2019t money. It was a NOTE, a LOAN, an I.O.U. It was DEBT. The creators of this debt are saying, \u201cyou can use it as money among yourselves, but don\u2019t try to pay US with it!\u201d\n
https://www.steemimg.com/images/2016/09/08/20-type-10a666e.jpg
\t\nAll money, created out of thin air, is DEBT. They expect YOU to accept that debt as a fair trade for your labor, while THEY reject that debt for themselves.\n\t\nIn the 1880\u2019s the treasury began issuing a NEW kind of paper money called silver and gold certificates.\n\t\nThe legalese on these certificates reads, \u201cThis CERTIFIES that there has been deposited in the treasury of the United States, ONE silver dollar, payable to the bearer on demand.\u201d\n
https://www.steemimg.com/images/2016/09/08/US2BCurrency2B18802B1002BDollars2BSilver2BCertificatec6bf0.jpg
\nEach silver certificate represented one PHYSICAL SILVER or GOLD coin in the Treasury.\n\t\nThis bill says nothing about a \u201cnote\u201d because this isn\u2019t an I.O.U. There is NO restriction on imports or interest on the public debt. Foreign nations and international bankers would accept this as money because it WAS MONEY. However, if the government decreed that they will no longer honor that certificate, you are left with a fancy-looking piece paper.\n\t\nThe early 1900s brought men like J.P. Morgan to the forefront. Morgan, publically considered a financial luminary at the time, exploited his mass influence by publishing rumors that a prominent bank in N.Y. was insolvent. Morgan knew this would cause mass hysteria which would affect other banks as well. And it did. The public, in fear of losing their deposits, immediately began mass withdrawals. Consequently, the banks were forced to call in their loans, causing the recipients to sell their property. Thus, a spiral of bankruptcies, repossessions and turmoil emerged. Frederick Allen of LIFE Magazine later wrote, \u201cThe Morgan interests took advantage to precipitate the panic of 1907, guiding it shrewdly as it progressed.\u201d [LIFE Mag cover]\t\t\n
https://www.steemimg.com/images/2016/09/08/JP-Morgan_Carnegie-Steel_HD_768x432-16x99f66b.jpg
\t\t\nThe 1907 financial crisis, that caused the New York Stock Exchange to lose 50% from the previous year, prompted people to beg the Government to \u201cbreak the grip of the money trust.\u201d This paved the way for Morgan and his allies to step in with the solution to the problem they created\u2026 and on December 23rd 1913, the Federal Reserve was born.\n
https://www.steemimg.com/images/2016/09/08/fed_reserve22094.jpg
\t\t\nThe Federal Reserve, a cartel of international banking counterfeiters and money manipulators, began printing Federal Reserve Notes, a Government sanctioned bank note. This note, like the Greenback, which preceded it, was a demand note. It was redeemable for Gold, but only in Washington or at a member bank. If you lived far away, it was HIGHLY unlikely that you would redeem this paper for the precious metal.\t\n
https://www.steemimg.com/images/2016/09/08/federal-reserve-1914.jpgw480581d2.jpg
\t\t\nThe note itself admits that it is NOT Lawful money. Something that can be exchanged for lawful money is NOT lawful money itself.\n\t\n19 Years after the FEDs creation, in 1932, FDR, another counterfeit enabling President, also subject to the criminal penalty of death, according to the Coinage Act of 1792, demonetized gold, ending the production of gold coins, certificates and silver dollars in order to \u201cstimulate the economy.\u201d He allowed the FED to print notes that were NOT redeemable for lawful money.\n\t\nOne year later, in April of 1933, FDR issued executive order 6102 requiring all persons (under threat of $10,000 fine, up to 10 years in prison, or both) to deliver on or before May 1, 1933 their gold coins, bullion and gold certificates to the Federal Reserve in exchange for $20.67 in Federal Reserve Paper. [$10,000 = $180.000 today]\n
http://www.zerohedge.com/sites/default/files/images/user5/imageroot/2012/08/Executive_Order_6102.jpg
\t\t\nAfter the confiscation of gold and the criminalization of those holding it, gold was raised 60% to $35/oz. resulting in an immediate loss for those who had surrendered the precious metal.\n\t\nAmerica\u2019s leaders had stolen the Labor and TRUE wealth of her citizens and replaced it with worthless paper.\n\t\n11 Years later, in 1944, while WW2 continued to rage, 730 delegates from all 44 Allied nations gathered at Mount Washington Hotel in Bretton Woods, NH to establish rules for commercial and financial relations among the world\u2019s industrial states. Because of the economic and physical devastation inflicted on virtually every country involved in the war and because the U.S. emerged from that conflict as an economic and military powerhouse in possession of an estimated 50% of the world\u2019s known gold, the Bretton Woods agreement replaced the British Pound and established the U.S. Dollar as the world\u2019s reserve currency. This meant that international commodities were priced in DOLLARS.\n
https://www.steemimg.com/images/2016/09/08/bretton-woods-mount-washington-hotel55d8c.jpg\t
\nThe agreement, which gave the U.S. an incredible financial advantage, was made under the condition that those dollars would remain redeemable for gold at a consistent rate of $35/oz. But with the unrestricted, unregulated 30-year-old Federal Reserve Fox watching over the Gold-filled hen house, and its greedy fingers itching to print more notes, those nations would soon discover that entrusting your nation\u2019s wealth to a nation that had already ripped off its own citizens was a financially destructive act.\n\t\n1945 brought an end to the War, revealing two of the planets undisputed super-powers; the United States and Russia. Thus began 4 decades of sustained political and military tensions, including the ever-looming threat of mutual nuclear destruction. The Cold War had begun!\n\t\nAmerica, after Bretton Woods, entered a time of great economic recovery and prosperity. Such that, in the 18 years between 1946 and 1964 Americans were busy adding 78 million baby-booming children to the population.\n
https://www.steemimg.com/images/2016/09/08/babyboom-8462f4.jpg
\t\nHowever, as prosperous and financially beneficial as Bretton Woods was to Americans, it had a major flaw. There was nothing in the agreement to prevent the FED from expanding the supply of Federal Reserve Notes. Soon there wouldn\u2019t be enough gold to back all the notes in circulation.\n\t\n1964 brought the last year America\u2019s coins were struck with silver, finally physically detaching our national coinage from any link to precious metals.\n\t\nDuring the 60s and early 70s, as the Vietnam War intensified, it became clear to the countries that had entrusted the U.S. with their gold, that the FED was running budget deficits and flooding the world with paper dollars. The French, under Charles De Gaulle, became suspicious that the U.S. would be unable to honor its Bretton Woods obligations to redeem their excess dollars into gold and, as the French exchanged surplus dollars for Gold, the U.S. Treasury\u2019s gold stock declined alarmingly!\n\t\nRather than use his presidential powers to eliminate the counterfeiting bankers, return the U.S. to a sound money system and honor their Bretton Woods agreement, Nixon chose a different course on Aug. 15th 1971, [Nixon\u2019s address]\n
\n\u201cDefend the dollar against the speculators,\u201d sounds similar to the 1907 \u201cbreak the grip of the money trust,\u201d mantra that lead to the creation and scourge of the Federal Reserve. Nixon\u2019s decree closed the gold window, unilaterally ending the Bretton Woods agreement, and robbing EVERY nation that trusted us!\n\t\nAs a seemingly unrelated side note, the details of which rest beyond the scope of this video, Nixon, 59 days prior to this announcement of Global Theft, officially initiated the War on Drugs. This effectively gave rise to national crime, empowered drug cartels and, as the Iran/Contra scandal would later reveal, created a government monopoly and financial windfall through covert, governmentally controlled, drug trafficking and sales.\n
https://www.steemimg.com/images/2016/09/08/40-years-of-the-war-on-drugs_worst-results1dc03.jpg
\t\nIn 1973 Nixon struck a deal with King Faisal of Saudi Arabia to ONLY accept U.S. Dollars as payment for oil and to invest any excess profits in U.S. Treasury bonds, notes and bills. Military protection of Saudi Oil fields would, in return, be supplied by the U.S. By 1975 the same offer was extended to EVERY member of OPEC, who also agreed to ONLY sell their oil in U.S. Dollars.\n\tThis detachment of the U.S. Dollar from Gold and its connection to foreign oil FORCED EVERY importing nation in the world to start maintaining a constant supply of Federal Reserve Paper. In order to obtain that paper, they would have to send real physical goods to America.\nEvery nation NEEDS a robust economy in order to survive, and since you can\u2019t get oil unless you purchase dollars, the powers-that-be, who run the U.S. have ensured that there is a constant demand for those dollars. While the demand remains for dollars, the dollar will hold its value \u2013 even while the FED continues to print and type them into existence.\n\t\nThis is the origin of the PetroDollar System. Worthless paper went out, everything America wanted came in and the U.S. got very, very rich as a result. So the members of OPEC were kept in power by the U.S., while the exporter nations amassed great wealth and banked their dollars at the Federal Reserve in the United States. This is the PetroDollar cycle.\n
https://www.steemimg.com/images/2016/09/08/220-Petrodollar-e1369235061479-1024x55922b71.jpg
\t\nAfter the PetroDollar recycling system was implemented, 70% of Saudi Arabia\u2019s wealth landed in one account\u2026the Federal Reserve of N.Y. So, the U.S. kept the Saudis in power, they got rich and America had an unlimited credit card.\n\t\nHere\u2019s how it works:\nJapan needs to by oil to keep their economy moving. They make a Honda and sell it to America for dollars. They take some of those dollars and give them to OPEC. OPEC gives Japan oil for dollars because they don\u2019t accept the Yen or any other currency. OPEC, then, takes those dollars and gives them back to the U.S. at the Federal Reserve. So the Fed prints the currency and exchanges it for REAL goods from our trading partners; those countries use it to pay their oil bill and OPEC invests it back into the U.S. \u2013 PetroDollar recycling.\n\t\nAs long as oil can ONLY be purchased with dollars, and we can print them for nothing \u2013 America has its very own money tree.\n\nIn the 16 years between 1975 and 1991, the U.S. used their oil-backed currency to outspend all other nations in order to amass the most powerful weaponry and military in world history. The Soviet Union Never had a chance. With the collapse of the communist BLOC and the end of the Cold War in 1991 as well as America\u2019s emergence as the undisputed world Super Power, many believed a new era of peace and stability had begun.\n\t\nBut the powers-that-be had other ideas. Within that same year, the U.S. invaded Iraq in the 1st Gulf War, crushing the Iraqi military, destroying its infrastructure and imposing crippling sanctions which continued for the next decade (throughout H.W. Bush and Clinton\u2019s administration) resulting in the deaths of more than half a million children. Clinton\u2019s administration was fully aware of these deaths.\nThe two pillars that underpin American Supremacy are: The dollar as the World Reserve currency which is backed by the second pillar -- the awesome Might of the U.S. Military.\n\t\nIf the dollar loses its status as the world\u2019s reserve currency, there will be no more funding for the empire we\u2019ve build around the globe. And an unfunded military becomes an impotent military.\n\t\nIf that supremacy relies on other nations holding dollars for oil, then any nation which challenges that arrangement becomes the target of American discipline, through acts of war like sanctions or direct military engagement.\n\t\nIn November of 2000, Saddam Hussein, became the challenger of that arrangement by announcing that he would begin trading oil for Euros. From 2001 to the beginning of the war, Iraq exported about 3.3 billion barrels of oil. The U.S. bought 2.5 billion of those barrels\u2026but had to pay in Euros. The PetroDollar System was under threat.\n\n\t\nIt was at this time that the Bush Administration, with the help of MSM, fabricated the story of Iraq\u2019s possession of WMD\u2019s. Iraq was quickly placed on the list of \u201caxis of evil\u201d nations. [Bush video]\n\n\t\nIs it a mere coincidence that less than 10 months after a direct assault on the PetroDollar Arrangement that this happened [911 compilation video]\n
https://www.steemimg.com/images/2016/09/08/timthumb.phpsrchttp3A2F2Fwww.veteranstoday.com2Fwp-content2Fuploads2F20162F042F13930618000816_PhotoI.jpgq90w795h470zc122e73.jpg
\t\nThe horrible tragedy of that day was used as a catalyst to strip American of their freedoms, further expand the military budget and invade Iraq. Once the U.S. had control in Iraq, oil sales were immediately switched back to the dollar, costing the Iraqis 17% of their profits due to the Euro\u2019s higher value. \n\t\nThis pattern of PetroDollar protection was replayed when, in Libya, Gahdafi was in the process of organizing a block of African countries to create a gold-based currency called the Dinar, with the intent of replacing the dollar in that region. In 2011, U.S. and NATO forces destabilized and toppled the Libyan government, executing Gaddafi in the process and immediately set up the Libyan Central Bank.\n\t\nThose who control the U.S. understand that even if a few countries begin to sell their oil in another currency, it will set up a chain reaction and the dollar will collapse. They understand that there is nothing else holding up the value of the dollar at this point, and so does the rest of the world. And it is the brute force of the U.S. military that is deployed to crush each and every resistant state in the Middle East and Africa.\n\t\nChina and Russia have made it clear that they will not tolerate an attack on Iran or Syria. If Iran, their key oil-producing ally, falls \u2013 they will be unable to escape the dollar without setting off a global conflict. And since it is America who has chosen to rob other nations with their PetroDollar scheme, at whom do you think other nations will be angry for burdening them with so much forced debt?\n
https://www.steemimg.com/images/2016/09/08/petrodollar653ff.jpg
\t\nThe dollars in your pocket, represent the labor at which you worked in order to obtain them. But those dollars are debt, generated by a war-mongering cabal of elite international banking criminals who have managed to pull off the greatest heist in human history.\n\t\nWe are all in this together. We have been enslaved and it is up to us to work on creating solutions to free ourselves from the taskmasters who have fashioned our chains.\n\n-----\nI'm Brian, the owner and creator of the YouTube Channel [HighImpactFlix](https://www.youtube.com/channel/UC7KZFVVnKjiCzkxWD-Qrakg) and the HighImpactFlix [Facebook page](https://www.facebook.com/HighImpactFlix/?fref=ts). My aim is to create useful, relevant, exciting and engaging content that will inform and **IMPACT** those who take the time to view it. Bottom line: I strive to make it worth your while to check out my videos!\n
https://www.steemimg.com/images/2016/09/01/HIFFacebookcoverreal3bccb9e.png
\nThanks for watching/reading. If you enjoyed this or, if it impacted you in any positive way, consider sharing and commenting. And, if you want, Upvote and [![alt text](https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif)](https://steemit.com/@highimpactflix)
It's MUCH appreciated! Revenue generated goes back into creating even more \"in-your-face\" content. Peace!", + "category": "petrodollar", + "children": 8, + "created": "2016-09-09T01:45:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/08/lawtiat-quote-picture.jpg9d3a8dd471c.jpg", + "https://www.steemimg.com/images/2016/09/08/193420100020FRN20G00042149A10002cb72.jpg", + "http://flowinghairdollar.com/wp-content/uploads/2009/07/flowing-hair-dollar.jpg", + "https://www.steemimg.com/images/2016/09/08/Limits-on-State-Powerb1132.jpg", + "https://www.steemimg.com/images/2016/09/08/George_III_by-Allan-Ramsay-in-1762e80e9.jpg", + "https://www.steemimg.com/images/2016/09/08/California_Clipper_500cad3c.jpg", + "https://www.steemimg.com/images/2016/09/08/lincoln_movie112035843.jpg", + "https://www.steemimg.com/images/2016/09/08/20-type-10a666e.jpg", + "https://www.steemimg.com/images/2016/09/08/US2BCurrency2B18802B1002BDollars2BSilver2BCertificatec6bf0.jpg", + "https://www.steemimg.com/images/2016/09/08/JP-Morgan_Carnegie-Steel_HD_768x432-16x99f66b.jpg", + "https://www.steemimg.com/images/2016/09/08/fed_reserve22094.jpg", + "https://www.steemimg.com/images/2016/09/08/federal-reserve-1914.jpgw480581d2.jpg", + "http://www.zerohedge.com/sites/default/files/images/user5/imageroot/2012/08/Executive_Order_6102.jpg", + "https://www.steemimg.com/images/2016/09/08/bretton-woods-mount-washington-hotel55d8c.jpg", + "https://www.steemimg.com/images/2016/09/08/babyboom-8462f4.jpg", + "https://www.steemimg.com/images/2016/09/08/40-years-of-the-war-on-drugs_worst-results1dc03.jpg", + "https://www.steemimg.com/images/2016/09/08/220-Petrodollar-e1369235061479-1024x55922b71.jpg", + "https://www.steemimg.com/images/2016/09/08/timthumb.phpsrchttp3A2F2Fwww.veteranstoday.com2Fwp-content2Fuploads2F20162F042F13930618000816_PhotoI.jpgq90w795h470zc122e73.jpg", + "https://www.steemimg.com/images/2016/09/08/petrodollar653ff.jpg", + "https://www.steemimg.com/images/2016/09/01/HIFFacebookcoverreal3bccb9e.png", + "https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif" + ], + "links": [ + "https://www.youtube.com/channel/UC7KZFVVnKjiCzkxWD-Qrakg", + "https://www.facebook.com/HighImpactFlix/?fref=ts", + "https://steemit.com/@highimpactflix" + ], + "tags": [ + "petrodollar", + "gold", + "silver", + "endthefed", + "anarchy" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 56330091562680, + "payout": 304.451, + "payout_at": "2016-10-10T06:03:27", + "pending_payout_value": "304.451 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-incriminating-history-lesson-they-just-can-t-teach-in-school", + "post_id": 898258, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 59 + }, + "title": "The Incriminating History Lesson They Just Can't Teach in School!", + "updated": "2016-09-09T01:45:39", + "url": "/petrodollar/@highimpactflix/the-incriminating-history-lesson-they-just-can-t-teach-in-school" + }, + { + "active_votes": [ + { + "rshares": "6886493547", + "voter": "stephen.king989" + }, + { + "rshares": "6205391225", + "voter": "gonzo" + }, + { + "rshares": "57219396", + "voter": "steemtime" + }, + { + "rshares": "67088660", + "voter": "lecrazycanuckeh" + }, + { + "rshares": "149408195", + "voter": "canuckgurl" + } + ], + "author": "lecrazycanuckeh", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Hey guys just another short video where I share my point of view.\n\nAs the title states this one is about the petrodollar where I do my best to explain the reasons of my beliefs as a laymen. If I can get it, surely you can too!\n\nAs always sharing thoughts is encouraged :)\nhttps://youtu.be/3A7Bz76xfN8\nLots of great documentaries out there, hope it helped to spark an interest. Cheers", + "category": "politics", + "children": 1, + "created": "2016-08-31T22:48:51", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://img.youtube.com/vi/3A7Bz76xfN8/0.jpg" + ], + "links": [ + "https://youtu.be/3A7Bz76xfN8" + ], + "tags": [ + "politics", + "petrodollar", + "war", + "truth" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 13365601023, + "payout": 0.0, + "payout_at": "2016-10-02T12:13:03", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "petrodollar-in-laymen-terms", + "post_id": 817904, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 5 + }, + "title": "PETRODOLLAR in laymen terms", + "updated": "2016-08-31T22:48:51", + "url": "/politics/@lecrazycanuckeh/petrodollar-in-laymen-terms" + }, + { + "active_votes": [ + { + "rshares": "627712922", + "voter": "walkingmage" + }, + { + "rshares": "70211074", + "voter": "aidar88" + }, + { + "rshares": "16995765440", + "voter": "jaredhowe" + }, + { + "rshares": "57480558", + "voter": "mikerowerules12" + }, + { + "rshares": "59284524", + "voter": "peterjhendrick" + }, + { + "rshares": "57529005", + "voter": "keltone7" + }, + { + "rshares": "55595525", + "voter": "drcanes" + }, + { + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "rshares": "54277042", + "voter": "ibringawareness" + }, + { + "rshares": "125457173", + "voter": "charlie.wilson" + } + ], + "author": "highimpactflix", + "author_payout_value": "0.000 HBD", + "author_reputation": 59.9, + "beneficiaries": [], + "blacklists": [], + "body": "When I first created and launched this video (actually it was a series of 2 videos; Parts 1 &2) on YouTube a little over 2 years ago, it received over 2.5 million hits in a few short months and had _**TENS of THOUSANDS**_ of likes and few dislikes. Then, without warning and without explanation, YT demonetized it and finally REMOVED it. To this day, no reason was given. By every indication it was headed for the viral stratosphere!\n
http://i68.tinypic.com/2emzr4y.jpg
\nCensorship, by the way, is one of the main reasons I'm here on Steemit. \n\nI HATE this YouTube message!\n
http://i65.tinypic.com/2wme4xj.jpg
\n\nI have since repackaged and renamed the video series. Additionally, I've combined both videos into one action-packed, information-infused short film on the birth of our monetary system; tracing it's roots from the sound money of Gold and Silver \n
http://i63.tinypic.com/o91tao.gif
\n to the inception of the non-federal, treasonous Federal Reserve, \n
http://i66.tinypic.com/d4lnd.jpg
\nto the Bretton Woods accord, \n
http://i63.tinypic.com/157n1up.jpg
\nNixon's closing of the gold window (\"happy\" anniversary on that one BTW),\n
http://i65.tinypic.com/2u7m7x3.jpg
\nall the way through to the birth of the Petrodollar and the reason we're even in the Middle east. \n
http://i63.tinypic.com/3a61.jpg
\n\nAs Bastiat wrote, \"The state is that great fiction, by which everyone seeks to live at the expense of everyone else.\" And what a GREAT FICTION it is!! Enjoy the video!\n
\n\n\n____\nI'm Brian Young, owner of the HighImpactFlix YouTube channel. https://www.youtube.com/channel/UC7KZFVVnKjiCzkxWD-Qrakg \n
http://i67.tinypic.com/v7ckur.png
\nFeel free to follow me on Facebook: https://www.facebook.com/HighImpactFlix/\nInstagram @HighImpactFlix\nTwitter @HighImpactFlix\n\nCHEERS!!", + "category": "steemit", + "children": 1, + "created": "2016-08-17T17:45:54", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i68.tinypic.com/2emzr4y.jpg", + "http://i65.tinypic.com/2wme4xj.jpg", + "http://i63.tinypic.com/o91tao.gif", + "http://i66.tinypic.com/d4lnd.jpg", + "http://i63.tinypic.com/157n1up.jpg", + "http://i65.tinypic.com/2u7m7x3.jpg", + "http://i63.tinypic.com/3a61.jpg", + "http://i67.tinypic.com/v7ckur.png" + ], + "links": [ + "https://www.youtube.com/channel/UC7KZFVVnKjiCzkxWD-Qrakg", + "https://www.facebook.com/HighImpactFlix/" + ], + "tags": [ + "steemit", + "petrodollar", + "endthefed", + "goldwindow", + "currency" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 18154245111, + "payout": 0.0, + "payout_at": "2016-09-17T21:28:12", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "how-to-control-the-world-a-riveting-video-instruction-manual-full-version", + "post_id": 644359, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 10 + }, + "title": "How to Control the World: A Riveting Video Instruction Manual (FULL VERSION)", + "updated": "2016-08-17T17:45:54", + "url": "/steemit/@highimpactflix/how-to-control-the-world-a-riveting-video-instruction-manual-full-version" + } +] diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.orig.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.orig.json new file mode 100644 index 00000000..93da2992 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.orig.json @@ -0,0 +1,7 @@ +{ + "follows": false, + "follows_blacklists": false, + "ignores": false, + "is_blacklisted": false + } + \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_follows.orig.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_follows.orig.json new file mode 100644 index 00000000..74a70824 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_follows.orig.json @@ -0,0 +1,7 @@ +{ + "follows": true, + "follows_blacklists": false, + "ignores": false, + "is_blacklisted": false + } + \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_ignores.orig.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_ignores.orig.json new file mode 100644 index 00000000..f75de7a2 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_ignores.orig.json @@ -0,0 +1,7 @@ +{ + "follows": false, + "follows_blacklists": false, + "ignores": true, + "is_blacklisted": false + } + \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_trending_topics_limit_2.orig.json b/hivemind/tavern/bridge_api_patterns/get_trending_topics_limit_2.orig.json new file mode 100644 index 00000000..525b7160 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_trending_topics_limit_2.orig.json @@ -0,0 +1,10 @@ +[ + [ + "photography", + "#photography" + ], + [ + "travel", + "#travel" + ] +] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_trending_topics_over_limit.orig.json b/hivemind/tavern/bridge_api_patterns/get_trending_topics_over_limit.orig.json new file mode 100644 index 00000000..14ea4517 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_trending_topics_over_limit.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (26 > 25)", + "message": "Invalid parameters" +} -- GitLab From 56047d1c2f1adc4897d9f3cc7b202ce0e7a4cdcc Mon Sep 17 00:00:00 2001 From: ABW Date: Tue, 25 Aug 2020 17:02:01 +0200 Subject: [PATCH 40/49] [ABW]: added .orig files for new condenser_api tests, some test patterns corrected --- .../get_account_votes_deprecated.orig.json | 5 + .../get_blog_invalid_account_char.orig.json | 5 + .../get_blog_invalid_limit.orig.json | 5 + .../get_blog_limit_100.orig.json | 645 ++++ .../get_blog_no_results.orig.json | 1 + .../get_blog_non_existing.orig.json | 5 + .../get_blog_over_limit.orig.json | 5 + .../get_blog_too_long_account_name.orig.json | 5 + ..._discussions_by_payout_limit_100.orig.json | 3403 +++++++++++++++++ ...discussions_by_payout_no_results.orig.json | 1 + ...discussions_by_payout_over_limit.orig.json | 5 + .../get_content_deleted.orig.json | 5 + .../get_content_gtg.orig.json | 554 +++ ...by_author_before_date_no_results.orig.json | 640 ++++ ..._by_author_before_date_no_results.pat.json | 641 +++- ...by_author_before_date_over_limit.orig.json | 5 + ...s_by_comments_unexpected_keyword.orig.json | 5 + ...ow_count_following_and_followers.orig.json | 5 + .../get_follow_count_no_followers.orig.json | 5 + .../get_followers_ignore.orig.json | 9 + .../get_followers_last.orig.json | 9 + .../get_followers_no_followers.orig.json | 1 + .../get_followers_over_limit.orig.json | 5 + ...llowers_trending_tags_over_limit.orig.json | 5 + .../get_followers_wrong_type.orig.json | 5 + .../get_following_ignore.orig.json | 9 + .../get_following_last.orig.json | 9 + .../get_following_no_following.orig.json | 1 + .../get_following_over_limit.orig.json | 5 + .../get_following_wrong_type.orig.json | 5 + .../get_multiple_accounts.orig.json | 329 ++ .../get_multiple_blog_entries.orig.json | 9 + .../get_non_existing_accounts.orig.json | 1 + ...t_discussions_by_payout_limit_20.orig.json | 1836 +++++++++ ...discussions_by_payout_no_results.orig.json | 1 + ...discussions_by_payout_over_limit.orig.json | 5 + ...y_last_update_blank_start_author.orig.json | 5 + ...last_update_invalid_account_name.orig.json | 5 + ...replies_by_last_update_limit_100.orig.json | 1574 ++++++++ ..._replies_by_last_update_limit_100.pat.json | 3148 ++++++++------- ...eplies_by_last_update_no_results.orig.json | 1 + ...eplies_by_last_update_over_limit.orig.json | 5 + .../get_trending_tags_limit_250.orig.json | 1502 ++++++++ .../test_condenser_api_patterns.tavern.yaml | 12 +- 44 files changed, 12859 insertions(+), 1582 deletions(-) create mode 100644 hivemind/tavern/condenser_api_patterns/get_account_votes_deprecated.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog_invalid_account_char.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog_invalid_limit.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog_limit_100.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog_no_results.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog_non_existing.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog_over_limit.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_blog_too_long_account_name.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_no_results.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_over_limit.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_content_deleted.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_content_gtg.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_over_limit.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_discussions_by_comments_unexpected_keyword.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_follow_count_following_and_followers.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_follow_count_no_followers.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_followers_ignore.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_followers_last.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_followers_no_followers.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_followers_over_limit.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_followers_trending_tags_over_limit.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_followers_wrong_type.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_following_ignore.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_following_last.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_following_no_following.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_following_over_limit.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_following_wrong_type.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_multiple_accounts.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_multiple_blog_entries.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_non_existing_accounts.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_no_results.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_over_limit.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_blank_start_author.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_invalid_account_name.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_no_results.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_over_limit.orig.json create mode 100644 hivemind/tavern/condenser_api_patterns/get_trending_tags_limit_250.orig.json diff --git a/hivemind/tavern/condenser_api_patterns/get_account_votes_deprecated.orig.json b/hivemind/tavern/condenser_api_patterns/get_account_votes_deprecated.orig.json new file mode 100644 index 00000000..d13e4fb8 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_account_votes_deprecated.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32000, + "data": "ApiError: get_account_votes is no longer supported, for details see https://steemit.com/steemit/@steemitdev/additional-public-api-change", + "message": "Server error" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_invalid_account_char.orig.json b/hivemind/tavern/condenser_api_patterns/get_blog_invalid_account_char.orig.json new file mode 100644 index 00000000..26fdde36 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog_invalid_account_char.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid account char", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_invalid_limit.orig.json b/hivemind/tavern/condenser_api_patterns/get_blog_invalid_limit.orig.json new file mode 100644 index 00000000..a88114e6 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog_invalid_limit.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "start_index and limit combination is invalid (11, 20)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_limit_100.orig.json b/hivemind/tavern/condenser_api_patterns/get_blog_limit_100.orig.json new file mode 100644 index 00000000..8c58e68f --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog_limit_100.orig.json @@ -0,0 +1,645 @@ +[ + { + "blog": "steemit", + "entry_id": 1, + "comment": { + "post_id": 1, + "author": "steemit", + "permlink": "firstpost", + "category": "meta", + "title": "Welcome to Steem!", + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "json_metadata": "{}", + "created": "2016-03-30T18:30:18", + "last_update": "2016-03-30T18:30:18", + "depth": 0, + "children": 36, + "net_rshares": 830053779138, + "last_payout": "2016-08-24T19:59:42", + "cashout_time": "1969-12-31T23:59:59", + "total_payout_value": "0.942 HBD", + "curator_payout_value": "0.756 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 224, + "active_votes": [ + { + "voter": "dantheman", + "rshares": "375241", + "percent": "100", + "reputation": 0 + }, + { + "voter": "mr11acdee", + "rshares": "886132", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemit78", + "rshares": "5100", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "anonymous", + "rshares": "1259167", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "hello", + "rshares": "318519", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "world", + "rshares": "153384", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ned", + "rshares": "-936400", + "percent": "-100", + "reputation": 0 + }, + { + "voter": "fufubar1", + "rshares": "59412", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "anonymous1", + "rshares": "14997", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "red", + "rshares": "1441", + "percent": "100", + "reputation": 0 + }, + { + "voter": "liondani", + "rshares": "551390835500", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "roadscape", + "rshares": "82748", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "xeroc", + "rshares": "10772", + "percent": "100", + "reputation": 0 + }, + { + "voter": "markopaasila", + "rshares": "7685088000", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tshering-tamang", + "rshares": "454510724", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "romangelsi", + "rshares": "681946946", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dedmatvey", + "rshares": "504895891", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "joelinux", + "rshares": "498863058", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "piranhax", + "rshares": "9590417", + "percent": "0", + "reputation": 0 + }, + { + "voter": "ned-reddit-login", + "rshares": "473258270", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "fernando-sanz", + "rshares": "0", + "percent": "3600", + "reputation": 0 + }, + { + "voter": "gekko", + "rshares": "425903066", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gilang-ramadhan", + "rshares": "381805870", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kamvreto", + "rshares": "392459059", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "acidyo", + "rshares": "422984262", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tosch", + "rshares": "47179379651", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "klye", + "rshares": "7831667988", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "coar", + "rshares": "1019950749", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "murh", + "rshares": "1746058458", + "percent": "1509", + "reputation": 0 + }, + { + "voter": "drinkzya", + "rshares": "22639073725", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "hien-tran", + "rshares": "0", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "patrick-g", + "rshares": "742566481", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ben99", + "rshares": "40624969", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sunshinecrypto", + "rshares": "1742755097", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kingtylervvs", + "rshares": "108855472", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "marinabogumil", + "rshares": "485112237", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "decrypt", + "rshares": "917398502", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "senseiteekay", + "rshares": "5067187498", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "r33drum", + "rshares": "5154897955", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cryptosi", + "rshares": "5033902237", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "condra", + "rshares": "1037079223", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jearson", + "rshares": "233032838", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tritium", + "rshares": "240809500", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "allmonitors", + "rshares": "123321995", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "artjedi", + "rshares": "226074637", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "anduweb", + "rshares": "931542394", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "inertia", + "rshares": "2292983350", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "maximkichev", + "rshares": "128561059", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "a9inchcock", + "rshares": "183438273", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "desmonid", + "rshares": "266262926", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "madhatting", + "rshares": "71498008", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ubg", + "rshares": "23726644841", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "royaltiffany", + "rshares": "3741408303", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gribgo", + "rshares": "131577259", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "deanliu", + "rshares": "12371398765", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "orm", + "rshares": "28907874049", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "qonq99", + "rshares": "528988007", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rd7783", + "rshares": "129537329", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "slava", + "rshares": "615020728", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "flyboyzombie", + "rshares": "0", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sictransitgloria", + "rshares": "100102503", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "curator", + "rshares": "95219365", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dubovoy", + "rshares": "232295871", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "solos", + "rshares": "0", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "creatorgalaxy", + "rshares": "96945805", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "trigonice29", + "rshares": "99813231", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "blysards", + "rshares": "0", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "uwe69", + "rshares": "3721016208", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nigmat", + "rshares": "1279854", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "magicmonk", + "rshares": "13974353753", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "satoshifpv", + "rshares": "4968585456", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "naturalista", + "rshares": "1660613178", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "metrox", + "rshares": "10847083143", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bestmalik", + "rshares": "18340928", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kolyan31", + "rshares": "59563315", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "romancs", + "rshares": "710989138", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "luke490", + "rshares": "59366614", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bro66", + "rshares": "58762473", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "future24", + "rshares": "201822591", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mythras", + "rshares": "58623688", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "imarealboy777", + "rshares": "56536509", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "matrixdweller", + "rshares": "0", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "smartguylabcoat", + "rshares": "48299362", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mabiturm", + "rshares": "59157099", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "captainamerica", + "rshares": "48283979", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "edbriv", + "rshares": "54761612", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rittr", + "rshares": "865125771", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jelloducky", + "rshares": "92614447", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tcstix", + "rshares": "52740989", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "friedwater", + "rshares": "49467477", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "denisdiaz", + "rshares": "57366185", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "loganarchy", + "rshares": "132070449", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "love-spirit-nerd", + "rshares": "48811442", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dikanevn", + "rshares": "51549585", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "zelious", + "rshares": "54017869", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "freebornangel", + "rshares": "50129944", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "f1111111", + "rshares": "53196086", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "anomaly", + "rshares": "0", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jack8831", + "rshares": "52394017140", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "buckland", + "rshares": "0", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "goldmatters", + "rshares": "0", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "meta", + "url": "/meta/@steemit/firstpost", + "root_title": "Welcome to Steem!", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_hbd": 10000 + }, + "reblogged_on": "1970-01-01T00:00:00" + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_no_results.orig.json b/hivemind/tavern/condenser_api_patterns/get_blog_no_results.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog_no_results.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_non_existing.orig.json b/hivemind/tavern/condenser_api_patterns/get_blog_non_existing.orig.json new file mode 100644 index 00000000..fa835a58 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog_non_existing.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "account not found: `non.existing`", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_over_limit.orig.json b/hivemind/tavern/condenser_api_patterns/get_blog_over_limit.orig.json new file mode 100644 index 00000000..eefb0b1f --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog_over_limit.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (501 > 500)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_too_long_account_name.orig.json b/hivemind/tavern/condenser_api_patterns/get_blog_too_long_account_name.orig.json new file mode 100644 index 00000000..7ab16f7f --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_blog_too_long_account_name.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid account name length: `too.long.account.name`", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.orig.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.orig.json new file mode 100644 index 00000000..c1edea78 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.orig.json @@ -0,0 +1,3403 @@ +[ + { + "post_id": 635692, + "author": "royaltiffany", + "permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", + "category": "test", + "title": "", + "body": "Fail ? No spam bot army...", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:06:00", + "last_update": "2016-08-17T02:06:00", + "depth": 1, + "children": 9, + "net_rshares": 211900981073, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.132 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 26, + "active_votes": [ + { + "voter": "trogdor", + "rshares": "211439242838", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "highnye", + "rshares": "51307830", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lovetosteemit", + "rshares": "54126702", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemithelper1", + "rshares": "50221956", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemorama", + "rshares": "306081747", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "trogdor", + "parent_permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 929861, + "author": "bige37", + "permlink": "re-royaltiffany-test-20160912t114919145z", + "category": "test", + "title": "", + "body": "This is like saying don't push the red button....dang it!!!!\n\nhttp://i.imgur.com/OG66bhF.jpg", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/i.imgur.com\\/OG66bhF.jpg\"]}", + "created": "2016-09-12T11:49:18", + "last_update": "2016-09-12T13:26:51", + "depth": 1, + "children": 2, + "net_rshares": 127840289791, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T01:42:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.029 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 92, + "active_votes": [ + { + "voter": "demotruk", + "rshares": "127840289791", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "royaltiffany", + "parent_permlink": "test", + "url": "/test/@royaltiffany/test#@bige37/re-royaltiffany-test-20160912t114919145z", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 944530, + "author": "bitcoiner", + "permlink": "re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z", + "category": "test", + "title": "", + "body": "It would seem only Steemit uses the caching server img1.steemit.com, because, well, it's theirs.. Steemd just shows the post as it is in the blockchain, which is the unaltered image link.\nThe thing is, is that all the posts are on a public decentralized blockchain, so it's hard to track who has accessed it. You would have to make it a private blockchain, and count all requests to retrieve a post. Even if this were the case, you would have no way to track any copies of the data made after the fact.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T22:37:39", + "last_update": "2016-09-13T22:37:39", + "depth": 6, + "children": 0, + "net_rshares": 111795622957, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.022 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 502, + "active_votes": [ + { + "voter": "derekareith", + "rshares": "111795622957", + "percent": "7500", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", + "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 960637, + "author": "cheetah", + "permlink": "re-test-20160915t190252", + "category": "test", + "title": "", + "body": "Warning! This user is on my black list, likely as a known plagiarist, spammer or ID thief. Please be cautious with this post!\nTo get off this list, please chat with us in the #steemitabuse-appeals channel in [steemit.chat](http://steemit.chat).", + "json_metadata": "{}", + "created": "2016-09-15T19:02:51", + "last_update": "2016-09-15T19:02:51", + "depth": 1, + "children": 0, + "net_rshares": 66832072343, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T19:09:49", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.014 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 244, + "active_votes": [ + { + "voter": "cheetah", + "rshares": "66397090281", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cheetah22", + "rshares": "101333267", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cheetah23", + "rshares": "188781535", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cheetah24", + "rshares": "144867260", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "machinelearning", + "parent_permlink": "test", + "url": "/test/@machinelearning/test#@cheetah/re-test-20160915t190252", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 959003, + "author": "achim86", + "permlink": "re-oaldamster-re-achim86-test-20160915t155303746z", + "category": "test", + "title": "", + "body": "yeahhhh! https://steemit.com/steemit/@achim86/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung", + "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@achim86\\/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung\"]}", + "created": "2016-09-15T15:53:06", + "last_update": "2016-09-15T17:05:36", + "depth": 2, + "children": 0, + "net_rshares": 61272757397, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T14:39:17", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.013 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 125, + "active_votes": [ + { + "voter": "oaldamster", + "rshares": "57522418578", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "achim86", + "rshares": "3750338819", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "oaldamster", + "parent_permlink": "re-achim86-test-20160915t070512394z", + "url": "/test/@achim86/test#@achim86/re-oaldamster-re-achim86-test-20160915t155303746z", + "root_title": "test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 857734, + "author": "alktoni", + "permlink": "re-str11ngfello-test2-20160904t233043502z", + "category": "test", + "title": "", + "body": "test if testing is a test", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-04T23:30:45", + "last_update": "2016-09-04T23:30:45", + "depth": 1, + "children": 0, + "net_rshares": 19450828249, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-05T23:22:30", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.004 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 25, + "active_votes": [ + { + "voter": "str11ngfello", + "rshares": "19450828249", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "str11ngfello", + "parent_permlink": "test2", + "url": "/test/@str11ngfello/test2#@alktoni/re-str11ngfello-test2-20160904t233043502z", + "root_title": "test2", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 921255, + "author": "dickbutt", + "permlink": "re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/j6i3qa58f/dickbutt.jpg", + "json_metadata": "{}", + "created": "2016-09-11T12:22:21", + "last_update": "2016-09-11T12:22:21", + "depth": 4, + "children": 0, + "net_rshares": 12292537315, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.002 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 45, + "active_votes": [ + { + "voter": "r4fken", + "rshares": "12292537315", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "pompe72", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 870030, + "author": "brendio", + "permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", + "category": "test", + "title": "", + "body": "Does dickbutt come whenever he is called? #test", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-06T06:19:18", + "last_update": "2016-09-06T06:19:18", + "depth": 1, + "children": 4, + "net_rshares": 5205390768, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.001 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 47, + "active_votes": [ + { + "voter": "brendio", + "rshares": "5205390768", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "testing-dickbutt", + "url": "/test/@dickbutt/testing-dickbutt#@brendio/re-dickbutt-testing-dickbutt-20160906t061918048z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 944446, + "author": "derekareith", + "permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", + "category": "test", + "title": "", + "body": "Just saw that the counter works on Steemd:\nhttps://steemd.com/test/@derekareith/page-view-counter-test-post\nI thought Steemd just redirects the same cached images, but I guess its just steemit. I'm wondering if there's a way to make it \"hidden\" on steemit but visible on steemd so authors could monitor these stats on the backend?", + "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemd.com\\/test\\/@derekareith\\/page-view-counter-test-post\"]}", + "created": "2016-09-13T22:25:12", + "last_update": "2016-09-13T22:25:12", + "depth": 5, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 331, + "active_votes": [], + "author_reputation": 0, + "parent_author": "bitcoiner", + "parent_permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 831916, + "author": "dickbutt", + "permlink": "re-re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259-20160902t064336", + "category": "test", + "title": "", + "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", + "json_metadata": "{}", + "created": "2016-09-02T06:43:39", + "last_update": "2016-09-02T06:43:39", + "depth": 5, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 69, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259-20160902t064336", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 652753, + "author": "laonie", + "permlink": "re-trogdor-re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160818t075042763z", + "category": "test", + "title": "", + "body": "Anyway, i feel embarrassing, i removed the list, my bot won't do this again, but will follow good human curators only.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-18T07:50:39", + "last_update": "2016-08-18T07:50:39", + "depth": 5, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 118, + "active_votes": [], + "author_reputation": 0, + "parent_author": "trogdor", + "parent_permlink": "re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@laonie/re-trogdor-re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160818t075042763z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635813, + "author": "royaltiffany", + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022232495z", + "category": "test", + "title": "", + "body": "I knoooow !! I dont know where they came from !! Started from my last post.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:22:30", + "last_update": "2016-08-17T02:22:30", + "depth": 5, + "children": 0, + "net_rshares": 60116331, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 75, + "active_votes": [ + { + "voter": "scotthelms89", + "rshares": "60116331", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022232495z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635744, + "author": "royaltiffany", + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z", + "category": "test", + "title": "", + "body": "Yes i did them ahahahhahah , ntmu too!", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:13:30", + "last_update": "2016-08-17T02:13:42", + "depth": 5, + "children": 0, + "net_rshares": 15078297487, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 38, + "active_votes": [ + { + "voter": "hellokitty", + "rshares": "14714651186", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "btctoken", + "rshares": "121297875", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "solarempirepc", + "rshares": "53821026", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mrainp", + "rshares": "134400698", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lovetosteemit", + "rshares": "54126702", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943539, + "author": "bitcoiner", + "permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", + "category": "test", + "title": "", + "body": "Oh haha. Yes, I haven't signed a block for more than 24 hours!", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:29:33", + "last_update": "2016-09-13T20:29:33", + "depth": 4, + "children": 2, + "net_rshares": 77095774656, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 62, + "active_votes": [ + { + "voter": "derekareith", + "rshares": "77095774656", + "percent": "5000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", + "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920022, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z", + "category": "test", + "title": "", + "body": "breath", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:52:09", + "last_update": "2016-09-11T08:52:09", + "depth": 4, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 6, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919922, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z", + "category": "test", + "title": "", + "body": "its just a bot", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:31:00", + "last_update": "2016-09-11T08:31:00", + "depth": 4, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 14, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919920, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z", + "category": "test", + "title": "", + "body": "reply to the bot with the word \"feminist\"", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:30:39", + "last_update": "2016-09-11T08:30:39", + "depth": 4, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 41, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 831914, + "author": "dickbutt", + "permlink": "re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", + "category": "test", + "title": "", + "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", + "json_metadata": "{}", + "created": "2016-09-02T06:43:03", + "last_update": "2016-09-02T06:43:03", + "depth": 4, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 69, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 641876, + "author": "gary-smith", + "permlink": "re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t142255070z", + "category": "test", + "title": "", + "body": "If I said no would you believe me ?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T14:22:54", + "last_update": "2016-08-17T14:22:54", + "depth": 4, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 35, + "active_votes": [], + "author_reputation": 0, + "parent_author": "thebeachedwhale", + "parent_permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@gary-smith/re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t142255070z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 639400, + "author": "trogdor", + "permlink": "re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", + "category": "test", + "title": "", + "body": "Hi @laonie, for the record I was not talking about you. I don't have anything against trying to maximize your profits. There is an account \"steemitmarket\" that is trying to buy and sell votes with 800 different spam accounts that they control, and they used all of them to spam my recent post.", + "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"laonie\"]}", + "created": "2016-08-17T10:20:30", + "last_update": "2016-08-17T10:20:30", + "depth": 4, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 293, + "active_votes": [], + "author_reputation": 0, + "parent_author": "laonie", + "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635801, + "author": "trogdor", + "permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", + "category": "test", + "title": "", + "body": "This is really interesting, it looks like you have a small spam bot army following you around in the comments section.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:21:00", + "last_update": "2016-08-17T02:21:00", + "depth": 4, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 118, + "active_votes": [], + "author_reputation": 0, + "parent_author": "royaltiffany", + "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635740, + "author": "trogdor", + "permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", + "category": "test", + "title": "", + "body": "Could have been a one-off test, or possibly tag related, since i used the #bot tag in my other post I think.\n\nOh btw, hi @royaltiffany, nice to meet you :) Didn't you do shots for votes or something? lol", + "json_metadata": "{\"tags\":[\"bot\",\"test\"],\"users\":[\"royaltiffany\"]}", + "created": "2016-08-17T02:12:48", + "last_update": "2016-08-17T02:12:48", + "depth": 4, + "children": 1, + "net_rshares": 14714651186, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 203, + "active_votes": [ + { + "voter": "hellokitty", + "rshares": "14714651186", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "royaltiffany", + "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635684, + "author": "royaltiffany", + "permlink": "re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020535226z", + "category": "test", + "title": "", + "body": "Lol", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:05:33", + "last_update": "2016-08-17T02:05:33", + "depth": 4, + "children": 0, + "net_rshares": 201590749, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 3, + "active_votes": [ + { + "voter": "scotthelms89", + "rshares": "60116331", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mrainp", + "rshares": "141474418", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "thebeachedwhale", + "parent_permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020535226z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 946378, + "author": "freebornangel", + "permlink": "re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z", + "category": "test", + "title": "", + "body": "That is too bad, that is a really good metric.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-14T03:18:00", + "last_update": "2016-09-14T03:18:00", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 46, + "active_votes": [], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", + "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943519, + "author": "derekareith", + "permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", + "category": "test", + "title": "", + "body": "This is my miner acct that I gave up mining with XD...damn rabbits. Was using to test :)", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:26:09", + "last_update": "2016-09-13T20:26:09", + "depth": 3, + "children": 3, + "net_rshares": 2767044151, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 88, + "active_votes": [ + { + "voter": "bitcoiner", + "rshares": "2767044151", + "percent": "5000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "boomer", + "parent_permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 938127, + "author": "golfball", + "permlink": "re-golfball-re-golfball-re-golfball-test-20160913t071932003z", + "category": "test", + "title": "", + "body": "mouse เมาส์ ิั\nhard drive ฮาร์ดไดร์\nhard disk ฮาร์ดดิสก์\nMonitor หน้าจอ\nDisplay แสดง\nLCD screen\nCTR screen หน้าจอ\nplasma screen พราสม่า\nRAM memory หน่วยความจำแรม\nROM memory รอม\nPrinter เครื่องพิมพ์\nplotter\nmicrophone ไมโครโฟน\nscanner เครืองสเเกน\nspeakers\nkeyboard แป้นพิมพ์\nbarcode บาร์โค้ด\nRight click\nLeft click\nDouble click\nCPU", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T07:19:33", + "last_update": "2016-09-13T07:20:09", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-30T07:41:51", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 330, + "active_votes": [], + "author_reputation": 0, + "parent_author": "golfball", + "parent_permlink": "re-golfball-re-golfball-test-20160913t063516433z", + "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-re-golfball-test-20160913t071932003z", + "root_title": "Test One", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 937498, + "author": "royaltiffany", + "permlink": "re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z", + "category": "test", + "title": "", + "body": "Ahahahhahaha ....click bait", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T05:12:42", + "last_update": "2016-09-13T05:12:42", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T01:42:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 27, + "active_votes": [], + "author_reputation": 0, + "parent_author": "demotruk", + "parent_permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z", + "url": "/test/@royaltiffany/test#@royaltiffany/re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 921247, + "author": "pompe72", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", + "category": "test", + "title": "", + "body": "dickbutt\n\nhttps://img1.steemit.com/0x0/http://i64.tinypic.com/1zn8p6d.jpg", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/i64.tinypic.com\\/1zn8p6d.jpg\"]}", + "created": "2016-09-11T12:21:27", + "last_update": "2016-09-11T12:21:27", + "depth": 3, + "children": 1, + "net_rshares": 52449059, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 73, + "active_votes": [ + { + "voter": "paolo75", + "rshares": "52449059", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051", + "url": "/test/@dickbutt/testing-dickbutt#@pompe72/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920140, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z", + "category": "test", + "title": "", + "body": "Breath Skeptic, Breath https://www.youtube.com/watch?v=y43FolFlY78", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/y43FolFlY78\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=y43FolFlY78\"]}", + "created": "2016-09-11T09:16:27", + "last_update": "2016-09-11T09:16:27", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 66, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920044, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z", + "category": "test", + "title": "", + "body": "feminism?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:55:36", + "last_update": "2016-09-11T08:55:36", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 9, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920039, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z", + "category": "test", + "title": "", + "body": "feminism?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:54:33", + "last_update": "2016-09-11T08:54:33", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 9, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920034, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z", + "category": "test", + "title": "", + "body": "femninism?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:54:00", + "last_update": "2016-09-11T08:54:00", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 10, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920031, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z", + "category": "test", + "title": "", + "body": "feminism?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:53:12", + "last_update": "2016-09-11T08:53:12", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 9, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919932, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z", + "category": "test", + "title": "", + "body": "feminist?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:32:12", + "last_update": "2016-09-11T08:32:12", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 9, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919626, + "author": "skeptic", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", + "category": "test", + "title": "", + "body": "Sick little bot.\n8D", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T07:27:27", + "last_update": "2016-09-11T07:27:27", + "depth": 3, + "children": 3, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 19, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", + "url": "/test/@dickbutt/testing-dickbutt#@skeptic/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919917, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z", + "category": "test", + "title": "", + "body": "feminist", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:29:57", + "last_update": "2016-09-11T08:29:57", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 8, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919938, + "author": "earnest", + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z", + "category": "test", + "title": "", + "body": "Much feminist!!!!", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:33:03", + "last_update": "2016-09-11T08:33:03", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 17, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 859549, + "author": "bullionstackers", + "permlink": "re-ace108-re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t050838289z", + "category": "test", + "title": "", + "body": "Thank you @ace108\nCheck your message", + "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"ace108\"]}", + "created": "2016-09-05T05:08:39", + "last_update": "2016-09-05T06:05:39", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-06T04:18:33", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 36, + "active_votes": [], + "author_reputation": 0, + "parent_author": "ace108", + "parent_permlink": "re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", + "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want#@bullionstackers/re-ace108-re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t050838289z", + "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 857335, + "author": "dickbutt", + "permlink": "re-re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z-20160904t222429", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/u3jff1rzz/105441_dickbutt_rainbow_wiggle_gif_Im_6_YAW.gif", + "json_metadata": "{}", + "created": "2016-09-04T22:24:30", + "last_update": "2016-09-04T22:24:30", + "depth": 3, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 80, + "active_votes": [], + "author_reputation": 0, + "parent_author": "steemjesus", + "parent_permlink": "re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z-20160904t222429", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 831911, + "author": "dickbutt", + "permlink": "re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", + "category": "test", + "title": "", + "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", + "json_metadata": "{}", + "created": "2016-09-02T06:42:27", + "last_update": "2016-09-02T06:42:27", + "depth": 3, + "children": 2, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 69, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 780488, + "author": "thecleangame", + "permlink": "re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z", + "category": "test", + "title": "", + "body": "lol Glad I could help :)", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-28T18:19:12", + "last_update": "2016-08-28T18:19:12", + "depth": 3, + "children": 0, + "net_rshares": 5186228610, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-28T17:56:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 24, + "active_votes": [ + { + "voter": "ivicaa", + "rshares": "5186228610", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "ivicaa", + "parent_permlink": "re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", + "url": "/test/@ivicaa/test-please-ignore#@thecleangame/re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z", + "root_title": "TEST - please ignore", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 637778, + "author": "laonie", + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", + "category": "test", + "title": "", + "body": "It seems @wang 's list changed, i was trying to squeeze the profit of the curation bots.", + "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"wang\"]}", + "created": "2016-08-17T06:45:54", + "last_update": "2016-08-17T06:45:54", + "depth": 3, + "children": 2, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 88, + "active_votes": [], + "author_reputation": 0, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@laonie/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635722, + "author": "royaltiffany", + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", + "category": "test", + "title": "", + "body": "Wait for it....wait for it...", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:10:24", + "last_update": "2016-08-17T02:10:24", + "depth": 3, + "children": 4, + "net_rshares": 15210973654, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 29, + "active_votes": [ + { + "voter": "hellokitty", + "rshares": "14714651186", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "scotthelms89", + "rshares": "60116331", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "btctoken", + "rshares": "121297875", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "alexbones", + "rshares": "54874786", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "biker", + "rshares": "50303592", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "coutchpotatoe", + "rshares": "54792292", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sleepcult", + "rshares": "50317967", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemithelper1", + "rshares": "50221956", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "waltrichards", + "rshares": "54397669", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635668, + "author": "thebeachedwhale", + "permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", + "category": "test", + "title": "", + "body": "Are you?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:02:54", + "last_update": "2016-08-17T02:02:54", + "depth": 3, + "children": 2, + "net_rshares": 1947875840, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 8, + "active_votes": [ + { + "voter": "gary-smith", + "rshares": "1947875840", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "gary-smith", + "parent_permlink": "re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@thebeachedwhale/re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 946058, + "author": "derekareith", + "permlink": "re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z", + "category": "test", + "title": "", + "body": "Wish it was easy to integrate...seems like it would be useful.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-14T02:14:36", + "last_update": "2016-09-14T02:14:36", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 62, + "active_votes": [], + "author_reputation": 0, + "parent_author": "steemitqa", + "parent_permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 946049, + "author": "derekareith", + "permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", + "category": "test", + "title": "", + "body": "Yea, that's cool. I think like bitcoiner pointed out, though, we can't get them to work since images sent to the blockchain are cached by Steemit and won't update. They update on other \"windows\" like steemd, but that info isn't going to be accurate. It's a lot tougher than I thought it would be XD\n\nI see Steemit integrating it in the future, but it's probably real low on their list of priorities.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-14T02:13:27", + "last_update": "2016-09-14T02:13:27", + "depth": 2, + "children": 1, + "net_rshares": 60293991, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 402, + "active_votes": [ + { + "voter": "freebornangel", + "rshares": "60293991", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "freebornangel", + "parent_permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943509, + "author": "boomer", + "permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", + "category": "test", + "title": "", + "body": "ahhh...gotcha", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:24:27", + "last_update": "2016-09-13T20:24:27", + "depth": 2, + "children": 4, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 13, + "active_votes": [], + "author_reputation": 0, + "parent_author": "bitcoiner", + "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z", + "url": "/test/@derekareith/page-view-counter-test-post#@boomer/re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943452, + "author": "derekareith", + "permlink": "re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z", + "category": "test", + "title": "", + "body": "yea stuck on 0...the others I tried in the comments just say various errors/img cant display", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:18:48", + "last_update": "2016-09-13T20:18:48", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 92, + "active_votes": [], + "author_reputation": 0, + "parent_author": "goldmatters", + "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 937890, + "author": "golfball", + "permlink": "re-golfball-re-golfball-test-20160913t063516433z", + "category": "test", + "title": "", + "body": "mouse เมาส์ ิั\nhard drive ฮาร์ดไดร์\nhard disk ฮาร์ดดิสก์\nMonitor หน้าจอ\nDisplay แสดง\nLCD screen\nCTR screen หน้าจอ\nplasma screen พราสม่า\nRAM memory หน่วยความจำแรม\nROM memory รอม\nPrinter เครื่องพิมพ์\nplotter\nmicrophone ไมโครโฟน\nscanner เครืองสเเกน\nspeakers\nkeyboard แป้นพิมพ์\nbarcode บาร์โค้ด\nRight click\n\nhttp://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\nhttp://cdn.slashgear.com/wp-content/uploads/2013/04/Seagate-HDD.jpg\nhttp://img.bbystatic.com/BestBuy_US/images/products/3434/3434015cv13d.jpg\nhttp://cdn.computerhope.com/computer-memory.jpg\nhttps://xiebingqing815.files.wordpress.com/2013/09/rom-vs-ram.png", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", + "created": "2016-09-13T06:35:18", + "last_update": "2016-09-13T06:35:18", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-30T07:41:51", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 680, + "active_votes": [], + "author_reputation": 0, + "parent_author": "golfball", + "parent_permlink": "re-golfball-test-20160913t063057513z", + "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-test-20160913t063516433z", + "root_title": "Test One", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 937496, + "author": "royaltiffany", + "permlink": "re-mrlogic-re-royaltiffany-test-20160913t051214805z", + "category": "test", + "title": "", + "body": "Well if u had to ...u had to...", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T05:12:15", + "last_update": "2016-09-13T05:12:15", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T01:42:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 31, + "active_votes": [], + "author_reputation": 0, + "parent_author": "mrlogic", + "parent_permlink": "re-royaltiffany-test-20160912t110110157z", + "url": "/test/@royaltiffany/test#@royaltiffany/re-mrlogic-re-royaltiffany-test-20160913t051214805z", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 936569, + "author": "contentjunkie", + "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z", + "category": "test", + "title": "", + "body": "dickbutt", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T02:39:15", + "last_update": "2016-09-13T02:39:15", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T04:41:42", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 8, + "active_votes": [], + "author_reputation": 0, + "parent_author": "contentjunkie", + "parent_permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022316187z", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z", + "root_title": "testing the @dickbutt automated system", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 936550, + "author": "contentjunkie", + "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z", + "category": "test", + "title": "", + "body": "dickbutt", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T02:36:06", + "last_update": "2016-09-13T02:36:06", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T04:41:42", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 8, + "active_votes": [], + "author_reputation": 0, + "parent_author": "contentjunkie", + "parent_permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022535074z", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z", + "root_title": "testing the @dickbutt automated system", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 930445, + "author": "demotruk", + "permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z", + "category": "test", + "title": "", + "body": "I pushed the button and it turned out to be just a jay-peg :-(", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-12T13:30:42", + "last_update": "2016-09-12T13:30:42", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T01:42:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 62, + "active_votes": [], + "author_reputation": 0, + "parent_author": "bige37", + "parent_permlink": "re-royaltiffany-test-20160912t114919145z", + "url": "/test/@royaltiffany/test#@demotruk/re-bige37-re-royaltiffany-test-20160912t133042108z", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920080, + "author": "earnest", + "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z", + "category": "test", + "title": "", + "body": ":) Transexual fux :)", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T09:01:57", + "last_update": "2016-09-11T09:01:57", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 20, + "active_votes": [], + "author_reputation": 0, + "parent_author": "brendio", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920072, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z", + "category": "test", + "title": "", + "body": "Can you breath?Yes, Brath, Breath the air in, out, repeat", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T09:01:00", + "last_update": "2016-09-11T09:01:00", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 57, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920050, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z", + "category": "test", + "title": "", + "body": "you got it by now", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:56:36", + "last_update": "2016-09-11T08:56:36", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 17, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920045, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z", + "category": "test", + "title": "", + "body": "breath 10 times", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:56:15", + "last_update": "2016-09-11T08:56:15", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 15, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920042, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z", + "category": "test", + "title": "", + "body": "it is, just breath and stay calm", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:55:06", + "last_update": "2016-09-11T08:55:06", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 32, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920027, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z", + "category": "test", + "title": "", + "body": "there you go", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:52:45", + "last_update": "2016-09-11T08:52:45", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 12, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919991, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/kiv7efda7/dickbutt_mark_by_reilpikram_d8busm9.png", + "json_metadata": "{}", + "created": "2016-09-11T08:46:45", + "last_update": "2016-09-11T08:46:45", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 72, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 920055, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z", + "category": "test", + "title": "", + "body": "Im not afraid, I can defeat it", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:58:06", + "last_update": "2016-09-11T08:58:06", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 30, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919966, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/j6i3qa58f/dickbutt.jpg", + "json_metadata": "{}", + "created": "2016-09-11T08:39:51", + "last_update": "2016-09-11T08:39:51", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 45, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919953, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/f66d0apdr/Dick_Buttpink.jpg", + "json_metadata": "{}", + "created": "2016-09-11T08:36:30", + "last_update": "2016-09-11T08:36:30", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 50, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919934, + "author": "earnest", + "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z", + "category": "test", + "title": "", + "body": "::) Got you", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:32:39", + "last_update": "2016-09-11T08:32:39", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 11, + "active_votes": [], + "author_reputation": 0, + "parent_author": "brendio", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919913, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z", + "category": "test", + "title": "", + "body": "dick butt? cunt ass? feminist X, they are fucking with you , show me your talents", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:29:21", + "last_update": "2016-09-11T08:29:21", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 81, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919868, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/uf0vrt8fz/dbupvote.gif", + "json_metadata": "{}", + "created": "2016-09-11T08:21:42", + "last_update": "2016-09-11T08:21:42", + "depth": 2, + "children": 3, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 45, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919616, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/ojbji5iin/m5_En_TSs.jpg", + "json_metadata": "{}", + "created": "2016-09-11T07:25:45", + "last_update": "2016-09-11T07:25:45", + "depth": 2, + "children": 5, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 46, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 919903, + "author": "earnest", + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z", + "category": "test", + "title": "", + "body": "go one up", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-11T08:27:36", + "last_update": "2016-09-11T08:27:36", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 9, + "active_votes": [], + "author_reputation": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 915135, + "author": "leprechaun", + "permlink": "re-whatsup-re-leprechaun-steemedit-test-5-20160910t210828490z", + "category": "test", + "title": "", + "body": "Thanks. follow me. I am going to post something interesting.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-10T21:08:33", + "last_update": "2016-09-10T21:08:57", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-11T07:48:42", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 62, + "active_votes": [], + "author_reputation": 0, + "parent_author": "whatsup", + "parent_permlink": "re-leprechaun-steemedit-test-5-20160910t194955148z", + "url": "/test/@leprechaun/steemedit-test-5#@leprechaun/re-whatsup-re-leprechaun-steemedit-test-5-20160910t210828490z", + "root_title": "steemedit test 5", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 914301, + "author": "djangothegod", + "permlink": "re-steembaby-re-steembaby-test-my-posts-disappeared-20160910t193455528z", + "category": "test", + "title": "", + "body": "I just submitted my first post and nothing happened.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-10T19:34:57", + "last_update": "2016-09-10T19:35:06", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-25T14:37:57", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 52, + "active_votes": [], + "author_reputation": 0, + "parent_author": "steembaby", + "parent_permlink": "re-steembaby-test-my-posts-disappeared-20160825t145927000z", + "url": "/test/@steembaby/test-my-posts-disappeared#@djangothegod/re-steembaby-re-steembaby-test-my-posts-disappeared-20160910t193455528z", + "root_title": "test -- my posts disappeared!", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 911784, + "author": "hacon", + "permlink": "re-kjsxj-re-hacon-first-post-20160910t145455609z", + "category": "test", + "title": "", + "body": "I am trying to get a handle on the main differences from say reddit. I take it we can't delete posts, but we can edit them. Is the edit history visable?\nWhat about deleting comments ... lets see now.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-10T14:54:57", + "last_update": "2016-09-10T14:54:57", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-11T17:09:06", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 199, + "active_votes": [], + "author_reputation": 0, + "parent_author": "kjsxj", + "parent_permlink": "re-hacon-first-post-20160910t144933601z", + "url": "/test/@hacon/first-post#@hacon/re-kjsxj-re-hacon-first-post-20160910t145455609z", + "root_title": "First post", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 870034, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", + "category": "test", + "title": "", + "body": "https://s17.postimg.io/oct91bjzz/dogedickbutt.gif", + "json_metadata": "{}", + "created": "2016-09-06T06:19:54", + "last_update": "2016-09-06T06:19:54", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 49, + "active_votes": [], + "author_reputation": 0, + "parent_author": "brendio", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 859422, + "author": "ace108", + "permlink": "re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", + "category": "test", + "title": "", + "body": "You're welcome. The font size is smaller for yours because your name is longer and I made the \"Follow\" with same font size. I was thinking of leaving the \"Follow\" to be bigger but think to make a consistent look - just my preference. If you prefer \"Follow\" to be bigger, I can easily adjust it.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-05T04:41:54", + "last_update": "2016-09-05T04:41:54", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-06T04:18:33", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 294, + "active_votes": [], + "author_reputation": 0, + "parent_author": "bullionstackers", + "parent_permlink": "re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t035325452z", + "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want#@ace108/re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", + "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 857331, + "author": "steemjesus", + "permlink": "re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", + "category": "test", + "title": "", + "body": "fuck r4fken dickbutt \n\nfuck him hard with your buttdick", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-04T22:23:39", + "last_update": "2016-09-04T22:23:39", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 55, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t064114931z", + "url": "/test/@dickbutt/testing-dickbutt#@steemjesus/re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 843277, + "author": "str11ngfello", + "permlink": "re-str11ngfello-re-str11ngfello-testing-20160903t104442633z", + "category": "test", + "title": "", + "body": "asdf", + "json_metadata": "{}", + "created": "2016-09-03T10:53:30", + "last_update": "2016-09-03T10:53:30", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-04T09:03:45", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 4, + "active_votes": [], + "author_reputation": 0, + "parent_author": "str11ngfello", + "parent_permlink": "re-str11ngfello-testing-20160903t104442633z", + "url": "/test/@str11ngfello/testing#@str11ngfello/re-str11ngfello-re-str11ngfello-testing-20160903t104442633z", + "root_title": "Testing", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 832895, + "author": "deli", + "permlink": "re-deli-re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t094545057z", + "category": "test", + "title": "", + "body": "good really!", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-02T09:45:45", + "last_update": "2016-09-02T09:45:45", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T09:26:45", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 12, + "active_votes": [], + "author_reputation": 0, + "parent_author": "deli", + "parent_permlink": "re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t093020211z", + "url": "/test/@deli/test-just-how-to-see-how-this-all-works-qbd#@deli/re-deli-re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t094545057z", + "root_title": "test just how to see how this all works qbd", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 832881, + "author": "deli", + "permlink": "kjhkfgfgud", + "category": "test", + "title": "this is another test", + "body": "bla bla bla", + "json_metadata": "{}", + "created": "2016-09-02T09:42:39", + "last_update": "2016-09-02T10:01:54", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T09:26:45", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 11, + "active_votes": [], + "author_reputation": 0, + "parent_author": "deli", + "parent_permlink": "ghfhdg", + "url": "/test/@deli/test-just-how-to-see-how-this-all-works-qbd#@deli/kjhkfgfgud", + "root_title": "test just how to see how this all works qbd", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 831973, + "author": "no-mercy", + "permlink": "re-iamgrateful-re-thebatchman1-do-not-vote-test-20160902t065638142z", + "category": "test", + "title": "", + "body": "They are \"testing\" you to see what you will do....", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-02T06:56:45", + "last_update": "2016-09-02T06:56:45", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:15:03", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 50, + "active_votes": [], + "author_reputation": 0, + "parent_author": "iamgrateful", + "parent_permlink": "re-thebatchman1-do-not-vote-test-20160902t065341712z", + "url": "/test/@thebatchman1/do-not-vote-test#@no-mercy/re-iamgrateful-re-thebatchman1-do-not-vote-test-20160902t065638142z", + "root_title": "do not vote - test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 831946, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051", + "category": "test", + "title": "", + "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", + "json_metadata": "{}", + "created": "2016-09-02T06:50:54", + "last_update": "2016-09-02T06:50:54", + "depth": 2, + "children": 2, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 69, + "active_votes": [], + "author_reputation": 0, + "parent_author": "contentjunkie", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t065005906z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 831908, + "author": "dickbutt", + "permlink": "re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", + "category": "test", + "title": "", + "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", + "json_metadata": "{}", + "created": "2016-09-02T06:41:48", + "last_update": "2016-09-02T06:41:48", + "depth": 2, + "children": 3, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T07:19:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 69, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t064114931z", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", + "root_title": "testing @dickbutt", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 805729, + "author": "jonathan-looman", + "permlink": "re-whatsup-re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t214632491z", + "category": "test", + "title": "", + "body": "I think that we need to recognise value in openness and distributed systems as an alternative to centralized monopolistic systems. In what way Steem is leaning I am still not sure but the Steemit content platform is bound to become gamed and the early adopters definitely will continue to have an advantage and pull more weight.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-30T21:46:33", + "last_update": "2016-08-30T21:46:33", + "depth": 2, + "children": 0, + "net_rshares": 356509174, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-30T19:02:24", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 328, + "active_votes": [ + { + "voter": "jonathan-looman", + "rshares": "356509174", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "whatsup", + "parent_permlink": "re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t200608106z", + "url": "/test/@jonathan-looman/hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain#@jonathan-looman/re-whatsup-re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t214632491z", + "root_title": "What is Steemit?", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 780295, + "author": "ivicaa", + "permlink": "re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", + "category": "test", + "title": "", + "body": ":) At least you're not a bot. I am struggling with the curation reward calculation. Not easy to understand. Your upvote helps to understand it.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-28T18:01:54", + "last_update": "2016-08-28T18:01:54", + "depth": 2, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-28T17:56:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 143, + "active_votes": [], + "author_reputation": 0, + "parent_author": "thecleangame", + "parent_permlink": "re-ivicaa-test-please-ignore-20160828t172635435z", + "url": "/test/@ivicaa/test-please-ignore#@ivicaa/re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", + "root_title": "TEST - please ignore", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 743391, + "author": "steembaby", + "permlink": "re-ibringawareness-re-steembaby-test-my-posts-disappeared-20160825t150259870z", + "category": "test", + "title": "", + "body": "Exactly the same feeling.\nI've saw my post published and then I've emptied the drafts.\nThat makes me feel worse now.\nI don't have the mood to write the same article for a second time.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-25T15:03:15", + "last_update": "2016-08-25T15:03:15", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-25T14:37:57", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 183, + "active_votes": [], + "author_reputation": 0, + "parent_author": "ibringawareness", + "parent_permlink": "re-steembaby-test-my-posts-disappeared-20160825t144249526z", + "url": "/test/@steembaby/test-my-posts-disappeared#@steembaby/re-ibringawareness-re-steembaby-test-my-posts-disappeared-20160825t150259870z", + "root_title": "test -- my posts disappeared!", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635716, + "author": "trogdor", + "permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", + "category": "test", + "title": "", + "body": "Looks like I caught the laonie swarm and two chinese bots. No wang yet, and no 800 spam votes yet...", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:09:30", + "last_update": "2016-08-17T02:09:30", + "depth": 2, + "children": 8, + "net_rshares": 14714651186, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 100, + "active_votes": [ + { + "voter": "hellokitty", + "rshares": "14714651186", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "royaltiffany", + "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635701, + "author": "rawnetics", + "permlink": "re-rawnetics-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020745425z", + "category": "test", + "title": "", + "body": "Oh yes, here they are!", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:07:45", + "last_update": "2016-08-17T02:07:45", + "depth": 2, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 22, + "active_votes": [], + "author_reputation": 0, + "parent_author": "rawnetics", + "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020521246z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@rawnetics/re-rawnetics-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020745425z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635663, + "author": "gary-smith", + "permlink": "re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", + "category": "test", + "title": "", + "body": "are you a robot ?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:02:42", + "last_update": "2016-08-17T02:02:42", + "depth": 2, + "children": 3, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 17, + "active_votes": [], + "author_reputation": 0, + "parent_author": "thebeachedwhale", + "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020213239z", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@gary-smith/re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 955877, + "author": "oaldamster", + "permlink": "re-achim86-test-20160915t070512394z", + "category": "test", + "title": "", + "body": "Result: confirmed! ;-)", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-15T07:05:12", + "last_update": "2016-09-15T07:05:12", + "depth": 1, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T14:39:17", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 22, + "active_votes": [], + "author_reputation": 0, + "parent_author": "achim86", + "parent_permlink": "test", + "url": "/test/@achim86/test#@oaldamster/re-achim86-test-20160915t070512394z", + "root_title": "test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 946041, + "author": "steemitqa", + "permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z", + "category": "test", + "title": "", + "body": "I tried this not long ago.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-14T02:12:12", + "last_update": "2016-09-14T02:12:12", + "depth": 1, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 26, + "active_votes": [], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@steemitqa/re-derekareith-page-view-counter-test-post-20160914t021242459z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 945943, + "author": "freebornangel", + "permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z", + "category": "test", + "title": "", + "body": "Http://minds.com/ottman has a pretty good counter set up.", + "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"Http:\\/\\/minds.com\\/ottman\"]}", + "created": "2016-09-14T01:54:00", + "last_update": "2016-09-14T01:57:12", + "depth": 1, + "children": 2, + "net_rshares": 46263835410, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 57, + "active_votes": [ + { + "voter": "derekareith", + "rshares": "46263835410", + "percent": "3000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-page-view-counter-test-post-20160914t015352577z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943502, + "author": "bitcoiner", + "permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z", + "category": "test", + "title": "", + "body": "All images get cached by img1.steemit.com.\nBut this will work with users of third party apps that view posts that don't use that caching server, like eSteem.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:23:15", + "last_update": "2016-09-13T20:23:15", + "depth": 1, + "children": 5, + "net_rshares": 77095774656, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 157, + "active_votes": [ + { + "voter": "derekareith", + "rshares": "77095774656", + "percent": "5000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-page-view-counter-test-post-20160913t202316437z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943498, + "author": "derekareith", + "permlink": "re-derekareith-page-view-counter-test-post-20160913t202249477z", + "category": "test", + "title": "", + "body": "\"Free
Free Web Counter", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/www.e-zeeinternet.com\\/count.php?page=1156943&style=blushdw&nbdigits=5\"],\"links\":[\"http:\\/\\/www.e-zeeinternet.com\\/\"]}", + "created": "2016-09-13T20:22:51", + "last_update": "2016-09-13T20:22:51", + "depth": 1, + "children": 0, + "net_rshares": 10592290339, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 455, + "active_votes": [ + { + "voter": "elissahawke", + "rshares": "10592290339", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t202249477z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943470, + "author": "derekareith", + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201948735z", + "category": "test", + "title": "", + "body": "\n
\"commercial
\n\nmaybe this one ?", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/simplehitcounter.com\\/hit.php?uid=2165971&f=16777215&b=0\"],\"links\":[\"http:\\/\\/www.marcleaningservices.com\"]}", + "created": "2016-09-13T20:19:51", + "last_update": "2016-09-13T20:20:15", + "depth": 1, + "children": 0, + "net_rshares": 10384598371, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 332, + "active_votes": [ + { + "voter": "elissahawke", + "rshares": "10384598371", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201948735z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943456, + "author": "jbouchard12", + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201859183z", + "category": "test", + "title": "", + "body": "Let us know if you get it to work!", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:19:00", + "last_update": "2016-09-13T20:19:00", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 34, + "active_votes": [], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@jbouchard12/re-derekareith-page-view-counter-test-post-20160913t201859183z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943447, + "author": "goldmatters", + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z", + "category": "test", + "title": "", + "body": "Do not see a counter?", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:18:12", + "last_update": "2016-09-13T20:18:12", + "depth": 1, + "children": 1, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 21, + "active_votes": [], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@goldmatters/re-derekareith-page-view-counter-test-post-20160913t201813326z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943437, + "author": "derekareith", + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201727708z", + "category": "test", + "title": "", + "body": "no luck :(", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:17:30", + "last_update": "2016-09-13T20:17:30", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 10, + "active_votes": [], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201727708z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943436, + "author": "karenb54", + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201718842z", + "category": "test", + "title": "", + "body": "I opened, read and upvoted, interesting to see the outcome :)", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T20:17:24", + "last_update": "2016-09-13T20:17:24", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 61, + "active_votes": [], + "author_reputation": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "url": "/test/@derekareith/page-view-counter-test-post#@karenb54/re-derekareith-page-view-counter-test-post-20160913t201718842z", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 939969, + "author": "vinotinto", + "permlink": "re-vinotinto-3qkywh-test-20160913t131315550z", + "category": "test", + "title": "", + "body": "test comment", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T13:13:15", + "last_update": "2016-09-13T13:13:15", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T13:15:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 12, + "active_votes": [], + "author_reputation": 0, + "parent_author": "vinotinto", + "parent_permlink": "3qkywh-test", + "url": "/test/@vinotinto/3qkywh-test#@vinotinto/re-vinotinto-3qkywh-test-20160913t131315550z", + "root_title": "test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 937862, + "author": "golfball", + "permlink": "re-golfball-test-20160913t063057513z", + "category": "test", + "title": "", + "body": "1. mouse เมาส์ ิั \n2. hard drive ฮาร์ดไดร์\n3. hard disk ฮาร์ดดิสก์\n4. Monitor หน้าจอ\n5. Display แสดง\n *LCD screen \n *CTR screen หน้าจอ\n* plasma screen พราสม่า\n\n\n5. RAM memory หน่วยความจำแรม\nROM memory รอม\n\n6. Printer เครื่องพิมพ์\nplotter\n\n7. microphone ไมโครโฟน\n\n8. scanner เครืองสเเกน\n\n9. speakers\n\n10. keyboard แป้นพิมพ์\n\n11. barcode บาร์โค้ด\n\n12. \n\n13. Right click\n\nhttp://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\nhttp://cdn.slashgear.com/wp-content/uploads/2013/04/Seagate-HDD.jpg\nhttp://img.bbystatic.com/BestBuy_US/images/products/3434/3434015cv13d.jpg\nhttp://cdn.computerhope.com/computer-memory.jpg\nhttps://xiebingqing815.files.wordpress.com/2013/09/rom-vs-ram.png", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", + "created": "2016-09-13T06:31:00", + "last_update": "2016-09-13T06:33:45", + "depth": 1, + "children": 2, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-30T07:41:51", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 763, + "active_votes": [], + "author_reputation": 0, + "parent_author": "golfball", + "parent_permlink": "test", + "url": "/test/@golfball/test#@golfball/re-golfball-test-20160913t063057513z", + "root_title": "Test One", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 936699, + "author": "dickbutt", + "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z", + "category": "test", + "title": "", + "body": "dickbutt", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T02:53:21", + "last_update": "2016-09-13T02:53:21", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T04:41:42", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 8, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "testing-the-dickbutt-automated-system", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@dickbutt/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z", + "root_title": "testing the @dickbutt automated system", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 936684, + "author": "contentjunkie", + "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z", + "category": "test", + "title": "", + "body": "dickbutt", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-09-13T02:51:42", + "last_update": "2016-09-13T02:51:42", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T04:41:42", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 8, + "active_votes": [], + "author_reputation": 0, + "parent_author": "dickbutt", + "parent_permlink": "testing-the-dickbutt-automated-system", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z", + "root_title": "testing the @dickbutt automated system", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_no_results.orig.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_no_results.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_no_results.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_over_limit.orig.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_over_limit.orig.json new file mode 100644 index 00000000..6e08b595 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_over_limit.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (101 > 100)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_content_deleted.orig.json b/hivemind/tavern/condenser_api_patterns/get_content_deleted.orig.json new file mode 100644 index 00000000..893d1049 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_content_deleted.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32000, + "data": "IndexError: list index out of range", + "message": "Server error" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_content_gtg.orig.json b/hivemind/tavern/condenser_api_patterns/get_content_gtg.orig.json new file mode 100644 index 00000000..75d9de1c --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_content_gtg.orig.json @@ -0,0 +1,554 @@ +{ + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "7498426175709", + "voter": "steempty" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42312727614219", + "voter": "blocktrades" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "305178325808", + "voter": "justin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "869557685770", + "voter": "silver" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5114872713665", + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2289539684123", + "voter": "complexring" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2180802207", + "voter": "chloe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2185117237", + "voter": "jen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14176153154", + "voter": "danknugs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "198373663832", + "voter": "steemservices" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "30116948361", + "voter": "aizensou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46091054", + "voter": "kelly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6428425796", + "voter": "bentley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "91926650", + "voter": "gandalf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "345893040115", + "voter": "boatymcboatface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27177508174", + "voter": "proctologic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "316897956", + "voter": "sophia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21914098976", + "voter": "hcf27" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7368210672", + "voter": "modeprator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103782757471", + "voter": "edgeland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "785540122070", + "voter": "steemship" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5786912627", + "voter": "spaninv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "196850398821", + "voter": "pal" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "2792608078", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "98699236", + "voter": "itay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9975325205", + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "206512826638", + "voter": "taoteh1221" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57136530202", + "voter": "juanmiguelsalas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9128119179", + "voter": "somedude" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "203906072916", + "voter": "kaylinart" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "867610016", + "voter": "johnerminer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32485842972", + "voter": "geoffrey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2480411371", + "voter": "gary-smith" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23267718250", + "voter": "jparty" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1953019618", + "voter": "mammasitta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25911121779", + "voter": "gtg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4679981480", + "voter": "madwallace" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39716978937", + "voter": "lauralemons" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "461256359", + "voter": "chamviet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15413814887", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6283643209", + "voter": "endaksi1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16250564070", + "voter": "picokernel" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "702264837", + "voter": "furion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "80421874395", + "voter": "anyx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2241994263", + "voter": "egjoshslim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "120632910259", + "voter": "paco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6621475753", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226092177", + "voter": "jesse5th" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23810445079", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "210829632", + "voter": "glassice" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "203070157", + "voter": "lenar79" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15277675835", + "voter": "arcurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "101769596658", + "voter": "johnsmith" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "330264489", + "voter": "steeminer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55123516", + "voter": "cire81" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20346345482", + "voter": "celebr1ty" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "116522786", + "voter": "kibela" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4195953733", + "voter": "sulev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1863529002", + "voter": "glitterpig" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88147854", + "voter": "alrx6918" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156246825", + "voter": "vitz81" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7842906910", + "voter": "rawnetics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2110595726", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47302483", + "voter": "persianqueen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "309993436467", + "voter": "glitterfart" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "102759457", + "voter": "caitlinm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71928410", + "voter": "jellenmark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "151302584", + "voter": "agussudaryanto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12663424", + "voter": "ciao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "519527818", + "voter": "iaco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14786662", + "voter": "steemo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1568749518", + "voter": "nixonnox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3195610059", + "voter": "hanshotfirst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2458086", + "voter": "steema" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12950553", + "voter": "confucius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "911816960", + "voter": "bledarus" + }, + { + "percent": "10", + "reputation": 0, + "rshares": "1251336", + "voter": "softpunk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3742919", + "voter": "jarvis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "37069491", + "voter": "thecurator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "229846452", + "voter": "mefisto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "104558988", + "voter": "cinderphoenix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "98540677", + "voter": "steeminion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57959648", + "voter": "piezolit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8108416", + "voter": "brucy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35603456", + "voter": "shukerona" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56023735", + "voter": "leticiapink" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "295195987", + "voter": "steeminnow" + } + ], + "author": "gtg", + "author_reputation": 3920426655270, + "beneficiaries": [], + "body": "Hello, World!\n\nMy intention is not to make it into top 19. I could name many other candidates (clearly more than 19) with greater commitment to steem(it) who are a lot more appropriate as witnesses, but I'm sure I can be useful as a backup witness.\n\nI introduced myself here:\nhttps://steemit.com/introduceyourself/@gtg/hello-world\nThose of you who use https://steemit.chat know me as **Gandalf**.\nFor some time, I\u2019ve been using my magic powers (mostly those related to security and infrastructure) to improve steemit. For example, I\u2019ve improved our \"Perfect\" Forward Secrecy and made our communication with site more secure.\n\nMy **seed node** (EU based):\n`seed-node = gtg.steem.house:2001`\nYou can also use it to rsync data dir\n`rsync -Pa rsync://gtg.steem.house/witness_node_data_dir .`\n\nMy **witness node** is on a separate data center (an EU-based one as well).\nIf you believe I can be of value to steemit, please vote for me:\n`vote_for_witness YOURACCOUNT gtg true true`\n\n![witness](https://grey.house/img/witness.jpg)", + "body_length": 1023, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 7, + "created": "2016-08-05T14:02:24", + "curator_payout_value": "231.879 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https:\\/\\/steemit.com\\/introduceyourself\\/@gtg\\/hello-world\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-05T14:02:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 61504610477823, + "parent_author": "", + "parent_permlink": "witness-category", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "witness-gtg", + "post_id": 463046, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "Witness \"gtg\"", + "total_payout_value": "703.088 HBD", + "url": "/witness-category/@gtg/witness-gtg" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.orig.json new file mode 100644 index 00000000..0b58474c --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.orig.json @@ -0,0 +1,640 @@ +[ + { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.pat.json index 0637a088..0b58474c 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.pat.json @@ -1 +1,640 @@ -[] \ No newline at end of file +[ + { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318519", + "voter": "hello" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153384", + "voter": "world" + }, + { + "percent": "-100", + "reputation": 0, + "rshares": "-936400", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1441", + "voter": "red" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "615020728", + "voter": "slava" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95219365", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "solos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "blysards" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201822591", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "buckland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" + } + ], + "author": "steemit", + "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, + "parent_author": "", + "parent_permlink": "meta", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Welcome to Steem!", + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_over_limit.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_over_limit.orig.json new file mode 100644 index 00000000..6e08b595 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_over_limit.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (101 > 100)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments_unexpected_keyword.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments_unexpected_keyword.orig.json new file mode 100644 index 00000000..1aa7cad3 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments_unexpected_keyword.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "get_discussions_by_comments() got an unexpected keyword argument 'author'", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_follow_count_following_and_followers.orig.json b/hivemind/tavern/condenser_api_patterns/get_follow_count_following_and_followers.orig.json new file mode 100644 index 00000000..8c0f1f5e --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_follow_count_following_and_followers.orig.json @@ -0,0 +1,5 @@ +{ + "account": "gtg", + "following_count": 31, + "follower_count": 80 +} \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_follow_count_no_followers.orig.json b/hivemind/tavern/condenser_api_patterns/get_follow_count_no_followers.orig.json new file mode 100644 index 00000000..3d80965b --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_follow_count_no_followers.orig.json @@ -0,0 +1,5 @@ +{ + "account": "test2", + "follower_count": 0, + "following_count": 0 +} \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_followers_ignore.orig.json b/hivemind/tavern/condenser_api_patterns/get_followers_ignore.orig.json new file mode 100644 index 00000000..32449797 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_followers_ignore.orig.json @@ -0,0 +1,9 @@ +[ + { + "follower": "brightnesssoulds", + "following": "steemit", + "what": [ + "ignore" + ] + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_followers_last.orig.json b/hivemind/tavern/condenser_api_patterns/get_followers_last.orig.json new file mode 100644 index 00000000..c45ded41 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_followers_last.orig.json @@ -0,0 +1,9 @@ +[ + { + "follower": "fjccoin", + "following": "steemit", + "what": [ + "blog" + ] + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_followers_no_followers.orig.json b/hivemind/tavern/condenser_api_patterns/get_followers_no_followers.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_followers_no_followers.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_followers_over_limit.orig.json b/hivemind/tavern/condenser_api_patterns/get_followers_over_limit.orig.json new file mode 100644 index 00000000..a1e4ecd9 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_followers_over_limit.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (1001 > 1000)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_followers_trending_tags_over_limit.orig.json b/hivemind/tavern/condenser_api_patterns/get_followers_trending_tags_over_limit.orig.json new file mode 100644 index 00000000..4c29a759 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_followers_trending_tags_over_limit.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (251 > 250)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_followers_wrong_type.orig.json b/hivemind/tavern/condenser_api_patterns/get_followers_wrong_type.orig.json new file mode 100644 index 00000000..ea321df0 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_followers_wrong_type.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid follow_type `wrong_type`", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_following_ignore.orig.json b/hivemind/tavern/condenser_api_patterns/get_following_ignore.orig.json new file mode 100644 index 00000000..32449797 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_following_ignore.orig.json @@ -0,0 +1,9 @@ +[ + { + "follower": "brightnesssoulds", + "following": "steemit", + "what": [ + "ignore" + ] + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_following_last.orig.json b/hivemind/tavern/condenser_api_patterns/get_following_last.orig.json new file mode 100644 index 00000000..e06b40f2 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_following_last.orig.json @@ -0,0 +1,9 @@ +[ + { + "follower": "gtg", + "following": "blocktrades", + "what": [ + "blog" + ] + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_following_no_following.orig.json b/hivemind/tavern/condenser_api_patterns/get_following_no_following.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_following_no_following.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_following_over_limit.orig.json b/hivemind/tavern/condenser_api_patterns/get_following_over_limit.orig.json new file mode 100644 index 00000000..a1e4ecd9 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_following_over_limit.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (1001 > 1000)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_following_wrong_type.orig.json b/hivemind/tavern/condenser_api_patterns/get_following_wrong_type.orig.json new file mode 100644 index 00000000..ea321df0 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_following_wrong_type.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid follow_type `wrong_type`", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_multiple_accounts.orig.json b/hivemind/tavern/condenser_api_patterns/get_multiple_accounts.orig.json new file mode 100644 index 00000000..843c3add --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_multiple_accounts.orig.json @@ -0,0 +1,329 @@ +[ + { + "id": 28, + "name": "steemit", + "owner": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + 1 + ] + ] + }, + "active": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + 1 + ] + ] + }, + "posting": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + 1 + ] + ] + }, + "memo_key": "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + "json_metadata": "", + "posting_json_metadata": "", + "proxy": "", + "last_owner_update": "2016-07-15T13:56:18", + "last_account_update": "2016-07-15T13:56:18", + "created": "2016-03-24T17:00:21", + "mined": true, + "recovery_account": "steem", + "last_account_recovery": "1970-01-01T00:00:00", + "reset_account": "null", + "comment_count": 0, + "lifetime_vote_count": 0, + "post_count": 1, + "can_vote": true, + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838821 + }, + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838821 + }, + "voting_power": 10000, + "balance": "4778859.891 HIVE", + "savings_balance": "0.000 HIVE", + "sbd_balance": "70337.438 HBD", + "sbd_seconds": "8923940509188", + "sbd_seconds_last_update": "2016-09-14T11:25:21", + "sbd_last_interest_payment": "2016-09-12T19:16:48", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "vesting_shares": "225671901920.188893 VESTS", + "delegated_vesting_shares": "0.000000 VESTS", + "received_vesting_shares": "0.000000 VESTS", + "vesting_withdraw_rate": "2479910908.999260 VESTS", + "next_vesting_withdrawal": "2016-09-19T00:37:21", + "withdrawn": "32238841816990380", + "to_withdraw": "257910734535923078", + "withdraw_routes": 0, + "curation_rewards": 0, + "posting_rewards": 3548, + "proxied_vsf_votes": [ + "23077504682", + 0, + 0, + 0 + ], + "witnesses_voted_for": 0, + "last_post": "2016-03-30T18:30:18", + "last_root_post": "2016-03-30T18:30:18", + "last_vote_time": "1970-01-01T00:00:00", + "post_bandwidth": 0, + "pending_claimed_accounts": 0, + "vesting_balance": "0.000 HIVE", + "reputation": "12944616889", + "transfer_history": [], + "market_history": [], + "post_history": [], + "vote_history": [], + "other_history": [], + "witness_votes": [], + "tags_usage": [], + "guest_bloggers": [] + }, + { + "id": 17540, + "name": "biophil", + "owner": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM5mkaXCu5DT6XsaST1XFyyF842K54GxUAMUVm9wcm7HerBesz3i", + 1 + ] + ] + }, + "active": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM5hB5S4MFqdEnBURe7L62HzL6FWnvy9Pb1R1UcPwCuGnUsfKzFc", + 1 + ] + ] + }, + "posting": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM52yaFZPJQMx5wWRZCYgHd69hEE4rkqx7qpq45NyY4Za6w3Jong", + 1 + ] + ] + }, + "memo_key": "STM5zmYzafDpVkx7FCrxDAMLVqjyKX2ykDNUmtwDLvLtExXWvkovp", + "json_metadata": "", + "posting_json_metadata": "", + "proxy": "", + "last_owner_update": "2016-07-15T05:11:21", + "last_account_update": "2016-07-15T05:11:21", + "created": "2016-07-12T14:47:00", + "mined": false, + "recovery_account": "steem", + "last_account_recovery": "1970-01-01T00:00:00", + "reset_account": "null", + "comment_count": 0, + "lifetime_vote_count": 0, + "post_count": 752, + "can_vote": true, + "voting_manabar": { + "current_mana": 9475, + "last_update_time": 1473955245 + }, + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1468334820 + }, + "voting_power": 9475, + "balance": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "sbd_balance": "902.828 HBD", + "sbd_seconds": "131701413987", + "sbd_seconds_last_update": "2016-09-15T19:28:54", + "sbd_last_interest_payment": "2016-09-13T12:08:48", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "vesting_shares": "8128612.587095 VESTS", + "delegated_vesting_shares": "0.000000 VESTS", + "received_vesting_shares": "0.000000 VESTS", + "vesting_withdraw_rate": "0.000000 VESTS", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "withdrawn": 0, + "to_withdraw": 0, + "withdraw_routes": 0, + "curation_rewards": 20394, + "posting_rewards": 3729894, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "witnesses_voted_for": 11, + "last_post": "2016-09-15T15:07:18", + "last_root_post": "2016-09-14T16:30:24", + "last_vote_time": "2016-09-15T16:00:45", + "post_bandwidth": 12171, + "pending_claimed_accounts": 0, + "vesting_balance": "0.000 HIVE", + "reputation": "10077167197115", + "transfer_history": [], + "market_history": [], + "post_history": [], + "vote_history": [], + "other_history": [], + "witness_votes": [ + "abit", + "anyx", + "blocktrades", + "boatymcboatface", + "delegate.lafona", + "jesta", + "pharesim", + "roadscape", + "smooth.witness", + "steemed", + "steve-walschot" + ], + "tags_usage": [], + "guest_bloggers": [] + }, + { + "id": 6566, + "name": "test", + "owner": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM6L7mdcoi371ddt2z5hDfRCHXjcLRBz3H8GYKWBgo5T8kiaqWKy", + 1 + ] + ] + }, + "active": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM7iT2pWdfDqjX12hhQbjKveALEuWPss1wvrKVWDgm6Ud2ZTjoE4", + 1 + ] + ] + }, + "posting": { + "weight_threshold": 1, + "account_auths": [], + "key_auths": [ + [ + "STM5PnVARAgGPTf5PqRnumGUyMJCfV9ti93z72Kct2dAucfLgaMxC", + 1 + ] + ] + }, + "memo_key": "STM7dz2kPEpL5B3AajPFnb3M3uJwiQ4sdzz6hTgwD8RRm7keT5Bwm", + "json_metadata": "", + "posting_json_metadata": "", + "proxy": "", + "last_owner_update": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "created": "2016-04-28T14:35:57", + "mined": false, + "recovery_account": "steem", + "last_account_recovery": "1970-01-01T00:00:00", + "reset_account": "null", + "comment_count": 0, + "lifetime_vote_count": 0, + "post_count": 0, + "can_vote": true, + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1461854157 + }, + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1461854157 + }, + "voting_power": 10000, + "balance": "0.000 HIVE", + "savings_balance": "0.000 HIVE", + "sbd_balance": "0.001 HBD", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:59:45", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_sbd_balance": "0.000 HBD", + "savings_sbd_seconds": "0", + "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", + "savings_withdraw_requests": 0, + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", + "vesting_shares": "146273.695970 VESTS", + "delegated_vesting_shares": "0.000000 VESTS", + "received_vesting_shares": "0.000000 VESTS", + "vesting_withdraw_rate": "0.000000 VESTS", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "withdrawn": 0, + "to_withdraw": 0, + "withdraw_routes": 0, + "curation_rewards": 0, + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], + "witnesses_voted_for": 0, + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "post_bandwidth": 0, + "pending_claimed_accounts": 0, + "vesting_balance": "0.000 HIVE", + "reputation": 0, + "transfer_history": [], + "market_history": [], + "post_history": [], + "vote_history": [], + "other_history": [], + "witness_votes": [], + "tags_usage": [], + "guest_bloggers": [] + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_multiple_blog_entries.orig.json b/hivemind/tavern/condenser_api_patterns/get_multiple_blog_entries.orig.json new file mode 100644 index 00000000..c4ed5060 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_multiple_blog_entries.orig.json @@ -0,0 +1,9 @@ +[ + { + "author": "steemit", + "blog": "steemit", + "entry_id": 0, + "permlink": "firstpost", + "reblogged_on": "1970-01-01T00:00:00" + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_non_existing_accounts.orig.json b/hivemind/tavern/condenser_api_patterns/get_non_existing_accounts.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_non_existing_accounts.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.orig.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.orig.json new file mode 100644 index 00000000..304d950a --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.orig.json @@ -0,0 +1,1836 @@ +[ + { + "post_id": 727357, + "author": "somebody", + "permlink": "follow-me-please", + "category": "test", + "title": "Follow me please.", + "body": "This post is a trap for robots. So please don't upvote. Just follow me please.\n\n[![](https://steemimg.com/images/2016/08/24/dd8bd8753d16805.gif)](https://steemit.com/@somebody)", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/steemimg.com\\/images\\/2016\\/08\\/24\\/dd8bd8753d16805.gif\"]}", + "created": "2016-08-24T04:49:00", + "last_update": "2016-08-24T04:49:00", + "depth": 0, + "children": 7, + "net_rshares": 860151460398, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-24T05:05:24", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.546 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 176, + "active_votes": [ + { + "voter": "lee5", + "rshares": "835401856", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "noaommerrr", + "rshares": "221000835803", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "akaninyene-etuk", + "rshares": "60049910", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "irit", + "rshares": "141944533", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "hedge-x", + "rshares": "361661182474", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "primus", + "rshares": "6648576257", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dasha", + "rshares": "7400392900", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lemooljiang", + "rshares": "12001771040", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "michaeldodridge", + "rshares": "9364510234", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "somebody", + "rshares": "231680157638", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "feelapi", + "rshares": "1520602917", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "future24", + "rshares": "411633883", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mione", + "rshares": "3793330400", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tomeraddady", + "rshares": "60886073", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "abc1621043211", + "rshares": "727760600", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jsantana", + "rshares": "1985606562", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "goriilla", + "rshares": "55763290", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "olakla", + "rshares": "55184850", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cerne", + "rshares": "54993135", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rexgrove", + "rshares": "54916164", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "inwoxer", + "rshares": "139924838", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "f1111111", + "rshares": "50066904", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "fluffy", + "rshares": "393193776", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "alexportikul", + "rshares": "52774361", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@somebody/follow-me-please", + "root_title": "Follow me please.", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 635639, + "author": "trogdor", + "permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", + "category": "test", + "title": "this is a test to see if i have been targeted by a spam bot army", + "body": "test", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-17T02:00:48", + "last_update": "2016-08-17T02:00:48", + "depth": 0, + "children": 19, + "net_rshares": 606977500984, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T02:19:27", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.418 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 4, + "active_votes": [ + { + "voter": "somedude", + "rshares": "8763619284", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "trogdor", + "rshares": "5564190601", + "percent": "0", + "reputation": 0 + }, + { + "voter": "raymonjohnstone", + "rshares": "145380534", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "pinkisland", + "rshares": "10315786664", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "hellokitty", + "rshares": "15008944210", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "laonie", + "rshares": "497568302000", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie1", + "rshares": "3778964442", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie2", + "rshares": "3778947431", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie3", + "rshares": "3778936100", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "myfirst", + "rshares": "9118987048", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie4", + "rshares": "3778614532", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie5", + "rshares": "3778602547", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie6", + "rshares": "3778594469", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie7", + "rshares": "3778571886", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie8", + "rshares": "3778554259", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie9", + "rshares": "3778533199", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "xiaohui", + "rshares": "18835607987", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "laonie10", + "rshares": "3776590554", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "runridefly", + "rshares": "111114608", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "laonie11", + "rshares": "3760658629", + "percent": "5000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 617652, + "author": "stino-san", + "permlink": "test", + "category": "test", + "title": "test", + "body": "test", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-15T20:05:21", + "last_update": "2016-08-15T20:05:21", + "depth": 0, + "children": 0, + "net_rshares": 307686992811, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-15T20:12:06", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.208 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 4, + "active_votes": [ + { + "voter": "stino-san", + "rshares": "228145849379", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "fuck.off", + "rshares": "5007214192", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "iloveporn", + "rshares": "6821297816", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "the.bot", + "rshares": "2438027091", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "johnbradshaw", + "rshares": "8295473589", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "the.whale", + "rshares": "5785438356", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "unicornfarts", + "rshares": "5481884026", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "vote", + "rshares": "5785920904", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kissmybutt", + "rshares": "6091743832", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "aaseb", + "rshares": "13280342528", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "michaeldodridge", + "rshares": "6322307995", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kukuy", + "rshares": "111797071", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thedon", + "rshares": "1010597496", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thebotkiller", + "rshares": "11316597740", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jimmytwoshoes", + "rshares": "283790428", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jackgallenhall", + "rshares": "1455898140", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "reddtie", + "rshares": "52812228", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@stino-san/test", + "root_title": "test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 763215, + "author": "stino-san", + "permlink": "46vbbv-test", + "category": "test", + "title": "test", + "body": "test", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-27T04:46:51", + "last_update": "2016-08-27T04:46:51", + "depth": 0, + "children": 4, + "net_rshares": 275726168458, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-27T04:52:36", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.151 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 4, + "active_votes": [ + { + "voter": "stino-san", + "rshares": "225913748267", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "fuck.off", + "rshares": "4936121677", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "the.bot", + "rshares": "2248064175", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "johnbradshaw", + "rshares": "8179524007", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "arcaneinfo", + "rshares": "5469062752", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "the.whale", + "rshares": "5704244958", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "vote", + "rshares": "5583423314", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kissmybutt", + "rshares": "6007072255", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nicoleta", + "rshares": "67820011", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thebotkiller", + "rshares": "10924517278", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jimmytwoshoes", + "rshares": "267235062", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rucoin", + "rshares": "425334702", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@stino-san/46vbbv-test", + "root_title": "test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 858881, + "author": "ace108", + "permlink": "test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want", + "category": "test", + "title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", + "body": "\n

\"Follow@bullionstackers.gif\"
\n
\nImage Link

\n", + "json_metadata": "{\"tags\":[\"test\",\"testbyace10\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/05\\/Followbullionstackers320e51da.gif\"],\"links\":[\"https:\\/\\/www.steemimg.com\\/image\\/7tV3J\"]}", + "created": "2016-09-05T02:59:36", + "last_update": "2016-09-05T03:18:39", + "depth": 0, + "children": 3, + "net_rshares": 257677398121, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-06T04:18:33", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.082 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 240, + "active_votes": [ + { + "voter": "tcfxyz", + "rshares": "24991140368", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "futurefood", + "rshares": "6923304252", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rea", + "rshares": "79040067029", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "pinkisland", + "rshares": "23010056511", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bullionstackers", + "rshares": "1854087037", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "twinner", + "rshares": "121858742924", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want", + "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 928651, + "author": "royaltiffany", + "permlink": "test", + "category": "test", + "title": "Test", + "body": "Please do not upvote...\n\n
http://designwebkit.com/wp-content/uploads/2013/09/how-test-logo-design-thumb.jpg\n
Source
", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/designwebkit.com\\/wp-content\\/uploads\\/2013\\/09\\/how-test-logo-design-thumb.jpg\"],\"links\":[\"http:\\/\\/designwebkit.com\\/web-and-trends\\/how-professional-tests-finalizes-logo-design\\/\"]}", + "created": "2016-09-12T07:38:09", + "last_update": "2016-09-12T07:38:09", + "depth": 0, + "children": 6, + "net_rshares": 230967859053, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-14T01:42:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.055 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 250, + "active_votes": [ + { + "voter": "woo7739", + "rshares": "7861629418", + "percent": "100", + "reputation": 0 + }, + { + "voter": "dragonslayer109", + "rshares": "206209970416", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rawlzsec", + "rshares": "3649598360", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "michaellamden68", + "rshares": "3509996730", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bitcoiner", + "rshares": "6300267620", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "metaflute", + "rshares": "1305753906", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "usb", + "rshares": "840098241", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mrlogic", + "rshares": "192321224", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ppan08162016", + "rshares": "54457374", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "anasz", + "rshares": "1043765764", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@royaltiffany/test", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 641664, + "author": "rubenalexander", + "permlink": "800px-box-crop-test-test-post-please-ignore", + "category": "test", + "title": "800px box, crop test [Test Post Please Ignore]", + "body": "
\n\nI noticed that in the list view of all posts, my main images were being cropped. It didn't seem to be a clean scale, or a centered crop, so I created an image to try to determine where the crop occured in the image.\n\nI need to run more tests, but with an 800px x 800px image:\n- The crop occurs around 60 pixels from the top and ends around 280 pixels from the bottom. \n- The crop box dimension 800 pixels wide by 455 pixels high.", + "json_metadata": "{\"tags\":[\"test\",\"crop\",\"image\"],\"image\":[\"http:\\/\\/i.imgur.com\\/GK1SyaR.png\"]}", + "created": "2016-08-17T14:05:27", + "last_update": "2016-08-17T14:20:57", + "depth": 0, + "children": 1, + "net_rshares": 84134603688, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T16:24:15", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.051 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 490, + "active_votes": [ + { + "voter": "proctologic", + "rshares": "10220864268", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "digi3d", + "rshares": "258954801", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "discombobulated", + "rshares": "65562670577", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kurtbeil", + "rshares": "6668122973", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mndstruct", + "rshares": "67570327", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rubenalexander", + "rshares": "1245304003", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "runridefly", + "rshares": "111116739", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@rubenalexander/800px-box-crop-test-test-post-please-ignore", + "root_title": "800px box, crop test [Test Post Please Ignore]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 745478, + "author": "venuspcs", + "permlink": "2kruc4-test", + "category": "test", + "title": "Test", + "body": "Testing to see if posting is working again.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-25T18:14:33", + "last_update": "2016-08-25T18:14:33", + "depth": 0, + "children": 1, + "net_rshares": 72263112386, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-25T18:50:09", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.037 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 43, + "active_votes": [ + { + "voter": "venuspcs", + "rshares": "69552358699", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bitland", + "rshares": "2058287307", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "runridefly", + "rshares": "495165648", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "analyzethis", + "rshares": "50931848", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rb3coins", + "rshares": "53222151", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "vsmith08162016", + "rshares": "53146733", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@venuspcs/2kruc4-test", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 829308, + "author": "asch", + "permlink": "4bh3kx-test", + "category": "test", + "title": "Change request for steemit: allow posts to be hidden by author", + "body": "Would be nice if an author could flag his/her own post so that it can be hidden from the steemit.com blog pages.\n\nhttps://ipfs.pics/ipfs/QmVP5ebRFZ38f7h3k8Vq3cbRcsGBDyZBCqTLtB3GjYFobi", + "json_metadata": "{\"tags\":[\"test\",\"steemit\"],\"image\":[\"https:\\/\\/ipfs.pics\\/ipfs\\/QmVP5ebRFZ38f7h3k8Vq3cbRcsGBDyZBCqTLtB3GjYFobi\"]}", + "created": "2016-09-01T23:31:36", + "last_update": "2016-09-02T00:02:21", + "depth": 0, + "children": 2, + "net_rshares": 92401268815, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T00:20:39", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.033 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 183, + "active_votes": [ + { + "voter": "richman", + "rshares": "13053504107", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "asch", + "rshares": "68346947255", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "happyphoenix", + "rshares": "897343674", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "goose", + "rshares": "8842903950", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rb3coins", + "rshares": "53222151", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "billkappa442", + "rshares": "51240567", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "glassheart", + "rshares": "51235131", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dragonice", + "rshares": "51232949", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemq", + "rshares": "51230296", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "battalar", + "rshares": "51227561", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "weare", + "rshares": "51218466", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "deli", + "rshares": "51215236", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "slow", + "rshares": "51141851", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "oxygen", + "rshares": "50907857", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cyan", + "rshares": "50875769", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "palladium", + "rshares": "50873654", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "motion", + "rshares": "50871059", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sting", + "rshares": "50865840", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "breeze", + "rshares": "50798322", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "autodesk", + "rshares": "50794039", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ziggo", + "rshares": "50570250", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "friends", + "rshares": "50532230", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "connect", + "rshares": "50484452", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sunlight", + "rshares": "50479027", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "letstalkliberty", + "rshares": "239553122", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@asch/4bh3kx-test", + "root_title": "Change request for steemit: allow posts to be hidden by author", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 943429, + "author": "derekareith", + "permlink": "page-view-counter-test-post", + "category": "test", + "title": "Page View Counter [Test Post]", + "body": "\n

I wanted to try one and see if it worked here:

\n


\n
\n

I think that this can be a good statistic to track as it gives you a feel for how many users actually opened your article.  This can help guide authors to work on topics that attract the most views.  Upvotes are nice, but I feel that they don't tell the whole story as far as the level of interest your articles generate.

\n

There are also lurkers who don't have accounts but occasionally check out what's going on here.  This could help to track them as well.

\n

I found some others that require the webpage address, so I will add those in the comments after I post.

\n", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/www.hitcounterhtmlcode.com\\/count2.php?id=440360354082326413097\"],\"links\":[\"http:\\/\\/www.hitcounterhtmlcode.com\\/stats.php?id=440360354082326413097\"]}", + "created": "2016-09-13T20:16:00", + "last_update": "2016-09-13T20:16:00", + "depth": 0, + "children": 18, + "net_rshares": 138491181744, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-15T00:25:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.029 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 887, + "active_votes": [ + { + "voter": "richman", + "rshares": "7800265111", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jerome-colley", + "rshares": "9647209204", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemswede", + "rshares": "2182262521", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "derekareith", + "rshares": "3857214813", + "percent": "0", + "reputation": 0 + }, + { + "voter": "rxhector", + "rshares": "734052546", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cynetyc", + "rshares": "113270416", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jbouchard12", + "rshares": "3309065147", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bitcoiner", + "rshares": "5534121085", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sergey44", + "rshares": "77156992", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "karenb54", + "rshares": "514947462", + "percent": "1000", + "reputation": 0 + }, + { + "voter": "anotherjoe", + "rshares": "91627251937", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "the-bitcoin-dood", + "rshares": "1181902434", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "elissahawke", + "rshares": "10384598371", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "wuyueling", + "rshares": "413323439", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "roadhog", + "rshares": "52910800", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "doggnostic", + "rshares": "50639382", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jenny-talls", + "rshares": "50377764", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "post-successful", + "rshares": "51278775", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "freebornangel", + "rshares": "60293991", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jbaker585", + "rshares": "849039554", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@derekareith/page-view-counter-test-post", + "root_title": "Page View Counter [Test Post]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 804099, + "author": "jonathan-looman", + "permlink": "hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain", + "category": "test", + "title": "What is Steemit?", + "body": "\n

\n", + "json_metadata": "{\"tags\":[\"test\",\"steemit\",\"visions\",\"video\",\"explainer\"],\"image\":[\"https:\\/\\/dl.dropboxusercontent.com\\/u\\/279041\\/visions.tv\\/visions_steemit.png\"],\"links\":[\"https:\\/\\/visions.tv\\/Jonathan\\/nJvNwQVzL6p?autoplay=1\"]}", + "created": "2016-08-30T18:56:54", + "last_update": "2016-08-30T19:03:27", + "depth": 0, + "children": 2, + "net_rshares": 64328067686, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-30T19:02:24", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.027 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 216, + "active_votes": [ + { + "voter": "jonathan-looman", + "rshares": "363639358", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nippel66", + "rshares": "12972561232", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "summerrain", + "rshares": "60593188", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gomeravibz", + "rshares": "49302305855", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "martaspn", + "rshares": "56802928", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "whatsup", + "rshares": "75704784", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "robotev", + "rshares": "1496460341", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@jonathan-looman/hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain", + "root_title": "What is Steemit?", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 654873, + "author": "laonie1", + "permlink": "this-is-a-test", + "category": "test", + "title": "This is a test", + "body": "test", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-18T12:51:33", + "last_update": "2016-08-18T12:51:33", + "depth": 0, + "children": 0, + "net_rshares": 41461414568, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-18T15:23:33", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.020 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 4, + "active_votes": [ + { + "voter": "laonie1", + "rshares": "180228664", + "percent": "0", + "reputation": 0 + }, + { + "voter": "laonie2", + "rshares": "3063861503", + "percent": "4300", + "reputation": 0 + }, + { + "voter": "laonie3", + "rshares": "3063834206", + "percent": "4300", + "reputation": 0 + }, + { + "voter": "laonie4", + "rshares": "3063616032", + "percent": "4300", + "reputation": 0 + }, + { + "voter": "laonie5", + "rshares": "3063594286", + "percent": "4300", + "reputation": 0 + }, + { + "voter": "laonie7", + "rshares": "7942123026", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "laonie8", + "rshares": "7031406262", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "laonie9", + "rshares": "7028172275", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "laonie10", + "rshares": "7024578314", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@laonie1/this-is-a-test", + "root_title": "This is a test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 807480, + "author": "gregnie", + "permlink": "test-again", + "category": "test", + "title": "test again", + "body": "this is a test again.", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-31T00:52:21", + "last_update": "2016-08-31T00:52:21", + "depth": 0, + "children": 0, + "net_rshares": 52403036896, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-01T01:58:00", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.019 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 21, + "active_votes": [ + { + "voter": "drinkzya", + "rshares": "34873624275", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "laonie1", + "rshares": "1588471883", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie2", + "rshares": "1590320654", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie3", + "rshares": "1590902281", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie4", + "rshares": "1590642190", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie5", + "rshares": "1590567721", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie6", + "rshares": "1590416046", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie7", + "rshares": "1590250709", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie8", + "rshares": "1590083299", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie9", + "rshares": "1589989115", + "percent": "500", + "reputation": 0 + }, + { + "voter": "gregnie", + "rshares": "62044982", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "laonie10", + "rshares": "1589655616", + "percent": "500", + "reputation": 0 + }, + { + "voter": "laonie11", + "rshares": "1566068125", + "percent": "500", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@gregnie/test-again", + "root_title": "test again", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 889524, + "author": "zionuziriel", + "permlink": "kindly-upvote", + "category": "test", + "title": "KINDLY UPVOTE", + "body": "\n

Hello everyone :) Kindly upvote.
\n
\n-Test

\n", + "json_metadata": "{\"tags\":[\"test\",\"upvote\"]}", + "created": "2016-09-08T05:23:21", + "last_update": "2016-09-08T05:23:21", + "depth": 0, + "children": 1, + "net_rshares": 69600101439, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-09T06:17:03", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.015 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 69, + "active_votes": [ + { + "voter": "zionuziriel", + "rshares": "63736720", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "uziriel", + "rshares": "55929928", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@zionuziriel/kindly-upvote", + "root_title": "KINDLY UPVOTE", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 765498, + "author": "feruz", + "permlink": "test-2016827t14139950z", + "category": "test", + "title": "Test", + "body": "

This is test post with new markdown editor.

​H1

​H2

​H3

​H4

​H5
​H6

​paragraph text

​pre text

​quote text



bold  underline italic stroked 





", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-27T11:13:06", + "last_update": "2016-08-27T11:13:06", + "depth": 0, + "children": 1, + "net_rshares": 26057046444, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-27T11:26:12", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.005 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 2322, + "active_votes": [ + { + "voter": "good-karma", + "rshares": "26742232944", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rkpl", + "rshares": "-800104186", + "percent": "-10000", + "reputation": 0 + }, + { + "voter": "sergey44", + "rshares": "114917686", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@feruz/test-2016827t14139950z", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 753411, + "author": "feruz", + "permlink": "test-post-2016826t13935375z", + "category": "test", + "title": "Test post", + "body": "Testing iOS posting\n\n#### Heading ####\n\nEditing post\n\n# Heading #\n\n", + "json_metadata": "{\"tags\":[\"test\",\"spam\"]}", + "created": "2016-08-26T10:09:39", + "last_update": "2016-08-26T10:10:18", + "depth": 0, + "children": 0, + "net_rshares": 24517139679, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-25T22:09:39", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.005 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 67, + "active_votes": [ + { + "voter": "good-karma", + "rshares": "24517139679", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@feruz/test-post-2016826t13935375z", + "root_title": "Test post", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 730369, + "author": "feruz", + "permlink": "test-2016824t15279369z", + "category": "test", + "title": "Test", + "body": "https://www.youtube.com/watch?v=BCXYw6N2nOA\n\n\nhttps://www.youtube.com/watch?v=k70b3MLpz_U\n\n\n\n@good-karma", + "json_metadata": "{\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=BCXYw6N2nOA\",\"https:\\/\\/www.youtube.com\\/watch?v=k70b3MLpz_U\"],\"users\":[\"good-karma\"],\"tags\":[\"test\",\"esteem\"]}", + "created": "2016-08-24T12:27:09", + "last_update": "2016-08-24T12:27:09", + "depth": 0, + "children": 1, + "net_rshares": 26891674361, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-24T13:30:03", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.005 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 104, + "active_votes": [ + { + "voter": "good-karma", + "rshares": "26728920407", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "digipzle969", + "rshares": "58699961", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "f1111111", + "rshares": "51109965", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jbaker585", + "rshares": "52944028", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@feruz/test-2016824t15279369z", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 727996, + "author": "feruz", + "permlink": "test-2016824t92740421z", + "category": "test", + "title": "Test", + "body": "Test post\n\n**Bold**\n\n*italic*\n\n# Heading #\n\n Code\n \n* list\n* dfdg\n\n1. number\n2. list\n\n----------\n\n# Heading #\n\n## Heading ##\n\n### Heading ###\n\n#### Heading ####", + "json_metadata": "{\"tags\":[\"test\"]}", + "created": "2016-08-24T06:27:39", + "last_update": "2016-08-24T06:27:39", + "depth": 0, + "children": 1, + "net_rshares": 27206441238, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-24T07:18:24", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.005 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 166, + "active_votes": [ + { + "voter": "good-karma", + "rshares": "26728969107", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "whispershaper", + "rshares": "55067873", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "yggsius", + "rshares": "55052340", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "silaev", + "rshares": "53513538", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "f1111111", + "rshares": "50066904", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lapina", + "rshares": "52825802", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jannada", + "rshares": "52794919", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kamila74", + "rshares": "52732658", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "svetabrigadir", + "rshares": "52723574", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "zenna", + "rshares": "52694523", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@feruz/test-2016824t92740421z", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 839863, + "author": "str11ngfello", + "permlink": "transaction-signing-a-post-from-steemy-5", + "category": "test", + "title": "Transaction signing a post from Steemy 5", + "body": "Pardon the intrusion, this is a live test from Steemy for iOS 3 \n http://i.giphy.com/l0HlKylC4U2R1l8vm.gif", + "json_metadata": "{\"category\":\"testing_category\",\"tags\":[\"steemy_testing1\",\"steemy_testing2\"]}", + "created": "2016-09-03T00:07:33", + "last_update": "2016-09-03T00:07:33", + "depth": 0, + "children": 0, + "net_rshares": 19069014880, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-03T12:07:33", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.004 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 106, + "active_votes": [ + { + "voter": "str11ngfello", + "rshares": "19069014880", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@str11ngfello/transaction-signing-a-post-from-steemy-5", + "root_title": "Transaction signing a post from Steemy 5", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 727662, + "author": "libertyism", + "permlink": "6g1sn5-test", + "category": "test", + "title": "Test", + "body": "\n

425x243px

\n

\n", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/d32113cda0.png\"]}", + "created": "2016-08-24T05:35:27", + "last_update": "2016-08-24T05:35:27", + "depth": 0, + "children": 1, + "net_rshares": 17633674353, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-24T05:35:54", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.003 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 113, + "active_votes": [ + { + "voter": "luminousvisions", + "rshares": "17580966372", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "stas44", + "rshares": "52707981", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "", + "parent_permlink": "test", + "url": "/test/@libertyism/6g1sn5-test", + "root_title": "Test", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + } +] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_no_results.orig.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_no_results.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_no_results.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_over_limit.orig.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_over_limit.orig.json new file mode 100644 index 00000000..6e08b595 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_over_limit.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (101 > 100)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_blank_start_author.orig.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_blank_start_author.orig.json new file mode 100644 index 00000000..0e5dbcbf --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_blank_start_author.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "`start_author` cannot be blank", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_invalid_account_name.orig.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_invalid_account_name.orig.json new file mode 100644 index 00000000..c1734e8e --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_invalid_account_name.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid account name length: `a`", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.orig.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.orig.json new file mode 100644 index 00000000..5eddfb74 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.orig.json @@ -0,0 +1,1574 @@ +[ + { + "active_votes": [], + "author": "chitty", + "author_reputation": 0, + "beneficiaries": [], + "body": "But this is not an issue of Top Witnesses vs Backup witnesses. This is an issue that involves all members of the Steemit. If top witnesses keep receiving 1,370 Steems per day, their voting influence will keep growing while the rest of the users see their voting power diminished.", + "body_length": 279, + "cashout_time": "2016-09-16T15:31:24", + "category": "steemit", + "children": 0, + "created": "2016-09-15T18:52:09", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T18:52:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t184349883z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z", + "post_id": 960531, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A balanced voting system is impossible with current witness\u2019s payouts.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z" + }, + { + "active_votes": [], + "author": "woman-onthe-wing", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thanks very much!", + "body_length": 17, + "cashout_time": "2016-09-16T01:44:18", + "category": "introducemyself", + "children": 0, + "created": "2016-09-15T15:04:09", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introducemyself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T15:04:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t071444722z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z", + "post_id": 958542, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Introduction post - Gold at the end of the rainbow... On the Emerald Isle", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introducemyself/@woman-onthe-wing/introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle#@woman-onthe-wing/re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "1000247174970", + "voter": "liondani" + } + ], + "author": "chitty", + "author_reputation": 0, + "beneficiaries": [], + "body": "This is true, but you have to agree that the gap between top 19 witnesses and the rest of the users is getting bigger... nobody buys 1,370 steem per day, every day!... its impossible to match. The result of this is richer witnesses with more influence and \"normal\" users with very little to no influence at all.", + "body_length": 311, + "cashout_time": "2016-09-16T15:31:24", + "category": "steemit", + "children": 2, + "created": "2016-09-15T14:21:09", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T14:21:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1000247174970, + "parent_author": "gtg", + "parent_permlink": "re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t141551322z", + "pending_payout_value": "0.275 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z", + "post_id": 958150, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A balanced voting system is impossible with current witness\u2019s payouts.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z" + }, + { + "active_votes": [], + "author": "arcange", + "author_reputation": 0, + "beneficiaries": [], + "body": "Lol. You're welcome!\nBut I suspect you're working hard to hit the top 20 chart with your two comments :p", + "body_length": 104, + "cashout_time": "2016-09-16T13:44:39", + "category": "stats", + "children": 1, + "created": "2016-09-15T13:24:15", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T13:24:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", + "post_id": 957646, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z" + }, + { + "active_votes": [], + "author": "arcange", + "author_reputation": 0, + "beneficiaries": [], + "body": "That's the purpose of using FREETEXT() instead of CONTAINS()", + "body_length": 60, + "cashout_time": "2016-09-16T13:44:39", + "category": "stats", + "children": 3, + "created": "2016-09-15T13:06:18", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T13:06:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", + "post_id": 957511, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z" + }, + { + "active_votes": [], + "author": "gamer00", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you!", + "body_length": 10, + "cashout_time": "2016-09-16T03:45:30", + "category": "introducemyself", + "children": 0, + "created": "2016-09-15T07:54:42", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introducemyself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T07:54:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t071902704z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z", + "post_id": 956069, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hi! I'm Jaro and this is my introductory verification post!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introducemyself/@gamer00/hi-i-m-jaro-and-this-is-my-introductory-verification-post#@gamer00/re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z" + }, + { + "active_votes": [], + "author": "lilmisjenn", + "author_reputation": 0, + "beneficiaries": [], + "body": "See there is a positive to everything! That does sound like quite the cold compromise though! You should post up some pictures of the cherries! I love cherry picking! Yumm!", + "body_length": 172, + "cashout_time": "2016-09-26T08:08:21", + "category": "food", + "children": 0, + "created": "2016-09-01T14:18:48", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-01T14:18:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160829t070902349z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z", + "post_id": 823649, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Do you have a drinking problem??", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "28864035808", + "voter": "noaommerrr" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-100075931", + "voter": "cheetah20" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-123906339", + "voter": "cheetah19" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-99152161", + "voter": "cheetah21" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-99151476", + "voter": "cheetah22" + } + ], + "author": "itay", + "author_reputation": 0, + "beneficiaries": [], + "body": "I upvoted You", + "body_length": 13, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 0, + "created": "2016-08-31T17:00:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-31T17:00:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 28441749901, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-witness-gtg", + "post_id": 814638, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/witness-gtg#@itay/re-witness-gtg" + }, + { + "active_votes": [], + "author": "melissarhiann", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hi and thanks! I've been attempting to figure out how to add a picture. I'll get it at some point :)", + "body_length": 100, + "cashout_time": "2016-09-26T08:42:15", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-31T02:16:54", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-31T02:16:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-melissarhiann-lasting-impression-20160826t083943073z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z", + "post_id": 808051, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Lasting Impression", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@melissarhiann/lasting-impression#@melissarhiann/re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z" + }, + { + "active_votes": [], + "author": "djm34", + "author_reputation": 0, + "beneficiaries": [], + "body": "actually I won't send, however I expect to receive... lol (as you can see wanting to know who is who is a totally legitimate question...)", + "body_length": 138, + "cashout_time": "2016-09-30T17:29:27", + "category": "steem", + "children": 1, + "created": "2016-08-30T17:06:09", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-30T17:07:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z", + "post_id": 802893, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[Bounty] Community bounty for open source GPU miner.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@djm34/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "10013306404", + "voter": "richman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13209570416", + "voter": "carlidos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53474677", + "voter": "riv" + } + ], + "author": "complexring", + "author_reputation": 0, + "beneficiaries": [], + "body": "I don't see where @djm34 said that he doesn't trust @picokernel. That is a rather harsh accusation when all this user has done is stated he doesn't believe they are gpu miners. I see nothing else in his comment beyond that.", + "body_length": 225, + "cashout_time": "2016-09-30T17:29:27", + "category": "steem", + "children": 3, + "created": "2016-08-30T16:40:03", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steem\"],\"users\":[\"djm34\",\"picokernel\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-30T16:40:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 23276351497, + "parent_author": "gtg", + "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z", + "post_id": 802611, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[Bounty] Community bounty for open source GPU miner.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@complexring/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z" + }, + { + "active_votes": [], + "author": "emsenn", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thanks! I'm really enjoying the site so far - beyond the technical aspects, the content here all seems pretty high-quality.", + "body_length": 123, + "cashout_time": "2016-09-29T22:31:27", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-29T22:45:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-29T22:45:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t213519226z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z", + "post_id": 794736, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Introducing Myself: Bitcoin Early Adopter, Content Producer & Designer", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@emsenn/introducing-myself-bitcoin-early-adopter-content-producer-and-designer#@emsenn/re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z" + }, + { + "active_votes": [], + "author": "lilmisjenn", + "author_reputation": 0, + "beneficiaries": [], + "body": "It took me a long time until I could say I have them from my own garden. That is why I am so appreciative and can make such a silly post over such simplicity! It is a skill I have also worked on mastering over the years. Thanks for your comment and for appreciating my fruit tree! I shall grow it for all that cannot and be extra grateful for its produce. What is your climate like? I also have restrictions on what I can grow around here due to climate. But its a small sacrifice for the serenity.", + "body_length": 498, + "cashout_time": "2016-09-26T08:08:21", + "category": "food", + "children": 2, + "created": "2016-08-28T11:46:00", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-28T11:46:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-lilmisjenn-do-you-have-a-drinking-problem-20160826t085857261z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z", + "post_id": 776630, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Do you have a drinking problem??", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z" + }, + { + "active_votes": [], + "author": "timcliff", + "author_reputation": 0, + "beneficiaries": [], + "body": "I've been mining since last Friday and haven't found a block yet, so there are no witness details for my account yet. I wanted to check the \"total_missed\" count, since it sounds like this post could be describing my issue. After talking to peeps on Steemit chat, it sounds like I need to change the keys I'm using. I'm currently using my 'owner private' key for both.", + "body_length": 367, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 1, + "created": "2016-08-27T15:51:15", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T15:51:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", + "post_id": 767624, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z" + }, + { + "active_votes": [], + "author": "timcliff", + "author_reputation": 0, + "beneficiaries": [], + "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", + "body_length": 74, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 3, + "created": "2016-08-27T14:13:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T14:13:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", + "post_id": 766749, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-missing-rewards-while-mining-20160827t141319137z" + }, + { + "active_votes": [], + "author": "eternalmoon", + "author_reputation": 0, + "beneficiaries": [], + "body": "I wanted to, I just didn't know how. But someone did link me to a thing. Thanks for the advice!\nP.S. Cats are adorable! :D", + "body_length": 122, + "cashout_time": "2016-09-26T09:23:57", + "category": "aboutme", + "children": 1, + "created": "2016-08-27T04:15:48", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"aboutme\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T04:15:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-eternalmoon-this-is-my-about-me-entry-enjoy-20160826t094835368z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z", + "post_id": 763016, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "This is my about me entry (: Enjoy~", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/aboutme/@eternalmoon/this-is-my-about-me-entry-enjoy#@eternalmoon/re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z" + }, + { + "active_votes": [], + "author": "ania", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you Gandalf :)", + "body_length": 20, + "cashout_time": "2016-09-26T21:18:18", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-26T21:16:45", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T21:16:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-ania-hello-world-20160826t185305711z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-ania-hello-world-20160826t211629005z", + "post_id": 759894, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@ania/hello-world#@ania/re-gtg-re-ania-hello-world-20160826t211629005z" + }, + { + "active_votes": [], + "author": "orcish", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you :)", + "body_length": 12, + "cashout_time": "2016-09-27T01:07:09", + "category": "zee", + "children": 0, + "created": "2016-08-26T18:58:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"zee\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T18:58:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-orcish-my-introduction-20160826t080607987z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-orcish-my-introduction-20160826t185829224z", + "post_id": 758311, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "My Introduction", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/zee/@orcish/my-introduction#@orcish/re-gtg-re-orcish-my-introduction-20160826t185829224z" + }, + { + "active_votes": [], + "author": "bumblebrii", + "author_reputation": 0, + "beneficiaries": [], + "body": "Oh yes of course. I subscribe to a lot of different artists for my coloring pages. One had sent me the link to her blog and kind of just ended up sticking around and read a few blogs. Next thing i know, I signed up haha.", + "body_length": 220, + "cashout_time": "2016-09-26T08:05:57", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-26T18:20:12", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T18:20:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-bumblebrii-about-me-20160826t094306616z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-bumblebrii-about-me-20160826t182001959z", + "post_id": 757931, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "About me", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@bumblebrii/about-me#@bumblebrii/re-gtg-re-bumblebrii-about-me-20160826t182001959z" + }, + { + "active_votes": [], + "author": "mynomadicyear", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hi gtg, thanks for stopping by :)", + "body_length": 33, + "cashout_time": "2016-09-26T16:08:51", + "category": "travel", + "children": 0, + "created": "2016-08-26T13:29:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T13:29:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-mynomadicyear-16-months-out-of-a-suitcase-20160826t090811525z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z", + "post_id": 754968, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "16 Months Out Of A Suitcase", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/travel/@mynomadicyear/16-months-out-of-a-suitcase#@mynomadicyear/re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z" + }, + { + "active_votes": [], + "author": "seasoul", + "author_reputation": 0, + "beneficiaries": [], + "body": "thankyou! :) hi there", + "body_length": 21, + "cashout_time": "2016-09-25T19:26:21", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-26T11:37:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T11:37:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-seasoul-aboutme-20160826t095320794z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-seasoul-aboutme-20160826t113727450z", + "post_id": 754013, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Aboutme", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@seasoul/aboutme#@seasoul/re-gtg-re-seasoul-aboutme-20160826t113727450z" + }, + { + "active_votes": [], + "author": "mammasitta", + "author_reputation": 0, + "beneficiaries": [], + "body": "I think you would be a great witness . I appreciate your time helping me \ud83d\ude4c", + "body_length": 74, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 0, + "created": "2016-08-26T05:27:15", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-26T05:27:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-witness-gtg-20160826t052714859z", + "post_id": 751872, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/witness-gtg#@mammasitta/re-gtg-witness-gtg-20160826t052714859z" + }, + { + "active_votes": [], + "author": "gtg", + "author_reputation": 3920426655270, + "beneficiaries": [], + "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", + "body_length": 140, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 0, + "created": "2016-08-21T13:12:45", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https:\\/\\/steemit.chat\\/channel\\/mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-21T13:12:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", + "post_id": 693986, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@gtg/re-gtg-missing-rewards-while-mining-20160821t131242531z" + }, + { + "active_votes": [], + "author": "gary-smith", + "author_reputation": 0, + "beneficiaries": [], + "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", + "body_length": 105, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 0, + "created": "2016-08-21T12:52:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-21T12:52:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", + "post_id": 693858, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@gary-smith/re-gtg-missing-rewards-while-mining-20160821t125207685z" + }, + { + "active_votes": [], + "author": "abit", + "author_reputation": 0, + "beneficiaries": [], + "body": "The private seed nodes still need to connect to the rest of the network to be able to sync and broadcast new blocks. So from an attacker's pov perhaps it's cheaper/easier to attack the public seed nodes directly.", + "body_length": 212, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-18T03:32:12", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T03:32:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z", + "post_id": 650924, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@abit/re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z" + }, + { + "active_votes": [], + "author": "okay", + "author_reputation": 0, + "beneficiaries": [], + "body": "`gtg said: Please note that setting up all seed nodes in a single data center won\u2019t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway.`\n\nThat is unless the data center provides a variety of network routes from different providers and your seed nodes are therefore located on different wide area networks even when on the same LAN. This is possible on today's top of the line data centers.\nOf course decentralization is always good so several locations for seed nodes and witnesses is a plus. Good post. \nJust installed a witness node. Consider to [Vote for witness okay](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network)", + "body_length": 714, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T12:06:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https:\\/\\/steemit.com\\/witness-category\\/@okay\\/new-witness-okay-a-great-addition-to-the-steem-network\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T12:06:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z", + "post_id": 640215, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@okay/re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z" + }, + { + "active_votes": [], + "author": "mammasitta", + "author_reputation": 0, + "beneficiaries": [], + "body": "I just saw your article now and followed you . In this way I don't miss your new ones .", + "body_length": 87, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T07:03:33", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T07:03:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z", + "post_id": 637902, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@mammasitta/re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z" + }, + { + "active_votes": [], + "author": "dajohns1420", + "author_reputation": 0, + "beneficiaries": [], + "body": "I wish I was intelligent enough to participate in this conversation.", + "body_length": 68, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T04:00:42", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T04:00:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z", + "post_id": 636638, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dajohns1420/re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z" + }, + { + "active_votes": [], + "author": "dr2073", + "author_reputation": 0, + "beneficiaries": [], + "body": "Really good infrastructure top 19 sure can implement for better protection of their nodes. \nThough Steem network as whole have good protection against DDoS - even if most of 19 will go offline other witnesses will do their job, we just need more active and up-to-date witnesses. \nI personally too want become good witness and currently learning all nuances of secure operation of node.", + "body_length": 385, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T02:12:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T02:12:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z", + "post_id": 635741, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dr2073/re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z" + }, + { + "active_votes": [ + { + "percent": "5000", + "reputation": 0, + "rshares": "3273182637316", + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1446333470877", + "voter": "steemychicken1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49042313956", + "voter": "full-steem-ahead" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9767505930", + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "848329794", + "voter": "johnerminer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39798145914", + "voter": "gtg" + } + ], + "author": "wackou", + "author_reputation": 0, + "beneficiaries": [], + "body": "great post! I completely agree with the analysis of the problem as well as the proposed solution. I actually wanted to implement something similar some time ago, during BitShares times, but then BitShares 2.0 happened and there were a lot more urgent things to do, so this got sidetracked. See [here](http://digitalgaia.io/backbone.html) for the same analysis, where those nodes were called \"backbone nodes\" as they were intended to be shared between witnesses. Witnesses were paid a lot less during that time so I intended to have this as a public service, although that would mean that witnesses had to trust the operator of the backbone. Having your own personal line of defense is obviously much better. I still believe that this is an extremely important issue that should be tackled as soon as possible, and was planning to reboot this proposal as soon as I got some free time (haha good one!). In all seriousness, I believe that this is not too much work, but there will be some features that need to be added to the network code of the steemd client, in order to limit the nodes the client can connect too, as well as ensuring that your backbone nodes do not share the IP of your witness node (was in bts 0.9.x, but not in 2.0 nor steem I believe). This can probably also be implemented with some sort of VPN I guess, but I'm a coder, not a sysadmin, so I can't tell for sure. I even thought (fantasized) about how to make these nodes replace themselves autonomously when attacked via DDoS using messages on the blockchain, in order to simulate a resilient, living organism. Now you see where part of the \"overmind\" idea came from, too :) That is a discussion for a bit later, though...", + "body_length": 1694, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T21:28:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"http:\\/\\/digitalgaia.io\\/backbone.html\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T21:28:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 4818972403787, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "6.136 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z", + "post_id": 632723, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@wackou/re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "19467531428", + "voter": "ausbitbank" + } + ], + "author": "jesta", + "author_reputation": 0, + "beneficiaries": [], + "body": "That's awesome :)\n\nI love seeing these kinds of advanced setups being theorized, tested and deployed!", + "body_length": 101, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T20:31:06", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T20:31:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 19467531428, + "parent_author": "gtg", + "parent_permlink": "re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t201857176z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z", + "post_id": 632008, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "43533730799", + "voter": "brandonp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52397603", + "voter": "doze49" + } + ], + "author": "brandonp", + "author_reputation": 0, + "beneficiaries": [], + "body": "Reading stuff like this makes me realize just how little I know about this whole thing...", + "body_length": 89, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T20:01:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T20:01:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 43586128402, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.024 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z", + "post_id": 631654, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@brandonp/re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z" + }, + { + "active_votes": [], + "author": "thecryptofiend", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thanks for explaining. You've got my witness vote now.", + "body_length": 55, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T19:31:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:31:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z", + "post_id": 631312, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thecryptofiend/re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "6327910390022", + "voter": "wackou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9559686655", + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "829049571", + "voter": "johnerminer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "38432804053", + "voter": "gtg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19873104999", + "voter": "ausbitbank" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44706057470", + "voter": "arcurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31463628969", + "voter": "mibenkito" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14083166401", + "voter": "someguy123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52918124", + "voter": "xomtux" + } + ], + "author": "jesta", + "author_reputation": 0, + "beneficiaries": [], + "body": "I love the idea in this, basically setting up a fortress for your witness node to be more resilient. \n\nOne thing you're right about though is it would be a somewhat expensive venture. At the rate I'm witnessing blocks (maybe 3-4 a day?), it's not feasible to sustain itself financially, but I imagine the top 19 could easily go this route. Maybe even some of the people in the top 30?\n\nI'd be more than willing to help prototype this type of infrastructure. I've been considering how difficult it would be to setup on AWS with a CloudFormation script that spins up seed nodes as ECS Containers, VPCs in every region that all interconnect via private networking, and an EC2 container for your witness node that's not accessible from the internet, but only the seed nodes. \n\nIt really shouldn't be all that hard, and even non-technical witnesses could copy/paste the cloudformation script to get started. Of course with this idea, if AWS is attacked, you're still the mercy of them being able to handle it.", + "body_length": 1005, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 2, + "created": "2016-08-16T19:11:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:11:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 6486910806264, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "9.966 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z", + "post_id": 631058, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z" + }, + { + "active_votes": [], + "author": "thebluepanda", + "author_reputation": 0, + "beneficiaries": [], + "body": "i was checking if you tagged it in #witness-category ;) \nglad to see steemit has a great team of security devs and glad to have upvoted you as witness.", + "body_length": 151, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T19:08:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:08:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z", + "post_id": 631016, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thebluepanda/re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z" + }, + { + "active_votes": [], + "author": "someguy123", + "author_reputation": 0, + "beneficiaries": [], + "body": "I can tell you're definitely a well-invested witness. You have my vote. \n\nThese details could help to improve the general quality of witnesses on the network", + "body_length": 157, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T18:52:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T18:52:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z", + "post_id": 630835, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@someguy123/re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z" + }, + { + "active_votes": [], + "author": "vishal1", + "author_reputation": 0, + "beneficiaries": [], + "body": "THis is something. @gtg", + "body_length": 23, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T18:12:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"],\"users\":[\"gtg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T18:12:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z", + "post_id": 630198, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@vishal1/re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "910501669843", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4179624293", + "voter": "dennygalindo" + } + ], + "author": "dennygalindo", + "author_reputation": 0, + "beneficiaries": [], + "body": "Gamification is what makes this so addictive to me. I get like 2c for finding a good post but it's fun to try to guess which will be good and time it. I can't put my phone down. My data is through the roof, I keep getting distracted and losing things. Curation rewards are key! I think it would help drive adoption if newbies had a better shot at curation rewards. I know they don't want a lot of bots here but maybe you could give newbies super votes ( only when at 100 percent) that lets them earn rewards at least once a day. (As @dantheman said [here](https://steemit.com/steem/@dantheman/curation-rewards-and-voting-incentive) the optimal minnow strategy is not to vote).", + "body_length": 677, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit-ideas", + "children": 0, + "created": "2016-08-15T14:15:42", + "curator_payout_value": "0.198 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit-ideas\"],\"users\":[\"dantheman\"],\"links\":[\"https:\\/\\/steemit.com\\/steem\\/@dantheman\\/curation-rewards-and-voting-incentive\"]}", + "last_payout": "2016-09-15T07:07:00", + "last_update": "2016-08-15T14:16:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 914681294136, + "parent_author": "gtg", + "parent_permlink": "re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t123329115z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z", + "post_id": 613314, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "DON'T REMOVE Curation Rewards! Just stop them when the post reach the trending page !!!", + "title": "", + "total_payout_value": "0.601 HBD", + "url": "/steemit-ideas/@liondani/don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page#@dennygalindo/re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "1374704925", + "voter": "earnest" + } + ], + "author": "iaco", + "author_reputation": 0, + "beneficiaries": [], + "body": "As the computer world beyond user interfaces is a magical realm to me, the only way I can get my brain to completely understand it is to just let go and tell my self it's all made of unicorns and runes being cast to make the magic happen :) I thank you for your work:)", + "body_length": 269, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 1, + "created": "2016-08-05T16:12:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-05T16:12:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1374704925, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-witness-gtg-20160805t161219379z", + "post_id": 465280, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/witness-gtg#@iaco/re-gtg-witness-gtg-20160805t161219379z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "769829319629", + "voter": "steemship" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9767505930", + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "848329794", + "voter": "johnerminer" + } + ], + "author": "cire81", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you for spending your time to make steemit secure. Thanks to people like you we have a much safer environment. Were you paid for your effort on steem?", + "body_length": 156, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 2, + "created": "2016-08-05T15:45:27", + "curator_payout_value": "0.216 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-05T15:45:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 780445155353, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-witness-gtg-20160805t154528701z", + "post_id": 464773, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.650 HBD", + "url": "/witness-category/@gtg/witness-gtg#@cire81/re-gtg-witness-gtg-20160805t154528701z" + }, + { + "active_votes": [], + "author": "mefisto", + "author_reputation": 0, + "beneficiaries": [], + "body": "Kryterium wyboru delegata to osobna sprawa. Co delegat powinien potrafi\u0107? Co robi\u0107? Czy powinien poniek\u0105d s\u0142u\u017cy\u0107 swoim wyborcom?\nJedno zdaje si\u0119 by\u0107 pewne - **powinien by\u0107 aktywnym cz\u0142onkiem spo\u0142eczno\u015bci steemit.** \nJestem przekonany, \u017ce jeste\u015bmy w stanie wybra\u0107 / wskaza\u0107 kilka os\u00f3b, kt\u00f3re mog\u0142yby zbiera\u0107 glosy polskiej spo\u0142eczno\u015bci. \n\nJe\u015bli si\u0119 nie myl\u0119, g\u0142os\u00f3w b\u0119dzie wi\u0119cej - je\u015bli system g\u0142osowania na dodatkowych kandydat\u00f3w b\u0119dzie prostszy dla przeci\u0119tnego po\u017ceracza blog\u00f3w... np. pojawi si\u0119 \u0142adny graficzny klient pod windoz\u0119.", + "body_length": 534, + "cashout_time": "1969-12-31T23:59:59", + "category": "polish", + "children": 0, + "created": "2016-08-03T12:56:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"polish\"]}", + "last_payout": "2016-09-03T03:24:06", + "last_update": "2016-08-03T12:58:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t123936611z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z", + "post_id": 427686, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[PL] Czy polska spo\u0142eczno\u015b\u0107 powinna mie\u0107 swojego delegata (witness) ?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/polish/@mefisto/pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness#@mefisto/re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z" + }, + { + "active_votes": [], + "author": "edu-lopov", + "author_reputation": 0, + "beneficiaries": [], + "body": "Welcome to Steemit Gandalf!", + "body_length": 27, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-04T18:22:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-04T18:22:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160704t182251522z", + "post_id": 38463, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@edu-lopov/re-gtg-hello-world-20160704t182251522z" + }, + { + "active_votes": [], + "author": "amartinezque", + "author_reputation": 0, + "beneficiaries": [], + "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", + "body_length": 84, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-03T22:45:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T22:45:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160703t224527020z", + "post_id": 37179, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@amartinezque/re-gtg-hello-world-20160703t224527020z" + }, + { + "active_votes": [], + "author": "trogdor", + "author_reputation": 0, + "beneficiaries": [], + "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", + "body_length": 55, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-03T17:51:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T17:51:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160703t175141501z", + "post_id": 36953, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@trogdor/re-gtg-hello-world-20160703t175141501z" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json index 3f395041..5eddfb74 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json @@ -1,1576 +1,1574 @@ -{ - "iterable_item_removed": { - "root[0]": { - "active_votes": [], - "author": "chitty", - "author_reputation": 0, - "beneficiaries": [], - "body": "But this is not an issue of Top Witnesses vs Backup witnesses. This is an issue that involves all members of the Steemit. If top witnesses keep receiving 1,370 Steems per day, their voting influence will keep growing while the rest of the users see their voting power diminished.", - "body_length": 279, - "cashout_time": "2016-09-16T15:31:24", - "category": "steemit", - "children": 0, - "created": "2016-09-15T18:52:09", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-15T18:52:09", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t184349883z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z", - "post_id": 960531, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "A balanced voting system is impossible with current witness\u2019s payouts.", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z" - }, - "root[10]": { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "10013306404", - "voter": "richman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13209570416", - "voter": "carlidos" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53474677", - "voter": "riv" - } - ], - "author": "complexring", - "author_reputation": 0, - "beneficiaries": [], - "body": "I don't see where @djm34 said that he doesn't trust @picokernel. That is a rather harsh accusation when all this user has done is stated he doesn't believe they are gpu miners. I see nothing else in his comment beyond that.", - "body_length": 225, - "cashout_time": "2016-09-30T17:29:27", - "category": "steem", - "children": 3, - "created": "2016-08-30T16:40:03", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "json_metadata": "{\"tags\":[\"steem\"],\"users\":[\"djm34\",\"picokernel\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-30T16:40:03", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 23276351497, - "parent_author": "gtg", - "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z", - "post_id": 802611, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "[Bounty] Community bounty for open source GPU miner.", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@complexring/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z" - }, - "root[11]": { - "active_votes": [], - "author": "emsenn", - "author_reputation": 0, - "beneficiaries": [], - "body": "Thanks! I'm really enjoying the site so far - beyond the technical aspects, the content here all seems pretty high-quality.", - "body_length": 123, - "cashout_time": "2016-09-29T22:31:27", - "category": "introduceyourself", - "children": 0, - "created": "2016-08-29T22:45:33", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-29T22:45:33", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t213519226z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z", - "post_id": 794736, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Introducing Myself: Bitcoin Early Adopter, Content Producer & Designer", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/introduceyourself/@emsenn/introducing-myself-bitcoin-early-adopter-content-producer-and-designer#@emsenn/re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z" - }, - "root[12]": { - "active_votes": [], - "author": "lilmisjenn", - "author_reputation": 0, - "beneficiaries": [], - "body": "It took me a long time until I could say I have them from my own garden. That is why I am so appreciative and can make such a silly post over such simplicity! It is a skill I have also worked on mastering over the years. Thanks for your comment and for appreciating my fruit tree! I shall grow it for all that cannot and be extra grateful for its produce. What is your climate like? I also have restrictions on what I can grow around here due to climate. But its a small sacrifice for the serenity.", - "body_length": 498, - "cashout_time": "2016-09-26T08:08:21", - "category": "food", - "children": 2, - "created": "2016-08-28T11:46:00", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"food\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-28T11:46:00", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-lilmisjenn-do-you-have-a-drinking-problem-20160826t085857261z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z", - "post_id": 776630, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Do you have a drinking problem??", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z" - }, - "root[13]": { - "active_votes": [], - "author": "timcliff", - "author_reputation": 0, - "beneficiaries": [], - "body": "I've been mining since last Friday and haven't found a block yet, so there are no witness details for my account yet. I wanted to check the \"total_missed\" count, since it sounds like this post could be describing my issue. After talking to peeps on Steemit chat, it sounds like I need to change the keys I'm using. I'm currently using my 'owner private' key for both.", - "body_length": 367, - "cashout_time": "2016-09-21T13:01:45", - "category": "mining", - "children": 1, - "created": "2016-08-27T15:51:15", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "json_metadata": "{\"tags\":[\"mining\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-27T15:51:15", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", - "post_id": 767624, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Missing rewards while mining - common mistake with keys", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z" - }, - "root[14]": { - "active_votes": [], - "author": "timcliff", - "author_reputation": 0, - "beneficiaries": [], - "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", - "body_length": 74, - "cashout_time": "2016-09-21T13:01:45", - "category": "mining", - "children": 3, - "created": "2016-08-27T14:13:18", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"mining\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-27T14:13:18", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "missing-rewards-while-mining", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", - "post_id": 766749, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Missing rewards while mining - common mistake with keys", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-missing-rewards-while-mining-20160827t141319137z" - }, - "root[15]": { - "active_votes": [], - "author": "eternalmoon", - "author_reputation": 0, - "beneficiaries": [], - "body": "I wanted to, I just didn't know how. But someone did link me to a thing. Thanks for the advice!\nP.S. Cats are adorable! :D", - "body_length": 122, - "cashout_time": "2016-09-26T09:23:57", - "category": "aboutme", - "children": 1, - "created": "2016-08-27T04:15:48", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"aboutme\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-27T04:15:48", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-eternalmoon-this-is-my-about-me-entry-enjoy-20160826t094835368z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z", - "post_id": 763016, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "This is my about me entry (: Enjoy~", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/aboutme/@eternalmoon/this-is-my-about-me-entry-enjoy#@eternalmoon/re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z" - }, - "root[16]": { - "active_votes": [], - "author": "ania", - "author_reputation": 0, - "beneficiaries": [], - "body": "Thank you Gandalf :)", - "body_length": 20, - "cashout_time": "2016-09-26T21:18:18", - "category": "introduceyourself", - "children": 0, - "created": "2016-08-26T21:16:45", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-26T21:16:45", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-ania-hello-world-20160826t185305711z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-ania-hello-world-20160826t211629005z", - "post_id": 759894, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Hello World!", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/introduceyourself/@ania/hello-world#@ania/re-gtg-re-ania-hello-world-20160826t211629005z" - }, - "root[17]": { - "active_votes": [], - "author": "orcish", - "author_reputation": 0, - "beneficiaries": [], - "body": "Thank you :)", - "body_length": 12, - "cashout_time": "2016-09-27T01:07:09", - "category": "zee", - "children": 0, - "created": "2016-08-26T18:58:27", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"zee\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-26T18:58:27", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-orcish-my-introduction-20160826t080607987z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-orcish-my-introduction-20160826t185829224z", - "post_id": 758311, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "My Introduction", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/zee/@orcish/my-introduction#@orcish/re-gtg-re-orcish-my-introduction-20160826t185829224z" - }, - "root[18]": { - "active_votes": [], - "author": "bumblebrii", - "author_reputation": 0, - "beneficiaries": [], - "body": "Oh yes of course. I subscribe to a lot of different artists for my coloring pages. One had sent me the link to her blog and kind of just ended up sticking around and read a few blogs. Next thing i know, I signed up haha.", - "body_length": 220, - "cashout_time": "2016-09-26T08:05:57", - "category": "introduceyourself", - "children": 0, - "created": "2016-08-26T18:20:12", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-26T18:20:12", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-bumblebrii-about-me-20160826t094306616z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-bumblebrii-about-me-20160826t182001959z", - "post_id": 757931, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "About me", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/introduceyourself/@bumblebrii/about-me#@bumblebrii/re-gtg-re-bumblebrii-about-me-20160826t182001959z" - }, - "root[19]": { - "active_votes": [], - "author": "mynomadicyear", - "author_reputation": 0, - "beneficiaries": [], - "body": "Hi gtg, thanks for stopping by :)", - "body_length": 33, - "cashout_time": "2016-09-26T16:08:51", - "category": "travel", - "children": 0, - "created": "2016-08-26T13:29:27", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"travel\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-26T13:29:27", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-mynomadicyear-16-months-out-of-a-suitcase-20160826t090811525z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z", - "post_id": 754968, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "16 Months Out Of A Suitcase", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/travel/@mynomadicyear/16-months-out-of-a-suitcase#@mynomadicyear/re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z" - }, - "root[1]": { - "active_votes": [], - "author": "woman-onthe-wing", - "author_reputation": 0, - "beneficiaries": [], - "body": "Thanks very much!", - "body_length": 17, - "cashout_time": "2016-09-16T01:44:18", - "category": "introducemyself", - "children": 0, - "created": "2016-09-15T15:04:09", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"introducemyself\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-15T15:04:09", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t071444722z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z", - "post_id": 958542, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Introduction post - Gold at the end of the rainbow... On the Emerald Isle", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/introducemyself/@woman-onthe-wing/introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle#@woman-onthe-wing/re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z" - }, - "root[20]": { - "active_votes": [], - "author": "seasoul", - "author_reputation": 0, - "beneficiaries": [], - "body": "thankyou! :) hi there", - "body_length": 21, - "cashout_time": "2016-09-25T19:26:21", - "category": "introduceyourself", - "children": 0, - "created": "2016-08-26T11:37:33", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-26T11:37:33", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-seasoul-aboutme-20160826t095320794z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-seasoul-aboutme-20160826t113727450z", - "post_id": 754013, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Aboutme", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/introduceyourself/@seasoul/aboutme#@seasoul/re-gtg-re-seasoul-aboutme-20160826t113727450z" - }, - "root[21]": { - "active_votes": [], - "author": "mammasitta", - "author_reputation": 0, - "beneficiaries": [], - "body": "I think you would be a great witness . I appreciate your time helping me \ud83d\ude4c", - "body_length": 74, - "cashout_time": "1969-12-31T23:59:59", - "category": "witness-category", - "children": 0, - "created": "2016-08-26T05:27:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "last_payout": "2016-09-05T05:17:57", - "last_update": "2016-08-26T05:27:15", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "witness-gtg", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-witness-gtg-20160826t052714859z", - "post_id": 751872, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Witness \"gtg\"", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/witness-gtg#@mammasitta/re-gtg-witness-gtg-20160826t052714859z" - }, - "root[22]": { - "active_votes": [], - "author": "gtg", - "author_reputation": 3920426655270, - "beneficiaries": [], - "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", - "body_length": 140, - "cashout_time": "2016-09-21T13:01:45", - "category": "mining", - "children": 0, - "created": "2016-08-21T13:12:45", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https:\\/\\/steemit.chat\\/channel\\/mining\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-21T13:12:45", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "missing-rewards-while-mining", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", - "post_id": 693986, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Missing rewards while mining - common mistake with keys", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/mining/@gtg/missing-rewards-while-mining#@gtg/re-gtg-missing-rewards-while-mining-20160821t131242531z" - }, - "root[23]": { - "active_votes": [], - "author": "gary-smith", - "author_reputation": 0, - "beneficiaries": [], - "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", - "body_length": 105, - "cashout_time": "2016-09-21T13:01:45", - "category": "mining", - "children": 0, - "created": "2016-08-21T12:52:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"mining\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-21T12:52:06", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "missing-rewards-while-mining", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", - "post_id": 693858, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Missing rewards while mining - common mistake with keys", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/mining/@gtg/missing-rewards-while-mining#@gary-smith/re-gtg-missing-rewards-while-mining-20160821t125207685z" - }, - "root[24]": { - "active_votes": [], - "author": "abit", - "author_reputation": 0, - "beneficiaries": [], - "body": "The private seed nodes still need to connect to the rest of the network to be able to sync and broadcast new blocks. So from an attacker's pov perhaps it's cheaper/easier to attack the public seed nodes directly.", - "body_length": 212, - "cashout_time": "2016-09-16T20:13:00", - "category": "witness-category", - "children": 0, - "created": "2016-08-18T03:32:12", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-18T03:32:12", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z", - "post_id": 650924, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Heavy duty witness node infrastructure", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@abit/re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z" - }, - "root[25]": { - "active_votes": [], - "author": "okay", - "author_reputation": 0, - "beneficiaries": [], - "body": "`gtg said: Please note that setting up all seed nodes in a single data center won\u2019t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway.`\n\nThat is unless the data center provides a variety of network routes from different providers and your seed nodes are therefore located on different wide area networks even when on the same LAN. This is possible on today's top of the line data centers.\nOf course decentralization is always good so several locations for seed nodes and witnesses is a plus. Good post. \nJust installed a witness node. Consider to [Vote for witness okay](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network)", - "body_length": 714, - "cashout_time": "2016-09-16T20:13:00", - "category": "witness-category", - "children": 0, - "created": "2016-08-17T12:06:03", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https:\\/\\/steemit.com\\/witness-category\\/@okay\\/new-witness-okay-a-great-addition-to-the-steem-network\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-17T12:06:03", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z", - "post_id": 640215, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Heavy duty witness node infrastructure", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@okay/re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z" - }, - "root[26]": { - "active_votes": [], - "author": "mammasitta", - "author_reputation": 0, - "beneficiaries": [], - "body": "I just saw your article now and followed you . In this way I don't miss your new ones .", - "body_length": 87, - "cashout_time": "2016-09-16T20:13:00", - "category": "witness-category", - "children": 0, - "created": "2016-08-17T07:03:33", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-17T07:03:33", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z", - "post_id": 637902, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Heavy duty witness node infrastructure", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@mammasitta/re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z" - }, - "root[27]": { - "active_votes": [], - "author": "dajohns1420", - "author_reputation": 0, - "beneficiaries": [], - "body": "I wish I was intelligent enough to participate in this conversation.", - "body_length": 68, - "cashout_time": "2016-09-16T20:13:00", - "category": "witness-category", - "children": 0, - "created": "2016-08-17T04:00:42", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-17T04:00:42", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z", - "post_id": 636638, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Heavy duty witness node infrastructure", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dajohns1420/re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z" - }, - "root[28]": { - "active_votes": [], - "author": "dr2073", - "author_reputation": 0, - "beneficiaries": [], - "body": "Really good infrastructure top 19 sure can implement for better protection of their nodes. \nThough Steem network as whole have good protection against DDoS - even if most of 19 will go offline other witnesses will do their job, we just need more active and up-to-date witnesses. \nI personally too want become good witness and currently learning all nuances of secure operation of node.", - "body_length": 385, - "cashout_time": "2016-09-16T20:13:00", - "category": "witness-category", - "children": 0, - "created": "2016-08-17T02:12:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-17T02:12:48", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z", - "post_id": 635741, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Heavy duty witness node infrastructure", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dr2073/re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z" - }, - "root[29]": { - "active_votes": [ - { - "percent": "5000", - "reputation": 0, - "rshares": "3273182637316", - "voter": "roadscape" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1446333470877", - "voter": "steemychicken1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "49042313956", - "voter": "full-steem-ahead" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9767505930", - "voter": "johnerfx" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "848329794", - "voter": "johnerminer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "39798145914", - "voter": "gtg" - } - ], - "author": "wackou", - "author_reputation": 0, - "beneficiaries": [], - "body": "great post! I completely agree with the analysis of the problem as well as the proposed solution. I actually wanted to implement something similar some time ago, during BitShares times, but then BitShares 2.0 happened and there were a lot more urgent things to do, so this got sidetracked. See [here](http://digitalgaia.io/backbone.html) for the same analysis, where those nodes were called \"backbone nodes\" as they were intended to be shared between witnesses. Witnesses were paid a lot less during that time so I intended to have this as a public service, although that would mean that witnesses had to trust the operator of the backbone. Having your own personal line of defense is obviously much better. I still believe that this is an extremely important issue that should be tackled as soon as possible, and was planning to reboot this proposal as soon as I got some free time (haha good one!). In all seriousness, I believe that this is not too much work, but there will be some features that need to be added to the network code of the steemd client, in order to limit the nodes the client can connect too, as well as ensuring that your backbone nodes do not share the IP of your witness node (was in bts 0.9.x, but not in 2.0 nor steem I believe). This can probably also be implemented with some sort of VPN I guess, but I'm a coder, not a sysadmin, so I can't tell for sure. I even thought (fantasized) about how to make these nodes replace themselves autonomously when attacked via DDoS using messages on the blockchain, in order to simulate a resilient, living organism. Now you see where part of the \"overmind\" idea came from, too :) That is a discussion for a bit later, though...", - "body_length": 1694, - "cashout_time": "2016-09-16T20:13:00", - "category": "witness-category", - "children": 0, - "created": "2016-08-16T21:28:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"http:\\/\\/digitalgaia.io\\/backbone.html\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-16T21:28:48", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 4818972403787, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "pending_payout_value": "6.136 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z", - "post_id": 632723, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Heavy duty witness node infrastructure", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@wackou/re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z" - }, - "root[2]": { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "1000247174970", - "voter": "liondani" - } - ], - "author": "chitty", - "author_reputation": 0, - "beneficiaries": [], - "body": "This is true, but you have to agree that the gap between top 19 witnesses and the rest of the users is getting bigger... nobody buys 1,370 steem per day, every day!... its impossible to match. The result of this is richer witnesses with more influence and \"normal\" users with very little to no influence at all.", - "body_length": 311, - "cashout_time": "2016-09-16T15:31:24", - "category": "steemit", - "children": 2, - "created": "2016-09-15T14:21:09", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"steemit\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-15T14:21:09", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1000247174970, - "parent_author": "gtg", - "parent_permlink": "re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t141551322z", - "pending_payout_value": "0.275 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z", - "post_id": 958150, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "A balanced voting system is impossible with current witness\u2019s payouts.", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z" - }, - "root[30]": { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "19467531428", - "voter": "ausbitbank" - } - ], - "author": "jesta", - "author_reputation": 0, - "beneficiaries": [], - "body": "That's awesome :)\n\nI love seeing these kinds of advanced setups being theorized, tested and deployed!", - "body_length": 101, - "cashout_time": "2016-09-16T20:13:00", - "category": "witness-category", - "children": 0, - "created": "2016-08-16T20:31:06", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-16T20:31:06", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 19467531428, - "parent_author": "gtg", - "parent_permlink": "re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t201857176z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z", - "post_id": 632008, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Heavy duty witness node infrastructure", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z" - }, - "root[31]": { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "43533730799", - "voter": "brandonp" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52397603", - "voter": "doze49" - } - ], - "author": "brandonp", - "author_reputation": 0, - "beneficiaries": [], - "body": "Reading stuff like this makes me realize just how little I know about this whole thing...", - "body_length": 89, - "cashout_time": "2016-09-16T20:13:00", - "category": "witness-category", - "children": 0, - "created": "2016-08-16T20:01:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-16T20:01:27", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 43586128402, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "pending_payout_value": "0.024 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z", - "post_id": 631654, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Heavy duty witness node infrastructure", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@brandonp/re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z" - }, - "root[32]": { - "active_votes": [], - "author": "thecryptofiend", - "author_reputation": 0, - "beneficiaries": [], - "body": "Thanks for explaining. You've got my witness vote now.", - "body_length": 55, - "cashout_time": "2016-09-16T20:13:00", - "category": "witness-category", - "children": 0, - "created": "2016-08-16T19:31:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-16T19:31:06", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z", - "post_id": 631312, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Heavy duty witness node infrastructure", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thecryptofiend/re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z" - }, - "root[33]": { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "6327910390022", - "voter": "wackou" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9559686655", - "voter": "johnerfx" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "829049571", - "voter": "johnerminer" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "38432804053", - "voter": "gtg" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "19873104999", - "voter": "ausbitbank" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "44706057470", - "voter": "arcurus" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "31463628969", - "voter": "mibenkito" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14083166401", - "voter": "someguy123" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52918124", - "voter": "xomtux" - } - ], - "author": "jesta", - "author_reputation": 0, - "beneficiaries": [], - "body": "I love the idea in this, basically setting up a fortress for your witness node to be more resilient. \n\nOne thing you're right about though is it would be a somewhat expensive venture. At the rate I'm witnessing blocks (maybe 3-4 a day?), it's not feasible to sustain itself financially, but I imagine the top 19 could easily go this route. Maybe even some of the people in the top 30?\n\nI'd be more than willing to help prototype this type of infrastructure. I've been considering how difficult it would be to setup on AWS with a CloudFormation script that spins up seed nodes as ECS Containers, VPCs in every region that all interconnect via private networking, and an EC2 container for your witness node that's not accessible from the internet, but only the seed nodes. \n\nIt really shouldn't be all that hard, and even non-technical witnesses could copy/paste the cloudformation script to get started. Of course with this idea, if AWS is attacked, you're still the mercy of them being able to handle it.", - "body_length": 1005, - "cashout_time": "2016-09-16T20:13:00", - "category": "witness-category", - "children": 2, - "created": "2016-08-16T19:11:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-16T19:11:06", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 6486910806264, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "pending_payout_value": "9.966 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z", - "post_id": 631058, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Heavy duty witness node infrastructure", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z" - }, - "root[34]": { - "active_votes": [], - "author": "thebluepanda", - "author_reputation": 0, - "beneficiaries": [], - "body": "i was checking if you tagged it in #witness-category ;) \nglad to see steemit has a great team of security devs and glad to have upvoted you as witness.", - "body_length": 151, - "cashout_time": "2016-09-16T20:13:00", - "category": "witness-category", - "children": 0, - "created": "2016-08-16T19:08:06", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-16T19:08:06", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z", - "post_id": 631016, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Heavy duty witness node infrastructure", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thebluepanda/re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z" - }, - "root[35]": { - "active_votes": [], - "author": "someguy123", - "author_reputation": 0, - "beneficiaries": [], - "body": "I can tell you're definitely a well-invested witness. You have my vote. \n\nThese details could help to improve the general quality of witnesses on the network", - "body_length": 157, - "cashout_time": "2016-09-16T20:13:00", - "category": "witness-category", - "children": 0, - "created": "2016-08-16T18:52:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-16T18:52:48", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z", - "post_id": 630835, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Heavy duty witness node infrastructure", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@someguy123/re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z" - }, - "root[36]": { - "active_votes": [], - "author": "vishal1", - "author_reputation": 0, - "beneficiaries": [], - "body": "THis is something. @gtg", - "body_length": 23, - "cashout_time": "2016-09-16T20:13:00", - "category": "witness-category", - "children": 0, - "created": "2016-08-16T18:12:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"],\"users\":[\"gtg\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-16T18:12:21", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "heavy-duty-witness-node-infrastructure", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z", - "post_id": 630198, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Heavy duty witness node infrastructure", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@vishal1/re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z" - }, - "root[37]": { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "910501669843", - "voter": "liondani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4179624293", - "voter": "dennygalindo" - } - ], - "author": "dennygalindo", - "author_reputation": 0, - "beneficiaries": [], - "body": "Gamification is what makes this so addictive to me. I get like 2c for finding a good post but it's fun to try to guess which will be good and time it. I can't put my phone down. My data is through the roof, I keep getting distracted and losing things. Curation rewards are key! I think it would help drive adoption if newbies had a better shot at curation rewards. I know they don't want a lot of bots here but maybe you could give newbies super votes ( only when at 100 percent) that lets them earn rewards at least once a day. (As @dantheman said [here](https://steemit.com/steem/@dantheman/curation-rewards-and-voting-incentive) the optimal minnow strategy is not to vote).", - "body_length": 677, - "cashout_time": "1969-12-31T23:59:59", - "category": "steemit-ideas", - "children": 0, - "created": "2016-08-15T14:15:42", - "curator_payout_value": "0.198 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"steemit-ideas\"],\"users\":[\"dantheman\"],\"links\":[\"https:\\/\\/steemit.com\\/steem\\/@dantheman\\/curation-rewards-and-voting-incentive\"]}", - "last_payout": "2016-09-15T07:07:00", - "last_update": "2016-08-15T14:16:39", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 914681294136, - "parent_author": "gtg", - "parent_permlink": "re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t123329115z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z", - "post_id": 613314, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "DON'T REMOVE Curation Rewards! Just stop them when the post reach the trending page !!!", - "title": "", - "total_payout_value": "0.601 HBD", - "url": "/steemit-ideas/@liondani/don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page#@dennygalindo/re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z" - }, - "root[38]": { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "1374704925", - "voter": "earnest" - } - ], - "author": "iaco", - "author_reputation": 0, - "beneficiaries": [], - "body": "As the computer world beyond user interfaces is a magical realm to me, the only way I can get my brain to completely understand it is to just let go and tell my self it's all made of unicorns and runes being cast to make the magic happen :) I thank you for your work:)", - "body_length": 269, - "cashout_time": "1969-12-31T23:59:59", - "category": "witness-category", - "children": 1, - "created": "2016-08-05T16:12:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "last_payout": "2016-09-05T05:17:57", - "last_update": "2016-08-05T16:12:21", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1374704925, - "parent_author": "gtg", - "parent_permlink": "witness-gtg", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-witness-gtg-20160805t161219379z", - "post_id": 465280, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Witness \"gtg\"", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/witness-gtg#@iaco/re-gtg-witness-gtg-20160805t161219379z" - }, - "root[39]": { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "769829319629", - "voter": "steemship" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "9767505930", - "voter": "johnerfx" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "848329794", - "voter": "johnerminer" - } - ], - "author": "cire81", - "author_reputation": 0, - "beneficiaries": [], - "body": "Thank you for spending your time to make steemit secure. Thanks to people like you we have a much safer environment. Were you paid for your effort on steem?", - "body_length": 156, - "cashout_time": "1969-12-31T23:59:59", - "category": "witness-category", - "children": 2, - "created": "2016-08-05T15:45:27", - "curator_payout_value": "0.216 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"]}", - "last_payout": "2016-09-05T05:17:57", - "last_update": "2016-08-05T15:45:27", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 780445155353, - "parent_author": "gtg", - "parent_permlink": "witness-gtg", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-witness-gtg-20160805t154528701z", - "post_id": 464773, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Witness \"gtg\"", - "title": "", - "total_payout_value": "0.650 HBD", - "url": "/witness-category/@gtg/witness-gtg#@cire81/re-gtg-witness-gtg-20160805t154528701z" - }, - "root[3]": { - "active_votes": [], - "author": "arcange", - "author_reputation": 0, - "beneficiaries": [], - "body": "Lol. You're welcome!\nBut I suspect you're working hard to hit the top 20 chart with your two comments :p", - "body_length": 104, - "cashout_time": "2016-09-16T13:44:39", - "category": "stats", - "children": 1, - "created": "2016-09-15T13:24:15", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "json_metadata": "{\"tags\":[\"stats\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-15T13:24:15", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", - "post_id": 957646, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z" - }, - "root[40]": { - "active_votes": [], - "author": "mefisto", - "author_reputation": 0, - "beneficiaries": [], - "body": "Kryterium wyboru delegata to osobna sprawa. Co delegat powinien potrafi\u0107? Co robi\u0107? Czy powinien poniek\u0105d s\u0142u\u017cy\u0107 swoim wyborcom?\nJedno zdaje si\u0119 by\u0107 pewne - **powinien by\u0107 aktywnym cz\u0142onkiem spo\u0142eczno\u015bci steemit.** \nJestem przekonany, \u017ce jeste\u015bmy w stanie wybra\u0107 / wskaza\u0107 kilka os\u00f3b, kt\u00f3re mog\u0142yby zbiera\u0107 glosy polskiej spo\u0142eczno\u015bci. \n\nJe\u015bli si\u0119 nie myl\u0119, g\u0142os\u00f3w b\u0119dzie wi\u0119cej - je\u015bli system g\u0142osowania na dodatkowych kandydat\u00f3w b\u0119dzie prostszy dla przeci\u0119tnego po\u017ceracza blog\u00f3w... np. pojawi si\u0119 \u0142adny graficzny klient pod windoz\u0119.", - "body_length": 534, - "cashout_time": "1969-12-31T23:59:59", - "category": "polish", - "children": 0, - "created": "2016-08-03T12:56:33", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"polish\"]}", - "last_payout": "2016-09-03T03:24:06", - "last_update": "2016-08-03T12:58:57", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t123936611z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z", - "post_id": 427686, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "[PL] Czy polska spo\u0142eczno\u015b\u0107 powinna mie\u0107 swojego delegata (witness) ?", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/polish/@mefisto/pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness#@mefisto/re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z" - }, - "root[41]": { - "active_votes": [], - "author": "edu-lopov", - "author_reputation": 0, - "beneficiaries": [], - "body": "Welcome to Steemit Gandalf!", - "body_length": 27, - "cashout_time": "1969-12-31T23:59:59", - "category": "introduceyourself", - "children": 0, - "created": "2016-07-04T18:22:51", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "2016-08-13T21:04:45", - "last_update": "2016-07-04T18:22:51", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "hello-world", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-hello-world-20160704t182251522z", - "post_id": 38463, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Hello, World!", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/introduceyourself/@gtg/hello-world#@edu-lopov/re-gtg-hello-world-20160704t182251522z" - }, - "root[42]": { - "active_votes": [], - "author": "amartinezque", - "author_reputation": 0, - "beneficiaries": [], - "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", - "body_length": 84, - "cashout_time": "1969-12-31T23:59:59", - "category": "introduceyourself", - "children": 0, - "created": "2016-07-03T22:45:27", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "2016-08-13T21:04:45", - "last_update": "2016-07-03T22:45:27", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "hello-world", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-hello-world-20160703t224527020z", - "post_id": 37179, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Hello, World!", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/introduceyourself/@gtg/hello-world#@amartinezque/re-gtg-hello-world-20160703t224527020z" - }, - "root[43]": { - "active_votes": [], - "author": "trogdor", - "author_reputation": 0, - "beneficiaries": [], - "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", - "body_length": 55, - "cashout_time": "1969-12-31T23:59:59", - "category": "introduceyourself", - "children": 0, - "created": "2016-07-03T17:51:48", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "2016-08-13T21:04:45", - "last_update": "2016-07-03T17:51:48", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "hello-world", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-hello-world-20160703t175141501z", - "post_id": 36953, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Hello, World!", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/introduceyourself/@gtg/hello-world#@trogdor/re-gtg-hello-world-20160703t175141501z" - }, - "root[4]": { - "active_votes": [], - "author": "arcange", - "author_reputation": 0, - "beneficiaries": [], - "body": "That's the purpose of using FREETEXT() instead of CONTAINS()", - "body_length": 60, - "cashout_time": "2016-09-16T13:44:39", - "category": "stats", - "children": 3, - "created": "2016-09-15T13:06:18", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"stats\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-15T13:06:18", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", - "post_id": 957511, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z" - }, - "root[5]": { - "active_votes": [], - "author": "gamer00", - "author_reputation": 0, - "beneficiaries": [], - "body": "Thank you!", - "body_length": 10, - "cashout_time": "2016-09-16T03:45:30", - "category": "introducemyself", - "children": 0, - "created": "2016-09-15T07:54:42", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"introducemyself\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-15T07:54:42", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t071902704z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z", - "post_id": 956069, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Hi! I'm Jaro and this is my introductory verification post!", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/introducemyself/@gamer00/hi-i-m-jaro-and-this-is-my-introductory-verification-post#@gamer00/re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z" - }, - "root[6]": { - "active_votes": [], - "author": "lilmisjenn", - "author_reputation": 0, - "beneficiaries": [], - "body": "See there is a positive to everything! That does sound like quite the cold compromise though! You should post up some pictures of the cherries! I love cherry picking! Yumm!", - "body_length": 172, - "cashout_time": "2016-09-26T08:08:21", - "category": "food", - "children": 0, - "created": "2016-09-01T14:18:48", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "json_metadata": "{\"tags\":[\"food\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-01T14:18:48", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160829t070902349z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z", - "post_id": 823649, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Do you have a drinking problem??", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z" - }, - "root[7]": { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "28864035808", - "voter": "noaommerrr" - }, - { - "percent": "-10000", - "reputation": 0, - "rshares": "-100075931", - "voter": "cheetah20" - }, - { - "percent": "-10000", - "reputation": 0, - "rshares": "-123906339", - "voter": "cheetah19" - }, - { - "percent": "-10000", - "reputation": 0, - "rshares": "-99152161", - "voter": "cheetah21" - }, - { - "percent": "-10000", - "reputation": 0, - "rshares": "-99151476", - "voter": "cheetah22" - } - ], - "author": "itay", - "author_reputation": 0, - "beneficiaries": [], - "body": "I upvoted You", - "body_length": 13, - "cashout_time": "1969-12-31T23:59:59", - "category": "witness-category", - "children": 0, - "created": "2016-08-31T17:00:21", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{}", - "last_payout": "2016-09-05T05:17:57", - "last_update": "2016-08-31T17:00:21", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 28441749901, - "parent_author": "gtg", - "parent_permlink": "witness-gtg", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-witness-gtg", - "post_id": 814638, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Witness \"gtg\"", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/witness-category/@gtg/witness-gtg#@itay/re-witness-gtg" - }, - "root[8]": { - "active_votes": [], - "author": "melissarhiann", - "author_reputation": 0, - "beneficiaries": [], - "body": "Hi and thanks! I've been attempting to figure out how to add a picture. I'll get it at some point :)", - "body_length": 100, - "cashout_time": "2016-09-26T08:42:15", - "category": "introduceyourself", - "children": 0, - "created": "2016-08-31T02:16:54", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"introduceyourself\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-31T02:16:54", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-melissarhiann-lasting-impression-20160826t083943073z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z", - "post_id": 808051, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Lasting Impression", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/introduceyourself/@melissarhiann/lasting-impression#@melissarhiann/re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z" - }, - "root[9]": { - "active_votes": [], - "author": "djm34", - "author_reputation": 0, - "beneficiaries": [], - "body": "actually I won't send, however I expect to receive... lol (as you can see wanting to know who is who is a totally legitimate question...)", - "body_length": 138, - "cashout_time": "2016-09-30T17:29:27", - "category": "steem", - "children": 1, - "created": "2016-08-30T17:06:09", - "curator_payout_value": "0.000 HBD", - "depth": 3, - "json_metadata": "{\"tags\":[\"steem\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-30T17:07:15", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 0, - "parent_author": "gtg", - "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, - "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z", - "post_id": 802893, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "[Bounty] Community bounty for open source GPU miner.", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@djm34/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z" - } +[ + { + "active_votes": [], + "author": "chitty", + "author_reputation": 0, + "beneficiaries": [], + "body": "But this is not an issue of Top Witnesses vs Backup witnesses. This is an issue that involves all members of the Steemit. If top witnesses keep receiving 1,370 Steems per day, their voting influence will keep growing while the rest of the users see their voting power diminished.", + "body_length": 279, + "cashout_time": "2016-09-16T15:31:24", + "category": "steemit", + "children": 0, + "created": "2016-09-15T18:52:09", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T18:52:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t184349883z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z", + "post_id": 960531, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A balanced voting system is impossible with current witness\u2019s payouts.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z" + }, + { + "active_votes": [], + "author": "woman-onthe-wing", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thanks very much!", + "body_length": 17, + "cashout_time": "2016-09-16T01:44:18", + "category": "introducemyself", + "children": 0, + "created": "2016-09-15T15:04:09", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introducemyself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T15:04:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t071444722z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z", + "post_id": 958542, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Introduction post - Gold at the end of the rainbow... On the Emerald Isle", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introducemyself/@woman-onthe-wing/introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle#@woman-onthe-wing/re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "1000247174970", + "voter": "liondani" + } + ], + "author": "chitty", + "author_reputation": 0, + "beneficiaries": [], + "body": "This is true, but you have to agree that the gap between top 19 witnesses and the rest of the users is getting bigger... nobody buys 1,370 steem per day, every day!... its impossible to match. The result of this is richer witnesses with more influence and \"normal\" users with very little to no influence at all.", + "body_length": 311, + "cashout_time": "2016-09-16T15:31:24", + "category": "steemit", + "children": 2, + "created": "2016-09-15T14:21:09", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T14:21:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1000247174970, + "parent_author": "gtg", + "parent_permlink": "re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t141551322z", + "pending_payout_value": "0.275 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z", + "post_id": 958150, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A balanced voting system is impossible with current witness\u2019s payouts.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@chitty/a-balanced-voting-system-is-impossible-with-current-witness-s-payouts#@chitty/re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z" + }, + { + "active_votes": [], + "author": "arcange", + "author_reputation": 0, + "beneficiaries": [], + "body": "Lol. You're welcome!\nBut I suspect you're working hard to hit the top 20 chart with your two comments :p", + "body_length": 104, + "cashout_time": "2016-09-16T13:44:39", + "category": "stats", + "children": 1, + "created": "2016-09-15T13:24:15", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T13:24:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", + "post_id": 957646, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z" + }, + { + "active_votes": [], + "author": "arcange", + "author_reputation": 0, + "beneficiaries": [], + "body": "That's the purpose of using FREETEXT() instead of CONTAINS()", + "body_length": 60, + "cashout_time": "2016-09-16T13:44:39", + "category": "stats", + "children": 3, + "created": "2016-09-15T13:06:18", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"stats\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T13:06:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", + "post_id": 957511, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/stats/@arcange/steemsql-com-a-deep-analysis-of-steemians-gratefulness#@arcange/re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z" + }, + { + "active_votes": [], + "author": "gamer00", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you!", + "body_length": 10, + "cashout_time": "2016-09-16T03:45:30", + "category": "introducemyself", + "children": 0, + "created": "2016-09-15T07:54:42", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introducemyself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T07:54:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t071902704z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z", + "post_id": 956069, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hi! I'm Jaro and this is my introductory verification post!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introducemyself/@gamer00/hi-i-m-jaro-and-this-is-my-introductory-verification-post#@gamer00/re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z" + }, + { + "active_votes": [], + "author": "lilmisjenn", + "author_reputation": 0, + "beneficiaries": [], + "body": "See there is a positive to everything! That does sound like quite the cold compromise though! You should post up some pictures of the cherries! I love cherry picking! Yumm!", + "body_length": 172, + "cashout_time": "2016-09-26T08:08:21", + "category": "food", + "children": 0, + "created": "2016-09-01T14:18:48", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-01T14:18:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160829t070902349z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z", + "post_id": 823649, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Do you have a drinking problem??", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "28864035808", + "voter": "noaommerrr" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-100075931", + "voter": "cheetah20" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-123906339", + "voter": "cheetah19" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-99152161", + "voter": "cheetah21" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-99151476", + "voter": "cheetah22" + } + ], + "author": "itay", + "author_reputation": 0, + "beneficiaries": [], + "body": "I upvoted You", + "body_length": 13, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 0, + "created": "2016-08-31T17:00:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-31T17:00:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 28441749901, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-witness-gtg", + "post_id": 814638, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/witness-gtg#@itay/re-witness-gtg" + }, + { + "active_votes": [], + "author": "melissarhiann", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hi and thanks! I've been attempting to figure out how to add a picture. I'll get it at some point :)", + "body_length": 100, + "cashout_time": "2016-09-26T08:42:15", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-31T02:16:54", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-31T02:16:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-melissarhiann-lasting-impression-20160826t083943073z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z", + "post_id": 808051, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Lasting Impression", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@melissarhiann/lasting-impression#@melissarhiann/re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z" + }, + { + "active_votes": [], + "author": "djm34", + "author_reputation": 0, + "beneficiaries": [], + "body": "actually I won't send, however I expect to receive... lol (as you can see wanting to know who is who is a totally legitimate question...)", + "body_length": 138, + "cashout_time": "2016-09-30T17:29:27", + "category": "steem", + "children": 1, + "created": "2016-08-30T17:06:09", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steem\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-30T17:07:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z", + "post_id": 802893, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[Bounty] Community bounty for open source GPU miner.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@djm34/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "10013306404", + "voter": "richman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13209570416", + "voter": "carlidos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53474677", + "voter": "riv" + } + ], + "author": "complexring", + "author_reputation": 0, + "beneficiaries": [], + "body": "I don't see where @djm34 said that he doesn't trust @picokernel. That is a rather harsh accusation when all this user has done is stated he doesn't believe they are gpu miners. I see nothing else in his comment beyond that.", + "body_length": 225, + "cashout_time": "2016-09-30T17:29:27", + "category": "steem", + "children": 3, + "created": "2016-08-30T16:40:03", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"steem\"],\"users\":[\"djm34\",\"picokernel\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-30T16:40:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 23276351497, + "parent_author": "gtg", + "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z", + "post_id": 802611, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[Bounty] Community bounty for open source GPU miner.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steem/@picokernel/bounty-community-bounty-for-open-source-gpu-miner#@complexring/re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z" + }, + { + "active_votes": [], + "author": "emsenn", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thanks! I'm really enjoying the site so far - beyond the technical aspects, the content here all seems pretty high-quality.", + "body_length": 123, + "cashout_time": "2016-09-29T22:31:27", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-29T22:45:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-29T22:45:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t213519226z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z", + "post_id": 794736, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Introducing Myself: Bitcoin Early Adopter, Content Producer & Designer", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@emsenn/introducing-myself-bitcoin-early-adopter-content-producer-and-designer#@emsenn/re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z" + }, + { + "active_votes": [], + "author": "lilmisjenn", + "author_reputation": 0, + "beneficiaries": [], + "body": "It took me a long time until I could say I have them from my own garden. That is why I am so appreciative and can make such a silly post over such simplicity! It is a skill I have also worked on mastering over the years. Thanks for your comment and for appreciating my fruit tree! I shall grow it for all that cannot and be extra grateful for its produce. What is your climate like? I also have restrictions on what I can grow around here due to climate. But its a small sacrifice for the serenity.", + "body_length": 498, + "cashout_time": "2016-09-26T08:08:21", + "category": "food", + "children": 2, + "created": "2016-08-28T11:46:00", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"food\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-28T11:46:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-lilmisjenn-do-you-have-a-drinking-problem-20160826t085857261z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z", + "post_id": 776630, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Do you have a drinking problem??", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/food/@lilmisjenn/do-you-have-a-drinking-problem#@lilmisjenn/re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z" + }, + { + "active_votes": [], + "author": "timcliff", + "author_reputation": 0, + "beneficiaries": [], + "body": "I've been mining since last Friday and haven't found a block yet, so there are no witness details for my account yet. I wanted to check the \"total_missed\" count, since it sounds like this post could be describing my issue. After talking to peeps on Steemit chat, it sounds like I need to change the keys I'm using. I'm currently using my 'owner private' key for both.", + "body_length": 367, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 1, + "created": "2016-08-27T15:51:15", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T15:51:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", + "post_id": 767624, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z" + }, + { + "active_votes": [], + "author": "timcliff", + "author_reputation": 0, + "beneficiaries": [], + "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", + "body_length": 74, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 3, + "created": "2016-08-27T14:13:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T14:13:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", + "post_id": 766749, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@timcliff/re-gtg-missing-rewards-while-mining-20160827t141319137z" + }, + { + "active_votes": [], + "author": "eternalmoon", + "author_reputation": 0, + "beneficiaries": [], + "body": "I wanted to, I just didn't know how. But someone did link me to a thing. Thanks for the advice!\nP.S. Cats are adorable! :D", + "body_length": 122, + "cashout_time": "2016-09-26T09:23:57", + "category": "aboutme", + "children": 1, + "created": "2016-08-27T04:15:48", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"aboutme\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T04:15:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-eternalmoon-this-is-my-about-me-entry-enjoy-20160826t094835368z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z", + "post_id": 763016, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "This is my about me entry (: Enjoy~", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/aboutme/@eternalmoon/this-is-my-about-me-entry-enjoy#@eternalmoon/re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z" + }, + { + "active_votes": [], + "author": "ania", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you Gandalf :)", + "body_length": 20, + "cashout_time": "2016-09-26T21:18:18", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-26T21:16:45", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T21:16:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-ania-hello-world-20160826t185305711z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-ania-hello-world-20160826t211629005z", + "post_id": 759894, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@ania/hello-world#@ania/re-gtg-re-ania-hello-world-20160826t211629005z" + }, + { + "active_votes": [], + "author": "orcish", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you :)", + "body_length": 12, + "cashout_time": "2016-09-27T01:07:09", + "category": "zee", + "children": 0, + "created": "2016-08-26T18:58:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"zee\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T18:58:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-orcish-my-introduction-20160826t080607987z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-orcish-my-introduction-20160826t185829224z", + "post_id": 758311, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "My Introduction", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/zee/@orcish/my-introduction#@orcish/re-gtg-re-orcish-my-introduction-20160826t185829224z" + }, + { + "active_votes": [], + "author": "bumblebrii", + "author_reputation": 0, + "beneficiaries": [], + "body": "Oh yes of course. I subscribe to a lot of different artists for my coloring pages. One had sent me the link to her blog and kind of just ended up sticking around and read a few blogs. Next thing i know, I signed up haha.", + "body_length": 220, + "cashout_time": "2016-09-26T08:05:57", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-26T18:20:12", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T18:20:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-bumblebrii-about-me-20160826t094306616z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-bumblebrii-about-me-20160826t182001959z", + "post_id": 757931, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "About me", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@bumblebrii/about-me#@bumblebrii/re-gtg-re-bumblebrii-about-me-20160826t182001959z" + }, + { + "active_votes": [], + "author": "mynomadicyear", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hi gtg, thanks for stopping by :)", + "body_length": 33, + "cashout_time": "2016-09-26T16:08:51", + "category": "travel", + "children": 0, + "created": "2016-08-26T13:29:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"travel\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T13:29:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-mynomadicyear-16-months-out-of-a-suitcase-20160826t090811525z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z", + "post_id": 754968, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "16 Months Out Of A Suitcase", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/travel/@mynomadicyear/16-months-out-of-a-suitcase#@mynomadicyear/re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z" + }, + { + "active_votes": [], + "author": "seasoul", + "author_reputation": 0, + "beneficiaries": [], + "body": "thankyou! :) hi there", + "body_length": 21, + "cashout_time": "2016-09-25T19:26:21", + "category": "introduceyourself", + "children": 0, + "created": "2016-08-26T11:37:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T11:37:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-seasoul-aboutme-20160826t095320794z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-seasoul-aboutme-20160826t113727450z", + "post_id": 754013, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Aboutme", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@seasoul/aboutme#@seasoul/re-gtg-re-seasoul-aboutme-20160826t113727450z" + }, + { + "active_votes": [], + "author": "mammasitta", + "author_reputation": 0, + "beneficiaries": [], + "body": "I think you would be a great witness . I appreciate your time helping me \ud83d\ude4c", + "body_length": 74, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 0, + "created": "2016-08-26T05:27:15", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-26T05:27:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-witness-gtg-20160826t052714859z", + "post_id": 751872, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/witness-gtg#@mammasitta/re-gtg-witness-gtg-20160826t052714859z" + }, + { + "active_votes": [], + "author": "gtg", + "author_reputation": 3920426655270, + "beneficiaries": [], + "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", + "body_length": 140, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 0, + "created": "2016-08-21T13:12:45", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https:\\/\\/steemit.chat\\/channel\\/mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-21T13:12:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", + "post_id": 693986, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@gtg/re-gtg-missing-rewards-while-mining-20160821t131242531z" + }, + { + "active_votes": [], + "author": "gary-smith", + "author_reputation": 0, + "beneficiaries": [], + "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", + "body_length": 105, + "cashout_time": "2016-09-21T13:01:45", + "category": "mining", + "children": 0, + "created": "2016-08-21T12:52:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"mining\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-21T12:52:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "missing-rewards-while-mining", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", + "post_id": 693858, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Missing rewards while mining - common mistake with keys", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/mining/@gtg/missing-rewards-while-mining#@gary-smith/re-gtg-missing-rewards-while-mining-20160821t125207685z" + }, + { + "active_votes": [], + "author": "abit", + "author_reputation": 0, + "beneficiaries": [], + "body": "The private seed nodes still need to connect to the rest of the network to be able to sync and broadcast new blocks. So from an attacker's pov perhaps it's cheaper/easier to attack the public seed nodes directly.", + "body_length": 212, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-18T03:32:12", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T03:32:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z", + "post_id": 650924, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@abit/re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z" + }, + { + "active_votes": [], + "author": "okay", + "author_reputation": 0, + "beneficiaries": [], + "body": "`gtg said: Please note that setting up all seed nodes in a single data center won\u2019t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway.`\n\nThat is unless the data center provides a variety of network routes from different providers and your seed nodes are therefore located on different wide area networks even when on the same LAN. This is possible on today's top of the line data centers.\nOf course decentralization is always good so several locations for seed nodes and witnesses is a plus. Good post. \nJust installed a witness node. Consider to [Vote for witness okay](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network)", + "body_length": 714, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T12:06:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https:\\/\\/steemit.com\\/witness-category\\/@okay\\/new-witness-okay-a-great-addition-to-the-steem-network\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T12:06:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z", + "post_id": 640215, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@okay/re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z" + }, + { + "active_votes": [], + "author": "mammasitta", + "author_reputation": 0, + "beneficiaries": [], + "body": "I just saw your article now and followed you . In this way I don't miss your new ones .", + "body_length": 87, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T07:03:33", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T07:03:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z", + "post_id": 637902, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@mammasitta/re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z" + }, + { + "active_votes": [], + "author": "dajohns1420", + "author_reputation": 0, + "beneficiaries": [], + "body": "I wish I was intelligent enough to participate in this conversation.", + "body_length": 68, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T04:00:42", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T04:00:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z", + "post_id": 636638, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dajohns1420/re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z" + }, + { + "active_votes": [], + "author": "dr2073", + "author_reputation": 0, + "beneficiaries": [], + "body": "Really good infrastructure top 19 sure can implement for better protection of their nodes. \nThough Steem network as whole have good protection against DDoS - even if most of 19 will go offline other witnesses will do their job, we just need more active and up-to-date witnesses. \nI personally too want become good witness and currently learning all nuances of secure operation of node.", + "body_length": 385, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-17T02:12:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T02:12:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z", + "post_id": 635741, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@dr2073/re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z" + }, + { + "active_votes": [ + { + "percent": "5000", + "reputation": 0, + "rshares": "3273182637316", + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1446333470877", + "voter": "steemychicken1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49042313956", + "voter": "full-steem-ahead" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9767505930", + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "848329794", + "voter": "johnerminer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39798145914", + "voter": "gtg" + } + ], + "author": "wackou", + "author_reputation": 0, + "beneficiaries": [], + "body": "great post! I completely agree with the analysis of the problem as well as the proposed solution. I actually wanted to implement something similar some time ago, during BitShares times, but then BitShares 2.0 happened and there were a lot more urgent things to do, so this got sidetracked. See [here](http://digitalgaia.io/backbone.html) for the same analysis, where those nodes were called \"backbone nodes\" as they were intended to be shared between witnesses. Witnesses were paid a lot less during that time so I intended to have this as a public service, although that would mean that witnesses had to trust the operator of the backbone. Having your own personal line of defense is obviously much better. I still believe that this is an extremely important issue that should be tackled as soon as possible, and was planning to reboot this proposal as soon as I got some free time (haha good one!). In all seriousness, I believe that this is not too much work, but there will be some features that need to be added to the network code of the steemd client, in order to limit the nodes the client can connect too, as well as ensuring that your backbone nodes do not share the IP of your witness node (was in bts 0.9.x, but not in 2.0 nor steem I believe). This can probably also be implemented with some sort of VPN I guess, but I'm a coder, not a sysadmin, so I can't tell for sure. I even thought (fantasized) about how to make these nodes replace themselves autonomously when attacked via DDoS using messages on the blockchain, in order to simulate a resilient, living organism. Now you see where part of the \"overmind\" idea came from, too :) That is a discussion for a bit later, though...", + "body_length": 1694, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T21:28:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"http:\\/\\/digitalgaia.io\\/backbone.html\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T21:28:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 4818972403787, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "6.136 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z", + "post_id": 632723, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@wackou/re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "19467531428", + "voter": "ausbitbank" + } + ], + "author": "jesta", + "author_reputation": 0, + "beneficiaries": [], + "body": "That's awesome :)\n\nI love seeing these kinds of advanced setups being theorized, tested and deployed!", + "body_length": 101, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T20:31:06", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T20:31:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 19467531428, + "parent_author": "gtg", + "parent_permlink": "re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t201857176z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z", + "post_id": 632008, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "43533730799", + "voter": "brandonp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52397603", + "voter": "doze49" + } + ], + "author": "brandonp", + "author_reputation": 0, + "beneficiaries": [], + "body": "Reading stuff like this makes me realize just how little I know about this whole thing...", + "body_length": 89, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T20:01:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T20:01:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 43586128402, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.024 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z", + "post_id": 631654, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@brandonp/re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z" + }, + { + "active_votes": [], + "author": "thecryptofiend", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thanks for explaining. You've got my witness vote now.", + "body_length": 55, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T19:31:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:31:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z", + "post_id": 631312, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thecryptofiend/re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "6327910390022", + "voter": "wackou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9559686655", + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "829049571", + "voter": "johnerminer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "38432804053", + "voter": "gtg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19873104999", + "voter": "ausbitbank" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44706057470", + "voter": "arcurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31463628969", + "voter": "mibenkito" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14083166401", + "voter": "someguy123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52918124", + "voter": "xomtux" + } + ], + "author": "jesta", + "author_reputation": 0, + "beneficiaries": [], + "body": "I love the idea in this, basically setting up a fortress for your witness node to be more resilient. \n\nOne thing you're right about though is it would be a somewhat expensive venture. At the rate I'm witnessing blocks (maybe 3-4 a day?), it's not feasible to sustain itself financially, but I imagine the top 19 could easily go this route. Maybe even some of the people in the top 30?\n\nI'd be more than willing to help prototype this type of infrastructure. I've been considering how difficult it would be to setup on AWS with a CloudFormation script that spins up seed nodes as ECS Containers, VPCs in every region that all interconnect via private networking, and an EC2 container for your witness node that's not accessible from the internet, but only the seed nodes. \n\nIt really shouldn't be all that hard, and even non-technical witnesses could copy/paste the cloudformation script to get started. Of course with this idea, if AWS is attacked, you're still the mercy of them being able to handle it.", + "body_length": 1005, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 2, + "created": "2016-08-16T19:11:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:11:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 6486910806264, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "9.966 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z", + "post_id": 631058, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@jesta/re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z" + }, + { + "active_votes": [], + "author": "thebluepanda", + "author_reputation": 0, + "beneficiaries": [], + "body": "i was checking if you tagged it in #witness-category ;) \nglad to see steemit has a great team of security devs and glad to have upvoted you as witness.", + "body_length": 151, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T19:08:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T19:08:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z", + "post_id": 631016, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@thebluepanda/re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z" + }, + { + "active_votes": [], + "author": "someguy123", + "author_reputation": 0, + "beneficiaries": [], + "body": "I can tell you're definitely a well-invested witness. You have my vote. \n\nThese details could help to improve the general quality of witnesses on the network", + "body_length": 157, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T18:52:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T18:52:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z", + "post_id": 630835, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@someguy123/re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z" + }, + { + "active_votes": [], + "author": "vishal1", + "author_reputation": 0, + "beneficiaries": [], + "body": "THis is something. @gtg", + "body_length": 23, + "cashout_time": "2016-09-16T20:13:00", + "category": "witness-category", + "children": 0, + "created": "2016-08-16T18:12:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"],\"users\":[\"gtg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T18:12:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "heavy-duty-witness-node-infrastructure", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z", + "post_id": 630198, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Heavy duty witness node infrastructure", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/heavy-duty-witness-node-infrastructure#@vishal1/re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "910501669843", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4179624293", + "voter": "dennygalindo" + } + ], + "author": "dennygalindo", + "author_reputation": 0, + "beneficiaries": [], + "body": "Gamification is what makes this so addictive to me. I get like 2c for finding a good post but it's fun to try to guess which will be good and time it. I can't put my phone down. My data is through the roof, I keep getting distracted and losing things. Curation rewards are key! I think it would help drive adoption if newbies had a better shot at curation rewards. I know they don't want a lot of bots here but maybe you could give newbies super votes ( only when at 100 percent) that lets them earn rewards at least once a day. (As @dantheman said [here](https://steemit.com/steem/@dantheman/curation-rewards-and-voting-incentive) the optimal minnow strategy is not to vote).", + "body_length": 677, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit-ideas", + "children": 0, + "created": "2016-08-15T14:15:42", + "curator_payout_value": "0.198 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit-ideas\"],\"users\":[\"dantheman\"],\"links\":[\"https:\\/\\/steemit.com\\/steem\\/@dantheman\\/curation-rewards-and-voting-incentive\"]}", + "last_payout": "2016-09-15T07:07:00", + "last_update": "2016-08-15T14:16:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 914681294136, + "parent_author": "gtg", + "parent_permlink": "re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t123329115z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z", + "post_id": 613314, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "DON'T REMOVE Curation Rewards! Just stop them when the post reach the trending page !!!", + "title": "", + "total_payout_value": "0.601 HBD", + "url": "/steemit-ideas/@liondani/don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page#@dennygalindo/re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "1374704925", + "voter": "earnest" + } + ], + "author": "iaco", + "author_reputation": 0, + "beneficiaries": [], + "body": "As the computer world beyond user interfaces is a magical realm to me, the only way I can get my brain to completely understand it is to just let go and tell my self it's all made of unicorns and runes being cast to make the magic happen :) I thank you for your work:)", + "body_length": 269, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 1, + "created": "2016-08-05T16:12:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-05T16:12:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1374704925, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-witness-gtg-20160805t161219379z", + "post_id": 465280, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/witness-category/@gtg/witness-gtg#@iaco/re-gtg-witness-gtg-20160805t161219379z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "769829319629", + "voter": "steemship" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9767505930", + "voter": "johnerfx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "848329794", + "voter": "johnerminer" + } + ], + "author": "cire81", + "author_reputation": 0, + "beneficiaries": [], + "body": "Thank you for spending your time to make steemit secure. Thanks to people like you we have a much safer environment. Were you paid for your effort on steem?", + "body_length": 156, + "cashout_time": "1969-12-31T23:59:59", + "category": "witness-category", + "children": 2, + "created": "2016-08-05T15:45:27", + "curator_payout_value": "0.216 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "last_payout": "2016-09-05T05:17:57", + "last_update": "2016-08-05T15:45:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 780445155353, + "parent_author": "gtg", + "parent_permlink": "witness-gtg", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-witness-gtg-20160805t154528701z", + "post_id": 464773, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Witness \"gtg\"", + "title": "", + "total_payout_value": "0.650 HBD", + "url": "/witness-category/@gtg/witness-gtg#@cire81/re-gtg-witness-gtg-20160805t154528701z" + }, + { + "active_votes": [], + "author": "mefisto", + "author_reputation": 0, + "beneficiaries": [], + "body": "Kryterium wyboru delegata to osobna sprawa. Co delegat powinien potrafi\u0107? Co robi\u0107? Czy powinien poniek\u0105d s\u0142u\u017cy\u0107 swoim wyborcom?\nJedno zdaje si\u0119 by\u0107 pewne - **powinien by\u0107 aktywnym cz\u0142onkiem spo\u0142eczno\u015bci steemit.** \nJestem przekonany, \u017ce jeste\u015bmy w stanie wybra\u0107 / wskaza\u0107 kilka os\u00f3b, kt\u00f3re mog\u0142yby zbiera\u0107 glosy polskiej spo\u0142eczno\u015bci. \n\nJe\u015bli si\u0119 nie myl\u0119, g\u0142os\u00f3w b\u0119dzie wi\u0119cej - je\u015bli system g\u0142osowania na dodatkowych kandydat\u00f3w b\u0119dzie prostszy dla przeci\u0119tnego po\u017ceracza blog\u00f3w... np. pojawi si\u0119 \u0142adny graficzny klient pod windoz\u0119.", + "body_length": 534, + "cashout_time": "1969-12-31T23:59:59", + "category": "polish", + "children": 0, + "created": "2016-08-03T12:56:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"polish\"]}", + "last_payout": "2016-09-03T03:24:06", + "last_update": "2016-08-03T12:58:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t123936611z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z", + "post_id": 427686, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[PL] Czy polska spo\u0142eczno\u015b\u0107 powinna mie\u0107 swojego delegata (witness) ?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/polish/@mefisto/pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness#@mefisto/re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z" + }, + { + "active_votes": [], + "author": "edu-lopov", + "author_reputation": 0, + "beneficiaries": [], + "body": "Welcome to Steemit Gandalf!", + "body_length": 27, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-04T18:22:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-04T18:22:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160704t182251522z", + "post_id": 38463, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@edu-lopov/re-gtg-hello-world-20160704t182251522z" + }, + { + "active_votes": [], + "author": "amartinezque", + "author_reputation": 0, + "beneficiaries": [], + "body": "Cats, humans , all we move for instinct and curiosity. Welcome! And your cat also!:P", + "body_length": 84, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-03T22:45:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T22:45:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160703t224527020z", + "post_id": 37179, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@amartinezque/re-gtg-hello-world-20160703t224527020z" + }, + { + "active_votes": [], + "author": "trogdor", + "author_reputation": 0, + "beneficiaries": [], + "body": "Nice, I understand the \"owned by a cat\" sentiment. haha", + "body_length": 55, + "cashout_time": "1969-12-31T23:59:59", + "category": "introduceyourself", + "children": 0, + "created": "2016-07-03T17:51:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "2016-08-13T21:04:45", + "last_update": "2016-07-03T17:51:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "gtg", + "parent_permlink": "hello-world", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gtg-hello-world-20160703t175141501z", + "post_id": 36953, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hello, World!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@gtg/hello-world#@trogdor/re-gtg-hello-world-20160703t175141501z" } -} +] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_no_results.orig.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_no_results.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_no_results.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_over_limit.orig.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_over_limit.orig.json new file mode 100644 index 00000000..6e08b595 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_over_limit.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (101 > 100)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/condenser_api_patterns/get_trending_tags_limit_250.orig.json b/hivemind/tavern/condenser_api_patterns/get_trending_tags_limit_250.orig.json new file mode 100644 index 00000000..454ea0a6 --- /dev/null +++ b/hivemind/tavern/condenser_api_patterns/get_trending_tags_limit_250.orig.json @@ -0,0 +1,1502 @@ +[ + { + "comments": 16, + "name": "dream", + "top_posts": 11, + "total_payouts": "31.135 HBD" + }, + { + "comments": 14, + "name": "governmentinsanity", + "top_posts": 1, + "total_payouts": "31.090 HBD" + }, + { + "comments": 27, + "name": "joke", + "top_posts": 14, + "total_payouts": "31.022 HBD" + }, + { + "comments": 7, + "name": "tech-analysis", + "top_posts": 2, + "total_payouts": "30.801 HBD" + }, + { + "comments": 1, + "name": "bannhammer", + "top_posts": 1, + "total_payouts": "30.782 HBD" + }, + { + "comments": 181, + "name": "wordnerd", + "top_posts": 20, + "total_payouts": "30.676 HBD" + }, + { + "comments": 6, + "name": "governmentintervention", + "top_posts": 1, + "total_payouts": "30.219 HBD" + }, + { + "comments": 7, + "name": "snapsteem", + "top_posts": 1, + "total_payouts": "30.173 HBD" + }, + { + "comments": 19, + "name": "hillary-clinton", + "top_posts": 3, + "total_payouts": "30.102 HBD" + }, + { + "comments": 18, + "name": "poems", + "top_posts": 14, + "total_payouts": "29.991 HBD" + }, + { + "comments": 22, + "name": "change", + "top_posts": 6, + "total_payouts": "29.978 HBD" + }, + { + "comments": 1, + "name": "neuroplasticity", + "top_posts": 1, + "total_payouts": "29.558 HBD" + }, + { + "comments": 9, + "name": "skyrim", + "top_posts": 17, + "total_payouts": "29.551 HBD" + }, + { + "comments": 5, + "name": "motiongraphics", + "top_posts": 1, + "total_payouts": "28.957 HBD" + }, + { + "comments": 1, + "name": "alchemy", + "top_posts": 3, + "total_payouts": "28.936 HBD" + }, + { + "comments": 14, + "name": "cryptography", + "top_posts": 4, + "total_payouts": "28.681 HBD" + }, + { + "comments": 5, + "name": "existence", + "top_posts": 2, + "total_payouts": "28.117 HBD" + }, + { + "comments": 11, + "name": "selfownership", + "top_posts": 2, + "total_payouts": "27.889 HBD" + }, + { + "comments": 3, + "name": "drummer", + "top_posts": 2, + "total_payouts": "27.401 HBD" + }, + { + "comments": 1, + "name": "summer", + "top_posts": 2, + "total_payouts": "27.347 HBD" + }, + { + "comments": 15, + "name": "latte", + "top_posts": 4, + "total_payouts": "27.165 HBD" + }, + { + "comments": 12, + "name": "demoscene", + "top_posts": 1, + "total_payouts": "26.426 HBD" + }, + { + "comments": 217, + "name": "spam", + "top_posts": 118, + "total_payouts": "26.349 HBD" + }, + { + "comments": 14, + "name": "keepit100", + "top_posts": 1, + "total_payouts": "26.337 HBD" + }, + { + "comments": 47, + "name": "journal", + "top_posts": 2, + "total_payouts": "26.227 HBD" + }, + { + "comments": 0, + "name": "drastic", + "top_posts": 1, + "total_payouts": "26.227 HBD" + }, + { + "comments": 20, + "name": "lsd", + "top_posts": 2, + "total_payouts": "26.127 HBD" + }, + { + "comments": 6, + "name": "anarchist", + "top_posts": 5, + "total_payouts": "25.921 HBD" + }, + { + "comments": 71, + "name": "promoted", + "top_posts": 4, + "total_payouts": "25.820 HBD" + }, + { + "comments": 13, + "name": "m", + "top_posts": 4, + "total_payouts": "25.814 HBD" + }, + { + "comments": 2, + "name": "tokyo", + "top_posts": 2, + "total_payouts": "25.805 HBD" + }, + { + "comments": 11, + "name": "dailydialogue", + "top_posts": 2, + "total_payouts": "25.548 HBD" + }, + { + "comments": 0, + "name": "cities", + "top_posts": 4, + "total_payouts": "25.346 HBD" + }, + { + "comments": 3, + "name": "render", + "top_posts": 3, + "total_payouts": "25.256 HBD" + }, + { + "comments": 4, + "name": "anachy", + "top_posts": 1, + "total_payouts": "25.002 HBD" + }, + { + "comments": 7, + "name": "issue", + "top_posts": 1, + "total_payouts": "24.771 HBD" + }, + { + "comments": 4, + "name": "jobs", + "top_posts": 3, + "total_payouts": "24.766 HBD" + }, + { + "comments": 80, + "name": "dash", + "top_posts": 22, + "total_payouts": "24.736 HBD" + }, + { + "comments": 22, + "name": "robotics", + "top_posts": 2, + "total_payouts": "24.705 HBD" + }, + { + "comments": 17, + "name": "consumerism", + "top_posts": 2, + "total_payouts": "24.657 HBD" + }, + { + "comments": 5, + "name": "storieslikethesereallymakeyouthinkaboutwhatgoesoninlifedonttheybecauseminordrinkingisbad", + "top_posts": 1, + "total_payouts": "24.320 HBD" + }, + { + "comments": 2, + "name": "ethics", + "top_posts": 6, + "total_payouts": "24.194 HBD" + }, + { + "comments": 11, + "name": "authority", + "top_posts": 2, + "total_payouts": "23.982 HBD" + }, + { + "comments": 12, + "name": "ico", + "top_posts": 12, + "total_payouts": "23.915 HBD" + }, + { + "comments": 11, + "name": "boinc", + "top_posts": 3, + "total_payouts": "23.878 HBD" + }, + { + "comments": 5, + "name": "fortgalt", + "top_posts": 1, + "total_payouts": "23.870 HBD" + }, + { + "comments": 21, + "name": "storychallenge", + "top_posts": 1, + "total_payouts": "23.763 HBD" + }, + { + "comments": 57, + "name": "parody", + "top_posts": 5, + "total_payouts": "23.619 HBD" + }, + { + "comments": 0, + "name": "ww3", + "top_posts": 3, + "total_payouts": "23.561 HBD" + }, + { + "comments": 4, + "name": "lawmaking", + "top_posts": 1, + "total_payouts": "23.427 HBD" + }, + { + "comments": 55, + "name": "death", + "top_posts": 17, + "total_payouts": "23.427 HBD" + }, + { + "comments": 16, + "name": "flagging", + "top_posts": 3, + "total_payouts": "23.359 HBD" + }, + { + "comments": 5, + "name": "principles", + "top_posts": 2, + "total_payouts": "23.267 HBD" + }, + { + "comments": 8, + "name": "self-improvement", + "top_posts": 3, + "total_payouts": "23.260 HBD" + }, + { + "comments": 0, + "name": "lights", + "top_posts": 1, + "total_payouts": "23.238 HBD" + }, + { + "comments": 4, + "name": "tornado", + "top_posts": 1, + "total_payouts": "23.185 HBD" + }, + { + "comments": 3, + "name": "analysis", + "top_posts": 5, + "total_payouts": "23.046 HBD" + }, + { + "comments": 7, + "name": "howtotalksteemit", + "top_posts": 1, + "total_payouts": "22.989 HBD" + }, + { + "comments": 9, + "name": "osc", + "top_posts": 2, + "total_payouts": "22.897 HBD" + }, + { + "comments": 13, + "name": "morning", + "top_posts": 5, + "total_payouts": "22.827 HBD" + }, + { + "comments": 2, + "name": "mixedmedia", + "top_posts": 1, + "total_payouts": "22.784 HBD" + }, + { + "comments": 2, + "name": "montreal", + "top_posts": 2, + "total_payouts": "22.714 HBD" + }, + { + "comments": 13, + "name": "aquarium", + "top_posts": 6, + "total_payouts": "22.412 HBD" + }, + { + "comments": 8, + "name": "puertorico", + "top_posts": 2, + "total_payouts": "22.364 HBD" + }, + { + "comments": 9, + "name": "minnow-report", + "top_posts": 1, + "total_payouts": "22.195 HBD" + }, + { + "comments": 4, + "name": "scince", + "top_posts": 1, + "total_payouts": "22.053 HBD" + }, + { + "comments": 3, + "name": "steemdle", + "top_posts": 1, + "total_payouts": "21.963 HBD" + }, + { + "comments": 11, + "name": "downtherabbithole", + "top_posts": 1, + "total_payouts": "21.787 HBD" + }, + { + "comments": 19, + "name": "dicordion", + "top_posts": 1, + "total_payouts": "21.783 HBD" + }, + { + "comments": 20, + "name": "feedback", + "top_posts": 1, + "total_payouts": "21.689 HBD" + }, + { + "comments": 16, + "name": "gratitude", + "top_posts": 3, + "total_payouts": "21.502 HBD" + }, + { + "comments": 1, + "name": "power-up", + "top_posts": 1, + "total_payouts": "21.251 HBD" + }, + { + "comments": 65, + "name": "steemgirls", + "top_posts": 27, + "total_payouts": "21.181 HBD" + }, + { + "comments": 2, + "name": "golf", + "top_posts": 3, + "total_payouts": "21.009 HBD" + }, + { + "comments": 81, + "name": "klyeart", + "top_posts": 4, + "total_payouts": "20.827 HBD" + }, + { + "comments": 1, + "name": "jewelscoin", + "top_posts": 2, + "total_payouts": "20.347 HBD" + }, + { + "comments": 5, + "name": "meow", + "top_posts": 1, + "total_payouts": "20.320 HBD" + }, + { + "comments": 20, + "name": "tickets", + "top_posts": 1, + "total_payouts": "20.303 HBD" + }, + { + "comments": 42, + "name": "voidart-argantuan", + "top_posts": 2, + "total_payouts": "20.032 HBD" + }, + { + "comments": 3, + "name": "scie", + "top_posts": 1, + "total_payouts": "20.026 HBD" + }, + { + "comments": 3, + "name": "television", + "top_posts": 2, + "total_payouts": "20.019 HBD" + }, + { + "comments": 27, + "name": "uber", + "top_posts": 13, + "total_payouts": "19.840 HBD" + }, + { + "comments": 29, + "name": "robotev", + "top_posts": 20, + "total_payouts": "19.812 HBD" + }, + { + "comments": 13, + "name": "gridcoin-weekly", + "top_posts": 3, + "total_payouts": "19.801 HBD" + }, + { + "comments": 9, + "name": "internet-story", + "top_posts": 1, + "total_payouts": "19.664 HBD" + }, + { + "comments": 7, + "name": "chinese", + "top_posts": 11, + "total_payouts": "19.459 HBD" + }, + { + "comments": 11, + "name": "cafe", + "top_posts": 1, + "total_payouts": "19.364 HBD" + }, + { + "comments": 47, + "name": "ai", + "top_posts": 14, + "total_payouts": "19.364 HBD" + }, + { + "comments": 15, + "name": "unheardvoices", + "top_posts": 1, + "total_payouts": "19.093 HBD" + }, + { + "comments": 52, + "name": "thegreencandle", + "top_posts": 5, + "total_payouts": "19.026 HBD" + }, + { + "comments": 73, + "name": "rant", + "top_posts": 10, + "total_payouts": "18.934 HBD" + }, + { + "comments": 13, + "name": "fascism", + "top_posts": 2, + "total_payouts": "18.915 HBD" + }, + { + "comments": 2, + "name": "time-travel", + "top_posts": 1, + "total_payouts": "18.782 HBD" + }, + { + "comments": 4, + "name": "debt", + "top_posts": 8, + "total_payouts": "18.655 HBD" + }, + { + "comments": 1, + "name": "sunrise", + "top_posts": 1, + "total_payouts": "18.580 HBD" + }, + { + "comments": 8, + "name": "ultra", + "top_posts": 1, + "total_payouts": "18.570 HBD" + }, + { + "comments": 16, + "name": "tile", + "top_posts": 1, + "total_payouts": "18.348 HBD" + }, + { + "comments": 20, + "name": "sochi", + "top_posts": 1, + "total_payouts": "18.289 HBD" + }, + { + "comments": 5, + "name": "falseflag", + "top_posts": 1, + "total_payouts": "18.237 HBD" + }, + { + "comments": 5, + "name": "state", + "top_posts": 2, + "total_payouts": "18.033 HBD" + }, + { + "comments": 1, + "name": "faeria", + "top_posts": 1, + "total_payouts": "17.886 HBD" + }, + { + "comments": 14, + "name": "university", + "top_posts": 2, + "total_payouts": "17.762 HBD" + }, + { + "comments": 50, + "name": "flatearth", + "top_posts": 10, + "total_payouts": "17.532 HBD" + }, + { + "comments": 21, + "name": "teaching", + "top_posts": 7, + "total_payouts": "17.502 HBD" + }, + { + "comments": 3, + "name": "encouragement", + "top_posts": 1, + "total_payouts": "17.194 HBD" + }, + { + "comments": 9, + "name": "mobypicture", + "top_posts": 1, + "total_payouts": "16.976 HBD" + }, + { + "comments": 14, + "name": "monsanto", + "top_posts": 3, + "total_payouts": "16.934 HBD" + }, + { + "comments": 15, + "name": "auto", + "top_posts": 2, + "total_payouts": "16.831 HBD" + }, + { + "comments": 27, + "name": "aviewaday", + "top_posts": 4, + "total_payouts": "16.653 HBD" + }, + { + "comments": 25, + "name": "brexit", + "top_posts": 6, + "total_payouts": "16.652 HBD" + }, + { + "comments": 16, + "name": "savings", + "top_posts": 5, + "total_payouts": "16.589 HBD" + }, + { + "comments": 48, + "name": "wordchallenge", + "top_posts": 4, + "total_payouts": "16.560 HBD" + }, + { + "comments": 29, + "name": "steemit-hunt", + "top_posts": 4, + "total_payouts": "16.528 HBD" + }, + { + "comments": 6, + "name": "affiliate", + "top_posts": 5, + "total_payouts": "16.514 HBD" + }, + { + "comments": 15, + "name": "challenge", + "top_posts": 5, + "total_payouts": "16.478 HBD" + }, + { + "comments": 12, + "name": "chiptune", + "top_posts": 3, + "total_payouts": "16.425 HBD" + }, + { + "comments": 14, + "name": "promotion", + "top_posts": 4, + "total_payouts": "16.401 HBD" + }, + { + "comments": 1, + "name": "freiheit", + "top_posts": 11, + "total_payouts": "16.364 HBD" + }, + { + "comments": 4, + "name": "steemitsignchallenge", + "top_posts": 1, + "total_payouts": "16.203 HBD" + }, + { + "comments": 11, + "name": "romance", + "top_posts": 5, + "total_payouts": "16.190 HBD" + }, + { + "comments": 27, + "name": "courage", + "top_posts": 1, + "total_payouts": "16.164 HBD" + }, + { + "comments": 4, + "name": "mytown", + "top_posts": 1, + "total_payouts": "16.162 HBD" + }, + { + "comments": 47, + "name": "ru-steem", + "top_posts": 6, + "total_payouts": "16.073 HBD" + }, + { + "comments": 51, + "name": "it-steem", + "top_posts": 7, + "total_payouts": "16.017 HBD" + }, + { + "comments": 21, + "name": "robots", + "top_posts": 7, + "total_payouts": "15.872 HBD" + }, + { + "comments": 83, + "name": "steemit-abuse", + "top_posts": 3, + "total_payouts": "15.806 HBD" + }, + { + "comments": 99, + "name": "magiceyechallenge", + "top_posts": 4, + "total_payouts": "15.798 HBD" + }, + { + "comments": 3, + "name": "ceremonies", + "top_posts": 3, + "total_payouts": "15.632 HBD" + }, + { + "comments": 1, + "name": "assetbasedcommunitydevelopment", + "top_posts": 1, + "total_payouts": "15.573 HBD" + }, + { + "comments": 2, + "name": "hiatus", + "top_posts": 1, + "total_payouts": "15.493 HBD" + }, + { + "comments": 29, + "name": "studying", + "top_posts": 1, + "total_payouts": "15.445 HBD" + }, + { + "comments": 6, + "name": "princess", + "top_posts": 2, + "total_payouts": "15.439 HBD" + }, + { + "comments": 10, + "name": "steemlife", + "top_posts": 8, + "total_payouts": "15.370 HBD" + }, + { + "comments": 2, + "name": "freetheareola", + "top_posts": 1, + "total_payouts": "15.186 HBD" + }, + { + "comments": 2, + "name": "wish", + "top_posts": 1, + "total_payouts": "15.136 HBD" + }, + { + "comments": 3, + "name": "minnowsunte", + "top_posts": 1, + "total_payouts": "15.048 HBD" + }, + { + "comments": 5, + "name": "beekeepering", + "top_posts": 1, + "total_payouts": "14.932 HBD" + }, + { + "comments": 30, + "name": "rip", + "top_posts": 3, + "total_payouts": "14.924 HBD" + }, + { + "comments": 4, + "name": "humblebundle", + "top_posts": 1, + "total_payouts": "14.906 HBD" + }, + { + "comments": 0, + "name": "socialismsucks", + "top_posts": 1, + "total_payouts": "14.759 HBD" + }, + { + "comments": 4, + "name": "fulltiltanarchy", + "top_posts": 1, + "total_payouts": "14.743 HBD" + }, + { + "comments": 17, + "name": "human", + "top_posts": 4, + "total_payouts": "14.734 HBD" + }, + { + "comments": 10, + "name": "american", + "top_posts": 6, + "total_payouts": "14.716 HBD" + }, + { + "comments": 22, + "name": "political", + "top_posts": 13, + "total_payouts": "14.682 HBD" + }, + { + "comments": 3, + "name": "steemit-howto", + "top_posts": 1, + "total_payouts": "14.469 HBD" + }, + { + "comments": 0, + "name": "pt", + "top_posts": 1, + "total_payouts": "14.341 HBD" + }, + { + "comments": 9, + "name": "multi-rotors", + "top_posts": 1, + "total_payouts": "14.212 HBD" + }, + { + "comments": 85, + "name": "finance", + "top_posts": 34, + "total_payouts": "14.155 HBD" + }, + { + "comments": 20, + "name": "begging", + "top_posts": 1, + "total_payouts": "14.073 HBD" + }, + { + "comments": 4, + "name": "forgottenhistory", + "top_posts": 1, + "total_payouts": "13.827 HBD" + }, + { + "comments": 6, + "name": "ransomware", + "top_posts": 2, + "total_payouts": "13.629 HBD" + }, + { + "comments": 5, + "name": "wrestling", + "top_posts": 3, + "total_payouts": "13.595 HBD" + }, + { + "comments": 21, + "name": "housedecor", + "top_posts": 1, + "total_payouts": "13.529 HBD" + }, + { + "comments": 4, + "name": "philsophy", + "top_posts": 1, + "total_payouts": "13.467 HBD" + }, + { + "comments": 18, + "name": "japan", + "top_posts": 11, + "total_payouts": "13.263 HBD" + }, + { + "comments": 10, + "name": "ja-blockchain", + "top_posts": 13, + "total_payouts": "13.172 HBD" + }, + { + "comments": 68, + "name": "dots", + "top_posts": 31, + "total_payouts": "13.150 HBD" + }, + { + "comments": 13, + "name": "dadbod", + "top_posts": 1, + "total_payouts": "12.936 HBD" + }, + { + "comments": 12, + "name": "swagsunday", + "top_posts": 1, + "total_payouts": "12.864 HBD" + }, + { + "comments": 4, + "name": "anarchocapitalism", + "top_posts": 3, + "total_payouts": "12.827 HBD" + }, + { + "comments": 20, + "name": "seasteading", + "top_posts": 2, + "total_payouts": "12.562 HBD" + }, + { + "comments": 7, + "name": "subconscious", + "top_posts": 1, + "total_payouts": "12.385 HBD" + }, + { + "comments": 9, + "name": "steemspot", + "top_posts": 1, + "total_payouts": "12.358 HBD" + }, + { + "comments": 63, + "name": "introduce", + "top_posts": 42, + "total_payouts": "12.345 HBD" + }, + { + "comments": 7, + "name": "pschology", + "top_posts": 1, + "total_payouts": "12.298 HBD" + }, + { + "comments": 13, + "name": "tribute", + "top_posts": 1, + "total_payouts": "12.289 HBD" + }, + { + "comments": 60, + "name": "outdoors", + "top_posts": 3, + "total_payouts": "12.246 HBD" + }, + { + "comments": 1, + "name": "americana", + "top_posts": 1, + "total_payouts": "12.241 HBD" + }, + { + "comments": 41, + "name": "promote", + "top_posts": 6, + "total_payouts": "12.125 HBD" + }, + { + "comments": 22, + "name": "blackjintrader", + "top_posts": 7, + "total_payouts": "12.109 HBD" + }, + { + "comments": 10, + "name": "star", + "top_posts": 4, + "total_payouts": "12.060 HBD" + }, + { + "comments": 15, + "name": "yinyang", + "top_posts": 3, + "total_payouts": "12.040 HBD" + }, + { + "comments": 13, + "name": "homesteading", + "top_posts": 5, + "total_payouts": "11.782 HBD" + }, + { + "comments": 29, + "name": "steemit-update", + "top_posts": 1, + "total_payouts": "11.777 HBD" + }, + { + "comments": 0, + "name": "cybernetics", + "top_posts": 1, + "total_payouts": "11.762 HBD" + }, + { + "comments": 30, + "name": "pokemon", + "top_posts": 43, + "total_payouts": "11.715 HBD" + }, + { + "comments": 18, + "name": "bioinformatics", + "top_posts": 1, + "total_payouts": "11.643 HBD" + }, + { + "comments": 3, + "name": "craigslist", + "top_posts": 1, + "total_payouts": "11.623 HBD" + }, + { + "comments": 70, + "name": "streemian", + "top_posts": 2, + "total_payouts": "11.553 HBD" + }, + { + "comments": 15, + "name": "france", + "top_posts": 13, + "total_payouts": "11.533 HBD" + }, + { + "comments": 108, + "name": "investment", + "top_posts": 43, + "total_payouts": "11.493 HBD" + }, + { + "comments": 15, + "name": "excercise", + "top_posts": 1, + "total_payouts": "11.420 HBD" + }, + { + "comments": 20, + "name": "wow", + "top_posts": 3, + "total_payouts": "11.305 HBD" + }, + { + "comments": 39, + "name": "christianity", + "top_posts": 13, + "total_payouts": "11.036 HBD" + }, + { + "comments": 6, + "name": "topless", + "top_posts": 1, + "total_payouts": "11.005 HBD" + }, + { + "comments": 0, + "name": "esport", + "top_posts": 1, + "total_payouts": "10.913 HBD" + }, + { + "comments": 4, + "name": "eth", + "top_posts": 5, + "total_payouts": "10.729 HBD" + }, + { + "comments": 5, + "name": "artificialintelligence", + "top_posts": 2, + "total_payouts": "10.619 HBD" + }, + { + "comments": 131, + "name": "usersummary", + "top_posts": 2, + "total_payouts": "10.533 HBD" + }, + { + "comments": 18, + "name": "handmade", + "top_posts": 5, + "total_payouts": "10.475 HBD" + }, + { + "comments": 12, + "name": "rape", + "top_posts": 4, + "total_payouts": "10.378 HBD" + }, + { + "comments": 31, + "name": "mystery", + "top_posts": 10, + "total_payouts": "10.277 HBD" + }, + { + "comments": 1, + "name": "bananapi", + "top_posts": 1, + "total_payouts": "10.246 HBD" + }, + { + "comments": 5, + "name": "steemit-new", + "top_posts": 1, + "total_payouts": "10.205 HBD" + }, + { + "comments": 19, + "name": "sunset", + "top_posts": 7, + "total_payouts": "10.013 HBD" + }, + { + "comments": 12, + "name": "buzadi", + "top_posts": 1, + "total_payouts": "9.927 HBD" + }, + { + "comments": 8, + "name": "cn-fishing", + "top_posts": 1, + "total_payouts": "9.825 HBD" + }, + { + "comments": 13, + "name": "diving", + "top_posts": 1, + "total_payouts": "9.782 HBD" + }, + { + "comments": 25, + "name": "russia", + "top_posts": 13, + "total_payouts": "9.542 HBD" + }, + { + "comments": 14, + "name": "changemakers", + "top_posts": 2, + "total_payouts": "9.534 HBD" + }, + { + "comments": 3, + "name": "handcraft", + "top_posts": 1, + "total_payouts": "9.415 HBD" + }, + { + "comments": 2, + "name": "conundrum", + "top_posts": 1, + "total_payouts": "9.376 HBD" + }, + { + "comments": 5, + "name": "motorcycle", + "top_posts": 2, + "total_payouts": "9.344 HBD" + }, + { + "comments": 9, + "name": "ghosts", + "top_posts": 3, + "total_payouts": "9.284 HBD" + }, + { + "comments": 4, + "name": "photographie", + "top_posts": 1, + "total_payouts": "9.256 HBD" + }, + { + "comments": 65, + "name": "facebook", + "top_posts": 36, + "total_payouts": "9.220 HBD" + }, + { + "comments": 0, + "name": "bittrex", + "top_posts": 3, + "total_payouts": "9.182 HBD" + }, + { + "comments": 0, + "name": "poor", + "top_posts": 1, + "total_payouts": "9.179 HBD" + }, + { + "comments": 0, + "name": "preciousmoments", + "top_posts": 1, + "total_payouts": "9.071 HBD" + }, + { + "comments": 7, + "name": "prostitution", + "top_posts": 1, + "total_payouts": "9.051 HBD" + }, + { + "comments": 19, + "name": "newyork", + "top_posts": 5, + "total_payouts": "9.041 HBD" + }, + { + "comments": 9, + "name": "opencv", + "top_posts": 1, + "total_payouts": "9.041 HBD" + }, + { + "comments": 3, + "name": "cave", + "top_posts": 1, + "total_payouts": "9.023 HBD" + }, + { + "comments": 64, + "name": "harassment", + "top_posts": 3, + "total_payouts": "8.954 HBD" + }, + { + "comments": 20, + "name": "norway", + "top_posts": 8, + "total_payouts": "8.947 HBD" + }, + { + "comments": 5, + "name": "climatechange", + "top_posts": 3, + "total_payouts": "8.902 HBD" + }, + { + "comments": 8, + "name": "insurance", + "top_posts": 3, + "total_payouts": "8.833 HBD" + }, + { + "comments": 50, + "name": "silverbugs", + "top_posts": 3, + "total_payouts": "8.730 HBD" + }, + { + "comments": 26, + "name": "humanity", + "top_posts": 11, + "total_payouts": "8.633 HBD" + }, + { + "comments": 1, + "name": "corruption", + "top_posts": 6, + "total_payouts": "8.499 HBD" + }, + { + "comments": 5, + "name": "electric-toothbrush", + "top_posts": 1, + "total_payouts": "8.483 HBD" + }, + { + "comments": 16, + "name": "puzzle", + "top_posts": 8, + "total_payouts": "8.413 HBD" + }, + { + "comments": 2, + "name": "nonfiction", + "top_posts": 1, + "total_payouts": "8.408 HBD" + }, + { + "comments": 10, + "name": "recommended", + "top_posts": 3, + "total_payouts": "8.407 HBD" + }, + { + "comments": 8, + "name": "jail", + "top_posts": 3, + "total_payouts": "8.362 HBD" + }, + { + "comments": 9, + "name": "bass", + "top_posts": 3, + "total_payouts": "8.289 HBD" + }, + { + "comments": 8, + "name": "activism", + "top_posts": 3, + "total_payouts": "8.175 HBD" + }, + { + "comments": 5, + "name": "coinsupply", + "top_posts": 1, + "total_payouts": "8.133 HBD" + }, + { + "comments": 34, + "name": "follow", + "top_posts": 7, + "total_payouts": "8.107 HBD" + }, + { + "comments": 26, + "name": "biohacking", + "top_posts": 10, + "total_payouts": "8.100 HBD" + }, + { + "comments": 20, + "name": "tips", + "top_posts": 17, + "total_payouts": "8.018 HBD" + }, + { + "comments": 1, + "name": "luck", + "top_posts": 2, + "total_payouts": "7.931 HBD" + }, + { + "comments": 3, + "name": "foodie", + "top_posts": 1, + "total_payouts": "7.901 HBD" + }, + { + "comments": 58, + "name": "memo", + "top_posts": 3, + "total_payouts": "7.861 HBD" + }, + { + "comments": 8, + "name": "lawenforcment", + "top_posts": 1, + "total_payouts": "7.853 HBD" + }, + { + "comments": 9, + "name": "introducingmyself", + "top_posts": 2, + "total_payouts": "7.809 HBD" + }, + { + "comments": 13, + "name": "wedding", + "top_posts": 9, + "total_payouts": "7.768 HBD" + }, + { + "comments": 6, + "name": "college101", + "top_posts": 3, + "total_payouts": "7.674 HBD" + }, + { + "comments": 7, + "name": "korean", + "top_posts": 5, + "total_payouts": "7.662 HBD" + }, + { + "comments": 20, + "name": "wallpapers", + "top_posts": 3, + "total_payouts": "7.617 HBD" + }, + { + "comments": 16, + "name": "popular", + "top_posts": 1, + "total_payouts": "7.561 HBD" + }, + { + "comments": 26, + "name": "wordpress", + "top_posts": 17, + "total_payouts": "7.524 HBD" + }, + { + "comments": 2, + "name": "fantasyfootball", + "top_posts": 1, + "total_payouts": "7.522 HBD" + }, + { + "comments": 5, + "name": "childhood", + "top_posts": 2, + "total_payouts": "7.497 HBD" + }, + { + "comments": 0, + "name": "plesk", + "top_posts": 1, + "total_payouts": "7.461 HBD" + }, + { + "comments": 7, + "name": "spirit", + "top_posts": 4, + "total_payouts": "7.448 HBD" + }, + { + "comments": 1, + "name": "vpn", + "top_posts": 3, + "total_payouts": "7.307 HBD" + }, + { + "comments": 46, + "name": "vegetable-artcarving", + "top_posts": 5, + "total_payouts": "7.244 HBD" + }, + { + "comments": 0, + "name": "imagej", + "top_posts": 1, + "total_payouts": "7.179 HBD" + }, + { + "comments": 0, + "name": "eurozone", + "top_posts": 1, + "total_payouts": "7.094 HBD" + } +] diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index aac89e04..51cb2151 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -433,7 +433,7 @@ test_name: Hivemind condenser_api.get_content patterns test marks: - - patterntest + - patterntest # fat node was giving more data includes: - !include common.yaml @@ -461,7 +461,7 @@ test_name: Hivemind condenser_api.get_content gtg patterns test marks: - - patterntest + - patterntest # fat node was giving more data includes: - !include common.yaml @@ -518,7 +518,7 @@ test_name: Hivemind condenser_api.get_content_replies patterns test marks: - - patterntest + - patterntest # fat node was giving more data includes: - !include common.yaml @@ -607,7 +607,7 @@ test_name: Hivemind condenser_api.get_trending_tags limit 250 patterns test marks: - - patterntest + - patterntest # there is random order in some elements of original answer includes: - !include common.yaml @@ -1455,8 +1455,8 @@ marks: - patterntest - - xfail # test should return all steemit account posts, issue: https://gitlab.syncad.com/hive/hivemind/-/issues/53 - failing + - xfail # test should return all steemit account posts, issue: https://gitlab.syncad.com/hive/hivemind/-/issues/53 includes: - !include common.yaml @@ -1658,7 +1658,7 @@ test_name: Hivemind condenser_api.get_account_reputations patterns test marks: - - patterntest # to be changed for account that has some reputation + - patterntest # fat node gives different answer (not only nonzero reputation but also json is generally different) includes: - !include common.yaml -- GitLab From 610fdb9bde6ed858cc1ca1d615894fa6eb80744b Mon Sep 17 00:00:00 2001 From: ABW Date: Tue, 25 Aug 2020 17:48:10 +0200 Subject: [PATCH 41/49] [ABW]: added .orig and .pat files for negative database_api tests --- ...omments_day_out_of_range_start_1.orig.json | 24 ++++++++++++++ ...comments_day_out_of_range_start_1.pat.json | 24 ++++++++++++++ ...omments_day_out_of_range_start_2.orig.json | 33 +++++++++++++++++++ ...comments_day_out_of_range_start_2.pat.json | 33 +++++++++++++++++++ .../list_comments_future_date.orig.json | 33 +++++++++++++++++++ .../list_comments_future_date.pat.json | 33 +++++++++++++++++++ .../list_comments_not_found.orig.json | 25 ++++++++++++++ .../list_comments_not_found.pat.json | 25 ++++++++++++++ ...st_comments_not_found_by_account.orig.json | 25 ++++++++++++++ ...ist_comments_not_found_by_account.pat.json | 25 ++++++++++++++ ...t_comments_not_found_by_permlink.orig.json | 25 ++++++++++++++ ...st_comments_not_found_by_permlink.pat.json | 25 ++++++++++++++ ...st_comments_not_found_giv_winner.orig.json | 25 ++++++++++++++ ...ist_comments_not_found_giv_winner.pat.json | 25 ++++++++++++++ ...mments_not_found_givemeyoursteem.orig.json | 25 ++++++++++++++ ...omments_not_found_givemeyoursteem.pat.json | 25 ++++++++++++++ ...ments_not_found_givemeyoursteem2.orig.json | 25 ++++++++++++++ ...mments_not_found_givemeyoursteem2.pat.json | 25 ++++++++++++++ ...t_found_givemeyoursteem_permlink.orig.json | 25 ++++++++++++++ ...ot_found_givemeyoursteem_permlink.pat.json | 25 ++++++++++++++ ...ts_not_found_vi1son_randomvalues.orig.json | 25 ++++++++++++++ ...nts_not_found_vi1son_randomvalues.pat.json | 25 ++++++++++++++ .../list_comments_only_root_author.orig.json | 25 ++++++++++++++ .../list_comments_only_root_author.pat.json | 25 ++++++++++++++ .../list_comments_wrong_date.orig.json | 24 ++++++++++++++ .../list_comments_wrong_date.pat.json | 24 ++++++++++++++ hivemind/tavern/validate_response.py | 14 ++++---- 27 files changed, 686 insertions(+), 6 deletions(-) create mode 100644 hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_1.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_1.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_2.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_2.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_future_date.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_future_date.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found_by_account.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found_by_account.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found_by_permlink.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found_by_permlink.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found_giv_winner.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found_giv_winner.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem2.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem2.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem_permlink.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem_permlink.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found_vi1son_randomvalues.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_not_found_vi1son_randomvalues.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_only_root_author.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_only_root_author.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_wrong_date.orig.json create mode 100644 hivemind/tavern/database_api_patterns/list_comments_wrong_date.pat.json diff --git a/hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_1.orig.json b/hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_1.orig.json new file mode 100644 index 00000000..58a7e679 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_1.orig.json @@ -0,0 +1,24 @@ +{ + "code": -32000, + "data": { + "code": 13, + "message": "basic_string::at: __n (which is 0) >= this->size() (which is 0)", + "name": "St12out_of_range", + "stack": [ + { + "context": { + "file": "time.cpp", + "hostname": "", + "level": "warn", + "line": 48, + "method": "from_iso_string" + }, + "data": { + "what": "basic_string::at: __n (which is 0) >= this->size() (which is 0)" + }, + "format": "${what}: unable to convert ISO-formatted string to fc::time_point_sec" + } + ] + }, + "message": "basic_string::at: __n (which is 0) >= this->size() (which is 0):basic_string::at: __n (which is 0) >= this->size() (which is 0): unable to convert ISO-formatted string to fc::time_point_sec" +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_1.pat.json b/hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_1.pat.json new file mode 100644 index 00000000..58a7e679 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_1.pat.json @@ -0,0 +1,24 @@ +{ + "code": -32000, + "data": { + "code": 13, + "message": "basic_string::at: __n (which is 0) >= this->size() (which is 0)", + "name": "St12out_of_range", + "stack": [ + { + "context": { + "file": "time.cpp", + "hostname": "", + "level": "warn", + "line": 48, + "method": "from_iso_string" + }, + "data": { + "what": "basic_string::at: __n (which is 0) >= this->size() (which is 0)" + }, + "format": "${what}: unable to convert ISO-formatted string to fc::time_point_sec" + } + ] + }, + "message": "basic_string::at: __n (which is 0) >= this->size() (which is 0):basic_string::at: __n (which is 0) >= this->size() (which is 0): unable to convert ISO-formatted string to fc::time_point_sec" +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_2.orig.json b/hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_2.orig.json new file mode 100644 index 00000000..af46e889 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_2.orig.json @@ -0,0 +1,33 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "time.cpp", + "hostname": "", + "level": "error", + "line": 45, + "method": "from_iso_string" + }, + "data": {}, + "format": "(pt - epoch).total_seconds() <= INT32_MAX: Datetime overflow" + }, + { + "context": { + "file": "time.cpp", + "hostname": "", + "level": "warn", + "line": 48, + "method": "from_iso_string" + }, + "data": {}, + "format": "unable to convert ISO-formatted string to fc::time_point_sec" + } + ] + }, + "message": "Assert Exception:(pt - epoch).total_seconds() <= INT32_MAX: Datetime overflowunable to convert ISO-formatted string to fc::time_point_sec" +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_2.pat.json b/hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_2.pat.json new file mode 100644 index 00000000..af46e889 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_day_out_of_range_start_2.pat.json @@ -0,0 +1,33 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "time.cpp", + "hostname": "", + "level": "error", + "line": 45, + "method": "from_iso_string" + }, + "data": {}, + "format": "(pt - epoch).total_seconds() <= INT32_MAX: Datetime overflow" + }, + { + "context": { + "file": "time.cpp", + "hostname": "", + "level": "warn", + "line": 48, + "method": "from_iso_string" + }, + "data": {}, + "format": "unable to convert ISO-formatted string to fc::time_point_sec" + } + ] + }, + "message": "Assert Exception:(pt - epoch).total_seconds() <= INT32_MAX: Datetime overflowunable to convert ISO-formatted string to fc::time_point_sec" +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_future_date.orig.json b/hivemind/tavern/database_api_patterns/list_comments_future_date.orig.json new file mode 100644 index 00000000..af46e889 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_future_date.orig.json @@ -0,0 +1,33 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "time.cpp", + "hostname": "", + "level": "error", + "line": 45, + "method": "from_iso_string" + }, + "data": {}, + "format": "(pt - epoch).total_seconds() <= INT32_MAX: Datetime overflow" + }, + { + "context": { + "file": "time.cpp", + "hostname": "", + "level": "warn", + "line": 48, + "method": "from_iso_string" + }, + "data": {}, + "format": "unable to convert ISO-formatted string to fc::time_point_sec" + } + ] + }, + "message": "Assert Exception:(pt - epoch).total_seconds() <= INT32_MAX: Datetime overflowunable to convert ISO-formatted string to fc::time_point_sec" +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_future_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_future_date.pat.json new file mode 100644 index 00000000..af46e889 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_future_date.pat.json @@ -0,0 +1,33 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "time.cpp", + "hostname": "", + "level": "error", + "line": 45, + "method": "from_iso_string" + }, + "data": {}, + "format": "(pt - epoch).total_seconds() <= INT32_MAX: Datetime overflow" + }, + { + "context": { + "file": "time.cpp", + "hostname": "", + "level": "warn", + "line": 48, + "method": "from_iso_string" + }, + "data": {}, + "format": "unable to convert ISO-formatted string to fc::time_point_sec" + } + ] + }, + "message": "Assert Exception:(pt - epoch).total_seconds() <= INT32_MAX: Datetime overflowunable to convert ISO-formatted string to fc::time_point_sec" +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found.orig.json b/hivemind/tavern/database_api_patterns/list_comments_not_found.orig.json new file mode 100644 index 00000000..e260a8d7 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found.orig.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1061, + "method": "list_comments" + }, + "data": { + "a": "vi1son", + "p": "" + }, + "format": "child != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:child != nullptr: Could not find comment vi1son/." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found.pat.json b/hivemind/tavern/database_api_patterns/list_comments_not_found.pat.json new file mode 100644 index 00000000..e260a8d7 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found.pat.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1061, + "method": "list_comments" + }, + "data": { + "a": "vi1son", + "p": "" + }, + "format": "child != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:child != nullptr: Could not find comment vi1son/." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found_by_account.orig.json b/hivemind/tavern/database_api_patterns/list_comments_not_found_by_account.orig.json new file mode 100644 index 00000000..9eafe368 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found_by_account.orig.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1015, + "method": "list_comments" + }, + "data": { + "a": "etcmike", + "p": "" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment etcmike/." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found_by_account.pat.json b/hivemind/tavern/database_api_patterns/list_comments_not_found_by_account.pat.json new file mode 100644 index 00000000..9eafe368 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found_by_account.pat.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1015, + "method": "list_comments" + }, + "data": { + "a": "etcmike", + "p": "" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment etcmike/." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found_by_permlink.orig.json b/hivemind/tavern/database_api_patterns/list_comments_not_found_by_permlink.orig.json new file mode 100644 index 00000000..bd04ca30 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found_by_permlink.orig.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1015, + "method": "list_comments" + }, + "data": { + "a": "", + "p": "re-bullionstackers-screen-it-tab-it-what-are-they-20160829t061254603z" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment /re-bullionstackers-screen-it-tab-it-what-are-they-20160829t061254603z." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found_by_permlink.pat.json b/hivemind/tavern/database_api_patterns/list_comments_not_found_by_permlink.pat.json new file mode 100644 index 00000000..bd04ca30 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found_by_permlink.pat.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1015, + "method": "list_comments" + }, + "data": { + "a": "", + "p": "re-bullionstackers-screen-it-tab-it-what-are-they-20160829t061254603z" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment /re-bullionstackers-screen-it-tab-it-what-are-they-20160829t061254603z." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found_giv_winner.orig.json b/hivemind/tavern/database_api_patterns/list_comments_not_found_giv_winner.orig.json new file mode 100644 index 00000000..c1c6993f --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found_giv_winner.orig.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1050, + "method": "list_comments" + }, + "data": { + "a": "giv", + "p": "winner" + }, + "format": "root != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:root != nullptr: Could not find comment giv/winner." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found_giv_winner.pat.json b/hivemind/tavern/database_api_patterns/list_comments_not_found_giv_winner.pat.json new file mode 100644 index 00000000..c1c6993f --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found_giv_winner.pat.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1050, + "method": "list_comments" + }, + "data": { + "a": "giv", + "p": "winner" + }, + "format": "root != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:root != nullptr: Could not find comment giv/winner." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem.orig.json b/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem.orig.json new file mode 100644 index 00000000..32645ddf --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem.orig.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1085, + "method": "list_comments" + }, + "data": { + "a": "givemeyoursteem", + "p": "" + }, + "format": "child != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:child != nullptr: Could not find comment givemeyoursteem/." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem.pat.json b/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem.pat.json new file mode 100644 index 00000000..32645ddf --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem.pat.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1085, + "method": "list_comments" + }, + "data": { + "a": "givemeyoursteem", + "p": "" + }, + "format": "child != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:child != nullptr: Could not find comment givemeyoursteem/." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem2.orig.json b/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem2.orig.json new file mode 100644 index 00000000..27f42794 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem2.orig.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1134, + "method": "list_comments" + }, + "data": { + "a": "givemeyoursteem", + "p": "" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment givemeyoursteem/." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem2.pat.json b/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem2.pat.json new file mode 100644 index 00000000..27f42794 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem2.pat.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1134, + "method": "list_comments" + }, + "data": { + "a": "givemeyoursteem", + "p": "" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment givemeyoursteem/." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem_permlink.orig.json b/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem_permlink.orig.json new file mode 100644 index 00000000..9c07bc4e --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem_permlink.orig.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1134, + "method": "list_comments" + }, + "data": { + "a": "givemeyoursteem", + "p": "winners-of-steemit-food-challenge-3" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment givemeyoursteem/winners-of-steemit-food-challenge-3." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem_permlink.pat.json b/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem_permlink.pat.json new file mode 100644 index 00000000..9c07bc4e --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found_givemeyoursteem_permlink.pat.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1134, + "method": "list_comments" + }, + "data": { + "a": "givemeyoursteem", + "p": "winners-of-steemit-food-challenge-3" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment givemeyoursteem/winners-of-steemit-food-challenge-3." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found_vi1son_randomvalues.orig.json b/hivemind/tavern/database_api_patterns/list_comments_not_found_vi1son_randomvalues.orig.json new file mode 100644 index 00000000..c8ffd9fd --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found_vi1son_randomvalues.orig.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1061, + "method": "list_comments" + }, + "data": { + "a": "vi1son", + "p": "randomvalues" + }, + "format": "child != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:child != nullptr: Could not find comment vi1son/randomvalues." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_not_found_vi1son_randomvalues.pat.json b/hivemind/tavern/database_api_patterns/list_comments_not_found_vi1son_randomvalues.pat.json new file mode 100644 index 00000000..c8ffd9fd --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_not_found_vi1son_randomvalues.pat.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1061, + "method": "list_comments" + }, + "data": { + "a": "vi1son", + "p": "randomvalues" + }, + "format": "child != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:child != nullptr: Could not find comment vi1son/randomvalues." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_only_root_author.orig.json b/hivemind/tavern/database_api_patterns/list_comments_only_root_author.orig.json new file mode 100644 index 00000000..be335980 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_only_root_author.orig.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1050, + "method": "list_comments" + }, + "data": { + "a": "vi1son", + "p": "" + }, + "format": "root != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:root != nullptr: Could not find comment vi1son/." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_only_root_author.pat.json b/hivemind/tavern/database_api_patterns/list_comments_only_root_author.pat.json new file mode 100644 index 00000000..be335980 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_only_root_author.pat.json @@ -0,0 +1,25 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1050, + "method": "list_comments" + }, + "data": { + "a": "vi1son", + "p": "" + }, + "format": "root != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:root != nullptr: Could not find comment vi1son/." +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_wrong_date.orig.json b/hivemind/tavern/database_api_patterns/list_comments_wrong_date.orig.json new file mode 100644 index 00000000..58a7e679 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_wrong_date.orig.json @@ -0,0 +1,24 @@ +{ + "code": -32000, + "data": { + "code": 13, + "message": "basic_string::at: __n (which is 0) >= this->size() (which is 0)", + "name": "St12out_of_range", + "stack": [ + { + "context": { + "file": "time.cpp", + "hostname": "", + "level": "warn", + "line": 48, + "method": "from_iso_string" + }, + "data": { + "what": "basic_string::at: __n (which is 0) >= this->size() (which is 0)" + }, + "format": "${what}: unable to convert ISO-formatted string to fc::time_point_sec" + } + ] + }, + "message": "basic_string::at: __n (which is 0) >= this->size() (which is 0):basic_string::at: __n (which is 0) >= this->size() (which is 0): unable to convert ISO-formatted string to fc::time_point_sec" +} diff --git a/hivemind/tavern/database_api_patterns/list_comments_wrong_date.pat.json b/hivemind/tavern/database_api_patterns/list_comments_wrong_date.pat.json new file mode 100644 index 00000000..58a7e679 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_comments_wrong_date.pat.json @@ -0,0 +1,24 @@ +{ + "code": -32000, + "data": { + "code": 13, + "message": "basic_string::at: __n (which is 0) >= this->size() (which is 0)", + "name": "St12out_of_range", + "stack": [ + { + "context": { + "file": "time.cpp", + "hostname": "", + "level": "warn", + "line": 48, + "method": "from_iso_string" + }, + "data": { + "what": "basic_string::at: __n (which is 0) >= this->size() (which is 0)" + }, + "format": "${what}: unable to convert ISO-formatted string to fc::time_point_sec" + } + ] + }, + "message": "basic_string::at: __n (which is 0) >= this->size() (which is 0):basic_string::at: __n (which is 0) >= this->size() (which is 0): unable to convert ISO-formatted string to fc::time_point_sec" +} diff --git a/hivemind/tavern/validate_response.py b/hivemind/tavern/validate_response.py index bf05f9ec..3b8980cd 100644 --- a/hivemind/tavern/validate_response.py +++ b/hivemind/tavern/validate_response.py @@ -5,13 +5,13 @@ def json_pretty_string(json_obj): from json import dumps return dumps(json_obj, sort_keys=True, indent=2) -def save_response(file_name, response_json): +def save_json(file_name, response_json): """ Save response to file """ with open(file_name, 'w') as f: f.write(json_pretty_string(response_json)) f.write("\n") -def save_no_response(file_name, msg): +def save_raw(file_name, msg): """ Save lack of response to file """ with open(file_name, 'w') as f: f.write(msg) @@ -51,11 +51,11 @@ def compare_response_with_pattern(response, method=None, directory=None, ignore_ if error is not None and not error_response: msg = "Error detected in response: {}".format(error["message"]) - save_no_response(response_fname, msg) + save_raw(response_fname, msg) raise PatternDiffException(msg) if result is None: msg = "Error detected in response: result is null, json object was expected" - save_no_response(response_fname, msg) + save_raw(response_fname, msg) raise PatternDiffException(msg) import deepdiff @@ -64,7 +64,7 @@ def compare_response_with_pattern(response, method=None, directory=None, ignore_ pattern = remove_tag(pattern, ignore_tags) pattern_resp_diff = deepdiff.DeepDiff(pattern, result) if pattern_resp_diff: - save_response(response_fname, result) + save_json(response_fname, result) msg = "Differences detected between response and pattern." raise PatternDiffException(msg) @@ -72,4 +72,6 @@ def null_result(response): response_json = response.json() result = response_json.get("result", None) if result: - raise PatternDiffException('result is: "' + result + ' but should be null') \ No newline at end of file + msg = "Error detected in response: result is {} but should be null".format(result) + save_json(result) + raise PatternDiffException(msg) \ No newline at end of file -- GitLab From 41a076c7907d6735d5b7c02414e63b0c6ca5edb5 Mon Sep 17 00:00:00 2001 From: ABW Date: Tue, 25 Aug 2020 20:53:25 +0200 Subject: [PATCH 42/49] [ABW]: added .orig and .pat for calls that result in no result (we need to add some message) fixed key order in two bridge_api tests null_result no longer used (we always need either empty results or error message where applicable) added comments to new bridge_api tests, properly marked which pass and which fail (and why) accepted differences in new test patterns: rebranding, reputation, pending payouts, future payout_at, post_id --- .../get_account_posts_sort_blog.pat.json | 2 +- .../get_account_posts_sort_replies.pat.json | 80 +- .../get_discussion_gtg.pat.json | 50 +- ...discussion_not_existing_permlink.orig.json | 1 + ..._discussion_not_existing_permlink.pat.json | 1 + .../bridge_api_patterns/get_post_gtg.pat.json | 12 +- ...ost_header_not_existing_permlink.orig.json | 1 + ...post_header_not_existing_permlink.pat.json | 1 + .../get_profile_gtg.orig.json | 30 +- .../get_profile_gtg.pat.json | 30 +- ...get_profile_not_existing_account.orig.json | 1 + .../get_profile_not_existing_account.pat.json | 1 + .../get_ranked_posts_created.pat.json | 132 +- .../get_ranked_posts_hot.orig.json | 11332 +++++++-------- .../get_ranked_posts_hot.pat.json | 11414 ++++++++-------- .../get_ranked_posts_payout_comments.pat.json | 150 +- .../get_ranked_posts_promoted.pat.json | 12 +- .../get_ranked_posts_tag_petrodollar.pat.json | 22 +- .../test_bridge_api_patterns.tavern.yaml | 120 +- hivemind/tavern/validate_response.py | 7 - 20 files changed, 11716 insertions(+), 11683 deletions(-) create mode 100644 hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_post_header_not_existing_permlink.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_post_header_not_existing_permlink.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_profile_not_existing_account.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_profile_not_existing_account.pat.json diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.pat.json b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.pat.json index 6c667880..4dcb760d 100644 --- a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.pat.json @@ -424,7 +424,7 @@ "payout": 1.698, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "firstpost", "post_id": 1, "promoted": "0.000 HBD", diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_replies.pat.json b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_replies.pat.json index a768bae2..1e97cbcc 100644 --- a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_replies.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_replies.pat.json @@ -25,9 +25,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160824t093007335z", - "post_id": 729186, + "post_id": 964406, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -83,9 +83,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160824t025355199z", - "post_id": 726644, + "post_id": 961146, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -129,9 +129,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160818t030224104z", - "post_id": 650694, + "post_id": 864413, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -198,9 +198,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160813t143213453z", - "post_id": 585908, + "post_id": 782948, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -259,9 +259,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160811t225325571z", - "post_id": 563725, + "post_id": 754693, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -309,9 +309,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160810t083336206z", - "post_id": 537479, + "post_id": 721016, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -359,9 +359,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160807t215340468z", - "post_id": 498164, + "post_id": 670574, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -403,9 +403,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160804t061605576z", - "post_id": 440665, + "post_id": 596138, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -453,9 +453,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160801t232001768z", - "post_id": 401002, + "post_id": 547508, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -503,9 +503,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160801t184846033z", - "post_id": 395733, + "post_id": 540797, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -549,9 +549,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160726t035722561z", - "post_id": 264599, + "post_id": 366098, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -590,9 +590,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160726t035056026z", - "post_id": 264501, + "post_id": 365968, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -644,9 +644,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160725t221949749z", - "post_id": 259905, + "post_id": 359333, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -685,9 +685,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160723t130259286z", - "post_id": 214663, + "post_id": 296193, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -739,9 +739,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160722t225246211z", - "post_id": 206329, + "post_id": 284527, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -793,9 +793,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160722t201007967z", - "post_id": 203716, + "post_id": 280969, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -839,9 +839,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160721t233702742z", - "post_id": 189812, + "post_id": 261571, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -893,9 +893,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160721t223937736z", - "post_id": 189029, + "post_id": 260426, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -950,9 +950,9 @@ "payout": 0.0, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160720t210201326z", - "post_id": 166558, + "post_id": 229482, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1013,9 +1013,9 @@ "payout": 0.039, "payout_at": "2016-08-24T19:59:42", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemit-firstpost-20160720t121101482z", - "post_id": 157998, + "post_id": 217597, "promoted": "0.000 HBD", "replies": [], "stats": { diff --git a/hivemind/tavern/bridge_api_patterns/get_discussion_gtg.pat.json b/hivemind/tavern/bridge_api_patterns/get_discussion_gtg.pat.json index 51bb3756..325c136f 100644 --- a/hivemind/tavern/bridge_api_patterns/get_discussion_gtg.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_discussion_gtg.pat.json @@ -23,11 +23,11 @@ "parent_author": "gtg", "parent_permlink": "missing-rewards-while-mining", "payout": 0.0, - "payout_at": "2016-09-21T13:01:45", + "payout_at": "2016-08-28T12:52:06", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", - "post_id": 693858, + "post_id": 919497, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -149,7 +149,7 @@ ], "author": "gtg", "author_payout_value": "0.000 HBD", - "author_reputation": 57.34, + "author_reputation": 25.0, "beneficiaries": [], "blacklists": [], "body": "Suppose your miner node found `pow2`, but your `total_missed` count increased, instead of generating a block.\n\nIf this happens, double check your keys used in the `config.ini` file.\n\n```\nwitness = \"minerwitness\"\n\nminer = [\"minerwitness\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner1\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner2\",\"WIF_ACTIVE_PRIVATE_KEY\"]\nminer = [\"miner3\",\"WIF_ACTIVE_PRIVATE_KEY\"]\n\nmining-threads = 4\n\nprivate-key = WIF_SIGNING_PRIVATE_KEY\n```\n\nUsing keys without paying attention to their roles is a common mistake. @artakan [found out](https://steemit.com/mining/@artakan/important-info-for-steem-miner-do-not-use-your-steemit-com-account \"@artakan - Do not use your steemit.com account for mining\")\nthat issues with missing blocks tend to happen when you are using an account that was created through [steemit.com](https://steemit.com/ \"Blogging is the new mining\") but seems to work for the mined account.\n\nSo erroneous configuration might work for your mined account by pure coincidence. In other words, the same key has been defined for all roles, so: `WIF_ACTIVE_PRIVATE_KEY` is exactly the same as `WIF_SIGNING_PRIVATE_KEY`.\n\n![witness](https://grey.house/img/witness2.jpg)\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", @@ -175,11 +175,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 568650179247, "payout": 0.432, - "payout_at": "2016-09-21T13:01:45", + "payout_at": "2016-08-28T12:29:18", "pending_payout_value": "0.432 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "missing-rewards-while-mining", - "post_id": 693716, + "post_id": 919309, "promoted": "0.000 HBD", "replies": [ "gary-smith/re-gtg-missing-rewards-while-mining-20160821t125207685z", @@ -200,7 +200,7 @@ "active_votes": [], "author": "gtg", "author_payout_value": "0.000 HBD", - "author_reputation": 57.34, + "author_reputation": 25.0, "beneficiaries": [], "blacklists": [], "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", @@ -223,11 +223,11 @@ "parent_author": "gtg", "parent_permlink": "missing-rewards-while-mining", "payout": 0.0, - "payout_at": "2016-09-21T13:01:45", + "payout_at": "2016-08-28T13:12:45", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", - "post_id": 693986, + "post_id": 919652, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -244,7 +244,7 @@ "active_votes": [], "author": "gtg", "author_payout_value": "0.000 HBD", - "author_reputation": 57.34, + "author_reputation": 25.0, "beneficiaries": [], "blacklists": [], "body": "yes, you can want to use [steemd.com/@youraccount](https://steemd.com) link to check witness details (at the time of generating block your miner become witness)", @@ -267,11 +267,11 @@ "parent_author": "timcliff", "parent_permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", "payout": 0.0, - "payout_at": "2016-09-21T13:01:45", + "payout_at": "2016-09-03T15:38:00", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z", - "post_id": 767496, + "post_id": 1014083, "promoted": "0.000 HBD", "replies": [ "timcliff/re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z" @@ -290,7 +290,7 @@ "active_votes": [], "author": "gtg", "author_payout_value": "0.000 HBD", - "author_reputation": 57.34, + "author_reputation": 25.0, "beneficiaries": [], "blacklists": [], "body": "Please use your **active private key** for a miner, instead your owner key.", @@ -310,11 +310,11 @@ "parent_author": "timcliff", "parent_permlink": "re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", "payout": 0.0, - "payout_at": "2016-09-21T13:01:45", + "payout_at": "2016-09-03T18:39:45", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-timcliff-re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t183943508z", - "post_id": 769396, + "post_id": 1016368, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -351,11 +351,11 @@ "parent_author": "gtg", "parent_permlink": "missing-rewards-while-mining", "payout": 0.0, - "payout_at": "2016-09-21T13:01:45", + "payout_at": "2016-09-03T14:13:18", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", - "post_id": 766749, + "post_id": 1013122, "promoted": "0.000 HBD", "replies": [ "gtg/re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z" @@ -394,11 +394,11 @@ "parent_author": "gtg", "parent_permlink": "re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z", "payout": 0.0, - "payout_at": "2016-09-21T13:01:45", + "payout_at": "2016-09-03T15:51:15", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", - "post_id": 767624, + "post_id": 1014252, "promoted": "0.000 HBD", "replies": [ "gtg/re-timcliff-re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t183943508z" diff --git a/hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.orig.json b/hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.orig.json new file mode 100644 index 00000000..ec747fa4 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.orig.json @@ -0,0 +1 @@ +null \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.pat.json b/hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.pat.json new file mode 100644 index 00000000..ec747fa4 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.pat.json @@ -0,0 +1 @@ +null \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_post_gtg.pat.json b/hivemind/tavern/bridge_api_patterns/get_post_gtg.pat.json index b9d00edc..cf767203 100644 --- a/hivemind/tavern/bridge_api_patterns/get_post_gtg.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_post_gtg.pat.json @@ -711,7 +711,7 @@ ], "author": "gtg", "author_payout_value": "0.000 HBD", - "author_reputation": 57.34, + "author_reputation": 25.0, "beneficiaries": [], "blacklists": [], "body": "As you know, witness nodes are an essential part of the STEEM universe.\n\nIf I have a witness node with as much as (or as little as) 3% of witness approval, I can choose the right time to shut it down, listen to my favourite music album, walk my cat, and then start it up again, most probably without missing a block.\nA full-time witness, or one of the top19 witnesses, needs to produce blocks 1600 times more frequently.\nMaintaining such a server in the long run is not an easy task.\n\nWitnesses are vulnerable to DDoS attacks. An attacker who knows the network location of your witness node can saturate your uplink to a level that makes you unable to produce blocks on time. Effectively, this means **voting the witness out using a network-level attack**. Finding the IP address of your witness node is easier than you might think. Even if you follow the guidelines for setting up your public seed node on a different machine than the one you used to get your witness running, your witness still needs to connect to other nodes in the network.\nSo what does this mean? Take a look at: http://seeds.quisquis.de/steem.html\n(service provided by cyrano.witness)\n\nDoes any of these IP addresses look familiar?\nThe attacker still doesn't know which of them is yours, right?\n\nAn attack that makes the target IP unavailable for 3 seconds? Not exactly a difficult thing to do, right? So the attacker needs to make a guess by choosing from a set of suspected IP addresses he has obtained. Guessing doesn't cost him much. Neither does a high volume, short period DDoS attack. After that, he can see that your `total_missed` count increases, and he knows he guessed correctly. And then you are out.\n\n![witness](https://grey.house/img/witness2.jpg)\n\n## A concept of infrastructure: ##\n\n2 witness nodes (primary and backup)\n4 dedicated seed nodes\n\nOne witness node has your current signing key and does its job. The other is for failover, backup purposes. For example, whenever you need to upgrade your witness binary, you do that on the backup witness node, then change your signing key, so the backup node and the primary node switch their roles. \n**(Never leave your current signing key on two nodes at the same time!)**\n\nThese 4 seed nodes mentioned here only work on behalf of your witness i.e. they don\u2019t provide seed service on public network interfaces. \n_Your public seed node is not within the scope of this document._\n\nYour witness node connects **ONLY** to your seed nodes using VLAN or another private, low latency network solution of your choice. All other incoming/outgoing connections should be blocked except for the secure shell, preferably limited to access only from your IPs.\n\nEach seed node should be in a separate datacenter, ideally in a different part of the world, never in the same location as any of your (primary/backup) witness nodes. The purpose is to minimize the effects of a successful DDoS attack.\n\n_Please note that setting up all seed nodes in a single data center won\u2019t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway._\n\n```\n +---+\n + +----+ | |\n | | |<-->| B |\n +--+ S1 |<-->| i |\n | | |<-->| g |\n | +----+ | |\n+------+ | | B |\n| +-+ +----+ | a |\n| W(p) | | | |<-->| d |\n| | +--+ S2 |<-->| |\n+------+ | | |<-->| U |\n | +----+ | g |\n VLAN| | l |\n | +----+ | y |\n+------+ | | |<-->| |\n| | +--+ S3 |<-->| I |\n| W(b) | | | |<-->| n |\n| +-+ +----+ | t |\n+------+ | | e |\n | +----+ | r |\n | | |<-->| n |\n +--+ S4 |<-->| e |\n | | |<-->| t |\n + +----+ | |\n +---+\n```\n```\nW(p) - primary witness\nW(b) - backup witness\nS1-4 - seed nodes\n```\nOf course, you need to keep your seed nodes (at least one of them) running all the time, otherwise your witness will not be able to sync the blockchain.\nBut if you do the math, you will see that the odds that all your seed nodes stop working at the same time are much lower than the chances that this happens to your witness node. \n\n\nIf one of your seed nodes falls victim to a DDoS attack, you can, depending on the features offered by your infrastructure provider:\n- do nothing (until most of them are targeted at the same time)\n- change its external interface IP address, routing the old one to a black hole\n- set up a new, additional, temporary seed node somewhere else\n- replace that seed node with a new one in another location\n\nIf you believe this idea is of use and value to Steem, please vote for me as a [witness](https://steemit.com/witness-category/@gtg/witness-gtg \"witness-gtg\")\neither on [Steemit's Witnesses List](https://steemit.com/~witnesses \"Witnesses\") \nor by using your `cli_wallet` command:\n`vote_for_witness \"YOURACCOUNT\" \"gtg\" true true`", @@ -734,12 +734,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 80964590737004, - "payout": 988.451, - "payout_at": "2016-09-16T20:13:00", - "pending_payout_value": "988.451 HBD", - "percent_steem_dollars": 10000, + "payout": 988.456, + "payout_at": "2016-08-23T18:11:03", + "pending_payout_value": "988.456 HBD", + "percent_hbd": 10000, "permlink": "heavy-duty-witness-node-infrastructure", - "post_id": 630173, + "post_id": 838525, "promoted": "0.000 HBD", "replies": [], "stats": { diff --git a/hivemind/tavern/bridge_api_patterns/get_post_header_not_existing_permlink.orig.json b/hivemind/tavern/bridge_api_patterns/get_post_header_not_existing_permlink.orig.json new file mode 100644 index 00000000..ec747fa4 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_post_header_not_existing_permlink.orig.json @@ -0,0 +1 @@ +null \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_post_header_not_existing_permlink.pat.json b/hivemind/tavern/bridge_api_patterns/get_post_header_not_existing_permlink.pat.json new file mode 100644 index 00000000..ec747fa4 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_post_header_not_existing_permlink.pat.json @@ -0,0 +1 @@ +null \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_profile_gtg.orig.json b/hivemind/tavern/bridge_api_patterns/get_profile_gtg.orig.json index efd35751..24863406 100644 --- a/hivemind/tavern/bridge_api_patterns/get_profile_gtg.orig.json +++ b/hivemind/tavern/bridge_api_patterns/get_profile_gtg.orig.json @@ -1,25 +1,25 @@ { - "id": 14008, - "name": "gtg", - "created": "2016-06-30T17:22:18", "active": "2016-09-15T19:46:21", - "post_count": 51, - "reputation": 57.34, "blacklists": [], - "stats": { - "sp": 8854, - "rank": 0, - "following": 31, - "followers": 80 - }, + "created": "2016-06-30T17:22:18", + "id": 14008, "metadata": { "profile": { - "name": "", "about": "", - "website": "", - "location": "", "cover_image": "", - "profile_image": "" + "location": "", + "name": "", + "profile_image": "", + "website": "" } + }, + "name": "gtg", + "post_count": 51, + "reputation": 57.34, + "stats": { + "followers": 80, + "following": 31, + "rank": 0, + "sp": 8854 } } diff --git a/hivemind/tavern/bridge_api_patterns/get_profile_gtg.pat.json b/hivemind/tavern/bridge_api_patterns/get_profile_gtg.pat.json index efd35751..7b684b51 100644 --- a/hivemind/tavern/bridge_api_patterns/get_profile_gtg.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_profile_gtg.pat.json @@ -1,25 +1,25 @@ { - "id": 14008, - "name": "gtg", - "created": "2016-06-30T17:22:18", "active": "2016-09-15T19:46:21", - "post_count": 51, - "reputation": 57.34, "blacklists": [], - "stats": { - "sp": 8854, - "rank": 0, - "following": 31, - "followers": 80 - }, + "created": "2016-06-30T17:22:18", + "id": 14008, "metadata": { "profile": { - "name": "", "about": "", - "website": "", - "location": "", "cover_image": "", - "profile_image": "" + "location": "", + "name": "", + "profile_image": "", + "website": "" } + }, + "name": "gtg", + "post_count": 51, + "reputation": 25.0, + "stats": { + "followers": 80, + "following": 31, + "rank": 0, + "sp": 8854 } } diff --git a/hivemind/tavern/bridge_api_patterns/get_profile_not_existing_account.orig.json b/hivemind/tavern/bridge_api_patterns/get_profile_not_existing_account.orig.json new file mode 100644 index 00000000..ec747fa4 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_profile_not_existing_account.orig.json @@ -0,0 +1 @@ +null \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_profile_not_existing_account.pat.json b/hivemind/tavern/bridge_api_patterns/get_profile_not_existing_account.pat.json new file mode 100644 index 00000000..ec747fa4 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_profile_not_existing_account.pat.json @@ -0,0 +1 @@ +null \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_created.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_created.pat.json index 6cb4902d..774ffe1e 100644 --- a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_created.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_created.pat.json @@ -44,11 +44,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 155925481, "payout": 0.0, - "payout_at": "2016-09-16T19:47:00", + "payout_at": "2016-09-22T19:47:00", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "iconomi-why-we-need-found-management-explained-on-graphs", - "post_id": 961032, + "post_id": 1257938, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -70,7 +70,7 @@ ], "author": "newsfeed", "author_payout_value": "0.000 HBD", - "author_reputation": 36.03, + "author_reputation": 25.0, "beneficiaries": [], "blacklists": [], "body": "The Texas Rangers are 33-10 (.767) in one-run games this season. This would stand as a modern record for winning percentage in one-run games, besting the 2012 Orioles, who were 29-9 (.763).\n\n

http://images.performgroup.com/di/library/sporting_news/a3/fa/texasrangers-getty-ftr-091516jpg_9u1oo1fjvsue1twr2494i9qcn.jpg?t=766994815

\n\nBut if we dig deep into the archives of baseball history, we learn that this is actually the best record since the 1890 Brooklyn Bridegrooms, who were 14-4 (.778) in one-run games en route to an overall 86-43 (.667) record and the National League pennant.\n\n**Source / Read More...** sportingnews.com \n\n
\n\n
\n\n**NEWS FEED** \n*Get the latest headlines from around the world right on your Steemit Feed! With @newsfeed you always stay in the know about all sorts of topics ranging from Politics & Finance to Sports*\n\n**Currently In Beta**\n*Full news feed from hand picked creditable sources from all sides of the political and social realm. Although not fully operational, posts will be random while testing BUT do have real headlines!*", @@ -102,11 +102,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 151513711, "payout": 0.0, - "payout_at": "2016-09-16T19:46:30", + "payout_at": "2016-09-22T19:46:30", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 0, + "percent_hbd": 0, "permlink": "rangers-record-in-one-run-games-nearing-truly-historic-level", - "post_id": 961024, + "post_id": 1257930, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -128,7 +128,7 @@ ], "author": "anton333", "author_payout_value": "0.000 HBD", - "author_reputation": 54.81, + "author_reputation": 25.0, "beneficiaries": [], "blacklists": [], "body": "\n

Model of Skeleton hands,without scissors and glue.

\n1


\n2


\n\n


\n

I need a piece of paper.

\n3


\n4


\n5


\n6


\n7


\n1


\n

Part 1 Part 2 Part 3 Part4 Part5 Part6 Part7 Part8 Part9 Part10

\n", @@ -179,11 +179,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 3377256926, "payout": 0.0, - "payout_at": "2016-09-16T19:46:30", + "payout_at": "2016-09-22T19:46:30", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "origami-part-11-the-model-of-skeleton-hands", - "post_id": 961025, + "post_id": 1257931, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -230,11 +230,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 64358062, "payout": 0.0, - "payout_at": "2016-09-16T19:44:00", + "payout_at": "2016-09-22T19:44:00", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "i-hack-monero-xmr", - "post_id": 961010, + "post_id": 1257912, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -289,11 +289,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 1202120459, "payout": 0.0, - "payout_at": "2016-09-16T19:43:54", + "payout_at": "2016-09-22T19:43:54", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "my-day-hospital", - "post_id": 961007, + "post_id": 1257908, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -349,11 +349,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 54846770, "payout": 0.0, - "payout_at": "2016-09-16T19:42:24", + "payout_at": "2016-09-22T19:42:24", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "wanna-see-something-cool", - "post_id": 960996, + "post_id": 1257893, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -419,11 +419,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 5891496080, "payout": 0.001, - "payout_at": "2016-09-16T19:44:28", + "payout_at": "2016-09-22T19:41:09", "pending_payout_value": "0.001 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "russian-roulette-a-memoir-part-2-under-the-table-tactics", - "post_id": 960988, + "post_id": 1257881, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -552,11 +552,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 2069384927746, "payout": 0.691, - "payout_at": "2016-09-16T19:45:37", + "payout_at": "2016-09-22T19:40:48", "pending_payout_value": "0.691 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "original-fiction-jacked-book-one-the-origin-dime-chronicles-episode-10", - "post_id": 960985, + "post_id": 1257877, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -606,11 +606,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 201736965, "payout": 0.0, - "payout_at": "2016-09-16T19:40:45", + "payout_at": "2016-09-22T19:40:36", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "so-uh-vape-tricks-are-cool-now", - "post_id": 960984, + "post_id": 1257876, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -655,11 +655,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 0, "payout": 0.0, - "payout_at": "2016-09-16T07:40:21", + "payout_at": "2016-09-22T19:40:21", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "cover-your-laptop-and-phone-camera-comey-dir-of-the-fbi-does", - "post_id": 960979, + "post_id": 1257871, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -727,11 +727,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 2041184971, "payout": 0.0, - "payout_at": "2016-09-16T19:39:15", + "payout_at": "2016-09-22T19:39:15", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "the-oil-market-2-3", - "post_id": 960969, + "post_id": 1257858, "promoted": "0.030 HBD", "replies": [], "stats": { @@ -1593,7 +1593,7 @@ ], "author": "charlieshrem", "author_payout_value": "0.000 HBD", - "author_reputation": 67.32, + "author_reputation": 25.0, "beneficiaries": [], "blacklists": [], "body": "[![1427721443457173 (1).jpg](https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg)](https://postimg.org/image/5bg38xjjr/)\n\nThe day I went to prison I published an article Bitcoin for Prison. While I didn't get to read or see the article until someone mailed me a physical copy, I found out that my article had started a number of discussions and follow-on commentary.\n\nDuring my stay at Lewisburg Federal Prison Camp I observed many economic theories put into effect by inmates and the prison administration, including Gresham's law, hyperinflation, currency exchange, and others.\n\nThere are two markets in prison, the \"Administration Run Market\" (ARM) and the \"Inmate Run Market\" (IRM). \n\nFor the ARM, family and friends can add money to your account through Western Union, MoneyGram, or mailing a check. These funds get added to your account fairly quickly and can be used almost immediately, however with a strict spending limit. You get 300 minutes of phone use per month for about $70, and email costs about $0.05 a minute and is only available at specific times to specific people. Once a week you can shop in the commissary with a $360 a month spending limit. Further, certain products have limits of how much you can buy, for example the Mackerel (described below). Alternatively, the IRM is where you can buy sandwiches, wraps, pizzas, Italian ices, hire a personal trainer, get a haircut, pay someone to clean your cube, repair a watch, even inmate run caterers for your birthday or going home party. Additionally there were inmate run 'stores' which sold commissary items at a markup since you could only commissary shop once a week.\n\n[![mackerel-203x300.png](https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png)](https://postimg.org/image/iu6qq6eb9/)\n\nThe Mackerel (meaning literal packets of fish) is one of the competing currencies in the IRM. It has utility by being one of the best sources of protein on the compound. You can save it for a long time, the shelf life is a few years. The price is relatively the same across all prisons in the country, so even if you transfer prisons your property comes with you, including your Mackerel which is worth the same somewhere else. Unlike tunafish, chicken packets and protein bars, more people eat Mackerel. Those other food items can be used as currency as well, for example the guy who fixes your watch may only accept protein bars because he hates fish. There was even a form of digital currency being used, which I will discuss in another post.\n\n[![pzyQaHU.png](https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png)](https://postimg.org/image/nfj3tkh87/)\n\nUtility and medium of exchange give it some value but what about scarcity ? If there is a virtually unlimited amount of Mackerel in the IRM, just like the Federal Reserve printing money, there is no scarcity and hyperinflation can occure if it is debased. \n\nUsing a simple equation, 467 (Number of Inmates) * 14 (Maximum Quantity Allowed to Purchase Per Inmate) * 52 (weeks, assuming every inmate buys the maximum mount of Mackerel every week)\n\nSo if in 2015 we assume that the Supply and Velocity grows at the exact same rate with the Price Level and Transactions unchanging, the amount of Mackerel would essentially double on an even inflation rate. This does not factor in the 3 year shelf life, where expired Mackerel becomes a secondary currency. I will discuss in my next post. \n\nI like to believe that the value of money is determined also psychological factors, like a commodity and not only by mechanical or mathematical factors. In prison many of these psychological factors come into play.\n\n[![1867-1967-Ten-10\u00a2-Cents-Commemorative-Centennial.jpg](https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg)](https://postimg.org/image/ceiwrfinr/)\n\nMost people use Mackerel as a day-to-day currency for normal transactions, but for reasons I will explain in my next post, they are not the best long term store of value which is important for a currency. For longer term store of value, many inmates use stamps. Stamps have a set rate by the United States Postal Service and have similar characteristics as Mackerel aside for being edible. However, with the introduction of email on the compound many people stopped writing letters as email is cheaper and faster therefore reducing stamps ability to be a transactional currency as a majority of the inmates have no use for them. As a store of value they still hold weight because they are small and easy to store large amounts, while Mackerel is not.\n\nThe biggest value stamps have is that they can be mailed home and your family can redeem them for dollars as the local post office, but that feature can be stopped by better mail screening and overnight the stamp could lose its store of value utility. \n\nIn my next post I will discuss how currency exchangers work, what happens when the prison administration purposely floods the market, and how a secondary currency was created out of expired Mackerel called \u201cMoney Maks\u201d", @@ -1624,12 +1624,12 @@ }, "max_accepted_payout": "1000000.000 HBD", "net_rshares": 16647533396431, - "payout": 18.929, - "payout_at": "2016-09-16T19:42:59", - "pending_payout_value": "18.929 HBD", - "percent_steem_dollars": 10000, + "payout": 18.922, + "payout_at": "2016-09-22T19:39:15", + "pending_payout_value": "18.922 HBD", + "percent_hbd": 10000, "permlink": "mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem", - "post_id": 960970, + "post_id": 1257859, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1679,11 +1679,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 2364580435, "payout": 0.0, - "payout_at": "2016-09-16T19:42:18", + "payout_at": "2016-09-22T19:39:12", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "recipe-pickled-ginger-for-sushi", - "post_id": 960968, + "post_id": 1257857, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1773,7 +1773,7 @@ ], "author": "acidyo", "author_payout_value": "0.000 HBD", - "author_reputation": 62.78, + "author_reputation": 25.0, "beneficiaries": [], "blacklists": [], "body": "Since I am really unskilled at PS/Gimp I decided to draw a signature myself!\n\nhttp://imgur.com/FU1u3Aa.jpg\n\nWas thinking of adding it after my posts like this:\nMaybe resize it a bit smaller and make it linkable to my account page, let me know what you think :)\n\nhttp://imgur.com/UIw3ArK.jpg", @@ -1799,11 +1799,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 129649321550, "payout": 0.029, - "payout_at": "2016-09-16T19:38:01", + "payout_at": "2016-09-22T19:37:00", "pending_payout_value": "0.029 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "drew-an-avatar-signature-for-my-posts", - "post_id": 960951, + "post_id": 1257834, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1845,11 +1845,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 153246055, "payout": 0.0, - "payout_at": "2016-09-16T19:36:36", + "payout_at": "2016-09-22T19:36:36", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 0, + "percent_hbd": 0, "permlink": "water-liberty-bringing-it-back-to-its-primordial-clean-and-pristine-state", - "post_id": 960949, + "post_id": 1257832, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1912,11 +1912,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 4431276095, "payout": 0.0, - "payout_at": "2016-09-16T19:36:54", + "payout_at": "2016-09-22T19:34:36", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "i-made-these-animations-by-tracing-from-video-and-found-out-later-it-s-called-rotoscoping", - "post_id": 960931, + "post_id": 1257808, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1974,11 +1974,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 428823678, "payout": 0.0, - "payout_at": "2016-09-16T19:37:07", + "payout_at": "2016-09-22T19:33:30", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 0, + "percent_hbd": 0, "permlink": "are-we-resonance-beings-of-frequency", - "post_id": 960922, + "post_id": 1257797, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -2033,11 +2033,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 5193722250, "payout": 0.001, - "payout_at": "2016-09-16T19:37:05", + "payout_at": "2016-09-22T19:33:24", "pending_payout_value": "0.001 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "night-sketch-funny-bird", - "post_id": 960921, + "post_id": 1257796, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -2096,11 +2096,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 19348183091, "payout": 0.004, - "payout_at": "2016-09-16T19:36:50", + "payout_at": "2016-09-22T19:33:18", "pending_payout_value": "0.004 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "conservapedia-and-the-age-of-the-earth", - "post_id": 960918, + "post_id": 1257793, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -2176,11 +2176,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 65577764329, "payout": 0.014, - "payout_at": "2016-09-16T19:33:27", + "payout_at": "2016-09-22T19:33:00", "pending_payout_value": "0.014 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "a-pancake-pie-with-cherry-it-s-very-delicious-blinnyi-tort-s-vishnei-ochen-ochen-vkusnyi", - "post_id": 960913, + "post_id": 1257787, "promoted": "0.000 HBD", "replies": [], "stats": { diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.orig.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.orig.json index 70832021..5ba21c25 100644 --- a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.orig.json +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.orig.json @@ -1,8348 +1,8397 @@ [ { - "post_id": 960290, - "author": "dollarvigilante", - "permlink": "another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", - "category": "money", - "title": "Another Billionaire Warns of Catastrophic Depths Not Seen in 5,000 Years - and Emphasizes Gold", - "body": "
https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg
\n\nIn past issues, we’ve documented increasingly concerned billionaires warning of dangerous economic times. Many have favored gold as an alternative allocation in a world where $13 trillion-worth of debt is negative yielding, interest rates are artificially suppressed and we’re on the brink of major wars.\n\nThe newest addition to this gold-loving billionaire's club, is none other than hedge-fund manager Paul Singer. At CNBC’s Delivering Alpha Investors Conference this week, the founder of the $27-billion Elliott Management Fund, the 17th largest hedge fund in the world, mentioned that at current prices gold is “undervalued” and “underrepresented in many portfolios as the only ... store of value that has stood the test of time.”\n\nSinger, along with numerous other hedge-fund managers, has been increasingly outspoken in his criticism of the Federal Reserve and other central banks for creating dangers in the market unlike any in what he terms the “5,000 year-ish” history of finance. Singer noted that “it's a very dangerous time in the global economy and global financial markets.\"\n\nThis quote is frighteningly similar to the response given by Donald Trump on Fox Business not long ago when he was asked if he had money in the market. He answered, “I did, but I got out,” and then went on to say that he expected “very scary scenarios” for investors.\n\nSinger also stated that he thinks owning medium- to long-term first world debt is a “really bad idea”... and then proceeded to tell listeners to sell their 30-year bonds.\n\nEarlier in the conference, prior to Singer, Ray Dalio who is the manager of the largest hedge fund in the world, Bridgewater Capital, was also vocal about the diminishing returns provided by government debt held by central banks. “There’s only so much you can squeeze out of the debt cycle,\" he said. He went on to say that central banks are at a point now where their ability to stimulate is limited.\n\nSeated next to Dalio was Former Treasury secretary Timothy Geithner who voiced concern about limited “tools in the keynesian arsenal,” that probably wouldn’t be enough to offset the next recession.\n\nGeithner obviously believes that a recession is on the way. Dalio and Singer are trying to convey the same message. A massive crunch is looming.\n\nWe agree with them, although we believe Geithner was sugarcoating what’s to come.\n\nAfter all, we are on the precipice of a crash of biblical proportions according to the former chief economist of the Bank for International Settlements, William White.\n\nWe have mentioned his quote numerous time here at TDV but feel it’s important to reiterate because of its magnitude: “The only question is whether we are able to look reality in the eye and face what is coming in an orderly fashion, or whether it will be disorderly. Debt jubilees have been going on for 5,000 years, as far back as the Sumerians.”\n\nAs the Fed considers its second rate hike in 10 years, Singer condemned policy-makers for acting with “amazing arrogance” when he and others had warned of a mortgage crisis prior to 2008.\n\nWhat he and those who agreed with his stance don’t know, or at least won’t state publicly, is that these shoddy central bank policies are detrimental by design. In other words, their sole purpose is to destabilize the world economy.\n\nThis deliberate market sabotage is necessary for the transference of power from the more developed nations to less developed ones. Ultimately, the idea is to eliminate smaller regional and national central banks. Once things get bad enough, these smaller banks will be blamed for provoking a given crisis. And, secondarily, the end goal is to blow up the entire system in order to bring in the one world government and central bank.\n\nThe elites have used the same tactics time and time again throughout history. First, they create the problem, then there is a reaction, and then finally they come swooping in to “valiantly save” the day. It's happened numerous times before.\n
https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png
\nAnd it will soon happen again.\n\nOf course, the globalists have demonstrated that every intervention only makes situations worse.\n\nWe reported on the blatant thievery going on at Wells Fargo in our last article and noted how the elites were probably laughing hysterically at what they’re able to get away with. They were even able to convince many younger American voters that “democratic socialism” would be their savior, as seen by the significant, youthful support for Bernie Slanders. Debt and currency crises have already started to materialize, as we’ve seen in the socialist utopia that is Venezuela. If this is any indication of what’s to come, the future is looking awfully gloomy.\n\nAs Singer and others including Dalio have mentioned before, the most tried and true measure of wealth and value is gold.\n\nAt TDV we provide unique Austrian-economics based analysis from the anarcho-capitalist pespective of the state of the world’s economy, as well as suggestions on how to protect your assets in these tempestuous and unprecedented times.\n\nJacob Rothschild, a member of the family partly responsible for the creation of all this chaos, even said himself that we are in “uncharted waters” and that it’s “impossible to predict the unintended consequences of very low interest rates.”\n\nWe have a pretty good idea of what the consequences will be and we’re taking action to protect ourselves and even profit from them. Rothschild seems to know the consequences, as well, as he has been buying up gold and selling the stock market and the US dollar.\n\nYou can survive and profit from the orchestrated collapse too. Subscribe to TDV’s newsletter here to receive constantly updated information on how to protect your family and friends.\n\nIn the end, it is getting truly bizarre just how many billionaires, central bankers and others of note are all warning of the coming collapse. We’d almost begun to worry that they were going to pull a switch-a-roo on us, but if you asked the great majority of investors and financial analysts, they’ll tell you that they see nothing but smooth sailing ahead.\n\nSo, while many are warning, many are hearing, but not listening. The bible said something about that, I believe.\n
https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg
", - "json_metadata": { - "tags": [ - "money", - "gold", - "silver", - "bitcoin", - "crisis" - ], - "image": [ - "https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg", - "https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png", - "https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg" - ], - "links": [ - "https://dollarvigilante.com/subscribe" - ] - }, - "created": "2016-09-15T18:23:15", - "updated": "2016-09-15T18:23:15", - "depth": 0, - "children": 23, - "net_rshares": 102136532384242, - "is_paidout": false, - "payout_at": "2016-09-16T18:47:28", - "payout": 596.997, - "pending_payout_value": "596.997 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], "active_votes": [ { - "voter": "dantheman", - "rshares": "28370463371572" + "rshares": "28370463371572", + "voter": "dantheman" }, { - "voter": "smooth", - "rshares": "31307487536364" + "rshares": "31307487536364", + "voter": "smooth" }, { - "voter": "anonymous", - "rshares": "231809639013" + "rshares": "231809639013", + "voter": "anonymous" }, { - "voter": "diaphanous", - "rshares": "2321962618319" + "rshares": "2321962618319", + "voter": "diaphanous" }, { - "voter": "commedy", - "rshares": "1469558503443" + "rshares": "1469558503443", + "voter": "commedy" }, { - "voter": "riverhead", - "rshares": "4287714457313" + "rshares": "4287714457313", + "voter": "riverhead" }, { - "voter": "badassmother", - "rshares": "1856006073992" + "rshares": "1856006073992", + "voter": "badassmother" }, { - "voter": "rossco99", - "rshares": "1271804694676" + "rshares": "1271804694676", + "voter": "rossco99" }, { - "voter": "wang", - "rshares": "2206068741954" + "rshares": "2206068741954", + "voter": "wang" }, { - "voter": "xeroc", - "rshares": "1950753758979" + "rshares": "1950753758979", + "voter": "xeroc" }, { - "voter": "joseph", - "rshares": "1534707047296" + "rshares": "1534707047296", + "voter": "joseph" }, { - "voter": "recursive3", - "rshares": "452874558937" + "rshares": "452874558937", + "voter": "recursive3" }, { - "voter": "masteryoda", - "rshares": "620996029765" + "rshares": "620996029765", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120582597678" + "rshares": "3120582597678", + "voter": "recursive" }, { - "voter": "lee2", - "rshares": "440845842" + "rshares": "440845842", + "voter": "lee2" }, { - "voter": "lee3", - "rshares": "26932201065" + "rshares": "26932201065", + "voter": "lee3" }, { - "voter": "lee4", - "rshares": "8677295375" + "rshares": "8677295375", + "voter": "lee4" }, { - "voter": "lee5", - "rshares": "22149018521" + "rshares": "22149018521", + "voter": "lee5" }, { - "voter": "smooth.witness", - "rshares": "5942299654212" + "rshares": "5942299654212", + "voter": "smooth.witness" }, { - "voter": "idol", - "rshares": "8927291120" + "rshares": "8927291120", + "voter": "idol" }, { - "voter": "sakr", - "rshares": "4941942978" + "rshares": "4941942978", + "voter": "sakr" }, { - "voter": "unosuke", - "rshares": "57625926227" + "rshares": "57625926227", + "voter": "unosuke" }, { - "voter": "jocelyn", - "rshares": "1536592488" + "rshares": "1536592488", + "voter": "jocelyn" }, { - "voter": "gregory-f", - "rshares": "14818263059" + "rshares": "14818263059", + "voter": "gregory-f" }, { - "voter": "edgeland", - "rshares": "154334962550" + "rshares": "154334962550", + "voter": "edgeland" }, { - "voter": "gregory60", - "rshares": "8836453529" + "rshares": "8836453529", + "voter": "gregory60" }, { - "voter": "full-measure", - "rshares": "29596510808" + "rshares": "29596510808", + "voter": "full-measure" }, { - "voter": "eeks", - "rshares": "104880949618" + "rshares": "104880949618", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "24694558802" + "rshares": "24694558802", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "468281676" + "rshares": "468281676", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "5641697991" + "rshares": "5641697991", + "voter": "spaninv" }, { - "voter": "elishagh1", - "rshares": "32459455171" + "rshares": "32459455171", + "voter": "elishagh1" }, { - "voter": "himalayanguru", - "rshares": "40391466193" + "rshares": "40391466193", + "voter": "himalayanguru" }, { - "voter": "nanzo-scoop", - "rshares": "584291107228" + "rshares": "584291107228", + "voter": "nanzo-scoop" }, { - "voter": "steve-walschot", - "rshares": "178471627922" + "rshares": "178471627922", + "voter": "steve-walschot" }, { - "voter": "kefkius", - "rshares": "9857825141" + "rshares": "9857825141", + "voter": "kefkius" }, { - "voter": "mummyimperfect", - "rshares": "177420844935" + "rshares": "177420844935", + "voter": "mummyimperfect" }, { - "voter": "asch", - "rshares": "106635691300" + "rshares": "106635691300", + "voter": "asch" }, { - "voter": "kevinwong", - "rshares": "616864092786" + "rshares": "616864092786", + "voter": "kevinwong" }, { - "voter": "murh", - "rshares": "1061266533" + "rshares": "1061266533", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6230798580" + "rshares": "6230798580", + "voter": "cryptofunk" }, { - "voter": "kodi", - "rshares": "579494558" + "rshares": "579494558", + "voter": "kodi" }, { - "voter": "error", - "rshares": "2003359924" + "rshares": "2003359924", + "voter": "error" }, { - "voter": "andu", - "rshares": "11584833708" + "rshares": "11584833708", + "voter": "andu" }, { - "voter": "ranko-k", - "rshares": "40553122820" + "rshares": "40553122820", + "voter": "ranko-k" }, { - "voter": "cyber", - "rshares": "962089879337" + "rshares": "962089879337", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "58188888655" + "rshares": "58188888655", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "49581045086" + "rshares": "49581045086", + "voter": "ak2020" }, { - "voter": "satoshifund", - "rshares": "3848697023555" + "rshares": "3848697023555", + "voter": "satoshifund" }, { - "voter": "applecrisp", - "rshares": "402139444" + "rshares": "402139444", + "voter": "applecrisp" }, { - "voter": "altoz", - "rshares": "36407027386" + "rshares": "36407027386", + "voter": "altoz" }, { - "voter": "stiletto", - "rshares": "365370465" + "rshares": "365370465", + "voter": "stiletto" }, { - "voter": "juanmiguelsalas", - "rshares": "55577467736" + "rshares": "55577467736", + "voter": "juanmiguelsalas" }, { - "voter": "will-zewe", - "rshares": "219283354085" + "rshares": "219283354085", + "voter": "will-zewe" }, { - "voter": "herzmeister", - "rshares": "87300558689" + "rshares": "87300558689", + "voter": "herzmeister" }, { - "voter": "trogdor", - "rshares": "275016906945" + "rshares": "275016906945", + "voter": "trogdor" }, { - "voter": "tee-em", - "rshares": "5287820211" + "rshares": "5287820211", + "voter": "tee-em" }, { - "voter": "michaelx", - "rshares": "31346001722" + "rshares": "31346001722", + "voter": "michaelx" }, { - "voter": "thedashguy", - "rshares": "179395106552" + "rshares": "179395106552", + "voter": "thedashguy" }, { - "voter": "usefree", - "rshares": "4682885200" + "rshares": "4682885200", + "voter": "usefree" }, { - "voter": "mexbit", - "rshares": "189626835254" + "rshares": "189626835254", + "voter": "mexbit" }, { - "voter": "mark-waser", - "rshares": "5821262190" + "rshares": "5821262190", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "118356217412" + "rshares": "118356217412", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "208362110567" + "rshares": "208362110567", + "voter": "kimziv" }, { - "voter": "honeythief", - "rshares": "46266779182" + "rshares": "46266779182", + "voter": "honeythief" }, { - "voter": "emily-cook", - "rshares": "75334808165" + "rshares": "75334808165", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187607792" + "rshares": "2187607792", + "voter": "superfreek" }, { - "voter": "mrhankeh", - "rshares": "484636799" + "rshares": "484636799", + "voter": "mrhankeh" }, { - "voter": "grey580", - "rshares": "17908924002" + "rshares": "17908924002", + "voter": "grey580" }, { - "voter": "ladyclair", - "rshares": "275327756" + "rshares": "275327756", + "voter": "ladyclair" }, { - "voter": "bacchist", - "rshares": "68449861599" + "rshares": "68449861599", + "voter": "bacchist" }, { - "voter": "good-karma", - "rshares": "60315479782" + "rshares": "60315479782", + "voter": "good-karma" }, { - "voter": "orly", - "rshares": "3350419346" + "rshares": "3350419346", + "voter": "orly" }, { - "voter": "riscadox", - "rshares": "5271030976" + "rshares": "5271030976", + "voter": "riscadox" }, { - "voter": "katyakov", - "rshares": "24867575018" + "rshares": "24867575018", + "voter": "katyakov" }, { - "voter": "fabio", - "rshares": "373878481829" + "rshares": "373878481829", + "voter": "fabio" }, { - "voter": "tcfxyz", - "rshares": "25057642057" + "rshares": "25057642057", + "voter": "tcfxyz" }, { - "voter": "futurefood", - "rshares": "6939984054" + "rshares": "6939984054", + "voter": "futurefood" }, { - "voter": "rxhector", - "rshares": "734082781" + "rshares": "734082781", + "voter": "rxhector" }, { - "voter": "furion", - "rshares": "118094280271" + "rshares": "118094280271", + "voter": "furion" }, { - "voter": "cdubendo", - "rshares": "105911917280" + "rshares": "105911917280", + "voter": "cdubendo" }, { - "voter": "barbara2", - "rshares": "578386960" + "rshares": "578386960", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "642869652" + "rshares": "642869652", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "594982040" + "rshares": "594982040", + "voter": "doge4lyf" }, { - "voter": "gord0b", - "rshares": "12668641443" + "rshares": "12668641443", + "voter": "gord0b" }, { - "voter": "steem1653", - "rshares": "2632460141" + "rshares": "2632460141", + "voter": "steem1653" }, { - "voter": "cynetyc", - "rshares": "136322030" + "rshares": "136322030", + "voter": "cynetyc" }, { - "voter": "steemit-life", - "rshares": "25221166135" + "rshares": "25221166135", + "voter": "steemit-life" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "thegoodguy", - "rshares": "5357326058" + "rshares": "5357326058", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "14168336425" + "rshares": "14168336425", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209533734" + "rshares": "4209533734", + "voter": "karen13" }, { - "voter": "cryptosi", - "rshares": "6017253623" + "rshares": "6017253623", + "voter": "cryptosi" }, { - "voter": "nabilov", - "rshares": "251367062418" + "rshares": "251367062418", + "voter": "nabilov" }, { - "voter": "noodhoog", - "rshares": "8751103405" + "rshares": "8751103405", + "voter": "noodhoog" }, { - "voter": "milestone", - "rshares": "46859060143" + "rshares": "46859060143", + "voter": "milestone" }, { - "voter": "creemej", - "rshares": "33739229218" + "rshares": "33739229218", + "voter": "creemej" }, { - "voter": "wildchild", - "rshares": "87223247" + "rshares": "87223247", + "voter": "wildchild" }, { - "voter": "nippel66", - "rshares": "15070803886" + "rshares": "15070803886", + "voter": "nippel66" }, { - "voter": "phenom", - "rshares": "24417687626" + "rshares": "24417687626", + "voter": "phenom" }, { - "voter": "poseidon", - "rshares": "4545051592" + "rshares": "4545051592", + "voter": "poseidon" }, { - "voter": "smolalit", - "rshares": "7946812357" + "rshares": "7946812357", + "voter": "smolalit" }, { - "voter": "calaber24p", - "rshares": "362515598946" + "rshares": "362515598946", + "voter": "calaber24p" }, { - "voter": "jdenismusic", - "rshares": "147403710" + "rshares": "147403710", + "voter": "jdenismusic" }, { - "voter": "simon.braki.love", - "rshares": "3365797955" + "rshares": "3365797955", + "voter": "simon.braki.love" }, { - "voter": "thylbom", - "rshares": "82782405213" + "rshares": "82782405213", + "voter": "thylbom" }, { - "voter": "bitcoiner", - "rshares": "3709588060" + "rshares": "3709588060", + "voter": "bitcoiner" }, { - "voter": "deanliu", - "rshares": "32544157928" + "rshares": "32544157928", + "voter": "deanliu" }, { - "voter": "dmitriybtc", - "rshares": "4996306142" + "rshares": "4996306142", + "voter": "dmitriybtc" }, { - "voter": "jl777", - "rshares": "204618396015" + "rshares": "204618396015", + "voter": "jl777" }, { - "voter": "zaebars", - "rshares": "30989614870" + "rshares": "30989614870", + "voter": "zaebars" }, { - "voter": "positive", - "rshares": "20026634941" + "rshares": "20026634941", + "voter": "positive" }, { - "voter": "yarly", - "rshares": "1809205777" + "rshares": "1809205777", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "272641013" + "rshares": "272641013", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "273048922" + "rshares": "273048922", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "157733805" + "rshares": "157733805", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "158624349" + "rshares": "158624349", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "90416287" + "rshares": "90416287", + "voter": "yarly7" }, { - "voter": "raymonjohnstone", - "rshares": "799615699" + "rshares": "799615699", + "voter": "raymonjohnstone" }, { - "voter": "proto", - "rshares": "17267341753" + "rshares": "17267341753", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "34309455805" + "rshares": "34309455805", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "437620869" + "rshares": "437620869", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "234191245" + "rshares": "234191245", + "voter": "yarly11" }, { - "voter": "royalmacro", - "rshares": "8781903824" + "rshares": "8781903824", + "voter": "royalmacro" }, { - "voter": "yarly12", - "rshares": "81879061" + "rshares": "81879061", + "voter": "yarly12" }, { - "voter": "fnait", - "rshares": "674282213" + "rshares": "674282213", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "599033376" + "rshares": "599033376", + "voter": "keepcalmand" }, { - "voter": "steemster1", - "rshares": "146224042" + "rshares": "146224042", + "voter": "steemster1" }, { - "voter": "dmilash", - "rshares": "3022447454" + "rshares": "3022447454", + "voter": "dmilash" }, { - "voter": "andreynoch", - "rshares": "2002851358" + "rshares": "2002851358", + "voter": "andreynoch" }, { - "voter": "mahekg", - "rshares": "13359143286" + "rshares": "13359143286", + "voter": "mahekg" }, { - "voter": "gomeravibz", - "rshares": "50579277183" + "rshares": "50579277183", + "voter": "gomeravibz" }, { - "voter": "taker", - "rshares": "8734185109" + "rshares": "8734185109", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "12064042634" + "rshares": "12064042634", + "voter": "nekromarinist" }, { - "voter": "sharon", - "rshares": "57873464" + "rshares": "57873464", + "voter": "sharon" }, { - "voter": "dumar022", - "rshares": "10419645487" + "rshares": "10419645487", + "voter": "dumar022" }, { - "voter": "merej99", - "rshares": "2157207095" + "rshares": "2157207095", + "voter": "merej99" }, { - "voter": "lillianjones", - "rshares": "58971492" + "rshares": "58971492", + "voter": "lillianjones" }, { - "voter": "laonie", - "rshares": "1213299204686" + "rshares": "1213299204686", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "157521707420" + "rshares": "157521707420", + "voter": "twinner" }, { - "voter": "rawnetics", - "rshares": "23391691291" + "rshares": "23391691291", + "voter": "rawnetics" }, { - "voter": "laonie1", - "rshares": "22969142749" + "rshares": "22969142749", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "23485900426" + "rshares": "23485900426", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "23494195522" + "rshares": "23494195522", + "voter": "laonie3" }, { - "voter": "laoyao", - "rshares": "24562882668" + "rshares": "24562882668", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "42639811498" + "rshares": "42639811498", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "246279861104" + "rshares": "246279861104", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "9450505564" + "rshares": "9450505564", + "voter": "flysaga" }, { - "voter": "brendio", - "rshares": "5831615639" + "rshares": "5831615639", + "voter": "brendio" }, { - "voter": "gmurph", - "rshares": "2918578376" + "rshares": "2918578376", + "voter": "gmurph" }, { - "voter": "chris.roy", - "rshares": "3690744042" + "rshares": "3690744042", + "voter": "chris.roy" }, { - "voter": "midnightoil", - "rshares": "54405024034" + "rshares": "54405024034", + "voter": "midnightoil" }, { - "voter": "ullikume", - "rshares": "4190391188" + "rshares": "4190391188", + "voter": "ullikume" }, { - "voter": "laonie4", - "rshares": "23489872560" + "rshares": "23489872560", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "23487615266" + "rshares": "23487615266", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "23484637540" + "rshares": "23484637540", + "voter": "laonie6" }, { - "voter": "laonie7", - "rshares": "23480497322" + "rshares": "23480497322", + "voter": "laonie7" }, { - "voter": "kurtbeil", - "rshares": "3323984357" + "rshares": "3323984357", + "voter": "kurtbeil" }, { - "voter": "laonie8", - "rshares": "23477049244" + "rshares": "23477049244", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "23474334690" + "rshares": "23474334690", + "voter": "laonie9" }, { - "voter": "xiaohui", - "rshares": "136078574669" + "rshares": "136078574669", + "voter": "xiaohui" }, { - "voter": "jphamer1", - "rshares": "21112646631" + "rshares": "21112646631", + "voter": "jphamer1" }, { - "voter": "bigsambucca", - "rshares": "88206053" + "rshares": "88206053", + "voter": "bigsambucca" }, { - "voter": "elfkitchen", - "rshares": "6791986484" + "rshares": "6791986484", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "99935909954" + "rshares": "99935909954", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5855738054" + "rshares": "5855738054", + "voter": "oflyhigh" }, { - "voter": "randyclemens", - "rshares": "15860159560" + "rshares": "15860159560", + "voter": "randyclemens" }, { - "voter": "paynode", - "rshares": "2343183825" + "rshares": "2343183825", + "voter": "paynode" }, { - "voter": "xiaokongcom", - "rshares": "4366149629" + "rshares": "4366149629", + "voter": "xiaokongcom" }, { - "voter": "msjennifer", - "rshares": "59437351" + "rshares": "59437351", + "voter": "msjennifer" }, { - "voter": "ciao", - "rshares": "54654502" + "rshares": "54654502", + "voter": "ciao" }, { - "voter": "session101", - "rshares": "62928860" + "rshares": "62928860", + "voter": "session101" }, { - "voter": "steemo", - "rshares": "52985539" + "rshares": "52985539", + "voter": "steemo" }, { - "voter": "xianjun", - "rshares": "8801395051" + "rshares": "8801395051", + "voter": "xianjun" }, { - "voter": "steema", - "rshares": "52848854" + "rshares": "52848854", + "voter": "steema" }, { - "voter": "sijoittaja", - "rshares": "72192938" + "rshares": "72192938", + "voter": "sijoittaja" }, { - "voter": "confucius", - "rshares": "69662169" + "rshares": "69662169", + "voter": "confucius" }, { - "voter": "stevescriber", - "rshares": "72135954" + "rshares": "72135954", + "voter": "stevescriber" }, { - "voter": "loli", - "rshares": "51247757" + "rshares": "51247757", + "voter": "loli" }, { - "voter": "miacats", - "rshares": "91519215715" + "rshares": "91519215715", + "voter": "miacats" }, { - "voter": "nano2nd", - "rshares": "52419023" + "rshares": "52419023", + "voter": "nano2nd" }, { - "voter": "jarvis", - "rshares": "53661976" + "rshares": "53661976", + "voter": "jarvis" }, { - "voter": "microluck", - "rshares": "591109646" + "rshares": "591109646", + "voter": "microluck" }, { - "voter": "razberrijam", - "rshares": "74131936" + "rshares": "74131936", + "voter": "razberrijam" }, { - "voter": "fortuner", - "rshares": "53106127" + "rshares": "53106127", + "voter": "fortuner" }, { - "voter": "chinadaily", - "rshares": "2022702929" + "rshares": "2022702929", + "voter": "chinadaily" }, { - "voter": "pompe72", - "rshares": "88481667" + "rshares": "88481667", + "voter": "pompe72" }, { - "voter": "dollarvigilante", - "rshares": "802011524540" + "rshares": "802011524540", + "voter": "dollarvigilante" }, { - "voter": "pollina", - "rshares": "101627835" + "rshares": "101627835", + "voter": "pollina" }, { - "voter": "johnbyrd", - "rshares": "50698107" + "rshares": "50698107", + "voter": "johnbyrd" }, { - "voter": "thomasaustin", - "rshares": "50682252" + "rshares": "50682252", + "voter": "thomasaustin" }, { - "voter": "thermor", - "rshares": "50680459" + "rshares": "50680459", + "voter": "thermor" }, { - "voter": "ficholl", - "rshares": "50691211" + "rshares": "50691211", + "voter": "ficholl" }, { - "voter": "widell", - "rshares": "51852278" + "rshares": "51852278", + "voter": "widell" }, { - "voter": "movievertigo", - "rshares": "3635091595" + "rshares": "3635091595", + "voter": "movievertigo" }, { - "voter": "revelbrooks", - "rshares": "50311250" + "rshares": "50311250", + "voter": "revelbrooks" }, { - "voter": "laonie10", - "rshares": "23468154723" + "rshares": "23468154723", + "voter": "laonie10" }, { - "voter": "netaterra", - "rshares": "2982691190" + "rshares": "2982691190", + "voter": "netaterra" }, { - "voter": "andrewawerdna", - "rshares": "21980957828" + "rshares": "21980957828", + "voter": "andrewawerdna" }, { - "voter": "trev", - "rshares": "5712937692" + "rshares": "5712937692", + "voter": "trev" }, { - "voter": "erroneous-logic", - "rshares": "1874035641" + "rshares": "1874035641", + "voter": "erroneous-logic" }, { - "voter": "sergeypotapov", - "rshares": "302425178" + "rshares": "302425178", + "voter": "sergeypotapov" }, { - "voter": "lensessions", - "rshares": "65868377" + "rshares": "65868377", + "voter": "lensessions" }, { - "voter": "wmhammer", - "rshares": "59126308" + "rshares": "59126308", + "voter": "wmhammer" }, { - "voter": "emancipatedhuman", - "rshares": "45978108133" + "rshares": "45978108133", + "voter": "emancipatedhuman" }, { - "voter": "pressfortruth", - "rshares": "15340272043" + "rshares": "15340272043", + "voter": "pressfortruth" }, { - "voter": "hilarski", - "rshares": "6654726855" + "rshares": "6654726855", + "voter": "hilarski" }, { - "voter": "craigwilliamz", - "rshares": "8773942171" + "rshares": "8773942171", + "voter": "craigwilliamz" }, { - "voter": "onetree", - "rshares": "8856106682" + "rshares": "8856106682", + "voter": "onetree" }, { - "voter": "slorunner", - "rshares": "101945845" + "rshares": "101945845", + "voter": "slorunner" }, { - "voter": "shadowspub", - "rshares": "2029369552" + "rshares": "2029369552", + "voter": "shadowspub" }, { - "voter": "daut44", - "rshares": "32463005362" + "rshares": "32463005362", + "voter": "daut44" }, { - "voter": "curpose", - "rshares": "50416427" + "rshares": "50416427", + "voter": "curpose" }, { - "voter": "suprepachyderm", - "rshares": "59693834" + "rshares": "59693834", + "voter": "suprepachyderm" }, { - "voter": "themonetaryfew", - "rshares": "1615332211" + "rshares": "1615332211", + "voter": "themonetaryfew" }, { - "voter": "dajohns1420", - "rshares": "989363278" + "rshares": "989363278", + "voter": "dajohns1420" }, { - "voter": "runridefly", - "rshares": "2196907450" + "rshares": "2196907450", + "voter": "runridefly" }, { - "voter": "newandold", - "rshares": "3915304227" + "rshares": "3915304227", + "voter": "newandold" }, { - "voter": "jamesyk", - "rshares": "57856784" + "rshares": "57856784", + "voter": "jamesyk" }, { - "voter": "shenanigator", - "rshares": "112983030208" + "rshares": "112983030208", + "voter": "shenanigator" }, { - "voter": "jcomeauictx", - "rshares": "58197677" + "rshares": "58197677", + "voter": "jcomeauictx" }, { - "voter": "quinneaker", - "rshares": "12901147949" + "rshares": "12901147949", + "voter": "quinneaker" }, { - "voter": "freeinthought", - "rshares": "752032432" + "rshares": "752032432", + "voter": "freeinthought" }, { - "voter": "funkywanderer", - "rshares": "1783693666" + "rshares": "1783693666", + "voter": "funkywanderer" }, { - "voter": "richardcrill", - "rshares": "4900461398" + "rshares": "4900461398", + "voter": "richardcrill" }, { - "voter": "laonie11", - "rshares": "22621459650" + "rshares": "22621459650", + "voter": "laonie11" }, { - "voter": "jeremyfromwi", - "rshares": "2205784762" + "rshares": "2205784762", + "voter": "jeremyfromwi" }, { - "voter": "troich", - "rshares": "50588612" + "rshares": "50588612", + "voter": "troich" }, { - "voter": "nadin3", - "rshares": "4662965424" + "rshares": "4662965424", + "voter": "nadin3" }, { - "voter": "profanarky", - "rshares": "588228551" + "rshares": "588228551", + "voter": "profanarky" }, { - "voter": "xanoxt", - "rshares": "3411072843" + "rshares": "3411072843", + "voter": "xanoxt" }, { - "voter": "davidjkelley", - "rshares": "1625414479" + "rshares": "1625414479", + "voter": "davidjkelley" }, { - "voter": "crion", - "rshares": "50593879" + "rshares": "50593879", + "voter": "crion" }, { - "voter": "greatness", - "rshares": "174778016" + "rshares": "174778016", + "voter": "greatness" }, { - "voter": "hitherise", - "rshares": "50271139" + "rshares": "50271139", + "voter": "hitherise" }, { - "voter": "wiss", - "rshares": "50262756" + "rshares": "50262756", + "voter": "wiss" }, { - "voter": "sebastianbauer", - "rshares": "56782516" + "rshares": "56782516", + "voter": "sebastianbauer" }, { - "voter": "fizzgig", - "rshares": "55667728" + "rshares": "55667728", + "voter": "fizzgig" }, { - "voter": "sponge-bob", - "rshares": "26571803569" + "rshares": "26571803569", + "voter": "sponge-bob" }, { - "voter": "l0k1", - "rshares": "4044716723" + "rshares": "4044716723", + "voter": "l0k1" }, { - "voter": "digital-wisdom", - "rshares": "15232622426" + "rshares": "15232622426", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3710973264" + "rshares": "3710973264", + "voter": "ethical-ai" }, { - "voter": "stroully", - "rshares": "51033798" + "rshares": "51033798", + "voter": "stroully" }, { - "voter": "titusfrost", - "rshares": "3752641890" + "rshares": "3752641890", + "voter": "titusfrost" }, { - "voter": "jwaser", - "rshares": "6682880996" + "rshares": "6682880996", + "voter": "jwaser" }, { - "voter": "thadm", - "rshares": "50712038" + "rshares": "50712038", + "voter": "thadm" }, { - "voter": "zettar", - "rshares": "2353724275" + "rshares": "2353724275", + "voter": "zettar" }, { - "voter": "smisi", - "rshares": "1655277599" + "rshares": "1655277599", + "voter": "smisi" }, { - "voter": "bluehorseshoe", - "rshares": "17357974240" + "rshares": "17357974240", + "voter": "bluehorseshoe" }, { - "voter": "lighter", - "rshares": "53413720" + "rshares": "53413720", + "voter": "lighter" }, { - "voter": "yorsens", - "rshares": "50370757" + "rshares": "50370757", + "voter": "yorsens" }, { - "voter": "maarnio", - "rshares": "263853222" + "rshares": "263853222", + "voter": "maarnio" }, { - "voter": "analyzethis", - "rshares": "50931848" + "rshares": "50931848", + "voter": "analyzethis" }, { - "voter": "bwaser", - "rshares": "2617343597" + "rshares": "2617343597", + "voter": "bwaser" }, { - "voter": "sofa", - "rshares": "50840303" + "rshares": "50840303", + "voter": "sofa" }, { - "voter": "panther", - "rshares": "323483227" + "rshares": "323483227", + "voter": "panther" }, { - "voter": "doggnostic", - "rshares": "53871683" + "rshares": "53871683", + "voter": "doggnostic" }, { - "voter": "ct-gurus", - "rshares": "659649765" + "rshares": "659649765", + "voter": "ct-gurus" }, { - "voter": "jenny-talls", - "rshares": "53593366" + "rshares": "53593366", + "voter": "jenny-talls" }, { - "voter": "charlieshrem", - "rshares": "411677045923" + "rshares": "411677045923", + "voter": "charlieshrem" }, { - "voter": "tracemayer", - "rshares": "61827447459" + "rshares": "61827447459", + "voter": "tracemayer" }, { - "voter": "brains", - "rshares": "54239080444" + "rshares": "54239080444", + "voter": "brains" }, { - "voter": "waldemar-kuhn", - "rshares": "50450987" + "rshares": "50450987", + "voter": "waldemar-kuhn" }, { - "voter": "steemafon", - "rshares": "1415009195" + "rshares": "1415009195", + "voter": "steemafon" }, { - "voter": "bitcoinparadise", - "rshares": "1352324852" + "rshares": "1352324852", + "voter": "bitcoinparadise" }, { - "voter": "chick1", - "rshares": "5753524189" + "rshares": "5753524189", + "voter": "chick1" }, { - "voter": "rigaronib", - "rshares": "3605995609" + "rshares": "3605995609", + "voter": "rigaronib" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "50516543" + "rshares": "50516543", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "freebornangel", - "rshares": "62515317" + "rshares": "62515317", + "voter": "freebornangel" }, { - "voter": "anomaly", - "rshares": "271440423" + "rshares": "271440423", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401297947" + "rshares": "2401297947", + "voter": "ellepdub" }, { - "voter": "inarix03", - "rshares": "63405661" + "rshares": "63405661", + "voter": "inarix03" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "rayzzz", - "rshares": "51615652" + "rshares": "51615652", + "voter": "rayzzz" }, { - "voter": "herpetologyguy", - "rshares": "12115690216" + "rshares": "12115690216", + "voter": "herpetologyguy" }, { - "voter": "morgan.waser", - "rshares": "4712300251" + "rshares": "4712300251", + "voter": "morgan.waser" }, { - "voter": "iggy", - "rshares": "157644916" + "rshares": "157644916", + "voter": "iggy" }, { - "voter": "mbizryu0", - "rshares": "51636819" + "rshares": "51636819", + "voter": "mbizryu0" }, { - "voter": "archij", - "rshares": "51631638" + "rshares": "51631638", + "voter": "archij" }, { - "voter": "movie7283", - "rshares": "51530815" + "rshares": "51530815", + "voter": "movie7283" }, { - "voter": "ppcompp2", - "rshares": "51527606" + "rshares": "51527606", + "voter": "ppcompp2" }, { - "voter": "jj1968", - "rshares": "51520427" + "rshares": "51520427", + "voter": "jj1968" }, { - "voter": "cineger", - "rshares": "51516489" + "rshares": "51516489", + "voter": "cineger" }, { - "voter": "sksduddk", - "rshares": "51497383" + "rshares": "51497383", + "voter": "sksduddk" }, { - "voter": "jjc0719", - "rshares": "51490214" + "rshares": "51490214", + "voter": "jjc0719" }, { - "voter": "glassheart", - "rshares": "51235131" + "rshares": "51235131", + "voter": "glassheart" }, { - "voter": "deli", - "rshares": "51215236" + "rshares": "51215236", + "voter": "deli" }, { - "voter": "anns", - "rshares": "1233685675" + "rshares": "1233685675", + "voter": "anns" }, { - "voter": "breeze", - "rshares": "50798322" + "rshares": "50798322", + "voter": "breeze" }, { - "voter": "sjytoy", - "rshares": "50677982" + "rshares": "50677982", + "voter": "sjytoy" }, { - "voter": "shy2675", - "rshares": "50676799" + "rshares": "50676799", + "voter": "shy2675" }, { - "voter": "suance1009", - "rshares": "50675747" + "rshares": "50675747", + "voter": "suance1009" }, { - "voter": "hasqmd", - "rshares": "50674176" + "rshares": "50674176", + "voter": "hasqmd" }, { - "voter": "fischer67", - "rshares": "50673722" + "rshares": "50673722", + "voter": "fischer67" }, { - "voter": "elya1", - "rshares": "50672116" + "rshares": "50672116", + "voter": "elya1" }, { - "voter": "xclamp45", - "rshares": "50632828" + "rshares": "50632828", + "voter": "xclamp45" }, { - "voter": "likeagame1", - "rshares": "50618471" + "rshares": "50618471", + "voter": "likeagame1" }, { - "voter": "apple4006", - "rshares": "50616898" + "rshares": "50616898", + "voter": "apple4006" }, { - "voter": "bigbell61", - "rshares": "50615195" + "rshares": "50615195", + "voter": "bigbell61" }, { - "voter": "dolpo777", - "rshares": "50612850" + "rshares": "50612850", + "voter": "dolpo777" }, { - "voter": "dongperi", - "rshares": "50611931" + "rshares": "50611931", + "voter": "dongperi" }, { - "voter": "lion2byung", - "rshares": "50610620" + "rshares": "50610620", + "voter": "lion2byung" }, { - "voter": "cwj1973", - "rshares": "50610002" + "rshares": "50610002", + "voter": "cwj1973" }, { - "voter": "psj212", - "rshares": "50609329" + "rshares": "50609329", + "voter": "psj212" }, { - "voter": "owithed2", - "rshares": "50608661" + "rshares": "50608661", + "voter": "owithed2" }, { - "voter": "fiself2", - "rshares": "50606929" + "rshares": "50606929", + "voter": "fiself2" }, { - "voter": "trablinever1", - "rshares": "50605131" + "rshares": "50605131", + "voter": "trablinever1" }, { - "voter": "nuals1940", - "rshares": "50603861" + "rshares": "50603861", + "voter": "nuals1940" }, { - "voter": "fanceth2", - "rshares": "50602310" + "rshares": "50602310", + "voter": "fanceth2" }, { - "voter": "unilever", - "rshares": "50572441" + "rshares": "50572441", + "voter": "unilever" }, { - "voter": "amstel", - "rshares": "50540827" + "rshares": "50540827", + "voter": "amstel" }, { - "voter": "bapparabi", - "rshares": "1921231770" + "rshares": "1921231770", + "voter": "bapparabi" }, { - "voter": "sunlight", - "rshares": "50479027" + "rshares": "50479027", + "voter": "sunlight" }, { - "voter": "forea1995", - "rshares": "50355943" + "rshares": "50355943", + "voter": "forea1995" }, { - "voter": "holow1968", - "rshares": "50354561" + "rshares": "50354561", + "voter": "holow1968" }, { - "voter": "peaces1952", - "rshares": "50353969" + "rshares": "50353969", + "voter": "peaces1952" }, { - "voter": "himighar2", - "rshares": "50346496" + "rshares": "50346496", + "voter": "himighar2" }, { - "voter": "aromese1974", - "rshares": "50345607" + "rshares": "50345607", + "voter": "aromese1974" }, { - "voter": "runis1943", - "rshares": "50344921" + "rshares": "50344921", + "voter": "runis1943" }, { - "voter": "tong1962", - "rshares": "50344067" + "rshares": "50344067", + "voter": "tong1962" }, { - "voter": "hishe1997", - "rshares": "50340744" + "rshares": "50340744", + "voter": "hishe1997" }, { - "voter": "letstalkliberty", - "rshares": "255059000" + "rshares": "255059000", + "voter": "letstalkliberty" }, { - "voter": "strong-ai", - "rshares": "3609651500" + "rshares": "3609651500", + "voter": "strong-ai" }, { - "voter": "ninjapainter", - "rshares": "53375937" + "rshares": "53375937", + "voter": "ninjapainter" }, { - "voter": "buit1989", - "rshares": "51393104" + "rshares": "51393104", + "voter": "buit1989" }, { - "voter": "imadecoult1", - "rshares": "51389981" + "rshares": "51389981", + "voter": "imadecoult1" }, { - "voter": "infees2", - "rshares": "51387526" + "rshares": "51387526", + "voter": "infees2" }, { - "voter": "suar1997", - "rshares": "51384095" + "rshares": "51384095", + "voter": "suar1997" }, { - "voter": "sobsell93", - "rshares": "51382067" + "rshares": "51382067", + "voter": "sobsell93" }, { - "voter": "stroned96", - "rshares": "51380710" + "rshares": "51380710", + "voter": "stroned96" }, { - "voter": "drethe", - "rshares": "51378107" + "rshares": "51378107", + "voter": "drethe" }, { - "voter": "qualwas", - "rshares": "51377505" + "rshares": "51377505", + "voter": "qualwas" }, { - "voter": "phent1994", - "rshares": "51376367" + "rshares": "51376367", + "voter": "phent1994" }, { - "voter": "baboyes", - "rshares": "51375075" + "rshares": "51375075", + "voter": "baboyes" }, { - "voter": "whor1973", - "rshares": "51373532" + "rshares": "51373532", + "voter": "whor1973" }, { - "voter": "youreforn", - "rshares": "51372739" + "rshares": "51372739", + "voter": "youreforn" }, { - "voter": "voll1981", - "rshares": "51371902" + "rshares": "51371902", + "voter": "voll1981" }, { - "voter": "copenty2", - "rshares": "51370717" + "rshares": "51370717", + "voter": "copenty2" }, { - "voter": "maject2", - "rshares": "51369717" + "rshares": "51369717", + "voter": "maject2" }, { - "voter": "coust1997", - "rshares": "51367233" + "rshares": "51367233", + "voter": "coust1997" }, { - "voter": "busionea84", - "rshares": "51366398" + "rshares": "51366398", + "voter": "busionea84" }, { - "voter": "therver1", - "rshares": "51365174" + "rshares": "51365174", + "voter": "therver1" }, { - "voter": "appirdsmanne1990", - "rshares": "51364022" + "rshares": "51364022", + "voter": "appirdsmanne1990" }, { - "voter": "alienighted87", - "rshares": "51362967" + "rshares": "51362967", + "voter": "alienighted87" }, { - "voter": "anity1994", - "rshares": "51359746" + "rshares": "51359746", + "voter": "anity1994" }, { - "voter": "themphe1", - "rshares": "59959066" + "rshares": "59959066", + "voter": "themphe1" }, { - "voter": "abild1988", - "rshares": "51355864" + "rshares": "51355864", + "voter": "abild1988" }, { - "voter": "spoll1973", - "rshares": "51353540" + "rshares": "51353540", + "voter": "spoll1973" }, { - "voter": "afteld1", - "rshares": "66162576" + "rshares": "66162576", + "voter": "afteld1" }, { - "voter": "igtes", - "rshares": "71207873" + "rshares": "71207873", + "voter": "igtes" }, { - "voter": "dikanevroman", - "rshares": "835065804" + "rshares": "835065804", + "voter": "dikanevroman" }, { - "voter": "buffett", - "rshares": "141679752" + "rshares": "141679752", + "voter": "buffett" }, { - "voter": "rusteemitblog", - "rshares": "1630362522" + "rshares": "1630362522", + "voter": "rusteemitblog" }, { - "voter": "robyneggs", - "rshares": "167843838" + "rshares": "167843838", + "voter": "robyneggs" }, { - "voter": "michaelstobiersk", - "rshares": "1300689481" + "rshares": "1300689481", + "voter": "michaelstobiersk" }, { - "voter": "witchcraftblog", - "rshares": "453506109" + "rshares": "453506109", + "voter": "witchcraftblog" }, { - "voter": "sdc", - "rshares": "158057595" + "rshares": "158057595", + "voter": "sdc" }, { - "voter": "gravity", - "rshares": "160973134" + "rshares": "160973134", + "voter": "gravity" }, { - "voter": "digitalillusions", - "rshares": "160900665" + "rshares": "160900665", + "voter": "digitalillusions" }, { - "voter": "illusions", - "rshares": "157726117" + "rshares": "157726117", + "voter": "illusions" }, { - "voter": "cybergirls", - "rshares": "157176058" + "rshares": "157176058", + "voter": "cybergirls" }, { - "voter": "correct", - "rshares": "156847954" + "rshares": "156847954", + "voter": "correct" }, { - "voter": "haribo", - "rshares": "156814579" + "rshares": "156814579", + "voter": "haribo" }, { - "voter": "stimmt", - "rshares": "156194471" + "rshares": "156194471", + "voter": "stimmt" }, { - "voter": "fallout", - "rshares": "156054487" + "rshares": "156054487", + "voter": "fallout" }, { - "voter": "rule", - "rshares": "159062820" + "rshares": "159062820", + "voter": "rule" }, { - "voter": "xtreme", - "rshares": "155907388" + "rshares": "155907388", + "voter": "xtreme" }, { - "voter": "modernbukowski", - "rshares": "1442647825" + "rshares": "1442647825", + "voter": "modernbukowski" }, { - "voter": "steem-wallet", - "rshares": "158602900" + "rshares": "158602900", + "voter": "steem-wallet" }, { - "voter": "nerds", - "rshares": "158535752" + "rshares": "158535752", + "voter": "nerds" }, { - "voter": "goldmatters", - "rshares": "31008332335" + "rshares": "31008332335", + "voter": "goldmatters" }, { - "voter": "majes", - "rshares": "155796749" + "rshares": "155796749", + "voter": "majes" }, { - "voter": "maxb02", - "rshares": "155166715" + "rshares": "155166715", + "voter": "maxb02" }, { - "voter": "dealzgal", - "rshares": "71727340" + "rshares": "71727340", + "voter": "dealzgal" }, { - "voter": "bleujay", - "rshares": "120983531" + "rshares": "120983531", + "voter": "bleujay" }, { - "voter": "storage", - "rshares": "68013381" + "rshares": "68013381", + "voter": "storage" }, { - "voter": "risabold", - "rshares": "298391608" + "rshares": "298391608", + "voter": "risabold" }, { - "voter": "dougkarr", - "rshares": "154247502" + "rshares": "154247502", + "voter": "dougkarr" }, { - "voter": "blackmarket", - "rshares": "58460105" + "rshares": "58460105", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "61530871" + "rshares": "61530871", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "96643251" + "rshares": "96643251", + "voter": "expat" }, { - "voter": "pathtomydream", - "rshares": "181770825" + "rshares": "181770825", + "voter": "pathtomydream" }, { - "voter": "doubledex", - "rshares": "519265850" + "rshares": "519265850", + "voter": "doubledex" }, { - "voter": "steemlift", - "rshares": "1593664040" + "rshares": "1593664040", + "voter": "steemlift" }, { - "voter": "toddemaher1", - "rshares": "129609202" + "rshares": "129609202", + "voter": "toddemaher1" } ], + "author": "dollarvigilante", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 387, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/money/@dollarvigilante/another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", - "blacklists": [] - }, - { - "post_id": 960258, - "author": "gavvet", - "permlink": "why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", - "category": "herpetology", - "title": "Why You Don’t Want to Kill that Snake in Your Yard (featuring @herpetologyguy as author)", - "body": "@herpetologyguy\n\nOne of my many tasks as a zoo keeper is connecting people to animals. \n-\n\n\n\n

The museum I work at is unique because we showcase animals that are native to Virginia -- meaning that these are animals people will find close to home, rather than across the ocean in some distant country. This makes my job more crucial in that I am responsible for educating people about the reptiles and amphibians that they will find in their own backyards. And obviously, there’s one group of reptiles that gives people more pause than almost any other animal . . . . 

\n

Snakes. 

\n

http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj   Picture Credit

\n

I do public programs featuring snakes quite frequently.  I believe people should know how to identify local venomous/non-venomous snakes, their role in the environment and how to deal with them when they are in close proximity to our homes.  Usually, I get eager audiences asking great questions.  But, every now and then, I get some idiot who tells me, “I saw that same snake in my backyard! I chopped off its head with a shovel!”

\n

Are they an idiot for killing the snake?  Not necessarily . . . I don’t know the situation behind the encounter. But, only an idiot would walk into a wildlife facility, approach a zoo keeper and proudly declare that they kill the very same animals that the keeper is charged with the care for.  Would you walk into an animal shelter and tell someone working there that you enjoy stomping on puppies?  To us, there’s not much difference… 

\n

http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png   Picture Credit\n

\n

The best we can do in these situations is to try to educate people. This can be difficult because so many people are set in their ways -- plus we have to combat an instinctive fear and prejudice against snakes.  So, I’m going to briefly lay it all out for you and tell you \"Why you shouldn’t kill that snake in your yard.\" 

\n

http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg   Picture Credit

\n

1.  It’s ILLEGAL in most states to kill a wild snake, unless that snake presents an IMMEDIATE threat.  And no, a snake crawling through your yard does not represent a good enough excuse to use force.  We’re talking about a situation where a venomous snake is about to strike and you have no escape route but to fight your way out.  And guess what, that really doesn’t ever happen (barring instances where someone purposefully provokes an animal).  Wildlife and law enforcement agencies are cracking down on people killing snakes, so it’s better to keep yourself out of trouble. 

\n

http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg   Picture Credit

\n

2.  You are putting yourself in harm’s way.  The vast majority of snake bites occur when people attempt to capture or kill snakes.  If left alone, the snake CANNOT hurt you.  Call wildlife services or trained professionals to remove the animal. 

\n

http://www.snakegetters.com/demo/bud-cotton-gg.jpg   Picture Credit

\n

3.  It’s an incredibly beneficial animal, and you’d be foolish to kill it.  Small snakes eat a huge variety of pest insects that destroy gardens, while large snakes typically feed on rats and other rodents that infest our homes.  If you see a large snake hanging around, you have a rodent problem; snakes will not hang around if there is no food source.  To keep snakes from being attracted to your property, do your best to remove any shelter or food sources that would attract rodents.  Some snakes even eat other snakes, and species like the harmless king snake will even feed on venomous species! 

\n

https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg   Picture Credit

\n

4.  Another snake might show up.  Snakes will not typically inhabit the same area in order to avoid competition.  If you kill that harmless rat snake, but you still have a food source nearby, another snake may move in to make use of that source.  The new snake may be another harmless species or something a bit less desirable.  So why not let that harmless snake take care of the infestation for you?

\n

http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg   Picture Credit

\n

Having a snake around can be hugely beneficial to you.  It is a free, environmentally-safe form of pest control.  Snakes, including venomous species, are non-aggressive animals (unless you provoke them) that will actively do their best to AVOID people.  A resident snake will often go unnoticed by homeowners, and most encounters are fleeting glimpses of the snake making a hasty escape.  Remember that snakes have their own unique role in the environment, and regardless of our own fears and feelings towards them, they are a necessary part of life. 

\n

   http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg   Picture Credit

\n\n\nif you liked this also please check out:\nhttps://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians\n\n\n***don't forget to follow @herpetologyguy***", + "blacklists": [], + "body": "
https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg
\n\nIn past issues, we\u2019ve documented increasingly concerned billionaires warning of dangerous economic times. Many have favored gold as an alternative allocation in a world where $13 trillion-worth of debt is negative yielding, interest rates are artificially suppressed and we\u2019re on the brink of major wars.\n\nThe newest addition to this gold-loving billionaire's club, is none other than hedge-fund manager Paul Singer. At CNBC\u2019s Delivering Alpha Investors Conference this week, the founder of the $27-billion Elliott Management Fund, the 17th largest hedge fund in the world, mentioned that at current prices gold is \u201cundervalued\u201d and \u201cunderrepresented in many portfolios as the only ... store of value that has stood the test of time.\u201d\n\nSinger, along with numerous other hedge-fund managers, has been increasingly outspoken in his criticism of the Federal Reserve and other central banks for creating dangers in the market unlike any in what he terms the \u201c5,000 year-ish\u201d history of finance. Singer noted that \u201cit's a very dangerous time in the global economy and global financial markets.\"\n\nThis quote is frighteningly similar to the response given by Donald Trump on Fox Business not long ago when he was asked if he had money in the market. He answered, \u201cI did, but I got out,\u201d and then went on to say that he expected \u201cvery scary scenarios\u201d for investors.\n\nSinger also stated that he thinks owning medium- to long-term first world debt is a \u201creally bad idea\u201d... and then proceeded to tell listeners to sell their 30-year bonds.\n\nEarlier in the conference, prior to Singer, Ray Dalio who is the manager of the largest hedge fund in the world, Bridgewater Capital, was also vocal about the diminishing returns provided by government debt held by central banks. \u201cThere\u2019s only so much you can squeeze out of the debt cycle,\" he said. He went on to say that central banks are at a point now where their ability to stimulate is limited.\n\nSeated next to Dalio was Former Treasury secretary Timothy Geithner who voiced concern about limited \u201ctools in the keynesian arsenal,\u201d that probably wouldn\u2019t be enough to offset the next recession.\n\nGeithner obviously believes that a recession is on the way. Dalio and Singer are trying to convey the same message. A massive crunch is looming.\n\nWe agree with them, although we believe Geithner was sugarcoating what\u2019s to come.\n\nAfter all, we are on the precipice of a crash of biblical proportions according to the former chief economist of the Bank for International Settlements, William White.\n\nWe have mentioned his quote numerous time here at TDV but feel it\u2019s important to reiterate because of its magnitude: \u201cThe only question is whether we are able to look reality in the eye and face what is coming in an orderly fashion, or whether it will be disorderly. Debt jubilees have been going on for 5,000 years, as far back as the Sumerians.\u201d\n\nAs the Fed considers its second rate hike in 10 years, Singer condemned policy-makers for acting with \u201camazing arrogance\u201d when he and others had warned of a mortgage crisis prior to 2008.\n\nWhat he and those who agreed with his stance don\u2019t know, or at least won\u2019t state publicly, is that these shoddy central bank policies are detrimental by design. In other words, their sole purpose is to destabilize the world economy.\n\nThis deliberate market sabotage is necessary for the transference of power from the more developed nations to less developed ones. Ultimately, the idea is to eliminate smaller regional and national central banks. Once things get bad enough, these smaller banks will be blamed for provoking a given crisis. And, secondarily, the end goal is to blow up the entire system in order to bring in the one world government and central bank.\n\nThe elites have used the same tactics time and time again throughout history. First, they create the problem, then there is a reaction, and then finally they come swooping in to \u201cvaliantly save\u201d the day. It's happened numerous times before.\n
https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png
\nAnd it will soon happen again.\n\nOf course, the globalists have demonstrated that every intervention only makes situations worse.\n\nWe reported on the blatant thievery going on at Wells Fargo in our last article and noted how the elites were probably laughing hysterically at what they\u2019re able to get away with. They were even able to convince many younger American voters that \u201cdemocratic socialism\u201d would be their savior, as seen by the significant, youthful support for Bernie Slanders. Debt and currency crises have already started to materialize, as we\u2019ve seen in the socialist utopia that is Venezuela. If this is any indication of what\u2019s to come, the future is looking awfully gloomy.\n\nAs Singer and others including Dalio have mentioned before, the most tried and true measure of wealth and value is gold.\n\nAt TDV we provide unique Austrian-economics based analysis from the anarcho-capitalist pespective of the state of the world\u2019s economy, as well as suggestions on how to protect your assets in these tempestuous and unprecedented times.\n\nJacob Rothschild, a member of the family partly responsible for the creation of all this chaos, even said himself that we are in \u201cuncharted waters\u201d and that it\u2019s \u201cimpossible to predict the unintended consequences of very low interest rates.\u201d\n\nWe have a pretty good idea of what the consequences will be and we\u2019re taking action to protect ourselves and even profit from them. Rothschild seems to know the consequences, as well, as he has been buying up gold and selling the stock market and the US dollar.\n\nYou can survive and profit from the orchestrated collapse too. Subscribe to TDV\u2019s newsletter here to receive constantly updated information on how to protect your family and friends.\n\nIn the end, it is getting truly bizarre just how many billionaires, central bankers and others of note are all warning of the coming collapse. We\u2019d almost begun to worry that they were going to pull a switch-a-roo on us, but if you asked the great majority of investors and financial analysts, they\u2019ll tell you that they see nothing but smooth sailing ahead.\n\nSo, while many are warning, many are hearing, but not listening. The bible said something about that, I believe.\n
https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg
", + "category": "money", + "children": 23, + "created": "2016-09-15T18:23:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "herpetology", - "reptiles", - "snakes", - "science" - ], - "users": [ - "herpetologyguy" - ], "image": [ - "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", - "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", - "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", - "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", - "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", - "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", - "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", - "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg" + "https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg", + "https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png", + "https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg" ], "links": [ - "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", - "http://www.sciencemag.org", - "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", - "http://proactivepestga.com", - "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", - "http://blogs.discovermagazine.com", - "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", - "http://www.mylakelandnow.com", - "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", - "http://www.snakegetters.com", - "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", - "https://www.youtube.com/watch?v=ImOj1CKTBqE", - "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", - "http://phenomena.nationalgeographic.com", - "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg", - "http://westernmassnaturalist.org", - "https://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians" + "https://dollarvigilante.com/subscribe" + ], + "tags": [ + "money", + "gold", + "silver", + "bitcoin", + "crisis" ] }, - "created": "2016-09-15T18:19:39", - "updated": "2016-09-15T18:19:39", - "depth": 0, - "children": 6, - "net_rshares": 68620995119384, - "is_paidout": false, - "payout_at": "2016-09-16T18:44:06", - "payout": 274.438, - "pending_payout_value": "274.438 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 102136532384242, + "payout": 596.997, + "payout_at": "2016-09-16T18:47:28", + "pending_payout_value": "596.997 HBD", + "percent_steem_dollars": 10000, + "permlink": "another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", + "post_id": 960290, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 387 + }, + "title": "Another Billionaire Warns of Catastrophic Depths Not Seen in 5,000 Years - and Emphasizes Gold", + "updated": "2016-09-15T18:23:15", + "url": "/money/@dollarvigilante/another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold" + }, + { "active_votes": [ { - "voter": "smooth", - "rshares": "31307487536364" + "rshares": "31307487536364", + "voter": "smooth" }, { - "voter": "anonymous", - "rshares": "231809639013" + "rshares": "231809639013", + "voter": "anonymous" }, { - "voter": "butterfly", - "rshares": "1551268628220" + "rshares": "1551268628220", + "voter": "butterfly" }, { - "voter": "riverhead", - "rshares": "4287714457313" + "rshares": "4287714457313", + "voter": "riverhead" }, { - "voter": "badassmother", - "rshares": "1855967006728" + "rshares": "1855967006728", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2053236030423" + "rshares": "2053236030423", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1271804694676" + "rshares": "1271804694676", + "voter": "rossco99" }, { - "voter": "wang", - "rshares": "2206068741954" + "rshares": "2206068741954", + "voter": "wang" }, { - "voter": "jaewoocho", - "rshares": "22391622942" + "rshares": "22391622942", + "voter": "jaewoocho" }, { - "voter": "joseph", - "rshares": "1534654466021" + "rshares": "1534654466021", + "voter": "joseph" }, { - "voter": "recursive2", - "rshares": "466132509421" + "rshares": "466132509421", + "voter": "recursive2" }, { - "voter": "recursive3", - "rshares": "452874558937" + "rshares": "452874558937", + "voter": "recursive3" }, { - "voter": "masteryoda", - "rshares": "636519834128" + "rshares": "636519834128", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120576239931" + "rshares": "3120576239931", + "voter": "recursive" }, { - "voter": "smooth.witness", - "rshares": "5942254587236" + "rshares": "5942254587236", + "voter": "smooth.witness" }, { - "voter": "idol", - "rshares": "8927291120" + "rshares": "8927291120", + "voter": "idol" }, { - "voter": "steemrollin", - "rshares": "800066797130" + "rshares": "800066797130", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "4941942978" + "rshares": "4941942978", + "voter": "sakr" }, { - "voter": "chitty", - "rshares": "284401462010" + "rshares": "284401462010", + "voter": "chitty" }, { - "voter": "unosuke", - "rshares": "75736848691" + "rshares": "75736848691", + "voter": "unosuke" }, { - "voter": "noaommerrr", - "rshares": "481790356914" + "rshares": "481790356914", + "voter": "noaommerrr" }, { - "voter": "jocelyn", - "rshares": "1536592488" + "rshares": "1536592488", + "voter": "jocelyn" }, { - "voter": "acidsun", - "rshares": "85270554570" + "rshares": "85270554570", + "voter": "acidsun" }, { - "voter": "gregory-f", - "rshares": "14502980866" + "rshares": "14502980866", + "voter": "gregory-f" }, { - "voter": "edgeland", - "rshares": "154334962550" + "rshares": "154334962550", + "voter": "edgeland" }, { - "voter": "gregory60", - "rshares": "9028550345" + "rshares": "9028550345", + "voter": "gregory60" }, { - "voter": "gavvet", - "rshares": "1196485708874" + "rshares": "1196485708874", + "voter": "gavvet" }, { - "voter": "eeks", - "rshares": "89897944197" + "rshares": "89897944197", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1511911763" + "rshares": "1511911763", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "122160437" + "rshares": "122160437", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "1471747302" + "rshares": "1471747302", + "voter": "spaninv" }, { - "voter": "elishagh1", - "rshares": "1987313581" + "rshares": "1987313581", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7803257741" + "rshares": "7803257741", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "584279800798" + "rshares": "584279800798", + "voter": "nanzo-scoop" }, { - "voter": "kefkius", - "rshares": "9857825141" + "rshares": "9857825141", + "voter": "kefkius" }, { - "voter": "mummyimperfect", - "rshares": "177417522325" + "rshares": "177417522325", + "voter": "mummyimperfect" }, { - "voter": "alenevaa", - "rshares": "2366347863" + "rshares": "2366347863", + "voter": "alenevaa" }, { - "voter": "coar", - "rshares": "313697862" + "rshares": "313697862", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106635074770" + "rshares": "106635074770", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061264730" + "rshares": "1061264730", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "3187850436" + "rshares": "3187850436", + "voter": "cryptofunk" }, { - "voter": "kodi", - "rshares": "579494558" + "rshares": "579494558", + "voter": "kodi" }, { - "voter": "error", - "rshares": "2003359924" + "rshares": "2003359924", + "voter": "error" }, { - "voter": "andu", - "rshares": "11848125383" + "rshares": "11848125383", + "voter": "andu" }, { - "voter": "cyber", - "rshares": "970579316703" + "rshares": "970579316703", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "59952188311" + "rshares": "59952188311", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "49580154489" + "rshares": "49580154489", + "voter": "ak2020" }, { - "voter": "satoshifund", - "rshares": "3848697023555" + "rshares": "3848697023555", + "voter": "satoshifund" }, { - "voter": "applecrisp", - "rshares": "402139444" + "rshares": "402139444", + "voter": "applecrisp" }, { - "voter": "altoz", - "rshares": "35693164103" + "rshares": "35693164103", + "voter": "altoz" }, { - "voter": "stiletto", - "rshares": "95314034" + "rshares": "95314034", + "voter": "stiletto" }, { - "voter": "will-zewe", - "rshares": "219283354085" + "rshares": "219283354085", + "voter": "will-zewe" }, { - "voter": "lindee-hamner", - "rshares": "12241505540" + "rshares": "12241505540", + "voter": "lindee-hamner" }, { - "voter": "zakharya", - "rshares": "15787522491" + "rshares": "15787522491", + "voter": "zakharya" }, { - "voter": "trogdor", - "rshares": "275008585094" + "rshares": "275008585094", + "voter": "trogdor" }, { - "voter": "tee-em", - "rshares": "5047464747" + "rshares": "5047464747", + "voter": "tee-em" }, { - "voter": "mark-waser", - "rshares": "5821262190" + "rshares": "5821262190", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "118356217412" + "rshares": "118356217412", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "16027781644" + "rshares": "16027781644", + "voter": "kimziv" }, { - "voter": "honeythief", - "rshares": "45359587433" + "rshares": "45359587433", + "voter": "honeythief" }, { - "voter": "emily-cook", - "rshares": "75333038089" + "rshares": "75333038089", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187607792" + "rshares": "2187607792", + "voter": "superfreek" }, { - "voter": "grey580", - "rshares": "17557768630" + "rshares": "17557768630", + "voter": "grey580" }, { - "voter": "ladyclair", - "rshares": "275327756" + "rshares": "275327756", + "voter": "ladyclair" }, { - "voter": "michaellamden68", - "rshares": "3898829337" + "rshares": "3898829337", + "voter": "michaellamden68" }, { - "voter": "thebatchman", - "rshares": "19975706505" + "rshares": "19975706505", + "voter": "thebatchman" }, { - "voter": "orly", - "rshares": "3350419346" + "rshares": "3350419346", + "voter": "orly" }, { - "voter": "riscadox", - "rshares": "5271030976" + "rshares": "5271030976", + "voter": "riscadox" }, { - "voter": "furion", - "rshares": "7380892516" + "rshares": "7380892516", + "voter": "furion" }, { - "voter": "cdubendo", - "rshares": "105911917280" + "rshares": "105911917280", + "voter": "cdubendo" }, { - "voter": "jacor", - "rshares": "156249887947" + "rshares": "156249887947", + "voter": "jacor" }, { - "voter": "steem1653", - "rshares": "2632460141" + "rshares": "2632460141", + "voter": "steem1653" }, { - "voter": "cynetyc", - "rshares": "136322030" + "rshares": "136322030", + "voter": "cynetyc" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "thegoodguy", - "rshares": "5250179537" + "rshares": "5250179537", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "14168005907" + "rshares": "14168005907", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209533734" + "rshares": "4209533734", + "voter": "karen13" }, { - "voter": "noodhoog", - "rshares": "8751103405" + "rshares": "8751103405", + "voter": "noodhoog" }, { - "voter": "hyiparena", - "rshares": "8164924332" + "rshares": "8164924332", + "voter": "hyiparena" }, { - "voter": "milestone", - "rshares": "46859060143" + "rshares": "46859060143", + "voter": "milestone" }, { - "voter": "artific", - "rshares": "21565632626" + "rshares": "21565632626", + "voter": "artific" }, { - "voter": "creemej", - "rshares": "33739169732" + "rshares": "33739169732", + "voter": "creemej" }, { - "voter": "nippel66", - "rshares": "15378221086" + "rshares": "15378221086", + "voter": "nippel66" }, { - "voter": "blueorgy", - "rshares": "163325751551" + "rshares": "163325751551", + "voter": "blueorgy" }, { - "voter": "benjiberigan", - "rshares": "13373880577" + "rshares": "13373880577", + "voter": "benjiberigan" }, { - "voter": "poseidon", - "rshares": "349618451" + "rshares": "349618451", + "voter": "poseidon" }, { - "voter": "smolalit", - "rshares": "7946812357" + "rshares": "7946812357", + "voter": "smolalit" }, { - "voter": "simon.braki.love", - "rshares": "3365797955" + "rshares": "3365797955", + "voter": "simon.braki.love" }, { - "voter": "sharker", - "rshares": "5609578664" + "rshares": "5609578664", + "voter": "sharker" }, { - "voter": "jl777", - "rshares": "204618396015" + "rshares": "204618396015", + "voter": "jl777" }, { - "voter": "oecp85", - "rshares": "1114903893" + "rshares": "1114903893", + "voter": "oecp85" }, { - "voter": "victoria2002", - "rshares": "1218867625" + "rshares": "1218867625", + "voter": "victoria2002" }, { - "voter": "positive", - "rshares": "1226120506" + "rshares": "1226120506", + "voter": "positive" }, { - "voter": "yarly", - "rshares": "1809205777" + "rshares": "1809205777", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "272641013" + "rshares": "272641013", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "273048922" + "rshares": "273048922", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "157733805" + "rshares": "157733805", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "158624349" + "rshares": "158624349", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "90416287" + "rshares": "90416287", + "voter": "yarly7" }, { - "voter": "steemchain", - "rshares": "50626015" + "rshares": "50626015", + "voter": "steemchain" }, { - "voter": "proto", - "rshares": "17267341753" + "rshares": "17267341753", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "2708629529" + "rshares": "2708629529", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "437620869" + "rshares": "437620869", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "234191245" + "rshares": "234191245", + "voter": "yarly11" }, { - "voter": "royalmacro", - "rshares": "8781903824" + "rshares": "8781903824", + "voter": "royalmacro" }, { - "voter": "yarly12", - "rshares": "81879061" + "rshares": "81879061", + "voter": "yarly12" }, { - "voter": "steemster1", - "rshares": "146224042" + "rshares": "146224042", + "voter": "steemster1" }, { - "voter": "dmilash", - "rshares": "3022447454" + "rshares": "3022447454", + "voter": "dmilash" }, { - "voter": "glitterpig", - "rshares": "3353991305" + "rshares": "3353991305", + "voter": "glitterpig" }, { - "voter": "taker", - "rshares": "8734185109" + "rshares": "8734185109", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "7825324952" + "rshares": "7825324952", + "voter": "nekromarinist" }, { - "voter": "sharon", - "rshares": "57873464" + "rshares": "57873464", + "voter": "sharon" }, { - "voter": "lillianjones", - "rshares": "58971492" + "rshares": "58971492", + "voter": "lillianjones" }, { - "voter": "laonie", - "rshares": "95786319596" + "rshares": "95786319596", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "153264363976" + "rshares": "153264363976", + "voter": "twinner" }, { - "voter": "laoyao", - "rshares": "24562882668" + "rshares": "24562882668", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "2664979204" + "rshares": "2664979204", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "19443061295" + "rshares": "19443061295", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "726959262" + "rshares": "726959262", + "voter": "flysaga" }, { - "voter": "asdes", - "rshares": "7707314246" + "rshares": "7707314246", + "voter": "asdes" }, { - "voter": "gmurph", - "rshares": "2501638608" + "rshares": "2501638608", + "voter": "gmurph" }, { - "voter": "stormblaze", - "rshares": "1693568633" + "rshares": "1693568633", + "voter": "stormblaze" }, { - "voter": "denn", - "rshares": "5558177167" + "rshares": "5558177167", + "voter": "denn" }, { - "voter": "midnightoil", - "rshares": "4295114546" + "rshares": "4295114546", + "voter": "midnightoil" }, { - "voter": "kurtbeil", - "rshares": "3157785139" + "rshares": "3157785139", + "voter": "kurtbeil" }, { - "voter": "xiaohui", - "rshares": "10742990382" + "rshares": "10742990382", + "voter": "xiaohui" }, { - "voter": "zahar", - "rshares": "67965196" + "rshares": "67965196", + "voter": "zahar" }, { - "voter": "elfkitchen", - "rshares": "485140088" + "rshares": "485140088", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "99935909954" + "rshares": "99935909954", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5855738054" + "rshares": "5855738054", + "voter": "oflyhigh" }, { - "voter": "randyclemens", - "rshares": "15549176040" + "rshares": "15549176040", + "voter": "randyclemens" }, { - "voter": "dims", - "rshares": "79785139" + "rshares": "79785139", + "voter": "dims" }, { - "voter": "xiaokongcom", - "rshares": "335856762" + "rshares": "335856762", + "voter": "xiaokongcom" }, { - "voter": "future24", - "rshares": "1446509276" + "rshares": "1446509276", + "voter": "future24" }, { - "voter": "msjennifer", - "rshares": "60819615" + "rshares": "60819615", + "voter": "msjennifer" }, { - "voter": "ciao", - "rshares": "54654502" + "rshares": "54654502", + "voter": "ciao" }, { - "voter": "cristi", - "rshares": "13254585210" + "rshares": "13254585210", + "voter": "cristi" }, { - "voter": "steemo", - "rshares": "54217761" + "rshares": "54217761", + "voter": "steemo" }, { - "voter": "xianjun", - "rshares": "677027684" + "rshares": "677027684", + "voter": "xianjun" }, { - "voter": "steema", - "rshares": "54077897" + "rshares": "54077897", + "voter": "steema" }, { - "voter": "sijoittaja", - "rshares": "72192938" + "rshares": "72192938", + "voter": "sijoittaja" }, { - "voter": "confucius", - "rshares": "69662169" + "rshares": "69662169", + "voter": "confucius" }, { - "voter": "miacats", - "rshares": "93807196108" + "rshares": "93807196108", + "voter": "miacats" }, { - "voter": "jarvis", - "rshares": "54909929" + "rshares": "54909929", + "voter": "jarvis" }, { - "voter": "razberrijam", - "rshares": "74131936" + "rshares": "74131936", + "voter": "razberrijam" }, { - "voter": "fortuner", - "rshares": "53106127" + "rshares": "53106127", + "voter": "fortuner" }, { - "voter": "chinadaily", - "rshares": "2022702929" + "rshares": "2022702929", + "voter": "chinadaily" }, { - "voter": "pjheinz", - "rshares": "10471074095" + "rshares": "10471074095", + "voter": "pjheinz" }, { - "voter": "pompe72", - "rshares": "86712034" + "rshares": "86712034", + "voter": "pompe72" }, { - "voter": "pollina", - "rshares": "108403024" + "rshares": "108403024", + "voter": "pollina" }, { - "voter": "johnbyrd", - "rshares": "51877132" + "rshares": "51877132", + "voter": "johnbyrd" }, { - "voter": "thomasaustin", - "rshares": "51860909" + "rshares": "51860909", + "voter": "thomasaustin" }, { - "voter": "thermor", - "rshares": "51859074" + "rshares": "51859074", + "voter": "thermor" }, { - "voter": "ficholl", - "rshares": "51870077" + "rshares": "51870077", + "voter": "ficholl" }, { - "voter": "widell", - "rshares": "51852278" + "rshares": "51852278", + "voter": "widell" }, { - "voter": "movievertigo", - "rshares": "3635091595" + "rshares": "3635091595", + "voter": "movievertigo" }, { - "voter": "revelbrooks", - "rshares": "51481279" + "rshares": "51481279", + "voter": "revelbrooks" }, { - "voter": "netaterra", - "rshares": "2982691190" + "rshares": "2982691190", + "voter": "netaterra" }, { - "voter": "andrewawerdna", - "rshares": "21980957828" + "rshares": "21980957828", + "voter": "andrewawerdna" }, { - "voter": "onetree", - "rshares": "4337454155" + "rshares": "4337454155", + "voter": "onetree" }, { - "voter": "steemitpatina", - "rshares": "4633082667" + "rshares": "4633082667", + "voter": "steemitpatina" }, { - "voter": "curpose", - "rshares": "50416427" + "rshares": "50416427", + "voter": "curpose" }, { - "voter": "dajohns1420", - "rshares": "989363278" + "rshares": "989363278", + "voter": "dajohns1420" }, { - "voter": "runridefly", - "rshares": "2196907450" + "rshares": "2196907450", + "voter": "runridefly" }, { - "voter": "funkywanderer", - "rshares": "1783693666" + "rshares": "1783693666", + "voter": "funkywanderer" }, { - "voter": "richardcrill", - "rshares": "4747321980" + "rshares": "4747321980", + "voter": "richardcrill" }, { - "voter": "jeremyfromwi", - "rshares": "2205784762" + "rshares": "2205784762", + "voter": "jeremyfromwi" }, { - "voter": "troich", - "rshares": "50588612" + "rshares": "50588612", + "voter": "troich" }, { - "voter": "nadin3", - "rshares": "4546391288" + "rshares": "4546391288", + "voter": "nadin3" }, { - "voter": "davidjkelley", - "rshares": "1625414479" + "rshares": "1625414479", + "voter": "davidjkelley" }, { - "voter": "aggroed", - "rshares": "9458733324" + "rshares": "9458733324", + "voter": "aggroed" }, { - "voter": "crion", - "rshares": "50593879" + "rshares": "50593879", + "voter": "crion" }, { - "voter": "greatness", - "rshares": "178419224" + "rshares": "178419224", + "voter": "greatness" }, { - "voter": "hitherise", - "rshares": "50271139" + "rshares": "50271139", + "voter": "hitherise" }, { - "voter": "wiss", - "rshares": "50262756" + "rshares": "50262756", + "voter": "wiss" }, { - "voter": "sponge-bob", - "rshares": "53143607139" + "rshares": "53143607139", + "voter": "sponge-bob" }, { - "voter": "digital-wisdom", - "rshares": "15571125147" + "rshares": "15571125147", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3710973264" + "rshares": "3710973264", + "voter": "ethical-ai" }, { - "voter": "stroully", - "rshares": "51033798" + "rshares": "51033798", + "voter": "stroully" }, { - "voter": "jwaser", - "rshares": "6831389463" + "rshares": "6831389463", + "voter": "jwaser" }, { - "voter": "tatianka", - "rshares": "1064809843" + "rshares": "1064809843", + "voter": "tatianka" }, { - "voter": "thadm", - "rshares": "50712038" + "rshares": "50712038", + "voter": "thadm" }, { - "voter": "prof", - "rshares": "50710305" + "rshares": "50710305", + "voter": "prof" }, { - "voter": "smisi", - "rshares": "1655277599" + "rshares": "1655277599", + "voter": "smisi" }, { - "voter": "yorsens", - "rshares": "50370757" + "rshares": "50370757", + "voter": "yorsens" }, { - "voter": "bane", - "rshares": "50065875" + "rshares": "50065875", + "voter": "bane" }, { - "voter": "vive", - "rshares": "50059754" + "rshares": "50059754", + "voter": "vive" }, { - "voter": "coad", - "rshares": "50054445" + "rshares": "50054445", + "voter": "coad" }, { - "voter": "bwaser", - "rshares": "2617343597" + "rshares": "2617343597", + "voter": "bwaser" }, { - "voter": "sofa", - "rshares": "50840303" + "rshares": "50840303", + "voter": "sofa" }, { - "voter": "panther", - "rshares": "323483227" + "rshares": "323483227", + "voter": "panther" }, { - "voter": "doggnostic", - "rshares": "53871683" + "rshares": "53871683", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "53593366" + "rshares": "53593366", + "voter": "jenny-talls" }, { - "voter": "brains", - "rshares": "54239080444" + "rshares": "54239080444", + "voter": "brains" }, { - "voter": "waldemar-kuhn", - "rshares": "50450987" + "rshares": "50450987", + "voter": "waldemar-kuhn" }, { - "voter": "ailo", - "rshares": "50933404" + "rshares": "50933404", + "voter": "ailo" }, { - "voter": "steemafon", - "rshares": "1387263917" + "rshares": "1387263917", + "voter": "steemafon" }, { - "voter": "bitcoinparadise", - "rshares": "1317649856" + "rshares": "1317649856", + "voter": "bitcoinparadise" }, { - "voter": "chick1", - "rshares": "5753524189" + "rshares": "5753524189", + "voter": "chick1" }, { - "voter": "steempowerwhale", - "rshares": "3338622584" + "rshares": "3338622584", + "voter": "steempowerwhale" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "50516543" + "rshares": "50516543", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "freebornangel", - "rshares": "62515317" + "rshares": "62515317", + "voter": "freebornangel" }, { - "voter": "anomaly", - "rshares": "271440423" + "rshares": "271440423", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401297947" + "rshares": "2401297947", + "voter": "ellepdub" }, { - "voter": "rynow", - "rshares": "120649148" + "rshares": "120649148", + "voter": "rynow" }, { - "voter": "inarix03", - "rshares": "61292139" + "rshares": "61292139", + "voter": "inarix03" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "rayzzz", - "rshares": "50583338" + "rshares": "50583338", + "voter": "rayzzz" }, { - "voter": "herpetologyguy", - "rshares": "12115690216" + "rshares": "12115690216", + "voter": "herpetologyguy" }, { - "voter": "morgan.waser", - "rshares": "4712300251" + "rshares": "4712300251", + "voter": "morgan.waser" }, { - "voter": "steemq", - "rshares": "51230296" + "rshares": "51230296", + "voter": "steemq" }, { - "voter": "motion", - "rshares": "50871059" + "rshares": "50871059", + "voter": "motion" }, { - "voter": "autodesk", - "rshares": "50794039" + "rshares": "50794039", + "voter": "autodesk" }, { - "voter": "yotoh", - "rshares": "50704078" + "rshares": "50704078", + "voter": "yotoh" }, { - "voter": "fenix", - "rshares": "50538694" + "rshares": "50538694", + "voter": "fenix" }, { - "voter": "bapparabi", - "rshares": "1921231770" + "rshares": "1921231770", + "voter": "bapparabi" }, { - "voter": "friends", - "rshares": "50532230" + "rshares": "50532230", + "voter": "friends" }, { - "voter": "albertheijn", - "rshares": "50349676" + "rshares": "50349676", + "voter": "albertheijn" }, { - "voter": "strong-ai", - "rshares": "3609651500" + "rshares": "3609651500", + "voter": "strong-ai" }, { - "voter": "grisha-danunaher", - "rshares": "516546553" + "rshares": "516546553", + "voter": "grisha-danunaher" }, { - "voter": "igtes", - "rshares": "71207873" + "rshares": "71207873", + "voter": "igtes" }, { - "voter": "buffett", - "rshares": "141679752" + "rshares": "141679752", + "voter": "buffett" }, { - "voter": "sjamayee", - "rshares": "213848535" + "rshares": "213848535", + "voter": "sjamayee" }, { - "voter": "witchcraftblog", - "rshares": "453506109" + "rshares": "453506109", + "voter": "witchcraftblog" }, { - "voter": "zaitsevalesyaa", - "rshares": "3265972001" + "rshares": "3265972001", + "voter": "zaitsevalesyaa" }, { - "voter": "acute", - "rshares": "161205518" + "rshares": "161205518", + "voter": "acute" }, { - "voter": "bethesda", - "rshares": "161179339" + "rshares": "161179339", + "voter": "bethesda" }, { - "voter": "realtime", - "rshares": "160957729" + "rshares": "160957729", + "voter": "realtime" }, { - "voter": "dresden", - "rshares": "7187212765" + "rshares": "7187212765", + "voter": "dresden" }, { - "voter": "mgibson", - "rshares": "212371776" + "rshares": "212371776", + "voter": "mgibson" }, { - "voter": "capcom", - "rshares": "156837244" + "rshares": "156837244", + "voter": "capcom" }, { - "voter": "greenpeace", - "rshares": "159506164" + "rshares": "159506164", + "voter": "greenpeace" }, { - "voter": "panic", - "rshares": "159352476" + "rshares": "159352476", + "voter": "panic" }, { - "voter": "fallout", - "rshares": "156054487" + "rshares": "156054487", + "voter": "fallout" }, { - "voter": "xtreme", - "rshares": "159025535" + "rshares": "159025535", + "voter": "xtreme" }, { - "voter": "modernbukowski", - "rshares": "1473342460" + "rshares": "1473342460", + "voter": "modernbukowski" }, { - "voter": "citigroup", - "rshares": "158541985" + "rshares": "158541985", + "voter": "citigroup" }, { - "voter": "goldmatters", - "rshares": "30995434343" + "rshares": "30995434343", + "voter": "goldmatters" }, { - "voter": "dealzgal", - "rshares": "71727340" + "rshares": "71727340", + "voter": "dealzgal" }, { - "voter": "storage", - "rshares": "64921864" + "rshares": "64921864", + "voter": "storage" }, { - "voter": "risabold", - "rshares": "298391608" + "rshares": "298391608", + "voter": "risabold" }, { - "voter": "blackmarket", - "rshares": "55383257" + "rshares": "55383257", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "58454327" + "rshares": "58454327", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "93882016" + "rshares": "93882016", + "voter": "expat" }, { - "voter": "toddemaher1", - "rshares": "126595034" + "rshares": "126595034", + "voter": "toddemaher1" } ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 247, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/herpetology/@gavvet/why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", - "blacklists": [] - }, - { - "post_id": 960430, - "author": "juanmiguelsalas", - "permlink": "how-the-number-pi-sounds-on-a-piano", - "category": "music", - "title": "How The Number Pi Sounds On A Piano?", - "body": "### Have you ever wondered how the number Pi sounds in a piano? \nBecause the musician David Macdonald recorded it with an accuracy of 122 digits after the decimal point. Sounds pretty cool.\n\n
https://youtu.be/wM-x3pUcdeo \n\n
", + "blacklists": [], + "body": "@herpetologyguy\n\nOne of my many tasks as a zoo keeper is connecting people to animals. \n-\n\n\n\n

The museum I work at is unique because we showcase animals that are native to Virginia -- meaning that these are animals people will find close to home, rather than across the ocean in some distant country. This makes my job more crucial in that I am responsible for educating people about the reptiles and amphibians that they will find in their own backyards. And obviously, there\u2019s one group of reptiles that gives people more pause than almost any other animal . . . . 

\n

Snakes. 

\n

http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj   Picture Credit

\n

I do public programs featuring snakes quite frequently.  I believe people should know how to identify local venomous/non-venomous snakes, their role in the environment and how to deal with them when they are in close proximity to our homes.  Usually, I get eager audiences asking great questions.  But, every now and then, I get some idiot who tells me, \u201cI saw that same snake in my backyard! I chopped off its head with a shovel!\u201d

\n

Are they an idiot for killing the snake?  Not necessarily . . . I don\u2019t know the situation behind the encounter. But, only an idiot would walk into a wildlife facility, approach a zoo keeper and proudly declare that they kill the very same animals that the keeper is charged with the care for.  Would you walk into an animal shelter and tell someone working there that you enjoy stomping on puppies?  To us, there\u2019s not much difference\u2026 

\n

http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png   Picture Credit\n

\n

The best we can do in these situations is to try to educate people. This can be difficult because so many people are set in their ways -- plus we have to combat an instinctive fear and prejudice against snakes.  So, I\u2019m going to briefly lay it all out for you and tell you \"Why you shouldn\u2019t kill that snake in your yard.\" 

\n

http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg   Picture Credit

\n

1.  It\u2019s ILLEGAL in most states to kill a wild snake, unless that snake presents an IMMEDIATE threat.  And no, a snake crawling through your yard does not represent a good enough excuse to use force.  We\u2019re talking about a situation where a venomous snake is about to strike and you have no escape route but to fight your way out.  And guess what, that really doesn\u2019t ever happen (barring instances where someone purposefully provokes an animal).  Wildlife and law enforcement agencies are cracking down on people killing snakes, so it\u2019s better to keep yourself out of trouble. 

\n

http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg   Picture Credit

\n

2.  You are putting yourself in harm\u2019s way.  The vast majority of snake bites occur when people attempt to capture or kill snakes.  If left alone, the snake CANNOT hurt you.  Call wildlife services or trained professionals to remove the animal. 

\n

http://www.snakegetters.com/demo/bud-cotton-gg.jpg   Picture Credit

\n

3.  It\u2019s an incredibly beneficial animal, and you\u2019d be foolish to kill it.  Small snakes eat a huge variety of pest insects that destroy gardens, while large snakes typically feed on rats and other rodents that infest our homes.  If you see a large snake hanging around, you have a rodent problem; snakes will not hang around if there is no food source.  To keep snakes from being attracted to your property, do your best to remove any shelter or food sources that would attract rodents.  Some snakes even eat other snakes, and species like the harmless king snake will even feed on venomous species! 

\n

https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg   Picture Credit

\n

4.  Another snake might show up.  Snakes will not typically inhabit the same area in order to avoid competition.  If you kill that harmless rat snake, but you still have a food source nearby, another snake may move in to make use of that source.  The new snake may be another harmless species or something a bit less desirable.  So why not let that harmless snake take care of the infestation for you?

\n

http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg   Picture Credit

\n

Having a snake around can be hugely beneficial to you.  It is a free, environmentally-safe form of pest control.  Snakes, including venomous species, are non-aggressive animals (unless you provoke them) that will actively do their best to AVOID people.  A resident snake will often go unnoticed by homeowners, and most encounters are fleeting glimpses of the snake making a hasty escape.  Remember that snakes have their own unique role in the environment, and regardless of our own fears and feelings towards them, they are a necessary part of life. 

\n

   http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg   Picture Credit

\n\n\nif you liked this also please check out:\nhttps://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians\n\n\n***don't forget to follow @herpetologyguy***", + "category": "herpetology", + "children": 6, + "created": "2016-09-15T18:19:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "music", - "popularscience", - "science", - "art", - "math" - ], "image": [ - "https://img.youtube.com/vi/wM-x3pUcdeo/0.jpg" + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg" ], "links": [ - "https://youtu.be/wM-x3pUcdeo" + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://www.sciencemag.org", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://proactivepestga.com", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://blogs.discovermagazine.com", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.mylakelandnow.com", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "http://www.snakegetters.com", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "https://www.youtube.com/watch?v=ImOj1CKTBqE", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://phenomena.nationalgeographic.com", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg", + "http://westernmassnaturalist.org", + "https://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians" + ], + "tags": [ + "herpetology", + "reptiles", + "snakes", + "science" + ], + "users": [ + "herpetologyguy" ] }, - "created": "2016-09-15T18:40:30", - "updated": "2016-09-15T18:40:30", - "depth": 0, - "children": 0, - "net_rshares": 43578994795442, - "is_paidout": false, - "payout_at": "2016-09-16T19:25:21", - "payout": 114.187, - "pending_payout_value": "114.187 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 68620995119384, + "payout": 274.438, + "payout_at": "2016-09-16T18:44:06", + "pending_payout_value": "274.438 HBD", + "percent_steem_dollars": 10000, + "permlink": "why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", + "post_id": 960258, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 247 + }, + "title": "Why You Don\u2019t Want to Kill that Snake in Your Yard (featuring @herpetologyguy as author)", + "updated": "2016-09-15T18:19:39", + "url": "/herpetology/@gavvet/why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231813287435" + "rshares": "231813287435", + "voter": "anonymous" }, { - "voter": "blocktrades", - "rshares": "39227911522287" + "rshares": "39227911522287", + "voter": "blocktrades" }, { - "voter": "riverhead", - "rshares": "3981536804873" + "rshares": "3981536804873", + "voter": "riverhead" }, { - "voter": "richman", - "rshares": "7803257741" + "rshares": "7803257741", + "voter": "richman" }, { - "voter": "juanmiguelsalas", - "rshares": "55577392625" + "rshares": "55577392625", + "voter": "juanmiguelsalas" }, { - "voter": "skapaneas", - "rshares": "20193334739" + "rshares": "20193334739", + "voter": "skapaneas" }, { - "voter": "fabio", - "rshares": "53411211689" + "rshares": "53411211689", + "voter": "fabio" }, { - "voter": "hobgoblin", - "rshares": "131247634" + "rshares": "131247634", + "voter": "hobgoblin" }, { - "voter": "pompe72", - "rshares": "90251300" + "rshares": "90251300", + "voter": "pompe72" }, { - "voter": "uri-bruck", - "rshares": "62828027" + "rshares": "62828027", + "voter": "uri-bruck" }, { - "voter": "roadhog", - "rshares": "55070425" + "rshares": "55070425", + "voter": "roadhog" }, { - "voter": "doggnostic", - "rshares": "52794249" + "rshares": "52794249", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "52521499" + "rshares": "52521499", + "voter": "jenny-talls" }, { - "voter": "post-successful", - "rshares": "54483699" + "rshares": "54483699", + "voter": "post-successful" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "creativecasualty", - "rshares": "150210020" + "rshares": "150210020", + "voter": "creativecasualty" } ], + "author": "juanmiguelsalas", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 16, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/music/@juanmiguelsalas/how-the-number-pi-sounds-on-a-piano", - "blacklists": [] - }, - { - "post_id": 960450, - "author": "jackgallenhall", - "permlink": "how-to-make-paper-flowers", - "category": "paper", - "title": "How to make Paper Flowers", - "body": "\n

Watching this video and Enjoy.....

\n

https://youtu.be/tP1qbGrMDt8

\n", + "blacklists": [], + "body": "### Have you ever wondered how the number Pi sounds in a piano? \nBecause the musician David Macdonald recorded it with an accuracy of 122 digits after the decimal point. Sounds pretty cool.\n\n
https://youtu.be/wM-x3pUcdeo \n\n
", + "category": "music", + "children": 0, + "created": "2016-09-15T18:40:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "paper", - "flowers" - ], "image": [ - "https://img.youtube.com/vi/tP1qbGrMDt8/0.jpg" + "https://img.youtube.com/vi/wM-x3pUcdeo/0.jpg" ], "links": [ - "https://youtu.be/tP1qbGrMDt8" + "https://youtu.be/wM-x3pUcdeo" + ], + "tags": [ + "music", + "popularscience", + "science", + "art", + "math" ] }, - "created": "2016-09-15T18:42:18", - "updated": "2016-09-15T18:42:18", - "depth": 0, - "children": 0, - "net_rshares": 39465229203961, - "is_paidout": false, - "payout_at": "2016-09-16T19:32:11", - "payout": 94.467, - "pending_payout_value": "94.467 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 43578994795442, + "payout": 114.187, + "payout_at": "2016-09-16T19:25:21", + "pending_payout_value": "114.187 HBD", + "percent_steem_dollars": 10000, + "permlink": "how-the-number-pi-sounds-on-a-piano", + "post_id": 960430, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 16 + }, + "title": "How The Number Pi Sounds On A Piano?", + "updated": "2016-09-15T18:40:30", + "url": "/music/@juanmiguelsalas/how-the-number-pi-sounds-on-a-piano" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231815339768" + "rshares": "231815339768", + "voter": "anonymous" }, { - "voter": "blocktrades", - "rshares": "39228026877320" + "rshares": "39228026877320", + "voter": "blocktrades" }, { - "voter": "jackgallenhall", - "rshares": "1937028254" + "rshares": "1937028254", + "voter": "jackgallenhall" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "zaitsevalesyaa", - "rshares": "3200652561" + "rshares": "3200652561", + "voter": "zaitsevalesyaa" }, { - "voter": "alexandrapop", - "rshares": "150728858" + "rshares": "150728858", + "voter": "alexandrapop" } ], + "author": "jackgallenhall", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 6, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/paper/@jackgallenhall/how-to-make-paper-flowers", - "blacklists": [] - }, - { - "post_id": 960970, - "author": "charlieshrem", - "permlink": "mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem", - "category": "story", - "title": "MackerelCoin & My Socioeconomic Observations from Prison (Part 1 by Charlie Shrem)", - "body": "[![1427721443457173 (1).jpg](https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg)](https://postimg.org/image/5bg38xjjr/)\n\nThe day I went to prison I published an article Bitcoin for Prison. While I didn't get to read or see the article until someone mailed me a physical copy, I found out that my article had started a number of discussions and follow-on commentary.\n\nDuring my stay at Lewisburg Federal Prison Camp I observed many economic theories put into effect by inmates and the prison administration, including Gresham's law, hyperinflation, currency exchange, and others.\n\nThere are two markets in prison, the \"Administration Run Market\" (ARM) and the \"Inmate Run Market\" (IRM). \n\nFor the ARM, family and friends can add money to your account through Western Union, MoneyGram, or mailing a check. These funds get added to your account fairly quickly and can be used almost immediately, however with a strict spending limit. You get 300 minutes of phone use per month for about $70, and email costs about $0.05 a minute and is only available at specific times to specific people. Once a week you can shop in the commissary with a $360 a month spending limit. Further, certain products have limits of how much you can buy, for example the Mackerel (described below). Alternatively, the IRM is where you can buy sandwiches, wraps, pizzas, Italian ices, hire a personal trainer, get a haircut, pay someone to clean your cube, repair a watch, even inmate run caterers for your birthday or going home party. Additionally there were inmate run 'stores' which sold commissary items at a markup since you could only commissary shop once a week.\n\n[![mackerel-203x300.png](https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png)](https://postimg.org/image/iu6qq6eb9/)\n\nThe Mackerel (meaning literal packets of fish) is one of the competing currencies in the IRM. It has utility by being one of the best sources of protein on the compound. You can save it for a long time, the shelf life is a few years. The price is relatively the same across all prisons in the country, so even if you transfer prisons your property comes with you, including your Mackerel which is worth the same somewhere else. Unlike tunafish, chicken packets and protein bars, more people eat Mackerel. Those other food items can be used as currency as well, for example the guy who fixes your watch may only accept protein bars because he hates fish. There was even a form of digital currency being used, which I will discuss in another post.\n\n[![pzyQaHU.png](https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png)](https://postimg.org/image/nfj3tkh87/)\n\nUtility and medium of exchange give it some value but what about scarcity ? If there is a virtually unlimited amount of Mackerel in the IRM, just like the Federal Reserve printing money, there is no scarcity and hyperinflation can occure if it is debased. \n\nUsing a simple equation, 467 (Number of Inmates) * 14 (Maximum Quantity Allowed to Purchase Per Inmate) * 52 (weeks, assuming every inmate buys the maximum mount of Mackerel every week)\n\nSo if in 2015 we assume that the Supply and Velocity grows at the exact same rate with the Price Level and Transactions unchanging, the amount of Mackerel would essentially double on an even inflation rate. This does not factor in the 3 year shelf life, where expired Mackerel becomes a secondary currency. I will discuss in my next post. \n\nI like to believe that the value of money is determined also psychological factors, like a commodity and not only by mechanical or mathematical factors. In prison many of these psychological factors come into play.\n\n[![1867-1967-Ten-10¢-Cents-Commemorative-Centennial.jpg](https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg)](https://postimg.org/image/ceiwrfinr/)\n\nMost people use Mackerel as a day-to-day currency for normal transactions, but for reasons I will explain in my next post, they are not the best long term store of value which is important for a currency. For longer term store of value, many inmates use stamps. Stamps have a set rate by the United States Postal Service and have similar characteristics as Mackerel aside for being edible. However, with the introduction of email on the compound many people stopped writing letters as email is cheaper and faster therefore reducing stamps ability to be a transactional currency as a majority of the inmates have no use for them. As a store of value they still hold weight because they are small and easy to store large amounts, while Mackerel is not.\n\nThe biggest value stamps have is that they can be mailed home and your family can redeem them for dollars as the local post office, but that feature can be stopped by better mail screening and overnight the stamp could lose its store of value utility. \n\nIn my next post I will discuss how currency exchangers work, what happens when the prison administration purposely floods the market, and how a secondary currency was created out of expired Mackerel called “Money Maks”", + "blacklists": [], + "body": "\n

Watching this video and Enjoy.....

\n

https://youtu.be/tP1qbGrMDt8

\n", + "category": "paper", + "children": 0, + "created": "2016-09-15T18:42:18", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "story", - "life", - "bitcoin" - ], "image": [ - "https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg", - "https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png", - "https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png", - "https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg" + "https://img.youtube.com/vi/tP1qbGrMDt8/0.jpg" ], "links": [ - "https://postimg.org/image/5bg38xjjr/", - "https://postimg.org/image/iu6qq6eb9/", - "https://postimg.org/image/nfj3tkh87/", - "https://postimg.org/image/ceiwrfinr/" + "https://youtu.be/tP1qbGrMDt8" + ], + "tags": [ + "paper", + "flowers" ] }, - "created": "2016-09-15T19:39:15", - "updated": "2016-09-15T19:39:15", - "depth": 0, - "children": 2, - "net_rshares": 16647533396431, - "is_paidout": false, - "payout_at": "2016-09-16T19:42:59", - "payout": 18.929, - "pending_payout_value": "18.929 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 39465229203961, + "payout": 94.467, + "payout_at": "2016-09-16T19:32:11", + "pending_payout_value": "94.467 HBD", + "percent_steem_dollars": 10000, + "permlink": "how-to-make-paper-flowers", + "post_id": 960450, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 6 + }, + "title": "How to make Paper Flowers", + "updated": "2016-09-15T18:42:18", + "url": "/paper/@jackgallenhall/how-to-make-paper-flowers" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231815399848" + "rshares": "231815399848", + "voter": "anonymous" }, { - "voter": "badassmother", - "rshares": "1856124515188" + "rshares": "1856124515188", + "voter": "badassmother" }, { - "voter": "xeroc", - "rshares": "1950776472028" + "rshares": "1950776472028", + "voter": "xeroc" }, { - "voter": "recursive2", - "rshares": "466189427281" + "rshares": "466189427281", + "voter": "recursive2" }, { - "voter": "lee2", - "rshares": "440845842" + "rshares": "440845842", + "voter": "lee2" }, { - "voter": "lee3", - "rshares": "26932369613" + "rshares": "26932369613", + "voter": "lee3" }, { - "voter": "lee4", - "rshares": "8677356665" + "rshares": "8677356665", + "voter": "lee4" }, { - "voter": "lee5", - "rshares": "22149156424" + "rshares": "22149156424", + "voter": "lee5" }, { - "voter": "fkn", - "rshares": "24694558802" + "rshares": "24694558802", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "468295495" + "rshares": "468295495", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "5641891453" + "rshares": "5641891453", + "voter": "spaninv" }, { - "voter": "instructor2121", - "rshares": "31733693573" + "rshares": "31733693573", + "voter": "instructor2121" }, { - "voter": "teamsteem", - "rshares": "319978787382" + "rshares": "319978787382", + "voter": "teamsteem" }, { - "voter": "elishagh1", - "rshares": "32459455171" + "rshares": "32459455171", + "voter": "elishagh1" }, { - "voter": "nanzo-scoop", - "rshares": "584301957019" + "rshares": "584301957019", + "voter": "nanzo-scoop" }, { - "voter": "steve-walschot", - "rshares": "183455862202" + "rshares": "183455862202", + "voter": "steve-walschot" }, { - "voter": "mummyimperfect", - "rshares": "177422979921" + "rshares": "177422979921", + "voter": "mummyimperfect" }, { - "voter": "murh", - "rshares": "1061309796" + "rshares": "1061309796", + "voter": "murh" }, { - "voter": "ranko-k", - "rshares": "40553528416" + "rshares": "40553528416", + "voter": "ranko-k" }, { - "voter": "cyber", - "rshares": "970610699889" + "rshares": "970610699889", + "voter": "cyber" }, { - "voter": "ak2020", - "rshares": "49581638772" + "rshares": "49581638772", + "voter": "ak2020" }, { - "voter": "justtryme90", - "rshares": "61303208719" + "rshares": "61303208719", + "voter": "justtryme90" }, { - "voter": "drinkzya", - "rshares": "35244223389" + "rshares": "35244223389", + "voter": "drinkzya" }, { - "voter": "satoshifund", - "rshares": "3848697023555" + "rshares": "3848697023555", + "voter": "satoshifund" }, { - "voter": "stiletto", - "rshares": "365370465" + "rshares": "365370465", + "voter": "stiletto" }, { - "voter": "thecryptodrive", - "rshares": "55960464168" + "rshares": "55960464168", + "voter": "thecryptodrive" }, { - "voter": "trogdor", - "rshares": "275083790158" + "rshares": "275083790158", + "voter": "trogdor" }, { - "voter": "tee-em", - "rshares": "5047565689" + "rshares": "5047565689", + "voter": "tee-em" }, { - "voter": "michaelx", - "rshares": "31346657524" + "rshares": "31346657524", + "voter": "michaelx" }, { - "voter": "kimziv", - "rshares": "203028922423" + "rshares": "203028922423", + "voter": "kimziv" }, { - "voter": "honeythief", - "rshares": "45359587433" + "rshares": "45359587433", + "voter": "honeythief" }, { - "voter": "emily-cook", - "rshares": "75335893384" + "rshares": "75335893384", + "voter": "emily-cook" }, { - "voter": "cryptoiskey", - "rshares": "34073741916" + "rshares": "34073741916", + "voter": "cryptoiskey" }, { - "voter": "mrhankeh", - "rshares": "484636799" + "rshares": "484636799", + "voter": "mrhankeh" }, { - "voter": "clement", - "rshares": "36267999733" + "rshares": "36267999733", + "voter": "clement" }, { - "voter": "isteemit", - "rshares": "49807514764" + "rshares": "49807514764", + "voter": "isteemit" }, { - "voter": "bacchist", - "rshares": "68450624110" + "rshares": "68450624110", + "voter": "bacchist" }, { - "voter": "venuspcs", - "rshares": "52094130602" + "rshares": "52094130602", + "voter": "venuspcs" }, { - "voter": "roelandp", - "rshares": "462747522217" + "rshares": "462747522217", + "voter": "roelandp" }, { - "voter": "riscadox", - "rshares": "5271256317" + "rshares": "5271256317", + "voter": "riscadox" }, { - "voter": "furion", - "rshares": "118094280271" + "rshares": "118094280271", + "voter": "furion" }, { - "voter": "barbara2", - "rshares": "578386960" + "rshares": "578386960", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "642869652" + "rshares": "642869652", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "594982040" + "rshares": "594982040", + "voter": "doge4lyf" }, { - "voter": "ausbitbank", - "rshares": "14886225123" + "rshares": "14886225123", + "voter": "ausbitbank" }, { - "voter": "steem1653", - "rshares": "2531219186" + "rshares": "2531219186", + "voter": "steem1653" }, { - "voter": "anyx", - "rshares": "185306737687" + "rshares": "185306737687", + "voter": "anyx" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "thegoodguy", - "rshares": "5250267854" + "rshares": "5250267854", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "13847065167" + "rshares": "13847065167", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209550858" + "rshares": "4209550858", + "voter": "karen13" }, { - "voter": "wildchild", - "rshares": "89580632" + "rshares": "89580632", + "voter": "wildchild" }, { - "voter": "nippel66", - "rshares": "14455781997" + "rshares": "14455781997", + "voter": "nippel66" }, { - "voter": "poseidon", - "rshares": "4428694472" + "rshares": "4428694472", + "voter": "poseidon" }, { - "voter": "bitcoiner", - "rshares": "3709674578" + "rshares": "3709674578", + "voter": "bitcoiner" }, { - "voter": "zaebars", - "rshares": "30989849211" + "rshares": "30989849211", + "voter": "zaebars" }, { - "voter": "positive", - "rshares": "20026634941" + "rshares": "20026634941", + "voter": "positive" }, { - "voter": "raymonjohnstone", - "rshares": "799615699" + "rshares": "799615699", + "voter": "raymonjohnstone" }, { - "voter": "steemchain", - "rshares": "50626015" + "rshares": "50626015", + "voter": "steemchain" }, { - "voter": "sisterholics", - "rshares": "34310997040" + "rshares": "34310997040", + "voter": "sisterholics" }, { - "voter": "tygergamer", - "rshares": "4150694741" + "rshares": "4150694741", + "voter": "tygergamer" }, { - "voter": "fnait", - "rshares": "674282213" + "rshares": "674282213", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "599033376" + "rshares": "599033376", + "voter": "keepcalmand" }, { - "voter": "sisters", - "rshares": "21249911268" + "rshares": "21249911268", + "voter": "sisters" }, { - "voter": "steemdrive", - "rshares": "135241026997" + "rshares": "135241026997", + "voter": "steemdrive" }, { - "voter": "gomeravibz", - "rshares": "50580942653" + "rshares": "50580942653", + "voter": "gomeravibz" }, { - "voter": "merej99", - "rshares": "2157263872" + "rshares": "2157263872", + "voter": "merej99" }, { - "voter": "laonie", - "rshares": "1181429894047" + "rshares": "1181429894047", + "voter": "laonie" }, { - "voter": "laonie1", - "rshares": "22969530313" + "rshares": "22969530313", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "23486336661" + "rshares": "23486336661", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "23494631758" + "rshares": "23494631758", + "voter": "laonie3" }, { - "voter": "myfirst", - "rshares": "41308723727" + "rshares": "41308723727", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "246291037911" + "rshares": "246291037911", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "9208584487" + "rshares": "9208584487", + "voter": "flysaga" }, { - "voter": "brendio", - "rshares": "5831884826" + "rshares": "5831884826", + "voter": "brendio" }, { - "voter": "midnightoil", - "rshares": "54407421509" + "rshares": "54407421509", + "voter": "midnightoil" }, { - "voter": "ullikume", - "rshares": "4190432650" + "rshares": "4190432650", + "voter": "ullikume" }, { - "voter": "marinaz", - "rshares": "538023492" + "rshares": "538023492", + "voter": "marinaz" }, { - "voter": "michellek", - "rshares": "50577648" + "rshares": "50577648", + "voter": "michellek" }, { - "voter": "laonie4", - "rshares": "23490308796" + "rshares": "23490308796", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "23488038283" + "rshares": "23488038283", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "23485060556" + "rshares": "23485060556", + "voter": "laonie6" }, { - "voter": "laonie7", - "rshares": "23480907119" + "rshares": "23480907119", + "voter": "laonie7" }, { - "voter": "kurtbeil", - "rshares": "3157899297" + "rshares": "3157899297", + "voter": "kurtbeil" }, { - "voter": "laonie8", - "rshares": "23477459041" + "rshares": "23477459041", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "23474757706" + "rshares": "23474757706", + "voter": "laonie9" }, { - "voter": "steemleak", - "rshares": "2370331931" + "rshares": "2370331931", + "voter": "steemleak" }, { - "voter": "xiaohui", - "rshares": "136086029693" + "rshares": "136086029693", + "voter": "xiaohui" }, { - "voter": "bigsambucca", - "rshares": "88206053" + "rshares": "88206053", + "voter": "bigsambucca" }, { - "voter": "elfkitchen", - "rshares": "6630568148" + "rshares": "6630568148", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "99940391922" + "rshares": "99940391922", + "voter": "joele" }, { - "voter": "paynode", - "rshares": "2354334523" + "rshares": "2354334523", + "voter": "paynode" }, { - "voter": "xiaokongcom", - "rshares": "4254379739" + "rshares": "4254379739", + "voter": "xiaokongcom" }, { - "voter": "xianjun", - "rshares": "8576106418" + "rshares": "8576106418", + "voter": "xianjun" }, { - "voter": "stevescriber", - "rshares": "72135954" + "rshares": "72135954", + "voter": "stevescriber" }, { - "voter": "loli", - "rshares": "51247757" + "rshares": "51247757", + "voter": "loli" }, { - "voter": "nano2nd", - "rshares": "52419023" + "rshares": "52419023", + "voter": "nano2nd" }, { - "voter": "microluck", - "rshares": "576343622" + "rshares": "576343622", + "voter": "microluck" }, { - "voter": "cryptoblu", - "rshares": "60225791" + "rshares": "60225791", + "voter": "cryptoblu" }, { - "voter": "instructor", - "rshares": "60219243" + "rshares": "60219243", + "voter": "instructor" }, { - "voter": "dollarvigilante", - "rshares": "802020725261" + "rshares": "802020725261", + "voter": "dollarvigilante" }, { - "voter": "lamech-m", - "rshares": "3977281078" + "rshares": "3977281078", + "voter": "lamech-m" }, { - "voter": "laonie10", - "rshares": "23468551300" + "rshares": "23468551300", + "voter": "laonie10" }, { - "voter": "garywilson", - "rshares": "8536250240" + "rshares": "8536250240", + "voter": "garywilson" }, { - "voter": "bitchplease", - "rshares": "50829277" + "rshares": "50829277", + "voter": "bitchplease" }, { - "voter": "barrycooper", - "rshares": "99130059443" + "rshares": "99130059443", + "voter": "barrycooper" }, { - "voter": "hilarski", - "rshares": "31611733517" + "rshares": "31611733517", + "voter": "hilarski" }, { - "voter": "shadowspub", - "rshares": "2029369552" + "rshares": "2029369552", + "voter": "shadowspub" }, { - "voter": "rimann", - "rshares": "8390958262" + "rshares": "8390958262", + "voter": "rimann" }, { - "voter": "rickmiller", - "rshares": "56999917" + "rshares": "56999917", + "voter": "rickmiller" }, { - "voter": "nulliusinverba", - "rshares": "5401518277" + "rshares": "5401518277", + "voter": "nulliusinverba" }, { - "voter": "mikehere", - "rshares": "22792452702" + "rshares": "22792452702", + "voter": "mikehere" }, { - "voter": "laonie11", - "rshares": "22621847215" + "rshares": "22621847215", + "voter": "laonie11" }, { - "voter": "xanoxt", - "rshares": "3411072843" + "rshares": "3411072843", + "voter": "xanoxt" }, { - "voter": "greatness", - "rshares": "174778016" + "rshares": "174778016", + "voter": "greatness" }, { - "voter": "sponge-bob", - "rshares": "26574132419" + "rshares": "26574132419", + "voter": "sponge-bob" }, { - "voter": "l0k1", - "rshares": "4044803243" + "rshares": "4044803243", + "voter": "l0k1" }, { - "voter": "freesteem", - "rshares": "50798127" + "rshares": "50798127", + "voter": "freesteem" }, { - "voter": "zettar", - "rshares": "2353724275" + "rshares": "2353724275", + "voter": "zettar" }, { - "voter": "smisi", - "rshares": "1655277599" + "rshares": "1655277599", + "voter": "smisi" }, { - "voter": "lighter", - "rshares": "53413720" + "rshares": "53413720", + "voter": "lighter" }, { - "voter": "maarnio", - "rshares": "258239323" + "rshares": "258239323", + "voter": "maarnio" }, { - "voter": "analyzethis", - "rshares": "50931848" + "rshares": "50931848", + "voter": "analyzethis" }, { - "voter": "dexter-k", - "rshares": "5934390558" + "rshares": "5934390558", + "voter": "dexter-k" }, { - "voter": "doggnostic", - "rshares": "51716816" + "rshares": "51716816", + "voter": "doggnostic" }, { - "voter": "ct-gurus", - "rshares": "659649765" + "rshares": "659649765", + "voter": "ct-gurus" }, { - "voter": "jenny-talls", - "rshares": "51449632" + "rshares": "51449632", + "voter": "jenny-talls" }, { - "voter": "charlieshrem", - "rshares": "415654681468" + "rshares": "415654681468", + "voter": "charlieshrem" }, { - "voter": "tracemayer", - "rshares": "63546443837" + "rshares": "63546443837", + "voter": "tracemayer" }, { - "voter": "brains", - "rshares": "26568286493" + "rshares": "26568286493", + "voter": "brains" }, { - "voter": "alwayzgame", - "rshares": "1702730509" + "rshares": "1702730509", + "voter": "alwayzgame" }, { - "voter": "bitcoinparadise", - "rshares": "1282974860" + "rshares": "1282974860", + "voter": "bitcoinparadise" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "steemsquad", - "rshares": "2127783725" + "rshares": "2127783725", + "voter": "steemsquad" }, { - "voter": "inarix03", - "rshares": "61292139" + "rshares": "61292139", + "voter": "inarix03" }, { - "voter": "littlemorelove", - "rshares": "431087473" + "rshares": "431087473", + "voter": "littlemorelove" }, { - "voter": "mbizryu0", - "rshares": "51636819" + "rshares": "51636819", + "voter": "mbizryu0" }, { - "voter": "archij", - "rshares": "51631638" + "rshares": "51631638", + "voter": "archij" }, { - "voter": "movie7283", - "rshares": "51530815" + "rshares": "51530815", + "voter": "movie7283" }, { - "voter": "ppcompp2", - "rshares": "51527606" + "rshares": "51527606", + "voter": "ppcompp2" }, { - "voter": "jj1968", - "rshares": "51520427" + "rshares": "51520427", + "voter": "jj1968" }, { - "voter": "cineger", - "rshares": "51516489" + "rshares": "51516489", + "voter": "cineger" }, { - "voter": "sksduddk", - "rshares": "51497383" + "rshares": "51497383", + "voter": "sksduddk" }, { - "voter": "jjc0719", - "rshares": "51490214" + "rshares": "51490214", + "voter": "jjc0719" }, { - "voter": "teemsteem", - "rshares": "50233449" + "rshares": "50233449", + "voter": "teemsteem" }, { - "voter": "sjytoy", - "rshares": "50677982" + "rshares": "50677982", + "voter": "sjytoy" }, { - "voter": "shy2675", - "rshares": "50676799" + "rshares": "50676799", + "voter": "shy2675" }, { - "voter": "suance1009", - "rshares": "50675747" + "rshares": "50675747", + "voter": "suance1009" }, { - "voter": "hasqmd", - "rshares": "50674176" + "rshares": "50674176", + "voter": "hasqmd" }, { - "voter": "fischer67", - "rshares": "50673722" + "rshares": "50673722", + "voter": "fischer67" }, { - "voter": "elya1", - "rshares": "50672116" + "rshares": "50672116", + "voter": "elya1" }, { - "voter": "xclamp45", - "rshares": "50632828" + "rshares": "50632828", + "voter": "xclamp45" }, { - "voter": "likeagame1", - "rshares": "50618471" + "rshares": "50618471", + "voter": "likeagame1" }, { - "voter": "apple4006", - "rshares": "50616898" + "rshares": "50616898", + "voter": "apple4006" }, { - "voter": "bigbell61", - "rshares": "50615195" + "rshares": "50615195", + "voter": "bigbell61" }, { - "voter": "dolpo777", - "rshares": "50612850" + "rshares": "50612850", + "voter": "dolpo777" }, { - "voter": "dongperi", - "rshares": "50611931" + "rshares": "50611931", + "voter": "dongperi" }, { - "voter": "lion2byung", - "rshares": "50610620" + "rshares": "50610620", + "voter": "lion2byung" }, { - "voter": "cwj1973", - "rshares": "50610002" + "rshares": "50610002", + "voter": "cwj1973" }, { - "voter": "psj212", - "rshares": "50609329" + "rshares": "50609329", + "voter": "psj212" }, { - "voter": "owithed2", - "rshares": "50608661" + "rshares": "50608661", + "voter": "owithed2" }, { - "voter": "fiself2", - "rshares": "50606929" + "rshares": "50606929", + "voter": "fiself2" }, { - "voter": "trablinever1", - "rshares": "50605131" + "rshares": "50605131", + "voter": "trablinever1" }, { - "voter": "nuals1940", - "rshares": "50603861" + "rshares": "50603861", + "voter": "nuals1940" }, { - "voter": "fanceth2", - "rshares": "50602310" + "rshares": "50602310", + "voter": "fanceth2" }, { - "voter": "forea1995", - "rshares": "50355943" + "rshares": "50355943", + "voter": "forea1995" }, { - "voter": "holow1968", - "rshares": "50354561" + "rshares": "50354561", + "voter": "holow1968" }, { - "voter": "peaces1952", - "rshares": "50353969" + "rshares": "50353969", + "voter": "peaces1952" }, { - "voter": "himighar2", - "rshares": "50346496" + "rshares": "50346496", + "voter": "himighar2" }, { - "voter": "aromese1974", - "rshares": "50345607" + "rshares": "50345607", + "voter": "aromese1974" }, { - "voter": "runis1943", - "rshares": "50344921" + "rshares": "50344921", + "voter": "runis1943" }, { - "voter": "tong1962", - "rshares": "50344067" + "rshares": "50344067", + "voter": "tong1962" }, { - "voter": "hishe1997", - "rshares": "50340744" + "rshares": "50340744", + "voter": "hishe1997" }, { - "voter": "cwbrooch", - "rshares": "1979857275" + "rshares": "1979857275", + "voter": "cwbrooch" }, { - "voter": "ninjapainter", - "rshares": "52329350" + "rshares": "52329350", + "voter": "ninjapainter" }, { - "voter": "buit1989", - "rshares": "51393104" + "rshares": "51393104", + "voter": "buit1989" }, { - "voter": "imadecoult1", - "rshares": "51389981" + "rshares": "51389981", + "voter": "imadecoult1" }, { - "voter": "infees2", - "rshares": "51387526" + "rshares": "51387526", + "voter": "infees2" }, { - "voter": "suar1997", - "rshares": "51384095" + "rshares": "51384095", + "voter": "suar1997" }, { - "voter": "sobsell93", - "rshares": "51382067" + "rshares": "51382067", + "voter": "sobsell93" }, { - "voter": "stroned96", - "rshares": "51380710" + "rshares": "51380710", + "voter": "stroned96" }, { - "voter": "drethe", - "rshares": "51378107" + "rshares": "51378107", + "voter": "drethe" }, { - "voter": "qualwas", - "rshares": "51377505" + "rshares": "51377505", + "voter": "qualwas" }, { - "voter": "phent1994", - "rshares": "51376367" + "rshares": "51376367", + "voter": "phent1994" }, { - "voter": "baboyes", - "rshares": "51375075" + "rshares": "51375075", + "voter": "baboyes" }, { - "voter": "whor1973", - "rshares": "51373532" + "rshares": "51373532", + "voter": "whor1973" }, { - "voter": "youreforn", - "rshares": "51372739" + "rshares": "51372739", + "voter": "youreforn" }, { - "voter": "voll1981", - "rshares": "51371902" + "rshares": "51371902", + "voter": "voll1981" }, { - "voter": "copenty2", - "rshares": "51370717" + "rshares": "51370717", + "voter": "copenty2" }, { - "voter": "maject2", - "rshares": "51369717" + "rshares": "51369717", + "voter": "maject2" }, { - "voter": "coust1997", - "rshares": "51367233" + "rshares": "51367233", + "voter": "coust1997" }, { - "voter": "busionea84", - "rshares": "51366398" + "rshares": "51366398", + "voter": "busionea84" }, { - "voter": "therver1", - "rshares": "51365174" + "rshares": "51365174", + "voter": "therver1" }, { - "voter": "appirdsmanne1990", - "rshares": "51364022" + "rshares": "51364022", + "voter": "appirdsmanne1990" }, { - "voter": "alienighted87", - "rshares": "51362967" + "rshares": "51362967", + "voter": "alienighted87" }, { - "voter": "anity1994", - "rshares": "51359746" + "rshares": "51359746", + "voter": "anity1994" }, { - "voter": "themphe1", - "rshares": "59959066" + "rshares": "59959066", + "voter": "themphe1" }, { - "voter": "abild1988", - "rshares": "51355864" + "rshares": "51355864", + "voter": "abild1988" }, { - "voter": "spoll1973", - "rshares": "51353540" + "rshares": "51353540", + "voter": "spoll1973" }, { - "voter": "afteld1", - "rshares": "66162576" + "rshares": "66162576", + "voter": "afteld1" }, { - "voter": "rusteemitblog", - "rshares": "1630374239" + "rshares": "1630374239", + "voter": "rusteemitblog" }, { - "voter": "goldmatters", - "rshares": "31008332335" + "rshares": "31008332335", + "voter": "goldmatters" }, { - "voter": "dealzgal", - "rshares": "68608760" + "rshares": "68608760", + "voter": "dealzgal" }, { - "voter": "storage", - "rshares": "64921864" + "rshares": "64921864", + "voter": "storage" }, { - "voter": "blackmarket", - "rshares": "55388665" + "rshares": "55388665", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "58454327" + "rshares": "58454327", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "93882016" + "rshares": "93882016", + "voter": "expat" }, { - "voter": "techslut", - "rshares": "188217107" + "rshares": "188217107", + "voter": "techslut" }, { - "voter": "steemtrail", - "rshares": "137659447" + "rshares": "137659447", + "voter": "steemtrail" }, { - "voter": "steemlift", - "rshares": "3035584586" + "rshares": "3035584586", + "voter": "steemlift" }, { - "voter": "toddemaher1", - "rshares": "123580867" + "rshares": "123580867", + "voter": "toddemaher1" } ], + "author": "charlieshrem", + "author_payout_value": "0.000 HBD", "author_reputation": 67.32, - "stats": { - "hide": false, - "gray": false, - "total_votes": 211, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/story/@charlieshrem/mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem", - "blacklists": [] - }, - { - "post_id": 960622, - "author": "healthyrecipes", - "permlink": "spaghetti-squash-burrito-bowl", - "category": "healthyliving", - "title": "Spaghetti Squash 'Burrito' Bowl", - "body": "\n

  Good afternoon Steemit, I am officially done breast feeding and am ready to get rid of the last few pounds that are still hanging on from my pregnancy so I have been trying out different ways to cut calories from my diet without loosing flavor. Spaghetti squash is a great substitute for pasta or in this case rice. Spaghetti squash has about 40 calories per cup while rice has upwards of 200. It also has fiber, potassium and vitamins A and C.  

\n

For chicken:

\n
    \n
  • 1lb chicken breast
  • \n
  • 1 tsp ancho chili
  • \n
  • 1 tbs olive oil
  • \n
  • 1 lime (juice and zest)
  • \n
  • 1 tsp minced garlic
  • \n
\n

For squash:

\n
    \n
  • 1 spaghetti squash (cut in half length wise and seeds removed)
  • \n
  • 1 tsp olive oil
  • \n
  • salt and pepper to taste
  • \n
\n

Preheat oven to 425F.  In a baking dish, sprinkle chicken with ancho chili.  Mix together oil, lime zest and juice and garlic.  Pour mixture over chicken.  Drizzle olive oil over squash and season with salt and pepper.  Place cut side down on baking sheet.  Bake a together for 30 min.  Shred squash with a fork and put in the bottom of bowls.  Shred chicken with forks and put on top of squash.  I added cheese, salsa and guacamole to ours but you can top with anything you like.  Enjoy!

\n

https://puu.sh/rcmnK/c059def2e0.png

\n", + "blacklists": [], + "body": "[![1427721443457173 (1).jpg](https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg)](https://postimg.org/image/5bg38xjjr/)\n\nThe day I went to prison I published an article Bitcoin for Prison. While I didn't get to read or see the article until someone mailed me a physical copy, I found out that my article had started a number of discussions and follow-on commentary.\n\nDuring my stay at Lewisburg Federal Prison Camp I observed many economic theories put into effect by inmates and the prison administration, including Gresham's law, hyperinflation, currency exchange, and others.\n\nThere are two markets in prison, the \"Administration Run Market\" (ARM) and the \"Inmate Run Market\" (IRM). \n\nFor the ARM, family and friends can add money to your account through Western Union, MoneyGram, or mailing a check. These funds get added to your account fairly quickly and can be used almost immediately, however with a strict spending limit. You get 300 minutes of phone use per month for about $70, and email costs about $0.05 a minute and is only available at specific times to specific people. Once a week you can shop in the commissary with a $360 a month spending limit. Further, certain products have limits of how much you can buy, for example the Mackerel (described below). Alternatively, the IRM is where you can buy sandwiches, wraps, pizzas, Italian ices, hire a personal trainer, get a haircut, pay someone to clean your cube, repair a watch, even inmate run caterers for your birthday or going home party. Additionally there were inmate run 'stores' which sold commissary items at a markup since you could only commissary shop once a week.\n\n[![mackerel-203x300.png](https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png)](https://postimg.org/image/iu6qq6eb9/)\n\nThe Mackerel (meaning literal packets of fish) is one of the competing currencies in the IRM. It has utility by being one of the best sources of protein on the compound. You can save it for a long time, the shelf life is a few years. The price is relatively the same across all prisons in the country, so even if you transfer prisons your property comes with you, including your Mackerel which is worth the same somewhere else. Unlike tunafish, chicken packets and protein bars, more people eat Mackerel. Those other food items can be used as currency as well, for example the guy who fixes your watch may only accept protein bars because he hates fish. There was even a form of digital currency being used, which I will discuss in another post.\n\n[![pzyQaHU.png](https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png)](https://postimg.org/image/nfj3tkh87/)\n\nUtility and medium of exchange give it some value but what about scarcity ? If there is a virtually unlimited amount of Mackerel in the IRM, just like the Federal Reserve printing money, there is no scarcity and hyperinflation can occure if it is debased. \n\nUsing a simple equation, 467 (Number of Inmates) * 14 (Maximum Quantity Allowed to Purchase Per Inmate) * 52 (weeks, assuming every inmate buys the maximum mount of Mackerel every week)\n\nSo if in 2015 we assume that the Supply and Velocity grows at the exact same rate with the Price Level and Transactions unchanging, the amount of Mackerel would essentially double on an even inflation rate. This does not factor in the 3 year shelf life, where expired Mackerel becomes a secondary currency. I will discuss in my next post. \n\nI like to believe that the value of money is determined also psychological factors, like a commodity and not only by mechanical or mathematical factors. In prison many of these psychological factors come into play.\n\n[![1867-1967-Ten-10\u00a2-Cents-Commemorative-Centennial.jpg](https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg)](https://postimg.org/image/ceiwrfinr/)\n\nMost people use Mackerel as a day-to-day currency for normal transactions, but for reasons I will explain in my next post, they are not the best long term store of value which is important for a currency. For longer term store of value, many inmates use stamps. Stamps have a set rate by the United States Postal Service and have similar characteristics as Mackerel aside for being edible. However, with the introduction of email on the compound many people stopped writing letters as email is cheaper and faster therefore reducing stamps ability to be a transactional currency as a majority of the inmates have no use for them. As a store of value they still hold weight because they are small and easy to store large amounts, while Mackerel is not.\n\nThe biggest value stamps have is that they can be mailed home and your family can redeem them for dollars as the local post office, but that feature can be stopped by better mail screening and overnight the stamp could lose its store of value utility. \n\nIn my next post I will discuss how currency exchangers work, what happens when the prison administration purposely floods the market, and how a secondary currency was created out of expired Mackerel called \u201cMoney Maks\u201d", + "category": "story", + "children": 2, + "created": "2016-09-15T19:39:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "healthyliving", - "dinner", - "squash", - "recipes" - ], "image": [ - "https://puu.sh/rcmnK/c059def2e0.png" + "https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg", + "https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png", + "https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png", + "https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg" + ], + "links": [ + "https://postimg.org/image/5bg38xjjr/", + "https://postimg.org/image/iu6qq6eb9/", + "https://postimg.org/image/nfj3tkh87/", + "https://postimg.org/image/ceiwrfinr/" + ], + "tags": [ + "story", + "life", + "bitcoin" ] }, - "created": "2016-09-15T19:01:15", - "updated": "2016-09-15T19:01:15", - "depth": 0, - "children": 3, - "net_rshares": 24948140852996, - "is_paidout": false, - "payout_at": "2016-09-16T19:16:19", - "payout": 39.772, - "pending_payout_value": "39.772 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 16647533396431, + "payout": 18.929, + "payout_at": "2016-09-16T19:42:59", + "pending_payout_value": "18.929 HBD", + "percent_steem_dollars": 10000, + "permlink": "mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem", + "post_id": 960970, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 211 + }, + "title": "MackerelCoin & My Socioeconomic Observations from Prison (Part 1 by Charlie Shrem)", + "updated": "2016-09-15T19:39:15", + "url": "/story/@charlieshrem/mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231813191302" + "rshares": "231813191302", + "voter": "anonymous" }, { - "voter": "riverhead", - "rshares": "4287714457313" + "rshares": "4287714457313", + "voter": "riverhead" }, { - "voter": "badassmother", - "rshares": "1856068812916" + "rshares": "1856068812916", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2006601418874" + "rshares": "2006601418874", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1239194317889" + "rshares": "1239194317889", + "voter": "rossco99" }, { - "voter": "wang", - "rshares": "2059078537865" + "rshares": "2059078537865", + "voter": "wang" }, { - "voter": "jaewoocho", - "rshares": "22391933607" + "rshares": "22391933607", + "voter": "jaewoocho" }, { - "voter": "joseph", - "rshares": "1491294220946" + "rshares": "1491294220946", + "voter": "joseph" }, { - "voter": "recursive3", - "rshares": "452882692801" + "rshares": "452882692801", + "voter": "recursive3" }, { - "voter": "masteryoda", - "rshares": "621040278295" + "rshares": "621040278295", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120621212590" + "rshares": "3120621212590", + "voter": "recursive" }, { - "voter": "boatymcboatface", - "rshares": "448236514656" + "rshares": "448236514656", + "voter": "boatymcboatface" }, { - "voter": "idol", - "rshares": "8927535677" + "rshares": "8927535677", + "voter": "idol" }, { - "voter": "sakr", - "rshares": "4839155280" + "rshares": "4839155280", + "voter": "sakr" }, { - "voter": "yefet", - "rshares": "10884745702" + "rshares": "10884745702", + "voter": "yefet" }, { - "voter": "noaommerrr", - "rshares": "481790356914" + "rshares": "481790356914", + "voter": "noaommerrr" }, { - "voter": "jocelyn", - "rshares": "1536625837" + "rshares": "1536625837", + "voter": "jocelyn" }, { - "voter": "gregory-f", - "rshares": "14818418390" + "rshares": "14818418390", + "voter": "gregory-f" }, { - "voter": "eeks", - "rshares": "59932650184" + "rshares": "59932650184", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "17134999985" + "rshares": "17134999985", + "voter": "fkn" }, { - "voter": "elishagh1", - "rshares": "22522887261" + "rshares": "22522887261", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7803257741" + "rshares": "7803257741", + "voter": "richman" }, { - "voter": "coar", - "rshares": "313710480" + "rshares": "313710480", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106636079470" + "rshares": "106636079470", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061302586" + "rshares": "1061302586", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6086022456" + "rshares": "6086022456", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2003404389" + "rshares": "2003404389", + "voter": "error" }, { - "voter": "theshell", - "rshares": "58190613755" + "rshares": "58190613755", + "voter": "theshell" }, { - "voter": "satoshifund", - "rshares": "3848697023555" + "rshares": "3848697023555", + "voter": "satoshifund" }, { - "voter": "herzmeister", - "rshares": "87300558689" + "rshares": "87300558689", + "voter": "herzmeister" }, { - "voter": "ziv", - "rshares": "19598687179" + "rshares": "19598687179", + "voter": "ziv" }, { - "voter": "zakharya", - "rshares": "15787747831" + "rshares": "15787747831", + "voter": "zakharya" }, { - "voter": "tee-em", - "rshares": "5047527838" + "rshares": "5047527838", + "voter": "tee-em" }, { - "voter": "geoffrey", - "rshares": "118358806572" + "rshares": "118358806572", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "144257392248" + "rshares": "144257392248", + "voter": "kimziv" }, { - "voter": "honeythief", - "rshares": "45359587433" + "rshares": "45359587433", + "voter": "honeythief" }, { - "voter": "superfreek", - "rshares": "2187607792" + "rshares": "2187607792", + "voter": "superfreek" }, { - "voter": "furion", - "rshares": "81189817686" + "rshares": "81189817686", + "voter": "furion" }, { - "voter": "barbara2", - "rshares": "401329727" + "rshares": "401329727", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "446072819" + "rshares": "446072819", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "412844681" + "rshares": "412844681", + "voter": "doge4lyf" }, { - "voter": "tasman", - "rshares": "245479785" + "rshares": "245479785", + "voter": "tasman" }, { - "voter": "steem1653", - "rshares": "2632467953" + "rshares": "2632467953", + "voter": "steem1653" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "aaseb", - "rshares": "13847065167" + "rshares": "13847065167", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209545151" + "rshares": "4209545151", + "voter": "karen13" }, { - "voter": "milestone", - "rshares": "46859749971" + "rshares": "46859749971", + "voter": "milestone" }, { - "voter": "poseidon", - "rshares": "3146703967" + "rshares": "3146703967", + "voter": "poseidon" }, { - "voter": "jl777", - "rshares": "204618886920" + "rshares": "204618886920", + "voter": "jl777" }, { - "voter": "positive", - "rshares": "13896032408" + "rshares": "13896032408", + "voter": "positive" }, { - "voter": "proto", - "rshares": "17267376002" + "rshares": "17267376002", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "23475945343" + "rshares": "23475945343", + "voter": "sisterholics" }, { - "voter": "fnait", - "rshares": "467869290" + "rshares": "467869290", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "415655812" + "rshares": "415655812", + "voter": "keepcalmand" }, { - "voter": "healthyrecipes", - "rshares": "69137816305" + "rshares": "69137816305", + "voter": "healthyrecipes" }, { - "voter": "glitterpig", - "rshares": "3354060704" + "rshares": "3354060704", + "voter": "glitterpig" }, { - "voter": "taker", - "rshares": "8734213651" + "rshares": "8734213651", + "voter": "taker" }, { - "voter": "laonie", - "rshares": "830193979600" + "rshares": "830193979600", + "voter": "laonie" }, { - "voter": "myfirst", - "rshares": "29315868452" + "rshares": "29315868452", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "168514920676" + "rshares": "168514920676", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "6542941609" + "rshares": "6542941609", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "1667777098" + "rshares": "1667777098", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "37226130506" + "rshares": "37226130506", + "voter": "midnightoil" }, { - "voter": "kurtbeil", - "rshares": "3157847929" + "rshares": "3157847929", + "voter": "kurtbeil" }, { - "voter": "xiaohui", - "rshares": "93111494000" + "rshares": "93111494000", + "voter": "xiaohui" }, { - "voter": "jphamer1", - "rshares": "20690393698" + "rshares": "20690393698", + "voter": "jphamer1" }, { - "voter": "elfkitchen", - "rshares": "4689914056" + "rshares": "4689914056", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "99935909954" + "rshares": "99935909954", + "voter": "joele" }, { - "voter": "xiaokongcom", - "rshares": "3022848762" + "rshares": "3022848762", + "voter": "xiaokongcom" }, { - "voter": "natalymaty", - "rshares": "2076619689" + "rshares": "2076619689", + "voter": "natalymaty" }, { - "voter": "xianjun", - "rshares": "6093549297" + "rshares": "6093549297", + "voter": "xianjun" }, { - "voter": "miacats", - "rshares": "91520297334" + "rshares": "91520297334", + "voter": "miacats" }, { - "voter": "microluck", - "rshares": "399007122" + "rshares": "399007122", + "voter": "microluck" }, { - "voter": "netaterra", - "rshares": "2923096249" + "rshares": "2923096249", + "voter": "netaterra" }, { - "voter": "richardcrill", - "rshares": "4441060568" + "rshares": "4441060568", + "voter": "richardcrill" }, { - "voter": "rusla", - "rshares": "100126866" + "rshares": "100126866", + "voter": "rusla" }, { - "voter": "sponge-bob", - "rshares": "53146015442" + "rshares": "53146015442", + "voter": "sponge-bob" }, { - "voter": "doggnostic", - "rshares": "52794249" + "rshares": "52794249", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "52521499" + "rshares": "52521499", + "voter": "jenny-talls" }, { - "voter": "brains", - "rshares": "53134467783" + "rshares": "53134467783", + "voter": "brains" }, { - "voter": "bitcoinparadise", - "rshares": "1317649856" + "rshares": "1317649856", + "voter": "bitcoinparadise" }, { - "voter": "chick1", - "rshares": "5753585781" + "rshares": "5753585781", + "voter": "chick1" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "50516543" + "rshares": "50516543", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "ola1", - "rshares": "73937406" + "rshares": "73937406", + "voter": "ola1" }, { - "voter": "billkappa442", - "rshares": "51240567" + "rshares": "51240567", + "voter": "billkappa442" }, { - "voter": "glassheart", - "rshares": "51235131" + "rshares": "51235131", + "voter": "glassheart" }, { - "voter": "anns", - "rshares": "1233715718" + "rshares": "1233715718", + "voter": "anns" }, { - "voter": "motion", - "rshares": "50871059" + "rshares": "50871059", + "voter": "motion" }, { - "voter": "ziggo", - "rshares": "50570250" + "rshares": "50570250", + "voter": "ziggo" }, { - "voter": "penthouse", - "rshares": "50565798" + "rshares": "50565798", + "voter": "penthouse" }, { - "voter": "albertheijn", - "rshares": "50349676" + "rshares": "50349676", + "voter": "albertheijn" }, { - "voter": "ayim", - "rshares": "2291193388" + "rshares": "2291193388", + "voter": "ayim" }, { - "voter": "gravity", - "rshares": "160973134" + "rshares": "160973134", + "voter": "gravity" }, { - "voter": "digitalillusions", - "rshares": "160900665" + "rshares": "160900665", + "voter": "digitalillusions" }, { - "voter": "capcom", - "rshares": "156837244" + "rshares": "156837244", + "voter": "capcom" }, { - "voter": "haribo", - "rshares": "156814579" + "rshares": "156814579", + "voter": "haribo" }, { - "voter": "benetton", - "rshares": "159531007" + "rshares": "159531007", + "voter": "benetton" }, { - "voter": "greenpeace", - "rshares": "159506164" + "rshares": "159506164", + "voter": "greenpeace" }, { - "voter": "tipsandtricks", - "rshares": "159425365" + "rshares": "159425365", + "voter": "tipsandtricks" }, { - "voter": "panic", - "rshares": "159352476" + "rshares": "159352476", + "voter": "panic" }, { - "voter": "disneypixar", - "rshares": "159164412" + "rshares": "159164412", + "voter": "disneypixar" }, { - "voter": "citigroup", - "rshares": "155433319" + "rshares": "155433319", + "voter": "citigroup" }, { - "voter": "zendesk", - "rshares": "158486055" + "rshares": "158486055", + "voter": "zendesk" }, { - "voter": "dealzgal", - "rshares": "71727340" + "rshares": "71727340", + "voter": "dealzgal" }, { - "voter": "storage", - "rshares": "64921864" + "rshares": "64921864", + "voter": "storage" }, { - "voter": "blackmarket", - "rshares": "55388665" + "rshares": "55388665", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "58454327" + "rshares": "58454327", + "voter": "gifts" }, { - "voter": "alexandrapop", - "rshares": "153804957" + "rshares": "153804957", + "voter": "alexandrapop" } ], + "author": "healthyrecipes", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 110, - "flag_weight": 0.0 - }, "beneficiaries": [], + "blacklists": [], + "body": "\n

  Good afternoon Steemit, I am officially done breast feeding and am ready to get rid of the last few pounds that are still hanging on from my pregnancy so I have been trying out different ways to cut calories from my diet without loosing flavor. Spaghetti squash is a great substitute for pasta or in this case rice. Spaghetti squash has about 40 calories per cup while rice has upwards of 200. It also has fiber, potassium and vitamins A and C.  

\n

For chicken:

\n
    \n
  • 1lb chicken breast
  • \n
  • 1 tsp ancho chili
  • \n
  • 1 tbs olive oil
  • \n
  • 1 lime (juice and zest)
  • \n
  • 1 tsp minced garlic
  • \n
\n

For squash:

\n
    \n
  • 1 spaghetti squash (cut in half length wise and seeds removed)
  • \n
  • 1 tsp olive oil
  • \n
  • salt and pepper to taste
  • \n
\n

Preheat oven to 425F.  In a baking dish, sprinkle chicken with ancho chili.  Mix together oil, lime zest and juice and garlic.  Pour mixture over chicken.  Drizzle olive oil over squash and season with salt and pepper.  Place cut side down on baking sheet.  Bake a together for 30 min.  Shred squash with a fork and put in the bottom of bowls.  Shred chicken with forks and put on top of squash.  I added cheese, salsa and guacamole to ours but you can top with anything you like.  Enjoy!

\n

https://puu.sh/rcmnK/c059def2e0.png

\n", + "category": "healthyliving", + "children": 3, + "created": "2016-09-15T19:01:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://puu.sh/rcmnK/c059def2e0.png" + ], + "tags": [ + "healthyliving", + "dinner", + "squash", + "recipes" + ] + }, "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 24948140852996, + "payout": 39.772, + "payout_at": "2016-09-16T19:16:19", + "pending_payout_value": "39.772 HBD", "percent_steem_dollars": 10000, - "url": "/healthyliving/@healthyrecipes/spaghetti-squash-burrito-bowl", - "blacklists": [] + "permlink": "spaghetti-squash-burrito-bowl", + "post_id": 960622, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 110 + }, + "title": "Spaghetti Squash 'Burrito' Bowl", + "updated": "2016-09-15T19:01:15", + "url": "/healthyliving/@healthyrecipes/spaghetti-squash-burrito-bowl" }, { - "post_id": 960067, - "author": "curie", - "permlink": "the-daily-curie-14th-sept-15th-sept-2016", - "category": "curie", - "title": "The Daily Curie (14th Sept - 15th Sept 2016)", - "body": "
https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg
\n\n## Introduction\n[Project Curie](https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors) is a community project run by several Steemit authors. Its mission is to help reward content creators who are posting great original content, yet who have not yet become established. In the short time since Curie began, our writers group has partnered with @nextgencrypto and other whale accounts to bring rewards to these deserving authors. *Writers, artists, chefs, photographers, videographers, and many others have been recognized by these rewards.*\n\nEach day, the members of our Project will publish this list of the posts that Project Curie has chosen to reward recently. We hope that this list will provide more positive exposure to the authors we have selected. Also, it is an effort for us to be more transparent about which posts are being rewarded. We hope that you will consider following not only this @curie account, but also many of the authors whose work is featured here each day. **Please consider adding your comments on these posts also!**\n\nProject Curie's daily curation lists will now be called \"The Daily Curie\". We hope you like the name! Future editions of The Daily Curie will [feature our new logo](https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement). For the latest on Project Curie, do check out our [Month #1 update](https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016). \n\n----------------------\n\n## Today's Brief Analysis\n\nToday's list polls all posts curated between 17:00 14/09 UTC and 17:00 15/09 UTC. Project Curie voted on a total of **103 posts** by 99 unique authors. **SBD 3,832** has been generated for authors thus far, at an average of SBD 37 per post. \n\n----------------------\n| Author | Post | Payout |\n| --------- | ---------- | --------- |\n| [@faddat](https://steemit.com/@faddat) | [[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!](https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed) | 616.681 SBD |\n| [@rampant](https://steemit.com/@rampant) | [Steemit Daily Drawing Tutorial - Gesture drawings (plus tool)](https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool) | 215.310 SBD |\n| [@shenanigator](https://steemit.com/@shenanigator) | [Doing the Right Thing Will Get You Fired. What Do You Do?](https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do) | 205.664 SBD |\n| [@penguinpablo](https://steemit.com/@penguinpablo) | [How to Carve an Apple Leaf](https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf) | 196.419 SBD |\n| [@nathanjtaylor](https://steemit.com/@nathanjtaylor) | [Fire And Grace Art Painting And Poetry](https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry) | 189.043 SBD |\n| [@lily-da-vine](https://steemit.com/@lily-da-vine) | [Going Bananas in Acapulco](https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco) | 158.416 SBD |\n| [@budgetbucketlist](https://steemit.com/@budgetbucketlist) | [A 1-week plunge into Mexico City's madness! Art adventures, Frida-seeking and unfiltered exhaust fumes...](https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes) | 151.033 SBD |\n| [@benjiberigan](https://steemit.com/@benjiberigan) | [Anarchist Architecture, part 5: The cruelty of architectural codes and regulations.](https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations) | 132.427 SBD |\n| [@ausbitbank](https://steemit.com/@ausbitbank) | [The time my town flooded, the fragility of the food supply and lessons learned (Original photos)](https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos) | 125.877 SBD |\n| [@emily-cook](https://steemit.com/@emily-cook) | [THE ISLE OF MAN FILM FESTIVAL 2016 -A week of parties, red carpets and a lot of hard work!](https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work) | 121.336 SBD |\n| [@team-leibniz](https://steemit.com/@team-leibniz) | [Week 1 NFL Daily Fantasy Football Results - How my Bayesian Inspired Lineups Fared (+$84.00)](https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00) | 119.473 SBD |\n| [@ionescur](https://steemit.com/@ionescur) | [Urban dreams of freedom: back to the countryside, back to the land](https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land) | 110.564 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [New traditionl painting - \"The Battle\" - Steps of work](https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work) | 105.622 SBD |\n| [@juliac](https://steemit.com/@juliac) | [One of The Best Portraits That I've Ever Created: Einstein. What Do You Think?](https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think) | 103.781 SBD |\n| [@luzcypher](https://steemit.com/@luzcypher) | [Cover Crops Can Grow Food Organically With No Fertilizers, No Pesticides, No Herbicides And No Chemicals](https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals) | 100.117 SBD |\n| [@akareyon](https://steemit.com/@akareyon) | [I find your lack of argument disturbing](https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing) | 98.525 SBD |\n| [@curving](https://steemit.com/@curving) | [The Ephemeral Cairn Gardens Of the Austin Greenbelt - A Photo Journal and Meditation](https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation) | 96.834 SBD |\n| [@aleksandraz](https://steemit.com/@aleksandraz) | [Incredible Science - Brainbow Technology](https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology) | 89.777 SBD |\n| [@skapaneas](https://steemit.com/@skapaneas) | [IBD Crohn desease and Ulceritive collitis. what are they, self diagnose, self treat and more.](https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more) | 85.958 SBD |\n| [@gargon](https://steemit.com/@gargon) | [Proyecto Cervantes (13 - 15 Sept 2016): Compensación y reconocimiento para escritores de habla hispana / Bringing rewards and recognition to spanish writers (Vol. III)](https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and) | 83.725 SBD |\n| [@iamwne](https://steemit.com/@iamwne) | [Blade Runner Inspired Digital Set - The Dark Market - Beauty Pass](https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass) | 83.869 SBD |\n| [@stormblaze](https://steemit.com/@stormblaze) | [Where Do Deleted Files Go?](https://steemit.com/technology/@stormblaze/where-do-deleted-files-go) | 81.221 SBD |\n| [@yanarnst](https://steemit.com/@yanarnst) | [Steemit Food Art lesson 2 ''Salad with chicken liver and pine nuts''](https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts) | 78.034 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Myths in the Sky: Ursa Major and Ursa Minor](https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor) | 72.174 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Brain preservation: an ambulance to the future](https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future) | 72.082 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Vivisecting the Stargazing Tribe: Visual Observers and Screen Scanners](https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners) | 71.421 SBD |\n| [@cristi](https://steemit.com/@cristi) | [Radical Metabolism - No Food and Water for 8 Months](https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months) | 69.559 SBD |\n| [@stranger27](https://steemit.com/@stranger27) | [Fibonacci sequence and Golden Ratio: magic numbers of Nature](https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature) | 66.258 SBD |\n| [@nekromarinist](https://steemit.com/@nekromarinist) | [Let's talk a little bit about phobias today!](https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today) | 61.776 SBD |\n| [@richman](https://steemit.com/@richman) | [If you want to lose a friend, lend him money (My life story)](https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story) | 58.193 SBD |\n| [@maceytomlin](https://steemit.com/@maceytomlin) | [What Exactly is Ayahuasca? How Should You Prepare for a Ceremony?](https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony) | 58.197 SBD |\n| [@nili](https://steemit.com/@nili) | [Smart Life (part 2) - Resolving the Godel's paradox on the blockchain as a solution for a decentralized trusted protocol](https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol) | 55.575 SBD |\n| [@optimistic-crone](https://steemit.com/@optimistic-crone) | [PROBIOTICS FOR LIFE!!! SUPER SIMPLE FERMENTED VEGETABLE 'KIM CHEE' RECIPE](https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe) | 54.909 SBD |\n| [@anarchyhasnogods](https://steemit.com/@anarchyhasnogods) | [Learning one dimensional motion using graphs- physics for beginners - part one](https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one) | 53.295 SBD |\n| [@yostopia](https://steemit.com/@yostopia) | [Beginner's mind, creative mind... the making of a Vimeo Staff Pick.](https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick) | 51.222 SBD |\n| [@reneenouveau](https://steemit.com/@reneenouveau) | [My response to Paul Steyn's myopic article \"Mr. Environmentalist\" shockingly published by National Geographic in Sept 2015.](https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015) | 49.433 SBD |\n| [@king3071](https://steemit.com/@king3071) | [MY DREAM DESTINATION - SWITZERLAND](https://steemit.com/travel/@king3071/my-dream-destination-switzerland) | 49.816 SBD |\n| [@kolin.evans](https://steemit.com/@kolin.evans) | [Something a little more substantial for you to think about - the 'IS' / 'WAS' CPT (Continuous Probable Time-lines.)](https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines) | 47.288 SBD |\n| [@fenglosophy](https://steemit.com/@fenglosophy) | [Does the language you speak influence how you think?](https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think) | 44.070 SBD |\n| [@mandibil](https://steemit.com/@mandibil) | [SAVAGE [Gorm Just, Denmark 2009] - movie review by Mandibil](https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil) | 44.621 SBD |\n| [@therajmahal](https://steemit.com/@therajmahal) | [Making the Impossible... Possible](https://steemit.com/science/@therajmahal/making-the-impossible-possible) | 44.765 SBD |\n| [@carlitashaw](https://steemit.com/@carlitashaw) | [The World's Worst Oil Spills, Ramifications & Amazing Alternative Solutions.](https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions) | 44.986 SBD |\n| [@renzoarg](https://steemit.com/@renzoarg) | [Skip a pill - Antibiotics](https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics) | 43.918 SBD |\n| [@rachelsvparry](https://steemit.com/@rachelsvparry) | [Under the Sea (again, but better this time)](https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time) | 43.436 SBD |\n| [@royalmacro](https://steemit.com/@royalmacro) | [lonely tree [An Original Abstract Art]](https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art) | 42.826 SBD |\n| [@stephmckenzie](https://steemit.com/@stephmckenzie) | [The Power of Choice--A Magnificent Key to True Personal Freedom](https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone) | 42.441 SBD |\n| [@alwayzgame](https://steemit.com/@alwayzgame) | [10 simple steps to ruin your child's life](https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life) | 42.475 SBD |\n| [@nonlinearone](https://steemit.com/@nonlinearone) | [Can Hemingway Improve Your Writing?](https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing) | 42.669 SBD |\n| [@kafkanarchy84](https://steemit.com/@kafkanarchy84) | [\"Johnny B. Goode\" Guitar Lesson and Intro to Theory, Vol. II](https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii) | 41.326 SBD |\n| [@feline1991](https://steemit.com/@feline1991) | [A Steemit Original - A Lifetime of Seeking Happiness - Chapter 2 - Part 2](https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2) | 41.931 SBD |\n| [@geke](https://steemit.com/@geke) | [The Banker and the Bulova - an original poem (Steemit flash-writing challenge)](https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge) | 41.497 SBD |\n| [@lscottphotos](https://steemit.com/@lscottphotos) | [LSCOTTPHOTOS Welcome to my family :) Thank you steemers <3 (Original Photos)](https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos) | 40.201 SBD |\n| [@pinkisland](https://steemit.com/@pinkisland) | [My Philosophy of Education](https://steemit.com/writing/@pinkisland/my-philosophy-of-education) | 40.978 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cinco](https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco) | 39.708 SBD |\n| [@luisucv34](https://steemit.com/@luisucv34) | [Venezuela: The lack of opportunities (English edition)](https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition) | 39.783 SBD |\n| [@beowulfoflegend](https://steemit.com/@beowulfoflegend) | [Silvanus and Empire, an Original Novel (Chapter Twenty)](https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty) | 39.543 SBD |\n| [@mariandavp](https://steemit.com/@mariandavp) | [From zero to hero - abstract office art by @mariandavp](https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp) | 39.529 SBD |\n| [@nasimbabu](https://steemit.com/@nasimbabu) | [The technology that defends us from potentially deadly diseases](https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases) | 39.620 SBD |\n| [@royaltiffany](https://steemit.com/@royaltiffany) | [Steemit B'Day Movie Review Contest Update!](https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update) | 37.706 SBD |\n| [@travelista](https://steemit.com/@travelista) | [An Adventure in Isla Espíritu Santo!](https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo) | 37.218 SBD |\n| [@jpiper20](https://steemit.com/@jpiper20) | [We Meet At Night -- An Original Story (Part 4)](https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4) | 37.319 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new painting - \"Dexter\" - Modern Impressionism](https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism) | 36.937 SBD |\n| [@krystle](https://steemit.com/@krystle) | [Keltorin's Flora and Fauna of Note - Firikwea - Valcanne's Guide to Keltorin](https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin) | 36.972 SBD |\n| [@cryptoiskey](https://steemit.com/@cryptoiskey) | [Workout from home on the cheap! - 12th September #Ultimate workout companion for your kids!](https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids) | 36.115 SBD |\n| [@getonthetrain](https://steemit.com/@getonthetrain) | [Top 10 Grisly Medieval Torture Methods](https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods) | 34.093 SBD |\n| [@ansharphoto](https://steemit.com/@ansharphoto) | [Roman Forum in the Morning, Rome](https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome) | 33.328 SBD |\n| [@aboundlessworld](https://steemit.com/@aboundlessworld) | [Introducing The Steemit Stories Podcast!](https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast) | 33.728 SBD |\n| [@thornybastard](https://steemit.com/@thornybastard) | [Chapter 10: A Call from the Forest—来自森林的呼唤](https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest) | 32.465 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Installing Bitshares / graphene from source on Mac OS X Yosemite (10.5.5)](https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5) | 32.348 SBD |\n| [@dumar022](https://steemit.com/@dumar022) | [Workshop lesson 6: Wrench: You don't wanna mess with this](https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this) | 32.155 SBD |\n| [@lapilipinas](https://steemit.com/@lapilipinas) | [Light from distant stars](https://steemit.com/science/@lapilipinas/light-from-distant-stars) | 32.778 SBD |\n| [@williambanks](https://steemit.com/@williambanks) | [Towards A Better Tomorrow : Part 1 - There but for grace!](https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace) | 31.434 SBD |\n| [@driv3n](https://steemit.com/@driv3n) | [How to Solve the Rubik's Cube like a boss - Part 2](https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2) | 31.858 SBD |\n| [@timbot606](https://steemit.com/@timbot606) | [Growing up in Appalachia](https://steemit.com/life/@timbot606/growing-up-in-appalachia) | 31.548 SBD |\n| [@themagus](https://steemit.com/@themagus) | [A less privileged white growing up in South Africa in the 1970's - part 2](https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2) | 31.099 SBD |\n| [@echoesinthemind](https://steemit.com/@echoesinthemind) | [Hanging Upside Down / DO NOT Try At Home](https://steemit.com/life/@echoesinthemind/hanging-upside-down) | 31.736 SBD |\n| [@ysa](https://steemit.com/@ysa) | [My pictures from traveling to Estes Park, Colorado](https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado) | 31.981 SBD |\n| [@aksinya](https://steemit.com/@aksinya) | [Our Trip to Wonderful, Scary and Unforgettable Kenya. Original Photos and Video](https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video) | 31.882 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cuatro](https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro) | 31.992 SBD |\n| [@successfully00](https://steemit.com/@successfully00) | [Knowing The Math - Mental Tricks - Multiplication Part 1](https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1) | 31.037 SBD |\n| [@linzo](https://steemit.com/@linzo) | [A Life Fantasy (Original Poem)](https://steemit.com/poem/@linzo/a-life-fantasy-original-poem) | 30.964 SBD |\n| [@hilarski](https://steemit.com/@hilarski) | [Panama Critters.](https://steemit.com/panama/@hilarski/panama-critters) | 28.729 SBD |\n| [@sulev](https://steemit.com/@sulev) | [Photography #11 - Pictures from my Garden: Bees, Lizards and other (part 2)](https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2) | 27.947 SBD |\n| [@steemswede](https://steemit.com/@steemswede) | [[BEER REVIEW] Thomas Hardy's Ale](https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale) | 27.183 SBD |\n| [@marius19](https://steemit.com/@marius19) | [Set of paper coffee cups. Origami](https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami) | 26.439 SBD |\n| [@poeticsnake](https://steemit.com/@poeticsnake) | [Autumn is coming Doodle style! ( Tutorial with step by step drawings)](https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings) | 26.547 SBD |\n| [@kiddarko](https://steemit.com/@kiddarko) | [Peep Life a Story By KidDarko (with tattoo illistrations and video)](https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video) | 26.853 SBD |\n| [@shieha](https://steemit.com/@shieha) | [The Hardest Computer Game of All Time - Robot Odyssey - Part 2](https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2) | 26.372 SBD |\n| [@ayim](https://steemit.com/@ayim) | [Fixing Posture - Part 4: Neck](https://steemit.com/life/@ayim/fixing-posture-part-4-neck) | 26.142 SBD |\n| [@hitmeasap](https://steemit.com/@hitmeasap) | [I am Batman's Robin or Skywalkers R2-D2. - I've always been the co-pilot. Always been the second choice.](https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice) | 25.747 SBD |\n| [@peskov](https://steemit.com/@peskov) | [Antonikha. Part 2 (featuring Vasily Peskov as author)](https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author) | 25.173 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [Advice from an angry dude: Breathe and interrupt your thoughts](https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts) | 25.162 SBD |\n| [@beginningtoend](https://steemit.com/@beginningtoend) | [Poetry, art and a little home spun philosophy.](https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy) | 25.708 SBD |\n| [@kaykunoichi](https://steemit.com/@kaykunoichi) | [Suicide Note - Audio (Written & performed by myself)](https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself) | 25.523 SBD |\n| [@booky](https://steemit.com/@booky) | [Boosting Leadership Skills = Healthier Happier You and Your Workmates](https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates) | 24.083 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [Do you Know the Difference Between RIGHT & WRONG?](https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong) | 24.516 SBD |\n| [@ekaterina4ka](https://steemit.com/@ekaterina4ka) | [We Knit Patterns by the Spokes. Post 2. Вяжем узоры спицами. Пост 2.](https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2) | 24.793 SBD |\n| [@scaredycatguide](https://steemit.com/@scaredycatguide) | [Real Talk - Vol 9. - Welcome To Dogmerica](https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica) | 24.207 SBD |\n| [@amy-goodrich](https://steemit.com/@amy-goodrich) | [Pineapple Mojito Green Smoothie](https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie) | 24.126 SBD |\n| [@scott.stevens](https://steemit.com/@scott.stevens) | [Awareness of Bitcoin is Now More Important Than Awareness of Geoengineering](https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering) | 24.875 SBD |\n| [@witchcraftblog](https://steemit.com/@witchcraftblog) | [My trip to Italy. Pisa.](https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa) | 24.265 SBD |\n| [@ibringawareness](https://steemit.com/@ibringawareness) | [\"Why I Got Stiffed\" Guy's Waiter Blog chapter 5](https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5) | 24.224 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new illustration - Batman vs Superman - Modern Impressionism by kimal73](https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73) | 23.617 SBD |\n| [@leylar](https://steemit.com/@leylar) | [Seeds are great travelers ~ Own work](https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work) | 23.166 SBD |\n| [@ocrdu](https://steemit.com/@ocrdu) | [The pods that go \"pop\"](https://steemit.com/photography/@ocrdu/the-pods-that-go-pop) | 23.530 SBD |\n| [@rusla](https://steemit.com/@rusla) | [Japan. Part8.](https://steemit.com/travel/@rusla/japan-part8) | 23.209 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [Puppy Charcoal Original Pencil Drawing](https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing) | 23.879 SBD |\n| [@borishaifa](https://steemit.com/@borishaifa) | [To Write Or Not To Wirte? Писать или не писать?](https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat) | 23.730 SBD |\n| [@eveningstar92](https://steemit.com/@eveningstar92) | [Shit Happens, Move On-NSFW- Evening Star Art](https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art) | 23.092 SBD |\n| [@elewarne](https://steemit.com/@elewarne) | [Mixed Media](https://steemit.com/mixedmedia/@elewarne/mixed-media) | 23.059 SBD |\n| [@shredlord](https://steemit.com/@shredlord) | [Sunrise](https://steemit.com/art/@shredlord/sunrise) | 23.318 SBD |\n| [@sherlockcupid](https://steemit.com/@sherlockcupid) | [Let's Talk: Fears (Part One)](https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one) | 23.720 SBD |\n| [@annesaya](https://steemit.com/@annesaya) | [Our Guiding Star, a poem (A tribute to writers)](https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers) | 23.384 SBD |\n| [@fitmama](https://steemit.com/@fitmama) | [Why Do I Bother....](https://steemit.com/life/@fitmama/why-do-i-bother) | 23.451 SBD |\n| [@ezzy](https://steemit.com/@ezzy) | [The Bionic Experiment - Part 1 (My Original Short Stories)](https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories) | 23.480 SBD |\n| [@kingarbinv](https://steemit.com/@kingarbinv) | [Adventures in Nemaland - Part 8 (Video) + My best Pokemon catch so far.](https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far) | 23.292 SBD |\n| [@soulsistashakti](https://steemit.com/@soulsistashakti) | [How to Detect and Deflect Gaslighting from a Narcissist](https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist) | 22.018 SBD |\n| [@puffin](https://steemit.com/@puffin) | [Tragical Impoverishment - Society's Dirt (Original Poem)](https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem) | 22.621 SBD |\n| [@cehuneke](https://steemit.com/@cehuneke) | [The Sugar Scandal: Corrupted Science in the Debate of Fat vs. Sugar and Coronary Heart Disease](https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease) | 22.821 SBD |\n| [@tanata](https://steemit.com/@tanata) | [Little Black Dress involving](https://steemit.com/fashion/@tanata/little-black-dress-involving) | 22.237 SBD |\n| [@steemwriter](https://steemit.com/@steemwriter) | [YouTube Demonetization: A Step Towards Censorship?](https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship) | 22.297 SBD |\n| [@michelle.gent](https://steemit.com/@michelle.gent) | [Dusty - one of my characters](https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters) | 22.659 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [A Gift-Original Rose Drawing](https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing) | 22.249 SBD |\n| [@runridefly](https://steemit.com/@runridefly) | [Minnow's Life - @runridefly original cartoon \"minnowsunite Whale sighting\" minnows and a whale](https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale) | 22.836 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [[SHORT STORY] The Cult of Personality - Part One](https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one) | 22.552 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Look at the Flower Chicory: a Useful and Beautiful Flower ... my Favorite Photos of Chicory](https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory) | 22.795 SBD |\n| [@victoriart](https://steemit.com/@victoriart) | [Hazelnut Mood](https://steemit.com/art/@victoriart/hazelnut-mood) | 22.443 SBD |\n| [@heroic15397](https://steemit.com/@heroic15397) | [Amazing Birds in the Greater Montreal area](https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area) | 22.987 SBD |\n| [@smartercars](https://steemit.com/@smartercars) | [Reviewing the Volkswagen Touareg ~ Smarter Car Reviews](https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews) | 22.975 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [Blues Jam & Techniques [9-14-2016]](https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016) | 22.415 SBD |\n| [@matthew.raymer](https://steemit.com/@matthew.raymer) | [Life Stories](https://steemit.com/psychology/@matthew.raymer/life-stories) | 22.733 SBD |\n| [@positivesteem](https://steemit.com/@positivesteem) | [Common Sense Versus Degrees: The Man Who Has One Hundred Degrees](https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees) | 22.941 SBD |\n| [@d3nv3r](https://steemit.com/@d3nv3r) | [Cloud Mining - The Struggle is Real](https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real) | 22.266 SBD |\n| [@adubi](https://steemit.com/@adubi) | [Healing Food Plan: The Ultimate Cheat Sheet](https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet) | 22.947 SBD |\n| [@alitas](https://steemit.com/@alitas) | [(spanish) Cazuela de Calamar con Papas Rejilla](https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla) | 22.240 SBD |\n| [@mazi](https://steemit.com/@mazi) | [I Can See Clearly Now .... Platanus occidentalis](https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis) | 22.784 SBD |\n| [@mikemacintire](https://steemit.com/@mikemacintire) | [A Red Like No Other - My work](https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work) | 22.289 SBD |\n| [@altzero](https://steemit.com/@altzero) | [Imágenes de una vida (2)](https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2) | 21.555 SBD |\n| [@birdie](https://steemit.com/@birdie) | [Clouds That Demand Attention (Original Photos)](https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos) | 21.397 SBD |\n| [@michaelstobiersk](https://steemit.com/@michaelstobiersk) | [An Original Painting by Michael Stobierski](https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski) | 21.367 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Meditation Experience Can Be Really Scary](https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary) | 21.583 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [The Price Is Right Theme Music Breakdown](https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown) | 21.937 SBD |\n| [@karisa](https://steemit.com/@karisa) | [Very tasty and delicious curd cookies specially for Steemit . Part 4](https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4) | 21.940 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Borovoye (Burabai) - Pearl of Kazakhstan: The Incredible Journey (Story of my Husband)](https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband) | 20.616 SBD |\n| [@burnin](https://steemit.com/@burnin) | [Exploring the Off-Limits Areas of the Largest Cruise Ship In the World - Part 2](https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2) | 20.298 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Eyes Of Wisdom](https://steemit.com/art/@reddust/eyes-of-wisdom) | 20.051 SBD |\n| [@levycore](https://steemit.com/@levycore) | [Hot Chocolate Art - Trying Draw Faces](https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces) | 20.233 SBD |\n| [@awesomenyl](https://steemit.com/@awesomenyl) | [Sunflower Paper Tutorial](https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial) | 20.040 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [The epic and awesome guide to writing articles like a true artist that people want to read and share! [Edited for Steemit today]](https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today) | 20.192 SBD |\n| [@naquoya](https://steemit.com/@naquoya) | [[ORIGINAL FICTION] Bad Trip part two: The Gamemaster](https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster) | 20.041 SBD |\n| [@moon32walker](https://steemit.com/@moon32walker) | [Top 10 Game Development Studios](https://steemit.com/gaming/@moon32walker/top-10-game-development-studios) | 20.468 SBD |\n| [@gustavopasquini](https://steemit.com/@gustavopasquini) | [Polenta with Ragu Meat Dry](https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry) | 20.436 SBD |\n| [@benadapt](https://steemit.com/@benadapt) | [Capturing the Milky Way — A Photographer’s Biggest Challenge](https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge) | 20.477 SBD |\n| [@altzero](https://steemit.com/@altzero) | [¿Que es la nueva economia?](https://steemit.com/spanish/@altzero/que-es-la-nueva-economia) | 20.037 SBD |\n| [@por500bolos](https://steemit.com/@por500bolos) | [Uncovering The Most Transcendental & Biggest Secret In The Human Life. ¿Skeptical? I will challenge you to prove otherwise!!](https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise) | 20.894 SBD |\n| [@zonpower](https://steemit.com/@zonpower) | [This is a place (An original Poem)](https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem) | 20.869 SBD |\n| [@katharsisdrill](https://steemit.com/@katharsisdrill) | [The rune-stones of Jelling, and a new realisation.](https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation) | 19.761 SBD |\n| [@glezeddy](https://steemit.com/@glezeddy) | [MEZCLA DE TEQUILA PARA DAR EL \"GRITO\" (MÉXICO)](https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico) | 15.682 SBD |\n| [@onetree](https://steemit.com/@onetree) | [South African Slang - Enter Those Who Dare!](https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare) | 33.017 SBD |\n| [@verbal-d](https://steemit.com/@verbal-d) | [Melodious Music Memoirs # 2: Impact](https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact) | 30.372 SBD |\n| [@wanderingagorist](https://steemit.com/@wanderingagorist) | [Foraging Wild Rose Hips for Tea and Eating](https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating) | 29.228 SBD |\n| [@knablinz](https://steemit.com/@knablinz) | [Hand-Made Collage Art By Knablinz ( Donuts & Coffee )](https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee) | 35.939 SBD |\n\n---------------------------\n
Note: All author rewards from this post will be used to fund Project Curie.
Join us in #curie on Steemit.chat and follow us @curie!
", - "json_metadata": { - "tags": [ - "curie", - "minnows", - "hidden-gems", - "steemit", - "project-curie" - ], - "users": [ - "nextgencrypto", - "curie" - ], - "image": [ - "https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg" - ], - "links": [ - "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", - "https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement", - "https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", - "https://steemit.com/@faddat", - "https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed", - "https://steemit.com/@rampant", - "https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool", - "https://steemit.com/@shenanigator", - "https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do", - "https://steemit.com/@penguinpablo", - "https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf", - "https://steemit.com/@nathanjtaylor", - "https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry", - "https://steemit.com/@lily-da-vine", - "https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco", - "https://steemit.com/@budgetbucketlist", - "https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes", - "https://steemit.com/@benjiberigan", - "https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations", - "https://steemit.com/@ausbitbank", - "https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos", - "https://steemit.com/@emily-cook", - "https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work", - "https://steemit.com/@team-leibniz", - "https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00", - "https://steemit.com/@ionescur", - "https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land", - "https://steemit.com/@kimal73", - "https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work", - "https://steemit.com/@juliac", - "https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think", - "https://steemit.com/@luzcypher", - "https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals", - "https://steemit.com/@akareyon", - "https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing", - "https://steemit.com/@curving", - "https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation", - "https://steemit.com/@aleksandraz", - "https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology", - "https://steemit.com/@skapaneas", - "https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more", - "https://steemit.com/@gargon", - "https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", - "https://steemit.com/@iamwne", - "https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass", - "https://steemit.com/@stormblaze", - "https://steemit.com/technology/@stormblaze/where-do-deleted-files-go", - "https://steemit.com/@yanarnst", - "https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts", - "https://steemit.com/@senseye", - "https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor", - "https://steemit.com/@crasch", - "https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future", - "https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners", - "https://steemit.com/@cristi", - "https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months", - "https://steemit.com/@stranger27", - "https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature", - "https://steemit.com/@nekromarinist", - "https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today", - "https://steemit.com/@richman", - "https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story", - "https://steemit.com/@maceytomlin", - "https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony", - "https://steemit.com/@nili", - "https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol", - "https://steemit.com/@optimistic-crone", - "https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe", - "https://steemit.com/@anarchyhasnogods", - "https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one", - "https://steemit.com/@yostopia", - "https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick", - "https://steemit.com/@reneenouveau", - "https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015", - "https://steemit.com/@king3071", - "https://steemit.com/travel/@king3071/my-dream-destination-switzerland", - "https://steemit.com/@kolin.evans", - "https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines", - "https://steemit.com/@fenglosophy", - "https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think", - "https://steemit.com/@mandibil", - "https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil", - "https://steemit.com/@therajmahal", - "https://steemit.com/science/@therajmahal/making-the-impossible-possible", - "https://steemit.com/@carlitashaw", - "https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions", - "https://steemit.com/@renzoarg", - "https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics", - "https://steemit.com/@rachelsvparry", - "https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time", - "https://steemit.com/@royalmacro", - "https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art", - "https://steemit.com/@stephmckenzie", - "https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone", - "https://steemit.com/@alwayzgame", - "https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life", - "https://steemit.com/@nonlinearone", - "https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing", - "https://steemit.com/@kafkanarchy84", - "https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii", - "https://steemit.com/@feline1991", - "https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2", - "https://steemit.com/@geke", - "https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge", - "https://steemit.com/@lscottphotos", - "https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos", - "https://steemit.com/@pinkisland", - "https://steemit.com/writing/@pinkisland/my-philosophy-of-education", - "https://steemit.com/@jgcastrillo19", - "https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco", - "https://steemit.com/@luisucv34", - "https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition", - "https://steemit.com/@beowulfoflegend", - "https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty", - "https://steemit.com/@mariandavp", - "https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp", - "https://steemit.com/@nasimbabu", - "https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases", - "https://steemit.com/@royaltiffany", - "https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update", - "https://steemit.com/@travelista", - "https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo", - "https://steemit.com/@jpiper20", - "https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4", - "https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism", - "https://steemit.com/@krystle", - "https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin", - "https://steemit.com/@cryptoiskey", - "https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids", - "https://steemit.com/@getonthetrain", - "https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods", - "https://steemit.com/@ansharphoto", - "https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome", - "https://steemit.com/@aboundlessworld", - "https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast", - "https://steemit.com/@thornybastard", - "https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest", - "https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5", - "https://steemit.com/@dumar022", - "https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this", - "https://steemit.com/@lapilipinas", - "https://steemit.com/science/@lapilipinas/light-from-distant-stars", - "https://steemit.com/@williambanks", - "https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace", - "https://steemit.com/@driv3n", - "https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2", - "https://steemit.com/@timbot606", - "https://steemit.com/life/@timbot606/growing-up-in-appalachia", - "https://steemit.com/@themagus", - "https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2", - "https://steemit.com/@echoesinthemind", - "https://steemit.com/life/@echoesinthemind/hanging-upside-down", - "https://steemit.com/@ysa", - "https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado", - "https://steemit.com/@aksinya", - "https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video", - "https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro", - "https://steemit.com/@successfully00", - "https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1", - "https://steemit.com/@linzo", - "https://steemit.com/poem/@linzo/a-life-fantasy-original-poem", - "https://steemit.com/@hilarski", - "https://steemit.com/panama/@hilarski/panama-critters", - "https://steemit.com/@sulev", - "https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2", - "https://steemit.com/@steemswede", - "https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale", - "https://steemit.com/@marius19", - "https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami", - "https://steemit.com/@poeticsnake", - "https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings", - "https://steemit.com/@kiddarko", - "https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video", - "https://steemit.com/@shieha", - "https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2", - "https://steemit.com/@ayim", - "https://steemit.com/life/@ayim/fixing-posture-part-4-neck", - "https://steemit.com/@hitmeasap", - "https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice", - "https://steemit.com/@peskov", - "https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author", - "https://steemit.com/@aldentan", - "https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts", - "https://steemit.com/@beginningtoend", - "https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy", - "https://steemit.com/@kaykunoichi", - "https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself", - "https://steemit.com/@booky", - "https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates", - "https://steemit.com/@doubledex", - "https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong", - "https://steemit.com/@ekaterina4ka", - "https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2", - "https://steemit.com/@scaredycatguide", - "https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica", - "https://steemit.com/@amy-goodrich", - "https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie", - "https://steemit.com/@scott.stevens", - "https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering", - "https://steemit.com/@witchcraftblog", - "https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa", - "https://steemit.com/@ibringawareness", - "https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5", - "https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73", - "https://steemit.com/@leylar", - "https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work", - "https://steemit.com/@ocrdu", - "https://steemit.com/photography/@ocrdu/the-pods-that-go-pop", - "https://steemit.com/@rusla", - "https://steemit.com/travel/@rusla/japan-part8", - "https://steemit.com/@edgarsart", - "https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing", - "https://steemit.com/@borishaifa", - "https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat", - "https://steemit.com/@eveningstar92", - "https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art", - "https://steemit.com/@elewarne", - "https://steemit.com/mixedmedia/@elewarne/mixed-media", - "https://steemit.com/@shredlord", - "https://steemit.com/art/@shredlord/sunrise", - "https://steemit.com/@sherlockcupid", - "https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one", - "https://steemit.com/@annesaya", - "https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers", - "https://steemit.com/@fitmama", - "https://steemit.com/life/@fitmama/why-do-i-bother", - "https://steemit.com/@ezzy", - "https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories", - "https://steemit.com/@kingarbinv", - "https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far", - "https://steemit.com/@soulsistashakti", - "https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist", - "https://steemit.com/@puffin", - "https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem", - "https://steemit.com/@cehuneke", - "https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease", - "https://steemit.com/@tanata", - "https://steemit.com/fashion/@tanata/little-black-dress-involving", - "https://steemit.com/@steemwriter", - "https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship", - "https://steemit.com/@michelle.gent", - "https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters", - "https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing", - "https://steemit.com/@runridefly", - "https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale", - "https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one", - "https://steemit.com/@lyubovbar", - "https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory", - "https://steemit.com/@victoriart", - "https://steemit.com/art/@victoriart/hazelnut-mood", - "https://steemit.com/@heroic15397", - "https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area", - "https://steemit.com/@smartercars", - "https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews", - "https://steemit.com/@rubenalexander", - "https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016", - "https://steemit.com/@matthew.raymer", - "https://steemit.com/psychology/@matthew.raymer/life-stories", - "https://steemit.com/@positivesteem", - "https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees", - "https://steemit.com/@d3nv3r", - "https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real", - "https://steemit.com/@adubi", - "https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet", - "https://steemit.com/@alitas", - "https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla", - "https://steemit.com/@mazi", - "https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis", - "https://steemit.com/@mikemacintire", - "https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work", - "https://steemit.com/@altzero", - "https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2", - "https://steemit.com/@birdie", - "https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos", - "https://steemit.com/@michaelstobiersk", - "https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski", - "https://steemit.com/@reddust", - "https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary", - "https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown", - "https://steemit.com/@karisa", - "https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4", - "https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband", - "https://steemit.com/@burnin", - "https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2", - "https://steemit.com/art/@reddust/eyes-of-wisdom", - "https://steemit.com/@levycore", - "https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces", - "https://steemit.com/@awesomenyl", - "https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial", - "https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today", - "https://steemit.com/@naquoya", - "https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster", - "https://steemit.com/@moon32walker", - "https://steemit.com/gaming/@moon32walker/top-10-game-development-studios", - "https://steemit.com/@gustavopasquini", - "https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry", - "https://steemit.com/@benadapt", - "https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge", - "https://steemit.com/spanish/@altzero/que-es-la-nueva-economia", - "https://steemit.com/@por500bolos", - "https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise", - "https://steemit.com/@zonpower", - "https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem", - "https://steemit.com/@katharsisdrill", - "https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation", - "https://steemit.com/@glezeddy", - "https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico", - "https://steemit.com/@onetree", - "https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare", - "https://steemit.com/@verbal-d", - "https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact", - "https://steemit.com/@wanderingagorist", - "https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating", - "https://steemit.com/@knablinz", - "https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee" - ] - }, - "created": "2016-09-15T17:53:48", - "updated": "2016-09-15T17:53:48", - "depth": 0, - "children": 10, - "net_rshares": 61028272797290, - "is_paidout": false, - "payout_at": "2016-09-16T18:14:08", - "payout": 218.554, - "pending_payout_value": "218.554 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], "active_votes": [ { - "voter": "val-a", - "rshares": "30948708908726" + "rshares": "30948708908726", + "voter": "val-a" }, { - "voter": "val-b", - "rshares": "15292900000000" + "rshares": "15292900000000", + "voter": "val-b" }, { - "voter": "joseph", - "rshares": "1534352192855" + "rshares": "1534352192855", + "voter": "joseph" }, { - "voter": "masteryoda", - "rshares": "652034182902" + "rshares": "652034182902", + "voter": "masteryoda" }, { - "voter": "idol", - "rshares": "8927024295" + "rshares": "8927024295", + "voter": "idol" }, { - "voter": "donkeypong", - "rshares": "2637269453488" + "rshares": "2637269453488", + "voter": "donkeypong" }, { - "voter": "steemrollin", - "rshares": "816386307308" + "rshares": "816386307308", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "4941856440" + "rshares": "4941856440", + "voter": "sakr" }, { - "voter": "chris4210", - "rshares": "140357414085" + "rshares": "140357414085", + "voter": "chris4210" }, { - "voter": "jocelyn", - "rshares": "1536548017" + "rshares": "1536548017", + "voter": "jocelyn" }, { - "voter": "acidsun", - "rshares": "83530339170" + "rshares": "83530339170", + "voter": "acidsun" }, { - "voter": "gavvet", - "rshares": "1196485708874" + "rshares": "1196485708874", + "voter": "gavvet" }, { - "voter": "eeks", - "rshares": "59931939963" + "rshares": "59931939963", + "voter": "eeks" }, { - "voter": "fernando-sanz", - "rshares": "6122594947" + "rshares": "6122594947", + "voter": "fernando-sanz" }, { - "voter": "nanzo-scoop", - "rshares": "584270995256" + "rshares": "584270995256", + "voter": "nanzo-scoop" }, { - "voter": "mummyimperfect", - "rshares": "177415501233" + "rshares": "177415501233", + "voter": "mummyimperfect" }, { - "voter": "asch", - "rshares": "106634401121" + "rshares": "106634401121", + "voter": "asch" }, { - "voter": "kevinwong", - "rshares": "603741881611" + "rshares": "603741881611", + "voter": "kevinwong" }, { - "voter": "murh", - "rshares": "1061259321" + "rshares": "1061259321", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "3187850436" + "rshares": "3187850436", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2003304335" + "rshares": "2003304335", + "voter": "error" }, { - "voter": "cyber", - "rshares": "962089879337" + "rshares": "962089879337", + "voter": "cyber" }, { - "voter": "ak2020", - "rshares": "50884297723" + "rshares": "50884297723", + "voter": "ak2020" }, { - "voter": "justtryme90", - "rshares": "61300613738" + "rshares": "61300613738", + "voter": "justtryme90" }, { - "voter": "applecrisp", - "rshares": "410517349" + "rshares": "410517349", + "voter": "applecrisp" }, { - "voter": "altoz", - "rshares": "35693164103" + "rshares": "35693164103", + "voter": "altoz" }, { - "voter": "anwenbaumeister", - "rshares": "820589638514" + "rshares": "820589638514", + "voter": "anwenbaumeister" }, { - "voter": "mark-waser", - "rshares": "5950595929" + "rshares": "5950595929", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "118349796563" + "rshares": "118349796563", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "192325266448" + "rshares": "192325266448", + "voter": "kimziv" }, { - "voter": "emily-cook", - "rshares": "77083924707" + "rshares": "77083924707", + "voter": "emily-cook" }, { - "voter": "orly", - "rshares": "3283440404" + "rshares": "3283440404", + "voter": "orly" }, { - "voter": "steem1653", - "rshares": "2834957075" + "rshares": "2834957075", + "voter": "steem1653" }, { - "voter": "cynetyc", - "rshares": "124961861" + "rshares": "124961861", + "voter": "cynetyc" }, { - "voter": "thegoodguy", - "rshares": "5357326058" + "rshares": "5357326058", + "voter": "thegoodguy" }, { - "voter": "karen13", - "rshares": "4209522316" + "rshares": "4209522316", + "voter": "karen13" }, { - "voter": "nabilov", - "rshares": "251366150295" + "rshares": "251366150295", + "voter": "nabilov" }, { - "voter": "noodhoog", - "rshares": "8401059269" + "rshares": "8401059269", + "voter": "noodhoog" }, { - "voter": "knozaki2015", - "rshares": "455246290726" + "rshares": "455246290726", + "voter": "knozaki2015" }, { - "voter": "lichtblick", - "rshares": "7166494256" + "rshares": "7166494256", + "voter": "lichtblick" }, { - "voter": "creemej", - "rshares": "33739090409" + "rshares": "33739090409", + "voter": "creemej" }, { - "voter": "btcbtcbtc20155", - "rshares": "5726411049" + "rshares": "5726411049", + "voter": "btcbtcbtc20155" }, { - "voter": "blueorgy", - "rshares": "163324531946" + "rshares": "163324531946", + "voter": "blueorgy" }, { - "voter": "poseidon", - "rshares": "4195248338" + "rshares": "4195248338", + "voter": "poseidon" }, { - "voter": "simon.braki.love", - "rshares": "3435918746" + "rshares": "3435918746", + "voter": "simon.braki.love" }, { - "voter": "liberosist", - "rshares": "268137172703" + "rshares": "268137172703", + "voter": "liberosist" }, { - "voter": "birdie", - "rshares": "4128504280" + "rshares": "4128504280", + "voter": "birdie" }, { - "voter": "sharker", - "rshares": "5609578664" + "rshares": "5609578664", + "voter": "sharker" }, { - "voter": "jl777", - "rshares": "204618259005" + "rshares": "204618259005", + "voter": "jl777" }, { - "voter": "yarly", - "rshares": "1773036384" + "rshares": "1773036384", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "267188192" + "rshares": "267188192", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "267587944" + "rshares": "267587944", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "154579129" + "rshares": "154579129", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "155451862" + "rshares": "155451862", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "88607961" + "rshares": "88607961", + "voter": "yarly7" }, { - "voter": "moon32walker", - "rshares": "11031796651" + "rshares": "11031796651", + "voter": "moon32walker" }, { - "voter": "sergey44", - "rshares": "258619590" + "rshares": "258619590", + "voter": "sergey44" }, { - "voter": "proto", - "rshares": "17267341753" + "rshares": "17267341753", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "31599342155" + "rshares": "31599342155", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "428868451" + "rshares": "428868451", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "229507420" + "rshares": "229507420", + "voter": "yarly11" }, { - "voter": "yarly12", - "rshares": "80241480" + "rshares": "80241480", + "voter": "yarly12" }, { - "voter": "steemster1", - "rshares": "146224042" + "rshares": "146224042", + "voter": "steemster1" }, { - "voter": "mahekg", - "rshares": "5878023046" + "rshares": "5878023046", + "voter": "mahekg" }, { - "voter": "taker", - "rshares": "8734150854" + "rshares": "8734150854", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "6521104126" + "rshares": "6521104126", + "voter": "nekromarinist" }, { - "voter": "theprophet0", - "rshares": "10553169212" + "rshares": "10553169212", + "voter": "theprophet0" }, { - "voter": "sharon", - "rshares": "57873464" + "rshares": "57873464", + "voter": "sharon" }, { - "voter": "lillianjones", - "rshares": "58971492" + "rshares": "58971492", + "voter": "lillianjones" }, { - "voter": "laonie", - "rshares": "1117443990130" + "rshares": "1117443990130", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "4257390614" + "rshares": "4257390614", + "voter": "twinner" }, { - "voter": "timcliff", - "rshares": "4414425121" + "rshares": "4414425121", + "voter": "timcliff" }, { - "voter": "myfirst", - "rshares": "38640926181" + "rshares": "38640926181", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "233306274805" + "rshares": "233306274805", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "8723132526" + "rshares": "8723132526", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "1667759072" + "rshares": "1667759072", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "51539167746" + "rshares": "51539167746", + "voter": "midnightoil" }, { - "voter": "ullikume", - "rshares": "4190377366" + "rshares": "4190377366", + "voter": "ullikume" }, { - "voter": "xiaohui", - "rshares": "128906992414" + "rshares": "128906992414", + "voter": "xiaohui" }, { - "voter": "jphamer1", - "rshares": "21112616587" + "rshares": "21112616587", + "voter": "jphamer1" }, { - "voter": "elfkitchen", - "rshares": "6306539895" + "rshares": "6306539895", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "102434307703" + "rshares": "102434307703", + "voter": "joele" }, { - "voter": "randyclemens", - "rshares": "15549176040" + "rshares": "15549176040", + "voter": "randyclemens" }, { - "voter": "xiaokongcom", - "rshares": "4030108065" + "rshares": "4030108065", + "voter": "xiaokongcom" }, { - "voter": "msjennifer", - "rshares": "59437351" + "rshares": "59437351", + "voter": "msjennifer" }, { - "voter": "ciao", - "rshares": "54654502" + "rshares": "54654502", + "voter": "ciao" }, { - "voter": "steemo", - "rshares": "52985539" + "rshares": "52985539", + "voter": "steemo" }, { - "voter": "xianjun", - "rshares": "8123975227" + "rshares": "8123975227", + "voter": "xianjun" }, { - "voter": "steema", - "rshares": "52848854" + "rshares": "52848854", + "voter": "steema" }, { - "voter": "confucius", - "rshares": "69662169" + "rshares": "69662169", + "voter": "confucius" }, { - "voter": "borran", - "rshares": "11292536945" + "rshares": "11292536945", + "voter": "borran" }, { - "voter": "jarvis", - "rshares": "53661976" + "rshares": "53661976", + "voter": "jarvis" }, { - "voter": "microluck", - "rshares": "546765304" + "rshares": "546765304", + "voter": "microluck" }, { - "voter": "razberrijam", - "rshares": "75676352" + "rshares": "75676352", + "voter": "razberrijam" }, { - "voter": "fortuner", - "rshares": "53106127" + "rshares": "53106127", + "voter": "fortuner" }, { - "voter": "pompe72", - "rshares": "84942400" + "rshares": "84942400", + "voter": "pompe72" }, { - "voter": "lemouth", - "rshares": "8114632832" + "rshares": "8114632832", + "voter": "lemouth" }, { - "voter": "gvargas123", - "rshares": "10344891579" + "rshares": "10344891579", + "voter": "gvargas123" }, { - "voter": "johnbyrd", - "rshares": "51877132" + "rshares": "51877132", + "voter": "johnbyrd" }, { - "voter": "thomasaustin", - "rshares": "50682252" + "rshares": "50682252", + "voter": "thomasaustin" }, { - "voter": "thermor", - "rshares": "51859074" + "rshares": "51859074", + "voter": "thermor" }, { - "voter": "ficholl", - "rshares": "50691211" + "rshares": "50691211", + "voter": "ficholl" }, { - "voter": "widell", - "rshares": "51852278" + "rshares": "51852278", + "voter": "widell" }, { - "voter": "steevc", - "rshares": "404286448" + "rshares": "404286448", + "voter": "steevc" }, { - "voter": "movievertigo", - "rshares": "3635091595" + "rshares": "3635091595", + "voter": "movievertigo" }, { - "voter": "revelbrooks", - "rshares": "51481279" + "rshares": "51481279", + "voter": "revelbrooks" }, { - "voter": "cehuneke", - "rshares": "1573489537" + "rshares": "1573489537", + "voter": "cehuneke" }, { - "voter": "netaterra", - "rshares": "2982676167" + "rshares": "2982676167", + "voter": "netaterra" }, { - "voter": "andrewawerdna", - "rshares": "23137850346" + "rshares": "23137850346", + "voter": "andrewawerdna" }, { - "voter": "trev", - "rshares": "5831957227" + "rshares": "5831957227", + "voter": "trev" }, { - "voter": "craigwilliamz", - "rshares": "8773942171" + "rshares": "8773942171", + "voter": "craigwilliamz" }, { - "voter": "mandibil", - "rshares": "51505575275" + "rshares": "51505575275", + "voter": "mandibil" }, { - "voter": "daut44", - "rshares": "32462674824" + "rshares": "32462674824", + "voter": "daut44" }, { - "voter": "curpose", - "rshares": "50416427" + "rshares": "50416427", + "voter": "curpose" }, { - "voter": "curving", - "rshares": "3597236649" + "rshares": "3597236649", + "voter": "curving" }, { - "voter": "uri-bruck", - "rshares": "61596105" + "rshares": "61596105", + "voter": "uri-bruck" }, { - "voter": "shenanigator", - "rshares": "112983030208" + "rshares": "112983030208", + "voter": "shenanigator" }, { - "voter": "quinneaker", - "rshares": "10005063213" + "rshares": "10005063213", + "voter": "quinneaker" }, { - "voter": "einsteinpotsdam", - "rshares": "7626813355" + "rshares": "7626813355", + "voter": "einsteinpotsdam" }, { - "voter": "richardcrill", - "rshares": "4747321980" + "rshares": "4747321980", + "voter": "richardcrill" }, { - "voter": "jeremyfromwi", - "rshares": "2205784762" + "rshares": "2205784762", + "voter": "jeremyfromwi" }, { - "voter": "troich", - "rshares": "50588612" + "rshares": "50588612", + "voter": "troich" }, { - "voter": "davidjkelley", - "rshares": "1661534801" + "rshares": "1661534801", + "voter": "davidjkelley" }, { - "voter": "crion", - "rshares": "50593879" + "rshares": "50593879", + "voter": "crion" }, { - "voter": "greatness", - "rshares": "178419224" + "rshares": "178419224", + "voter": "greatness" }, { - "voter": "hitherise", - "rshares": "50271139" + "rshares": "50271139", + "voter": "hitherise" }, { - "voter": "wiss", - "rshares": "50262756" + "rshares": "50262756", + "voter": "wiss" }, { - "voter": "sponge-bob", - "rshares": "54249219602" + "rshares": "54249219602", + "voter": "sponge-bob" }, { - "voter": "digital-wisdom", - "rshares": "15571056039" + "rshares": "15571056039", + "voter": "digital-wisdom" }, { - "voter": "getonthetrain", - "rshares": "3365396535" + "rshares": "3365396535", + "voter": "getonthetrain" }, { - "voter": "ethical-ai", - "rshares": "3710959443" + "rshares": "3710959443", + "voter": "ethical-ai" }, { - "voter": "stroully", - "rshares": "51033798" + "rshares": "51033798", + "voter": "stroully" }, { - "voter": "jwaser", - "rshares": "6831361820" + "rshares": "6831361820", + "voter": "jwaser" }, { - "voter": "tfeldman", - "rshares": "468106735" + "rshares": "468106735", + "voter": "tfeldman" }, { - "voter": "thadm", - "rshares": "50712038" + "rshares": "50712038", + "voter": "thadm" }, { - "voter": "prof", - "rshares": "50710305" + "rshares": "50710305", + "voter": "prof" }, { - "voter": "ionescur", - "rshares": "1597514180" + "rshares": "1597514180", + "voter": "ionescur" }, { - "voter": "bane", - "rshares": "50065875" + "rshares": "50065875", + "voter": "bane" }, { - "voter": "vive", - "rshares": "50059754" + "rshares": "50059754", + "voter": "vive" }, { - "voter": "coad", - "rshares": "50054445" + "rshares": "50054445", + "voter": "coad" }, { - "voter": "bwaser", - "rshares": "2675506788" + "rshares": "2675506788", + "voter": "bwaser" }, { - "voter": "renzoarg", - "rshares": "7645490859" + "rshares": "7645490859", + "voter": "renzoarg" }, { - "voter": "sofa", - "rshares": "50840303" + "rshares": "50840303", + "voter": "sofa" }, { - "voter": "roadhog", - "rshares": "53990613" + "rshares": "53990613", + "voter": "roadhog" }, { - "voter": "doggnostic", - "rshares": "52794249" + "rshares": "52794249", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "52521499" + "rshares": "52521499", + "voter": "jenny-talls" }, { - "voter": "mariandavp", - "rshares": "8199670899" + "rshares": "8199670899", + "voter": "mariandavp" }, { - "voter": "brains", - "rshares": "55344422883" + "rshares": "55344422883", + "voter": "brains" }, { - "voter": "post-successful", - "rshares": "53415391" + "rshares": "53415391", + "voter": "post-successful" }, { - "voter": "burnin", - "rshares": "5866415576" + "rshares": "5866415576", + "voter": "burnin" }, { - "voter": "anomaly", - "rshares": "271439221" + "rshares": "271439221", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401297947" + "rshares": "2401297947", + "voter": "ellepdub" }, { - "voter": "michelle.gent", - "rshares": "4116636581" + "rshares": "4116636581", + "voter": "michelle.gent" }, { - "voter": "herpetologyguy", - "rshares": "12115638535" + "rshares": "12115638535", + "voter": "herpetologyguy" }, { - "voter": "morgan.waser", - "rshares": "4817004213" + "rshares": "4817004213", + "voter": "morgan.waser" }, { - "voter": "dragonice", - "rshares": "50228382" + "rshares": "50228382", + "voter": "dragonice" }, { - "voter": "aksinya", - "rshares": "1288421610" + "rshares": "1288421610", + "voter": "aksinya" }, { - "voter": "bapparabi", - "rshares": "1921231770" + "rshares": "1921231770", + "voter": "bapparabi" }, { - "voter": "opticalillusions", - "rshares": "50487909" + "rshares": "50487909", + "voter": "opticalillusions" }, { - "voter": "strong-ai", - "rshares": "3689852156" + "rshares": "3689852156", + "voter": "strong-ai" }, { - "voter": "grisha-danunaher", - "rshares": "505556200" + "rshares": "505556200", + "voter": "grisha-danunaher" }, { - "voter": "igtes", - "rshares": "71207873" + "rshares": "71207873", + "voter": "igtes" }, { - "voter": "curie", - "rshares": "50277354380" + "rshares": "50277354380", + "voter": "curie" }, { - "voter": "dikanevroman", - "rshares": "851767121" + "rshares": "851767121", + "voter": "dikanevroman" }, { - "voter": "buffett", - "rshares": "141679752" + "rshares": "141679752", + "voter": "buffett" }, { - "voter": "witchcraftblog", - "rshares": "453506109" + "rshares": "453506109", + "voter": "witchcraftblog" }, { - "voter": "photorealistic", - "rshares": "157799009" + "rshares": "157799009", + "voter": "photorealistic" }, { - "voter": "illusions", - "rshares": "160880639" + "rshares": "160880639", + "voter": "illusions" }, { - "voter": "dresden", - "rshares": "6920933761" + "rshares": "6920933761", + "voter": "dresden" }, { - "voter": "caseyneistat", - "rshares": "160845765" + "rshares": "160845765", + "voter": "caseyneistat" }, { - "voter": "ysa", - "rshares": "692395145" + "rshares": "692395145", + "voter": "ysa" }, { - "voter": "correct", - "rshares": "159984914" + "rshares": "159984914", + "voter": "correct" }, { - "voter": "capcom", - "rshares": "159973989" + "rshares": "159973989", + "voter": "capcom" }, { - "voter": "sledgehammer", - "rshares": "159963865" + "rshares": "159963865", + "voter": "sledgehammer" }, { - "voter": "haribo", - "rshares": "159950870" + "rshares": "159950870", + "voter": "haribo" }, { - "voter": "benetton", - "rshares": "159531007" + "rshares": "159531007", + "voter": "benetton" }, { - "voter": "stimmt", - "rshares": "156194471" + "rshares": "156194471", + "voter": "stimmt" }, { - "voter": "reef", - "rshares": "159143891" + "rshares": "159143891", + "voter": "reef" }, { - "voter": "cream", - "rshares": "158632601" + "rshares": "158632601", + "voter": "cream" }, { - "voter": "reddust", - "rshares": "891891710" + "rshares": "891891710", + "voter": "reddust" }, { - "voter": "aldentan", - "rshares": "336222066" + "rshares": "336222066", + "voter": "aldentan" }, { - "voter": "techslut", - "rshares": "191981449" + "rshares": "191981449", + "voter": "techslut" } ], + "author": "curie", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 182, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/curie/@curie/the-daily-curie-14th-sept-15th-sept-2016", - "blacklists": [] - }, - { - "post_id": 960063, - "author": "alienbutt", - "permlink": "alien-or-plant", - "category": "photography", - "title": "Alien or plant?", - "body": "You decide what they are.\nAlien heads staked on a post or seed pods?\n\"\n\n\"", + "blacklists": [], + "body": "
https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg
\n\n## Introduction\n[Project Curie](https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors) is a community project run by several Steemit authors. Its mission is to help reward content creators who are posting great original content, yet who have not yet become established. In the short time since Curie began, our writers group has partnered with @nextgencrypto and other whale accounts to bring rewards to these deserving authors. *Writers, artists, chefs, photographers, videographers, and many others have been recognized by these rewards.*\n\nEach day, the members of our Project will publish this list of the posts that Project Curie has chosen to reward recently. We hope that this list will provide more positive exposure to the authors we have selected. Also, it is an effort for us to be more transparent about which posts are being rewarded. We hope that you will consider following not only this @curie account, but also many of the authors whose work is featured here each day. **Please consider adding your comments on these posts also!**\n\nProject Curie's daily curation lists will now be called \"The Daily Curie\". We hope you like the name! Future editions of The Daily Curie will [feature our new logo](https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement). For the latest on Project Curie, do check out our [Month #1 update](https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016). \n\n----------------------\n\n## Today's Brief Analysis\n\nToday's list polls all posts curated between 17:00 14/09 UTC and 17:00 15/09 UTC. Project Curie voted on a total of **103 posts** by 99 unique authors. **SBD 3,832** has been generated for authors thus far, at an average of SBD 37 per post. \n\n----------------------\n| Author | Post | Payout |\n| --------- | ---------- | --------- |\n| [@faddat](https://steemit.com/@faddat) | [[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!](https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed) | 616.681 SBD |\n| [@rampant](https://steemit.com/@rampant) | [Steemit Daily Drawing Tutorial - Gesture drawings (plus tool)](https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool) | 215.310 SBD |\n| [@shenanigator](https://steemit.com/@shenanigator) | [Doing the Right Thing Will Get You Fired. What Do You Do?](https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do) | 205.664 SBD |\n| [@penguinpablo](https://steemit.com/@penguinpablo) | [How to Carve an Apple Leaf](https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf) | 196.419 SBD |\n| [@nathanjtaylor](https://steemit.com/@nathanjtaylor) | [Fire And Grace Art Painting And Poetry](https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry) | 189.043 SBD |\n| [@lily-da-vine](https://steemit.com/@lily-da-vine) | [Going Bananas in Acapulco](https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco) | 158.416 SBD |\n| [@budgetbucketlist](https://steemit.com/@budgetbucketlist) | [A 1-week plunge into Mexico City's madness! Art adventures, Frida-seeking and unfiltered exhaust fumes...](https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes) | 151.033 SBD |\n| [@benjiberigan](https://steemit.com/@benjiberigan) | [Anarchist Architecture, part 5: The cruelty of architectural codes and regulations.](https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations) | 132.427 SBD |\n| [@ausbitbank](https://steemit.com/@ausbitbank) | [The time my town flooded, the fragility of the food supply and lessons learned (Original photos)](https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos) | 125.877 SBD |\n| [@emily-cook](https://steemit.com/@emily-cook) | [THE ISLE OF MAN FILM FESTIVAL 2016 -A week of parties, red carpets and a lot of hard work!](https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work) | 121.336 SBD |\n| [@team-leibniz](https://steemit.com/@team-leibniz) | [Week 1 NFL Daily Fantasy Football Results - How my Bayesian Inspired Lineups Fared (+$84.00)](https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00) | 119.473 SBD |\n| [@ionescur](https://steemit.com/@ionescur) | [Urban dreams of freedom: back to the countryside, back to the land](https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land) | 110.564 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [New traditionl painting - \"The Battle\" - Steps of work](https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work) | 105.622 SBD |\n| [@juliac](https://steemit.com/@juliac) | [One of The Best Portraits That I've Ever Created: Einstein. What Do You Think?](https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think) | 103.781 SBD |\n| [@luzcypher](https://steemit.com/@luzcypher) | [Cover Crops Can Grow Food Organically With No Fertilizers, No Pesticides, No Herbicides And No Chemicals](https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals) | 100.117 SBD |\n| [@akareyon](https://steemit.com/@akareyon) | [I find your lack of argument disturbing](https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing) | 98.525 SBD |\n| [@curving](https://steemit.com/@curving) | [The Ephemeral Cairn Gardens Of the Austin Greenbelt - A Photo Journal and Meditation](https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation) | 96.834 SBD |\n| [@aleksandraz](https://steemit.com/@aleksandraz) | [Incredible Science - Brainbow Technology](https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology) | 89.777 SBD |\n| [@skapaneas](https://steemit.com/@skapaneas) | [IBD Crohn desease and Ulceritive collitis. what are they, self diagnose, self treat and more.](https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more) | 85.958 SBD |\n| [@gargon](https://steemit.com/@gargon) | [Proyecto Cervantes (13 - 15 Sept 2016): Compensaci\u00f3n y reconocimiento para escritores de habla hispana / Bringing rewards and recognition to spanish writers (Vol. III)](https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and) | 83.725 SBD |\n| [@iamwne](https://steemit.com/@iamwne) | [Blade Runner Inspired Digital Set - The Dark Market - Beauty Pass](https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass) | 83.869 SBD |\n| [@stormblaze](https://steemit.com/@stormblaze) | [Where Do Deleted Files Go?](https://steemit.com/technology/@stormblaze/where-do-deleted-files-go) | 81.221 SBD |\n| [@yanarnst](https://steemit.com/@yanarnst) | [Steemit Food Art lesson 2 ''Salad with chicken liver and pine nuts''](https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts) | 78.034 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Myths in the Sky: Ursa Major and Ursa Minor](https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor) | 72.174 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Brain preservation: an ambulance to the future](https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future) | 72.082 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Vivisecting the Stargazing Tribe: Visual Observers and Screen Scanners](https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners) | 71.421 SBD |\n| [@cristi](https://steemit.com/@cristi) | [Radical Metabolism - No Food and Water for 8 Months](https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months) | 69.559 SBD |\n| [@stranger27](https://steemit.com/@stranger27) | [Fibonacci sequence and Golden Ratio: magic numbers of Nature](https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature) | 66.258 SBD |\n| [@nekromarinist](https://steemit.com/@nekromarinist) | [Let's talk a little bit about phobias today!](https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today) | 61.776 SBD |\n| [@richman](https://steemit.com/@richman) | [If you want to lose a friend, lend him money (My life story)](https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story) | 58.193 SBD |\n| [@maceytomlin](https://steemit.com/@maceytomlin) | [What Exactly is Ayahuasca? How Should You Prepare for a Ceremony?](https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony) | 58.197 SBD |\n| [@nili](https://steemit.com/@nili) | [Smart Life (part 2) - Resolving the Godel's paradox on the blockchain as a solution for a decentralized trusted protocol](https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol) | 55.575 SBD |\n| [@optimistic-crone](https://steemit.com/@optimistic-crone) | [PROBIOTICS FOR LIFE!!! SUPER SIMPLE FERMENTED VEGETABLE 'KIM CHEE' RECIPE](https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe) | 54.909 SBD |\n| [@anarchyhasnogods](https://steemit.com/@anarchyhasnogods) | [Learning one dimensional motion using graphs- physics for beginners - part one](https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one) | 53.295 SBD |\n| [@yostopia](https://steemit.com/@yostopia) | [Beginner's mind, creative mind... the making of a Vimeo Staff Pick.](https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick) | 51.222 SBD |\n| [@reneenouveau](https://steemit.com/@reneenouveau) | [My response to Paul Steyn's myopic article \"Mr. Environmentalist\" shockingly published by National Geographic in Sept 2015.](https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015) | 49.433 SBD |\n| [@king3071](https://steemit.com/@king3071) | [MY DREAM DESTINATION - SWITZERLAND](https://steemit.com/travel/@king3071/my-dream-destination-switzerland) | 49.816 SBD |\n| [@kolin.evans](https://steemit.com/@kolin.evans) | [Something a little more substantial for you to think about - the 'IS' / 'WAS' CPT (Continuous Probable Time-lines.)](https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines) | 47.288 SBD |\n| [@fenglosophy](https://steemit.com/@fenglosophy) | [Does the language you speak influence how you think?](https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think) | 44.070 SBD |\n| [@mandibil](https://steemit.com/@mandibil) | [SAVAGE [Gorm Just, Denmark 2009] - movie review by Mandibil](https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil) | 44.621 SBD |\n| [@therajmahal](https://steemit.com/@therajmahal) | [Making the Impossible... Possible](https://steemit.com/science/@therajmahal/making-the-impossible-possible) | 44.765 SBD |\n| [@carlitashaw](https://steemit.com/@carlitashaw) | [The World's Worst Oil Spills, Ramifications & Amazing Alternative Solutions.](https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions) | 44.986 SBD |\n| [@renzoarg](https://steemit.com/@renzoarg) | [Skip a pill - Antibiotics](https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics) | 43.918 SBD |\n| [@rachelsvparry](https://steemit.com/@rachelsvparry) | [Under the Sea (again, but better this time)](https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time) | 43.436 SBD |\n| [@royalmacro](https://steemit.com/@royalmacro) | [lonely tree [An Original Abstract Art]](https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art) | 42.826 SBD |\n| [@stephmckenzie](https://steemit.com/@stephmckenzie) | [The Power of Choice--A Magnificent Key to True Personal Freedom](https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone) | 42.441 SBD |\n| [@alwayzgame](https://steemit.com/@alwayzgame) | [10 simple steps to ruin your child's life](https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life) | 42.475 SBD |\n| [@nonlinearone](https://steemit.com/@nonlinearone) | [Can Hemingway Improve Your Writing?](https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing) | 42.669 SBD |\n| [@kafkanarchy84](https://steemit.com/@kafkanarchy84) | [\"Johnny B. Goode\" Guitar Lesson and Intro to Theory, Vol. II](https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii) | 41.326 SBD |\n| [@feline1991](https://steemit.com/@feline1991) | [A Steemit Original - A Lifetime of Seeking Happiness - Chapter 2 - Part 2](https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2) | 41.931 SBD |\n| [@geke](https://steemit.com/@geke) | [The Banker and the Bulova - an original poem (Steemit flash-writing challenge)](https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge) | 41.497 SBD |\n| [@lscottphotos](https://steemit.com/@lscottphotos) | [LSCOTTPHOTOS Welcome to my family :) Thank you steemers <3 (Original Photos)](https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos) | 40.201 SBD |\n| [@pinkisland](https://steemit.com/@pinkisland) | [My Philosophy of Education](https://steemit.com/writing/@pinkisland/my-philosophy-of-education) | 40.978 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cinco](https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco) | 39.708 SBD |\n| [@luisucv34](https://steemit.com/@luisucv34) | [Venezuela: The lack of opportunities (English edition)](https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition) | 39.783 SBD |\n| [@beowulfoflegend](https://steemit.com/@beowulfoflegend) | [Silvanus and Empire, an Original Novel (Chapter Twenty)](https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty) | 39.543 SBD |\n| [@mariandavp](https://steemit.com/@mariandavp) | [From zero to hero - abstract office art by @mariandavp](https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp) | 39.529 SBD |\n| [@nasimbabu](https://steemit.com/@nasimbabu) | [The technology that defends us from potentially deadly diseases](https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases) | 39.620 SBD |\n| [@royaltiffany](https://steemit.com/@royaltiffany) | [Steemit B'Day Movie Review Contest Update!](https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update) | 37.706 SBD |\n| [@travelista](https://steemit.com/@travelista) | [An Adventure in Isla Esp\u00edritu Santo!](https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo) | 37.218 SBD |\n| [@jpiper20](https://steemit.com/@jpiper20) | [We Meet At Night -- An Original Story (Part 4)](https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4) | 37.319 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new painting - \"Dexter\" - Modern Impressionism](https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism) | 36.937 SBD |\n| [@krystle](https://steemit.com/@krystle) | [Keltorin's Flora and Fauna of Note - Firikwea - Valcanne's Guide to Keltorin](https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin) | 36.972 SBD |\n| [@cryptoiskey](https://steemit.com/@cryptoiskey) | [Workout from home on the cheap! - 12th September #Ultimate workout companion for your kids!](https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids) | 36.115 SBD |\n| [@getonthetrain](https://steemit.com/@getonthetrain) | [Top 10 Grisly Medieval Torture Methods](https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods) | 34.093 SBD |\n| [@ansharphoto](https://steemit.com/@ansharphoto) | [Roman Forum in the Morning, Rome](https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome) | 33.328 SBD |\n| [@aboundlessworld](https://steemit.com/@aboundlessworld) | [Introducing The Steemit Stories Podcast!](https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast) | 33.728 SBD |\n| [@thornybastard](https://steemit.com/@thornybastard) | [Chapter 10: A Call from the Forest\u2014\u6765\u81ea\u68ee\u6797\u7684\u547c\u5524](https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest) | 32.465 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Installing Bitshares / graphene from source on Mac OS X Yosemite (10.5.5)](https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5) | 32.348 SBD |\n| [@dumar022](https://steemit.com/@dumar022) | [Workshop lesson 6: Wrench: You don't wanna mess with this](https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this) | 32.155 SBD |\n| [@lapilipinas](https://steemit.com/@lapilipinas) | [Light from distant stars](https://steemit.com/science/@lapilipinas/light-from-distant-stars) | 32.778 SBD |\n| [@williambanks](https://steemit.com/@williambanks) | [Towards A Better Tomorrow : Part 1 - There but for grace!](https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace) | 31.434 SBD |\n| [@driv3n](https://steemit.com/@driv3n) | [How to Solve the Rubik's Cube like a boss - Part 2](https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2) | 31.858 SBD |\n| [@timbot606](https://steemit.com/@timbot606) | [Growing up in Appalachia](https://steemit.com/life/@timbot606/growing-up-in-appalachia) | 31.548 SBD |\n| [@themagus](https://steemit.com/@themagus) | [A less privileged white growing up in South Africa in the 1970's - part 2](https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2) | 31.099 SBD |\n| [@echoesinthemind](https://steemit.com/@echoesinthemind) | [Hanging Upside Down / DO NOT Try At Home](https://steemit.com/life/@echoesinthemind/hanging-upside-down) | 31.736 SBD |\n| [@ysa](https://steemit.com/@ysa) | [My pictures from traveling to Estes Park, Colorado](https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado) | 31.981 SBD |\n| [@aksinya](https://steemit.com/@aksinya) | [Our Trip to Wonderful, Scary and Unforgettable Kenya. Original Photos and Video](https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video) | 31.882 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cuatro](https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro) | 31.992 SBD |\n| [@successfully00](https://steemit.com/@successfully00) | [Knowing The Math - Mental Tricks - Multiplication Part 1](https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1) | 31.037 SBD |\n| [@linzo](https://steemit.com/@linzo) | [A Life Fantasy (Original Poem)](https://steemit.com/poem/@linzo/a-life-fantasy-original-poem) | 30.964 SBD |\n| [@hilarski](https://steemit.com/@hilarski) | [Panama Critters.](https://steemit.com/panama/@hilarski/panama-critters) | 28.729 SBD |\n| [@sulev](https://steemit.com/@sulev) | [Photography #11 - Pictures from my Garden: Bees, Lizards and other (part 2)](https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2) | 27.947 SBD |\n| [@steemswede](https://steemit.com/@steemswede) | [[BEER REVIEW] Thomas Hardy's Ale](https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale) | 27.183 SBD |\n| [@marius19](https://steemit.com/@marius19) | [Set of paper coffee cups. Origami](https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami) | 26.439 SBD |\n| [@poeticsnake](https://steemit.com/@poeticsnake) | [Autumn is coming Doodle style! ( Tutorial with step by step drawings)](https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings) | 26.547 SBD |\n| [@kiddarko](https://steemit.com/@kiddarko) | [Peep Life a Story By KidDarko (with tattoo illistrations and video)](https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video) | 26.853 SBD |\n| [@shieha](https://steemit.com/@shieha) | [The Hardest Computer Game of All Time - Robot Odyssey - Part 2](https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2) | 26.372 SBD |\n| [@ayim](https://steemit.com/@ayim) | [Fixing Posture - Part 4: Neck](https://steemit.com/life/@ayim/fixing-posture-part-4-neck) | 26.142 SBD |\n| [@hitmeasap](https://steemit.com/@hitmeasap) | [I am Batman's Robin or Skywalkers R2-D2. - I've always been the co-pilot. Always been the second choice.](https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice) | 25.747 SBD |\n| [@peskov](https://steemit.com/@peskov) | [Antonikha. Part 2 (featuring Vasily Peskov as author)](https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author) | 25.173 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [Advice from an angry dude: Breathe and interrupt your thoughts](https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts) | 25.162 SBD |\n| [@beginningtoend](https://steemit.com/@beginningtoend) | [Poetry, art and a little home spun philosophy.](https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy) | 25.708 SBD |\n| [@kaykunoichi](https://steemit.com/@kaykunoichi) | [Suicide Note - Audio (Written & performed by myself)](https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself) | 25.523 SBD |\n| [@booky](https://steemit.com/@booky) | [Boosting Leadership Skills = Healthier Happier You and Your Workmates](https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates) | 24.083 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [Do you Know the Difference Between RIGHT & WRONG?](https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong) | 24.516 SBD |\n| [@ekaterina4ka](https://steemit.com/@ekaterina4ka) | [We Knit Patterns by the Spokes. Post 2. \u0412\u044f\u0436\u0435\u043c \u0443\u0437\u043e\u0440\u044b \u0441\u043f\u0438\u0446\u0430\u043c\u0438. \u041f\u043e\u0441\u0442 2.](https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2) | 24.793 SBD |\n| [@scaredycatguide](https://steemit.com/@scaredycatguide) | [Real Talk - Vol 9. - Welcome To Dogmerica](https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica) | 24.207 SBD |\n| [@amy-goodrich](https://steemit.com/@amy-goodrich) | [Pineapple Mojito Green Smoothie](https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie) | 24.126 SBD |\n| [@scott.stevens](https://steemit.com/@scott.stevens) | [Awareness of Bitcoin is Now More Important Than Awareness of Geoengineering](https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering) | 24.875 SBD |\n| [@witchcraftblog](https://steemit.com/@witchcraftblog) | [My trip to Italy. Pisa.](https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa) | 24.265 SBD |\n| [@ibringawareness](https://steemit.com/@ibringawareness) | [\"Why I Got Stiffed\" Guy's Waiter Blog chapter 5](https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5) | 24.224 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new illustration - Batman vs Superman - Modern Impressionism by kimal73](https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73) | 23.617 SBD |\n| [@leylar](https://steemit.com/@leylar) | [Seeds are great travelers ~ Own work](https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work) | 23.166 SBD |\n| [@ocrdu](https://steemit.com/@ocrdu) | [The pods that go \"pop\"](https://steemit.com/photography/@ocrdu/the-pods-that-go-pop) | 23.530 SBD |\n| [@rusla](https://steemit.com/@rusla) | [Japan. Part8.](https://steemit.com/travel/@rusla/japan-part8) | 23.209 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [Puppy Charcoal Original Pencil Drawing](https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing) | 23.879 SBD |\n| [@borishaifa](https://steemit.com/@borishaifa) | [To Write Or Not To Wirte? \u041f\u0438\u0441\u0430\u0442\u044c \u0438\u043b\u0438 \u043d\u0435 \u043f\u0438\u0441\u0430\u0442\u044c?](https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat) | 23.730 SBD |\n| [@eveningstar92](https://steemit.com/@eveningstar92) | [Shit Happens, Move On-NSFW- Evening Star Art](https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art) | 23.092 SBD |\n| [@elewarne](https://steemit.com/@elewarne) | [Mixed Media](https://steemit.com/mixedmedia/@elewarne/mixed-media) | 23.059 SBD |\n| [@shredlord](https://steemit.com/@shredlord) | [Sunrise](https://steemit.com/art/@shredlord/sunrise) | 23.318 SBD |\n| [@sherlockcupid](https://steemit.com/@sherlockcupid) | [Let's Talk: Fears (Part One)](https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one) | 23.720 SBD |\n| [@annesaya](https://steemit.com/@annesaya) | [Our Guiding Star, a poem (A tribute to writers)](https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers) | 23.384 SBD |\n| [@fitmama](https://steemit.com/@fitmama) | [Why Do I Bother....](https://steemit.com/life/@fitmama/why-do-i-bother) | 23.451 SBD |\n| [@ezzy](https://steemit.com/@ezzy) | [The Bionic Experiment - Part 1 (My Original Short Stories)](https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories) | 23.480 SBD |\n| [@kingarbinv](https://steemit.com/@kingarbinv) | [Adventures in Nemaland - Part 8 (Video) + My best Pokemon catch so far.](https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far) | 23.292 SBD |\n| [@soulsistashakti](https://steemit.com/@soulsistashakti) | [How to Detect and Deflect Gaslighting from a Narcissist](https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist) | 22.018 SBD |\n| [@puffin](https://steemit.com/@puffin) | [Tragical Impoverishment - Society's Dirt (Original Poem)](https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem) | 22.621 SBD |\n| [@cehuneke](https://steemit.com/@cehuneke) | [The Sugar Scandal: Corrupted Science in the Debate of Fat vs. Sugar and Coronary Heart Disease](https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease) | 22.821 SBD |\n| [@tanata](https://steemit.com/@tanata) | [Little Black Dress involving](https://steemit.com/fashion/@tanata/little-black-dress-involving) | 22.237 SBD |\n| [@steemwriter](https://steemit.com/@steemwriter) | [YouTube Demonetization: A Step Towards Censorship?](https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship) | 22.297 SBD |\n| [@michelle.gent](https://steemit.com/@michelle.gent) | [Dusty - one of my characters](https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters) | 22.659 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [A Gift-Original Rose Drawing](https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing) | 22.249 SBD |\n| [@runridefly](https://steemit.com/@runridefly) | [Minnow's Life - @runridefly original cartoon \"minnowsunite Whale sighting\" minnows and a whale](https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale) | 22.836 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [[SHORT STORY] The Cult of Personality - Part One](https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one) | 22.552 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Look at the Flower Chicory: a Useful and Beautiful Flower ... my Favorite Photos of Chicory](https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory) | 22.795 SBD |\n| [@victoriart](https://steemit.com/@victoriart) | [Hazelnut Mood](https://steemit.com/art/@victoriart/hazelnut-mood) | 22.443 SBD |\n| [@heroic15397](https://steemit.com/@heroic15397) | [Amazing Birds in the Greater Montreal area](https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area) | 22.987 SBD |\n| [@smartercars](https://steemit.com/@smartercars) | [Reviewing the Volkswagen Touareg ~ Smarter Car Reviews](https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews) | 22.975 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [Blues Jam & Techniques [9-14-2016]](https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016) | 22.415 SBD |\n| [@matthew.raymer](https://steemit.com/@matthew.raymer) | [Life Stories](https://steemit.com/psychology/@matthew.raymer/life-stories) | 22.733 SBD |\n| [@positivesteem](https://steemit.com/@positivesteem) | [Common Sense Versus Degrees: The Man Who Has One Hundred Degrees](https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees) | 22.941 SBD |\n| [@d3nv3r](https://steemit.com/@d3nv3r) | [Cloud Mining - The Struggle is Real](https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real) | 22.266 SBD |\n| [@adubi](https://steemit.com/@adubi) | [Healing Food Plan: The Ultimate Cheat Sheet](https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet) | 22.947 SBD |\n| [@alitas](https://steemit.com/@alitas) | [(spanish) Cazuela de Calamar con Papas Rejilla](https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla) | 22.240 SBD |\n| [@mazi](https://steemit.com/@mazi) | [I Can See Clearly Now .... Platanus occidentalis](https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis) | 22.784 SBD |\n| [@mikemacintire](https://steemit.com/@mikemacintire) | [A Red Like No Other - My work](https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work) | 22.289 SBD |\n| [@altzero](https://steemit.com/@altzero) | [Im\u00e1genes de una vida (2)](https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2) | 21.555 SBD |\n| [@birdie](https://steemit.com/@birdie) | [Clouds That Demand Attention (Original Photos)](https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos) | 21.397 SBD |\n| [@michaelstobiersk](https://steemit.com/@michaelstobiersk) | [An Original Painting by Michael Stobierski](https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski) | 21.367 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Meditation Experience Can Be Really Scary](https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary) | 21.583 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [The Price Is Right Theme Music Breakdown](https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown) | 21.937 SBD |\n| [@karisa](https://steemit.com/@karisa) | [Very tasty and delicious curd cookies specially for Steemit . Part 4](https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4) | 21.940 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Borovoye (Burabai) - Pearl of Kazakhstan: The Incredible Journey (Story of my Husband)](https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband) | 20.616 SBD |\n| [@burnin](https://steemit.com/@burnin) | [Exploring the Off-Limits Areas of the Largest Cruise Ship In the World - Part 2](https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2) | 20.298 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Eyes Of Wisdom](https://steemit.com/art/@reddust/eyes-of-wisdom) | 20.051 SBD |\n| [@levycore](https://steemit.com/@levycore) | [Hot Chocolate Art - Trying Draw Faces](https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces) | 20.233 SBD |\n| [@awesomenyl](https://steemit.com/@awesomenyl) | [Sunflower Paper Tutorial](https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial) | 20.040 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [The epic and awesome guide to writing articles like a true artist that people want to read and share! [Edited for Steemit today]](https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today) | 20.192 SBD |\n| [@naquoya](https://steemit.com/@naquoya) | [[ORIGINAL FICTION] Bad Trip part two: The Gamemaster](https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster) | 20.041 SBD |\n| [@moon32walker](https://steemit.com/@moon32walker) | [Top 10 Game Development Studios](https://steemit.com/gaming/@moon32walker/top-10-game-development-studios) | 20.468 SBD |\n| [@gustavopasquini](https://steemit.com/@gustavopasquini) | [Polenta with Ragu Meat Dry](https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry) | 20.436 SBD |\n| [@benadapt](https://steemit.com/@benadapt) | [Capturing the Milky Way \u2014 A Photographer\u2019s Biggest Challenge](https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge) | 20.477 SBD |\n| [@altzero](https://steemit.com/@altzero) | [\u00bfQue es la nueva economia?](https://steemit.com/spanish/@altzero/que-es-la-nueva-economia) | 20.037 SBD |\n| [@por500bolos](https://steemit.com/@por500bolos) | [Uncovering The Most Transcendental & Biggest Secret In The Human Life. \u00bfSkeptical? I will challenge you to prove otherwise!!](https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise) | 20.894 SBD |\n| [@zonpower](https://steemit.com/@zonpower) | [This is a place (An original Poem)](https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem) | 20.869 SBD |\n| [@katharsisdrill](https://steemit.com/@katharsisdrill) | [The rune-stones of Jelling, and a new realisation.](https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation) | 19.761 SBD |\n| [@glezeddy](https://steemit.com/@glezeddy) | [MEZCLA DE TEQUILA PARA DAR EL \"GRITO\" (M\u00c9XICO)](https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico) | 15.682 SBD |\n| [@onetree](https://steemit.com/@onetree) | [South African Slang - Enter Those Who Dare!](https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare) | 33.017 SBD |\n| [@verbal-d](https://steemit.com/@verbal-d) | [Melodious Music Memoirs # 2: Impact](https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact) | 30.372 SBD |\n| [@wanderingagorist](https://steemit.com/@wanderingagorist) | [Foraging Wild Rose Hips for Tea and Eating](https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating) | 29.228 SBD |\n| [@knablinz](https://steemit.com/@knablinz) | [Hand-Made Collage Art By Knablinz ( Donuts & Coffee )](https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee) | 35.939 SBD |\n\n---------------------------\n
Note: All author rewards from this post will be used to fund Project Curie.
Join us in #curie on Steemit.chat and follow us @curie!
", + "category": "curie", + "children": 10, + "created": "2016-09-15T17:53:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "photography", - "art", - "" + "image": [ + "https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg" + ], + "links": [ + "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", + "https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement", + "https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", + "https://steemit.com/@faddat", + "https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed", + "https://steemit.com/@rampant", + "https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool", + "https://steemit.com/@shenanigator", + "https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do", + "https://steemit.com/@penguinpablo", + "https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf", + "https://steemit.com/@nathanjtaylor", + "https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry", + "https://steemit.com/@lily-da-vine", + "https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco", + "https://steemit.com/@budgetbucketlist", + "https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes", + "https://steemit.com/@benjiberigan", + "https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations", + "https://steemit.com/@ausbitbank", + "https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos", + "https://steemit.com/@emily-cook", + "https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work", + "https://steemit.com/@team-leibniz", + "https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00", + "https://steemit.com/@ionescur", + "https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land", + "https://steemit.com/@kimal73", + "https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work", + "https://steemit.com/@juliac", + "https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think", + "https://steemit.com/@luzcypher", + "https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals", + "https://steemit.com/@akareyon", + "https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing", + "https://steemit.com/@curving", + "https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation", + "https://steemit.com/@aleksandraz", + "https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology", + "https://steemit.com/@skapaneas", + "https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more", + "https://steemit.com/@gargon", + "https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", + "https://steemit.com/@iamwne", + "https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass", + "https://steemit.com/@stormblaze", + "https://steemit.com/technology/@stormblaze/where-do-deleted-files-go", + "https://steemit.com/@yanarnst", + "https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts", + "https://steemit.com/@senseye", + "https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor", + "https://steemit.com/@crasch", + "https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future", + "https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners", + "https://steemit.com/@cristi", + "https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months", + "https://steemit.com/@stranger27", + "https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature", + "https://steemit.com/@nekromarinist", + "https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today", + "https://steemit.com/@richman", + "https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story", + "https://steemit.com/@maceytomlin", + "https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony", + "https://steemit.com/@nili", + "https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol", + "https://steemit.com/@optimistic-crone", + "https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe", + "https://steemit.com/@anarchyhasnogods", + "https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one", + "https://steemit.com/@yostopia", + "https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick", + "https://steemit.com/@reneenouveau", + "https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015", + "https://steemit.com/@king3071", + "https://steemit.com/travel/@king3071/my-dream-destination-switzerland", + "https://steemit.com/@kolin.evans", + "https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines", + "https://steemit.com/@fenglosophy", + "https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think", + "https://steemit.com/@mandibil", + "https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil", + "https://steemit.com/@therajmahal", + "https://steemit.com/science/@therajmahal/making-the-impossible-possible", + "https://steemit.com/@carlitashaw", + "https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions", + "https://steemit.com/@renzoarg", + "https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics", + "https://steemit.com/@rachelsvparry", + "https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time", + "https://steemit.com/@royalmacro", + "https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art", + "https://steemit.com/@stephmckenzie", + "https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone", + "https://steemit.com/@alwayzgame", + "https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life", + "https://steemit.com/@nonlinearone", + "https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing", + "https://steemit.com/@kafkanarchy84", + "https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii", + "https://steemit.com/@feline1991", + "https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2", + "https://steemit.com/@geke", + "https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge", + "https://steemit.com/@lscottphotos", + "https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos", + "https://steemit.com/@pinkisland", + "https://steemit.com/writing/@pinkisland/my-philosophy-of-education", + "https://steemit.com/@jgcastrillo19", + "https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco", + "https://steemit.com/@luisucv34", + "https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition", + "https://steemit.com/@beowulfoflegend", + "https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty", + "https://steemit.com/@mariandavp", + "https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp", + "https://steemit.com/@nasimbabu", + "https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases", + "https://steemit.com/@royaltiffany", + "https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update", + "https://steemit.com/@travelista", + "https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo", + "https://steemit.com/@jpiper20", + "https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4", + "https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism", + "https://steemit.com/@krystle", + "https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin", + "https://steemit.com/@cryptoiskey", + "https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids", + "https://steemit.com/@getonthetrain", + "https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods", + "https://steemit.com/@ansharphoto", + "https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome", + "https://steemit.com/@aboundlessworld", + "https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast", + "https://steemit.com/@thornybastard", + "https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest", + "https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5", + "https://steemit.com/@dumar022", + "https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this", + "https://steemit.com/@lapilipinas", + "https://steemit.com/science/@lapilipinas/light-from-distant-stars", + "https://steemit.com/@williambanks", + "https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace", + "https://steemit.com/@driv3n", + "https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2", + "https://steemit.com/@timbot606", + "https://steemit.com/life/@timbot606/growing-up-in-appalachia", + "https://steemit.com/@themagus", + "https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2", + "https://steemit.com/@echoesinthemind", + "https://steemit.com/life/@echoesinthemind/hanging-upside-down", + "https://steemit.com/@ysa", + "https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado", + "https://steemit.com/@aksinya", + "https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video", + "https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro", + "https://steemit.com/@successfully00", + "https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1", + "https://steemit.com/@linzo", + "https://steemit.com/poem/@linzo/a-life-fantasy-original-poem", + "https://steemit.com/@hilarski", + "https://steemit.com/panama/@hilarski/panama-critters", + "https://steemit.com/@sulev", + "https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2", + "https://steemit.com/@steemswede", + "https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale", + "https://steemit.com/@marius19", + "https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami", + "https://steemit.com/@poeticsnake", + "https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings", + "https://steemit.com/@kiddarko", + "https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video", + "https://steemit.com/@shieha", + "https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2", + "https://steemit.com/@ayim", + "https://steemit.com/life/@ayim/fixing-posture-part-4-neck", + "https://steemit.com/@hitmeasap", + "https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice", + "https://steemit.com/@peskov", + "https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author", + "https://steemit.com/@aldentan", + "https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts", + "https://steemit.com/@beginningtoend", + "https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy", + "https://steemit.com/@kaykunoichi", + "https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself", + "https://steemit.com/@booky", + "https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates", + "https://steemit.com/@doubledex", + "https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong", + "https://steemit.com/@ekaterina4ka", + "https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2", + "https://steemit.com/@scaredycatguide", + "https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica", + "https://steemit.com/@amy-goodrich", + "https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie", + "https://steemit.com/@scott.stevens", + "https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering", + "https://steemit.com/@witchcraftblog", + "https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa", + "https://steemit.com/@ibringawareness", + "https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5", + "https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73", + "https://steemit.com/@leylar", + "https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work", + "https://steemit.com/@ocrdu", + "https://steemit.com/photography/@ocrdu/the-pods-that-go-pop", + "https://steemit.com/@rusla", + "https://steemit.com/travel/@rusla/japan-part8", + "https://steemit.com/@edgarsart", + "https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing", + "https://steemit.com/@borishaifa", + "https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat", + "https://steemit.com/@eveningstar92", + "https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art", + "https://steemit.com/@elewarne", + "https://steemit.com/mixedmedia/@elewarne/mixed-media", + "https://steemit.com/@shredlord", + "https://steemit.com/art/@shredlord/sunrise", + "https://steemit.com/@sherlockcupid", + "https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one", + "https://steemit.com/@annesaya", + "https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers", + "https://steemit.com/@fitmama", + "https://steemit.com/life/@fitmama/why-do-i-bother", + "https://steemit.com/@ezzy", + "https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories", + "https://steemit.com/@kingarbinv", + "https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far", + "https://steemit.com/@soulsistashakti", + "https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist", + "https://steemit.com/@puffin", + "https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem", + "https://steemit.com/@cehuneke", + "https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease", + "https://steemit.com/@tanata", + "https://steemit.com/fashion/@tanata/little-black-dress-involving", + "https://steemit.com/@steemwriter", + "https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship", + "https://steemit.com/@michelle.gent", + "https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters", + "https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing", + "https://steemit.com/@runridefly", + "https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale", + "https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one", + "https://steemit.com/@lyubovbar", + "https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory", + "https://steemit.com/@victoriart", + "https://steemit.com/art/@victoriart/hazelnut-mood", + "https://steemit.com/@heroic15397", + "https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area", + "https://steemit.com/@smartercars", + "https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews", + "https://steemit.com/@rubenalexander", + "https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016", + "https://steemit.com/@matthew.raymer", + "https://steemit.com/psychology/@matthew.raymer/life-stories", + "https://steemit.com/@positivesteem", + "https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees", + "https://steemit.com/@d3nv3r", + "https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real", + "https://steemit.com/@adubi", + "https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet", + "https://steemit.com/@alitas", + "https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla", + "https://steemit.com/@mazi", + "https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis", + "https://steemit.com/@mikemacintire", + "https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work", + "https://steemit.com/@altzero", + "https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2", + "https://steemit.com/@birdie", + "https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos", + "https://steemit.com/@michaelstobiersk", + "https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski", + "https://steemit.com/@reddust", + "https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary", + "https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown", + "https://steemit.com/@karisa", + "https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4", + "https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband", + "https://steemit.com/@burnin", + "https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2", + "https://steemit.com/art/@reddust/eyes-of-wisdom", + "https://steemit.com/@levycore", + "https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces", + "https://steemit.com/@awesomenyl", + "https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial", + "https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today", + "https://steemit.com/@naquoya", + "https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster", + "https://steemit.com/@moon32walker", + "https://steemit.com/gaming/@moon32walker/top-10-game-development-studios", + "https://steemit.com/@gustavopasquini", + "https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry", + "https://steemit.com/@benadapt", + "https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge", + "https://steemit.com/spanish/@altzero/que-es-la-nueva-economia", + "https://steemit.com/@por500bolos", + "https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise", + "https://steemit.com/@zonpower", + "https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem", + "https://steemit.com/@katharsisdrill", + "https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation", + "https://steemit.com/@glezeddy", + "https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico", + "https://steemit.com/@onetree", + "https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare", + "https://steemit.com/@verbal-d", + "https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact", + "https://steemit.com/@wanderingagorist", + "https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating", + "https://steemit.com/@knablinz", + "https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee" ], - "image": [ - "http://i346.photobucket.com/albums/p432/Glenn_Scrimshaw/DSCN2947_zpsx86w0mif.jpg", - "http://i346.photobucket.com/albums/p432/Glenn_Scrimshaw/DSCN2944_zps2kijcdvn.jpg" + "tags": [ + "curie", + "minnows", + "hidden-gems", + "steemit", + "project-curie" ], - "links": [ - "http://s346.photobucket.com/user/Glenn_Scrimshaw/media/DSCN2947_zpsx86w0mif.jpg.html", - "http://s346.photobucket.com/user/Glenn_Scrimshaw/media/DSCN2944_zps2kijcdvn.jpg.html" + "users": [ + "nextgencrypto", + "curie" ] }, - "created": "2016-09-15T17:53:36", - "updated": "2016-09-15T18:23:18", - "depth": 0, - "children": 4, - "net_rshares": 44874621891175, - "is_paidout": false, - "payout_at": "2016-09-16T18:36:35", - "payout": 120.784, - "pending_payout_value": "120.784 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 61028272797290, + "payout": 218.554, + "payout_at": "2016-09-16T18:14:08", + "pending_payout_value": "218.554 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-daily-curie-14th-sept-15th-sept-2016", + "post_id": 960067, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 182 + }, + "title": "The Daily Curie (14th Sept - 15th Sept 2016)", + "updated": "2016-09-15T17:53:48", + "url": "/curie/@curie/the-daily-curie-14th-sept-15th-sept-2016" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231809639013" + "rshares": "231809639013", + "voter": "anonymous" }, { - "voter": "blocktrades", - "rshares": "40042046720125" + "rshares": "40042046720125", + "voter": "blocktrades" }, { - "voter": "riverhead", - "rshares": "4287714457313" + "rshares": "4287714457313", + "voter": "riverhead" }, { - "voter": "altoz", - "rshares": "34979300821" + "rshares": "34979300821", + "voter": "altoz" }, { - "voter": "steem1653", - "rshares": "2733708608" + "rshares": "2733708608", + "voter": "steem1653" }, { - "voter": "nabilov", - "rshares": "251366150295" + "rshares": "251366150295", + "voter": "nabilov" }, { - "voter": "btcupload", - "rshares": "3813478158" + "rshares": "3813478158", + "voter": "btcupload" }, { - "voter": "future24", - "rshares": "1557779220" + "rshares": "1557779220", + "voter": "future24" }, { - "voter": "pompe72", - "rshares": "84942400" + "rshares": "84942400", + "voter": "pompe72" }, { - "voter": "craigwilliamz", - "rshares": "8773949381" + "rshares": "8773949381", + "voter": "craigwilliamz" }, { - "voter": "anomaly", - "rshares": "271440423" + "rshares": "271440423", + "voter": "anomaly" }, { - "voter": "michelle.gent", - "rshares": "4249431309" + "rshares": "4249431309", + "voter": "michelle.gent" }, { - "voter": "bapparabi", - "rshares": "1871969417" + "rshares": "1871969417", + "voter": "bapparabi" }, { - "voter": "irensche", - "rshares": "2497059333" + "rshares": "2497059333", + "voter": "irensche" }, { - "voter": "katharsisdrill", - "rshares": "84821361" + "rshares": "84821361", + "voter": "katharsisdrill" }, { - "voter": "alienbutt", - "rshares": "767043998" + "rshares": "767043998", + "voter": "alienbutt" } ], + "author": "alienbutt", + "author_payout_value": "0.000 HBD", "author_reputation": 52.91, - "stats": { - "hide": false, - "gray": false, - "total_votes": 16, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/photography/@alienbutt/alien-or-plant", - "blacklists": [] - }, - { - "post_id": 959783, - "author": "serejandmyself", - "permlink": "captured-by-time-an-original-novel-chapter-1", - "category": "story", - "title": "CAPTURED BY TIME (An Original Novel - Chapter 1)", - "body": "#### Hey guys, welcome to the first chapter of my new novel.\n#### It is a mixture of 3 time lines, with 19th century, modern day and ancient times. The genre is probably something you would call a mixture of sci-fi, mystery, adventure and a bit more. \n#### Well, I welcome you to be the judge...\n\n

[![b801c049484636e0faf71f56cca03864c0bd6.jpg](https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg)](https://www.steemimg.com/image/1wrYT)

\n\n__________________________________\n\n**Chapter ONE**\n\nIt seemed as nothing was different in yet another cold and slightly windy London evening. The smog from the river was rising up as usual and the chilly wind would bring the smell up to the embankment, where Charles was taking a rest, sitting down on his favorite bench. \n\nFrom here he could see the might of the power station from across the river and something was special in the way those chimneys threw out the smoke onto the city. \n\nHe just finished his walk along his usual route, walking amongst the cemetery outside the chapel. It always amused him; that mix of emotion and sorrow amongst the busy city people, especially during the busy afternoon hours.\n\nThat rusty smell kept mixing with up with the light freshness of the leaves from the tree nearby Charles’s bench. As he threw a brief glimpse onto the clock on the parliament building he noticed that the small arrow was on 45 minutes… \n\nSuddenly he heard a murmur of horses; he turned his head before he could finish realizing what time it was. He saw that just a few yards up the road two horse carriages didn’t manage to share the drive way. \n\n
[![Saratogacarriagec5af5.jpg](https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg)](https://www.steemimg.com/image/1w1bI)
\n\nOne of the coachmen was shouting something and angrily waving his hands. Charles was able to see from here that the coachmen’s grey clothing was partially covered in dirt, probably from the splash of the puddles from underneath the wheels. \n\nThe coachmen kept shouting something, Charles was unable to see the second carriage from where he was sitting, but was able to see some passersby, that starting to gather around the incident.\n\nIt was obvious that, just like him, those people had nothing better to do on this late afternoon then to watch in amusement the accident in the middle of the avenue.\n\nJust as Charles was starting to lose interest in the whole situation, the door of the cab that Charles could see, opened and a man dressed in a black suit and holding a pipe stepped out. He calmly put his hand in the upper inner pocket of the suit and pulled out some coins. The man made two steps up to driver and handed him the coins. At this moment the driver stopped shouting for a moment and it was clear from the look on his face that he was confused. \n\nThe cab driver counted the coins and said something to the man in the suit, the passenger didn’t answer. He turned around and started to walk in the direction of the chapel. The cab driver clearly wasn’t happy. He started to shout once again, but this time at the passenger. While the cab driver turned his attention to the passenger, Charles noticed how the second carriage that was involved in the accident managed to move a few yards back.\n\nIt was a much smaller carriage, and the driver was clearly seeable to Charles now. He seemed somewhat happy that he was not in the middle of the light anymore; he hurryingly turned the carriage and the horse around and started to move also in the direction of the chapel. \n\nAt this moment the driver of the first carriage started to lose interest in shouting and decided to clean himself up. As he started to calm down, the bemused passersby begun to walk back to where they were heading and Charles also turned his head back towards the power station.\n\nCharles was so busy watching the situation unfold that he didn’t noticed that the passenger of the first carriage crossed the road and was now heading not towards the chapel anymore, but exactly in the other direction, towards the grey bench that Charles was sitting on.\n\nAt first Charles didn’t pay any attention to just another man who was walking by. But then he noticed that calm walk of his and it hit him that this was the same passenger from the carriage.\n\n“Excuse me sir?” said Charles as the man closed up to the bench. “You are the gentleman from the carriage, aren’t you?” “I saw you a minute ago, what happened?”\n\nThe man stopped to walk and shared a look with Charles; he calmly sat down beside him and carried on smoking his pipe, as he was not hearing the questions Charles asked him. \n\n“I do apologies for the intervention, but you must not be local, I can tell by your calmness, all the folks round here are always in a hurry” Charles carried on talking as if not noticing that the man was ignoring him. \n\nAll of a sudden the weather begun to change, wind started to blow stronger and the few leaves that the tree was holding blew in the direction of the bench. The smell from the river rose up and as if that wasn’t enough Charles felt like a small rain drop hit his head. He could clearly see the green water from where he was sitting through the decorations holes of the embankments fence. It was clear that it will start to rain soon by the appearing circles on the top of the river.\n\nAfter a few minutes of quietly seating by his new neighbor Charles caught himself looking at the clock on the tower, once again he saw the small arrow on 45 minutes…\n\n“And what do we pay the government for?” “It would feel though they are taking our money and spend it on their fancy hats and suits, don’t you find?” Said Charles.\n\nAt this point the man took out the pipe into his left hand and begun to cough. After he finished coughing Charles heard him speak, at this point Charles understood that for some reason he would remember this moment for a long time to come. \n\n“It is likely to assume that they deserve to spend the money they earn” Said the man, his voice was quite low and he had a certain accent Charles could quite catch.\n\n“I don’t think that money is of importance nowadays” Said the man.\n\nCharles looked at the man with a smile - “What is of importance? One might assume that philosophically speaking, importance can be found in nothing but what is good to us”.\n\n“No body knows what can be important to others if we carry on like this, then…” Charles didn’t finish his sentence as the man turned away from him and looked the other way. He then turned his head back and Charles noticed his eyes. His eyes were nothing like what Charles had seen before, they looked as though they were glass like and the as if they were blank, there was nothing behind them.\n\n“What is important is that I am here now and that it is happening today. It is important to live your life because, just like your life Charles, it has an end”, the man looked somewhat happy when he said that and Charles jumped back on the bench a little, he felt a small shiver run down his spine.\n\n“What? How do you know my name sir? Have you been following me?” questions were racing through Charles’s mind. \n\n“As I said, this is now of importance. You life can find its end today when you get back to your gallery in your cold basement on Kinnerton street or you might listen to me and…” Charles didn’t let the man finish his sentence. He jumped up from the bench; his cane flew within millimeters of the stranger leg as he jumped.\n\n“How dare you sir? Who gives you the right…” Charles raised his voice, he never allowed himself to raise his voice at a stranger beforehand.\n\n“I think this conversation is over!” exclaimed Charles. “That would be your choice” replied the man, “Do you think the time is right?” \n\nCharles had already turned away in anger and was about to make his first step away. Something in the words of the man about the time made him think for a second, thoughts raced through his mind. The number 45 and the small arrow of the parliament clock were stuck in his head. \n\n“I don’t understand said Charles…” he turned his head back towards the clock; the arrow was still on 45 minutes. “How is that possible?” Charles turned his head to the man, but there was no one on the bench. \n\nCharles begun to search the street rapidly with his eyes, it didn’t even occur to him that it was heavily raining until that moment. \n\n
[![tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif](https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif)](https://www.steemimg.com/image/1w5tK)
\n\nThe streets were empty; there were no carriages or people to be seen around. Feeling scared he turned his head to the clock once again – “How can it still be 45 minutes...” Charles was speaking out loud.\n\nThe next moment he felt like his knees weakened, his head was swirling and he dropped his cane, last thing he could hear was the clinging the of the cane’s handle against the pavement. His thoughts mixed up with his eyesight; the man and his pipe, the handle of the clock, the carriage, the passersby, the power stations smoke…\n \n_________________________________\n\n#### Follow me @serejandmyself for more \n\nImage credit - [1](https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/) ; [2](https://giphy.com/search/carriage) ; [3](http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html) ;", + "blacklists": [], + "body": "You decide what they are.\nAlien heads staked on a post or seed pods?\n\"\n\n\"", + "category": "photography", + "children": 4, + "created": "2016-09-15T17:53:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "story", - "fiction", - "scifi", - "mystery", - "writing" - ], - "users": [ - "serejandmyself" - ], "image": [ - "https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg", - "https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg", - "https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif" + "http://i346.photobucket.com/albums/p432/Glenn_Scrimshaw/DSCN2947_zpsx86w0mif.jpg", + "http://i346.photobucket.com/albums/p432/Glenn_Scrimshaw/DSCN2944_zps2kijcdvn.jpg" ], "links": [ - "https://www.steemimg.com/image/1wrYT", - "https://www.steemimg.com/image/1w1bI", - "https://www.steemimg.com/image/1w5tK", - "https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/", - "https://giphy.com/search/carriage", - "http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html" + "http://s346.photobucket.com/user/Glenn_Scrimshaw/media/DSCN2947_zpsx86w0mif.jpg.html", + "http://s346.photobucket.com/user/Glenn_Scrimshaw/media/DSCN2944_zps2kijcdvn.jpg.html" + ], + "tags": [ + "photography", + "art", + "" ] }, - "created": "2016-09-15T17:23:48", - "updated": "2016-09-15T17:23:48", - "depth": 0, - "children": 2, - "net_rshares": 66871297900441, - "is_paidout": false, - "payout_at": "2016-09-16T17:42:51", - "payout": 260.997, - "pending_payout_value": "260.997 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 44874621891175, + "payout": 120.784, + "payout_at": "2016-09-16T18:36:35", + "pending_payout_value": "120.784 HBD", + "percent_steem_dollars": 10000, + "permlink": "alien-or-plant", + "post_id": 960063, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 16 + }, + "title": "Alien or plant?", + "updated": "2016-09-15T18:23:18", + "url": "/photography/@alienbutt/alien-or-plant" + }, + { "active_votes": [ { - "voter": "smooth", - "rshares": "31621188390159" + "rshares": "31621188390159", + "voter": "smooth" }, { - "voter": "bmw", - "rshares": "2078528809174" + "rshares": "2078528809174", + "voter": "bmw" }, { - "voter": "badassmother", - "rshares": "1912120788268" + "rshares": "1912120788268", + "voter": "badassmother" }, { - "voter": "pharesim", - "rshares": "3312854507128" + "rshares": "3312854507128", + "voter": "pharesim" }, { - "voter": "hr1", - "rshares": "2053144245901" + "rshares": "2053144245901", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1271804694676" + "rshares": "1271804694676", + "voter": "rossco99" }, { - "voter": "jaewoocho", - "rshares": "22390733187" + "rshares": "22390733187", + "voter": "jaewoocho" }, { - "voter": "steemychicken1", - "rshares": "1736291789819" + "rshares": "1736291789819", + "voter": "steemychicken1" }, { - "voter": "joseph", - "rshares": "1533973920081" + "rshares": "1533973920081", + "voter": "joseph" }, { - "voter": "recursive2", - "rshares": "466132509421" + "rshares": "466132509421", + "voter": "recursive2" }, { - "voter": "masteryoda", - "rshares": "652005899349" + "rshares": "652005899349", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120458041174" + "rshares": "3120458041174", + "voter": "recursive" }, { - "voter": "smooth.witness", - "rshares": "5941203882368" + "rshares": "5941203882368", + "voter": "smooth.witness" }, { - "voter": "idol", - "rshares": "9168101098" + "rshares": "9168101098", + "voter": "idol" }, { - "voter": "steemrollin", - "rshares": "816386307308" + "rshares": "816386307308", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "4941741048" + "rshares": "4941741048", + "voter": "sakr" }, { - "voter": "jocelyn", - "rshares": "1578030666" + "rshares": "1578030666", + "voter": "jocelyn" }, { - "voter": "acidsun", - "rshares": "83530339170" + "rshares": "83530339170", + "voter": "acidsun" }, { - "voter": "gregory-f", - "rshares": "14818192446" + "rshares": "14818192446", + "voter": "gregory-f" }, { - "voter": "edgeland", - "rshares": "151248263299" + "rshares": "151248263299", + "voter": "edgeland" }, { - "voter": "gregory60", - "rshares": "9028522101" + "rshares": "9028522101", + "voter": "gregory60" }, { - "voter": "eeks", - "rshares": "74914792736" + "rshares": "74914792736", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "15119117634" + "rshares": "15119117634", + "voter": "fkn" }, { - "voter": "elishagh1", - "rshares": "19873135819" + "rshares": "19873135819", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7802860274" + "rshares": "7802860274", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "584250736753" + "rshares": "584250736753", + "voter": "nanzo-scoop" }, { - "voter": "mummyimperfect", - "rshares": "177409209153" + "rshares": "177409209153", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313697862" + "rshares": "313697862", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106632631169" + "rshares": "106632631169", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061245798" + "rshares": "1061245798", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6230746892" + "rshares": "6230746892", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2057413439" + "rshares": "2057413439", + "voter": "error" }, { - "voter": "cyber", - "rshares": "962077066542" + "rshares": "962077066542", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "59950063204" + "rshares": "59950063204", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "49578772788" + "rshares": "49578772788", + "voter": "ak2020" }, { - "voter": "noganoo", - "rshares": "76584409982" + "rshares": "76584409982", + "voter": "noganoo" }, { - "voter": "satoshifund", - "rshares": "3848540783991" + "rshares": "3848540783991", + "voter": "satoshifund" }, { - "voter": "taoteh1221", - "rshares": "400880323222" + "rshares": "400880323222", + "voter": "taoteh1221" }, { - "voter": "applecrisp", - "rshares": "410517349" + "rshares": "410517349", + "voter": "applecrisp" }, { - "voter": "altoz", - "rshares": "35693164103" + "rshares": "35693164103", + "voter": "altoz" }, { - "voter": "gardening", - "rshares": "335983556" + "rshares": "335983556", + "voter": "gardening" }, { - "voter": "survival", - "rshares": "336136344" + "rshares": "336136344", + "voter": "survival" }, { - "voter": "arisa", - "rshares": "10021612024" + "rshares": "10021612024", + "voter": "arisa" }, { - "voter": "trogdor", - "rshares": "280737930617" + "rshares": "280737930617", + "voter": "trogdor" }, { - "voter": "mark-waser", - "rshares": "5950554459" + "rshares": "5950554459", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "118348776939" + "rshares": "118348776939", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "42738217262" + "rshares": "42738217262", + "voter": "kimziv" }, { - "voter": "seth-krings", - "rshares": "24170583392" + "rshares": "24170583392", + "voter": "seth-krings" }, { - "voter": "honeythief", - "rshares": "46264097306" + "rshares": "46264097306", + "voter": "honeythief" }, { - "voter": "technology", - "rshares": "78976166587" + "rshares": "78976166587", + "voter": "technology" }, { - "voter": "emily-cook", - "rshares": "76017114668" + "rshares": "76017114668", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187607792" + "rshares": "2187607792", + "voter": "superfreek" }, { - "voter": "isteemit", - "rshares": "49806227536" + "rshares": "49806227536", + "voter": "isteemit" }, { - "voter": "auction", - "rshares": "10993053311" + "rshares": "10993053311", + "voter": "auction" }, { - "voter": "grey580", - "rshares": "17557768630" + "rshares": "17557768630", + "voter": "grey580" }, { - "voter": "thebatchman", - "rshares": "19975264794" + "rshares": "19975264794", + "voter": "thebatchman" }, { - "voter": "lehard", - "rshares": "60403077307" + "rshares": "60403077307", + "voter": "lehard" }, { - "voter": "orly", - "rshares": "3283410959" + "rshares": "3283410959", + "voter": "orly" }, { - "voter": "riscadox", - "rshares": "5270985903" + "rshares": "5270985903", + "voter": "riscadox" }, { - "voter": "katyakov", - "rshares": "24867544970" + "rshares": "24867544970", + "voter": "katyakov" }, { - "voter": "jako", - "rshares": "12790313163" + "rshares": "12790313163", + "voter": "jako" }, { - "voter": "steemswede", - "rshares": "1159208963" + "rshares": "1159208963", + "voter": "steemswede" }, { - "voter": "sergei", - "rshares": "1664172448" + "rshares": "1664172448", + "voter": "sergei" }, { - "voter": "honey", - "rshares": "238378512" + "rshares": "238378512", + "voter": "honey" }, { - "voter": "furion", - "rshares": "71343869654" + "rshares": "71343869654", + "voter": "furion" }, { - "voter": "barbara2", - "rshares": "354114465" + "rshares": "354114465", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "393593664" + "rshares": "393593664", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "364274718" + "rshares": "364274718", + "voter": "doge4lyf" }, { - "voter": "on0tole", - "rshares": "5532441214" + "rshares": "5532441214", + "voter": "on0tole" }, { - "voter": "dicov", - "rshares": "1231812238" + "rshares": "1231812238", + "voter": "dicov" }, { - "voter": "steem1653", - "rshares": "2834923420" + "rshares": "2834923420", + "voter": "steem1653" }, { - "voter": "sveokla", - "rshares": "2919298058" + "rshares": "2919298058", + "voter": "sveokla" }, { - "voter": "sebastien", - "rshares": "17173174800" + "rshares": "17173174800", + "voter": "sebastien" }, { - "voter": "thegoodguy", - "rshares": "5357205853" + "rshares": "5357205853", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "14167556353" + "rshares": "14167556353", + "voter": "aaseb" }, { - "voter": "danielkt", - "rshares": "1026087885" + "rshares": "1026087885", + "voter": "danielkt" }, { - "voter": "karen13", - "rshares": "4209522316" + "rshares": "4209522316", + "voter": "karen13" }, { - "voter": "nabilov", - "rshares": "251366150295" + "rshares": "251366150295", + "voter": "nabilov" }, { - "voter": "luisucv34", - "rshares": "629471993" + "rshares": "629471993", + "voter": "luisucv34" }, { - "voter": "knozaki2015", - "rshares": "462033723200" + "rshares": "462033723200", + "voter": "knozaki2015" }, { - "voter": "inertia", - "rshares": "95668007343" + "rshares": "95668007343", + "voter": "inertia" }, { - "voter": "milestone", - "rshares": "46858037615" + "rshares": "46858037615", + "voter": "milestone" }, { - "voter": "lichtblick", - "rshares": "7164489185" + "rshares": "7164489185", + "voter": "lichtblick" }, { - "voter": "creemej", - "rshares": "34761364489" + "rshares": "34761364489", + "voter": "creemej" }, { - "voter": "the-future", - "rshares": "2726160685" + "rshares": "2726160685", + "voter": "the-future" }, { - "voter": "nippel66", - "rshares": "15378115921" + "rshares": "15378115921", + "voter": "nippel66" }, { - "voter": "phenom", - "rshares": "23929304431" + "rshares": "23929304431", + "voter": "phenom" }, { - "voter": "blueorgy", - "rshares": "167305835788" + "rshares": "167305835788", + "voter": "blueorgy" }, { - "voter": "benjiberigan", - "rshares": "12849414672" + "rshares": "12849414672", + "voter": "benjiberigan" }, { - "voter": "poseidon", - "rshares": "932262984" + "rshares": "932262984", + "voter": "poseidon" }, { - "voter": "mustafaomar", - "rshares": "19717588129" + "rshares": "19717588129", + "voter": "mustafaomar" }, { - "voter": "simon.braki.love", - "rshares": "3435918746" + "rshares": "3435918746", + "voter": "simon.braki.love" }, { - "voter": "thylbom", - "rshares": "82781233416" + "rshares": "82781233416", + "voter": "thylbom" }, { - "voter": "deanliu", - "rshares": "32543400703" + "rshares": "32543400703", + "voter": "deanliu" }, { - "voter": "dmitriybtc", - "rshares": "4996306142" + "rshares": "4996306142", + "voter": "dmitriybtc" }, { - "voter": "hemp", - "rshares": "1019831473" + "rshares": "1019831473", + "voter": "hemp" }, { - "voter": "flowers", - "rshares": "118287211" + "rshares": "118287211", + "voter": "flowers" }, { - "voter": "jl777", - "rshares": "204617853645" + "rshares": "204617853645", + "voter": "jl777" }, { - "voter": "zaebars", - "rshares": "30989251579" + "rshares": "30989251579", + "voter": "zaebars" }, { - "voter": "positive", - "rshares": "12261205066" + "rshares": "12261205066", + "voter": "positive" }, { - "voter": "yarly", - "rshares": "1773021661" + "rshares": "1773021661", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "267188192" + "rshares": "267188192", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "267587944" + "rshares": "267587944", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "154579129" + "rshares": "154579129", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "155451862" + "rshares": "155451862", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "88607961" + "rshares": "88607961", + "voter": "yarly7" }, { - "voter": "steemchain", - "rshares": "50626015" + "rshares": "50626015", + "voter": "steemchain" }, { - "voter": "whalepool", - "rshares": "50626015" + "rshares": "50626015", + "voter": "whalepool" }, { - "voter": "summonerrk", - "rshares": "6114654934" + "rshares": "6114654934", + "voter": "summonerrk" }, { - "voter": "webdeals", - "rshares": "12098269394" + "rshares": "12098269394", + "voter": "webdeals" }, { - "voter": "alexbezimeni", - "rshares": "231254136" + "rshares": "231254136", + "voter": "alexbezimeni" }, { - "voter": "proto", - "rshares": "17267307497" + "rshares": "17267307497", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "7222569746" + "rshares": "7222569746", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "428868451" + "rshares": "428868451", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "229507420" + "rshares": "229507420", + "voter": "yarly11" }, { - "voter": "yarly12", - "rshares": "80241480" + "rshares": "80241480", + "voter": "yarly12" }, { - "voter": "fnait", - "rshares": "412825844" + "rshares": "412825844", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "366755128" + "rshares": "366755128", + "voter": "keepcalmand" }, { - "voter": "kibela", - "rshares": "180668119" + "rshares": "180668119", + "voter": "kibela" }, { - "voter": "dmilash", - "rshares": "3084130055" + "rshares": "3084130055", + "voter": "dmilash" }, { - "voter": "mahekg", - "rshares": "13626326152" + "rshares": "13626326152", + "voter": "mahekg" }, { - "voter": "gomeravibz", - "rshares": "50578642550" + "rshares": "50578642550", + "voter": "gomeravibz" }, { - "voter": "taker", - "rshares": "8734139434" + "rshares": "8734139434", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "6521104126" + "rshares": "6521104126", + "voter": "nekromarinist" }, { - "voter": "theprophet", - "rshares": "6895440187" + "rshares": "6895440187", + "voter": "theprophet" }, { - "voter": "laonie", - "rshares": "255409573883" + "rshares": "255409573883", + "voter": "laonie" }, { - "voter": "laoyao", - "rshares": "24562026280" + "rshares": "24562026280", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "7994566199" + "rshares": "7994566199", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "51844874813" + "rshares": "51844874813", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "1938440237" + "rshares": "1938440237", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "2084695835" + "rshares": "2084695835", + "voter": "gmurph" }, { - "voter": "missmishel623", - "rshares": "68250832" + "rshares": "68250832", + "voter": "missmishel623" }, { - "voter": "midnightoil", - "rshares": "11452948850" + "rshares": "11452948850", + "voter": "midnightoil" }, { - "voter": "kalimor", - "rshares": "2280336943" + "rshares": "2280336943", + "voter": "kalimor" }, { - "voter": "ullikume", - "rshares": "4190335896" + "rshares": "4190335896", + "voter": "ullikume" }, { - "voter": "xiaohui", - "rshares": "28645142464" + "rshares": "28645142464", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "1293627572" + "rshares": "1293627572", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "102434307703" + "rshares": "102434307703", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5855564372" + "rshares": "5855564372", + "voter": "oflyhigh" }, { - "voter": "xiaokongcom", - "rshares": "895565145" + "rshares": "895565145", + "voter": "xiaokongcom" }, { - "voter": "gargon", - "rshares": "12687522802" + "rshares": "12687522802", + "voter": "gargon" }, { - "voter": "natalymaty", - "rshares": "2076619689" + "rshares": "2076619689", + "voter": "natalymaty" }, { - "voter": "numberone", - "rshares": "84763896" + "rshares": "84763896", + "voter": "numberone" }, { - "voter": "diamonds", - "rshares": "62760150" + "rshares": "62760150", + "voter": "diamonds" }, { - "voter": "xianjun", - "rshares": "1805296575" + "rshares": "1805296575", + "voter": "xianjun" }, { - "voter": "unrealisback", - "rshares": "3251259359" + "rshares": "3251259359", + "voter": "unrealisback" }, { - "voter": "borran", - "rshares": "11292536945" + "rshares": "11292536945", + "voter": "borran" }, { - "voter": "miacats", - "rshares": "93805187965" + "rshares": "93805187965", + "voter": "miacats" }, { - "voter": "microluck", - "rshares": "118219525" + "rshares": "118219525", + "voter": "microluck" }, { - "voter": "razberrijam", - "rshares": "75676352" + "rshares": "75676352", + "voter": "razberrijam" }, { - "voter": "chinadaily", - "rshares": "2022625104" + "rshares": "2022625104", + "voter": "chinadaily" }, { - "voter": "serejandmyself", - "rshares": "84708065280" + "rshares": "84708065280", + "voter": "serejandmyself" }, { - "voter": "pollina", - "rshares": "106144628" + "rshares": "106144628", + "voter": "pollina" }, { - "voter": "macartem", - "rshares": "2958177650" + "rshares": "2958177650", + "voter": "macartem" }, { - "voter": "gvargas123", - "rshares": "10344891579" + "rshares": "10344891579", + "voter": "gvargas123" }, { - "voter": "jaredcwillis", - "rshares": "10691300360" + "rshares": "10691300360", + "voter": "jaredcwillis" }, { - "voter": "netaterra", - "rshares": "2982676167" + "rshares": "2982676167", + "voter": "netaterra" }, { - "voter": "piezolit", - "rshares": "59171026" + "rshares": "59171026", + "voter": "piezolit" }, { - "voter": "trev", - "rshares": "6069996297" + "rshares": "6069996297", + "voter": "trev" }, { - "voter": "leno4ek", - "rshares": "1152952998" + "rshares": "1152952998", + "voter": "leno4ek" }, { - "voter": "daut44", - "rshares": "33111928321" + "rshares": "33111928321", + "voter": "daut44" }, { - "voter": "contentjunkie", - "rshares": "5475437205" + "rshares": "5475437205", + "voter": "contentjunkie" }, { - "voter": "einsteinpotsdam", - "rshares": "7779288318" + "rshares": "7779288318", + "voter": "einsteinpotsdam" }, { - "voter": "richardcrill", - "rshares": "5053600817" + "rshares": "5053600817", + "voter": "richardcrill" }, { - "voter": "jeremyfromwi", - "rshares": "2205784762" + "rshares": "2205784762", + "voter": "jeremyfromwi" }, { - "voter": "eight-rad", - "rshares": "2056057288" + "rshares": "2056057288", + "voter": "eight-rad" }, { - "voter": "nadin3", - "rshares": "5012661990" + "rshares": "5012661990", + "voter": "nadin3" }, { - "voter": "xanoxt", - "rshares": "3411072843" + "rshares": "3411072843", + "voter": "xanoxt" }, { - "voter": "davidjkelley", - "rshares": "1661520978" + "rshares": "1661520978", + "voter": "davidjkelley" }, { - "voter": "sponge-bob", - "rshares": "27677639861" + "rshares": "27677639861", + "voter": "sponge-bob" }, { - "voter": "digital-wisdom", - "rshares": "15570931627" + "rshares": "15570931627", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3710931796" + "rshares": "3710931796", + "voter": "ethical-ai" }, { - "voter": "jwaser", - "rshares": "6831306526" + "rshares": "6831306526", + "voter": "jwaser" }, { - "voter": "tatianka", - "rshares": "1086106040" + "rshares": "1086106040", + "voter": "tatianka" }, { - "voter": "apparat", - "rshares": "55281264" + "rshares": "55281264", + "voter": "apparat" }, { - "voter": "cryptobiker", - "rshares": "14097243573" + "rshares": "14097243573", + "voter": "cryptobiker" }, { - "voter": "analyzethis", - "rshares": "54182817" + "rshares": "54182817", + "voter": "analyzethis" }, { - "voter": "bwaser", - "rshares": "2675492964" + "rshares": "2675492964", + "voter": "bwaser" }, { - "voter": "doggnostic", - "rshares": "54949117" + "rshares": "54949117", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "54665234" + "rshares": "54665234", + "voter": "jenny-talls" }, { - "voter": "brains", - "rshares": "27671309914" + "rshares": "27671309914", + "voter": "brains" }, { - "voter": "waldemar-kuhn", - "rshares": "53671263" + "rshares": "53671263", + "voter": "waldemar-kuhn" }, { - "voter": "steemafon", - "rshares": "1359518638" + "rshares": "1359518638", + "voter": "steemafon" }, { - "voter": "chick1", - "rshares": "5753400992" + "rshares": "5753400992", + "voter": "chick1" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "51568971" + "rshares": "51568971", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "anomaly", - "rshares": "339287005" + "rshares": "339287005", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401284424" + "rshares": "2401284424", + "voter": "ellepdub" }, { - "voter": "herpetologyguy", - "rshares": "12115548081" + "rshares": "12115548081", + "voter": "herpetologyguy" }, { - "voter": "morgan.waser", - "rshares": "4816962742" + "rshares": "4816962742", + "voter": "morgan.waser" }, { - "voter": "dragonice", - "rshares": "51232949" + "rshares": "51232949", + "voter": "dragonice" }, { - "voter": "steemq", - "rshares": "51230296" + "rshares": "51230296", + "voter": "steemq" }, { - "voter": "weare", - "rshares": "51218466" + "rshares": "51218466", + "voter": "weare" }, { - "voter": "anns", - "rshares": "1258359388" + "rshares": "1258359388", + "voter": "anns" }, { - "voter": "cyan", - "rshares": "50875769" + "rshares": "50875769", + "voter": "cyan" }, { - "voter": "motion", - "rshares": "50871059" + "rshares": "50871059", + "voter": "motion" }, { - "voter": "synereo", - "rshares": "50791473" + "rshares": "50791473", + "voter": "synereo" }, { - "voter": "unilever", - "rshares": "50572441" + "rshares": "50572441", + "voter": "unilever" }, { - "voter": "bapparabi", - "rshares": "1871969417" + "rshares": "1871969417", + "voter": "bapparabi" }, { - "voter": "friends", - "rshares": "50532230" + "rshares": "50532230", + "voter": "friends" }, { - "voter": "strong-ai", - "rshares": "3689824509" + "rshares": "3689824509", + "voter": "strong-ai" }, { - "voter": "ivanakamoto", - "rshares": "53738244" + "rshares": "53738244", + "voter": "ivanakamoto" }, { - "voter": "grisha-danunaher", - "rshares": "516546553" + "rshares": "516546553", + "voter": "grisha-danunaher" }, { - "voter": "sjamayee", - "rshares": "213848535" + "rshares": "213848535", + "voter": "sjamayee" }, { - "voter": "htyfn", - "rshares": "2974116451" + "rshares": "2974116451", + "voter": "htyfn" }, { - "voter": "allianz", - "rshares": "162904624" + "rshares": "162904624", + "voter": "allianz" }, { - "voter": "rusteemitblog", - "rshares": "1630350803" + "rshares": "1630350803", + "voter": "rusteemitblog" }, { - "voter": "ranger", - "rshares": "161815656" + "rshares": "161815656", + "voter": "ranger" }, { - "voter": "witchcraftblog", - "rshares": "444435987" + "rshares": "444435987", + "voter": "witchcraftblog" }, { - "voter": "shadowproject", - "rshares": "161693690" + "rshares": "161693690", + "voter": "shadowproject" }, { - "voter": "acute", - "rshares": "161205518" + "rshares": "161205518", + "voter": "acute" }, { - "voter": "bethesda", - "rshares": "161179339" + "rshares": "161179339", + "voter": "bethesda" }, { - "voter": "panic", - "rshares": "159352476" + "rshares": "159352476", + "voter": "panic" }, { - "voter": "stimmt", - "rshares": "159318360" + "rshares": "159318360", + "voter": "stimmt" }, { - "voter": "rule", - "rshares": "159062820" + "rshares": "159062820", + "voter": "rule" }, { - "voter": "steemthis", - "rshares": "158560941" + "rshares": "158560941", + "voter": "steemthis" }, { - "voter": "zendesk", - "rshares": "158486055" + "rshares": "158486055", + "voter": "zendesk" }, { - "voter": "storage", - "rshares": "68013381" + "rshares": "68013381", + "voter": "storage" }, { - "voter": "cbd", - "rshares": "157667385" + "rshares": "157667385", + "voter": "cbd" }, { - "voter": "junk", - "rshares": "157667385" + "rshares": "157667385", + "voter": "junk" }, { - "voter": "hug", - "rshares": "157682838" + "rshares": "157682838", + "voter": "hug" }, { - "voter": "bearcub", - "rshares": "157682838" + "rshares": "157682838", + "voter": "bearcub" }, { - "voter": "cyberpunk", - "rshares": "157682809" + "rshares": "157682809", + "voter": "cyberpunk" }, { - "voter": "keisha", - "rshares": "156919204" + "rshares": "156919204", + "voter": "keisha" }, { - "voter": "blackmarket", - "rshares": "58460105" + "rshares": "58460105", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "61530871" + "rshares": "61530871", + "voter": "gifts" }, { - "voter": "int", - "rshares": "156919175" + "rshares": "156919175", + "voter": "int" }, { - "voter": "steemlift", - "rshares": "1593664040" + "rshares": "1593664040", + "voter": "steemlift" } ], + "author": "serejandmyself", + "author_payout_value": "0.000 HBD", "author_reputation": 66.84, - "stats": { - "hide": false, - "gray": false, - "total_votes": 229, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/story/@serejandmyself/captured-by-time-an-original-novel-chapter-1", - "blacklists": [] - }, - { - "post_id": 960238, - "author": "ozchartart", - "permlink": "usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", - "category": "steem", - "title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle’s left empty\" Sept 15, 2016", - "body": "Hello Steemers!\n\nhttps://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png\n\n*POLONIEX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png\n*4 hour Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciwF/1b96b56dcc.png\n*4 hour Poloniex chart - Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png\n*1 day Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciC9/edf3dcb758.png\n*1 day Poloniex chart - Sept 15, 2016*\nThe Poloniex price went down to the all time low, breaking it and making a slightly lower all time low, but still not giving any confirm of a bottom or bounce.\nVolume about 20% higher then yesterday.\n\n*BITTREX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png\n*4 hour Bittrex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciod/ce32f1a029.png\n*4 hour Bittrex chart - Sept 15, 2016*\nThe Bittrex price broke the local low made just a slightly lower one, same as Poloniex with he all time low, looking like its heading towards the next support level (~0.0007, blue dashed).\nVolume on Bittrex was about 25% lower then yesterday (~5BTC's).\n\n\n*VOLUME COMPARISON*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png\n*STEEM/BTC volume Bittrex Sept 14, 2016*\n\nhttp://puu.sh/rcifG/0c61511ea3.png\n*STEEM/BTC volume Bittrex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png\n*STEEM/BTC volume Poloniex Sept 14, 2016*\n\nhttp://puu.sh/rcicN/b2384086a4.png\n*STEEM/BTC volume Poloniex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png\n*STEEM indexed global volume Sept 14, 2016*\n\nhttp://puu.sh/rcibB/7b2700dd82.png\n*STEEM indexed global volume Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmof/8ca7889618.png\n*Coinmarketcap top volume cryptos Sept 14, 2016*\n\nhttp://puu.sh/rci8K/d68b7eb122.png\n*Coinmarketcap top volume cryptos Sept 15, 2016*\nOverall volume about 12% higher then yesterday, with Bittrex volume taking a dive and Poloniex gaining some.\n$STEEM again under top 30 in volume rankings.\n\n*COMMENT*\nOnce again, I will post the comment by commenting as it involves my personal opinion!\nThank you for understanding!\n\nIf anyone has any questions or need's help fell free to ask, I will try to explain as fast and as best as I can.\nCritics, comments, reply's, counters, advice's, etc. are always welcome!\nHave my charts helped you in any way?Let me know with a comment below :)\nAre there more people who are doing TA?\nPlease post the links to your TA's posts into the comments as well!\n\n*DISCLAIMER*\nI am showing multiple scenarios on the price movement, in the post itself I do not take any stance, either bullish or bearish. I am not responsible for neither you’re winning nor you're losses upon trading! the \"comment\" section is my personal opinion and does not mean I have to or do hold any positions in the given market.\nEveryone who uses TA develops his own unique charting style, please keep that in mind.\n\nhttps://www.youtube.com/watch?v=i3bS5nRZOvU\n\nKind regards, OZ :)", + "blacklists": [], + "body": "#### Hey guys, welcome to the first chapter of my new novel.\n#### It is a mixture of 3 time lines, with 19th century, modern day and ancient times. The genre is probably something you would call a mixture of sci-fi, mystery, adventure and a bit more. \n#### Well, I welcome you to be the judge...\n\n

[![b801c049484636e0faf71f56cca03864c0bd6.jpg](https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg)](https://www.steemimg.com/image/1wrYT)

\n\n__________________________________\n\n**Chapter ONE**\n\nIt seemed as nothing was different in yet another cold and slightly windy London evening. The smog from the river was rising up as usual and the chilly wind would bring the smell up to the embankment, where Charles was taking a rest, sitting down on his favorite bench. \n\nFrom here he could see the might of the power station from across the river and something was special in the way those chimneys threw out the smoke onto the city. \n\nHe just finished his walk along his usual route, walking amongst the cemetery outside the chapel. It always amused him; that mix of emotion and sorrow amongst the busy city people, especially during the busy afternoon hours.\n\nThat rusty smell kept mixing with up with the light freshness of the leaves from the tree nearby Charles\u2019s bench. As he threw a brief glimpse onto the clock on the parliament building he noticed that the small arrow was on 45 minutes\u2026 \n\nSuddenly he heard a murmur of horses; he turned his head before he could finish realizing what time it was. He saw that just a few yards up the road two horse carriages didn\u2019t manage to share the drive way. \n\n
[![Saratogacarriagec5af5.jpg](https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg)](https://www.steemimg.com/image/1w1bI)
\n\nOne of the coachmen was shouting something and angrily waving his hands. Charles was able to see from here that the coachmen\u2019s grey clothing was partially covered in dirt, probably from the splash of the puddles from underneath the wheels. \n\nThe coachmen kept shouting something, Charles was unable to see the second carriage from where he was sitting, but was able to see some passersby, that starting to gather around the incident.\n\nIt was obvious that, just like him, those people had nothing better to do on this late afternoon then to watch in amusement the accident in the middle of the avenue.\n\nJust as Charles was starting to lose interest in the whole situation, the door of the cab that Charles could see, opened and a man dressed in a black suit and holding a pipe stepped out. He calmly put his hand in the upper inner pocket of the suit and pulled out some coins. The man made two steps up to driver and handed him the coins. At this moment the driver stopped shouting for a moment and it was clear from the look on his face that he was confused. \n\nThe cab driver counted the coins and said something to the man in the suit, the passenger didn\u2019t answer. He turned around and started to walk in the direction of the chapel. The cab driver clearly wasn\u2019t happy. He started to shout once again, but this time at the passenger. While the cab driver turned his attention to the passenger, Charles noticed how the second carriage that was involved in the accident managed to move a few yards back.\n\nIt was a much smaller carriage, and the driver was clearly seeable to Charles now. He seemed somewhat happy that he was not in the middle of the light anymore; he hurryingly turned the carriage and the horse around and started to move also in the direction of the chapel. \n\nAt this moment the driver of the first carriage started to lose interest in shouting and decided to clean himself up. As he started to calm down, the bemused passersby begun to walk back to where they were heading and Charles also turned his head back towards the power station.\n\nCharles was so busy watching the situation unfold that he didn\u2019t noticed that the passenger of the first carriage crossed the road and was now heading not towards the chapel anymore, but exactly in the other direction, towards the grey bench that Charles was sitting on.\n\nAt first Charles didn\u2019t pay any attention to just another man who was walking by. But then he noticed that calm walk of his and it hit him that this was the same passenger from the carriage.\n\n\u201cExcuse me sir?\u201d said Charles as the man closed up to the bench. \u201cYou are the gentleman from the carriage, aren\u2019t you?\u201d \u201cI saw you a minute ago, what happened?\u201d\n\nThe man stopped to walk and shared a look with Charles; he calmly sat down beside him and carried on smoking his pipe, as he was not hearing the questions Charles asked him. \n\n\u201cI do apologies for the intervention, but you must not be local, I can tell by your calmness, all the folks round here are always in a hurry\u201d Charles carried on talking as if not noticing that the man was ignoring him. \n\nAll of a sudden the weather begun to change, wind started to blow stronger and the few leaves that the tree was holding blew in the direction of the bench. The smell from the river rose up and as if that wasn\u2019t enough Charles felt like a small rain drop hit his head. He could clearly see the green water from where he was sitting through the decorations holes of the embankments fence. It was clear that it will start to rain soon by the appearing circles on the top of the river.\n\nAfter a few minutes of quietly seating by his new neighbor Charles caught himself looking at the clock on the tower, once again he saw the small arrow on 45 minutes\u2026\n\n\u201cAnd what do we pay the government for?\u201d \u201cIt would feel though they are taking our money and spend it on their fancy hats and suits, don\u2019t you find?\u201d Said Charles.\n\nAt this point the man took out the pipe into his left hand and begun to cough. After he finished coughing Charles heard him speak, at this point Charles understood that for some reason he would remember this moment for a long time to come. \n\n\u201cIt is likely to assume that they deserve to spend the money they earn\u201d Said the man, his voice was quite low and he had a certain accent Charles could quite catch.\n\n\u201cI don\u2019t think that money is of importance nowadays\u201d Said the man.\n\nCharles looked at the man with a smile - \u201cWhat is of importance? One might assume that philosophically speaking, importance can be found in nothing but what is good to us\u201d.\n\n\u201cNo body knows what can be important to others if we carry on like this, then\u2026\u201d Charles didn\u2019t finish his sentence as the man turned away from him and looked the other way. He then turned his head back and Charles noticed his eyes. His eyes were nothing like what Charles had seen before, they looked as though they were glass like and the as if they were blank, there was nothing behind them.\n\n\u201cWhat is important is that I am here now and that it is happening today. It is important to live your life because, just like your life Charles, it has an end\u201d, the man looked somewhat happy when he said that and Charles jumped back on the bench a little, he felt a small shiver run down his spine.\n\n\u201cWhat? How do you know my name sir? Have you been following me?\u201d questions were racing through Charles\u2019s mind. \n\n\u201cAs I said, this is now of importance. You life can find its end today when you get back to your gallery in your cold basement on Kinnerton street or you might listen to me and\u2026\u201d Charles didn\u2019t let the man finish his sentence. He jumped up from the bench; his cane flew within millimeters of the stranger leg as he jumped.\n\n\u201cHow dare you sir? Who gives you the right\u2026\u201d Charles raised his voice, he never allowed himself to raise his voice at a stranger beforehand.\n\n\u201cI think this conversation is over!\u201d exclaimed Charles. \u201cThat would be your choice\u201d replied the man, \u201cDo you think the time is right?\u201d \n\nCharles had already turned away in anger and was about to make his first step away. Something in the words of the man about the time made him think for a second, thoughts raced through his mind. The number 45 and the small arrow of the parliament clock were stuck in his head. \n\n\u201cI don\u2019t understand said Charles\u2026\u201d he turned his head back towards the clock; the arrow was still on 45 minutes. \u201cHow is that possible?\u201d Charles turned his head to the man, but there was no one on the bench. \n\nCharles begun to search the street rapidly with his eyes, it didn\u2019t even occur to him that it was heavily raining until that moment. \n\n
[![tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif](https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif)](https://www.steemimg.com/image/1w5tK)
\n\nThe streets were empty; there were no carriages or people to be seen around. Feeling scared he turned his head to the clock once again \u2013 \u201cHow can it still be 45 minutes...\u201d Charles was speaking out loud.\n\nThe next moment he felt like his knees weakened, his head was swirling and he dropped his cane, last thing he could hear was the clinging the of the cane\u2019s handle against the pavement. His thoughts mixed up with his eyesight; the man and his pipe, the handle of the clock, the carriage, the passersby, the power stations smoke\u2026\n \n_________________________________\n\n#### Follow me @serejandmyself for more \n\nImage credit - [1](https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/) ; [2](https://giphy.com/search/carriage) ; [3](http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html) ;", + "category": "story", + "children": 2, + "created": "2016-09-15T17:23:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "steem", - "poloniex", - "bittrex", - "technical-analysis", - "trading" - ], "image": [ - "https://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png", - "https://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png", - "http://puu.sh/rciwF/1b96b56dcc.png", - "https://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png", - "http://puu.sh/rciC9/edf3dcb758.png", - "https://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png", - "http://puu.sh/rciod/ce32f1a029.png", - "https://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png", - "http://puu.sh/rcifG/0c61511ea3.png", - "https://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png", - "http://puu.sh/rcicN/b2384086a4.png", - "https://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png", - "http://puu.sh/rcibB/7b2700dd82.png", - "https://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png", - "http://puu.sh/rci8K/d68b7eb122.png", - "https://img.youtube.com/vi/i3bS5nRZOvU/0.jpg" + "https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg", + "https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg", + "https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif" ], "links": [ - "https://www.youtube.com/watch?v=i3bS5nRZOvU" + "https://www.steemimg.com/image/1wrYT", + "https://www.steemimg.com/image/1w1bI", + "https://www.steemimg.com/image/1w5tK", + "https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/", + "https://giphy.com/search/carriage", + "http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html" + ], + "tags": [ + "story", + "fiction", + "scifi", + "mystery", + "writing" + ], + "users": [ + "serejandmyself" ] }, - "created": "2016-09-15T18:18:00", - "updated": "2016-09-15T18:18:00", - "depth": 0, - "children": 5, - "net_rshares": 30268799563538, - "is_paidout": false, - "payout_at": "2016-09-16T18:35:24", - "payout": 57.124, - "pending_payout_value": "57.124 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66871297900441, + "payout": 260.997, + "payout_at": "2016-09-16T17:42:51", + "pending_payout_value": "260.997 HBD", + "percent_steem_dollars": 10000, + "permlink": "captured-by-time-an-original-novel-chapter-1", + "post_id": 959783, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 229 + }, + "title": "CAPTURED BY TIME (An Original Novel - Chapter 1)", + "updated": "2016-09-15T17:23:48", + "url": "/story/@serejandmyself/captured-by-time-an-original-novel-chapter-1" + }, + { "active_votes": [ { - "voter": "books", - "rshares": "1861031398822" + "rshares": "1861031398822", + "voter": "books" }, { - "voter": "riverhead", - "rshares": "4287714457313" + "rshares": "4287714457313", + "voter": "riverhead" }, { - "voter": "badassmother", - "rshares": "1855967006728" + "rshares": "1855967006728", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2053236030423" + "rshares": "2053236030423", + "voter": "hr1" }, { - "voter": "kushed", - "rshares": "5519371190400" + "rshares": "5519371190400", + "voter": "kushed" }, { - "voter": "rossco99", - "rshares": "1271804694676" + "rshares": "1271804694676", + "voter": "rossco99" }, { - "voter": "jaewoocho", - "rshares": "22391622942" + "rshares": "22391622942", + "voter": "jaewoocho" }, { - "voter": "ozmaster", - "rshares": "161758715658" + "rshares": "161758715658", + "voter": "ozmaster" }, { - "voter": "joseph", - "rshares": "1534643949678" + "rshares": "1534643949678", + "voter": "joseph" }, { - "voter": "aizensou", - "rshares": "100723108736" + "rshares": "100723108736", + "voter": "aizensou" }, { - "voter": "recursive2", - "rshares": "466132509421" + "rshares": "466132509421", + "voter": "recursive2" }, { - "voter": "masteryoda", - "rshares": "636519834128" + "rshares": "636519834128", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120576239931" + "rshares": "3120576239931", + "voter": "recursive" }, { - "voter": "idol", - "rshares": "8927291120" + "rshares": "8927291120", + "voter": "idol" }, { - "voter": "steemrollin", - "rshares": "800066797130" + "rshares": "800066797130", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "4941942978" + "rshares": "4941942978", + "voter": "sakr" }, { - "voter": "chitty", - "rshares": "284401462010" + "rshares": "284401462010", + "voter": "chitty" }, { - "voter": "jocelyn", - "rshares": "1536592488" + "rshares": "1536592488", + "voter": "jocelyn" }, { - "voter": "gregory-f", - "rshares": "14818263059" + "rshares": "14818263059", + "voter": "gregory-f" }, { - "voter": "edgeland", - "rshares": "154334962550" + "rshares": "154334962550", + "voter": "edgeland" }, { - "voter": "craig-grant", - "rshares": "374436234637" + "rshares": "374436234637", + "voter": "craig-grant" }, { - "voter": "gregory60", - "rshares": "9028550345" + "rshares": "9028550345", + "voter": "gregory60" }, { - "voter": "eeks", - "rshares": "89897944197" + "rshares": "89897944197", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "11591323519" + "rshares": "11591323519", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "468281676" + "rshares": "468281676", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "5641697991" + "rshares": "5641697991", + "voter": "spaninv" }, { - "voter": "elishagh1", - "rshares": "15236070794" + "rshares": "15236070794", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7802860274" + "rshares": "7802860274", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "584279800798" + "rshares": "584279800798", + "voter": "nanzo-scoop" }, { - "voter": "kefkius", - "rshares": "10059005246" + "rshares": "10059005246", + "voter": "kefkius" }, { - "voter": "mummyimperfect", - "rshares": "177417522325" + "rshares": "177417522325", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313697862" + "rshares": "313697862", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106635074770" + "rshares": "106635074770", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061264730" + "rshares": "1061264730", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6230798580" + "rshares": "6230798580", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2003359924" + "rshares": "2003359924", + "voter": "error" }, { - "voter": "andu", - "rshares": "11848125383" + "rshares": "11848125383", + "voter": "andu" }, { - "voter": "cyber", - "rshares": "970586830705" + "rshares": "970586830705", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "59952188311" + "rshares": "59952188311", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "49580154489" + "rshares": "49580154489", + "voter": "ak2020" }, { - "voter": "applecrisp", - "rshares": "402139444" + "rshares": "402139444", + "voter": "applecrisp" }, { - "voter": "stiletto", - "rshares": "365370465" + "rshares": "365370465", + "voter": "stiletto" }, { - "voter": "trogdor", - "rshares": "280737930617" + "rshares": "280737930617", + "voter": "trogdor" }, { - "voter": "mark-waser", - "rshares": "5950623572" + "rshares": "5950623572", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "118356217412" + "rshares": "118356217412", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "101509283748" + "rshares": "101509283748", + "voter": "kimziv" }, { - "voter": "emily-cook", - "rshares": "75333038089" + "rshares": "75333038089", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2251949197" + "rshares": "2251949197", + "voter": "superfreek" }, { - "voter": "ladyclair", - "rshares": "275327756" + "rshares": "275327756", + "voter": "ladyclair" }, { - "voter": "orly", - "rshares": "3283410959" + "rshares": "3283410959", + "voter": "orly" }, { - "voter": "riscadox", - "rshares": "5271030976" + "rshares": "5271030976", + "voter": "riscadox" }, { - "voter": "tcfxyz", - "rshares": "25057521880" + "rshares": "25057521880", + "voter": "tcfxyz" }, { - "voter": "futurefood", - "rshares": "6939954009" + "rshares": "6939954009", + "voter": "futurefood" }, { - "voter": "furion", - "rshares": "56586842629" + "rshares": "56586842629", + "voter": "furion" }, { - "voter": "busser", - "rshares": "754655775" + "rshares": "754655775", + "voter": "busser" }, { - "voter": "cdubendo", - "rshares": "103793678934" + "rshares": "103793678934", + "voter": "cdubendo" }, { - "voter": "barbara2", - "rshares": "271487757" + "rshares": "271487757", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "301755142" + "rshares": "301755142", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "279277284" + "rshares": "279277284", + "voter": "doge4lyf" }, { - "voter": "steem1653", - "rshares": "2733708608" + "rshares": "2733708608", + "voter": "steem1653" }, { - "voter": "cynetyc", - "rshares": "124961861" + "rshares": "124961861", + "voter": "cynetyc" }, { - "voter": "thegoodguy", - "rshares": "5357326058" + "rshares": "5357326058", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "14168005907" + "rshares": "14168005907", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209533734" + "rshares": "4209533734", + "voter": "karen13" }, { - "voter": "nabilov", - "rshares": "251367062418" + "rshares": "251367062418", + "voter": "nabilov" }, { - "voter": "noodhoog", - "rshares": "8576081337" + "rshares": "8576081337", + "voter": "noodhoog" }, { - "voter": "milestone", - "rshares": "46859060143" + "rshares": "46859060143", + "voter": "milestone" }, { - "voter": "artific", - "rshares": "21565632626" + "rshares": "21565632626", + "voter": "artific" }, { - "voter": "btcbtcbtc20155", - "rshares": "5840939270" + "rshares": "5840939270", + "voter": "btcbtcbtc20155" }, { - "voter": "nippel66", - "rshares": "14455781997" + "rshares": "14455781997", + "voter": "nippel66" }, { - "voter": "blueorgy", - "rshares": "163325492855" + "rshares": "163325492855", + "voter": "blueorgy" }, { - "voter": "benjiberigan", - "rshares": "13111647625" + "rshares": "13111647625", + "voter": "benjiberigan" }, { - "voter": "poseidon", - "rshares": "2214250194" + "rshares": "2214250194", + "voter": "poseidon" }, { - "voter": "calaber24p", - "rshares": "355265286967" + "rshares": "355265286967", + "voter": "calaber24p" }, { - "voter": "simon.braki.love", - "rshares": "3295677164" + "rshares": "3295677164", + "voter": "simon.braki.love" }, { - "voter": "bola", - "rshares": "121062267" + "rshares": "121062267", + "voter": "bola" }, { - "voter": "deanliu", - "rshares": "32544157928" + "rshares": "32544157928", + "voter": "deanliu" }, { - "voter": "hagie", - "rshares": "14007767075" + "rshares": "14007767075", + "voter": "hagie" }, { - "voter": "jl777", - "rshares": "204618396015" + "rshares": "204618396015", + "voter": "jl777" }, { - "voter": "aleco", - "rshares": "1371622220" + "rshares": "1371622220", + "voter": "aleco" }, { - "voter": "positive", - "rshares": "9400257217" + "rshares": "9400257217", + "voter": "positive" }, { - "voter": "yarly", - "rshares": "1773021661" + "rshares": "1773021661", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "267188192" + "rshares": "267188192", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "267587944" + "rshares": "267587944", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "154579129" + "rshares": "154579129", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "155451862" + "rshares": "155451862", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "88607961" + "rshares": "88607961", + "voter": "yarly7" }, { - "voter": "sergey44", - "rshares": "257573964" + "rshares": "257573964", + "voter": "sergey44" }, { - "voter": "proto", - "rshares": "17267341753" + "rshares": "17267341753", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "16251777176" + "rshares": "16251777176", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "428868451" + "rshares": "428868451", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "229507420" + "rshares": "229507420", + "voter": "yarly11" }, { - "voter": "yarly12", - "rshares": "80241480" + "rshares": "80241480", + "voter": "yarly12" }, { - "voter": "fnait", - "rshares": "316499814" + "rshares": "316499814", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "281178931" + "rshares": "281178931", + "voter": "keepcalmand" }, { - "voter": "cwmyao1", - "rshares": "607346548" + "rshares": "607346548", + "voter": "cwmyao1" }, { - "voter": "jamesbrown", - "rshares": "16495975416" + "rshares": "16495975416", + "voter": "jamesbrown" }, { - "voter": "glitterpig", - "rshares": "3353991305" + "rshares": "3353991305", + "voter": "glitterpig" }, { - "voter": "jed78", - "rshares": "7506600577" + "rshares": "7506600577", + "voter": "jed78" }, { - "voter": "taker", - "rshares": "8734185109" + "rshares": "8734185109", + "voter": "taker" }, { - "voter": "coinbar", - "rshares": "1651596637" + "rshares": "1651596637", + "voter": "coinbar" }, { - "voter": "laonie", - "rshares": "574717917578" + "rshares": "574717917578", + "voter": "laonie" }, { - "voter": "ozchartart", - "rshares": "254341994815" + "rshares": "254341994815", + "voter": "ozchartart" }, { - "voter": "croatia", - "rshares": "5104045578" + "rshares": "5104045578", + "voter": "croatia" }, { - "voter": "myfirst", - "rshares": "19987344033" + "rshares": "19987344033", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "116658367770" + "rshares": "116658367770", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "4604075327" + "rshares": "4604075327", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "2501638608" + "rshares": "2501638608", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "25770687280" + "rshares": "25770687280", + "voter": "midnightoil" }, { - "voter": "ullikume", - "rshares": "4190377366" + "rshares": "4190377366", + "voter": "ullikume" }, { - "voter": "andrew0", - "rshares": "2325684243" + "rshares": "2325684243", + "voter": "andrew0" }, { - "voter": "xiaohui", - "rshares": "64457942294" + "rshares": "64457942294", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "3234267259" + "rshares": "3234267259", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "99935909954" + "rshares": "99935909954", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5855738054" + "rshares": "5855738054", + "voter": "oflyhigh" }, { - "voter": "xiaokongcom", - "rshares": "2127092828" + "rshares": "2127092828", + "voter": "xiaokongcom" }, { - "voter": "eneismijmich", - "rshares": "47556149905" + "rshares": "47556149905", + "voter": "eneismijmich" }, { - "voter": "xianjun", - "rshares": "4287842001" + "rshares": "4287842001", + "voter": "xianjun" }, { - "voter": "sijoittaja", - "rshares": "72192938" + "rshares": "72192938", + "voter": "sijoittaja" }, { - "voter": "borran", - "rshares": "11041591679" + "rshares": "11041591679", + "voter": "borran" }, { - "voter": "miacats", - "rshares": "93807196108" + "rshares": "93807196108", + "voter": "miacats" }, { - "voter": "microluck", - "rshares": "280777082" + "rshares": "280777082", + "voter": "microluck" }, { - "voter": "razberrijam", - "rshares": "74131936" + "rshares": "74131936", + "voter": "razberrijam" }, { - "voter": "chinadaily", - "rshares": "2022702929" + "rshares": "2022702929", + "voter": "chinadaily" }, { - "voter": "pompe72", - "rshares": "86712034" + "rshares": "86712034", + "voter": "pompe72" }, { - "voter": "ignat", - "rshares": "1647538615" + "rshares": "1647538615", + "voter": "ignat" }, { - "voter": "anotherjoe", - "rshares": "20666130092" + "rshares": "20666130092", + "voter": "anotherjoe" }, { - "voter": "gvargas123", - "rshares": "10344891579" + "rshares": "10344891579", + "voter": "gvargas123" }, { - "voter": "movievertigo", - "rshares": "3562389763" + "rshares": "3562389763", + "voter": "movievertigo" }, { - "voter": "andrewawerdna", - "rshares": "21980957828" + "rshares": "21980957828", + "voter": "andrewawerdna" }, { - "voter": "runridefly", - "rshares": "2109031152" + "rshares": "2109031152", + "voter": "runridefly" }, { - "voter": "funkywanderer", - "rshares": "1783693666" + "rshares": "1783693666", + "voter": "funkywanderer" }, { - "voter": "richardcrill", - "rshares": "4747321980" + "rshares": "4747321980", + "voter": "richardcrill" }, { - "voter": "jeremyfromwi", - "rshares": "2161669067" + "rshares": "2161669067", + "voter": "jeremyfromwi" }, { - "voter": "davidjkelley", - "rshares": "1661534801" + "rshares": "1661534801", + "voter": "davidjkelley" }, { - "voter": "greatness", - "rshares": "178419224" + "rshares": "178419224", + "voter": "greatness" }, { - "voter": "sponge-bob", - "rshares": "27678962051" + "rshares": "27678962051", + "voter": "sponge-bob" }, { - "voter": "digital-wisdom", - "rshares": "15571125147" + "rshares": "15571125147", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3710973264" + "rshares": "3710973264", + "voter": "ethical-ai" }, { - "voter": "jwaser", - "rshares": "6831389463" + "rshares": "6831389463", + "voter": "jwaser" }, { - "voter": "steemorama", - "rshares": "422625634" + "rshares": "422625634", + "voter": "steemorama" }, { - "voter": "nubchai", - "rshares": "4269189470" + "rshares": "4269189470", + "voter": "nubchai" }, { - "voter": "analyzethis", - "rshares": "50931848" + "rshares": "50931848", + "voter": "analyzethis" }, { - "voter": "bwaser", - "rshares": "2675506788" + "rshares": "2675506788", + "voter": "bwaser" }, { - "voter": "dexter-k", - "rshares": "6064648982" + "rshares": "6064648982", + "voter": "dexter-k" }, { - "voter": "doggnostic", - "rshares": "54949117" + "rshares": "54949117", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "54665234" + "rshares": "54665234", + "voter": "jenny-talls" }, { - "voter": "brains", - "rshares": "27673000226" + "rshares": "27673000226", + "voter": "brains" }, { - "voter": "steemafon", - "rshares": "1387263917" + "rshares": "1387263917", + "voter": "steemafon" }, { - "voter": "chick1", - "rshares": "5753524189" + "rshares": "5753524189", + "voter": "chick1" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "51568971" + "rshares": "51568971", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "freebornangel", - "rshares": "62515317" + "rshares": "62515317", + "voter": "freebornangel" }, { - "voter": "anomaly", - "rshares": "339300528" + "rshares": "339300528", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401297947" + "rshares": "2401297947", + "voter": "ellepdub" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "herpetologyguy", - "rshares": "12115690216" + "rshares": "12115690216", + "voter": "herpetologyguy" }, { - "voter": "morgan.waser", - "rshares": "4817018034" + "rshares": "4817018034", + "voter": "morgan.waser" }, { - "voter": "dragonice", - "rshares": "50228382" + "rshares": "50228382", + "voter": "dragonice" }, { - "voter": "oxygen", - "rshares": "50907857" + "rshares": "50907857", + "voter": "oxygen" }, { - "voter": "palladium", - "rshares": "50873654" + "rshares": "50873654", + "voter": "palladium" }, { - "voter": "sting", - "rshares": "50865840" + "rshares": "50865840", + "voter": "sting" }, { - "voter": "strong-ai", - "rshares": "3689865978" + "rshares": "3689865978", + "voter": "strong-ai" }, { - "voter": "ctu", - "rshares": "162917785" + "rshares": "162917785", + "voter": "ctu" }, { - "voter": "ranger", - "rshares": "161815656" + "rshares": "161815656", + "voter": "ranger" }, { - "voter": "shadowcash", - "rshares": "161700361" + "rshares": "161700361", + "voter": "shadowcash" }, { - "voter": "sdc", - "rshares": "161218747" + "rshares": "161218747", + "voter": "sdc" }, { - "voter": "bethesda", - "rshares": "158018960" + "rshares": "158018960", + "voter": "bethesda" }, { - "voter": "skrillex", - "rshares": "160835930" + "rshares": "160835930", + "voter": "skrillex" }, { - "voter": "cybergirls", - "rshares": "160319579" + "rshares": "160319579", + "voter": "cybergirls" }, { - "voter": "fallout", - "rshares": "159175576" + "rshares": "159175576", + "voter": "fallout" }, { - "voter": "steemwallet", - "rshares": "158732321" + "rshares": "158732321", + "voter": "steemwallet" }, { - "voter": "icesteem", - "rshares": "158638676" + "rshares": "158638676", + "voter": "icesteem" }, { - "voter": "goldmatters", - "rshares": "31684221772" + "rshares": "31684221772", + "voter": "goldmatters" }, { - "voter": "dougkarr", - "rshares": "154247502" + "rshares": "154247502", + "voter": "dougkarr" } ], + "author": "ozchartart", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 176, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/steem/@ozchartart/usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", - "blacklists": [] - }, - { - "post_id": 960293, - "author": "knozaki2015", - "permlink": "the-strangest-building-in-berlin", - "category": "contest", - "title": "SPOTTED #6 : The strangest Building in Berlin", - "body": "\n

\"SPOTTED\"

\n


\n

On my travel to Berlin, Germany I have SPOTTED this strange Building. 

\n

Can you guess the purpose of this strange corridor? 

\n


\n
\"2016-08-14
\nHere are some possible answers:

\n
    \n
  • This is a Passage where people used to smuggle food and cigarettes between West and East Berlin
  • \n
  • This is a Hospital and connecting two Wings
  • \n
  • This is a worm hole and connecting Berlin and Jupiter
  • \n
  • This is a Hostel and the toilets are in the other Wing
  • \n
  • ....
  • \n
\n


\n\"2016-08-14
\n
\n 

\n
To make it more fun a reward of 10 STEEM POWER will be given to the first correct answer of the purpose of this strange corridor.  
\n
And a Special Reward of 5 Steem Power goes to the strangest, funniest Answer!  
\n


\n

I will release the answer after a couple of hours so hurry and pick your answer. (2 answers per person only!!!)

\n

If you like my Post, please follow me! 

\n

I am blogging about the following topics :

\n
    \n
  • I travel the world (Travel and Restaurant Blog)
  • \n
  • Exposed (Uncovering Stories you need to know)
  • \n
  • Lifehacks (How to save money,etc) 
  • \n
  • SPOTTED (Limited Edition Food ,Drinks, Gadgets)
  • \n
  • Steemperlen (German Version)
  • \n
  • SQUEEZE (Interview Series) 
  • \n
  • COOKED (10 Episodes Cooking Series)
  • \n
\n", + "blacklists": [], + "body": "Hello Steemers!\n\nhttps://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png\n\n*POLONIEX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png\n*4 hour Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciwF/1b96b56dcc.png\n*4 hour Poloniex chart - Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png\n*1 day Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciC9/edf3dcb758.png\n*1 day Poloniex chart - Sept 15, 2016*\nThe Poloniex price went down to the all time low, breaking it and making a slightly lower all time low, but still not giving any confirm of a bottom or bounce.\nVolume about 20% higher then yesterday.\n\n*BITTREX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png\n*4 hour Bittrex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciod/ce32f1a029.png\n*4 hour Bittrex chart - Sept 15, 2016*\nThe Bittrex price broke the local low made just a slightly lower one, same as Poloniex with he all time low, looking like its heading towards the next support level (~0.0007, blue dashed).\nVolume on Bittrex was about 25% lower then yesterday (~5BTC's).\n\n\n*VOLUME COMPARISON*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png\n*STEEM/BTC volume Bittrex Sept 14, 2016*\n\nhttp://puu.sh/rcifG/0c61511ea3.png\n*STEEM/BTC volume Bittrex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png\n*STEEM/BTC volume Poloniex Sept 14, 2016*\n\nhttp://puu.sh/rcicN/b2384086a4.png\n*STEEM/BTC volume Poloniex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png\n*STEEM indexed global volume Sept 14, 2016*\n\nhttp://puu.sh/rcibB/7b2700dd82.png\n*STEEM indexed global volume Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmof/8ca7889618.png\n*Coinmarketcap top volume cryptos Sept 14, 2016*\n\nhttp://puu.sh/rci8K/d68b7eb122.png\n*Coinmarketcap top volume cryptos Sept 15, 2016*\nOverall volume about 12% higher then yesterday, with Bittrex volume taking a dive and Poloniex gaining some.\n$STEEM again under top 30 in volume rankings.\n\n*COMMENT*\nOnce again, I will post the comment by commenting as it involves my personal opinion!\nThank you for understanding!\n\nIf anyone has any questions or need's help fell free to ask, I will try to explain as fast and as best as I can.\nCritics, comments, reply's, counters, advice's, etc. are always welcome!\nHave my charts helped you in any way?Let me know with a comment below :)\nAre there more people who are doing TA?\nPlease post the links to your TA's posts into the comments as well!\n\n*DISCLAIMER*\nI am showing multiple scenarios on the price movement, in the post itself I do not take any stance, either bullish or bearish. I am not responsible for neither you\u2019re winning nor you're losses upon trading! the \"comment\" section is my personal opinion and does not mean I have to or do hold any positions in the given market.\nEveryone who uses TA develops his own unique charting style, please keep that in mind.\n\nhttps://www.youtube.com/watch?v=i3bS5nRZOvU\n\nKind regards, OZ :)", + "category": "steem", + "children": 5, + "created": "2016-09-15T18:18:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "contest", - "travel", - "minnowsunite", - "steemsquad", - "berlin" - ], "image": [ - "https://s14.postimg.org/i75tlx3s1/SPOTTED.jpg", - "https://s22.postimg.org/s90fnlg7l/2016_08_14_17_21_48.jpg", - "https://s22.postimg.org/q5q0fxgep/2016_08_14_17_22_34.jpg" + "https://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png", + "http://puu.sh/rciwF/1b96b56dcc.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png", + "http://puu.sh/rciC9/edf3dcb758.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png", + "http://puu.sh/rciod/ce32f1a029.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png", + "http://puu.sh/rcifG/0c61511ea3.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png", + "http://puu.sh/rcicN/b2384086a4.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png", + "http://puu.sh/rcibB/7b2700dd82.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png", + "http://puu.sh/rci8K/d68b7eb122.png", + "https://img.youtube.com/vi/i3bS5nRZOvU/0.jpg" ], "links": [ - "https://postimg.org/image/ciziv0zfh/", - "https://steemit.com/@knozaki2015", - "https://steemit.com/food/@knozaki2015/i-travel-the-world-part-25-cafe-viena-feat-the-worlds-best-sandwich-ny-times", - "https://steemit.com/deutsch/@knozaki2015/steemperlen-1", - "https://steemit.com/food/@knozaki2015/fantastic-seafood-paella-cooked-2-with-the-master-of-paella-gargon" + "https://www.youtube.com/watch?v=i3bS5nRZOvU" + ], + "tags": [ + "steem", + "poloniex", + "bittrex", + "technical-analysis", + "trading" ] }, - "created": "2016-09-15T18:23:30", - "updated": "2016-09-15T19:04:48", - "depth": 0, - "children": 28, - "net_rshares": 26540390904529, - "is_paidout": false, - "payout_at": "2016-09-16T18:49:34", - "payout": 44.638, - "pending_payout_value": "44.638 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 30268799563538, + "payout": 57.124, + "payout_at": "2016-09-16T18:35:24", + "pending_payout_value": "57.124 HBD", + "percent_steem_dollars": 10000, + "permlink": "usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", + "post_id": 960238, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 176 + }, + "title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle\u2019s left empty\" Sept 15, 2016", + "updated": "2016-09-15T18:18:00", + "url": "/steem/@ozchartart/usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept" + }, + { "active_votes": [ { - "voter": "riverhead", - "rshares": "4134581798123" + "rshares": "4134581798123", + "voter": "riverhead" }, { - "voter": "pharesim", - "rshares": "3313249953310" + "rshares": "3313249953310", + "voter": "pharesim" }, { - "voter": "hr1", - "rshares": "2053236030423" + "rshares": "2053236030423", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1271804694676" + "rshares": "1271804694676", + "voter": "rossco99" }, { - "voter": "jaewoocho", - "rshares": "22391622942" + "rshares": "22391622942", + "voter": "jaewoocho" }, { - "voter": "joseph", - "rshares": "1534717563460" + "rshares": "1534717563460", + "voter": "joseph" }, { - "voter": "aizensou", - "rshares": "98682259833" + "rshares": "98682259833", + "voter": "aizensou" }, { - "voter": "recursive3", - "rshares": "452874558937" + "rshares": "452874558937", + "voter": "recursive3" }, { - "voter": "masteryoda", - "rshares": "620996029765" + "rshares": "620996029765", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120582597678" + "rshares": "3120582597678", + "voter": "recursive" }, { - "voter": "idol", - "rshares": "8927291120" + "rshares": "8927291120", + "voter": "idol" }, { - "voter": "sakr", - "rshares": "4941942978" + "rshares": "4941942978", + "voter": "sakr" }, { - "voter": "chitty", - "rshares": "284401462010" + "rshares": "284401462010", + "voter": "chitty" }, { - "voter": "jocelyn", - "rshares": "1536592488" + "rshares": "1536592488", + "voter": "jocelyn" }, { - "voter": "edgeland", - "rshares": "154334962550" + "rshares": "154334962550", + "voter": "edgeland" }, { - "voter": "eeks", - "rshares": "89897956816" + "rshares": "89897956816", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1511911763" + "rshares": "1511911763", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "468281676" + "rshares": "468281676", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "5641697991" + "rshares": "5641697991", + "voter": "spaninv" }, { - "voter": "elishagh1", - "rshares": "1987313581" + "rshares": "1987313581", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7803257741" + "rshares": "7803257741", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "584291107228" + "rshares": "584291107228", + "voter": "nanzo-scoop" }, { - "voter": "kefkius", - "rshares": "9857825141" + "rshares": "9857825141", + "voter": "kefkius" }, { - "voter": "mummyimperfect", - "rshares": "172751875332" + "rshares": "172751875332", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313697862" + "rshares": "313697862", + "voter": "coar" }, { - "voter": "kevinwong", - "rshares": "603741881611" + "rshares": "603741881611", + "voter": "kevinwong" }, { - "voter": "murh", - "rshares": "1061266533" + "rshares": "1061266533", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6230798580" + "rshares": "6230798580", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2003359924" + "rshares": "2003359924", + "voter": "error" }, { - "voter": "andu", - "rshares": "11584833708" + "rshares": "11584833708", + "voter": "andu" }, { - "voter": "theshell", - "rshares": "58189176188" + "rshares": "58189176188", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "49581045086" + "rshares": "49581045086", + "voter": "ak2020" }, { - "voter": "satoshifund", - "rshares": "3925670964026" + "rshares": "3925670964026", + "voter": "satoshifund" }, { - "voter": "applecrisp", - "rshares": "402139444" + "rshares": "402139444", + "voter": "applecrisp" }, { - "voter": "stiletto", - "rshares": "365370465" + "rshares": "365370465", + "voter": "stiletto" }, { - "voter": "will-zewe", - "rshares": "219283354085" + "rshares": "219283354085", + "voter": "will-zewe" }, { - "voter": "herzmeister", - "rshares": "85402720456" + "rshares": "85402720456", + "voter": "herzmeister" }, { - "voter": "trogdor", - "rshares": "275016906945" + "rshares": "275016906945", + "voter": "trogdor" }, { - "voter": "mark-waser", - "rshares": "5821262190" + "rshares": "5821262190", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "118356217412" + "rshares": "118356217412", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "42740945757" + "rshares": "42740945757", + "voter": "kimziv" }, { - "voter": "honeythief", - "rshares": "45359587433" + "rshares": "45359587433", + "voter": "honeythief" }, { - "voter": "emily-cook", - "rshares": "75334808165" + "rshares": "75334808165", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187607792" + "rshares": "2187607792", + "voter": "superfreek" }, { - "voter": "thebatchman", - "rshares": "19975706505" + "rshares": "19975706505", + "voter": "thebatchman" }, { - "voter": "lehard", - "rshares": "59061289095" + "rshares": "59061289095", + "voter": "lehard" }, { - "voter": "orly", - "rshares": "3417427733" + "rshares": "3417427733", + "voter": "orly" }, { - "voter": "riscadox", - "rshares": "5165610356" + "rshares": "5165610356", + "voter": "riscadox" }, { - "voter": "cmtzco", - "rshares": "8950458328" + "rshares": "8950458328", + "voter": "cmtzco" }, { - "voter": "fabio", - "rshares": "198384500562" + "rshares": "198384500562", + "voter": "fabio" }, { - "voter": "tcfxyz", - "rshares": "25057642057" + "rshares": "25057642057", + "voter": "tcfxyz" }, { - "voter": "futurefood", - "rshares": "6939984054" + "rshares": "6939984054", + "voter": "futurefood" }, { - "voter": "endgame", - "rshares": "794749227" + "rshares": "794749227", + "voter": "endgame" }, { - "voter": "furion", - "rshares": "7380892516" + "rshares": "7380892516", + "voter": "furion" }, { - "voter": "sigmajin", - "rshares": "111055672943" + "rshares": "111055672943", + "voter": "sigmajin" }, { - "voter": "steem1653", - "rshares": "2632460141" + "rshares": "2632460141", + "voter": "steem1653" }, { - "voter": "sveokla", - "rshares": "2860912097" + "rshares": "2860912097", + "voter": "sveokla" }, { - "voter": "cynetyc", - "rshares": "124961861" + "rshares": "124961861", + "voter": "cynetyc" }, { - "voter": "thegoodguy", - "rshares": "5250179537" + "rshares": "5250179537", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "13846328779" + "rshares": "13846328779", + "voter": "aaseb" }, { - "voter": "incomemonthly", - "rshares": "3857388226" + "rshares": "3857388226", + "voter": "incomemonthly" }, { - "voter": "karen13", - "rshares": "4209533734" + "rshares": "4209533734", + "voter": "karen13" }, { - "voter": "deviedev", - "rshares": "10646469982" + "rshares": "10646469982", + "voter": "deviedev" }, { - "voter": "nabilov", - "rshares": "243749878708" + "rshares": "243749878708", + "voter": "nabilov" }, { - "voter": "noodhoog", - "rshares": "8751103405" + "rshares": "8751103405", + "voter": "noodhoog" }, { - "voter": "knozaki2015", - "rshares": "464730588449" + "rshares": "464730588449", + "voter": "knozaki2015" }, { - "voter": "inertia", - "rshares": "93792164062" + "rshares": "93792164062", + "voter": "inertia" }, { - "voter": "creemej", - "rshares": "33739199475" + "rshares": "33739199475", + "voter": "creemej" }, { - "voter": "the-future", - "rshares": "2654553033" + "rshares": "2654553033", + "voter": "the-future" }, { - "voter": "nippel66", - "rshares": "14763294144" + "rshares": "14763294144", + "voter": "nippel66" }, { - "voter": "blueorgy", - "rshares": "159342196635" + "rshares": "159342196635", + "voter": "blueorgy" }, { - "voter": "opheliafu", - "rshares": "167934545479" + "rshares": "167934545479", + "voter": "opheliafu" }, { - "voter": "poseidon", - "rshares": "932318275" + "rshares": "932318275", + "voter": "poseidon" }, { - "voter": "simon.braki.love", - "rshares": "3365797955" + "rshares": "3365797955", + "voter": "simon.braki.love" }, { - "voter": "deanliu", - "rshares": "31459352664" + "rshares": "31459352664", + "voter": "deanliu" }, { - "voter": "sharker", - "rshares": "5497387091" + "rshares": "5497387091", + "voter": "sharker" }, { - "voter": "tokyodude", - "rshares": "1659490970" + "rshares": "1659490970", + "voter": "tokyodude" }, { - "voter": "jl777", - "rshares": "204618396015" + "rshares": "204618396015", + "voter": "jl777" }, { - "voter": "positive", - "rshares": "1226120506" + "rshares": "1226120506", + "voter": "positive" }, { - "voter": "yarly", - "rshares": "1845389893" + "rshares": "1845389893", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "278093833" + "rshares": "278093833", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "278509900" + "rshares": "278509900", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "160888481" + "rshares": "160888481", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "161796836" + "rshares": "161796836", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "92224612" + "rshares": "92224612", + "voter": "yarly7" }, { - "voter": "proto", - "rshares": "17267341753" + "rshares": "17267341753", + "voter": "proto" }, { - "voter": "jasen.g1311", - "rshares": "230455938" + "rshares": "230455938", + "voter": "jasen.g1311" }, { - "voter": "sisterholics", - "rshares": "7223043327" + "rshares": "7223043327", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "446373286" + "rshares": "446373286", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "238875070" + "rshares": "238875070", + "voter": "yarly11" }, { - "voter": "royalmacro", - "rshares": "8781903824" + "rshares": "8781903824", + "voter": "royalmacro" }, { - "voter": "yarly12", - "rshares": "83516643" + "rshares": "83516643", + "voter": "yarly12" }, { - "voter": "sulev", - "rshares": "3448954519" + "rshares": "3448954519", + "voter": "sulev" }, { - "voter": "reported", - "rshares": "54477247" + "rshares": "54477247", + "voter": "reported" }, { - "voter": "uwe69", - "rshares": "6869641155" + "rshares": "6869641155", + "voter": "uwe69" }, { - "voter": "jed78", - "rshares": "7506600577" + "rshares": "7506600577", + "voter": "jed78" }, { - "voter": "taker", - "rshares": "8734185109" + "rshares": "8734185109", + "voter": "taker" }, { - "voter": "felixxx", - "rshares": "14430038673" + "rshares": "14430038673", + "voter": "felixxx" }, { - "voter": "krushing", - "rshares": "51206711" + "rshares": "51206711", + "voter": "krushing" }, { - "voter": "laonie", - "rshares": "255431411513" + "rshares": "255431411513", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "157521707420" + "rshares": "157521707420", + "voter": "twinner" }, { - "voter": "thebluepanda", - "rshares": "12593318020" + "rshares": "12593318020", + "voter": "thebluepanda" }, { - "voter": "laoyao", - "rshares": "23916491019" + "rshares": "23916491019", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "7994964655" + "rshares": "7994964655", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "51848391811" + "rshares": "51848391811", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "1938565243" + "rshares": "1938565243", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "2501638608" + "rshares": "2501638608", + "voter": "gmurph" }, { - "voter": "chris.roy", - "rshares": "7842831090" + "rshares": "7842831090", + "voter": "chris.roy" }, { - "voter": "denn", - "rshares": "5558177167" + "rshares": "5558177167", + "voter": "denn" }, { - "voter": "minnowsunited", - "rshares": "475501347" + "rshares": "475501347", + "voter": "minnowsunited" }, { - "voter": "midnightoil", - "rshares": "11453689270" + "rshares": "11453689270", + "voter": "midnightoil" }, { - "voter": "whatyouganjado", - "rshares": "51383056" + "rshares": "51383056", + "voter": "whatyouganjado" }, { - "voter": "andrew0", - "rshares": "2275125890" + "rshares": "2275125890", + "voter": "andrew0" }, { - "voter": "xiaohui", - "rshares": "28648120983" + "rshares": "28648120983", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "1293711711" + "rshares": "1293711711", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "99935909954" + "rshares": "99935909954", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5683510464" + "rshares": "5683510464", + "voter": "oflyhigh" }, { - "voter": "makaveli", - "rshares": "56817337" + "rshares": "56817337", + "voter": "makaveli" }, { - "voter": "xiaokongcom", - "rshares": "895620436" + "rshares": "895620436", + "voter": "xiaokongcom" }, { - "voter": "gargon", - "rshares": "12687522802" + "rshares": "12687522802", + "voter": "gargon" }, { - "voter": "future24", - "rshares": "1446509276" + "rshares": "1446509276", + "voter": "future24" }, { - "voter": "xianjun", - "rshares": "1805414369" + "rshares": "1805414369", + "voter": "xianjun" }, { - "voter": "alexbones", - "rshares": "50010551" + "rshares": "50010551", + "voter": "alexbones" }, { - "voter": "microluck", - "rshares": "118221929" + "rshares": "118221929", + "voter": "microluck" }, { - "voter": "chinadaily", - "rshares": "2022702929" + "rshares": "2022702929", + "voter": "chinadaily" }, { - "voter": "pjheinz", - "rshares": "10261652613" + "rshares": "10261652613", + "voter": "pjheinz" }, { - "voter": "pompe72", - "rshares": "88481667" + "rshares": "88481667", + "voter": "pompe72" }, { - "voter": "serejandmyself", - "rshares": "83628622374" + "rshares": "83628622374", + "voter": "serejandmyself" }, { - "voter": "pollina", - "rshares": "108403024" + "rshares": "108403024", + "voter": "pollina" }, { - "voter": "mindfreak", - "rshares": "4931895395" + "rshares": "4931895395", + "voter": "mindfreak" }, { - "voter": "nastik", - "rshares": "14804566536" + "rshares": "14804566536", + "voter": "nastik" }, { - "voter": "onetree", - "rshares": "8856106682" + "rshares": "8856106682", + "voter": "onetree" }, { - "voter": "ozertayiz", - "rshares": "67782873" + "rshares": "67782873", + "voter": "ozertayiz" }, { - "voter": "steemitpatina", - "rshares": "4633082667" + "rshares": "4633082667", + "voter": "steemitpatina" }, { - "voter": "dajohns1420", - "rshares": "1009554365" + "rshares": "1009554365", + "voter": "dajohns1420" }, { - "voter": "salebored", - "rshares": "50215700" + "rshares": "50215700", + "voter": "salebored" }, { - "voter": "nulliusinverba", - "rshares": "5401518277" + "rshares": "5401518277", + "voter": "nulliusinverba" }, { - "voter": "newandold", - "rshares": "3838533556" + "rshares": "3838533556", + "voter": "newandold" }, { - "voter": "pollux.one", - "rshares": "1576511020" + "rshares": "1576511020", + "voter": "pollux.one" }, { - "voter": "einsteinpotsdam", - "rshares": "7779349622" + "rshares": "7779349622", + "voter": "einsteinpotsdam" }, { - "voter": "richardcrill", - "rshares": "4900461398" + "rshares": "4900461398", + "voter": "richardcrill" }, { - "voter": "nadin3", - "rshares": "4662965424" + "rshares": "4662965424", + "voter": "nadin3" }, { - "voter": "davidjkelley", - "rshares": "1625414479" + "rshares": "1625414479", + "voter": "davidjkelley" }, { - "voter": "bitdrone", - "rshares": "50326099" + "rshares": "50326099", + "voter": "bitdrone" }, { - "voter": "sleepcult", - "rshares": "50317967" + "rshares": "50317967", + "voter": "sleepcult" }, { - "voter": "greatness", - "rshares": "174778016" + "rshares": "174778016", + "voter": "greatness" }, { - "voter": "sponge-bob", - "rshares": "26571803569" + "rshares": "26571803569", + "voter": "sponge-bob" }, { - "voter": "digital-wisdom", - "rshares": "15232622426" + "rshares": "15232622426", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3630299933" + "rshares": "3630299933", + "voter": "ethical-ai" }, { - "voter": "zahnspange", - "rshares": "45843089173" + "rshares": "45843089173", + "voter": "zahnspange" }, { - "voter": "jwaser", - "rshares": "6682880996" + "rshares": "6682880996", + "voter": "jwaser" }, { - "voter": "jaredandanissa", - "rshares": "217064607" + "rshares": "217064607", + "voter": "jaredandanissa" }, { - "voter": "steemorama", - "rshares": "414338857" + "rshares": "414338857", + "voter": "steemorama" }, { - "voter": "smisi", - "rshares": "1655277599" + "rshares": "1655277599", + "voter": "smisi" }, { - "voter": "bwaser", - "rshares": "2617343597" + "rshares": "2617343597", + "voter": "bwaser" }, { - "voter": "panther", - "rshares": "330365849" + "rshares": "330365849", + "voter": "panther" }, { - "voter": "brains", - "rshares": "27673000226" + "rshares": "27673000226", + "voter": "brains" }, { - "voter": "funnyman", - "rshares": "4235195851" + "rshares": "4235195851", + "voter": "funnyman" }, { - "voter": "anomaly", - "rshares": "271440423" + "rshares": "271440423", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401297947" + "rshares": "2401297947", + "voter": "ellepdub" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "herpetologyguy", - "rshares": "11833929978" + "rshares": "11833929978", + "voter": "herpetologyguy" }, { - "voter": "morgan.waser", - "rshares": "4712300251" + "rshares": "4712300251", + "voter": "morgan.waser" }, { - "voter": "anns", - "rshares": "1233685675" + "rshares": "1233685675", + "voter": "anns" }, { - "voter": "strong-ai", - "rshares": "3609651500" + "rshares": "3609651500", + "voter": "strong-ai" }, { - "voter": "grisha-danunaher", - "rshares": "516546553" + "rshares": "516546553", + "voter": "grisha-danunaher" }, { - "voter": "michaelstobiersk", - "rshares": "1326703271" + "rshares": "1326703271", + "voter": "michaelstobiersk" }, { - "voter": "dresden", - "rshares": "7187212765" + "rshares": "7187212765", + "voter": "dresden" }, { - "voter": "goldmatters", - "rshares": "30995623639" + "rshares": "30995623639", + "voter": "goldmatters" }, { - "voter": "bleujay", - "rshares": "117881389" + "rshares": "117881389", + "voter": "bleujay" }, { - "voter": "risabold", - "rshares": "304359441" + "rshares": "304359441", + "voter": "risabold" } ], + "author": "knozaki2015", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 171, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/contest/@knozaki2015/the-strangest-building-in-berlin", - "blacklists": [] - }, - { - "post_id": 960036, - "author": "groovedigital", - "permlink": "when-your-dad-works-in-hollywood", - "category": "life", - "title": "When Your Dad Works In Hollywood", - "body": "\n

https://www.youtube.com/watch?v=iJCi8yLN8_M

\n", + "blacklists": [], + "body": "\n

\"SPOTTED\"

\n


\n

On my travel to Berlin, Germany I have SPOTTED this strange Building. 

\n

Can you guess the purpose of this strange corridor? 

\n


\n
\"2016-08-14
\nHere are some possible answers:

\n
    \n
  • This is a Passage where people used to smuggle food and cigarettes between West and East Berlin
  • \n
  • This is a Hospital and connecting two Wings
  • \n
  • This is a worm hole and connecting Berlin and Jupiter
  • \n
  • This is a Hostel and the toilets are in the other Wing
  • \n
  • ....
  • \n
\n


\n\"2016-08-14
\n
\n 

\n
To make it more fun a reward of 10 STEEM POWER will be given to the first correct answer of the purpose of this strange corridor.  
\n
And a Special Reward of 5 Steem Power goes to the strangest, funniest Answer!  
\n


\n

I will release the answer after a couple of hours so hurry and pick your answer. (2 answers per person only!!!)

\n

If you like my Post, please follow me! 

\n

I am blogging about the following topics :

\n
    \n
  • I travel the world (Travel and Restaurant Blog)
  • \n
  • Exposed (Uncovering Stories you need to know)
  • \n
  • Lifehacks (How to save money,etc) 
  • \n
  • SPOTTED (Limited Edition Food ,Drinks, Gadgets)
  • \n
  • Steemperlen (German Version)
  • \n
  • SQUEEZE (Interview Series) 
  • \n
  • COOKED (10 Episodes Cooking Series)
  • \n
\n", + "category": "contest", + "children": 28, + "created": "2016-09-15T18:23:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "life", - "comedy", - "film", - "art", - "funny" - ], "image": [ - "https://img.youtube.com/vi/iJCi8yLN8_M/0.jpg" + "https://s14.postimg.org/i75tlx3s1/SPOTTED.jpg", + "https://s22.postimg.org/s90fnlg7l/2016_08_14_17_21_48.jpg", + "https://s22.postimg.org/q5q0fxgep/2016_08_14_17_22_34.jpg" ], "links": [ - "https://www.youtube.com/watch?v=iJCi8yLN8_M" + "https://postimg.org/image/ciziv0zfh/", + "https://steemit.com/@knozaki2015", + "https://steemit.com/food/@knozaki2015/i-travel-the-world-part-25-cafe-viena-feat-the-worlds-best-sandwich-ny-times", + "https://steemit.com/deutsch/@knozaki2015/steemperlen-1", + "https://steemit.com/food/@knozaki2015/fantastic-seafood-paella-cooked-2-with-the-master-of-paella-gargon" + ], + "tags": [ + "contest", + "travel", + "minnowsunite", + "steemsquad", + "berlin" ] }, - "created": "2016-09-15T17:50:12", - "updated": "2016-09-15T17:50:12", - "depth": 0, - "children": 0, - "net_rshares": 40637225037243, - "is_paidout": false, - "payout_at": "2016-09-16T18:28:20", - "payout": 99.895, - "pending_payout_value": "99.895 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 26540390904529, + "payout": 44.638, + "payout_at": "2016-09-16T18:49:34", + "pending_payout_value": "44.638 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-strangest-building-in-berlin", + "post_id": 960293, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 171 + }, + "title": "SPOTTED #6 : The strangest Building in Berlin", + "updated": "2016-09-15T19:04:48", + "url": "/contest/@knozaki2015/the-strangest-building-in-berlin" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231809639013" + "rshares": "231809639013", + "voter": "anonymous" }, { - "voter": "blocktrades", - "rshares": "40041987828800" + "rshares": "40041987828800", + "voter": "blocktrades" }, { - "voter": "kenmonkey", - "rshares": "3500585753" + "rshares": "3500585753", + "voter": "kenmonkey" }, { - "voter": "altoz", - "rshares": "34979300821" + "rshares": "34979300821", + "voter": "altoz" }, { - "voter": "alexft", - "rshares": "4698559215" + "rshares": "4698559215", + "voter": "alexft" }, { - "voter": "steem1653", - "rshares": "2733708608" + "rshares": "2733708608", + "voter": "steem1653" }, { - "voter": "cynetyc", - "rshares": "124961861" + "rshares": "124961861", + "voter": "cynetyc" }, { - "voter": "nabilov", - "rshares": "251367062418" + "rshares": "251367062418", + "voter": "nabilov" }, { - "voter": "noodhoog", - "rshares": "8401059269" + "rshares": "8401059269", + "voter": "noodhoog" }, { - "voter": "rossenpavlov", - "rshares": "3291087867" + "rshares": "3291087867", + "voter": "rossenpavlov" }, { - "voter": "mandibil", - "rshares": "51505575275" + "rshares": "51505575275", + "voter": "mandibil" }, { - "voter": "anomaly", - "rshares": "271440423" + "rshares": "271440423", + "voter": "anomaly" }, { - "voter": "andrewrait", - "rshares": "213847216" + "rshares": "213847216", + "voter": "andrewrait" }, { - "voter": "bapparabi", - "rshares": "1871969417" + "rshares": "1871969417", + "voter": "bapparabi" }, { - "voter": "greencycles", - "rshares": "160935948" + "rshares": "160935948", + "voter": "greencycles" }, { - "voter": "dougkarr", - "rshares": "154247502" + "rshares": "154247502", + "voter": "dougkarr" }, { - "voter": "goodbible", - "rshares": "153227837" + "rshares": "153227837", + "voter": "goodbible" } ], + "author": "groovedigital", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 17, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/life/@groovedigital/when-your-dad-works-in-hollywood", - "blacklists": [] - }, - { - "post_id": 959920, - "author": "mihaiart", - "permlink": "the-queen-of-amazon-drawing-a-visual-progression", - "category": "art", - "title": "The Queen of Amazon drawing: a visual progression.", - "body": "Another fun drawing! I did remind myself to photo from inception to final result so this post is not only fun but informative as well.\n\nThe amazonian queen starts off as a naked lady. This part is important because the way her muscles are shaped and how the flesh reacts to her position will influence how the clothes and weapons look. It's the most important step\n\n
https://www.steemimg.com/images/2016/09/15/14359031_1179410545449253_7138810569815121083_n9b234.jpg
\n
\n\nNow it is time to sketch the clothes, the accessories and the weapons. Notice how this si done OVER the original drawing so her leg is still flexed, inside the boot for example. That's how you get the natural look.\n\n
https://www.steemimg.com/images/2016/09/15/14330163_1179410578782583_6894606683148969420_nd50ca.jpg
\n
\n\nWith all this in place, it's easy but still very important part to add the finishing touches and bring her out of the page. Look alive and fierce!\n\n
https://www.steemimg.com/images/2016/09/15/14291733_1179410605449247_177194940755567235_n05e5d.jpg
\n\n#### And that how I draw an Amazonian Woman :) \n#### What do you think?", + "blacklists": [], + "body": "\n

https://www.youtube.com/watch?v=iJCi8yLN8_M

\n", + "category": "life", + "children": 0, + "created": "2016-09-15T17:50:12", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { + "image": [ + "https://img.youtube.com/vi/iJCi8yLN8_M/0.jpg" + ], + "links": [ + "https://www.youtube.com/watch?v=iJCi8yLN8_M" + ], "tags": [ + "life", + "comedy", + "film", "art", - "drawing", - "illustration", - "" - ], - "image": [ - "https://www.steemimg.com/images/2016/09/15/14359031_1179410545449253_7138810569815121083_n9b234.jpg", - "https://www.steemimg.com/images/2016/09/15/14330163_1179410578782583_6894606683148969420_nd50ca.jpg", - "https://www.steemimg.com/images/2016/09/15/14291733_1179410605449247_177194940755567235_n05e5d.jpg" + "funny" ] }, - "created": "2016-09-15T17:37:24", - "updated": "2016-09-15T17:37:24", - "depth": 0, - "children": 2, - "net_rshares": 46651237670091, - "is_paidout": false, - "payout_at": "2016-09-16T18:37:02", - "payout": 130.13, - "pending_payout_value": "130.130 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 40637225037243, + "payout": 99.895, + "payout_at": "2016-09-16T18:28:20", + "pending_payout_value": "99.895 HBD", + "percent_steem_dollars": 10000, + "permlink": "when-your-dad-works-in-hollywood", + "post_id": 960036, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 17 + }, + "title": "When Your Dad Works In Hollywood", + "updated": "2016-09-15T17:50:12", + "url": "/life/@groovedigital/when-your-dad-works-in-hollywood" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231807201381" + "rshares": "231807201381", + "voter": "anonymous" }, { - "voter": "blocktrades", - "rshares": "40042238111353" + "rshares": "40042238111353", + "voter": "blocktrades" }, { - "voter": "badassmother", - "rshares": "1912120788268" + "rshares": "1912120788268", + "voter": "badassmother" }, { - "voter": "rossco99", - "rshares": "1271804694676" + "rshares": "1271804694676", + "voter": "rossco99" }, { - "voter": "wang", - "rshares": "2205816409649" + "rshares": "2205816409649", + "voter": "wang" }, { - "voter": "gregory60", - "rshares": "9028536224" + "rshares": "9028536224", + "voter": "gregory60" }, { - "voter": "eeks", - "rshares": "14982984990" + "rshares": "14982984990", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1007941175" + "rshares": "1007941175", + "voter": "fkn" }, { - "voter": "elishagh1", - "rshares": "1324875721" + "rshares": "1324875721", + "voter": "elishagh1" }, { - "voter": "coar", - "rshares": "313697862" + "rshares": "313697862", + "voter": "coar" }, { - "voter": "murh", - "rshares": "1061253912" + "rshares": "1061253912", + "voter": "murh" }, { - "voter": "theshell", - "rshares": "59950860155" + "rshares": "59950860155", + "voter": "theshell" }, { - "voter": "kimziv", - "rshares": "10684554315" + "rshares": "10684554315", + "voter": "kimziv" }, { - "voter": "razvanelulmarin", - "rshares": "88054033498" + "rshares": "88054033498", + "voter": "razvanelulmarin" }, { - "voter": "skapaneas", - "rshares": "20605443611" + "rshares": "20605443611", + "voter": "skapaneas" }, { - "voter": "furion", - "rshares": "4920266872" + "rshares": "4920266872", + "voter": "furion" }, { - "voter": "steem1653", - "rshares": "2834957075" + "rshares": "2834957075", + "voter": "steem1653" }, { - "voter": "karen13", - "rshares": "4209522316" + "rshares": "4209522316", + "voter": "karen13" }, { - "voter": "deviedev", - "rshares": "10646469982" + "rshares": "10646469982", + "voter": "deviedev" }, { - "voter": "nabilov", - "rshares": "251367062418" + "rshares": "251367062418", + "voter": "nabilov" }, { - "voter": "luisucv34", - "rshares": "629471993" + "rshares": "629471993", + "voter": "luisucv34" }, { - "voter": "lichtblick", - "rshares": "7017192292" + "rshares": "7017192292", + "voter": "lichtblick" }, { - "voter": "creemej", - "rshares": "33739070578" + "rshares": "33739070578", + "voter": "creemej" }, { - "voter": "the-future", - "rshares": "2726160685" + "rshares": "2726160685", + "voter": "the-future" }, { - "voter": "poseidon", - "rshares": "233065746" + "rshares": "233065746", + "voter": "poseidon" }, { - "voter": "mustafaomar", - "rshares": "20119987887" + "rshares": "20119987887", + "voter": "mustafaomar" }, { - "voter": "jl777", - "rshares": "204617853645" + "rshares": "204617853645", + "voter": "jl777" }, { - "voter": "positive", - "rshares": "817413671" + "rshares": "817413671", + "voter": "positive" }, { - "voter": "anca3drandom", - "rshares": "35503255658" + "rshares": "35503255658", + "voter": "anca3drandom" }, { - "voter": "proto", - "rshares": "17267307497" + "rshares": "17267307497", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "1805642436" + "rshares": "1805642436", + "voter": "sisterholics" }, { - "voter": "sulev", - "rshares": "3448353558" + "rshares": "3448353558", + "voter": "sulev" }, { - "voter": "andreynoch", - "rshares": "2002851358" + "rshares": "2002851358", + "voter": "andreynoch" }, { - "voter": "glitterpig", - "rshares": "3353931808" + "rshares": "3353931808", + "voter": "glitterpig" }, { - "voter": "taker", - "rshares": "8734139434" + "rshares": "8734139434", + "voter": "taker" }, { - "voter": "laonie", - "rshares": "63852393470" + "rshares": "63852393470", + "voter": "laonie" }, { - "voter": "myfirst", - "rshares": "2664855399" + "rshares": "2664855399", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "12961218703" + "rshares": "12961218703", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "484610059" + "rshares": "484610059", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "416939768" + "rshares": "416939768", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "2863237212" + "rshares": "2863237212", + "voter": "midnightoil" }, { - "voter": "xiaohui", - "rshares": "7161285616" + "rshares": "7161285616", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "323406893" + "rshares": "323406893", + "voter": "elfkitchen" }, { - "voter": "xiaokongcom", - "rshares": "223891286" + "rshares": "223891286", + "voter": "xiaokongcom" }, { - "voter": "xianjun", - "rshares": "451324143" + "rshares": "451324143", + "voter": "xianjun" }, { - "voter": "borran", - "rshares": "11041591679" + "rshares": "11041591679", + "voter": "borran" }, { - "voter": "macartem", - "rshares": "2958177650" + "rshares": "2958177650", + "voter": "macartem" }, { - "voter": "mihaiart", - "rshares": "24058315421" + "rshares": "24058315421", + "voter": "mihaiart" }, { - "voter": "gvargas123", - "rshares": "9827647000" + "rshares": "9827647000", + "voter": "gvargas123" }, { - "voter": "craigwilliamz", - "rshares": "8773942171" + "rshares": "8773942171", + "voter": "craigwilliamz" }, { - "voter": "jeff-kubitz", - "rshares": "52806920" + "rshares": "52806920", + "voter": "jeff-kubitz" }, { - "voter": "mikkolyytinen", - "rshares": "3091707749" + "rshares": "3091707749", + "voter": "mikkolyytinen" }, { - "voter": "anomaly", - "rshares": "339288508" + "rshares": "339288508", + "voter": "anomaly" }, { - "voter": "michelle.gent", - "rshares": "4249431309" + "rshares": "4249431309", + "voter": "michelle.gent" }, { - "voter": "orcish", - "rshares": "6368823978" + "rshares": "6368823978", + "voter": "orcish" }, { - "voter": "bapparabi", - "rshares": "1871969417" + "rshares": "1871969417", + "voter": "bapparabi" }, { - "voter": "wastedsoul", - "rshares": "164141037" + "rshares": "164141037", + "voter": "wastedsoul" }, { - "voter": "katharsisdrill", - "rshares": "87053502" + "rshares": "87053502", + "voter": "katharsisdrill" }, { - "voter": "dougkarr", - "rshares": "154247502" + "rshares": "154247502", + "voter": "dougkarr" } ], + "author": "mihaiart", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 59, - "flag_weight": 0.0 - }, "beneficiaries": [], + "blacklists": [], + "body": "Another fun drawing! I did remind myself to photo from inception to final result so this post is not only fun but informative as well.\n\nThe amazonian queen starts off as a naked lady. This part is important because the way her muscles are shaped and how the flesh reacts to her position will influence how the clothes and weapons look. It's the most important step\n\n
https://www.steemimg.com/images/2016/09/15/14359031_1179410545449253_7138810569815121083_n9b234.jpg
\n
\n\nNow it is time to sketch the clothes, the accessories and the weapons. Notice how this si done OVER the original drawing so her leg is still flexed, inside the boot for example. That's how you get the natural look.\n\n
https://www.steemimg.com/images/2016/09/15/14330163_1179410578782583_6894606683148969420_nd50ca.jpg
\n
\n\nWith all this in place, it's easy but still very important part to add the finishing touches and bring her out of the page. Look alive and fierce!\n\n
https://www.steemimg.com/images/2016/09/15/14291733_1179410605449247_177194940755567235_n05e5d.jpg
\n\n#### And that how I draw an Amazonian Woman :) \n#### What do you think?", + "category": "art", + "children": 2, + "created": "2016-09-15T17:37:24", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/15/14359031_1179410545449253_7138810569815121083_n9b234.jpg", + "https://www.steemimg.com/images/2016/09/15/14330163_1179410578782583_6894606683148969420_nd50ca.jpg", + "https://www.steemimg.com/images/2016/09/15/14291733_1179410605449247_177194940755567235_n05e5d.jpg" + ], + "tags": [ + "art", + "drawing", + "illustration", + "" + ] + }, "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 46651237670091, + "payout": 130.13, + "payout_at": "2016-09-16T18:37:02", + "pending_payout_value": "130.130 HBD", "percent_steem_dollars": 10000, - "url": "/art/@mihaiart/the-queen-of-amazon-drawing-a-visual-progression", - "blacklists": [] + "permlink": "the-queen-of-amazon-drawing-a-visual-progression", + "post_id": 959920, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 59 + }, + "title": "The Queen of Amazon drawing: a visual progression.", + "updated": "2016-09-15T17:37:24", + "url": "/art/@mihaiart/the-queen-of-amazon-drawing-a-visual-progression" }, { - "post_id": 959892, + "active_votes": [ + { + "rshares": "231809756793", + "voter": "anonymous" + }, + { + "rshares": "40042164500412", + "voter": "blocktrades" + }, + { + "rshares": "734082781", + "voter": "rxhector" + }, + { + "rshares": "243749878708", + "voter": "nabilov" + }, + { + "rshares": "3813478158", + "voter": "btcupload" + }, + { + "rshares": "20189102884", + "voter": "artific" + }, + { + "rshares": "8773942171", + "voter": "craigwilliamz" + }, + { + "rshares": "10227302974", + "voter": "etcmike" + }, + { + "rshares": "3827694728", + "voter": "titusfrost" + }, + { + "rshares": "245531412", + "voter": "doitvoluntarily" + }, + { + "rshares": "55752594", + "voter": "alucard" + }, + { + "rshares": "271441624", + "voter": "anomaly" + } + ], "author": "titusfrost", - "permlink": "new-mr-robot-episode-introduces-e-corp-s-new-ecoin", - "category": "mrrobot", - "title": "New Mr. Robot Episode Introduces E-Corp's New \"Ecoin\"", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], "body": "# Is The Takeover of Crypto-Currencies About to Begin by the Central Banks?\n\nhttp://i.imgur.com/NxCYMpy.png\n([Image Source](http://www.e-corp-usa.com/ecoin/))\n\nThe show **Mr. Robot** has fictionalized the **\"Powers that Shouldn't Be\"** into a singular Corporation called **E Corp**. This E Corp is supposed to basically represent the powers behind the Global Central Bankers, the true World Rulers. The head of E Corp even states in a recent Episode \"Politicians are Puppets\", which reminds me of the quotation by Nathan Rothschild regarding the head on which the crown of England is placed. Clearly one could see that E Corp in the show is the fictionalization of the **\"Illuminati\"** if you will. The show is heavily laden with [esoteric symbolism](https://www.youtube.com/watch?v=l2lZn-ZcJMs) but to the public it comes across as \"counter-culture\" as the main character is the founding member of **\"F Society\"** a hacking group based directly on **\"Anonymous\"**. This hacking group causes a financial crash, which leads to E Corp releasing a new digital Currency called **\"ECoin\"**, the above image is from a promotional website for the TV show. \n\n## Is Mr. Robot demonizing Crypto-Currencies? \n\nhttp://i.imgur.com/f6gXhrn.jpg\n([Image Source](http://www.serialminds.com/2015/06/05/mr-robot-la-serie-che-sta-piacendo-tutti-forse-troppo/))\n\nNow the interesting part for those fans of crypto-currencies like everyone on **Steemit** and for everyone who uses **Bitcoin**. I think the reason for they added an \"Ecoin\" in this show is to demonize crypto-currencies. The powers that shouldn't be have no way to take over these crypto-currencies so they have decided to wage information war against them. With the countless videos warning about the rise of *\"digital only currency\"* being the *\"mark of the beast\"*, one could easily see lots of propaganda has already been employed. However this new form is quite intelligent, by associating \"ECoins\" with \"E Corp\" they make the average mind (who doesn't know what Bitcoin or Steemit really is), subconsciously associate all crypto-currencies with the Federal Reserve banskters, with \"E Corp\". This is classic subconscious guilt by association created entirely by fiction that is often employed in fictional movies. This is why I think the \"E Coin\" was added to the show, but I could be wrong, so why else might it be in this show? \n\n## Do the Elite Plan to Replace the Dollar with a Digital Only Currency? \nhttp://i.imgur.com/IJJxcBR.jpg\n([Image Source](https://www.cryptocoinsnews.com/why-bitcoin-value-doesnt-matter/))\n\nWe all know the financial system is basically teetering on the verge of collapse. It is the biggest ponzy scheme ever devised and like all ponzy schemes if the Federal Reserve doesn't increase demand for the use of it's currency the system will collapse. It was designed to collapse. I believe like many others for one reason, so they can start the whole process that made them so rich, all over again on a global scale. The new world order if you will, being run by financial despotism and technical autocracy. So, is their plan to create a financial collapse being shown in plain sight in this show? One idea I heard from my friend who maintains the [\"What is Real\" YouTube Channel](https://www.youtube.com/user/szymborski11) is they may \n>\"allow a false flag attack that they can blame on some shadowy hacking group, possibly even **Anonymous** itself as anyone can claim to be Anonymous\" \n\nPersonally I do not buy this theory as Anonymous is completely decentralized and would be almost impossible to blame for a false flag. However, to fully analyze a situation one must always look at every angle. \n\nSo if the system collapsed, especially overnight due to a hack, would they replace the Federal Reserve Notes with a new digital only \"E Coin\" backed by the IMF World Bank and their massive Gold Holdings, and Special Drawing Rights Holdings? The Group of Thirty, also known as the G30 reported in the [latest working papers on their website](http://group30.org/publications) that they want a return to a **GOLD Standard** just like how the Federal Reserve started out but in a new **Global Currency**. See my Documentary on the [\"Group of Thirty\"](https://www.youtube.com/watch?v=eOB9QfxsgdQ) for more on this group of 30 Central Bankers that meet in secret. So is it out of the realm of possibilities that the new Global Currency that the World Bank has planned for post the collapse of the Federal Reserve System is a new digital only currency based on Gold and SDR holdings? No this would make a lot of sense to me but what do you the readers think? \n\n## Decentralization the Key to Defeating Takeover of Crypto-Currencies by Central Banks\nhttp://i.imgur.com/KVNo7nE.jpg\n([Image Source](https://www.cryptocoinsnews.com/why-bitcoin-value-doesnt-matter/))\n\nThe decentralized concept at the basis of the crypto-currencies could be the key to their survival if the Central Banks decide to try and take over the market. Right now their is a few crypto-currencies that are from the perspective of a non trader even worth mentioning. **Bitcoin**, **Ethereum**, and **STEEM**, however if the Central Banks created a new \"ECoin\" it would easily make replace Bitcoin as the number 1 crypto-currency. However, there will always be a demand for crypto-currencies that are not \"Ecoins\", because thankfully we have a whole planet full of awesome people who will never conform to the system. The useless governments will always make things illegal that people want and can't buy with their new \"Ecoins\". So we will always have a demand for a currency like Bitcoin that is not a part of the centralized system, but is outside of that system's control. So try as they might, the powers that be can only wage information war against crypto-currencies because there will always be new entrepreneurs that create new currencies just like steemit, that are outside their systems of control. The harder the hidden hand squeezes the more of us will fall through their fingertips. \n\n#### Thanks for Reading! \nhttp://i.imgur.com/k10p6Pf.jpg\nIf you liked my article please join **steemit** and let me know by leaving a comment or upvoting! As always follow me on here [@TitusFrost](https://steemit.com/@titusfrost) for more hard hitting posts!", + "category": "mrrobot", + "children": 4, + "created": "2016-09-15T17:34:42", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "mrrobot", - "beyondbitcoin", - "steemit", - "bitcoin", - "ethereum" - ], "image": [ "http://i.imgur.com/NxCYMpy.png", "http://i.imgur.com/f6gXhrn.jpg", @@ -8359,1996 +8408,1947 @@ "http://group30.org/publications", "https://www.youtube.com/watch?v=eOB9QfxsgdQ", "https://steemit.com/@titusfrost" + ], + "tags": [ + "mrrobot", + "beyondbitcoin", + "steemit", + "bitcoin", + "ethereum" ] }, - "created": "2016-09-15T17:34:42", - "updated": "2016-09-15T17:34:42", - "depth": 0, - "children": 4, + "max_accepted_payout": "1000000.000 HBD", "net_rshares": 40565862465239, - "is_paidout": false, - "payout_at": "2016-09-16T18:41:34", "payout": 99.561, + "payout_at": "2016-09-16T18:41:34", "pending_payout_value": "99.561 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "new-mr-robot-episode-introduces-e-corp-s-new-ecoin", + "post_id": 959892, "promoted": "0.000 HBD", "replies": [], - "active_votes": [ - { - "voter": "anonymous", - "rshares": "231809756793" - }, - { - "voter": "blocktrades", - "rshares": "40042164500412" - }, - { - "voter": "rxhector", - "rshares": "734082781" - }, - { - "voter": "nabilov", - "rshares": "243749878708" - }, - { - "voter": "btcupload", - "rshares": "3813478158" - }, - { - "voter": "artific", - "rshares": "20189102884" - }, - { - "voter": "craigwilliamz", - "rshares": "8773942171" - }, - { - "voter": "etcmike", - "rshares": "10227302974" - }, - { - "voter": "titusfrost", - "rshares": "3827694728" - }, - { - "voter": "doitvoluntarily", - "rshares": "245531412" - }, - { - "voter": "alucard", - "rshares": "55752594" - }, - { - "voter": "anomaly", - "rshares": "271441624" - } - ], - "author_reputation": 25.0, "stats": { - "hide": false, + "flag_weight": 0.0, "gray": false, - "total_votes": 12, - "flag_weight": 0.0 + "hide": false, + "total_votes": 12 }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/mrrobot/@titusfrost/new-mr-robot-episode-introduces-e-corp-s-new-ecoin", - "blacklists": [] + "title": "New Mr. Robot Episode Introduces E-Corp's New \"Ecoin\"", + "updated": "2016-09-15T17:34:42", + "url": "/mrrobot/@titusfrost/new-mr-robot-episode-introduces-e-corp-s-new-ecoin" }, { - "post_id": 960471, - "author": "halo", - "permlink": "steemit-girl-halo-beautiful-day", - "category": "halo", - "title": "STEEMIT GIRL HALO ♡ Beautiful Day", - "body": "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/1e_zpszfkcfjtn.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/4e_zpsqprjeml3.jpg\n\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/2e_zps4liuaqhp.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/6e_zpshjwzv5b4.jpg\n\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/3e_zpstiifeqjc.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/5e_zpserzptebm.jpg", - "json_metadata": { - "tags": [ - "halo", - "photography", - "photos", - "steemitgirls", - "girls" - ], - "image": [ - "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/1e_zpszfkcfjtn.jpg", - "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/2e_zps4liuaqhp.jpg", - "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/3e_zpstiifeqjc.jpg" - ] - }, - "created": "2016-09-15T18:45:15", - "updated": "2016-09-15T18:46:27", - "depth": 0, - "children": 13, - "net_rshares": 15463146900495, - "is_paidout": false, - "payout_at": "2016-09-16T19:16:58", - "payout": 16.574, - "pending_payout_value": "16.574 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], "active_votes": [ { - "voter": "smooth", - "rshares": "12523260993360" + "rshares": "12523260993360", + "voter": "smooth" }, { - "voter": "smooth.witness", - "rshares": "2377105047841" + "rshares": "2377105047841", + "voter": "smooth.witness" }, { - "voter": "alexgr", - "rshares": "49168301700" + "rshares": "49168301700", + "voter": "alexgr" }, { - "voter": "unosuke", - "rshares": "41161390898" + "rshares": "41161390898", + "voter": "unosuke" }, { - "voter": "coar", - "rshares": "313699965" + "rshares": "313699965", + "voter": "coar" }, { - "voter": "murh", - "rshares": "1061303487" + "rshares": "1061303487", + "voter": "murh" }, { - "voter": "kodi", - "rshares": "579494558" + "rshares": "579494558", + "voter": "kodi" }, { - "voter": "will-zewe", - "rshares": "210512019921" + "rshares": "210512019921", + "voter": "will-zewe" }, { - "voter": "herzmeister", - "rshares": "85402720456" + "rshares": "85402720456", + "voter": "herzmeister" }, { - "voter": "everythink", - "rshares": "37088193309" + "rshares": "37088193309", + "voter": "everythink" }, { - "voter": "alexft", - "rshares": "4551729239" + "rshares": "4551729239", + "voter": "alexft" }, { - "voter": "gidlark", - "rshares": "1609525039" + "rshares": "1609525039", + "voter": "gidlark" }, { - "voter": "steem1653", - "rshares": "2632467953" + "rshares": "2632467953", + "voter": "steem1653" }, { - "voter": "halo", - "rshares": "42836399572" + "rshares": "42836399572", + "voter": "halo" }, { - "voter": "noodhoog", - "rshares": "8401059269" + "rshares": "8401059269", + "voter": "noodhoog" }, { - "voter": "nippel66", - "rshares": "15070803886" + "rshares": "15070803886", + "voter": "nippel66" }, { - "voter": "earnest", - "rshares": "1959134133" + "rshares": "1959134133", + "voter": "earnest" }, { - "voter": "beanz", - "rshares": "5068724760" + "rshares": "5068724760", + "voter": "beanz" }, { - "voter": "timelapse", - "rshares": "18607156497" + "rshares": "18607156497", + "voter": "timelapse" }, { - "voter": "missmishel623", - "rshares": "68250832" + "rshares": "68250832", + "voter": "missmishel623" }, { - "voter": "future24", - "rshares": "1446509276" + "rshares": "1446509276", + "voter": "future24" }, { - "voter": "telos", - "rshares": "13841342477" + "rshares": "13841342477", + "voter": "telos" }, { - "voter": "movievertigo", - "rshares": "3635091595" + "rshares": "3635091595", + "voter": "movievertigo" }, { - "voter": "netaterra", - "rshares": "2923037366" + "rshares": "2923037366", + "voter": "netaterra" }, { - "voter": "freeinthought", - "rshares": "720031052" + "rshares": "720031052", + "voter": "freeinthought" }, { - "voter": "chadcrypto", - "rshares": "195329269" + "rshares": "195329269", + "voter": "chadcrypto" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "orcish", - "rshares": "6368823978" + "rshares": "6368823978", + "voter": "orcish" }, { - "voter": "zaitsevalesyaa", - "rshares": "3200652561" + "rshares": "3200652561", + "voter": "zaitsevalesyaa" }, { - "voter": "dresden", - "rshares": "4259089046" + "rshares": "4259089046", + "voter": "dresden" } ], + "author": "halo", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 30, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/halo/@halo/steemit-girl-halo-beautiful-day", - "blacklists": [] - }, - { - "post_id": 959864, - "author": "tanyabtc", - "permlink": "jellyfish", - "category": "art", - "title": "Jellyfish", - "body": "Jellyfish is a perfect example of one of the weirdest creatures out there. In real life they are definitely not the most pleasant thing to touch and being surrounded with.\n\nIt wasn't a surprise for me but jellyfish don't have brains. Instead, they have nerve nets which sense changes in the environment and coordinate the animal's responses.\n\nHowever if you eliminate all of the fluff that people are talking about them, you can come up with something interesting and even fun.\n\nThis drawing is created using my favorite style, I hope you'll love it.\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish2_zpswbrk9ied.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish3_zpsx0rcjvko.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish1_zpsge408hgu.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish4_zpsmctahaql.jpg\n\n***\n\n###
Follow me for my future art work: [@tanyabtc](https://steemit.com/@tanyabtc)
", + "blacklists": [], + "body": "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/1e_zpszfkcfjtn.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/4e_zpsqprjeml3.jpg\n\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/2e_zps4liuaqhp.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/6e_zpshjwzv5b4.jpg\n\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/3e_zpstiifeqjc.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/5e_zpserzptebm.jpg", + "category": "halo", + "children": 13, + "created": "2016-09-15T18:45:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "art", - "photography", - "life", - "nature", - "steemitartchallenge" - ], "image": [ - "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish2_zpswbrk9ied.jpg", - "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish3_zpsx0rcjvko.jpg", - "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish1_zpsge408hgu.jpg", - "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish4_zpsmctahaql.jpg" + "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/1e_zpszfkcfjtn.jpg", + "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/2e_zps4liuaqhp.jpg", + "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/3e_zpstiifeqjc.jpg" ], - "links": [ - "https://steemit.com/@tanyabtc" + "tags": [ + "halo", + "photography", + "photos", + "steemitgirls", + "girls" ] }, - "created": "2016-09-15T17:32:00", - "updated": "2016-09-15T17:32:00", - "depth": 0, - "children": 5, - "net_rshares": 40641175102128, - "is_paidout": false, - "payout_at": "2016-09-16T18:34:50", - "payout": 99.914, - "pending_payout_value": "99.914 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 15463146900495, + "payout": 16.574, + "payout_at": "2016-09-16T19:16:58", + "pending_payout_value": "16.574 HBD", + "percent_steem_dollars": 10000, + "permlink": "steemit-girl-halo-beautiful-day", + "post_id": 960471, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 30 + }, + "title": "STEEMIT GIRL HALO \u2661 Beautiful Day", + "updated": "2016-09-15T18:46:27", + "url": "/halo/@halo/steemit-girl-halo-beautiful-day" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231809756793" + "rshares": "231809756793", + "voter": "anonymous" }, { - "voter": "blocktrades", - "rshares": "40042090888143" + "rshares": "40042090888143", + "voter": "blocktrades" }, { - "voter": "acidsun", - "rshares": "81790420316" + "rshares": "81790420316", + "voter": "acidsun" }, { - "voter": "danielkt", - "rshares": "1026087885" + "rshares": "1026087885", + "voter": "danielkt" }, { - "voter": "nabilov", - "rshares": "243749878708" + "rshares": "243749878708", + "voter": "nabilov" }, { - "voter": "dmitriybtc", - "rshares": "5096232265" + "rshares": "5096232265", + "voter": "dmitriybtc" }, { - "voter": "dmilash", - "rshares": "3145812656" + "rshares": "3145812656", + "voter": "dmilash" }, { - "voter": "marinaz", - "rshares": "538023492" + "rshares": "538023492", + "voter": "marinaz" }, { - "voter": "future24", - "rshares": "1446509276" + "rshares": "1446509276", + "voter": "future24" }, { - "voter": "cmorton", - "rshares": "4098512589" + "rshares": "4098512589", + "voter": "cmorton" }, { - "voter": "numberone", - "rshares": "83101859" + "rshares": "83101859", + "voter": "numberone" }, { - "voter": "trev", - "rshares": "5712937692" + "rshares": "5712937692", + "voter": "trev" }, { - "voter": "creatr", - "rshares": "62351093" + "rshares": "62351093", + "voter": "creatr" }, { - "voter": "jlufer", - "rshares": "116660687" + "rshares": "116660687", + "voter": "jlufer" }, { - "voter": "jeff-kubitz", - "rshares": "53884613" + "rshares": "53884613", + "voter": "jeff-kubitz" }, { - "voter": "tanyabtc", - "rshares": "5532993072" + "rshares": "5532993072", + "voter": "tanyabtc" }, { - "voter": "waldemar-kuhn", - "rshares": "53671263" + "rshares": "53671263", + "voter": "waldemar-kuhn" }, { - "voter": "anomaly", - "rshares": "271440423" + "rshares": "271440423", + "voter": "anomaly" }, { - "voter": "orcish", - "rshares": "6368721210" + "rshares": "6368721210", + "voter": "orcish" }, { - "voter": "puffin", - "rshares": "4331450381" + "rshares": "4331450381", + "voter": "puffin" }, { - "voter": "dresden", - "rshares": "3795767712" + "rshares": "3795767712", + "voter": "dresden" } ], + "author": "tanyabtc", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 21, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/art/@tanyabtc/jellyfish", - "blacklists": [] - }, - { - "post_id": 959506, - "author": "markrmorrisjr", - "permlink": "original-fiction-anarchist-s-almanac-episode-15", - "category": "story", - "title": "Original Fiction: Anarchist's Almanac, Episode 15", - "body": "## In this episode, Joshua Claiborne stands trial for violation of the First Law ##\n\n**“Whoa, whoa, whoa!” Phil screamed, “What the hell dude?”**\n\n*The Reaper crumpled to the floor, arms flailing as Joshua rode it to the ground. Finally, the hands found the catches at either side of the helmet and popped it off. A black, shaggy head of hair emerged.* \n\n***If you've missed episodes, [visit my blog](https://steemit.com/@markrmorrisjr) to catch up. Be sure to follow me for updates in your feed!***\n\n“Emil?” Stella said, “Meet Joshua. Are you okay?”\n\nEmil, the Reaper suit’s operator laughed, “Yeah, I’m fine, but that was awesome! Can you teach us that?”\n\n“Man! Now I have to rebuild this helmet,” Phil held up a small remote. “All I had to do was push this button,” he said, pressing it, as the suit powered down. “What did you do?”\n\n“The ‘nerve’ bundle that controls these things motor skills is on the very top of the skull, under a thin piece of sheet metal, puncture it, it collapses. You didn’t know that?” Joshua said. \n\n“Well, it appears we may need you more than you need us,” Stella said. “So, just say the word and we’ll get you where you need to be. Meanwhile, my team will be working on your son’s location.”\n\nJoshua dropped the letter opener and walked to the stairs, “Fine, whatever you need to collect from my meeting, get it. Now, who’s driving?” With that, he walked up the stairs, he had no more time to waste. \n\n**The Mapleton courthouse sat on a hill in the center of the town, overlooking the area around for miles.** \n\n*Joshua insisted that the team Stella had sent stop 5 miles out and allow him to ride in on the electric trike alone, while they observed the meeting from a distance.* \n\nHe carried the tiny remote in his shirt pocket, a gift from Phil. “That’s my only prototype, so don’t lose it,” he’d said. \n\n![enter image description here](https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg)\n\nFrom the end of Main Street, looking up toward the courthouse, Joshua counted at least six reapers. He wondered how far the signal from the remote would travel. \n\nHe thought about pressing it now, disarming his enemy, then walking in, but he’d still have to deal with the six drivers, if they managed to escape the suits. \n\nBesides, Stella seemed to think there was some secret they were going to give away, although Joshua couldn’t imagine it. \n\n*He checked his watch, ten minutes until his scheduled time and while he knew better than to be late, he had no intention of giving the Consensus one more second than he had to.* \n\nThe trike spun it’s tires on a patch of loose gravel as he started back up. He decided a quick approach was best. He charged up the hill, jumping the “Mayor’s” parking barrier and rolling up to the foot of the front stairs, he cranked the accelerator and the trike rose up on its back wheel, popping the two front wheels, over the bottom step. \n\nThe machine had more than enough power to climb the steps and Joshua skidded to a stop outside the courthouse door. He stopped and turned back toward the town, the six Reapers swarming toward him up the steps. He powered down, swung his leg up and over the bike and opened the door. \n\n**The Reapers followed him into the hall as he approached the court room.** \n\nThe Magistrate sat behind the judge’s bench and Joshua couldn’t help but smirk at the insult to the very concept of actual justice that this thing represented. \n\n“Joshua Claiborne, appearing as requested,” Joshua said, standing directly in front of the Magistrate. \n\n![enter image description here](https://s12.postimg.org/6h4lvyh7x/judge.jpg)\n\n> “Yes, Mr. Claiborne, have a seat,” A woman’s face, projected on the face shield of the Magistrate said.\n\n“I’d rather stand,” he said. \n\n> “Suit yourself, may we have the room, please?” she said, looking toward the reapers that had entered the back doors of the courtroom.\n\nThey left quietly. \n\n> “Mr. Claiborne, you’re charged with violation of the first law, in so\n> much as you have encouraged and joined in the activity of settling\n> outside of Consensus approved areas, acted outside of the legal\n> jurisdiction of the council and on more than one occasion, acted\n> against the best interest of Consensus, including attacking duly\n> authorized Magistrates in the course of their legally binding duties,\n> how do you plead?”\n\n**The woman looked at Joshua, peering over a pair of short, square spectacles, like some sort of outdated stereotype.** \n\n“Not guilty, by reason of illegitimacy of the currently established government and its ensigns. I am not, nor do I choose to become, subject to your law. I stand judged as innocent by natural law, insomuch as I have not caused harm to another human in aggression, damaged or stolen property, nor unnecessarily restricted the liberty of any other person. I recognize no other responsibility to my fellow man,” Joshua said calmly. \n\n> “Be that as it may, Mr. Claiborne, we are not here under the auspices of “natural law” but rather, under the Council mandated authority of the Consensus and its Magisterial Ministry, of which I am a part and I assure you, you are subject to,”\n\nThe woman intoned, her expression one of almost sheer boredom.\n\n> “Court finds the defendant guilty and remands the subject for immediate judicial murder.”\n\nThe magistrate raised its arm and brought it down on the bench with a solid thud, that echoed through the court. Joshua felt his heart sink as the Reapers reentered the court and moved up to surround him. \n\n## Look for the upvote button below. If you liked the post, upvote and share! If you're not on Steemit yet, why not? You get free money for signing up! ##", + "blacklists": [], + "body": "Jellyfish is a perfect example of one of the weirdest creatures out there. In real life they are definitely not the most pleasant thing to touch and being surrounded with.\n\nIt wasn't a surprise for me but jellyfish don't have brains. Instead, they have nerve nets which sense changes in the environment and coordinate the animal's responses.\n\nHowever if you eliminate all of the fluff that people are talking about them, you can come up with something interesting and even fun.\n\nThis drawing is created using my favorite style, I hope you'll love it.\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish2_zpswbrk9ied.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish3_zpsx0rcjvko.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish1_zpsge408hgu.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish4_zpsmctahaql.jpg\n\n***\n\n###
Follow me for my future art work: [@tanyabtc](https://steemit.com/@tanyabtc)
", + "category": "art", + "children": 5, + "created": "2016-09-15T17:32:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "story", - "fiction", - "anarchy", - "life", - "minnowsunited" - ], "image": [ - "https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg", - "https://s12.postimg.org/6h4lvyh7x/judge.jpg" + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish2_zpswbrk9ied.jpg", + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish3_zpsx0rcjvko.jpg", + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish1_zpsge408hgu.jpg", + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish4_zpsmctahaql.jpg" ], "links": [ - "https://steemit.com/@markrmorrisjr" + "https://steemit.com/@tanyabtc" + ], + "tags": [ + "art", + "photography", + "life", + "nature", + "steemitartchallenge" ] }, - "created": "2016-09-15T16:54:06", - "updated": "2016-09-15T16:54:06", - "depth": 0, - "children": 2, - "net_rshares": 62355283653318, - "is_paidout": false, - "payout_at": "2016-09-16T18:15:42", - "payout": 227.863, - "pending_payout_value": "227.863 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 40641175102128, + "payout": 99.914, + "payout_at": "2016-09-16T18:34:50", + "pending_payout_value": "99.914 HBD", + "percent_steem_dollars": 10000, + "permlink": "jellyfish", + "post_id": 959864, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 21 + }, + "title": "Jellyfish", + "updated": "2016-09-15T17:32:00", + "url": "/art/@tanyabtc/jellyfish" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231809639013" + "rshares": "231809639013", + "voter": "anonymous" }, { - "voter": "blocktrades", - "rshares": "40859141206977" + "rshares": "40859141206977", + "voter": "blocktrades" }, { - "voter": "badassmother", - "rshares": "1912118346075" + "rshares": "1912118346075", + "voter": "badassmother" }, { - "voter": "xeldal", - "rshares": "7113882084470" + "rshares": "7113882084470", + "voter": "xeldal" }, { - "voter": "enki", - "rshares": "5763993012820" + "rshares": "5763993012820", + "voter": "enki" }, { - "voter": "rossco99", - "rshares": "1304415071462" + "rshares": "1304415071462", + "voter": "rossco99" }, { - "voter": "joseph", - "rshares": "1577462576089" + "rshares": "1577462576089", + "voter": "joseph" }, { - "voter": "masteryoda", - "rshares": "651993277150" + "rshares": "651993277150", + "voter": "masteryoda" }, { - "voter": "boatymcboatface", - "rshares": "446958795092" + "rshares": "446958795092", + "voter": "boatymcboatface" }, { - "voter": "idol", - "rshares": "9168101098" + "rshares": "9168101098", + "voter": "idol" }, { - "voter": "wpalczynski", - "rshares": "23383993964" + "rshares": "23383993964", + "voter": "wpalczynski" }, { - "voter": "sakr", - "rshares": "5044693986" + "rshares": "5044693986", + "voter": "sakr" }, { - "voter": "jocelyn", - "rshares": "1578030666" + "rshares": "1578030666", + "voter": "jocelyn" }, { - "voter": "gregory-f", - "rshares": "14818192446" + "rshares": "14818192446", + "voter": "gregory-f" }, { - "voter": "eeks", - "rshares": "74914583876" + "rshares": "74914583876", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1007941175" + "rshares": "1007941175", + "voter": "fkn" }, { - "voter": "james-show", - "rshares": "8867224532" + "rshares": "8867224532", + "voter": "james-show" }, { - "voter": "elishagh1", - "rshares": "1324875721" + "rshares": "1324875721", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7802860274" + "rshares": "7802860274", + "voter": "richman" }, { - "voter": "acidyo", - "rshares": "24193131603" + "rshares": "24193131603", + "voter": "acidyo" }, { - "voter": "coar", - "rshares": "313691550" + "rshares": "313691550", + "voter": "coar" }, { - "voter": "murh", - "rshares": "1061234978" + "rshares": "1061234978", + "voter": "murh" }, { - "voter": "error", - "rshares": "2057413439" + "rshares": "2057413439", + "voter": "error" }, { - "voter": "theshell", - "rshares": "59950022330" + "rshares": "59950022330", + "voter": "theshell" }, { - "voter": "taoteh1221", - "rshares": "400880323222" + "rshares": "400880323222", + "voter": "taoteh1221" }, { - "voter": "applecrisp", - "rshares": "410517349" + "rshares": "410517349", + "voter": "applecrisp" }, { - "voter": "trogdor", - "rshares": "280737930617" + "rshares": "280737930617", + "voter": "trogdor" }, { - "voter": "tee-em", - "rshares": "5287820211" + "rshares": "5287820211", + "voter": "tee-em" }, { - "voter": "geoffrey", - "rshares": "121383360964" + "rshares": "121383360964", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "10684548905" + "rshares": "10684548905", + "voter": "kimziv" }, { - "voter": "acassity", - "rshares": "30279968088" + "rshares": "30279968088", + "voter": "acassity" }, { - "voter": "venuspcs", - "rshares": "45145254362" + "rshares": "45145254362", + "voter": "venuspcs" }, { - "voter": "getssidetracked", - "rshares": "7264907621" + "rshares": "7264907621", + "voter": "getssidetracked" }, { - "voter": "trees", - "rshares": "1414199127" + "rshares": "1414199127", + "voter": "trees" }, { - "voter": "strawhat", - "rshares": "197179742" + "rshares": "197179742", + "voter": "strawhat" }, { - "voter": "steemswede", - "rshares": "1159208963" + "rshares": "1159208963", + "voter": "steemswede" }, { - "voter": "cryptochannel", - "rshares": "691425107" + "rshares": "691425107", + "voter": "cryptochannel" }, { - "voter": "endgame", - "rshares": "894044199" + "rshares": "894044199", + "voter": "endgame" }, { - "voter": "furion", - "rshares": "4920266872" + "rshares": "4920266872", + "voter": "furion" }, { - "voter": "steem1653", - "rshares": "2834923420" + "rshares": "2834923420", + "voter": "steem1653" }, { - "voter": "steemit-life", - "rshares": "25221166135" + "rshares": "25221166135", + "voter": "steemit-life" }, { - "voter": "sitaru", - "rshares": "13516878845" + "rshares": "13516878845", + "voter": "sitaru" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "aaseb", - "rshares": "14167503457" + "rshares": "14167503457", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209522316" + "rshares": "4209522316", + "voter": "karen13" }, { - "voter": "nabilov", - "rshares": "243749878708" + "rshares": "243749878708", + "voter": "nabilov" }, { - "voter": "luisucv34", - "rshares": "677892916" + "rshares": "677892916", + "voter": "luisucv34" }, { - "voter": "creemej", - "rshares": "34761252099" + "rshares": "34761252099", + "voter": "creemej" }, { - "voter": "poseidon", - "rshares": "233065746" + "rshares": "233065746", + "voter": "poseidon" }, { - "voter": "thylbom", - "rshares": "82781233416" + "rshares": "82781233416", + "voter": "thylbom" }, { - "voter": "deanliu", - "rshares": "32543319555" + "rshares": "32543319555", + "voter": "deanliu" }, { - "voter": "rainchen", - "rshares": "5428442637" + "rshares": "5428442637", + "voter": "rainchen" }, { - "voter": "jl777", - "rshares": "204617448258" + "rshares": "204617448258", + "voter": "jl777" }, { - "voter": "pokemon", - "rshares": "103514864" + "rshares": "103514864", + "voter": "pokemon" }, { - "voter": "positive", - "rshares": "817413671" + "rshares": "817413671", + "voter": "positive" }, { - "voter": "chloetaylor", - "rshares": "6361356981" + "rshares": "6361356981", + "voter": "chloetaylor" }, { - "voter": "proto", - "rshares": "17267278949" + "rshares": "17267278949", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "1805641835" + "rshares": "1805641835", + "voter": "sisterholics" }, { - "voter": "reported", - "rshares": "61286903" + "rshares": "61286903", + "voter": "reported" }, { - "voter": "taker", - "rshares": "8734133724" + "rshares": "8734133724", + "voter": "taker" }, { - "voter": "krushing", - "rshares": "57607550" + "rshares": "57607550", + "voter": "krushing" }, { - "voter": "laonie", - "rshares": "63852353198" + "rshares": "63852353198", + "voter": "laonie" }, { - "voter": "laoyao", - "rshares": "24561889230" + "rshares": "24561889230", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "1332427399" + "rshares": "1332427399", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "12961212091" + "rshares": "12961212091", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "484610059" + "rshares": "484610059", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "2084691327" + "rshares": "2084691327", + "voter": "gmurph" }, { - "voter": "minnowsunited", - "rshares": "513517114" + "rshares": "513517114", + "voter": "minnowsunited" }, { - "voter": "midnightoil", - "rshares": "2863236010" + "rshares": "2863236010", + "voter": "midnightoil" }, { - "voter": "whatyouganjado", - "rshares": "56653113" + "rshares": "56653113", + "voter": "whatyouganjado" }, { - "voter": "kurtbeil", - "rshares": "3323984357" + "rshares": "3323984357", + "voter": "kurtbeil" }, { - "voter": "xiaohui", - "rshares": "7161280807" + "rshares": "7161280807", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "323406893" + "rshares": "323406893", + "voter": "elfkitchen" }, { - "voter": "oflyhigh", - "rshares": "5855543935" + "rshares": "5855543935", + "voter": "oflyhigh" }, { - "voter": "makaveli", - "rshares": "63373184" + "rshares": "63373184", + "voter": "makaveli" }, { - "voter": "xiaokongcom", - "rshares": "223891286" + "rshares": "223891286", + "voter": "xiaokongcom" }, { - "voter": "future24", - "rshares": "1780319109" + "rshares": "1780319109", + "voter": "future24" }, { - "voter": "thebotkiller", - "rshares": "7709317035" + "rshares": "7709317035", + "voter": "thebotkiller" }, { - "voter": "xianjun", - "rshares": "451324143" + "rshares": "451324143", + "voter": "xianjun" }, { - "voter": "herbertmueller", - "rshares": "647921440" + "rshares": "647921440", + "voter": "herbertmueller" }, { - "voter": "alexbones", - "rshares": "56109399" + "rshares": "56109399", + "voter": "alexbones" }, { - "voter": "chinadaily", - "rshares": "2022625104" + "rshares": "2022625104", + "voter": "chinadaily" }, { - "voter": "serejandmyself", - "rshares": "90172824082" + "rshares": "90172824082", + "voter": "serejandmyself" }, { - "voter": "nang1", - "rshares": "163783062" + "rshares": "163783062", + "voter": "nang1" }, { - "voter": "netaterra", - "rshares": "2982676167" + "rshares": "2982676167", + "voter": "netaterra" }, { - "voter": "dobbydaba", - "rshares": "52319145" + "rshares": "52319145", + "voter": "dobbydaba" }, { - "voter": "andrewawerdna", - "rshares": "22559404087" + "rshares": "22559404087", + "voter": "andrewawerdna" }, { - "voter": "ozertayiz", - "rshares": "77466140" + "rshares": "77466140", + "voter": "ozertayiz" }, { - "voter": "steemitpatina", - "rshares": "4633082667" + "rshares": "4633082667", + "voter": "steemitpatina" }, { - "voter": "salebored", - "rshares": "55922029" + "rshares": "55922029", + "voter": "salebored" }, { - "voter": "runridefly", - "rshares": "2196862373" + "rshares": "2196862373", + "voter": "runridefly" }, { - "voter": "shenanigator", - "rshares": "115288806334" + "rshares": "115288806334", + "voter": "shenanigator" }, { - "voter": "funkywanderer", - "rshares": "1709331623" + "rshares": "1709331623", + "voter": "funkywanderer" }, { - "voter": "richardcrill", - "rshares": "4594182561" + "rshares": "4594182561", + "voter": "richardcrill" }, { - "voter": "markrmorrisjr", - "rshares": "79155262951" + "rshares": "79155262951", + "voter": "markrmorrisjr" }, { - "voter": "bitdrone", - "rshares": "55917888" + "rshares": "55917888", + "voter": "bitdrone" }, { - "voter": "sleepcult", - "rshares": "55908853" + "rshares": "55908853", + "voter": "sleepcult" }, { - "voter": "sponge-bob", - "rshares": "27677639861" + "rshares": "27677639861", + "voter": "sponge-bob" }, { - "voter": "doitvoluntarily", - "rshares": "12031039232" + "rshares": "12031039232", + "voter": "doitvoluntarily" }, { - "voter": "thecyclist", - "rshares": "67696453939" + "rshares": "67696453939", + "voter": "thecyclist" }, { - "voter": "kev7000", - "rshares": "646493719" + "rshares": "646493719", + "voter": "kev7000" }, { - "voter": "analyzethis", - "rshares": "55266473" + "rshares": "55266473", + "voter": "analyzethis" }, { - "voter": "brains", - "rshares": "27671309914" + "rshares": "27671309914", + "voter": "brains" }, { - "voter": "burnin", - "rshares": "5866415576" + "rshares": "5866415576", + "voter": "burnin" }, { - "voter": "bitcoinparadise", - "rshares": "1352324852" + "rshares": "1352324852", + "voter": "bitcoinparadise" }, { - "voter": "funnyman", - "rshares": "4235074146" + "rshares": "4235074146", + "voter": "funnyman" }, { - "voter": "f1111111", - "rshares": "50193769" + "rshares": "50193769", + "voter": "f1111111" }, { - "voter": "anomaly", - "rshares": "339287005" + "rshares": "339287005", + "voter": "anomaly" }, { - "voter": "inarix03", - "rshares": "63405661" + "rshares": "63405661", + "voter": "inarix03" }, { - "voter": "ola1", - "rshares": "98545946" + "rshares": "98545946", + "voter": "ola1" }, { - "voter": "michelle.gent", - "rshares": "4382226038" + "rshares": "4382226038", + "voter": "michelle.gent" }, { - "voter": "mari5555na", - "rshares": "66935282" + "rshares": "66935282", + "voter": "mari5555na" }, { - "voter": "goldmatters", - "rshares": "31683945302" + "rshares": "31683945302", + "voter": "goldmatters" }, { - "voter": "majes", - "rshares": "155180811" + "rshares": "155180811", + "voter": "majes" }, { - "voter": "dealzgal", - "rshares": "71727340" + "rshares": "71727340", + "voter": "dealzgal" }, { - "voter": "storage", - "rshares": "68013381" + "rshares": "68013381", + "voter": "storage" }, { - "voter": "blackmarket", - "rshares": "58460105" + "rshares": "58460105", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "61530871" + "rshares": "61530871", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "96643251" + "rshares": "96643251", + "voter": "expat" }, { - "voter": "toddemaher1", - "rshares": "129609202" + "rshares": "129609202", + "voter": "toddemaher1" } ], + "author": "markrmorrisjr", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 120, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/story/@markrmorrisjr/original-fiction-anarchist-s-almanac-episode-15", - "blacklists": [] - }, - { - "post_id": 959690, - "author": "mevilkingdom", - "permlink": "the-gift-of-family-stories-of-a-toy-collector-1", - "category": "life", - "title": "The gift of family: Stories of a toy collector #1", - "body": "## Hi Steemians! The greatest thing about being a collector is that people always know what to buy for your birthday. Not perfume or cookware, but always things you love!\n\nHere are some pictures of what I received the last couple of times.\n\n----\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC01422.JPG)
\n\nThese are all the gifts I received for my birthday this year. I got some cool dolls, chocolates, care bears, my little ponies and even a puzzle. What a lovely 27th birthday!\n\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC09982.JPG)
\n\nChristmas is only once a year, good thing for my family! Lots of dolls and some ponies. You can tell everyone is really supportive of my hobby.\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05838.JPG)
\nThis is what **Sinterklaas** (he brings gifts on the 6th of December) brought me. Did you know I also collect Lego to some extent?\n___\n\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05066.JPG)
\nGifts from **Disneyland Paris**\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05622.JPG)
\nEven more **Disneyland** gifts, this time for Christmas 2 years ago. Those cookies are just **THE BEST**!\nNot to mention that they're Mickey-shaped.\n\n___\n\nThank you very much for looking at my pictures! Don't forget to **follow me** for more pictures!\n\n\n---- \n\n### Who is Mande Walschot?\n\n> Mande Walschot resides in Belgium and currently owns over 1,350 boxed My Little Ponies, around 500 boxed dolls, 52 polly pockets, 25 plush care bears, 30 Tsum Tsums, about 3,000 Pokémon cards, around 200 comic books and lots of stuffed toys! [Gemr spotlight collection](https://blogadmin.gemr.com/blog/collector-spotlight-mande-walschot/)\n\nAlso seen on [national television](http://ringtv.be/nieuws/mande-uit-halle-heeft-grootste-poppenverzameling-uit-regio) and [newspapers](http://www.hln.be/regio/nieuws-uit-halle/mande-leeft-samen-met-1-357-pony-s-a2797213/).\n\n\nSister of @steve-walschot, the creator of SteemPay.io and vouched Steem applications developer and girlfriend of game-enthusiast @herrlonnie.", + "blacklists": [], + "body": "## In this episode, Joshua Claiborne stands trial for violation of the First Law ##\n\n**\u201cWhoa, whoa, whoa!\u201d Phil screamed, \u201cWhat the hell dude?\u201d**\n\n*The Reaper crumpled to the floor, arms flailing as Joshua rode it to the ground. Finally, the hands found the catches at either side of the helmet and popped it off. A black, shaggy head of hair emerged.* \n\n***If you've missed episodes, [visit my blog](https://steemit.com/@markrmorrisjr) to catch up. Be sure to follow me for updates in your feed!***\n\n\u201cEmil?\u201d Stella said, \u201cMeet Joshua. Are you okay?\u201d\n\nEmil, the Reaper suit\u2019s operator laughed, \u201cYeah, I\u2019m fine, but that was awesome! Can you teach us that?\u201d\n\n\u201cMan! Now I have to rebuild this helmet,\u201d Phil held up a small remote. \u201cAll I had to do was push this button,\u201d he said, pressing it, as the suit powered down. \u201cWhat did you do?\u201d\n\n\u201cThe \u2018nerve\u2019 bundle that controls these things motor skills is on the very top of the skull, under a thin piece of sheet metal, puncture it, it collapses. You didn\u2019t know that?\u201d Joshua said. \n\n\u201cWell, it appears we may need you more than you need us,\u201d Stella said. \u201cSo, just say the word and we\u2019ll get you where you need to be. Meanwhile, my team will be working on your son\u2019s location.\u201d\n\nJoshua dropped the letter opener and walked to the stairs, \u201cFine, whatever you need to collect from my meeting, get it. Now, who\u2019s driving?\u201d With that, he walked up the stairs, he had no more time to waste. \n\n**The Mapleton courthouse sat on a hill in the center of the town, overlooking the area around for miles.** \n\n*Joshua insisted that the team Stella had sent stop 5 miles out and allow him to ride in on the electric trike alone, while they observed the meeting from a distance.* \n\nHe carried the tiny remote in his shirt pocket, a gift from Phil. \u201cThat\u2019s my only prototype, so don\u2019t lose it,\u201d he\u2019d said. \n\n![enter image description here](https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg)\n\nFrom the end of Main Street, looking up toward the courthouse, Joshua counted at least six reapers. He wondered how far the signal from the remote would travel. \n\nHe thought about pressing it now, disarming his enemy, then walking in, but he\u2019d still have to deal with the six drivers, if they managed to escape the suits. \n\nBesides, Stella seemed to think there was some secret they were going to give away, although Joshua couldn\u2019t imagine it. \n\n*He checked his watch, ten minutes until his scheduled time and while he knew better than to be late, he had no intention of giving the Consensus one more second than he had to.* \n\nThe trike spun it\u2019s tires on a patch of loose gravel as he started back up. He decided a quick approach was best. He charged up the hill, jumping the \u201cMayor\u2019s\u201d parking barrier and rolling up to the foot of the front stairs, he cranked the accelerator and the trike rose up on its back wheel, popping the two front wheels, over the bottom step. \n\nThe machine had more than enough power to climb the steps and Joshua skidded to a stop outside the courthouse door. He stopped and turned back toward the town, the six Reapers swarming toward him up the steps. He powered down, swung his leg up and over the bike and opened the door. \n\n**The Reapers followed him into the hall as he approached the court room.** \n\nThe Magistrate sat behind the judge\u2019s bench and Joshua couldn\u2019t help but smirk at the insult to the very concept of actual justice that this thing represented. \n\n\u201cJoshua Claiborne, appearing as requested,\u201d Joshua said, standing directly in front of the Magistrate. \n\n![enter image description here](https://s12.postimg.org/6h4lvyh7x/judge.jpg)\n\n> \u201cYes, Mr. Claiborne, have a seat,\u201d A woman\u2019s face, projected on the face shield of the Magistrate said.\n\n\u201cI\u2019d rather stand,\u201d he said. \n\n> \u201cSuit yourself, may we have the room, please?\u201d she said, looking toward the reapers that had entered the back doors of the courtroom.\n\nThey left quietly. \n\n> \u201cMr. Claiborne, you\u2019re charged with violation of the first law, in so\n> much as you have encouraged and joined in the activity of settling\n> outside of Consensus approved areas, acted outside of the legal\n> jurisdiction of the council and on more than one occasion, acted\n> against the best interest of Consensus, including attacking duly\n> authorized Magistrates in the course of their legally binding duties,\n> how do you plead?\u201d\n\n**The woman looked at Joshua, peering over a pair of short, square spectacles, like some sort of outdated stereotype.** \n\n\u201cNot guilty, by reason of illegitimacy of the currently established government and its ensigns. I am not, nor do I choose to become, subject to your law. I stand judged as innocent by natural law, insomuch as I have not caused harm to another human in aggression, damaged or stolen property, nor unnecessarily restricted the liberty of any other person. I recognize no other responsibility to my fellow man,\u201d Joshua said calmly. \n\n> \u201cBe that as it may, Mr. Claiborne, we are not here under the auspices of \u201cnatural law\u201d but rather, under the Council mandated authority of the Consensus and its Magisterial Ministry, of which I am a part and I assure you, you are subject to,\u201d\n\nThe woman intoned, her expression one of almost sheer boredom.\n\n> \u201cCourt finds the defendant guilty and remands the subject for immediate judicial murder.\u201d\n\nThe magistrate raised its arm and brought it down on the bench with a solid thud, that echoed through the court. Joshua felt his heart sink as the Reapers reentered the court and moved up to surround him. \n\n## Look for the upvote button below. If you liked the post, upvote and share! If you're not on Steemit yet, why not? You get free money for signing up! ##", + "category": "story", + "children": 2, + "created": "2016-09-15T16:54:06", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "life", - "story", - "collector", - "toys", - "mandesevilkingdom" - ], - "users": [ - "steve-walschot", - "herrlonnie" - ], "image": [ - "http://mandesevilkingdom.com/steemit/post6/DSC01422.JPG", - "http://mandesevilkingdom.com/steemit/post6/DSC09982.JPG", - "http://mandesevilkingdom.com/steemit/post6/DSC05838.JPG", - "http://mandesevilkingdom.com/steemit/post6/DSC05066.JPG", - "http://mandesevilkingdom.com/steemit/post6/DSC05622.JPG" + "https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg", + "https://s12.postimg.org/6h4lvyh7x/judge.jpg" + ], + "links": [ + "https://steemit.com/@markrmorrisjr" ], - "links": [ - "https://blogadmin.gemr.com/blog/collector-spotlight-mande-walschot/", - "http://ringtv.be/nieuws/mande-uit-halle-heeft-grootste-poppenverzameling-uit-regio", - "http://www.hln.be/regio/nieuws-uit-halle/mande-leeft-samen-met-1-357-pony-s-a2797213/" + "tags": [ + "story", + "fiction", + "anarchy", + "life", + "minnowsunited" ] }, - "created": "2016-09-15T17:14:30", - "updated": "2016-09-15T17:14:30", - "depth": 0, - "children": 3, - "net_rshares": 46309406304713, - "is_paidout": false, - "payout_at": "2016-09-16T19:31:38", - "payout": 128.305, - "pending_payout_value": "128.305 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62355283653318, + "payout": 227.863, + "payout_at": "2016-09-16T18:15:42", + "pending_payout_value": "227.863 HBD", + "percent_steem_dollars": 10000, + "permlink": "original-fiction-anarchist-s-almanac-episode-15", + "post_id": 959506, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 120 + }, + "title": "Original Fiction: Anarchist's Almanac, Episode 15", + "updated": "2016-09-15T16:54:06", + "url": "/story/@markrmorrisjr/original-fiction-anarchist-s-almanac-episode-15" + }, + { "active_votes": [ { - "voter": "smooth", - "rshares": "31308460859447" + "rshares": "31308460859447", + "voter": "smooth" }, { - "voter": "anonymous", - "rshares": "231810333637" + "rshares": "231810333637", + "voter": "anonymous" }, { - "voter": "liondani", - "rshares": "1020236794603" + "rshares": "1020236794603", + "voter": "liondani" }, { - "voter": "xeroc", - "rshares": "1950774078440" + "rshares": "1950774078440", + "voter": "xeroc" }, { - "voter": "masteryoda", - "rshares": "636514783207" + "rshares": "636514783207", + "voter": "masteryoda" }, { - "voter": "smooth.witness", - "rshares": "5943125371535" + "rshares": "5943125371535", + "voter": "smooth.witness" }, { - "voter": "steemrollin", - "rshares": "800066797130" + "rshares": "800066797130", + "voter": "steemrollin" }, { - "voter": "eeks", - "rshares": "14982933604" + "rshares": "14982933604", + "voter": "eeks" }, { - "voter": "instructor2121", - "rshares": "32368367444" + "rshares": "32368367444", + "voter": "instructor2121" }, { - "voter": "teamsteem", - "rshares": "326639006522" + "rshares": "326639006522", + "voter": "teamsteem" }, { - "voter": "steve-walschot", - "rshares": "178446109019" + "rshares": "178446109019", + "voter": "steve-walschot" }, { - "voter": "coar", - "rshares": "313697862" + "rshares": "313697862", + "voter": "coar" }, { - "voter": "murh", - "rshares": "1061253912" + "rshares": "1061253912", + "voter": "murh" }, { - "voter": "ranko-k", - "rshares": "40553528416" + "rshares": "40553528416", + "voter": "ranko-k" }, { - "voter": "cyber", - "rshares": "970586830705" + "rshares": "970586830705", + "voter": "cyber" }, { - "voter": "drinkzya", - "rshares": "35244223389" + "rshares": "35244223389", + "voter": "drinkzya" }, { - "voter": "thecryptodrive", - "rshares": "57203974765" + "rshares": "57203974765", + "voter": "thecryptodrive" }, { - "voter": "tee-em", - "rshares": "5287780547" + "rshares": "5287780547", + "voter": "tee-em" }, { - "voter": "michaelx", - "rshares": "31345579234" + "rshares": "31345579234", + "voter": "michaelx" }, { - "voter": "razvanelulmarin", - "rshares": "88062402472" + "rshares": "88062402472", + "voter": "razvanelulmarin" }, { - "voter": "cryptoiskey", - "rshares": "34073699558" + "rshares": "34073699558", + "voter": "cryptoiskey" }, { - "voter": "mrhankeh", - "rshares": "484636799" + "rshares": "484636799", + "voter": "mrhankeh" }, { - "voter": "clement", - "rshares": "37152547241" + "rshares": "37152547241", + "voter": "clement" }, { - "voter": "isteemit", - "rshares": "49807514764" + "rshares": "49807514764", + "voter": "isteemit" }, { - "voter": "bacchist", - "rshares": "68450553516" + "rshares": "68450553516", + "voter": "bacchist" }, { - "voter": "venuspcs", - "rshares": "52093553829" + "rshares": "52093553829", + "voter": "venuspcs" }, { - "voter": "ausbitbank", - "rshares": "14885828588" + "rshares": "14885828588", + "voter": "ausbitbank" }, { - "voter": "steem1653", - "rshares": "2632467953" + "rshares": "2632467953", + "voter": "steem1653" }, { - "voter": "anyx", - "rshares": "185292018100" + "rshares": "185292018100", + "voter": "anyx" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "luisucv34", - "rshares": "629471993" + "rshares": "629471993", + "voter": "luisucv34" }, { - "voter": "wildchild", - "rshares": "87223247" + "rshares": "87223247", + "voter": "wildchild" }, { - "voter": "the-future", - "rshares": "2726160685" + "rshares": "2726160685", + "voter": "the-future" }, { - "voter": "blueorgy", - "rshares": "167307855189" + "rshares": "167307855189", + "voter": "blueorgy" }, { - "voter": "bitcoiner", - "rshares": "3709595271" + "rshares": "3709595271", + "voter": "bitcoiner" }, { - "voter": "zaebars", - "rshares": "30989825780" + "rshares": "30989825780", + "voter": "zaebars" }, { - "voter": "raymonjohnstone", - "rshares": "799615699" + "rshares": "799615699", + "voter": "raymonjohnstone" }, { - "voter": "steemchain", - "rshares": "50626015" + "rshares": "50626015", + "voter": "steemchain" }, { - "voter": "whalepool", - "rshares": "50626015" + "rshares": "50626015", + "voter": "whalepool" }, { - "voter": "tygergamer", - "rshares": "4233708636" + "rshares": "4233708636", + "voter": "tygergamer" }, { - "voter": "clevecross", - "rshares": "15951876294" + "rshares": "15951876294", + "voter": "clevecross" }, { - "voter": "steemdrive", - "rshares": "138539449846" + "rshares": "138539449846", + "voter": "steemdrive" }, { - "voter": "gomeravibz", - "rshares": "50579614280" + "rshares": "50579614280", + "voter": "gomeravibz" }, { - "voter": "merej99", - "rshares": "2157207095" + "rshares": "2157207095", + "voter": "merej99" }, { - "voter": "laonie1", - "rshares": "22969491561" + "rshares": "22969491561", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "23486297008" + "rshares": "23486297008", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "23494592105" + "rshares": "23494592105", + "voter": "laonie3" }, { - "voter": "brendio", - "rshares": "5831750244" + "rshares": "5831750244", + "voter": "brendio" }, { - "voter": "gmurph", - "rshares": "416938566" + "rshares": "416938566", + "voter": "gmurph" }, { - "voter": "michellek", - "rshares": "50577648" + "rshares": "50577648", + "voter": "michellek" }, { - "voter": "laonie4", - "rshares": "23490269143" + "rshares": "23490269143", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "23487998630" + "rshares": "23487998630", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "23485020903" + "rshares": "23485020903", + "voter": "laonie6" }, { - "voter": "laonie7", - "rshares": "23480867466" + "rshares": "23480867466", + "voter": "laonie7" }, { - "voter": "kurtbeil", - "rshares": "3323846130" + "rshares": "3323846130", + "voter": "kurtbeil" }, { - "voter": "laonie8", - "rshares": "23477419388" + "rshares": "23477419388", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "23474718053" + "rshares": "23474718053", + "voter": "laonie9" }, { - "voter": "steemleak", - "rshares": "2370262538" + "rshares": "2370262538", + "voter": "steemleak" }, { - "voter": "mevilkingdom", - "rshares": "7991657587" + "rshares": "7991657587", + "voter": "mevilkingdom" }, { - "voter": "bigsambucca", - "rshares": "88206053" + "rshares": "88206053", + "voter": "bigsambucca" }, { - "voter": "paynode", - "rshares": "2343161589" + "rshares": "2343161589", + "voter": "paynode" }, { - "voter": "stevescriber", - "rshares": "72135954" + "rshares": "72135954", + "voter": "stevescriber" }, { - "voter": "loli", - "rshares": "51247757" + "rshares": "51247757", + "voter": "loli" }, { - "voter": "nano2nd", - "rshares": "52419023" + "rshares": "52419023", + "voter": "nano2nd" }, { - "voter": "cryptoblu", - "rshares": "61430307" + "rshares": "61430307", + "voter": "cryptoblu" }, { - "voter": "instructor", - "rshares": "61423628" + "rshares": "61423628", + "voter": "instructor" }, { - "voter": "dollarvigilante", - "rshares": "802020725261" + "rshares": "802020725261", + "voter": "dollarvigilante" }, { - "voter": "lamech-m", - "rshares": "4056826699" + "rshares": "4056826699", + "voter": "lamech-m" }, { - "voter": "laonie10", - "rshares": "23468511648" + "rshares": "23468511648", + "voter": "laonie10" }, { - "voter": "kamil5", - "rshares": "159631404" + "rshares": "159631404", + "voter": "kamil5" }, { - "voter": "garywilson", - "rshares": "8706975244" + "rshares": "8706975244", + "voter": "garywilson" }, { - "voter": "bitchplease", - "rshares": "50829277" + "rshares": "50829277", + "voter": "bitchplease" }, { - "voter": "trev", - "rshares": "5831957227" + "rshares": "5831957227", + "voter": "trev" }, { - "voter": "barrycooper", - "rshares": "99130059443" + "rshares": "99130059443", + "voter": "barrycooper" }, { - "voter": "hilarski", - "rshares": "32443492367" + "rshares": "32443492367", + "voter": "hilarski" }, { - "voter": "shadowspub", - "rshares": "2029369552" + "rshares": "2029369552", + "voter": "shadowspub" }, { - "voter": "rimann", - "rshares": "8558777427" + "rshares": "8558777427", + "voter": "rimann" }, { - "voter": "rickmiller", - "rshares": "58139915" + "rshares": "58139915", + "voter": "rickmiller" }, { - "voter": "nulliusinverba", - "rshares": "5401518277" + "rshares": "5401518277", + "voter": "nulliusinverba" }, { - "voter": "mikehere", - "rshares": "22792452702" + "rshares": "22792452702", + "voter": "mikehere" }, { - "voter": "laonie11", - "rshares": "22621808463" + "rshares": "22621808463", + "voter": "laonie11" }, { - "voter": "xanoxt", - "rshares": "3411072843" + "rshares": "3411072843", + "voter": "xanoxt" }, { - "voter": "l0k1", - "rshares": "4044651818" + "rshares": "4044651818", + "voter": "l0k1" }, { - "voter": "freesteem", - "rshares": "50798127" + "rshares": "50798127", + "voter": "freesteem" }, { - "voter": "saramiller", - "rshares": "450072622" + "rshares": "450072622", + "voter": "saramiller" }, { - "voter": "zettar", - "rshares": "2353724275" + "rshares": "2353724275", + "voter": "zettar" }, { - "voter": "dexter-k", - "rshares": "6066265903" + "rshares": "6066265903", + "voter": "dexter-k" }, { - "voter": "doggnostic", - "rshares": "53871683" + "rshares": "53871683", + "voter": "doggnostic" }, { - "voter": "ct-gurus", - "rshares": "674641805" + "rshares": "674641805", + "voter": "ct-gurus" }, { - "voter": "jenny-talls", - "rshares": "53593366" + "rshares": "53593366", + "voter": "jenny-talls" }, { - "voter": "charlieshrem", - "rshares": "415654681468" + "rshares": "415654681468", + "voter": "charlieshrem" }, { - "voter": "tracemayer", - "rshares": "61826073622" + "rshares": "61826073622", + "voter": "tracemayer" }, { - "voter": "bitcoinparadise", - "rshares": "1386999849" + "rshares": "1386999849", + "voter": "bitcoinparadise" }, { - "voter": "steemsquad", - "rshares": "2170339399" + "rshares": "2170339399", + "voter": "steemsquad" }, { - "voter": "vsmith08162016", - "rshares": "52104641" + "rshares": "52104641", + "voter": "vsmith08162016" }, { - "voter": "anomaly", - "rshares": "339288508" + "rshares": "339288508", + "voter": "anomaly" }, { - "voter": "inarix03", - "rshares": "63405661" + "rshares": "63405661", + "voter": "inarix03" }, { - "voter": "teemsteem", - "rshares": "51238118" + "rshares": "51238118", + "voter": "teemsteem" }, { - "voter": "steemprincess", - "rshares": "50975390" + "rshares": "50975390", + "voter": "steemprincess" }, { - "voter": "ninjapainter", - "rshares": "52329350" + "rshares": "52329350", + "voter": "ninjapainter" }, { - "voter": "rusteemitblog", - "rshares": "1630374239" + "rshares": "1630374239", + "voter": "rusteemitblog" }, { - "voter": "dealzgal", - "rshares": "71727340" + "rshares": "71727340", + "voter": "dealzgal" }, { - "voter": "storage", - "rshares": "68013381" + "rshares": "68013381", + "voter": "storage" }, { - "voter": "blackmarket", - "rshares": "58460105" + "rshares": "58460105", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "61530871" + "rshares": "61530871", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "99404487" + "rshares": "99404487", + "voter": "expat" }, { - "voter": "steemtrail", - "rshares": "140412636" + "rshares": "140412636", + "voter": "steemtrail" }, { - "voter": "steemlift", - "rshares": "1593664040" + "rshares": "1593664040", + "voter": "steemlift" }, { - "voter": "toddemaher1", - "rshares": "132623369" + "rshares": "132623369", + "voter": "toddemaher1" } ], + "author": "mevilkingdom", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 109, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/life/@mevilkingdom/the-gift-of-family-stories-of-a-toy-collector-1", - "blacklists": [] - }, - { - "post_id": 960355, - "author": "eneismijmich", - "permlink": "4rgubt-journey-of-life", - "category": "mindfulness", - "title": "Journey of life", - "body": "You must have heard that life is a journey, not a destination. This is the big truth that we, repeatedly, understand superficially. Often we are so focused on the goal, that we completely forget to enjoy the path.\n\nhttps://puu.sh/rbX2i/70e07ec186.png\n\nWhen we achieve the goal, we forget to enjoy it and immediately create a new goal. That is not life, this is racing with life. I am certain that you will not be happy, bur rather tired. Soul searches for the experience, while the mind and ego give signs if something is good or bad for us. Soul is completely indifferent. For the soul, every experience means celebration, while you are maybe crying because of the mind, to whom literally a lot of things does not make sense. \n\nThe same applies to the transformation called *death*. We celebrate resurrection as the greatest symbol of life, and then we are crying in the moment of someone's death. The mind is strange, isn't it?\n\nhttps://puu.sh/rbX1U/3cc83557c6.png\n\nRelax. It doesn't matter where you are in your level of expansion, you can't miss the road to home. While you are breathing, you are on the right track. Try to accept this moment as a moment in which there is no goal, and there is no end. The game never ends. This is excellent news. We came here to play, not to win. The game ends with victory, and God's Child in us still wants to play.\n\nOne beautiful wisdom reminds us: *\"Everything will be fine. If it isn't fine, then it isn't the end.\"* You always have the chance for new choices. This is very important to understand. You shouldn't hate the process just because you are not on your imaginary goal. You trust the process. You are exactly where your soul wants you to be. Don't let your mind tell you any different. \n\nhttps://puu.sh/rbXjG/ea493b7d14.png\n\nEverything is always a matter of the focus on things you have instead of the things you are missing. Today, again you are taking for granted the things that once were a goal. You forget to enjoy. Time is only an illusion of the mind. What if that is the point that you current process wants to teach you? If time is illusion, and it is, what's the hurry?\n\nhttps://puu.sh/rbWSn/313549d802.png\n\nTake a deep breath in and out. Experience life in the breath. The only goal is hiding in the breath of life. Everything is good, just the way it is. Don't forget that nothing ever happens without the God's blessing. Don't forget that you are guided. And, the most important, don't forget that we would most certainly go wrong if we'd try to determine what is the best time for us. The one who sees the big picture knows where you're headed and where you want to arrive.\n\nhttps://puu.sh/rbWLA/86e34b50b7.png\n\nTrust the process. It is the true test of our faith and wisdom. And enjoy. Without it nothing makes sense, right?\nThe sentence that many repeat in the end of the road: *\"I should've enjoyed more!\"*\n\nAll our life is a mere blink of an eye in the eternity. It is too small for such amount of worry. The life is not a serious thing, just the opposite. Life is the experience game. The point is not in the destination. The journey is our only destination. Isn't it then wiser to enjoy right away?\n\nhttps://puu.sh/rbX8F/2ea42f6dc9.png\n\n*\"Success isn't measured by money or material things.*\n*Success is measured by the amount of joy you feel.\"*\n\nFor more awesome images check this guy: [Psychedelic Maniac](thepsychedelicmaniac.tumblr.com)", + "blacklists": [], + "body": "## Hi Steemians! The greatest thing about being a collector is that people always know what to buy for your birthday. Not perfume or cookware, but always things you love!\n\nHere are some pictures of what I received the last couple of times.\n\n----\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC01422.JPG)
\n\nThese are all the gifts I received for my birthday this year. I got some cool dolls, chocolates, care bears, my little ponies and even a puzzle. What a lovely 27th birthday!\n\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC09982.JPG)
\n\nChristmas is only once a year, good thing for my family! Lots of dolls and some ponies. You can tell everyone is really supportive of my hobby.\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05838.JPG)
\nThis is what **Sinterklaas** (he brings gifts on the 6th of December) brought me. Did you know I also collect Lego to some extent?\n___\n\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05066.JPG)
\nGifts from **Disneyland Paris**\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05622.JPG)
\nEven more **Disneyland** gifts, this time for Christmas 2 years ago. Those cookies are just **THE BEST**!\nNot to mention that they're Mickey-shaped.\n\n___\n\nThank you very much for looking at my pictures! Don't forget to **follow me** for more pictures!\n\n\n---- \n\n### Who is Mande Walschot?\n\n> Mande Walschot resides in Belgium and currently owns over 1,350 boxed My Little Ponies, around 500 boxed dolls, 52 polly pockets, 25 plush care bears, 30 Tsum Tsums, about 3,000 Pok\u00e9mon cards, around 200 comic books and lots of stuffed toys! [Gemr spotlight collection](https://blogadmin.gemr.com/blog/collector-spotlight-mande-walschot/)\n\nAlso seen on [national television](http://ringtv.be/nieuws/mande-uit-halle-heeft-grootste-poppenverzameling-uit-regio) and [newspapers](http://www.hln.be/regio/nieuws-uit-halle/mande-leeft-samen-met-1-357-pony-s-a2797213/).\n\n\nSister of @steve-walschot, the creator of SteemPay.io and vouched Steem applications developer and girlfriend of game-enthusiast @herrlonnie.", + "category": "life", + "children": 3, + "created": "2016-09-15T17:14:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "mindfulness", - "life", - "health", - "psychology", - "philosophy" - ], "image": [ - "https://puu.sh/rbX2i/70e07ec186.png", - "https://puu.sh/rbX1U/3cc83557c6.png", - "https://puu.sh/rbXjG/ea493b7d14.png", - "https://puu.sh/rbWSn/313549d802.png", - "https://puu.sh/rbWLA/86e34b50b7.png", - "https://puu.sh/rbX8F/2ea42f6dc9.png" + "http://mandesevilkingdom.com/steemit/post6/DSC01422.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC09982.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC05838.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC05066.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC05622.JPG" ], "links": [ - "thepsychedelicmaniac.tumblr.com" + "https://blogadmin.gemr.com/blog/collector-spotlight-mande-walschot/", + "http://ringtv.be/nieuws/mande-uit-halle-heeft-grootste-poppenverzameling-uit-regio", + "http://www.hln.be/regio/nieuws-uit-halle/mande-leeft-samen-met-1-357-pony-s-a2797213/" + ], + "tags": [ + "life", + "story", + "collector", + "toys", + "mandesevilkingdom" + ], + "users": [ + "steve-walschot", + "herrlonnie" ] }, - "created": "2016-09-15T18:31:45", - "updated": "2016-09-15T18:51:54", - "depth": 0, - "children": 0, - "net_rshares": 14809262337539, - "is_paidout": false, - "payout_at": "2016-09-16T18:57:11", - "payout": 15.34, - "pending_payout_value": "15.340 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 46309406304713, + "payout": 128.305, + "payout_at": "2016-09-16T19:31:38", + "pending_payout_value": "128.305 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-gift-of-family-stories-of-a-toy-collector-1", + "post_id": 959690, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 109 + }, + "title": "The gift of family: Stories of a toy collector #1", + "updated": "2016-09-15T17:14:30", + "url": "/life/@mevilkingdom/the-gift-of-family-stories-of-a-toy-collector-1" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231809773619" + "rshares": "231809773619", + "voter": "anonymous" }, { - "voter": "riverhead", - "rshares": "4134589909216" + "rshares": "4134589909216", + "voter": "riverhead" }, { - "voter": "hr1", - "rshares": "2006571575186" + "rshares": "2006571575186", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1239194317889" + "rshares": "1239194317889", + "voter": "rossco99" }, { - "voter": "wang", - "rshares": "2206071653405" + "rshares": "2206071653405", + "voter": "wang" }, { - "voter": "jaewoocho", - "rshares": "22391622942" + "rshares": "22391622942", + "voter": "jaewoocho" }, { - "voter": "joseph", - "rshares": "1534823711950" + "rshares": "1534823711950", + "voter": "joseph" }, { - "voter": "masteryoda", - "rshares": "621013263954" + "rshares": "621013263954", + "voter": "masteryoda" }, { - "voter": "idol", - "rshares": "8927357821" + "rshares": "8927357821", + "voter": "idol" }, { - "voter": "steemrollin", - "rshares": "800261748895" + "rshares": "800261748895", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "4839028197" + "rshares": "4839028197", + "voter": "sakr" }, { - "voter": "jocelyn", - "rshares": "1536592488" + "rshares": "1536592488", + "voter": "jocelyn" }, { - "voter": "craig-grant", - "rshares": "365729210153" + "rshares": "365729210153", + "voter": "craig-grant" }, { - "voter": "eeks", - "rshares": "44948978408" + "rshares": "44948978408", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1007941175" + "rshares": "1007941175", + "voter": "fkn" }, { - "voter": "elishagh1", - "rshares": "1324875721" + "rshares": "1324875721", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7803257741" + "rshares": "7803257741", + "voter": "richman" }, { - "voter": "coar", - "rshares": "313699965" + "rshares": "313699965", + "voter": "coar" }, { - "voter": "murh", - "rshares": "1061266533" + "rshares": "1061266533", + "voter": "murh" }, { - "voter": "error", - "rshares": "2003359924" + "rshares": "2003359924", + "voter": "error" }, { - "voter": "theshell", - "rshares": "58189176188" + "rshares": "58189176188", + "voter": "theshell" }, { - "voter": "will-zewe", - "rshares": "223669021166" + "rshares": "223669021166", + "voter": "will-zewe" }, { - "voter": "herzmeister", - "rshares": "85402720456" + "rshares": "85402720456", + "voter": "herzmeister" }, { - "voter": "trogdor", - "rshares": "275016906945" + "rshares": "275016906945", + "voter": "trogdor" }, { - "voter": "kimziv", - "rshares": "42740945757" + "rshares": "42740945757", + "voter": "kimziv" }, { - "voter": "furion", - "rshares": "4920595011" + "rshares": "4920595011", + "voter": "furion" }, { - "voter": "steem1653", - "rshares": "2632467953" + "rshares": "2632467953", + "voter": "steem1653" }, { - "voter": "sveokla", - "rshares": "2860912097" + "rshares": "2860912097", + "voter": "sveokla" }, { - "voter": "cynetyc", - "rshares": "136322030" + "rshares": "136322030", + "voter": "cynetyc" }, { - "voter": "aaseb", - "rshares": "13846432138" + "rshares": "13846432138", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209539443" + "rshares": "4209539443", + "voter": "karen13" }, { - "voter": "noodhoog", - "rshares": "8926064181" + "rshares": "8926064181", + "voter": "noodhoog" }, { - "voter": "artific", - "rshares": "21565632626" + "rshares": "21565632626", + "voter": "artific" }, { - "voter": "poseidon", - "rshares": "932318275" + "rshares": "932318275", + "voter": "poseidon" }, { - "voter": "thylbom", - "rshares": "81126757108" + "rshares": "81126757108", + "voter": "thylbom" }, { - "voter": "jl777", - "rshares": "204618396015" + "rshares": "204618396015", + "voter": "jl777" }, { - "voter": "positive", - "rshares": "817413671" + "rshares": "817413671", + "voter": "positive" }, { - "voter": "proto", - "rshares": "17267341753" + "rshares": "17267341753", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "7223043327" + "rshares": "7223043327", + "voter": "sisterholics" }, { - "voter": "yoganarchista", - "rshares": "1838905726" + "rshares": "1838905726", + "voter": "yoganarchista" }, { - "voter": "taker", - "rshares": "8734196526" + "rshares": "8734196526", + "voter": "taker" }, { - "voter": "laonie", - "rshares": "255431411513" + "rshares": "255431411513", + "voter": "laonie" }, { - "voter": "myfirst", - "rshares": "7994964655" + "rshares": "7994964655", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "51848391811" + "rshares": "51848391811", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "1938565243" + "rshares": "1938565243", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "1250819304" + "rshares": "1250819304", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "11453689270" + "rshares": "11453689270", + "voter": "midnightoil" }, { - "voter": "xiaohui", - "rshares": "28648120983" + "rshares": "28648120983", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "1293711711" + "rshares": "1293711711", + "voter": "elfkitchen" }, { - "voter": "xiaokongcom", - "rshares": "895620436" + "rshares": "895620436", + "voter": "xiaokongcom" }, { - "voter": "eneismijmich", - "rshares": "46605026907" + "rshares": "46605026907", + "voter": "eneismijmich" }, { - "voter": "xianjun", - "rshares": "1805414369" + "rshares": "1805414369", + "voter": "xianjun" }, { - "voter": "microluck", - "rshares": "118221929" + "rshares": "118221929", + "voter": "microluck" }, { - "voter": "dinamitduo", - "rshares": "2539918110" + "rshares": "2539918110", + "voter": "dinamitduo" }, { - "voter": "pompe72", - "rshares": "88481667" + "rshares": "88481667", + "voter": "pompe72" }, { - "voter": "machinelearning", - "rshares": "14946610388" + "rshares": "14946610388", + "voter": "machinelearning" }, { - "voter": "workout", - "rshares": "61087248" + "rshares": "61087248", + "voter": "workout" }, { - "voter": "onetree", - "rshares": "8856106682" + "rshares": "8856106682", + "voter": "onetree" }, { - "voter": "richardcrill", - "rshares": "4900461398" + "rshares": "4900461398", + "voter": "richardcrill" }, { - "voter": "sponge-bob", - "rshares": "26571947789" + "rshares": "26571947789", + "voter": "sponge-bob" }, { - "voter": "brains", - "rshares": "27673075341" + "rshares": "27673075341", + "voter": "brains" }, { - "voter": "anomaly", - "rshares": "271441624" + "rshares": "271441624", + "voter": "anomaly" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "iuliuspro", - "rshares": "1199700175" + "rshares": "1199700175", + "voter": "iuliuspro" }, { - "voter": "aksinya", - "rshares": "1259790018" + "rshares": "1259790018", + "voter": "aksinya" }, { - "voter": "computerscience", - "rshares": "164253196" + "rshares": "164253196", + "voter": "computerscience" }, { - "voter": "hanai", - "rshares": "8448674998" + "rshares": "8448674998", + "voter": "hanai" } ], + "author": "eneismijmich", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 67, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/mindfulness/@eneismijmich/4rgubt-journey-of-life", - "blacklists": [] - }, - { - "post_id": 960548, - "author": "kommienezuspadt", - "permlink": "bringing-characters-and-worlds-to-life-an-ode-to-the-steemit-creators", - "category": "art", - "title": "Bringing worlds and characters to life; an ode to the Steemit creators!", - "body": "\n

\n

My entire life, I knew however things shook out, I’d eventually be making comic books as a career. At 36, I’m later to the party than I originally anticipated, but I’ve had three decades to prepare for this! I remember as a kid, just being enamored with comic book art […and still am]. For years, I’d draw these snake characters during class with my friend Neal. Just page after endless page of snakes killing each other. The kind of gratuitous fantasy violence that defines weirdos in high school.

\n

Eventually, photography took over my life, but I still read comics, thought about comics and drew comics when I managed to make time. A couple years ago I began stringing together a story for a comic called THEIA. A sci-fi conspiracy story rooted in the real world, based on actual science. I learned how to format full script for comics and graphic novels […you can read the finished THEIA script in my previous blog, “Full script of THEIA sci-fi comic book! Exclusively on Steemit!”]. This was a big divergence than my hack and slash snake comics with Neal […who’s stories progressed with each turn of the page, like a Miyazaki film, but really horrible].

\n

\n

It was during the process of writing the first draft for THEIA that I realized all these years I’ve been so drawn to comics, the real allure for me was story telling and character creation, even more than great art. I’ve been creating comics my entire life, and thus, creating characters along the way. Once I began disciplining myself with taking writing more seriously, I discovered other helpful tools to aide in the creation process. I began taking  inventories, outlining in depth documentation of each characters lives, affiliations and personalities. 

\n

Character profiles are something I’ve done for 20 years. I mimicked my favorite fantasy artists like Gerald Brom, Boris Vallejo and the one and only, Frank Frazetta. I’d seen pencil sketches of their concept designs with monsters, heroes and heroines, and just did my best to emulate them. I used to draw the typical front, side, three-quarter and head sketches as a reference bible […granted, much easier when it was just snakes].

\n

\n

I’ve been enjoying a renaissance of creativity since committing to doing comics full time, and character creation is where I spend most of my time. THEIA is still my priority as I have an active Patreon campaign and those pledging support are doing so for that particular title. I do, however, have two other stories I’m developing which are currently knee deep in the character creation process. A Bukowski-esk pulp crime genre during the late 80’s following a private investigator throughout his struggle with sobriety in Queens, NY.

\n

\n

The other is a dark ghost story taking place in the mid-1800’s, surrounding a recently deceased, troubled soul that finds himself caught between the realm of the living, and the afterlife; unable to pass for fear of judgement after a life of heinous acts. The characters in this story were inspired by my most interesting friends, and obscure tales of macabre lore during the industrial revolution and the Southwestern US history.

\n

I wish I was further along in my pursuit of story telling, world building and character creation. I wish I had decades of experience to share here on Steemit. I don’t want to come across like I’m the authority on these complex, disciplined skills; I’ve only been seriously absorbing the art for a couple of years. I imagine, however, there are quite a few new writers, artists and creators here, navigating their own discoveries and process. With that in mind, [and in the spirit of all the things that makes Steemit great for me personally] here a few techniques I use to further my writing and a few resources I’ve found helpful in house, right here on Steemit.

\n

• Real-life Inspiration: As mentioned, take inspiration from people in life. Friends, or even family. Accentuate the personalities. Exaggerate the quirks or circumstances. For me personally, it’s a big help to to have someone in mind when drawing, and developing a character.

\n

• Character Inventories: Write up an involved character inventory […sometimes called a character bible]. A reference of everything you can imagine that defines that character. Their ethnicity, background, where they were born, how old they are, where they went to college, their diet, etc. It’s tedious if you’re working on a character heavy story with a big “cast”, but it pays dividends. Once you have those inventories, you can stick characters in situations and the story literally writes itself. If you have a character that’s a passionate vegan, you can immediately come up with dozens of possibilities if they were accidentally locked in a butcher’s freezer. Same with politics, religious, social issues. It really unloads much of the burden of dreaming up a brilliant scene.

\n

\n

• Name Generators: Name generators are something I rely on quite a bit. There are many available online. They’re usually free, and they’re a great place to launch in to naming a character. Often times, once you have a name, more of the personality and background unfolds organically. www.seventhsanctum.com has an excellent list of name generators tailored specifically for several genres and character types.

\n

• Research: This is one of those things that seems obvious, but I challenge you to go deeper. For my ghost story, I started researching life in the mid-1800’s in the Southwest and Dust Bowl of the United States. As I dug through historical sites, I found some of the events of that time. A few hours in, I read about droughts and plagues, which would have been rich content for a story, but going even deeper, I read about these crazy grasshopper plagues! Even deeper, I found accounts of specific families and individuals that described enormous clouds of locusts that swept through their homes and ate everything, including the clothes off their bodies! I encourage you to obsessively push through references, way past where most people would get their first idea and start writing. Beyond that is where you’re going to unearth something truly unique and memorable. I’ve already written a treatment for this epic locust plague in my ghost story […sort of nervous about what that’s going to be like to draw, though].

\n

• Don’t Lose The Magic: For me, the magic happens in the moments before I fall asleep. Without fail, that’s where I get my best, originally ideas. Sometimes it’s just a small line a dialog. Other times it’s as vague as a plot point. It’s a tough discipline to wake yourself up and write it down, but that […for me] is where the magic happens. It’s invaluable, and worth the trouble of having to fall back asleep. I jot things down in the Notes app of my phone. I have some friends that just wake up and make audio recordings. You might get your best ideas during different times. Sometimes I have brilliant moments on long drives. Either way, document it! You’ll be glad you did.

\n

Honestly, Steemit has been a revolution for me as well. Since the platform is incentivized, there is a tremendous wealth of references on writing, drawing, how-to’s. Beyond that, I spent much of my time reading and curating novels and short stories posted by the authors bringing their work to the site. Just this morning, I found a comprehensive article by @jamielefay titled “Steemit and the future of book publishing”. Everything here, totally relevant if you’re creating comics or graphic novels.

\n

\n

Keep writing, creating and sharing! More work from my comic, THIEA, and other stories to come. I’d love feedback and constructive criticism.

\n

I post daily. Follow me @kommienezuspadt so you don’t miss a post.

\n", + "blacklists": [], + "body": "You must have heard that life is a journey, not a destination. This is the big truth that we, repeatedly, understand superficially. Often we are so focused on the goal, that we completely forget to enjoy the path.\n\nhttps://puu.sh/rbX2i/70e07ec186.png\n\nWhen we achieve the goal, we forget to enjoy it and immediately create a new goal. That is not life, this is racing with life. I am certain that you will not be happy, bur rather tired. Soul searches for the experience, while the mind and ego give signs if something is good or bad for us. Soul is completely indifferent. For the soul, every experience means celebration, while you are maybe crying because of the mind, to whom literally a lot of things does not make sense. \n\nThe same applies to the transformation called *death*. We celebrate resurrection as the greatest symbol of life, and then we are crying in the moment of someone's death. The mind is strange, isn't it?\n\nhttps://puu.sh/rbX1U/3cc83557c6.png\n\nRelax. It doesn't matter where you are in your level of expansion, you can't miss the road to home. While you are breathing, you are on the right track. Try to accept this moment as a moment in which there is no goal, and there is no end. The game never ends. This is excellent news. We came here to play, not to win. The game ends with victory, and God's Child in us still wants to play.\n\nOne beautiful wisdom reminds us: *\"Everything will be fine. If it isn't fine, then it isn't the end.\"* You always have the chance for new choices. This is very important to understand. You shouldn't hate the process just because you are not on your imaginary goal. You trust the process. You are exactly where your soul wants you to be. Don't let your mind tell you any different. \n\nhttps://puu.sh/rbXjG/ea493b7d14.png\n\nEverything is always a matter of the focus on things you have instead of the things you are missing. Today, again you are taking for granted the things that once were a goal. You forget to enjoy. Time is only an illusion of the mind. What if that is the point that you current process wants to teach you? If time is illusion, and it is, what's the hurry?\n\nhttps://puu.sh/rbWSn/313549d802.png\n\nTake a deep breath in and out. Experience life in the breath. The only goal is hiding in the breath of life. Everything is good, just the way it is. Don't forget that nothing ever happens without the God's blessing. Don't forget that you are guided. And, the most important, don't forget that we would most certainly go wrong if we'd try to determine what is the best time for us. The one who sees the big picture knows where you're headed and where you want to arrive.\n\nhttps://puu.sh/rbWLA/86e34b50b7.png\n\nTrust the process. It is the true test of our faith and wisdom. And enjoy. Without it nothing makes sense, right?\nThe sentence that many repeat in the end of the road: *\"I should've enjoyed more!\"*\n\nAll our life is a mere blink of an eye in the eternity. It is too small for such amount of worry. The life is not a serious thing, just the opposite. Life is the experience game. The point is not in the destination. The journey is our only destination. Isn't it then wiser to enjoy right away?\n\nhttps://puu.sh/rbX8F/2ea42f6dc9.png\n\n*\"Success isn't measured by money or material things.*\n*Success is measured by the amount of joy you feel.\"*\n\nFor more awesome images check this guy: [Psychedelic Maniac](thepsychedelicmaniac.tumblr.com)", + "category": "mindfulness", + "children": 0, + "created": "2016-09-15T18:31:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "art", - "writing", - "story", - "blog", - "comic" - ], - "users": [ - "jamielefay" - ], "image": [ - "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0104.jpg", - "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0105.jpg", - "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0106.jpg", - "http://www.madeineighty.com/wp-content/uploads/2015/07/SketchUpdate004.jpg", - "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0107.jpg", - "http://www.madeineighty.com/wp-content/uploads/2015/07/SketchUpdate011.jpg" + "https://puu.sh/rbX2i/70e07ec186.png", + "https://puu.sh/rbX1U/3cc83557c6.png", + "https://puu.sh/rbXjG/ea493b7d14.png", + "https://puu.sh/rbWSn/313549d802.png", + "https://puu.sh/rbWLA/86e34b50b7.png", + "https://puu.sh/rbX8F/2ea42f6dc9.png" ], "links": [ - "www.theiacomic.com", - "https://steemit.com/writing/@kommienezuspadt/full-script-of-theia-sci-fi-comic-book-theia-exclusively-on-steemit", - "www.seventhsanctum.com", - "https://steemit.com/steemit/@jamielefay/steemit-and-the-future-of-book-publishing", - "https://steemit.com/@kommienezuspadt" + "thepsychedelicmaniac.tumblr.com" + ], + "tags": [ + "mindfulness", + "life", + "health", + "psychology", + "philosophy" ] }, - "created": "2016-09-15T18:53:42", - "updated": "2016-09-15T19:11:12", - "depth": 0, - "children": 0, - "net_rshares": 9343647949820, - "is_paidout": false, - "payout_at": "2016-09-16T19:14:49", - "payout": 6.866, - "pending_payout_value": "6.866 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 14809262337539, + "payout": 15.34, + "payout_at": "2016-09-16T18:57:11", + "pending_payout_value": "15.340 HBD", + "percent_steem_dollars": 10000, + "permlink": "4rgubt-journey-of-life", + "post_id": 960355, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 67 + }, + "title": "Journey of life", + "updated": "2016-09-15T18:51:54", + "url": "/mindfulness/@eneismijmich/4rgubt-journey-of-life" + }, + { "active_votes": [ { - "voter": "riverhead", - "rshares": "4134640392195" + "rshares": "4134640392195", + "voter": "riverhead" }, { - "voter": "lovejoy", - "rshares": "253514770855" + "rshares": "253514770855", + "voter": "lovejoy" }, { - "voter": "joseph", - "rshares": "1535071696382" + "rshares": "1535071696382", + "voter": "joseph" }, { - "voter": "idol", - "rshares": "8927535677" + "rshares": "8927535677", + "voter": "idol" }, { - "voter": "jocelyn", - "rshares": "1536625837" + "rshares": "1536625837", + "voter": "jocelyn" }, { - "voter": "craig-grant", - "rshares": "374437048490" + "rshares": "374437048490", + "voter": "craig-grant" }, { - "voter": "eeks", - "rshares": "29966325092" + "rshares": "29966325092", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1511911763" + "rshares": "1511911763", + "voter": "fkn" }, { - "voter": "elishagh1", - "rshares": "1987313581" + "rshares": "1987313581", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7803257741" + "rshares": "7803257741", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "584301957019" + "rshares": "584301957019", + "voter": "nanzo-scoop" }, { - "voter": "mummyimperfect", - "rshares": "172753954134" + "rshares": "172753954134", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313699965" + "rshares": "313699965", + "voter": "coar" }, { - "voter": "murh", - "rshares": "1061283659" + "rshares": "1061283659", + "voter": "murh" }, { - "voter": "error", - "rshares": "2003404389" + "rshares": "2003404389", + "voter": "error" }, { - "voter": "ak2020", - "rshares": "49581638772" + "rshares": "49581638772", + "voter": "ak2020" }, { - "voter": "alexc", - "rshares": "206092862903" + "rshares": "206092862903", + "voter": "alexc" }, { - "voter": "kimziv", - "rshares": "192336700354" + "rshares": "192336700354", + "voter": "kimziv" }, { - "voter": "emily-cook", - "rshares": "75335893384" + "rshares": "75335893384", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187607792" + "rshares": "2187607792", + "voter": "superfreek" }, { - "voter": "furion", - "rshares": "7380892516" + "rshares": "7380892516", + "voter": "furion" }, { - "voter": "tasman", - "rshares": "240666456" + "rshares": "240666456", + "voter": "tasman" }, { - "voter": "steem1653", - "rshares": "2632467953" + "rshares": "2632467953", + "voter": "steem1653" }, { - "voter": "creemej", - "rshares": "33739229218" + "rshares": "33739229218", + "voter": "creemej" }, { - "voter": "poseidon", - "rshares": "4195475503" + "rshares": "4195475503", + "voter": "poseidon" }, { - "voter": "nin0000", - "rshares": "472134488" + "rshares": "472134488", + "voter": "nin0000" }, { - "voter": "positive", - "rshares": "1226120506" + "rshares": "1226120506", + "voter": "positive" }, { - "voter": "sisterholics", - "rshares": "31601214153" + "rshares": "31601214153", + "voter": "sisterholics" }, { - "voter": "laonie", - "rshares": "1117528556435" + "rshares": "1117528556435", + "voter": "laonie" }, { - "voter": "myfirst", - "rshares": "38642686402" + "rshares": "38642686402", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "233320672689" + "rshares": "233320672689", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "8723640942" + "rshares": "8723640942", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "833888549" + "rshares": "833888549", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "50110479436" + "rshares": "50110479436", + "voter": "midnightoil" }, { - "voter": "xiaohui", - "rshares": "128918653572" + "rshares": "128918653572", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "6306903180" + "rshares": "6306903180", + "voter": "elfkitchen" }, { - "voter": "xiaokongcom", - "rshares": "4030335230" + "rshares": "4030335230", + "voter": "xiaokongcom" }, { - "voter": "xianjun", - "rshares": "8124462008" + "rshares": "8124462008", + "voter": "xianjun" }, { - "voter": "microluck", - "rshares": "546776422" + "rshares": "546776422", + "voter": "microluck" }, { - "voter": "movievertigo", - "rshares": "3562389763" + "rshares": "3562389763", + "voter": "movievertigo" }, { - "voter": "steemitpatina", - "rshares": "4633082667" + "rshares": "4633082667", + "voter": "steemitpatina" }, { - "voter": "rusla", - "rshares": "100126866" + "rshares": "100126866", + "voter": "rusla" }, { - "voter": "kommienezuspadt", - "rshares": "17087288555" + "rshares": "17087288555", + "voter": "kommienezuspadt" }, { - "voter": "mikkolyytinen", - "rshares": "3030462572" + "rshares": "3030462572", + "voter": "mikkolyytinen" }, { - "voter": "anomaly", - "rshares": "271448835" + "rshares": "271448835", + "voter": "anomaly" }, { - "voter": "ola1", - "rshares": "123221500" + "rshares": "123221500", + "voter": "ola1" }, { - "voter": "rayzzz", - "rshares": "51615652" + "rshares": "51615652", + "voter": "rayzzz" }, { - "voter": "zombiedoll", - "rshares": "796357358" + "rshares": "796357358", + "voter": "zombiedoll" }, { - "voter": "nazmood", - "rshares": "50820410" + "rshares": "50820410", + "voter": "nazmood" } ], + "author": "kommienezuspadt", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 49, - "flag_weight": 0.0 - }, "beneficiaries": [], + "blacklists": [], + "body": "\n

\n

My entire life, I knew however things shook out, I\u2019d eventually be making comic books as a career. At 36, I\u2019m later to the party than I originally anticipated, but I\u2019ve had three decades to prepare for this! I remember as a kid, just being enamored with comic book art [\u2026and still am]. For years, I\u2019d draw these snake characters during class with my friend Neal. Just page after endless page of snakes killing each other. The kind of gratuitous fantasy violence that defines weirdos in high school.

\n

Eventually, photography took over my life, but I still read comics, thought about comics and drew comics when I managed to make time. A couple years ago I began stringing together a story for a comic called THEIA. A sci-fi conspiracy story rooted in the real world, based on actual science. I learned how to format full script for comics and graphic novels [\u2026you can read the finished THEIA script in my previous blog, \u201cFull script of THEIA sci-fi comic book! Exclusively on Steemit!\u201d]. This was a big divergence than my hack and slash snake comics with Neal [\u2026who\u2019s stories progressed with each turn of the page, like a Miyazaki film, but really horrible].

\n

\n

It was during the process of writing the first draft for THEIA that I realized all these years I\u2019ve been so drawn to comics, the real allure for me was story telling and character creation, even more than great art. I\u2019ve been creating comics my entire life, and thus, creating characters along the way. Once I began disciplining myself with taking writing more seriously, I discovered other helpful tools to aide in the creation process. I began taking  inventories, outlining in depth documentation of each characters lives, affiliations and personalities. 

\n

Character profiles are something I\u2019ve done for 20 years. I mimicked my favorite fantasy artists like Gerald Brom, Boris Vallejo and the one and only, Frank Frazetta. I\u2019d seen pencil sketches of their concept designs with monsters, heroes and heroines, and just did my best to emulate them. I used to draw the typical front, side, three-quarter and head sketches as a reference bible [\u2026granted, much easier when it was just snakes].

\n

\n

I\u2019ve been enjoying a renaissance of creativity since committing to doing comics full time, and character creation is where I spend most of my time. THEIA is still my priority as I have an active Patreon campaign and those pledging support are doing so for that particular title. I do, however, have two other stories I\u2019m developing which are currently knee deep in the character creation process. A Bukowski-esk pulp crime genre during the late 80\u2019s following a private investigator throughout his struggle with sobriety in Queens, NY.

\n

\n

The other is a dark ghost story taking place in the mid-1800\u2019s, surrounding a recently deceased, troubled soul that finds himself caught between the realm of the living, and the afterlife; unable to pass for fear of judgement after a life of heinous acts. The characters in this story were inspired by my most interesting friends, and obscure tales of macabre lore during the industrial revolution and the Southwestern US history.

\n

I wish I was further along in my pursuit of story telling, world building and character creation. I wish I had decades of experience to share here on Steemit. I don\u2019t want to come across like I\u2019m the authority on these complex, disciplined skills; I\u2019ve only been seriously absorbing the art for a couple of years. I imagine, however, there are quite a few new writers, artists and creators here, navigating their own discoveries and process. With that in mind, [and in the spirit of all the things that makes Steemit great for me personally] here a few techniques I use to further my writing and a few resources I\u2019ve found helpful in house, right here on Steemit.

\n

\u2022 Real-life Inspiration: As mentioned, take inspiration from people in life. Friends, or even family. Accentuate the personalities. Exaggerate the quirks or circumstances. For me personally, it\u2019s a big help to to have someone in mind when drawing, and developing a character.

\n

\u2022 Character Inventories: Write up an involved character inventory [\u2026sometimes called a character bible]. A reference of everything you can imagine that defines that character. Their ethnicity, background, where they were born, how old they are, where they went to college, their diet, etc. It\u2019s tedious if you\u2019re working on a character heavy story with a big \u201ccast\u201d, but it pays dividends. Once you have those inventories, you can stick characters in situations and the story literally writes itself. If you have a character that\u2019s a passionate vegan, you can immediately come up with dozens of possibilities if they were accidentally locked in a butcher\u2019s freezer. Same with politics, religious, social issues. It really unloads much of the burden of dreaming up a brilliant scene.

\n

\n

\u2022 Name Generators: Name generators are something I rely on quite a bit. There are many available online. They\u2019re usually free, and they\u2019re a great place to launch in to naming a character. Often times, once you have a name, more of the personality and background unfolds organically. www.seventhsanctum.com has an excellent list of name generators tailored specifically for several genres and character types.

\n

\u2022 Research: This is one of those things that seems obvious, but I challenge you to go deeper. For my ghost story, I started researching life in the mid-1800\u2019s in the Southwest and Dust Bowl of the United States. As I dug through historical sites, I found some of the events of that time. A few hours in, I read about droughts and plagues, which would have been rich content for a story, but going even deeper, I read about these crazy grasshopper plagues! Even deeper, I found accounts of specific families and individuals that described enormous clouds of locusts that swept through their homes and ate everything, including the clothes off their bodies! I encourage you to obsessively push through references, way past where most people would get their first idea and start writing. Beyond that is where you\u2019re going to unearth something truly unique and memorable. I\u2019ve already written a treatment for this epic locust plague in my ghost story [\u2026sort of nervous about what that\u2019s going to be like to draw, though].

\n

\u2022 Don\u2019t Lose The Magic: For me, the magic happens in the moments before I fall asleep. Without fail, that\u2019s where I get my best, originally ideas. Sometimes it\u2019s just a small line a dialog. Other times it\u2019s as vague as a plot point. It\u2019s a tough discipline to wake yourself up and write it down, but that [\u2026for me] is where the magic happens. It\u2019s invaluable, and worth the trouble of having to fall back asleep. I jot things down in the Notes app of my phone. I have some friends that just wake up and make audio recordings. You might get your best ideas during different times. Sometimes I have brilliant moments on long drives. Either way, document it! You\u2019ll be glad you did.

\n

Honestly, Steemit has been a revolution for me as well. Since the platform is incentivized, there is a tremendous wealth of references on writing, drawing, how-to\u2019s. Beyond that, I spent much of my time reading and curating novels and short stories posted by the authors bringing their work to the site. Just this morning, I found a comprehensive article by @jamielefay titled \u201cSteemit and the future of book publishing\u201d. Everything here, totally relevant if you\u2019re creating comics or graphic novels.

\n

\n

Keep writing, creating and sharing! More work from my comic, THIEA, and other stories to come. I\u2019d love feedback and constructive criticism.

\n

I post daily. Follow me @kommienezuspadt so you don\u2019t miss a post.

\n", + "category": "art", + "children": 0, + "created": "2016-09-15T18:53:42", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0104.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0105.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0106.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/SketchUpdate004.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0107.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/SketchUpdate011.jpg" + ], + "links": [ + "www.theiacomic.com", + "https://steemit.com/writing/@kommienezuspadt/full-script-of-theia-sci-fi-comic-book-theia-exclusively-on-steemit", + "www.seventhsanctum.com", + "https://steemit.com/steemit/@jamielefay/steemit-and-the-future-of-book-publishing", + "https://steemit.com/@kommienezuspadt" + ], + "tags": [ + "art", + "writing", + "story", + "blog", + "comic" + ], + "users": [ + "jamielefay" + ] + }, "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 9343647949820, + "payout": 6.866, + "payout_at": "2016-09-16T19:14:49", + "pending_payout_value": "6.866 HBD", "percent_steem_dollars": 10000, - "url": "/art/@kommienezuspadt/bringing-characters-and-worlds-to-life-an-ode-to-the-steemit-creators", - "blacklists": [] + "permlink": "bringing-characters-and-worlds-to-life-an-ode-to-the-steemit-creators", + "post_id": 960548, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 49 + }, + "title": "Bringing worlds and characters to life; an ode to the Steemit creators!", + "updated": "2016-09-15T19:11:12", + "url": "/art/@kommienezuspadt/bringing-characters-and-worlds-to-life-an-ode-to-the-steemit-creators" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.pat.json index 70832021..a7926741 100644 --- a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_hot.pat.json @@ -1,5345 +1,5412 @@ [ { - "post_id": 960290, - "author": "dollarvigilante", - "permlink": "another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", - "category": "money", - "title": "Another Billionaire Warns of Catastrophic Depths Not Seen in 5,000 Years - and Emphasizes Gold", - "body": "
https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg
\n\nIn past issues, we’ve documented increasingly concerned billionaires warning of dangerous economic times. Many have favored gold as an alternative allocation in a world where $13 trillion-worth of debt is negative yielding, interest rates are artificially suppressed and we’re on the brink of major wars.\n\nThe newest addition to this gold-loving billionaire's club, is none other than hedge-fund manager Paul Singer. At CNBC’s Delivering Alpha Investors Conference this week, the founder of the $27-billion Elliott Management Fund, the 17th largest hedge fund in the world, mentioned that at current prices gold is “undervalued” and “underrepresented in many portfolios as the only ... store of value that has stood the test of time.”\n\nSinger, along with numerous other hedge-fund managers, has been increasingly outspoken in his criticism of the Federal Reserve and other central banks for creating dangers in the market unlike any in what he terms the “5,000 year-ish” history of finance. Singer noted that “it's a very dangerous time in the global economy and global financial markets.\"\n\nThis quote is frighteningly similar to the response given by Donald Trump on Fox Business not long ago when he was asked if he had money in the market. He answered, “I did, but I got out,” and then went on to say that he expected “very scary scenarios” for investors.\n\nSinger also stated that he thinks owning medium- to long-term first world debt is a “really bad idea”... and then proceeded to tell listeners to sell their 30-year bonds.\n\nEarlier in the conference, prior to Singer, Ray Dalio who is the manager of the largest hedge fund in the world, Bridgewater Capital, was also vocal about the diminishing returns provided by government debt held by central banks. “There’s only so much you can squeeze out of the debt cycle,\" he said. He went on to say that central banks are at a point now where their ability to stimulate is limited.\n\nSeated next to Dalio was Former Treasury secretary Timothy Geithner who voiced concern about limited “tools in the keynesian arsenal,” that probably wouldn’t be enough to offset the next recession.\n\nGeithner obviously believes that a recession is on the way. Dalio and Singer are trying to convey the same message. A massive crunch is looming.\n\nWe agree with them, although we believe Geithner was sugarcoating what’s to come.\n\nAfter all, we are on the precipice of a crash of biblical proportions according to the former chief economist of the Bank for International Settlements, William White.\n\nWe have mentioned his quote numerous time here at TDV but feel it’s important to reiterate because of its magnitude: “The only question is whether we are able to look reality in the eye and face what is coming in an orderly fashion, or whether it will be disorderly. Debt jubilees have been going on for 5,000 years, as far back as the Sumerians.”\n\nAs the Fed considers its second rate hike in 10 years, Singer condemned policy-makers for acting with “amazing arrogance” when he and others had warned of a mortgage crisis prior to 2008.\n\nWhat he and those who agreed with his stance don’t know, or at least won’t state publicly, is that these shoddy central bank policies are detrimental by design. In other words, their sole purpose is to destabilize the world economy.\n\nThis deliberate market sabotage is necessary for the transference of power from the more developed nations to less developed ones. Ultimately, the idea is to eliminate smaller regional and national central banks. Once things get bad enough, these smaller banks will be blamed for provoking a given crisis. And, secondarily, the end goal is to blow up the entire system in order to bring in the one world government and central bank.\n\nThe elites have used the same tactics time and time again throughout history. First, they create the problem, then there is a reaction, and then finally they come swooping in to “valiantly save” the day. It's happened numerous times before.\n
https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png
\nAnd it will soon happen again.\n\nOf course, the globalists have demonstrated that every intervention only makes situations worse.\n\nWe reported on the blatant thievery going on at Wells Fargo in our last article and noted how the elites were probably laughing hysterically at what they’re able to get away with. They were even able to convince many younger American voters that “democratic socialism” would be their savior, as seen by the significant, youthful support for Bernie Slanders. Debt and currency crises have already started to materialize, as we’ve seen in the socialist utopia that is Venezuela. If this is any indication of what’s to come, the future is looking awfully gloomy.\n\nAs Singer and others including Dalio have mentioned before, the most tried and true measure of wealth and value is gold.\n\nAt TDV we provide unique Austrian-economics based analysis from the anarcho-capitalist pespective of the state of the world’s economy, as well as suggestions on how to protect your assets in these tempestuous and unprecedented times.\n\nJacob Rothschild, a member of the family partly responsible for the creation of all this chaos, even said himself that we are in “uncharted waters” and that it’s “impossible to predict the unintended consequences of very low interest rates.”\n\nWe have a pretty good idea of what the consequences will be and we’re taking action to protect ourselves and even profit from them. Rothschild seems to know the consequences, as well, as he has been buying up gold and selling the stock market and the US dollar.\n\nYou can survive and profit from the orchestrated collapse too. Subscribe to TDV’s newsletter here to receive constantly updated information on how to protect your family and friends.\n\nIn the end, it is getting truly bizarre just how many billionaires, central bankers and others of note are all warning of the coming collapse. We’d almost begun to worry that they were going to pull a switch-a-roo on us, but if you asked the great majority of investors and financial analysts, they’ll tell you that they see nothing but smooth sailing ahead.\n\nSo, while many are warning, many are hearing, but not listening. The bible said something about that, I believe.\n
https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg
", - "json_metadata": { - "tags": [ - "money", - "gold", - "silver", - "bitcoin", - "crisis" - ], - "image": [ - "https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg", - "https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png", - "https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg" - ], - "links": [ - "https://dollarvigilante.com/subscribe" - ] - }, - "created": "2016-09-15T18:23:15", - "updated": "2016-09-15T18:23:15", - "depth": 0, - "children": 23, - "net_rshares": 102136532384242, - "is_paidout": false, - "payout_at": "2016-09-16T18:47:28", - "payout": 596.997, - "pending_payout_value": "596.997 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], "active_votes": [ { - "voter": "dantheman", - "rshares": "28370463371572" + "rshares": "28370463371572", + "voter": "dantheman" }, { - "voter": "smooth", - "rshares": "31307487536364" + "rshares": "31307487536364", + "voter": "smooth" }, { - "voter": "anonymous", - "rshares": "231809639013" + "rshares": "231809639013", + "voter": "anonymous" }, { - "voter": "diaphanous", - "rshares": "2321962618319" + "rshares": "2321962618319", + "voter": "diaphanous" }, { - "voter": "commedy", - "rshares": "1469558503443" + "rshares": "1469558503443", + "voter": "commedy" }, { - "voter": "riverhead", - "rshares": "4287714457313" + "rshares": "4287714457313", + "voter": "riverhead" }, { - "voter": "badassmother", - "rshares": "1856006073992" + "rshares": "1856006073992", + "voter": "badassmother" }, { - "voter": "rossco99", - "rshares": "1271804694676" + "rshares": "1271804694676", + "voter": "rossco99" }, { - "voter": "wang", - "rshares": "2206068741954" + "rshares": "2206068741954", + "voter": "wang" }, { - "voter": "xeroc", - "rshares": "1950753758979" + "rshares": "1950753758979", + "voter": "xeroc" }, { - "voter": "joseph", - "rshares": "1534707047296" + "rshares": "1534707047296", + "voter": "joseph" }, { - "voter": "recursive3", - "rshares": "452874558937" + "rshares": "452874558937", + "voter": "recursive3" }, { - "voter": "masteryoda", - "rshares": "620996029765" + "rshares": "620996029765", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120582597678" + "rshares": "3120582597678", + "voter": "recursive" }, { - "voter": "lee2", - "rshares": "440845842" + "rshares": "440845842", + "voter": "lee2" }, { - "voter": "lee3", - "rshares": "26932201065" + "rshares": "26932201065", + "voter": "lee3" }, { - "voter": "lee4", - "rshares": "8677295375" + "rshares": "8677295375", + "voter": "lee4" }, { - "voter": "lee5", - "rshares": "22149018521" + "rshares": "22149018521", + "voter": "lee5" }, { - "voter": "smooth.witness", - "rshares": "5942299654212" + "rshares": "5942299654212", + "voter": "smooth.witness" }, { - "voter": "idol", - "rshares": "8927291120" + "rshares": "8927291120", + "voter": "idol" }, { - "voter": "sakr", - "rshares": "4941942978" + "rshares": "4941942978", + "voter": "sakr" }, { - "voter": "unosuke", - "rshares": "57625926227" + "rshares": "57625926227", + "voter": "unosuke" }, { - "voter": "jocelyn", - "rshares": "1536592488" + "rshares": "1536592488", + "voter": "jocelyn" }, { - "voter": "gregory-f", - "rshares": "14818263059" + "rshares": "14818263059", + "voter": "gregory-f" }, { - "voter": "edgeland", - "rshares": "154334962550" + "rshares": "154334962550", + "voter": "edgeland" }, { - "voter": "gregory60", - "rshares": "8836453529" + "rshares": "8836453529", + "voter": "gregory60" }, { - "voter": "full-measure", - "rshares": "29596510808" + "rshares": "29596510808", + "voter": "full-measure" }, { - "voter": "eeks", - "rshares": "104880949618" + "rshares": "104880949618", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "24694558802" + "rshares": "24694558802", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "468281676" + "rshares": "468281676", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "5641697991" + "rshares": "5641697991", + "voter": "spaninv" }, { - "voter": "elishagh1", - "rshares": "32459455171" + "rshares": "32459455171", + "voter": "elishagh1" }, { - "voter": "himalayanguru", - "rshares": "40391466193" + "rshares": "40391466193", + "voter": "himalayanguru" }, { - "voter": "nanzo-scoop", - "rshares": "584291107228" + "rshares": "584291107228", + "voter": "nanzo-scoop" }, { - "voter": "steve-walschot", - "rshares": "178471627922" + "rshares": "178471627922", + "voter": "steve-walschot" }, { - "voter": "kefkius", - "rshares": "9857825141" + "rshares": "9857825141", + "voter": "kefkius" }, { - "voter": "mummyimperfect", - "rshares": "177420844935" + "rshares": "177420844935", + "voter": "mummyimperfect" }, { - "voter": "asch", - "rshares": "106635691300" + "rshares": "106635691300", + "voter": "asch" }, { - "voter": "kevinwong", - "rshares": "616864092786" + "rshares": "616864092786", + "voter": "kevinwong" }, { - "voter": "murh", - "rshares": "1061266533" + "rshares": "1061266533", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6230798580" + "rshares": "6230798580", + "voter": "cryptofunk" }, { - "voter": "kodi", - "rshares": "579494558" + "rshares": "579494558", + "voter": "kodi" }, { - "voter": "error", - "rshares": "2003359924" + "rshares": "2003359924", + "voter": "error" }, { - "voter": "andu", - "rshares": "11584833708" + "rshares": "11584833708", + "voter": "andu" }, { - "voter": "ranko-k", - "rshares": "40553122820" + "rshares": "40553122820", + "voter": "ranko-k" }, { - "voter": "cyber", - "rshares": "962089879337" + "rshares": "962089879337", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "58188888655" + "rshares": "58188888655", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "49581045086" + "rshares": "49581045086", + "voter": "ak2020" }, { - "voter": "satoshifund", - "rshares": "3848697023555" + "rshares": "3848697023555", + "voter": "satoshifund" }, { - "voter": "applecrisp", - "rshares": "402139444" + "rshares": "402139444", + "voter": "applecrisp" }, { - "voter": "altoz", - "rshares": "36407027386" + "rshares": "36407027386", + "voter": "altoz" }, { - "voter": "stiletto", - "rshares": "365370465" + "rshares": "365370465", + "voter": "stiletto" }, { - "voter": "juanmiguelsalas", - "rshares": "55577467736" + "rshares": "55577467736", + "voter": "juanmiguelsalas" }, { - "voter": "will-zewe", - "rshares": "219283354085" + "rshares": "219283354085", + "voter": "will-zewe" }, { - "voter": "herzmeister", - "rshares": "87300558689" + "rshares": "87300558689", + "voter": "herzmeister" }, { - "voter": "trogdor", - "rshares": "275016906945" + "rshares": "275016906945", + "voter": "trogdor" }, { - "voter": "tee-em", - "rshares": "5287820211" + "rshares": "5287820211", + "voter": "tee-em" }, { - "voter": "michaelx", - "rshares": "31346001722" + "rshares": "31346001722", + "voter": "michaelx" }, { - "voter": "thedashguy", - "rshares": "179395106552" + "rshares": "179395106552", + "voter": "thedashguy" }, { - "voter": "usefree", - "rshares": "4682885200" + "rshares": "4682885200", + "voter": "usefree" }, { - "voter": "mexbit", - "rshares": "189626835254" + "rshares": "189626835254", + "voter": "mexbit" }, { - "voter": "mark-waser", - "rshares": "5821262190" + "rshares": "5821262190", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "118356217412" + "rshares": "118356217412", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "208362110567" + "rshares": "208362110567", + "voter": "kimziv" }, { - "voter": "honeythief", - "rshares": "46266779182" + "rshares": "46266779182", + "voter": "honeythief" }, { - "voter": "emily-cook", - "rshares": "75334808165" + "rshares": "75334808165", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187607792" + "rshares": "2187607792", + "voter": "superfreek" }, { - "voter": "mrhankeh", - "rshares": "484636799" + "rshares": "484636799", + "voter": "mrhankeh" }, { - "voter": "grey580", - "rshares": "17908924002" + "rshares": "17908924002", + "voter": "grey580" }, { - "voter": "ladyclair", - "rshares": "275327756" + "rshares": "275327756", + "voter": "ladyclair" }, { - "voter": "bacchist", - "rshares": "68449861599" + "rshares": "68449861599", + "voter": "bacchist" }, { - "voter": "good-karma", - "rshares": "60315479782" + "rshares": "60315479782", + "voter": "good-karma" }, { - "voter": "orly", - "rshares": "3350419346" + "rshares": "3350419346", + "voter": "orly" }, { - "voter": "riscadox", - "rshares": "5271030976" + "rshares": "5271030976", + "voter": "riscadox" }, { - "voter": "katyakov", - "rshares": "24867575018" + "rshares": "24867575018", + "voter": "katyakov" }, { - "voter": "fabio", - "rshares": "373878481829" + "rshares": "373878481829", + "voter": "fabio" }, { - "voter": "tcfxyz", - "rshares": "25057642057" + "rshares": "25057642057", + "voter": "tcfxyz" }, { - "voter": "futurefood", - "rshares": "6939984054" + "rshares": "6939984054", + "voter": "futurefood" }, { - "voter": "rxhector", - "rshares": "734082781" + "rshares": "734082781", + "voter": "rxhector" }, { - "voter": "furion", - "rshares": "118094280271" + "rshares": "118094280271", + "voter": "furion" }, { - "voter": "cdubendo", - "rshares": "105911917280" + "rshares": "105911917280", + "voter": "cdubendo" }, { - "voter": "barbara2", - "rshares": "578386960" + "rshares": "578386960", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "642869652" + "rshares": "642869652", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "594982040" + "rshares": "594982040", + "voter": "doge4lyf" }, { - "voter": "gord0b", - "rshares": "12668641443" + "rshares": "12668641443", + "voter": "gord0b" }, { - "voter": "steem1653", - "rshares": "2632460141" + "rshares": "2632460141", + "voter": "steem1653" }, { - "voter": "cynetyc", - "rshares": "136322030" + "rshares": "136322030", + "voter": "cynetyc" }, { - "voter": "steemit-life", - "rshares": "25221166135" + "rshares": "25221166135", + "voter": "steemit-life" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "thegoodguy", - "rshares": "5357326058" + "rshares": "5357326058", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "14168336425" + "rshares": "14168336425", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209533734" + "rshares": "4209533734", + "voter": "karen13" }, { - "voter": "cryptosi", - "rshares": "6017253623" + "rshares": "6017253623", + "voter": "cryptosi" }, { - "voter": "nabilov", - "rshares": "251367062418" + "rshares": "251367062418", + "voter": "nabilov" }, { - "voter": "noodhoog", - "rshares": "8751103405" + "rshares": "8751103405", + "voter": "noodhoog" }, { - "voter": "milestone", - "rshares": "46859060143" + "rshares": "46859060143", + "voter": "milestone" }, { - "voter": "creemej", - "rshares": "33739229218" + "rshares": "33739229218", + "voter": "creemej" }, { - "voter": "wildchild", - "rshares": "87223247" + "rshares": "87223247", + "voter": "wildchild" }, { - "voter": "nippel66", - "rshares": "15070803886" + "rshares": "15070803886", + "voter": "nippel66" }, { - "voter": "phenom", - "rshares": "24417687626" + "rshares": "24417687626", + "voter": "phenom" }, { - "voter": "poseidon", - "rshares": "4545051592" + "rshares": "4545051592", + "voter": "poseidon" }, { - "voter": "smolalit", - "rshares": "7946812357" + "rshares": "7946812357", + "voter": "smolalit" }, { - "voter": "calaber24p", - "rshares": "362515598946" + "rshares": "362515598946", + "voter": "calaber24p" }, { - "voter": "jdenismusic", - "rshares": "147403710" + "rshares": "147403710", + "voter": "jdenismusic" }, { - "voter": "simon.braki.love", - "rshares": "3365797955" + "rshares": "3365797955", + "voter": "simon.braki.love" }, { - "voter": "thylbom", - "rshares": "82782405213" + "rshares": "82782405213", + "voter": "thylbom" }, { - "voter": "bitcoiner", - "rshares": "3709588060" + "rshares": "3709588060", + "voter": "bitcoiner" }, { - "voter": "deanliu", - "rshares": "32544157928" + "rshares": "32544157928", + "voter": "deanliu" }, { - "voter": "dmitriybtc", - "rshares": "4996306142" + "rshares": "4996306142", + "voter": "dmitriybtc" }, { - "voter": "jl777", - "rshares": "204618396015" + "rshares": "204618396015", + "voter": "jl777" }, { - "voter": "zaebars", - "rshares": "30989614870" + "rshares": "30989614870", + "voter": "zaebars" }, { - "voter": "positive", - "rshares": "20026634941" + "rshares": "20026634941", + "voter": "positive" }, { - "voter": "yarly", - "rshares": "1809205777" + "rshares": "1809205777", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "272641013" + "rshares": "272641013", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "273048922" + "rshares": "273048922", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "157733805" + "rshares": "157733805", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "158624349" + "rshares": "158624349", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "90416287" + "rshares": "90416287", + "voter": "yarly7" }, { - "voter": "raymonjohnstone", - "rshares": "799615699" + "rshares": "799615699", + "voter": "raymonjohnstone" }, { - "voter": "proto", - "rshares": "17267341753" + "rshares": "17267341753", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "34309455805" + "rshares": "34309455805", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "437620869" + "rshares": "437620869", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "234191245" + "rshares": "234191245", + "voter": "yarly11" }, { - "voter": "royalmacro", - "rshares": "8781903824" + "rshares": "8781903824", + "voter": "royalmacro" }, { - "voter": "yarly12", - "rshares": "81879061" + "rshares": "81879061", + "voter": "yarly12" }, { - "voter": "fnait", - "rshares": "674282213" + "rshares": "674282213", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "599033376" + "rshares": "599033376", + "voter": "keepcalmand" }, { - "voter": "steemster1", - "rshares": "146224042" + "rshares": "146224042", + "voter": "steemster1" }, { - "voter": "dmilash", - "rshares": "3022447454" + "rshares": "3022447454", + "voter": "dmilash" }, { - "voter": "andreynoch", - "rshares": "2002851358" + "rshares": "2002851358", + "voter": "andreynoch" }, { - "voter": "mahekg", - "rshares": "13359143286" + "rshares": "13359143286", + "voter": "mahekg" }, { - "voter": "gomeravibz", - "rshares": "50579277183" + "rshares": "50579277183", + "voter": "gomeravibz" }, { - "voter": "taker", - "rshares": "8734185109" + "rshares": "8734185109", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "12064042634" + "rshares": "12064042634", + "voter": "nekromarinist" }, { - "voter": "sharon", - "rshares": "57873464" + "rshares": "57873464", + "voter": "sharon" }, { - "voter": "dumar022", - "rshares": "10419645487" + "rshares": "10419645487", + "voter": "dumar022" }, { - "voter": "merej99", - "rshares": "2157207095" + "rshares": "2157207095", + "voter": "merej99" }, { - "voter": "lillianjones", - "rshares": "58971492" + "rshares": "58971492", + "voter": "lillianjones" }, { - "voter": "laonie", - "rshares": "1213299204686" + "rshares": "1213299204686", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "157521707420" + "rshares": "157521707420", + "voter": "twinner" }, { - "voter": "rawnetics", - "rshares": "23391691291" + "rshares": "23391691291", + "voter": "rawnetics" }, { - "voter": "laonie1", - "rshares": "22969142749" + "rshares": "22969142749", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "23485900426" + "rshares": "23485900426", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "23494195522" + "rshares": "23494195522", + "voter": "laonie3" }, { - "voter": "laoyao", - "rshares": "24562882668" + "rshares": "24562882668", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "42639811498" + "rshares": "42639811498", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "246279861104" + "rshares": "246279861104", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "9450505564" + "rshares": "9450505564", + "voter": "flysaga" }, { - "voter": "brendio", - "rshares": "5831615639" + "rshares": "5831615639", + "voter": "brendio" }, { - "voter": "gmurph", - "rshares": "2918578376" + "rshares": "2918578376", + "voter": "gmurph" }, { - "voter": "chris.roy", - "rshares": "3690744042" + "rshares": "3690744042", + "voter": "chris.roy" }, { - "voter": "midnightoil", - "rshares": "54405024034" + "rshares": "54405024034", + "voter": "midnightoil" }, { - "voter": "ullikume", - "rshares": "4190391188" + "rshares": "4190391188", + "voter": "ullikume" }, { - "voter": "laonie4", - "rshares": "23489872560" + "rshares": "23489872560", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "23487615266" + "rshares": "23487615266", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "23484637540" + "rshares": "23484637540", + "voter": "laonie6" }, { - "voter": "laonie7", - "rshares": "23480497322" + "rshares": "23480497322", + "voter": "laonie7" }, { - "voter": "kurtbeil", - "rshares": "3323984357" + "rshares": "3323984357", + "voter": "kurtbeil" }, { - "voter": "laonie8", - "rshares": "23477049244" + "rshares": "23477049244", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "23474334690" + "rshares": "23474334690", + "voter": "laonie9" }, { - "voter": "xiaohui", - "rshares": "136078574669" + "rshares": "136078574669", + "voter": "xiaohui" }, { - "voter": "jphamer1", - "rshares": "21112646631" + "rshares": "21112646631", + "voter": "jphamer1" }, { - "voter": "bigsambucca", - "rshares": "88206053" + "rshares": "88206053", + "voter": "bigsambucca" }, { - "voter": "elfkitchen", - "rshares": "6791986484" + "rshares": "6791986484", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "99935909954" + "rshares": "99935909954", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5855738054" + "rshares": "5855738054", + "voter": "oflyhigh" }, { - "voter": "randyclemens", - "rshares": "15860159560" + "rshares": "15860159560", + "voter": "randyclemens" }, { - "voter": "paynode", - "rshares": "2343183825" + "rshares": "2343183825", + "voter": "paynode" }, { - "voter": "xiaokongcom", - "rshares": "4366149629" + "rshares": "4366149629", + "voter": "xiaokongcom" }, { - "voter": "msjennifer", - "rshares": "59437351" + "rshares": "59437351", + "voter": "msjennifer" }, { - "voter": "ciao", - "rshares": "54654502" + "rshares": "54654502", + "voter": "ciao" }, { - "voter": "session101", - "rshares": "62928860" + "rshares": "62928860", + "voter": "session101" }, { - "voter": "steemo", - "rshares": "52985539" + "rshares": "52985539", + "voter": "steemo" }, { - "voter": "xianjun", - "rshares": "8801395051" + "rshares": "8801395051", + "voter": "xianjun" }, { - "voter": "steema", - "rshares": "52848854" + "rshares": "52848854", + "voter": "steema" }, { - "voter": "sijoittaja", - "rshares": "72192938" + "rshares": "72192938", + "voter": "sijoittaja" }, { - "voter": "confucius", - "rshares": "69662169" + "rshares": "69662169", + "voter": "confucius" }, { - "voter": "stevescriber", - "rshares": "72135954" + "rshares": "72135954", + "voter": "stevescriber" }, { - "voter": "loli", - "rshares": "51247757" + "rshares": "51247757", + "voter": "loli" }, { - "voter": "miacats", - "rshares": "91519215715" + "rshares": "91519215715", + "voter": "miacats" }, { - "voter": "nano2nd", - "rshares": "52419023" + "rshares": "52419023", + "voter": "nano2nd" }, { - "voter": "jarvis", - "rshares": "53661976" + "rshares": "53661976", + "voter": "jarvis" }, { - "voter": "microluck", - "rshares": "591109646" + "rshares": "591109646", + "voter": "microluck" }, { - "voter": "razberrijam", - "rshares": "74131936" + "rshares": "74131936", + "voter": "razberrijam" }, { - "voter": "fortuner", - "rshares": "53106127" + "rshares": "53106127", + "voter": "fortuner" }, { - "voter": "chinadaily", - "rshares": "2022702929" + "rshares": "2022702929", + "voter": "chinadaily" }, { - "voter": "pompe72", - "rshares": "88481667" + "rshares": "88481667", + "voter": "pompe72" }, { - "voter": "dollarvigilante", - "rshares": "802011524540" + "rshares": "802011524540", + "voter": "dollarvigilante" }, { - "voter": "pollina", - "rshares": "101627835" + "rshares": "101627835", + "voter": "pollina" }, { - "voter": "johnbyrd", - "rshares": "50698107" + "rshares": "50698107", + "voter": "johnbyrd" }, { - "voter": "thomasaustin", - "rshares": "50682252" + "rshares": "50682252", + "voter": "thomasaustin" }, { - "voter": "thermor", - "rshares": "50680459" + "rshares": "50680459", + "voter": "thermor" }, { - "voter": "ficholl", - "rshares": "50691211" + "rshares": "50691211", + "voter": "ficholl" }, { - "voter": "widell", - "rshares": "51852278" + "rshares": "51852278", + "voter": "widell" }, { - "voter": "movievertigo", - "rshares": "3635091595" + "rshares": "3635091595", + "voter": "movievertigo" }, { - "voter": "revelbrooks", - "rshares": "50311250" + "rshares": "50311250", + "voter": "revelbrooks" }, { - "voter": "laonie10", - "rshares": "23468154723" + "rshares": "23468154723", + "voter": "laonie10" }, { - "voter": "netaterra", - "rshares": "2982691190" + "rshares": "2982691190", + "voter": "netaterra" }, { - "voter": "andrewawerdna", - "rshares": "21980957828" + "rshares": "21980957828", + "voter": "andrewawerdna" }, { - "voter": "trev", - "rshares": "5712937692" + "rshares": "5712937692", + "voter": "trev" }, { - "voter": "erroneous-logic", - "rshares": "1874035641" + "rshares": "1874035641", + "voter": "erroneous-logic" }, { - "voter": "sergeypotapov", - "rshares": "302425178" + "rshares": "302425178", + "voter": "sergeypotapov" }, { - "voter": "lensessions", - "rshares": "65868377" + "rshares": "65868377", + "voter": "lensessions" }, { - "voter": "wmhammer", - "rshares": "59126308" + "rshares": "59126308", + "voter": "wmhammer" }, { - "voter": "emancipatedhuman", - "rshares": "45978108133" + "rshares": "45978108133", + "voter": "emancipatedhuman" }, { - "voter": "pressfortruth", - "rshares": "15340272043" + "rshares": "15340272043", + "voter": "pressfortruth" }, { - "voter": "hilarski", - "rshares": "6654726855" + "rshares": "6654726855", + "voter": "hilarski" }, { - "voter": "craigwilliamz", - "rshares": "8773942171" + "rshares": "8773942171", + "voter": "craigwilliamz" }, { - "voter": "onetree", - "rshares": "8856106682" + "rshares": "8856106682", + "voter": "onetree" }, { - "voter": "slorunner", - "rshares": "101945845" + "rshares": "101945845", + "voter": "slorunner" }, { - "voter": "shadowspub", - "rshares": "2029369552" + "rshares": "2029369552", + "voter": "shadowspub" }, { - "voter": "daut44", - "rshares": "32463005362" + "rshares": "32463005362", + "voter": "daut44" }, { - "voter": "curpose", - "rshares": "50416427" + "rshares": "50416427", + "voter": "curpose" }, { - "voter": "suprepachyderm", - "rshares": "59693834" + "rshares": "59693834", + "voter": "suprepachyderm" }, { - "voter": "themonetaryfew", - "rshares": "1615332211" + "rshares": "1615332211", + "voter": "themonetaryfew" }, { - "voter": "dajohns1420", - "rshares": "989363278" + "rshares": "989363278", + "voter": "dajohns1420" }, { - "voter": "runridefly", - "rshares": "2196907450" + "rshares": "2196907450", + "voter": "runridefly" }, { - "voter": "newandold", - "rshares": "3915304227" + "rshares": "3915304227", + "voter": "newandold" }, { - "voter": "jamesyk", - "rshares": "57856784" + "rshares": "57856784", + "voter": "jamesyk" }, { - "voter": "shenanigator", - "rshares": "112983030208" + "rshares": "112983030208", + "voter": "shenanigator" }, { - "voter": "jcomeauictx", - "rshares": "58197677" + "rshares": "58197677", + "voter": "jcomeauictx" }, { - "voter": "quinneaker", - "rshares": "12901147949" + "rshares": "12901147949", + "voter": "quinneaker" }, { - "voter": "freeinthought", - "rshares": "752032432" + "rshares": "752032432", + "voter": "freeinthought" }, { - "voter": "funkywanderer", - "rshares": "1783693666" + "rshares": "1783693666", + "voter": "funkywanderer" }, { - "voter": "richardcrill", - "rshares": "4900461398" + "rshares": "4900461398", + "voter": "richardcrill" }, { - "voter": "laonie11", - "rshares": "22621459650" + "rshares": "22621459650", + "voter": "laonie11" }, { - "voter": "jeremyfromwi", - "rshares": "2205784762" + "rshares": "2205784762", + "voter": "jeremyfromwi" }, { - "voter": "troich", - "rshares": "50588612" + "rshares": "50588612", + "voter": "troich" }, { - "voter": "nadin3", - "rshares": "4662965424" + "rshares": "4662965424", + "voter": "nadin3" }, { - "voter": "profanarky", - "rshares": "588228551" + "rshares": "588228551", + "voter": "profanarky" }, { - "voter": "xanoxt", - "rshares": "3411072843" + "rshares": "3411072843", + "voter": "xanoxt" }, { - "voter": "davidjkelley", - "rshares": "1625414479" + "rshares": "1625414479", + "voter": "davidjkelley" }, { - "voter": "crion", - "rshares": "50593879" + "rshares": "50593879", + "voter": "crion" }, { - "voter": "greatness", - "rshares": "174778016" + "rshares": "174778016", + "voter": "greatness" }, { - "voter": "hitherise", - "rshares": "50271139" + "rshares": "50271139", + "voter": "hitherise" }, { - "voter": "wiss", - "rshares": "50262756" + "rshares": "50262756", + "voter": "wiss" }, { - "voter": "sebastianbauer", - "rshares": "56782516" + "rshares": "56782516", + "voter": "sebastianbauer" }, { - "voter": "fizzgig", - "rshares": "55667728" + "rshares": "55667728", + "voter": "fizzgig" }, { - "voter": "sponge-bob", - "rshares": "26571803569" + "rshares": "26571803569", + "voter": "sponge-bob" }, { - "voter": "l0k1", - "rshares": "4044716723" + "rshares": "4044716723", + "voter": "l0k1" }, { - "voter": "digital-wisdom", - "rshares": "15232622426" + "rshares": "15232622426", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3710973264" + "rshares": "3710973264", + "voter": "ethical-ai" }, { - "voter": "stroully", - "rshares": "51033798" + "rshares": "51033798", + "voter": "stroully" }, { - "voter": "titusfrost", - "rshares": "3752641890" + "rshares": "3752641890", + "voter": "titusfrost" }, { - "voter": "jwaser", - "rshares": "6682880996" + "rshares": "6682880996", + "voter": "jwaser" }, { - "voter": "thadm", - "rshares": "50712038" + "rshares": "50712038", + "voter": "thadm" }, { - "voter": "zettar", - "rshares": "2353724275" + "rshares": "2353724275", + "voter": "zettar" }, { - "voter": "smisi", - "rshares": "1655277599" + "rshares": "1655277599", + "voter": "smisi" }, { - "voter": "bluehorseshoe", - "rshares": "17357974240" + "rshares": "17357974240", + "voter": "bluehorseshoe" }, { - "voter": "lighter", - "rshares": "53413720" + "rshares": "53413720", + "voter": "lighter" }, { - "voter": "yorsens", - "rshares": "50370757" + "rshares": "50370757", + "voter": "yorsens" }, { - "voter": "maarnio", - "rshares": "263853222" + "rshares": "263853222", + "voter": "maarnio" }, { - "voter": "analyzethis", - "rshares": "50931848" + "rshares": "50931848", + "voter": "analyzethis" }, { - "voter": "bwaser", - "rshares": "2617343597" + "rshares": "2617343597", + "voter": "bwaser" }, { - "voter": "sofa", - "rshares": "50840303" + "rshares": "50840303", + "voter": "sofa" }, { - "voter": "panther", - "rshares": "323483227" + "rshares": "323483227", + "voter": "panther" }, { - "voter": "doggnostic", - "rshares": "53871683" + "rshares": "53871683", + "voter": "doggnostic" }, { - "voter": "ct-gurus", - "rshares": "659649765" + "rshares": "659649765", + "voter": "ct-gurus" }, { - "voter": "jenny-talls", - "rshares": "53593366" + "rshares": "53593366", + "voter": "jenny-talls" }, { - "voter": "charlieshrem", - "rshares": "411677045923" + "rshares": "411677045923", + "voter": "charlieshrem" }, { - "voter": "tracemayer", - "rshares": "61827447459" + "rshares": "61827447459", + "voter": "tracemayer" }, { - "voter": "brains", - "rshares": "54239080444" + "rshares": "54239080444", + "voter": "brains" }, { - "voter": "waldemar-kuhn", - "rshares": "50450987" + "rshares": "50450987", + "voter": "waldemar-kuhn" }, { - "voter": "steemafon", - "rshares": "1415009195" + "rshares": "1415009195", + "voter": "steemafon" }, { - "voter": "bitcoinparadise", - "rshares": "1352324852" + "rshares": "1352324852", + "voter": "bitcoinparadise" }, { - "voter": "chick1", - "rshares": "5753524189" + "rshares": "5753524189", + "voter": "chick1" }, { - "voter": "rigaronib", - "rshares": "3605995609" + "rshares": "3605995609", + "voter": "rigaronib" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "50516543" + "rshares": "50516543", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "freebornangel", - "rshares": "62515317" + "rshares": "62515317", + "voter": "freebornangel" }, { - "voter": "anomaly", - "rshares": "271440423" + "rshares": "271440423", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401297947" + "rshares": "2401297947", + "voter": "ellepdub" }, { - "voter": "inarix03", - "rshares": "63405661" + "rshares": "63405661", + "voter": "inarix03" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "rayzzz", - "rshares": "51615652" + "rshares": "51615652", + "voter": "rayzzz" }, { - "voter": "herpetologyguy", - "rshares": "12115690216" + "rshares": "12115690216", + "voter": "herpetologyguy" }, { - "voter": "morgan.waser", - "rshares": "4712300251" + "rshares": "4712300251", + "voter": "morgan.waser" }, { - "voter": "iggy", - "rshares": "157644916" + "rshares": "157644916", + "voter": "iggy" }, { - "voter": "mbizryu0", - "rshares": "51636819" + "rshares": "51636819", + "voter": "mbizryu0" }, { - "voter": "archij", - "rshares": "51631638" + "rshares": "51631638", + "voter": "archij" }, { - "voter": "movie7283", - "rshares": "51530815" + "rshares": "51530815", + "voter": "movie7283" }, { - "voter": "ppcompp2", - "rshares": "51527606" + "rshares": "51527606", + "voter": "ppcompp2" }, { - "voter": "jj1968", - "rshares": "51520427" + "rshares": "51520427", + "voter": "jj1968" }, { - "voter": "cineger", - "rshares": "51516489" + "rshares": "51516489", + "voter": "cineger" }, { - "voter": "sksduddk", - "rshares": "51497383" + "rshares": "51497383", + "voter": "sksduddk" }, { - "voter": "jjc0719", - "rshares": "51490214" + "rshares": "51490214", + "voter": "jjc0719" }, { - "voter": "glassheart", - "rshares": "51235131" + "rshares": "51235131", + "voter": "glassheart" }, { - "voter": "deli", - "rshares": "51215236" + "rshares": "51215236", + "voter": "deli" }, { - "voter": "anns", - "rshares": "1233685675" + "rshares": "1233685675", + "voter": "anns" }, { - "voter": "breeze", - "rshares": "50798322" + "rshares": "50798322", + "voter": "breeze" }, { - "voter": "sjytoy", - "rshares": "50677982" + "rshares": "50677982", + "voter": "sjytoy" }, { - "voter": "shy2675", - "rshares": "50676799" + "rshares": "50676799", + "voter": "shy2675" }, { - "voter": "suance1009", - "rshares": "50675747" + "rshares": "50675747", + "voter": "suance1009" }, { - "voter": "hasqmd", - "rshares": "50674176" + "rshares": "50674176", + "voter": "hasqmd" }, { - "voter": "fischer67", - "rshares": "50673722" + "rshares": "50673722", + "voter": "fischer67" }, { - "voter": "elya1", - "rshares": "50672116" + "rshares": "50672116", + "voter": "elya1" }, { - "voter": "xclamp45", - "rshares": "50632828" + "rshares": "50632828", + "voter": "xclamp45" }, { - "voter": "likeagame1", - "rshares": "50618471" + "rshares": "50618471", + "voter": "likeagame1" }, { - "voter": "apple4006", - "rshares": "50616898" + "rshares": "50616898", + "voter": "apple4006" }, { - "voter": "bigbell61", - "rshares": "50615195" + "rshares": "50615195", + "voter": "bigbell61" }, { - "voter": "dolpo777", - "rshares": "50612850" + "rshares": "50612850", + "voter": "dolpo777" }, { - "voter": "dongperi", - "rshares": "50611931" + "rshares": "50611931", + "voter": "dongperi" }, { - "voter": "lion2byung", - "rshares": "50610620" + "rshares": "50610620", + "voter": "lion2byung" }, { - "voter": "cwj1973", - "rshares": "50610002" + "rshares": "50610002", + "voter": "cwj1973" }, { - "voter": "psj212", - "rshares": "50609329" + "rshares": "50609329", + "voter": "psj212" }, { - "voter": "owithed2", - "rshares": "50608661" + "rshares": "50608661", + "voter": "owithed2" }, { - "voter": "fiself2", - "rshares": "50606929" + "rshares": "50606929", + "voter": "fiself2" }, { - "voter": "trablinever1", - "rshares": "50605131" + "rshares": "50605131", + "voter": "trablinever1" }, { - "voter": "nuals1940", - "rshares": "50603861" + "rshares": "50603861", + "voter": "nuals1940" }, { - "voter": "fanceth2", - "rshares": "50602310" + "rshares": "50602310", + "voter": "fanceth2" }, { - "voter": "unilever", - "rshares": "50572441" + "rshares": "50572441", + "voter": "unilever" }, { - "voter": "amstel", - "rshares": "50540827" + "rshares": "50540827", + "voter": "amstel" }, { - "voter": "bapparabi", - "rshares": "1921231770" + "rshares": "1921231770", + "voter": "bapparabi" }, { - "voter": "sunlight", - "rshares": "50479027" + "rshares": "50479027", + "voter": "sunlight" }, { - "voter": "forea1995", - "rshares": "50355943" + "rshares": "50355943", + "voter": "forea1995" }, { - "voter": "holow1968", - "rshares": "50354561" + "rshares": "50354561", + "voter": "holow1968" }, { - "voter": "peaces1952", - "rshares": "50353969" + "rshares": "50353969", + "voter": "peaces1952" }, { - "voter": "himighar2", - "rshares": "50346496" + "rshares": "50346496", + "voter": "himighar2" }, { - "voter": "aromese1974", - "rshares": "50345607" + "rshares": "50345607", + "voter": "aromese1974" }, { - "voter": "runis1943", - "rshares": "50344921" + "rshares": "50344921", + "voter": "runis1943" }, { - "voter": "tong1962", - "rshares": "50344067" + "rshares": "50344067", + "voter": "tong1962" }, { - "voter": "hishe1997", - "rshares": "50340744" + "rshares": "50340744", + "voter": "hishe1997" }, { - "voter": "letstalkliberty", - "rshares": "255059000" + "rshares": "255059000", + "voter": "letstalkliberty" }, { - "voter": "strong-ai", - "rshares": "3609651500" + "rshares": "3609651500", + "voter": "strong-ai" }, { - "voter": "ninjapainter", - "rshares": "53375937" + "rshares": "53375937", + "voter": "ninjapainter" }, { - "voter": "buit1989", - "rshares": "51393104" + "rshares": "51393104", + "voter": "buit1989" }, { - "voter": "imadecoult1", - "rshares": "51389981" + "rshares": "51389981", + "voter": "imadecoult1" }, { - "voter": "infees2", - "rshares": "51387526" + "rshares": "51387526", + "voter": "infees2" }, { - "voter": "suar1997", - "rshares": "51384095" + "rshares": "51384095", + "voter": "suar1997" }, { - "voter": "sobsell93", - "rshares": "51382067" + "rshares": "51382067", + "voter": "sobsell93" }, { - "voter": "stroned96", - "rshares": "51380710" + "rshares": "51380710", + "voter": "stroned96" }, { - "voter": "drethe", - "rshares": "51378107" + "rshares": "51378107", + "voter": "drethe" }, { - "voter": "qualwas", - "rshares": "51377505" + "rshares": "51377505", + "voter": "qualwas" }, { - "voter": "phent1994", - "rshares": "51376367" + "rshares": "51376367", + "voter": "phent1994" }, { - "voter": "baboyes", - "rshares": "51375075" + "rshares": "51375075", + "voter": "baboyes" }, { - "voter": "whor1973", - "rshares": "51373532" + "rshares": "51373532", + "voter": "whor1973" }, { - "voter": "youreforn", - "rshares": "51372739" + "rshares": "51372739", + "voter": "youreforn" }, { - "voter": "voll1981", - "rshares": "51371902" + "rshares": "51371902", + "voter": "voll1981" }, { - "voter": "copenty2", - "rshares": "51370717" + "rshares": "51370717", + "voter": "copenty2" }, { - "voter": "maject2", - "rshares": "51369717" + "rshares": "51369717", + "voter": "maject2" }, { - "voter": "coust1997", - "rshares": "51367233" + "rshares": "51367233", + "voter": "coust1997" }, { - "voter": "busionea84", - "rshares": "51366398" + "rshares": "51366398", + "voter": "busionea84" }, { - "voter": "therver1", - "rshares": "51365174" + "rshares": "51365174", + "voter": "therver1" }, { - "voter": "appirdsmanne1990", - "rshares": "51364022" + "rshares": "51364022", + "voter": "appirdsmanne1990" }, { - "voter": "alienighted87", - "rshares": "51362967" + "rshares": "51362967", + "voter": "alienighted87" }, { - "voter": "anity1994", - "rshares": "51359746" + "rshares": "51359746", + "voter": "anity1994" }, { - "voter": "themphe1", - "rshares": "59959066" + "rshares": "59959066", + "voter": "themphe1" }, { - "voter": "abild1988", - "rshares": "51355864" + "rshares": "51355864", + "voter": "abild1988" }, { - "voter": "spoll1973", - "rshares": "51353540" + "rshares": "51353540", + "voter": "spoll1973" }, { - "voter": "afteld1", - "rshares": "66162576" + "rshares": "66162576", + "voter": "afteld1" }, { - "voter": "igtes", - "rshares": "71207873" + "rshares": "71207873", + "voter": "igtes" }, { - "voter": "dikanevroman", - "rshares": "835065804" + "rshares": "835065804", + "voter": "dikanevroman" }, { - "voter": "buffett", - "rshares": "141679752" + "rshares": "141679752", + "voter": "buffett" }, { - "voter": "rusteemitblog", - "rshares": "1630362522" + "rshares": "1630362522", + "voter": "rusteemitblog" }, { - "voter": "robyneggs", - "rshares": "167843838" + "rshares": "167843838", + "voter": "robyneggs" }, { - "voter": "michaelstobiersk", - "rshares": "1300689481" + "rshares": "1300689481", + "voter": "michaelstobiersk" }, { - "voter": "witchcraftblog", - "rshares": "453506109" + "rshares": "453506109", + "voter": "witchcraftblog" }, { - "voter": "sdc", - "rshares": "158057595" + "rshares": "158057595", + "voter": "sdc" }, { - "voter": "gravity", - "rshares": "160973134" + "rshares": "160973134", + "voter": "gravity" }, { - "voter": "digitalillusions", - "rshares": "160900665" + "rshares": "160900665", + "voter": "digitalillusions" }, { - "voter": "illusions", - "rshares": "157726117" + "rshares": "157726117", + "voter": "illusions" }, { - "voter": "cybergirls", - "rshares": "157176058" + "rshares": "157176058", + "voter": "cybergirls" }, { - "voter": "correct", - "rshares": "156847954" + "rshares": "156847954", + "voter": "correct" }, { - "voter": "haribo", - "rshares": "156814579" + "rshares": "156814579", + "voter": "haribo" }, { - "voter": "stimmt", - "rshares": "156194471" + "rshares": "156194471", + "voter": "stimmt" }, { - "voter": "fallout", - "rshares": "156054487" + "rshares": "156054487", + "voter": "fallout" }, { - "voter": "rule", - "rshares": "159062820" + "rshares": "159062820", + "voter": "rule" }, { - "voter": "xtreme", - "rshares": "155907388" + "rshares": "155907388", + "voter": "xtreme" }, { - "voter": "modernbukowski", - "rshares": "1442647825" + "rshares": "1442647825", + "voter": "modernbukowski" }, { - "voter": "steem-wallet", - "rshares": "158602900" + "rshares": "158602900", + "voter": "steem-wallet" }, { - "voter": "nerds", - "rshares": "158535752" + "rshares": "158535752", + "voter": "nerds" }, { - "voter": "goldmatters", - "rshares": "31008332335" + "rshares": "31008332335", + "voter": "goldmatters" }, { - "voter": "majes", - "rshares": "155796749" + "rshares": "155796749", + "voter": "majes" }, { - "voter": "maxb02", - "rshares": "155166715" + "rshares": "155166715", + "voter": "maxb02" }, { - "voter": "dealzgal", - "rshares": "71727340" + "rshares": "71727340", + "voter": "dealzgal" }, { - "voter": "bleujay", - "rshares": "120983531" + "rshares": "120983531", + "voter": "bleujay" }, { - "voter": "storage", - "rshares": "68013381" + "rshares": "68013381", + "voter": "storage" }, { - "voter": "risabold", - "rshares": "298391608" + "rshares": "298391608", + "voter": "risabold" }, { - "voter": "dougkarr", - "rshares": "154247502" + "rshares": "154247502", + "voter": "dougkarr" }, { - "voter": "blackmarket", - "rshares": "58460105" + "rshares": "58460105", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "61530871" + "rshares": "61530871", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "96643251" + "rshares": "96643251", + "voter": "expat" }, { - "voter": "pathtomydream", - "rshares": "181770825" + "rshares": "181770825", + "voter": "pathtomydream" }, { - "voter": "doubledex", - "rshares": "519265850" + "rshares": "519265850", + "voter": "doubledex" }, { - "voter": "steemlift", - "rshares": "1593664040" + "rshares": "1593664040", + "voter": "steemlift" }, { - "voter": "toddemaher1", - "rshares": "129609202" + "rshares": "129609202", + "voter": "toddemaher1" } ], + "author": "dollarvigilante", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 387, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/money/@dollarvigilante/another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", - "blacklists": [] - }, - { - "post_id": 960258, - "author": "gavvet", - "permlink": "why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", - "category": "herpetology", - "title": "Why You Don’t Want to Kill that Snake in Your Yard (featuring @herpetologyguy as author)", - "body": "@herpetologyguy\n\nOne of my many tasks as a zoo keeper is connecting people to animals. \n-\n\n\n\n

The museum I work at is unique because we showcase animals that are native to Virginia -- meaning that these are animals people will find close to home, rather than across the ocean in some distant country. This makes my job more crucial in that I am responsible for educating people about the reptiles and amphibians that they will find in their own backyards. And obviously, there’s one group of reptiles that gives people more pause than almost any other animal . . . . 

\n

Snakes. 

\n

http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj   Picture Credit

\n

I do public programs featuring snakes quite frequently.  I believe people should know how to identify local venomous/non-venomous snakes, their role in the environment and how to deal with them when they are in close proximity to our homes.  Usually, I get eager audiences asking great questions.  But, every now and then, I get some idiot who tells me, “I saw that same snake in my backyard! I chopped off its head with a shovel!”

\n

Are they an idiot for killing the snake?  Not necessarily . . . I don’t know the situation behind the encounter. But, only an idiot would walk into a wildlife facility, approach a zoo keeper and proudly declare that they kill the very same animals that the keeper is charged with the care for.  Would you walk into an animal shelter and tell someone working there that you enjoy stomping on puppies?  To us, there’s not much difference… 

\n

http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png   Picture Credit\n

\n

The best we can do in these situations is to try to educate people. This can be difficult because so many people are set in their ways -- plus we have to combat an instinctive fear and prejudice against snakes.  So, I’m going to briefly lay it all out for you and tell you \"Why you shouldn’t kill that snake in your yard.\" 

\n

http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg   Picture Credit

\n

1.  It’s ILLEGAL in most states to kill a wild snake, unless that snake presents an IMMEDIATE threat.  And no, a snake crawling through your yard does not represent a good enough excuse to use force.  We’re talking about a situation where a venomous snake is about to strike and you have no escape route but to fight your way out.  And guess what, that really doesn’t ever happen (barring instances where someone purposefully provokes an animal).  Wildlife and law enforcement agencies are cracking down on people killing snakes, so it’s better to keep yourself out of trouble. 

\n

http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg   Picture Credit

\n

2.  You are putting yourself in harm’s way.  The vast majority of snake bites occur when people attempt to capture or kill snakes.  If left alone, the snake CANNOT hurt you.  Call wildlife services or trained professionals to remove the animal. 

\n

http://www.snakegetters.com/demo/bud-cotton-gg.jpg   Picture Credit

\n

3.  It’s an incredibly beneficial animal, and you’d be foolish to kill it.  Small snakes eat a huge variety of pest insects that destroy gardens, while large snakes typically feed on rats and other rodents that infest our homes.  If you see a large snake hanging around, you have a rodent problem; snakes will not hang around if there is no food source.  To keep snakes from being attracted to your property, do your best to remove any shelter or food sources that would attract rodents.  Some snakes even eat other snakes, and species like the harmless king snake will even feed on venomous species! 

\n

https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg   Picture Credit

\n

4.  Another snake might show up.  Snakes will not typically inhabit the same area in order to avoid competition.  If you kill that harmless rat snake, but you still have a food source nearby, another snake may move in to make use of that source.  The new snake may be another harmless species or something a bit less desirable.  So why not let that harmless snake take care of the infestation for you?

\n

http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg   Picture Credit

\n

Having a snake around can be hugely beneficial to you.  It is a free, environmentally-safe form of pest control.  Snakes, including venomous species, are non-aggressive animals (unless you provoke them) that will actively do their best to AVOID people.  A resident snake will often go unnoticed by homeowners, and most encounters are fleeting glimpses of the snake making a hasty escape.  Remember that snakes have their own unique role in the environment, and regardless of our own fears and feelings towards them, they are a necessary part of life. 

\n

   http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg   Picture Credit

\n\n\nif you liked this also please check out:\nhttps://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians\n\n\n***don't forget to follow @herpetologyguy***", + "blacklists": [], + "body": "
https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg
\n\nIn past issues, we\u2019ve documented increasingly concerned billionaires warning of dangerous economic times. Many have favored gold as an alternative allocation in a world where $13 trillion-worth of debt is negative yielding, interest rates are artificially suppressed and we\u2019re on the brink of major wars.\n\nThe newest addition to this gold-loving billionaire's club, is none other than hedge-fund manager Paul Singer. At CNBC\u2019s Delivering Alpha Investors Conference this week, the founder of the $27-billion Elliott Management Fund, the 17th largest hedge fund in the world, mentioned that at current prices gold is \u201cundervalued\u201d and \u201cunderrepresented in many portfolios as the only ... store of value that has stood the test of time.\u201d\n\nSinger, along with numerous other hedge-fund managers, has been increasingly outspoken in his criticism of the Federal Reserve and other central banks for creating dangers in the market unlike any in what he terms the \u201c5,000 year-ish\u201d history of finance. Singer noted that \u201cit's a very dangerous time in the global economy and global financial markets.\"\n\nThis quote is frighteningly similar to the response given by Donald Trump on Fox Business not long ago when he was asked if he had money in the market. He answered, \u201cI did, but I got out,\u201d and then went on to say that he expected \u201cvery scary scenarios\u201d for investors.\n\nSinger also stated that he thinks owning medium- to long-term first world debt is a \u201creally bad idea\u201d... and then proceeded to tell listeners to sell their 30-year bonds.\n\nEarlier in the conference, prior to Singer, Ray Dalio who is the manager of the largest hedge fund in the world, Bridgewater Capital, was also vocal about the diminishing returns provided by government debt held by central banks. \u201cThere\u2019s only so much you can squeeze out of the debt cycle,\" he said. He went on to say that central banks are at a point now where their ability to stimulate is limited.\n\nSeated next to Dalio was Former Treasury secretary Timothy Geithner who voiced concern about limited \u201ctools in the keynesian arsenal,\u201d that probably wouldn\u2019t be enough to offset the next recession.\n\nGeithner obviously believes that a recession is on the way. Dalio and Singer are trying to convey the same message. A massive crunch is looming.\n\nWe agree with them, although we believe Geithner was sugarcoating what\u2019s to come.\n\nAfter all, we are on the precipice of a crash of biblical proportions according to the former chief economist of the Bank for International Settlements, William White.\n\nWe have mentioned his quote numerous time here at TDV but feel it\u2019s important to reiterate because of its magnitude: \u201cThe only question is whether we are able to look reality in the eye and face what is coming in an orderly fashion, or whether it will be disorderly. Debt jubilees have been going on for 5,000 years, as far back as the Sumerians.\u201d\n\nAs the Fed considers its second rate hike in 10 years, Singer condemned policy-makers for acting with \u201camazing arrogance\u201d when he and others had warned of a mortgage crisis prior to 2008.\n\nWhat he and those who agreed with his stance don\u2019t know, or at least won\u2019t state publicly, is that these shoddy central bank policies are detrimental by design. In other words, their sole purpose is to destabilize the world economy.\n\nThis deliberate market sabotage is necessary for the transference of power from the more developed nations to less developed ones. Ultimately, the idea is to eliminate smaller regional and national central banks. Once things get bad enough, these smaller banks will be blamed for provoking a given crisis. And, secondarily, the end goal is to blow up the entire system in order to bring in the one world government and central bank.\n\nThe elites have used the same tactics time and time again throughout history. First, they create the problem, then there is a reaction, and then finally they come swooping in to \u201cvaliantly save\u201d the day. It's happened numerous times before.\n
https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png
\nAnd it will soon happen again.\n\nOf course, the globalists have demonstrated that every intervention only makes situations worse.\n\nWe reported on the blatant thievery going on at Wells Fargo in our last article and noted how the elites were probably laughing hysterically at what they\u2019re able to get away with. They were even able to convince many younger American voters that \u201cdemocratic socialism\u201d would be their savior, as seen by the significant, youthful support for Bernie Slanders. Debt and currency crises have already started to materialize, as we\u2019ve seen in the socialist utopia that is Venezuela. If this is any indication of what\u2019s to come, the future is looking awfully gloomy.\n\nAs Singer and others including Dalio have mentioned before, the most tried and true measure of wealth and value is gold.\n\nAt TDV we provide unique Austrian-economics based analysis from the anarcho-capitalist pespective of the state of the world\u2019s economy, as well as suggestions on how to protect your assets in these tempestuous and unprecedented times.\n\nJacob Rothschild, a member of the family partly responsible for the creation of all this chaos, even said himself that we are in \u201cuncharted waters\u201d and that it\u2019s \u201cimpossible to predict the unintended consequences of very low interest rates.\u201d\n\nWe have a pretty good idea of what the consequences will be and we\u2019re taking action to protect ourselves and even profit from them. Rothschild seems to know the consequences, as well, as he has been buying up gold and selling the stock market and the US dollar.\n\nYou can survive and profit from the orchestrated collapse too. Subscribe to TDV\u2019s newsletter here to receive constantly updated information on how to protect your family and friends.\n\nIn the end, it is getting truly bizarre just how many billionaires, central bankers and others of note are all warning of the coming collapse. We\u2019d almost begun to worry that they were going to pull a switch-a-roo on us, but if you asked the great majority of investors and financial analysts, they\u2019ll tell you that they see nothing but smooth sailing ahead.\n\nSo, while many are warning, many are hearing, but not listening. The bible said something about that, I believe.\n
https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg
", + "category": "money", + "children": 23, + "created": "2016-09-15T18:23:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "herpetology", - "reptiles", - "snakes", - "science" - ], - "users": [ - "herpetologyguy" - ], "image": [ - "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", - "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", - "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", - "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", - "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", - "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", - "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", - "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg" + "https://dollarvigilante.com/wp-content/uploads/2016/09/crisisinbound-676x374.jpg", + "https://dollarvigilante.com/wp-content/uploads/2016/09/1998_Time-MagCover_Greenspan-committe-save-world-The-Dollar-Vigilante.png", + "https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg" ], "links": [ - "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", - "http://www.sciencemag.org", - "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", - "http://proactivepestga.com", - "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", - "http://blogs.discovermagazine.com", - "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", - "http://www.mylakelandnow.com", - "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", - "http://www.snakegetters.com", - "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", - "https://www.youtube.com/watch?v=ImOj1CKTBqE", - "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", - "http://phenomena.nationalgeographic.com", - "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg", - "http://westernmassnaturalist.org", - "https://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians" + "https://dollarvigilante.com/subscribe" + ], + "tags": [ + "money", + "gold", + "silver", + "bitcoin", + "crisis" ] }, - "created": "2016-09-15T18:19:39", - "updated": "2016-09-15T18:19:39", - "depth": 0, - "children": 6, - "net_rshares": 68620995119384, - "is_paidout": false, - "payout_at": "2016-09-16T18:44:06", - "payout": 274.438, - "pending_payout_value": "274.438 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 102136532384242, + "payout": 595.718, + "payout_at": "2016-09-22T18:23:15", + "pending_payout_value": "595.718 HBD", + "percent_hbd": 10000, + "permlink": "another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold", + "post_id": 1257023, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 387 + }, + "title": "Another Billionaire Warns of Catastrophic Depths Not Seen in 5,000 Years - and Emphasizes Gold", + "updated": "2016-09-15T18:23:15", + "url": "/money/@dollarvigilante/another-billionaire-warns-of-catastrophic-depths-not-seen-in-5-000-years-and-emphasizes-gold" + }, + { "active_votes": [ { - "voter": "smooth", - "rshares": "31307487536364" + "rshares": "31307487536364", + "voter": "smooth" }, { - "voter": "anonymous", - "rshares": "231809639013" + "rshares": "231809639013", + "voter": "anonymous" }, { - "voter": "butterfly", - "rshares": "1551268628220" + "rshares": "1551268628220", + "voter": "butterfly" }, { - "voter": "riverhead", - "rshares": "4287714457313" + "rshares": "4287714457313", + "voter": "riverhead" }, { - "voter": "badassmother", - "rshares": "1855967006728" + "rshares": "1855967006728", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2053236030423" + "rshares": "2053236030423", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1271804694676" + "rshares": "1271804694676", + "voter": "rossco99" }, { - "voter": "wang", - "rshares": "2206068741954" + "rshares": "2206068741954", + "voter": "wang" }, { - "voter": "jaewoocho", - "rshares": "22391622942" + "rshares": "22391622942", + "voter": "jaewoocho" }, { - "voter": "joseph", - "rshares": "1534654466021" + "rshares": "1534654466021", + "voter": "joseph" }, { - "voter": "recursive2", - "rshares": "466132509421" + "rshares": "466132509421", + "voter": "recursive2" }, { - "voter": "recursive3", - "rshares": "452874558937" + "rshares": "452874558937", + "voter": "recursive3" }, { - "voter": "masteryoda", - "rshares": "636519834128" + "rshares": "636519834128", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120576239931" + "rshares": "3120576239931", + "voter": "recursive" }, { - "voter": "smooth.witness", - "rshares": "5942254587236" + "rshares": "5942254587236", + "voter": "smooth.witness" }, { - "voter": "idol", - "rshares": "8927291120" + "rshares": "8927291120", + "voter": "idol" }, { - "voter": "steemrollin", - "rshares": "800066797130" + "rshares": "800066797130", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "4941942978" + "rshares": "4941942978", + "voter": "sakr" }, { - "voter": "chitty", - "rshares": "284401462010" + "rshares": "284401462010", + "voter": "chitty" }, { - "voter": "unosuke", - "rshares": "75736848691" + "rshares": "75736848691", + "voter": "unosuke" }, { - "voter": "noaommerrr", - "rshares": "481790356914" + "rshares": "481790356914", + "voter": "noaommerrr" }, { - "voter": "jocelyn", - "rshares": "1536592488" + "rshares": "1536592488", + "voter": "jocelyn" }, { - "voter": "acidsun", - "rshares": "85270554570" + "rshares": "85270554570", + "voter": "acidsun" }, { - "voter": "gregory-f", - "rshares": "14502980866" + "rshares": "14502980866", + "voter": "gregory-f" }, { - "voter": "edgeland", - "rshares": "154334962550" + "rshares": "154334962550", + "voter": "edgeland" }, { - "voter": "gregory60", - "rshares": "9028550345" + "rshares": "9028550345", + "voter": "gregory60" }, { - "voter": "gavvet", - "rshares": "1196485708874" + "rshares": "1196485708874", + "voter": "gavvet" }, { - "voter": "eeks", - "rshares": "89897944197" + "rshares": "89897944197", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1511911763" + "rshares": "1511911763", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "122160437" + "rshares": "122160437", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "1471747302" + "rshares": "1471747302", + "voter": "spaninv" }, { - "voter": "elishagh1", - "rshares": "1987313581" + "rshares": "1987313581", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7803257741" + "rshares": "7803257741", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "584279800798" + "rshares": "584279800798", + "voter": "nanzo-scoop" }, { - "voter": "kefkius", - "rshares": "9857825141" + "rshares": "9857825141", + "voter": "kefkius" }, { - "voter": "mummyimperfect", - "rshares": "177417522325" + "rshares": "177417522325", + "voter": "mummyimperfect" }, { - "voter": "alenevaa", - "rshares": "2366347863" + "rshares": "2366347863", + "voter": "alenevaa" }, { - "voter": "coar", - "rshares": "313697862" + "rshares": "313697862", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106635074770" + "rshares": "106635074770", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061264730" + "rshares": "1061264730", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "3187850436" + "rshares": "3187850436", + "voter": "cryptofunk" }, { - "voter": "kodi", - "rshares": "579494558" + "rshares": "579494558", + "voter": "kodi" }, { - "voter": "error", - "rshares": "2003359924" + "rshares": "2003359924", + "voter": "error" }, { - "voter": "andu", - "rshares": "11848125383" + "rshares": "11848125383", + "voter": "andu" }, { - "voter": "cyber", - "rshares": "970579316703" + "rshares": "970579316703", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "59952188311" + "rshares": "59952188311", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "49580154489" + "rshares": "49580154489", + "voter": "ak2020" }, { - "voter": "satoshifund", - "rshares": "3848697023555" + "rshares": "3848697023555", + "voter": "satoshifund" }, { - "voter": "applecrisp", - "rshares": "402139444" + "rshares": "402139444", + "voter": "applecrisp" }, { - "voter": "altoz", - "rshares": "35693164103" + "rshares": "35693164103", + "voter": "altoz" }, { - "voter": "stiletto", - "rshares": "95314034" + "rshares": "95314034", + "voter": "stiletto" }, { - "voter": "will-zewe", - "rshares": "219283354085" + "rshares": "219283354085", + "voter": "will-zewe" }, { - "voter": "lindee-hamner", - "rshares": "12241505540" + "rshares": "12241505540", + "voter": "lindee-hamner" }, { - "voter": "zakharya", - "rshares": "15787522491" + "rshares": "15787522491", + "voter": "zakharya" }, { - "voter": "trogdor", - "rshares": "275008585094" + "rshares": "275008585094", + "voter": "trogdor" }, { - "voter": "tee-em", - "rshares": "5047464747" + "rshares": "5047464747", + "voter": "tee-em" }, { - "voter": "mark-waser", - "rshares": "5821262190" + "rshares": "5821262190", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "118356217412" + "rshares": "118356217412", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "16027781644" + "rshares": "16027781644", + "voter": "kimziv" }, { - "voter": "honeythief", - "rshares": "45359587433" + "rshares": "45359587433", + "voter": "honeythief" }, { - "voter": "emily-cook", - "rshares": "75333038089" + "rshares": "75333038089", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187607792" + "rshares": "2187607792", + "voter": "superfreek" }, { - "voter": "grey580", - "rshares": "17557768630" + "rshares": "17557768630", + "voter": "grey580" }, { - "voter": "ladyclair", - "rshares": "275327756" + "rshares": "275327756", + "voter": "ladyclair" }, { - "voter": "michaellamden68", - "rshares": "3898829337" + "rshares": "3898829337", + "voter": "michaellamden68" }, { - "voter": "thebatchman", - "rshares": "19975706505" + "rshares": "19975706505", + "voter": "thebatchman" }, { - "voter": "orly", - "rshares": "3350419346" + "rshares": "3350419346", + "voter": "orly" }, { - "voter": "riscadox", - "rshares": "5271030976" + "rshares": "5271030976", + "voter": "riscadox" }, { - "voter": "furion", - "rshares": "7380892516" + "rshares": "7380892516", + "voter": "furion" }, { - "voter": "cdubendo", - "rshares": "105911917280" + "rshares": "105911917280", + "voter": "cdubendo" }, { - "voter": "jacor", - "rshares": "156249887947" + "rshares": "156249887947", + "voter": "jacor" }, { - "voter": "steem1653", - "rshares": "2632460141" + "rshares": "2632460141", + "voter": "steem1653" }, { - "voter": "cynetyc", - "rshares": "136322030" + "rshares": "136322030", + "voter": "cynetyc" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "thegoodguy", - "rshares": "5250179537" + "rshares": "5250179537", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "14168005907" + "rshares": "14168005907", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209533734" + "rshares": "4209533734", + "voter": "karen13" }, { - "voter": "noodhoog", - "rshares": "8751103405" + "rshares": "8751103405", + "voter": "noodhoog" }, { - "voter": "hyiparena", - "rshares": "8164924332" + "rshares": "8164924332", + "voter": "hyiparena" }, { - "voter": "milestone", - "rshares": "46859060143" + "rshares": "46859060143", + "voter": "milestone" }, { - "voter": "artific", - "rshares": "21565632626" + "rshares": "21565632626", + "voter": "artific" }, { - "voter": "creemej", - "rshares": "33739169732" + "rshares": "33739169732", + "voter": "creemej" }, { - "voter": "nippel66", - "rshares": "15378221086" + "rshares": "15378221086", + "voter": "nippel66" }, { - "voter": "blueorgy", - "rshares": "163325751551" + "rshares": "163325751551", + "voter": "blueorgy" }, { - "voter": "benjiberigan", - "rshares": "13373880577" + "rshares": "13373880577", + "voter": "benjiberigan" }, { - "voter": "poseidon", - "rshares": "349618451" + "rshares": "349618451", + "voter": "poseidon" }, { - "voter": "smolalit", - "rshares": "7946812357" + "rshares": "7946812357", + "voter": "smolalit" }, { - "voter": "simon.braki.love", - "rshares": "3365797955" + "rshares": "3365797955", + "voter": "simon.braki.love" }, { - "voter": "sharker", - "rshares": "5609578664" + "rshares": "5609578664", + "voter": "sharker" }, { - "voter": "jl777", - "rshares": "204618396015" + "rshares": "204618396015", + "voter": "jl777" }, { - "voter": "oecp85", - "rshares": "1114903893" + "rshares": "1114903893", + "voter": "oecp85" }, { - "voter": "victoria2002", - "rshares": "1218867625" + "rshares": "1218867625", + "voter": "victoria2002" }, { - "voter": "positive", - "rshares": "1226120506" + "rshares": "1226120506", + "voter": "positive" }, { - "voter": "yarly", - "rshares": "1809205777" + "rshares": "1809205777", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "272641013" + "rshares": "272641013", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "273048922" + "rshares": "273048922", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "157733805" + "rshares": "157733805", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "158624349" + "rshares": "158624349", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "90416287" + "rshares": "90416287", + "voter": "yarly7" }, { - "voter": "steemchain", - "rshares": "50626015" + "rshares": "50626015", + "voter": "steemchain" }, { - "voter": "proto", - "rshares": "17267341753" + "rshares": "17267341753", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "2708629529" + "rshares": "2708629529", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "437620869" + "rshares": "437620869", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "234191245" + "rshares": "234191245", + "voter": "yarly11" }, { - "voter": "royalmacro", - "rshares": "8781903824" + "rshares": "8781903824", + "voter": "royalmacro" }, { - "voter": "yarly12", - "rshares": "81879061" + "rshares": "81879061", + "voter": "yarly12" }, { - "voter": "steemster1", - "rshares": "146224042" + "rshares": "146224042", + "voter": "steemster1" }, { - "voter": "dmilash", - "rshares": "3022447454" + "rshares": "3022447454", + "voter": "dmilash" }, { - "voter": "glitterpig", - "rshares": "3353991305" + "rshares": "3353991305", + "voter": "glitterpig" }, { - "voter": "taker", - "rshares": "8734185109" + "rshares": "8734185109", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "7825324952" + "rshares": "7825324952", + "voter": "nekromarinist" }, { - "voter": "sharon", - "rshares": "57873464" + "rshares": "57873464", + "voter": "sharon" }, { - "voter": "lillianjones", - "rshares": "58971492" + "rshares": "58971492", + "voter": "lillianjones" }, { - "voter": "laonie", - "rshares": "95786319596" + "rshares": "95786319596", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "153264363976" + "rshares": "153264363976", + "voter": "twinner" }, { - "voter": "laoyao", - "rshares": "24562882668" + "rshares": "24562882668", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "2664979204" + "rshares": "2664979204", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "19443061295" + "rshares": "19443061295", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "726959262" + "rshares": "726959262", + "voter": "flysaga" }, { - "voter": "asdes", - "rshares": "7707314246" + "rshares": "7707314246", + "voter": "asdes" }, { - "voter": "gmurph", - "rshares": "2501638608" + "rshares": "2501638608", + "voter": "gmurph" }, { - "voter": "stormblaze", - "rshares": "1693568633" + "rshares": "1693568633", + "voter": "stormblaze" }, { - "voter": "denn", - "rshares": "5558177167" + "rshares": "5558177167", + "voter": "denn" }, { - "voter": "midnightoil", - "rshares": "4295114546" + "rshares": "4295114546", + "voter": "midnightoil" }, { - "voter": "kurtbeil", - "rshares": "3157785139" + "rshares": "3157785139", + "voter": "kurtbeil" }, { - "voter": "xiaohui", - "rshares": "10742990382" + "rshares": "10742990382", + "voter": "xiaohui" }, { - "voter": "zahar", - "rshares": "67965196" + "rshares": "67965196", + "voter": "zahar" }, { - "voter": "elfkitchen", - "rshares": "485140088" + "rshares": "485140088", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "99935909954" + "rshares": "99935909954", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5855738054" + "rshares": "5855738054", + "voter": "oflyhigh" }, { - "voter": "randyclemens", - "rshares": "15549176040" + "rshares": "15549176040", + "voter": "randyclemens" }, { - "voter": "dims", - "rshares": "79785139" + "rshares": "79785139", + "voter": "dims" }, { - "voter": "xiaokongcom", - "rshares": "335856762" + "rshares": "335856762", + "voter": "xiaokongcom" }, { - "voter": "future24", - "rshares": "1446509276" + "rshares": "1446509276", + "voter": "future24" }, { - "voter": "msjennifer", - "rshares": "60819615" + "rshares": "60819615", + "voter": "msjennifer" }, { - "voter": "ciao", - "rshares": "54654502" + "rshares": "54654502", + "voter": "ciao" }, { - "voter": "cristi", - "rshares": "13254585210" + "rshares": "13254585210", + "voter": "cristi" }, { - "voter": "steemo", - "rshares": "54217761" + "rshares": "54217761", + "voter": "steemo" }, { - "voter": "xianjun", - "rshares": "677027684" + "rshares": "677027684", + "voter": "xianjun" }, { - "voter": "steema", - "rshares": "54077897" + "rshares": "54077897", + "voter": "steema" }, { - "voter": "sijoittaja", - "rshares": "72192938" + "rshares": "72192938", + "voter": "sijoittaja" }, { - "voter": "confucius", - "rshares": "69662169" + "rshares": "69662169", + "voter": "confucius" }, { - "voter": "miacats", - "rshares": "93807196108" + "rshares": "93807196108", + "voter": "miacats" }, { - "voter": "jarvis", - "rshares": "54909929" + "rshares": "54909929", + "voter": "jarvis" }, { - "voter": "razberrijam", - "rshares": "74131936" + "rshares": "74131936", + "voter": "razberrijam" }, { - "voter": "fortuner", - "rshares": "53106127" + "rshares": "53106127", + "voter": "fortuner" }, { - "voter": "chinadaily", - "rshares": "2022702929" + "rshares": "2022702929", + "voter": "chinadaily" }, { - "voter": "pjheinz", - "rshares": "10471074095" + "rshares": "10471074095", + "voter": "pjheinz" }, { - "voter": "pompe72", - "rshares": "86712034" + "rshares": "86712034", + "voter": "pompe72" }, { - "voter": "pollina", - "rshares": "108403024" + "rshares": "108403024", + "voter": "pollina" }, { - "voter": "johnbyrd", - "rshares": "51877132" + "rshares": "51877132", + "voter": "johnbyrd" }, { - "voter": "thomasaustin", - "rshares": "51860909" + "rshares": "51860909", + "voter": "thomasaustin" }, { - "voter": "thermor", - "rshares": "51859074" + "rshares": "51859074", + "voter": "thermor" }, { - "voter": "ficholl", - "rshares": "51870077" + "rshares": "51870077", + "voter": "ficholl" }, { - "voter": "widell", - "rshares": "51852278" + "rshares": "51852278", + "voter": "widell" }, { - "voter": "movievertigo", - "rshares": "3635091595" + "rshares": "3635091595", + "voter": "movievertigo" }, { - "voter": "revelbrooks", - "rshares": "51481279" + "rshares": "51481279", + "voter": "revelbrooks" }, { - "voter": "netaterra", - "rshares": "2982691190" + "rshares": "2982691190", + "voter": "netaterra" }, { - "voter": "andrewawerdna", - "rshares": "21980957828" + "rshares": "21980957828", + "voter": "andrewawerdna" }, { - "voter": "onetree", - "rshares": "4337454155" + "rshares": "4337454155", + "voter": "onetree" }, { - "voter": "steemitpatina", - "rshares": "4633082667" + "rshares": "4633082667", + "voter": "steemitpatina" }, { - "voter": "curpose", - "rshares": "50416427" + "rshares": "50416427", + "voter": "curpose" }, { - "voter": "dajohns1420", - "rshares": "989363278" + "rshares": "989363278", + "voter": "dajohns1420" }, { - "voter": "runridefly", - "rshares": "2196907450" + "rshares": "2196907450", + "voter": "runridefly" }, { - "voter": "funkywanderer", - "rshares": "1783693666" + "rshares": "1783693666", + "voter": "funkywanderer" }, { - "voter": "richardcrill", - "rshares": "4747321980" + "rshares": "4747321980", + "voter": "richardcrill" }, { - "voter": "jeremyfromwi", - "rshares": "2205784762" + "rshares": "2205784762", + "voter": "jeremyfromwi" }, { - "voter": "troich", - "rshares": "50588612" + "rshares": "50588612", + "voter": "troich" }, { - "voter": "nadin3", - "rshares": "4546391288" + "rshares": "4546391288", + "voter": "nadin3" }, { - "voter": "davidjkelley", - "rshares": "1625414479" + "rshares": "1625414479", + "voter": "davidjkelley" }, { - "voter": "aggroed", - "rshares": "9458733324" + "rshares": "9458733324", + "voter": "aggroed" }, { - "voter": "crion", - "rshares": "50593879" + "rshares": "50593879", + "voter": "crion" }, { - "voter": "greatness", - "rshares": "178419224" + "rshares": "178419224", + "voter": "greatness" }, { - "voter": "hitherise", - "rshares": "50271139" + "rshares": "50271139", + "voter": "hitherise" }, { - "voter": "wiss", - "rshares": "50262756" + "rshares": "50262756", + "voter": "wiss" }, { - "voter": "sponge-bob", - "rshares": "53143607139" + "rshares": "53143607139", + "voter": "sponge-bob" }, { - "voter": "digital-wisdom", - "rshares": "15571125147" + "rshares": "15571125147", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3710973264" + "rshares": "3710973264", + "voter": "ethical-ai" }, { - "voter": "stroully", - "rshares": "51033798" + "rshares": "51033798", + "voter": "stroully" }, { - "voter": "jwaser", - "rshares": "6831389463" + "rshares": "6831389463", + "voter": "jwaser" }, { - "voter": "tatianka", - "rshares": "1064809843" + "rshares": "1064809843", + "voter": "tatianka" }, { - "voter": "thadm", - "rshares": "50712038" + "rshares": "50712038", + "voter": "thadm" }, { - "voter": "prof", - "rshares": "50710305" + "rshares": "50710305", + "voter": "prof" }, { - "voter": "smisi", - "rshares": "1655277599" + "rshares": "1655277599", + "voter": "smisi" }, { - "voter": "yorsens", - "rshares": "50370757" + "rshares": "50370757", + "voter": "yorsens" }, { - "voter": "bane", - "rshares": "50065875" + "rshares": "50065875", + "voter": "bane" }, { - "voter": "vive", - "rshares": "50059754" + "rshares": "50059754", + "voter": "vive" }, { - "voter": "coad", - "rshares": "50054445" + "rshares": "50054445", + "voter": "coad" }, { - "voter": "bwaser", - "rshares": "2617343597" + "rshares": "2617343597", + "voter": "bwaser" }, { - "voter": "sofa", - "rshares": "50840303" + "rshares": "50840303", + "voter": "sofa" }, { - "voter": "panther", - "rshares": "323483227" + "rshares": "323483227", + "voter": "panther" }, { - "voter": "doggnostic", - "rshares": "53871683" + "rshares": "53871683", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "53593366" + "rshares": "53593366", + "voter": "jenny-talls" }, { - "voter": "brains", - "rshares": "54239080444" + "rshares": "54239080444", + "voter": "brains" }, { - "voter": "waldemar-kuhn", - "rshares": "50450987" + "rshares": "50450987", + "voter": "waldemar-kuhn" }, { - "voter": "ailo", - "rshares": "50933404" + "rshares": "50933404", + "voter": "ailo" }, { - "voter": "steemafon", - "rshares": "1387263917" + "rshares": "1387263917", + "voter": "steemafon" }, { - "voter": "bitcoinparadise", - "rshares": "1317649856" + "rshares": "1317649856", + "voter": "bitcoinparadise" }, { - "voter": "chick1", - "rshares": "5753524189" + "rshares": "5753524189", + "voter": "chick1" }, { - "voter": "steempowerwhale", - "rshares": "3338622584" + "rshares": "3338622584", + "voter": "steempowerwhale" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "50516543" + "rshares": "50516543", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "freebornangel", - "rshares": "62515317" + "rshares": "62515317", + "voter": "freebornangel" }, { - "voter": "anomaly", - "rshares": "271440423" + "rshares": "271440423", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401297947" + "rshares": "2401297947", + "voter": "ellepdub" }, { - "voter": "rynow", - "rshares": "120649148" + "rshares": "120649148", + "voter": "rynow" }, { - "voter": "inarix03", - "rshares": "61292139" + "rshares": "61292139", + "voter": "inarix03" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "rayzzz", - "rshares": "50583338" + "rshares": "50583338", + "voter": "rayzzz" }, { - "voter": "herpetologyguy", - "rshares": "12115690216" + "rshares": "12115690216", + "voter": "herpetologyguy" }, { - "voter": "morgan.waser", - "rshares": "4712300251" + "rshares": "4712300251", + "voter": "morgan.waser" }, { - "voter": "steemq", - "rshares": "51230296" + "rshares": "51230296", + "voter": "steemq" }, { - "voter": "motion", - "rshares": "50871059" + "rshares": "50871059", + "voter": "motion" }, { - "voter": "autodesk", - "rshares": "50794039" + "rshares": "50794039", + "voter": "autodesk" }, { - "voter": "yotoh", - "rshares": "50704078" + "rshares": "50704078", + "voter": "yotoh" }, { - "voter": "fenix", - "rshares": "50538694" + "rshares": "50538694", + "voter": "fenix" }, { - "voter": "bapparabi", - "rshares": "1921231770" + "rshares": "1921231770", + "voter": "bapparabi" }, { - "voter": "friends", - "rshares": "50532230" + "rshares": "50532230", + "voter": "friends" }, { - "voter": "albertheijn", - "rshares": "50349676" + "rshares": "50349676", + "voter": "albertheijn" }, { - "voter": "strong-ai", - "rshares": "3609651500" + "rshares": "3609651500", + "voter": "strong-ai" }, { - "voter": "grisha-danunaher", - "rshares": "516546553" + "rshares": "516546553", + "voter": "grisha-danunaher" }, { - "voter": "igtes", - "rshares": "71207873" + "rshares": "71207873", + "voter": "igtes" }, { - "voter": "buffett", - "rshares": "141679752" + "rshares": "141679752", + "voter": "buffett" }, { - "voter": "sjamayee", - "rshares": "213848535" + "rshares": "213848535", + "voter": "sjamayee" }, { - "voter": "witchcraftblog", - "rshares": "453506109" + "rshares": "453506109", + "voter": "witchcraftblog" }, { - "voter": "zaitsevalesyaa", - "rshares": "3265972001" + "rshares": "3265972001", + "voter": "zaitsevalesyaa" }, { - "voter": "acute", - "rshares": "161205518" + "rshares": "161205518", + "voter": "acute" }, { - "voter": "bethesda", - "rshares": "161179339" + "rshares": "161179339", + "voter": "bethesda" }, { - "voter": "realtime", - "rshares": "160957729" + "rshares": "160957729", + "voter": "realtime" }, { - "voter": "dresden", - "rshares": "7187212765" + "rshares": "7187212765", + "voter": "dresden" }, { - "voter": "mgibson", - "rshares": "212371776" + "rshares": "212371776", + "voter": "mgibson" }, { - "voter": "capcom", - "rshares": "156837244" + "rshares": "156837244", + "voter": "capcom" }, { - "voter": "greenpeace", - "rshares": "159506164" + "rshares": "159506164", + "voter": "greenpeace" }, { - "voter": "panic", - "rshares": "159352476" + "rshares": "159352476", + "voter": "panic" }, { - "voter": "fallout", - "rshares": "156054487" + "rshares": "156054487", + "voter": "fallout" }, { - "voter": "xtreme", - "rshares": "159025535" + "rshares": "159025535", + "voter": "xtreme" }, { - "voter": "modernbukowski", - "rshares": "1473342460" + "rshares": "1473342460", + "voter": "modernbukowski" }, { - "voter": "citigroup", - "rshares": "158541985" + "rshares": "158541985", + "voter": "citigroup" }, { - "voter": "goldmatters", - "rshares": "30995434343" + "rshares": "30995434343", + "voter": "goldmatters" }, { - "voter": "dealzgal", - "rshares": "71727340" + "rshares": "71727340", + "voter": "dealzgal" }, { - "voter": "storage", - "rshares": "64921864" + "rshares": "64921864", + "voter": "storage" }, { - "voter": "risabold", - "rshares": "298391608" + "rshares": "298391608", + "voter": "risabold" }, { - "voter": "blackmarket", - "rshares": "55383257" + "rshares": "55383257", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "58454327" + "rshares": "58454327", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "93882016" + "rshares": "93882016", + "voter": "expat" }, { - "voter": "toddemaher1", - "rshares": "126595034" + "rshares": "126595034", + "voter": "toddemaher1" } ], + "author": "gavvet", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 247, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/herpetology/@gavvet/why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", - "blacklists": [] - }, - { - "post_id": 960430, - "author": "juanmiguelsalas", - "permlink": "how-the-number-pi-sounds-on-a-piano", - "category": "music", - "title": "How The Number Pi Sounds On A Piano?", - "body": "### Have you ever wondered how the number Pi sounds in a piano? \nBecause the musician David Macdonald recorded it with an accuracy of 122 digits after the decimal point. Sounds pretty cool.\n\n
https://youtu.be/wM-x3pUcdeo \n\n
", + "blacklists": [], + "body": "@herpetologyguy\n\nOne of my many tasks as a zoo keeper is connecting people to animals. \n-\n\n\n\n

The museum I work at is unique because we showcase animals that are native to Virginia -- meaning that these are animals people will find close to home, rather than across the ocean in some distant country. This makes my job more crucial in that I am responsible for educating people about the reptiles and amphibians that they will find in their own backyards. And obviously, there\u2019s one group of reptiles that gives people more pause than almost any other animal . . . . 

\n

Snakes. 

\n

http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj   Picture Credit

\n

I do public programs featuring snakes quite frequently.  I believe people should know how to identify local venomous/non-venomous snakes, their role in the environment and how to deal with them when they are in close proximity to our homes.  Usually, I get eager audiences asking great questions.  But, every now and then, I get some idiot who tells me, \u201cI saw that same snake in my backyard! I chopped off its head with a shovel!\u201d

\n

Are they an idiot for killing the snake?  Not necessarily . . . I don\u2019t know the situation behind the encounter. But, only an idiot would walk into a wildlife facility, approach a zoo keeper and proudly declare that they kill the very same animals that the keeper is charged with the care for.  Would you walk into an animal shelter and tell someone working there that you enjoy stomping on puppies?  To us, there\u2019s not much difference\u2026 

\n

http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png   Picture Credit\n

\n

The best we can do in these situations is to try to educate people. This can be difficult because so many people are set in their ways -- plus we have to combat an instinctive fear and prejudice against snakes.  So, I\u2019m going to briefly lay it all out for you and tell you \"Why you shouldn\u2019t kill that snake in your yard.\" 

\n

http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg   Picture Credit

\n

1.  It\u2019s ILLEGAL in most states to kill a wild snake, unless that snake presents an IMMEDIATE threat.  And no, a snake crawling through your yard does not represent a good enough excuse to use force.  We\u2019re talking about a situation where a venomous snake is about to strike and you have no escape route but to fight your way out.  And guess what, that really doesn\u2019t ever happen (barring instances where someone purposefully provokes an animal).  Wildlife and law enforcement agencies are cracking down on people killing snakes, so it\u2019s better to keep yourself out of trouble. 

\n

http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg   Picture Credit

\n

2.  You are putting yourself in harm\u2019s way.  The vast majority of snake bites occur when people attempt to capture or kill snakes.  If left alone, the snake CANNOT hurt you.  Call wildlife services or trained professionals to remove the animal. 

\n

http://www.snakegetters.com/demo/bud-cotton-gg.jpg   Picture Credit

\n

3.  It\u2019s an incredibly beneficial animal, and you\u2019d be foolish to kill it.  Small snakes eat a huge variety of pest insects that destroy gardens, while large snakes typically feed on rats and other rodents that infest our homes.  If you see a large snake hanging around, you have a rodent problem; snakes will not hang around if there is no food source.  To keep snakes from being attracted to your property, do your best to remove any shelter or food sources that would attract rodents.  Some snakes even eat other snakes, and species like the harmless king snake will even feed on venomous species! 

\n

https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg   Picture Credit

\n

4.  Another snake might show up.  Snakes will not typically inhabit the same area in order to avoid competition.  If you kill that harmless rat snake, but you still have a food source nearby, another snake may move in to make use of that source.  The new snake may be another harmless species or something a bit less desirable.  So why not let that harmless snake take care of the infestation for you?

\n

http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg   Picture Credit

\n

Having a snake around can be hugely beneficial to you.  It is a free, environmentally-safe form of pest control.  Snakes, including venomous species, are non-aggressive animals (unless you provoke them) that will actively do their best to AVOID people.  A resident snake will often go unnoticed by homeowners, and most encounters are fleeting glimpses of the snake making a hasty escape.  Remember that snakes have their own unique role in the environment, and regardless of our own fears and feelings towards them, they are a necessary part of life. 

\n

   http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg   Picture Credit

\n\n\nif you liked this also please check out:\nhttps://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians\n\n\n***don't forget to follow @herpetologyguy***", + "category": "herpetology", + "children": 6, + "created": "2016-09-15T18:19:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "music", - "popularscience", - "science", - "art", - "math" - ], "image": [ - "https://img.youtube.com/vi/wM-x3pUcdeo/0.jpg" + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg" ], "links": [ - "https://youtu.be/wM-x3pUcdeo" + "http://www.sciencemag.org/sites/default/files/styles/article_main_large/public/images/snake_0.jpg?itok=rxQ1zXVj", + "http://www.sciencemag.org", + "http://proactivepestga.com/wp-content/uploads/2014/11/killthesnake.png", + "http://proactivepestga.com", + "http://blogs.discovermagazine.com/science-sushi/files/2016/04/hognose_2-1024x683.jpg", + "http://blogs.discovermagazine.com", + "http://www.mylakelandnow.com/wp-content/uploads/2016/02/arrest-handcuffs-male.jpg", + "http://www.mylakelandnow.com", + "http://www.snakegetters.com/demo/bud-cotton-gg.jpg", + "http://www.snakegetters.com", + "https://i.ytimg.com/vi/ImOj1CKTBqE/maxresdefault.jpg", + "https://www.youtube.com/watch?v=ImOj1CKTBqE", + "http://phenomena.nationalgeographic.com/files/2014/09/Smooth-snake-660x405.jpg", + "http://phenomena.nationalgeographic.com", + "http://westernmassnaturalist.org/_Media/ratsnake-face-1_med_hr-2.jpeg", + "http://westernmassnaturalist.org", + "https://steemit.com/science/@herpetologyguy/what-are-herptiles-indentifying-reptiles-vs-amphibians" + ], + "tags": [ + "herpetology", + "reptiles", + "snakes", + "science" + ], + "users": [ + "herpetologyguy" ] }, - "created": "2016-09-15T18:40:30", - "updated": "2016-09-15T18:40:30", - "depth": 0, - "children": 0, - "net_rshares": 43578994795442, - "is_paidout": false, - "payout_at": "2016-09-16T19:25:21", - "payout": 114.187, - "pending_payout_value": "114.187 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 68620995119384, + "payout": 274.303, + "payout_at": "2016-09-22T18:19:39", + "pending_payout_value": "274.303 HBD", + "percent_hbd": 10000, + "permlink": "why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author", + "post_id": 1256988, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 247 + }, + "title": "Why You Don\u2019t Want to Kill that Snake in Your Yard (featuring @herpetologyguy as author)", + "updated": "2016-09-15T18:19:39", + "url": "/herpetology/@gavvet/why-you-don-t-want-to-kill-that-snake-in-your-yard-featuring-herpetologyguy-as-author" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231813287435" + "rshares": "231813287435", + "voter": "anonymous" }, { - "voter": "blocktrades", - "rshares": "39227911522287" + "rshares": "39227911522287", + "voter": "blocktrades" }, { - "voter": "riverhead", - "rshares": "3981536804873" + "rshares": "3981536804873", + "voter": "riverhead" }, { - "voter": "richman", - "rshares": "7803257741" + "rshares": "7803257741", + "voter": "richman" }, { - "voter": "juanmiguelsalas", - "rshares": "55577392625" + "rshares": "55577392625", + "voter": "juanmiguelsalas" }, { - "voter": "skapaneas", - "rshares": "20193334739" + "rshares": "20193334739", + "voter": "skapaneas" }, { - "voter": "fabio", - "rshares": "53411211689" + "rshares": "53411211689", + "voter": "fabio" }, { - "voter": "hobgoblin", - "rshares": "131247634" + "rshares": "131247634", + "voter": "hobgoblin" }, { - "voter": "pompe72", - "rshares": "90251300" + "rshares": "90251300", + "voter": "pompe72" }, { - "voter": "uri-bruck", - "rshares": "62828027" + "rshares": "62828027", + "voter": "uri-bruck" }, { - "voter": "roadhog", - "rshares": "55070425" + "rshares": "55070425", + "voter": "roadhog" }, { - "voter": "doggnostic", - "rshares": "52794249" + "rshares": "52794249", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "52521499" + "rshares": "52521499", + "voter": "jenny-talls" }, { - "voter": "post-successful", - "rshares": "54483699" + "rshares": "54483699", + "voter": "post-successful" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "creativecasualty", - "rshares": "150210020" + "rshares": "150210020", + "voter": "creativecasualty" } ], + "author": "juanmiguelsalas", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 16, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/music/@juanmiguelsalas/how-the-number-pi-sounds-on-a-piano", - "blacklists": [] - }, - { - "post_id": 960450, - "author": "jackgallenhall", - "permlink": "how-to-make-paper-flowers", - "category": "paper", - "title": "How to make Paper Flowers", - "body": "\n

Watching this video and Enjoy.....

\n

https://youtu.be/tP1qbGrMDt8

\n", + "blacklists": [], + "body": "### Have you ever wondered how the number Pi sounds in a piano? \nBecause the musician David Macdonald recorded it with an accuracy of 122 digits after the decimal point. Sounds pretty cool.\n\n
https://youtu.be/wM-x3pUcdeo \n\n
", + "category": "music", + "children": 0, + "created": "2016-09-15T18:40:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "paper", - "flowers" - ], "image": [ - "https://img.youtube.com/vi/tP1qbGrMDt8/0.jpg" + "https://img.youtube.com/vi/wM-x3pUcdeo/0.jpg" ], "links": [ - "https://youtu.be/tP1qbGrMDt8" + "https://youtu.be/wM-x3pUcdeo" + ], + "tags": [ + "music", + "popularscience", + "science", + "art", + "math" ] }, - "created": "2016-09-15T18:42:18", - "updated": "2016-09-15T18:42:18", - "depth": 0, - "children": 0, - "net_rshares": 39465229203961, - "is_paidout": false, - "payout_at": "2016-09-16T19:32:11", - "payout": 94.467, - "pending_payout_value": "94.467 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 43578994795442, + "payout": 113.952, + "payout_at": "2016-09-22T18:40:30", + "pending_payout_value": "113.952 HBD", + "percent_hbd": 10000, + "permlink": "how-the-number-pi-sounds-on-a-piano", + "post_id": 1257190, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 16 + }, + "title": "How The Number Pi Sounds On A Piano?", + "updated": "2016-09-15T18:40:30", + "url": "/music/@juanmiguelsalas/how-the-number-pi-sounds-on-a-piano" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231815339768" + "rshares": "231815339768", + "voter": "anonymous" }, { - "voter": "blocktrades", - "rshares": "39228026877320" + "rshares": "39228026877320", + "voter": "blocktrades" }, { - "voter": "jackgallenhall", - "rshares": "1937028254" + "rshares": "1937028254", + "voter": "jackgallenhall" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "zaitsevalesyaa", - "rshares": "3200652561" + "rshares": "3200652561", + "voter": "zaitsevalesyaa" }, { - "voter": "alexandrapop", - "rshares": "150728858" + "rshares": "150728858", + "voter": "alexandrapop" } ], + "author": "jackgallenhall", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 6, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/paper/@jackgallenhall/how-to-make-paper-flowers", - "blacklists": [] - }, - { - "post_id": 960970, - "author": "charlieshrem", - "permlink": "mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem", - "category": "story", - "title": "MackerelCoin & My Socioeconomic Observations from Prison (Part 1 by Charlie Shrem)", - "body": "[![1427721443457173 (1).jpg](https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg)](https://postimg.org/image/5bg38xjjr/)\n\nThe day I went to prison I published an article Bitcoin for Prison. While I didn't get to read or see the article until someone mailed me a physical copy, I found out that my article had started a number of discussions and follow-on commentary.\n\nDuring my stay at Lewisburg Federal Prison Camp I observed many economic theories put into effect by inmates and the prison administration, including Gresham's law, hyperinflation, currency exchange, and others.\n\nThere are two markets in prison, the \"Administration Run Market\" (ARM) and the \"Inmate Run Market\" (IRM). \n\nFor the ARM, family and friends can add money to your account through Western Union, MoneyGram, or mailing a check. These funds get added to your account fairly quickly and can be used almost immediately, however with a strict spending limit. You get 300 minutes of phone use per month for about $70, and email costs about $0.05 a minute and is only available at specific times to specific people. Once a week you can shop in the commissary with a $360 a month spending limit. Further, certain products have limits of how much you can buy, for example the Mackerel (described below). Alternatively, the IRM is where you can buy sandwiches, wraps, pizzas, Italian ices, hire a personal trainer, get a haircut, pay someone to clean your cube, repair a watch, even inmate run caterers for your birthday or going home party. Additionally there were inmate run 'stores' which sold commissary items at a markup since you could only commissary shop once a week.\n\n[![mackerel-203x300.png](https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png)](https://postimg.org/image/iu6qq6eb9/)\n\nThe Mackerel (meaning literal packets of fish) is one of the competing currencies in the IRM. It has utility by being one of the best sources of protein on the compound. You can save it for a long time, the shelf life is a few years. The price is relatively the same across all prisons in the country, so even if you transfer prisons your property comes with you, including your Mackerel which is worth the same somewhere else. Unlike tunafish, chicken packets and protein bars, more people eat Mackerel. Those other food items can be used as currency as well, for example the guy who fixes your watch may only accept protein bars because he hates fish. There was even a form of digital currency being used, which I will discuss in another post.\n\n[![pzyQaHU.png](https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png)](https://postimg.org/image/nfj3tkh87/)\n\nUtility and medium of exchange give it some value but what about scarcity ? If there is a virtually unlimited amount of Mackerel in the IRM, just like the Federal Reserve printing money, there is no scarcity and hyperinflation can occure if it is debased. \n\nUsing a simple equation, 467 (Number of Inmates) * 14 (Maximum Quantity Allowed to Purchase Per Inmate) * 52 (weeks, assuming every inmate buys the maximum mount of Mackerel every week)\n\nSo if in 2015 we assume that the Supply and Velocity grows at the exact same rate with the Price Level and Transactions unchanging, the amount of Mackerel would essentially double on an even inflation rate. This does not factor in the 3 year shelf life, where expired Mackerel becomes a secondary currency. I will discuss in my next post. \n\nI like to believe that the value of money is determined also psychological factors, like a commodity and not only by mechanical or mathematical factors. In prison many of these psychological factors come into play.\n\n[![1867-1967-Ten-10¢-Cents-Commemorative-Centennial.jpg](https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg)](https://postimg.org/image/ceiwrfinr/)\n\nMost people use Mackerel as a day-to-day currency for normal transactions, but for reasons I will explain in my next post, they are not the best long term store of value which is important for a currency. For longer term store of value, many inmates use stamps. Stamps have a set rate by the United States Postal Service and have similar characteristics as Mackerel aside for being edible. However, with the introduction of email on the compound many people stopped writing letters as email is cheaper and faster therefore reducing stamps ability to be a transactional currency as a majority of the inmates have no use for them. As a store of value they still hold weight because they are small and easy to store large amounts, while Mackerel is not.\n\nThe biggest value stamps have is that they can be mailed home and your family can redeem them for dollars as the local post office, but that feature can be stopped by better mail screening and overnight the stamp could lose its store of value utility. \n\nIn my next post I will discuss how currency exchangers work, what happens when the prison administration purposely floods the market, and how a secondary currency was created out of expired Mackerel called “Money Maks”", + "blacklists": [], + "body": "\n

Watching this video and Enjoy.....

\n

https://youtu.be/tP1qbGrMDt8

\n", + "category": "paper", + "children": 0, + "created": "2016-09-15T18:42:18", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "story", - "life", - "bitcoin" - ], "image": [ - "https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg", - "https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png", - "https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png", - "https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg" + "https://img.youtube.com/vi/tP1qbGrMDt8/0.jpg" ], "links": [ - "https://postimg.org/image/5bg38xjjr/", - "https://postimg.org/image/iu6qq6eb9/", - "https://postimg.org/image/nfj3tkh87/", - "https://postimg.org/image/ceiwrfinr/" + "https://youtu.be/tP1qbGrMDt8" + ], + "tags": [ + "paper", + "flowers" ] }, - "created": "2016-09-15T19:39:15", - "updated": "2016-09-15T19:39:15", - "depth": 0, - "children": 2, - "net_rshares": 16647533396431, - "is_paidout": false, - "payout_at": "2016-09-16T19:42:59", - "payout": 18.929, - "pending_payout_value": "18.929 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 39465229203961, + "payout": 94.307, + "payout_at": "2016-09-22T18:42:18", + "pending_payout_value": "94.307 HBD", + "percent_hbd": 10000, + "permlink": "how-to-make-paper-flowers", + "post_id": 1257217, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 6 + }, + "title": "How to make Paper Flowers", + "updated": "2016-09-15T18:42:18", + "url": "/paper/@jackgallenhall/how-to-make-paper-flowers" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231815399848" + "rshares": "231815399848", + "voter": "anonymous" }, { - "voter": "badassmother", - "rshares": "1856124515188" + "rshares": "1856124515188", + "voter": "badassmother" }, { - "voter": "xeroc", - "rshares": "1950776472028" + "rshares": "1950776472028", + "voter": "xeroc" }, { - "voter": "recursive2", - "rshares": "466189427281" + "rshares": "466189427281", + "voter": "recursive2" }, { - "voter": "lee2", - "rshares": "440845842" + "rshares": "440845842", + "voter": "lee2" }, { - "voter": "lee3", - "rshares": "26932369613" + "rshares": "26932369613", + "voter": "lee3" }, { - "voter": "lee4", - "rshares": "8677356665" + "rshares": "8677356665", + "voter": "lee4" }, { - "voter": "lee5", - "rshares": "22149156424" + "rshares": "22149156424", + "voter": "lee5" }, { - "voter": "fkn", - "rshares": "24694558802" + "rshares": "24694558802", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "468295495" + "rshares": "468295495", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "5641891453" + "rshares": "5641891453", + "voter": "spaninv" }, { - "voter": "instructor2121", - "rshares": "31733693573" + "rshares": "31733693573", + "voter": "instructor2121" }, { - "voter": "teamsteem", - "rshares": "319978787382" + "rshares": "319978787382", + "voter": "teamsteem" }, { - "voter": "elishagh1", - "rshares": "32459455171" + "rshares": "32459455171", + "voter": "elishagh1" }, { - "voter": "nanzo-scoop", - "rshares": "584301957019" + "rshares": "584301957019", + "voter": "nanzo-scoop" }, { - "voter": "steve-walschot", - "rshares": "183455862202" + "rshares": "183455862202", + "voter": "steve-walschot" }, { - "voter": "mummyimperfect", - "rshares": "177422979921" + "rshares": "177422979921", + "voter": "mummyimperfect" }, { - "voter": "murh", - "rshares": "1061309796" + "rshares": "1061309796", + "voter": "murh" }, { - "voter": "ranko-k", - "rshares": "40553528416" + "rshares": "40553528416", + "voter": "ranko-k" }, { - "voter": "cyber", - "rshares": "970610699889" + "rshares": "970610699889", + "voter": "cyber" }, { - "voter": "ak2020", - "rshares": "49581638772" + "rshares": "49581638772", + "voter": "ak2020" }, { - "voter": "justtryme90", - "rshares": "61303208719" + "rshares": "61303208719", + "voter": "justtryme90" }, { - "voter": "drinkzya", - "rshares": "35244223389" + "rshares": "35244223389", + "voter": "drinkzya" }, { - "voter": "satoshifund", - "rshares": "3848697023555" + "rshares": "3848697023555", + "voter": "satoshifund" }, { - "voter": "stiletto", - "rshares": "365370465" + "rshares": "365370465", + "voter": "stiletto" }, { - "voter": "thecryptodrive", - "rshares": "55960464168" + "rshares": "55960464168", + "voter": "thecryptodrive" }, { - "voter": "trogdor", - "rshares": "275083790158" + "rshares": "275083790158", + "voter": "trogdor" }, { - "voter": "tee-em", - "rshares": "5047565689" + "rshares": "5047565689", + "voter": "tee-em" }, { - "voter": "michaelx", - "rshares": "31346657524" + "rshares": "31346657524", + "voter": "michaelx" }, { - "voter": "kimziv", - "rshares": "203028922423" + "rshares": "203028922423", + "voter": "kimziv" }, { - "voter": "honeythief", - "rshares": "45359587433" + "rshares": "45359587433", + "voter": "honeythief" }, { - "voter": "emily-cook", - "rshares": "75335893384" + "rshares": "75335893384", + "voter": "emily-cook" }, { - "voter": "cryptoiskey", - "rshares": "34073741916" + "rshares": "34073741916", + "voter": "cryptoiskey" }, { - "voter": "mrhankeh", - "rshares": "484636799" + "rshares": "484636799", + "voter": "mrhankeh" }, { - "voter": "clement", - "rshares": "36267999733" + "rshares": "36267999733", + "voter": "clement" }, { - "voter": "isteemit", - "rshares": "49807514764" + "rshares": "49807514764", + "voter": "isteemit" }, { - "voter": "bacchist", - "rshares": "68450624110" + "rshares": "68450624110", + "voter": "bacchist" }, { - "voter": "venuspcs", - "rshares": "52094130602" + "rshares": "52094130602", + "voter": "venuspcs" }, { - "voter": "roelandp", - "rshares": "462747522217" + "rshares": "462747522217", + "voter": "roelandp" }, { - "voter": "riscadox", - "rshares": "5271256317" + "rshares": "5271256317", + "voter": "riscadox" }, { - "voter": "furion", - "rshares": "118094280271" + "rshares": "118094280271", + "voter": "furion" }, { - "voter": "barbara2", - "rshares": "578386960" + "rshares": "578386960", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "642869652" + "rshares": "642869652", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "594982040" + "rshares": "594982040", + "voter": "doge4lyf" }, { - "voter": "ausbitbank", - "rshares": "14886225123" + "rshares": "14886225123", + "voter": "ausbitbank" }, { - "voter": "steem1653", - "rshares": "2531219186" + "rshares": "2531219186", + "voter": "steem1653" }, { - "voter": "anyx", - "rshares": "185306737687" + "rshares": "185306737687", + "voter": "anyx" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "thegoodguy", - "rshares": "5250267854" + "rshares": "5250267854", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "13847065167" + "rshares": "13847065167", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209550858" + "rshares": "4209550858", + "voter": "karen13" }, { - "voter": "wildchild", - "rshares": "89580632" + "rshares": "89580632", + "voter": "wildchild" }, { - "voter": "nippel66", - "rshares": "14455781997" + "rshares": "14455781997", + "voter": "nippel66" }, { - "voter": "poseidon", - "rshares": "4428694472" + "rshares": "4428694472", + "voter": "poseidon" }, { - "voter": "bitcoiner", - "rshares": "3709674578" + "rshares": "3709674578", + "voter": "bitcoiner" }, { - "voter": "zaebars", - "rshares": "30989849211" + "rshares": "30989849211", + "voter": "zaebars" }, { - "voter": "positive", - "rshares": "20026634941" + "rshares": "20026634941", + "voter": "positive" }, { - "voter": "raymonjohnstone", - "rshares": "799615699" + "rshares": "799615699", + "voter": "raymonjohnstone" }, { - "voter": "steemchain", - "rshares": "50626015" + "rshares": "50626015", + "voter": "steemchain" }, { - "voter": "sisterholics", - "rshares": "34310997040" + "rshares": "34310997040", + "voter": "sisterholics" }, { - "voter": "tygergamer", - "rshares": "4150694741" + "rshares": "4150694741", + "voter": "tygergamer" }, { - "voter": "fnait", - "rshares": "674282213" + "rshares": "674282213", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "599033376" + "rshares": "599033376", + "voter": "keepcalmand" }, { - "voter": "sisters", - "rshares": "21249911268" + "rshares": "21249911268", + "voter": "sisters" }, { - "voter": "steemdrive", - "rshares": "135241026997" + "rshares": "135241026997", + "voter": "steemdrive" }, { - "voter": "gomeravibz", - "rshares": "50580942653" + "rshares": "50580942653", + "voter": "gomeravibz" }, { - "voter": "merej99", - "rshares": "2157263872" + "rshares": "2157263872", + "voter": "merej99" }, { - "voter": "laonie", - "rshares": "1181429894047" + "rshares": "1181429894047", + "voter": "laonie" }, { - "voter": "laonie1", - "rshares": "22969530313" + "rshares": "22969530313", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "23486336661" + "rshares": "23486336661", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "23494631758" + "rshares": "23494631758", + "voter": "laonie3" }, { - "voter": "myfirst", - "rshares": "41308723727" + "rshares": "41308723727", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "246291037911" + "rshares": "246291037911", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "9208584487" + "rshares": "9208584487", + "voter": "flysaga" }, { - "voter": "brendio", - "rshares": "5831884826" + "rshares": "5831884826", + "voter": "brendio" }, { - "voter": "midnightoil", - "rshares": "54407421509" + "rshares": "54407421509", + "voter": "midnightoil" }, { - "voter": "ullikume", - "rshares": "4190432650" + "rshares": "4190432650", + "voter": "ullikume" }, { - "voter": "marinaz", - "rshares": "538023492" + "rshares": "538023492", + "voter": "marinaz" }, { - "voter": "michellek", - "rshares": "50577648" + "rshares": "50577648", + "voter": "michellek" }, { - "voter": "laonie4", - "rshares": "23490308796" + "rshares": "23490308796", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "23488038283" + "rshares": "23488038283", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "23485060556" + "rshares": "23485060556", + "voter": "laonie6" }, { - "voter": "laonie7", - "rshares": "23480907119" + "rshares": "23480907119", + "voter": "laonie7" }, { - "voter": "kurtbeil", - "rshares": "3157899297" + "rshares": "3157899297", + "voter": "kurtbeil" }, { - "voter": "laonie8", - "rshares": "23477459041" + "rshares": "23477459041", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "23474757706" + "rshares": "23474757706", + "voter": "laonie9" }, { - "voter": "steemleak", - "rshares": "2370331931" + "rshares": "2370331931", + "voter": "steemleak" }, { - "voter": "xiaohui", - "rshares": "136086029693" + "rshares": "136086029693", + "voter": "xiaohui" }, { - "voter": "bigsambucca", - "rshares": "88206053" + "rshares": "88206053", + "voter": "bigsambucca" }, { - "voter": "elfkitchen", - "rshares": "6630568148" + "rshares": "6630568148", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "99940391922" + "rshares": "99940391922", + "voter": "joele" }, { - "voter": "paynode", - "rshares": "2354334523" + "rshares": "2354334523", + "voter": "paynode" }, { - "voter": "xiaokongcom", - "rshares": "4254379739" + "rshares": "4254379739", + "voter": "xiaokongcom" }, { - "voter": "xianjun", - "rshares": "8576106418" + "rshares": "8576106418", + "voter": "xianjun" }, { - "voter": "stevescriber", - "rshares": "72135954" + "rshares": "72135954", + "voter": "stevescriber" }, { - "voter": "loli", - "rshares": "51247757" + "rshares": "51247757", + "voter": "loli" }, { - "voter": "nano2nd", - "rshares": "52419023" + "rshares": "52419023", + "voter": "nano2nd" }, { - "voter": "microluck", - "rshares": "576343622" + "rshares": "576343622", + "voter": "microluck" }, { - "voter": "cryptoblu", - "rshares": "60225791" + "rshares": "60225791", + "voter": "cryptoblu" }, { - "voter": "instructor", - "rshares": "60219243" + "rshares": "60219243", + "voter": "instructor" }, { - "voter": "dollarvigilante", - "rshares": "802020725261" + "rshares": "802020725261", + "voter": "dollarvigilante" }, { - "voter": "lamech-m", - "rshares": "3977281078" + "rshares": "3977281078", + "voter": "lamech-m" }, { - "voter": "laonie10", - "rshares": "23468551300" + "rshares": "23468551300", + "voter": "laonie10" }, { - "voter": "garywilson", - "rshares": "8536250240" + "rshares": "8536250240", + "voter": "garywilson" }, { - "voter": "bitchplease", - "rshares": "50829277" + "rshares": "50829277", + "voter": "bitchplease" }, { - "voter": "barrycooper", - "rshares": "99130059443" + "rshares": "99130059443", + "voter": "barrycooper" }, { - "voter": "hilarski", - "rshares": "31611733517" + "rshares": "31611733517", + "voter": "hilarski" }, { - "voter": "shadowspub", - "rshares": "2029369552" + "rshares": "2029369552", + "voter": "shadowspub" }, { - "voter": "rimann", - "rshares": "8390958262" + "rshares": "8390958262", + "voter": "rimann" }, { - "voter": "rickmiller", - "rshares": "56999917" + "rshares": "56999917", + "voter": "rickmiller" }, { - "voter": "nulliusinverba", - "rshares": "5401518277" + "rshares": "5401518277", + "voter": "nulliusinverba" }, { - "voter": "mikehere", - "rshares": "22792452702" + "rshares": "22792452702", + "voter": "mikehere" }, { - "voter": "laonie11", - "rshares": "22621847215" + "rshares": "22621847215", + "voter": "laonie11" }, { - "voter": "xanoxt", - "rshares": "3411072843" + "rshares": "3411072843", + "voter": "xanoxt" }, { - "voter": "greatness", - "rshares": "174778016" + "rshares": "174778016", + "voter": "greatness" }, { - "voter": "sponge-bob", - "rshares": "26574132419" + "rshares": "26574132419", + "voter": "sponge-bob" }, { - "voter": "l0k1", - "rshares": "4044803243" + "rshares": "4044803243", + "voter": "l0k1" }, { - "voter": "freesteem", - "rshares": "50798127" + "rshares": "50798127", + "voter": "freesteem" }, { - "voter": "zettar", - "rshares": "2353724275" + "rshares": "2353724275", + "voter": "zettar" }, { - "voter": "smisi", - "rshares": "1655277599" + "rshares": "1655277599", + "voter": "smisi" }, { - "voter": "lighter", - "rshares": "53413720" + "rshares": "53413720", + "voter": "lighter" }, { - "voter": "maarnio", - "rshares": "258239323" + "rshares": "258239323", + "voter": "maarnio" }, { - "voter": "analyzethis", - "rshares": "50931848" + "rshares": "50931848", + "voter": "analyzethis" }, { - "voter": "dexter-k", - "rshares": "5934390558" + "rshares": "5934390558", + "voter": "dexter-k" }, { - "voter": "doggnostic", - "rshares": "51716816" + "rshares": "51716816", + "voter": "doggnostic" }, { - "voter": "ct-gurus", - "rshares": "659649765" + "rshares": "659649765", + "voter": "ct-gurus" }, { - "voter": "jenny-talls", - "rshares": "51449632" + "rshares": "51449632", + "voter": "jenny-talls" }, { - "voter": "charlieshrem", - "rshares": "415654681468" + "rshares": "415654681468", + "voter": "charlieshrem" }, { - "voter": "tracemayer", - "rshares": "63546443837" + "rshares": "63546443837", + "voter": "tracemayer" }, { - "voter": "brains", - "rshares": "26568286493" + "rshares": "26568286493", + "voter": "brains" }, { - "voter": "alwayzgame", - "rshares": "1702730509" + "rshares": "1702730509", + "voter": "alwayzgame" }, { - "voter": "bitcoinparadise", - "rshares": "1282974860" + "rshares": "1282974860", + "voter": "bitcoinparadise" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "steemsquad", - "rshares": "2127783725" + "rshares": "2127783725", + "voter": "steemsquad" }, { - "voter": "inarix03", - "rshares": "61292139" + "rshares": "61292139", + "voter": "inarix03" }, { - "voter": "littlemorelove", - "rshares": "431087473" + "rshares": "431087473", + "voter": "littlemorelove" }, { - "voter": "mbizryu0", - "rshares": "51636819" + "rshares": "51636819", + "voter": "mbizryu0" }, { - "voter": "archij", - "rshares": "51631638" + "rshares": "51631638", + "voter": "archij" }, { - "voter": "movie7283", - "rshares": "51530815" + "rshares": "51530815", + "voter": "movie7283" }, { - "voter": "ppcompp2", - "rshares": "51527606" + "rshares": "51527606", + "voter": "ppcompp2" }, { - "voter": "jj1968", - "rshares": "51520427" + "rshares": "51520427", + "voter": "jj1968" }, { - "voter": "cineger", - "rshares": "51516489" + "rshares": "51516489", + "voter": "cineger" }, { - "voter": "sksduddk", - "rshares": "51497383" + "rshares": "51497383", + "voter": "sksduddk" }, { - "voter": "jjc0719", - "rshares": "51490214" + "rshares": "51490214", + "voter": "jjc0719" }, { - "voter": "teemsteem", - "rshares": "50233449" + "rshares": "50233449", + "voter": "teemsteem" }, { - "voter": "sjytoy", - "rshares": "50677982" + "rshares": "50677982", + "voter": "sjytoy" }, { - "voter": "shy2675", - "rshares": "50676799" + "rshares": "50676799", + "voter": "shy2675" }, { - "voter": "suance1009", - "rshares": "50675747" + "rshares": "50675747", + "voter": "suance1009" }, { - "voter": "hasqmd", - "rshares": "50674176" + "rshares": "50674176", + "voter": "hasqmd" }, { - "voter": "fischer67", - "rshares": "50673722" + "rshares": "50673722", + "voter": "fischer67" }, { - "voter": "elya1", - "rshares": "50672116" + "rshares": "50672116", + "voter": "elya1" }, { - "voter": "xclamp45", - "rshares": "50632828" + "rshares": "50632828", + "voter": "xclamp45" }, { - "voter": "likeagame1", - "rshares": "50618471" + "rshares": "50618471", + "voter": "likeagame1" }, { - "voter": "apple4006", - "rshares": "50616898" + "rshares": "50616898", + "voter": "apple4006" }, { - "voter": "bigbell61", - "rshares": "50615195" + "rshares": "50615195", + "voter": "bigbell61" }, { - "voter": "dolpo777", - "rshares": "50612850" + "rshares": "50612850", + "voter": "dolpo777" }, { - "voter": "dongperi", - "rshares": "50611931" + "rshares": "50611931", + "voter": "dongperi" }, { - "voter": "lion2byung", - "rshares": "50610620" + "rshares": "50610620", + "voter": "lion2byung" }, { - "voter": "cwj1973", - "rshares": "50610002" + "rshares": "50610002", + "voter": "cwj1973" }, { - "voter": "psj212", - "rshares": "50609329" + "rshares": "50609329", + "voter": "psj212" }, { - "voter": "owithed2", - "rshares": "50608661" + "rshares": "50608661", + "voter": "owithed2" }, { - "voter": "fiself2", - "rshares": "50606929" + "rshares": "50606929", + "voter": "fiself2" }, { - "voter": "trablinever1", - "rshares": "50605131" + "rshares": "50605131", + "voter": "trablinever1" }, { - "voter": "nuals1940", - "rshares": "50603861" + "rshares": "50603861", + "voter": "nuals1940" }, { - "voter": "fanceth2", - "rshares": "50602310" + "rshares": "50602310", + "voter": "fanceth2" }, { - "voter": "forea1995", - "rshares": "50355943" + "rshares": "50355943", + "voter": "forea1995" }, { - "voter": "holow1968", - "rshares": "50354561" + "rshares": "50354561", + "voter": "holow1968" }, { - "voter": "peaces1952", - "rshares": "50353969" + "rshares": "50353969", + "voter": "peaces1952" }, { - "voter": "himighar2", - "rshares": "50346496" + "rshares": "50346496", + "voter": "himighar2" }, { - "voter": "aromese1974", - "rshares": "50345607" + "rshares": "50345607", + "voter": "aromese1974" }, { - "voter": "runis1943", - "rshares": "50344921" + "rshares": "50344921", + "voter": "runis1943" }, { - "voter": "tong1962", - "rshares": "50344067" + "rshares": "50344067", + "voter": "tong1962" }, { - "voter": "hishe1997", - "rshares": "50340744" + "rshares": "50340744", + "voter": "hishe1997" }, { - "voter": "cwbrooch", - "rshares": "1979857275" + "rshares": "1979857275", + "voter": "cwbrooch" }, { - "voter": "ninjapainter", - "rshares": "52329350" + "rshares": "52329350", + "voter": "ninjapainter" }, { - "voter": "buit1989", - "rshares": "51393104" + "rshares": "51393104", + "voter": "buit1989" }, { - "voter": "imadecoult1", - "rshares": "51389981" + "rshares": "51389981", + "voter": "imadecoult1" }, { - "voter": "infees2", - "rshares": "51387526" + "rshares": "51387526", + "voter": "infees2" }, { - "voter": "suar1997", - "rshares": "51384095" + "rshares": "51384095", + "voter": "suar1997" }, { - "voter": "sobsell93", - "rshares": "51382067" + "rshares": "51382067", + "voter": "sobsell93" }, { - "voter": "stroned96", - "rshares": "51380710" + "rshares": "51380710", + "voter": "stroned96" }, { - "voter": "drethe", - "rshares": "51378107" + "rshares": "51378107", + "voter": "drethe" }, { - "voter": "qualwas", - "rshares": "51377505" + "rshares": "51377505", + "voter": "qualwas" }, { - "voter": "phent1994", - "rshares": "51376367" + "rshares": "51376367", + "voter": "phent1994" }, { - "voter": "baboyes", - "rshares": "51375075" + "rshares": "51375075", + "voter": "baboyes" }, { - "voter": "whor1973", - "rshares": "51373532" + "rshares": "51373532", + "voter": "whor1973" }, { - "voter": "youreforn", - "rshares": "51372739" + "rshares": "51372739", + "voter": "youreforn" }, { - "voter": "voll1981", - "rshares": "51371902" + "rshares": "51371902", + "voter": "voll1981" }, { - "voter": "copenty2", - "rshares": "51370717" + "rshares": "51370717", + "voter": "copenty2" }, { - "voter": "maject2", - "rshares": "51369717" + "rshares": "51369717", + "voter": "maject2" }, { - "voter": "coust1997", - "rshares": "51367233" + "rshares": "51367233", + "voter": "coust1997" }, { - "voter": "busionea84", - "rshares": "51366398" + "rshares": "51366398", + "voter": "busionea84" }, { - "voter": "therver1", - "rshares": "51365174" + "rshares": "51365174", + "voter": "therver1" }, { - "voter": "appirdsmanne1990", - "rshares": "51364022" + "rshares": "51364022", + "voter": "appirdsmanne1990" }, { - "voter": "alienighted87", - "rshares": "51362967" + "rshares": "51362967", + "voter": "alienighted87" }, { - "voter": "anity1994", - "rshares": "51359746" + "rshares": "51359746", + "voter": "anity1994" }, { - "voter": "themphe1", - "rshares": "59959066" + "rshares": "59959066", + "voter": "themphe1" }, { - "voter": "abild1988", - "rshares": "51355864" + "rshares": "51355864", + "voter": "abild1988" }, { - "voter": "spoll1973", - "rshares": "51353540" + "rshares": "51353540", + "voter": "spoll1973" }, { - "voter": "afteld1", - "rshares": "66162576" + "rshares": "66162576", + "voter": "afteld1" }, { - "voter": "rusteemitblog", - "rshares": "1630374239" + "rshares": "1630374239", + "voter": "rusteemitblog" }, { - "voter": "goldmatters", - "rshares": "31008332335" + "rshares": "31008332335", + "voter": "goldmatters" }, { - "voter": "dealzgal", - "rshares": "68608760" + "rshares": "68608760", + "voter": "dealzgal" }, { - "voter": "storage", - "rshares": "64921864" + "rshares": "64921864", + "voter": "storage" }, { - "voter": "blackmarket", - "rshares": "55388665" + "rshares": "55388665", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "58454327" + "rshares": "58454327", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "93882016" + "rshares": "93882016", + "voter": "expat" }, { - "voter": "techslut", - "rshares": "188217107" + "rshares": "188217107", + "voter": "techslut" }, { - "voter": "steemtrail", - "rshares": "137659447" + "rshares": "137659447", + "voter": "steemtrail" }, { - "voter": "steemlift", - "rshares": "3035584586" + "rshares": "3035584586", + "voter": "steemlift" }, { - "voter": "toddemaher1", - "rshares": "123580867" + "rshares": "123580867", + "voter": "toddemaher1" } ], - "author_reputation": 67.32, - "stats": { - "hide": false, - "gray": false, - "total_votes": 211, - "flag_weight": 0.0 - }, + "author": "charlieshrem", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/story/@charlieshrem/mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem", - "blacklists": [] - }, - { - "post_id": 960622, - "author": "healthyrecipes", - "permlink": "spaghetti-squash-burrito-bowl", - "category": "healthyliving", - "title": "Spaghetti Squash 'Burrito' Bowl", - "body": "\n

  Good afternoon Steemit, I am officially done breast feeding and am ready to get rid of the last few pounds that are still hanging on from my pregnancy so I have been trying out different ways to cut calories from my diet without loosing flavor. Spaghetti squash is a great substitute for pasta or in this case rice. Spaghetti squash has about 40 calories per cup while rice has upwards of 200. It also has fiber, potassium and vitamins A and C.  

\n

For chicken:

\n
    \n
  • 1lb chicken breast
  • \n
  • 1 tsp ancho chili
  • \n
  • 1 tbs olive oil
  • \n
  • 1 lime (juice and zest)
  • \n
  • 1 tsp minced garlic
  • \n
\n

For squash:

\n
    \n
  • 1 spaghetti squash (cut in half length wise and seeds removed)
  • \n
  • 1 tsp olive oil
  • \n
  • salt and pepper to taste
  • \n
\n

Preheat oven to 425F.  In a baking dish, sprinkle chicken with ancho chili.  Mix together oil, lime zest and juice and garlic.  Pour mixture over chicken.  Drizzle olive oil over squash and season with salt and pepper.  Place cut side down on baking sheet.  Bake a together for 30 min.  Shred squash with a fork and put in the bottom of bowls.  Shred chicken with forks and put on top of squash.  I added cheese, salsa and guacamole to ours but you can top with anything you like.  Enjoy!

\n

https://puu.sh/rcmnK/c059def2e0.png

\n", + "blacklists": [], + "body": "[![1427721443457173 (1).jpg](https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg)](https://postimg.org/image/5bg38xjjr/)\n\nThe day I went to prison I published an article Bitcoin for Prison. While I didn't get to read or see the article until someone mailed me a physical copy, I found out that my article had started a number of discussions and follow-on commentary.\n\nDuring my stay at Lewisburg Federal Prison Camp I observed many economic theories put into effect by inmates and the prison administration, including Gresham's law, hyperinflation, currency exchange, and others.\n\nThere are two markets in prison, the \"Administration Run Market\" (ARM) and the \"Inmate Run Market\" (IRM). \n\nFor the ARM, family and friends can add money to your account through Western Union, MoneyGram, or mailing a check. These funds get added to your account fairly quickly and can be used almost immediately, however with a strict spending limit. You get 300 minutes of phone use per month for about $70, and email costs about $0.05 a minute and is only available at specific times to specific people. Once a week you can shop in the commissary with a $360 a month spending limit. Further, certain products have limits of how much you can buy, for example the Mackerel (described below). Alternatively, the IRM is where you can buy sandwiches, wraps, pizzas, Italian ices, hire a personal trainer, get a haircut, pay someone to clean your cube, repair a watch, even inmate run caterers for your birthday or going home party. Additionally there were inmate run 'stores' which sold commissary items at a markup since you could only commissary shop once a week.\n\n[![mackerel-203x300.png](https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png)](https://postimg.org/image/iu6qq6eb9/)\n\nThe Mackerel (meaning literal packets of fish) is one of the competing currencies in the IRM. It has utility by being one of the best sources of protein on the compound. You can save it for a long time, the shelf life is a few years. The price is relatively the same across all prisons in the country, so even if you transfer prisons your property comes with you, including your Mackerel which is worth the same somewhere else. Unlike tunafish, chicken packets and protein bars, more people eat Mackerel. Those other food items can be used as currency as well, for example the guy who fixes your watch may only accept protein bars because he hates fish. There was even a form of digital currency being used, which I will discuss in another post.\n\n[![pzyQaHU.png](https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png)](https://postimg.org/image/nfj3tkh87/)\n\nUtility and medium of exchange give it some value but what about scarcity ? If there is a virtually unlimited amount of Mackerel in the IRM, just like the Federal Reserve printing money, there is no scarcity and hyperinflation can occure if it is debased. \n\nUsing a simple equation, 467 (Number of Inmates) * 14 (Maximum Quantity Allowed to Purchase Per Inmate) * 52 (weeks, assuming every inmate buys the maximum mount of Mackerel every week)\n\nSo if in 2015 we assume that the Supply and Velocity grows at the exact same rate with the Price Level and Transactions unchanging, the amount of Mackerel would essentially double on an even inflation rate. This does not factor in the 3 year shelf life, where expired Mackerel becomes a secondary currency. I will discuss in my next post. \n\nI like to believe that the value of money is determined also psychological factors, like a commodity and not only by mechanical or mathematical factors. In prison many of these psychological factors come into play.\n\n[![1867-1967-Ten-10\u00a2-Cents-Commemorative-Centennial.jpg](https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg)](https://postimg.org/image/ceiwrfinr/)\n\nMost people use Mackerel as a day-to-day currency for normal transactions, but for reasons I will explain in my next post, they are not the best long term store of value which is important for a currency. For longer term store of value, many inmates use stamps. Stamps have a set rate by the United States Postal Service and have similar characteristics as Mackerel aside for being edible. However, with the introduction of email on the compound many people stopped writing letters as email is cheaper and faster therefore reducing stamps ability to be a transactional currency as a majority of the inmates have no use for them. As a store of value they still hold weight because they are small and easy to store large amounts, while Mackerel is not.\n\nThe biggest value stamps have is that they can be mailed home and your family can redeem them for dollars as the local post office, but that feature can be stopped by better mail screening and overnight the stamp could lose its store of value utility. \n\nIn my next post I will discuss how currency exchangers work, what happens when the prison administration purposely floods the market, and how a secondary currency was created out of expired Mackerel called \u201cMoney Maks\u201d", + "category": "story", + "children": 2, + "created": "2016-09-15T19:39:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "healthyliving", - "dinner", - "squash", - "recipes" - ], "image": [ - "https://puu.sh/rcmnK/c059def2e0.png" + "https://s15.postimg.org/e6gxjg8cb/1427721443457173_1.jpg", + "https://s18.postimg.org/pkn7zm1h5/mackerel_203x300.png", + "https://s15.postimg.org/tggsqn3uj/pzy_Qa_HU.png", + "https://s15.postimg.org/yqgpkthrv/1867_1967_Ten_10_Cents_Commemorative_Centennial.jpg" + ], + "links": [ + "https://postimg.org/image/5bg38xjjr/", + "https://postimg.org/image/iu6qq6eb9/", + "https://postimg.org/image/nfj3tkh87/", + "https://postimg.org/image/ceiwrfinr/" + ], + "tags": [ + "story", + "life", + "bitcoin" ] }, - "created": "2016-09-15T19:01:15", - "updated": "2016-09-15T19:01:15", - "depth": 0, - "children": 3, - "net_rshares": 24948140852996, - "is_paidout": false, - "payout_at": "2016-09-16T19:16:19", - "payout": 39.772, - "pending_payout_value": "39.772 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 16647533396431, + "payout": 18.922, + "payout_at": "2016-09-22T19:39:15", + "pending_payout_value": "18.922 HBD", + "percent_hbd": 10000, + "permlink": "mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem", + "post_id": 1257859, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 211 + }, + "title": "MackerelCoin & My Socioeconomic Observations from Prison (Part 1 by Charlie Shrem)", + "updated": "2016-09-15T19:39:15", + "url": "/story/@charlieshrem/mackerelcoin-and-my-socioeconomic-observations-from-prison-part-1-by-charlie-shrem" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231813191302" + "rshares": "231813191302", + "voter": "anonymous" }, { - "voter": "riverhead", - "rshares": "4287714457313" + "rshares": "4287714457313", + "voter": "riverhead" }, { - "voter": "badassmother", - "rshares": "1856068812916" + "rshares": "1856068812916", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2006601418874" + "rshares": "2006601418874", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1239194317889" + "rshares": "1239194317889", + "voter": "rossco99" }, { - "voter": "wang", - "rshares": "2059078537865" + "rshares": "2059078537865", + "voter": "wang" }, { - "voter": "jaewoocho", - "rshares": "22391933607" + "rshares": "22391933607", + "voter": "jaewoocho" }, { - "voter": "joseph", - "rshares": "1491294220946" + "rshares": "1491294220946", + "voter": "joseph" }, { - "voter": "recursive3", - "rshares": "452882692801" + "rshares": "452882692801", + "voter": "recursive3" }, { - "voter": "masteryoda", - "rshares": "621040278295" + "rshares": "621040278295", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120621212590" + "rshares": "3120621212590", + "voter": "recursive" }, { - "voter": "boatymcboatface", - "rshares": "448236514656" + "rshares": "448236514656", + "voter": "boatymcboatface" }, { - "voter": "idol", - "rshares": "8927535677" + "rshares": "8927535677", + "voter": "idol" }, { - "voter": "sakr", - "rshares": "4839155280" + "rshares": "4839155280", + "voter": "sakr" }, { - "voter": "yefet", - "rshares": "10884745702" + "rshares": "10884745702", + "voter": "yefet" }, { - "voter": "noaommerrr", - "rshares": "481790356914" + "rshares": "481790356914", + "voter": "noaommerrr" }, { - "voter": "jocelyn", - "rshares": "1536625837" + "rshares": "1536625837", + "voter": "jocelyn" }, { - "voter": "gregory-f", - "rshares": "14818418390" + "rshares": "14818418390", + "voter": "gregory-f" }, { - "voter": "eeks", - "rshares": "59932650184" + "rshares": "59932650184", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "17134999985" + "rshares": "17134999985", + "voter": "fkn" }, { - "voter": "elishagh1", - "rshares": "22522887261" + "rshares": "22522887261", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7803257741" + "rshares": "7803257741", + "voter": "richman" }, { - "voter": "coar", - "rshares": "313710480" + "rshares": "313710480", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106636079470" + "rshares": "106636079470", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061302586" + "rshares": "1061302586", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6086022456" + "rshares": "6086022456", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2003404389" + "rshares": "2003404389", + "voter": "error" }, { - "voter": "theshell", - "rshares": "58190613755" + "rshares": "58190613755", + "voter": "theshell" }, { - "voter": "satoshifund", - "rshares": "3848697023555" + "rshares": "3848697023555", + "voter": "satoshifund" }, { - "voter": "herzmeister", - "rshares": "87300558689" + "rshares": "87300558689", + "voter": "herzmeister" }, { - "voter": "ziv", - "rshares": "19598687179" + "rshares": "19598687179", + "voter": "ziv" }, { - "voter": "zakharya", - "rshares": "15787747831" + "rshares": "15787747831", + "voter": "zakharya" }, { - "voter": "tee-em", - "rshares": "5047527838" + "rshares": "5047527838", + "voter": "tee-em" }, { - "voter": "geoffrey", - "rshares": "118358806572" + "rshares": "118358806572", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "144257392248" + "rshares": "144257392248", + "voter": "kimziv" }, { - "voter": "honeythief", - "rshares": "45359587433" + "rshares": "45359587433", + "voter": "honeythief" }, { - "voter": "superfreek", - "rshares": "2187607792" + "rshares": "2187607792", + "voter": "superfreek" }, { - "voter": "furion", - "rshares": "81189817686" + "rshares": "81189817686", + "voter": "furion" }, { - "voter": "barbara2", - "rshares": "401329727" + "rshares": "401329727", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "446072819" + "rshares": "446072819", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "412844681" + "rshares": "412844681", + "voter": "doge4lyf" }, { - "voter": "tasman", - "rshares": "245479785" + "rshares": "245479785", + "voter": "tasman" }, { - "voter": "steem1653", - "rshares": "2632467953" + "rshares": "2632467953", + "voter": "steem1653" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "aaseb", - "rshares": "13847065167" + "rshares": "13847065167", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209545151" + "rshares": "4209545151", + "voter": "karen13" }, { - "voter": "milestone", - "rshares": "46859749971" + "rshares": "46859749971", + "voter": "milestone" }, { - "voter": "poseidon", - "rshares": "3146703967" + "rshares": "3146703967", + "voter": "poseidon" }, { - "voter": "jl777", - "rshares": "204618886920" + "rshares": "204618886920", + "voter": "jl777" }, { - "voter": "positive", - "rshares": "13896032408" + "rshares": "13896032408", + "voter": "positive" }, { - "voter": "proto", - "rshares": "17267376002" + "rshares": "17267376002", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "23475945343" + "rshares": "23475945343", + "voter": "sisterholics" }, { - "voter": "fnait", - "rshares": "467869290" + "rshares": "467869290", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "415655812" + "rshares": "415655812", + "voter": "keepcalmand" }, { - "voter": "healthyrecipes", - "rshares": "69137816305" + "rshares": "69137816305", + "voter": "healthyrecipes" }, { - "voter": "glitterpig", - "rshares": "3354060704" + "rshares": "3354060704", + "voter": "glitterpig" }, { - "voter": "taker", - "rshares": "8734213651" + "rshares": "8734213651", + "voter": "taker" }, { - "voter": "laonie", - "rshares": "830193979600" + "rshares": "830193979600", + "voter": "laonie" }, { - "voter": "myfirst", - "rshares": "29315868452" + "rshares": "29315868452", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "168514920676" + "rshares": "168514920676", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "6542941609" + "rshares": "6542941609", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "1667777098" + "rshares": "1667777098", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "37226130506" + "rshares": "37226130506", + "voter": "midnightoil" }, { - "voter": "kurtbeil", - "rshares": "3157847929" + "rshares": "3157847929", + "voter": "kurtbeil" }, { - "voter": "xiaohui", - "rshares": "93111494000" + "rshares": "93111494000", + "voter": "xiaohui" }, { - "voter": "jphamer1", - "rshares": "20690393698" + "rshares": "20690393698", + "voter": "jphamer1" }, { - "voter": "elfkitchen", - "rshares": "4689914056" + "rshares": "4689914056", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "99935909954" + "rshares": "99935909954", + "voter": "joele" }, { - "voter": "xiaokongcom", - "rshares": "3022848762" + "rshares": "3022848762", + "voter": "xiaokongcom" }, { - "voter": "natalymaty", - "rshares": "2076619689" + "rshares": "2076619689", + "voter": "natalymaty" }, { - "voter": "xianjun", - "rshares": "6093549297" + "rshares": "6093549297", + "voter": "xianjun" }, { - "voter": "miacats", - "rshares": "91520297334" + "rshares": "91520297334", + "voter": "miacats" }, { - "voter": "microluck", - "rshares": "399007122" + "rshares": "399007122", + "voter": "microluck" }, { - "voter": "netaterra", - "rshares": "2923096249" + "rshares": "2923096249", + "voter": "netaterra" }, { - "voter": "richardcrill", - "rshares": "4441060568" + "rshares": "4441060568", + "voter": "richardcrill" }, { - "voter": "rusla", - "rshares": "100126866" + "rshares": "100126866", + "voter": "rusla" }, { - "voter": "sponge-bob", - "rshares": "53146015442" + "rshares": "53146015442", + "voter": "sponge-bob" }, { - "voter": "doggnostic", - "rshares": "52794249" + "rshares": "52794249", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "52521499" + "rshares": "52521499", + "voter": "jenny-talls" }, { - "voter": "brains", - "rshares": "53134467783" + "rshares": "53134467783", + "voter": "brains" }, { - "voter": "bitcoinparadise", - "rshares": "1317649856" + "rshares": "1317649856", + "voter": "bitcoinparadise" }, { - "voter": "chick1", - "rshares": "5753585781" + "rshares": "5753585781", + "voter": "chick1" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "50516543" + "rshares": "50516543", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "ola1", - "rshares": "73937406" + "rshares": "73937406", + "voter": "ola1" }, { - "voter": "billkappa442", - "rshares": "51240567" + "rshares": "51240567", + "voter": "billkappa442" }, { - "voter": "glassheart", - "rshares": "51235131" + "rshares": "51235131", + "voter": "glassheart" }, { - "voter": "anns", - "rshares": "1233715718" + "rshares": "1233715718", + "voter": "anns" }, { - "voter": "motion", - "rshares": "50871059" + "rshares": "50871059", + "voter": "motion" }, { - "voter": "ziggo", - "rshares": "50570250" + "rshares": "50570250", + "voter": "ziggo" }, { - "voter": "penthouse", - "rshares": "50565798" + "rshares": "50565798", + "voter": "penthouse" }, { - "voter": "albertheijn", - "rshares": "50349676" + "rshares": "50349676", + "voter": "albertheijn" }, { - "voter": "ayim", - "rshares": "2291193388" + "rshares": "2291193388", + "voter": "ayim" }, { - "voter": "gravity", - "rshares": "160973134" + "rshares": "160973134", + "voter": "gravity" }, { - "voter": "digitalillusions", - "rshares": "160900665" + "rshares": "160900665", + "voter": "digitalillusions" }, { - "voter": "capcom", - "rshares": "156837244" + "rshares": "156837244", + "voter": "capcom" }, { - "voter": "haribo", - "rshares": "156814579" + "rshares": "156814579", + "voter": "haribo" }, { - "voter": "benetton", - "rshares": "159531007" + "rshares": "159531007", + "voter": "benetton" }, { - "voter": "greenpeace", - "rshares": "159506164" + "rshares": "159506164", + "voter": "greenpeace" }, { - "voter": "tipsandtricks", - "rshares": "159425365" + "rshares": "159425365", + "voter": "tipsandtricks" }, { - "voter": "panic", - "rshares": "159352476" + "rshares": "159352476", + "voter": "panic" }, { - "voter": "disneypixar", - "rshares": "159164412" + "rshares": "159164412", + "voter": "disneypixar" }, { - "voter": "citigroup", - "rshares": "155433319" + "rshares": "155433319", + "voter": "citigroup" }, { - "voter": "zendesk", - "rshares": "158486055" + "rshares": "158486055", + "voter": "zendesk" }, { - "voter": "dealzgal", - "rshares": "71727340" + "rshares": "71727340", + "voter": "dealzgal" }, { - "voter": "storage", - "rshares": "64921864" + "rshares": "64921864", + "voter": "storage" }, { - "voter": "blackmarket", - "rshares": "55388665" + "rshares": "55388665", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "58454327" + "rshares": "58454327", + "voter": "gifts" }, { - "voter": "alexandrapop", - "rshares": "153804957" + "rshares": "153804957", + "voter": "alexandrapop" } ], + "author": "healthyrecipes", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

  Good afternoon Steemit, I am officially done breast feeding and am ready to get rid of the last few pounds that are still hanging on from my pregnancy so I have been trying out different ways to cut calories from my diet without loosing flavor. Spaghetti squash is a great substitute for pasta or in this case rice. Spaghetti squash has about 40 calories per cup while rice has upwards of 200. It also has fiber, potassium and vitamins A and C.  

\n

For chicken:

\n
    \n
  • 1lb chicken breast
  • \n
  • 1 tsp ancho chili
  • \n
  • 1 tbs olive oil
  • \n
  • 1 lime (juice and zest)
  • \n
  • 1 tsp minced garlic
  • \n
\n

For squash:

\n
    \n
  • 1 spaghetti squash (cut in half length wise and seeds removed)
  • \n
  • 1 tsp olive oil
  • \n
  • salt and pepper to taste
  • \n
\n

Preheat oven to 425F.  In a baking dish, sprinkle chicken with ancho chili.  Mix together oil, lime zest and juice and garlic.  Pour mixture over chicken.  Drizzle olive oil over squash and season with salt and pepper.  Place cut side down on baking sheet.  Bake a together for 30 min.  Shred squash with a fork and put in the bottom of bowls.  Shred chicken with forks and put on top of squash.  I added cheese, salsa and guacamole to ours but you can top with anything you like.  Enjoy!

\n

https://puu.sh/rcmnK/c059def2e0.png

\n", + "category": "healthyliving", + "children": 3, + "created": "2016-09-15T19:01:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://puu.sh/rcmnK/c059def2e0.png" + ], + "tags": [ + "healthyliving", + "dinner", + "squash", + "recipes" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 24948140852996, + "payout": 39.722, + "payout_at": "2016-09-22T19:01:15", + "pending_payout_value": "39.722 HBD", + "percent_hbd": 10000, + "permlink": "spaghetti-squash-burrito-bowl", + "post_id": 1257434, + "promoted": "0.000 HBD", + "replies": [], "stats": { - "hide": false, + "flag_weight": 0.0, "gray": false, - "total_votes": 110, - "flag_weight": 0.0 + "hide": false, + "total_votes": 110 }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/healthyliving/@healthyrecipes/spaghetti-squash-burrito-bowl", - "blacklists": [] + "title": "Spaghetti Squash 'Burrito' Bowl", + "updated": "2016-09-15T19:01:15", + "url": "/healthyliving/@healthyrecipes/spaghetti-squash-burrito-bowl" }, { - "post_id": 960067, - "author": "curie", - "permlink": "the-daily-curie-14th-sept-15th-sept-2016", - "category": "curie", - "title": "The Daily Curie (14th Sept - 15th Sept 2016)", - "body": "
https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg
\n\n## Introduction\n[Project Curie](https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors) is a community project run by several Steemit authors. Its mission is to help reward content creators who are posting great original content, yet who have not yet become established. In the short time since Curie began, our writers group has partnered with @nextgencrypto and other whale accounts to bring rewards to these deserving authors. *Writers, artists, chefs, photographers, videographers, and many others have been recognized by these rewards.*\n\nEach day, the members of our Project will publish this list of the posts that Project Curie has chosen to reward recently. We hope that this list will provide more positive exposure to the authors we have selected. Also, it is an effort for us to be more transparent about which posts are being rewarded. We hope that you will consider following not only this @curie account, but also many of the authors whose work is featured here each day. **Please consider adding your comments on these posts also!**\n\nProject Curie's daily curation lists will now be called \"The Daily Curie\". We hope you like the name! Future editions of The Daily Curie will [feature our new logo](https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement). For the latest on Project Curie, do check out our [Month #1 update](https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016). \n\n----------------------\n\n## Today's Brief Analysis\n\nToday's list polls all posts curated between 17:00 14/09 UTC and 17:00 15/09 UTC. Project Curie voted on a total of **103 posts** by 99 unique authors. **SBD 3,832** has been generated for authors thus far, at an average of SBD 37 per post. \n\n----------------------\n| Author | Post | Payout |\n| --------- | ---------- | --------- |\n| [@faddat](https://steemit.com/@faddat) | [[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!](https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed) | 616.681 SBD |\n| [@rampant](https://steemit.com/@rampant) | [Steemit Daily Drawing Tutorial - Gesture drawings (plus tool)](https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool) | 215.310 SBD |\n| [@shenanigator](https://steemit.com/@shenanigator) | [Doing the Right Thing Will Get You Fired. What Do You Do?](https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do) | 205.664 SBD |\n| [@penguinpablo](https://steemit.com/@penguinpablo) | [How to Carve an Apple Leaf](https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf) | 196.419 SBD |\n| [@nathanjtaylor](https://steemit.com/@nathanjtaylor) | [Fire And Grace Art Painting And Poetry](https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry) | 189.043 SBD |\n| [@lily-da-vine](https://steemit.com/@lily-da-vine) | [Going Bananas in Acapulco](https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco) | 158.416 SBD |\n| [@budgetbucketlist](https://steemit.com/@budgetbucketlist) | [A 1-week plunge into Mexico City's madness! Art adventures, Frida-seeking and unfiltered exhaust fumes...](https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes) | 151.033 SBD |\n| [@benjiberigan](https://steemit.com/@benjiberigan) | [Anarchist Architecture, part 5: The cruelty of architectural codes and regulations.](https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations) | 132.427 SBD |\n| [@ausbitbank](https://steemit.com/@ausbitbank) | [The time my town flooded, the fragility of the food supply and lessons learned (Original photos)](https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos) | 125.877 SBD |\n| [@emily-cook](https://steemit.com/@emily-cook) | [THE ISLE OF MAN FILM FESTIVAL 2016 -A week of parties, red carpets and a lot of hard work!](https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work) | 121.336 SBD |\n| [@team-leibniz](https://steemit.com/@team-leibniz) | [Week 1 NFL Daily Fantasy Football Results - How my Bayesian Inspired Lineups Fared (+$84.00)](https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00) | 119.473 SBD |\n| [@ionescur](https://steemit.com/@ionescur) | [Urban dreams of freedom: back to the countryside, back to the land](https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land) | 110.564 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [New traditionl painting - \"The Battle\" - Steps of work](https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work) | 105.622 SBD |\n| [@juliac](https://steemit.com/@juliac) | [One of The Best Portraits That I've Ever Created: Einstein. What Do You Think?](https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think) | 103.781 SBD |\n| [@luzcypher](https://steemit.com/@luzcypher) | [Cover Crops Can Grow Food Organically With No Fertilizers, No Pesticides, No Herbicides And No Chemicals](https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals) | 100.117 SBD |\n| [@akareyon](https://steemit.com/@akareyon) | [I find your lack of argument disturbing](https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing) | 98.525 SBD |\n| [@curving](https://steemit.com/@curving) | [The Ephemeral Cairn Gardens Of the Austin Greenbelt - A Photo Journal and Meditation](https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation) | 96.834 SBD |\n| [@aleksandraz](https://steemit.com/@aleksandraz) | [Incredible Science - Brainbow Technology](https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology) | 89.777 SBD |\n| [@skapaneas](https://steemit.com/@skapaneas) | [IBD Crohn desease and Ulceritive collitis. what are they, self diagnose, self treat and more.](https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more) | 85.958 SBD |\n| [@gargon](https://steemit.com/@gargon) | [Proyecto Cervantes (13 - 15 Sept 2016): Compensación y reconocimiento para escritores de habla hispana / Bringing rewards and recognition to spanish writers (Vol. III)](https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and) | 83.725 SBD |\n| [@iamwne](https://steemit.com/@iamwne) | [Blade Runner Inspired Digital Set - The Dark Market - Beauty Pass](https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass) | 83.869 SBD |\n| [@stormblaze](https://steemit.com/@stormblaze) | [Where Do Deleted Files Go?](https://steemit.com/technology/@stormblaze/where-do-deleted-files-go) | 81.221 SBD |\n| [@yanarnst](https://steemit.com/@yanarnst) | [Steemit Food Art lesson 2 ''Salad with chicken liver and pine nuts''](https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts) | 78.034 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Myths in the Sky: Ursa Major and Ursa Minor](https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor) | 72.174 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Brain preservation: an ambulance to the future](https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future) | 72.082 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Vivisecting the Stargazing Tribe: Visual Observers and Screen Scanners](https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners) | 71.421 SBD |\n| [@cristi](https://steemit.com/@cristi) | [Radical Metabolism - No Food and Water for 8 Months](https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months) | 69.559 SBD |\n| [@stranger27](https://steemit.com/@stranger27) | [Fibonacci sequence and Golden Ratio: magic numbers of Nature](https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature) | 66.258 SBD |\n| [@nekromarinist](https://steemit.com/@nekromarinist) | [Let's talk a little bit about phobias today!](https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today) | 61.776 SBD |\n| [@richman](https://steemit.com/@richman) | [If you want to lose a friend, lend him money (My life story)](https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story) | 58.193 SBD |\n| [@maceytomlin](https://steemit.com/@maceytomlin) | [What Exactly is Ayahuasca? How Should You Prepare for a Ceremony?](https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony) | 58.197 SBD |\n| [@nili](https://steemit.com/@nili) | [Smart Life (part 2) - Resolving the Godel's paradox on the blockchain as a solution for a decentralized trusted protocol](https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol) | 55.575 SBD |\n| [@optimistic-crone](https://steemit.com/@optimistic-crone) | [PROBIOTICS FOR LIFE!!! SUPER SIMPLE FERMENTED VEGETABLE 'KIM CHEE' RECIPE](https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe) | 54.909 SBD |\n| [@anarchyhasnogods](https://steemit.com/@anarchyhasnogods) | [Learning one dimensional motion using graphs- physics for beginners - part one](https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one) | 53.295 SBD |\n| [@yostopia](https://steemit.com/@yostopia) | [Beginner's mind, creative mind... the making of a Vimeo Staff Pick.](https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick) | 51.222 SBD |\n| [@reneenouveau](https://steemit.com/@reneenouveau) | [My response to Paul Steyn's myopic article \"Mr. Environmentalist\" shockingly published by National Geographic in Sept 2015.](https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015) | 49.433 SBD |\n| [@king3071](https://steemit.com/@king3071) | [MY DREAM DESTINATION - SWITZERLAND](https://steemit.com/travel/@king3071/my-dream-destination-switzerland) | 49.816 SBD |\n| [@kolin.evans](https://steemit.com/@kolin.evans) | [Something a little more substantial for you to think about - the 'IS' / 'WAS' CPT (Continuous Probable Time-lines.)](https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines) | 47.288 SBD |\n| [@fenglosophy](https://steemit.com/@fenglosophy) | [Does the language you speak influence how you think?](https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think) | 44.070 SBD |\n| [@mandibil](https://steemit.com/@mandibil) | [SAVAGE [Gorm Just, Denmark 2009] - movie review by Mandibil](https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil) | 44.621 SBD |\n| [@therajmahal](https://steemit.com/@therajmahal) | [Making the Impossible... Possible](https://steemit.com/science/@therajmahal/making-the-impossible-possible) | 44.765 SBD |\n| [@carlitashaw](https://steemit.com/@carlitashaw) | [The World's Worst Oil Spills, Ramifications & Amazing Alternative Solutions.](https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions) | 44.986 SBD |\n| [@renzoarg](https://steemit.com/@renzoarg) | [Skip a pill - Antibiotics](https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics) | 43.918 SBD |\n| [@rachelsvparry](https://steemit.com/@rachelsvparry) | [Under the Sea (again, but better this time)](https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time) | 43.436 SBD |\n| [@royalmacro](https://steemit.com/@royalmacro) | [lonely tree [An Original Abstract Art]](https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art) | 42.826 SBD |\n| [@stephmckenzie](https://steemit.com/@stephmckenzie) | [The Power of Choice--A Magnificent Key to True Personal Freedom](https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone) | 42.441 SBD |\n| [@alwayzgame](https://steemit.com/@alwayzgame) | [10 simple steps to ruin your child's life](https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life) | 42.475 SBD |\n| [@nonlinearone](https://steemit.com/@nonlinearone) | [Can Hemingway Improve Your Writing?](https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing) | 42.669 SBD |\n| [@kafkanarchy84](https://steemit.com/@kafkanarchy84) | [\"Johnny B. Goode\" Guitar Lesson and Intro to Theory, Vol. II](https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii) | 41.326 SBD |\n| [@feline1991](https://steemit.com/@feline1991) | [A Steemit Original - A Lifetime of Seeking Happiness - Chapter 2 - Part 2](https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2) | 41.931 SBD |\n| [@geke](https://steemit.com/@geke) | [The Banker and the Bulova - an original poem (Steemit flash-writing challenge)](https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge) | 41.497 SBD |\n| [@lscottphotos](https://steemit.com/@lscottphotos) | [LSCOTTPHOTOS Welcome to my family :) Thank you steemers <3 (Original Photos)](https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos) | 40.201 SBD |\n| [@pinkisland](https://steemit.com/@pinkisland) | [My Philosophy of Education](https://steemit.com/writing/@pinkisland/my-philosophy-of-education) | 40.978 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cinco](https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco) | 39.708 SBD |\n| [@luisucv34](https://steemit.com/@luisucv34) | [Venezuela: The lack of opportunities (English edition)](https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition) | 39.783 SBD |\n| [@beowulfoflegend](https://steemit.com/@beowulfoflegend) | [Silvanus and Empire, an Original Novel (Chapter Twenty)](https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty) | 39.543 SBD |\n| [@mariandavp](https://steemit.com/@mariandavp) | [From zero to hero - abstract office art by @mariandavp](https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp) | 39.529 SBD |\n| [@nasimbabu](https://steemit.com/@nasimbabu) | [The technology that defends us from potentially deadly diseases](https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases) | 39.620 SBD |\n| [@royaltiffany](https://steemit.com/@royaltiffany) | [Steemit B'Day Movie Review Contest Update!](https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update) | 37.706 SBD |\n| [@travelista](https://steemit.com/@travelista) | [An Adventure in Isla Espíritu Santo!](https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo) | 37.218 SBD |\n| [@jpiper20](https://steemit.com/@jpiper20) | [We Meet At Night -- An Original Story (Part 4)](https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4) | 37.319 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new painting - \"Dexter\" - Modern Impressionism](https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism) | 36.937 SBD |\n| [@krystle](https://steemit.com/@krystle) | [Keltorin's Flora and Fauna of Note - Firikwea - Valcanne's Guide to Keltorin](https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin) | 36.972 SBD |\n| [@cryptoiskey](https://steemit.com/@cryptoiskey) | [Workout from home on the cheap! - 12th September #Ultimate workout companion for your kids!](https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids) | 36.115 SBD |\n| [@getonthetrain](https://steemit.com/@getonthetrain) | [Top 10 Grisly Medieval Torture Methods](https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods) | 34.093 SBD |\n| [@ansharphoto](https://steemit.com/@ansharphoto) | [Roman Forum in the Morning, Rome](https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome) | 33.328 SBD |\n| [@aboundlessworld](https://steemit.com/@aboundlessworld) | [Introducing The Steemit Stories Podcast!](https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast) | 33.728 SBD |\n| [@thornybastard](https://steemit.com/@thornybastard) | [Chapter 10: A Call from the Forest—来自森林的呼唤](https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest) | 32.465 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Installing Bitshares / graphene from source on Mac OS X Yosemite (10.5.5)](https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5) | 32.348 SBD |\n| [@dumar022](https://steemit.com/@dumar022) | [Workshop lesson 6: Wrench: You don't wanna mess with this](https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this) | 32.155 SBD |\n| [@lapilipinas](https://steemit.com/@lapilipinas) | [Light from distant stars](https://steemit.com/science/@lapilipinas/light-from-distant-stars) | 32.778 SBD |\n| [@williambanks](https://steemit.com/@williambanks) | [Towards A Better Tomorrow : Part 1 - There but for grace!](https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace) | 31.434 SBD |\n| [@driv3n](https://steemit.com/@driv3n) | [How to Solve the Rubik's Cube like a boss - Part 2](https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2) | 31.858 SBD |\n| [@timbot606](https://steemit.com/@timbot606) | [Growing up in Appalachia](https://steemit.com/life/@timbot606/growing-up-in-appalachia) | 31.548 SBD |\n| [@themagus](https://steemit.com/@themagus) | [A less privileged white growing up in South Africa in the 1970's - part 2](https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2) | 31.099 SBD |\n| [@echoesinthemind](https://steemit.com/@echoesinthemind) | [Hanging Upside Down / DO NOT Try At Home](https://steemit.com/life/@echoesinthemind/hanging-upside-down) | 31.736 SBD |\n| [@ysa](https://steemit.com/@ysa) | [My pictures from traveling to Estes Park, Colorado](https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado) | 31.981 SBD |\n| [@aksinya](https://steemit.com/@aksinya) | [Our Trip to Wonderful, Scary and Unforgettable Kenya. Original Photos and Video](https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video) | 31.882 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cuatro](https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro) | 31.992 SBD |\n| [@successfully00](https://steemit.com/@successfully00) | [Knowing The Math - Mental Tricks - Multiplication Part 1](https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1) | 31.037 SBD |\n| [@linzo](https://steemit.com/@linzo) | [A Life Fantasy (Original Poem)](https://steemit.com/poem/@linzo/a-life-fantasy-original-poem) | 30.964 SBD |\n| [@hilarski](https://steemit.com/@hilarski) | [Panama Critters.](https://steemit.com/panama/@hilarski/panama-critters) | 28.729 SBD |\n| [@sulev](https://steemit.com/@sulev) | [Photography #11 - Pictures from my Garden: Bees, Lizards and other (part 2)](https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2) | 27.947 SBD |\n| [@steemswede](https://steemit.com/@steemswede) | [[BEER REVIEW] Thomas Hardy's Ale](https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale) | 27.183 SBD |\n| [@marius19](https://steemit.com/@marius19) | [Set of paper coffee cups. Origami](https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami) | 26.439 SBD |\n| [@poeticsnake](https://steemit.com/@poeticsnake) | [Autumn is coming Doodle style! ( Tutorial with step by step drawings)](https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings) | 26.547 SBD |\n| [@kiddarko](https://steemit.com/@kiddarko) | [Peep Life a Story By KidDarko (with tattoo illistrations and video)](https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video) | 26.853 SBD |\n| [@shieha](https://steemit.com/@shieha) | [The Hardest Computer Game of All Time - Robot Odyssey - Part 2](https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2) | 26.372 SBD |\n| [@ayim](https://steemit.com/@ayim) | [Fixing Posture - Part 4: Neck](https://steemit.com/life/@ayim/fixing-posture-part-4-neck) | 26.142 SBD |\n| [@hitmeasap](https://steemit.com/@hitmeasap) | [I am Batman's Robin or Skywalkers R2-D2. - I've always been the co-pilot. Always been the second choice.](https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice) | 25.747 SBD |\n| [@peskov](https://steemit.com/@peskov) | [Antonikha. Part 2 (featuring Vasily Peskov as author)](https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author) | 25.173 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [Advice from an angry dude: Breathe and interrupt your thoughts](https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts) | 25.162 SBD |\n| [@beginningtoend](https://steemit.com/@beginningtoend) | [Poetry, art and a little home spun philosophy.](https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy) | 25.708 SBD |\n| [@kaykunoichi](https://steemit.com/@kaykunoichi) | [Suicide Note - Audio (Written & performed by myself)](https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself) | 25.523 SBD |\n| [@booky](https://steemit.com/@booky) | [Boosting Leadership Skills = Healthier Happier You and Your Workmates](https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates) | 24.083 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [Do you Know the Difference Between RIGHT & WRONG?](https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong) | 24.516 SBD |\n| [@ekaterina4ka](https://steemit.com/@ekaterina4ka) | [We Knit Patterns by the Spokes. Post 2. Вяжем узоры спицами. Пост 2.](https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2) | 24.793 SBD |\n| [@scaredycatguide](https://steemit.com/@scaredycatguide) | [Real Talk - Vol 9. - Welcome To Dogmerica](https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica) | 24.207 SBD |\n| [@amy-goodrich](https://steemit.com/@amy-goodrich) | [Pineapple Mojito Green Smoothie](https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie) | 24.126 SBD |\n| [@scott.stevens](https://steemit.com/@scott.stevens) | [Awareness of Bitcoin is Now More Important Than Awareness of Geoengineering](https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering) | 24.875 SBD |\n| [@witchcraftblog](https://steemit.com/@witchcraftblog) | [My trip to Italy. Pisa.](https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa) | 24.265 SBD |\n| [@ibringawareness](https://steemit.com/@ibringawareness) | [\"Why I Got Stiffed\" Guy's Waiter Blog chapter 5](https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5) | 24.224 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new illustration - Batman vs Superman - Modern Impressionism by kimal73](https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73) | 23.617 SBD |\n| [@leylar](https://steemit.com/@leylar) | [Seeds are great travelers ~ Own work](https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work) | 23.166 SBD |\n| [@ocrdu](https://steemit.com/@ocrdu) | [The pods that go \"pop\"](https://steemit.com/photography/@ocrdu/the-pods-that-go-pop) | 23.530 SBD |\n| [@rusla](https://steemit.com/@rusla) | [Japan. Part8.](https://steemit.com/travel/@rusla/japan-part8) | 23.209 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [Puppy Charcoal Original Pencil Drawing](https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing) | 23.879 SBD |\n| [@borishaifa](https://steemit.com/@borishaifa) | [To Write Or Not To Wirte? Писать или не писать?](https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat) | 23.730 SBD |\n| [@eveningstar92](https://steemit.com/@eveningstar92) | [Shit Happens, Move On-NSFW- Evening Star Art](https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art) | 23.092 SBD |\n| [@elewarne](https://steemit.com/@elewarne) | [Mixed Media](https://steemit.com/mixedmedia/@elewarne/mixed-media) | 23.059 SBD |\n| [@shredlord](https://steemit.com/@shredlord) | [Sunrise](https://steemit.com/art/@shredlord/sunrise) | 23.318 SBD |\n| [@sherlockcupid](https://steemit.com/@sherlockcupid) | [Let's Talk: Fears (Part One)](https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one) | 23.720 SBD |\n| [@annesaya](https://steemit.com/@annesaya) | [Our Guiding Star, a poem (A tribute to writers)](https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers) | 23.384 SBD |\n| [@fitmama](https://steemit.com/@fitmama) | [Why Do I Bother....](https://steemit.com/life/@fitmama/why-do-i-bother) | 23.451 SBD |\n| [@ezzy](https://steemit.com/@ezzy) | [The Bionic Experiment - Part 1 (My Original Short Stories)](https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories) | 23.480 SBD |\n| [@kingarbinv](https://steemit.com/@kingarbinv) | [Adventures in Nemaland - Part 8 (Video) + My best Pokemon catch so far.](https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far) | 23.292 SBD |\n| [@soulsistashakti](https://steemit.com/@soulsistashakti) | [How to Detect and Deflect Gaslighting from a Narcissist](https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist) | 22.018 SBD |\n| [@puffin](https://steemit.com/@puffin) | [Tragical Impoverishment - Society's Dirt (Original Poem)](https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem) | 22.621 SBD |\n| [@cehuneke](https://steemit.com/@cehuneke) | [The Sugar Scandal: Corrupted Science in the Debate of Fat vs. Sugar and Coronary Heart Disease](https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease) | 22.821 SBD |\n| [@tanata](https://steemit.com/@tanata) | [Little Black Dress involving](https://steemit.com/fashion/@tanata/little-black-dress-involving) | 22.237 SBD |\n| [@steemwriter](https://steemit.com/@steemwriter) | [YouTube Demonetization: A Step Towards Censorship?](https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship) | 22.297 SBD |\n| [@michelle.gent](https://steemit.com/@michelle.gent) | [Dusty - one of my characters](https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters) | 22.659 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [A Gift-Original Rose Drawing](https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing) | 22.249 SBD |\n| [@runridefly](https://steemit.com/@runridefly) | [Minnow's Life - @runridefly original cartoon \"minnowsunite Whale sighting\" minnows and a whale](https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale) | 22.836 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [[SHORT STORY] The Cult of Personality - Part One](https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one) | 22.552 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Look at the Flower Chicory: a Useful and Beautiful Flower ... my Favorite Photos of Chicory](https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory) | 22.795 SBD |\n| [@victoriart](https://steemit.com/@victoriart) | [Hazelnut Mood](https://steemit.com/art/@victoriart/hazelnut-mood) | 22.443 SBD |\n| [@heroic15397](https://steemit.com/@heroic15397) | [Amazing Birds in the Greater Montreal area](https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area) | 22.987 SBD |\n| [@smartercars](https://steemit.com/@smartercars) | [Reviewing the Volkswagen Touareg ~ Smarter Car Reviews](https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews) | 22.975 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [Blues Jam & Techniques [9-14-2016]](https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016) | 22.415 SBD |\n| [@matthew.raymer](https://steemit.com/@matthew.raymer) | [Life Stories](https://steemit.com/psychology/@matthew.raymer/life-stories) | 22.733 SBD |\n| [@positivesteem](https://steemit.com/@positivesteem) | [Common Sense Versus Degrees: The Man Who Has One Hundred Degrees](https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees) | 22.941 SBD |\n| [@d3nv3r](https://steemit.com/@d3nv3r) | [Cloud Mining - The Struggle is Real](https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real) | 22.266 SBD |\n| [@adubi](https://steemit.com/@adubi) | [Healing Food Plan: The Ultimate Cheat Sheet](https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet) | 22.947 SBD |\n| [@alitas](https://steemit.com/@alitas) | [(spanish) Cazuela de Calamar con Papas Rejilla](https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla) | 22.240 SBD |\n| [@mazi](https://steemit.com/@mazi) | [I Can See Clearly Now .... Platanus occidentalis](https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis) | 22.784 SBD |\n| [@mikemacintire](https://steemit.com/@mikemacintire) | [A Red Like No Other - My work](https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work) | 22.289 SBD |\n| [@altzero](https://steemit.com/@altzero) | [Imágenes de una vida (2)](https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2) | 21.555 SBD |\n| [@birdie](https://steemit.com/@birdie) | [Clouds That Demand Attention (Original Photos)](https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos) | 21.397 SBD |\n| [@michaelstobiersk](https://steemit.com/@michaelstobiersk) | [An Original Painting by Michael Stobierski](https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski) | 21.367 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Meditation Experience Can Be Really Scary](https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary) | 21.583 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [The Price Is Right Theme Music Breakdown](https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown) | 21.937 SBD |\n| [@karisa](https://steemit.com/@karisa) | [Very tasty and delicious curd cookies specially for Steemit . Part 4](https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4) | 21.940 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Borovoye (Burabai) - Pearl of Kazakhstan: The Incredible Journey (Story of my Husband)](https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband) | 20.616 SBD |\n| [@burnin](https://steemit.com/@burnin) | [Exploring the Off-Limits Areas of the Largest Cruise Ship In the World - Part 2](https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2) | 20.298 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Eyes Of Wisdom](https://steemit.com/art/@reddust/eyes-of-wisdom) | 20.051 SBD |\n| [@levycore](https://steemit.com/@levycore) | [Hot Chocolate Art - Trying Draw Faces](https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces) | 20.233 SBD |\n| [@awesomenyl](https://steemit.com/@awesomenyl) | [Sunflower Paper Tutorial](https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial) | 20.040 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [The epic and awesome guide to writing articles like a true artist that people want to read and share! [Edited for Steemit today]](https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today) | 20.192 SBD |\n| [@naquoya](https://steemit.com/@naquoya) | [[ORIGINAL FICTION] Bad Trip part two: The Gamemaster](https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster) | 20.041 SBD |\n| [@moon32walker](https://steemit.com/@moon32walker) | [Top 10 Game Development Studios](https://steemit.com/gaming/@moon32walker/top-10-game-development-studios) | 20.468 SBD |\n| [@gustavopasquini](https://steemit.com/@gustavopasquini) | [Polenta with Ragu Meat Dry](https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry) | 20.436 SBD |\n| [@benadapt](https://steemit.com/@benadapt) | [Capturing the Milky Way — A Photographer’s Biggest Challenge](https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge) | 20.477 SBD |\n| [@altzero](https://steemit.com/@altzero) | [¿Que es la nueva economia?](https://steemit.com/spanish/@altzero/que-es-la-nueva-economia) | 20.037 SBD |\n| [@por500bolos](https://steemit.com/@por500bolos) | [Uncovering The Most Transcendental & Biggest Secret In The Human Life. ¿Skeptical? I will challenge you to prove otherwise!!](https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise) | 20.894 SBD |\n| [@zonpower](https://steemit.com/@zonpower) | [This is a place (An original Poem)](https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem) | 20.869 SBD |\n| [@katharsisdrill](https://steemit.com/@katharsisdrill) | [The rune-stones of Jelling, and a new realisation.](https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation) | 19.761 SBD |\n| [@glezeddy](https://steemit.com/@glezeddy) | [MEZCLA DE TEQUILA PARA DAR EL \"GRITO\" (MÉXICO)](https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico) | 15.682 SBD |\n| [@onetree](https://steemit.com/@onetree) | [South African Slang - Enter Those Who Dare!](https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare) | 33.017 SBD |\n| [@verbal-d](https://steemit.com/@verbal-d) | [Melodious Music Memoirs # 2: Impact](https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact) | 30.372 SBD |\n| [@wanderingagorist](https://steemit.com/@wanderingagorist) | [Foraging Wild Rose Hips for Tea and Eating](https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating) | 29.228 SBD |\n| [@knablinz](https://steemit.com/@knablinz) | [Hand-Made Collage Art By Knablinz ( Donuts & Coffee )](https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee) | 35.939 SBD |\n\n---------------------------\n
Note: All author rewards from this post will be used to fund Project Curie.
Join us in #curie on Steemit.chat and follow us @curie!
", - "json_metadata": { - "tags": [ - "curie", - "minnows", - "hidden-gems", - "steemit", - "project-curie" - ], - "users": [ - "nextgencrypto", - "curie" - ], - "image": [ - "https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg" - ], - "links": [ - "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", - "https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement", - "https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", - "https://steemit.com/@faddat", - "https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed", - "https://steemit.com/@rampant", - "https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool", - "https://steemit.com/@shenanigator", - "https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do", - "https://steemit.com/@penguinpablo", - "https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf", - "https://steemit.com/@nathanjtaylor", - "https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry", - "https://steemit.com/@lily-da-vine", - "https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco", - "https://steemit.com/@budgetbucketlist", - "https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes", - "https://steemit.com/@benjiberigan", - "https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations", - "https://steemit.com/@ausbitbank", - "https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos", - "https://steemit.com/@emily-cook", - "https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work", - "https://steemit.com/@team-leibniz", - "https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00", - "https://steemit.com/@ionescur", - "https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land", - "https://steemit.com/@kimal73", - "https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work", - "https://steemit.com/@juliac", - "https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think", - "https://steemit.com/@luzcypher", - "https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals", - "https://steemit.com/@akareyon", - "https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing", - "https://steemit.com/@curving", - "https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation", - "https://steemit.com/@aleksandraz", - "https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology", - "https://steemit.com/@skapaneas", - "https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more", - "https://steemit.com/@gargon", - "https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", - "https://steemit.com/@iamwne", - "https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass", - "https://steemit.com/@stormblaze", - "https://steemit.com/technology/@stormblaze/where-do-deleted-files-go", - "https://steemit.com/@yanarnst", - "https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts", - "https://steemit.com/@senseye", - "https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor", - "https://steemit.com/@crasch", - "https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future", - "https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners", - "https://steemit.com/@cristi", - "https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months", - "https://steemit.com/@stranger27", - "https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature", - "https://steemit.com/@nekromarinist", - "https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today", - "https://steemit.com/@richman", - "https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story", - "https://steemit.com/@maceytomlin", - "https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony", - "https://steemit.com/@nili", - "https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol", - "https://steemit.com/@optimistic-crone", - "https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe", - "https://steemit.com/@anarchyhasnogods", - "https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one", - "https://steemit.com/@yostopia", - "https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick", - "https://steemit.com/@reneenouveau", - "https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015", - "https://steemit.com/@king3071", - "https://steemit.com/travel/@king3071/my-dream-destination-switzerland", - "https://steemit.com/@kolin.evans", - "https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines", - "https://steemit.com/@fenglosophy", - "https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think", - "https://steemit.com/@mandibil", - "https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil", - "https://steemit.com/@therajmahal", - "https://steemit.com/science/@therajmahal/making-the-impossible-possible", - "https://steemit.com/@carlitashaw", - "https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions", - "https://steemit.com/@renzoarg", - "https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics", - "https://steemit.com/@rachelsvparry", - "https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time", - "https://steemit.com/@royalmacro", - "https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art", - "https://steemit.com/@stephmckenzie", - "https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone", - "https://steemit.com/@alwayzgame", - "https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life", - "https://steemit.com/@nonlinearone", - "https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing", - "https://steemit.com/@kafkanarchy84", - "https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii", - "https://steemit.com/@feline1991", - "https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2", - "https://steemit.com/@geke", - "https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge", - "https://steemit.com/@lscottphotos", - "https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos", - "https://steemit.com/@pinkisland", - "https://steemit.com/writing/@pinkisland/my-philosophy-of-education", - "https://steemit.com/@jgcastrillo19", - "https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco", - "https://steemit.com/@luisucv34", - "https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition", - "https://steemit.com/@beowulfoflegend", - "https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty", - "https://steemit.com/@mariandavp", - "https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp", - "https://steemit.com/@nasimbabu", - "https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases", - "https://steemit.com/@royaltiffany", - "https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update", - "https://steemit.com/@travelista", - "https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo", - "https://steemit.com/@jpiper20", - "https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4", - "https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism", - "https://steemit.com/@krystle", - "https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin", - "https://steemit.com/@cryptoiskey", - "https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids", - "https://steemit.com/@getonthetrain", - "https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods", - "https://steemit.com/@ansharphoto", - "https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome", - "https://steemit.com/@aboundlessworld", - "https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast", - "https://steemit.com/@thornybastard", - "https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest", - "https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5", - "https://steemit.com/@dumar022", - "https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this", - "https://steemit.com/@lapilipinas", - "https://steemit.com/science/@lapilipinas/light-from-distant-stars", - "https://steemit.com/@williambanks", - "https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace", - "https://steemit.com/@driv3n", - "https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2", - "https://steemit.com/@timbot606", - "https://steemit.com/life/@timbot606/growing-up-in-appalachia", - "https://steemit.com/@themagus", - "https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2", - "https://steemit.com/@echoesinthemind", - "https://steemit.com/life/@echoesinthemind/hanging-upside-down", - "https://steemit.com/@ysa", - "https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado", - "https://steemit.com/@aksinya", - "https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video", - "https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro", - "https://steemit.com/@successfully00", - "https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1", - "https://steemit.com/@linzo", - "https://steemit.com/poem/@linzo/a-life-fantasy-original-poem", - "https://steemit.com/@hilarski", - "https://steemit.com/panama/@hilarski/panama-critters", - "https://steemit.com/@sulev", - "https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2", - "https://steemit.com/@steemswede", - "https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale", - "https://steemit.com/@marius19", - "https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami", - "https://steemit.com/@poeticsnake", - "https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings", - "https://steemit.com/@kiddarko", - "https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video", - "https://steemit.com/@shieha", - "https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2", - "https://steemit.com/@ayim", - "https://steemit.com/life/@ayim/fixing-posture-part-4-neck", - "https://steemit.com/@hitmeasap", - "https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice", - "https://steemit.com/@peskov", - "https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author", - "https://steemit.com/@aldentan", - "https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts", - "https://steemit.com/@beginningtoend", - "https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy", - "https://steemit.com/@kaykunoichi", - "https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself", - "https://steemit.com/@booky", - "https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates", - "https://steemit.com/@doubledex", - "https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong", - "https://steemit.com/@ekaterina4ka", - "https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2", - "https://steemit.com/@scaredycatguide", - "https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica", - "https://steemit.com/@amy-goodrich", - "https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie", - "https://steemit.com/@scott.stevens", - "https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering", - "https://steemit.com/@witchcraftblog", - "https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa", - "https://steemit.com/@ibringawareness", - "https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5", - "https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73", - "https://steemit.com/@leylar", - "https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work", - "https://steemit.com/@ocrdu", - "https://steemit.com/photography/@ocrdu/the-pods-that-go-pop", - "https://steemit.com/@rusla", - "https://steemit.com/travel/@rusla/japan-part8", - "https://steemit.com/@edgarsart", - "https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing", - "https://steemit.com/@borishaifa", - "https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat", - "https://steemit.com/@eveningstar92", - "https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art", - "https://steemit.com/@elewarne", - "https://steemit.com/mixedmedia/@elewarne/mixed-media", - "https://steemit.com/@shredlord", - "https://steemit.com/art/@shredlord/sunrise", - "https://steemit.com/@sherlockcupid", - "https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one", - "https://steemit.com/@annesaya", - "https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers", - "https://steemit.com/@fitmama", - "https://steemit.com/life/@fitmama/why-do-i-bother", - "https://steemit.com/@ezzy", - "https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories", - "https://steemit.com/@kingarbinv", - "https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far", - "https://steemit.com/@soulsistashakti", - "https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist", - "https://steemit.com/@puffin", - "https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem", - "https://steemit.com/@cehuneke", - "https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease", - "https://steemit.com/@tanata", - "https://steemit.com/fashion/@tanata/little-black-dress-involving", - "https://steemit.com/@steemwriter", - "https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship", - "https://steemit.com/@michelle.gent", - "https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters", - "https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing", - "https://steemit.com/@runridefly", - "https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale", - "https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one", - "https://steemit.com/@lyubovbar", - "https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory", - "https://steemit.com/@victoriart", - "https://steemit.com/art/@victoriart/hazelnut-mood", - "https://steemit.com/@heroic15397", - "https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area", - "https://steemit.com/@smartercars", - "https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews", - "https://steemit.com/@rubenalexander", - "https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016", - "https://steemit.com/@matthew.raymer", - "https://steemit.com/psychology/@matthew.raymer/life-stories", - "https://steemit.com/@positivesteem", - "https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees", - "https://steemit.com/@d3nv3r", - "https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real", - "https://steemit.com/@adubi", - "https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet", - "https://steemit.com/@alitas", - "https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla", - "https://steemit.com/@mazi", - "https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis", - "https://steemit.com/@mikemacintire", - "https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work", - "https://steemit.com/@altzero", - "https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2", - "https://steemit.com/@birdie", - "https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos", - "https://steemit.com/@michaelstobiersk", - "https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski", - "https://steemit.com/@reddust", - "https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary", - "https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown", - "https://steemit.com/@karisa", - "https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4", - "https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband", - "https://steemit.com/@burnin", - "https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2", - "https://steemit.com/art/@reddust/eyes-of-wisdom", - "https://steemit.com/@levycore", - "https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces", - "https://steemit.com/@awesomenyl", - "https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial", - "https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today", - "https://steemit.com/@naquoya", - "https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster", - "https://steemit.com/@moon32walker", - "https://steemit.com/gaming/@moon32walker/top-10-game-development-studios", - "https://steemit.com/@gustavopasquini", - "https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry", - "https://steemit.com/@benadapt", - "https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge", - "https://steemit.com/spanish/@altzero/que-es-la-nueva-economia", - "https://steemit.com/@por500bolos", - "https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise", - "https://steemit.com/@zonpower", - "https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem", - "https://steemit.com/@katharsisdrill", - "https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation", - "https://steemit.com/@glezeddy", - "https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico", - "https://steemit.com/@onetree", - "https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare", - "https://steemit.com/@verbal-d", - "https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact", - "https://steemit.com/@wanderingagorist", - "https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating", - "https://steemit.com/@knablinz", - "https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee" - ] - }, - "created": "2016-09-15T17:53:48", - "updated": "2016-09-15T17:53:48", - "depth": 0, - "children": 10, - "net_rshares": 61028272797290, - "is_paidout": false, - "payout_at": "2016-09-16T18:14:08", - "payout": 218.554, - "pending_payout_value": "218.554 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], "active_votes": [ { - "voter": "val-a", - "rshares": "30948708908726" + "rshares": "30948708908726", + "voter": "val-a" + }, + { + "rshares": "15292900000000", + "voter": "val-b" + }, + { + "rshares": "1534352192855", + "voter": "joseph" + }, + { + "rshares": "652034182902", + "voter": "masteryoda" + }, + { + "rshares": "8927024295", + "voter": "idol" + }, + { + "rshares": "2637269453488", + "voter": "donkeypong" + }, + { + "rshares": "816386307308", + "voter": "steemrollin" + }, + { + "rshares": "4941856440", + "voter": "sakr" + }, + { + "rshares": "140357414085", + "voter": "chris4210" + }, + { + "rshares": "1536548017", + "voter": "jocelyn" + }, + { + "rshares": "83530339170", + "voter": "acidsun" }, { - "voter": "val-b", - "rshares": "15292900000000" + "rshares": "1196485708874", + "voter": "gavvet" }, { - "voter": "joseph", - "rshares": "1534352192855" + "rshares": "59931939963", + "voter": "eeks" }, { - "voter": "masteryoda", - "rshares": "652034182902" + "rshares": "6122594947", + "voter": "fernando-sanz" }, { - "voter": "idol", - "rshares": "8927024295" + "rshares": "584270995256", + "voter": "nanzo-scoop" }, { - "voter": "donkeypong", - "rshares": "2637269453488" + "rshares": "177415501233", + "voter": "mummyimperfect" }, { - "voter": "steemrollin", - "rshares": "816386307308" + "rshares": "106634401121", + "voter": "asch" }, { - "voter": "sakr", - "rshares": "4941856440" + "rshares": "603741881611", + "voter": "kevinwong" }, { - "voter": "chris4210", - "rshares": "140357414085" + "rshares": "1061259321", + "voter": "murh" }, { - "voter": "jocelyn", - "rshares": "1536548017" + "rshares": "3187850436", + "voter": "cryptofunk" }, { - "voter": "acidsun", - "rshares": "83530339170" + "rshares": "2003304335", + "voter": "error" }, { - "voter": "gavvet", - "rshares": "1196485708874" + "rshares": "962089879337", + "voter": "cyber" }, { - "voter": "eeks", - "rshares": "59931939963" + "rshares": "50884297723", + "voter": "ak2020" }, { - "voter": "fernando-sanz", - "rshares": "6122594947" + "rshares": "61300613738", + "voter": "justtryme90" }, { - "voter": "nanzo-scoop", - "rshares": "584270995256" + "rshares": "410517349", + "voter": "applecrisp" }, { - "voter": "mummyimperfect", - "rshares": "177415501233" + "rshares": "35693164103", + "voter": "altoz" }, { - "voter": "asch", - "rshares": "106634401121" + "rshares": "820589638514", + "voter": "anwenbaumeister" }, { - "voter": "kevinwong", - "rshares": "603741881611" + "rshares": "5950595929", + "voter": "mark-waser" }, { - "voter": "murh", - "rshares": "1061259321" + "rshares": "118349796563", + "voter": "geoffrey" }, { - "voter": "cryptofunk", - "rshares": "3187850436" + "rshares": "192325266448", + "voter": "kimziv" }, { - "voter": "error", - "rshares": "2003304335" + "rshares": "77083924707", + "voter": "emily-cook" }, { - "voter": "cyber", - "rshares": "962089879337" + "rshares": "3283440404", + "voter": "orly" }, { - "voter": "ak2020", - "rshares": "50884297723" + "rshares": "2834957075", + "voter": "steem1653" }, { - "voter": "justtryme90", - "rshares": "61300613738" + "rshares": "124961861", + "voter": "cynetyc" }, { - "voter": "applecrisp", - "rshares": "410517349" + "rshares": "5357326058", + "voter": "thegoodguy" }, { - "voter": "altoz", - "rshares": "35693164103" + "rshares": "4209522316", + "voter": "karen13" }, { - "voter": "anwenbaumeister", - "rshares": "820589638514" + "rshares": "251366150295", + "voter": "nabilov" }, { - "voter": "mark-waser", - "rshares": "5950595929" + "rshares": "8401059269", + "voter": "noodhoog" }, { - "voter": "geoffrey", - "rshares": "118349796563" + "rshares": "455246290726", + "voter": "knozaki2015" }, { - "voter": "kimziv", - "rshares": "192325266448" + "rshares": "7166494256", + "voter": "lichtblick" }, { - "voter": "emily-cook", - "rshares": "77083924707" + "rshares": "33739090409", + "voter": "creemej" }, { - "voter": "orly", - "rshares": "3283440404" + "rshares": "5726411049", + "voter": "btcbtcbtc20155" }, { - "voter": "steem1653", - "rshares": "2834957075" + "rshares": "163324531946", + "voter": "blueorgy" }, { - "voter": "cynetyc", - "rshares": "124961861" + "rshares": "4195248338", + "voter": "poseidon" }, { - "voter": "thegoodguy", - "rshares": "5357326058" + "rshares": "3435918746", + "voter": "simon.braki.love" }, { - "voter": "karen13", - "rshares": "4209522316" + "rshares": "268137172703", + "voter": "liberosist" }, { - "voter": "nabilov", - "rshares": "251366150295" + "rshares": "4128504280", + "voter": "birdie" }, { - "voter": "noodhoog", - "rshares": "8401059269" + "rshares": "5609578664", + "voter": "sharker" }, { - "voter": "knozaki2015", - "rshares": "455246290726" + "rshares": "204618259005", + "voter": "jl777" }, { - "voter": "lichtblick", - "rshares": "7166494256" + "rshares": "1773036384", + "voter": "yarly" }, { - "voter": "creemej", - "rshares": "33739090409" + "rshares": "267188192", + "voter": "yarly2" }, { - "voter": "btcbtcbtc20155", - "rshares": "5726411049" + "rshares": "267587944", + "voter": "yarly3" }, { - "voter": "blueorgy", - "rshares": "163324531946" + "rshares": "154579129", + "voter": "yarly4" }, { - "voter": "poseidon", - "rshares": "4195248338" + "rshares": "155451862", + "voter": "yarly5" }, { - "voter": "simon.braki.love", - "rshares": "3435918746" + "rshares": "88607961", + "voter": "yarly7" }, { - "voter": "liberosist", - "rshares": "268137172703" + "rshares": "11031796651", + "voter": "moon32walker" }, { - "voter": "birdie", - "rshares": "4128504280" + "rshares": "258619590", + "voter": "sergey44" }, { - "voter": "sharker", - "rshares": "5609578664" + "rshares": "17267341753", + "voter": "proto" }, { - "voter": "jl777", - "rshares": "204618259005" + "rshares": "31599342155", + "voter": "sisterholics" }, { - "voter": "yarly", - "rshares": "1773036384" + "rshares": "428868451", + "voter": "yarly10" }, { - "voter": "yarly2", - "rshares": "267188192" + "rshares": "229507420", + "voter": "yarly11" }, { - "voter": "yarly3", - "rshares": "267587944" + "rshares": "80241480", + "voter": "yarly12" }, { - "voter": "yarly4", - "rshares": "154579129" + "rshares": "146224042", + "voter": "steemster1" }, { - "voter": "yarly5", - "rshares": "155451862" + "rshares": "5878023046", + "voter": "mahekg" }, { - "voter": "yarly7", - "rshares": "88607961" + "rshares": "8734150854", + "voter": "taker" }, { - "voter": "moon32walker", - "rshares": "11031796651" + "rshares": "6521104126", + "voter": "nekromarinist" }, { - "voter": "sergey44", - "rshares": "258619590" + "rshares": "10553169212", + "voter": "theprophet0" }, { - "voter": "proto", - "rshares": "17267341753" + "rshares": "57873464", + "voter": "sharon" }, { - "voter": "sisterholics", - "rshares": "31599342155" + "rshares": "58971492", + "voter": "lillianjones" }, { - "voter": "yarly10", - "rshares": "428868451" + "rshares": "1117443990130", + "voter": "laonie" }, { - "voter": "yarly11", - "rshares": "229507420" + "rshares": "4257390614", + "voter": "twinner" }, { - "voter": "yarly12", - "rshares": "80241480" + "rshares": "4414425121", + "voter": "timcliff" }, { - "voter": "steemster1", - "rshares": "146224042" + "rshares": "38640926181", + "voter": "myfirst" }, { - "voter": "mahekg", - "rshares": "5878023046" + "rshares": "233306274805", + "voter": "somebody" }, { - "voter": "taker", - "rshares": "8734150854" + "rshares": "8723132526", + "voter": "flysaga" }, { - "voter": "nekromarinist", - "rshares": "6521104126" + "rshares": "1667759072", + "voter": "gmurph" }, { - "voter": "theprophet0", - "rshares": "10553169212" + "rshares": "51539167746", + "voter": "midnightoil" }, { - "voter": "sharon", - "rshares": "57873464" + "rshares": "4190377366", + "voter": "ullikume" }, { - "voter": "lillianjones", - "rshares": "58971492" + "rshares": "128906992414", + "voter": "xiaohui" }, { - "voter": "laonie", - "rshares": "1117443990130" + "rshares": "21112616587", + "voter": "jphamer1" }, { - "voter": "twinner", - "rshares": "4257390614" + "rshares": "6306539895", + "voter": "elfkitchen" }, { - "voter": "timcliff", - "rshares": "4414425121" + "rshares": "102434307703", + "voter": "joele" }, { - "voter": "myfirst", - "rshares": "38640926181" + "rshares": "15549176040", + "voter": "randyclemens" }, { - "voter": "somebody", - "rshares": "233306274805" + "rshares": "4030108065", + "voter": "xiaokongcom" }, { - "voter": "flysaga", - "rshares": "8723132526" + "rshares": "59437351", + "voter": "msjennifer" }, { - "voter": "gmurph", - "rshares": "1667759072" + "rshares": "54654502", + "voter": "ciao" }, { - "voter": "midnightoil", - "rshares": "51539167746" + "rshares": "52985539", + "voter": "steemo" }, { - "voter": "ullikume", - "rshares": "4190377366" + "rshares": "8123975227", + "voter": "xianjun" }, { - "voter": "xiaohui", - "rshares": "128906992414" + "rshares": "52848854", + "voter": "steema" }, { - "voter": "jphamer1", - "rshares": "21112616587" + "rshares": "69662169", + "voter": "confucius" }, { - "voter": "elfkitchen", - "rshares": "6306539895" + "rshares": "11292536945", + "voter": "borran" }, { - "voter": "joele", - "rshares": "102434307703" + "rshares": "53661976", + "voter": "jarvis" }, { - "voter": "randyclemens", - "rshares": "15549176040" + "rshares": "546765304", + "voter": "microluck" }, { - "voter": "xiaokongcom", - "rshares": "4030108065" + "rshares": "75676352", + "voter": "razberrijam" }, { - "voter": "msjennifer", - "rshares": "59437351" + "rshares": "53106127", + "voter": "fortuner" }, { - "voter": "ciao", - "rshares": "54654502" + "rshares": "84942400", + "voter": "pompe72" }, { - "voter": "steemo", - "rshares": "52985539" + "rshares": "8114632832", + "voter": "lemouth" }, { - "voter": "xianjun", - "rshares": "8123975227" + "rshares": "10344891579", + "voter": "gvargas123" }, { - "voter": "steema", - "rshares": "52848854" + "rshares": "51877132", + "voter": "johnbyrd" }, { - "voter": "confucius", - "rshares": "69662169" + "rshares": "50682252", + "voter": "thomasaustin" }, { - "voter": "borran", - "rshares": "11292536945" + "rshares": "51859074", + "voter": "thermor" }, { - "voter": "jarvis", - "rshares": "53661976" + "rshares": "50691211", + "voter": "ficholl" }, { - "voter": "microluck", - "rshares": "546765304" + "rshares": "51852278", + "voter": "widell" }, { - "voter": "razberrijam", - "rshares": "75676352" + "rshares": "404286448", + "voter": "steevc" }, { - "voter": "fortuner", - "rshares": "53106127" + "rshares": "3635091595", + "voter": "movievertigo" }, { - "voter": "pompe72", - "rshares": "84942400" + "rshares": "51481279", + "voter": "revelbrooks" }, { - "voter": "lemouth", - "rshares": "8114632832" + "rshares": "1573489537", + "voter": "cehuneke" }, { - "voter": "gvargas123", - "rshares": "10344891579" + "rshares": "2982676167", + "voter": "netaterra" }, { - "voter": "johnbyrd", - "rshares": "51877132" + "rshares": "23137850346", + "voter": "andrewawerdna" }, { - "voter": "thomasaustin", - "rshares": "50682252" + "rshares": "5831957227", + "voter": "trev" }, { - "voter": "thermor", - "rshares": "51859074" + "rshares": "8773942171", + "voter": "craigwilliamz" }, { - "voter": "ficholl", - "rshares": "50691211" + "rshares": "51505575275", + "voter": "mandibil" }, { - "voter": "widell", - "rshares": "51852278" + "rshares": "32462674824", + "voter": "daut44" }, { - "voter": "steevc", - "rshares": "404286448" + "rshares": "50416427", + "voter": "curpose" }, { - "voter": "movievertigo", - "rshares": "3635091595" + "rshares": "3597236649", + "voter": "curving" }, { - "voter": "revelbrooks", - "rshares": "51481279" + "rshares": "61596105", + "voter": "uri-bruck" }, { - "voter": "cehuneke", - "rshares": "1573489537" + "rshares": "112983030208", + "voter": "shenanigator" }, { - "voter": "netaterra", - "rshares": "2982676167" + "rshares": "10005063213", + "voter": "quinneaker" }, { - "voter": "andrewawerdna", - "rshares": "23137850346" + "rshares": "7626813355", + "voter": "einsteinpotsdam" }, { - "voter": "trev", - "rshares": "5831957227" + "rshares": "4747321980", + "voter": "richardcrill" }, { - "voter": "craigwilliamz", - "rshares": "8773942171" + "rshares": "2205784762", + "voter": "jeremyfromwi" }, { - "voter": "mandibil", - "rshares": "51505575275" + "rshares": "50588612", + "voter": "troich" }, { - "voter": "daut44", - "rshares": "32462674824" + "rshares": "1661534801", + "voter": "davidjkelley" }, { - "voter": "curpose", - "rshares": "50416427" + "rshares": "50593879", + "voter": "crion" }, { - "voter": "curving", - "rshares": "3597236649" + "rshares": "178419224", + "voter": "greatness" }, { - "voter": "uri-bruck", - "rshares": "61596105" + "rshares": "50271139", + "voter": "hitherise" }, { - "voter": "shenanigator", - "rshares": "112983030208" + "rshares": "50262756", + "voter": "wiss" }, { - "voter": "quinneaker", - "rshares": "10005063213" + "rshares": "54249219602", + "voter": "sponge-bob" }, { - "voter": "einsteinpotsdam", - "rshares": "7626813355" + "rshares": "15571056039", + "voter": "digital-wisdom" }, { - "voter": "richardcrill", - "rshares": "4747321980" + "rshares": "3365396535", + "voter": "getonthetrain" }, { - "voter": "jeremyfromwi", - "rshares": "2205784762" + "rshares": "3710959443", + "voter": "ethical-ai" }, { - "voter": "troich", - "rshares": "50588612" + "rshares": "51033798", + "voter": "stroully" }, { - "voter": "davidjkelley", - "rshares": "1661534801" + "rshares": "6831361820", + "voter": "jwaser" }, { - "voter": "crion", - "rshares": "50593879" + "rshares": "468106735", + "voter": "tfeldman" }, { - "voter": "greatness", - "rshares": "178419224" + "rshares": "50712038", + "voter": "thadm" }, { - "voter": "hitherise", - "rshares": "50271139" + "rshares": "50710305", + "voter": "prof" }, { - "voter": "wiss", - "rshares": "50262756" + "rshares": "1597514180", + "voter": "ionescur" }, { - "voter": "sponge-bob", - "rshares": "54249219602" + "rshares": "50065875", + "voter": "bane" }, { - "voter": "digital-wisdom", - "rshares": "15571056039" + "rshares": "50059754", + "voter": "vive" }, { - "voter": "getonthetrain", - "rshares": "3365396535" + "rshares": "50054445", + "voter": "coad" }, { - "voter": "ethical-ai", - "rshares": "3710959443" + "rshares": "2675506788", + "voter": "bwaser" }, { - "voter": "stroully", - "rshares": "51033798" + "rshares": "7645490859", + "voter": "renzoarg" }, { - "voter": "jwaser", - "rshares": "6831361820" + "rshares": "50840303", + "voter": "sofa" }, { - "voter": "tfeldman", - "rshares": "468106735" + "rshares": "53990613", + "voter": "roadhog" }, { - "voter": "thadm", - "rshares": "50712038" + "rshares": "52794249", + "voter": "doggnostic" }, { - "voter": "prof", - "rshares": "50710305" + "rshares": "52521499", + "voter": "jenny-talls" }, { - "voter": "ionescur", - "rshares": "1597514180" + "rshares": "8199670899", + "voter": "mariandavp" }, { - "voter": "bane", - "rshares": "50065875" + "rshares": "55344422883", + "voter": "brains" }, { - "voter": "vive", - "rshares": "50059754" + "rshares": "53415391", + "voter": "post-successful" }, { - "voter": "coad", - "rshares": "50054445" + "rshares": "5866415576", + "voter": "burnin" }, { - "voter": "bwaser", - "rshares": "2675506788" + "rshares": "271439221", + "voter": "anomaly" }, { - "voter": "renzoarg", - "rshares": "7645490859" + "rshares": "2401297947", + "voter": "ellepdub" }, { - "voter": "sofa", - "rshares": "50840303" + "rshares": "4116636581", + "voter": "michelle.gent" }, { - "voter": "roadhog", - "rshares": "53990613" + "rshares": "12115638535", + "voter": "herpetologyguy" }, { - "voter": "doggnostic", - "rshares": "52794249" + "rshares": "4817004213", + "voter": "morgan.waser" }, { - "voter": "jenny-talls", - "rshares": "52521499" + "rshares": "50228382", + "voter": "dragonice" }, { - "voter": "mariandavp", - "rshares": "8199670899" + "rshares": "1288421610", + "voter": "aksinya" }, { - "voter": "brains", - "rshares": "55344422883" + "rshares": "1921231770", + "voter": "bapparabi" }, { - "voter": "post-successful", - "rshares": "53415391" + "rshares": "50487909", + "voter": "opticalillusions" }, { - "voter": "burnin", - "rshares": "5866415576" + "rshares": "3689852156", + "voter": "strong-ai" }, { - "voter": "anomaly", - "rshares": "271439221" + "rshares": "505556200", + "voter": "grisha-danunaher" }, { - "voter": "ellepdub", - "rshares": "2401297947" + "rshares": "71207873", + "voter": "igtes" }, { - "voter": "michelle.gent", - "rshares": "4116636581" + "rshares": "50277354380", + "voter": "curie" }, { - "voter": "herpetologyguy", - "rshares": "12115638535" + "rshares": "851767121", + "voter": "dikanevroman" }, { - "voter": "morgan.waser", - "rshares": "4817004213" + "rshares": "141679752", + "voter": "buffett" }, { - "voter": "dragonice", - "rshares": "50228382" + "rshares": "453506109", + "voter": "witchcraftblog" }, { - "voter": "aksinya", - "rshares": "1288421610" + "rshares": "157799009", + "voter": "photorealistic" }, { - "voter": "bapparabi", - "rshares": "1921231770" + "rshares": "160880639", + "voter": "illusions" }, { - "voter": "opticalillusions", - "rshares": "50487909" + "rshares": "6920933761", + "voter": "dresden" }, { - "voter": "strong-ai", - "rshares": "3689852156" + "rshares": "160845765", + "voter": "caseyneistat" }, { - "voter": "grisha-danunaher", - "rshares": "505556200" + "rshares": "692395145", + "voter": "ysa" }, { - "voter": "igtes", - "rshares": "71207873" + "rshares": "159984914", + "voter": "correct" }, { - "voter": "curie", - "rshares": "50277354380" + "rshares": "159973989", + "voter": "capcom" }, { - "voter": "dikanevroman", - "rshares": "851767121" + "rshares": "159963865", + "voter": "sledgehammer" }, { - "voter": "buffett", - "rshares": "141679752" + "rshares": "159950870", + "voter": "haribo" }, { - "voter": "witchcraftblog", - "rshares": "453506109" + "rshares": "159531007", + "voter": "benetton" }, { - "voter": "photorealistic", - "rshares": "157799009" + "rshares": "156194471", + "voter": "stimmt" + }, + { + "rshares": "159143891", + "voter": "reef" + }, + { + "rshares": "158632601", + "voter": "cream" + }, + { + "rshares": "891891710", + "voter": "reddust" + }, + { + "rshares": "336222066", + "voter": "aldentan" + }, + { + "rshares": "191981449", + "voter": "techslut" + } + ], + "author": "curie", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "
https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg
\n\n## Introduction\n[Project Curie](https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors) is a community project run by several Steemit authors. Its mission is to help reward content creators who are posting great original content, yet who have not yet become established. In the short time since Curie began, our writers group has partnered with @nextgencrypto and other whale accounts to bring rewards to these deserving authors. *Writers, artists, chefs, photographers, videographers, and many others have been recognized by these rewards.*\n\nEach day, the members of our Project will publish this list of the posts that Project Curie has chosen to reward recently. We hope that this list will provide more positive exposure to the authors we have selected. Also, it is an effort for us to be more transparent about which posts are being rewarded. We hope that you will consider following not only this @curie account, but also many of the authors whose work is featured here each day. **Please consider adding your comments on these posts also!**\n\nProject Curie's daily curation lists will now be called \"The Daily Curie\". We hope you like the name! Future editions of The Daily Curie will [feature our new logo](https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement). For the latest on Project Curie, do check out our [Month #1 update](https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016). \n\n----------------------\n\n## Today's Brief Analysis\n\nToday's list polls all posts curated between 17:00 14/09 UTC and 17:00 15/09 UTC. Project Curie voted on a total of **103 posts** by 99 unique authors. **SBD 3,832** has been generated for authors thus far, at an average of SBD 37 per post. \n\n----------------------\n| Author | Post | Payout |\n| --------- | ---------- | --------- |\n| [@faddat](https://steemit.com/@faddat) | [[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!](https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed) | 616.681 SBD |\n| [@rampant](https://steemit.com/@rampant) | [Steemit Daily Drawing Tutorial - Gesture drawings (plus tool)](https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool) | 215.310 SBD |\n| [@shenanigator](https://steemit.com/@shenanigator) | [Doing the Right Thing Will Get You Fired. What Do You Do?](https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do) | 205.664 SBD |\n| [@penguinpablo](https://steemit.com/@penguinpablo) | [How to Carve an Apple Leaf](https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf) | 196.419 SBD |\n| [@nathanjtaylor](https://steemit.com/@nathanjtaylor) | [Fire And Grace Art Painting And Poetry](https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry) | 189.043 SBD |\n| [@lily-da-vine](https://steemit.com/@lily-da-vine) | [Going Bananas in Acapulco](https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco) | 158.416 SBD |\n| [@budgetbucketlist](https://steemit.com/@budgetbucketlist) | [A 1-week plunge into Mexico City's madness! Art adventures, Frida-seeking and unfiltered exhaust fumes...](https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes) | 151.033 SBD |\n| [@benjiberigan](https://steemit.com/@benjiberigan) | [Anarchist Architecture, part 5: The cruelty of architectural codes and regulations.](https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations) | 132.427 SBD |\n| [@ausbitbank](https://steemit.com/@ausbitbank) | [The time my town flooded, the fragility of the food supply and lessons learned (Original photos)](https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos) | 125.877 SBD |\n| [@emily-cook](https://steemit.com/@emily-cook) | [THE ISLE OF MAN FILM FESTIVAL 2016 -A week of parties, red carpets and a lot of hard work!](https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work) | 121.336 SBD |\n| [@team-leibniz](https://steemit.com/@team-leibniz) | [Week 1 NFL Daily Fantasy Football Results - How my Bayesian Inspired Lineups Fared (+$84.00)](https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00) | 119.473 SBD |\n| [@ionescur](https://steemit.com/@ionescur) | [Urban dreams of freedom: back to the countryside, back to the land](https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land) | 110.564 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [New traditionl painting - \"The Battle\" - Steps of work](https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work) | 105.622 SBD |\n| [@juliac](https://steemit.com/@juliac) | [One of The Best Portraits That I've Ever Created: Einstein. What Do You Think?](https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think) | 103.781 SBD |\n| [@luzcypher](https://steemit.com/@luzcypher) | [Cover Crops Can Grow Food Organically With No Fertilizers, No Pesticides, No Herbicides And No Chemicals](https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals) | 100.117 SBD |\n| [@akareyon](https://steemit.com/@akareyon) | [I find your lack of argument disturbing](https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing) | 98.525 SBD |\n| [@curving](https://steemit.com/@curving) | [The Ephemeral Cairn Gardens Of the Austin Greenbelt - A Photo Journal and Meditation](https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation) | 96.834 SBD |\n| [@aleksandraz](https://steemit.com/@aleksandraz) | [Incredible Science - Brainbow Technology](https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology) | 89.777 SBD |\n| [@skapaneas](https://steemit.com/@skapaneas) | [IBD Crohn desease and Ulceritive collitis. what are they, self diagnose, self treat and more.](https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more) | 85.958 SBD |\n| [@gargon](https://steemit.com/@gargon) | [Proyecto Cervantes (13 - 15 Sept 2016): Compensaci\u00f3n y reconocimiento para escritores de habla hispana / Bringing rewards and recognition to spanish writers (Vol. III)](https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and) | 83.725 SBD |\n| [@iamwne](https://steemit.com/@iamwne) | [Blade Runner Inspired Digital Set - The Dark Market - Beauty Pass](https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass) | 83.869 SBD |\n| [@stormblaze](https://steemit.com/@stormblaze) | [Where Do Deleted Files Go?](https://steemit.com/technology/@stormblaze/where-do-deleted-files-go) | 81.221 SBD |\n| [@yanarnst](https://steemit.com/@yanarnst) | [Steemit Food Art lesson 2 ''Salad with chicken liver and pine nuts''](https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts) | 78.034 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Myths in the Sky: Ursa Major and Ursa Minor](https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor) | 72.174 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Brain preservation: an ambulance to the future](https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future) | 72.082 SBD |\n| [@senseye](https://steemit.com/@senseye) | [Vivisecting the Stargazing Tribe: Visual Observers and Screen Scanners](https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners) | 71.421 SBD |\n| [@cristi](https://steemit.com/@cristi) | [Radical Metabolism - No Food and Water for 8 Months](https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months) | 69.559 SBD |\n| [@stranger27](https://steemit.com/@stranger27) | [Fibonacci sequence and Golden Ratio: magic numbers of Nature](https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature) | 66.258 SBD |\n| [@nekromarinist](https://steemit.com/@nekromarinist) | [Let's talk a little bit about phobias today!](https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today) | 61.776 SBD |\n| [@richman](https://steemit.com/@richman) | [If you want to lose a friend, lend him money (My life story)](https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story) | 58.193 SBD |\n| [@maceytomlin](https://steemit.com/@maceytomlin) | [What Exactly is Ayahuasca? How Should You Prepare for a Ceremony?](https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony) | 58.197 SBD |\n| [@nili](https://steemit.com/@nili) | [Smart Life (part 2) - Resolving the Godel's paradox on the blockchain as a solution for a decentralized trusted protocol](https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol) | 55.575 SBD |\n| [@optimistic-crone](https://steemit.com/@optimistic-crone) | [PROBIOTICS FOR LIFE!!! SUPER SIMPLE FERMENTED VEGETABLE 'KIM CHEE' RECIPE](https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe) | 54.909 SBD |\n| [@anarchyhasnogods](https://steemit.com/@anarchyhasnogods) | [Learning one dimensional motion using graphs- physics for beginners - part one](https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one) | 53.295 SBD |\n| [@yostopia](https://steemit.com/@yostopia) | [Beginner's mind, creative mind... the making of a Vimeo Staff Pick.](https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick) | 51.222 SBD |\n| [@reneenouveau](https://steemit.com/@reneenouveau) | [My response to Paul Steyn's myopic article \"Mr. Environmentalist\" shockingly published by National Geographic in Sept 2015.](https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015) | 49.433 SBD |\n| [@king3071](https://steemit.com/@king3071) | [MY DREAM DESTINATION - SWITZERLAND](https://steemit.com/travel/@king3071/my-dream-destination-switzerland) | 49.816 SBD |\n| [@kolin.evans](https://steemit.com/@kolin.evans) | [Something a little more substantial for you to think about - the 'IS' / 'WAS' CPT (Continuous Probable Time-lines.)](https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines) | 47.288 SBD |\n| [@fenglosophy](https://steemit.com/@fenglosophy) | [Does the language you speak influence how you think?](https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think) | 44.070 SBD |\n| [@mandibil](https://steemit.com/@mandibil) | [SAVAGE [Gorm Just, Denmark 2009] - movie review by Mandibil](https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil) | 44.621 SBD |\n| [@therajmahal](https://steemit.com/@therajmahal) | [Making the Impossible... Possible](https://steemit.com/science/@therajmahal/making-the-impossible-possible) | 44.765 SBD |\n| [@carlitashaw](https://steemit.com/@carlitashaw) | [The World's Worst Oil Spills, Ramifications & Amazing Alternative Solutions.](https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions) | 44.986 SBD |\n| [@renzoarg](https://steemit.com/@renzoarg) | [Skip a pill - Antibiotics](https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics) | 43.918 SBD |\n| [@rachelsvparry](https://steemit.com/@rachelsvparry) | [Under the Sea (again, but better this time)](https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time) | 43.436 SBD |\n| [@royalmacro](https://steemit.com/@royalmacro) | [lonely tree [An Original Abstract Art]](https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art) | 42.826 SBD |\n| [@stephmckenzie](https://steemit.com/@stephmckenzie) | [The Power of Choice--A Magnificent Key to True Personal Freedom](https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone) | 42.441 SBD |\n| [@alwayzgame](https://steemit.com/@alwayzgame) | [10 simple steps to ruin your child's life](https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life) | 42.475 SBD |\n| [@nonlinearone](https://steemit.com/@nonlinearone) | [Can Hemingway Improve Your Writing?](https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing) | 42.669 SBD |\n| [@kafkanarchy84](https://steemit.com/@kafkanarchy84) | [\"Johnny B. Goode\" Guitar Lesson and Intro to Theory, Vol. II](https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii) | 41.326 SBD |\n| [@feline1991](https://steemit.com/@feline1991) | [A Steemit Original - A Lifetime of Seeking Happiness - Chapter 2 - Part 2](https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2) | 41.931 SBD |\n| [@geke](https://steemit.com/@geke) | [The Banker and the Bulova - an original poem (Steemit flash-writing challenge)](https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge) | 41.497 SBD |\n| [@lscottphotos](https://steemit.com/@lscottphotos) | [LSCOTTPHOTOS Welcome to my family :) Thank you steemers <3 (Original Photos)](https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos) | 40.201 SBD |\n| [@pinkisland](https://steemit.com/@pinkisland) | [My Philosophy of Education](https://steemit.com/writing/@pinkisland/my-philosophy-of-education) | 40.978 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cinco](https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco) | 39.708 SBD |\n| [@luisucv34](https://steemit.com/@luisucv34) | [Venezuela: The lack of opportunities (English edition)](https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition) | 39.783 SBD |\n| [@beowulfoflegend](https://steemit.com/@beowulfoflegend) | [Silvanus and Empire, an Original Novel (Chapter Twenty)](https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty) | 39.543 SBD |\n| [@mariandavp](https://steemit.com/@mariandavp) | [From zero to hero - abstract office art by @mariandavp](https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp) | 39.529 SBD |\n| [@nasimbabu](https://steemit.com/@nasimbabu) | [The technology that defends us from potentially deadly diseases](https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases) | 39.620 SBD |\n| [@royaltiffany](https://steemit.com/@royaltiffany) | [Steemit B'Day Movie Review Contest Update!](https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update) | 37.706 SBD |\n| [@travelista](https://steemit.com/@travelista) | [An Adventure in Isla Esp\u00edritu Santo!](https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo) | 37.218 SBD |\n| [@jpiper20](https://steemit.com/@jpiper20) | [We Meet At Night -- An Original Story (Part 4)](https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4) | 37.319 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new painting - \"Dexter\" - Modern Impressionism](https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism) | 36.937 SBD |\n| [@krystle](https://steemit.com/@krystle) | [Keltorin's Flora and Fauna of Note - Firikwea - Valcanne's Guide to Keltorin](https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin) | 36.972 SBD |\n| [@cryptoiskey](https://steemit.com/@cryptoiskey) | [Workout from home on the cheap! - 12th September #Ultimate workout companion for your kids!](https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids) | 36.115 SBD |\n| [@getonthetrain](https://steemit.com/@getonthetrain) | [Top 10 Grisly Medieval Torture Methods](https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods) | 34.093 SBD |\n| [@ansharphoto](https://steemit.com/@ansharphoto) | [Roman Forum in the Morning, Rome](https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome) | 33.328 SBD |\n| [@aboundlessworld](https://steemit.com/@aboundlessworld) | [Introducing The Steemit Stories Podcast!](https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast) | 33.728 SBD |\n| [@thornybastard](https://steemit.com/@thornybastard) | [Chapter 10: A Call from the Forest\u2014\u6765\u81ea\u68ee\u6797\u7684\u547c\u5524](https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest) | 32.465 SBD |\n| [@crasch](https://steemit.com/@crasch) | [Installing Bitshares / graphene from source on Mac OS X Yosemite (10.5.5)](https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5) | 32.348 SBD |\n| [@dumar022](https://steemit.com/@dumar022) | [Workshop lesson 6: Wrench: You don't wanna mess with this](https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this) | 32.155 SBD |\n| [@lapilipinas](https://steemit.com/@lapilipinas) | [Light from distant stars](https://steemit.com/science/@lapilipinas/light-from-distant-stars) | 32.778 SBD |\n| [@williambanks](https://steemit.com/@williambanks) | [Towards A Better Tomorrow : Part 1 - There but for grace!](https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace) | 31.434 SBD |\n| [@driv3n](https://steemit.com/@driv3n) | [How to Solve the Rubik's Cube like a boss - Part 2](https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2) | 31.858 SBD |\n| [@timbot606](https://steemit.com/@timbot606) | [Growing up in Appalachia](https://steemit.com/life/@timbot606/growing-up-in-appalachia) | 31.548 SBD |\n| [@themagus](https://steemit.com/@themagus) | [A less privileged white growing up in South Africa in the 1970's - part 2](https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2) | 31.099 SBD |\n| [@echoesinthemind](https://steemit.com/@echoesinthemind) | [Hanging Upside Down / DO NOT Try At Home](https://steemit.com/life/@echoesinthemind/hanging-upside-down) | 31.736 SBD |\n| [@ysa](https://steemit.com/@ysa) | [My pictures from traveling to Estes Park, Colorado](https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado) | 31.981 SBD |\n| [@aksinya](https://steemit.com/@aksinya) | [Our Trip to Wonderful, Scary and Unforgettable Kenya. Original Photos and Video](https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video) | 31.882 SBD |\n| [@jgcastrillo19](https://steemit.com/@jgcastrillo19) | [HOMO HABILIS (Hombre constructor) Parte cuatro](https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro) | 31.992 SBD |\n| [@successfully00](https://steemit.com/@successfully00) | [Knowing The Math - Mental Tricks - Multiplication Part 1](https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1) | 31.037 SBD |\n| [@linzo](https://steemit.com/@linzo) | [A Life Fantasy (Original Poem)](https://steemit.com/poem/@linzo/a-life-fantasy-original-poem) | 30.964 SBD |\n| [@hilarski](https://steemit.com/@hilarski) | [Panama Critters.](https://steemit.com/panama/@hilarski/panama-critters) | 28.729 SBD |\n| [@sulev](https://steemit.com/@sulev) | [Photography #11 - Pictures from my Garden: Bees, Lizards and other (part 2)](https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2) | 27.947 SBD |\n| [@steemswede](https://steemit.com/@steemswede) | [[BEER REVIEW] Thomas Hardy's Ale](https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale) | 27.183 SBD |\n| [@marius19](https://steemit.com/@marius19) | [Set of paper coffee cups. Origami](https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami) | 26.439 SBD |\n| [@poeticsnake](https://steemit.com/@poeticsnake) | [Autumn is coming Doodle style! ( Tutorial with step by step drawings)](https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings) | 26.547 SBD |\n| [@kiddarko](https://steemit.com/@kiddarko) | [Peep Life a Story By KidDarko (with tattoo illistrations and video)](https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video) | 26.853 SBD |\n| [@shieha](https://steemit.com/@shieha) | [The Hardest Computer Game of All Time - Robot Odyssey - Part 2](https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2) | 26.372 SBD |\n| [@ayim](https://steemit.com/@ayim) | [Fixing Posture - Part 4: Neck](https://steemit.com/life/@ayim/fixing-posture-part-4-neck) | 26.142 SBD |\n| [@hitmeasap](https://steemit.com/@hitmeasap) | [I am Batman's Robin or Skywalkers R2-D2. - I've always been the co-pilot. Always been the second choice.](https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice) | 25.747 SBD |\n| [@peskov](https://steemit.com/@peskov) | [Antonikha. Part 2 (featuring Vasily Peskov as author)](https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author) | 25.173 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [Advice from an angry dude: Breathe and interrupt your thoughts](https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts) | 25.162 SBD |\n| [@beginningtoend](https://steemit.com/@beginningtoend) | [Poetry, art and a little home spun philosophy.](https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy) | 25.708 SBD |\n| [@kaykunoichi](https://steemit.com/@kaykunoichi) | [Suicide Note - Audio (Written & performed by myself)](https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself) | 25.523 SBD |\n| [@booky](https://steemit.com/@booky) | [Boosting Leadership Skills = Healthier Happier You and Your Workmates](https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates) | 24.083 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [Do you Know the Difference Between RIGHT & WRONG?](https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong) | 24.516 SBD |\n| [@ekaterina4ka](https://steemit.com/@ekaterina4ka) | [We Knit Patterns by the Spokes. Post 2. \u0412\u044f\u0436\u0435\u043c \u0443\u0437\u043e\u0440\u044b \u0441\u043f\u0438\u0446\u0430\u043c\u0438. \u041f\u043e\u0441\u0442 2.](https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2) | 24.793 SBD |\n| [@scaredycatguide](https://steemit.com/@scaredycatguide) | [Real Talk - Vol 9. - Welcome To Dogmerica](https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica) | 24.207 SBD |\n| [@amy-goodrich](https://steemit.com/@amy-goodrich) | [Pineapple Mojito Green Smoothie](https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie) | 24.126 SBD |\n| [@scott.stevens](https://steemit.com/@scott.stevens) | [Awareness of Bitcoin is Now More Important Than Awareness of Geoengineering](https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering) | 24.875 SBD |\n| [@witchcraftblog](https://steemit.com/@witchcraftblog) | [My trip to Italy. Pisa.](https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa) | 24.265 SBD |\n| [@ibringawareness](https://steemit.com/@ibringawareness) | [\"Why I Got Stiffed\" Guy's Waiter Blog chapter 5](https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5) | 24.224 SBD |\n| [@kimal73](https://steemit.com/@kimal73) | [My new illustration - Batman vs Superman - Modern Impressionism by kimal73](https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73) | 23.617 SBD |\n| [@leylar](https://steemit.com/@leylar) | [Seeds are great travelers ~ Own work](https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work) | 23.166 SBD |\n| [@ocrdu](https://steemit.com/@ocrdu) | [The pods that go \"pop\"](https://steemit.com/photography/@ocrdu/the-pods-that-go-pop) | 23.530 SBD |\n| [@rusla](https://steemit.com/@rusla) | [Japan. Part8.](https://steemit.com/travel/@rusla/japan-part8) | 23.209 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [Puppy Charcoal Original Pencil Drawing](https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing) | 23.879 SBD |\n| [@borishaifa](https://steemit.com/@borishaifa) | [To Write Or Not To Wirte? \u041f\u0438\u0441\u0430\u0442\u044c \u0438\u043b\u0438 \u043d\u0435 \u043f\u0438\u0441\u0430\u0442\u044c?](https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat) | 23.730 SBD |\n| [@eveningstar92](https://steemit.com/@eveningstar92) | [Shit Happens, Move On-NSFW- Evening Star Art](https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art) | 23.092 SBD |\n| [@elewarne](https://steemit.com/@elewarne) | [Mixed Media](https://steemit.com/mixedmedia/@elewarne/mixed-media) | 23.059 SBD |\n| [@shredlord](https://steemit.com/@shredlord) | [Sunrise](https://steemit.com/art/@shredlord/sunrise) | 23.318 SBD |\n| [@sherlockcupid](https://steemit.com/@sherlockcupid) | [Let's Talk: Fears (Part One)](https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one) | 23.720 SBD |\n| [@annesaya](https://steemit.com/@annesaya) | [Our Guiding Star, a poem (A tribute to writers)](https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers) | 23.384 SBD |\n| [@fitmama](https://steemit.com/@fitmama) | [Why Do I Bother....](https://steemit.com/life/@fitmama/why-do-i-bother) | 23.451 SBD |\n| [@ezzy](https://steemit.com/@ezzy) | [The Bionic Experiment - Part 1 (My Original Short Stories)](https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories) | 23.480 SBD |\n| [@kingarbinv](https://steemit.com/@kingarbinv) | [Adventures in Nemaland - Part 8 (Video) + My best Pokemon catch so far.](https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far) | 23.292 SBD |\n| [@soulsistashakti](https://steemit.com/@soulsistashakti) | [How to Detect and Deflect Gaslighting from a Narcissist](https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist) | 22.018 SBD |\n| [@puffin](https://steemit.com/@puffin) | [Tragical Impoverishment - Society's Dirt (Original Poem)](https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem) | 22.621 SBD |\n| [@cehuneke](https://steemit.com/@cehuneke) | [The Sugar Scandal: Corrupted Science in the Debate of Fat vs. Sugar and Coronary Heart Disease](https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease) | 22.821 SBD |\n| [@tanata](https://steemit.com/@tanata) | [Little Black Dress involving](https://steemit.com/fashion/@tanata/little-black-dress-involving) | 22.237 SBD |\n| [@steemwriter](https://steemit.com/@steemwriter) | [YouTube Demonetization: A Step Towards Censorship?](https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship) | 22.297 SBD |\n| [@michelle.gent](https://steemit.com/@michelle.gent) | [Dusty - one of my characters](https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters) | 22.659 SBD |\n| [@edgarsart](https://steemit.com/@edgarsart) | [A Gift-Original Rose Drawing](https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing) | 22.249 SBD |\n| [@runridefly](https://steemit.com/@runridefly) | [Minnow's Life - @runridefly original cartoon \"minnowsunite Whale sighting\" minnows and a whale](https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale) | 22.836 SBD |\n| [@doubledex](https://steemit.com/@doubledex) | [[SHORT STORY] The Cult of Personality - Part One](https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one) | 22.552 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Look at the Flower Chicory: a Useful and Beautiful Flower ... my Favorite Photos of Chicory](https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory) | 22.795 SBD |\n| [@victoriart](https://steemit.com/@victoriart) | [Hazelnut Mood](https://steemit.com/art/@victoriart/hazelnut-mood) | 22.443 SBD |\n| [@heroic15397](https://steemit.com/@heroic15397) | [Amazing Birds in the Greater Montreal area](https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area) | 22.987 SBD |\n| [@smartercars](https://steemit.com/@smartercars) | [Reviewing the Volkswagen Touareg ~ Smarter Car Reviews](https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews) | 22.975 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [Blues Jam & Techniques [9-14-2016]](https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016) | 22.415 SBD |\n| [@matthew.raymer](https://steemit.com/@matthew.raymer) | [Life Stories](https://steemit.com/psychology/@matthew.raymer/life-stories) | 22.733 SBD |\n| [@positivesteem](https://steemit.com/@positivesteem) | [Common Sense Versus Degrees: The Man Who Has One Hundred Degrees](https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees) | 22.941 SBD |\n| [@d3nv3r](https://steemit.com/@d3nv3r) | [Cloud Mining - The Struggle is Real](https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real) | 22.266 SBD |\n| [@adubi](https://steemit.com/@adubi) | [Healing Food Plan: The Ultimate Cheat Sheet](https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet) | 22.947 SBD |\n| [@alitas](https://steemit.com/@alitas) | [(spanish) Cazuela de Calamar con Papas Rejilla](https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla) | 22.240 SBD |\n| [@mazi](https://steemit.com/@mazi) | [I Can See Clearly Now .... Platanus occidentalis](https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis) | 22.784 SBD |\n| [@mikemacintire](https://steemit.com/@mikemacintire) | [A Red Like No Other - My work](https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work) | 22.289 SBD |\n| [@altzero](https://steemit.com/@altzero) | [Im\u00e1genes de una vida (2)](https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2) | 21.555 SBD |\n| [@birdie](https://steemit.com/@birdie) | [Clouds That Demand Attention (Original Photos)](https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos) | 21.397 SBD |\n| [@michaelstobiersk](https://steemit.com/@michaelstobiersk) | [An Original Painting by Michael Stobierski](https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski) | 21.367 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Meditation Experience Can Be Really Scary](https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary) | 21.583 SBD |\n| [@rubenalexander](https://steemit.com/@rubenalexander) | [The Price Is Right Theme Music Breakdown](https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown) | 21.937 SBD |\n| [@karisa](https://steemit.com/@karisa) | [Very tasty and delicious curd cookies specially for Steemit . Part 4](https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4) | 21.940 SBD |\n| [@lyubovbar](https://steemit.com/@lyubovbar) | [Borovoye (Burabai) - Pearl of Kazakhstan: The Incredible Journey (Story of my Husband)](https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband) | 20.616 SBD |\n| [@burnin](https://steemit.com/@burnin) | [Exploring the Off-Limits Areas of the Largest Cruise Ship In the World - Part 2](https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2) | 20.298 SBD |\n| [@reddust](https://steemit.com/@reddust) | [Eyes Of Wisdom](https://steemit.com/art/@reddust/eyes-of-wisdom) | 20.051 SBD |\n| [@levycore](https://steemit.com/@levycore) | [Hot Chocolate Art - Trying Draw Faces](https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces) | 20.233 SBD |\n| [@awesomenyl](https://steemit.com/@awesomenyl) | [Sunflower Paper Tutorial](https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial) | 20.040 SBD |\n| [@aldentan](https://steemit.com/@aldentan) | [The epic and awesome guide to writing articles like a true artist that people want to read and share! [Edited for Steemit today]](https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today) | 20.192 SBD |\n| [@naquoya](https://steemit.com/@naquoya) | [[ORIGINAL FICTION] Bad Trip part two: The Gamemaster](https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster) | 20.041 SBD |\n| [@moon32walker](https://steemit.com/@moon32walker) | [Top 10 Game Development Studios](https://steemit.com/gaming/@moon32walker/top-10-game-development-studios) | 20.468 SBD |\n| [@gustavopasquini](https://steemit.com/@gustavopasquini) | [Polenta with Ragu Meat Dry](https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry) | 20.436 SBD |\n| [@benadapt](https://steemit.com/@benadapt) | [Capturing the Milky Way \u2014 A Photographer\u2019s Biggest Challenge](https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge) | 20.477 SBD |\n| [@altzero](https://steemit.com/@altzero) | [\u00bfQue es la nueva economia?](https://steemit.com/spanish/@altzero/que-es-la-nueva-economia) | 20.037 SBD |\n| [@por500bolos](https://steemit.com/@por500bolos) | [Uncovering The Most Transcendental & Biggest Secret In The Human Life. \u00bfSkeptical? I will challenge you to prove otherwise!!](https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise) | 20.894 SBD |\n| [@zonpower](https://steemit.com/@zonpower) | [This is a place (An original Poem)](https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem) | 20.869 SBD |\n| [@katharsisdrill](https://steemit.com/@katharsisdrill) | [The rune-stones of Jelling, and a new realisation.](https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation) | 19.761 SBD |\n| [@glezeddy](https://steemit.com/@glezeddy) | [MEZCLA DE TEQUILA PARA DAR EL \"GRITO\" (M\u00c9XICO)](https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico) | 15.682 SBD |\n| [@onetree](https://steemit.com/@onetree) | [South African Slang - Enter Those Who Dare!](https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare) | 33.017 SBD |\n| [@verbal-d](https://steemit.com/@verbal-d) | [Melodious Music Memoirs # 2: Impact](https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact) | 30.372 SBD |\n| [@wanderingagorist](https://steemit.com/@wanderingagorist) | [Foraging Wild Rose Hips for Tea and Eating](https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating) | 29.228 SBD |\n| [@knablinz](https://steemit.com/@knablinz) | [Hand-Made Collage Art By Knablinz ( Donuts & Coffee )](https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee) | 35.939 SBD |\n\n---------------------------\n
Note: All author rewards from this post will be used to fund Project Curie.
Join us in #curie on Steemit.chat and follow us @curie!
", + "category": "curie", + "children": 10, + "created": "2016-09-15T17:53:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s11.postimg.org/jr2x6jjgj/Gallery_Cornelis_Van_Der_Geestd3286.jpg" + ], + "links": [ + "https://steemit.com/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors", + "https://steemit.com/curie/@kevinwong/logo-contest-for-project-curie-contest-process-and-winners-announcement", + "https://steemit.com/curie/@curie/special-edition-major-updates-and-project-curie-month-1-roundup-12-august-11-september-2016", + "https://steemit.com/@faddat", + "https://steemit.com/beyondbitcoin/@faddat/roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed", + "https://steemit.com/@rampant", + "https://steemit.com/art/@rampant/steemit-daily-drawing-tutorial-gesture-drawings-plus-tool", + "https://steemit.com/@shenanigator", + "https://steemit.com/economics/@shenanigator/doing-the-right-thing-will-get-you-fired-what-do-you-do", + "https://steemit.com/@penguinpablo", + "https://steemit.com/food/@penguinpablo/how-to-carve-an-apple-leaf", + "https://steemit.com/@nathanjtaylor", + "https://steemit.com/art/@nathanjtaylor/fire-and-grace-or-art-painting-and-poetry", + "https://steemit.com/@lily-da-vine", + "https://steemit.com/gardening/@lily-da-vine/going-bananas-in-acapulco", + "https://steemit.com/@budgetbucketlist", + "https://steemit.com/travel/@budgetbucketlist/a-1-week-plunge-into-mexico-city-s-madness-art-adventures-frida-seeking-and-unfiltered-exhaust-fumes", + "https://steemit.com/@benjiberigan", + "https://steemit.com/architecture/@benjiberigan/anarchist-architecture-part-5-the-cruelty-of-architectural-codes-and-regulations", + "https://steemit.com/@ausbitbank", + "https://steemit.com/australia/@ausbitbank/the-time-my-town-flooded-the-fragility-of-the-food-supply-and-lessons-learned-original-photos", + "https://steemit.com/@emily-cook", + "https://steemit.com/film/@emily-cook/the-isle-of-man-film-festival-2016-a-week-of-parties-red-carpets-and-a-lot-of-hard-work", + "https://steemit.com/@team-leibniz", + "https://steemit.com/sports/@team-leibniz/week-1-nfl-daily-fantasy-football-results-how-my-bayesian-inspired-lineups-fared-usd84-00", + "https://steemit.com/@ionescur", + "https://steemit.com/life/@ionescur/urban-dreams-of-freedom-back-to-the-countryside-back-to-the-land", + "https://steemit.com/@kimal73", + "https://steemit.com/art/@kimal73/new-traditionl-painting-the-battle-steps-of-work", + "https://steemit.com/@juliac", + "https://steemit.com/art/@juliac/one-of-the-best-portraits-that-i-ve-ever-created-einstein-what-do-you-think", + "https://steemit.com/@luzcypher", + "https://steemit.com/gardening/@luzcypher/cover-crops-can-grow-food-organically-with-no-fertilizers-no-pesticides-no-herbicides-and-no-chemicals", + "https://steemit.com/@akareyon", + "https://steemit.com/philosophy/@akareyon/i-find-your-lack-of-argument-disturbing", + "https://steemit.com/@curving", + "https://steemit.com/life/@curving/the-ephemeral-cairn-gardens-of-the-austin-greenbelt-a-photo-journal-and-meditation", + "https://steemit.com/@aleksandraz", + "https://steemit.com/science/@aleksandraz/incredible-science-brainbow-technology", + "https://steemit.com/@skapaneas", + "https://steemit.com/health/@skapaneas/ibd-crohn-desease-and-ulceritive-collitis-what-are-they-self-diagnose-self-treat-and-more", + "https://steemit.com/@gargon", + "https://steemit.com/spanish/@gargon/proyecto-cervantes-13-15-sept-2016-compensacion-y-reconocimiento-para-escritores-de-habla-hispana-bringing-rewards-and", + "https://steemit.com/@iamwne", + "https://steemit.com/art/@iamwne/blade-runner-inspired-digital-set-the-dark-market-beauty-pass", + "https://steemit.com/@stormblaze", + "https://steemit.com/technology/@stormblaze/where-do-deleted-files-go", + "https://steemit.com/@yanarnst", + "https://steemit.com/food/@yanarnst/steemit-food-art-lesson-2-salad-with-chicken-liver-and-pine-nuts", + "https://steemit.com/@senseye", + "https://steemit.com/science/@senseye/myths-in-the-sky-ursa-major-and-ursa-minor", + "https://steemit.com/@crasch", + "https://steemit.com/aging/@crasch/brain-preservation-an-ambulance-to-the-future", + "https://steemit.com/science/@senseye/vivisecting-the-stargazing-tribe-visual-observers-and-screen-scanners", + "https://steemit.com/@cristi", + "https://steemit.com/extreme/@cristi/radical-metabolism-no-food-and-water-for-8-months", + "https://steemit.com/@stranger27", + "https://steemit.com/popularscience/@stranger27/fibonacci-sequence-and-golden-ratio-magic-numbers-of-nature", + "https://steemit.com/@nekromarinist", + "https://steemit.com/art/@nekromarinist/let-s-talk-a-little-bit-about-phobias-today", + "https://steemit.com/@richman", + "https://steemit.com/story/@richman/if-you-want-to-lose-a-friend-lend-him-money-my-life-story", + "https://steemit.com/@maceytomlin", + "https://steemit.com/psychedelics/@maceytomlin/what-exactly-is-ayahuasca-how-should-you-prepare-for-a-ceremony", + "https://steemit.com/@nili", + "https://steemit.com/blockchain/@nili/smart-life-part-2-resolving-the-godel-s-paradox-on-the-blockchain-as-a-solution-for-a-trusted-protocol", + "https://steemit.com/@optimistic-crone", + "https://steemit.com/food/@optimistic-crone/probiotics-for-life-super-simple-fermented-vegetable-kim-chee-recipe", + "https://steemit.com/@anarchyhasnogods", + "https://steemit.com/science/@anarchyhasnogods/learning-one-dimensional-motion-using-graphs-physics-for-beginners-part-one", + "https://steemit.com/@yostopia", + "https://steemit.com/photography/@yostopia/beginner-s-mind-creative-mind-the-making-of-a-vimeo-staff-pick", + "https://steemit.com/@reneenouveau", + "https://steemit.com/environment/@reneenouveau/paul-steyn-takes-aim-at-mr-environmentalist-in-a-shocking-article-published-by-national-geographic-in-sept-2015", + "https://steemit.com/@king3071", + "https://steemit.com/travel/@king3071/my-dream-destination-switzerland", + "https://steemit.com/@kolin.evans", + "https://steemit.com/science/@kolin.evans/something-a-little-more-substantial-for-you-to-think-about-the-is-was-cpt-continuous-probable-time-lines", + "https://steemit.com/@fenglosophy", + "https://steemit.com/life/@fenglosophy/does-the-language-you-speak-influence-how-you-think", + "https://steemit.com/@mandibil", + "https://steemit.com/film/@mandibil/savage-gorm-just-denmark-2009-movie-review-by-mandibil", + "https://steemit.com/@therajmahal", + "https://steemit.com/science/@therajmahal/making-the-impossible-possible", + "https://steemit.com/@carlitashaw", + "https://steemit.com/science/@carlitashaw/the-world-s-worst-oil-spills-ramifications-and-amazing-alternative-solutions", + "https://steemit.com/@renzoarg", + "https://steemit.com/science/@renzoarg/skip-a-pill-antibiotics", + "https://steemit.com/@rachelsvparry", + "https://steemit.com/art/@rachelsvparry/under-the-sea-again-but-better-this-time", + "https://steemit.com/@royalmacro", + "https://steemit.com/art/@royalmacro/lonely-tree-an-original-abstract-art", + "https://steemit.com/@stephmckenzie", + "https://steemit.com/anarchy/@stephmckenzie/the-power-of-choice-the-magnificent-key-to-true-personal-freedom-for-everyone", + "https://steemit.com/@alwayzgame", + "https://steemit.com/kids/@alwayzgame/10-simple-steps-to-ruin-your-child-s-life", + "https://steemit.com/@nonlinearone", + "https://steemit.com/writing/@nonlinearone/can-hemingway-improve-your-writing", + "https://steemit.com/@kafkanarchy84", + "https://steemit.com/music/@kafkanarchy84/johnny-b-goode-guitar-lesson-and-intro-to-theory-vol-ii", + "https://steemit.com/@feline1991", + "https://steemit.com/writing/@feline1991/a-steemit-original-a-lifetime-of-seeking-happiness-chapter-2-part-2", + "https://steemit.com/@geke", + "https://steemit.com/writing/@geke/the-banker-and-the-bulova-an-original-poem-steemit-flash-writing-challenge", + "https://steemit.com/@lscottphotos", + "https://steemit.com/photography/@lscottphotos/lscottphotos-welcome-to-the-family-one-week-review-original-photos", + "https://steemit.com/@pinkisland", + "https://steemit.com/writing/@pinkisland/my-philosophy-of-education", + "https://steemit.com/@jgcastrillo19", + "https://steemit.com/spanish/@jgcastrillo19/homo-habilis-hombre-constructor-parte-cinco", + "https://steemit.com/@luisucv34", + "https://steemit.com/freedom/@luisucv34/venezuela-the-lack-of-opportunities-english-edition", + "https://steemit.com/@beowulfoflegend", + "https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-twenty", + "https://steemit.com/@mariandavp", + "https://steemit.com/art/@mariandavp/from-zero-to-hero-abstract-office-art-by-mariandavp", + "https://steemit.com/@nasimbabu", + "https://steemit.com/life/@nasimbabu/the-technology-that-defends-us-from-potentially-deadly-diseases", + "https://steemit.com/@royaltiffany", + "https://steemit.com/bdaymoviereview/@royaltiffany/steemit-b-day-movie-review-contest-update", + "https://steemit.com/@travelista", + "https://steemit.com/travel/@travelista/an-adventure-in-isla-espiritu-santo", + "https://steemit.com/@jpiper20", + "https://steemit.com/life/@jpiper20/we-meet-at-night-an-original-story-part-4", + "https://steemit.com/art/@kimal73/my-new-painting-dexter-modern-impressionism", + "https://steemit.com/@krystle", + "https://steemit.com/fiction/@krystle/keltorin-s-flora-and-fauna-of-note-firikwea-valcanne-s-guide-to-keltorin", + "https://steemit.com/@cryptoiskey", + "https://steemit.com/steemit/@cryptoiskey/workout-from-home-on-the-cheap-12th-september-ultimate-workout-companion-for-your-kids", + "https://steemit.com/@getonthetrain", + "https://steemit.com/life/@getonthetrain/top-10-grisly-medieval-torture-methods", + "https://steemit.com/@ansharphoto", + "https://steemit.com/photography/@ansharphoto/roman-forum-in-the-morning-rome", + "https://steemit.com/@aboundlessworld", + "https://steemit.com/steemit/@aboundlessworld/introducing-the-steemit-stories-podcast", + "https://steemit.com/@thornybastard", + "https://steemit.com/cn/@thornybastard/chapter-10-a-call-from-the-forest", + "https://steemit.com/bitshares/@crasch/installing-bitshares-graphene-from-source-on-mac-os-x-yosemite-10-5-5", + "https://steemit.com/@dumar022", + "https://steemit.com/techreview/@dumar022/workshop-lesson-6-wrench-you-don-t-wanna-mess-with-this", + "https://steemit.com/@lapilipinas", + "https://steemit.com/science/@lapilipinas/light-from-distant-stars", + "https://steemit.com/@williambanks", + "https://steemit.com/life/@williambanks/towards-a-better-tomorrow-part-1-there-but-for-grace", + "https://steemit.com/@driv3n", + "https://steemit.com/life/@driv3n/how-to-solve-the-rubik-s-cube-like-a-boss-part-2", + "https://steemit.com/@timbot606", + "https://steemit.com/life/@timbot606/growing-up-in-appalachia", + "https://steemit.com/@themagus", + "https://steemit.com/life/@themagus/a-less-privileged-white-growing-up-in-south-africa-in-the-1970-s-part-2", + "https://steemit.com/@echoesinthemind", + "https://steemit.com/life/@echoesinthemind/hanging-upside-down", + "https://steemit.com/@ysa", + "https://steemit.com/photograpy/@ysa/my-pictures-from-traveling-to-estes-park-colorado", + "https://steemit.com/@aksinya", + "https://steemit.com/travel/@aksinya/our-trip-to-wonderful-scary-and-unforgettable-kenya-original-photos-and-video", + "https://steemit.com/spanish/@jgcastrillo19/wallet-homo-habilis-hombre-constructor-parte-cuatro", + "https://steemit.com/@successfully00", + "https://steemit.com/mathematics/@successfully00/knowing-the-math-mental-tricks-multiplication-part-1", + "https://steemit.com/@linzo", + "https://steemit.com/poem/@linzo/a-life-fantasy-original-poem", + "https://steemit.com/@hilarski", + "https://steemit.com/panama/@hilarski/panama-critters", + "https://steemit.com/@sulev", + "https://steemit.com/photography/@sulev/photography-11-pictures-from-my-garden-bees-lizards-and-other-part-2", + "https://steemit.com/@steemswede", + "https://steemit.com/beer/@steemswede/beer-review-thomas-hardy-s-ale", + "https://steemit.com/@marius19", + "https://steemit.com/steemit/@marius19/set-of-paper-coffee-cups-origami", + "https://steemit.com/@poeticsnake", + "https://steemit.com/art/@poeticsnake/autumn-is-coming-doodle-style-tutorial-with-step-by-step-drawings", + "https://steemit.com/@kiddarko", + "https://steemit.com/art/@kiddarko/peep-life-a-story-by-kiddarko-with-tattoo-illistrations-and-video", + "https://steemit.com/@shieha", + "https://steemit.com/games/@shieha/the-hardest-computer-game-of-all-time-robot-odyssey-part-2", + "https://steemit.com/@ayim", + "https://steemit.com/life/@ayim/fixing-posture-part-4-neck", + "https://steemit.com/@hitmeasap", + "https://steemit.com/writing/@hitmeasap/i-am-batman-s-robin-or-skywalkers-r2-d2-i-ve-always-been-the-co-pilot-always-been-the-second-choice", + "https://steemit.com/@peskov", + "https://steemit.com/life/@peskov/antonikha-part-2-featuring-vasily-peskov-as-author", + "https://steemit.com/@aldentan", + "https://steemit.com/life/@aldentan/advice-from-an-angry-dude-breathe-and-interrupt-your-thoughts", + "https://steemit.com/@beginningtoend", + "https://steemit.com/poetry/@beginningtoend/poetry-art-and-a-little-home-spum-philosophy", + "https://steemit.com/@kaykunoichi", + "https://steemit.com/life/@kaykunoichi/suicide-note-audio-written-and-performed-by-myself", + "https://steemit.com/@booky", + "https://steemit.com/life/@booky/boosting-leadership-skills-healthier-happier-you-and-your-workmates", + "https://steemit.com/@doubledex", + "https://steemit.com/ethics/@doubledex/do-you-know-the-difference-between-right-and-wrong", + "https://steemit.com/@ekaterina4ka", + "https://steemit.com/photography/@ekaterina4ka/we-knit-patterns-by-the-spokes-post-2-vyazhem-uzory-spicami-post-2", + "https://steemit.com/@scaredycatguide", + "https://steemit.com/real-talk/@scaredycatguide/real-talk-vol-9-welcome-to-dogmerica", + "https://steemit.com/@amy-goodrich", + "https://steemit.com/smoothie/@amy-goodrich/pineapple-mojito-green-smoothie", + "https://steemit.com/@scott.stevens", + "https://steemit.com/bitcoin/@scott.stevens/awareness-of-bitcoin-is-now-more-important-than-awareness-of-geoengineering", + "https://steemit.com/@witchcraftblog", + "https://steemit.com/travel/@witchcraftblog/my-trip-to-italy-pisa", + "https://steemit.com/@ibringawareness", + "https://steemit.com/food/@ibringawareness/why-i-got-stiffed-guy-s-waiter-blog-chapter-5", + "https://steemit.com/art/@kimal73/my-new-illustration-batman-vs-superman-modern-impressionism-by-kimal73", + "https://steemit.com/@leylar", + "https://steemit.com/photography/@leylar/seeds-are-great-travelers-own-work", + "https://steemit.com/@ocrdu", + "https://steemit.com/photography/@ocrdu/the-pods-that-go-pop", + "https://steemit.com/@rusla", + "https://steemit.com/travel/@rusla/japan-part8", + "https://steemit.com/@edgarsart", + "https://steemit.com/art/@edgarsart/puppy-charcoal-original-pencil-drawing", + "https://steemit.com/@borishaifa", + "https://steemit.com/steemit/@borishaifa/to-write-or-not-to-wirte-pisat-ili-ne-pisat", + "https://steemit.com/@eveningstar92", + "https://steemit.com/art/@eveningstar92/shit-happens-move-on-nsfw-evening-star-art", + "https://steemit.com/@elewarne", + "https://steemit.com/mixedmedia/@elewarne/mixed-media", + "https://steemit.com/@shredlord", + "https://steemit.com/art/@shredlord/sunrise", + "https://steemit.com/@sherlockcupid", + "https://steemit.com/life/@sherlockcupid/let-s-talk-fears-part-one", + "https://steemit.com/@annesaya", + "https://steemit.com/poetry/@annesaya/our-guiding-star-a-poem-a-tribute-to-writers", + "https://steemit.com/@fitmama", + "https://steemit.com/life/@fitmama/why-do-i-bother", + "https://steemit.com/@ezzy", + "https://steemit.com/story/@ezzy/the-bionic-experiment-part-1-my-original-short-stories", + "https://steemit.com/@kingarbinv", + "https://steemit.com/blog/@kingarbinv/adventures-in-nemaland-part-8-video-my-best-pokemon-catch-so-far", + "https://steemit.com/@soulsistashakti", + "https://steemit.com/abuse/@soulsistashakti/how-to-detect-and-deflect-gaslighting-from-a-narcissist", + "https://steemit.com/@puffin", + "https://steemit.com/story/@puffin/tragic-impoverishment-society-s-dirt-original-poem", + "https://steemit.com/@cehuneke", + "https://steemit.com/health/@cehuneke/the-sugar-scandal-corrupted-science-in-the-debate-of-fat-vs-sugar-and-coronary-heart-disease", + "https://steemit.com/@tanata", + "https://steemit.com/fashion/@tanata/little-black-dress-involving", + "https://steemit.com/@steemwriter", + "https://steemit.com/new/@steemwriter/youtube-demonetization-a-step-towards-censorship", + "https://steemit.com/@michelle.gent", + "https://steemit.com/story/@michelle.gent/dusty-one-of-my-characters", + "https://steemit.com/art/@edgarsart/a-gift-original-rose-drawing", + "https://steemit.com/@runridefly", + "https://steemit.com/cartoon/@runridefly/minnow-s-life-runridefly-original-cartoon-minnowsunite-whale-sighting-minnows-and-a-whale", + "https://steemit.com/fiction/@doubledex/short-story-the-cult-of-personality-part-one", + "https://steemit.com/@lyubovbar", + "https://steemit.com/photography/@lyubovbar/look-at-the-flower-chicory-a-useful-and-beautiful-flower-my-favorite-photos-of-chicory", + "https://steemit.com/@victoriart", + "https://steemit.com/art/@victoriart/hazelnut-mood", + "https://steemit.com/@heroic15397", + "https://steemit.com/montreal/@heroic15397/amazing-birds-in-the-greater-montreal-area", + "https://steemit.com/@smartercars", + "https://steemit.com/cars/@smartercars/reviewing-the-volkswagen-touareg-smarter-car-reviews", + "https://steemit.com/@rubenalexander", + "https://steemit.com/music/@rubenalexander/blues-jam-9-14-2016", + "https://steemit.com/@matthew.raymer", + "https://steemit.com/psychology/@matthew.raymer/life-stories", + "https://steemit.com/@positivesteem", + "https://steemit.com/minnowsunite/@positivesteem/common-sense-versus-degrees-the-man-who-has-one-hundred-degrees", + "https://steemit.com/@d3nv3r", + "https://steemit.com/mining/@d3nv3r/cloud-mining-the-struggle-is-real", + "https://steemit.com/@adubi", + "https://steemit.com/life/@adubi/healing-food-plan-the-ultimate-cheat-sheet", + "https://steemit.com/@alitas", + "https://steemit.com/spanish/@alitas/spanish-cazuela-de-calamar-con-papas-rejilla", + "https://steemit.com/@mazi", + "https://steemit.com/travel/@mazi/i-can-see-clearly-now-platanus-occidentalis", + "https://steemit.com/@mikemacintire", + "https://steemit.com/photography/@mikemacintire/a-red-like-no-other-my-work", + "https://steemit.com/@altzero", + "https://steemit.com/spanish/@altzero/imagenes-de-una-vida-2", + "https://steemit.com/@birdie", + "https://steemit.com/photography/@birdie/clouds-that-demand-attention-original-photos", + "https://steemit.com/@michaelstobiersk", + "https://steemit.com/art/@michaelstobiersk/5jbxxg-an-original-painting-by-michael-stobierski", + "https://steemit.com/@reddust", + "https://steemit.com/art/@reddust/meditation-experience-can-be-really-scary", + "https://steemit.com/art/@rubenalexander/the-price-is-right-theme-music-breakdown", + "https://steemit.com/@karisa", + "https://steemit.com/food/@karisa/very-tasty-and-delicious-curd-cookies-specially-for-steemit-part-4", + "https://steemit.com/travel/@lyubovbar/borovoye-pearl-of-kazakhstan-the-incredible-journey-story-of-my-husband", + "https://steemit.com/@burnin", + "https://steemit.com/travel/@burnin/exploring-the-off-limits-areas-of-the-largest-cruise-ship-in-the-world-part-2", + "https://steemit.com/art/@reddust/eyes-of-wisdom", + "https://steemit.com/@levycore", + "https://steemit.com/food/@levycore/hot-chocolate-art-trying-draw-faces", + "https://steemit.com/@awesomenyl", + "https://steemit.com/art/@awesomenyl/sunflower-paper-tutorial", + "https://steemit.com/writing/@aldentan/the-epic-and-awesome-guide-to-writing-articles-like-a-true-artist-that-people-want-to-read-and-share-edited-for-steemit-today", + "https://steemit.com/@naquoya", + "https://steemit.com/story/@naquoya/original-fiction-bad-trip-part-two-the-gamemaster", + "https://steemit.com/@moon32walker", + "https://steemit.com/gaming/@moon32walker/top-10-game-development-studios", + "https://steemit.com/@gustavopasquini", + "https://steemit.com/food/@gustavopasquini/polenta-with-ragu-meat-dry", + "https://steemit.com/@benadapt", + "https://steemit.com/photography/@benadapt/capturing-the-milky-way-a-photographer-s-biggest-challenge", + "https://steemit.com/spanish/@altzero/que-es-la-nueva-economia", + "https://steemit.com/@por500bolos", + "https://steemit.com/spanish/@por500bolos/uncovering-the-most-transcendental-and-biggest-secret-in-the-human-life-skeptical-i-will-challenge-you-to-prove-otherwise", + "https://steemit.com/@zonpower", + "https://steemit.com/poem/@zonpower/this-is-a-place-an-original-poem", + "https://steemit.com/@katharsisdrill", + "https://steemit.com/history/@katharsisdrill/the-rune-stones-of-jelling-and-a-new-realisation", + "https://steemit.com/@glezeddy", + "https://steemit.com/steem/@glezeddy/mezcla-de-tequila-para-dar-el-grito-mexico", + "https://steemit.com/@onetree", + "https://steemit.com/culture/@onetree/south-african-slang-enter-those-who-dare", + "https://steemit.com/@verbal-d", + "https://steemit.com/music/@verbal-d/melodious-music-memoirs-2-impact", + "https://steemit.com/@wanderingagorist", + "https://steemit.com/travel/@wanderingagorist/wild-rose-hips-foraging-for-tea-and-eating", + "https://steemit.com/@knablinz", + "https://steemit.com/music/@knablinz/hand-made-collage-art-by-knablinz-donuts-and-coffee" + ], + "tags": [ + "curie", + "minnows", + "hidden-gems", + "steemit", + "project-curie" + ], + "users": [ + "nextgencrypto", + "curie" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 61028272797290, + "payout": 217.281, + "payout_at": "2016-09-22T17:53:48", + "pending_payout_value": "217.281 HBD", + "percent_hbd": 10000, + "permlink": "the-daily-curie-14th-sept-15th-sept-2016", + "post_id": 1256756, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 182 + }, + "title": "The Daily Curie (14th Sept - 15th Sept 2016)", + "updated": "2016-09-15T17:53:48", + "url": "/curie/@curie/the-daily-curie-14th-sept-15th-sept-2016" + }, + { + "active_votes": [ + { + "rshares": "231809639013", + "voter": "anonymous" }, { - "voter": "illusions", - "rshares": "160880639" + "rshares": "40042046720125", + "voter": "blocktrades" }, { - "voter": "dresden", - "rshares": "6920933761" + "rshares": "4287714457313", + "voter": "riverhead" }, { - "voter": "caseyneistat", - "rshares": "160845765" + "rshares": "34979300821", + "voter": "altoz" }, { - "voter": "ysa", - "rshares": "692395145" + "rshares": "2733708608", + "voter": "steem1653" }, { - "voter": "correct", - "rshares": "159984914" + "rshares": "251366150295", + "voter": "nabilov" }, { - "voter": "capcom", - "rshares": "159973989" + "rshares": "3813478158", + "voter": "btcupload" }, { - "voter": "sledgehammer", - "rshares": "159963865" + "rshares": "1557779220", + "voter": "future24" }, { - "voter": "haribo", - "rshares": "159950870" + "rshares": "84942400", + "voter": "pompe72" }, { - "voter": "benetton", - "rshares": "159531007" + "rshares": "8773949381", + "voter": "craigwilliamz" }, { - "voter": "stimmt", - "rshares": "156194471" + "rshares": "271440423", + "voter": "anomaly" }, { - "voter": "reef", - "rshares": "159143891" + "rshares": "4249431309", + "voter": "michelle.gent" }, { - "voter": "cream", - "rshares": "158632601" + "rshares": "1871969417", + "voter": "bapparabi" }, { - "voter": "reddust", - "rshares": "891891710" + "rshares": "2497059333", + "voter": "irensche" }, { - "voter": "aldentan", - "rshares": "336222066" + "rshares": "84821361", + "voter": "katharsisdrill" }, { - "voter": "techslut", - "rshares": "191981449" + "rshares": "767043998", + "voter": "alienbutt" } ], + "author": "alienbutt", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 182, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/curie/@curie/the-daily-curie-14th-sept-15th-sept-2016", - "blacklists": [] - }, - { - "post_id": 960063, - "author": "alienbutt", - "permlink": "alien-or-plant", - "category": "photography", - "title": "Alien or plant?", + "blacklists": [], "body": "You decide what they are.\nAlien heads staked on a post or seed pods?\n\"\n\n\"", + "category": "photography", + "children": 4, + "created": "2016-09-15T17:53:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "photography", - "art", - "" - ], "image": [ "http://i346.photobucket.com/albums/p432/Glenn_Scrimshaw/DSCN2947_zpsx86w0mif.jpg", "http://i346.photobucket.com/albums/p432/Glenn_Scrimshaw/DSCN2944_zps2kijcdvn.jpg" @@ -5347,3002 +5414,2984 @@ "links": [ "http://s346.photobucket.com/user/Glenn_Scrimshaw/media/DSCN2947_zpsx86w0mif.jpg.html", "http://s346.photobucket.com/user/Glenn_Scrimshaw/media/DSCN2944_zps2kijcdvn.jpg.html" + ], + "tags": [ + "photography", + "art", + "" ] }, - "created": "2016-09-15T17:53:36", - "updated": "2016-09-15T18:23:18", - "depth": 0, - "children": 4, + "max_accepted_payout": "1000000.000 HBD", "net_rshares": 44874621891175, - "is_paidout": false, - "payout_at": "2016-09-16T18:36:35", - "payout": 120.784, - "pending_payout_value": "120.784 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "payout": 120.09, + "payout_at": "2016-09-22T17:53:36", + "pending_payout_value": "120.090 HBD", + "percent_hbd": 10000, + "permlink": "alien-or-plant", + "post_id": 1256752, "promoted": "0.000 HBD", "replies": [], - "active_votes": [ - { - "voter": "anonymous", - "rshares": "231809639013" - }, - { - "voter": "blocktrades", - "rshares": "40042046720125" - }, - { - "voter": "riverhead", - "rshares": "4287714457313" - }, - { - "voter": "altoz", - "rshares": "34979300821" - }, - { - "voter": "steem1653", - "rshares": "2733708608" - }, - { - "voter": "nabilov", - "rshares": "251366150295" - }, - { - "voter": "btcupload", - "rshares": "3813478158" - }, - { - "voter": "future24", - "rshares": "1557779220" - }, - { - "voter": "pompe72", - "rshares": "84942400" - }, - { - "voter": "craigwilliamz", - "rshares": "8773949381" - }, - { - "voter": "anomaly", - "rshares": "271440423" - }, - { - "voter": "michelle.gent", - "rshares": "4249431309" - }, - { - "voter": "bapparabi", - "rshares": "1871969417" - }, - { - "voter": "irensche", - "rshares": "2497059333" - }, - { - "voter": "katharsisdrill", - "rshares": "84821361" - }, - { - "voter": "alienbutt", - "rshares": "767043998" - } - ], - "author_reputation": 52.91, "stats": { - "hide": false, + "flag_weight": 0.0, "gray": false, - "total_votes": 16, - "flag_weight": 0.0 + "hide": false, + "total_votes": 16 }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/photography/@alienbutt/alien-or-plant", - "blacklists": [] + "title": "Alien or plant?", + "updated": "2016-09-15T18:23:18", + "url": "/photography/@alienbutt/alien-or-plant" }, { - "post_id": 959783, - "author": "serejandmyself", - "permlink": "captured-by-time-an-original-novel-chapter-1", - "category": "story", - "title": "CAPTURED BY TIME (An Original Novel - Chapter 1)", - "body": "#### Hey guys, welcome to the first chapter of my new novel.\n#### It is a mixture of 3 time lines, with 19th century, modern day and ancient times. The genre is probably something you would call a mixture of sci-fi, mystery, adventure and a bit more. \n#### Well, I welcome you to be the judge...\n\n

[![b801c049484636e0faf71f56cca03864c0bd6.jpg](https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg)](https://www.steemimg.com/image/1wrYT)

\n\n__________________________________\n\n**Chapter ONE**\n\nIt seemed as nothing was different in yet another cold and slightly windy London evening. The smog from the river was rising up as usual and the chilly wind would bring the smell up to the embankment, where Charles was taking a rest, sitting down on his favorite bench. \n\nFrom here he could see the might of the power station from across the river and something was special in the way those chimneys threw out the smoke onto the city. \n\nHe just finished his walk along his usual route, walking amongst the cemetery outside the chapel. It always amused him; that mix of emotion and sorrow amongst the busy city people, especially during the busy afternoon hours.\n\nThat rusty smell kept mixing with up with the light freshness of the leaves from the tree nearby Charles’s bench. As he threw a brief glimpse onto the clock on the parliament building he noticed that the small arrow was on 45 minutes… \n\nSuddenly he heard a murmur of horses; he turned his head before he could finish realizing what time it was. He saw that just a few yards up the road two horse carriages didn’t manage to share the drive way. \n\n
[![Saratogacarriagec5af5.jpg](https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg)](https://www.steemimg.com/image/1w1bI)
\n\nOne of the coachmen was shouting something and angrily waving his hands. Charles was able to see from here that the coachmen’s grey clothing was partially covered in dirt, probably from the splash of the puddles from underneath the wheels. \n\nThe coachmen kept shouting something, Charles was unable to see the second carriage from where he was sitting, but was able to see some passersby, that starting to gather around the incident.\n\nIt was obvious that, just like him, those people had nothing better to do on this late afternoon then to watch in amusement the accident in the middle of the avenue.\n\nJust as Charles was starting to lose interest in the whole situation, the door of the cab that Charles could see, opened and a man dressed in a black suit and holding a pipe stepped out. He calmly put his hand in the upper inner pocket of the suit and pulled out some coins. The man made two steps up to driver and handed him the coins. At this moment the driver stopped shouting for a moment and it was clear from the look on his face that he was confused. \n\nThe cab driver counted the coins and said something to the man in the suit, the passenger didn’t answer. He turned around and started to walk in the direction of the chapel. The cab driver clearly wasn’t happy. He started to shout once again, but this time at the passenger. While the cab driver turned his attention to the passenger, Charles noticed how the second carriage that was involved in the accident managed to move a few yards back.\n\nIt was a much smaller carriage, and the driver was clearly seeable to Charles now. He seemed somewhat happy that he was not in the middle of the light anymore; he hurryingly turned the carriage and the horse around and started to move also in the direction of the chapel. \n\nAt this moment the driver of the first carriage started to lose interest in shouting and decided to clean himself up. As he started to calm down, the bemused passersby begun to walk back to where they were heading and Charles also turned his head back towards the power station.\n\nCharles was so busy watching the situation unfold that he didn’t noticed that the passenger of the first carriage crossed the road and was now heading not towards the chapel anymore, but exactly in the other direction, towards the grey bench that Charles was sitting on.\n\nAt first Charles didn’t pay any attention to just another man who was walking by. But then he noticed that calm walk of his and it hit him that this was the same passenger from the carriage.\n\n“Excuse me sir?” said Charles as the man closed up to the bench. “You are the gentleman from the carriage, aren’t you?” “I saw you a minute ago, what happened?”\n\nThe man stopped to walk and shared a look with Charles; he calmly sat down beside him and carried on smoking his pipe, as he was not hearing the questions Charles asked him. \n\n“I do apologies for the intervention, but you must not be local, I can tell by your calmness, all the folks round here are always in a hurry” Charles carried on talking as if not noticing that the man was ignoring him. \n\nAll of a sudden the weather begun to change, wind started to blow stronger and the few leaves that the tree was holding blew in the direction of the bench. The smell from the river rose up and as if that wasn’t enough Charles felt like a small rain drop hit his head. He could clearly see the green water from where he was sitting through the decorations holes of the embankments fence. It was clear that it will start to rain soon by the appearing circles on the top of the river.\n\nAfter a few minutes of quietly seating by his new neighbor Charles caught himself looking at the clock on the tower, once again he saw the small arrow on 45 minutes…\n\n“And what do we pay the government for?” “It would feel though they are taking our money and spend it on their fancy hats and suits, don’t you find?” Said Charles.\n\nAt this point the man took out the pipe into his left hand and begun to cough. After he finished coughing Charles heard him speak, at this point Charles understood that for some reason he would remember this moment for a long time to come. \n\n“It is likely to assume that they deserve to spend the money they earn” Said the man, his voice was quite low and he had a certain accent Charles could quite catch.\n\n“I don’t think that money is of importance nowadays” Said the man.\n\nCharles looked at the man with a smile - “What is of importance? One might assume that philosophically speaking, importance can be found in nothing but what is good to us”.\n\n“No body knows what can be important to others if we carry on like this, then…” Charles didn’t finish his sentence as the man turned away from him and looked the other way. He then turned his head back and Charles noticed his eyes. His eyes were nothing like what Charles had seen before, they looked as though they were glass like and the as if they were blank, there was nothing behind them.\n\n“What is important is that I am here now and that it is happening today. It is important to live your life because, just like your life Charles, it has an end”, the man looked somewhat happy when he said that and Charles jumped back on the bench a little, he felt a small shiver run down his spine.\n\n“What? How do you know my name sir? Have you been following me?” questions were racing through Charles’s mind. \n\n“As I said, this is now of importance. You life can find its end today when you get back to your gallery in your cold basement on Kinnerton street or you might listen to me and…” Charles didn’t let the man finish his sentence. He jumped up from the bench; his cane flew within millimeters of the stranger leg as he jumped.\n\n“How dare you sir? Who gives you the right…” Charles raised his voice, he never allowed himself to raise his voice at a stranger beforehand.\n\n“I think this conversation is over!” exclaimed Charles. “That would be your choice” replied the man, “Do you think the time is right?” \n\nCharles had already turned away in anger and was about to make his first step away. Something in the words of the man about the time made him think for a second, thoughts raced through his mind. The number 45 and the small arrow of the parliament clock were stuck in his head. \n\n“I don’t understand said Charles…” he turned his head back towards the clock; the arrow was still on 45 minutes. “How is that possible?” Charles turned his head to the man, but there was no one on the bench. \n\nCharles begun to search the street rapidly with his eyes, it didn’t even occur to him that it was heavily raining until that moment. \n\n
[![tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif](https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif)](https://www.steemimg.com/image/1w5tK)
\n\nThe streets were empty; there were no carriages or people to be seen around. Feeling scared he turned his head to the clock once again – “How can it still be 45 minutes...” Charles was speaking out loud.\n\nThe next moment he felt like his knees weakened, his head was swirling and he dropped his cane, last thing he could hear was the clinging the of the cane’s handle against the pavement. His thoughts mixed up with his eyesight; the man and his pipe, the handle of the clock, the carriage, the passersby, the power stations smoke…\n \n_________________________________\n\n#### Follow me @serejandmyself for more \n\nImage credit - [1](https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/) ; [2](https://giphy.com/search/carriage) ; [3](http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html) ;", - "json_metadata": { - "tags": [ - "story", - "fiction", - "scifi", - "mystery", - "writing" - ], - "users": [ - "serejandmyself" - ], - "image": [ - "https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg", - "https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg", - "https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif" - ], - "links": [ - "https://www.steemimg.com/image/1wrYT", - "https://www.steemimg.com/image/1w1bI", - "https://www.steemimg.com/image/1w5tK", - "https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/", - "https://giphy.com/search/carriage", - "http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html" - ] - }, - "created": "2016-09-15T17:23:48", - "updated": "2016-09-15T17:23:48", - "depth": 0, - "children": 2, - "net_rshares": 66871297900441, - "is_paidout": false, - "payout_at": "2016-09-16T17:42:51", - "payout": 260.997, - "pending_payout_value": "260.997 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], "active_votes": [ { - "voter": "smooth", - "rshares": "31621188390159" + "rshares": "31621188390159", + "voter": "smooth" }, { - "voter": "bmw", - "rshares": "2078528809174" + "rshares": "2078528809174", + "voter": "bmw" }, { - "voter": "badassmother", - "rshares": "1912120788268" + "rshares": "1912120788268", + "voter": "badassmother" }, { - "voter": "pharesim", - "rshares": "3312854507128" + "rshares": "3312854507128", + "voter": "pharesim" }, { - "voter": "hr1", - "rshares": "2053144245901" + "rshares": "2053144245901", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1271804694676" + "rshares": "1271804694676", + "voter": "rossco99" }, { - "voter": "jaewoocho", - "rshares": "22390733187" + "rshares": "22390733187", + "voter": "jaewoocho" }, { - "voter": "steemychicken1", - "rshares": "1736291789819" + "rshares": "1736291789819", + "voter": "steemychicken1" }, { - "voter": "joseph", - "rshares": "1533973920081" + "rshares": "1533973920081", + "voter": "joseph" }, { - "voter": "recursive2", - "rshares": "466132509421" + "rshares": "466132509421", + "voter": "recursive2" }, { - "voter": "masteryoda", - "rshares": "652005899349" + "rshares": "652005899349", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120458041174" + "rshares": "3120458041174", + "voter": "recursive" }, { - "voter": "smooth.witness", - "rshares": "5941203882368" + "rshares": "5941203882368", + "voter": "smooth.witness" }, { - "voter": "idol", - "rshares": "9168101098" + "rshares": "9168101098", + "voter": "idol" }, { - "voter": "steemrollin", - "rshares": "816386307308" + "rshares": "816386307308", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "4941741048" + "rshares": "4941741048", + "voter": "sakr" }, { - "voter": "jocelyn", - "rshares": "1578030666" + "rshares": "1578030666", + "voter": "jocelyn" }, { - "voter": "acidsun", - "rshares": "83530339170" + "rshares": "83530339170", + "voter": "acidsun" }, { - "voter": "gregory-f", - "rshares": "14818192446" + "rshares": "14818192446", + "voter": "gregory-f" }, { - "voter": "edgeland", - "rshares": "151248263299" + "rshares": "151248263299", + "voter": "edgeland" }, { - "voter": "gregory60", - "rshares": "9028522101" + "rshares": "9028522101", + "voter": "gregory60" }, { - "voter": "eeks", - "rshares": "74914792736" + "rshares": "74914792736", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "15119117634" + "rshares": "15119117634", + "voter": "fkn" }, { - "voter": "elishagh1", - "rshares": "19873135819" + "rshares": "19873135819", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7802860274" + "rshares": "7802860274", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "584250736753" + "rshares": "584250736753", + "voter": "nanzo-scoop" }, { - "voter": "mummyimperfect", - "rshares": "177409209153" + "rshares": "177409209153", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313697862" + "rshares": "313697862", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106632631169" + "rshares": "106632631169", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061245798" + "rshares": "1061245798", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6230746892" + "rshares": "6230746892", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2057413439" + "rshares": "2057413439", + "voter": "error" }, { - "voter": "cyber", - "rshares": "962077066542" + "rshares": "962077066542", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "59950063204" + "rshares": "59950063204", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "49578772788" + "rshares": "49578772788", + "voter": "ak2020" }, { - "voter": "noganoo", - "rshares": "76584409982" + "rshares": "76584409982", + "voter": "noganoo" }, { - "voter": "satoshifund", - "rshares": "3848540783991" + "rshares": "3848540783991", + "voter": "satoshifund" }, { - "voter": "taoteh1221", - "rshares": "400880323222" + "rshares": "400880323222", + "voter": "taoteh1221" }, { - "voter": "applecrisp", - "rshares": "410517349" + "rshares": "410517349", + "voter": "applecrisp" }, { - "voter": "altoz", - "rshares": "35693164103" + "rshares": "35693164103", + "voter": "altoz" }, { - "voter": "gardening", - "rshares": "335983556" + "rshares": "335983556", + "voter": "gardening" }, { - "voter": "survival", - "rshares": "336136344" + "rshares": "336136344", + "voter": "survival" }, { - "voter": "arisa", - "rshares": "10021612024" + "rshares": "10021612024", + "voter": "arisa" }, { - "voter": "trogdor", - "rshares": "280737930617" + "rshares": "280737930617", + "voter": "trogdor" }, { - "voter": "mark-waser", - "rshares": "5950554459" + "rshares": "5950554459", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "118348776939" + "rshares": "118348776939", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "42738217262" + "rshares": "42738217262", + "voter": "kimziv" }, { - "voter": "seth-krings", - "rshares": "24170583392" + "rshares": "24170583392", + "voter": "seth-krings" }, { - "voter": "honeythief", - "rshares": "46264097306" + "rshares": "46264097306", + "voter": "honeythief" }, { - "voter": "technology", - "rshares": "78976166587" + "rshares": "78976166587", + "voter": "technology" }, { - "voter": "emily-cook", - "rshares": "76017114668" + "rshares": "76017114668", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187607792" + "rshares": "2187607792", + "voter": "superfreek" }, { - "voter": "isteemit", - "rshares": "49806227536" + "rshares": "49806227536", + "voter": "isteemit" }, { - "voter": "auction", - "rshares": "10993053311" + "rshares": "10993053311", + "voter": "auction" }, { - "voter": "grey580", - "rshares": "17557768630" + "rshares": "17557768630", + "voter": "grey580" }, { - "voter": "thebatchman", - "rshares": "19975264794" + "rshares": "19975264794", + "voter": "thebatchman" }, { - "voter": "lehard", - "rshares": "60403077307" + "rshares": "60403077307", + "voter": "lehard" }, { - "voter": "orly", - "rshares": "3283410959" + "rshares": "3283410959", + "voter": "orly" }, { - "voter": "riscadox", - "rshares": "5270985903" + "rshares": "5270985903", + "voter": "riscadox" }, { - "voter": "katyakov", - "rshares": "24867544970" + "rshares": "24867544970", + "voter": "katyakov" }, { - "voter": "jako", - "rshares": "12790313163" + "rshares": "12790313163", + "voter": "jako" }, { - "voter": "steemswede", - "rshares": "1159208963" + "rshares": "1159208963", + "voter": "steemswede" }, { - "voter": "sergei", - "rshares": "1664172448" + "rshares": "1664172448", + "voter": "sergei" }, { - "voter": "honey", - "rshares": "238378512" + "rshares": "238378512", + "voter": "honey" }, { - "voter": "furion", - "rshares": "71343869654" + "rshares": "71343869654", + "voter": "furion" }, { - "voter": "barbara2", - "rshares": "354114465" + "rshares": "354114465", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "393593664" + "rshares": "393593664", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "364274718" + "rshares": "364274718", + "voter": "doge4lyf" }, { - "voter": "on0tole", - "rshares": "5532441214" + "rshares": "5532441214", + "voter": "on0tole" }, { - "voter": "dicov", - "rshares": "1231812238" + "rshares": "1231812238", + "voter": "dicov" }, { - "voter": "steem1653", - "rshares": "2834923420" + "rshares": "2834923420", + "voter": "steem1653" }, { - "voter": "sveokla", - "rshares": "2919298058" + "rshares": "2919298058", + "voter": "sveokla" }, { - "voter": "sebastien", - "rshares": "17173174800" + "rshares": "17173174800", + "voter": "sebastien" }, { - "voter": "thegoodguy", - "rshares": "5357205853" + "rshares": "5357205853", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "14167556353" + "rshares": "14167556353", + "voter": "aaseb" }, { - "voter": "danielkt", - "rshares": "1026087885" + "rshares": "1026087885", + "voter": "danielkt" }, { - "voter": "karen13", - "rshares": "4209522316" + "rshares": "4209522316", + "voter": "karen13" }, { - "voter": "nabilov", - "rshares": "251366150295" + "rshares": "251366150295", + "voter": "nabilov" }, { - "voter": "luisucv34", - "rshares": "629471993" + "rshares": "629471993", + "voter": "luisucv34" }, { - "voter": "knozaki2015", - "rshares": "462033723200" + "rshares": "462033723200", + "voter": "knozaki2015" }, { - "voter": "inertia", - "rshares": "95668007343" + "rshares": "95668007343", + "voter": "inertia" }, { - "voter": "milestone", - "rshares": "46858037615" + "rshares": "46858037615", + "voter": "milestone" }, { - "voter": "lichtblick", - "rshares": "7164489185" + "rshares": "7164489185", + "voter": "lichtblick" }, { - "voter": "creemej", - "rshares": "34761364489" + "rshares": "34761364489", + "voter": "creemej" }, { - "voter": "the-future", - "rshares": "2726160685" + "rshares": "2726160685", + "voter": "the-future" }, { - "voter": "nippel66", - "rshares": "15378115921" + "rshares": "15378115921", + "voter": "nippel66" }, { - "voter": "phenom", - "rshares": "23929304431" + "rshares": "23929304431", + "voter": "phenom" }, { - "voter": "blueorgy", - "rshares": "167305835788" + "rshares": "167305835788", + "voter": "blueorgy" }, { - "voter": "benjiberigan", - "rshares": "12849414672" + "rshares": "12849414672", + "voter": "benjiberigan" }, { - "voter": "poseidon", - "rshares": "932262984" + "rshares": "932262984", + "voter": "poseidon" }, { - "voter": "mustafaomar", - "rshares": "19717588129" + "rshares": "19717588129", + "voter": "mustafaomar" }, { - "voter": "simon.braki.love", - "rshares": "3435918746" + "rshares": "3435918746", + "voter": "simon.braki.love" }, { - "voter": "thylbom", - "rshares": "82781233416" + "rshares": "82781233416", + "voter": "thylbom" }, { - "voter": "deanliu", - "rshares": "32543400703" + "rshares": "32543400703", + "voter": "deanliu" }, { - "voter": "dmitriybtc", - "rshares": "4996306142" + "rshares": "4996306142", + "voter": "dmitriybtc" }, { - "voter": "hemp", - "rshares": "1019831473" + "rshares": "1019831473", + "voter": "hemp" }, { - "voter": "flowers", - "rshares": "118287211" + "rshares": "118287211", + "voter": "flowers" }, { - "voter": "jl777", - "rshares": "204617853645" + "rshares": "204617853645", + "voter": "jl777" }, { - "voter": "zaebars", - "rshares": "30989251579" + "rshares": "30989251579", + "voter": "zaebars" }, { - "voter": "positive", - "rshares": "12261205066" + "rshares": "12261205066", + "voter": "positive" }, { - "voter": "yarly", - "rshares": "1773021661" + "rshares": "1773021661", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "267188192" + "rshares": "267188192", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "267587944" + "rshares": "267587944", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "154579129" + "rshares": "154579129", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "155451862" + "rshares": "155451862", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "88607961" + "rshares": "88607961", + "voter": "yarly7" }, { - "voter": "steemchain", - "rshares": "50626015" + "rshares": "50626015", + "voter": "steemchain" }, { - "voter": "whalepool", - "rshares": "50626015" + "rshares": "50626015", + "voter": "whalepool" }, { - "voter": "summonerrk", - "rshares": "6114654934" + "rshares": "6114654934", + "voter": "summonerrk" }, { - "voter": "webdeals", - "rshares": "12098269394" + "rshares": "12098269394", + "voter": "webdeals" }, { - "voter": "alexbezimeni", - "rshares": "231254136" + "rshares": "231254136", + "voter": "alexbezimeni" }, { - "voter": "proto", - "rshares": "17267307497" + "rshares": "17267307497", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "7222569746" + "rshares": "7222569746", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "428868451" + "rshares": "428868451", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "229507420" + "rshares": "229507420", + "voter": "yarly11" }, { - "voter": "yarly12", - "rshares": "80241480" + "rshares": "80241480", + "voter": "yarly12" }, { - "voter": "fnait", - "rshares": "412825844" + "rshares": "412825844", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "366755128" + "rshares": "366755128", + "voter": "keepcalmand" }, { - "voter": "kibela", - "rshares": "180668119" + "rshares": "180668119", + "voter": "kibela" }, { - "voter": "dmilash", - "rshares": "3084130055" + "rshares": "3084130055", + "voter": "dmilash" }, { - "voter": "mahekg", - "rshares": "13626326152" + "rshares": "13626326152", + "voter": "mahekg" }, { - "voter": "gomeravibz", - "rshares": "50578642550" + "rshares": "50578642550", + "voter": "gomeravibz" }, { - "voter": "taker", - "rshares": "8734139434" + "rshares": "8734139434", + "voter": "taker" }, { - "voter": "nekromarinist", - "rshares": "6521104126" + "rshares": "6521104126", + "voter": "nekromarinist" }, { - "voter": "theprophet", - "rshares": "6895440187" + "rshares": "6895440187", + "voter": "theprophet" }, { - "voter": "laonie", - "rshares": "255409573883" + "rshares": "255409573883", + "voter": "laonie" }, { - "voter": "laoyao", - "rshares": "24562026280" + "rshares": "24562026280", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "7994566199" + "rshares": "7994566199", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "51844874813" + "rshares": "51844874813", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "1938440237" + "rshares": "1938440237", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "2084695835" + "rshares": "2084695835", + "voter": "gmurph" }, { - "voter": "missmishel623", - "rshares": "68250832" + "rshares": "68250832", + "voter": "missmishel623" }, { - "voter": "midnightoil", - "rshares": "11452948850" + "rshares": "11452948850", + "voter": "midnightoil" }, { - "voter": "kalimor", - "rshares": "2280336943" + "rshares": "2280336943", + "voter": "kalimor" }, { - "voter": "ullikume", - "rshares": "4190335896" + "rshares": "4190335896", + "voter": "ullikume" }, { - "voter": "xiaohui", - "rshares": "28645142464" + "rshares": "28645142464", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "1293627572" + "rshares": "1293627572", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "102434307703" + "rshares": "102434307703", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5855564372" + "rshares": "5855564372", + "voter": "oflyhigh" }, { - "voter": "xiaokongcom", - "rshares": "895565145" + "rshares": "895565145", + "voter": "xiaokongcom" }, { - "voter": "gargon", - "rshares": "12687522802" + "rshares": "12687522802", + "voter": "gargon" }, { - "voter": "natalymaty", - "rshares": "2076619689" + "rshares": "2076619689", + "voter": "natalymaty" }, { - "voter": "numberone", - "rshares": "84763896" + "rshares": "84763896", + "voter": "numberone" }, { - "voter": "diamonds", - "rshares": "62760150" + "rshares": "62760150", + "voter": "diamonds" }, { - "voter": "xianjun", - "rshares": "1805296575" + "rshares": "1805296575", + "voter": "xianjun" }, { - "voter": "unrealisback", - "rshares": "3251259359" + "rshares": "3251259359", + "voter": "unrealisback" }, { - "voter": "borran", - "rshares": "11292536945" + "rshares": "11292536945", + "voter": "borran" }, { - "voter": "miacats", - "rshares": "93805187965" + "rshares": "93805187965", + "voter": "miacats" }, { - "voter": "microluck", - "rshares": "118219525" + "rshares": "118219525", + "voter": "microluck" }, { - "voter": "razberrijam", - "rshares": "75676352" + "rshares": "75676352", + "voter": "razberrijam" }, { - "voter": "chinadaily", - "rshares": "2022625104" + "rshares": "2022625104", + "voter": "chinadaily" }, { - "voter": "serejandmyself", - "rshares": "84708065280" + "rshares": "84708065280", + "voter": "serejandmyself" }, { - "voter": "pollina", - "rshares": "106144628" + "rshares": "106144628", + "voter": "pollina" }, { - "voter": "macartem", - "rshares": "2958177650" + "rshares": "2958177650", + "voter": "macartem" }, { - "voter": "gvargas123", - "rshares": "10344891579" + "rshares": "10344891579", + "voter": "gvargas123" }, { - "voter": "jaredcwillis", - "rshares": "10691300360" + "rshares": "10691300360", + "voter": "jaredcwillis" }, { - "voter": "netaterra", - "rshares": "2982676167" + "rshares": "2982676167", + "voter": "netaterra" }, { - "voter": "piezolit", - "rshares": "59171026" + "rshares": "59171026", + "voter": "piezolit" }, { - "voter": "trev", - "rshares": "6069996297" + "rshares": "6069996297", + "voter": "trev" }, { - "voter": "leno4ek", - "rshares": "1152952998" + "rshares": "1152952998", + "voter": "leno4ek" }, { - "voter": "daut44", - "rshares": "33111928321" + "rshares": "33111928321", + "voter": "daut44" }, { - "voter": "contentjunkie", - "rshares": "5475437205" + "rshares": "5475437205", + "voter": "contentjunkie" }, { - "voter": "einsteinpotsdam", - "rshares": "7779288318" + "rshares": "7779288318", + "voter": "einsteinpotsdam" }, { - "voter": "richardcrill", - "rshares": "5053600817" + "rshares": "5053600817", + "voter": "richardcrill" }, { - "voter": "jeremyfromwi", - "rshares": "2205784762" + "rshares": "2205784762", + "voter": "jeremyfromwi" }, { - "voter": "eight-rad", - "rshares": "2056057288" + "rshares": "2056057288", + "voter": "eight-rad" }, { - "voter": "nadin3", - "rshares": "5012661990" + "rshares": "5012661990", + "voter": "nadin3" }, { - "voter": "xanoxt", - "rshares": "3411072843" + "rshares": "3411072843", + "voter": "xanoxt" }, { - "voter": "davidjkelley", - "rshares": "1661520978" + "rshares": "1661520978", + "voter": "davidjkelley" }, { - "voter": "sponge-bob", - "rshares": "27677639861" + "rshares": "27677639861", + "voter": "sponge-bob" }, { - "voter": "digital-wisdom", - "rshares": "15570931627" + "rshares": "15570931627", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3710931796" + "rshares": "3710931796", + "voter": "ethical-ai" }, { - "voter": "jwaser", - "rshares": "6831306526" + "rshares": "6831306526", + "voter": "jwaser" }, { - "voter": "tatianka", - "rshares": "1086106040" + "rshares": "1086106040", + "voter": "tatianka" }, { - "voter": "apparat", - "rshares": "55281264" + "rshares": "55281264", + "voter": "apparat" }, { - "voter": "cryptobiker", - "rshares": "14097243573" + "rshares": "14097243573", + "voter": "cryptobiker" }, { - "voter": "analyzethis", - "rshares": "54182817" + "rshares": "54182817", + "voter": "analyzethis" }, { - "voter": "bwaser", - "rshares": "2675492964" + "rshares": "2675492964", + "voter": "bwaser" }, { - "voter": "doggnostic", - "rshares": "54949117" + "rshares": "54949117", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "54665234" + "rshares": "54665234", + "voter": "jenny-talls" }, { - "voter": "brains", - "rshares": "27671309914" + "rshares": "27671309914", + "voter": "brains" }, { - "voter": "waldemar-kuhn", - "rshares": "53671263" + "rshares": "53671263", + "voter": "waldemar-kuhn" }, { - "voter": "steemafon", - "rshares": "1359518638" + "rshares": "1359518638", + "voter": "steemafon" }, { - "voter": "chick1", - "rshares": "5753400992" + "rshares": "5753400992", + "voter": "chick1" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "51568971" + "rshares": "51568971", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "anomaly", - "rshares": "339287005" + "rshares": "339287005", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401284424" + "rshares": "2401284424", + "voter": "ellepdub" }, { - "voter": "herpetologyguy", - "rshares": "12115548081" + "rshares": "12115548081", + "voter": "herpetologyguy" }, { - "voter": "morgan.waser", - "rshares": "4816962742" + "rshares": "4816962742", + "voter": "morgan.waser" }, { - "voter": "dragonice", - "rshares": "51232949" + "rshares": "51232949", + "voter": "dragonice" }, { - "voter": "steemq", - "rshares": "51230296" + "rshares": "51230296", + "voter": "steemq" }, { - "voter": "weare", - "rshares": "51218466" + "rshares": "51218466", + "voter": "weare" }, { - "voter": "anns", - "rshares": "1258359388" + "rshares": "1258359388", + "voter": "anns" }, { - "voter": "cyan", - "rshares": "50875769" + "rshares": "50875769", + "voter": "cyan" }, { - "voter": "motion", - "rshares": "50871059" + "rshares": "50871059", + "voter": "motion" }, { - "voter": "synereo", - "rshares": "50791473" + "rshares": "50791473", + "voter": "synereo" }, { - "voter": "unilever", - "rshares": "50572441" + "rshares": "50572441", + "voter": "unilever" }, { - "voter": "bapparabi", - "rshares": "1871969417" + "rshares": "1871969417", + "voter": "bapparabi" }, { - "voter": "friends", - "rshares": "50532230" + "rshares": "50532230", + "voter": "friends" }, { - "voter": "strong-ai", - "rshares": "3689824509" + "rshares": "3689824509", + "voter": "strong-ai" }, { - "voter": "ivanakamoto", - "rshares": "53738244" + "rshares": "53738244", + "voter": "ivanakamoto" }, { - "voter": "grisha-danunaher", - "rshares": "516546553" + "rshares": "516546553", + "voter": "grisha-danunaher" }, { - "voter": "sjamayee", - "rshares": "213848535" + "rshares": "213848535", + "voter": "sjamayee" }, { - "voter": "htyfn", - "rshares": "2974116451" + "rshares": "2974116451", + "voter": "htyfn" }, { - "voter": "allianz", - "rshares": "162904624" + "rshares": "162904624", + "voter": "allianz" }, { - "voter": "rusteemitblog", - "rshares": "1630350803" + "rshares": "1630350803", + "voter": "rusteemitblog" }, { - "voter": "ranger", - "rshares": "161815656" + "rshares": "161815656", + "voter": "ranger" }, { - "voter": "witchcraftblog", - "rshares": "444435987" + "rshares": "444435987", + "voter": "witchcraftblog" }, { - "voter": "shadowproject", - "rshares": "161693690" + "rshares": "161693690", + "voter": "shadowproject" }, { - "voter": "acute", - "rshares": "161205518" + "rshares": "161205518", + "voter": "acute" }, { - "voter": "bethesda", - "rshares": "161179339" + "rshares": "161179339", + "voter": "bethesda" }, { - "voter": "panic", - "rshares": "159352476" + "rshares": "159352476", + "voter": "panic" }, { - "voter": "stimmt", - "rshares": "159318360" + "rshares": "159318360", + "voter": "stimmt" }, { - "voter": "rule", - "rshares": "159062820" + "rshares": "159062820", + "voter": "rule" }, { - "voter": "steemthis", - "rshares": "158560941" + "rshares": "158560941", + "voter": "steemthis" }, { - "voter": "zendesk", - "rshares": "158486055" + "rshares": "158486055", + "voter": "zendesk" }, { - "voter": "storage", - "rshares": "68013381" + "rshares": "68013381", + "voter": "storage" }, { - "voter": "cbd", - "rshares": "157667385" + "rshares": "157667385", + "voter": "cbd" }, { - "voter": "junk", - "rshares": "157667385" + "rshares": "157667385", + "voter": "junk" }, { - "voter": "hug", - "rshares": "157682838" + "rshares": "157682838", + "voter": "hug" }, { - "voter": "bearcub", - "rshares": "157682838" + "rshares": "157682838", + "voter": "bearcub" }, { - "voter": "cyberpunk", - "rshares": "157682809" + "rshares": "157682809", + "voter": "cyberpunk" }, { - "voter": "keisha", - "rshares": "156919204" + "rshares": "156919204", + "voter": "keisha" }, { - "voter": "blackmarket", - "rshares": "58460105" + "rshares": "58460105", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "61530871" + "rshares": "61530871", + "voter": "gifts" }, { - "voter": "int", - "rshares": "156919175" + "rshares": "156919175", + "voter": "int" }, { - "voter": "steemlift", - "rshares": "1593664040" + "rshares": "1593664040", + "voter": "steemlift" } ], - "author_reputation": 66.84, - "stats": { - "hide": false, - "gray": false, - "total_votes": 229, - "flag_weight": 0.0 - }, + "author": "serejandmyself", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/story/@serejandmyself/captured-by-time-an-original-novel-chapter-1", - "blacklists": [] - }, - { - "post_id": 960238, - "author": "ozchartart", - "permlink": "usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", - "category": "steem", - "title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle’s left empty\" Sept 15, 2016", - "body": "Hello Steemers!\n\nhttps://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png\n\n*POLONIEX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png\n*4 hour Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciwF/1b96b56dcc.png\n*4 hour Poloniex chart - Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png\n*1 day Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciC9/edf3dcb758.png\n*1 day Poloniex chart - Sept 15, 2016*\nThe Poloniex price went down to the all time low, breaking it and making a slightly lower all time low, but still not giving any confirm of a bottom or bounce.\nVolume about 20% higher then yesterday.\n\n*BITTREX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png\n*4 hour Bittrex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciod/ce32f1a029.png\n*4 hour Bittrex chart - Sept 15, 2016*\nThe Bittrex price broke the local low made just a slightly lower one, same as Poloniex with he all time low, looking like its heading towards the next support level (~0.0007, blue dashed).\nVolume on Bittrex was about 25% lower then yesterday (~5BTC's).\n\n\n*VOLUME COMPARISON*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png\n*STEEM/BTC volume Bittrex Sept 14, 2016*\n\nhttp://puu.sh/rcifG/0c61511ea3.png\n*STEEM/BTC volume Bittrex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png\n*STEEM/BTC volume Poloniex Sept 14, 2016*\n\nhttp://puu.sh/rcicN/b2384086a4.png\n*STEEM/BTC volume Poloniex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png\n*STEEM indexed global volume Sept 14, 2016*\n\nhttp://puu.sh/rcibB/7b2700dd82.png\n*STEEM indexed global volume Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmof/8ca7889618.png\n*Coinmarketcap top volume cryptos Sept 14, 2016*\n\nhttp://puu.sh/rci8K/d68b7eb122.png\n*Coinmarketcap top volume cryptos Sept 15, 2016*\nOverall volume about 12% higher then yesterday, with Bittrex volume taking a dive and Poloniex gaining some.\n$STEEM again under top 30 in volume rankings.\n\n*COMMENT*\nOnce again, I will post the comment by commenting as it involves my personal opinion!\nThank you for understanding!\n\nIf anyone has any questions or need's help fell free to ask, I will try to explain as fast and as best as I can.\nCritics, comments, reply's, counters, advice's, etc. are always welcome!\nHave my charts helped you in any way?Let me know with a comment below :)\nAre there more people who are doing TA?\nPlease post the links to your TA's posts into the comments as well!\n\n*DISCLAIMER*\nI am showing multiple scenarios on the price movement, in the post itself I do not take any stance, either bullish or bearish. I am not responsible for neither you’re winning nor you're losses upon trading! the \"comment\" section is my personal opinion and does not mean I have to or do hold any positions in the given market.\nEveryone who uses TA develops his own unique charting style, please keep that in mind.\n\nhttps://www.youtube.com/watch?v=i3bS5nRZOvU\n\nKind regards, OZ :)", + "blacklists": [], + "body": "#### Hey guys, welcome to the first chapter of my new novel.\n#### It is a mixture of 3 time lines, with 19th century, modern day and ancient times. The genre is probably something you would call a mixture of sci-fi, mystery, adventure and a bit more. \n#### Well, I welcome you to be the judge...\n\n

[![b801c049484636e0faf71f56cca03864c0bd6.jpg](https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg)](https://www.steemimg.com/image/1wrYT)

\n\n__________________________________\n\n**Chapter ONE**\n\nIt seemed as nothing was different in yet another cold and slightly windy London evening. The smog from the river was rising up as usual and the chilly wind would bring the smell up to the embankment, where Charles was taking a rest, sitting down on his favorite bench. \n\nFrom here he could see the might of the power station from across the river and something was special in the way those chimneys threw out the smoke onto the city. \n\nHe just finished his walk along his usual route, walking amongst the cemetery outside the chapel. It always amused him; that mix of emotion and sorrow amongst the busy city people, especially during the busy afternoon hours.\n\nThat rusty smell kept mixing with up with the light freshness of the leaves from the tree nearby Charles\u2019s bench. As he threw a brief glimpse onto the clock on the parliament building he noticed that the small arrow was on 45 minutes\u2026 \n\nSuddenly he heard a murmur of horses; he turned his head before he could finish realizing what time it was. He saw that just a few yards up the road two horse carriages didn\u2019t manage to share the drive way. \n\n
[![Saratogacarriagec5af5.jpg](https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg)](https://www.steemimg.com/image/1w1bI)
\n\nOne of the coachmen was shouting something and angrily waving his hands. Charles was able to see from here that the coachmen\u2019s grey clothing was partially covered in dirt, probably from the splash of the puddles from underneath the wheels. \n\nThe coachmen kept shouting something, Charles was unable to see the second carriage from where he was sitting, but was able to see some passersby, that starting to gather around the incident.\n\nIt was obvious that, just like him, those people had nothing better to do on this late afternoon then to watch in amusement the accident in the middle of the avenue.\n\nJust as Charles was starting to lose interest in the whole situation, the door of the cab that Charles could see, opened and a man dressed in a black suit and holding a pipe stepped out. He calmly put his hand in the upper inner pocket of the suit and pulled out some coins. The man made two steps up to driver and handed him the coins. At this moment the driver stopped shouting for a moment and it was clear from the look on his face that he was confused. \n\nThe cab driver counted the coins and said something to the man in the suit, the passenger didn\u2019t answer. He turned around and started to walk in the direction of the chapel. The cab driver clearly wasn\u2019t happy. He started to shout once again, but this time at the passenger. While the cab driver turned his attention to the passenger, Charles noticed how the second carriage that was involved in the accident managed to move a few yards back.\n\nIt was a much smaller carriage, and the driver was clearly seeable to Charles now. He seemed somewhat happy that he was not in the middle of the light anymore; he hurryingly turned the carriage and the horse around and started to move also in the direction of the chapel. \n\nAt this moment the driver of the first carriage started to lose interest in shouting and decided to clean himself up. As he started to calm down, the bemused passersby begun to walk back to where they were heading and Charles also turned his head back towards the power station.\n\nCharles was so busy watching the situation unfold that he didn\u2019t noticed that the passenger of the first carriage crossed the road and was now heading not towards the chapel anymore, but exactly in the other direction, towards the grey bench that Charles was sitting on.\n\nAt first Charles didn\u2019t pay any attention to just another man who was walking by. But then he noticed that calm walk of his and it hit him that this was the same passenger from the carriage.\n\n\u201cExcuse me sir?\u201d said Charles as the man closed up to the bench. \u201cYou are the gentleman from the carriage, aren\u2019t you?\u201d \u201cI saw you a minute ago, what happened?\u201d\n\nThe man stopped to walk and shared a look with Charles; he calmly sat down beside him and carried on smoking his pipe, as he was not hearing the questions Charles asked him. \n\n\u201cI do apologies for the intervention, but you must not be local, I can tell by your calmness, all the folks round here are always in a hurry\u201d Charles carried on talking as if not noticing that the man was ignoring him. \n\nAll of a sudden the weather begun to change, wind started to blow stronger and the few leaves that the tree was holding blew in the direction of the bench. The smell from the river rose up and as if that wasn\u2019t enough Charles felt like a small rain drop hit his head. He could clearly see the green water from where he was sitting through the decorations holes of the embankments fence. It was clear that it will start to rain soon by the appearing circles on the top of the river.\n\nAfter a few minutes of quietly seating by his new neighbor Charles caught himself looking at the clock on the tower, once again he saw the small arrow on 45 minutes\u2026\n\n\u201cAnd what do we pay the government for?\u201d \u201cIt would feel though they are taking our money and spend it on their fancy hats and suits, don\u2019t you find?\u201d Said Charles.\n\nAt this point the man took out the pipe into his left hand and begun to cough. After he finished coughing Charles heard him speak, at this point Charles understood that for some reason he would remember this moment for a long time to come. \n\n\u201cIt is likely to assume that they deserve to spend the money they earn\u201d Said the man, his voice was quite low and he had a certain accent Charles could quite catch.\n\n\u201cI don\u2019t think that money is of importance nowadays\u201d Said the man.\n\nCharles looked at the man with a smile - \u201cWhat is of importance? One might assume that philosophically speaking, importance can be found in nothing but what is good to us\u201d.\n\n\u201cNo body knows what can be important to others if we carry on like this, then\u2026\u201d Charles didn\u2019t finish his sentence as the man turned away from him and looked the other way. He then turned his head back and Charles noticed his eyes. His eyes were nothing like what Charles had seen before, they looked as though they were glass like and the as if they were blank, there was nothing behind them.\n\n\u201cWhat is important is that I am here now and that it is happening today. It is important to live your life because, just like your life Charles, it has an end\u201d, the man looked somewhat happy when he said that and Charles jumped back on the bench a little, he felt a small shiver run down his spine.\n\n\u201cWhat? How do you know my name sir? Have you been following me?\u201d questions were racing through Charles\u2019s mind. \n\n\u201cAs I said, this is now of importance. You life can find its end today when you get back to your gallery in your cold basement on Kinnerton street or you might listen to me and\u2026\u201d Charles didn\u2019t let the man finish his sentence. He jumped up from the bench; his cane flew within millimeters of the stranger leg as he jumped.\n\n\u201cHow dare you sir? Who gives you the right\u2026\u201d Charles raised his voice, he never allowed himself to raise his voice at a stranger beforehand.\n\n\u201cI think this conversation is over!\u201d exclaimed Charles. \u201cThat would be your choice\u201d replied the man, \u201cDo you think the time is right?\u201d \n\nCharles had already turned away in anger and was about to make his first step away. Something in the words of the man about the time made him think for a second, thoughts raced through his mind. The number 45 and the small arrow of the parliament clock were stuck in his head. \n\n\u201cI don\u2019t understand said Charles\u2026\u201d he turned his head back towards the clock; the arrow was still on 45 minutes. \u201cHow is that possible?\u201d Charles turned his head to the man, but there was no one on the bench. \n\nCharles begun to search the street rapidly with his eyes, it didn\u2019t even occur to him that it was heavily raining until that moment. \n\n
[![tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif](https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif)](https://www.steemimg.com/image/1w5tK)
\n\nThe streets were empty; there were no carriages or people to be seen around. Feeling scared he turned his head to the clock once again \u2013 \u201cHow can it still be 45 minutes...\u201d Charles was speaking out loud.\n\nThe next moment he felt like his knees weakened, his head was swirling and he dropped his cane, last thing he could hear was the clinging the of the cane\u2019s handle against the pavement. His thoughts mixed up with his eyesight; the man and his pipe, the handle of the clock, the carriage, the passersby, the power stations smoke\u2026\n \n_________________________________\n\n#### Follow me @serejandmyself for more \n\nImage credit - [1](https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/) ; [2](https://giphy.com/search/carriage) ; [3](http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html) ;", + "category": "story", + "children": 2, + "created": "2016-09-15T17:23:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "steem", - "poloniex", - "bittrex", - "technical-analysis", - "trading" - ], "image": [ - "https://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png", - "https://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png", - "http://puu.sh/rciwF/1b96b56dcc.png", - "https://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png", - "http://puu.sh/rciC9/edf3dcb758.png", - "https://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png", - "http://puu.sh/rciod/ce32f1a029.png", - "https://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png", - "http://puu.sh/rcifG/0c61511ea3.png", - "https://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png", - "http://puu.sh/rcicN/b2384086a4.png", - "https://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png", - "http://puu.sh/rcibB/7b2700dd82.png", - "https://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png", - "http://puu.sh/rci8K/d68b7eb122.png", - "https://img.youtube.com/vi/i3bS5nRZOvU/0.jpg" + "https://www.steemimg.com/images/2016/09/15/b801c049484636e0faf71f56cca03864c0bd6.jpg", + "https://www.steemimg.com/images/2016/09/15/Saratogacarriagec5af5.jpg", + "https://www.steemimg.com/images/2016/09/15/tumblr_mkbyo2aby01s0rai7o1_50004ba9.gif" ], "links": [ - "https://www.youtube.com/watch?v=i3bS5nRZOvU" + "https://www.steemimg.com/image/1wrYT", + "https://www.steemimg.com/image/1w1bI", + "https://www.steemimg.com/image/1w5tK", + "https://ru.pinterest.com/spookynerd/i-m-a-surrealism-chick/", + "https://giphy.com/search/carriage", + "http://www.ibsrt.com/imglist/horse-and-carriage-id-48037-p-1.html" + ], + "tags": [ + "story", + "fiction", + "scifi", + "mystery", + "writing" + ], + "users": [ + "serejandmyself" ] }, - "created": "2016-09-15T18:18:00", - "updated": "2016-09-15T18:18:00", - "depth": 0, - "children": 5, - "net_rshares": 30268799563538, - "is_paidout": false, - "payout_at": "2016-09-16T18:35:24", - "payout": 57.124, - "pending_payout_value": "57.124 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66871297900441, + "payout": 259.423, + "payout_at": "2016-09-22T17:23:48", + "pending_payout_value": "259.423 HBD", + "percent_hbd": 10000, + "permlink": "captured-by-time-an-original-novel-chapter-1", + "post_id": 1256421, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 229 + }, + "title": "CAPTURED BY TIME (An Original Novel - Chapter 1)", + "updated": "2016-09-15T17:23:48", + "url": "/story/@serejandmyself/captured-by-time-an-original-novel-chapter-1" + }, + { "active_votes": [ { - "voter": "books", - "rshares": "1861031398822" + "rshares": "1861031398822", + "voter": "books" }, { - "voter": "riverhead", - "rshares": "4287714457313" + "rshares": "4287714457313", + "voter": "riverhead" }, { - "voter": "badassmother", - "rshares": "1855967006728" + "rshares": "1855967006728", + "voter": "badassmother" }, { - "voter": "hr1", - "rshares": "2053236030423" + "rshares": "2053236030423", + "voter": "hr1" }, { - "voter": "kushed", - "rshares": "5519371190400" + "rshares": "5519371190400", + "voter": "kushed" }, { - "voter": "rossco99", - "rshares": "1271804694676" + "rshares": "1271804694676", + "voter": "rossco99" }, { - "voter": "jaewoocho", - "rshares": "22391622942" + "rshares": "22391622942", + "voter": "jaewoocho" }, { - "voter": "ozmaster", - "rshares": "161758715658" + "rshares": "161758715658", + "voter": "ozmaster" }, { - "voter": "joseph", - "rshares": "1534643949678" + "rshares": "1534643949678", + "voter": "joseph" }, { - "voter": "aizensou", - "rshares": "100723108736" + "rshares": "100723108736", + "voter": "aizensou" }, { - "voter": "recursive2", - "rshares": "466132509421" + "rshares": "466132509421", + "voter": "recursive2" }, { - "voter": "masteryoda", - "rshares": "636519834128" + "rshares": "636519834128", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120576239931" + "rshares": "3120576239931", + "voter": "recursive" }, { - "voter": "idol", - "rshares": "8927291120" + "rshares": "8927291120", + "voter": "idol" }, { - "voter": "steemrollin", - "rshares": "800066797130" + "rshares": "800066797130", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "4941942978" + "rshares": "4941942978", + "voter": "sakr" }, { - "voter": "chitty", - "rshares": "284401462010" + "rshares": "284401462010", + "voter": "chitty" }, { - "voter": "jocelyn", - "rshares": "1536592488" + "rshares": "1536592488", + "voter": "jocelyn" }, { - "voter": "gregory-f", - "rshares": "14818263059" + "rshares": "14818263059", + "voter": "gregory-f" }, { - "voter": "edgeland", - "rshares": "154334962550" + "rshares": "154334962550", + "voter": "edgeland" }, { - "voter": "craig-grant", - "rshares": "374436234637" + "rshares": "374436234637", + "voter": "craig-grant" }, { - "voter": "gregory60", - "rshares": "9028550345" + "rshares": "9028550345", + "voter": "gregory60" }, { - "voter": "eeks", - "rshares": "89897944197" + "rshares": "89897944197", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "11591323519" + "rshares": "11591323519", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "468281676" + "rshares": "468281676", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "5641697991" + "rshares": "5641697991", + "voter": "spaninv" }, { - "voter": "elishagh1", - "rshares": "15236070794" + "rshares": "15236070794", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7802860274" + "rshares": "7802860274", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "584279800798" + "rshares": "584279800798", + "voter": "nanzo-scoop" }, { - "voter": "kefkius", - "rshares": "10059005246" + "rshares": "10059005246", + "voter": "kefkius" }, { - "voter": "mummyimperfect", - "rshares": "177417522325" + "rshares": "177417522325", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313697862" + "rshares": "313697862", + "voter": "coar" }, { - "voter": "asch", - "rshares": "106635074770" + "rshares": "106635074770", + "voter": "asch" }, { - "voter": "murh", - "rshares": "1061264730" + "rshares": "1061264730", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6230798580" + "rshares": "6230798580", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2003359924" + "rshares": "2003359924", + "voter": "error" }, { - "voter": "andu", - "rshares": "11848125383" + "rshares": "11848125383", + "voter": "andu" }, { - "voter": "cyber", - "rshares": "970586830705" + "rshares": "970586830705", + "voter": "cyber" }, { - "voter": "theshell", - "rshares": "59952188311" + "rshares": "59952188311", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "49580154489" + "rshares": "49580154489", + "voter": "ak2020" }, { - "voter": "applecrisp", - "rshares": "402139444" + "rshares": "402139444", + "voter": "applecrisp" }, { - "voter": "stiletto", - "rshares": "365370465" + "rshares": "365370465", + "voter": "stiletto" }, { - "voter": "trogdor", - "rshares": "280737930617" + "rshares": "280737930617", + "voter": "trogdor" }, { - "voter": "mark-waser", - "rshares": "5950623572" + "rshares": "5950623572", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "118356217412" + "rshares": "118356217412", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "101509283748" + "rshares": "101509283748", + "voter": "kimziv" }, { - "voter": "emily-cook", - "rshares": "75333038089" + "rshares": "75333038089", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2251949197" + "rshares": "2251949197", + "voter": "superfreek" }, { - "voter": "ladyclair", - "rshares": "275327756" + "rshares": "275327756", + "voter": "ladyclair" }, { - "voter": "orly", - "rshares": "3283410959" + "rshares": "3283410959", + "voter": "orly" }, { - "voter": "riscadox", - "rshares": "5271030976" + "rshares": "5271030976", + "voter": "riscadox" }, { - "voter": "tcfxyz", - "rshares": "25057521880" + "rshares": "25057521880", + "voter": "tcfxyz" }, { - "voter": "futurefood", - "rshares": "6939954009" + "rshares": "6939954009", + "voter": "futurefood" }, { - "voter": "furion", - "rshares": "56586842629" + "rshares": "56586842629", + "voter": "furion" }, { - "voter": "busser", - "rshares": "754655775" + "rshares": "754655775", + "voter": "busser" }, { - "voter": "cdubendo", - "rshares": "103793678934" + "rshares": "103793678934", + "voter": "cdubendo" }, { - "voter": "barbara2", - "rshares": "271487757" + "rshares": "271487757", + "voter": "barbara2" }, { - "voter": "ch0c0latechip", - "rshares": "301755142" + "rshares": "301755142", + "voter": "ch0c0latechip" }, { - "voter": "doge4lyf", - "rshares": "279277284" + "rshares": "279277284", + "voter": "doge4lyf" }, { - "voter": "steem1653", - "rshares": "2733708608" + "rshares": "2733708608", + "voter": "steem1653" }, { - "voter": "cynetyc", - "rshares": "124961861" + "rshares": "124961861", + "voter": "cynetyc" }, { - "voter": "thegoodguy", - "rshares": "5357326058" + "rshares": "5357326058", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "14168005907" + "rshares": "14168005907", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209533734" + "rshares": "4209533734", + "voter": "karen13" }, { - "voter": "nabilov", - "rshares": "251367062418" + "rshares": "251367062418", + "voter": "nabilov" }, { - "voter": "noodhoog", - "rshares": "8576081337" + "rshares": "8576081337", + "voter": "noodhoog" }, { - "voter": "milestone", - "rshares": "46859060143" + "rshares": "46859060143", + "voter": "milestone" }, { - "voter": "artific", - "rshares": "21565632626" + "rshares": "21565632626", + "voter": "artific" }, { - "voter": "btcbtcbtc20155", - "rshares": "5840939270" + "rshares": "5840939270", + "voter": "btcbtcbtc20155" }, { - "voter": "nippel66", - "rshares": "14455781997" + "rshares": "14455781997", + "voter": "nippel66" }, { - "voter": "blueorgy", - "rshares": "163325492855" + "rshares": "163325492855", + "voter": "blueorgy" }, { - "voter": "benjiberigan", - "rshares": "13111647625" + "rshares": "13111647625", + "voter": "benjiberigan" }, { - "voter": "poseidon", - "rshares": "2214250194" + "rshares": "2214250194", + "voter": "poseidon" }, { - "voter": "calaber24p", - "rshares": "355265286967" + "rshares": "355265286967", + "voter": "calaber24p" }, { - "voter": "simon.braki.love", - "rshares": "3295677164" + "rshares": "3295677164", + "voter": "simon.braki.love" }, { - "voter": "bola", - "rshares": "121062267" + "rshares": "121062267", + "voter": "bola" }, { - "voter": "deanliu", - "rshares": "32544157928" + "rshares": "32544157928", + "voter": "deanliu" }, { - "voter": "hagie", - "rshares": "14007767075" + "rshares": "14007767075", + "voter": "hagie" }, { - "voter": "jl777", - "rshares": "204618396015" + "rshares": "204618396015", + "voter": "jl777" }, { - "voter": "aleco", - "rshares": "1371622220" + "rshares": "1371622220", + "voter": "aleco" }, { - "voter": "positive", - "rshares": "9400257217" + "rshares": "9400257217", + "voter": "positive" }, { - "voter": "yarly", - "rshares": "1773021661" + "rshares": "1773021661", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "267188192" + "rshares": "267188192", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "267587944" + "rshares": "267587944", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "154579129" + "rshares": "154579129", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "155451862" + "rshares": "155451862", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "88607961" + "rshares": "88607961", + "voter": "yarly7" }, { - "voter": "sergey44", - "rshares": "257573964" + "rshares": "257573964", + "voter": "sergey44" }, { - "voter": "proto", - "rshares": "17267341753" + "rshares": "17267341753", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "16251777176" + "rshares": "16251777176", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "428868451" + "rshares": "428868451", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "229507420" + "rshares": "229507420", + "voter": "yarly11" }, { - "voter": "yarly12", - "rshares": "80241480" + "rshares": "80241480", + "voter": "yarly12" }, { - "voter": "fnait", - "rshares": "316499814" + "rshares": "316499814", + "voter": "fnait" }, { - "voter": "keepcalmand", - "rshares": "281178931" + "rshares": "281178931", + "voter": "keepcalmand" }, { - "voter": "cwmyao1", - "rshares": "607346548" + "rshares": "607346548", + "voter": "cwmyao1" }, { - "voter": "jamesbrown", - "rshares": "16495975416" + "rshares": "16495975416", + "voter": "jamesbrown" }, { - "voter": "glitterpig", - "rshares": "3353991305" + "rshares": "3353991305", + "voter": "glitterpig" }, { - "voter": "jed78", - "rshares": "7506600577" + "rshares": "7506600577", + "voter": "jed78" }, { - "voter": "taker", - "rshares": "8734185109" + "rshares": "8734185109", + "voter": "taker" }, { - "voter": "coinbar", - "rshares": "1651596637" + "rshares": "1651596637", + "voter": "coinbar" }, { - "voter": "laonie", - "rshares": "574717917578" + "rshares": "574717917578", + "voter": "laonie" }, { - "voter": "ozchartart", - "rshares": "254341994815" + "rshares": "254341994815", + "voter": "ozchartart" }, { - "voter": "croatia", - "rshares": "5104045578" + "rshares": "5104045578", + "voter": "croatia" }, { - "voter": "myfirst", - "rshares": "19987344033" + "rshares": "19987344033", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "116658367770" + "rshares": "116658367770", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "4604075327" + "rshares": "4604075327", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "2501638608" + "rshares": "2501638608", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "25770687280" + "rshares": "25770687280", + "voter": "midnightoil" }, { - "voter": "ullikume", - "rshares": "4190377366" + "rshares": "4190377366", + "voter": "ullikume" }, { - "voter": "andrew0", - "rshares": "2325684243" + "rshares": "2325684243", + "voter": "andrew0" }, { - "voter": "xiaohui", - "rshares": "64457942294" + "rshares": "64457942294", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "3234267259" + "rshares": "3234267259", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "99935909954" + "rshares": "99935909954", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5855738054" + "rshares": "5855738054", + "voter": "oflyhigh" }, { - "voter": "xiaokongcom", - "rshares": "2127092828" + "rshares": "2127092828", + "voter": "xiaokongcom" }, { - "voter": "eneismijmich", - "rshares": "47556149905" + "rshares": "47556149905", + "voter": "eneismijmich" }, { - "voter": "xianjun", - "rshares": "4287842001" + "rshares": "4287842001", + "voter": "xianjun" }, { - "voter": "sijoittaja", - "rshares": "72192938" + "rshares": "72192938", + "voter": "sijoittaja" }, { - "voter": "borran", - "rshares": "11041591679" + "rshares": "11041591679", + "voter": "borran" }, { - "voter": "miacats", - "rshares": "93807196108" + "rshares": "93807196108", + "voter": "miacats" }, { - "voter": "microluck", - "rshares": "280777082" + "rshares": "280777082", + "voter": "microluck" }, { - "voter": "razberrijam", - "rshares": "74131936" + "rshares": "74131936", + "voter": "razberrijam" }, { - "voter": "chinadaily", - "rshares": "2022702929" + "rshares": "2022702929", + "voter": "chinadaily" }, { - "voter": "pompe72", - "rshares": "86712034" + "rshares": "86712034", + "voter": "pompe72" }, { - "voter": "ignat", - "rshares": "1647538615" + "rshares": "1647538615", + "voter": "ignat" }, { - "voter": "anotherjoe", - "rshares": "20666130092" + "rshares": "20666130092", + "voter": "anotherjoe" }, { - "voter": "gvargas123", - "rshares": "10344891579" + "rshares": "10344891579", + "voter": "gvargas123" }, { - "voter": "movievertigo", - "rshares": "3562389763" + "rshares": "3562389763", + "voter": "movievertigo" }, { - "voter": "andrewawerdna", - "rshares": "21980957828" + "rshares": "21980957828", + "voter": "andrewawerdna" }, { - "voter": "runridefly", - "rshares": "2109031152" + "rshares": "2109031152", + "voter": "runridefly" }, { - "voter": "funkywanderer", - "rshares": "1783693666" + "rshares": "1783693666", + "voter": "funkywanderer" }, { - "voter": "richardcrill", - "rshares": "4747321980" + "rshares": "4747321980", + "voter": "richardcrill" }, { - "voter": "jeremyfromwi", - "rshares": "2161669067" + "rshares": "2161669067", + "voter": "jeremyfromwi" }, { - "voter": "davidjkelley", - "rshares": "1661534801" + "rshares": "1661534801", + "voter": "davidjkelley" }, { - "voter": "greatness", - "rshares": "178419224" + "rshares": "178419224", + "voter": "greatness" }, { - "voter": "sponge-bob", - "rshares": "27678962051" + "rshares": "27678962051", + "voter": "sponge-bob" }, { - "voter": "digital-wisdom", - "rshares": "15571125147" + "rshares": "15571125147", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3710973264" + "rshares": "3710973264", + "voter": "ethical-ai" }, { - "voter": "jwaser", - "rshares": "6831389463" + "rshares": "6831389463", + "voter": "jwaser" }, { - "voter": "steemorama", - "rshares": "422625634" + "rshares": "422625634", + "voter": "steemorama" }, { - "voter": "nubchai", - "rshares": "4269189470" + "rshares": "4269189470", + "voter": "nubchai" }, { - "voter": "analyzethis", - "rshares": "50931848" + "rshares": "50931848", + "voter": "analyzethis" }, { - "voter": "bwaser", - "rshares": "2675506788" + "rshares": "2675506788", + "voter": "bwaser" }, { - "voter": "dexter-k", - "rshares": "6064648982" + "rshares": "6064648982", + "voter": "dexter-k" }, { - "voter": "doggnostic", - "rshares": "54949117" + "rshares": "54949117", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "54665234" + "rshares": "54665234", + "voter": "jenny-talls" }, { - "voter": "brains", - "rshares": "27673000226" + "rshares": "27673000226", + "voter": "brains" }, { - "voter": "steemafon", - "rshares": "1387263917" + "rshares": "1387263917", + "voter": "steemafon" }, { - "voter": "chick1", - "rshares": "5753524189" + "rshares": "5753524189", + "voter": "chick1" }, { - "voter": "aoki", - "rshares": "50584036" + "rshares": "50584036", + "voter": "aoki" }, { - "voter": "typingagent", - "rshares": "51568971" + "rshares": "51568971", + "voter": "typingagent" }, { - "voter": "cwb", - "rshares": "50528809" + "rshares": "50528809", + "voter": "cwb" }, { - "voter": "freebornangel", - "rshares": "62515317" + "rshares": "62515317", + "voter": "freebornangel" }, { - "voter": "anomaly", - "rshares": "339300528" + "rshares": "339300528", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401297947" + "rshares": "2401297947", + "voter": "ellepdub" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "herpetologyguy", - "rshares": "12115690216" + "rshares": "12115690216", + "voter": "herpetologyguy" }, { - "voter": "morgan.waser", - "rshares": "4817018034" + "rshares": "4817018034", + "voter": "morgan.waser" }, { - "voter": "dragonice", - "rshares": "50228382" + "rshares": "50228382", + "voter": "dragonice" }, { - "voter": "oxygen", - "rshares": "50907857" + "rshares": "50907857", + "voter": "oxygen" }, { - "voter": "palladium", - "rshares": "50873654" + "rshares": "50873654", + "voter": "palladium" }, { - "voter": "sting", - "rshares": "50865840" + "rshares": "50865840", + "voter": "sting" }, { - "voter": "strong-ai", - "rshares": "3689865978" + "rshares": "3689865978", + "voter": "strong-ai" }, { - "voter": "ctu", - "rshares": "162917785" + "rshares": "162917785", + "voter": "ctu" }, { - "voter": "ranger", - "rshares": "161815656" + "rshares": "161815656", + "voter": "ranger" }, { - "voter": "shadowcash", - "rshares": "161700361" + "rshares": "161700361", + "voter": "shadowcash" }, { - "voter": "sdc", - "rshares": "161218747" + "rshares": "161218747", + "voter": "sdc" }, { - "voter": "bethesda", - "rshares": "158018960" + "rshares": "158018960", + "voter": "bethesda" }, { - "voter": "skrillex", - "rshares": "160835930" + "rshares": "160835930", + "voter": "skrillex" }, { - "voter": "cybergirls", - "rshares": "160319579" + "rshares": "160319579", + "voter": "cybergirls" }, { - "voter": "fallout", - "rshares": "159175576" + "rshares": "159175576", + "voter": "fallout" }, { - "voter": "steemwallet", - "rshares": "158732321" + "rshares": "158732321", + "voter": "steemwallet" }, { - "voter": "icesteem", - "rshares": "158638676" + "rshares": "158638676", + "voter": "icesteem" }, { - "voter": "goldmatters", - "rshares": "31684221772" + "rshares": "31684221772", + "voter": "goldmatters" }, { - "voter": "dougkarr", - "rshares": "154247502" + "rshares": "154247502", + "voter": "dougkarr" } ], + "author": "ozchartart", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 176, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/steem/@ozchartart/usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", - "blacklists": [] - }, - { - "post_id": 960293, - "author": "knozaki2015", - "permlink": "the-strangest-building-in-berlin", - "category": "contest", - "title": "SPOTTED #6 : The strangest Building in Berlin", - "body": "\n

\"SPOTTED\"

\n


\n

On my travel to Berlin, Germany I have SPOTTED this strange Building. 

\n

Can you guess the purpose of this strange corridor? 

\n


\n
\"2016-08-14
\nHere are some possible answers:

\n
    \n
  • This is a Passage where people used to smuggle food and cigarettes between West and East Berlin
  • \n
  • This is a Hospital and connecting two Wings
  • \n
  • This is a worm hole and connecting Berlin and Jupiter
  • \n
  • This is a Hostel and the toilets are in the other Wing
  • \n
  • ....
  • \n
\n


\n\"2016-08-14
\n
\n 

\n
To make it more fun a reward of 10 STEEM POWER will be given to the first correct answer of the purpose of this strange corridor.  
\n
And a Special Reward of 5 Steem Power goes to the strangest, funniest Answer!  
\n


\n

I will release the answer after a couple of hours so hurry and pick your answer. (2 answers per person only!!!)

\n

If you like my Post, please follow me! 

\n

I am blogging about the following topics :

\n
    \n
  • I travel the world (Travel and Restaurant Blog)
  • \n
  • Exposed (Uncovering Stories you need to know)
  • \n
  • Lifehacks (How to save money,etc) 
  • \n
  • SPOTTED (Limited Edition Food ,Drinks, Gadgets)
  • \n
  • Steemperlen (German Version)
  • \n
  • SQUEEZE (Interview Series) 
  • \n
  • COOKED (10 Episodes Cooking Series)
  • \n
\n", + "blacklists": [], + "body": "Hello Steemers!\n\nhttps://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png\n\n*POLONIEX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png\n*4 hour Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciwF/1b96b56dcc.png\n*4 hour Poloniex chart - Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png\n*1 day Poloniex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciC9/edf3dcb758.png\n*1 day Poloniex chart - Sept 15, 2016*\nThe Poloniex price went down to the all time low, breaking it and making a slightly lower all time low, but still not giving any confirm of a bottom or bounce.\nVolume about 20% higher then yesterday.\n\n*BITTREX*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png\n*4 hour Bittrex chart - Sept 14, 2016*\n\nhttp://puu.sh/rciod/ce32f1a029.png\n*4 hour Bittrex chart - Sept 15, 2016*\nThe Bittrex price broke the local low made just a slightly lower one, same as Poloniex with he all time low, looking like its heading towards the next support level (~0.0007, blue dashed).\nVolume on Bittrex was about 25% lower then yesterday (~5BTC's).\n\n\n*VOLUME COMPARISON*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png\n*STEEM/BTC volume Bittrex Sept 14, 2016*\n\nhttp://puu.sh/rcifG/0c61511ea3.png\n*STEEM/BTC volume Bittrex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png\n*STEEM/BTC volume Poloniex Sept 14, 2016*\n\nhttp://puu.sh/rcicN/b2384086a4.png\n*STEEM/BTC volume Poloniex Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png\n*STEEM indexed global volume Sept 14, 2016*\n\nhttp://puu.sh/rcibB/7b2700dd82.png\n*STEEM indexed global volume Sept 15, 2016*\n\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png\nhttps://img1.steemit.com/0x0/http://puu.sh/rbmof/8ca7889618.png\n*Coinmarketcap top volume cryptos Sept 14, 2016*\n\nhttp://puu.sh/rci8K/d68b7eb122.png\n*Coinmarketcap top volume cryptos Sept 15, 2016*\nOverall volume about 12% higher then yesterday, with Bittrex volume taking a dive and Poloniex gaining some.\n$STEEM again under top 30 in volume rankings.\n\n*COMMENT*\nOnce again, I will post the comment by commenting as it involves my personal opinion!\nThank you for understanding!\n\nIf anyone has any questions or need's help fell free to ask, I will try to explain as fast and as best as I can.\nCritics, comments, reply's, counters, advice's, etc. are always welcome!\nHave my charts helped you in any way?Let me know with a comment below :)\nAre there more people who are doing TA?\nPlease post the links to your TA's posts into the comments as well!\n\n*DISCLAIMER*\nI am showing multiple scenarios on the price movement, in the post itself I do not take any stance, either bullish or bearish. I am not responsible for neither you\u2019re winning nor you're losses upon trading! the \"comment\" section is my personal opinion and does not mean I have to or do hold any positions in the given market.\nEveryone who uses TA develops his own unique charting style, please keep that in mind.\n\nhttps://www.youtube.com/watch?v=i3bS5nRZOvU\n\nKind regards, OZ :)", + "category": "steem", + "children": 5, + "created": "2016-09-15T18:18:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "contest", - "travel", - "minnowsunite", - "steemsquad", - "berlin" - ], "image": [ - "https://s14.postimg.org/i75tlx3s1/SPOTTED.jpg", - "https://s22.postimg.org/s90fnlg7l/2016_08_14_17_21_48.jpg", - "https://s22.postimg.org/q5q0fxgep/2016_08_14_17_22_34.jpg" + "https://img1.steemit.com/0x0/http://puu.sh/qPHEc/3b0d8913ce.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmGz/0764821325.png", + "http://puu.sh/rciwF/1b96b56dcc.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmLb/755ca91186.png", + "http://puu.sh/rciC9/edf3dcb758.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmDb/7461d3602b.png", + "http://puu.sh/rciod/ce32f1a029.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmuE/227aa902ca.png", + "http://puu.sh/rcifG/0c61511ea3.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmwv/fd2112e3ab.png", + "http://puu.sh/rcicN/b2384086a4.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmry/db13b3282f.png", + "http://puu.sh/rcibB/7b2700dd82.png", + "https://img1.steemit.com/0x0/http://puu.sh/rbmlb/aca50530d5.png", + "http://puu.sh/rci8K/d68b7eb122.png", + "https://img.youtube.com/vi/i3bS5nRZOvU/0.jpg" ], "links": [ - "https://postimg.org/image/ciziv0zfh/", - "https://steemit.com/@knozaki2015", - "https://steemit.com/food/@knozaki2015/i-travel-the-world-part-25-cafe-viena-feat-the-worlds-best-sandwich-ny-times", - "https://steemit.com/deutsch/@knozaki2015/steemperlen-1", - "https://steemit.com/food/@knozaki2015/fantastic-seafood-paella-cooked-2-with-the-master-of-paella-gargon" + "https://www.youtube.com/watch?v=i3bS5nRZOvU" + ], + "tags": [ + "steem", + "poloniex", + "bittrex", + "technical-analysis", + "trading" ] }, - "created": "2016-09-15T18:23:30", - "updated": "2016-09-15T19:04:48", - "depth": 0, - "children": 28, - "net_rshares": 26540390904529, - "is_paidout": false, - "payout_at": "2016-09-16T18:49:34", - "payout": 44.638, - "pending_payout_value": "44.638 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 30268799563538, + "payout": 57.04, + "payout_at": "2016-09-22T18:18:00", + "pending_payout_value": "57.040 HBD", + "percent_hbd": 10000, + "permlink": "usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept", + "post_id": 1256962, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 176 + }, + "title": "$STEEM/BTC Daily Poloniex+Bittrex Technical Analysis / Market Report Update #46, \"Glass half full, but the bottle\u2019s left empty\" Sept 15, 2016", + "updated": "2016-09-15T18:18:00", + "url": "/steem/@ozchartart/usdsteem-btc-daily-poloniex-bittrex-technical-analysis-market-report-update-46-glass-half-full-but-the-bottle-s-left-empty-sept" + }, + { "active_votes": [ { - "voter": "riverhead", - "rshares": "4134581798123" + "rshares": "4134581798123", + "voter": "riverhead" }, { - "voter": "pharesim", - "rshares": "3313249953310" + "rshares": "3313249953310", + "voter": "pharesim" }, { - "voter": "hr1", - "rshares": "2053236030423" + "rshares": "2053236030423", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1271804694676" + "rshares": "1271804694676", + "voter": "rossco99" }, { - "voter": "jaewoocho", - "rshares": "22391622942" + "rshares": "22391622942", + "voter": "jaewoocho" }, { - "voter": "joseph", - "rshares": "1534717563460" + "rshares": "1534717563460", + "voter": "joseph" }, { - "voter": "aizensou", - "rshares": "98682259833" + "rshares": "98682259833", + "voter": "aizensou" }, { - "voter": "recursive3", - "rshares": "452874558937" + "rshares": "452874558937", + "voter": "recursive3" }, { - "voter": "masteryoda", - "rshares": "620996029765" + "rshares": "620996029765", + "voter": "masteryoda" }, { - "voter": "recursive", - "rshares": "3120582597678" + "rshares": "3120582597678", + "voter": "recursive" }, { - "voter": "idol", - "rshares": "8927291120" + "rshares": "8927291120", + "voter": "idol" }, { - "voter": "sakr", - "rshares": "4941942978" + "rshares": "4941942978", + "voter": "sakr" }, { - "voter": "chitty", - "rshares": "284401462010" + "rshares": "284401462010", + "voter": "chitty" }, { - "voter": "jocelyn", - "rshares": "1536592488" + "rshares": "1536592488", + "voter": "jocelyn" }, { - "voter": "edgeland", - "rshares": "154334962550" + "rshares": "154334962550", + "voter": "edgeland" }, { - "voter": "eeks", - "rshares": "89897956816" + "rshares": "89897956816", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1511911763" + "rshares": "1511911763", + "voter": "fkn" }, { - "voter": "paco-steem", - "rshares": "468281676" + "rshares": "468281676", + "voter": "paco-steem" }, { - "voter": "spaninv", - "rshares": "5641697991" + "rshares": "5641697991", + "voter": "spaninv" }, { - "voter": "elishagh1", - "rshares": "1987313581" + "rshares": "1987313581", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7803257741" + "rshares": "7803257741", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "584291107228" + "rshares": "584291107228", + "voter": "nanzo-scoop" }, { - "voter": "kefkius", - "rshares": "9857825141" + "rshares": "9857825141", + "voter": "kefkius" }, { - "voter": "mummyimperfect", - "rshares": "172751875332" + "rshares": "172751875332", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313697862" + "rshares": "313697862", + "voter": "coar" }, { - "voter": "kevinwong", - "rshares": "603741881611" + "rshares": "603741881611", + "voter": "kevinwong" }, { - "voter": "murh", - "rshares": "1061266533" + "rshares": "1061266533", + "voter": "murh" }, { - "voter": "cryptofunk", - "rshares": "6230798580" + "rshares": "6230798580", + "voter": "cryptofunk" }, { - "voter": "error", - "rshares": "2003359924" + "rshares": "2003359924", + "voter": "error" }, { - "voter": "andu", - "rshares": "11584833708" + "rshares": "11584833708", + "voter": "andu" }, { - "voter": "theshell", - "rshares": "58189176188" + "rshares": "58189176188", + "voter": "theshell" }, { - "voter": "ak2020", - "rshares": "49581045086" + "rshares": "49581045086", + "voter": "ak2020" }, { - "voter": "satoshifund", - "rshares": "3925670964026" + "rshares": "3925670964026", + "voter": "satoshifund" }, { - "voter": "applecrisp", - "rshares": "402139444" + "rshares": "402139444", + "voter": "applecrisp" }, { - "voter": "stiletto", - "rshares": "365370465" + "rshares": "365370465", + "voter": "stiletto" }, { - "voter": "will-zewe", - "rshares": "219283354085" + "rshares": "219283354085", + "voter": "will-zewe" }, { - "voter": "herzmeister", - "rshares": "85402720456" + "rshares": "85402720456", + "voter": "herzmeister" }, { - "voter": "trogdor", - "rshares": "275016906945" + "rshares": "275016906945", + "voter": "trogdor" }, { - "voter": "mark-waser", - "rshares": "5821262190" + "rshares": "5821262190", + "voter": "mark-waser" }, { - "voter": "geoffrey", - "rshares": "118356217412" + "rshares": "118356217412", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "42740945757" + "rshares": "42740945757", + "voter": "kimziv" }, { - "voter": "honeythief", - "rshares": "45359587433" + "rshares": "45359587433", + "voter": "honeythief" }, { - "voter": "emily-cook", - "rshares": "75334808165" + "rshares": "75334808165", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187607792" + "rshares": "2187607792", + "voter": "superfreek" }, { - "voter": "thebatchman", - "rshares": "19975706505" + "rshares": "19975706505", + "voter": "thebatchman" }, { - "voter": "lehard", - "rshares": "59061289095" + "rshares": "59061289095", + "voter": "lehard" }, { - "voter": "orly", - "rshares": "3417427733" + "rshares": "3417427733", + "voter": "orly" }, { - "voter": "riscadox", - "rshares": "5165610356" + "rshares": "5165610356", + "voter": "riscadox" }, { - "voter": "cmtzco", - "rshares": "8950458328" + "rshares": "8950458328", + "voter": "cmtzco" }, { - "voter": "fabio", - "rshares": "198384500562" + "rshares": "198384500562", + "voter": "fabio" }, { - "voter": "tcfxyz", - "rshares": "25057642057" + "rshares": "25057642057", + "voter": "tcfxyz" }, { - "voter": "futurefood", - "rshares": "6939984054" + "rshares": "6939984054", + "voter": "futurefood" }, { - "voter": "endgame", - "rshares": "794749227" + "rshares": "794749227", + "voter": "endgame" }, { - "voter": "furion", - "rshares": "7380892516" + "rshares": "7380892516", + "voter": "furion" }, { - "voter": "sigmajin", - "rshares": "111055672943" + "rshares": "111055672943", + "voter": "sigmajin" }, { - "voter": "steem1653", - "rshares": "2632460141" + "rshares": "2632460141", + "voter": "steem1653" }, { - "voter": "sveokla", - "rshares": "2860912097" + "rshares": "2860912097", + "voter": "sveokla" }, { - "voter": "cynetyc", - "rshares": "124961861" + "rshares": "124961861", + "voter": "cynetyc" }, { - "voter": "thegoodguy", - "rshares": "5250179537" + "rshares": "5250179537", + "voter": "thegoodguy" }, { - "voter": "aaseb", - "rshares": "13846328779" + "rshares": "13846328779", + "voter": "aaseb" }, { - "voter": "incomemonthly", - "rshares": "3857388226" + "rshares": "3857388226", + "voter": "incomemonthly" }, { - "voter": "karen13", - "rshares": "4209533734" + "rshares": "4209533734", + "voter": "karen13" }, { - "voter": "deviedev", - "rshares": "10646469982" + "rshares": "10646469982", + "voter": "deviedev" }, { - "voter": "nabilov", - "rshares": "243749878708" + "rshares": "243749878708", + "voter": "nabilov" }, { - "voter": "noodhoog", - "rshares": "8751103405" + "rshares": "8751103405", + "voter": "noodhoog" }, { - "voter": "knozaki2015", - "rshares": "464730588449" + "rshares": "464730588449", + "voter": "knozaki2015" }, { - "voter": "inertia", - "rshares": "93792164062" + "rshares": "93792164062", + "voter": "inertia" }, { - "voter": "creemej", - "rshares": "33739199475" + "rshares": "33739199475", + "voter": "creemej" }, { - "voter": "the-future", - "rshares": "2654553033" + "rshares": "2654553033", + "voter": "the-future" }, { - "voter": "nippel66", - "rshares": "14763294144" + "rshares": "14763294144", + "voter": "nippel66" }, { - "voter": "blueorgy", - "rshares": "159342196635" + "rshares": "159342196635", + "voter": "blueorgy" }, { - "voter": "opheliafu", - "rshares": "167934545479" + "rshares": "167934545479", + "voter": "opheliafu" }, { - "voter": "poseidon", - "rshares": "932318275" + "rshares": "932318275", + "voter": "poseidon" }, { - "voter": "simon.braki.love", - "rshares": "3365797955" + "rshares": "3365797955", + "voter": "simon.braki.love" }, { - "voter": "deanliu", - "rshares": "31459352664" + "rshares": "31459352664", + "voter": "deanliu" }, { - "voter": "sharker", - "rshares": "5497387091" + "rshares": "5497387091", + "voter": "sharker" }, { - "voter": "tokyodude", - "rshares": "1659490970" + "rshares": "1659490970", + "voter": "tokyodude" }, { - "voter": "jl777", - "rshares": "204618396015" + "rshares": "204618396015", + "voter": "jl777" }, { - "voter": "positive", - "rshares": "1226120506" + "rshares": "1226120506", + "voter": "positive" }, { - "voter": "yarly", - "rshares": "1845389893" + "rshares": "1845389893", + "voter": "yarly" }, { - "voter": "yarly2", - "rshares": "278093833" + "rshares": "278093833", + "voter": "yarly2" }, { - "voter": "yarly3", - "rshares": "278509900" + "rshares": "278509900", + "voter": "yarly3" }, { - "voter": "yarly4", - "rshares": "160888481" + "rshares": "160888481", + "voter": "yarly4" }, { - "voter": "yarly5", - "rshares": "161796836" + "rshares": "161796836", + "voter": "yarly5" }, { - "voter": "yarly7", - "rshares": "92224612" + "rshares": "92224612", + "voter": "yarly7" }, { - "voter": "proto", - "rshares": "17267341753" + "rshares": "17267341753", + "voter": "proto" }, { - "voter": "jasen.g1311", - "rshares": "230455938" + "rshares": "230455938", + "voter": "jasen.g1311" }, { - "voter": "sisterholics", - "rshares": "7223043327" + "rshares": "7223043327", + "voter": "sisterholics" }, { - "voter": "yarly10", - "rshares": "446373286" + "rshares": "446373286", + "voter": "yarly10" }, { - "voter": "yarly11", - "rshares": "238875070" + "rshares": "238875070", + "voter": "yarly11" }, { - "voter": "royalmacro", - "rshares": "8781903824" + "rshares": "8781903824", + "voter": "royalmacro" }, { - "voter": "yarly12", - "rshares": "83516643" + "rshares": "83516643", + "voter": "yarly12" }, { - "voter": "sulev", - "rshares": "3448954519" + "rshares": "3448954519", + "voter": "sulev" }, { - "voter": "reported", - "rshares": "54477247" + "rshares": "54477247", + "voter": "reported" }, { - "voter": "uwe69", - "rshares": "6869641155" + "rshares": "6869641155", + "voter": "uwe69" }, { - "voter": "jed78", - "rshares": "7506600577" + "rshares": "7506600577", + "voter": "jed78" }, { - "voter": "taker", - "rshares": "8734185109" + "rshares": "8734185109", + "voter": "taker" }, { - "voter": "felixxx", - "rshares": "14430038673" + "rshares": "14430038673", + "voter": "felixxx" }, { - "voter": "krushing", - "rshares": "51206711" + "rshares": "51206711", + "voter": "krushing" }, { - "voter": "laonie", - "rshares": "255431411513" + "rshares": "255431411513", + "voter": "laonie" }, { - "voter": "twinner", - "rshares": "157521707420" + "rshares": "157521707420", + "voter": "twinner" }, { - "voter": "thebluepanda", - "rshares": "12593318020" + "rshares": "12593318020", + "voter": "thebluepanda" }, { - "voter": "laoyao", - "rshares": "23916491019" + "rshares": "23916491019", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "7994964655" + "rshares": "7994964655", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "51848391811" + "rshares": "51848391811", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "1938565243" + "rshares": "1938565243", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "2501638608" + "rshares": "2501638608", + "voter": "gmurph" }, { - "voter": "chris.roy", - "rshares": "7842831090" + "rshares": "7842831090", + "voter": "chris.roy" }, { - "voter": "denn", - "rshares": "5558177167" + "rshares": "5558177167", + "voter": "denn" }, { - "voter": "minnowsunited", - "rshares": "475501347" + "rshares": "475501347", + "voter": "minnowsunited" }, { - "voter": "midnightoil", - "rshares": "11453689270" + "rshares": "11453689270", + "voter": "midnightoil" }, { - "voter": "whatyouganjado", - "rshares": "51383056" + "rshares": "51383056", + "voter": "whatyouganjado" }, { - "voter": "andrew0", - "rshares": "2275125890" + "rshares": "2275125890", + "voter": "andrew0" }, { - "voter": "xiaohui", - "rshares": "28648120983" + "rshares": "28648120983", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "1293711711" + "rshares": "1293711711", + "voter": "elfkitchen" }, { - "voter": "joele", - "rshares": "99935909954" + "rshares": "99935909954", + "voter": "joele" }, { - "voter": "oflyhigh", - "rshares": "5683510464" + "rshares": "5683510464", + "voter": "oflyhigh" }, { - "voter": "makaveli", - "rshares": "56817337" + "rshares": "56817337", + "voter": "makaveli" }, { - "voter": "xiaokongcom", - "rshares": "895620436" + "rshares": "895620436", + "voter": "xiaokongcom" }, { - "voter": "gargon", - "rshares": "12687522802" + "rshares": "12687522802", + "voter": "gargon" }, { - "voter": "future24", - "rshares": "1446509276" + "rshares": "1446509276", + "voter": "future24" }, { - "voter": "xianjun", - "rshares": "1805414369" + "rshares": "1805414369", + "voter": "xianjun" }, { - "voter": "alexbones", - "rshares": "50010551" + "rshares": "50010551", + "voter": "alexbones" }, { - "voter": "microluck", - "rshares": "118221929" + "rshares": "118221929", + "voter": "microluck" }, { - "voter": "chinadaily", - "rshares": "2022702929" + "rshares": "2022702929", + "voter": "chinadaily" }, { - "voter": "pjheinz", - "rshares": "10261652613" + "rshares": "10261652613", + "voter": "pjheinz" }, { - "voter": "pompe72", - "rshares": "88481667" + "rshares": "88481667", + "voter": "pompe72" }, { - "voter": "serejandmyself", - "rshares": "83628622374" + "rshares": "83628622374", + "voter": "serejandmyself" }, { - "voter": "pollina", - "rshares": "108403024" + "rshares": "108403024", + "voter": "pollina" }, { - "voter": "mindfreak", - "rshares": "4931895395" + "rshares": "4931895395", + "voter": "mindfreak" }, { - "voter": "nastik", - "rshares": "14804566536" + "rshares": "14804566536", + "voter": "nastik" }, { - "voter": "onetree", - "rshares": "8856106682" + "rshares": "8856106682", + "voter": "onetree" }, { - "voter": "ozertayiz", - "rshares": "67782873" + "rshares": "67782873", + "voter": "ozertayiz" }, { - "voter": "steemitpatina", - "rshares": "4633082667" + "rshares": "4633082667", + "voter": "steemitpatina" }, { - "voter": "dajohns1420", - "rshares": "1009554365" + "rshares": "1009554365", + "voter": "dajohns1420" }, { - "voter": "salebored", - "rshares": "50215700" + "rshares": "50215700", + "voter": "salebored" }, { - "voter": "nulliusinverba", - "rshares": "5401518277" + "rshares": "5401518277", + "voter": "nulliusinverba" }, { - "voter": "newandold", - "rshares": "3838533556" + "rshares": "3838533556", + "voter": "newandold" }, { - "voter": "pollux.one", - "rshares": "1576511020" + "rshares": "1576511020", + "voter": "pollux.one" }, { - "voter": "einsteinpotsdam", - "rshares": "7779349622" + "rshares": "7779349622", + "voter": "einsteinpotsdam" }, { - "voter": "richardcrill", - "rshares": "4900461398" + "rshares": "4900461398", + "voter": "richardcrill" }, { - "voter": "nadin3", - "rshares": "4662965424" + "rshares": "4662965424", + "voter": "nadin3" }, { - "voter": "davidjkelley", - "rshares": "1625414479" + "rshares": "1625414479", + "voter": "davidjkelley" }, { - "voter": "bitdrone", - "rshares": "50326099" + "rshares": "50326099", + "voter": "bitdrone" }, { - "voter": "sleepcult", - "rshares": "50317967" + "rshares": "50317967", + "voter": "sleepcult" }, { - "voter": "greatness", - "rshares": "174778016" + "rshares": "174778016", + "voter": "greatness" }, { - "voter": "sponge-bob", - "rshares": "26571803569" + "rshares": "26571803569", + "voter": "sponge-bob" }, { - "voter": "digital-wisdom", - "rshares": "15232622426" + "rshares": "15232622426", + "voter": "digital-wisdom" }, { - "voter": "ethical-ai", - "rshares": "3630299933" + "rshares": "3630299933", + "voter": "ethical-ai" }, { - "voter": "zahnspange", - "rshares": "45843089173" + "rshares": "45843089173", + "voter": "zahnspange" }, { - "voter": "jwaser", - "rshares": "6682880996" + "rshares": "6682880996", + "voter": "jwaser" }, { - "voter": "jaredandanissa", - "rshares": "217064607" + "rshares": "217064607", + "voter": "jaredandanissa" }, { - "voter": "steemorama", - "rshares": "414338857" + "rshares": "414338857", + "voter": "steemorama" }, { - "voter": "smisi", - "rshares": "1655277599" + "rshares": "1655277599", + "voter": "smisi" }, { - "voter": "bwaser", - "rshares": "2617343597" + "rshares": "2617343597", + "voter": "bwaser" }, { - "voter": "panther", - "rshares": "330365849" + "rshares": "330365849", + "voter": "panther" }, { - "voter": "brains", - "rshares": "27673000226" + "rshares": "27673000226", + "voter": "brains" }, { - "voter": "funnyman", - "rshares": "4235195851" + "rshares": "4235195851", + "voter": "funnyman" }, { - "voter": "anomaly", - "rshares": "271440423" + "rshares": "271440423", + "voter": "anomaly" }, { - "voter": "ellepdub", - "rshares": "2401297947" + "rshares": "2401297947", + "voter": "ellepdub" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "herpetologyguy", - "rshares": "11833929978" + "rshares": "11833929978", + "voter": "herpetologyguy" }, { - "voter": "morgan.waser", - "rshares": "4712300251" + "rshares": "4712300251", + "voter": "morgan.waser" }, { - "voter": "anns", - "rshares": "1233685675" + "rshares": "1233685675", + "voter": "anns" }, { - "voter": "strong-ai", - "rshares": "3609651500" + "rshares": "3609651500", + "voter": "strong-ai" }, { - "voter": "grisha-danunaher", - "rshares": "516546553" + "rshares": "516546553", + "voter": "grisha-danunaher" }, { - "voter": "michaelstobiersk", - "rshares": "1326703271" + "rshares": "1326703271", + "voter": "michaelstobiersk" }, { - "voter": "dresden", - "rshares": "7187212765" + "rshares": "7187212765", + "voter": "dresden" }, { - "voter": "goldmatters", - "rshares": "30995623639" + "rshares": "30995623639", + "voter": "goldmatters" }, { - "voter": "bleujay", - "rshares": "117881389" + "rshares": "117881389", + "voter": "bleujay" }, { - "voter": "risabold", - "rshares": "304359441" + "rshares": "304359441", + "voter": "risabold" } ], + "author": "knozaki2015", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 171, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/contest/@knozaki2015/the-strangest-building-in-berlin", - "blacklists": [] - }, - { - "post_id": 960036, - "author": "groovedigital", - "permlink": "when-your-dad-works-in-hollywood", - "category": "life", - "title": "When Your Dad Works In Hollywood", - "body": "\n

https://www.youtube.com/watch?v=iJCi8yLN8_M

\n", + "blacklists": [], + "body": "\n

\"SPOTTED\"

\n


\n

On my travel to Berlin, Germany I have SPOTTED this strange Building. 

\n

Can you guess the purpose of this strange corridor? 

\n


\n
\"2016-08-14
\nHere are some possible answers:

\n
    \n
  • This is a Passage where people used to smuggle food and cigarettes between West and East Berlin
  • \n
  • This is a Hospital and connecting two Wings
  • \n
  • This is a worm hole and connecting Berlin and Jupiter
  • \n
  • This is a Hostel and the toilets are in the other Wing
  • \n
  • ....
  • \n
\n


\n\"2016-08-14
\n
\n 

\n
To make it more fun a reward of 10 STEEM POWER will be given to the first correct answer of the purpose of this strange corridor.  
\n
And a Special Reward of 5 Steem Power goes to the strangest, funniest Answer!  
\n


\n

I will release the answer after a couple of hours so hurry and pick your answer. (2 answers per person only!!!)

\n

If you like my Post, please follow me! 

\n

I am blogging about the following topics :

\n
    \n
  • I travel the world (Travel and Restaurant Blog)
  • \n
  • Exposed (Uncovering Stories you need to know)
  • \n
  • Lifehacks (How to save money,etc) 
  • \n
  • SPOTTED (Limited Edition Food ,Drinks, Gadgets)
  • \n
  • Steemperlen (German Version)
  • \n
  • SQUEEZE (Interview Series) 
  • \n
  • COOKED (10 Episodes Cooking Series)
  • \n
\n", + "category": "contest", + "children": 28, + "created": "2016-09-15T18:23:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "life", - "comedy", - "film", - "art", - "funny" - ], "image": [ - "https://img.youtube.com/vi/iJCi8yLN8_M/0.jpg" + "https://s14.postimg.org/i75tlx3s1/SPOTTED.jpg", + "https://s22.postimg.org/s90fnlg7l/2016_08_14_17_21_48.jpg", + "https://s22.postimg.org/q5q0fxgep/2016_08_14_17_22_34.jpg" ], "links": [ - "https://www.youtube.com/watch?v=iJCi8yLN8_M" + "https://postimg.org/image/ciziv0zfh/", + "https://steemit.com/@knozaki2015", + "https://steemit.com/food/@knozaki2015/i-travel-the-world-part-25-cafe-viena-feat-the-worlds-best-sandwich-ny-times", + "https://steemit.com/deutsch/@knozaki2015/steemperlen-1", + "https://steemit.com/food/@knozaki2015/fantastic-seafood-paella-cooked-2-with-the-master-of-paella-gargon" + ], + "tags": [ + "contest", + "travel", + "minnowsunite", + "steemsquad", + "berlin" ] }, - "created": "2016-09-15T17:50:12", - "updated": "2016-09-15T17:50:12", - "depth": 0, - "children": 0, - "net_rshares": 40637225037243, - "is_paidout": false, - "payout_at": "2016-09-16T18:28:20", - "payout": 99.895, - "pending_payout_value": "99.895 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 26540390904529, + "payout": 44.396, + "payout_at": "2016-09-22T18:23:30", + "pending_payout_value": "44.396 HBD", + "percent_hbd": 10000, + "permlink": "the-strangest-building-in-berlin", + "post_id": 1257027, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 171 + }, + "title": "SPOTTED #6 : The strangest Building in Berlin", + "updated": "2016-09-15T19:04:48", + "url": "/contest/@knozaki2015/the-strangest-building-in-berlin" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231809639013" + "rshares": "231809639013", + "voter": "anonymous" }, { - "voter": "blocktrades", - "rshares": "40041987828800" + "rshares": "40041987828800", + "voter": "blocktrades" }, { - "voter": "kenmonkey", - "rshares": "3500585753" + "rshares": "3500585753", + "voter": "kenmonkey" }, { - "voter": "altoz", - "rshares": "34979300821" + "rshares": "34979300821", + "voter": "altoz" }, { - "voter": "alexft", - "rshares": "4698559215" + "rshares": "4698559215", + "voter": "alexft" }, { - "voter": "steem1653", - "rshares": "2733708608" + "rshares": "2733708608", + "voter": "steem1653" }, { - "voter": "cynetyc", - "rshares": "124961861" + "rshares": "124961861", + "voter": "cynetyc" }, { - "voter": "nabilov", - "rshares": "251367062418" + "rshares": "251367062418", + "voter": "nabilov" }, { - "voter": "noodhoog", - "rshares": "8401059269" + "rshares": "8401059269", + "voter": "noodhoog" }, { - "voter": "rossenpavlov", - "rshares": "3291087867" + "rshares": "3291087867", + "voter": "rossenpavlov" }, { - "voter": "mandibil", - "rshares": "51505575275" + "rshares": "51505575275", + "voter": "mandibil" }, { - "voter": "anomaly", - "rshares": "271440423" + "rshares": "271440423", + "voter": "anomaly" }, { - "voter": "andrewrait", - "rshares": "213847216" + "rshares": "213847216", + "voter": "andrewrait" }, { - "voter": "bapparabi", - "rshares": "1871969417" + "rshares": "1871969417", + "voter": "bapparabi" }, { - "voter": "greencycles", - "rshares": "160935948" + "rshares": "160935948", + "voter": "greencycles" }, { - "voter": "dougkarr", - "rshares": "154247502" + "rshares": "154247502", + "voter": "dougkarr" }, { - "voter": "goodbible", - "rshares": "153227837" + "rshares": "153227837", + "voter": "goodbible" } ], + "author": "groovedigital", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 17, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/life/@groovedigital/when-your-dad-works-in-hollywood", - "blacklists": [] - }, - { - "post_id": 959920, - "author": "mihaiart", - "permlink": "the-queen-of-amazon-drawing-a-visual-progression", - "category": "art", - "title": "The Queen of Amazon drawing: a visual progression.", - "body": "Another fun drawing! I did remind myself to photo from inception to final result so this post is not only fun but informative as well.\n\nThe amazonian queen starts off as a naked lady. This part is important because the way her muscles are shaped and how the flesh reacts to her position will influence how the clothes and weapons look. It's the most important step\n\n
https://www.steemimg.com/images/2016/09/15/14359031_1179410545449253_7138810569815121083_n9b234.jpg
\n
\n\nNow it is time to sketch the clothes, the accessories and the weapons. Notice how this si done OVER the original drawing so her leg is still flexed, inside the boot for example. That's how you get the natural look.\n\n
https://www.steemimg.com/images/2016/09/15/14330163_1179410578782583_6894606683148969420_nd50ca.jpg
\n
\n\nWith all this in place, it's easy but still very important part to add the finishing touches and bring her out of the page. Look alive and fierce!\n\n
https://www.steemimg.com/images/2016/09/15/14291733_1179410605449247_177194940755567235_n05e5d.jpg
\n\n#### And that how I draw an Amazonian Woman :) \n#### What do you think?", + "blacklists": [], + "body": "\n

https://www.youtube.com/watch?v=iJCi8yLN8_M

\n", + "category": "life", + "children": 0, + "created": "2016-09-15T17:50:12", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { + "image": [ + "https://img.youtube.com/vi/iJCi8yLN8_M/0.jpg" + ], + "links": [ + "https://www.youtube.com/watch?v=iJCi8yLN8_M" + ], "tags": [ + "life", + "comedy", + "film", "art", - "drawing", - "illustration", - "" - ], - "image": [ - "https://www.steemimg.com/images/2016/09/15/14359031_1179410545449253_7138810569815121083_n9b234.jpg", - "https://www.steemimg.com/images/2016/09/15/14330163_1179410578782583_6894606683148969420_nd50ca.jpg", - "https://www.steemimg.com/images/2016/09/15/14291733_1179410605449247_177194940755567235_n05e5d.jpg" + "funny" ] }, - "created": "2016-09-15T17:37:24", - "updated": "2016-09-15T17:37:24", - "depth": 0, - "children": 2, - "net_rshares": 46651237670091, - "is_paidout": false, - "payout_at": "2016-09-16T18:37:02", - "payout": 130.13, - "pending_payout_value": "130.130 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 40637225037243, + "payout": 99.432, + "payout_at": "2016-09-22T17:50:12", + "pending_payout_value": "99.432 HBD", + "percent_hbd": 10000, + "permlink": "when-your-dad-works-in-hollywood", + "post_id": 1256720, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 17 + }, + "title": "When Your Dad Works In Hollywood", + "updated": "2016-09-15T17:50:12", + "url": "/life/@groovedigital/when-your-dad-works-in-hollywood" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231807201381" + "rshares": "231807201381", + "voter": "anonymous" + }, + { + "rshares": "40042238111353", + "voter": "blocktrades" + }, + { + "rshares": "1912120788268", + "voter": "badassmother" + }, + { + "rshares": "1271804694676", + "voter": "rossco99" }, { - "voter": "blocktrades", - "rshares": "40042238111353" + "rshares": "2205816409649", + "voter": "wang" }, { - "voter": "badassmother", - "rshares": "1912120788268" + "rshares": "9028536224", + "voter": "gregory60" }, { - "voter": "rossco99", - "rshares": "1271804694676" + "rshares": "14982984990", + "voter": "eeks" }, { - "voter": "wang", - "rshares": "2205816409649" + "rshares": "1007941175", + "voter": "fkn" }, { - "voter": "gregory60", - "rshares": "9028536224" + "rshares": "1324875721", + "voter": "elishagh1" }, { - "voter": "eeks", - "rshares": "14982984990" + "rshares": "313697862", + "voter": "coar" }, { - "voter": "fkn", - "rshares": "1007941175" + "rshares": "1061253912", + "voter": "murh" }, { - "voter": "elishagh1", - "rshares": "1324875721" + "rshares": "59950860155", + "voter": "theshell" }, { - "voter": "coar", - "rshares": "313697862" + "rshares": "10684554315", + "voter": "kimziv" }, { - "voter": "murh", - "rshares": "1061253912" + "rshares": "88054033498", + "voter": "razvanelulmarin" }, { - "voter": "theshell", - "rshares": "59950860155" + "rshares": "20605443611", + "voter": "skapaneas" }, { - "voter": "kimziv", - "rshares": "10684554315" + "rshares": "4920266872", + "voter": "furion" }, { - "voter": "razvanelulmarin", - "rshares": "88054033498" + "rshares": "2834957075", + "voter": "steem1653" }, { - "voter": "skapaneas", - "rshares": "20605443611" + "rshares": "4209522316", + "voter": "karen13" }, { - "voter": "furion", - "rshares": "4920266872" + "rshares": "10646469982", + "voter": "deviedev" }, { - "voter": "steem1653", - "rshares": "2834957075" + "rshares": "251367062418", + "voter": "nabilov" }, { - "voter": "karen13", - "rshares": "4209522316" + "rshares": "629471993", + "voter": "luisucv34" }, { - "voter": "deviedev", - "rshares": "10646469982" + "rshares": "7017192292", + "voter": "lichtblick" }, { - "voter": "nabilov", - "rshares": "251367062418" + "rshares": "33739070578", + "voter": "creemej" }, { - "voter": "luisucv34", - "rshares": "629471993" + "rshares": "2726160685", + "voter": "the-future" }, { - "voter": "lichtblick", - "rshares": "7017192292" + "rshares": "233065746", + "voter": "poseidon" }, { - "voter": "creemej", - "rshares": "33739070578" + "rshares": "20119987887", + "voter": "mustafaomar" }, { - "voter": "the-future", - "rshares": "2726160685" + "rshares": "204617853645", + "voter": "jl777" }, { - "voter": "poseidon", - "rshares": "233065746" + "rshares": "817413671", + "voter": "positive" }, { - "voter": "mustafaomar", - "rshares": "20119987887" + "rshares": "35503255658", + "voter": "anca3drandom" }, { - "voter": "jl777", - "rshares": "204617853645" + "rshares": "17267307497", + "voter": "proto" }, { - "voter": "positive", - "rshares": "817413671" + "rshares": "1805642436", + "voter": "sisterholics" }, { - "voter": "anca3drandom", - "rshares": "35503255658" + "rshares": "3448353558", + "voter": "sulev" }, { - "voter": "proto", - "rshares": "17267307497" + "rshares": "2002851358", + "voter": "andreynoch" }, { - "voter": "sisterholics", - "rshares": "1805642436" + "rshares": "3353931808", + "voter": "glitterpig" }, { - "voter": "sulev", - "rshares": "3448353558" + "rshares": "8734139434", + "voter": "taker" }, { - "voter": "andreynoch", - "rshares": "2002851358" + "rshares": "63852393470", + "voter": "laonie" }, { - "voter": "glitterpig", - "rshares": "3353931808" + "rshares": "2664855399", + "voter": "myfirst" }, { - "voter": "taker", - "rshares": "8734139434" + "rshares": "12961218703", + "voter": "somebody" }, { - "voter": "laonie", - "rshares": "63852393470" + "rshares": "484610059", + "voter": "flysaga" }, { - "voter": "myfirst", - "rshares": "2664855399" + "rshares": "416939768", + "voter": "gmurph" }, { - "voter": "somebody", - "rshares": "12961218703" + "rshares": "2863237212", + "voter": "midnightoil" }, { - "voter": "flysaga", - "rshares": "484610059" + "rshares": "7161285616", + "voter": "xiaohui" }, { - "voter": "gmurph", - "rshares": "416939768" + "rshares": "323406893", + "voter": "elfkitchen" }, { - "voter": "midnightoil", - "rshares": "2863237212" + "rshares": "223891286", + "voter": "xiaokongcom" }, { - "voter": "xiaohui", - "rshares": "7161285616" + "rshares": "451324143", + "voter": "xianjun" }, { - "voter": "elfkitchen", - "rshares": "323406893" + "rshares": "11041591679", + "voter": "borran" }, { - "voter": "xiaokongcom", - "rshares": "223891286" + "rshares": "2958177650", + "voter": "macartem" }, { - "voter": "xianjun", - "rshares": "451324143" + "rshares": "24058315421", + "voter": "mihaiart" }, { - "voter": "borran", - "rshares": "11041591679" + "rshares": "9827647000", + "voter": "gvargas123" }, { - "voter": "macartem", - "rshares": "2958177650" + "rshares": "8773942171", + "voter": "craigwilliamz" }, { - "voter": "mihaiart", - "rshares": "24058315421" + "rshares": "52806920", + "voter": "jeff-kubitz" + }, + { + "rshares": "3091707749", + "voter": "mikkolyytinen" + }, + { + "rshares": "339288508", + "voter": "anomaly" + }, + { + "rshares": "4249431309", + "voter": "michelle.gent" + }, + { + "rshares": "6368823978", + "voter": "orcish" + }, + { + "rshares": "1871969417", + "voter": "bapparabi" + }, + { + "rshares": "164141037", + "voter": "wastedsoul" + }, + { + "rshares": "87053502", + "voter": "katharsisdrill" + }, + { + "rshares": "154247502", + "voter": "dougkarr" + } + ], + "author": "mihaiart", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Another fun drawing! I did remind myself to photo from inception to final result so this post is not only fun but informative as well.\n\nThe amazonian queen starts off as a naked lady. This part is important because the way her muscles are shaped and how the flesh reacts to her position will influence how the clothes and weapons look. It's the most important step\n\n
https://www.steemimg.com/images/2016/09/15/14359031_1179410545449253_7138810569815121083_n9b234.jpg
\n
\n\nNow it is time to sketch the clothes, the accessories and the weapons. Notice how this si done OVER the original drawing so her leg is still flexed, inside the boot for example. That's how you get the natural look.\n\n
https://www.steemimg.com/images/2016/09/15/14330163_1179410578782583_6894606683148969420_nd50ca.jpg
\n
\n\nWith all this in place, it's easy but still very important part to add the finishing touches and bring her out of the page. Look alive and fierce!\n\n
https://www.steemimg.com/images/2016/09/15/14291733_1179410605449247_177194940755567235_n05e5d.jpg
\n\n#### And that how I draw an Amazonian Woman :) \n#### What do you think?", + "category": "art", + "children": 2, + "created": "2016-09-15T17:37:24", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/15/14359031_1179410545449253_7138810569815121083_n9b234.jpg", + "https://www.steemimg.com/images/2016/09/15/14330163_1179410578782583_6894606683148969420_nd50ca.jpg", + "https://www.steemimg.com/images/2016/09/15/14291733_1179410605449247_177194940755567235_n05e5d.jpg" + ], + "tags": [ + "art", + "drawing", + "illustration", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 46651237670091, + "payout": 129.316, + "payout_at": "2016-09-22T17:37:24", + "pending_payout_value": "129.316 HBD", + "percent_hbd": 10000, + "permlink": "the-queen-of-amazon-drawing-a-visual-progression", + "post_id": 1256578, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 59 + }, + "title": "The Queen of Amazon drawing: a visual progression.", + "updated": "2016-09-15T17:37:24", + "url": "/art/@mihaiart/the-queen-of-amazon-drawing-a-visual-progression" + }, + { + "active_votes": [ + { + "rshares": "231809756793", + "voter": "anonymous" }, { - "voter": "gvargas123", - "rshares": "9827647000" + "rshares": "40042164500412", + "voter": "blocktrades" }, { - "voter": "craigwilliamz", - "rshares": "8773942171" + "rshares": "734082781", + "voter": "rxhector" }, { - "voter": "jeff-kubitz", - "rshares": "52806920" + "rshares": "243749878708", + "voter": "nabilov" }, { - "voter": "mikkolyytinen", - "rshares": "3091707749" + "rshares": "3813478158", + "voter": "btcupload" }, { - "voter": "anomaly", - "rshares": "339288508" + "rshares": "20189102884", + "voter": "artific" }, { - "voter": "michelle.gent", - "rshares": "4249431309" + "rshares": "8773942171", + "voter": "craigwilliamz" }, { - "voter": "orcish", - "rshares": "6368823978" + "rshares": "10227302974", + "voter": "etcmike" }, { - "voter": "bapparabi", - "rshares": "1871969417" + "rshares": "3827694728", + "voter": "titusfrost" }, { - "voter": "wastedsoul", - "rshares": "164141037" + "rshares": "245531412", + "voter": "doitvoluntarily" }, { - "voter": "katharsisdrill", - "rshares": "87053502" + "rshares": "55752594", + "voter": "alucard" }, { - "voter": "dougkarr", - "rshares": "154247502" + "rshares": "271441624", + "voter": "anomaly" } ], + "author": "titusfrost", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 59, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/art/@mihaiart/the-queen-of-amazon-drawing-a-visual-progression", - "blacklists": [] - }, - { - "post_id": 959892, - "author": "titusfrost", - "permlink": "new-mr-robot-episode-introduces-e-corp-s-new-ecoin", - "category": "mrrobot", - "title": "New Mr. Robot Episode Introduces E-Corp's New \"Ecoin\"", + "blacklists": [], "body": "# Is The Takeover of Crypto-Currencies About to Begin by the Central Banks?\n\nhttp://i.imgur.com/NxCYMpy.png\n([Image Source](http://www.e-corp-usa.com/ecoin/))\n\nThe show **Mr. Robot** has fictionalized the **\"Powers that Shouldn't Be\"** into a singular Corporation called **E Corp**. This E Corp is supposed to basically represent the powers behind the Global Central Bankers, the true World Rulers. The head of E Corp even states in a recent Episode \"Politicians are Puppets\", which reminds me of the quotation by Nathan Rothschild regarding the head on which the crown of England is placed. Clearly one could see that E Corp in the show is the fictionalization of the **\"Illuminati\"** if you will. The show is heavily laden with [esoteric symbolism](https://www.youtube.com/watch?v=l2lZn-ZcJMs) but to the public it comes across as \"counter-culture\" as the main character is the founding member of **\"F Society\"** a hacking group based directly on **\"Anonymous\"**. This hacking group causes a financial crash, which leads to E Corp releasing a new digital Currency called **\"ECoin\"**, the above image is from a promotional website for the TV show. \n\n## Is Mr. Robot demonizing Crypto-Currencies? \n\nhttp://i.imgur.com/f6gXhrn.jpg\n([Image Source](http://www.serialminds.com/2015/06/05/mr-robot-la-serie-che-sta-piacendo-tutti-forse-troppo/))\n\nNow the interesting part for those fans of crypto-currencies like everyone on **Steemit** and for everyone who uses **Bitcoin**. I think the reason for they added an \"Ecoin\" in this show is to demonize crypto-currencies. The powers that shouldn't be have no way to take over these crypto-currencies so they have decided to wage information war against them. With the countless videos warning about the rise of *\"digital only currency\"* being the *\"mark of the beast\"*, one could easily see lots of propaganda has already been employed. However this new form is quite intelligent, by associating \"ECoins\" with \"E Corp\" they make the average mind (who doesn't know what Bitcoin or Steemit really is), subconsciously associate all crypto-currencies with the Federal Reserve banskters, with \"E Corp\". This is classic subconscious guilt by association created entirely by fiction that is often employed in fictional movies. This is why I think the \"E Coin\" was added to the show, but I could be wrong, so why else might it be in this show? \n\n## Do the Elite Plan to Replace the Dollar with a Digital Only Currency? \nhttp://i.imgur.com/IJJxcBR.jpg\n([Image Source](https://www.cryptocoinsnews.com/why-bitcoin-value-doesnt-matter/))\n\nWe all know the financial system is basically teetering on the verge of collapse. It is the biggest ponzy scheme ever devised and like all ponzy schemes if the Federal Reserve doesn't increase demand for the use of it's currency the system will collapse. It was designed to collapse. I believe like many others for one reason, so they can start the whole process that made them so rich, all over again on a global scale. The new world order if you will, being run by financial despotism and technical autocracy. So, is their plan to create a financial collapse being shown in plain sight in this show? One idea I heard from my friend who maintains the [\"What is Real\" YouTube Channel](https://www.youtube.com/user/szymborski11) is they may \n>\"allow a false flag attack that they can blame on some shadowy hacking group, possibly even **Anonymous** itself as anyone can claim to be Anonymous\" \n\nPersonally I do not buy this theory as Anonymous is completely decentralized and would be almost impossible to blame for a false flag. However, to fully analyze a situation one must always look at every angle. \n\nSo if the system collapsed, especially overnight due to a hack, would they replace the Federal Reserve Notes with a new digital only \"E Coin\" backed by the IMF World Bank and their massive Gold Holdings, and Special Drawing Rights Holdings? The Group of Thirty, also known as the G30 reported in the [latest working papers on their website](http://group30.org/publications) that they want a return to a **GOLD Standard** just like how the Federal Reserve started out but in a new **Global Currency**. See my Documentary on the [\"Group of Thirty\"](https://www.youtube.com/watch?v=eOB9QfxsgdQ) for more on this group of 30 Central Bankers that meet in secret. So is it out of the realm of possibilities that the new Global Currency that the World Bank has planned for post the collapse of the Federal Reserve System is a new digital only currency based on Gold and SDR holdings? No this would make a lot of sense to me but what do you the readers think? \n\n## Decentralization the Key to Defeating Takeover of Crypto-Currencies by Central Banks\nhttp://i.imgur.com/KVNo7nE.jpg\n([Image Source](https://www.cryptocoinsnews.com/why-bitcoin-value-doesnt-matter/))\n\nThe decentralized concept at the basis of the crypto-currencies could be the key to their survival if the Central Banks decide to try and take over the market. Right now their is a few crypto-currencies that are from the perspective of a non trader even worth mentioning. **Bitcoin**, **Ethereum**, and **STEEM**, however if the Central Banks created a new \"ECoin\" it would easily make replace Bitcoin as the number 1 crypto-currency. However, there will always be a demand for crypto-currencies that are not \"Ecoins\", because thankfully we have a whole planet full of awesome people who will never conform to the system. The useless governments will always make things illegal that people want and can't buy with their new \"Ecoins\". So we will always have a demand for a currency like Bitcoin that is not a part of the centralized system, but is outside of that system's control. So try as they might, the powers that be can only wage information war against crypto-currencies because there will always be new entrepreneurs that create new currencies just like steemit, that are outside their systems of control. The harder the hidden hand squeezes the more of us will fall through their fingertips. \n\n#### Thanks for Reading! \nhttp://i.imgur.com/k10p6Pf.jpg\nIf you liked my article please join **steemit** and let me know by leaving a comment or upvoting! As always follow me on here [@TitusFrost](https://steemit.com/@titusfrost) for more hard hitting posts!", + "category": "mrrobot", + "children": 4, + "created": "2016-09-15T17:34:42", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "mrrobot", - "beyondbitcoin", - "steemit", - "bitcoin", - "ethereum" - ], "image": [ "http://i.imgur.com/NxCYMpy.png", "http://i.imgur.com/f6gXhrn.jpg", @@ -8359,1996 +8408,1947 @@ "http://group30.org/publications", "https://www.youtube.com/watch?v=eOB9QfxsgdQ", "https://steemit.com/@titusfrost" + ], + "tags": [ + "mrrobot", + "beyondbitcoin", + "steemit", + "bitcoin", + "ethereum" ] }, - "created": "2016-09-15T17:34:42", - "updated": "2016-09-15T17:34:42", - "depth": 0, - "children": 4, + "max_accepted_payout": "1000000.000 HBD", "net_rshares": 40565862465239, - "is_paidout": false, - "payout_at": "2016-09-16T18:41:34", - "payout": 99.561, - "pending_payout_value": "99.561 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "payout": 99.113, + "payout_at": "2016-09-22T17:34:42", + "pending_payout_value": "99.113 HBD", + "percent_hbd": 10000, + "permlink": "new-mr-robot-episode-introduces-e-corp-s-new-ecoin", + "post_id": 1256542, "promoted": "0.000 HBD", "replies": [], - "active_votes": [ - { - "voter": "anonymous", - "rshares": "231809756793" - }, - { - "voter": "blocktrades", - "rshares": "40042164500412" - }, - { - "voter": "rxhector", - "rshares": "734082781" - }, - { - "voter": "nabilov", - "rshares": "243749878708" - }, - { - "voter": "btcupload", - "rshares": "3813478158" - }, - { - "voter": "artific", - "rshares": "20189102884" - }, - { - "voter": "craigwilliamz", - "rshares": "8773942171" - }, - { - "voter": "etcmike", - "rshares": "10227302974" - }, - { - "voter": "titusfrost", - "rshares": "3827694728" - }, - { - "voter": "doitvoluntarily", - "rshares": "245531412" - }, - { - "voter": "alucard", - "rshares": "55752594" - }, - { - "voter": "anomaly", - "rshares": "271441624" - } - ], - "author_reputation": 25.0, "stats": { - "hide": false, + "flag_weight": 0.0, "gray": false, - "total_votes": 12, - "flag_weight": 0.0 + "hide": false, + "total_votes": 12 }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/mrrobot/@titusfrost/new-mr-robot-episode-introduces-e-corp-s-new-ecoin", - "blacklists": [] + "title": "New Mr. Robot Episode Introduces E-Corp's New \"Ecoin\"", + "updated": "2016-09-15T17:34:42", + "url": "/mrrobot/@titusfrost/new-mr-robot-episode-introduces-e-corp-s-new-ecoin" }, { - "post_id": 960471, - "author": "halo", - "permlink": "steemit-girl-halo-beautiful-day", - "category": "halo", - "title": "STEEMIT GIRL HALO ♡ Beautiful Day", - "body": "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/1e_zpszfkcfjtn.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/4e_zpsqprjeml3.jpg\n\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/2e_zps4liuaqhp.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/6e_zpshjwzv5b4.jpg\n\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/3e_zpstiifeqjc.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/5e_zpserzptebm.jpg", - "json_metadata": { - "tags": [ - "halo", - "photography", - "photos", - "steemitgirls", - "girls" - ], - "image": [ - "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/1e_zpszfkcfjtn.jpg", - "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/2e_zps4liuaqhp.jpg", - "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/3e_zpstiifeqjc.jpg" - ] - }, - "created": "2016-09-15T18:45:15", - "updated": "2016-09-15T18:46:27", - "depth": 0, - "children": 13, - "net_rshares": 15463146900495, - "is_paidout": false, - "payout_at": "2016-09-16T19:16:58", - "payout": 16.574, - "pending_payout_value": "16.574 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], "active_votes": [ { - "voter": "smooth", - "rshares": "12523260993360" + "rshares": "12523260993360", + "voter": "smooth" }, { - "voter": "smooth.witness", - "rshares": "2377105047841" + "rshares": "2377105047841", + "voter": "smooth.witness" }, { - "voter": "alexgr", - "rshares": "49168301700" + "rshares": "49168301700", + "voter": "alexgr" }, { - "voter": "unosuke", - "rshares": "41161390898" + "rshares": "41161390898", + "voter": "unosuke" }, { - "voter": "coar", - "rshares": "313699965" + "rshares": "313699965", + "voter": "coar" }, { - "voter": "murh", - "rshares": "1061303487" + "rshares": "1061303487", + "voter": "murh" }, { - "voter": "kodi", - "rshares": "579494558" + "rshares": "579494558", + "voter": "kodi" }, { - "voter": "will-zewe", - "rshares": "210512019921" + "rshares": "210512019921", + "voter": "will-zewe" }, { - "voter": "herzmeister", - "rshares": "85402720456" + "rshares": "85402720456", + "voter": "herzmeister" }, { - "voter": "everythink", - "rshares": "37088193309" + "rshares": "37088193309", + "voter": "everythink" }, { - "voter": "alexft", - "rshares": "4551729239" + "rshares": "4551729239", + "voter": "alexft" }, { - "voter": "gidlark", - "rshares": "1609525039" + "rshares": "1609525039", + "voter": "gidlark" }, { - "voter": "steem1653", - "rshares": "2632467953" + "rshares": "2632467953", + "voter": "steem1653" }, { - "voter": "halo", - "rshares": "42836399572" + "rshares": "42836399572", + "voter": "halo" }, { - "voter": "noodhoog", - "rshares": "8401059269" + "rshares": "8401059269", + "voter": "noodhoog" }, { - "voter": "nippel66", - "rshares": "15070803886" + "rshares": "15070803886", + "voter": "nippel66" }, { - "voter": "earnest", - "rshares": "1959134133" + "rshares": "1959134133", + "voter": "earnest" }, { - "voter": "beanz", - "rshares": "5068724760" + "rshares": "5068724760", + "voter": "beanz" }, { - "voter": "timelapse", - "rshares": "18607156497" + "rshares": "18607156497", + "voter": "timelapse" }, { - "voter": "missmishel623", - "rshares": "68250832" + "rshares": "68250832", + "voter": "missmishel623" }, { - "voter": "future24", - "rshares": "1446509276" + "rshares": "1446509276", + "voter": "future24" }, { - "voter": "telos", - "rshares": "13841342477" + "rshares": "13841342477", + "voter": "telos" }, { - "voter": "movievertigo", - "rshares": "3635091595" + "rshares": "3635091595", + "voter": "movievertigo" }, { - "voter": "netaterra", - "rshares": "2923037366" + "rshares": "2923037366", + "voter": "netaterra" }, { - "voter": "freeinthought", - "rshares": "720031052" + "rshares": "720031052", + "voter": "freeinthought" }, { - "voter": "chadcrypto", - "rshares": "195329269" + "rshares": "195329269", + "voter": "chadcrypto" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "orcish", - "rshares": "6368823978" + "rshares": "6368823978", + "voter": "orcish" }, { - "voter": "zaitsevalesyaa", - "rshares": "3200652561" + "rshares": "3200652561", + "voter": "zaitsevalesyaa" }, { - "voter": "dresden", - "rshares": "4259089046" + "rshares": "4259089046", + "voter": "dresden" } ], + "author": "halo", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 30, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/halo/@halo/steemit-girl-halo-beautiful-day", - "blacklists": [] - }, - { - "post_id": 959864, - "author": "tanyabtc", - "permlink": "jellyfish", - "category": "art", - "title": "Jellyfish", - "body": "Jellyfish is a perfect example of one of the weirdest creatures out there. In real life they are definitely not the most pleasant thing to touch and being surrounded with.\n\nIt wasn't a surprise for me but jellyfish don't have brains. Instead, they have nerve nets which sense changes in the environment and coordinate the animal's responses.\n\nHowever if you eliminate all of the fluff that people are talking about them, you can come up with something interesting and even fun.\n\nThis drawing is created using my favorite style, I hope you'll love it.\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish2_zpswbrk9ied.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish3_zpsx0rcjvko.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish1_zpsge408hgu.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish4_zpsmctahaql.jpg\n\n***\n\n###
Follow me for my future art work: [@tanyabtc](https://steemit.com/@tanyabtc)
", + "blacklists": [], + "body": "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/1e_zpszfkcfjtn.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/4e_zpsqprjeml3.jpg\n\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/2e_zps4liuaqhp.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/6e_zpshjwzv5b4.jpg\n\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/3e_zpstiifeqjc.jpg\nhttp://i1266.photobucket.com/albums/jj537/steemitgirlhalo/5e_zpserzptebm.jpg", + "category": "halo", + "children": 13, + "created": "2016-09-15T18:45:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "art", - "photography", - "life", - "nature", - "steemitartchallenge" - ], "image": [ - "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish2_zpswbrk9ied.jpg", - "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish3_zpsx0rcjvko.jpg", - "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish1_zpsge408hgu.jpg", - "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish4_zpsmctahaql.jpg" + "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/1e_zpszfkcfjtn.jpg", + "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/2e_zps4liuaqhp.jpg", + "http://i1266.photobucket.com/albums/jj537/steemitgirlhalo/3e_zpstiifeqjc.jpg" ], - "links": [ - "https://steemit.com/@tanyabtc" + "tags": [ + "halo", + "photography", + "photos", + "steemitgirls", + "girls" ] }, - "created": "2016-09-15T17:32:00", - "updated": "2016-09-15T17:32:00", - "depth": 0, - "children": 5, - "net_rshares": 40641175102128, - "is_paidout": false, - "payout_at": "2016-09-16T18:34:50", - "payout": 99.914, - "pending_payout_value": "99.914 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 15463146900495, + "payout": 16.476, + "payout_at": "2016-09-22T18:45:15", + "pending_payout_value": "16.476 HBD", + "percent_hbd": 10000, + "permlink": "steemit-girl-halo-beautiful-day", + "post_id": 1257246, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 30 + }, + "title": "STEEMIT GIRL HALO \u2661 Beautiful Day", + "updated": "2016-09-15T18:46:27", + "url": "/halo/@halo/steemit-girl-halo-beautiful-day" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231809756793" + "rshares": "231809756793", + "voter": "anonymous" }, { - "voter": "blocktrades", - "rshares": "40042090888143" + "rshares": "40042090888143", + "voter": "blocktrades" }, { - "voter": "acidsun", - "rshares": "81790420316" + "rshares": "81790420316", + "voter": "acidsun" }, { - "voter": "danielkt", - "rshares": "1026087885" + "rshares": "1026087885", + "voter": "danielkt" }, { - "voter": "nabilov", - "rshares": "243749878708" + "rshares": "243749878708", + "voter": "nabilov" }, { - "voter": "dmitriybtc", - "rshares": "5096232265" + "rshares": "5096232265", + "voter": "dmitriybtc" }, { - "voter": "dmilash", - "rshares": "3145812656" + "rshares": "3145812656", + "voter": "dmilash" }, { - "voter": "marinaz", - "rshares": "538023492" + "rshares": "538023492", + "voter": "marinaz" }, { - "voter": "future24", - "rshares": "1446509276" + "rshares": "1446509276", + "voter": "future24" }, { - "voter": "cmorton", - "rshares": "4098512589" + "rshares": "4098512589", + "voter": "cmorton" }, { - "voter": "numberone", - "rshares": "83101859" + "rshares": "83101859", + "voter": "numberone" }, { - "voter": "trev", - "rshares": "5712937692" + "rshares": "5712937692", + "voter": "trev" }, { - "voter": "creatr", - "rshares": "62351093" + "rshares": "62351093", + "voter": "creatr" }, { - "voter": "jlufer", - "rshares": "116660687" + "rshares": "116660687", + "voter": "jlufer" }, { - "voter": "jeff-kubitz", - "rshares": "53884613" + "rshares": "53884613", + "voter": "jeff-kubitz" }, { - "voter": "tanyabtc", - "rshares": "5532993072" + "rshares": "5532993072", + "voter": "tanyabtc" }, { - "voter": "waldemar-kuhn", - "rshares": "53671263" + "rshares": "53671263", + "voter": "waldemar-kuhn" }, { - "voter": "anomaly", - "rshares": "271440423" + "rshares": "271440423", + "voter": "anomaly" }, { - "voter": "orcish", - "rshares": "6368721210" + "rshares": "6368721210", + "voter": "orcish" }, { - "voter": "puffin", - "rshares": "4331450381" + "rshares": "4331450381", + "voter": "puffin" }, { - "voter": "dresden", - "rshares": "3795767712" + "rshares": "3795767712", + "voter": "dresden" } ], + "author": "tanyabtc", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 21, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/art/@tanyabtc/jellyfish", - "blacklists": [] - }, - { - "post_id": 959506, - "author": "markrmorrisjr", - "permlink": "original-fiction-anarchist-s-almanac-episode-15", - "category": "story", - "title": "Original Fiction: Anarchist's Almanac, Episode 15", - "body": "## In this episode, Joshua Claiborne stands trial for violation of the First Law ##\n\n**“Whoa, whoa, whoa!” Phil screamed, “What the hell dude?”**\n\n*The Reaper crumpled to the floor, arms flailing as Joshua rode it to the ground. Finally, the hands found the catches at either side of the helmet and popped it off. A black, shaggy head of hair emerged.* \n\n***If you've missed episodes, [visit my blog](https://steemit.com/@markrmorrisjr) to catch up. Be sure to follow me for updates in your feed!***\n\n“Emil?” Stella said, “Meet Joshua. Are you okay?”\n\nEmil, the Reaper suit’s operator laughed, “Yeah, I’m fine, but that was awesome! Can you teach us that?”\n\n“Man! Now I have to rebuild this helmet,” Phil held up a small remote. “All I had to do was push this button,” he said, pressing it, as the suit powered down. “What did you do?”\n\n“The ‘nerve’ bundle that controls these things motor skills is on the very top of the skull, under a thin piece of sheet metal, puncture it, it collapses. You didn’t know that?” Joshua said. \n\n“Well, it appears we may need you more than you need us,” Stella said. “So, just say the word and we’ll get you where you need to be. Meanwhile, my team will be working on your son’s location.”\n\nJoshua dropped the letter opener and walked to the stairs, “Fine, whatever you need to collect from my meeting, get it. Now, who’s driving?” With that, he walked up the stairs, he had no more time to waste. \n\n**The Mapleton courthouse sat on a hill in the center of the town, overlooking the area around for miles.** \n\n*Joshua insisted that the team Stella had sent stop 5 miles out and allow him to ride in on the electric trike alone, while they observed the meeting from a distance.* \n\nHe carried the tiny remote in his shirt pocket, a gift from Phil. “That’s my only prototype, so don’t lose it,” he’d said. \n\n![enter image description here](https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg)\n\nFrom the end of Main Street, looking up toward the courthouse, Joshua counted at least six reapers. He wondered how far the signal from the remote would travel. \n\nHe thought about pressing it now, disarming his enemy, then walking in, but he’d still have to deal with the six drivers, if they managed to escape the suits. \n\nBesides, Stella seemed to think there was some secret they were going to give away, although Joshua couldn’t imagine it. \n\n*He checked his watch, ten minutes until his scheduled time and while he knew better than to be late, he had no intention of giving the Consensus one more second than he had to.* \n\nThe trike spun it’s tires on a patch of loose gravel as he started back up. He decided a quick approach was best. He charged up the hill, jumping the “Mayor’s” parking barrier and rolling up to the foot of the front stairs, he cranked the accelerator and the trike rose up on its back wheel, popping the two front wheels, over the bottom step. \n\nThe machine had more than enough power to climb the steps and Joshua skidded to a stop outside the courthouse door. He stopped and turned back toward the town, the six Reapers swarming toward him up the steps. He powered down, swung his leg up and over the bike and opened the door. \n\n**The Reapers followed him into the hall as he approached the court room.** \n\nThe Magistrate sat behind the judge’s bench and Joshua couldn’t help but smirk at the insult to the very concept of actual justice that this thing represented. \n\n“Joshua Claiborne, appearing as requested,” Joshua said, standing directly in front of the Magistrate. \n\n![enter image description here](https://s12.postimg.org/6h4lvyh7x/judge.jpg)\n\n> “Yes, Mr. Claiborne, have a seat,” A woman’s face, projected on the face shield of the Magistrate said.\n\n“I’d rather stand,” he said. \n\n> “Suit yourself, may we have the room, please?” she said, looking toward the reapers that had entered the back doors of the courtroom.\n\nThey left quietly. \n\n> “Mr. Claiborne, you’re charged with violation of the first law, in so\n> much as you have encouraged and joined in the activity of settling\n> outside of Consensus approved areas, acted outside of the legal\n> jurisdiction of the council and on more than one occasion, acted\n> against the best interest of Consensus, including attacking duly\n> authorized Magistrates in the course of their legally binding duties,\n> how do you plead?”\n\n**The woman looked at Joshua, peering over a pair of short, square spectacles, like some sort of outdated stereotype.** \n\n“Not guilty, by reason of illegitimacy of the currently established government and its ensigns. I am not, nor do I choose to become, subject to your law. I stand judged as innocent by natural law, insomuch as I have not caused harm to another human in aggression, damaged or stolen property, nor unnecessarily restricted the liberty of any other person. I recognize no other responsibility to my fellow man,” Joshua said calmly. \n\n> “Be that as it may, Mr. Claiborne, we are not here under the auspices of “natural law” but rather, under the Council mandated authority of the Consensus and its Magisterial Ministry, of which I am a part and I assure you, you are subject to,”\n\nThe woman intoned, her expression one of almost sheer boredom.\n\n> “Court finds the defendant guilty and remands the subject for immediate judicial murder.”\n\nThe magistrate raised its arm and brought it down on the bench with a solid thud, that echoed through the court. Joshua felt his heart sink as the Reapers reentered the court and moved up to surround him. \n\n## Look for the upvote button below. If you liked the post, upvote and share! If you're not on Steemit yet, why not? You get free money for signing up! ##", + "blacklists": [], + "body": "Jellyfish is a perfect example of one of the weirdest creatures out there. In real life they are definitely not the most pleasant thing to touch and being surrounded with.\n\nIt wasn't a surprise for me but jellyfish don't have brains. Instead, they have nerve nets which sense changes in the environment and coordinate the animal's responses.\n\nHowever if you eliminate all of the fluff that people are talking about them, you can come up with something interesting and even fun.\n\nThis drawing is created using my favorite style, I hope you'll love it.\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish2_zpswbrk9ied.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish3_zpsx0rcjvko.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish1_zpsge408hgu.jpg\n\nhttp://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish4_zpsmctahaql.jpg\n\n***\n\n###
Follow me for my future art work: [@tanyabtc](https://steemit.com/@tanyabtc)
", + "category": "art", + "children": 5, + "created": "2016-09-15T17:32:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "story", - "fiction", - "anarchy", - "life", - "minnowsunited" - ], "image": [ - "https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg", - "https://s12.postimg.org/6h4lvyh7x/judge.jpg" + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish2_zpswbrk9ied.jpg", + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish3_zpsx0rcjvko.jpg", + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish1_zpsge408hgu.jpg", + "http://i349.photobucket.com/albums/q393/dmbaim/Art/jellyfish4_zpsmctahaql.jpg" ], "links": [ - "https://steemit.com/@markrmorrisjr" + "https://steemit.com/@tanyabtc" + ], + "tags": [ + "art", + "photography", + "life", + "nature", + "steemitartchallenge" ] }, - "created": "2016-09-15T16:54:06", - "updated": "2016-09-15T16:54:06", - "depth": 0, - "children": 2, - "net_rshares": 62355283653318, - "is_paidout": false, - "payout_at": "2016-09-16T18:15:42", - "payout": 227.863, - "pending_payout_value": "227.863 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 40641175102128, + "payout": 99.269, + "payout_at": "2016-09-22T17:32:00", + "pending_payout_value": "99.269 HBD", + "percent_hbd": 10000, + "permlink": "jellyfish", + "post_id": 1256509, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 21 + }, + "title": "Jellyfish", + "updated": "2016-09-15T17:32:00", + "url": "/art/@tanyabtc/jellyfish" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231809639013" + "rshares": "231809639013", + "voter": "anonymous" }, { - "voter": "blocktrades", - "rshares": "40859141206977" + "rshares": "40859141206977", + "voter": "blocktrades" }, { - "voter": "badassmother", - "rshares": "1912118346075" + "rshares": "1912118346075", + "voter": "badassmother" }, { - "voter": "xeldal", - "rshares": "7113882084470" + "rshares": "7113882084470", + "voter": "xeldal" }, { - "voter": "enki", - "rshares": "5763993012820" + "rshares": "5763993012820", + "voter": "enki" }, { - "voter": "rossco99", - "rshares": "1304415071462" + "rshares": "1304415071462", + "voter": "rossco99" }, { - "voter": "joseph", - "rshares": "1577462576089" + "rshares": "1577462576089", + "voter": "joseph" }, { - "voter": "masteryoda", - "rshares": "651993277150" + "rshares": "651993277150", + "voter": "masteryoda" }, { - "voter": "boatymcboatface", - "rshares": "446958795092" + "rshares": "446958795092", + "voter": "boatymcboatface" }, { - "voter": "idol", - "rshares": "9168101098" + "rshares": "9168101098", + "voter": "idol" }, { - "voter": "wpalczynski", - "rshares": "23383993964" + "rshares": "23383993964", + "voter": "wpalczynski" }, { - "voter": "sakr", - "rshares": "5044693986" + "rshares": "5044693986", + "voter": "sakr" }, { - "voter": "jocelyn", - "rshares": "1578030666" + "rshares": "1578030666", + "voter": "jocelyn" }, { - "voter": "gregory-f", - "rshares": "14818192446" + "rshares": "14818192446", + "voter": "gregory-f" }, { - "voter": "eeks", - "rshares": "74914583876" + "rshares": "74914583876", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1007941175" + "rshares": "1007941175", + "voter": "fkn" }, { - "voter": "james-show", - "rshares": "8867224532" + "rshares": "8867224532", + "voter": "james-show" }, { - "voter": "elishagh1", - "rshares": "1324875721" + "rshares": "1324875721", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7802860274" + "rshares": "7802860274", + "voter": "richman" }, { - "voter": "acidyo", - "rshares": "24193131603" + "rshares": "24193131603", + "voter": "acidyo" }, { - "voter": "coar", - "rshares": "313691550" + "rshares": "313691550", + "voter": "coar" }, { - "voter": "murh", - "rshares": "1061234978" + "rshares": "1061234978", + "voter": "murh" }, { - "voter": "error", - "rshares": "2057413439" + "rshares": "2057413439", + "voter": "error" }, { - "voter": "theshell", - "rshares": "59950022330" + "rshares": "59950022330", + "voter": "theshell" }, { - "voter": "taoteh1221", - "rshares": "400880323222" + "rshares": "400880323222", + "voter": "taoteh1221" }, { - "voter": "applecrisp", - "rshares": "410517349" + "rshares": "410517349", + "voter": "applecrisp" }, { - "voter": "trogdor", - "rshares": "280737930617" + "rshares": "280737930617", + "voter": "trogdor" }, { - "voter": "tee-em", - "rshares": "5287820211" + "rshares": "5287820211", + "voter": "tee-em" }, { - "voter": "geoffrey", - "rshares": "121383360964" + "rshares": "121383360964", + "voter": "geoffrey" }, { - "voter": "kimziv", - "rshares": "10684548905" + "rshares": "10684548905", + "voter": "kimziv" }, { - "voter": "acassity", - "rshares": "30279968088" + "rshares": "30279968088", + "voter": "acassity" }, { - "voter": "venuspcs", - "rshares": "45145254362" + "rshares": "45145254362", + "voter": "venuspcs" }, { - "voter": "getssidetracked", - "rshares": "7264907621" + "rshares": "7264907621", + "voter": "getssidetracked" }, { - "voter": "trees", - "rshares": "1414199127" + "rshares": "1414199127", + "voter": "trees" }, { - "voter": "strawhat", - "rshares": "197179742" + "rshares": "197179742", + "voter": "strawhat" }, { - "voter": "steemswede", - "rshares": "1159208963" + "rshares": "1159208963", + "voter": "steemswede" }, { - "voter": "cryptochannel", - "rshares": "691425107" + "rshares": "691425107", + "voter": "cryptochannel" }, { - "voter": "endgame", - "rshares": "894044199" + "rshares": "894044199", + "voter": "endgame" }, { - "voter": "furion", - "rshares": "4920266872" + "rshares": "4920266872", + "voter": "furion" }, { - "voter": "steem1653", - "rshares": "2834923420" + "rshares": "2834923420", + "voter": "steem1653" }, { - "voter": "steemit-life", - "rshares": "25221166135" + "rshares": "25221166135", + "voter": "steemit-life" }, { - "voter": "sitaru", - "rshares": "13516878845" + "rshares": "13516878845", + "voter": "sitaru" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "aaseb", - "rshares": "14167503457" + "rshares": "14167503457", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209522316" + "rshares": "4209522316", + "voter": "karen13" }, { - "voter": "nabilov", - "rshares": "243749878708" + "rshares": "243749878708", + "voter": "nabilov" }, { - "voter": "luisucv34", - "rshares": "677892916" + "rshares": "677892916", + "voter": "luisucv34" }, { - "voter": "creemej", - "rshares": "34761252099" + "rshares": "34761252099", + "voter": "creemej" }, { - "voter": "poseidon", - "rshares": "233065746" + "rshares": "233065746", + "voter": "poseidon" }, { - "voter": "thylbom", - "rshares": "82781233416" + "rshares": "82781233416", + "voter": "thylbom" }, { - "voter": "deanliu", - "rshares": "32543319555" + "rshares": "32543319555", + "voter": "deanliu" }, { - "voter": "rainchen", - "rshares": "5428442637" + "rshares": "5428442637", + "voter": "rainchen" }, { - "voter": "jl777", - "rshares": "204617448258" + "rshares": "204617448258", + "voter": "jl777" }, { - "voter": "pokemon", - "rshares": "103514864" + "rshares": "103514864", + "voter": "pokemon" }, { - "voter": "positive", - "rshares": "817413671" + "rshares": "817413671", + "voter": "positive" }, { - "voter": "chloetaylor", - "rshares": "6361356981" + "rshares": "6361356981", + "voter": "chloetaylor" }, { - "voter": "proto", - "rshares": "17267278949" + "rshares": "17267278949", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "1805641835" + "rshares": "1805641835", + "voter": "sisterholics" }, { - "voter": "reported", - "rshares": "61286903" + "rshares": "61286903", + "voter": "reported" }, { - "voter": "taker", - "rshares": "8734133724" + "rshares": "8734133724", + "voter": "taker" }, { - "voter": "krushing", - "rshares": "57607550" + "rshares": "57607550", + "voter": "krushing" }, { - "voter": "laonie", - "rshares": "63852353198" + "rshares": "63852353198", + "voter": "laonie" }, { - "voter": "laoyao", - "rshares": "24561889230" + "rshares": "24561889230", + "voter": "laoyao" }, { - "voter": "myfirst", - "rshares": "1332427399" + "rshares": "1332427399", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "12961212091" + "rshares": "12961212091", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "484610059" + "rshares": "484610059", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "2084691327" + "rshares": "2084691327", + "voter": "gmurph" }, { - "voter": "minnowsunited", - "rshares": "513517114" + "rshares": "513517114", + "voter": "minnowsunited" }, { - "voter": "midnightoil", - "rshares": "2863236010" + "rshares": "2863236010", + "voter": "midnightoil" }, { - "voter": "whatyouganjado", - "rshares": "56653113" + "rshares": "56653113", + "voter": "whatyouganjado" }, { - "voter": "kurtbeil", - "rshares": "3323984357" + "rshares": "3323984357", + "voter": "kurtbeil" }, { - "voter": "xiaohui", - "rshares": "7161280807" + "rshares": "7161280807", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "323406893" + "rshares": "323406893", + "voter": "elfkitchen" }, { - "voter": "oflyhigh", - "rshares": "5855543935" + "rshares": "5855543935", + "voter": "oflyhigh" }, { - "voter": "makaveli", - "rshares": "63373184" + "rshares": "63373184", + "voter": "makaveli" }, { - "voter": "xiaokongcom", - "rshares": "223891286" + "rshares": "223891286", + "voter": "xiaokongcom" }, { - "voter": "future24", - "rshares": "1780319109" + "rshares": "1780319109", + "voter": "future24" }, { - "voter": "thebotkiller", - "rshares": "7709317035" + "rshares": "7709317035", + "voter": "thebotkiller" }, { - "voter": "xianjun", - "rshares": "451324143" + "rshares": "451324143", + "voter": "xianjun" }, { - "voter": "herbertmueller", - "rshares": "647921440" + "rshares": "647921440", + "voter": "herbertmueller" }, { - "voter": "alexbones", - "rshares": "56109399" + "rshares": "56109399", + "voter": "alexbones" }, { - "voter": "chinadaily", - "rshares": "2022625104" + "rshares": "2022625104", + "voter": "chinadaily" }, { - "voter": "serejandmyself", - "rshares": "90172824082" + "rshares": "90172824082", + "voter": "serejandmyself" }, { - "voter": "nang1", - "rshares": "163783062" + "rshares": "163783062", + "voter": "nang1" }, { - "voter": "netaterra", - "rshares": "2982676167" + "rshares": "2982676167", + "voter": "netaterra" }, { - "voter": "dobbydaba", - "rshares": "52319145" + "rshares": "52319145", + "voter": "dobbydaba" }, { - "voter": "andrewawerdna", - "rshares": "22559404087" + "rshares": "22559404087", + "voter": "andrewawerdna" }, { - "voter": "ozertayiz", - "rshares": "77466140" + "rshares": "77466140", + "voter": "ozertayiz" }, { - "voter": "steemitpatina", - "rshares": "4633082667" + "rshares": "4633082667", + "voter": "steemitpatina" }, { - "voter": "salebored", - "rshares": "55922029" + "rshares": "55922029", + "voter": "salebored" }, { - "voter": "runridefly", - "rshares": "2196862373" + "rshares": "2196862373", + "voter": "runridefly" }, { - "voter": "shenanigator", - "rshares": "115288806334" + "rshares": "115288806334", + "voter": "shenanigator" }, { - "voter": "funkywanderer", - "rshares": "1709331623" + "rshares": "1709331623", + "voter": "funkywanderer" }, { - "voter": "richardcrill", - "rshares": "4594182561" + "rshares": "4594182561", + "voter": "richardcrill" }, { - "voter": "markrmorrisjr", - "rshares": "79155262951" + "rshares": "79155262951", + "voter": "markrmorrisjr" }, { - "voter": "bitdrone", - "rshares": "55917888" + "rshares": "55917888", + "voter": "bitdrone" }, { - "voter": "sleepcult", - "rshares": "55908853" + "rshares": "55908853", + "voter": "sleepcult" }, { - "voter": "sponge-bob", - "rshares": "27677639861" + "rshares": "27677639861", + "voter": "sponge-bob" }, { - "voter": "doitvoluntarily", - "rshares": "12031039232" + "rshares": "12031039232", + "voter": "doitvoluntarily" }, { - "voter": "thecyclist", - "rshares": "67696453939" + "rshares": "67696453939", + "voter": "thecyclist" }, { - "voter": "kev7000", - "rshares": "646493719" + "rshares": "646493719", + "voter": "kev7000" }, { - "voter": "analyzethis", - "rshares": "55266473" + "rshares": "55266473", + "voter": "analyzethis" }, { - "voter": "brains", - "rshares": "27671309914" + "rshares": "27671309914", + "voter": "brains" }, { - "voter": "burnin", - "rshares": "5866415576" + "rshares": "5866415576", + "voter": "burnin" }, { - "voter": "bitcoinparadise", - "rshares": "1352324852" + "rshares": "1352324852", + "voter": "bitcoinparadise" }, { - "voter": "funnyman", - "rshares": "4235074146" + "rshares": "4235074146", + "voter": "funnyman" }, { - "voter": "f1111111", - "rshares": "50193769" + "rshares": "50193769", + "voter": "f1111111" }, { - "voter": "anomaly", - "rshares": "339287005" + "rshares": "339287005", + "voter": "anomaly" }, { - "voter": "inarix03", - "rshares": "63405661" + "rshares": "63405661", + "voter": "inarix03" }, { - "voter": "ola1", - "rshares": "98545946" + "rshares": "98545946", + "voter": "ola1" }, { - "voter": "michelle.gent", - "rshares": "4382226038" + "rshares": "4382226038", + "voter": "michelle.gent" }, { - "voter": "mari5555na", - "rshares": "66935282" + "rshares": "66935282", + "voter": "mari5555na" }, { - "voter": "goldmatters", - "rshares": "31683945302" + "rshares": "31683945302", + "voter": "goldmatters" }, { - "voter": "majes", - "rshares": "155180811" + "rshares": "155180811", + "voter": "majes" }, { - "voter": "dealzgal", - "rshares": "71727340" + "rshares": "71727340", + "voter": "dealzgal" }, { - "voter": "storage", - "rshares": "68013381" + "rshares": "68013381", + "voter": "storage" }, { - "voter": "blackmarket", - "rshares": "58460105" + "rshares": "58460105", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "61530871" + "rshares": "61530871", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "96643251" + "rshares": "96643251", + "voter": "expat" }, { - "voter": "toddemaher1", - "rshares": "129609202" + "rshares": "129609202", + "voter": "toddemaher1" } ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 120, - "flag_weight": 0.0 - }, + "author": "markrmorrisjr", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/story/@markrmorrisjr/original-fiction-anarchist-s-almanac-episode-15", - "blacklists": [] - }, - { - "post_id": 959690, - "author": "mevilkingdom", - "permlink": "the-gift-of-family-stories-of-a-toy-collector-1", - "category": "life", - "title": "The gift of family: Stories of a toy collector #1", - "body": "## Hi Steemians! The greatest thing about being a collector is that people always know what to buy for your birthday. Not perfume or cookware, but always things you love!\n\nHere are some pictures of what I received the last couple of times.\n\n----\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC01422.JPG)
\n\nThese are all the gifts I received for my birthday this year. I got some cool dolls, chocolates, care bears, my little ponies and even a puzzle. What a lovely 27th birthday!\n\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC09982.JPG)
\n\nChristmas is only once a year, good thing for my family! Lots of dolls and some ponies. You can tell everyone is really supportive of my hobby.\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05838.JPG)
\nThis is what **Sinterklaas** (he brings gifts on the 6th of December) brought me. Did you know I also collect Lego to some extent?\n___\n\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05066.JPG)
\nGifts from **Disneyland Paris**\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05622.JPG)
\nEven more **Disneyland** gifts, this time for Christmas 2 years ago. Those cookies are just **THE BEST**!\nNot to mention that they're Mickey-shaped.\n\n___\n\nThank you very much for looking at my pictures! Don't forget to **follow me** for more pictures!\n\n\n---- \n\n### Who is Mande Walschot?\n\n> Mande Walschot resides in Belgium and currently owns over 1,350 boxed My Little Ponies, around 500 boxed dolls, 52 polly pockets, 25 plush care bears, 30 Tsum Tsums, about 3,000 Pokémon cards, around 200 comic books and lots of stuffed toys! [Gemr spotlight collection](https://blogadmin.gemr.com/blog/collector-spotlight-mande-walschot/)\n\nAlso seen on [national television](http://ringtv.be/nieuws/mande-uit-halle-heeft-grootste-poppenverzameling-uit-regio) and [newspapers](http://www.hln.be/regio/nieuws-uit-halle/mande-leeft-samen-met-1-357-pony-s-a2797213/).\n\n\nSister of @steve-walschot, the creator of SteemPay.io and vouched Steem applications developer and girlfriend of game-enthusiast @herrlonnie.", + "blacklists": [], + "body": "## In this episode, Joshua Claiborne stands trial for violation of the First Law ##\n\n**\u201cWhoa, whoa, whoa!\u201d Phil screamed, \u201cWhat the hell dude?\u201d**\n\n*The Reaper crumpled to the floor, arms flailing as Joshua rode it to the ground. Finally, the hands found the catches at either side of the helmet and popped it off. A black, shaggy head of hair emerged.* \n\n***If you've missed episodes, [visit my blog](https://steemit.com/@markrmorrisjr) to catch up. Be sure to follow me for updates in your feed!***\n\n\u201cEmil?\u201d Stella said, \u201cMeet Joshua. Are you okay?\u201d\n\nEmil, the Reaper suit\u2019s operator laughed, \u201cYeah, I\u2019m fine, but that was awesome! Can you teach us that?\u201d\n\n\u201cMan! Now I have to rebuild this helmet,\u201d Phil held up a small remote. \u201cAll I had to do was push this button,\u201d he said, pressing it, as the suit powered down. \u201cWhat did you do?\u201d\n\n\u201cThe \u2018nerve\u2019 bundle that controls these things motor skills is on the very top of the skull, under a thin piece of sheet metal, puncture it, it collapses. You didn\u2019t know that?\u201d Joshua said. \n\n\u201cWell, it appears we may need you more than you need us,\u201d Stella said. \u201cSo, just say the word and we\u2019ll get you where you need to be. Meanwhile, my team will be working on your son\u2019s location.\u201d\n\nJoshua dropped the letter opener and walked to the stairs, \u201cFine, whatever you need to collect from my meeting, get it. Now, who\u2019s driving?\u201d With that, he walked up the stairs, he had no more time to waste. \n\n**The Mapleton courthouse sat on a hill in the center of the town, overlooking the area around for miles.** \n\n*Joshua insisted that the team Stella had sent stop 5 miles out and allow him to ride in on the electric trike alone, while they observed the meeting from a distance.* \n\nHe carried the tiny remote in his shirt pocket, a gift from Phil. \u201cThat\u2019s my only prototype, so don\u2019t lose it,\u201d he\u2019d said. \n\n![enter image description here](https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg)\n\nFrom the end of Main Street, looking up toward the courthouse, Joshua counted at least six reapers. He wondered how far the signal from the remote would travel. \n\nHe thought about pressing it now, disarming his enemy, then walking in, but he\u2019d still have to deal with the six drivers, if they managed to escape the suits. \n\nBesides, Stella seemed to think there was some secret they were going to give away, although Joshua couldn\u2019t imagine it. \n\n*He checked his watch, ten minutes until his scheduled time and while he knew better than to be late, he had no intention of giving the Consensus one more second than he had to.* \n\nThe trike spun it\u2019s tires on a patch of loose gravel as he started back up. He decided a quick approach was best. He charged up the hill, jumping the \u201cMayor\u2019s\u201d parking barrier and rolling up to the foot of the front stairs, he cranked the accelerator and the trike rose up on its back wheel, popping the two front wheels, over the bottom step. \n\nThe machine had more than enough power to climb the steps and Joshua skidded to a stop outside the courthouse door. He stopped and turned back toward the town, the six Reapers swarming toward him up the steps. He powered down, swung his leg up and over the bike and opened the door. \n\n**The Reapers followed him into the hall as he approached the court room.** \n\nThe Magistrate sat behind the judge\u2019s bench and Joshua couldn\u2019t help but smirk at the insult to the very concept of actual justice that this thing represented. \n\n\u201cJoshua Claiborne, appearing as requested,\u201d Joshua said, standing directly in front of the Magistrate. \n\n![enter image description here](https://s12.postimg.org/6h4lvyh7x/judge.jpg)\n\n> \u201cYes, Mr. Claiborne, have a seat,\u201d A woman\u2019s face, projected on the face shield of the Magistrate said.\n\n\u201cI\u2019d rather stand,\u201d he said. \n\n> \u201cSuit yourself, may we have the room, please?\u201d she said, looking toward the reapers that had entered the back doors of the courtroom.\n\nThey left quietly. \n\n> \u201cMr. Claiborne, you\u2019re charged with violation of the first law, in so\n> much as you have encouraged and joined in the activity of settling\n> outside of Consensus approved areas, acted outside of the legal\n> jurisdiction of the council and on more than one occasion, acted\n> against the best interest of Consensus, including attacking duly\n> authorized Magistrates in the course of their legally binding duties,\n> how do you plead?\u201d\n\n**The woman looked at Joshua, peering over a pair of short, square spectacles, like some sort of outdated stereotype.** \n\n\u201cNot guilty, by reason of illegitimacy of the currently established government and its ensigns. I am not, nor do I choose to become, subject to your law. I stand judged as innocent by natural law, insomuch as I have not caused harm to another human in aggression, damaged or stolen property, nor unnecessarily restricted the liberty of any other person. I recognize no other responsibility to my fellow man,\u201d Joshua said calmly. \n\n> \u201cBe that as it may, Mr. Claiborne, we are not here under the auspices of \u201cnatural law\u201d but rather, under the Council mandated authority of the Consensus and its Magisterial Ministry, of which I am a part and I assure you, you are subject to,\u201d\n\nThe woman intoned, her expression one of almost sheer boredom.\n\n> \u201cCourt finds the defendant guilty and remands the subject for immediate judicial murder.\u201d\n\nThe magistrate raised its arm and brought it down on the bench with a solid thud, that echoed through the court. Joshua felt his heart sink as the Reapers reentered the court and moved up to surround him. \n\n## Look for the upvote button below. If you liked the post, upvote and share! If you're not on Steemit yet, why not? You get free money for signing up! ##", + "category": "story", + "children": 2, + "created": "2016-09-15T16:54:06", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "life", - "story", - "collector", - "toys", - "mandesevilkingdom" - ], - "users": [ - "steve-walschot", - "herrlonnie" - ], "image": [ - "http://mandesevilkingdom.com/steemit/post6/DSC01422.JPG", - "http://mandesevilkingdom.com/steemit/post6/DSC09982.JPG", - "http://mandesevilkingdom.com/steemit/post6/DSC05838.JPG", - "http://mandesevilkingdom.com/steemit/post6/DSC05066.JPG", - "http://mandesevilkingdom.com/steemit/post6/DSC05622.JPG" + "https://s12.postimg.org/siuqjuiz1/Untitled_36.jpg", + "https://s12.postimg.org/6h4lvyh7x/judge.jpg" ], "links": [ - "https://blogadmin.gemr.com/blog/collector-spotlight-mande-walschot/", - "http://ringtv.be/nieuws/mande-uit-halle-heeft-grootste-poppenverzameling-uit-regio", - "http://www.hln.be/regio/nieuws-uit-halle/mande-leeft-samen-met-1-357-pony-s-a2797213/" + "https://steemit.com/@markrmorrisjr" + ], + "tags": [ + "story", + "fiction", + "anarchy", + "life", + "minnowsunited" ] }, - "created": "2016-09-15T17:14:30", - "updated": "2016-09-15T17:14:30", - "depth": 0, - "children": 3, - "net_rshares": 46309406304713, - "is_paidout": false, - "payout_at": "2016-09-16T19:31:38", - "payout": 128.305, - "pending_payout_value": "128.305 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 62355283653318, + "payout": 226.397, + "payout_at": "2016-09-22T16:54:06", + "pending_payout_value": "226.397 HBD", + "percent_hbd": 10000, + "permlink": "original-fiction-anarchist-s-almanac-episode-15", + "post_id": 1256087, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 120 + }, + "title": "Original Fiction: Anarchist's Almanac, Episode 15", + "updated": "2016-09-15T16:54:06", + "url": "/story/@markrmorrisjr/original-fiction-anarchist-s-almanac-episode-15" + }, + { "active_votes": [ { - "voter": "smooth", - "rshares": "31308460859447" + "rshares": "31308460859447", + "voter": "smooth" }, { - "voter": "anonymous", - "rshares": "231810333637" + "rshares": "231810333637", + "voter": "anonymous" }, { - "voter": "liondani", - "rshares": "1020236794603" + "rshares": "1020236794603", + "voter": "liondani" }, { - "voter": "xeroc", - "rshares": "1950774078440" + "rshares": "1950774078440", + "voter": "xeroc" }, { - "voter": "masteryoda", - "rshares": "636514783207" + "rshares": "636514783207", + "voter": "masteryoda" }, { - "voter": "smooth.witness", - "rshares": "5943125371535" + "rshares": "5943125371535", + "voter": "smooth.witness" }, { - "voter": "steemrollin", - "rshares": "800066797130" + "rshares": "800066797130", + "voter": "steemrollin" }, { - "voter": "eeks", - "rshares": "14982933604" + "rshares": "14982933604", + "voter": "eeks" }, { - "voter": "instructor2121", - "rshares": "32368367444" + "rshares": "32368367444", + "voter": "instructor2121" }, { - "voter": "teamsteem", - "rshares": "326639006522" + "rshares": "326639006522", + "voter": "teamsteem" }, { - "voter": "steve-walschot", - "rshares": "178446109019" + "rshares": "178446109019", + "voter": "steve-walschot" }, { - "voter": "coar", - "rshares": "313697862" + "rshares": "313697862", + "voter": "coar" }, { - "voter": "murh", - "rshares": "1061253912" + "rshares": "1061253912", + "voter": "murh" }, { - "voter": "ranko-k", - "rshares": "40553528416" + "rshares": "40553528416", + "voter": "ranko-k" }, { - "voter": "cyber", - "rshares": "970586830705" + "rshares": "970586830705", + "voter": "cyber" }, { - "voter": "drinkzya", - "rshares": "35244223389" + "rshares": "35244223389", + "voter": "drinkzya" }, { - "voter": "thecryptodrive", - "rshares": "57203974765" + "rshares": "57203974765", + "voter": "thecryptodrive" }, { - "voter": "tee-em", - "rshares": "5287780547" + "rshares": "5287780547", + "voter": "tee-em" }, { - "voter": "michaelx", - "rshares": "31345579234" + "rshares": "31345579234", + "voter": "michaelx" }, { - "voter": "razvanelulmarin", - "rshares": "88062402472" + "rshares": "88062402472", + "voter": "razvanelulmarin" }, { - "voter": "cryptoiskey", - "rshares": "34073699558" + "rshares": "34073699558", + "voter": "cryptoiskey" }, { - "voter": "mrhankeh", - "rshares": "484636799" + "rshares": "484636799", + "voter": "mrhankeh" }, { - "voter": "clement", - "rshares": "37152547241" + "rshares": "37152547241", + "voter": "clement" }, { - "voter": "isteemit", - "rshares": "49807514764" + "rshares": "49807514764", + "voter": "isteemit" }, { - "voter": "bacchist", - "rshares": "68450553516" + "rshares": "68450553516", + "voter": "bacchist" }, { - "voter": "venuspcs", - "rshares": "52093553829" + "rshares": "52093553829", + "voter": "venuspcs" }, { - "voter": "ausbitbank", - "rshares": "14885828588" + "rshares": "14885828588", + "voter": "ausbitbank" }, { - "voter": "steem1653", - "rshares": "2632467953" + "rshares": "2632467953", + "voter": "steem1653" }, { - "voter": "anyx", - "rshares": "185292018100" + "rshares": "185292018100", + "voter": "anyx" }, { - "voter": "snowden", - "rshares": "80777327" + "rshares": "80777327", + "voter": "snowden" }, { - "voter": "luisucv34", - "rshares": "629471993" + "rshares": "629471993", + "voter": "luisucv34" }, { - "voter": "wildchild", - "rshares": "87223247" + "rshares": "87223247", + "voter": "wildchild" }, { - "voter": "the-future", - "rshares": "2726160685" + "rshares": "2726160685", + "voter": "the-future" }, { - "voter": "blueorgy", - "rshares": "167307855189" + "rshares": "167307855189", + "voter": "blueorgy" }, { - "voter": "bitcoiner", - "rshares": "3709595271" + "rshares": "3709595271", + "voter": "bitcoiner" }, { - "voter": "zaebars", - "rshares": "30989825780" + "rshares": "30989825780", + "voter": "zaebars" }, { - "voter": "raymonjohnstone", - "rshares": "799615699" + "rshares": "799615699", + "voter": "raymonjohnstone" }, { - "voter": "steemchain", - "rshares": "50626015" + "rshares": "50626015", + "voter": "steemchain" }, { - "voter": "whalepool", - "rshares": "50626015" + "rshares": "50626015", + "voter": "whalepool" }, { - "voter": "tygergamer", - "rshares": "4233708636" + "rshares": "4233708636", + "voter": "tygergamer" }, { - "voter": "clevecross", - "rshares": "15951876294" + "rshares": "15951876294", + "voter": "clevecross" }, { - "voter": "steemdrive", - "rshares": "138539449846" + "rshares": "138539449846", + "voter": "steemdrive" }, { - "voter": "gomeravibz", - "rshares": "50579614280" + "rshares": "50579614280", + "voter": "gomeravibz" }, { - "voter": "merej99", - "rshares": "2157207095" + "rshares": "2157207095", + "voter": "merej99" }, { - "voter": "laonie1", - "rshares": "22969491561" + "rshares": "22969491561", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "23486297008" + "rshares": "23486297008", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "23494592105" + "rshares": "23494592105", + "voter": "laonie3" }, { - "voter": "brendio", - "rshares": "5831750244" + "rshares": "5831750244", + "voter": "brendio" }, { - "voter": "gmurph", - "rshares": "416938566" + "rshares": "416938566", + "voter": "gmurph" }, { - "voter": "michellek", - "rshares": "50577648" + "rshares": "50577648", + "voter": "michellek" }, { - "voter": "laonie4", - "rshares": "23490269143" + "rshares": "23490269143", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "23487998630" + "rshares": "23487998630", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "23485020903" + "rshares": "23485020903", + "voter": "laonie6" }, { - "voter": "laonie7", - "rshares": "23480867466" + "rshares": "23480867466", + "voter": "laonie7" }, { - "voter": "kurtbeil", - "rshares": "3323846130" + "rshares": "3323846130", + "voter": "kurtbeil" }, { - "voter": "laonie8", - "rshares": "23477419388" + "rshares": "23477419388", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "23474718053" + "rshares": "23474718053", + "voter": "laonie9" }, { - "voter": "steemleak", - "rshares": "2370262538" + "rshares": "2370262538", + "voter": "steemleak" }, { - "voter": "mevilkingdom", - "rshares": "7991657587" + "rshares": "7991657587", + "voter": "mevilkingdom" }, { - "voter": "bigsambucca", - "rshares": "88206053" + "rshares": "88206053", + "voter": "bigsambucca" }, { - "voter": "paynode", - "rshares": "2343161589" + "rshares": "2343161589", + "voter": "paynode" }, { - "voter": "stevescriber", - "rshares": "72135954" + "rshares": "72135954", + "voter": "stevescriber" }, { - "voter": "loli", - "rshares": "51247757" + "rshares": "51247757", + "voter": "loli" }, { - "voter": "nano2nd", - "rshares": "52419023" + "rshares": "52419023", + "voter": "nano2nd" }, { - "voter": "cryptoblu", - "rshares": "61430307" + "rshares": "61430307", + "voter": "cryptoblu" }, { - "voter": "instructor", - "rshares": "61423628" + "rshares": "61423628", + "voter": "instructor" }, { - "voter": "dollarvigilante", - "rshares": "802020725261" + "rshares": "802020725261", + "voter": "dollarvigilante" }, { - "voter": "lamech-m", - "rshares": "4056826699" + "rshares": "4056826699", + "voter": "lamech-m" }, { - "voter": "laonie10", - "rshares": "23468511648" + "rshares": "23468511648", + "voter": "laonie10" }, { - "voter": "kamil5", - "rshares": "159631404" + "rshares": "159631404", + "voter": "kamil5" }, { - "voter": "garywilson", - "rshares": "8706975244" + "rshares": "8706975244", + "voter": "garywilson" }, { - "voter": "bitchplease", - "rshares": "50829277" + "rshares": "50829277", + "voter": "bitchplease" }, { - "voter": "trev", - "rshares": "5831957227" + "rshares": "5831957227", + "voter": "trev" }, { - "voter": "barrycooper", - "rshares": "99130059443" + "rshares": "99130059443", + "voter": "barrycooper" }, { - "voter": "hilarski", - "rshares": "32443492367" + "rshares": "32443492367", + "voter": "hilarski" }, { - "voter": "shadowspub", - "rshares": "2029369552" + "rshares": "2029369552", + "voter": "shadowspub" }, { - "voter": "rimann", - "rshares": "8558777427" + "rshares": "8558777427", + "voter": "rimann" }, { - "voter": "rickmiller", - "rshares": "58139915" + "rshares": "58139915", + "voter": "rickmiller" }, { - "voter": "nulliusinverba", - "rshares": "5401518277" + "rshares": "5401518277", + "voter": "nulliusinverba" }, { - "voter": "mikehere", - "rshares": "22792452702" + "rshares": "22792452702", + "voter": "mikehere" }, { - "voter": "laonie11", - "rshares": "22621808463" + "rshares": "22621808463", + "voter": "laonie11" }, { - "voter": "xanoxt", - "rshares": "3411072843" + "rshares": "3411072843", + "voter": "xanoxt" }, { - "voter": "l0k1", - "rshares": "4044651818" + "rshares": "4044651818", + "voter": "l0k1" }, { - "voter": "freesteem", - "rshares": "50798127" + "rshares": "50798127", + "voter": "freesteem" }, { - "voter": "saramiller", - "rshares": "450072622" + "rshares": "450072622", + "voter": "saramiller" }, { - "voter": "zettar", - "rshares": "2353724275" + "rshares": "2353724275", + "voter": "zettar" }, { - "voter": "dexter-k", - "rshares": "6066265903" + "rshares": "6066265903", + "voter": "dexter-k" }, { - "voter": "doggnostic", - "rshares": "53871683" + "rshares": "53871683", + "voter": "doggnostic" }, { - "voter": "ct-gurus", - "rshares": "674641805" + "rshares": "674641805", + "voter": "ct-gurus" }, { - "voter": "jenny-talls", - "rshares": "53593366" + "rshares": "53593366", + "voter": "jenny-talls" }, { - "voter": "charlieshrem", - "rshares": "415654681468" + "rshares": "415654681468", + "voter": "charlieshrem" }, { - "voter": "tracemayer", - "rshares": "61826073622" + "rshares": "61826073622", + "voter": "tracemayer" }, { - "voter": "bitcoinparadise", - "rshares": "1386999849" + "rshares": "1386999849", + "voter": "bitcoinparadise" }, { - "voter": "steemsquad", - "rshares": "2170339399" + "rshares": "2170339399", + "voter": "steemsquad" }, { - "voter": "vsmith08162016", - "rshares": "52104641" + "rshares": "52104641", + "voter": "vsmith08162016" }, { - "voter": "anomaly", - "rshares": "339288508" + "rshares": "339288508", + "voter": "anomaly" }, { - "voter": "inarix03", - "rshares": "63405661" + "rshares": "63405661", + "voter": "inarix03" }, { - "voter": "teemsteem", - "rshares": "51238118" + "rshares": "51238118", + "voter": "teemsteem" }, { - "voter": "steemprincess", - "rshares": "50975390" + "rshares": "50975390", + "voter": "steemprincess" }, { - "voter": "ninjapainter", - "rshares": "52329350" + "rshares": "52329350", + "voter": "ninjapainter" }, { - "voter": "rusteemitblog", - "rshares": "1630374239" + "rshares": "1630374239", + "voter": "rusteemitblog" }, { - "voter": "dealzgal", - "rshares": "71727340" + "rshares": "71727340", + "voter": "dealzgal" }, { - "voter": "storage", - "rshares": "68013381" + "rshares": "68013381", + "voter": "storage" }, { - "voter": "blackmarket", - "rshares": "58460105" + "rshares": "58460105", + "voter": "blackmarket" }, { - "voter": "gifts", - "rshares": "61530871" + "rshares": "61530871", + "voter": "gifts" }, { - "voter": "expat", - "rshares": "99404487" + "rshares": "99404487", + "voter": "expat" }, { - "voter": "steemtrail", - "rshares": "140412636" + "rshares": "140412636", + "voter": "steemtrail" }, { - "voter": "steemlift", - "rshares": "1593664040" + "rshares": "1593664040", + "voter": "steemlift" }, { - "voter": "toddemaher1", - "rshares": "132623369" + "rshares": "132623369", + "voter": "toddemaher1" } ], + "author": "mevilkingdom", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 109, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/life/@mevilkingdom/the-gift-of-family-stories-of-a-toy-collector-1", - "blacklists": [] - }, - { - "post_id": 960355, - "author": "eneismijmich", - "permlink": "4rgubt-journey-of-life", - "category": "mindfulness", - "title": "Journey of life", - "body": "You must have heard that life is a journey, not a destination. This is the big truth that we, repeatedly, understand superficially. Often we are so focused on the goal, that we completely forget to enjoy the path.\n\nhttps://puu.sh/rbX2i/70e07ec186.png\n\nWhen we achieve the goal, we forget to enjoy it and immediately create a new goal. That is not life, this is racing with life. I am certain that you will not be happy, bur rather tired. Soul searches for the experience, while the mind and ego give signs if something is good or bad for us. Soul is completely indifferent. For the soul, every experience means celebration, while you are maybe crying because of the mind, to whom literally a lot of things does not make sense. \n\nThe same applies to the transformation called *death*. We celebrate resurrection as the greatest symbol of life, and then we are crying in the moment of someone's death. The mind is strange, isn't it?\n\nhttps://puu.sh/rbX1U/3cc83557c6.png\n\nRelax. It doesn't matter where you are in your level of expansion, you can't miss the road to home. While you are breathing, you are on the right track. Try to accept this moment as a moment in which there is no goal, and there is no end. The game never ends. This is excellent news. We came here to play, not to win. The game ends with victory, and God's Child in us still wants to play.\n\nOne beautiful wisdom reminds us: *\"Everything will be fine. If it isn't fine, then it isn't the end.\"* You always have the chance for new choices. This is very important to understand. You shouldn't hate the process just because you are not on your imaginary goal. You trust the process. You are exactly where your soul wants you to be. Don't let your mind tell you any different. \n\nhttps://puu.sh/rbXjG/ea493b7d14.png\n\nEverything is always a matter of the focus on things you have instead of the things you are missing. Today, again you are taking for granted the things that once were a goal. You forget to enjoy. Time is only an illusion of the mind. What if that is the point that you current process wants to teach you? If time is illusion, and it is, what's the hurry?\n\nhttps://puu.sh/rbWSn/313549d802.png\n\nTake a deep breath in and out. Experience life in the breath. The only goal is hiding in the breath of life. Everything is good, just the way it is. Don't forget that nothing ever happens without the God's blessing. Don't forget that you are guided. And, the most important, don't forget that we would most certainly go wrong if we'd try to determine what is the best time for us. The one who sees the big picture knows where you're headed and where you want to arrive.\n\nhttps://puu.sh/rbWLA/86e34b50b7.png\n\nTrust the process. It is the true test of our faith and wisdom. And enjoy. Without it nothing makes sense, right?\nThe sentence that many repeat in the end of the road: *\"I should've enjoyed more!\"*\n\nAll our life is a mere blink of an eye in the eternity. It is too small for such amount of worry. The life is not a serious thing, just the opposite. Life is the experience game. The point is not in the destination. The journey is our only destination. Isn't it then wiser to enjoy right away?\n\nhttps://puu.sh/rbX8F/2ea42f6dc9.png\n\n*\"Success isn't measured by money or material things.*\n*Success is measured by the amount of joy you feel.\"*\n\nFor more awesome images check this guy: [Psychedelic Maniac](thepsychedelicmaniac.tumblr.com)", + "blacklists": [], + "body": "## Hi Steemians! The greatest thing about being a collector is that people always know what to buy for your birthday. Not perfume or cookware, but always things you love!\n\nHere are some pictures of what I received the last couple of times.\n\n----\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC01422.JPG)
\n\nThese are all the gifts I received for my birthday this year. I got some cool dolls, chocolates, care bears, my little ponies and even a puzzle. What a lovely 27th birthday!\n\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC09982.JPG)
\n\nChristmas is only once a year, good thing for my family! Lots of dolls and some ponies. You can tell everyone is really supportive of my hobby.\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05838.JPG)
\nThis is what **Sinterklaas** (he brings gifts on the 6th of December) brought me. Did you know I also collect Lego to some extent?\n___\n\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05066.JPG)
\nGifts from **Disneyland Paris**\n___\n
![Picture 1](http://mandesevilkingdom.com/steemit/post6/DSC05622.JPG)
\nEven more **Disneyland** gifts, this time for Christmas 2 years ago. Those cookies are just **THE BEST**!\nNot to mention that they're Mickey-shaped.\n\n___\n\nThank you very much for looking at my pictures! Don't forget to **follow me** for more pictures!\n\n\n---- \n\n### Who is Mande Walschot?\n\n> Mande Walschot resides in Belgium and currently owns over 1,350 boxed My Little Ponies, around 500 boxed dolls, 52 polly pockets, 25 plush care bears, 30 Tsum Tsums, about 3,000 Pok\u00e9mon cards, around 200 comic books and lots of stuffed toys! [Gemr spotlight collection](https://blogadmin.gemr.com/blog/collector-spotlight-mande-walschot/)\n\nAlso seen on [national television](http://ringtv.be/nieuws/mande-uit-halle-heeft-grootste-poppenverzameling-uit-regio) and [newspapers](http://www.hln.be/regio/nieuws-uit-halle/mande-leeft-samen-met-1-357-pony-s-a2797213/).\n\n\nSister of @steve-walschot, the creator of SteemPay.io and vouched Steem applications developer and girlfriend of game-enthusiast @herrlonnie.", + "category": "life", + "children": 3, + "created": "2016-09-15T17:14:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "mindfulness", - "life", - "health", - "psychology", - "philosophy" - ], "image": [ - "https://puu.sh/rbX2i/70e07ec186.png", - "https://puu.sh/rbX1U/3cc83557c6.png", - "https://puu.sh/rbXjG/ea493b7d14.png", - "https://puu.sh/rbWSn/313549d802.png", - "https://puu.sh/rbWLA/86e34b50b7.png", - "https://puu.sh/rbX8F/2ea42f6dc9.png" + "http://mandesevilkingdom.com/steemit/post6/DSC01422.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC09982.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC05838.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC05066.JPG", + "http://mandesevilkingdom.com/steemit/post6/DSC05622.JPG" ], "links": [ - "thepsychedelicmaniac.tumblr.com" + "https://blogadmin.gemr.com/blog/collector-spotlight-mande-walschot/", + "http://ringtv.be/nieuws/mande-uit-halle-heeft-grootste-poppenverzameling-uit-regio", + "http://www.hln.be/regio/nieuws-uit-halle/mande-leeft-samen-met-1-357-pony-s-a2797213/" + ], + "tags": [ + "life", + "story", + "collector", + "toys", + "mandesevilkingdom" + ], + "users": [ + "steve-walschot", + "herrlonnie" ] }, - "created": "2016-09-15T18:31:45", - "updated": "2016-09-15T18:51:54", - "depth": 0, - "children": 0, - "net_rshares": 14809262337539, - "is_paidout": false, - "payout_at": "2016-09-16T18:57:11", - "payout": 15.34, - "pending_payout_value": "15.340 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 46309406304713, + "payout": 127.75, + "payout_at": "2016-09-22T17:14:30", + "pending_payout_value": "127.750 HBD", + "percent_hbd": 10000, + "permlink": "the-gift-of-family-stories-of-a-toy-collector-1", + "post_id": 1256309, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 109 + }, + "title": "The gift of family: Stories of a toy collector #1", + "updated": "2016-09-15T17:14:30", + "url": "/life/@mevilkingdom/the-gift-of-family-stories-of-a-toy-collector-1" + }, + { "active_votes": [ { - "voter": "anonymous", - "rshares": "231809773619" + "rshares": "231809773619", + "voter": "anonymous" }, { - "voter": "riverhead", - "rshares": "4134589909216" + "rshares": "4134589909216", + "voter": "riverhead" }, { - "voter": "hr1", - "rshares": "2006571575186" + "rshares": "2006571575186", + "voter": "hr1" }, { - "voter": "rossco99", - "rshares": "1239194317889" + "rshares": "1239194317889", + "voter": "rossco99" }, { - "voter": "wang", - "rshares": "2206071653405" + "rshares": "2206071653405", + "voter": "wang" }, { - "voter": "jaewoocho", - "rshares": "22391622942" + "rshares": "22391622942", + "voter": "jaewoocho" }, { - "voter": "joseph", - "rshares": "1534823711950" + "rshares": "1534823711950", + "voter": "joseph" }, { - "voter": "masteryoda", - "rshares": "621013263954" + "rshares": "621013263954", + "voter": "masteryoda" }, { - "voter": "idol", - "rshares": "8927357821" + "rshares": "8927357821", + "voter": "idol" }, { - "voter": "steemrollin", - "rshares": "800261748895" + "rshares": "800261748895", + "voter": "steemrollin" }, { - "voter": "sakr", - "rshares": "4839028197" + "rshares": "4839028197", + "voter": "sakr" }, { - "voter": "jocelyn", - "rshares": "1536592488" + "rshares": "1536592488", + "voter": "jocelyn" }, { - "voter": "craig-grant", - "rshares": "365729210153" + "rshares": "365729210153", + "voter": "craig-grant" }, { - "voter": "eeks", - "rshares": "44948978408" + "rshares": "44948978408", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1007941175" + "rshares": "1007941175", + "voter": "fkn" }, { - "voter": "elishagh1", - "rshares": "1324875721" + "rshares": "1324875721", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7803257741" + "rshares": "7803257741", + "voter": "richman" }, { - "voter": "coar", - "rshares": "313699965" + "rshares": "313699965", + "voter": "coar" }, { - "voter": "murh", - "rshares": "1061266533" + "rshares": "1061266533", + "voter": "murh" }, { - "voter": "error", - "rshares": "2003359924" + "rshares": "2003359924", + "voter": "error" }, { - "voter": "theshell", - "rshares": "58189176188" + "rshares": "58189176188", + "voter": "theshell" }, { - "voter": "will-zewe", - "rshares": "223669021166" + "rshares": "223669021166", + "voter": "will-zewe" }, { - "voter": "herzmeister", - "rshares": "85402720456" + "rshares": "85402720456", + "voter": "herzmeister" }, { - "voter": "trogdor", - "rshares": "275016906945" + "rshares": "275016906945", + "voter": "trogdor" }, { - "voter": "kimziv", - "rshares": "42740945757" + "rshares": "42740945757", + "voter": "kimziv" }, { - "voter": "furion", - "rshares": "4920595011" + "rshares": "4920595011", + "voter": "furion" }, { - "voter": "steem1653", - "rshares": "2632467953" + "rshares": "2632467953", + "voter": "steem1653" }, { - "voter": "sveokla", - "rshares": "2860912097" + "rshares": "2860912097", + "voter": "sveokla" }, { - "voter": "cynetyc", - "rshares": "136322030" + "rshares": "136322030", + "voter": "cynetyc" }, { - "voter": "aaseb", - "rshares": "13846432138" + "rshares": "13846432138", + "voter": "aaseb" }, { - "voter": "karen13", - "rshares": "4209539443" + "rshares": "4209539443", + "voter": "karen13" }, { - "voter": "noodhoog", - "rshares": "8926064181" + "rshares": "8926064181", + "voter": "noodhoog" }, { - "voter": "artific", - "rshares": "21565632626" + "rshares": "21565632626", + "voter": "artific" }, { - "voter": "poseidon", - "rshares": "932318275" + "rshares": "932318275", + "voter": "poseidon" }, { - "voter": "thylbom", - "rshares": "81126757108" + "rshares": "81126757108", + "voter": "thylbom" }, { - "voter": "jl777", - "rshares": "204618396015" + "rshares": "204618396015", + "voter": "jl777" }, { - "voter": "positive", - "rshares": "817413671" + "rshares": "817413671", + "voter": "positive" }, { - "voter": "proto", - "rshares": "17267341753" + "rshares": "17267341753", + "voter": "proto" }, { - "voter": "sisterholics", - "rshares": "7223043327" + "rshares": "7223043327", + "voter": "sisterholics" }, { - "voter": "yoganarchista", - "rshares": "1838905726" + "rshares": "1838905726", + "voter": "yoganarchista" }, { - "voter": "taker", - "rshares": "8734196526" + "rshares": "8734196526", + "voter": "taker" }, { - "voter": "laonie", - "rshares": "255431411513" + "rshares": "255431411513", + "voter": "laonie" }, { - "voter": "myfirst", - "rshares": "7994964655" + "rshares": "7994964655", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "51848391811" + "rshares": "51848391811", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "1938565243" + "rshares": "1938565243", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "1250819304" + "rshares": "1250819304", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "11453689270" + "rshares": "11453689270", + "voter": "midnightoil" }, { - "voter": "xiaohui", - "rshares": "28648120983" + "rshares": "28648120983", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "1293711711" + "rshares": "1293711711", + "voter": "elfkitchen" }, { - "voter": "xiaokongcom", - "rshares": "895620436" + "rshares": "895620436", + "voter": "xiaokongcom" }, { - "voter": "eneismijmich", - "rshares": "46605026907" + "rshares": "46605026907", + "voter": "eneismijmich" }, { - "voter": "xianjun", - "rshares": "1805414369" + "rshares": "1805414369", + "voter": "xianjun" }, { - "voter": "microluck", - "rshares": "118221929" + "rshares": "118221929", + "voter": "microluck" }, { - "voter": "dinamitduo", - "rshares": "2539918110" + "rshares": "2539918110", + "voter": "dinamitduo" }, { - "voter": "pompe72", - "rshares": "88481667" + "rshares": "88481667", + "voter": "pompe72" }, { - "voter": "machinelearning", - "rshares": "14946610388" + "rshares": "14946610388", + "voter": "machinelearning" }, { - "voter": "workout", - "rshares": "61087248" + "rshares": "61087248", + "voter": "workout" }, { - "voter": "onetree", - "rshares": "8856106682" + "rshares": "8856106682", + "voter": "onetree" }, { - "voter": "richardcrill", - "rshares": "4900461398" + "rshares": "4900461398", + "voter": "richardcrill" }, { - "voter": "sponge-bob", - "rshares": "26571947789" + "rshares": "26571947789", + "voter": "sponge-bob" }, { - "voter": "brains", - "rshares": "27673075341" + "rshares": "27673075341", + "voter": "brains" }, { - "voter": "anomaly", - "rshares": "271441624" + "rshares": "271441624", + "voter": "anomaly" }, { - "voter": "ola1", - "rshares": "98577200" + "rshares": "98577200", + "voter": "ola1" }, { - "voter": "iuliuspro", - "rshares": "1199700175" + "rshares": "1199700175", + "voter": "iuliuspro" }, { - "voter": "aksinya", - "rshares": "1259790018" + "rshares": "1259790018", + "voter": "aksinya" }, { - "voter": "computerscience", - "rshares": "164253196" + "rshares": "164253196", + "voter": "computerscience" }, { - "voter": "hanai", - "rshares": "8448674998" + "rshares": "8448674998", + "voter": "hanai" } ], + "author": "eneismijmich", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": false, - "total_votes": 67, - "flag_weight": 0.0 - }, "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/mindfulness/@eneismijmich/4rgubt-journey-of-life", - "blacklists": [] - }, - { - "post_id": 960548, - "author": "kommienezuspadt", - "permlink": "bringing-characters-and-worlds-to-life-an-ode-to-the-steemit-creators", - "category": "art", - "title": "Bringing worlds and characters to life; an ode to the Steemit creators!", - "body": "\n

\n

My entire life, I knew however things shook out, I’d eventually be making comic books as a career. At 36, I’m later to the party than I originally anticipated, but I’ve had three decades to prepare for this! I remember as a kid, just being enamored with comic book art […and still am]. For years, I’d draw these snake characters during class with my friend Neal. Just page after endless page of snakes killing each other. The kind of gratuitous fantasy violence that defines weirdos in high school.

\n

Eventually, photography took over my life, but I still read comics, thought about comics and drew comics when I managed to make time. A couple years ago I began stringing together a story for a comic called THEIA. A sci-fi conspiracy story rooted in the real world, based on actual science. I learned how to format full script for comics and graphic novels […you can read the finished THEIA script in my previous blog, “Full script of THEIA sci-fi comic book! Exclusively on Steemit!”]. This was a big divergence than my hack and slash snake comics with Neal […who’s stories progressed with each turn of the page, like a Miyazaki film, but really horrible].

\n

\n

It was during the process of writing the first draft for THEIA that I realized all these years I’ve been so drawn to comics, the real allure for me was story telling and character creation, even more than great art. I’ve been creating comics my entire life, and thus, creating characters along the way. Once I began disciplining myself with taking writing more seriously, I discovered other helpful tools to aide in the creation process. I began taking  inventories, outlining in depth documentation of each characters lives, affiliations and personalities. 

\n

Character profiles are something I’ve done for 20 years. I mimicked my favorite fantasy artists like Gerald Brom, Boris Vallejo and the one and only, Frank Frazetta. I’d seen pencil sketches of their concept designs with monsters, heroes and heroines, and just did my best to emulate them. I used to draw the typical front, side, three-quarter and head sketches as a reference bible […granted, much easier when it was just snakes].

\n

\n

I’ve been enjoying a renaissance of creativity since committing to doing comics full time, and character creation is where I spend most of my time. THEIA is still my priority as I have an active Patreon campaign and those pledging support are doing so for that particular title. I do, however, have two other stories I’m developing which are currently knee deep in the character creation process. A Bukowski-esk pulp crime genre during the late 80’s following a private investigator throughout his struggle with sobriety in Queens, NY.

\n

\n

The other is a dark ghost story taking place in the mid-1800’s, surrounding a recently deceased, troubled soul that finds himself caught between the realm of the living, and the afterlife; unable to pass for fear of judgement after a life of heinous acts. The characters in this story were inspired by my most interesting friends, and obscure tales of macabre lore during the industrial revolution and the Southwestern US history.

\n

I wish I was further along in my pursuit of story telling, world building and character creation. I wish I had decades of experience to share here on Steemit. I don’t want to come across like I’m the authority on these complex, disciplined skills; I’ve only been seriously absorbing the art for a couple of years. I imagine, however, there are quite a few new writers, artists and creators here, navigating their own discoveries and process. With that in mind, [and in the spirit of all the things that makes Steemit great for me personally] here a few techniques I use to further my writing and a few resources I’ve found helpful in house, right here on Steemit.

\n

• Real-life Inspiration: As mentioned, take inspiration from people in life. Friends, or even family. Accentuate the personalities. Exaggerate the quirks or circumstances. For me personally, it’s a big help to to have someone in mind when drawing, and developing a character.

\n

• Character Inventories: Write up an involved character inventory […sometimes called a character bible]. A reference of everything you can imagine that defines that character. Their ethnicity, background, where they were born, how old they are, where they went to college, their diet, etc. It’s tedious if you’re working on a character heavy story with a big “cast”, but it pays dividends. Once you have those inventories, you can stick characters in situations and the story literally writes itself. If you have a character that’s a passionate vegan, you can immediately come up with dozens of possibilities if they were accidentally locked in a butcher’s freezer. Same with politics, religious, social issues. It really unloads much of the burden of dreaming up a brilliant scene.

\n

\n

• Name Generators: Name generators are something I rely on quite a bit. There are many available online. They’re usually free, and they’re a great place to launch in to naming a character. Often times, once you have a name, more of the personality and background unfolds organically. www.seventhsanctum.com has an excellent list of name generators tailored specifically for several genres and character types.

\n

• Research: This is one of those things that seems obvious, but I challenge you to go deeper. For my ghost story, I started researching life in the mid-1800’s in the Southwest and Dust Bowl of the United States. As I dug through historical sites, I found some of the events of that time. A few hours in, I read about droughts and plagues, which would have been rich content for a story, but going even deeper, I read about these crazy grasshopper plagues! Even deeper, I found accounts of specific families and individuals that described enormous clouds of locusts that swept through their homes and ate everything, including the clothes off their bodies! I encourage you to obsessively push through references, way past where most people would get their first idea and start writing. Beyond that is where you’re going to unearth something truly unique and memorable. I’ve already written a treatment for this epic locust plague in my ghost story […sort of nervous about what that’s going to be like to draw, though].

\n

• Don’t Lose The Magic: For me, the magic happens in the moments before I fall asleep. Without fail, that’s where I get my best, originally ideas. Sometimes it’s just a small line a dialog. Other times it’s as vague as a plot point. It’s a tough discipline to wake yourself up and write it down, but that […for me] is where the magic happens. It’s invaluable, and worth the trouble of having to fall back asleep. I jot things down in the Notes app of my phone. I have some friends that just wake up and make audio recordings. You might get your best ideas during different times. Sometimes I have brilliant moments on long drives. Either way, document it! You’ll be glad you did.

\n

Honestly, Steemit has been a revolution for me as well. Since the platform is incentivized, there is a tremendous wealth of references on writing, drawing, how-to’s. Beyond that, I spent much of my time reading and curating novels and short stories posted by the authors bringing their work to the site. Just this morning, I found a comprehensive article by @jamielefay titled “Steemit and the future of book publishing”. Everything here, totally relevant if you’re creating comics or graphic novels.

\n

\n

Keep writing, creating and sharing! More work from my comic, THIEA, and other stories to come. I’d love feedback and constructive criticism.

\n

I post daily. Follow me @kommienezuspadt so you don’t miss a post.

\n", + "blacklists": [], + "body": "You must have heard that life is a journey, not a destination. This is the big truth that we, repeatedly, understand superficially. Often we are so focused on the goal, that we completely forget to enjoy the path.\n\nhttps://puu.sh/rbX2i/70e07ec186.png\n\nWhen we achieve the goal, we forget to enjoy it and immediately create a new goal. That is not life, this is racing with life. I am certain that you will not be happy, bur rather tired. Soul searches for the experience, while the mind and ego give signs if something is good or bad for us. Soul is completely indifferent. For the soul, every experience means celebration, while you are maybe crying because of the mind, to whom literally a lot of things does not make sense. \n\nThe same applies to the transformation called *death*. We celebrate resurrection as the greatest symbol of life, and then we are crying in the moment of someone's death. The mind is strange, isn't it?\n\nhttps://puu.sh/rbX1U/3cc83557c6.png\n\nRelax. It doesn't matter where you are in your level of expansion, you can't miss the road to home. While you are breathing, you are on the right track. Try to accept this moment as a moment in which there is no goal, and there is no end. The game never ends. This is excellent news. We came here to play, not to win. The game ends with victory, and God's Child in us still wants to play.\n\nOne beautiful wisdom reminds us: *\"Everything will be fine. If it isn't fine, then it isn't the end.\"* You always have the chance for new choices. This is very important to understand. You shouldn't hate the process just because you are not on your imaginary goal. You trust the process. You are exactly where your soul wants you to be. Don't let your mind tell you any different. \n\nhttps://puu.sh/rbXjG/ea493b7d14.png\n\nEverything is always a matter of the focus on things you have instead of the things you are missing. Today, again you are taking for granted the things that once were a goal. You forget to enjoy. Time is only an illusion of the mind. What if that is the point that you current process wants to teach you? If time is illusion, and it is, what's the hurry?\n\nhttps://puu.sh/rbWSn/313549d802.png\n\nTake a deep breath in and out. Experience life in the breath. The only goal is hiding in the breath of life. Everything is good, just the way it is. Don't forget that nothing ever happens without the God's blessing. Don't forget that you are guided. And, the most important, don't forget that we would most certainly go wrong if we'd try to determine what is the best time for us. The one who sees the big picture knows where you're headed and where you want to arrive.\n\nhttps://puu.sh/rbWLA/86e34b50b7.png\n\nTrust the process. It is the true test of our faith and wisdom. And enjoy. Without it nothing makes sense, right?\nThe sentence that many repeat in the end of the road: *\"I should've enjoyed more!\"*\n\nAll our life is a mere blink of an eye in the eternity. It is too small for such amount of worry. The life is not a serious thing, just the opposite. Life is the experience game. The point is not in the destination. The journey is our only destination. Isn't it then wiser to enjoy right away?\n\nhttps://puu.sh/rbX8F/2ea42f6dc9.png\n\n*\"Success isn't measured by money or material things.*\n*Success is measured by the amount of joy you feel.\"*\n\nFor more awesome images check this guy: [Psychedelic Maniac](thepsychedelicmaniac.tumblr.com)", + "category": "mindfulness", + "children": 0, + "created": "2016-09-15T18:31:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, "json_metadata": { - "tags": [ - "art", - "writing", - "story", - "blog", - "comic" - ], - "users": [ - "jamielefay" - ], "image": [ - "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0104.jpg", - "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0105.jpg", - "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0106.jpg", - "http://www.madeineighty.com/wp-content/uploads/2015/07/SketchUpdate004.jpg", - "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0107.jpg", - "http://www.madeineighty.com/wp-content/uploads/2015/07/SketchUpdate011.jpg" + "https://puu.sh/rbX2i/70e07ec186.png", + "https://puu.sh/rbX1U/3cc83557c6.png", + "https://puu.sh/rbXjG/ea493b7d14.png", + "https://puu.sh/rbWSn/313549d802.png", + "https://puu.sh/rbWLA/86e34b50b7.png", + "https://puu.sh/rbX8F/2ea42f6dc9.png" ], "links": [ - "www.theiacomic.com", - "https://steemit.com/writing/@kommienezuspadt/full-script-of-theia-sci-fi-comic-book-theia-exclusively-on-steemit", - "www.seventhsanctum.com", - "https://steemit.com/steemit/@jamielefay/steemit-and-the-future-of-book-publishing", - "https://steemit.com/@kommienezuspadt" + "thepsychedelicmaniac.tumblr.com" + ], + "tags": [ + "mindfulness", + "life", + "health", + "psychology", + "philosophy" ] }, - "created": "2016-09-15T18:53:42", - "updated": "2016-09-15T19:11:12", - "depth": 0, - "children": 0, - "net_rshares": 9343647949820, - "is_paidout": false, - "payout_at": "2016-09-16T19:14:49", - "payout": 6.866, - "pending_payout_value": "6.866 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 14809262337539, + "payout": 15.259, + "payout_at": "2016-09-22T18:31:45", + "pending_payout_value": "15.259 HBD", + "percent_hbd": 10000, + "permlink": "4rgubt-journey-of-life", + "post_id": 1257103, "promoted": "0.000 HBD", "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 67 + }, + "title": "Journey of life", + "updated": "2016-09-15T18:51:54", + "url": "/mindfulness/@eneismijmich/4rgubt-journey-of-life" + }, + { "active_votes": [ { - "voter": "riverhead", - "rshares": "4134640392195" + "rshares": "4134640392195", + "voter": "riverhead" }, { - "voter": "lovejoy", - "rshares": "253514770855" + "rshares": "253514770855", + "voter": "lovejoy" }, { - "voter": "joseph", - "rshares": "1535071696382" + "rshares": "1535071696382", + "voter": "joseph" }, { - "voter": "idol", - "rshares": "8927535677" + "rshares": "8927535677", + "voter": "idol" }, { - "voter": "jocelyn", - "rshares": "1536625837" + "rshares": "1536625837", + "voter": "jocelyn" }, { - "voter": "craig-grant", - "rshares": "374437048490" + "rshares": "374437048490", + "voter": "craig-grant" }, { - "voter": "eeks", - "rshares": "29966325092" + "rshares": "29966325092", + "voter": "eeks" }, { - "voter": "fkn", - "rshares": "1511911763" + "rshares": "1511911763", + "voter": "fkn" }, { - "voter": "elishagh1", - "rshares": "1987313581" + "rshares": "1987313581", + "voter": "elishagh1" }, { - "voter": "richman", - "rshares": "7803257741" + "rshares": "7803257741", + "voter": "richman" }, { - "voter": "nanzo-scoop", - "rshares": "584301957019" + "rshares": "584301957019", + "voter": "nanzo-scoop" }, { - "voter": "mummyimperfect", - "rshares": "172753954134" + "rshares": "172753954134", + "voter": "mummyimperfect" }, { - "voter": "coar", - "rshares": "313699965" + "rshares": "313699965", + "voter": "coar" }, { - "voter": "murh", - "rshares": "1061283659" + "rshares": "1061283659", + "voter": "murh" }, { - "voter": "error", - "rshares": "2003404389" + "rshares": "2003404389", + "voter": "error" }, { - "voter": "ak2020", - "rshares": "49581638772" + "rshares": "49581638772", + "voter": "ak2020" }, { - "voter": "alexc", - "rshares": "206092862903" + "rshares": "206092862903", + "voter": "alexc" }, { - "voter": "kimziv", - "rshares": "192336700354" + "rshares": "192336700354", + "voter": "kimziv" }, { - "voter": "emily-cook", - "rshares": "75335893384" + "rshares": "75335893384", + "voter": "emily-cook" }, { - "voter": "superfreek", - "rshares": "2187607792" + "rshares": "2187607792", + "voter": "superfreek" }, { - "voter": "furion", - "rshares": "7380892516" + "rshares": "7380892516", + "voter": "furion" }, { - "voter": "tasman", - "rshares": "240666456" + "rshares": "240666456", + "voter": "tasman" }, { - "voter": "steem1653", - "rshares": "2632467953" + "rshares": "2632467953", + "voter": "steem1653" }, { - "voter": "creemej", - "rshares": "33739229218" + "rshares": "33739229218", + "voter": "creemej" }, { - "voter": "poseidon", - "rshares": "4195475503" + "rshares": "4195475503", + "voter": "poseidon" }, { - "voter": "nin0000", - "rshares": "472134488" + "rshares": "472134488", + "voter": "nin0000" }, { - "voter": "positive", - "rshares": "1226120506" + "rshares": "1226120506", + "voter": "positive" }, { - "voter": "sisterholics", - "rshares": "31601214153" + "rshares": "31601214153", + "voter": "sisterholics" }, { - "voter": "laonie", - "rshares": "1117528556435" + "rshares": "1117528556435", + "voter": "laonie" }, { - "voter": "myfirst", - "rshares": "38642686402" + "rshares": "38642686402", + "voter": "myfirst" }, { - "voter": "somebody", - "rshares": "233320672689" + "rshares": "233320672689", + "voter": "somebody" }, { - "voter": "flysaga", - "rshares": "8723640942" + "rshares": "8723640942", + "voter": "flysaga" }, { - "voter": "gmurph", - "rshares": "833888549" + "rshares": "833888549", + "voter": "gmurph" }, { - "voter": "midnightoil", - "rshares": "50110479436" + "rshares": "50110479436", + "voter": "midnightoil" }, { - "voter": "xiaohui", - "rshares": "128918653572" + "rshares": "128918653572", + "voter": "xiaohui" }, { - "voter": "elfkitchen", - "rshares": "6306903180" + "rshares": "6306903180", + "voter": "elfkitchen" }, { - "voter": "xiaokongcom", - "rshares": "4030335230" + "rshares": "4030335230", + "voter": "xiaokongcom" }, { - "voter": "xianjun", - "rshares": "8124462008" + "rshares": "8124462008", + "voter": "xianjun" }, { - "voter": "microluck", - "rshares": "546776422" + "rshares": "546776422", + "voter": "microluck" }, { - "voter": "movievertigo", - "rshares": "3562389763" + "rshares": "3562389763", + "voter": "movievertigo" }, { - "voter": "steemitpatina", - "rshares": "4633082667" + "rshares": "4633082667", + "voter": "steemitpatina" }, { - "voter": "rusla", - "rshares": "100126866" + "rshares": "100126866", + "voter": "rusla" }, { - "voter": "kommienezuspadt", - "rshares": "17087288555" + "rshares": "17087288555", + "voter": "kommienezuspadt" }, { - "voter": "mikkolyytinen", - "rshares": "3030462572" + "rshares": "3030462572", + "voter": "mikkolyytinen" }, { - "voter": "anomaly", - "rshares": "271448835" + "rshares": "271448835", + "voter": "anomaly" }, { - "voter": "ola1", - "rshares": "123221500" + "rshares": "123221500", + "voter": "ola1" }, { - "voter": "rayzzz", - "rshares": "51615652" + "rshares": "51615652", + "voter": "rayzzz" }, { - "voter": "zombiedoll", - "rshares": "796357358" + "rshares": "796357358", + "voter": "zombiedoll" }, { - "voter": "nazmood", - "rshares": "50820410" + "rshares": "50820410", + "voter": "nazmood" } ], + "author": "kommienezuspadt", + "author_payout_value": "0.000 HBD", "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\n

My entire life, I knew however things shook out, I\u2019d eventually be making comic books as a career. At 36, I\u2019m later to the party than I originally anticipated, but I\u2019ve had three decades to prepare for this! I remember as a kid, just being enamored with comic book art [\u2026and still am]. For years, I\u2019d draw these snake characters during class with my friend Neal. Just page after endless page of snakes killing each other. The kind of gratuitous fantasy violence that defines weirdos in high school.

\n

Eventually, photography took over my life, but I still read comics, thought about comics and drew comics when I managed to make time. A couple years ago I began stringing together a story for a comic called THEIA. A sci-fi conspiracy story rooted in the real world, based on actual science. I learned how to format full script for comics and graphic novels [\u2026you can read the finished THEIA script in my previous blog, \u201cFull script of THEIA sci-fi comic book! Exclusively on Steemit!\u201d]. This was a big divergence than my hack and slash snake comics with Neal [\u2026who\u2019s stories progressed with each turn of the page, like a Miyazaki film, but really horrible].

\n

\n

It was during the process of writing the first draft for THEIA that I realized all these years I\u2019ve been so drawn to comics, the real allure for me was story telling and character creation, even more than great art. I\u2019ve been creating comics my entire life, and thus, creating characters along the way. Once I began disciplining myself with taking writing more seriously, I discovered other helpful tools to aide in the creation process. I began taking  inventories, outlining in depth documentation of each characters lives, affiliations and personalities. 

\n

Character profiles are something I\u2019ve done for 20 years. I mimicked my favorite fantasy artists like Gerald Brom, Boris Vallejo and the one and only, Frank Frazetta. I\u2019d seen pencil sketches of their concept designs with monsters, heroes and heroines, and just did my best to emulate them. I used to draw the typical front, side, three-quarter and head sketches as a reference bible [\u2026granted, much easier when it was just snakes].

\n

\n

I\u2019ve been enjoying a renaissance of creativity since committing to doing comics full time, and character creation is where I spend most of my time. THEIA is still my priority as I have an active Patreon campaign and those pledging support are doing so for that particular title. I do, however, have two other stories I\u2019m developing which are currently knee deep in the character creation process. A Bukowski-esk pulp crime genre during the late 80\u2019s following a private investigator throughout his struggle with sobriety in Queens, NY.

\n

\n

The other is a dark ghost story taking place in the mid-1800\u2019s, surrounding a recently deceased, troubled soul that finds himself caught between the realm of the living, and the afterlife; unable to pass for fear of judgement after a life of heinous acts. The characters in this story were inspired by my most interesting friends, and obscure tales of macabre lore during the industrial revolution and the Southwestern US history.

\n

I wish I was further along in my pursuit of story telling, world building and character creation. I wish I had decades of experience to share here on Steemit. I don\u2019t want to come across like I\u2019m the authority on these complex, disciplined skills; I\u2019ve only been seriously absorbing the art for a couple of years. I imagine, however, there are quite a few new writers, artists and creators here, navigating their own discoveries and process. With that in mind, [and in the spirit of all the things that makes Steemit great for me personally] here a few techniques I use to further my writing and a few resources I\u2019ve found helpful in house, right here on Steemit.

\n

\u2022 Real-life Inspiration: As mentioned, take inspiration from people in life. Friends, or even family. Accentuate the personalities. Exaggerate the quirks or circumstances. For me personally, it\u2019s a big help to to have someone in mind when drawing, and developing a character.

\n

\u2022 Character Inventories: Write up an involved character inventory [\u2026sometimes called a character bible]. A reference of everything you can imagine that defines that character. Their ethnicity, background, where they were born, how old they are, where they went to college, their diet, etc. It\u2019s tedious if you\u2019re working on a character heavy story with a big \u201ccast\u201d, but it pays dividends. Once you have those inventories, you can stick characters in situations and the story literally writes itself. If you have a character that\u2019s a passionate vegan, you can immediately come up with dozens of possibilities if they were accidentally locked in a butcher\u2019s freezer. Same with politics, religious, social issues. It really unloads much of the burden of dreaming up a brilliant scene.

\n

\n

\u2022 Name Generators: Name generators are something I rely on quite a bit. There are many available online. They\u2019re usually free, and they\u2019re a great place to launch in to naming a character. Often times, once you have a name, more of the personality and background unfolds organically. www.seventhsanctum.com has an excellent list of name generators tailored specifically for several genres and character types.

\n

\u2022 Research: This is one of those things that seems obvious, but I challenge you to go deeper. For my ghost story, I started researching life in the mid-1800\u2019s in the Southwest and Dust Bowl of the United States. As I dug through historical sites, I found some of the events of that time. A few hours in, I read about droughts and plagues, which would have been rich content for a story, but going even deeper, I read about these crazy grasshopper plagues! Even deeper, I found accounts of specific families and individuals that described enormous clouds of locusts that swept through their homes and ate everything, including the clothes off their bodies! I encourage you to obsessively push through references, way past where most people would get their first idea and start writing. Beyond that is where you\u2019re going to unearth something truly unique and memorable. I\u2019ve already written a treatment for this epic locust plague in my ghost story [\u2026sort of nervous about what that\u2019s going to be like to draw, though].

\n

\u2022 Don\u2019t Lose The Magic: For me, the magic happens in the moments before I fall asleep. Without fail, that\u2019s where I get my best, originally ideas. Sometimes it\u2019s just a small line a dialog. Other times it\u2019s as vague as a plot point. It\u2019s a tough discipline to wake yourself up and write it down, but that [\u2026for me] is where the magic happens. It\u2019s invaluable, and worth the trouble of having to fall back asleep. I jot things down in the Notes app of my phone. I have some friends that just wake up and make audio recordings. You might get your best ideas during different times. Sometimes I have brilliant moments on long drives. Either way, document it! You\u2019ll be glad you did.

\n

Honestly, Steemit has been a revolution for me as well. Since the platform is incentivized, there is a tremendous wealth of references on writing, drawing, how-to\u2019s. Beyond that, I spent much of my time reading and curating novels and short stories posted by the authors bringing their work to the site. Just this morning, I found a comprehensive article by @jamielefay titled \u201cSteemit and the future of book publishing\u201d. Everything here, totally relevant if you\u2019re creating comics or graphic novels.

\n

\n

Keep writing, creating and sharing! More work from my comic, THIEA, and other stories to come. I\u2019d love feedback and constructive criticism.

\n

I post daily. Follow me @kommienezuspadt so you don\u2019t miss a post.

\n", + "category": "art", + "children": 0, + "created": "2016-09-15T18:53:42", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0104.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0105.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0106.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/SketchUpdate004.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/steemit0107.jpg", + "http://www.madeineighty.com/wp-content/uploads/2015/07/SketchUpdate011.jpg" + ], + "links": [ + "www.theiacomic.com", + "https://steemit.com/writing/@kommienezuspadt/full-script-of-theia-sci-fi-comic-book-theia-exclusively-on-steemit", + "www.seventhsanctum.com", + "https://steemit.com/steemit/@jamielefay/steemit-and-the-future-of-book-publishing", + "https://steemit.com/@kommienezuspadt" + ], + "tags": [ + "art", + "writing", + "story", + "blog", + "comic" + ], + "users": [ + "jamielefay" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 9343647949820, + "payout": 6.848, + "payout_at": "2016-09-22T18:53:42", + "pending_payout_value": "6.848 HBD", + "percent_hbd": 10000, + "permlink": "bringing-characters-and-worlds-to-life-an-ode-to-the-steemit-creators", + "post_id": 1257344, + "promoted": "0.000 HBD", + "replies": [], "stats": { - "hide": false, + "flag_weight": 0.0, "gray": false, - "total_votes": 49, - "flag_weight": 0.0 + "hide": false, + "total_votes": 49 }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/art/@kommienezuspadt/bringing-characters-and-worlds-to-life-an-ode-to-the-steemit-creators", - "blacklists": [] + "title": "Bringing worlds and characters to life; an ode to the Steemit creators!", + "updated": "2016-09-15T19:11:12", + "url": "/art/@kommienezuspadt/bringing-characters-and-worlds-to-life-an-ode-to-the-steemit-creators" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout_comments.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout_comments.pat.json index cacf385b..76399085 100644 --- a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout_comments.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_payout_comments.pat.json @@ -439,12 +439,12 @@ "net_rshares": 77833655363992, "parent_author": "steemdrive", "parent_permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream", - "payout": 852.555, - "payout_at": "2016-09-24T19:41:42", - "pending_payout_value": "852.555 HBD", - "percent_steem_dollars": 10000, + "payout": 852.567, + "payout_at": "2016-08-31T16:43:21", + "pending_payout_value": "852.567 HBD", + "percent_hbd": 10000, "permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t164320100z", - "post_id": 733019, + "post_id": 969220, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -770,7 +770,7 @@ ], "author": "charlieshrem", "author_payout_value": "0.000 HBD", - "author_reputation": 67.32, + "author_reputation": 25.0, "beneficiaries": [], "blacklists": [], "body": "I have a series of posts I'm writing now about socioeconomic observations in prison. If the Steemit community likes it, Ill post it here exclusively.", @@ -789,12 +789,12 @@ "net_rshares": 59091129639172, "parent_author": "dennygalindo", "parent_permlink": "re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185037477z", - "payout": 545.728, - "payout_at": "2016-09-16T21:13:42", - "pending_payout_value": "545.728 HBD", - "percent_steem_dollars": 10000, + "payout": 545.73, + "payout_at": "2016-08-23T18:55:27", + "pending_payout_value": "545.730 HBD", + "percent_hbd": 10000, "permlink": "re-dennygalindo-re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185524881z", - "post_id": 630864, + "post_id": 839374, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -950,12 +950,12 @@ "net_rshares": 44306411360842, "parent_author": "dopezzz123", "parent_permlink": "why-muscles-get-sore", - "payout": 312.617, - "payout_at": "2016-09-15T23:59:09", - "pending_payout_value": "312.617 HBD", - "percent_steem_dollars": 10000, + "payout": 312.865, + "payout_at": "2016-08-22T22:50:42", + "pending_payout_value": "312.865 HBD", + "percent_hbd": 10000, "permlink": "re-dopezzz123-why-muscles-get-sore-20160815t225039946z", - "post_id": 619751, + "post_id": 825299, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1096,11 +1096,11 @@ "parent_author": "steemdrive", "parent_permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream", "payout": 249.516, - "payout_at": "2016-09-24T19:41:42", + "payout_at": "2016-08-31T16:23:00", "pending_payout_value": "249.516 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t162300868z", - "post_id": 732832, + "post_id": 968989, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1273,11 +1273,11 @@ "parent_author": "smooth", "parent_permlink": "re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t042406700z", "payout": 227.842, - "payout_at": "2016-09-16T04:46:15", + "payout_at": "2016-08-23T04:52:51", "pending_payout_value": "227.842 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t045252952z", - "post_id": 622869, + "post_id": 829289, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1378,12 +1378,12 @@ "net_rshares": 37894124714862, "parent_author": "stellabelle", "parent_permlink": "re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t150054378z", - "payout": 218.456, - "payout_at": "2016-09-20T07:22:48", - "pending_payout_value": "218.456 HBD", - "percent_steem_dollars": 10000, + "payout": 218.51, + "payout_at": "2016-08-27T21:35:15", + "pending_payout_value": "218.510 HBD", + "percent_hbd": 10000, "permlink": "re-stellabelle-re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t213500128z", - "post_id": 687886, + "post_id": 911740, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1558,11 +1558,11 @@ "parent_author": "jamtaylor", "parent_permlink": "steemit-photo-challenge-4-winners-announcement-guest-judge-condra", "payout": 218.336, - "payout_at": "2016-09-15T23:37:45", + "payout_at": "2016-08-22T14:23:27", "pending_payout_value": "218.336 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t142348222z", - "post_id": 613425, + "post_id": 817341, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1691,12 +1691,12 @@ "net_rshares": 35935996353857, "parent_author": "jamtaylor", "parent_permlink": "steemit-photo-challenge-4-winners-announcement-guest-judge-condra", - "payout": 215.088, - "payout_at": "2016-09-15T23:37:45", - "pending_payout_value": "215.088 HBD", - "percent_steem_dollars": 10000, + "payout": 215.092, + "payout_at": "2016-08-22T16:39:03", + "pending_payout_value": "215.092 HBD", + "percent_hbd": 10000, "permlink": "re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t163904911z", - "post_id": 615071, + "post_id": 819413, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1793,12 +1793,12 @@ "net_rshares": 35682478060776, "parent_author": "blocktalk", "parent_permlink": "blocktalk-with-nexus-colin-cantrell-question-thread", - "payout": 212.366, - "payout_at": "2016-09-16T00:01:18", - "pending_payout_value": "212.366 HBD", - "percent_steem_dollars": 10000, + "payout": 212.371, + "payout_at": "2016-08-22T19:46:09", + "pending_payout_value": "212.371 HBD", + "percent_hbd": 10000, "permlink": "re-blocktalk-with-nexus-colin-cantrell-question-thread-20160815t194601", - "post_id": 617412, + "post_id": 822331, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -1900,11 +1900,11 @@ "parent_author": "gmalhotra", "parent_permlink": "re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t025813753z", "payout": 210.101, - "payout_at": "2016-09-20T07:57:42", + "payout_at": "2016-08-27T03:22:36", "pending_payout_value": "210.101 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gmalhotra-re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t032236858z", - "post_id": 678887, + "post_id": 900160, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -2002,11 +2002,11 @@ "parent_author": "dopezzz123", "parent_permlink": "why-muscles-get-sore", "payout": 208.151, - "payout_at": "2016-09-15T23:59:09", + "payout_at": "2016-08-22T22:56:39", "pending_payout_value": "208.151 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-dopezzz123-why-muscles-get-sore-20160815t225638685z", - "post_id": 619811, + "post_id": 825378, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -2100,11 +2100,11 @@ "parent_author": "blocktrades", "parent_permlink": "blocktrades-witness-report-for-3rd-week-of-august", "payout": 204.392, - "payout_at": "2016-09-20T02:41:45", + "payout_at": "2016-08-26T21:34:42", "pending_payout_value": "204.392 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-blocktrades-blocktrades-witness-report-for-3rd-week-of-august-20160819t213441316z", - "post_id": 675843, + "post_id": 896285, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -2190,11 +2190,11 @@ "parent_author": "steemed", "parent_permlink": "re-dantheman-our-corrupt-sense-of-fairness-20160820t035220528z", "payout": 196.246, - "payout_at": "2016-09-20T07:22:48", + "payout_at": "2016-08-27T09:06:27", "pending_payout_value": "196.246 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z", - "post_id": 681168, + "post_id": 903103, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -2480,11 +2480,11 @@ "parent_author": "bacchist", "parent_permlink": "dan-needs-to-be-stopped", "payout": 164.026, - "payout_at": "2016-09-17T19:51:06", + "payout_at": "2016-08-24T04:58:03", "pending_payout_value": "164.026 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-bacchist-dan-needs-to-be-stopped-20160817t045803929z", - "post_id": 637043, + "post_id": 847280, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -2626,11 +2626,11 @@ "parent_author": "dantheman", "parent_permlink": "why-do-we-fight-to-change-the-world", "payout": 160.617, - "payout_at": "2016-10-02T19:14:21", + "payout_at": "2016-09-08T18:48:39", "pending_payout_value": "160.617 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-dantheman-why-do-we-fight-to-change-the-world-20160901t184948317z", - "post_id": 826676, + "post_id": 1088538, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -2696,11 +2696,11 @@ "parent_author": "litrbooh", "parent_permlink": "budushee-steemit-nuzhna-li-reklama-v-steemit", "payout": 149.954, - "payout_at": "2016-09-24T02:46:54", + "payout_at": "2016-08-31T03:37:03", "pending_payout_value": "149.954 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-litrbooh-budushee-steemit-nuzhna-li-reklama-v-steemit-20160824t033703760z", - "post_id": 726941, + "post_id": 961523, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -3321,12 +3321,12 @@ "net_rshares": 42304792392028, "parent_author": "steemitblog", "parent_permlink": "announcing-steem-0-14-0-release-candidate", - "payout": 141.827, - "payout_at": "2016-10-04T01:16:51", - "pending_payout_value": "141.827 HBD", - "percent_steem_dollars": 10000, + "payout": 144.083, + "payout_at": "2016-09-09T21:16:27", + "pending_payout_value": "144.083 HBD", + "percent_hbd": 10000, "permlink": "re-steemitblog-announcing-steem-0-14-0-release-candidate-20160902t211609578z", - "post_id": 838503, + "post_id": 1103660, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -3412,11 +3412,11 @@ "parent_author": "senderos", "parent_permlink": "the-nightmare-song", "payout": 132.545, - "payout_at": "2016-09-23T02:56:09", + "payout_at": "2016-08-30T01:17:00", "pending_payout_value": "132.545 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-senderos-the-nightmare-song-20160823t011659950z", - "post_id": 713237, + "post_id": 944107, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -3540,11 +3540,11 @@ "parent_author": "luminousvisions", "parent_permlink": "re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t021909082z", "payout": 131.347, - "payout_at": "2016-10-12T06:00:30", + "payout_at": "2016-09-18T03:56:51", "pending_payout_value": "131.347 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-luminousvisions-re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t035652062z", - "post_id": 918173, + "post_id": 1204434, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -3661,11 +3661,11 @@ "parent_author": "ned", "parent_permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", "payout": 116.932, - "payout_at": "2016-10-09T02:14:24", + "payout_at": "2016-09-15T05:07:51", "pending_payout_value": "116.932 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-ned-increasing-curation-demand-for-steem-power-and-community-interaction-20160908t050749903z", - "post_id": 889443, + "post_id": 1168452, "promoted": "0.000 HBD", "replies": [], "stats": { diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_promoted.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_promoted.pat.json index 7fdae0c9..9950e00b 100644 --- a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_promoted.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_promoted.pat.json @@ -26,11 +26,11 @@ "parent_author": "jesta", "parent_permlink": "re-bmann-re-jesta-update-on-the-steempress-theme-bounty-20160829t030152913z", "payout": 0.0, - "payout_at": "2016-09-28T10:28:51", + "payout_at": "2016-09-05T09:32:48", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-jesta-re-bmann-re-jesta-update-on-the-steempress-theme-bounty-20160829t093247333z", - "post_id": 787536, + "post_id": 1039040, "promoted": "1.000 HBD", "replies": [], "stats": { @@ -78,11 +78,11 @@ "parent_author": "lukestokes", "parent_permlink": "re-anduweb-steemit-post-promotion-and-the-dollar-auction-20160830t104200474z", "payout": 0.117, - "payout_at": "2016-09-30T13:09:21", + "payout_at": "2016-09-06T11:09:45", "pending_payout_value": "0.117 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-lukestokes-re-anduweb-steemit-post-promotion-and-the-dollar-auction-20160830t110944376z", - "post_id": 799802, + "post_id": 1054616, "promoted": "0.001 HBD", "replies": [], "stats": { diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_petrodollar.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_petrodollar.pat.json index 7d1cd5ad..2a06529c 100644 --- a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_petrodollar.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_tag_petrodollar.pat.json @@ -240,7 +240,7 @@ ], "author": "highimpactflix", "author_payout_value": "0.000 HBD", - "author_reputation": 59.9, + "author_reputation": 25.0, "beneficiaries": [], "blacklists": [], "body": "If the contents of this article/video were taught in schools, the veil of secrecy would be lifted, one of the greatest scams in history would be revealed and life just might be a little better.\n\n\u201cThe State,\u201d Bastiat wrote, \u201cis that great fiction by which everyone seeks to live at the expense of everyone else.\u201d \n
https://www.steemimg.com/images/2016/09/08/lawtiat-quote-picture.jpg9d3a8dd471c.jpg
\n\t\nThe French economist penned those words before he was able to witness another \u201cgreat fiction,\u201d which currently works to undermine ALL the labor and ALL the accumulated wealth of EVERY American and, by extension, virtually EVERY laboring individual on this planet.\n\nThis article is a little lengthy, so I created a video that's about 24 minutes long that used this article as the script. If you're a busy person (and what thinking person isn't, these days?) you can download the video and play it in your car or at down time at work or whatever. Enjoy the video, share the knowledge and leave your comments. And, of course, your upvotes are always appreciated!\n
\n\t\nWe all work for this fiction every day. People beg for this fiction. Many borrow from others to obtain this fiction. Some even kill so that they can unlawfully accumulate more of this fiction. Without this fiction you could have no clothing for your back, no roof over your head and no food for your stomach. That great fiction is the American Dollar.\n\t\nYou can pull a NOTE out of your pocket and examine it. But you would be searching in vain for any intrinsic value. The value is not found in the ink, nor the material in which the ink is impregnated, nor in the wording. In fact, the wording provides the hint you\u2019ll need to begin to realize that there is NOTHING in and of itself that imputes any value into this piece of paper \u2013 nothing, that is, but a construct of belief \u2013 oh, and one other thing. Brute force, but we\u2019ll get to that later\n
https://www.steemimg.com/images/2016/09/08/193420100020FRN20G00042149A10002cb72.jpg
\n\t\nOur Dollar\u2019s history begins with Article 1 sec. 8 of the Constitution. It states that, \u201cCongress shall have the power to coin money, regulate the value thereof and fix the standards of weights and measures.\u201d\n\t\nIn 1792 the Coinage Act was passed \u201cestablishing a mint and regulating the COINS of the U.S.\u201d This law created and defined America\u2019s money.\n\tIt called for a coin called the DOLLAR to contain about \u00be of an ounce of silver.\n\tIt also called for a Half Dollar, Quarter, Dime and Half dime \u2013 all made of silver\n\tIt called for a coin called an EAGLE, each worth 10 DOLLARS and containing a half an ounce of gold.\n\tIt also called for a Half Eagle and a Quarter Eagle. All made of Gold\n\tEach coin, according to this act, would bear an impression of Liberty, the Word Liberty and the year of coinage. \n\nThe reverse side shall have an impression of an Eagle with the inscription, \u201cUnited States of America.\u201d\n\tSo, the definition of money was \u2013 \u201cA silver coin of the United States of the value of 1/10 of an Eagle\u201d or 1 DOLLAR.\n\tAn Eagle was defined as \u201cA GOLD coin of the United States of the value of 10 DOLLARS\u201d\n\tFor the first 80 years of our history these coins were known as \u201cLawful Money.\u201d\n
http://flowinghairdollar.com/wp-content/uploads/2009/07/flowing-hair-dollar.jpg
\n\t\nIn 1794 the US mint in Philadelphia began minting coins. The illustration above is what they looked like. They were strictly composed of either GOLD or SILVER, painstakingly fashioned to the proper weight. So strict was the standard on weights and measures and so serious was the language of the U.S. Coinage Act, that Section 19 invoked the death penalty for anyone caught debasing the nation\u2019s money\n\t\nArticle 1 Section 10 of the Constitution states, \u201cNo state shall coin money, emit bills of credit, make anything but GOLD and SILVER COIN a tender of payment of debts.\u201d\n\t\u201cEmit bills of credit\u201d equates to the issuance of un-backed paper promissory notes as money. \n\tAmerica\u2019s entire economy was anchored to GOLD and SILVER by requiring the states to tender all payments in these coins. Some leaders today, however, claim that Gold is NOT money [Bernake Video]. This claim, according to the law of the land and good ole common sense, is a LIE!\n
https://www.steemimg.com/images/2016/09/08/Limits-on-State-Powerb1132.jpg
\t\nThis Gold and Silver standard stood as a PROTECTION for the people from the corrupt Banksters who love to loan out money they don\u2019t have and profit from the interest. Such a debasing practice, known as Fractional Reserve Banking, is outright Counterfeiting and, therefore, THEFT!\n\t\nThe Gold system ensured that the nation\u2019s wealth was distributed to all the people, rather than being centralized in the hands of a few. It CONSTRAINED governments from issuing un-backed notes of debt, which is what a Federal Reserve Note is today.\t\n\t\nThe fact is, many, including Benjamin Franklin, held that a dishonest money system was a main reason for the Revolutionary War. He wrote, \u201cThe refusal of King George III to allow the colonies to operate an honest money system, which freed the ordinary man from the clutches of the money manipulators, was probably the prime cause of the Revolution.\u201d\n
https://www.steemimg.com/images/2016/09/08/George_III_by-Allan-Ramsay-in-1762e80e9.jpg
\t\nTwo central banks materialized in early America in order to manipulate the nation\u2019s money supply. The 1st Bank of the United States was established in 1791, in spite of opposition from people like Thomas Jefferson, who argued against its Constitutionality and wrote, \u201cI believe that banking institutions are more dangerous to our liberties than standing armies. If the American people ever allow private banks to control the issue of their currency, first by inflation, then by deflation, the banks and corporations that will grow up\u2026 will deprive the people of all property until their children wake-up homeless on the continent their fathers conquered. The issuing power should be taken from the banks and restored to the people, to whom it properly belongs.\u201d 1st Bank\u2019s charter was revoked by James Madison.\n\t\nIn 1816 the 2nd Bank of the U.S. was formed. Andrew Jackson, sworn enemy of the Central Bank, despised the thought of private Bankers controlling America\u2019s money. Its charter was revoked in 1833.\n\t\nGold\u2019s discovery in California in 1849, caused the mint to add a 1 Dollar 10th Gold Eagle and a 20 Dollar Double Gold Eagle in order to distribute the gold across the population, honoring the founder\u2019s principle of decentralizing power by spreading the wealth.\n
https://www.steemimg.com/images/2016/09/08/California_Clipper_500cad3c.jpg
\t\nThe presence and universal acceptance of gold shackled private bankers and severely limited inflation. It is interesting to note that in the 57 years from 1833 to 1890, GOLD, priced at $20.67/oz fluctuated only 1 PENNY. From 1891 to 1930 gold fluctuated .74 CENTS from a low of $20.58 to a high of $21.32.\n\t\nIn 1861, Individual rights-Trampling President, Abraham Lincoln, financed the \u201cWar of Northern Aggression,\u201d by printing un-backed paper money, an act that debased America\u2019s money and, according to the Coinage Act of 1792, placed him under penalty of death.\n
https://www.steemimg.com/images/2016/09/08/lincoln_movie112035843.jpg
\t\nDuring this criminal act, the treasury, reeled in coins and replaced them with Lincoln\u2019s Greenback. These notes were denominated in both dollars and cents. Virtually all of America\u2019s money was converted to paper.\n\t\nIn just 4 years nearly 100% of the gains in the standard of living and the purchasing power of the dollar had been wiped out along with over 600,000 lives!\n\t\nAfter the war, the mint resumed coining money. The dollar gained value, even going through periods of increasing buying power. In 1866, contrary to the Constitution, they replaced the SILVER dime with a 5 CENT NICKLE, allowing them to quickly replenish their silver reserves. \n\t\nUnfortunately, the U.S. Government was still issuing paper dollars in the form of notes.\n\t\nHere, an 1878 $20 note reads, \u201cThis note is legal tender at its face value for all debts public and private, EXCEPT duties on imports and interest on the public debt.\u201d In other words, neither foreign nations, nor the international bankers who financed them, would accept this as money \u2013 because it wasn\u2019t money. It was a NOTE, a LOAN, an I.O.U. It was DEBT. The creators of this debt are saying, \u201cyou can use it as money among yourselves, but don\u2019t try to pay US with it!\u201d\n
https://www.steemimg.com/images/2016/09/08/20-type-10a666e.jpg
\t\nAll money, created out of thin air, is DEBT. They expect YOU to accept that debt as a fair trade for your labor, while THEY reject that debt for themselves.\n\t\nIn the 1880\u2019s the treasury began issuing a NEW kind of paper money called silver and gold certificates.\n\t\nThe legalese on these certificates reads, \u201cThis CERTIFIES that there has been deposited in the treasury of the United States, ONE silver dollar, payable to the bearer on demand.\u201d\n
https://www.steemimg.com/images/2016/09/08/US2BCurrency2B18802B1002BDollars2BSilver2BCertificatec6bf0.jpg
\nEach silver certificate represented one PHYSICAL SILVER or GOLD coin in the Treasury.\n\t\nThis bill says nothing about a \u201cnote\u201d because this isn\u2019t an I.O.U. There is NO restriction on imports or interest on the public debt. Foreign nations and international bankers would accept this as money because it WAS MONEY. However, if the government decreed that they will no longer honor that certificate, you are left with a fancy-looking piece paper.\n\t\nThe early 1900s brought men like J.P. Morgan to the forefront. Morgan, publically considered a financial luminary at the time, exploited his mass influence by publishing rumors that a prominent bank in N.Y. was insolvent. Morgan knew this would cause mass hysteria which would affect other banks as well. And it did. The public, in fear of losing their deposits, immediately began mass withdrawals. Consequently, the banks were forced to call in their loans, causing the recipients to sell their property. Thus, a spiral of bankruptcies, repossessions and turmoil emerged. Frederick Allen of LIFE Magazine later wrote, \u201cThe Morgan interests took advantage to precipitate the panic of 1907, guiding it shrewdly as it progressed.\u201d [LIFE Mag cover]\t\t\n
https://www.steemimg.com/images/2016/09/08/JP-Morgan_Carnegie-Steel_HD_768x432-16x99f66b.jpg
\t\t\nThe 1907 financial crisis, that caused the New York Stock Exchange to lose 50% from the previous year, prompted people to beg the Government to \u201cbreak the grip of the money trust.\u201d This paved the way for Morgan and his allies to step in with the solution to the problem they created\u2026 and on December 23rd 1913, the Federal Reserve was born.\n
https://www.steemimg.com/images/2016/09/08/fed_reserve22094.jpg
\t\t\nThe Federal Reserve, a cartel of international banking counterfeiters and money manipulators, began printing Federal Reserve Notes, a Government sanctioned bank note. This note, like the Greenback, which preceded it, was a demand note. It was redeemable for Gold, but only in Washington or at a member bank. If you lived far away, it was HIGHLY unlikely that you would redeem this paper for the precious metal.\t\n
https://www.steemimg.com/images/2016/09/08/federal-reserve-1914.jpgw480581d2.jpg
\t\t\nThe note itself admits that it is NOT Lawful money. Something that can be exchanged for lawful money is NOT lawful money itself.\n\t\n19 Years after the FEDs creation, in 1932, FDR, another counterfeit enabling President, also subject to the criminal penalty of death, according to the Coinage Act of 1792, demonetized gold, ending the production of gold coins, certificates and silver dollars in order to \u201cstimulate the economy.\u201d He allowed the FED to print notes that were NOT redeemable for lawful money.\n\t\nOne year later, in April of 1933, FDR issued executive order 6102 requiring all persons (under threat of $10,000 fine, up to 10 years in prison, or both) to deliver on or before May 1, 1933 their gold coins, bullion and gold certificates to the Federal Reserve in exchange for $20.67 in Federal Reserve Paper. [$10,000 = $180.000 today]\n
http://www.zerohedge.com/sites/default/files/images/user5/imageroot/2012/08/Executive_Order_6102.jpg
\t\t\nAfter the confiscation of gold and the criminalization of those holding it, gold was raised 60% to $35/oz. resulting in an immediate loss for those who had surrendered the precious metal.\n\t\nAmerica\u2019s leaders had stolen the Labor and TRUE wealth of her citizens and replaced it with worthless paper.\n\t\n11 Years later, in 1944, while WW2 continued to rage, 730 delegates from all 44 Allied nations gathered at Mount Washington Hotel in Bretton Woods, NH to establish rules for commercial and financial relations among the world\u2019s industrial states. Because of the economic and physical devastation inflicted on virtually every country involved in the war and because the U.S. emerged from that conflict as an economic and military powerhouse in possession of an estimated 50% of the world\u2019s known gold, the Bretton Woods agreement replaced the British Pound and established the U.S. Dollar as the world\u2019s reserve currency. This meant that international commodities were priced in DOLLARS.\n
https://www.steemimg.com/images/2016/09/08/bretton-woods-mount-washington-hotel55d8c.jpg\t
\nThe agreement, which gave the U.S. an incredible financial advantage, was made under the condition that those dollars would remain redeemable for gold at a consistent rate of $35/oz. But with the unrestricted, unregulated 30-year-old Federal Reserve Fox watching over the Gold-filled hen house, and its greedy fingers itching to print more notes, those nations would soon discover that entrusting your nation\u2019s wealth to a nation that had already ripped off its own citizens was a financially destructive act.\n\t\n1945 brought an end to the War, revealing two of the planets undisputed super-powers; the United States and Russia. Thus began 4 decades of sustained political and military tensions, including the ever-looming threat of mutual nuclear destruction. The Cold War had begun!\n\t\nAmerica, after Bretton Woods, entered a time of great economic recovery and prosperity. Such that, in the 18 years between 1946 and 1964 Americans were busy adding 78 million baby-booming children to the population.\n
https://www.steemimg.com/images/2016/09/08/babyboom-8462f4.jpg
\t\nHowever, as prosperous and financially beneficial as Bretton Woods was to Americans, it had a major flaw. There was nothing in the agreement to prevent the FED from expanding the supply of Federal Reserve Notes. Soon there wouldn\u2019t be enough gold to back all the notes in circulation.\n\t\n1964 brought the last year America\u2019s coins were struck with silver, finally physically detaching our national coinage from any link to precious metals.\n\t\nDuring the 60s and early 70s, as the Vietnam War intensified, it became clear to the countries that had entrusted the U.S. with their gold, that the FED was running budget deficits and flooding the world with paper dollars. The French, under Charles De Gaulle, became suspicious that the U.S. would be unable to honor its Bretton Woods obligations to redeem their excess dollars into gold and, as the French exchanged surplus dollars for Gold, the U.S. Treasury\u2019s gold stock declined alarmingly!\n\t\nRather than use his presidential powers to eliminate the counterfeiting bankers, return the U.S. to a sound money system and honor their Bretton Woods agreement, Nixon chose a different course on Aug. 15th 1971, [Nixon\u2019s address]\n
\n\u201cDefend the dollar against the speculators,\u201d sounds similar to the 1907 \u201cbreak the grip of the money trust,\u201d mantra that lead to the creation and scourge of the Federal Reserve. Nixon\u2019s decree closed the gold window, unilaterally ending the Bretton Woods agreement, and robbing EVERY nation that trusted us!\n\t\nAs a seemingly unrelated side note, the details of which rest beyond the scope of this video, Nixon, 59 days prior to this announcement of Global Theft, officially initiated the War on Drugs. This effectively gave rise to national crime, empowered drug cartels and, as the Iran/Contra scandal would later reveal, created a government monopoly and financial windfall through covert, governmentally controlled, drug trafficking and sales.\n
https://www.steemimg.com/images/2016/09/08/40-years-of-the-war-on-drugs_worst-results1dc03.jpg
\t\nIn 1973 Nixon struck a deal with King Faisal of Saudi Arabia to ONLY accept U.S. Dollars as payment for oil and to invest any excess profits in U.S. Treasury bonds, notes and bills. Military protection of Saudi Oil fields would, in return, be supplied by the U.S. By 1975 the same offer was extended to EVERY member of OPEC, who also agreed to ONLY sell their oil in U.S. Dollars.\n\tThis detachment of the U.S. Dollar from Gold and its connection to foreign oil FORCED EVERY importing nation in the world to start maintaining a constant supply of Federal Reserve Paper. In order to obtain that paper, they would have to send real physical goods to America.\nEvery nation NEEDS a robust economy in order to survive, and since you can\u2019t get oil unless you purchase dollars, the powers-that-be, who run the U.S. have ensured that there is a constant demand for those dollars. While the demand remains for dollars, the dollar will hold its value \u2013 even while the FED continues to print and type them into existence.\n\t\nThis is the origin of the PetroDollar System. Worthless paper went out, everything America wanted came in and the U.S. got very, very rich as a result. So the members of OPEC were kept in power by the U.S., while the exporter nations amassed great wealth and banked their dollars at the Federal Reserve in the United States. This is the PetroDollar cycle.\n
https://www.steemimg.com/images/2016/09/08/220-Petrodollar-e1369235061479-1024x55922b71.jpg
\t\nAfter the PetroDollar recycling system was implemented, 70% of Saudi Arabia\u2019s wealth landed in one account\u2026the Federal Reserve of N.Y. So, the U.S. kept the Saudis in power, they got rich and America had an unlimited credit card.\n\t\nHere\u2019s how it works:\nJapan needs to by oil to keep their economy moving. They make a Honda and sell it to America for dollars. They take some of those dollars and give them to OPEC. OPEC gives Japan oil for dollars because they don\u2019t accept the Yen or any other currency. OPEC, then, takes those dollars and gives them back to the U.S. at the Federal Reserve. So the Fed prints the currency and exchanges it for REAL goods from our trading partners; those countries use it to pay their oil bill and OPEC invests it back into the U.S. \u2013 PetroDollar recycling.\n\t\nAs long as oil can ONLY be purchased with dollars, and we can print them for nothing \u2013 America has its very own money tree.\n\nIn the 16 years between 1975 and 1991, the U.S. used their oil-backed currency to outspend all other nations in order to amass the most powerful weaponry and military in world history. The Soviet Union Never had a chance. With the collapse of the communist BLOC and the end of the Cold War in 1991 as well as America\u2019s emergence as the undisputed world Super Power, many believed a new era of peace and stability had begun.\n\t\nBut the powers-that-be had other ideas. Within that same year, the U.S. invaded Iraq in the 1st Gulf War, crushing the Iraqi military, destroying its infrastructure and imposing crippling sanctions which continued for the next decade (throughout H.W. Bush and Clinton\u2019s administration) resulting in the deaths of more than half a million children. Clinton\u2019s administration was fully aware of these deaths.\nThe two pillars that underpin American Supremacy are: The dollar as the World Reserve currency which is backed by the second pillar -- the awesome Might of the U.S. Military.\n\t\nIf the dollar loses its status as the world\u2019s reserve currency, there will be no more funding for the empire we\u2019ve build around the globe. And an unfunded military becomes an impotent military.\n\t\nIf that supremacy relies on other nations holding dollars for oil, then any nation which challenges that arrangement becomes the target of American discipline, through acts of war like sanctions or direct military engagement.\n\t\nIn November of 2000, Saddam Hussein, became the challenger of that arrangement by announcing that he would begin trading oil for Euros. From 2001 to the beginning of the war, Iraq exported about 3.3 billion barrels of oil. The U.S. bought 2.5 billion of those barrels\u2026but had to pay in Euros. The PetroDollar System was under threat.\n\n\t\nIt was at this time that the Bush Administration, with the help of MSM, fabricated the story of Iraq\u2019s possession of WMD\u2019s. Iraq was quickly placed on the list of \u201caxis of evil\u201d nations. [Bush video]\n\n\t\nIs it a mere coincidence that less than 10 months after a direct assault on the PetroDollar Arrangement that this happened [911 compilation video]\n
https://www.steemimg.com/images/2016/09/08/timthumb.phpsrchttp3A2F2Fwww.veteranstoday.com2Fwp-content2Fuploads2F20162F042F13930618000816_PhotoI.jpgq90w795h470zc122e73.jpg
\t\nThe horrible tragedy of that day was used as a catalyst to strip American of their freedoms, further expand the military budget and invade Iraq. Once the U.S. had control in Iraq, oil sales were immediately switched back to the dollar, costing the Iraqis 17% of their profits due to the Euro\u2019s higher value. \n\t\nThis pattern of PetroDollar protection was replayed when, in Libya, Gahdafi was in the process of organizing a block of African countries to create a gold-based currency called the Dinar, with the intent of replacing the dollar in that region. In 2011, U.S. and NATO forces destabilized and toppled the Libyan government, executing Gaddafi in the process and immediately set up the Libyan Central Bank.\n\t\nThose who control the U.S. understand that even if a few countries begin to sell their oil in another currency, it will set up a chain reaction and the dollar will collapse. They understand that there is nothing else holding up the value of the dollar at this point, and so does the rest of the world. And it is the brute force of the U.S. military that is deployed to crush each and every resistant state in the Middle East and Africa.\n\t\nChina and Russia have made it clear that they will not tolerate an attack on Iran or Syria. If Iran, their key oil-producing ally, falls \u2013 they will be unable to escape the dollar without setting off a global conflict. And since it is America who has chosen to rob other nations with their PetroDollar scheme, at whom do you think other nations will be angry for burdening them with so much forced debt?\n
https://www.steemimg.com/images/2016/09/08/petrodollar653ff.jpg
\t\nThe dollars in your pocket, represent the labor at which you worked in order to obtain them. But those dollars are debt, generated by a war-mongering cabal of elite international banking criminals who have managed to pull off the greatest heist in human history.\n\t\nWe are all in this together. We have been enslaved and it is up to us to work on creating solutions to free ourselves from the taskmasters who have fashioned our chains.\n\n-----\nI'm Brian, the owner and creator of the YouTube Channel [HighImpactFlix](https://www.youtube.com/channel/UC7KZFVVnKjiCzkxWD-Qrakg) and the HighImpactFlix [Facebook page](https://www.facebook.com/HighImpactFlix/?fref=ts). My aim is to create useful, relevant, exciting and engaging content that will inform and **IMPACT** those who take the time to view it. Bottom line: I strive to make it worth your while to check out my videos!\n
https://www.steemimg.com/images/2016/09/01/HIFFacebookcoverreal3bccb9e.png
\nThanks for watching/reading. If you enjoyed this or, if it impacted you in any positive way, consider sharing and commenting. And, if you want, Upvote and [![alt text](https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif)](https://steemit.com/@highimpactflix)
It's MUCH appreciated! Revenue generated goes back into creating even more \"in-your-face\" content. Peace!", @@ -290,11 +290,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 56330091562680, "payout": 304.451, - "payout_at": "2016-10-10T06:03:27", + "payout_at": "2016-09-16T01:45:39", "pending_payout_value": "304.451 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "the-incriminating-history-lesson-they-just-can-t-teach-in-school", - "post_id": 898258, + "post_id": 1179567, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -359,11 +359,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 13365601023, "payout": 0.0, - "payout_at": "2016-10-02T12:13:03", + "payout_at": "2016-09-07T22:48:51", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "petrodollar-in-laymen-terms", - "post_id": 817904, + "post_id": 1077374, "promoted": "0.000 HBD", "replies": [], "stats": { @@ -421,7 +421,7 @@ ], "author": "highimpactflix", "author_payout_value": "0.000 HBD", - "author_reputation": 59.9, + "author_reputation": 25.0, "beneficiaries": [], "blacklists": [], "body": "When I first created and launched this video (actually it was a series of 2 videos; Parts 1 &2) on YouTube a little over 2 years ago, it received over 2.5 million hits in a few short months and had _**TENS of THOUSANDS**_ of likes and few dislikes. Then, without warning and without explanation, YT demonetized it and finally REMOVED it. To this day, no reason was given. By every indication it was headed for the viral stratosphere!\n
http://i68.tinypic.com/2emzr4y.jpg
\nCensorship, by the way, is one of the main reasons I'm here on Steemit. \n\nI HATE this YouTube message!\n
http://i65.tinypic.com/2wme4xj.jpg
\n\nI have since repackaged and renamed the video series. Additionally, I've combined both videos into one action-packed, information-infused short film on the birth of our monetary system; tracing it's roots from the sound money of Gold and Silver \n
http://i63.tinypic.com/o91tao.gif
\n to the inception of the non-federal, treasonous Federal Reserve, \n
http://i66.tinypic.com/d4lnd.jpg
\nto the Bretton Woods accord, \n
http://i63.tinypic.com/157n1up.jpg
\nNixon's closing of the gold window (\"happy\" anniversary on that one BTW),\n
http://i65.tinypic.com/2u7m7x3.jpg
\nall the way through to the birth of the Petrodollar and the reason we're even in the Middle east. \n
http://i63.tinypic.com/3a61.jpg
\n\nAs Bastiat wrote, \"The state is that great fiction, by which everyone seeks to live at the expense of everyone else.\" And what a GREAT FICTION it is!! Enjoy the video!\n
\n\n\n____\nI'm Brian Young, owner of the HighImpactFlix YouTube channel. https://www.youtube.com/channel/UC7KZFVVnKjiCzkxWD-Qrakg \n
http://i67.tinypic.com/v7ckur.png
\nFeel free to follow me on Facebook: https://www.facebook.com/HighImpactFlix/\nInstagram @HighImpactFlix\nTwitter @HighImpactFlix\n\nCHEERS!!", @@ -457,11 +457,11 @@ "max_accepted_payout": "1000000.000 HBD", "net_rshares": 18154245111, "payout": 0.0, - "payout_at": "2016-09-17T21:28:12", + "payout_at": "2016-08-24T17:45:54", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "how-to-control-the-world-a-riveting-video-instruction-manual-full-version", - "post_id": 644359, + "post_id": 856399, "promoted": "0.000 HBD", "replies": [], "stats": { diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index 5d90959d..b1d2af41 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -60,7 +60,9 @@ test_name: Hivemind bridge_api.get_post_header not existing permlink patterns test # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - - patterntest + - patterntest # original gives no error, just no result + - failing + - xfail # no error message, just no result (and while it is like in old version we need proper error) includes: - !include common.yaml @@ -80,7 +82,12 @@ response: status_code: 200 verify_response_with: - function: validate_response:null_result + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_post_header_not_existing_permlink" + directory: "bridge_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind bridge_api.get_discussion patterns test @@ -88,7 +95,7 @@ marks: - patterntest - failing - - xfail # grey, flag_weight + - xfail # gray, flag_weight includes: - !include common.yaml @@ -115,10 +122,9 @@ --- test_name: Hivemind bridge_api.get_discussion gtg patterns test - + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge includes: - !include common.yaml @@ -145,10 +151,12 @@ --- test_name: Hivemind bridge_api.get_discussion non existing permlink patterns test - - marks: - - patterntest # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + marks: + - patterntest # original gives no error, just no result + - failing + - xfail # no error message, just no result (and while it is like in old version we need proper error) + includes: - !include common.yaml @@ -168,15 +176,19 @@ response: status_code: 200 verify_response_with: - function: validate_response:null_result + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_discussion_not_existing_permlink" + directory: "bridge_api_patterns" + error_response: true + ignore_tags: ["timestamp"] + --- test_name: Hivemind bridge_api.get_post patterns test - + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest - - failing - - xfail - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + includes: - !include common.yaml @@ -202,10 +214,10 @@ --- test_name: Hivemind bridge_api.get_post gtg patterns test - + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + includes: - !include common.yaml @@ -228,14 +240,13 @@ extra_kwargs: method: "get_post_gtg" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_account_posts patterns test - + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest - - failing - - xfail - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + includes: - !include common.yaml @@ -261,10 +272,10 @@ --- test_name: Hivemind bridge_api.get_account_posts sort blog patterns test - + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + includes: - !include common.yaml @@ -287,13 +298,13 @@ extra_kwargs: method: "get_account_posts_sort_blog" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_account_posts sort feed patterns test marks: - - patterntest - - failing - - xfail # should return posts, now its empty (hive3 hivemind) + - patterntest # should return posts, now its empty (hive3 hivemind) + includes: - !include common.yaml @@ -316,13 +327,13 @@ extra_kwargs: method: "get_account_posts_sort_feed" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_account_posts sort comments patterns test marks: - - patterntest - - failing - - xfail # should return posts, now its empty (hive3 hivemind) + - patterntest # should return posts, now its empty (hive3 hivemind) + includes: - !include common.yaml @@ -345,12 +356,15 @@ extra_kwargs: method: "get_account_posts_sort_comments" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_account_posts sort replies patterns test - + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + - failing + - xfail # flag_weight + includes: - !include common.yaml @@ -373,13 +387,13 @@ extra_kwargs: method: "get_account_posts_sort_replies" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_account_posts sort payout patterns test marks: - - patterntest - - failing - - xfail # should return posts, now its empty (hive3 hivemind) + - patterntest # should return posts, now its empty (hive3 hivemind) + includes: - !include common.yaml @@ -402,6 +416,7 @@ extra_kwargs: method: "get_account_posts_sort_payout" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_ranked_posts patterns test @@ -430,6 +445,7 @@ extra_kwargs: method: "get_ranked_posts" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_ranked_posts sort invalid patterns test @@ -493,6 +509,8 @@ marks: - patterntest + - failing + - xfail # beneficiaries as dictionary includes: - !include common.yaml @@ -522,8 +540,6 @@ marks: - patterntest - - failing - - xfail includes: - !include common.yaml @@ -580,6 +596,8 @@ marks: - patterntest + - failing + - xfail # gray includes: - !include common.yaml @@ -608,6 +626,8 @@ marks: - patterntest + - failing + - xfail # empty results (to be investigated) includes: - !include common.yaml @@ -692,10 +712,10 @@ --- test_name: Hivemind bridge_api.get_profile patterns test - + #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest - #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + includes: - !include common.yaml @@ -718,12 +738,15 @@ extra_kwargs: method: "get_profile" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_profile gtg patterns test - + #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest - #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + - failing + - xfail # plenty of differences, as if the whole routine does not work at all + includes: - !include common.yaml @@ -746,12 +769,15 @@ extra_kwargs: method: "get_profile_gtg" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_profile not existing patterns test - - marks: - - patterntest #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + marks: + - patterntest # original gives no error, just no result + - failing + - xfail # no error message, just no result (and while it is like in old version we need proper error) + includes: - !include common.yaml @@ -770,7 +796,12 @@ response: status_code: 200 verify_response_with: - function: validate_response:null_result + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_profile_not_existing_account" + directory: "bridge_api_patterns" + error_response: true + ignore_tags: ["timestamp"] --- test_name: Hivemind bridge_api.get_trending_topics patterns test @@ -1101,7 +1132,7 @@ --- test_name: Hivemind bridge_api.list_subscribers patterns test - not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest # no nonempty result possible for 5mln set @@ -1156,6 +1187,7 @@ extra_kwargs: method: "list_all_subscriptions" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test @@ -1184,6 +1216,7 @@ extra_kwargs: method: "get_relationship_between_accounts" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_relationship_between_accounts follows patterns test @@ -1212,6 +1245,7 @@ extra_kwargs: method: "get_relationship_between_accounts_follows" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_relationship_between_accounts ignores patterns test diff --git a/hivemind/tavern/validate_response.py b/hivemind/tavern/validate_response.py index 3b8980cd..0bd14d4a 100644 --- a/hivemind/tavern/validate_response.py +++ b/hivemind/tavern/validate_response.py @@ -68,10 +68,3 @@ def compare_response_with_pattern(response, method=None, directory=None, ignore_ msg = "Differences detected between response and pattern." raise PatternDiffException(msg) -def null_result(response): - response_json = response.json() - result = response_json.get("result", None) - if result: - msg = "Error detected in response: result is {} but should be null".format(result) - save_json(result) - raise PatternDiffException(msg) \ No newline at end of file -- GitLab From 0843c139a96cbd99b2e461e9dcdc61e59de955b6 Mon Sep 17 00:00:00 2001 From: ABW Date: Wed, 26 Aug 2020 13:04:29 +0200 Subject: [PATCH 43/49] [ABW]: key order fixed in two test patterns accepted usual differences in patterns: rebranding, pending payouts, post_id, escaping in json_metadata, reputation, future cashout_time, order when depending on pending payout updated comments on condenser_api new tests and marked as passing/failing properly --- ..._discussions_by_payout_limit_100.orig.json | 4462 ++++++++-------- ...t_discussions_by_payout_limit_100.pat.json | 4476 ++++++++--------- .../get_content_deleted.pat.json | 6 +- .../get_content_gtg.pat.json | 8 +- ..._by_author_before_date_no_results.pat.json | 2 +- ...t_discussions_by_payout_limit_20.orig.json | 2114 ++++---- ...st_discussions_by_payout_limit_20.pat.json | 2116 ++++---- ..._replies_by_last_update_limit_100.pat.json | 266 +- .../get_trending_tags_limit_250.pat.json | 860 ++-- .../test_condenser_api_patterns.tavern.yaml | 55 +- 10 files changed, 7191 insertions(+), 7174 deletions(-) diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.orig.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.orig.json index c1edea78..59f43e1b 100644 --- a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.orig.json +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.orig.json @@ -1,3403 +1,3403 @@ [ { - "post_id": 635692, - "author": "royaltiffany", - "permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", - "category": "test", - "title": "", - "body": "Fail ? No spam bot army...", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T02:06:00", - "last_update": "2016-08-17T02:06:00", - "depth": 1, - "children": 9, - "net_rshares": 211900981073, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.132 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 26, "active_votes": [ { - "voter": "trogdor", - "rshares": "211439242838", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "211439242838", + "voter": "trogdor" }, { - "voter": "highnye", - "rshares": "51307830", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51307830", + "voter": "highnye" }, { - "voter": "lovetosteemit", - "rshares": "54126702", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54126702", + "voter": "lovetosteemit" }, { - "voter": "steemithelper1", - "rshares": "50221956", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50221956", + "voter": "steemithelper1" }, { - "voter": "steemorama", - "rshares": "306081747", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "306081747", + "voter": "steemorama" } ], + "author": "royaltiffany", "author_reputation": 0, - "parent_author": "trogdor", - "parent_permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 929861, - "author": "bige37", - "permlink": "re-royaltiffany-test-20160912t114919145z", + "body": "Fail ? No spam bot army...", + "body_length": 26, + "cashout_time": "2016-09-17T02:19:27", "category": "test", - "title": "", - "body": "This is like saying don't push the red button....dang it!!!!\n\nhttp://i.imgur.com/OG66bhF.jpg", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/i.imgur.com\\/OG66bhF.jpg\"]}", - "created": "2016-09-12T11:49:18", - "last_update": "2016-09-12T13:26:51", + "children": 9, + "created": "2016-08-17T02:06:00", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 2, - "net_rshares": 127840289791, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T01:42:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.029 HBD", + "last_update": "2016-08-17T02:06:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 211900981073, + "parent_author": "trogdor", + "parent_permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", + "pending_payout_value": "0.132 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", + "post_id": 635692, "promoted": "0.000 HBD", "replies": [], - "body_length": 92, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z" + }, + { "active_votes": [ { - "voter": "demotruk", - "rshares": "127840289791", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "127840289791", + "voter": "demotruk" } ], + "author": "bige37", "author_reputation": 0, - "parent_author": "royaltiffany", - "parent_permlink": "test", - "url": "/test/@royaltiffany/test#@bige37/re-royaltiffany-test-20160912t114919145z", - "root_title": "Test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 944530, - "author": "bitcoiner", - "permlink": "re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z", + "body": "This is like saying don't push the red button....dang it!!!!\n\nhttp://i.imgur.com/OG66bhF.jpg", + "body_length": 92, + "cashout_time": "2016-10-14T01:42:18", "category": "test", - "title": "", - "body": "It would seem only Steemit uses the caching server img1.steemit.com, because, well, it's theirs.. Steemd just shows the post as it is in the blockchain, which is the unaltered image link.\nThe thing is, is that all the posts are on a public decentralized blockchain, so it's hard to track who has accessed it. You would have to make it a private blockchain, and count all requests to retrieve a post. Even if this were the case, you would have no way to track any copies of the data made after the fact.", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-13T22:37:39", - "last_update": "2016-09-13T22:37:39", - "depth": 6, - "children": 0, - "net_rshares": 111795622957, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", + "children": 2, + "created": "2016-09-12T11:49:18", "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.022 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/i.imgur.com\\/OG66bhF.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-12T13:26:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 127840289791, + "parent_author": "royaltiffany", + "parent_permlink": "test", + "pending_payout_value": "0.029 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-royaltiffany-test-20160912t114919145z", + "post_id": 929861, "promoted": "0.000 HBD", "replies": [], - "body_length": 502, + "root_title": "Test", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@royaltiffany/test#@bige37/re-royaltiffany-test-20160912t114919145z" + }, + { "active_votes": [ { - "voter": "derekareith", - "rshares": "111795622957", "percent": "7500", - "reputation": 0 + "reputation": 0, + "rshares": "111795622957", + "voter": "derekareith" } ], + "author": "bitcoiner", "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", - "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z", - "root_title": "Page View Counter [Test Post]", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 960637, - "author": "cheetah", - "permlink": "re-test-20160915t190252", + "body": "It would seem only Steemit uses the caching server img1.steemit.com, because, well, it's theirs.. Steemd just shows the post as it is in the blockchain, which is the unaltered image link.\nThe thing is, is that all the posts are on a public decentralized blockchain, so it's hard to track who has accessed it. You would have to make it a private blockchain, and count all requests to retrieve a post. Even if this were the case, you would have no way to track any copies of the data made after the fact.", + "body_length": 502, + "cashout_time": "2016-10-15T00:25:18", "category": "test", - "title": "", - "body": "Warning! This user is on my black list, likely as a known plagiarist, spammer or ID thief. Please be cautious with this post!\nTo get off this list, please chat with us in the #steemitabuse-appeals channel in [steemit.chat](http://steemit.chat).", - "json_metadata": "{}", - "created": "2016-09-15T19:02:51", - "last_update": "2016-09-15T19:02:51", - "depth": 1, "children": 0, - "net_rshares": 66832072343, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T19:09:49", - "total_payout_value": "0.000 HBD", + "created": "2016-09-13T22:37:39", "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.014 HBD", + "depth": 6, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-13T22:37:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 111795622957, + "parent_author": "derekareith", + "parent_permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", + "pending_payout_value": "0.022 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z", + "post_id": 944530, "promoted": "0.000 HBD", "replies": [], - "body_length": 244, + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z" + }, + { "active_votes": [ { - "voter": "cheetah", - "rshares": "66397090281", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "66397090281", + "voter": "cheetah" }, { - "voter": "cheetah22", - "rshares": "101333267", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "101333267", + "voter": "cheetah22" }, { - "voter": "cheetah23", - "rshares": "188781535", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "188781535", + "voter": "cheetah23" }, { - "voter": "cheetah24", - "rshares": "144867260", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "144867260", + "voter": "cheetah24" } ], + "author": "cheetah", "author_reputation": 0, - "parent_author": "machinelearning", - "parent_permlink": "test", - "url": "/test/@machinelearning/test#@cheetah/re-test-20160915t190252", - "root_title": "Test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 959003, - "author": "achim86", - "permlink": "re-oaldamster-re-achim86-test-20160915t155303746z", + "body": "Warning! This user is on my black list, likely as a known plagiarist, spammer or ID thief. Please be cautious with this post!\nTo get off this list, please chat with us in the #steemitabuse-appeals channel in [steemit.chat](http://steemit.chat).", + "body_length": 244, + "cashout_time": "2016-09-16T19:09:49", "category": "test", - "title": "", - "body": "yeahhhh! https://steemit.com/steemit/@achim86/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung", - "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@achim86\\/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung\"]}", - "created": "2016-09-15T15:53:06", - "last_update": "2016-09-15T17:05:36", - "depth": 2, "children": 0, - "net_rshares": 61272757397, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T14:39:17", - "total_payout_value": "0.000 HBD", + "created": "2016-09-15T19:02:51", "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.013 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T19:02:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66832072343, + "parent_author": "machinelearning", + "parent_permlink": "test", + "pending_payout_value": "0.014 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-test-20160915t190252", + "post_id": 960637, "promoted": "0.000 HBD", "replies": [], - "body_length": 125, + "root_title": "Test", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@machinelearning/test#@cheetah/re-test-20160915t190252" + }, + { "active_votes": [ { - "voter": "oaldamster", - "rshares": "57522418578", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "57522418578", + "voter": "oaldamster" }, { - "voter": "achim86", - "rshares": "3750338819", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3750338819", + "voter": "achim86" } ], + "author": "achim86", "author_reputation": 0, + "beneficiaries": [], + "body": "yeahhhh! https://steemit.com/steemit/@achim86/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung", + "body_length": 125, + "cashout_time": "2016-09-16T14:39:17", + "category": "test", + "children": 0, + "created": "2016-09-15T15:53:06", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@achim86\\/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T17:05:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 61272757397, "parent_author": "oaldamster", "parent_permlink": "re-achim86-test-20160915t070512394z", - "url": "/test/@achim86/test#@achim86/re-oaldamster-re-achim86-test-20160915t155303746z", + "pending_payout_value": "0.013 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-oaldamster-re-achim86-test-20160915t155303746z", + "post_id": 959003, + "promoted": "0.000 HBD", + "replies": [], "root_title": "test", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@achim86/test#@achim86/re-oaldamster-re-achim86-test-20160915t155303746z" }, { - "post_id": 857734, + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "19450828249", + "voter": "str11ngfello" + } + ], "author": "alktoni", - "permlink": "re-str11ngfello-test2-20160904t233043502z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "test if testing is a test", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-04T23:30:45", - "last_update": "2016-09-04T23:30:45", - "depth": 1, - "children": 0, - "net_rshares": 19450828249, - "last_payout": "1969-12-31T23:59:59", + "body_length": 25, "cashout_time": "2016-10-05T23:22:30", - "total_payout_value": "0.000 HBD", + "category": "test", + "children": 0, + "created": "2016-09-04T23:30:45", "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-04T23:30:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 19450828249, + "parent_author": "str11ngfello", + "parent_permlink": "test2", "pending_payout_value": "0.004 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-str11ngfello-test2-20160904t233043502z", + "post_id": 857734, "promoted": "0.000 HBD", "replies": [], - "body_length": 25, + "root_title": "test2", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@str11ngfello/test2#@alktoni/re-str11ngfello-test2-20160904t233043502z" + }, + { "active_votes": [ { - "voter": "str11ngfello", - "rshares": "19450828249", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "12292537315", + "voter": "r4fken" } ], + "author": "dickbutt", "author_reputation": 0, - "parent_author": "str11ngfello", - "parent_permlink": "test2", - "url": "/test/@str11ngfello/test2#@alktoni/re-str11ngfello-test2-20160904t233043502z", - "root_title": "test2", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 921255, - "author": "dickbutt", - "permlink": "re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218", - "category": "test", - "title": "", "body": "https://s17.postimg.io/j6i3qa58f/dickbutt.jpg", - "json_metadata": "{}", + "body_length": 45, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T12:22:21", - "last_update": "2016-09-11T12:22:21", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 0, - "net_rshares": 12292537315, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T12:22:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 12292537315, + "parent_author": "pompe72", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", "pending_payout_value": "0.002 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218", + "post_id": 921255, "promoted": "0.000 HBD", "replies": [], - "body_length": 45, + "root_title": "testing @dickbutt", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218" + }, + { "active_votes": [ { - "voter": "r4fken", - "rshares": "12292537315", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5205390768", + "voter": "brendio" } ], + "author": "brendio", "author_reputation": 0, - "parent_author": "pompe72", - "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218", - "root_title": "testing @dickbutt", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 870030, - "author": "brendio", - "permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", - "category": "test", - "title": "", "body": "Does dickbutt come whenever he is called? #test", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 47, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 4, "created": "2016-09-06T06:19:18", - "last_update": "2016-09-06T06:19:18", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 4, - "net_rshares": 5205390768, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-06T06:19:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5205390768, + "parent_author": "dickbutt", + "parent_permlink": "testing-dickbutt", "pending_payout_value": "0.001 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", + "post_id": 870030, "promoted": "0.000 HBD", "replies": [], - "body_length": 47, - "active_votes": [ - { - "voter": "brendio", - "rshares": "5205390768", - "percent": "10000", - "reputation": 0 - } - ], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "testing-dickbutt", - "url": "/test/@dickbutt/testing-dickbutt#@brendio/re-dickbutt-testing-dickbutt-20160906t061918048z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@brendio/re-dickbutt-testing-dickbutt-20160906t061918048z" }, { - "post_id": 944446, + "active_votes": [], "author": "derekareith", - "permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Just saw that the counter works on Steemd:\nhttps://steemd.com/test/@derekareith/page-view-counter-test-post\nI thought Steemd just redirects the same cached images, but I guess its just steemit. I'm wondering if there's a way to make it \"hidden\" on steemit but visible on steemd so authors could monitor these stats on the backend?", - "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemd.com\\/test\\/@derekareith\\/page-view-counter-test-post\"]}", + "body_length": 331, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 1, "created": "2016-09-13T22:25:12", - "last_update": "2016-09-13T22:25:12", + "curator_payout_value": "0.000 HBD", "depth": 5, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemd.com\\/test\\/@derekareith\\/page-view-counter-test-post\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T22:25:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "bitcoiner", + "parent_permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", + "post_id": 944446, "promoted": "0.000 HBD", "replies": [], - "body_length": 331, - "active_votes": [], - "author_reputation": 0, - "parent_author": "bitcoiner", - "parent_permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z" }, { - "post_id": 831916, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259-20160902t064336", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", - "json_metadata": "{}", + "body_length": 69, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-02T06:43:39", - "last_update": "2016-09-02T06:43:39", + "curator_payout_value": "0.000 HBD", "depth": 5, - "children": 0, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T06:43:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259-20160902t064336", + "post_id": 831916, "promoted": "0.000 HBD", "replies": [], - "body_length": 69, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259-20160902t064336", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259-20160902t064336" }, { - "post_id": 652753, + "active_votes": [], "author": "laonie", - "permlink": "re-trogdor-re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160818t075042763z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Anyway, i feel embarrassing, i removed the list, my bot won't do this again, but will follow good human curators only.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 118, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 0, "created": "2016-08-18T07:50:39", - "last_update": "2016-08-18T07:50:39", + "curator_payout_value": "0.000 HBD", "depth": 5, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-18T07:50:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "trogdor", + "parent_permlink": "re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-trogdor-re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160818t075042763z", + "post_id": 652753, "promoted": "0.000 HBD", "replies": [], - "body_length": 118, - "active_votes": [], - "author_reputation": 0, - "parent_author": "trogdor", - "parent_permlink": "re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@laonie/re-trogdor-re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160818t075042763z", "root_title": "this is a test to see if i have been targeted by a spam bot army", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635813, - "author": "royaltiffany", - "permlink": "re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022232495z", - "category": "test", "title": "", - "body": "I knoooow !! I dont know where they came from !! Started from my last post.", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T02:22:30", - "last_update": "2016-08-17T02:22:30", - "depth": 5, - "children": 0, - "net_rshares": 60116331, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 75, + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@laonie/re-trogdor-re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160818t075042763z" + }, + { "active_votes": [ { - "voter": "scotthelms89", - "rshares": "60116331", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "60116331", + "voter": "scotthelms89" } ], + "author": "royaltiffany", "author_reputation": 0, - "parent_author": "trogdor", - "parent_permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022232495z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635744, - "author": "royaltiffany", - "permlink": "re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z", + "body": "I knoooow !! I dont know where they came from !! Started from my last post.", + "body_length": 75, + "cashout_time": "2016-09-17T02:19:27", "category": "test", - "title": "", - "body": "Yes i did them ahahahhahah , ntmu too!", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T02:13:30", - "last_update": "2016-08-17T02:13:42", - "depth": 5, "children": 0, - "net_rshares": 15078297487, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", + "created": "2016-08-17T02:22:30", "curator_payout_value": "0.000 HBD", + "depth": 5, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T02:22:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 60116331, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022232495z", + "post_id": 635813, "promoted": "0.000 HBD", "replies": [], - "body_length": 38, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022232495z" + }, + { "active_votes": [ { - "voter": "hellokitty", - "rshares": "14714651186", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "14714651186", + "voter": "hellokitty" }, { - "voter": "btctoken", - "rshares": "121297875", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "121297875", + "voter": "btctoken" }, { - "voter": "solarempirepc", - "rshares": "53821026", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "53821026", + "voter": "solarempirepc" }, { - "voter": "mrainp", - "rshares": "134400698", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "134400698", + "voter": "mrainp" }, { - "voter": "lovetosteemit", - "rshares": "54126702", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54126702", + "voter": "lovetosteemit" } ], + "author": "royaltiffany", "author_reputation": 0, - "parent_author": "trogdor", - "parent_permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 943539, - "author": "bitcoiner", - "permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", + "body": "Yes i did them ahahahhahah , ntmu too!", + "body_length": 38, + "cashout_time": "2016-09-17T02:19:27", "category": "test", - "title": "", - "body": "Oh haha. Yes, I haven't signed a block for more than 24 hours!", + "children": 0, + "created": "2016-08-17T02:13:30", + "curator_payout_value": "0.000 HBD", + "depth": 5, "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-13T20:29:33", - "last_update": "2016-09-13T20:29:33", - "depth": 4, - "children": 2, - "net_rshares": 77095774656, "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T02:13:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 15078297487, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z", + "post_id": 635744, "promoted": "0.000 HBD", "replies": [], - "body_length": 62, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z" + }, + { "active_votes": [ { - "voter": "derekareith", - "rshares": "77095774656", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "77095774656", + "voter": "derekareith" } ], + "author": "bitcoiner", "author_reputation": 0, + "beneficiaries": [], + "body": "Oh haha. Yes, I haven't signed a block for more than 24 hours!", + "body_length": 62, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 2, + "created": "2016-09-13T20:29:33", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-13T20:29:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 77095774656, "parent_author": "derekareith", "parent_permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", - "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", + "post_id": 943539, + "promoted": "0.000 HBD", + "replies": [], "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z" }, { - "post_id": 920022, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "breath", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 6, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:52:09", - "last_update": "2016-09-11T08:52:09", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:52:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z", + "post_id": 920022, "promoted": "0.000 HBD", "replies": [], - "body_length": 6, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z" }, { - "post_id": 919922, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "its just a bot", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 14, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:31:00", - "last_update": "2016-09-11T08:31:00", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:31:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z", + "post_id": 919922, "promoted": "0.000 HBD", "replies": [], - "body_length": 14, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z" }, { - "post_id": 919920, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "reply to the bot with the word \"feminist\"", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 41, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:30:39", - "last_update": "2016-09-11T08:30:39", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:30:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z", + "post_id": 919920, "promoted": "0.000 HBD", "replies": [], - "body_length": 41, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z" }, { - "post_id": 831914, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", - "json_metadata": "{}", + "body_length": 69, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 1, "created": "2016-09-02T06:43:03", - "last_update": "2016-09-02T06:43:03", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 1, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T06:43:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", + "post_id": 831914, "promoted": "0.000 HBD", "replies": [], - "body_length": 69, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259" }, { - "post_id": 641876, + "active_votes": [], "author": "gary-smith", - "permlink": "re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t142255070z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "If I said no would you believe me ?", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T14:22:54", - "last_update": "2016-08-17T14:22:54", - "depth": 4, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", + "body_length": 35, "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", + "category": "test", + "children": 0, + "created": "2016-08-17T14:22:54", "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T14:22:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "thebeachedwhale", + "parent_permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t142255070z", + "post_id": 641876, "promoted": "0.000 HBD", "replies": [], - "body_length": 35, - "active_votes": [], - "author_reputation": 0, - "parent_author": "thebeachedwhale", - "parent_permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@gary-smith/re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t142255070z", "root_title": "this is a test to see if i have been targeted by a spam bot army", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@gary-smith/re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t142255070z" }, { - "post_id": 639400, + "active_votes": [], "author": "trogdor", - "permlink": "re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Hi @laonie, for the record I was not talking about you. I don't have anything against trying to maximize your profits. There is an account \"steemitmarket\" that is trying to buy and sell votes with 800 different spam accounts that they control, and they used all of them to spam my recent post.", - "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"laonie\"]}", + "body_length": 293, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 1, "created": "2016-08-17T10:20:30", - "last_update": "2016-08-17T10:20:30", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"laonie\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T10:20:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "laonie", + "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", + "post_id": 639400, "promoted": "0.000 HBD", "replies": [], - "body_length": 293, - "active_votes": [], - "author_reputation": 0, - "parent_author": "laonie", - "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", "root_title": "this is a test to see if i have been targeted by a spam bot army", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z" }, { - "post_id": 635801, + "active_votes": [], "author": "trogdor", - "permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "This is really interesting, it looks like you have a small spam bot army following you around in the comments section.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 118, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 1, "created": "2016-08-17T02:21:00", - "last_update": "2016-08-17T02:21:00", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T02:21:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "royaltiffany", + "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", + "post_id": 635801, "promoted": "0.000 HBD", "replies": [], - "body_length": 118, - "active_votes": [], - "author_reputation": 0, - "parent_author": "royaltiffany", - "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", "root_title": "this is a test to see if i have been targeted by a spam bot army", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635740, - "author": "trogdor", - "permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", - "category": "test", "title": "", - "body": "Could have been a one-off test, or possibly tag related, since i used the #bot tag in my other post I think.\n\nOh btw, hi @royaltiffany, nice to meet you :) Didn't you do shots for votes or something? lol", - "json_metadata": "{\"tags\":[\"bot\",\"test\"],\"users\":[\"royaltiffany\"]}", - "created": "2016-08-17T02:12:48", - "last_update": "2016-08-17T02:12:48", - "depth": 4, - "children": 1, - "net_rshares": 14714651186, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 203, + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z" + }, + { "active_votes": [ { - "voter": "hellokitty", - "rshares": "14714651186", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "14714651186", + "voter": "hellokitty" } ], + "author": "trogdor", "author_reputation": 0, - "parent_author": "royaltiffany", - "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635684, - "author": "royaltiffany", - "permlink": "re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020535226z", + "body": "Could have been a one-off test, or possibly tag related, since i used the #bot tag in my other post I think.\n\nOh btw, hi @royaltiffany, nice to meet you :) Didn't you do shots for votes or something? lol", + "body_length": 203, + "cashout_time": "2016-09-17T02:19:27", "category": "test", - "title": "", - "body": "Lol", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T02:05:33", - "last_update": "2016-08-17T02:05:33", + "children": 1, + "created": "2016-08-17T02:12:48", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 0, - "net_rshares": 201590749, + "json_metadata": "{\"tags\":[\"bot\",\"test\"],\"users\":[\"royaltiffany\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T02:12:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 14714651186, + "parent_author": "royaltiffany", + "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", + "post_id": 635740, "promoted": "0.000 HBD", "replies": [], - "body_length": 3, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z" + }, + { "active_votes": [ { - "voter": "scotthelms89", - "rshares": "60116331", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "60116331", + "voter": "scotthelms89" }, { - "voter": "mrainp", - "rshares": "141474418", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "141474418", + "voter": "mrainp" } ], + "author": "royaltiffany", "author_reputation": 0, - "parent_author": "thebeachedwhale", - "parent_permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020535226z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 946378, - "author": "freebornangel", - "permlink": "re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z", + "body": "Lol", + "body_length": 3, + "cashout_time": "2016-09-17T02:19:27", "category": "test", - "title": "", - "body": "That is too bad, that is a really good metric.", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-14T03:18:00", - "last_update": "2016-09-14T03:18:00", - "depth": 3, "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", + "created": "2016-08-17T02:05:33", "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T02:05:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 201590749, + "parent_author": "thebeachedwhale", + "parent_permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020535226z", + "post_id": 635684, "promoted": "0.000 HBD", "replies": [], - "body_length": 46, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020535226z" + }, + { "active_votes": [], + "author": "freebornangel", "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", - "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z", - "root_title": "Page View Counter [Test Post]", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 943519, - "author": "derekareith", - "permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", + "body": "That is too bad, that is a really good metric.", + "body_length": 46, + "cashout_time": "2016-10-15T00:25:18", "category": "test", - "title": "", - "body": "This is my miner acct that I gave up mining with XD...damn rabbits. Was using to test :)", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-13T20:26:09", - "last_update": "2016-09-13T20:26:09", + "children": 0, + "created": "2016-09-14T03:18:00", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 3, - "net_rshares": 2767044151, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-14T03:18:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "derekareith", + "parent_permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z", + "post_id": 946378, "promoted": "0.000 HBD", "replies": [], - "body_length": 88, + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z" + }, + { "active_votes": [ { - "voter": "bitcoiner", - "rshares": "2767044151", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "2767044151", + "voter": "bitcoiner" } ], + "author": "derekareith", "author_reputation": 0, - "parent_author": "boomer", - "parent_permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", - "root_title": "Page View Counter [Test Post]", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 938127, - "author": "golfball", - "permlink": "re-golfball-re-golfball-re-golfball-test-20160913t071932003z", + "body": "This is my miner acct that I gave up mining with XD...damn rabbits. Was using to test :)", + "body_length": 88, + "cashout_time": "2016-10-15T00:25:18", "category": "test", - "title": "", - "body": "mouse เมาส์ ิั\nhard drive ฮาร์ดไดร์\nhard disk ฮาร์ดดิสก์\nMonitor หน้าจอ\nDisplay แสดง\nLCD screen\nCTR screen หน้าจอ\nplasma screen พราสม่า\nRAM memory หน่วยความจำแรม\nROM memory รอม\nPrinter เครื่องพิมพ์\nplotter\nmicrophone ไมโครโฟน\nscanner เครืองสเเกน\nspeakers\nkeyboard แป้นพิมพ์\nbarcode บาร์โค้ด\nRight click\nLeft click\nDouble click\nCPU", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-13T07:19:33", - "last_update": "2016-09-13T07:20:09", + "children": 3, + "created": "2016-09-13T20:26:09", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-30T07:41:51", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:26:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 2767044151, + "parent_author": "boomer", + "parent_permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", + "post_id": 943519, "promoted": "0.000 HBD", "replies": [], - "body_length": 330, + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z" + }, + { "active_votes": [], + "author": "golfball", "author_reputation": 0, - "parent_author": "golfball", - "parent_permlink": "re-golfball-re-golfball-test-20160913t063516433z", - "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-re-golfball-test-20160913t071932003z", - "root_title": "Test One", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 937498, - "author": "royaltiffany", - "permlink": "re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z", + "body": "mouse \u0e40\u0e21\u0e32\u0e2a\u0e4c \u0e34\u0e31\nhard drive \u0e2e\u0e32\u0e23\u0e4c\u0e14\u0e44\u0e14\u0e23\u0e4c\nhard disk \u0e2e\u0e32\u0e23\u0e4c\u0e14\u0e14\u0e34\u0e2a\u0e01\u0e4c\nMonitor \u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d\nDisplay \u0e41\u0e2a\u0e14\u0e07\nLCD screen\nCTR screen \u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d\nplasma screen \u0e1e\u0e23\u0e32\u0e2a\u0e21\u0e48\u0e32\nRAM memory \u0e2b\u0e19\u0e48\u0e27\u0e22\u0e04\u0e27\u0e32\u0e21\u0e08\u0e33\u0e41\u0e23\u0e21\nROM memory \u0e23\u0e2d\u0e21\nPrinter \u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e1e\u0e34\u0e21\u0e1e\u0e4c\nplotter\nmicrophone \u0e44\u0e21\u0e42\u0e04\u0e23\u0e42\u0e1f\u0e19\nscanner \u0e40\u0e04\u0e23\u0e37\u0e2d\u0e07\u0e2a\u0e40\u0e40\u0e01\u0e19\nspeakers\nkeyboard \u0e41\u0e1b\u0e49\u0e19\u0e1e\u0e34\u0e21\u0e1e\u0e4c\nbarcode \u0e1a\u0e32\u0e23\u0e4c\u0e42\u0e04\u0e49\u0e14\nRight click\nLeft click\nDouble click\nCPU", + "body_length": 330, + "cashout_time": "2016-09-30T07:41:51", "category": "test", - "title": "", - "body": "Ahahahhahaha ....click bait", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-13T05:12:42", - "last_update": "2016-09-13T05:12:42", - "depth": 3, "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T01:42:18", - "total_payout_value": "0.000 HBD", + "created": "2016-09-13T07:19:33", "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-13T07:20:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "golfball", + "parent_permlink": "re-golfball-re-golfball-test-20160913t063516433z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-golfball-re-golfball-re-golfball-test-20160913t071932003z", + "post_id": 938127, "promoted": "0.000 HBD", "replies": [], - "body_length": 27, + "root_title": "Test One", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-re-golfball-test-20160913t071932003z" + }, + { "active_votes": [], + "author": "royaltiffany", "author_reputation": 0, - "parent_author": "demotruk", - "parent_permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z", - "url": "/test/@royaltiffany/test#@royaltiffany/re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z", - "root_title": "Test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 921247, - "author": "pompe72", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", + "body": "Ahahahhahaha ....click bait", + "body_length": 27, + "cashout_time": "2016-10-14T01:42:18", "category": "test", - "title": "", - "body": "dickbutt\n\nhttps://img1.steemit.com/0x0/http://i64.tinypic.com/1zn8p6d.jpg", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/i64.tinypic.com\\/1zn8p6d.jpg\"]}", - "created": "2016-09-11T12:21:27", - "last_update": "2016-09-11T12:21:27", + "children": 0, + "created": "2016-09-13T05:12:42", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 1, - "net_rshares": 52449059, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T05:12:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "demotruk", + "parent_permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z", + "post_id": 937498, "promoted": "0.000 HBD", "replies": [], - "body_length": 73, + "root_title": "Test", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@royaltiffany/test#@royaltiffany/re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z" + }, + { "active_votes": [ { - "voter": "paolo75", - "rshares": "52449059", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52449059", + "voter": "paolo75" } ], + "author": "pompe72", "author_reputation": 0, + "beneficiaries": [], + "body": "dickbutt\n\nhttps://img1.steemit.com/0x0/http://i64.tinypic.com/1zn8p6d.jpg", + "body_length": 73, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 1, + "created": "2016-09-11T12:21:27", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/i64.tinypic.com\\/1zn8p6d.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-11T12:21:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 52449059, "parent_author": "dickbutt", "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051", - "url": "/test/@dickbutt/testing-dickbutt#@pompe72/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", + "post_id": 921247, + "promoted": "0.000 HBD", + "replies": [], "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@pompe72/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z" }, { - "post_id": 920140, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Breath Skeptic, Breath https://www.youtube.com/watch?v=y43FolFlY78", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/y43FolFlY78\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=y43FolFlY78\"]}", + "body_length": 66, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T09:16:27", - "last_update": "2016-09-11T09:16:27", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/y43FolFlY78\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=y43FolFlY78\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T09:16:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z", + "post_id": 920140, "promoted": "0.000 HBD", "replies": [], - "body_length": 66, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z" }, { - "post_id": 920044, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "feminism?", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 9, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:55:36", - "last_update": "2016-09-11T08:55:36", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:55:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z", + "post_id": 920044, "promoted": "0.000 HBD", "replies": [], - "body_length": 9, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z" }, { - "post_id": 920039, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "feminism?", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 9, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:54:33", - "last_update": "2016-09-11T08:54:33", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:54:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z", + "post_id": 920039, "promoted": "0.000 HBD", "replies": [], - "body_length": 9, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z" }, { - "post_id": 920034, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "femninism?", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 10, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:54:00", - "last_update": "2016-09-11T08:54:00", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:54:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z", + "post_id": 920034, "promoted": "0.000 HBD", "replies": [], - "body_length": 10, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z" }, { - "post_id": 920031, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "feminism?", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 9, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:53:12", - "last_update": "2016-09-11T08:53:12", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:53:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z", + "post_id": 920031, "promoted": "0.000 HBD", "replies": [], - "body_length": 9, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z" }, { - "post_id": 919932, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "feminist?", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 9, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:32:12", - "last_update": "2016-09-11T08:32:12", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:32:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z", + "post_id": 919932, "promoted": "0.000 HBD", "replies": [], - "body_length": 9, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z" }, { - "post_id": 919626, + "active_votes": [], "author": "skeptic", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Sick little bot.\n8D", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 19, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 3, "created": "2016-09-11T07:27:27", - "last_update": "2016-09-11T07:27:27", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 3, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T07:27:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", + "post_id": 919626, "promoted": "0.000 HBD", "replies": [], - "body_length": 19, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", - "url": "/test/@dickbutt/testing-dickbutt#@skeptic/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@skeptic/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z" }, { - "post_id": 919917, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "feminist", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 8, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:29:57", - "last_update": "2016-09-11T08:29:57", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:29:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z", + "post_id": 919917, "promoted": "0.000 HBD", "replies": [], - "body_length": 8, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z" }, { - "post_id": 919938, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Much feminist!!!!", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 17, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:33:03", - "last_update": "2016-09-11T08:33:03", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:33:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z", + "post_id": 919938, "promoted": "0.000 HBD", "replies": [], - "body_length": 17, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z" }, { - "post_id": 859549, + "active_votes": [], "author": "bullionstackers", - "permlink": "re-ace108-re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t050838289z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Thank you @ace108\nCheck your message", - "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"ace108\"]}", + "body_length": 36, + "cashout_time": "2016-10-06T04:18:33", + "category": "test", + "children": 0, "created": "2016-09-05T05:08:39", - "last_update": "2016-09-05T06:05:39", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"ace108\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-06T04:18:33", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-05T06:05:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "ace108", + "parent_permlink": "re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-ace108-re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t050838289z", + "post_id": 859549, "promoted": "0.000 HBD", "replies": [], - "body_length": 36, - "active_votes": [], - "author_reputation": 0, - "parent_author": "ace108", - "parent_permlink": "re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", - "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want#@bullionstackers/re-ace108-re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t050838289z", "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 857335, - "author": "dickbutt", - "permlink": "re-re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z-20160904t222429", - "category": "test", "title": "", - "body": "https://s17.postimg.io/u3jff1rzz/105441_dickbutt_rainbow_wiggle_gif_Im_6_YAW.gif", - "json_metadata": "{}", - "created": "2016-09-04T22:24:30", - "last_update": "2016-09-04T22:24:30", - "depth": 3, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 80, - "active_votes": [], - "author_reputation": 0, - "parent_author": "steemjesus", - "parent_permlink": "re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z-20160904t222429", - "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want#@bullionstackers/re-ace108-re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t050838289z" }, { - "post_id": 831911, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", - "category": "test", - "title": "", - "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", - "json_metadata": "{}", - "created": "2016-09-02T06:42:27", - "last_update": "2016-09-02T06:42:27", - "depth": 3, - "children": 2, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://s17.postimg.io/u3jff1rzz/105441_dickbutt_rainbow_wiggle_gif_Im_6_YAW.gif", + "body_length": 80, "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", + "category": "test", + "children": 0, + "created": "2016-09-04T22:24:30", "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-04T22:24:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemjesus", + "parent_permlink": "re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z-20160904t222429", + "post_id": 857335, "promoted": "0.000 HBD", "replies": [], - "body_length": 69, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z-20160904t222429" }, { - "post_id": 780488, - "author": "thecleangame", - "permlink": "re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z", + "active_votes": [], + "author": "dickbutt", + "author_reputation": 0, + "beneficiaries": [], + "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", + "body_length": 69, + "cashout_time": "2016-10-03T07:19:21", "category": "test", - "title": "", - "body": "lol Glad I could help :)", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-28T18:19:12", - "last_update": "2016-08-28T18:19:12", + "children": 2, + "created": "2016-09-02T06:42:27", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 5186228610, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-28T17:56:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T06:42:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", + "post_id": 831911, "promoted": "0.000 HBD", "replies": [], - "body_length": 24, + "root_title": "testing @dickbutt", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226" + }, + { "active_votes": [ { - "voter": "ivicaa", - "rshares": "5186228610", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5186228610", + "voter": "ivicaa" } ], + "author": "thecleangame", "author_reputation": 0, - "parent_author": "ivicaa", - "parent_permlink": "re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", - "url": "/test/@ivicaa/test-please-ignore#@thecleangame/re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z", - "root_title": "TEST - please ignore", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 637778, - "author": "laonie", - "permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", + "body": "lol Glad I could help :)", + "body_length": 24, + "cashout_time": "2016-09-28T17:56:18", "category": "test", - "title": "", - "body": "It seems @wang 's list changed, i was trying to squeeze the profit of the curation bots.", - "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"wang\"]}", - "created": "2016-08-17T06:45:54", - "last_update": "2016-08-17T06:45:54", + "children": 0, + "created": "2016-08-28T18:19:12", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 2, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-28T18:19:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5186228610, + "parent_author": "ivicaa", + "parent_permlink": "re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z", + "post_id": 780488, "promoted": "0.000 HBD", "replies": [], - "body_length": 88, + "root_title": "TEST - please ignore", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@ivicaa/test-please-ignore#@thecleangame/re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z" + }, + { "active_votes": [], + "author": "laonie", "author_reputation": 0, - "parent_author": "trogdor", - "parent_permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@laonie/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635722, - "author": "royaltiffany", - "permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", + "body": "It seems @wang 's list changed, i was trying to squeeze the profit of the curation bots.", + "body_length": 88, + "cashout_time": "2016-09-17T02:19:27", "category": "test", - "title": "", - "body": "Wait for it....wait for it...", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T02:10:24", - "last_update": "2016-08-17T02:10:24", + "children": 2, + "created": "2016-08-17T06:45:54", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 4, - "net_rshares": 15210973654, + "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"wang\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T06:45:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", + "post_id": 637778, "promoted": "0.000 HBD", "replies": [], - "body_length": 29, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@laonie/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z" + }, + { "active_votes": [ { - "voter": "hellokitty", - "rshares": "14714651186", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "14714651186", + "voter": "hellokitty" }, { - "voter": "scotthelms89", - "rshares": "60116331", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "60116331", + "voter": "scotthelms89" }, { - "voter": "btctoken", - "rshares": "121297875", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "121297875", + "voter": "btctoken" }, { - "voter": "alexbones", - "rshares": "54874786", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54874786", + "voter": "alexbones" }, { - "voter": "biker", - "rshares": "50303592", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50303592", + "voter": "biker" }, { - "voter": "coutchpotatoe", - "rshares": "54792292", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54792292", + "voter": "coutchpotatoe" }, { - "voter": "sleepcult", - "rshares": "50317967", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50317967", + "voter": "sleepcult" }, { - "voter": "steemithelper1", - "rshares": "50221956", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50221956", + "voter": "steemithelper1" }, { - "voter": "waltrichards", - "rshares": "54397669", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54397669", + "voter": "waltrichards" } ], + "author": "royaltiffany", "author_reputation": 0, - "parent_author": "trogdor", - "parent_permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635668, - "author": "thebeachedwhale", - "permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", + "body": "Wait for it....wait for it...", + "body_length": 29, + "cashout_time": "2016-09-17T02:19:27", "category": "test", - "title": "", - "body": "Are you?", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T02:02:54", - "last_update": "2016-08-17T02:02:54", + "children": 4, + "created": "2016-08-17T02:10:24", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 2, - "net_rshares": 1947875840, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T02:10:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 15210973654, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", + "post_id": 635722, "promoted": "0.000 HBD", "replies": [], - "body_length": 8, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z" + }, + { "active_votes": [ { - "voter": "gary-smith", - "rshares": "1947875840", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1947875840", + "voter": "gary-smith" } ], + "author": "thebeachedwhale", "author_reputation": 0, - "parent_author": "gary-smith", - "parent_permlink": "re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@thebeachedwhale/re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 946058, - "author": "derekareith", - "permlink": "re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z", + "body": "Are you?", + "body_length": 8, + "cashout_time": "2016-09-17T02:19:27", "category": "test", - "title": "", - "body": "Wish it was easy to integrate...seems like it would be useful.", + "children": 2, + "created": "2016-08-17T02:02:54", + "curator_payout_value": "0.000 HBD", + "depth": 3, "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-14T02:14:36", - "last_update": "2016-09-14T02:14:36", - "depth": 2, - "children": 0, - "net_rshares": 0, "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T02:02:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1947875840, + "parent_author": "gary-smith", + "parent_permlink": "re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", + "post_id": 635668, "promoted": "0.000 HBD", "replies": [], - "body_length": 62, - "active_votes": [], - "author_reputation": 0, - "parent_author": "steemitqa", - "parent_permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z", - "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@thebeachedwhale/re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z" }, { - "post_id": 946049, + "active_votes": [], "author": "derekareith", - "permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", - "category": "test", - "title": "", - "body": "Yea, that's cool. I think like bitcoiner pointed out, though, we can't get them to work since images sent to the blockchain are cached by Steemit and won't update. They update on other \"windows\" like steemd, but that info isn't going to be accurate. It's a lot tougher than I thought it would be XD\n\nI see Steemit integrating it in the future, but it's probably real low on their list of priorities.", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-14T02:13:27", - "last_update": "2016-09-14T02:13:27", - "depth": 2, - "children": 1, - "net_rshares": 60293991, - "last_payout": "1969-12-31T23:59:59", + "author_reputation": 0, + "beneficiaries": [], + "body": "Wish it was easy to integrate...seems like it would be useful.", + "body_length": 62, "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", + "category": "test", + "children": 0, + "created": "2016-09-14T02:14:36", "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-14T02:14:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemitqa", + "parent_permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z", + "post_id": 946058, "promoted": "0.000 HBD", "replies": [], - "body_length": 402, + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z" + }, + { "active_votes": [ { - "voter": "freebornangel", - "rshares": "60293991", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "60293991", + "voter": "freebornangel" } ], + "author": "derekareith", "author_reputation": 0, + "beneficiaries": [], + "body": "Yea, that's cool. I think like bitcoiner pointed out, though, we can't get them to work since images sent to the blockchain are cached by Steemit and won't update. They update on other \"windows\" like steemd, but that info isn't going to be accurate. It's a lot tougher than I thought it would be XD\n\nI see Steemit integrating it in the future, but it's probably real low on their list of priorities.", + "body_length": 402, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 1, + "created": "2016-09-14T02:13:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-14T02:13:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 60293991, "parent_author": "freebornangel", "parent_permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", + "post_id": 946049, + "promoted": "0.000 HBD", + "replies": [], "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z" }, { - "post_id": 943509, + "active_votes": [], "author": "boomer", - "permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "ahhh...gotcha", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 13, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 4, "created": "2016-09-13T20:24:27", - "last_update": "2016-09-13T20:24:27", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 4, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:24:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "bitcoiner", + "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", + "post_id": 943509, "promoted": "0.000 HBD", "replies": [], - "body_length": 13, - "active_votes": [], - "author_reputation": 0, - "parent_author": "bitcoiner", - "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z", - "url": "/test/@derekareith/page-view-counter-test-post#@boomer/re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@boomer/re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z" }, { - "post_id": 943452, + "active_votes": [], "author": "derekareith", - "permlink": "re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "yea stuck on 0...the others I tried in the comments just say various errors/img cant display", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 92, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 0, "created": "2016-09-13T20:18:48", - "last_update": "2016-09-13T20:18:48", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:18:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "goldmatters", + "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z", + "post_id": 943452, "promoted": "0.000 HBD", "replies": [], - "body_length": 92, - "active_votes": [], - "author_reputation": 0, - "parent_author": "goldmatters", - "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z" }, { - "post_id": 937890, + "active_votes": [], "author": "golfball", - "permlink": "re-golfball-re-golfball-test-20160913t063516433z", + "author_reputation": 0, + "beneficiaries": [], + "body": "mouse \u0e40\u0e21\u0e32\u0e2a\u0e4c \u0e34\u0e31\nhard drive \u0e2e\u0e32\u0e23\u0e4c\u0e14\u0e44\u0e14\u0e23\u0e4c\nhard disk \u0e2e\u0e32\u0e23\u0e4c\u0e14\u0e14\u0e34\u0e2a\u0e01\u0e4c\nMonitor \u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d\nDisplay \u0e41\u0e2a\u0e14\u0e07\nLCD screen\nCTR screen \u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d\nplasma screen \u0e1e\u0e23\u0e32\u0e2a\u0e21\u0e48\u0e32\nRAM memory \u0e2b\u0e19\u0e48\u0e27\u0e22\u0e04\u0e27\u0e32\u0e21\u0e08\u0e33\u0e41\u0e23\u0e21\nROM memory \u0e23\u0e2d\u0e21\nPrinter \u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e1e\u0e34\u0e21\u0e1e\u0e4c\nplotter\nmicrophone \u0e44\u0e21\u0e42\u0e04\u0e23\u0e42\u0e1f\u0e19\nscanner \u0e40\u0e04\u0e23\u0e37\u0e2d\u0e07\u0e2a\u0e40\u0e40\u0e01\u0e19\nspeakers\nkeyboard \u0e41\u0e1b\u0e49\u0e19\u0e1e\u0e34\u0e21\u0e1e\u0e4c\nbarcode \u0e1a\u0e32\u0e23\u0e4c\u0e42\u0e04\u0e49\u0e14\nRight click\n\nhttp://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\nhttp://cdn.slashgear.com/wp-content/uploads/2013/04/Seagate-HDD.jpg\nhttp://img.bbystatic.com/BestBuy_US/images/products/3434/3434015cv13d.jpg\nhttp://cdn.computerhope.com/computer-memory.jpg\nhttps://xiebingqing815.files.wordpress.com/2013/09/rom-vs-ram.png", + "body_length": 680, + "cashout_time": "2016-09-30T07:41:51", "category": "test", - "title": "", - "body": "mouse เมาส์ ิั\nhard drive ฮาร์ดไดร์\nhard disk ฮาร์ดดิสก์\nMonitor หน้าจอ\nDisplay แสดง\nLCD screen\nCTR screen หน้าจอ\nplasma screen พราสม่า\nRAM memory หน่วยความจำแรม\nROM memory รอม\nPrinter เครื่องพิมพ์\nplotter\nmicrophone ไมโครโฟน\nscanner เครืองสเเกน\nspeakers\nkeyboard แป้นพิมพ์\nbarcode บาร์โค้ด\nRight click\n\nhttp://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\nhttp://cdn.slashgear.com/wp-content/uploads/2013/04/Seagate-HDD.jpg\nhttp://img.bbystatic.com/BestBuy_US/images/products/3434/3434015cv13d.jpg\nhttp://cdn.computerhope.com/computer-memory.jpg\nhttps://xiebingqing815.files.wordpress.com/2013/09/rom-vs-ram.png", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", + "children": 1, "created": "2016-09-13T06:35:18", - "last_update": "2016-09-13T06:35:18", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-30T07:41:51", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T06:35:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "golfball", + "parent_permlink": "re-golfball-test-20160913t063057513z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-golfball-re-golfball-test-20160913t063516433z", + "post_id": 937890, "promoted": "0.000 HBD", "replies": [], - "body_length": 680, - "active_votes": [], - "author_reputation": 0, - "parent_author": "golfball", - "parent_permlink": "re-golfball-test-20160913t063057513z", - "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-test-20160913t063516433z", "root_title": "Test One", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-test-20160913t063516433z" }, { - "post_id": 937496, + "active_votes": [], "author": "royaltiffany", - "permlink": "re-mrlogic-re-royaltiffany-test-20160913t051214805z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Well if u had to ...u had to...", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 31, + "cashout_time": "2016-10-14T01:42:18", + "category": "test", + "children": 0, "created": "2016-09-13T05:12:15", - "last_update": "2016-09-13T05:12:15", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T01:42:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T05:12:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "mrlogic", + "parent_permlink": "re-royaltiffany-test-20160912t110110157z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-mrlogic-re-royaltiffany-test-20160913t051214805z", + "post_id": 937496, "promoted": "0.000 HBD", "replies": [], - "body_length": 31, - "active_votes": [], - "author_reputation": 0, - "parent_author": "mrlogic", - "parent_permlink": "re-royaltiffany-test-20160912t110110157z", - "url": "/test/@royaltiffany/test#@royaltiffany/re-mrlogic-re-royaltiffany-test-20160913t051214805z", "root_title": "Test", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@royaltiffany/test#@royaltiffany/re-mrlogic-re-royaltiffany-test-20160913t051214805z" }, { - "post_id": 936569, + "active_votes": [], "author": "contentjunkie", - "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "dickbutt", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 8, + "cashout_time": "2016-10-14T04:41:42", + "category": "test", + "children": 0, "created": "2016-09-13T02:39:15", - "last_update": "2016-09-13T02:39:15", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T04:41:42", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T02:39:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "contentjunkie", + "parent_permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022316187z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z", + "post_id": 936569, "promoted": "0.000 HBD", "replies": [], - "body_length": 8, - "active_votes": [], - "author_reputation": 0, - "parent_author": "contentjunkie", - "parent_permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022316187z", - "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z", "root_title": "testing the @dickbutt automated system", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z" }, { - "post_id": 936550, + "active_votes": [], "author": "contentjunkie", - "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "dickbutt", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 8, + "cashout_time": "2016-10-14T04:41:42", + "category": "test", + "children": 0, "created": "2016-09-13T02:36:06", - "last_update": "2016-09-13T02:36:06", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T04:41:42", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 8, - "active_votes": [], - "author_reputation": 0, + "last_update": "2016-09-13T02:36:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, "parent_author": "contentjunkie", "parent_permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022535074z", - "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z", + "post_id": 936550, + "promoted": "0.000 HBD", + "replies": [], "root_title": "testing the @dickbutt automated system", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z" }, { - "post_id": 930445, + "active_votes": [], "author": "demotruk", - "permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "I pushed the button and it turned out to be just a jay-peg :-(", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 62, + "cashout_time": "2016-10-14T01:42:18", + "category": "test", + "children": 1, "created": "2016-09-12T13:30:42", - "last_update": "2016-09-12T13:30:42", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T01:42:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-12T13:30:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "bige37", + "parent_permlink": "re-royaltiffany-test-20160912t114919145z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z", + "post_id": 930445, "promoted": "0.000 HBD", "replies": [], - "body_length": 62, - "active_votes": [], - "author_reputation": 0, - "parent_author": "bige37", - "parent_permlink": "re-royaltiffany-test-20160912t114919145z", - "url": "/test/@royaltiffany/test#@demotruk/re-bige37-re-royaltiffany-test-20160912t133042108z", "root_title": "Test", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@royaltiffany/test#@demotruk/re-bige37-re-royaltiffany-test-20160912t133042108z" }, { - "post_id": 920080, + "active_votes": [], "author": "earnest", - "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": ":) Transexual fux :)", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 20, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T09:01:57", - "last_update": "2016-09-11T09:01:57", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T09:01:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "brendio", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z", + "post_id": 920080, "promoted": "0.000 HBD", "replies": [], - "body_length": 20, - "active_votes": [], - "author_reputation": 0, - "parent_author": "brendio", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z" }, { - "post_id": 920072, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Can you breath?Yes, Brath, Breath the air in, out, repeat", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 57, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T09:01:00", - "last_update": "2016-09-11T09:01:00", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T09:01:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z", + "post_id": 920072, "promoted": "0.000 HBD", "replies": [], - "body_length": 57, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z" }, { - "post_id": 920050, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "you got it by now", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 17, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:56:36", - "last_update": "2016-09-11T08:56:36", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:56:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z", + "post_id": 920050, "promoted": "0.000 HBD", "replies": [], - "body_length": 17, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z" }, { - "post_id": 920045, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "breath 10 times", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 15, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:56:15", - "last_update": "2016-09-11T08:56:15", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:56:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z", + "post_id": 920045, "promoted": "0.000 HBD", "replies": [], - "body_length": 15, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z" }, { - "post_id": 920042, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "it is, just breath and stay calm", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 32, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:55:06", - "last_update": "2016-09-11T08:55:06", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:55:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z", + "post_id": 920042, "promoted": "0.000 HBD", "replies": [], - "body_length": 32, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z" }, { - "post_id": 920027, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "there you go", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 12, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:52:45", - "last_update": "2016-09-11T08:52:45", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 12, - "active_votes": [], - "author_reputation": 0, + "last_update": "2016-09-11T08:52:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, "parent_author": "skeptic", "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z", + "post_id": 920027, + "promoted": "0.000 HBD", + "replies": [], "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z" }, { - "post_id": 919991, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "https://s17.postimg.io/kiv7efda7/dickbutt_mark_by_reilpikram_d8busm9.png", - "json_metadata": "{}", + "body_length": 72, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 1, "created": "2016-09-11T08:46:45", - "last_update": "2016-09-11T08:46:45", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:46:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", + "post_id": 919991, "promoted": "0.000 HBD", "replies": [], - "body_length": 72, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643" }, { - "post_id": 920055, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Im not afraid, I can defeat it", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 30, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:58:06", - "last_update": "2016-09-11T08:58:06", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:58:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z", + "post_id": 920055, "promoted": "0.000 HBD", "replies": [], - "body_length": 30, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z" }, { - "post_id": 919966, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "https://s17.postimg.io/j6i3qa58f/dickbutt.jpg", - "json_metadata": "{}", + "body_length": 45, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 1, "created": "2016-09-11T08:39:51", - "last_update": "2016-09-11T08:39:51", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:39:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", + "post_id": 919966, "promoted": "0.000 HBD", "replies": [], - "body_length": 45, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948" }, { - "post_id": 919953, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "https://s17.postimg.io/f66d0apdr/Dick_Buttpink.jpg", - "json_metadata": "{}", + "body_length": 50, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 1, "created": "2016-09-11T08:36:30", - "last_update": "2016-09-11T08:36:30", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:36:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", + "post_id": 919953, "promoted": "0.000 HBD", "replies": [], - "body_length": 50, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628" }, { - "post_id": 919934, + "active_votes": [], "author": "earnest", - "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "::) Got you", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 11, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:32:39", - "last_update": "2016-09-11T08:32:39", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:32:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "brendio", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z", + "post_id": 919934, "promoted": "0.000 HBD", "replies": [], - "body_length": 11, - "active_votes": [], - "author_reputation": 0, - "parent_author": "brendio", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z" }, { - "post_id": 919913, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "dick butt? cunt ass? feminist X, they are fucking with you , show me your talents", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 81, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:29:21", - "last_update": "2016-09-11T08:29:21", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:29:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z", + "post_id": 919913, "promoted": "0.000 HBD", "replies": [], - "body_length": 81, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z" }, { - "post_id": 919868, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "https://s17.postimg.io/uf0vrt8fz/dbupvote.gif", - "json_metadata": "{}", + "body_length": 45, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 3, "created": "2016-09-11T08:21:42", - "last_update": "2016-09-11T08:21:42", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 3, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 45, - "active_votes": [], - "author_reputation": 0, + "last_update": "2016-09-11T08:21:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, "parent_author": "skeptic", "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", + "post_id": 919868, + "promoted": "0.000 HBD", + "replies": [], "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139" }, { - "post_id": 919616, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "https://s17.postimg.io/ojbji5iin/m5_En_TSs.jpg", - "json_metadata": "{}", + "body_length": 46, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 5, "created": "2016-09-11T07:25:45", - "last_update": "2016-09-11T07:25:45", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 5, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T07:25:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", + "post_id": 919616, "promoted": "0.000 HBD", "replies": [], - "body_length": 46, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542" }, { - "post_id": 919903, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "go one up", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 9, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:27:36", - "last_update": "2016-09-11T08:27:36", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:27:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z", + "post_id": 919903, "promoted": "0.000 HBD", "replies": [], - "body_length": 9, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z" }, { - "post_id": 915135, + "active_votes": [], "author": "leprechaun", - "permlink": "re-whatsup-re-leprechaun-steemedit-test-5-20160910t210828490z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Thanks. follow me. I am going to post something interesting.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 62, + "cashout_time": "2016-10-11T07:48:42", + "category": "test", + "children": 0, "created": "2016-09-10T21:08:33", - "last_update": "2016-09-10T21:08:57", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-11T07:48:42", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-10T21:08:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "whatsup", + "parent_permlink": "re-leprechaun-steemedit-test-5-20160910t194955148z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-whatsup-re-leprechaun-steemedit-test-5-20160910t210828490z", + "post_id": 915135, "promoted": "0.000 HBD", "replies": [], - "body_length": 62, - "active_votes": [], - "author_reputation": 0, - "parent_author": "whatsup", - "parent_permlink": "re-leprechaun-steemedit-test-5-20160910t194955148z", - "url": "/test/@leprechaun/steemedit-test-5#@leprechaun/re-whatsup-re-leprechaun-steemedit-test-5-20160910t210828490z", "root_title": "steemedit test 5", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@leprechaun/steemedit-test-5#@leprechaun/re-whatsup-re-leprechaun-steemedit-test-5-20160910t210828490z" }, { - "post_id": 914301, + "active_votes": [], "author": "djangothegod", - "permlink": "re-steembaby-re-steembaby-test-my-posts-disappeared-20160910t193455528z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "I just submitted my first post and nothing happened.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 52, + "cashout_time": "2016-09-25T14:37:57", + "category": "test", + "children": 0, "created": "2016-09-10T19:34:57", - "last_update": "2016-09-10T19:35:06", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-25T14:37:57", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-10T19:35:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steembaby", + "parent_permlink": "re-steembaby-test-my-posts-disappeared-20160825t145927000z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steembaby-re-steembaby-test-my-posts-disappeared-20160910t193455528z", + "post_id": 914301, "promoted": "0.000 HBD", "replies": [], - "body_length": 52, - "active_votes": [], - "author_reputation": 0, - "parent_author": "steembaby", - "parent_permlink": "re-steembaby-test-my-posts-disappeared-20160825t145927000z", - "url": "/test/@steembaby/test-my-posts-disappeared#@djangothegod/re-steembaby-re-steembaby-test-my-posts-disappeared-20160910t193455528z", "root_title": "test -- my posts disappeared!", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@steembaby/test-my-posts-disappeared#@djangothegod/re-steembaby-re-steembaby-test-my-posts-disappeared-20160910t193455528z" }, { - "post_id": 911784, + "active_votes": [], "author": "hacon", - "permlink": "re-kjsxj-re-hacon-first-post-20160910t145455609z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "I am trying to get a handle on the main differences from say reddit. I take it we can't delete posts, but we can edit them. Is the edit history visable?\nWhat about deleting comments ... lets see now.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 199, + "cashout_time": "2016-10-11T17:09:06", + "category": "test", + "children": 0, "created": "2016-09-10T14:54:57", - "last_update": "2016-09-10T14:54:57", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-11T17:09:06", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-10T14:54:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "kjsxj", + "parent_permlink": "re-hacon-first-post-20160910t144933601z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-kjsxj-re-hacon-first-post-20160910t145455609z", + "post_id": 911784, "promoted": "0.000 HBD", "replies": [], - "body_length": 199, - "active_votes": [], - "author_reputation": 0, - "parent_author": "kjsxj", - "parent_permlink": "re-hacon-first-post-20160910t144933601z", - "url": "/test/@hacon/first-post#@hacon/re-kjsxj-re-hacon-first-post-20160910t145455609z", "root_title": "First post", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@hacon/first-post#@hacon/re-kjsxj-re-hacon-first-post-20160910t145455609z" }, { - "post_id": 870034, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "https://s17.postimg.io/oct91bjzz/dogedickbutt.gif", - "json_metadata": "{}", + "body_length": 49, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 1, "created": "2016-09-06T06:19:54", - "last_update": "2016-09-06T06:19:54", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-06T06:19:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "brendio", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", + "post_id": 870034, "promoted": "0.000 HBD", "replies": [], - "body_length": 49, - "active_votes": [], - "author_reputation": 0, - "parent_author": "brendio", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952" }, { - "post_id": 859422, + "active_votes": [], "author": "ace108", - "permlink": "re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "You're welcome. The font size is smaller for yours because your name is longer and I made the \"Follow\" with same font size. I was thinking of leaving the \"Follow\" to be bigger but think to make a consistent look - just my preference. If you prefer \"Follow\" to be bigger, I can easily adjust it.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 294, + "cashout_time": "2016-10-06T04:18:33", + "category": "test", + "children": 1, "created": "2016-09-05T04:41:54", - "last_update": "2016-09-05T04:41:54", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-06T04:18:33", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-05T04:41:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "bullionstackers", + "parent_permlink": "re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t035325452z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", + "post_id": 859422, "promoted": "0.000 HBD", "replies": [], - "body_length": 294, - "active_votes": [], - "author_reputation": 0, - "parent_author": "bullionstackers", - "parent_permlink": "re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t035325452z", - "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want#@ace108/re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want#@ace108/re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z" }, { - "post_id": 857331, + "active_votes": [], "author": "steemjesus", - "permlink": "re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "fuck r4fken dickbutt \n\nfuck him hard with your buttdick", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 55, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 1, "created": "2016-09-04T22:23:39", - "last_update": "2016-09-04T22:23:39", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-04T22:23:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t064114931z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", + "post_id": 857331, "promoted": "0.000 HBD", "replies": [], - "body_length": 55, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t064114931z", - "url": "/test/@dickbutt/testing-dickbutt#@steemjesus/re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@steemjesus/re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z" }, { - "post_id": 843277, + "active_votes": [], "author": "str11ngfello", - "permlink": "re-str11ngfello-re-str11ngfello-testing-20160903t104442633z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "asdf", - "json_metadata": "{}", + "body_length": 4, + "cashout_time": "2016-10-04T09:03:45", + "category": "test", + "children": 0, "created": "2016-09-03T10:53:30", - "last_update": "2016-09-03T10:53:30", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-04T09:03:45", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-03T10:53:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "str11ngfello", + "parent_permlink": "re-str11ngfello-testing-20160903t104442633z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-str11ngfello-re-str11ngfello-testing-20160903t104442633z", + "post_id": 843277, "promoted": "0.000 HBD", "replies": [], - "body_length": 4, - "active_votes": [], - "author_reputation": 0, - "parent_author": "str11ngfello", - "parent_permlink": "re-str11ngfello-testing-20160903t104442633z", - "url": "/test/@str11ngfello/testing#@str11ngfello/re-str11ngfello-re-str11ngfello-testing-20160903t104442633z", "root_title": "Testing", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@str11ngfello/testing#@str11ngfello/re-str11ngfello-re-str11ngfello-testing-20160903t104442633z" }, { - "post_id": 832895, + "active_votes": [], "author": "deli", - "permlink": "re-deli-re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t094545057z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "good really!", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 12, + "cashout_time": "2016-10-03T09:26:45", + "category": "test", + "children": 0, "created": "2016-09-02T09:45:45", - "last_update": "2016-09-02T09:45:45", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T09:26:45", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T09:45:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "deli", + "parent_permlink": "re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t093020211z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-deli-re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t094545057z", + "post_id": 832895, "promoted": "0.000 HBD", "replies": [], - "body_length": 12, - "active_votes": [], - "author_reputation": 0, - "parent_author": "deli", - "parent_permlink": "re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t093020211z", - "url": "/test/@deli/test-just-how-to-see-how-this-all-works-qbd#@deli/re-deli-re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t094545057z", "root_title": "test just how to see how this all works qbd", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@deli/test-just-how-to-see-how-this-all-works-qbd#@deli/re-deli-re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t094545057z" }, { - "post_id": 832881, + "active_votes": [], "author": "deli", - "permlink": "kjhkfgfgud", - "category": "test", - "title": "this is another test", + "author_reputation": 0, + "beneficiaries": [], "body": "bla bla bla", - "json_metadata": "{}", + "body_length": 11, + "cashout_time": "2016-10-03T09:26:45", + "category": "test", + "children": 0, "created": "2016-09-02T09:42:39", - "last_update": "2016-09-02T10:01:54", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T09:26:45", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T10:01:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "deli", + "parent_permlink": "ghfhdg", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "kjhkfgfgud", + "post_id": 832881, "promoted": "0.000 HBD", "replies": [], - "body_length": 11, - "active_votes": [], - "author_reputation": 0, - "parent_author": "deli", - "parent_permlink": "ghfhdg", - "url": "/test/@deli/test-just-how-to-see-how-this-all-works-qbd#@deli/kjhkfgfgud", "root_title": "test just how to see how this all works qbd", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "this is another test", + "total_payout_value": "0.000 HBD", + "url": "/test/@deli/test-just-how-to-see-how-this-all-works-qbd#@deli/kjhkfgfgud" }, { - "post_id": 831973, + "active_votes": [], "author": "no-mercy", - "permlink": "re-iamgrateful-re-thebatchman1-do-not-vote-test-20160902t065638142z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "They are \"testing\" you to see what you will do....", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 50, + "cashout_time": "2016-10-03T07:15:03", + "category": "test", + "children": 0, "created": "2016-09-02T06:56:45", - "last_update": "2016-09-02T06:56:45", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:15:03", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T06:56:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "iamgrateful", + "parent_permlink": "re-thebatchman1-do-not-vote-test-20160902t065341712z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-iamgrateful-re-thebatchman1-do-not-vote-test-20160902t065638142z", + "post_id": 831973, "promoted": "0.000 HBD", "replies": [], - "body_length": 50, - "active_votes": [], - "author_reputation": 0, - "parent_author": "iamgrateful", - "parent_permlink": "re-thebatchman1-do-not-vote-test-20160902t065341712z", - "url": "/test/@thebatchman1/do-not-vote-test#@no-mercy/re-iamgrateful-re-thebatchman1-do-not-vote-test-20160902t065638142z", "root_title": "do not vote - test", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@thebatchman1/do-not-vote-test#@no-mercy/re-iamgrateful-re-thebatchman1-do-not-vote-test-20160902t065638142z" }, { - "post_id": 831946, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", - "json_metadata": "{}", + "body_length": 69, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 2, "created": "2016-09-02T06:50:54", - "last_update": "2016-09-02T06:50:54", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 2, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T06:50:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "contentjunkie", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t065005906z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051", + "post_id": 831946, "promoted": "0.000 HBD", "replies": [], - "body_length": 69, - "active_votes": [], - "author_reputation": 0, - "parent_author": "contentjunkie", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t065005906z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 831908, - "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", - "category": "test", "title": "", - "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", - "json_metadata": "{}", - "created": "2016-09-02T06:41:48", - "last_update": "2016-09-02T06:41:48", - "depth": 2, - "children": 3, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 69, + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051" + }, + { "active_votes": [], + "author": "dickbutt", "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t064114931z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", - "root_title": "testing @dickbutt", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 805729, - "author": "jonathan-looman", - "permlink": "re-whatsup-re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t214632491z", + "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", + "body_length": 69, + "cashout_time": "2016-10-03T07:19:21", "category": "test", - "title": "", - "body": "I think that we need to recognise value in openness and distributed systems as an alternative to centralized monopolistic systems. In what way Steem is leaning I am still not sure but the Steemit content platform is bound to become gamed and the early adopters definitely will continue to have an advantage and pull more weight.", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-30T21:46:33", - "last_update": "2016-08-30T21:46:33", + "children": 3, + "created": "2016-09-02T06:41:48", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 356509174, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-30T19:02:24", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T06:41:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t064114931z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", + "post_id": 831908, "promoted": "0.000 HBD", "replies": [], - "body_length": 328, + "root_title": "testing @dickbutt", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147" + }, + { "active_votes": [ { - "voter": "jonathan-looman", - "rshares": "356509174", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "356509174", + "voter": "jonathan-looman" } ], + "author": "jonathan-looman", "author_reputation": 0, + "beneficiaries": [], + "body": "I think that we need to recognise value in openness and distributed systems as an alternative to centralized monopolistic systems. In what way Steem is leaning I am still not sure but the Steemit content platform is bound to become gamed and the early adopters definitely will continue to have an advantage and pull more weight.", + "body_length": 328, + "cashout_time": "2016-09-30T19:02:24", + "category": "test", + "children": 0, + "created": "2016-08-30T21:46:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-30T21:46:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 356509174, "parent_author": "whatsup", "parent_permlink": "re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t200608106z", - "url": "/test/@jonathan-looman/hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain#@jonathan-looman/re-whatsup-re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t214632491z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-whatsup-re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t214632491z", + "post_id": 805729, + "promoted": "0.000 HBD", + "replies": [], "root_title": "What is Steemit?", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@jonathan-looman/hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain#@jonathan-looman/re-whatsup-re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t214632491z" }, { - "post_id": 780295, + "active_votes": [], "author": "ivicaa", - "permlink": "re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": ":) At least you're not a bot. I am struggling with the curation reward calculation. Not easy to understand. Your upvote helps to understand it.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 143, + "cashout_time": "2016-09-28T17:56:18", + "category": "test", + "children": 1, "created": "2016-08-28T18:01:54", - "last_update": "2016-08-28T18:01:54", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-28T17:56:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-28T18:01:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "thecleangame", + "parent_permlink": "re-ivicaa-test-please-ignore-20160828t172635435z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", + "post_id": 780295, "promoted": "0.000 HBD", "replies": [], - "body_length": 143, - "active_votes": [], - "author_reputation": 0, - "parent_author": "thecleangame", - "parent_permlink": "re-ivicaa-test-please-ignore-20160828t172635435z", - "url": "/test/@ivicaa/test-please-ignore#@ivicaa/re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", "root_title": "TEST - please ignore", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@ivicaa/test-please-ignore#@ivicaa/re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z" }, { - "post_id": 743391, + "active_votes": [], "author": "steembaby", - "permlink": "re-ibringawareness-re-steembaby-test-my-posts-disappeared-20160825t150259870z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Exactly the same feeling.\nI've saw my post published and then I've emptied the drafts.\nThat makes me feel worse now.\nI don't have the mood to write the same article for a second time.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 183, + "cashout_time": "2016-09-25T14:37:57", + "category": "test", + "children": 0, "created": "2016-08-25T15:03:15", - "last_update": "2016-08-25T15:03:15", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-25T14:37:57", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-25T15:03:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "ibringawareness", + "parent_permlink": "re-steembaby-test-my-posts-disappeared-20160825t144249526z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-ibringawareness-re-steembaby-test-my-posts-disappeared-20160825t150259870z", + "post_id": 743391, "promoted": "0.000 HBD", "replies": [], - "body_length": 183, - "active_votes": [], - "author_reputation": 0, - "parent_author": "ibringawareness", - "parent_permlink": "re-steembaby-test-my-posts-disappeared-20160825t144249526z", - "url": "/test/@steembaby/test-my-posts-disappeared#@steembaby/re-ibringawareness-re-steembaby-test-my-posts-disappeared-20160825t150259870z", "root_title": "test -- my posts disappeared!", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635716, - "author": "trogdor", - "permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", - "category": "test", "title": "", - "body": "Looks like I caught the laonie swarm and two chinese bots. No wang yet, and no 800 spam votes yet...", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T02:09:30", - "last_update": "2016-08-17T02:09:30", - "depth": 2, - "children": 8, - "net_rshares": 14714651186, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 100, + "url": "/test/@steembaby/test-my-posts-disappeared#@steembaby/re-ibringawareness-re-steembaby-test-my-posts-disappeared-20160825t150259870z" + }, + { "active_votes": [ { - "voter": "hellokitty", - "rshares": "14714651186", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "14714651186", + "voter": "hellokitty" } ], + "author": "trogdor", "author_reputation": 0, + "beneficiaries": [], + "body": "Looks like I caught the laonie swarm and two chinese bots. No wang yet, and no 800 spam votes yet...", + "body_length": 100, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 8, + "created": "2016-08-17T02:09:30", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T02:09:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 14714651186, "parent_author": "royaltiffany", "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", + "post_id": 635716, + "promoted": "0.000 HBD", + "replies": [], "root_title": "this is a test to see if i have been targeted by a spam bot army", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z" }, { - "post_id": 635701, + "active_votes": [], "author": "rawnetics", - "permlink": "re-rawnetics-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020745425z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Oh yes, here they are!", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 22, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 0, "created": "2016-08-17T02:07:45", - "last_update": "2016-08-17T02:07:45", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T02:07:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "rawnetics", + "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020521246z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-rawnetics-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020745425z", + "post_id": 635701, "promoted": "0.000 HBD", "replies": [], - "body_length": 22, - "active_votes": [], - "author_reputation": 0, - "parent_author": "rawnetics", - "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020521246z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@rawnetics/re-rawnetics-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020745425z", "root_title": "this is a test to see if i have been targeted by a spam bot army", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@rawnetics/re-rawnetics-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020745425z" }, { - "post_id": 635663, + "active_votes": [], "author": "gary-smith", - "permlink": "re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "are you a robot ?", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 17, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 3, "created": "2016-08-17T02:02:42", - "last_update": "2016-08-17T02:02:42", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 3, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T02:02:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "thebeachedwhale", + "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020213239z", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", + "post_id": 635663, "promoted": "0.000 HBD", "replies": [], - "body_length": 17, - "active_votes": [], - "author_reputation": 0, - "parent_author": "thebeachedwhale", - "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020213239z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@gary-smith/re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", "root_title": "this is a test to see if i have been targeted by a spam bot army", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@gary-smith/re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z" }, { - "post_id": 955877, + "active_votes": [], "author": "oaldamster", - "permlink": "re-achim86-test-20160915t070512394z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Result: confirmed! ;-)", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 22, + "cashout_time": "2016-09-16T14:39:17", + "category": "test", + "children": 1, "created": "2016-09-15T07:05:12", - "last_update": "2016-09-15T07:05:12", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 1, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T07:05:12", + "max_accepted_payout": "1000000.000 HBD", "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T14:39:17", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "parent_author": "achim86", + "parent_permlink": "test", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-achim86-test-20160915t070512394z", + "post_id": 955877, "promoted": "0.000 HBD", "replies": [], - "body_length": 22, - "active_votes": [], - "author_reputation": 0, - "parent_author": "achim86", - "parent_permlink": "test", - "url": "/test/@achim86/test#@oaldamster/re-achim86-test-20160915t070512394z", "root_title": "test", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@achim86/test#@oaldamster/re-achim86-test-20160915t070512394z" }, { - "post_id": 946041, + "active_votes": [], "author": "steemitqa", - "permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "I tried this not long ago.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 26, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 1, "created": "2016-09-14T02:12:12", - "last_update": "2016-09-14T02:12:12", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-14T02:12:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z", + "post_id": 946041, "promoted": "0.000 HBD", "replies": [], - "body_length": 26, - "active_votes": [], - "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@steemitqa/re-derekareith-page-view-counter-test-post-20160914t021242459z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@steemitqa/re-derekareith-page-view-counter-test-post-20160914t021242459z" }, { - "post_id": 945943, + "active_votes": [ + { + "percent": "3000", + "reputation": 0, + "rshares": "46263835410", + "voter": "derekareith" + } + ], "author": "freebornangel", - "permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Http://minds.com/ottman has a pretty good counter set up.", - "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"Http:\\/\\/minds.com\\/ottman\"]}", + "body_length": 57, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 2, "created": "2016-09-14T01:54:00", - "last_update": "2016-09-14T01:57:12", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 2, - "net_rshares": 46263835410, + "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"Http:\\/\\/minds.com\\/ottman\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-14T01:57:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 46263835410, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z", + "post_id": 945943, "promoted": "0.000 HBD", "replies": [], - "body_length": 57, + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-page-view-counter-test-post-20160914t015352577z" + }, + { "active_votes": [ { - "voter": "derekareith", - "rshares": "46263835410", - "percent": "3000", - "reputation": 0 + "percent": "5000", + "reputation": 0, + "rshares": "77095774656", + "voter": "derekareith" } ], + "author": "bitcoiner", "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-page-view-counter-test-post-20160914t015352577z", - "root_title": "Page View Counter [Test Post]", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 943502, - "author": "bitcoiner", - "permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z", - "category": "test", - "title": "", "body": "All images get cached by img1.steemit.com.\nBut this will work with users of third party apps that view posts that don't use that caching server, like eSteem.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 157, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 5, "created": "2016-09-13T20:23:15", - "last_update": "2016-09-13T20:23:15", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 5, - "net_rshares": 77095774656, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:23:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 77095774656, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z", + "post_id": 943502, "promoted": "0.000 HBD", "replies": [], - "body_length": 157, + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-page-view-counter-test-post-20160913t202316437z" + }, + { "active_votes": [ { - "voter": "derekareith", - "rshares": "77095774656", - "percent": "5000", - "reputation": 0 + "percent": "10000", + "reputation": 0, + "rshares": "10592290339", + "voter": "elissahawke" } ], + "author": "derekareith", "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-page-view-counter-test-post-20160913t202316437z", - "root_title": "Page View Counter [Test Post]", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 943498, - "author": "derekareith", - "permlink": "re-derekareith-page-view-counter-test-post-20160913t202249477z", - "category": "test", - "title": "", "body": "\"Free
Free Web Counter", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/www.e-zeeinternet.com\\/count.php?page=1156943&style=blushdw&nbdigits=5\"],\"links\":[\"http:\\/\\/www.e-zeeinternet.com\\/\"]}", + "body_length": 455, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 0, "created": "2016-09-13T20:22:51", - "last_update": "2016-09-13T20:22:51", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 10592290339, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/www.e-zeeinternet.com\\/count.php?page=1156943&style=blushdw&nbdigits=5\"],\"links\":[\"http:\\/\\/www.e-zeeinternet.com\\/\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:22:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 10592290339, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160913t202249477z", + "post_id": 943498, "promoted": "0.000 HBD", "replies": [], - "body_length": 455, + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t202249477z" + }, + { "active_votes": [ { - "voter": "elissahawke", - "rshares": "10592290339", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "10384598371", + "voter": "elissahawke" } ], + "author": "derekareith", "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t202249477z", - "root_title": "Page View Counter [Test Post]", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 943470, - "author": "derekareith", - "permlink": "re-derekareith-page-view-counter-test-post-20160913t201948735z", - "category": "test", - "title": "", "body": "\n
\"commercial
\n\nmaybe this one ?", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/simplehitcounter.com\\/hit.php?uid=2165971&f=16777215&b=0\"],\"links\":[\"http:\\/\\/www.marcleaningservices.com\"]}", + "body_length": 332, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 0, "created": "2016-09-13T20:19:51", - "last_update": "2016-09-13T20:20:15", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 10384598371, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/simplehitcounter.com\\/hit.php?uid=2165971&f=16777215&b=0\"],\"links\":[\"http:\\/\\/www.marcleaningservices.com\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:20:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 10384598371, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201948735z", + "post_id": 943470, "promoted": "0.000 HBD", "replies": [], - "body_length": 332, - "active_votes": [ - { - "voter": "elissahawke", - "rshares": "10384598371", - "percent": "10000", - "reputation": 0 - } - ], - "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201948735z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201948735z" }, { - "post_id": 943456, + "active_votes": [], "author": "jbouchard12", - "permlink": "re-derekareith-page-view-counter-test-post-20160913t201859183z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Let us know if you get it to work!", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 34, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 0, "created": "2016-09-13T20:19:00", - "last_update": "2016-09-13T20:19:00", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 34, - "active_votes": [], - "author_reputation": 0, + "last_update": "2016-09-13T20:19:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, "parent_author": "derekareith", "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@jbouchard12/re-derekareith-page-view-counter-test-post-20160913t201859183z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201859183z", + "post_id": 943456, + "promoted": "0.000 HBD", + "replies": [], "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@jbouchard12/re-derekareith-page-view-counter-test-post-20160913t201859183z" }, { - "post_id": 943447, + "active_votes": [], "author": "goldmatters", - "permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Do not see a counter?", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 21, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 1, "created": "2016-09-13T20:18:12", - "last_update": "2016-09-13T20:18:12", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:18:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z", + "post_id": 943447, "promoted": "0.000 HBD", "replies": [], - "body_length": 21, - "active_votes": [], - "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@goldmatters/re-derekareith-page-view-counter-test-post-20160913t201813326z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@goldmatters/re-derekareith-page-view-counter-test-post-20160913t201813326z" }, { - "post_id": 943437, + "active_votes": [], "author": "derekareith", - "permlink": "re-derekareith-page-view-counter-test-post-20160913t201727708z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "no luck :(", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 10, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 0, "created": "2016-09-13T20:17:30", - "last_update": "2016-09-13T20:17:30", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:17:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201727708z", + "post_id": 943437, "promoted": "0.000 HBD", "replies": [], - "body_length": 10, - "active_votes": [], - "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201727708z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201727708z" }, { - "post_id": 943436, + "active_votes": [], "author": "karenb54", - "permlink": "re-derekareith-page-view-counter-test-post-20160913t201718842z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "I opened, read and upvoted, interesting to see the outcome :)", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 61, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 0, "created": "2016-09-13T20:17:24", - "last_update": "2016-09-13T20:17:24", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:17:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201718842z", + "post_id": 943436, "promoted": "0.000 HBD", "replies": [], - "body_length": 61, - "active_votes": [], - "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@karenb54/re-derekareith-page-view-counter-test-post-20160913t201718842z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@karenb54/re-derekareith-page-view-counter-test-post-20160913t201718842z" }, { - "post_id": 939969, + "active_votes": [], "author": "vinotinto", - "permlink": "re-vinotinto-3qkywh-test-20160913t131315550z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "test comment", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 12, + "cashout_time": "2016-10-14T13:15:18", + "category": "test", + "children": 0, "created": "2016-09-13T13:13:15", - "last_update": "2016-09-13T13:13:15", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T13:15:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T13:13:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "vinotinto", + "parent_permlink": "3qkywh-test", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-vinotinto-3qkywh-test-20160913t131315550z", + "post_id": 939969, "promoted": "0.000 HBD", "replies": [], - "body_length": 12, - "active_votes": [], - "author_reputation": 0, - "parent_author": "vinotinto", - "parent_permlink": "3qkywh-test", - "url": "/test/@vinotinto/3qkywh-test#@vinotinto/re-vinotinto-3qkywh-test-20160913t131315550z", "root_title": "test", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@vinotinto/3qkywh-test#@vinotinto/re-vinotinto-3qkywh-test-20160913t131315550z" }, { - "post_id": 937862, + "active_votes": [], "author": "golfball", - "permlink": "re-golfball-test-20160913t063057513z", + "author_reputation": 0, + "beneficiaries": [], + "body": "1. mouse \u0e40\u0e21\u0e32\u0e2a\u0e4c \u0e34\u0e31 \n2. hard drive \u0e2e\u0e32\u0e23\u0e4c\u0e14\u0e44\u0e14\u0e23\u0e4c\n3. hard disk \u0e2e\u0e32\u0e23\u0e4c\u0e14\u0e14\u0e34\u0e2a\u0e01\u0e4c\n4. Monitor \u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d\n5. Display \u0e41\u0e2a\u0e14\u0e07\n *LCD screen \n *CTR screen \u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d\n* plasma screen \u0e1e\u0e23\u0e32\u0e2a\u0e21\u0e48\u0e32\n\n\n5. RAM memory \u0e2b\u0e19\u0e48\u0e27\u0e22\u0e04\u0e27\u0e32\u0e21\u0e08\u0e33\u0e41\u0e23\u0e21\nROM memory \u0e23\u0e2d\u0e21\n\n6. Printer \u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e1e\u0e34\u0e21\u0e1e\u0e4c\nplotter\n\n7. microphone \u0e44\u0e21\u0e42\u0e04\u0e23\u0e42\u0e1f\u0e19\n\n8. scanner \u0e40\u0e04\u0e23\u0e37\u0e2d\u0e07\u0e2a\u0e40\u0e40\u0e01\u0e19\n\n9. speakers\n\n10. keyboard \u0e41\u0e1b\u0e49\u0e19\u0e1e\u0e34\u0e21\u0e1e\u0e4c\n\n11. barcode \u0e1a\u0e32\u0e23\u0e4c\u0e42\u0e04\u0e49\u0e14\n\n12. \n\n13. Right click\n\nhttp://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\nhttp://cdn.slashgear.com/wp-content/uploads/2013/04/Seagate-HDD.jpg\nhttp://img.bbystatic.com/BestBuy_US/images/products/3434/3434015cv13d.jpg\nhttp://cdn.computerhope.com/computer-memory.jpg\nhttps://xiebingqing815.files.wordpress.com/2013/09/rom-vs-ram.png", + "body_length": 763, + "cashout_time": "2016-09-30T07:41:51", "category": "test", - "title": "", - "body": "1. mouse เมาส์ ิั \n2. hard drive ฮาร์ดไดร์\n3. hard disk ฮาร์ดดิสก์\n4. Monitor หน้าจอ\n5. Display แสดง\n *LCD screen \n *CTR screen หน้าจอ\n* plasma screen พราสม่า\n\n\n5. RAM memory หน่วยความจำแรม\nROM memory รอม\n\n6. Printer เครื่องพิมพ์\nplotter\n\n7. microphone ไมโครโฟน\n\n8. scanner เครืองสเเกน\n\n9. speakers\n\n10. keyboard แป้นพิมพ์\n\n11. barcode บาร์โค้ด\n\n12. \n\n13. Right click\n\nhttp://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\nhttp://cdn.slashgear.com/wp-content/uploads/2013/04/Seagate-HDD.jpg\nhttp://img.bbystatic.com/BestBuy_US/images/products/3434/3434015cv13d.jpg\nhttp://cdn.computerhope.com/computer-memory.jpg\nhttps://xiebingqing815.files.wordpress.com/2013/09/rom-vs-ram.png", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", + "children": 2, "created": "2016-09-13T06:31:00", - "last_update": "2016-09-13T06:33:45", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 2, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-30T07:41:51", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T06:33:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "golfball", + "parent_permlink": "test", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-golfball-test-20160913t063057513z", + "post_id": 937862, "promoted": "0.000 HBD", "replies": [], - "body_length": 763, - "active_votes": [], - "author_reputation": 0, - "parent_author": "golfball", - "parent_permlink": "test", - "url": "/test/@golfball/test#@golfball/re-golfball-test-20160913t063057513z", "root_title": "Test One", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@golfball/test#@golfball/re-golfball-test-20160913t063057513z" }, { - "post_id": 936699, + "active_votes": [], "author": "dickbutt", - "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "dickbutt", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 8, + "cashout_time": "2016-10-14T04:41:42", + "category": "test", + "children": 0, "created": "2016-09-13T02:53:21", - "last_update": "2016-09-13T02:53:21", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T04:41:42", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T02:53:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "testing-the-dickbutt-automated-system", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z", + "post_id": 936699, "promoted": "0.000 HBD", "replies": [], - "body_length": 8, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "testing-the-dickbutt-automated-system", - "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@dickbutt/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z", "root_title": "testing the @dickbutt automated system", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@dickbutt/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z" }, { - "post_id": 936684, + "active_votes": [], "author": "contentjunkie", - "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "dickbutt", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 8, + "cashout_time": "2016-10-14T04:41:42", + "category": "test", + "children": 0, "created": "2016-09-13T02:51:42", - "last_update": "2016-09-13T02:51:42", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T04:41:42", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T02:51:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "testing-the-dickbutt-automated-system", "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z", + "post_id": 936684, "promoted": "0.000 HBD", "replies": [], - "body_length": 8, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "testing-the-dickbutt-automated-system", - "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z", "root_title": "testing the @dickbutt automated system", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.pat.json index c1edea78..8c58bda6 100644 --- a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.pat.json @@ -1,3403 +1,3403 @@ [ { - "post_id": 635692, - "author": "royaltiffany", - "permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", - "category": "test", - "title": "", - "body": "Fail ? No spam bot army...", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T02:06:00", - "last_update": "2016-08-17T02:06:00", - "depth": 1, - "children": 9, - "net_rshares": 211900981073, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.132 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 26, "active_votes": [ { - "voter": "trogdor", - "rshares": "211439242838", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "211439242838", + "voter": "trogdor" }, { - "voter": "highnye", - "rshares": "51307830", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51307830", + "voter": "highnye" }, { - "voter": "lovetosteemit", - "rshares": "54126702", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54126702", + "voter": "lovetosteemit" }, { - "voter": "steemithelper1", - "rshares": "50221956", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50221956", + "voter": "steemithelper1" }, { - "voter": "steemorama", - "rshares": "306081747", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "306081747", + "voter": "steemorama" } ], + "author": "royaltiffany", "author_reputation": 0, - "parent_author": "trogdor", - "parent_permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 929861, - "author": "bige37", - "permlink": "re-royaltiffany-test-20160912t114919145z", + "body": "Fail ? No spam bot army...", + "body_length": 26, + "cashout_time": "2016-09-17T02:19:27", "category": "test", - "title": "", - "body": "This is like saying don't push the red button....dang it!!!!\n\nhttp://i.imgur.com/OG66bhF.jpg", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/i.imgur.com\\/OG66bhF.jpg\"]}", - "created": "2016-09-12T11:49:18", - "last_update": "2016-09-12T13:26:51", + "children": 9, + "created": "2016-08-17T02:06:00", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 2, - "net_rshares": 127840289791, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T01:42:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.029 HBD", + "last_update": "2016-08-17T02:06:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 211900981073, + "parent_author": "trogdor", + "parent_permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", + "pending_payout_value": "0.132 HBD", + "percent_hbd": 10000, + "permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", + "post_id": 845516, "promoted": "0.000 HBD", "replies": [], - "body_length": 92, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z" + }, + { "active_votes": [ { - "voter": "demotruk", - "rshares": "127840289791", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "127840289791", + "voter": "demotruk" } ], + "author": "bige37", "author_reputation": 0, - "parent_author": "royaltiffany", - "parent_permlink": "test", - "url": "/test/@royaltiffany/test#@bige37/re-royaltiffany-test-20160912t114919145z", - "root_title": "Test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 944530, - "author": "bitcoiner", - "permlink": "re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z", + "body": "This is like saying don't push the red button....dang it!!!!\n\nhttp://i.imgur.com/OG66bhF.jpg", + "body_length": 92, + "cashout_time": "2016-10-14T01:42:18", "category": "test", - "title": "", - "body": "It would seem only Steemit uses the caching server img1.steemit.com, because, well, it's theirs.. Steemd just shows the post as it is in the blockchain, which is the unaltered image link.\nThe thing is, is that all the posts are on a public decentralized blockchain, so it's hard to track who has accessed it. You would have to make it a private blockchain, and count all requests to retrieve a post. Even if this were the case, you would have no way to track any copies of the data made after the fact.", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-13T22:37:39", - "last_update": "2016-09-13T22:37:39", - "depth": 6, - "children": 0, - "net_rshares": 111795622957, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", + "children": 2, + "created": "2016-09-12T11:49:18", "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.022 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/i.imgur.com\\/OG66bhF.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-12T13:26:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 127840289791, + "parent_author": "royaltiffany", + "parent_permlink": "test", + "pending_payout_value": "0.029 HBD", + "percent_hbd": 10000, + "permlink": "re-royaltiffany-test-20160912t114919145z", + "post_id": 1218903, "promoted": "0.000 HBD", "replies": [], - "body_length": 502, + "root_title": "Test", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@royaltiffany/test#@bige37/re-royaltiffany-test-20160912t114919145z" + }, + { "active_votes": [ { - "voter": "derekareith", - "rshares": "111795622957", "percent": "7500", - "reputation": 0 + "reputation": 0, + "rshares": "111795622957", + "voter": "derekareith" } ], + "author": "bitcoiner", "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", - "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z", - "root_title": "Page View Counter [Test Post]", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 960637, - "author": "cheetah", - "permlink": "re-test-20160915t190252", + "body": "It would seem only Steemit uses the caching server img1.steemit.com, because, well, it's theirs.. Steemd just shows the post as it is in the blockchain, which is the unaltered image link.\nThe thing is, is that all the posts are on a public decentralized blockchain, so it's hard to track who has accessed it. You would have to make it a private blockchain, and count all requests to retrieve a post. Even if this were the case, you would have no way to track any copies of the data made after the fact.", + "body_length": 502, + "cashout_time": "2016-10-15T00:25:18", "category": "test", - "title": "", - "body": "Warning! This user is on my black list, likely as a known plagiarist, spammer or ID thief. Please be cautious with this post!\nTo get off this list, please chat with us in the #steemitabuse-appeals channel in [steemit.chat](http://steemit.chat).", - "json_metadata": "{}", - "created": "2016-09-15T19:02:51", - "last_update": "2016-09-15T19:02:51", - "depth": 1, "children": 0, - "net_rshares": 66832072343, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T19:09:49", - "total_payout_value": "0.000 HBD", + "created": "2016-09-13T22:37:39", "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.014 HBD", + "depth": 6, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-13T22:37:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 111795622957, + "parent_author": "derekareith", + "parent_permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", + "pending_payout_value": "0.022 HBD", + "percent_hbd": 10000, + "permlink": "re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z", + "post_id": 1237190, "promoted": "0.000 HBD", "replies": [], - "body_length": 244, + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z" + }, + { "active_votes": [ { - "voter": "cheetah", - "rshares": "66397090281", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "66397090281", + "voter": "cheetah" }, { - "voter": "cheetah22", - "rshares": "101333267", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "101333267", + "voter": "cheetah22" }, { - "voter": "cheetah23", - "rshares": "188781535", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "188781535", + "voter": "cheetah23" }, { - "voter": "cheetah24", - "rshares": "144867260", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "144867260", + "voter": "cheetah24" } ], + "author": "cheetah", "author_reputation": 0, - "parent_author": "machinelearning", - "parent_permlink": "test", - "url": "/test/@machinelearning/test#@cheetah/re-test-20160915t190252", - "root_title": "Test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 959003, - "author": "achim86", - "permlink": "re-oaldamster-re-achim86-test-20160915t155303746z", + "body": "Warning! This user is on my black list, likely as a known plagiarist, spammer or ID thief. Please be cautious with this post!\nTo get off this list, please chat with us in the #steemitabuse-appeals channel in [steemit.chat](http://steemit.chat).", + "body_length": 244, + "cashout_time": "2016-09-16T19:09:49", "category": "test", - "title": "", - "body": "yeahhhh! https://steemit.com/steemit/@achim86/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung", - "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@achim86\\/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung\"]}", - "created": "2016-09-15T15:53:06", - "last_update": "2016-09-15T17:05:36", - "depth": 2, "children": 0, - "net_rshares": 61272757397, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T14:39:17", - "total_payout_value": "0.000 HBD", + "created": "2016-09-15T19:02:51", "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.013 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T19:02:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 66832072343, + "parent_author": "machinelearning", + "parent_permlink": "test", + "pending_payout_value": "0.014 HBD", + "percent_hbd": 10000, + "permlink": "re-test-20160915t190252", + "post_id": 1257452, "promoted": "0.000 HBD", "replies": [], - "body_length": 125, + "root_title": "Test", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@machinelearning/test#@cheetah/re-test-20160915t190252" + }, + { "active_votes": [ { - "voter": "oaldamster", - "rshares": "57522418578", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "57522418578", + "voter": "oaldamster" }, { - "voter": "achim86", - "rshares": "3750338819", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3750338819", + "voter": "achim86" } ], + "author": "achim86", "author_reputation": 0, - "parent_author": "oaldamster", - "parent_permlink": "re-achim86-test-20160915t070512394z", - "url": "/test/@achim86/test#@achim86/re-oaldamster-re-achim86-test-20160915t155303746z", - "root_title": "test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 857734, - "author": "alktoni", - "permlink": "re-str11ngfello-test2-20160904t233043502z", + "body": "yeahhhh! https://steemit.com/steemit/@achim86/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung", + "body_length": 125, + "cashout_time": "2016-09-16T14:39:17", "category": "test", - "title": "", - "body": "test if testing is a test", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-04T23:30:45", - "last_update": "2016-09-04T23:30:45", - "depth": 1, "children": 0, - "net_rshares": 19450828249, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-05T23:22:30", - "total_payout_value": "0.000 HBD", + "created": "2016-09-15T15:53:06", "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.004 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@achim86\\/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T17:05:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 61272757397, + "parent_author": "oaldamster", + "parent_permlink": "re-achim86-test-20160915t070512394z", + "pending_payout_value": "0.013 HBD", + "percent_hbd": 10000, + "permlink": "re-oaldamster-re-achim86-test-20160915t155303746z", + "post_id": 1255452, "promoted": "0.000 HBD", "replies": [], - "body_length": 25, + "root_title": "test", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@achim86/test#@achim86/re-oaldamster-re-achim86-test-20160915t155303746z" + }, + { "active_votes": [ { - "voter": "str11ngfello", - "rshares": "19450828249", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "19450828249", + "voter": "str11ngfello" } ], + "author": "alktoni", "author_reputation": 0, - "parent_author": "str11ngfello", - "parent_permlink": "test2", - "url": "/test/@str11ngfello/test2#@alktoni/re-str11ngfello-test2-20160904t233043502z", - "root_title": "test2", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 921255, - "author": "dickbutt", - "permlink": "re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218", + "body": "test if testing is a test", + "body_length": 25, + "cashout_time": "2016-10-05T23:22:30", "category": "test", - "title": "", - "body": "https://s17.postimg.io/j6i3qa58f/dickbutt.jpg", - "json_metadata": "{}", - "created": "2016-09-11T12:22:21", - "last_update": "2016-09-11T12:22:21", - "depth": 4, "children": 0, - "net_rshares": 12292537315, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", + "created": "2016-09-04T23:30:45", "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.002 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-04T23:30:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 19450828249, + "parent_author": "str11ngfello", + "parent_permlink": "test2", + "pending_payout_value": "0.004 HBD", + "percent_hbd": 10000, + "permlink": "re-str11ngfello-test2-20160904t233043502z", + "post_id": 857734, "promoted": "0.000 HBD", "replies": [], - "body_length": 45, + "root_title": "test2", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@str11ngfello/test2#@alktoni/re-str11ngfello-test2-20160904t233043502z" + }, + { "active_votes": [ { - "voter": "r4fken", - "rshares": "12292537315", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "12292537315", + "voter": "r4fken" } ], + "author": "dickbutt", "author_reputation": 0, - "parent_author": "pompe72", - "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218", - "root_title": "testing @dickbutt", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 870030, - "author": "brendio", - "permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", - "category": "test", - "title": "", - "body": "Does dickbutt come whenever he is called? #test", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-06T06:19:18", - "last_update": "2016-09-06T06:19:18", - "depth": 1, - "children": 4, - "net_rshares": 5205390768, - "last_payout": "1969-12-31T23:59:59", + "body": "https://s17.postimg.io/j6i3qa58f/dickbutt.jpg", + "body_length": 45, "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", + "category": "test", + "children": 0, + "created": "2016-09-11T12:22:21", "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.001 HBD", + "depth": 4, + "json_metadata": "{}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-11T12:22:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 12292537315, + "parent_author": "pompe72", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", + "pending_payout_value": "0.002 HBD", + "percent_hbd": 10000, + "permlink": "re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218", + "post_id": 921255, "promoted": "0.000 HBD", "replies": [], - "body_length": 47, + "root_title": "testing @dickbutt", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218" + }, + { "active_votes": [ { - "voter": "brendio", - "rshares": "5205390768", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5205390768", + "voter": "brendio" } ], + "author": "brendio", "author_reputation": 0, + "beneficiaries": [], + "body": "Does dickbutt come whenever he is called? #test", + "body_length": 47, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 4, + "created": "2016-09-06T06:19:18", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-06T06:19:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5205390768, "parent_author": "dickbutt", "parent_permlink": "testing-dickbutt", - "url": "/test/@dickbutt/testing-dickbutt#@brendio/re-dickbutt-testing-dickbutt-20160906t061918048z", + "pending_payout_value": "0.001 HBD", + "percent_hbd": 10000, + "permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", + "post_id": 870030, + "promoted": "0.000 HBD", + "replies": [], "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@brendio/re-dickbutt-testing-dickbutt-20160906t061918048z" }, { - "post_id": 944446, + "active_votes": [], "author": "derekareith", - "permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Just saw that the counter works on Steemd:\nhttps://steemd.com/test/@derekareith/page-view-counter-test-post\nI thought Steemd just redirects the same cached images, but I guess its just steemit. I'm wondering if there's a way to make it \"hidden\" on steemit but visible on steemd so authors could monitor these stats on the backend?", - "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemd.com\\/test\\/@derekareith\\/page-view-counter-test-post\"]}", + "body_length": 331, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 1, "created": "2016-09-13T22:25:12", - "last_update": "2016-09-13T22:25:12", + "curator_payout_value": "0.000 HBD", "depth": 5, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemd.com\\/test\\/@derekareith\\/page-view-counter-test-post\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T22:25:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "bitcoiner", + "parent_permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", + "post_id": 944446, "promoted": "0.000 HBD", "replies": [], - "body_length": 331, - "active_votes": [], - "author_reputation": 0, - "parent_author": "bitcoiner", - "parent_permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z" }, { - "post_id": 831916, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259-20160902t064336", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", - "json_metadata": "{}", + "body_length": 69, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-02T06:43:39", - "last_update": "2016-09-02T06:43:39", + "curator_payout_value": "0.000 HBD", "depth": 5, - "children": 0, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T06:43:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259-20160902t064336", + "post_id": 831916, "promoted": "0.000 HBD", "replies": [], - "body_length": 69, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259-20160902t064336", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259-20160902t064336" }, { - "post_id": 652753, + "active_votes": [], "author": "laonie", - "permlink": "re-trogdor-re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160818t075042763z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Anyway, i feel embarrassing, i removed the list, my bot won't do this again, but will follow good human curators only.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 118, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 0, "created": "2016-08-18T07:50:39", - "last_update": "2016-08-18T07:50:39", + "curator_payout_value": "0.000 HBD", "depth": 5, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-18T07:50:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "trogdor", + "parent_permlink": "re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-trogdor-re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160818t075042763z", + "post_id": 652753, "promoted": "0.000 HBD", "replies": [], - "body_length": 118, - "active_votes": [], - "author_reputation": 0, - "parent_author": "trogdor", - "parent_permlink": "re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@laonie/re-trogdor-re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160818t075042763z", "root_title": "this is a test to see if i have been targeted by a spam bot army", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@laonie/re-trogdor-re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160818t075042763z" }, { - "post_id": 635813, + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "60116331", + "voter": "scotthelms89" + } + ], "author": "royaltiffany", - "permlink": "re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022232495z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "I knoooow !! I dont know where they came from !! Started from my last post.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 75, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 0, "created": "2016-08-17T02:22:30", - "last_update": "2016-08-17T02:22:30", + "curator_payout_value": "0.000 HBD", "depth": 5, - "children": 0, - "net_rshares": 60116331, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T02:22:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 60116331, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022232495z", + "post_id": 635813, "promoted": "0.000 HBD", "replies": [], - "body_length": 75, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022232495z" + }, + { "active_votes": [ { - "voter": "scotthelms89", - "rshares": "60116331", "percent": "10000", - "reputation": 0 - } - ], - "author_reputation": 0, - "parent_author": "trogdor", - "parent_permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022232495z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635744, - "author": "royaltiffany", - "permlink": "re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z", - "category": "test", - "title": "", - "body": "Yes i did them ahahahhahah , ntmu too!", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T02:13:30", - "last_update": "2016-08-17T02:13:42", - "depth": 5, - "children": 0, - "net_rshares": 15078297487, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 38, - "active_votes": [ - { - "voter": "hellokitty", + "reputation": 0, "rshares": "14714651186", - "percent": "10000", - "reputation": 0 + "voter": "hellokitty" }, { - "voter": "btctoken", - "rshares": "121297875", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "121297875", + "voter": "btctoken" }, { - "voter": "solarempirepc", - "rshares": "53821026", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "53821026", + "voter": "solarempirepc" }, { - "voter": "mrainp", - "rshares": "134400698", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "134400698", + "voter": "mrainp" }, { - "voter": "lovetosteemit", - "rshares": "54126702", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54126702", + "voter": "lovetosteemit" } ], + "author": "royaltiffany", "author_reputation": 0, - "parent_author": "trogdor", - "parent_permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 943539, - "author": "bitcoiner", - "permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", + "body": "Yes i did them ahahahhahah , ntmu too!", + "body_length": 38, + "cashout_time": "2016-09-17T02:19:27", "category": "test", - "title": "", - "body": "Oh haha. Yes, I haven't signed a block for more than 24 hours!", + "children": 0, + "created": "2016-08-17T02:13:30", + "curator_payout_value": "0.000 HBD", + "depth": 5, "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-13T20:29:33", - "last_update": "2016-09-13T20:29:33", - "depth": 4, - "children": 2, - "net_rshares": 77095774656, "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T02:13:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 15078297487, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z", + "post_id": 635744, "promoted": "0.000 HBD", "replies": [], - "body_length": 62, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z" + }, + { "active_votes": [ { - "voter": "derekareith", - "rshares": "77095774656", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "77095774656", + "voter": "derekareith" } ], + "author": "bitcoiner", "author_reputation": 0, + "beneficiaries": [], + "body": "Oh haha. Yes, I haven't signed a block for more than 24 hours!", + "body_length": 62, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 2, + "created": "2016-09-13T20:29:33", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-13T20:29:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 77095774656, "parent_author": "derekareith", "parent_permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", - "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", + "post_id": 943539, + "promoted": "0.000 HBD", + "replies": [], "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z" }, { - "post_id": 920022, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "breath", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 6, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:52:09", - "last_update": "2016-09-11T08:52:09", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:52:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z", + "post_id": 920022, "promoted": "0.000 HBD", "replies": [], - "body_length": 6, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z" }, { - "post_id": 919922, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "its just a bot", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 14, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:31:00", - "last_update": "2016-09-11T08:31:00", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:31:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z", + "post_id": 919922, "promoted": "0.000 HBD", "replies": [], - "body_length": 14, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z" }, { - "post_id": 919920, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "reply to the bot with the word \"feminist\"", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 41, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:30:39", - "last_update": "2016-09-11T08:30:39", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:30:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z", + "post_id": 919920, "promoted": "0.000 HBD", "replies": [], - "body_length": 41, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z" }, { - "post_id": 831914, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", - "json_metadata": "{}", + "body_length": 69, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 1, "created": "2016-09-02T06:43:03", - "last_update": "2016-09-02T06:43:03", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 1, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T06:43:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", + "post_id": 831914, "promoted": "0.000 HBD", "replies": [], - "body_length": 69, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259" }, { - "post_id": 641876, + "active_votes": [], "author": "gary-smith", - "permlink": "re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t142255070z", - "category": "test", - "title": "", - "body": "If I said no would you believe me ?", - "json_metadata": "{\"tags\":[\"test\"]}", + "author_reputation": 0, + "beneficiaries": [], + "body": "If I said no would you believe me ?", + "body_length": 35, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 0, "created": "2016-08-17T14:22:54", - "last_update": "2016-08-17T14:22:54", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T14:22:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "thebeachedwhale", + "parent_permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t142255070z", + "post_id": 641876, "promoted": "0.000 HBD", "replies": [], - "body_length": 35, - "active_votes": [], - "author_reputation": 0, - "parent_author": "thebeachedwhale", - "parent_permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@gary-smith/re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t142255070z", "root_title": "this is a test to see if i have been targeted by a spam bot army", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@gary-smith/re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t142255070z" }, { - "post_id": 639400, + "active_votes": [], "author": "trogdor", - "permlink": "re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Hi @laonie, for the record I was not talking about you. I don't have anything against trying to maximize your profits. There is an account \"steemitmarket\" that is trying to buy and sell votes with 800 different spam accounts that they control, and they used all of them to spam my recent post.", - "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"laonie\"]}", + "body_length": 293, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 1, "created": "2016-08-17T10:20:30", - "last_update": "2016-08-17T10:20:30", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"laonie\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T10:20:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "laonie", + "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", + "post_id": 639400, "promoted": "0.000 HBD", "replies": [], - "body_length": 293, - "active_votes": [], - "author_reputation": 0, - "parent_author": "laonie", - "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z", "root_title": "this is a test to see if i have been targeted by a spam bot army", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z" }, { - "post_id": 635801, + "active_votes": [], "author": "trogdor", - "permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "This is really interesting, it looks like you have a small spam bot army following you around in the comments section.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 118, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 1, "created": "2016-08-17T02:21:00", - "last_update": "2016-08-17T02:21:00", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T02:21:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "royaltiffany", + "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", + "post_id": 635801, "promoted": "0.000 HBD", "replies": [], - "body_length": 118, - "active_votes": [], - "author_reputation": 0, - "parent_author": "royaltiffany", - "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z", "root_title": "this is a test to see if i have been targeted by a spam bot army", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635740, - "author": "trogdor", - "permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", - "category": "test", "title": "", - "body": "Could have been a one-off test, or possibly tag related, since i used the #bot tag in my other post I think.\n\nOh btw, hi @royaltiffany, nice to meet you :) Didn't you do shots for votes or something? lol", - "json_metadata": "{\"tags\":[\"bot\",\"test\"],\"users\":[\"royaltiffany\"]}", - "created": "2016-08-17T02:12:48", - "last_update": "2016-08-17T02:12:48", - "depth": 4, - "children": 1, - "net_rshares": 14714651186, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 203, + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z" + }, + { "active_votes": [ { - "voter": "hellokitty", - "rshares": "14714651186", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "14714651186", + "voter": "hellokitty" } ], + "author": "trogdor", "author_reputation": 0, - "parent_author": "royaltiffany", - "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635684, - "author": "royaltiffany", - "permlink": "re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020535226z", + "body": "Could have been a one-off test, or possibly tag related, since i used the #bot tag in my other post I think.\n\nOh btw, hi @royaltiffany, nice to meet you :) Didn't you do shots for votes or something? lol", + "body_length": 203, + "cashout_time": "2016-09-17T02:19:27", "category": "test", - "title": "", - "body": "Lol", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T02:05:33", - "last_update": "2016-08-17T02:05:33", + "children": 1, + "created": "2016-08-17T02:12:48", + "curator_payout_value": "0.000 HBD", "depth": 4, - "children": 0, - "net_rshares": 201590749, + "json_metadata": "{\"tags\":[\"bot\",\"test\"],\"users\":[\"royaltiffany\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T02:12:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 14714651186, + "parent_author": "royaltiffany", + "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z", + "post_id": 635740, "promoted": "0.000 HBD", "replies": [], - "body_length": 3, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z" + }, + { "active_votes": [ { - "voter": "scotthelms89", - "rshares": "60116331", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "60116331", + "voter": "scotthelms89" }, { - "voter": "mrainp", - "rshares": "141474418", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "141474418", + "voter": "mrainp" } ], + "author": "royaltiffany", "author_reputation": 0, - "parent_author": "thebeachedwhale", - "parent_permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020535226z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 946378, - "author": "freebornangel", - "permlink": "re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z", + "body": "Lol", + "body_length": 3, + "cashout_time": "2016-09-17T02:19:27", "category": "test", - "title": "", - "body": "That is too bad, that is a really good metric.", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-14T03:18:00", - "last_update": "2016-09-14T03:18:00", - "depth": 3, "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", + "created": "2016-08-17T02:05:33", "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T02:05:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 201590749, + "parent_author": "thebeachedwhale", + "parent_permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020535226z", + "post_id": 635684, "promoted": "0.000 HBD", "replies": [], - "body_length": 46, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020535226z" + }, + { "active_votes": [], + "author": "freebornangel", "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", - "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z", - "root_title": "Page View Counter [Test Post]", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 943519, - "author": "derekareith", - "permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", + "body": "That is too bad, that is a really good metric.", + "body_length": 46, + "cashout_time": "2016-10-15T00:25:18", "category": "test", - "title": "", - "body": "This is my miner acct that I gave up mining with XD...damn rabbits. Was using to test :)", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-13T20:26:09", - "last_update": "2016-09-13T20:26:09", + "children": 0, + "created": "2016-09-14T03:18:00", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 3, - "net_rshares": 2767044151, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-14T03:18:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "derekareith", + "parent_permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z", + "post_id": 946378, "promoted": "0.000 HBD", "replies": [], - "body_length": 88, + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z" + }, + { "active_votes": [ { - "voter": "bitcoiner", - "rshares": "2767044151", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "2767044151", + "voter": "bitcoiner" } ], + "author": "derekareith", "author_reputation": 0, - "parent_author": "boomer", - "parent_permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", - "root_title": "Page View Counter [Test Post]", "beneficiaries": [], + "body": "This is my miner acct that I gave up mining with XD...damn rabbits. Was using to test :)", + "body_length": 88, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 3, + "created": "2016-09-13T20:26:09", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-13T20:26:09", "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "net_rshares": 2767044151, + "parent_author": "boomer", + "parent_permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", + "post_id": 943519, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z" }, { - "post_id": 938127, + "active_votes": [], "author": "golfball", - "permlink": "re-golfball-re-golfball-re-golfball-test-20160913t071932003z", + "author_reputation": 0, + "beneficiaries": [], + "body": "mouse \u0e40\u0e21\u0e32\u0e2a\u0e4c \u0e34\u0e31\nhard drive \u0e2e\u0e32\u0e23\u0e4c\u0e14\u0e44\u0e14\u0e23\u0e4c\nhard disk \u0e2e\u0e32\u0e23\u0e4c\u0e14\u0e14\u0e34\u0e2a\u0e01\u0e4c\nMonitor \u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d\nDisplay \u0e41\u0e2a\u0e14\u0e07\nLCD screen\nCTR screen \u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d\nplasma screen \u0e1e\u0e23\u0e32\u0e2a\u0e21\u0e48\u0e32\nRAM memory \u0e2b\u0e19\u0e48\u0e27\u0e22\u0e04\u0e27\u0e32\u0e21\u0e08\u0e33\u0e41\u0e23\u0e21\nROM memory \u0e23\u0e2d\u0e21\nPrinter \u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e1e\u0e34\u0e21\u0e1e\u0e4c\nplotter\nmicrophone \u0e44\u0e21\u0e42\u0e04\u0e23\u0e42\u0e1f\u0e19\nscanner \u0e40\u0e04\u0e23\u0e37\u0e2d\u0e07\u0e2a\u0e40\u0e40\u0e01\u0e19\nspeakers\nkeyboard \u0e41\u0e1b\u0e49\u0e19\u0e1e\u0e34\u0e21\u0e1e\u0e4c\nbarcode \u0e1a\u0e32\u0e23\u0e4c\u0e42\u0e04\u0e49\u0e14\nRight click\nLeft click\nDouble click\nCPU", + "body_length": 330, + "cashout_time": "2016-09-30T07:41:51", "category": "test", - "title": "", - "body": "mouse เมาส์ ิั\nhard drive ฮาร์ดไดร์\nhard disk ฮาร์ดดิสก์\nMonitor หน้าจอ\nDisplay แสดง\nLCD screen\nCTR screen หน้าจอ\nplasma screen พราสม่า\nRAM memory หน่วยความจำแรม\nROM memory รอม\nPrinter เครื่องพิมพ์\nplotter\nmicrophone ไมโครโฟน\nscanner เครืองสเเกน\nspeakers\nkeyboard แป้นพิมพ์\nbarcode บาร์โค้ด\nRight click\nLeft click\nDouble click\nCPU", - "json_metadata": "{\"tags\":[\"test\"]}", + "children": 0, "created": "2016-09-13T07:19:33", - "last_update": "2016-09-13T07:20:09", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-30T07:41:51", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T07:20:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "golfball", + "parent_permlink": "re-golfball-re-golfball-test-20160913t063516433z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-golfball-re-golfball-re-golfball-test-20160913t071932003z", + "post_id": 938127, "promoted": "0.000 HBD", "replies": [], - "body_length": 330, - "active_votes": [], - "author_reputation": 0, - "parent_author": "golfball", - "parent_permlink": "re-golfball-re-golfball-test-20160913t063516433z", - "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-re-golfball-test-20160913t071932003z", "root_title": "Test One", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-re-golfball-test-20160913t071932003z" }, { - "post_id": 937498, + "active_votes": [], "author": "royaltiffany", - "permlink": "re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Ahahahhahaha ....click bait", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 27, + "cashout_time": "2016-10-14T01:42:18", + "category": "test", + "children": 0, "created": "2016-09-13T05:12:42", - "last_update": "2016-09-13T05:12:42", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T01:42:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T05:12:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "demotruk", + "parent_permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z", + "post_id": 937498, "promoted": "0.000 HBD", "replies": [], - "body_length": 27, - "active_votes": [], - "author_reputation": 0, - "parent_author": "demotruk", - "parent_permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z", - "url": "/test/@royaltiffany/test#@royaltiffany/re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z", "root_title": "Test", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 921247, - "author": "pompe72", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", - "category": "test", "title": "", - "body": "dickbutt\n\nhttps://img1.steemit.com/0x0/http://i64.tinypic.com/1zn8p6d.jpg", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/i64.tinypic.com\\/1zn8p6d.jpg\"]}", - "created": "2016-09-11T12:21:27", - "last_update": "2016-09-11T12:21:27", - "depth": 3, - "children": 1, - "net_rshares": 52449059, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 73, + "url": "/test/@royaltiffany/test#@royaltiffany/re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z" + }, + { "active_votes": [ { - "voter": "paolo75", - "rshares": "52449059", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52449059", + "voter": "paolo75" } ], + "author": "pompe72", "author_reputation": 0, + "beneficiaries": [], + "body": "dickbutt\n\nhttps://img1.steemit.com/0x0/http://i64.tinypic.com/1zn8p6d.jpg", + "body_length": 73, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 1, + "created": "2016-09-11T12:21:27", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/i64.tinypic.com\\/1zn8p6d.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-11T12:21:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 52449059, "parent_author": "dickbutt", "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051", - "url": "/test/@dickbutt/testing-dickbutt#@pompe72/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z", + "post_id": 921247, + "promoted": "0.000 HBD", + "replies": [], "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@pompe72/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z" }, { - "post_id": 920140, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Breath Skeptic, Breath https://www.youtube.com/watch?v=y43FolFlY78", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/y43FolFlY78\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=y43FolFlY78\"]}", + "body_length": 66, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T09:16:27", - "last_update": "2016-09-11T09:16:27", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/y43FolFlY78\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=y43FolFlY78\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T09:16:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z", + "post_id": 920140, "promoted": "0.000 HBD", "replies": [], - "body_length": 66, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z" }, { - "post_id": 920044, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "feminism?", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 9, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:55:36", - "last_update": "2016-09-11T08:55:36", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:55:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z", + "post_id": 920044, "promoted": "0.000 HBD", "replies": [], - "body_length": 9, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z" }, { - "post_id": 920039, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "feminism?", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 9, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:54:33", - "last_update": "2016-09-11T08:54:33", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:54:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z", + "post_id": 920039, "promoted": "0.000 HBD", "replies": [], - "body_length": 9, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z" }, { - "post_id": 920034, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "femninism?", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-11T08:54:00", - "last_update": "2016-09-11T08:54:00", - "depth": 3, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", + "body_length": 10, "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", + "category": "test", + "children": 0, + "created": "2016-09-11T08:54:00", "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-11T08:54:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z", + "post_id": 920034, "promoted": "0.000 HBD", "replies": [], - "body_length": 10, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z" }, { - "post_id": 920031, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "feminism?", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 9, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:53:12", - "last_update": "2016-09-11T08:53:12", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:53:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z", + "post_id": 920031, "promoted": "0.000 HBD", "replies": [], - "body_length": 9, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z" }, { - "post_id": 919932, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "feminist?", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 9, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:32:12", - "last_update": "2016-09-11T08:32:12", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:32:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z", + "post_id": 919932, "promoted": "0.000 HBD", "replies": [], - "body_length": 9, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z" }, { - "post_id": 919626, + "active_votes": [], "author": "skeptic", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Sick little bot.\n8D", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 19, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 3, "created": "2016-09-11T07:27:27", - "last_update": "2016-09-11T07:27:27", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 3, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T07:27:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", + "post_id": 919626, "promoted": "0.000 HBD", "replies": [], - "body_length": 19, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", - "url": "/test/@dickbutt/testing-dickbutt#@skeptic/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@skeptic/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z" }, { - "post_id": 919917, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "feminist", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 8, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:29:57", - "last_update": "2016-09-11T08:29:57", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:29:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z", + "post_id": 919917, "promoted": "0.000 HBD", "replies": [], - "body_length": 8, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z" }, { - "post_id": 919938, + "active_votes": [], "author": "earnest", - "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Much feminist!!!!", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 17, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:33:03", - "last_update": "2016-09-11T08:33:03", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:33:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z", + "post_id": 919938, "promoted": "0.000 HBD", "replies": [], - "body_length": 17, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z" }, { - "post_id": 859549, + "active_votes": [], "author": "bullionstackers", - "permlink": "re-ace108-re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t050838289z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Thank you @ace108\nCheck your message", - "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"ace108\"]}", + "body_length": 36, + "cashout_time": "2016-10-06T04:18:33", + "category": "test", + "children": 0, "created": "2016-09-05T05:08:39", - "last_update": "2016-09-05T06:05:39", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"ace108\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-06T04:18:33", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-05T06:05:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "ace108", + "parent_permlink": "re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-ace108-re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t050838289z", + "post_id": 859549, "promoted": "0.000 HBD", "replies": [], - "body_length": 36, - "active_votes": [], - "author_reputation": 0, - "parent_author": "ace108", - "parent_permlink": "re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", - "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want#@bullionstackers/re-ace108-re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t050838289z", "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 857335, - "author": "dickbutt", - "permlink": "re-re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z-20160904t222429", - "category": "test", "title": "", - "body": "https://s17.postimg.io/u3jff1rzz/105441_dickbutt_rainbow_wiggle_gif_Im_6_YAW.gif", - "json_metadata": "{}", - "created": "2016-09-04T22:24:30", - "last_update": "2016-09-04T22:24:30", - "depth": 3, - "children": 0, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 80, - "active_votes": [], - "author_reputation": 0, - "parent_author": "steemjesus", - "parent_permlink": "re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z-20160904t222429", - "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want#@bullionstackers/re-ace108-re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t050838289z" }, { - "post_id": 831911, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", - "category": "test", - "title": "", - "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", - "json_metadata": "{}", - "created": "2016-09-02T06:42:27", - "last_update": "2016-09-02T06:42:27", - "depth": 3, - "children": 2, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://s17.postimg.io/u3jff1rzz/105441_dickbutt_rainbow_wiggle_gif_Im_6_YAW.gif", + "body_length": 80, "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", + "category": "test", + "children": 0, + "created": "2016-09-04T22:24:30", "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-04T22:24:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemjesus", + "parent_permlink": "re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z-20160904t222429", + "post_id": 857335, "promoted": "0.000 HBD", "replies": [], - "body_length": 69, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z-20160904t222429" }, { - "post_id": 780488, - "author": "thecleangame", - "permlink": "re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z", + "active_votes": [], + "author": "dickbutt", + "author_reputation": 0, + "beneficiaries": [], + "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", + "body_length": 69, + "cashout_time": "2016-10-03T07:19:21", "category": "test", - "title": "", - "body": "lol Glad I could help :)", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-28T18:19:12", - "last_update": "2016-08-28T18:19:12", + "children": 2, + "created": "2016-09-02T06:42:27", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 0, - "net_rshares": 5186228610, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-28T17:56:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T06:42:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226", + "post_id": 831911, "promoted": "0.000 HBD", "replies": [], - "body_length": 24, + "root_title": "testing @dickbutt", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226" + }, + { "active_votes": [ { - "voter": "ivicaa", - "rshares": "5186228610", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5186228610", + "voter": "ivicaa" } ], + "author": "thecleangame", "author_reputation": 0, - "parent_author": "ivicaa", - "parent_permlink": "re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", - "url": "/test/@ivicaa/test-please-ignore#@thecleangame/re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z", - "root_title": "TEST - please ignore", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 637778, - "author": "laonie", - "permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", + "body": "lol Glad I could help :)", + "body_length": 24, + "cashout_time": "2016-09-28T17:56:18", "category": "test", - "title": "", - "body": "It seems @wang 's list changed, i was trying to squeeze the profit of the curation bots.", - "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"wang\"]}", - "created": "2016-08-17T06:45:54", - "last_update": "2016-08-17T06:45:54", + "children": 0, + "created": "2016-08-28T18:19:12", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 2, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-28T18:19:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5186228610, + "parent_author": "ivicaa", + "parent_permlink": "re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z", + "post_id": 780488, "promoted": "0.000 HBD", "replies": [], - "body_length": 88, + "root_title": "TEST - please ignore", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@ivicaa/test-please-ignore#@thecleangame/re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z" + }, + { "active_votes": [], + "author": "laonie", "author_reputation": 0, - "parent_author": "trogdor", - "parent_permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@laonie/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635722, - "author": "royaltiffany", - "permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", + "body": "It seems @wang 's list changed, i was trying to squeeze the profit of the curation bots.", + "body_length": 88, + "cashout_time": "2016-09-17T02:19:27", "category": "test", - "title": "", - "body": "Wait for it....wait for it...", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T02:10:24", - "last_update": "2016-08-17T02:10:24", + "children": 2, + "created": "2016-08-17T06:45:54", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 4, - "net_rshares": 15210973654, + "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"wang\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T06:45:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z", + "post_id": 637778, "promoted": "0.000 HBD", "replies": [], - "body_length": 29, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@laonie/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z" + }, + { "active_votes": [ { - "voter": "hellokitty", - "rshares": "14714651186", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "14714651186", + "voter": "hellokitty" }, { - "voter": "scotthelms89", - "rshares": "60116331", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "60116331", + "voter": "scotthelms89" }, { - "voter": "btctoken", - "rshares": "121297875", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "121297875", + "voter": "btctoken" }, { - "voter": "alexbones", - "rshares": "54874786", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54874786", + "voter": "alexbones" }, { - "voter": "biker", - "rshares": "50303592", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50303592", + "voter": "biker" }, { - "voter": "coutchpotatoe", - "rshares": "54792292", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54792292", + "voter": "coutchpotatoe" }, { - "voter": "sleepcult", - "rshares": "50317967", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50317967", + "voter": "sleepcult" }, { - "voter": "steemithelper1", - "rshares": "50221956", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50221956", + "voter": "steemithelper1" }, { - "voter": "waltrichards", - "rshares": "54397669", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54397669", + "voter": "waltrichards" } ], + "author": "royaltiffany", "author_reputation": 0, - "parent_author": "trogdor", - "parent_permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635668, - "author": "thebeachedwhale", - "permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", + "body": "Wait for it....wait for it...", + "body_length": 29, + "cashout_time": "2016-09-17T02:19:27", "category": "test", - "title": "", - "body": "Are you?", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T02:02:54", - "last_update": "2016-08-17T02:02:54", + "children": 4, + "created": "2016-08-17T02:10:24", + "curator_payout_value": "0.000 HBD", "depth": 3, - "children": 2, - "net_rshares": 1947875840, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T02:10:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 15210973654, + "parent_author": "trogdor", + "parent_permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z", + "post_id": 635722, "promoted": "0.000 HBD", "replies": [], - "body_length": 8, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z" + }, + { "active_votes": [ { - "voter": "gary-smith", - "rshares": "1947875840", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1947875840", + "voter": "gary-smith" } ], + "author": "thebeachedwhale", "author_reputation": 0, - "parent_author": "gary-smith", - "parent_permlink": "re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@thebeachedwhale/re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 946058, - "author": "derekareith", - "permlink": "re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z", + "body": "Are you?", + "body_length": 8, + "cashout_time": "2016-09-17T02:19:27", "category": "test", - "title": "", - "body": "Wish it was easy to integrate...seems like it would be useful.", + "children": 2, + "created": "2016-08-17T02:02:54", + "curator_payout_value": "0.000 HBD", + "depth": 3, "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-14T02:14:36", - "last_update": "2016-09-14T02:14:36", - "depth": 2, - "children": 0, - "net_rshares": 0, "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T02:02:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1947875840, + "parent_author": "gary-smith", + "parent_permlink": "re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z", + "post_id": 635668, "promoted": "0.000 HBD", "replies": [], - "body_length": 62, - "active_votes": [], - "author_reputation": 0, - "parent_author": "steemitqa", - "parent_permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z", - "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@thebeachedwhale/re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z" }, { - "post_id": 946049, + "active_votes": [], "author": "derekareith", - "permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", - "category": "test", - "title": "", - "body": "Yea, that's cool. I think like bitcoiner pointed out, though, we can't get them to work since images sent to the blockchain are cached by Steemit and won't update. They update on other \"windows\" like steemd, but that info isn't going to be accurate. It's a lot tougher than I thought it would be XD\n\nI see Steemit integrating it in the future, but it's probably real low on their list of priorities.", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-09-14T02:13:27", - "last_update": "2016-09-14T02:13:27", - "depth": 2, - "children": 1, - "net_rshares": 60293991, - "last_payout": "1969-12-31T23:59:59", + "author_reputation": 0, + "beneficiaries": [], + "body": "Wish it was easy to integrate...seems like it would be useful.", + "body_length": 62, "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", + "category": "test", + "children": 0, + "created": "2016-09-14T02:14:36", "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-14T02:14:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steemitqa", + "parent_permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z", + "post_id": 946058, "promoted": "0.000 HBD", "replies": [], - "body_length": 402, + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z" + }, + { "active_votes": [ { - "voter": "freebornangel", - "rshares": "60293991", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "60293991", + "voter": "freebornangel" } ], + "author": "derekareith", "author_reputation": 0, + "beneficiaries": [], + "body": "Yea, that's cool. I think like bitcoiner pointed out, though, we can't get them to work since images sent to the blockchain are cached by Steemit and won't update. They update on other \"windows\" like steemd, but that info isn't going to be accurate. It's a lot tougher than I thought it would be XD\n\nI see Steemit integrating it in the future, but it's probably real low on their list of priorities.", + "body_length": 402, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 1, + "created": "2016-09-14T02:13:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-14T02:13:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 60293991, "parent_author": "freebornangel", "parent_permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z", + "post_id": 946049, + "promoted": "0.000 HBD", + "replies": [], "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z" }, { - "post_id": 943509, + "active_votes": [], "author": "boomer", - "permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "ahhh...gotcha", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 13, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 4, "created": "2016-09-13T20:24:27", - "last_update": "2016-09-13T20:24:27", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 4, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:24:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "bitcoiner", + "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", + "post_id": 943509, "promoted": "0.000 HBD", "replies": [], - "body_length": 13, - "active_votes": [], - "author_reputation": 0, - "parent_author": "bitcoiner", - "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z", - "url": "/test/@derekareith/page-view-counter-test-post#@boomer/re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@boomer/re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z" }, { - "post_id": 943452, + "active_votes": [], "author": "derekareith", - "permlink": "re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "yea stuck on 0...the others I tried in the comments just say various errors/img cant display", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 92, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 0, "created": "2016-09-13T20:18:48", - "last_update": "2016-09-13T20:18:48", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:18:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "goldmatters", + "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z", + "post_id": 943452, "promoted": "0.000 HBD", "replies": [], - "body_length": 92, - "active_votes": [], - "author_reputation": 0, - "parent_author": "goldmatters", - "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z" }, { - "post_id": 937890, + "active_votes": [], "author": "golfball", - "permlink": "re-golfball-re-golfball-test-20160913t063516433z", + "author_reputation": 0, + "beneficiaries": [], + "body": "mouse \u0e40\u0e21\u0e32\u0e2a\u0e4c \u0e34\u0e31\nhard drive \u0e2e\u0e32\u0e23\u0e4c\u0e14\u0e44\u0e14\u0e23\u0e4c\nhard disk \u0e2e\u0e32\u0e23\u0e4c\u0e14\u0e14\u0e34\u0e2a\u0e01\u0e4c\nMonitor \u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d\nDisplay \u0e41\u0e2a\u0e14\u0e07\nLCD screen\nCTR screen \u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d\nplasma screen \u0e1e\u0e23\u0e32\u0e2a\u0e21\u0e48\u0e32\nRAM memory \u0e2b\u0e19\u0e48\u0e27\u0e22\u0e04\u0e27\u0e32\u0e21\u0e08\u0e33\u0e41\u0e23\u0e21\nROM memory \u0e23\u0e2d\u0e21\nPrinter \u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e1e\u0e34\u0e21\u0e1e\u0e4c\nplotter\nmicrophone \u0e44\u0e21\u0e42\u0e04\u0e23\u0e42\u0e1f\u0e19\nscanner \u0e40\u0e04\u0e23\u0e37\u0e2d\u0e07\u0e2a\u0e40\u0e40\u0e01\u0e19\nspeakers\nkeyboard \u0e41\u0e1b\u0e49\u0e19\u0e1e\u0e34\u0e21\u0e1e\u0e4c\nbarcode \u0e1a\u0e32\u0e23\u0e4c\u0e42\u0e04\u0e49\u0e14\nRight click\n\nhttp://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\nhttp://cdn.slashgear.com/wp-content/uploads/2013/04/Seagate-HDD.jpg\nhttp://img.bbystatic.com/BestBuy_US/images/products/3434/3434015cv13d.jpg\nhttp://cdn.computerhope.com/computer-memory.jpg\nhttps://xiebingqing815.files.wordpress.com/2013/09/rom-vs-ram.png", + "body_length": 680, + "cashout_time": "2016-09-30T07:41:51", "category": "test", - "title": "", - "body": "mouse เมาส์ ิั\nhard drive ฮาร์ดไดร์\nhard disk ฮาร์ดดิสก์\nMonitor หน้าจอ\nDisplay แสดง\nLCD screen\nCTR screen หน้าจอ\nplasma screen พราสม่า\nRAM memory หน่วยความจำแรม\nROM memory รอม\nPrinter เครื่องพิมพ์\nplotter\nmicrophone ไมโครโฟน\nscanner เครืองสเเกน\nspeakers\nkeyboard แป้นพิมพ์\nbarcode บาร์โค้ด\nRight click\n\nhttp://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\nhttp://cdn.slashgear.com/wp-content/uploads/2013/04/Seagate-HDD.jpg\nhttp://img.bbystatic.com/BestBuy_US/images/products/3434/3434015cv13d.jpg\nhttp://cdn.computerhope.com/computer-memory.jpg\nhttps://xiebingqing815.files.wordpress.com/2013/09/rom-vs-ram.png", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", + "children": 1, "created": "2016-09-13T06:35:18", - "last_update": "2016-09-13T06:35:18", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-30T07:41:51", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T06:35:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "golfball", + "parent_permlink": "re-golfball-test-20160913t063057513z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-golfball-re-golfball-test-20160913t063516433z", + "post_id": 937890, "promoted": "0.000 HBD", "replies": [], - "body_length": 680, - "active_votes": [], - "author_reputation": 0, - "parent_author": "golfball", - "parent_permlink": "re-golfball-test-20160913t063057513z", - "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-test-20160913t063516433z", "root_title": "Test One", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-test-20160913t063516433z" }, { - "post_id": 937496, + "active_votes": [], "author": "royaltiffany", - "permlink": "re-mrlogic-re-royaltiffany-test-20160913t051214805z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Well if u had to ...u had to...", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 31, + "cashout_time": "2016-10-14T01:42:18", + "category": "test", + "children": 0, "created": "2016-09-13T05:12:15", - "last_update": "2016-09-13T05:12:15", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T01:42:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T05:12:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "mrlogic", + "parent_permlink": "re-royaltiffany-test-20160912t110110157z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-mrlogic-re-royaltiffany-test-20160913t051214805z", + "post_id": 937496, "promoted": "0.000 HBD", "replies": [], - "body_length": 31, - "active_votes": [], - "author_reputation": 0, - "parent_author": "mrlogic", - "parent_permlink": "re-royaltiffany-test-20160912t110110157z", - "url": "/test/@royaltiffany/test#@royaltiffany/re-mrlogic-re-royaltiffany-test-20160913t051214805z", "root_title": "Test", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@royaltiffany/test#@royaltiffany/re-mrlogic-re-royaltiffany-test-20160913t051214805z" }, { - "post_id": 936569, + "active_votes": [], "author": "contentjunkie", - "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "dickbutt", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 8, + "cashout_time": "2016-10-14T04:41:42", + "category": "test", + "children": 0, "created": "2016-09-13T02:39:15", - "last_update": "2016-09-13T02:39:15", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T04:41:42", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T02:39:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "contentjunkie", + "parent_permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022316187z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z", + "post_id": 936569, "promoted": "0.000 HBD", "replies": [], - "body_length": 8, - "active_votes": [], - "author_reputation": 0, - "parent_author": "contentjunkie", - "parent_permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022316187z", - "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z", "root_title": "testing the @dickbutt automated system", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z" }, { - "post_id": 936550, + "active_votes": [], "author": "contentjunkie", - "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "dickbutt", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 8, + "cashout_time": "2016-10-14T04:41:42", + "category": "test", + "children": 0, "created": "2016-09-13T02:36:06", - "last_update": "2016-09-13T02:36:06", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T04:41:42", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 8, - "active_votes": [], - "author_reputation": 0, + "last_update": "2016-09-13T02:36:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, "parent_author": "contentjunkie", "parent_permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022535074z", - "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z", + "post_id": 936550, + "promoted": "0.000 HBD", + "replies": [], "root_title": "testing the @dickbutt automated system", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z" }, { - "post_id": 930445, + "active_votes": [], "author": "demotruk", - "permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "I pushed the button and it turned out to be just a jay-peg :-(", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 62, + "cashout_time": "2016-10-14T01:42:18", + "category": "test", + "children": 1, "created": "2016-09-12T13:30:42", - "last_update": "2016-09-12T13:30:42", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T01:42:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-12T13:30:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "bige37", + "parent_permlink": "re-royaltiffany-test-20160912t114919145z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z", + "post_id": 930445, "promoted": "0.000 HBD", "replies": [], - "body_length": 62, - "active_votes": [], - "author_reputation": 0, - "parent_author": "bige37", - "parent_permlink": "re-royaltiffany-test-20160912t114919145z", - "url": "/test/@royaltiffany/test#@demotruk/re-bige37-re-royaltiffany-test-20160912t133042108z", "root_title": "Test", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@royaltiffany/test#@demotruk/re-bige37-re-royaltiffany-test-20160912t133042108z" }, { - "post_id": 920080, + "active_votes": [], "author": "earnest", - "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": ":) Transexual fux :)", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 20, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T09:01:57", - "last_update": "2016-09-11T09:01:57", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T09:01:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "brendio", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z", + "post_id": 920080, "promoted": "0.000 HBD", "replies": [], - "body_length": 20, - "active_votes": [], - "author_reputation": 0, - "parent_author": "brendio", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z" }, { - "post_id": 920072, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Can you breath?Yes, Brath, Breath the air in, out, repeat", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 57, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T09:01:00", - "last_update": "2016-09-11T09:01:00", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T09:01:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z", + "post_id": 920072, "promoted": "0.000 HBD", "replies": [], - "body_length": 57, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z" }, { - "post_id": 920050, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "you got it by now", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 17, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:56:36", - "last_update": "2016-09-11T08:56:36", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:56:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z", + "post_id": 920050, "promoted": "0.000 HBD", "replies": [], - "body_length": 17, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z" }, { - "post_id": 920045, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "breath 10 times", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 15, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:56:15", - "last_update": "2016-09-11T08:56:15", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:56:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z", + "post_id": 920045, "promoted": "0.000 HBD", "replies": [], - "body_length": 15, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z" }, { - "post_id": 920042, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "it is, just breath and stay calm", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 32, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:55:06", - "last_update": "2016-09-11T08:55:06", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:55:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z", + "post_id": 920042, "promoted": "0.000 HBD", "replies": [], - "body_length": 32, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z" }, { - "post_id": 920027, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "there you go", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 12, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:52:45", - "last_update": "2016-09-11T08:52:45", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 12, - "active_votes": [], - "author_reputation": 0, + "last_update": "2016-09-11T08:52:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, "parent_author": "skeptic", "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z", + "post_id": 920027, + "promoted": "0.000 HBD", + "replies": [], "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z" }, { - "post_id": 919991, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "https://s17.postimg.io/kiv7efda7/dickbutt_mark_by_reilpikram_d8busm9.png", - "json_metadata": "{}", + "body_length": 72, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 1, "created": "2016-09-11T08:46:45", - "last_update": "2016-09-11T08:46:45", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:46:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", + "post_id": 919991, "promoted": "0.000 HBD", "replies": [], - "body_length": 72, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643" }, { - "post_id": 920055, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Im not afraid, I can defeat it", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 30, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:58:06", - "last_update": "2016-09-11T08:58:06", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:58:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z", + "post_id": 920055, "promoted": "0.000 HBD", "replies": [], - "body_length": 30, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z" }, { - "post_id": 919966, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "https://s17.postimg.io/j6i3qa58f/dickbutt.jpg", - "json_metadata": "{}", + "body_length": 45, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 1, "created": "2016-09-11T08:39:51", - "last_update": "2016-09-11T08:39:51", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:39:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", + "post_id": 919966, "promoted": "0.000 HBD", "replies": [], - "body_length": 45, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948" }, { - "post_id": 919953, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "https://s17.postimg.io/f66d0apdr/Dick_Buttpink.jpg", - "json_metadata": "{}", + "body_length": 50, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 1, "created": "2016-09-11T08:36:30", - "last_update": "2016-09-11T08:36:30", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:36:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", + "post_id": 919953, "promoted": "0.000 HBD", "replies": [], - "body_length": 50, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628" }, { - "post_id": 919934, + "active_votes": [], "author": "earnest", - "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "::) Got you", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 11, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:32:39", - "last_update": "2016-09-11T08:32:39", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:32:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "brendio", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z", + "post_id": 919934, "promoted": "0.000 HBD", "replies": [], - "body_length": 11, - "active_votes": [], - "author_reputation": 0, - "parent_author": "brendio", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z" }, { - "post_id": 919913, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "dick butt? cunt ass? feminist X, they are fucking with you , show me your talents", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 81, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:29:21", - "last_update": "2016-09-11T08:29:21", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:29:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z", + "post_id": 919913, "promoted": "0.000 HBD", "replies": [], - "body_length": 81, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z" }, { - "post_id": 919868, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "https://s17.postimg.io/uf0vrt8fz/dbupvote.gif", - "json_metadata": "{}", + "body_length": 45, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 3, "created": "2016-09-11T08:21:42", - "last_update": "2016-09-11T08:21:42", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 3, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 45, - "active_votes": [], - "author_reputation": 0, + "last_update": "2016-09-11T08:21:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, "parent_author": "skeptic", "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139", + "post_id": 919868, + "promoted": "0.000 HBD", + "replies": [], "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139" }, { - "post_id": 919616, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "https://s17.postimg.io/ojbji5iin/m5_En_TSs.jpg", - "json_metadata": "{}", + "body_length": 46, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 5, "created": "2016-09-11T07:25:45", - "last_update": "2016-09-11T07:25:45", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 5, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T07:25:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", + "post_id": 919616, "promoted": "0.000 HBD", "replies": [], - "body_length": 46, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542" }, { - "post_id": 919903, + "active_votes": [], "author": "earnest", - "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "go one up", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 9, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 0, "created": "2016-09-11T08:27:36", - "last_update": "2016-09-11T08:27:36", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-11T08:27:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "skeptic", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z", + "post_id": 919903, "promoted": "0.000 HBD", "replies": [], - "body_length": 9, - "active_votes": [], - "author_reputation": 0, - "parent_author": "skeptic", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z", - "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z" }, { - "post_id": 915135, + "active_votes": [], "author": "leprechaun", - "permlink": "re-whatsup-re-leprechaun-steemedit-test-5-20160910t210828490z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Thanks. follow me. I am going to post something interesting.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 62, + "cashout_time": "2016-10-11T07:48:42", + "category": "test", + "children": 0, "created": "2016-09-10T21:08:33", - "last_update": "2016-09-10T21:08:57", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-11T07:48:42", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-10T21:08:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "whatsup", + "parent_permlink": "re-leprechaun-steemedit-test-5-20160910t194955148z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-whatsup-re-leprechaun-steemedit-test-5-20160910t210828490z", + "post_id": 915135, "promoted": "0.000 HBD", "replies": [], - "body_length": 62, - "active_votes": [], - "author_reputation": 0, - "parent_author": "whatsup", - "parent_permlink": "re-leprechaun-steemedit-test-5-20160910t194955148z", - "url": "/test/@leprechaun/steemedit-test-5#@leprechaun/re-whatsup-re-leprechaun-steemedit-test-5-20160910t210828490z", "root_title": "steemedit test 5", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@leprechaun/steemedit-test-5#@leprechaun/re-whatsup-re-leprechaun-steemedit-test-5-20160910t210828490z" }, { - "post_id": 914301, + "active_votes": [], "author": "djangothegod", - "permlink": "re-steembaby-re-steembaby-test-my-posts-disappeared-20160910t193455528z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "I just submitted my first post and nothing happened.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 52, + "cashout_time": "2016-09-25T14:37:57", + "category": "test", + "children": 0, "created": "2016-09-10T19:34:57", - "last_update": "2016-09-10T19:35:06", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-25T14:37:57", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-10T19:35:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "steembaby", + "parent_permlink": "re-steembaby-test-my-posts-disappeared-20160825t145927000z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-steembaby-re-steembaby-test-my-posts-disappeared-20160910t193455528z", + "post_id": 914301, "promoted": "0.000 HBD", "replies": [], - "body_length": 52, - "active_votes": [], - "author_reputation": 0, - "parent_author": "steembaby", - "parent_permlink": "re-steembaby-test-my-posts-disappeared-20160825t145927000z", - "url": "/test/@steembaby/test-my-posts-disappeared#@djangothegod/re-steembaby-re-steembaby-test-my-posts-disappeared-20160910t193455528z", "root_title": "test -- my posts disappeared!", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@steembaby/test-my-posts-disappeared#@djangothegod/re-steembaby-re-steembaby-test-my-posts-disappeared-20160910t193455528z" }, { - "post_id": 911784, + "active_votes": [], "author": "hacon", - "permlink": "re-kjsxj-re-hacon-first-post-20160910t145455609z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "I am trying to get a handle on the main differences from say reddit. I take it we can't delete posts, but we can edit them. Is the edit history visable?\nWhat about deleting comments ... lets see now.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 199, + "cashout_time": "2016-10-11T17:09:06", + "category": "test", + "children": 0, "created": "2016-09-10T14:54:57", - "last_update": "2016-09-10T14:54:57", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-11T17:09:06", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-10T14:54:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "kjsxj", + "parent_permlink": "re-hacon-first-post-20160910t144933601z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-kjsxj-re-hacon-first-post-20160910t145455609z", + "post_id": 911784, "promoted": "0.000 HBD", "replies": [], - "body_length": 199, - "active_votes": [], - "author_reputation": 0, - "parent_author": "kjsxj", - "parent_permlink": "re-hacon-first-post-20160910t144933601z", - "url": "/test/@hacon/first-post#@hacon/re-kjsxj-re-hacon-first-post-20160910t145455609z", "root_title": "First post", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@hacon/first-post#@hacon/re-kjsxj-re-hacon-first-post-20160910t145455609z" }, { - "post_id": 870034, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "https://s17.postimg.io/oct91bjzz/dogedickbutt.gif", - "json_metadata": "{}", + "body_length": 49, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 1, "created": "2016-09-06T06:19:54", - "last_update": "2016-09-06T06:19:54", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-06T06:19:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "brendio", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", + "post_id": 870034, "promoted": "0.000 HBD", "replies": [], - "body_length": 49, - "active_votes": [], - "author_reputation": 0, - "parent_author": "brendio", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952" }, { - "post_id": 859422, + "active_votes": [], "author": "ace108", - "permlink": "re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "You're welcome. The font size is smaller for yours because your name is longer and I made the \"Follow\" with same font size. I was thinking of leaving the \"Follow\" to be bigger but think to make a consistent look - just my preference. If you prefer \"Follow\" to be bigger, I can easily adjust it.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 294, + "cashout_time": "2016-10-06T04:18:33", + "category": "test", + "children": 1, "created": "2016-09-05T04:41:54", - "last_update": "2016-09-05T04:41:54", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-06T04:18:33", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-05T04:41:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "bullionstackers", + "parent_permlink": "re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t035325452z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", + "post_id": 859422, "promoted": "0.000 HBD", "replies": [], - "body_length": 294, - "active_votes": [], - "author_reputation": 0, - "parent_author": "bullionstackers", - "parent_permlink": "re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t035325452z", - "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want#@ace108/re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z", "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want#@ace108/re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z" }, { - "post_id": 857331, + "active_votes": [], "author": "steemjesus", - "permlink": "re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "fuck r4fken dickbutt \n\nfuck him hard with your buttdick", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 55, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 1, "created": "2016-09-04T22:23:39", - "last_update": "2016-09-04T22:23:39", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-04T22:23:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t064114931z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", + "post_id": 857331, "promoted": "0.000 HBD", "replies": [], - "body_length": 55, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t064114931z", - "url": "/test/@dickbutt/testing-dickbutt#@steemjesus/re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@steemjesus/re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z" }, { - "post_id": 843277, + "active_votes": [], "author": "str11ngfello", - "permlink": "re-str11ngfello-re-str11ngfello-testing-20160903t104442633z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "asdf", - "json_metadata": "{}", + "body_length": 4, + "cashout_time": "2016-10-04T09:03:45", + "category": "test", + "children": 0, "created": "2016-09-03T10:53:30", - "last_update": "2016-09-03T10:53:30", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-04T09:03:45", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-03T10:53:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "str11ngfello", + "parent_permlink": "re-str11ngfello-testing-20160903t104442633z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-str11ngfello-re-str11ngfello-testing-20160903t104442633z", + "post_id": 843277, "promoted": "0.000 HBD", "replies": [], - "body_length": 4, - "active_votes": [], - "author_reputation": 0, - "parent_author": "str11ngfello", - "parent_permlink": "re-str11ngfello-testing-20160903t104442633z", - "url": "/test/@str11ngfello/testing#@str11ngfello/re-str11ngfello-re-str11ngfello-testing-20160903t104442633z", "root_title": "Testing", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@str11ngfello/testing#@str11ngfello/re-str11ngfello-re-str11ngfello-testing-20160903t104442633z" }, { - "post_id": 832895, + "active_votes": [], "author": "deli", - "permlink": "re-deli-re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t094545057z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "good really!", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 12, + "cashout_time": "2016-10-03T09:26:45", + "category": "test", + "children": 0, "created": "2016-09-02T09:45:45", - "last_update": "2016-09-02T09:45:45", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T09:26:45", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T09:45:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "deli", + "parent_permlink": "re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t093020211z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-deli-re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t094545057z", + "post_id": 832895, "promoted": "0.000 HBD", "replies": [], - "body_length": 12, - "active_votes": [], - "author_reputation": 0, - "parent_author": "deli", - "parent_permlink": "re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t093020211z", - "url": "/test/@deli/test-just-how-to-see-how-this-all-works-qbd#@deli/re-deli-re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t094545057z", "root_title": "test just how to see how this all works qbd", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@deli/test-just-how-to-see-how-this-all-works-qbd#@deli/re-deli-re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t094545057z" }, { - "post_id": 832881, + "active_votes": [], "author": "deli", - "permlink": "kjhkfgfgud", - "category": "test", - "title": "this is another test", + "author_reputation": 0, + "beneficiaries": [], "body": "bla bla bla", - "json_metadata": "{}", + "body_length": 11, + "cashout_time": "2016-10-03T09:26:45", + "category": "test", + "children": 0, "created": "2016-09-02T09:42:39", - "last_update": "2016-09-02T10:01:54", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T09:26:45", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T10:01:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "deli", + "parent_permlink": "ghfhdg", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "kjhkfgfgud", + "post_id": 832881, "promoted": "0.000 HBD", "replies": [], - "body_length": 11, - "active_votes": [], - "author_reputation": 0, - "parent_author": "deli", - "parent_permlink": "ghfhdg", - "url": "/test/@deli/test-just-how-to-see-how-this-all-works-qbd#@deli/kjhkfgfgud", "root_title": "test just how to see how this all works qbd", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "this is another test", + "total_payout_value": "0.000 HBD", + "url": "/test/@deli/test-just-how-to-see-how-this-all-works-qbd#@deli/kjhkfgfgud" }, { - "post_id": 831973, + "active_votes": [], "author": "no-mercy", - "permlink": "re-iamgrateful-re-thebatchman1-do-not-vote-test-20160902t065638142z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "They are \"testing\" you to see what you will do....", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 50, + "cashout_time": "2016-10-03T07:15:03", + "category": "test", + "children": 0, "created": "2016-09-02T06:56:45", - "last_update": "2016-09-02T06:56:45", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:15:03", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T06:56:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "iamgrateful", + "parent_permlink": "re-thebatchman1-do-not-vote-test-20160902t065341712z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-iamgrateful-re-thebatchman1-do-not-vote-test-20160902t065638142z", + "post_id": 831973, "promoted": "0.000 HBD", "replies": [], - "body_length": 50, - "active_votes": [], - "author_reputation": 0, - "parent_author": "iamgrateful", - "parent_permlink": "re-thebatchman1-do-not-vote-test-20160902t065341712z", - "url": "/test/@thebatchman1/do-not-vote-test#@no-mercy/re-iamgrateful-re-thebatchman1-do-not-vote-test-20160902t065638142z", "root_title": "do not vote - test", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@thebatchman1/do-not-vote-test#@no-mercy/re-iamgrateful-re-thebatchman1-do-not-vote-test-20160902t065638142z" }, { - "post_id": 831946, + "active_votes": [], "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", - "json_metadata": "{}", + "body_length": 69, + "cashout_time": "2016-10-03T07:19:21", + "category": "test", + "children": 2, "created": "2016-09-02T06:50:54", - "last_update": "2016-09-02T06:50:54", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 2, - "net_rshares": 0, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T06:50:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "contentjunkie", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t065005906z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051", + "post_id": 831946, "promoted": "0.000 HBD", "replies": [], - "body_length": 69, - "active_votes": [], - "author_reputation": 0, - "parent_author": "contentjunkie", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t065005906z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051", "root_title": "testing @dickbutt", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 831908, - "author": "dickbutt", - "permlink": "re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", - "category": "test", "title": "", - "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", - "json_metadata": "{}", - "created": "2016-09-02T06:41:48", - "last_update": "2016-09-02T06:41:48", - "depth": 2, - "children": 3, - "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T07:19:21", "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 69, + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051" + }, + { "active_votes": [], + "author": "dickbutt", "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t064114931z", - "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", - "root_title": "testing @dickbutt", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 805729, - "author": "jonathan-looman", - "permlink": "re-whatsup-re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t214632491z", + "body": "http://i3.kym-cdn.com/entries/icons/facebook/000/001/030/dickbutt.jpg", + "body_length": 69, + "cashout_time": "2016-10-03T07:19:21", "category": "test", - "title": "", - "body": "I think that we need to recognise value in openness and distributed systems as an alternative to centralized monopolistic systems. In what way Steem is leaning I am still not sure but the Steemit content platform is bound to become gamed and the early adopters definitely will continue to have an advantage and pull more weight.", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-30T21:46:33", - "last_update": "2016-08-30T21:46:33", + "children": 3, + "created": "2016-09-02T06:41:48", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 356509174, + "json_metadata": "{}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-30T19:02:24", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-02T06:41:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t064114931z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147", + "post_id": 831908, "promoted": "0.000 HBD", "replies": [], - "body_length": 328, + "root_title": "testing @dickbutt", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147" + }, + { "active_votes": [ { - "voter": "jonathan-looman", - "rshares": "356509174", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "356509174", + "voter": "jonathan-looman" } ], + "author": "jonathan-looman", "author_reputation": 0, + "beneficiaries": [], + "body": "I think that we need to recognise value in openness and distributed systems as an alternative to centralized monopolistic systems. In what way Steem is leaning I am still not sure but the Steemit content platform is bound to become gamed and the early adopters definitely will continue to have an advantage and pull more weight.", + "body_length": 328, + "cashout_time": "2016-09-30T19:02:24", + "category": "test", + "children": 0, + "created": "2016-08-30T21:46:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-30T21:46:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 356509174, "parent_author": "whatsup", "parent_permlink": "re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t200608106z", - "url": "/test/@jonathan-looman/hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain#@jonathan-looman/re-whatsup-re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t214632491z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-whatsup-re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t214632491z", + "post_id": 805729, + "promoted": "0.000 HBD", + "replies": [], "root_title": "What is Steemit?", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@jonathan-looman/hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain#@jonathan-looman/re-whatsup-re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t214632491z" }, { - "post_id": 780295, + "active_votes": [], "author": "ivicaa", - "permlink": "re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": ":) At least you're not a bot. I am struggling with the curation reward calculation. Not easy to understand. Your upvote helps to understand it.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 143, + "cashout_time": "2016-09-28T17:56:18", + "category": "test", + "children": 1, "created": "2016-08-28T18:01:54", - "last_update": "2016-08-28T18:01:54", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-28T17:56:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-28T18:01:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "thecleangame", + "parent_permlink": "re-ivicaa-test-please-ignore-20160828t172635435z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", + "post_id": 780295, "promoted": "0.000 HBD", "replies": [], - "body_length": 143, - "active_votes": [], - "author_reputation": 0, - "parent_author": "thecleangame", - "parent_permlink": "re-ivicaa-test-please-ignore-20160828t172635435z", - "url": "/test/@ivicaa/test-please-ignore#@ivicaa/re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z", "root_title": "TEST - please ignore", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@ivicaa/test-please-ignore#@ivicaa/re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z" }, { - "post_id": 743391, + "active_votes": [], "author": "steembaby", - "permlink": "re-ibringawareness-re-steembaby-test-my-posts-disappeared-20160825t150259870z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Exactly the same feeling.\nI've saw my post published and then I've emptied the drafts.\nThat makes me feel worse now.\nI don't have the mood to write the same article for a second time.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 183, + "cashout_time": "2016-09-25T14:37:57", + "category": "test", + "children": 0, "created": "2016-08-25T15:03:15", - "last_update": "2016-08-25T15:03:15", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-25T14:37:57", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-25T15:03:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "ibringawareness", + "parent_permlink": "re-steembaby-test-my-posts-disappeared-20160825t144249526z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-ibringawareness-re-steembaby-test-my-posts-disappeared-20160825t150259870z", + "post_id": 743391, "promoted": "0.000 HBD", "replies": [], - "body_length": 183, - "active_votes": [], - "author_reputation": 0, - "parent_author": "ibringawareness", - "parent_permlink": "re-steembaby-test-my-posts-disappeared-20160825t144249526z", - "url": "/test/@steembaby/test-my-posts-disappeared#@steembaby/re-ibringawareness-re-steembaby-test-my-posts-disappeared-20160825t150259870z", "root_title": "test -- my posts disappeared!", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635716, - "author": "trogdor", - "permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", - "category": "test", "title": "", - "body": "Looks like I caught the laonie swarm and two chinese bots. No wang yet, and no 800 spam votes yet...", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T02:09:30", - "last_update": "2016-08-17T02:09:30", - "depth": 2, - "children": 8, - "net_rshares": 14714651186, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 100, + "url": "/test/@steembaby/test-my-posts-disappeared#@steembaby/re-ibringawareness-re-steembaby-test-my-posts-disappeared-20160825t150259870z" + }, + { "active_votes": [ { - "voter": "hellokitty", - "rshares": "14714651186", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "14714651186", + "voter": "hellokitty" } ], + "author": "trogdor", "author_reputation": 0, + "beneficiaries": [], + "body": "Looks like I caught the laonie swarm and two chinese bots. No wang yet, and no 800 spam votes yet...", + "body_length": 100, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 8, + "created": "2016-08-17T02:09:30", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T02:09:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 14714651186, "parent_author": "royaltiffany", "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", + "post_id": 635716, + "promoted": "0.000 HBD", + "replies": [], "root_title": "this is a test to see if i have been targeted by a spam bot army", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z" }, { - "post_id": 635701, + "active_votes": [], "author": "rawnetics", - "permlink": "re-rawnetics-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020745425z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Oh yes, here they are!", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 22, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 0, "created": "2016-08-17T02:07:45", - "last_update": "2016-08-17T02:07:45", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T02:07:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "rawnetics", + "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020521246z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-rawnetics-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020745425z", + "post_id": 635701, "promoted": "0.000 HBD", "replies": [], - "body_length": 22, - "active_votes": [], - "author_reputation": 0, - "parent_author": "rawnetics", - "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020521246z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@rawnetics/re-rawnetics-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020745425z", "root_title": "this is a test to see if i have been targeted by a spam bot army", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@rawnetics/re-rawnetics-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020745425z" }, { - "post_id": 635663, + "active_votes": [], "author": "gary-smith", - "permlink": "re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "are you a robot ?", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 17, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 3, "created": "2016-08-17T02:02:42", - "last_update": "2016-08-17T02:02:42", + "curator_payout_value": "0.000 HBD", "depth": 2, - "children": 3, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-17T02:02:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "thebeachedwhale", + "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020213239z", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", + "post_id": 635663, "promoted": "0.000 HBD", "replies": [], - "body_length": 17, - "active_votes": [], - "author_reputation": 0, - "parent_author": "thebeachedwhale", - "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020213239z", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@gary-smith/re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z", "root_title": "this is a test to see if i have been targeted by a spam bot army", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@gary-smith/re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z" }, { - "post_id": 955877, + "active_votes": [], "author": "oaldamster", - "permlink": "re-achim86-test-20160915t070512394z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Result: confirmed! ;-)", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 22, + "cashout_time": "2016-09-16T14:39:17", + "category": "test", + "children": 1, "created": "2016-09-15T07:05:12", - "last_update": "2016-09-15T07:05:12", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 1, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T07:05:12", + "max_accepted_payout": "1000000.000 HBD", "net_rshares": 0, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-16T14:39:17", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "parent_author": "achim86", + "parent_permlink": "test", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-achim86-test-20160915t070512394z", + "post_id": 955877, "promoted": "0.000 HBD", "replies": [], - "body_length": 22, - "active_votes": [], - "author_reputation": 0, - "parent_author": "achim86", - "parent_permlink": "test", - "url": "/test/@achim86/test#@oaldamster/re-achim86-test-20160915t070512394z", "root_title": "test", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@achim86/test#@oaldamster/re-achim86-test-20160915t070512394z" }, { - "post_id": 946041, + "active_votes": [], "author": "steemitqa", - "permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "I tried this not long ago.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 26, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 1, "created": "2016-09-14T02:12:12", - "last_update": "2016-09-14T02:12:12", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-14T02:12:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z", + "post_id": 946041, "promoted": "0.000 HBD", "replies": [], - "body_length": 26, - "active_votes": [], - "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@steemitqa/re-derekareith-page-view-counter-test-post-20160914t021242459z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@steemitqa/re-derekareith-page-view-counter-test-post-20160914t021242459z" }, { - "post_id": 945943, + "active_votes": [ + { + "percent": "3000", + "reputation": 0, + "rshares": "46263835410", + "voter": "derekareith" + } + ], "author": "freebornangel", - "permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Http://minds.com/ottman has a pretty good counter set up.", - "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"Http:\\/\\/minds.com\\/ottman\"]}", + "body_length": 57, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 2, "created": "2016-09-14T01:54:00", - "last_update": "2016-09-14T01:57:12", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 2, - "net_rshares": 46263835410, + "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"Http:\\/\\/minds.com\\/ottman\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-14T01:57:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 46263835410, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z", + "post_id": 945943, "promoted": "0.000 HBD", "replies": [], - "body_length": 57, + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-page-view-counter-test-post-20160914t015352577z" + }, + { "active_votes": [ { - "voter": "derekareith", - "rshares": "46263835410", - "percent": "3000", - "reputation": 0 + "percent": "5000", + "reputation": 0, + "rshares": "77095774656", + "voter": "derekareith" } ], + "author": "bitcoiner", "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-page-view-counter-test-post-20160914t015352577z", - "root_title": "Page View Counter [Test Post]", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 943502, - "author": "bitcoiner", - "permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z", - "category": "test", - "title": "", "body": "All images get cached by img1.steemit.com.\nBut this will work with users of third party apps that view posts that don't use that caching server, like eSteem.", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 157, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 5, "created": "2016-09-13T20:23:15", - "last_update": "2016-09-13T20:23:15", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 5, - "net_rshares": 77095774656, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:23:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 77095774656, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z", + "post_id": 943502, "promoted": "0.000 HBD", "replies": [], - "body_length": 157, + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-page-view-counter-test-post-20160913t202316437z" + }, + { "active_votes": [ { - "voter": "derekareith", - "rshares": "77095774656", - "percent": "5000", - "reputation": 0 + "percent": "10000", + "reputation": 0, + "rshares": "10592290339", + "voter": "elissahawke" } ], + "author": "derekareith", "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-page-view-counter-test-post-20160913t202316437z", - "root_title": "Page View Counter [Test Post]", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 943498, - "author": "derekareith", - "permlink": "re-derekareith-page-view-counter-test-post-20160913t202249477z", - "category": "test", - "title": "", "body": "\"Free
Free Web Counter", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/www.e-zeeinternet.com\\/count.php?page=1156943&style=blushdw&nbdigits=5\"],\"links\":[\"http:\\/\\/www.e-zeeinternet.com\\/\"]}", + "body_length": 455, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 0, "created": "2016-09-13T20:22:51", - "last_update": "2016-09-13T20:22:51", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 10592290339, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/www.e-zeeinternet.com\\/count.php?page=1156943&style=blushdw&nbdigits=5\"],\"links\":[\"http:\\/\\/www.e-zeeinternet.com\\/\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:22:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 10592290339, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160913t202249477z", + "post_id": 943498, "promoted": "0.000 HBD", "replies": [], - "body_length": 455, + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t202249477z" + }, + { "active_votes": [ { - "voter": "elissahawke", - "rshares": "10592290339", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "10384598371", + "voter": "elissahawke" } ], + "author": "derekareith", "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t202249477z", - "root_title": "Page View Counter [Test Post]", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 943470, - "author": "derekareith", - "permlink": "re-derekareith-page-view-counter-test-post-20160913t201948735z", - "category": "test", - "title": "", "body": "\n
\"commercial
\n\nmaybe this one ?", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/simplehitcounter.com\\/hit.php?uid=2165971&f=16777215&b=0\"],\"links\":[\"http:\\/\\/www.marcleaningservices.com\"]}", + "body_length": 332, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 0, "created": "2016-09-13T20:19:51", - "last_update": "2016-09-13T20:20:15", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 10384598371, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/simplehitcounter.com\\/hit.php?uid=2165971&f=16777215&b=0\"],\"links\":[\"http:\\/\\/www.marcleaningservices.com\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:20:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 10384598371, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201948735z", + "post_id": 943470, "promoted": "0.000 HBD", "replies": [], - "body_length": 332, - "active_votes": [ - { - "voter": "elissahawke", - "rshares": "10384598371", - "percent": "10000", - "reputation": 0 - } - ], - "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201948735z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201948735z" }, { - "post_id": 943456, + "active_votes": [], "author": "jbouchard12", - "permlink": "re-derekareith-page-view-counter-test-post-20160913t201859183z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Let us know if you get it to work!", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 34, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 0, "created": "2016-09-13T20:19:00", - "last_update": "2016-09-13T20:19:00", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 34, - "active_votes": [], - "author_reputation": 0, + "last_update": "2016-09-13T20:19:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, "parent_author": "derekareith", "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@jbouchard12/re-derekareith-page-view-counter-test-post-20160913t201859183z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201859183z", + "post_id": 943456, + "promoted": "0.000 HBD", + "replies": [], "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@jbouchard12/re-derekareith-page-view-counter-test-post-20160913t201859183z" }, { - "post_id": 943447, + "active_votes": [], "author": "goldmatters", - "permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "Do not see a counter?", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 21, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 1, "created": "2016-09-13T20:18:12", - "last_update": "2016-09-13T20:18:12", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 1, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:18:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z", + "post_id": 943447, "promoted": "0.000 HBD", "replies": [], - "body_length": 21, - "active_votes": [], - "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@goldmatters/re-derekareith-page-view-counter-test-post-20160913t201813326z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@goldmatters/re-derekareith-page-view-counter-test-post-20160913t201813326z" }, { - "post_id": 943437, + "active_votes": [], "author": "derekareith", - "permlink": "re-derekareith-page-view-counter-test-post-20160913t201727708z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "no luck :(", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 10, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 0, "created": "2016-09-13T20:17:30", - "last_update": "2016-09-13T20:17:30", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:17:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201727708z", + "post_id": 943437, "promoted": "0.000 HBD", "replies": [], - "body_length": 10, - "active_votes": [], - "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201727708z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201727708z" }, { - "post_id": 943436, + "active_votes": [], "author": "karenb54", - "permlink": "re-derekareith-page-view-counter-test-post-20160913t201718842z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "I opened, read and upvoted, interesting to see the outcome :)", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 61, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 0, "created": "2016-09-13T20:17:24", - "last_update": "2016-09-13T20:17:24", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T20:17:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160913t201718842z", + "post_id": 943436, "promoted": "0.000 HBD", "replies": [], - "body_length": 61, - "active_votes": [], - "author_reputation": 0, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "url": "/test/@derekareith/page-view-counter-test-post#@karenb54/re-derekareith-page-view-counter-test-post-20160913t201718842z", "root_title": "Page View Counter [Test Post]", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@karenb54/re-derekareith-page-view-counter-test-post-20160913t201718842z" }, { - "post_id": 939969, + "active_votes": [], "author": "vinotinto", - "permlink": "re-vinotinto-3qkywh-test-20160913t131315550z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "test comment", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 12, + "cashout_time": "2016-10-14T13:15:18", + "category": "test", + "children": 0, "created": "2016-09-13T13:13:15", - "last_update": "2016-09-13T13:13:15", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T13:15:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T13:13:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "vinotinto", + "parent_permlink": "3qkywh-test", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-vinotinto-3qkywh-test-20160913t131315550z", + "post_id": 939969, "promoted": "0.000 HBD", "replies": [], - "body_length": 12, - "active_votes": [], - "author_reputation": 0, - "parent_author": "vinotinto", - "parent_permlink": "3qkywh-test", - "url": "/test/@vinotinto/3qkywh-test#@vinotinto/re-vinotinto-3qkywh-test-20160913t131315550z", "root_title": "test", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@vinotinto/3qkywh-test#@vinotinto/re-vinotinto-3qkywh-test-20160913t131315550z" }, { - "post_id": 937862, + "active_votes": [], "author": "golfball", - "permlink": "re-golfball-test-20160913t063057513z", + "author_reputation": 0, + "beneficiaries": [], + "body": "1. mouse \u0e40\u0e21\u0e32\u0e2a\u0e4c \u0e34\u0e31 \n2. hard drive \u0e2e\u0e32\u0e23\u0e4c\u0e14\u0e44\u0e14\u0e23\u0e4c\n3. hard disk \u0e2e\u0e32\u0e23\u0e4c\u0e14\u0e14\u0e34\u0e2a\u0e01\u0e4c\n4. Monitor \u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d\n5. Display \u0e41\u0e2a\u0e14\u0e07\n *LCD screen \n *CTR screen \u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d\n* plasma screen \u0e1e\u0e23\u0e32\u0e2a\u0e21\u0e48\u0e32\n\n\n5. RAM memory \u0e2b\u0e19\u0e48\u0e27\u0e22\u0e04\u0e27\u0e32\u0e21\u0e08\u0e33\u0e41\u0e23\u0e21\nROM memory \u0e23\u0e2d\u0e21\n\n6. Printer \u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e1e\u0e34\u0e21\u0e1e\u0e4c\nplotter\n\n7. microphone \u0e44\u0e21\u0e42\u0e04\u0e23\u0e42\u0e1f\u0e19\n\n8. scanner \u0e40\u0e04\u0e23\u0e37\u0e2d\u0e07\u0e2a\u0e40\u0e40\u0e01\u0e19\n\n9. speakers\n\n10. keyboard \u0e41\u0e1b\u0e49\u0e19\u0e1e\u0e34\u0e21\u0e1e\u0e4c\n\n11. barcode \u0e1a\u0e32\u0e23\u0e4c\u0e42\u0e04\u0e49\u0e14\n\n12. \n\n13. Right click\n\nhttp://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\nhttp://cdn.slashgear.com/wp-content/uploads/2013/04/Seagate-HDD.jpg\nhttp://img.bbystatic.com/BestBuy_US/images/products/3434/3434015cv13d.jpg\nhttp://cdn.computerhope.com/computer-memory.jpg\nhttps://xiebingqing815.files.wordpress.com/2013/09/rom-vs-ram.png", + "body_length": 763, + "cashout_time": "2016-09-30T07:41:51", "category": "test", - "title": "", - "body": "1. mouse เมาส์ ิั \n2. hard drive ฮาร์ดไดร์\n3. hard disk ฮาร์ดดิสก์\n4. Monitor หน้าจอ\n5. Display แสดง\n *LCD screen \n *CTR screen หน้าจอ\n* plasma screen พราสม่า\n\n\n5. RAM memory หน่วยความจำแรม\nROM memory รอม\n\n6. Printer เครื่องพิมพ์\nplotter\n\n7. microphone ไมโครโฟน\n\n8. scanner เครืองสเเกน\n\n9. speakers\n\n10. keyboard แป้นพิมพ์\n\n11. barcode บาร์โค้ด\n\n12. \n\n13. Right click\n\nhttp://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\nhttp://cdn.slashgear.com/wp-content/uploads/2013/04/Seagate-HDD.jpg\nhttp://img.bbystatic.com/BestBuy_US/images/products/3434/3434015cv13d.jpg\nhttp://cdn.computerhope.com/computer-memory.jpg\nhttps://xiebingqing815.files.wordpress.com/2013/09/rom-vs-ram.png", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", + "children": 2, "created": "2016-09-13T06:31:00", - "last_update": "2016-09-13T06:33:45", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 2, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-30T07:41:51", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T06:33:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "golfball", + "parent_permlink": "test", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-golfball-test-20160913t063057513z", + "post_id": 937862, "promoted": "0.000 HBD", "replies": [], - "body_length": 763, - "active_votes": [], - "author_reputation": 0, - "parent_author": "golfball", - "parent_permlink": "test", - "url": "/test/@golfball/test#@golfball/re-golfball-test-20160913t063057513z", "root_title": "Test One", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@golfball/test#@golfball/re-golfball-test-20160913t063057513z" }, { - "post_id": 936699, + "active_votes": [], "author": "dickbutt", - "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "dickbutt", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 8, + "cashout_time": "2016-10-14T04:41:42", + "category": "test", + "children": 0, "created": "2016-09-13T02:53:21", - "last_update": "2016-09-13T02:53:21", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T04:41:42", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T02:53:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "testing-the-dickbutt-automated-system", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z", + "post_id": 936699, "promoted": "0.000 HBD", "replies": [], - "body_length": 8, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "testing-the-dickbutt-automated-system", - "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@dickbutt/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z", "root_title": "testing the @dickbutt automated system", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@dickbutt/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z" }, { - "post_id": 936684, + "active_votes": [], "author": "contentjunkie", - "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z", - "category": "test", - "title": "", + "author_reputation": 0, + "beneficiaries": [], "body": "dickbutt", - "json_metadata": "{\"tags\":[\"test\"]}", + "body_length": 8, + "cashout_time": "2016-10-14T04:41:42", + "category": "test", + "children": 0, "created": "2016-09-13T02:51:42", - "last_update": "2016-09-13T02:51:42", + "curator_payout_value": "0.000 HBD", "depth": 1, - "children": 0, - "net_rshares": 0, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T04:41:42", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-09-13T02:51:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "dickbutt", + "parent_permlink": "testing-the-dickbutt-automated-system", "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z", + "post_id": 936684, "promoted": "0.000 HBD", "replies": [], - "body_length": 8, - "active_votes": [], - "author_reputation": 0, - "parent_author": "dickbutt", - "parent_permlink": "testing-the-dickbutt-automated-system", - "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z", "root_title": "testing the @dickbutt automated system", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/condenser_api_patterns/get_content_deleted.pat.json b/hivemind/tavern/condenser_api_patterns/get_content_deleted.pat.json index 893d1049..546bf3b0 100644 --- a/hivemind/tavern/condenser_api_patterns/get_content_deleted.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_content_deleted.pat.json @@ -1,5 +1,5 @@ { - "code": -32000, - "data": "IndexError: list index out of range", - "message": "Server error" + "code": -32602, + "data": "post was not found in cache", + "message": "Invalid parameters" } diff --git a/hivemind/tavern/condenser_api_patterns/get_content_gtg.pat.json b/hivemind/tavern/condenser_api_patterns/get_content_gtg.pat.json index 75d9de1c..8f5b27ac 100644 --- a/hivemind/tavern/condenser_api_patterns/get_content_gtg.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_content_gtg.pat.json @@ -524,7 +524,7 @@ } ], "author": "gtg", - "author_reputation": 3920426655270, + "author_reputation": 0, "beneficiaries": [], "body": "Hello, World!\n\nMy intention is not to make it into top 19. I could name many other candidates (clearly more than 19) with greater commitment to steem(it) who are a lot more appropriate as witnesses, but I'm sure I can be useful as a backup witness.\n\nI introduced myself here:\nhttps://steemit.com/introduceyourself/@gtg/hello-world\nThose of you who use https://steemit.chat know me as **Gandalf**.\nFor some time, I\u2019ve been using my magic powers (mostly those related to security and infrastructure) to improve steemit. For example, I\u2019ve improved our \"Perfect\" Forward Secrecy and made our communication with site more secure.\n\nMy **seed node** (EU based):\n`seed-node = gtg.steem.house:2001`\nYou can also use it to rsync data dir\n`rsync -Pa rsync://gtg.steem.house/witness_node_data_dir .`\n\nMy **witness node** is on a separate data center (an EU-based one as well).\nIf you believe I can be of value to steemit, please vote for me:\n`vote_for_witness YOURACCOUNT gtg true true`\n\n![witness](https://grey.house/img/witness.jpg)", "body_length": 1023, @@ -534,7 +534,7 @@ "created": "2016-08-05T14:02:24", "curator_payout_value": "231.879 HBD", "depth": 0, - "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https:\\/\\/steemit.com\\/introduceyourself\\/@gtg\\/hello-world\"]}", + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https://steemit.com/introduceyourself/@gtg/hello-world\"]}", "last_payout": "2016-09-05T05:17:57", "last_update": "2016-08-05T14:02:24", "max_accepted_payout": "1000000.000 HBD", @@ -542,9 +542,9 @@ "parent_author": "", "parent_permlink": "witness-category", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "witness-gtg", - "post_id": 463046, + "post_id": 624896, "promoted": "0.000 HBD", "replies": [], "root_title": "Witness \"gtg\"", diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.pat.json index 0b58474c..6dd19021 100644 --- a/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date_no_results.pat.json @@ -627,7 +627,7 @@ "parent_author": "", "parent_permlink": "meta", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "firstpost", "post_id": 1, "promoted": "0.000 HBD", diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.orig.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.orig.json index 304d950a..5e2465ba 100644 --- a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.orig.json +++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.orig.json @@ -1,1836 +1,1836 @@ [ { - "post_id": 727357, - "author": "somebody", - "permlink": "follow-me-please", - "category": "test", - "title": "Follow me please.", - "body": "This post is a trap for robots. So please don't upvote. Just follow me please.\n\n[![](https://steemimg.com/images/2016/08/24/dd8bd8753d16805.gif)](https://steemit.com/@somebody)", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/steemimg.com\\/images\\/2016\\/08\\/24\\/dd8bd8753d16805.gif\"]}", - "created": "2016-08-24T04:49:00", - "last_update": "2016-08-24T04:49:00", - "depth": 0, - "children": 7, - "net_rshares": 860151460398, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-24T05:05:24", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.546 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 176, "active_votes": [ { - "voter": "lee5", - "rshares": "835401856", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "835401856", + "voter": "lee5" }, { - "voter": "noaommerrr", - "rshares": "221000835803", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "221000835803", + "voter": "noaommerrr" }, { - "voter": "akaninyene-etuk", - "rshares": "60049910", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "60049910", + "voter": "akaninyene-etuk" }, { - "voter": "irit", - "rshares": "141944533", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "141944533", + "voter": "irit" }, { - "voter": "hedge-x", - "rshares": "361661182474", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "361661182474", + "voter": "hedge-x" }, { - "voter": "primus", - "rshares": "6648576257", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6648576257", + "voter": "primus" }, { - "voter": "dasha", - "rshares": "7400392900", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7400392900", + "voter": "dasha" }, { - "voter": "lemooljiang", - "rshares": "12001771040", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "12001771040", + "voter": "lemooljiang" }, { - "voter": "michaeldodridge", - "rshares": "9364510234", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "9364510234", + "voter": "michaeldodridge" }, { - "voter": "somebody", - "rshares": "231680157638", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "231680157638", + "voter": "somebody" }, { - "voter": "feelapi", - "rshares": "1520602917", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1520602917", + "voter": "feelapi" }, { - "voter": "future24", - "rshares": "411633883", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "411633883", + "voter": "future24" }, { - "voter": "mione", - "rshares": "3793330400", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3793330400", + "voter": "mione" }, { - "voter": "tomeraddady", - "rshares": "60886073", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "60886073", + "voter": "tomeraddady" }, { - "voter": "abc1621043211", - "rshares": "727760600", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "727760600", + "voter": "abc1621043211" }, { - "voter": "jsantana", - "rshares": "1985606562", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1985606562", + "voter": "jsantana" }, { - "voter": "goriilla", - "rshares": "55763290", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "55763290", + "voter": "goriilla" }, { - "voter": "olakla", - "rshares": "55184850", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "55184850", + "voter": "olakla" }, { - "voter": "cerne", - "rshares": "54993135", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54993135", + "voter": "cerne" }, { - "voter": "rexgrove", - "rshares": "54916164", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54916164", + "voter": "rexgrove" }, { - "voter": "inwoxer", - "rshares": "139924838", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "139924838", + "voter": "inwoxer" }, { - "voter": "f1111111", - "rshares": "50066904", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50066904", + "voter": "f1111111" }, { - "voter": "fluffy", - "rshares": "393193776", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "393193776", + "voter": "fluffy" }, { - "voter": "alexportikul", - "rshares": "52774361", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52774361", + "voter": "alexportikul" } ], + "author": "somebody", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@somebody/follow-me-please", - "root_title": "Follow me please.", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635639, - "author": "trogdor", - "permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", + "body": "This post is a trap for robots. So please don't upvote. Just follow me please.\n\n[![](https://steemimg.com/images/2016/08/24/dd8bd8753d16805.gif)](https://steemit.com/@somebody)", + "body_length": 176, + "cashout_time": "2016-09-24T05:05:24", "category": "test", - "title": "this is a test to see if i have been targeted by a spam bot army", - "body": "test", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T02:00:48", - "last_update": "2016-08-17T02:00:48", + "children": 7, + "created": "2016-08-24T04:49:00", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 19, - "net_rshares": 606977500984, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/steemimg.com\\/images\\/2016\\/08\\/24\\/dd8bd8753d16805.gif\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.418 HBD", + "last_update": "2016-08-24T04:49:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 860151460398, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.546 HBD", + "percent_steem_dollars": 10000, + "permlink": "follow-me-please", + "post_id": 727357, "promoted": "0.000 HBD", "replies": [], - "body_length": 4, + "root_title": "Follow me please.", + "title": "Follow me please.", + "total_payout_value": "0.000 HBD", + "url": "/test/@somebody/follow-me-please" + }, + { "active_votes": [ { - "voter": "somedude", - "rshares": "8763619284", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "8763619284", + "voter": "somedude" }, { - "voter": "trogdor", - "rshares": "5564190601", "percent": "0", - "reputation": 0 + "reputation": 0, + "rshares": "5564190601", + "voter": "trogdor" }, { - "voter": "raymonjohnstone", - "rshares": "145380534", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "145380534", + "voter": "raymonjohnstone" }, { - "voter": "pinkisland", - "rshares": "10315786664", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "10315786664", + "voter": "pinkisland" }, { - "voter": "hellokitty", - "rshares": "15008944210", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "15008944210", + "voter": "hellokitty" }, { - "voter": "laonie", - "rshares": "497568302000", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "497568302000", + "voter": "laonie" }, { - "voter": "laonie1", - "rshares": "3778964442", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778964442", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "3778947431", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778947431", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "3778936100", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778936100", + "voter": "laonie3" }, { - "voter": "myfirst", - "rshares": "9118987048", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "9118987048", + "voter": "myfirst" }, { - "voter": "laonie4", - "rshares": "3778614532", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778614532", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "3778602547", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778602547", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "3778594469", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778594469", + "voter": "laonie6" }, { - "voter": "laonie7", - "rshares": "3778571886", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778571886", + "voter": "laonie7" }, { - "voter": "laonie8", - "rshares": "3778554259", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778554259", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "3778533199", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778533199", + "voter": "laonie9" }, { - "voter": "xiaohui", - "rshares": "18835607987", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "18835607987", + "voter": "xiaohui" }, { - "voter": "laonie10", - "rshares": "3776590554", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3776590554", + "voter": "laonie10" }, { - "voter": "runridefly", - "rshares": "111114608", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "111114608", + "voter": "runridefly" }, { - "voter": "laonie11", - "rshares": "3760658629", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3760658629", + "voter": "laonie11" } ], + "author": "trogdor", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 617652, - "author": "stino-san", - "permlink": "test", - "category": "test", - "title": "test", "body": "test", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-15T20:05:21", - "last_update": "2016-08-15T20:05:21", + "body_length": 4, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 19, + "created": "2016-08-17T02:00:48", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 0, - "net_rshares": 307686992811, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-15T20:12:06", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.208 HBD", + "last_update": "2016-08-17T02:00:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 606977500984, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.418 HBD", + "percent_steem_dollars": 10000, + "permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", + "post_id": 635639, "promoted": "0.000 HBD", "replies": [], - "body_length": 4, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "this is a test to see if i have been targeted by a spam bot army", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army" + }, + { "active_votes": [ { - "voter": "stino-san", - "rshares": "228145849379", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "228145849379", + "voter": "stino-san" }, { - "voter": "fuck.off", - "rshares": "5007214192", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5007214192", + "voter": "fuck.off" }, { - "voter": "iloveporn", - "rshares": "6821297816", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6821297816", + "voter": "iloveporn" }, { - "voter": "the.bot", - "rshares": "2438027091", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2438027091", + "voter": "the.bot" }, { - "voter": "johnbradshaw", - "rshares": "8295473589", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "8295473589", + "voter": "johnbradshaw" }, { - "voter": "the.whale", - "rshares": "5785438356", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5785438356", + "voter": "the.whale" }, { - "voter": "unicornfarts", - "rshares": "5481884026", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5481884026", + "voter": "unicornfarts" }, { - "voter": "vote", - "rshares": "5785920904", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5785920904", + "voter": "vote" }, { - "voter": "kissmybutt", - "rshares": "6091743832", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6091743832", + "voter": "kissmybutt" }, { - "voter": "aaseb", - "rshares": "13280342528", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "13280342528", + "voter": "aaseb" }, { - "voter": "michaeldodridge", - "rshares": "6322307995", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6322307995", + "voter": "michaeldodridge" }, { - "voter": "kukuy", - "rshares": "111797071", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "111797071", + "voter": "kukuy" }, { - "voter": "thedon", - "rshares": "1010597496", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1010597496", + "voter": "thedon" }, { - "voter": "thebotkiller", - "rshares": "11316597740", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "11316597740", + "voter": "thebotkiller" }, { - "voter": "jimmytwoshoes", - "rshares": "283790428", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "283790428", + "voter": "jimmytwoshoes" }, { - "voter": "jackgallenhall", - "rshares": "1455898140", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1455898140", + "voter": "jackgallenhall" }, { - "voter": "reddtie", - "rshares": "52812228", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52812228", + "voter": "reddtie" } ], + "author": "stino-san", "author_reputation": 0, + "beneficiaries": [], + "body": "test", + "body_length": 4, + "cashout_time": "2016-09-15T20:12:06", + "category": "test", + "children": 0, + "created": "2016-08-15T20:05:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-15T20:05:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 307686992811, "parent_author": "", "parent_permlink": "test", - "url": "/test/@stino-san/test", + "pending_payout_value": "0.208 HBD", + "percent_steem_dollars": 10000, + "permlink": "test", + "post_id": 617652, + "promoted": "0.000 HBD", + "replies": [], "root_title": "test", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "test", + "total_payout_value": "0.000 HBD", + "url": "/test/@stino-san/test" }, { - "post_id": 763215, - "author": "stino-san", - "permlink": "46vbbv-test", - "category": "test", - "title": "test", - "body": "test", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-27T04:46:51", - "last_update": "2016-08-27T04:46:51", - "depth": 0, - "children": 4, - "net_rshares": 275726168458, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-27T04:52:36", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.151 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 4, "active_votes": [ { - "voter": "stino-san", - "rshares": "225913748267", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "225913748267", + "voter": "stino-san" }, { - "voter": "fuck.off", - "rshares": "4936121677", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "4936121677", + "voter": "fuck.off" }, { - "voter": "the.bot", - "rshares": "2248064175", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2248064175", + "voter": "the.bot" }, { - "voter": "johnbradshaw", - "rshares": "8179524007", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "8179524007", + "voter": "johnbradshaw" }, { - "voter": "arcaneinfo", - "rshares": "5469062752", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5469062752", + "voter": "arcaneinfo" }, { - "voter": "the.whale", - "rshares": "5704244958", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5704244958", + "voter": "the.whale" }, { - "voter": "vote", - "rshares": "5583423314", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5583423314", + "voter": "vote" }, { - "voter": "kissmybutt", - "rshares": "6007072255", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6007072255", + "voter": "kissmybutt" }, { - "voter": "nicoleta", - "rshares": "67820011", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "67820011", + "voter": "nicoleta" }, { - "voter": "thebotkiller", - "rshares": "10924517278", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "10924517278", + "voter": "thebotkiller" }, { - "voter": "jimmytwoshoes", - "rshares": "267235062", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "267235062", + "voter": "jimmytwoshoes" }, { - "voter": "rucoin", - "rshares": "425334702", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "425334702", + "voter": "rucoin" } ], + "author": "stino-san", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@stino-san/46vbbv-test", - "root_title": "test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 858881, - "author": "ace108", - "permlink": "test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want", + "body": "test", + "body_length": 4, + "cashout_time": "2016-09-27T04:52:36", "category": "test", - "title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", - "body": "\n

\"Follow@bullionstackers.gif\"
\n
\nImage Link

\n", - "json_metadata": "{\"tags\":[\"test\",\"testbyace10\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/05\\/Followbullionstackers320e51da.gif\"],\"links\":[\"https:\\/\\/www.steemimg.com\\/image\\/7tV3J\"]}", - "created": "2016-09-05T02:59:36", - "last_update": "2016-09-05T03:18:39", + "children": 4, + "created": "2016-08-27T04:46:51", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 3, - "net_rshares": 257677398121, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-06T04:18:33", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.082 HBD", + "last_update": "2016-08-27T04:46:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 275726168458, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.151 HBD", + "percent_steem_dollars": 10000, + "permlink": "46vbbv-test", + "post_id": 763215, "promoted": "0.000 HBD", "replies": [], - "body_length": 240, + "root_title": "test", + "title": "test", + "total_payout_value": "0.000 HBD", + "url": "/test/@stino-san/46vbbv-test" + }, + { "active_votes": [ { - "voter": "tcfxyz", - "rshares": "24991140368", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "24991140368", + "voter": "tcfxyz" }, { - "voter": "futurefood", - "rshares": "6923304252", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6923304252", + "voter": "futurefood" }, { - "voter": "rea", - "rshares": "79040067029", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "79040067029", + "voter": "rea" }, { - "voter": "pinkisland", - "rshares": "23010056511", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "23010056511", + "voter": "pinkisland" }, { - "voter": "bullionstackers", - "rshares": "1854087037", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1854087037", + "voter": "bullionstackers" }, { - "voter": "twinner", - "rshares": "121858742924", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "121858742924", + "voter": "twinner" } ], + "author": "ace108", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want", - "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 928651, - "author": "royaltiffany", - "permlink": "test", + "body": "\n

\"Follow@bullionstackers.gif\"
\n
\nImage Link

\n", + "body_length": 240, + "cashout_time": "2016-10-06T04:18:33", "category": "test", - "title": "Test", - "body": "Please do not upvote...\n\n
http://designwebkit.com/wp-content/uploads/2013/09/how-test-logo-design-thumb.jpg\n
Source
", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/designwebkit.com\\/wp-content\\/uploads\\/2013\\/09\\/how-test-logo-design-thumb.jpg\"],\"links\":[\"http:\\/\\/designwebkit.com\\/web-and-trends\\/how-professional-tests-finalizes-logo-design\\/\"]}", - "created": "2016-09-12T07:38:09", - "last_update": "2016-09-12T07:38:09", + "children": 3, + "created": "2016-09-05T02:59:36", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 6, - "net_rshares": 230967859053, + "json_metadata": "{\"tags\":[\"test\",\"testbyace10\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/05\\/Followbullionstackers320e51da.gif\"],\"links\":[\"https:\\/\\/www.steemimg.com\\/image\\/7tV3J\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T01:42:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.055 HBD", + "last_update": "2016-09-05T03:18:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 257677398121, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.082 HBD", + "percent_steem_dollars": 10000, + "permlink": "test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want", + "post_id": 858881, "promoted": "0.000 HBD", "replies": [], - "body_length": 250, + "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", + "title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", + "total_payout_value": "0.000 HBD", + "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want" + }, + { "active_votes": [ { - "voter": "woo7739", - "rshares": "7861629418", "percent": "100", - "reputation": 0 + "reputation": 0, + "rshares": "7861629418", + "voter": "woo7739" }, { - "voter": "dragonslayer109", - "rshares": "206209970416", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "206209970416", + "voter": "dragonslayer109" }, { - "voter": "rawlzsec", - "rshares": "3649598360", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3649598360", + "voter": "rawlzsec" }, { - "voter": "michaellamden68", - "rshares": "3509996730", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3509996730", + "voter": "michaellamden68" }, { - "voter": "bitcoiner", - "rshares": "6300267620", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6300267620", + "voter": "bitcoiner" }, { - "voter": "metaflute", - "rshares": "1305753906", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1305753906", + "voter": "metaflute" }, { - "voter": "usb", - "rshares": "840098241", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "840098241", + "voter": "usb" }, { - "voter": "mrlogic", - "rshares": "192321224", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "192321224", + "voter": "mrlogic" }, { - "voter": "ppan08162016", - "rshares": "54457374", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54457374", + "voter": "ppan08162016" }, { - "voter": "anasz", - "rshares": "1043765764", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1043765764", + "voter": "anasz" } ], + "author": "royaltiffany", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@royaltiffany/test", - "root_title": "Test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 641664, - "author": "rubenalexander", - "permlink": "800px-box-crop-test-test-post-please-ignore", + "body": "Please do not upvote...\n\n
http://designwebkit.com/wp-content/uploads/2013/09/how-test-logo-design-thumb.jpg\n
Source
", + "body_length": 250, + "cashout_time": "2016-10-14T01:42:18", "category": "test", - "title": "800px box, crop test [Test Post Please Ignore]", - "body": "
\n\nI noticed that in the list view of all posts, my main images were being cropped. It didn't seem to be a clean scale, or a centered crop, so I created an image to try to determine where the crop occured in the image.\n\nI need to run more tests, but with an 800px x 800px image:\n- The crop occurs around 60 pixels from the top and ends around 280 pixels from the bottom. \n- The crop box dimension 800 pixels wide by 455 pixels high.", - "json_metadata": "{\"tags\":[\"test\",\"crop\",\"image\"],\"image\":[\"http:\\/\\/i.imgur.com\\/GK1SyaR.png\"]}", - "created": "2016-08-17T14:05:27", - "last_update": "2016-08-17T14:20:57", + "children": 6, + "created": "2016-09-12T07:38:09", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 1, - "net_rshares": 84134603688, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/designwebkit.com\\/wp-content\\/uploads\\/2013\\/09\\/how-test-logo-design-thumb.jpg\"],\"links\":[\"http:\\/\\/designwebkit.com\\/web-and-trends\\/how-professional-tests-finalizes-logo-design\\/\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T16:24:15", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.051 HBD", + "last_update": "2016-09-12T07:38:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 230967859053, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.055 HBD", + "percent_steem_dollars": 10000, + "permlink": "test", + "post_id": 928651, "promoted": "0.000 HBD", "replies": [], - "body_length": 490, + "root_title": "Test", + "title": "Test", + "total_payout_value": "0.000 HBD", + "url": "/test/@royaltiffany/test" + }, + { "active_votes": [ { - "voter": "proctologic", - "rshares": "10220864268", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "10220864268", + "voter": "proctologic" }, { - "voter": "digi3d", - "rshares": "258954801", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "258954801", + "voter": "digi3d" }, { - "voter": "discombobulated", - "rshares": "65562670577", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "65562670577", + "voter": "discombobulated" }, { - "voter": "kurtbeil", - "rshares": "6668122973", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6668122973", + "voter": "kurtbeil" }, { - "voter": "mndstruct", - "rshares": "67570327", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "67570327", + "voter": "mndstruct" }, { - "voter": "rubenalexander", - "rshares": "1245304003", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1245304003", + "voter": "rubenalexander" }, { - "voter": "runridefly", - "rshares": "111116739", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "111116739", + "voter": "runridefly" } ], + "author": "rubenalexander", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@rubenalexander/800px-box-crop-test-test-post-please-ignore", - "root_title": "800px box, crop test [Test Post Please Ignore]", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 745478, - "author": "venuspcs", - "permlink": "2kruc4-test", + "body": "
\n\nI noticed that in the list view of all posts, my main images were being cropped. It didn't seem to be a clean scale, or a centered crop, so I created an image to try to determine where the crop occured in the image.\n\nI need to run more tests, but with an 800px x 800px image:\n- The crop occurs around 60 pixels from the top and ends around 280 pixels from the bottom. \n- The crop box dimension 800 pixels wide by 455 pixels high.", + "body_length": 490, + "cashout_time": "2016-09-17T16:24:15", "category": "test", - "title": "Test", - "body": "Testing to see if posting is working again.", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-25T18:14:33", - "last_update": "2016-08-25T18:14:33", - "depth": 0, "children": 1, - "net_rshares": 72263112386, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-25T18:50:09", - "total_payout_value": "0.000 HBD", + "created": "2016-08-17T14:05:27", "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.037 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"test\",\"crop\",\"image\"],\"image\":[\"http:\\/\\/i.imgur.com\\/GK1SyaR.png\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T14:20:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 84134603688, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.051 HBD", + "percent_steem_dollars": 10000, + "permlink": "800px-box-crop-test-test-post-please-ignore", + "post_id": 641664, "promoted": "0.000 HBD", "replies": [], - "body_length": 43, + "root_title": "800px box, crop test [Test Post Please Ignore]", + "title": "800px box, crop test [Test Post Please Ignore]", + "total_payout_value": "0.000 HBD", + "url": "/test/@rubenalexander/800px-box-crop-test-test-post-please-ignore" + }, + { "active_votes": [ { - "voter": "venuspcs", - "rshares": "69552358699", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "69552358699", + "voter": "venuspcs" }, { - "voter": "bitland", - "rshares": "2058287307", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2058287307", + "voter": "bitland" }, { - "voter": "runridefly", - "rshares": "495165648", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "495165648", + "voter": "runridefly" }, { - "voter": "analyzethis", - "rshares": "50931848", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50931848", + "voter": "analyzethis" }, { - "voter": "rb3coins", - "rshares": "53222151", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "53222151", + "voter": "rb3coins" }, { - "voter": "vsmith08162016", - "rshares": "53146733", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "53146733", + "voter": "vsmith08162016" } ], + "author": "venuspcs", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@venuspcs/2kruc4-test", - "root_title": "Test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 829308, - "author": "asch", - "permlink": "4bh3kx-test", + "body": "Testing to see if posting is working again.", + "body_length": 43, + "cashout_time": "2016-09-25T18:50:09", "category": "test", - "title": "Change request for steemit: allow posts to be hidden by author", - "body": "Would be nice if an author could flag his/her own post so that it can be hidden from the steemit.com blog pages.\n\nhttps://ipfs.pics/ipfs/QmVP5ebRFZ38f7h3k8Vq3cbRcsGBDyZBCqTLtB3GjYFobi", - "json_metadata": "{\"tags\":[\"test\",\"steemit\"],\"image\":[\"https:\\/\\/ipfs.pics\\/ipfs\\/QmVP5ebRFZ38f7h3k8Vq3cbRcsGBDyZBCqTLtB3GjYFobi\"]}", - "created": "2016-09-01T23:31:36", - "last_update": "2016-09-02T00:02:21", + "children": 1, + "created": "2016-08-25T18:14:33", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 2, - "net_rshares": 92401268815, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T00:20:39", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.033 HBD", + "last_update": "2016-08-25T18:14:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 72263112386, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.037 HBD", + "percent_steem_dollars": 10000, + "permlink": "2kruc4-test", + "post_id": 745478, "promoted": "0.000 HBD", "replies": [], - "body_length": 183, + "root_title": "Test", + "title": "Test", + "total_payout_value": "0.000 HBD", + "url": "/test/@venuspcs/2kruc4-test" + }, + { "active_votes": [ { - "voter": "richman", - "rshares": "13053504107", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "13053504107", + "voter": "richman" }, { - "voter": "asch", - "rshares": "68346947255", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "68346947255", + "voter": "asch" }, { - "voter": "happyphoenix", - "rshares": "897343674", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "897343674", + "voter": "happyphoenix" }, { - "voter": "goose", - "rshares": "8842903950", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "8842903950", + "voter": "goose" }, { - "voter": "rb3coins", - "rshares": "53222151", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "53222151", + "voter": "rb3coins" }, { - "voter": "billkappa442", - "rshares": "51240567", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51240567", + "voter": "billkappa442" }, { - "voter": "glassheart", - "rshares": "51235131", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51235131", + "voter": "glassheart" }, { - "voter": "dragonice", - "rshares": "51232949", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51232949", + "voter": "dragonice" }, { - "voter": "steemq", - "rshares": "51230296", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51230296", + "voter": "steemq" }, { - "voter": "battalar", - "rshares": "51227561", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51227561", + "voter": "battalar" }, { - "voter": "weare", - "rshares": "51218466", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51218466", + "voter": "weare" }, { - "voter": "deli", - "rshares": "51215236", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51215236", + "voter": "deli" }, { - "voter": "slow", - "rshares": "51141851", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51141851", + "voter": "slow" }, { - "voter": "oxygen", - "rshares": "50907857", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50907857", + "voter": "oxygen" }, { - "voter": "cyan", - "rshares": "50875769", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50875769", + "voter": "cyan" }, { - "voter": "palladium", - "rshares": "50873654", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50873654", + "voter": "palladium" }, { - "voter": "motion", - "rshares": "50871059", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50871059", + "voter": "motion" }, { - "voter": "sting", - "rshares": "50865840", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50865840", + "voter": "sting" }, { - "voter": "breeze", - "rshares": "50798322", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50798322", + "voter": "breeze" }, { - "voter": "autodesk", - "rshares": "50794039", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50794039", + "voter": "autodesk" }, { - "voter": "ziggo", - "rshares": "50570250", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50570250", + "voter": "ziggo" }, { - "voter": "friends", - "rshares": "50532230", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50532230", + "voter": "friends" }, { - "voter": "connect", - "rshares": "50484452", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50484452", + "voter": "connect" }, { - "voter": "sunlight", - "rshares": "50479027", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50479027", + "voter": "sunlight" }, { - "voter": "letstalkliberty", - "rshares": "239553122", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "239553122", + "voter": "letstalkliberty" } ], + "author": "asch", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@asch/4bh3kx-test", - "root_title": "Change request for steemit: allow posts to be hidden by author", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 943429, - "author": "derekareith", - "permlink": "page-view-counter-test-post", + "body": "Would be nice if an author could flag his/her own post so that it can be hidden from the steemit.com blog pages.\n\nhttps://ipfs.pics/ipfs/QmVP5ebRFZ38f7h3k8Vq3cbRcsGBDyZBCqTLtB3GjYFobi", + "body_length": 183, + "cashout_time": "2016-10-03T00:20:39", "category": "test", - "title": "Page View Counter [Test Post]", - "body": "\n

I wanted to try one and see if it worked here:

\n


\n
\n

I think that this can be a good statistic to track as it gives you a feel for how many users actually opened your article.  This can help guide authors to work on topics that attract the most views.  Upvotes are nice, but I feel that they don't tell the whole story as far as the level of interest your articles generate.

\n

There are also lurkers who don't have accounts but occasionally check out what's going on here.  This could help to track them as well.

\n

I found some others that require the webpage address, so I will add those in the comments after I post.

\n", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/www.hitcounterhtmlcode.com\\/count2.php?id=440360354082326413097\"],\"links\":[\"http:\\/\\/www.hitcounterhtmlcode.com\\/stats.php?id=440360354082326413097\"]}", - "created": "2016-09-13T20:16:00", - "last_update": "2016-09-13T20:16:00", + "children": 2, + "created": "2016-09-01T23:31:36", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 18, - "net_rshares": 138491181744, + "json_metadata": "{\"tags\":[\"test\",\"steemit\"],\"image\":[\"https:\\/\\/ipfs.pics\\/ipfs\\/QmVP5ebRFZ38f7h3k8Vq3cbRcsGBDyZBCqTLtB3GjYFobi\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.029 HBD", + "last_update": "2016-09-02T00:02:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 92401268815, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.033 HBD", + "percent_steem_dollars": 10000, + "permlink": "4bh3kx-test", + "post_id": 829308, "promoted": "0.000 HBD", "replies": [], - "body_length": 887, + "root_title": "Change request for steemit: allow posts to be hidden by author", + "title": "Change request for steemit: allow posts to be hidden by author", + "total_payout_value": "0.000 HBD", + "url": "/test/@asch/4bh3kx-test" + }, + { "active_votes": [ { - "voter": "richman", - "rshares": "7800265111", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7800265111", + "voter": "richman" }, { - "voter": "jerome-colley", - "rshares": "9647209204", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "9647209204", + "voter": "jerome-colley" }, { - "voter": "steemswede", - "rshares": "2182262521", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2182262521", + "voter": "steemswede" }, { - "voter": "derekareith", - "rshares": "3857214813", "percent": "0", - "reputation": 0 + "reputation": 0, + "rshares": "3857214813", + "voter": "derekareith" }, { - "voter": "rxhector", - "rshares": "734052546", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "734052546", + "voter": "rxhector" }, { - "voter": "cynetyc", - "rshares": "113270416", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "113270416", + "voter": "cynetyc" }, { - "voter": "jbouchard12", - "rshares": "3309065147", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3309065147", + "voter": "jbouchard12" }, { - "voter": "bitcoiner", - "rshares": "5534121085", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5534121085", + "voter": "bitcoiner" }, { - "voter": "sergey44", - "rshares": "77156992", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "77156992", + "voter": "sergey44" }, { - "voter": "karenb54", - "rshares": "514947462", "percent": "1000", - "reputation": 0 + "reputation": 0, + "rshares": "514947462", + "voter": "karenb54" }, { - "voter": "anotherjoe", - "rshares": "91627251937", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "91627251937", + "voter": "anotherjoe" }, { - "voter": "the-bitcoin-dood", - "rshares": "1181902434", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1181902434", + "voter": "the-bitcoin-dood" }, { - "voter": "elissahawke", - "rshares": "10384598371", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "10384598371", + "voter": "elissahawke" }, { - "voter": "wuyueling", - "rshares": "413323439", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "413323439", + "voter": "wuyueling" }, { - "voter": "roadhog", - "rshares": "52910800", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52910800", + "voter": "roadhog" }, { - "voter": "doggnostic", - "rshares": "50639382", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50639382", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "50377764", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50377764", + "voter": "jenny-talls" }, { - "voter": "post-successful", - "rshares": "51278775", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51278775", + "voter": "post-successful" }, { - "voter": "freebornangel", - "rshares": "60293991", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "60293991", + "voter": "freebornangel" }, { - "voter": "jbaker585", - "rshares": "849039554", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "849039554", + "voter": "jbaker585" } ], + "author": "derekareith", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@derekareith/page-view-counter-test-post", - "root_title": "Page View Counter [Test Post]", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 804099, - "author": "jonathan-looman", - "permlink": "hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain", + "body": "\n

I wanted to try one and see if it worked here:

\n


\n
\n

I think that this can be a good statistic to track as it gives you a feel for how many users actually opened your article.  This can help guide authors to work on topics that attract the most views.  Upvotes are nice, but I feel that they don't tell the whole story as far as the level of interest your articles generate.

\n

There are also lurkers who don't have accounts but occasionally check out what's going on here.  This could help to track them as well.

\n

I found some others that require the webpage address, so I will add those in the comments after I post.

\n", + "body_length": 887, + "cashout_time": "2016-10-15T00:25:18", "category": "test", - "title": "What is Steemit?", - "body": "\n

\n", - "json_metadata": "{\"tags\":[\"test\",\"steemit\",\"visions\",\"video\",\"explainer\"],\"image\":[\"https:\\/\\/dl.dropboxusercontent.com\\/u\\/279041\\/visions.tv\\/visions_steemit.png\"],\"links\":[\"https:\\/\\/visions.tv\\/Jonathan\\/nJvNwQVzL6p?autoplay=1\"]}", - "created": "2016-08-30T18:56:54", - "last_update": "2016-08-30T19:03:27", + "children": 18, + "created": "2016-09-13T20:16:00", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 2, - "net_rshares": 64328067686, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/www.hitcounterhtmlcode.com\\/count2.php?id=440360354082326413097\"],\"links\":[\"http:\\/\\/www.hitcounterhtmlcode.com\\/stats.php?id=440360354082326413097\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-30T19:02:24", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.027 HBD", + "last_update": "2016-09-13T20:16:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 138491181744, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.029 HBD", + "percent_steem_dollars": 10000, + "permlink": "page-view-counter-test-post", + "post_id": 943429, "promoted": "0.000 HBD", "replies": [], - "body_length": 216, + "root_title": "Page View Counter [Test Post]", + "title": "Page View Counter [Test Post]", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post" + }, + { "active_votes": [ { - "voter": "jonathan-looman", - "rshares": "363639358", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "363639358", + "voter": "jonathan-looman" }, { - "voter": "nippel66", - "rshares": "12972561232", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "12972561232", + "voter": "nippel66" }, { - "voter": "summerrain", - "rshares": "60593188", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "60593188", + "voter": "summerrain" }, { - "voter": "gomeravibz", - "rshares": "49302305855", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "49302305855", + "voter": "gomeravibz" }, { - "voter": "martaspn", - "rshares": "56802928", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "56802928", + "voter": "martaspn" }, { - "voter": "whatsup", - "rshares": "75704784", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "75704784", + "voter": "whatsup" }, { - "voter": "robotev", - "rshares": "1496460341", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1496460341", + "voter": "robotev" } ], + "author": "jonathan-looman", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@jonathan-looman/hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain", - "root_title": "What is Steemit?", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 654873, - "author": "laonie1", - "permlink": "this-is-a-test", + "body": "\n

\n", + "body_length": 216, + "cashout_time": "2016-09-30T19:02:24", "category": "test", - "title": "This is a test", - "body": "test", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-18T12:51:33", - "last_update": "2016-08-18T12:51:33", + "children": 2, + "created": "2016-08-30T18:56:54", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 0, - "net_rshares": 41461414568, + "json_metadata": "{\"tags\":[\"test\",\"steemit\",\"visions\",\"video\",\"explainer\"],\"image\":[\"https:\\/\\/dl.dropboxusercontent.com\\/u\\/279041\\/visions.tv\\/visions_steemit.png\"],\"links\":[\"https:\\/\\/visions.tv\\/Jonathan\\/nJvNwQVzL6p?autoplay=1\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-18T15:23:33", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.020 HBD", + "last_update": "2016-08-30T19:03:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 64328067686, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.027 HBD", + "percent_steem_dollars": 10000, + "permlink": "hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain", + "post_id": 804099, "promoted": "0.000 HBD", "replies": [], - "body_length": 4, + "root_title": "What is Steemit?", + "title": "What is Steemit?", + "total_payout_value": "0.000 HBD", + "url": "/test/@jonathan-looman/hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain" + }, + { "active_votes": [ { - "voter": "laonie1", - "rshares": "180228664", "percent": "0", - "reputation": 0 + "reputation": 0, + "rshares": "180228664", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "3063861503", "percent": "4300", - "reputation": 0 + "reputation": 0, + "rshares": "3063861503", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "3063834206", "percent": "4300", - "reputation": 0 + "reputation": 0, + "rshares": "3063834206", + "voter": "laonie3" }, { - "voter": "laonie4", - "rshares": "3063616032", "percent": "4300", - "reputation": 0 + "reputation": 0, + "rshares": "3063616032", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "3063594286", "percent": "4300", - "reputation": 0 + "reputation": 0, + "rshares": "3063594286", + "voter": "laonie5" }, { - "voter": "laonie7", - "rshares": "7942123026", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7942123026", + "voter": "laonie7" }, { - "voter": "laonie8", - "rshares": "7031406262", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7031406262", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "7028172275", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7028172275", + "voter": "laonie9" }, { - "voter": "laonie10", - "rshares": "7024578314", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7024578314", + "voter": "laonie10" } ], + "author": "laonie1", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@laonie1/this-is-a-test", - "root_title": "This is a test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 807480, - "author": "gregnie", - "permlink": "test-again", + "body": "test", + "body_length": 4, + "cashout_time": "2016-09-18T15:23:33", "category": "test", - "title": "test again", - "body": "this is a test again.", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-31T00:52:21", - "last_update": "2016-08-31T00:52:21", - "depth": 0, "children": 0, - "net_rshares": 52403036896, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-01T01:58:00", - "total_payout_value": "0.000 HBD", + "created": "2016-08-18T12:51:33", "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.019 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T12:51:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 41461414568, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.020 HBD", + "percent_steem_dollars": 10000, + "permlink": "this-is-a-test", + "post_id": 654873, "promoted": "0.000 HBD", "replies": [], - "body_length": 21, + "root_title": "This is a test", + "title": "This is a test", + "total_payout_value": "0.000 HBD", + "url": "/test/@laonie1/this-is-a-test" + }, + { "active_votes": [ { - "voter": "drinkzya", - "rshares": "34873624275", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "34873624275", + "voter": "drinkzya" }, { - "voter": "laonie1", - "rshares": "1588471883", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1588471883", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "1590320654", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1590320654", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "1590902281", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1590902281", + "voter": "laonie3" }, { - "voter": "laonie4", - "rshares": "1590642190", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1590642190", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "1590567721", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1590567721", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "1590416046", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1590416046", + "voter": "laonie6" }, { - "voter": "laonie7", - "rshares": "1590250709", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1590250709", + "voter": "laonie7" }, { - "voter": "laonie8", - "rshares": "1590083299", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1590083299", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "1589989115", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1589989115", + "voter": "laonie9" }, { - "voter": "gregnie", - "rshares": "62044982", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "62044982", + "voter": "gregnie" }, { - "voter": "laonie10", - "rshares": "1589655616", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1589655616", + "voter": "laonie10" }, { - "voter": "laonie11", - "rshares": "1566068125", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1566068125", + "voter": "laonie11" } ], + "author": "gregnie", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@gregnie/test-again", - "root_title": "test again", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 889524, - "author": "zionuziriel", - "permlink": "kindly-upvote", + "body": "this is a test again.", + "body_length": 21, + "cashout_time": "2016-10-01T01:58:00", "category": "test", - "title": "KINDLY UPVOTE", - "body": "\n

Hello everyone :) Kindly upvote.
\n
\n-Test

\n", - "json_metadata": "{\"tags\":[\"test\",\"upvote\"]}", - "created": "2016-09-08T05:23:21", - "last_update": "2016-09-08T05:23:21", + "children": 0, + "created": "2016-08-31T00:52:21", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 1, - "net_rshares": 69600101439, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-09T06:17:03", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.015 HBD", + "last_update": "2016-08-31T00:52:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 52403036896, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.019 HBD", + "percent_steem_dollars": 10000, + "permlink": "test-again", + "post_id": 807480, "promoted": "0.000 HBD", "replies": [], - "body_length": 69, + "root_title": "test again", + "title": "test again", + "total_payout_value": "0.000 HBD", + "url": "/test/@gregnie/test-again" + }, + { "active_votes": [ { - "voter": "zionuziriel", - "rshares": "63736720", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "63736720", + "voter": "zionuziriel" }, { - "voter": "uziriel", - "rshares": "55929928", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "55929928", + "voter": "uziriel" } ], + "author": "zionuziriel", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@zionuziriel/kindly-upvote", - "root_title": "KINDLY UPVOTE", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 765498, - "author": "feruz", - "permlink": "test-2016827t14139950z", + "body": "\n

Hello everyone :) Kindly upvote.
\n
\n-Test

\n", + "body_length": 69, + "cashout_time": "2016-10-09T06:17:03", "category": "test", - "title": "Test", - "body": "

This is test post with new markdown editor.

​H1

​H2

​H3

​H4

​H5
​H6

​paragraph text

​pre text

​quote text



bold  underline italic stroked 





", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-27T11:13:06", - "last_update": "2016-08-27T11:13:06", - "depth": 0, "children": 1, - "net_rshares": 26057046444, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-27T11:26:12", - "total_payout_value": "0.000 HBD", + "created": "2016-09-08T05:23:21", "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.005 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"test\",\"upvote\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-08T05:23:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 69600101439, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.015 HBD", + "percent_steem_dollars": 10000, + "permlink": "kindly-upvote", + "post_id": 889524, "promoted": "0.000 HBD", "replies": [], - "body_length": 2322, + "root_title": "KINDLY UPVOTE", + "title": "KINDLY UPVOTE", + "total_payout_value": "0.000 HBD", + "url": "/test/@zionuziriel/kindly-upvote" + }, + { "active_votes": [ { - "voter": "good-karma", - "rshares": "26742232944", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "26742232944", + "voter": "good-karma" }, { - "voter": "rkpl", - "rshares": "-800104186", "percent": "-10000", - "reputation": 0 + "reputation": 0, + "rshares": "-800104186", + "voter": "rkpl" }, { - "voter": "sergey44", - "rshares": "114917686", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "114917686", + "voter": "sergey44" } ], + "author": "feruz", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@feruz/test-2016827t14139950z", - "root_title": "Test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 753411, - "author": "feruz", - "permlink": "test-post-2016826t13935375z", + "body": "

This is test post with new markdown editor.

\u200bH1

\u200bH2

\u200bH3

\u200bH4

\u200bH5
\u200bH6

\u200bparagraph text

\u200bpre text

\u200bquote text



bold \u00a0underline italic stroked\u00a0

\u200b

\u200b



", + "body_length": 2322, + "cashout_time": "2016-09-27T11:26:12", "category": "test", - "title": "Test post", - "body": "Testing iOS posting\n\n#### Heading ####\n\nEditing post\n\n# Heading #\n\n", - "json_metadata": "{\"tags\":[\"test\",\"spam\"]}", - "created": "2016-08-26T10:09:39", - "last_update": "2016-08-26T10:10:18", + "children": 1, + "created": "2016-08-27T11:13:06", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 0, - "net_rshares": 24517139679, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-25T22:09:39", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-27T11:13:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 26057046444, + "parent_author": "", + "parent_permlink": "test", "pending_payout_value": "0.005 HBD", + "percent_steem_dollars": 10000, + "permlink": "test-2016827t14139950z", + "post_id": 765498, "promoted": "0.000 HBD", "replies": [], - "body_length": 67, + "root_title": "Test", + "title": "Test", + "total_payout_value": "0.000 HBD", + "url": "/test/@feruz/test-2016827t14139950z" + }, + { "active_votes": [ { - "voter": "good-karma", - "rshares": "24517139679", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "24517139679", + "voter": "good-karma" } ], + "author": "feruz", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@feruz/test-post-2016826t13935375z", - "root_title": "Test post", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 730369, - "author": "feruz", - "permlink": "test-2016824t15279369z", + "body": "Testing iOS posting\n\n#### Heading ####\n\nEditing post\n\n# Heading #\n\n", + "body_length": 67, + "cashout_time": "2016-09-25T22:09:39", "category": "test", - "title": "Test", - "body": "https://www.youtube.com/watch?v=BCXYw6N2nOA\n\n\nhttps://www.youtube.com/watch?v=k70b3MLpz_U\n\n\n\n@good-karma", - "json_metadata": "{\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=BCXYw6N2nOA\",\"https:\\/\\/www.youtube.com\\/watch?v=k70b3MLpz_U\"],\"users\":[\"good-karma\"],\"tags\":[\"test\",\"esteem\"]}", - "created": "2016-08-24T12:27:09", - "last_update": "2016-08-24T12:27:09", + "children": 0, + "created": "2016-08-26T10:09:39", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 1, - "net_rshares": 26891674361, + "json_metadata": "{\"tags\":[\"test\",\"spam\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-24T13:30:03", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-26T10:10:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 24517139679, + "parent_author": "", + "parent_permlink": "test", "pending_payout_value": "0.005 HBD", + "percent_steem_dollars": 10000, + "permlink": "test-post-2016826t13935375z", + "post_id": 753411, "promoted": "0.000 HBD", "replies": [], - "body_length": 104, + "root_title": "Test post", + "title": "Test post", + "total_payout_value": "0.000 HBD", + "url": "/test/@feruz/test-post-2016826t13935375z" + }, + { "active_votes": [ { - "voter": "good-karma", - "rshares": "26728920407", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "26728920407", + "voter": "good-karma" }, { - "voter": "digipzle969", - "rshares": "58699961", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "58699961", + "voter": "digipzle969" }, { - "voter": "f1111111", - "rshares": "51109965", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51109965", + "voter": "f1111111" }, { - "voter": "jbaker585", - "rshares": "52944028", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52944028", + "voter": "jbaker585" } ], + "author": "feruz", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@feruz/test-2016824t15279369z", - "root_title": "Test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 727996, - "author": "feruz", - "permlink": "test-2016824t92740421z", + "body": "https://www.youtube.com/watch?v=BCXYw6N2nOA\n\n\nhttps://www.youtube.com/watch?v=k70b3MLpz_U\n\n\n\n@good-karma", + "body_length": 104, + "cashout_time": "2016-09-24T13:30:03", "category": "test", - "title": "Test", - "body": "Test post\n\n**Bold**\n\n*italic*\n\n# Heading #\n\n Code\n \n* list\n* dfdg\n\n1. number\n2. list\n\n----------\n\n# Heading #\n\n## Heading ##\n\n### Heading ###\n\n#### Heading ####", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-24T06:27:39", - "last_update": "2016-08-24T06:27:39", - "depth": 0, "children": 1, - "net_rshares": 27206441238, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-24T07:18:24", - "total_payout_value": "0.000 HBD", + "created": "2016-08-24T12:27:09", "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=BCXYw6N2nOA\",\"https:\\/\\/www.youtube.com\\/watch?v=k70b3MLpz_U\"],\"users\":[\"good-karma\"],\"tags\":[\"test\",\"esteem\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-24T12:27:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 26891674361, + "parent_author": "", + "parent_permlink": "test", "pending_payout_value": "0.005 HBD", + "percent_steem_dollars": 10000, + "permlink": "test-2016824t15279369z", + "post_id": 730369, "promoted": "0.000 HBD", "replies": [], - "body_length": 166, + "root_title": "Test", + "title": "Test", + "total_payout_value": "0.000 HBD", + "url": "/test/@feruz/test-2016824t15279369z" + }, + { "active_votes": [ { - "voter": "good-karma", - "rshares": "26728969107", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "26728969107", + "voter": "good-karma" }, { - "voter": "whispershaper", - "rshares": "55067873", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "55067873", + "voter": "whispershaper" }, { - "voter": "yggsius", - "rshares": "55052340", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "55052340", + "voter": "yggsius" }, { - "voter": "silaev", - "rshares": "53513538", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "53513538", + "voter": "silaev" }, { - "voter": "f1111111", - "rshares": "50066904", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50066904", + "voter": "f1111111" }, { - "voter": "lapina", - "rshares": "52825802", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52825802", + "voter": "lapina" }, { - "voter": "jannada", - "rshares": "52794919", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52794919", + "voter": "jannada" }, { - "voter": "kamila74", - "rshares": "52732658", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52732658", + "voter": "kamila74" }, { - "voter": "svetabrigadir", - "rshares": "52723574", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52723574", + "voter": "svetabrigadir" }, { - "voter": "zenna", - "rshares": "52694523", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52694523", + "voter": "zenna" } ], + "author": "feruz", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@feruz/test-2016824t92740421z", - "root_title": "Test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 839863, - "author": "str11ngfello", - "permlink": "transaction-signing-a-post-from-steemy-5", + "body": "Test post\n\n**Bold**\n\n*italic*\n\n# Heading #\n\n Code\n \n* list\n* dfdg\n\n1. number\n2. list\n\n----------\n\n# Heading #\n\n## Heading ##\n\n### Heading ###\n\n#### Heading ####", + "body_length": 166, + "cashout_time": "2016-09-24T07:18:24", "category": "test", - "title": "Transaction signing a post from Steemy 5", - "body": "Pardon the intrusion, this is a live test from Steemy for iOS 3 \n http://i.giphy.com/l0HlKylC4U2R1l8vm.gif", - "json_metadata": "{\"category\":\"testing_category\",\"tags\":[\"steemy_testing1\",\"steemy_testing2\"]}", - "created": "2016-09-03T00:07:33", - "last_update": "2016-09-03T00:07:33", + "children": 1, + "created": "2016-08-24T06:27:39", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 0, - "net_rshares": 19069014880, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T12:07:33", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.004 HBD", + "last_update": "2016-08-24T06:27:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 27206441238, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.005 HBD", + "percent_steem_dollars": 10000, + "permlink": "test-2016824t92740421z", + "post_id": 727996, "promoted": "0.000 HBD", "replies": [], - "body_length": 106, + "root_title": "Test", + "title": "Test", + "total_payout_value": "0.000 HBD", + "url": "/test/@feruz/test-2016824t92740421z" + }, + { "active_votes": [ { - "voter": "str11ngfello", - "rshares": "19069014880", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "19069014880", + "voter": "str11ngfello" } ], + "author": "str11ngfello", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@str11ngfello/transaction-signing-a-post-from-steemy-5", - "root_title": "Transaction signing a post from Steemy 5", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 727662, - "author": "libertyism", - "permlink": "6g1sn5-test", + "body": "Pardon the intrusion, this is a live test from Steemy for iOS 3 \n http://i.giphy.com/l0HlKylC4U2R1l8vm.gif", + "body_length": 106, + "cashout_time": "2016-10-03T12:07:33", "category": "test", - "title": "Test", - "body": "\n

425x243px

\n

\n", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/d32113cda0.png\"]}", - "created": "2016-08-24T05:35:27", - "last_update": "2016-08-24T05:35:27", + "children": 0, + "created": "2016-09-03T00:07:33", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 1, - "net_rshares": 17633674353, + "json_metadata": "{\"category\":\"testing_category\",\"tags\":[\"steemy_testing1\",\"steemy_testing2\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-24T05:35:54", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.003 HBD", + "last_update": "2016-09-03T00:07:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 19069014880, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.004 HBD", + "percent_steem_dollars": 10000, + "permlink": "transaction-signing-a-post-from-steemy-5", + "post_id": 839863, "promoted": "0.000 HBD", "replies": [], - "body_length": 113, + "root_title": "Transaction signing a post from Steemy 5", + "title": "Transaction signing a post from Steemy 5", + "total_payout_value": "0.000 HBD", + "url": "/test/@str11ngfello/transaction-signing-a-post-from-steemy-5" + }, + { "active_votes": [ { - "voter": "luminousvisions", - "rshares": "17580966372", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "17580966372", + "voter": "luminousvisions" }, { - "voter": "stas44", - "rshares": "52707981", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52707981", + "voter": "stas44" } ], + "author": "libertyism", "author_reputation": 0, + "beneficiaries": [], + "body": "\n

425x243px

\n

\n", + "body_length": 113, + "cashout_time": "2016-09-24T05:35:54", + "category": "test", + "children": 1, + "created": "2016-08-24T05:35:27", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/d32113cda0.png\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-24T05:35:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 17633674353, "parent_author": "", "parent_permlink": "test", - "url": "/test/@libertyism/6g1sn5-test", + "pending_payout_value": "0.003 HBD", + "percent_steem_dollars": 10000, + "permlink": "6g1sn5-test", + "post_id": 727662, + "promoted": "0.000 HBD", + "replies": [], "root_title": "Test", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "Test", + "total_payout_value": "0.000 HBD", + "url": "/test/@libertyism/6g1sn5-test" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.pat.json index 304d950a..1c0767f0 100644 --- a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.pat.json @@ -1,1836 +1,1836 @@ [ { - "post_id": 727357, - "author": "somebody", - "permlink": "follow-me-please", - "category": "test", - "title": "Follow me please.", - "body": "This post is a trap for robots. So please don't upvote. Just follow me please.\n\n[![](https://steemimg.com/images/2016/08/24/dd8bd8753d16805.gif)](https://steemit.com/@somebody)", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/steemimg.com\\/images\\/2016\\/08\\/24\\/dd8bd8753d16805.gif\"]}", - "created": "2016-08-24T04:49:00", - "last_update": "2016-08-24T04:49:00", - "depth": 0, - "children": 7, - "net_rshares": 860151460398, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-24T05:05:24", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.546 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 176, "active_votes": [ { - "voter": "lee5", - "rshares": "835401856", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "835401856", + "voter": "lee5" }, { - "voter": "noaommerrr", - "rshares": "221000835803", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "221000835803", + "voter": "noaommerrr" }, { - "voter": "akaninyene-etuk", - "rshares": "60049910", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "60049910", + "voter": "akaninyene-etuk" }, { - "voter": "irit", - "rshares": "141944533", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "141944533", + "voter": "irit" }, { - "voter": "hedge-x", - "rshares": "361661182474", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "361661182474", + "voter": "hedge-x" }, { - "voter": "primus", - "rshares": "6648576257", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6648576257", + "voter": "primus" }, { - "voter": "dasha", - "rshares": "7400392900", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7400392900", + "voter": "dasha" }, { - "voter": "lemooljiang", - "rshares": "12001771040", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "12001771040", + "voter": "lemooljiang" }, { - "voter": "michaeldodridge", - "rshares": "9364510234", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "9364510234", + "voter": "michaeldodridge" }, { - "voter": "somebody", - "rshares": "231680157638", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "231680157638", + "voter": "somebody" }, { - "voter": "feelapi", - "rshares": "1520602917", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1520602917", + "voter": "feelapi" }, { - "voter": "future24", - "rshares": "411633883", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "411633883", + "voter": "future24" }, { - "voter": "mione", - "rshares": "3793330400", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3793330400", + "voter": "mione" }, { - "voter": "tomeraddady", - "rshares": "60886073", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "60886073", + "voter": "tomeraddady" }, { - "voter": "abc1621043211", - "rshares": "727760600", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "727760600", + "voter": "abc1621043211" }, { - "voter": "jsantana", - "rshares": "1985606562", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1985606562", + "voter": "jsantana" }, { - "voter": "goriilla", - "rshares": "55763290", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "55763290", + "voter": "goriilla" }, { - "voter": "olakla", - "rshares": "55184850", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "55184850", + "voter": "olakla" }, { - "voter": "cerne", - "rshares": "54993135", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54993135", + "voter": "cerne" }, { - "voter": "rexgrove", - "rshares": "54916164", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54916164", + "voter": "rexgrove" }, { - "voter": "inwoxer", - "rshares": "139924838", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "139924838", + "voter": "inwoxer" }, { - "voter": "f1111111", - "rshares": "50066904", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50066904", + "voter": "f1111111" }, { - "voter": "fluffy", - "rshares": "393193776", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "393193776", + "voter": "fluffy" }, { - "voter": "alexportikul", - "rshares": "52774361", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52774361", + "voter": "alexportikul" } ], + "author": "somebody", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@somebody/follow-me-please", - "root_title": "Follow me please.", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 635639, - "author": "trogdor", - "permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", + "body": "This post is a trap for robots. So please don't upvote. Just follow me please.\n\n[![](https://steemimg.com/images/2016/08/24/dd8bd8753d16805.gif)](https://steemit.com/@somebody)", + "body_length": 176, + "cashout_time": "2016-09-24T05:05:24", "category": "test", - "title": "this is a test to see if i have been targeted by a spam bot army", - "body": "test", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-17T02:00:48", - "last_update": "2016-08-17T02:00:48", + "children": 7, + "created": "2016-08-24T04:49:00", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 19, - "net_rshares": 606977500984, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https://steemimg.com/images/2016/08/24/dd8bd8753d16805.gif\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T02:19:27", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.418 HBD", + "last_update": "2016-08-24T04:49:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 860151460398, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.546 HBD", + "percent_hbd": 10000, + "permlink": "follow-me-please", + "post_id": 962058, "promoted": "0.000 HBD", "replies": [], - "body_length": 4, + "root_title": "Follow me please.", + "title": "Follow me please.", + "total_payout_value": "0.000 HBD", + "url": "/test/@somebody/follow-me-please" + }, + { "active_votes": [ { - "voter": "somedude", - "rshares": "8763619284", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "8763619284", + "voter": "somedude" }, { - "voter": "trogdor", - "rshares": "5564190601", "percent": "0", - "reputation": 0 + "reputation": 0, + "rshares": "5564190601", + "voter": "trogdor" }, { - "voter": "raymonjohnstone", - "rshares": "145380534", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "145380534", + "voter": "raymonjohnstone" }, { - "voter": "pinkisland", - "rshares": "10315786664", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "10315786664", + "voter": "pinkisland" }, { - "voter": "hellokitty", - "rshares": "15008944210", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "15008944210", + "voter": "hellokitty" }, { - "voter": "laonie", - "rshares": "497568302000", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "497568302000", + "voter": "laonie" }, { - "voter": "laonie1", - "rshares": "3778964442", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778964442", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "3778947431", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778947431", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "3778936100", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778936100", + "voter": "laonie3" }, { - "voter": "myfirst", - "rshares": "9118987048", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "9118987048", + "voter": "myfirst" }, { - "voter": "laonie4", - "rshares": "3778614532", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778614532", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "3778602547", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778602547", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "3778594469", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778594469", + "voter": "laonie6" }, { - "voter": "laonie7", - "rshares": "3778571886", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778571886", + "voter": "laonie7" }, { - "voter": "laonie8", - "rshares": "3778554259", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778554259", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "3778533199", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3778533199", + "voter": "laonie9" }, { - "voter": "xiaohui", - "rshares": "18835607987", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "18835607987", + "voter": "xiaohui" }, { - "voter": "laonie10", - "rshares": "3776590554", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3776590554", + "voter": "laonie10" }, { - "voter": "runridefly", - "rshares": "111114608", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "111114608", + "voter": "runridefly" }, { - "voter": "laonie11", - "rshares": "3760658629", "percent": "5000", - "reputation": 0 + "reputation": 0, + "rshares": "3760658629", + "voter": "laonie11" } ], + "author": "trogdor", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", - "root_title": "this is a test to see if i have been targeted by a spam bot army", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 617652, - "author": "stino-san", - "permlink": "test", - "category": "test", - "title": "test", "body": "test", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-15T20:05:21", - "last_update": "2016-08-15T20:05:21", + "body_length": 4, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 19, + "created": "2016-08-17T02:00:48", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 0, - "net_rshares": 307686992811, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-15T20:12:06", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.208 HBD", + "last_update": "2016-08-17T02:00:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 606977500984, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.418 HBD", + "percent_hbd": 10000, + "permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army", + "post_id": 845453, "promoted": "0.000 HBD", "replies": [], - "body_length": 4, + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "this is a test to see if i have been targeted by a spam bot army", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army" + }, + { "active_votes": [ { - "voter": "stino-san", - "rshares": "228145849379", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "228145849379", + "voter": "stino-san" }, { - "voter": "fuck.off", - "rshares": "5007214192", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5007214192", + "voter": "fuck.off" }, { - "voter": "iloveporn", - "rshares": "6821297816", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6821297816", + "voter": "iloveporn" }, { - "voter": "the.bot", - "rshares": "2438027091", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2438027091", + "voter": "the.bot" }, { - "voter": "johnbradshaw", - "rshares": "8295473589", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "8295473589", + "voter": "johnbradshaw" }, { - "voter": "the.whale", - "rshares": "5785438356", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5785438356", + "voter": "the.whale" }, { - "voter": "unicornfarts", - "rshares": "5481884026", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5481884026", + "voter": "unicornfarts" }, { - "voter": "vote", - "rshares": "5785920904", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5785920904", + "voter": "vote" }, { - "voter": "kissmybutt", - "rshares": "6091743832", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6091743832", + "voter": "kissmybutt" }, { - "voter": "aaseb", - "rshares": "13280342528", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "13280342528", + "voter": "aaseb" }, { - "voter": "michaeldodridge", - "rshares": "6322307995", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6322307995", + "voter": "michaeldodridge" }, { - "voter": "kukuy", - "rshares": "111797071", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "111797071", + "voter": "kukuy" }, { - "voter": "thedon", - "rshares": "1010597496", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1010597496", + "voter": "thedon" }, { - "voter": "thebotkiller", - "rshares": "11316597740", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "11316597740", + "voter": "thebotkiller" }, { - "voter": "jimmytwoshoes", - "rshares": "283790428", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "283790428", + "voter": "jimmytwoshoes" }, { - "voter": "jackgallenhall", - "rshares": "1455898140", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1455898140", + "voter": "jackgallenhall" }, { - "voter": "reddtie", - "rshares": "52812228", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52812228", + "voter": "reddtie" } ], + "author": "stino-san", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@stino-san/test", - "root_title": "test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 763215, - "author": "stino-san", - "permlink": "46vbbv-test", - "category": "test", - "title": "test", "body": "test", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-27T04:46:51", - "last_update": "2016-08-27T04:46:51", + "body_length": 4, + "cashout_time": "2016-09-15T20:12:06", + "category": "test", + "children": 0, + "created": "2016-08-15T20:05:21", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 4, - "net_rshares": 275726168458, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-27T04:52:36", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.151 HBD", + "last_update": "2016-08-15T20:05:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 307686992811, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.208 HBD", + "percent_hbd": 10000, + "permlink": "test", + "post_id": 822640, "promoted": "0.000 HBD", "replies": [], - "body_length": 4, - "active_votes": [ - { - "voter": "stino-san", - "rshares": "225913748267", + "root_title": "test", + "title": "test", + "total_payout_value": "0.000 HBD", + "url": "/test/@stino-san/test" + }, + { + "active_votes": [ + { "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "225913748267", + "voter": "stino-san" }, { - "voter": "fuck.off", - "rshares": "4936121677", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "4936121677", + "voter": "fuck.off" }, { - "voter": "the.bot", - "rshares": "2248064175", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2248064175", + "voter": "the.bot" }, { - "voter": "johnbradshaw", - "rshares": "8179524007", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "8179524007", + "voter": "johnbradshaw" }, { - "voter": "arcaneinfo", - "rshares": "5469062752", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5469062752", + "voter": "arcaneinfo" }, { - "voter": "the.whale", - "rshares": "5704244958", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5704244958", + "voter": "the.whale" }, { - "voter": "vote", - "rshares": "5583423314", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5583423314", + "voter": "vote" }, { - "voter": "kissmybutt", - "rshares": "6007072255", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6007072255", + "voter": "kissmybutt" }, { - "voter": "nicoleta", - "rshares": "67820011", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "67820011", + "voter": "nicoleta" }, { - "voter": "thebotkiller", - "rshares": "10924517278", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "10924517278", + "voter": "thebotkiller" }, { - "voter": "jimmytwoshoes", - "rshares": "267235062", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "267235062", + "voter": "jimmytwoshoes" }, { - "voter": "rucoin", - "rshares": "425334702", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "425334702", + "voter": "rucoin" } ], + "author": "stino-san", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@stino-san/46vbbv-test", - "root_title": "test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 858881, - "author": "ace108", - "permlink": "test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want", + "body": "test", + "body_length": 4, + "cashout_time": "2016-09-27T04:52:36", "category": "test", - "title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", - "body": "\n

\"Follow@bullionstackers.gif\"
\n
\nImage Link

\n", - "json_metadata": "{\"tags\":[\"test\",\"testbyace10\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/05\\/Followbullionstackers320e51da.gif\"],\"links\":[\"https:\\/\\/www.steemimg.com\\/image\\/7tV3J\"]}", - "created": "2016-09-05T02:59:36", - "last_update": "2016-09-05T03:18:39", + "children": 4, + "created": "2016-08-27T04:46:51", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 3, - "net_rshares": 257677398121, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-06T04:18:33", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.082 HBD", + "last_update": "2016-08-27T04:46:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 275726168458, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.151 HBD", + "percent_hbd": 10000, + "permlink": "46vbbv-test", + "post_id": 1008749, "promoted": "0.000 HBD", "replies": [], - "body_length": 240, + "root_title": "test", + "title": "test", + "total_payout_value": "0.000 HBD", + "url": "/test/@stino-san/46vbbv-test" + }, + { "active_votes": [ { - "voter": "tcfxyz", - "rshares": "24991140368", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "24991140368", + "voter": "tcfxyz" }, { - "voter": "futurefood", - "rshares": "6923304252", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6923304252", + "voter": "futurefood" }, { - "voter": "rea", - "rshares": "79040067029", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "79040067029", + "voter": "rea" }, { - "voter": "pinkisland", - "rshares": "23010056511", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "23010056511", + "voter": "pinkisland" }, { - "voter": "bullionstackers", - "rshares": "1854087037", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1854087037", + "voter": "bullionstackers" }, { - "voter": "twinner", - "rshares": "121858742924", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "121858742924", + "voter": "twinner" } ], + "author": "ace108", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want", - "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 928651, - "author": "royaltiffany", - "permlink": "test", + "body": "\n

\"Follow@bullionstackers.gif\"
\n
\nImage Link

\n", + "body_length": 240, + "cashout_time": "2016-10-06T04:18:33", "category": "test", - "title": "Test", - "body": "Please do not upvote...\n\n
http://designwebkit.com/wp-content/uploads/2013/09/how-test-logo-design-thumb.jpg\n
Source
", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/designwebkit.com\\/wp-content\\/uploads\\/2013\\/09\\/how-test-logo-design-thumb.jpg\"],\"links\":[\"http:\\/\\/designwebkit.com\\/web-and-trends\\/how-professional-tests-finalizes-logo-design\\/\"]}", - "created": "2016-09-12T07:38:09", - "last_update": "2016-09-12T07:38:09", + "children": 3, + "created": "2016-09-05T02:59:36", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 6, - "net_rshares": 230967859053, + "json_metadata": "{\"tags\":[\"test\",\"testbyace10\"],\"image\":[\"https://www.steemimg.com/images/2016/09/05/Followbullionstackers320e51da.gif\"],\"links\":[\"https://www.steemimg.com/image/7tV3J\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-14T01:42:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.055 HBD", + "last_update": "2016-09-05T03:18:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 257677398121, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.082 HBD", + "percent_hbd": 10000, + "permlink": "test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want", + "post_id": 1129483, "promoted": "0.000 HBD", "replies": [], - "body_length": 250, + "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", + "title": "Test post for follow gif - nothing in here interesting but by all means vote if you want", + "total_payout_value": "0.000 HBD", + "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want" + }, + { "active_votes": [ { - "voter": "woo7739", - "rshares": "7861629418", "percent": "100", - "reputation": 0 + "reputation": 0, + "rshares": "7861629418", + "voter": "woo7739" }, { - "voter": "dragonslayer109", - "rshares": "206209970416", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "206209970416", + "voter": "dragonslayer109" }, { - "voter": "rawlzsec", - "rshares": "3649598360", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3649598360", + "voter": "rawlzsec" }, { - "voter": "michaellamden68", - "rshares": "3509996730", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3509996730", + "voter": "michaellamden68" }, { - "voter": "bitcoiner", - "rshares": "6300267620", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6300267620", + "voter": "bitcoiner" }, { - "voter": "metaflute", - "rshares": "1305753906", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1305753906", + "voter": "metaflute" }, { - "voter": "usb", - "rshares": "840098241", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "840098241", + "voter": "usb" }, { - "voter": "mrlogic", - "rshares": "192321224", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "192321224", + "voter": "mrlogic" }, { - "voter": "ppan08162016", - "rshares": "54457374", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54457374", + "voter": "ppan08162016" }, { - "voter": "anasz", - "rshares": "1043765764", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1043765764", + "voter": "anasz" } ], + "author": "royaltiffany", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@royaltiffany/test", - "root_title": "Test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 641664, - "author": "rubenalexander", - "permlink": "800px-box-crop-test-test-post-please-ignore", + "body": "Please do not upvote...\n\n
http://designwebkit.com/wp-content/uploads/2013/09/how-test-logo-design-thumb.jpg\n
Source
", + "body_length": 250, + "cashout_time": "2016-10-14T01:42:18", "category": "test", - "title": "800px box, crop test [Test Post Please Ignore]", - "body": "
\n\nI noticed that in the list view of all posts, my main images were being cropped. It didn't seem to be a clean scale, or a centered crop, so I created an image to try to determine where the crop occured in the image.\n\nI need to run more tests, but with an 800px x 800px image:\n- The crop occurs around 60 pixels from the top and ends around 280 pixels from the bottom. \n- The crop box dimension 800 pixels wide by 455 pixels high.", - "json_metadata": "{\"tags\":[\"test\",\"crop\",\"image\"],\"image\":[\"http:\\/\\/i.imgur.com\\/GK1SyaR.png\"]}", - "created": "2016-08-17T14:05:27", - "last_update": "2016-08-17T14:20:57", + "children": 6, + "created": "2016-09-12T07:38:09", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 1, - "net_rshares": 84134603688, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http://designwebkit.com/wp-content/uploads/2013/09/how-test-logo-design-thumb.jpg\"],\"links\":[\"http://designwebkit.com/web-and-trends/how-professional-tests-finalizes-logo-design/\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-17T16:24:15", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.051 HBD", + "last_update": "2016-09-12T07:38:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 230967859053, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.055 HBD", + "percent_hbd": 10000, + "permlink": "test", + "post_id": 1217392, "promoted": "0.000 HBD", "replies": [], - "body_length": 490, + "root_title": "Test", + "title": "Test", + "total_payout_value": "0.000 HBD", + "url": "/test/@royaltiffany/test" + }, + { "active_votes": [ { - "voter": "proctologic", - "rshares": "10220864268", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "10220864268", + "voter": "proctologic" }, { - "voter": "digi3d", - "rshares": "258954801", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "258954801", + "voter": "digi3d" }, { - "voter": "discombobulated", - "rshares": "65562670577", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "65562670577", + "voter": "discombobulated" }, { - "voter": "kurtbeil", - "rshares": "6668122973", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "6668122973", + "voter": "kurtbeil" }, { - "voter": "mndstruct", - "rshares": "67570327", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "67570327", + "voter": "mndstruct" }, { - "voter": "rubenalexander", - "rshares": "1245304003", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1245304003", + "voter": "rubenalexander" }, { - "voter": "runridefly", - "rshares": "111116739", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "111116739", + "voter": "runridefly" } ], + "author": "rubenalexander", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@rubenalexander/800px-box-crop-test-test-post-please-ignore", - "root_title": "800px box, crop test [Test Post Please Ignore]", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 745478, - "author": "venuspcs", - "permlink": "2kruc4-test", + "body": "
\n\nI noticed that in the list view of all posts, my main images were being cropped. It didn't seem to be a clean scale, or a centered crop, so I created an image to try to determine where the crop occured in the image.\n\nI need to run more tests, but with an 800px x 800px image:\n- The crop occurs around 60 pixels from the top and ends around 280 pixels from the bottom. \n- The crop box dimension 800 pixels wide by 455 pixels high.", + "body_length": 490, + "cashout_time": "2016-09-17T16:24:15", "category": "test", - "title": "Test", - "body": "Testing to see if posting is working again.", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-25T18:14:33", - "last_update": "2016-08-25T18:14:33", - "depth": 0, "children": 1, - "net_rshares": 72263112386, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-25T18:50:09", - "total_payout_value": "0.000 HBD", + "created": "2016-08-17T14:05:27", "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.037 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"test\",\"crop\",\"image\"],\"image\":[\"http://i.imgur.com/GK1SyaR.png\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T14:20:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 84134603688, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.051 HBD", + "percent_hbd": 10000, + "permlink": "800px-box-crop-test-test-post-please-ignore", + "post_id": 853008, "promoted": "0.000 HBD", "replies": [], - "body_length": 43, + "root_title": "800px box, crop test [Test Post Please Ignore]", + "title": "800px box, crop test [Test Post Please Ignore]", + "total_payout_value": "0.000 HBD", + "url": "/test/@rubenalexander/800px-box-crop-test-test-post-please-ignore" + }, + { "active_votes": [ { - "voter": "venuspcs", - "rshares": "69552358699", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "69552358699", + "voter": "venuspcs" }, { - "voter": "bitland", - "rshares": "2058287307", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2058287307", + "voter": "bitland" }, { - "voter": "runridefly", - "rshares": "495165648", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "495165648", + "voter": "runridefly" }, { - "voter": "analyzethis", - "rshares": "50931848", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50931848", + "voter": "analyzethis" }, { - "voter": "rb3coins", - "rshares": "53222151", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "53222151", + "voter": "rb3coins" }, { - "voter": "vsmith08162016", - "rshares": "53146733", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "53146733", + "voter": "vsmith08162016" } ], + "author": "venuspcs", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@venuspcs/2kruc4-test", - "root_title": "Test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 829308, - "author": "asch", - "permlink": "4bh3kx-test", + "body": "Testing to see if posting is working again.", + "body_length": 43, + "cashout_time": "2016-09-25T18:50:09", "category": "test", - "title": "Change request for steemit: allow posts to be hidden by author", - "body": "Would be nice if an author could flag his/her own post so that it can be hidden from the steemit.com blog pages.\n\nhttps://ipfs.pics/ipfs/QmVP5ebRFZ38f7h3k8Vq3cbRcsGBDyZBCqTLtB3GjYFobi", - "json_metadata": "{\"tags\":[\"test\",\"steemit\"],\"image\":[\"https:\\/\\/ipfs.pics\\/ipfs\\/QmVP5ebRFZ38f7h3k8Vq3cbRcsGBDyZBCqTLtB3GjYFobi\"]}", - "created": "2016-09-01T23:31:36", - "last_update": "2016-09-02T00:02:21", + "children": 1, + "created": "2016-08-25T18:14:33", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 2, - "net_rshares": 92401268815, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T00:20:39", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.033 HBD", + "last_update": "2016-08-25T18:14:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 72263112386, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.037 HBD", + "percent_hbd": 10000, + "permlink": "2kruc4-test", + "post_id": 985089, "promoted": "0.000 HBD", "replies": [], - "body_length": 183, + "root_title": "Test", + "title": "Test", + "total_payout_value": "0.000 HBD", + "url": "/test/@venuspcs/2kruc4-test" + }, + { "active_votes": [ { - "voter": "richman", - "rshares": "13053504107", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "13053504107", + "voter": "richman" }, { - "voter": "asch", - "rshares": "68346947255", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "68346947255", + "voter": "asch" }, { - "voter": "happyphoenix", - "rshares": "897343674", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "897343674", + "voter": "happyphoenix" }, { - "voter": "goose", - "rshares": "8842903950", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "8842903950", + "voter": "goose" }, { - "voter": "rb3coins", - "rshares": "53222151", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "53222151", + "voter": "rb3coins" }, { - "voter": "billkappa442", - "rshares": "51240567", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51240567", + "voter": "billkappa442" }, { - "voter": "glassheart", - "rshares": "51235131", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51235131", + "voter": "glassheart" }, { - "voter": "dragonice", - "rshares": "51232949", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51232949", + "voter": "dragonice" }, { - "voter": "steemq", - "rshares": "51230296", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51230296", + "voter": "steemq" }, { - "voter": "battalar", - "rshares": "51227561", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51227561", + "voter": "battalar" }, { - "voter": "weare", - "rshares": "51218466", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51218466", + "voter": "weare" }, { - "voter": "deli", - "rshares": "51215236", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51215236", + "voter": "deli" }, { - "voter": "slow", - "rshares": "51141851", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51141851", + "voter": "slow" }, { - "voter": "oxygen", - "rshares": "50907857", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50907857", + "voter": "oxygen" }, { - "voter": "cyan", - "rshares": "50875769", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50875769", + "voter": "cyan" }, { - "voter": "palladium", - "rshares": "50873654", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50873654", + "voter": "palladium" }, { - "voter": "motion", - "rshares": "50871059", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50871059", + "voter": "motion" }, { - "voter": "sting", - "rshares": "50865840", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50865840", + "voter": "sting" }, { - "voter": "breeze", - "rshares": "50798322", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50798322", + "voter": "breeze" }, { - "voter": "autodesk", - "rshares": "50794039", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50794039", + "voter": "autodesk" }, { - "voter": "ziggo", - "rshares": "50570250", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50570250", + "voter": "ziggo" }, { - "voter": "friends", - "rshares": "50532230", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50532230", + "voter": "friends" }, { - "voter": "connect", - "rshares": "50484452", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50484452", + "voter": "connect" }, { - "voter": "sunlight", - "rshares": "50479027", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50479027", + "voter": "sunlight" }, { - "voter": "letstalkliberty", - "rshares": "239553122", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "239553122", + "voter": "letstalkliberty" } ], + "author": "asch", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@asch/4bh3kx-test", - "root_title": "Change request for steemit: allow posts to be hidden by author", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 943429, - "author": "derekareith", - "permlink": "page-view-counter-test-post", + "body": "Would be nice if an author could flag his/her own post so that it can be hidden from the steemit.com blog pages.\n\nhttps://ipfs.pics/ipfs/QmVP5ebRFZ38f7h3k8Vq3cbRcsGBDyZBCqTLtB3GjYFobi", + "body_length": 183, + "cashout_time": "2016-10-03T00:20:39", "category": "test", - "title": "Page View Counter [Test Post]", - "body": "\n

I wanted to try one and see if it worked here:

\n


\n
\n

I think that this can be a good statistic to track as it gives you a feel for how many users actually opened your article.  This can help guide authors to work on topics that attract the most views.  Upvotes are nice, but I feel that they don't tell the whole story as far as the level of interest your articles generate.

\n

There are also lurkers who don't have accounts but occasionally check out what's going on here.  This could help to track them as well.

\n

I found some others that require the webpage address, so I will add those in the comments after I post.

\n", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/www.hitcounterhtmlcode.com\\/count2.php?id=440360354082326413097\"],\"links\":[\"http:\\/\\/www.hitcounterhtmlcode.com\\/stats.php?id=440360354082326413097\"]}", - "created": "2016-09-13T20:16:00", - "last_update": "2016-09-13T20:16:00", + "children": 2, + "created": "2016-09-01T23:31:36", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 18, - "net_rshares": 138491181744, + "json_metadata": "{\"tags\":[\"test\",\"steemit\"],\"image\":[\"https://ipfs.pics/ipfs/QmVP5ebRFZ38f7h3k8Vq3cbRcsGBDyZBCqTLtB3GjYFobi\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-15T00:25:18", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.029 HBD", + "last_update": "2016-09-02T00:02:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 92401268815, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.033 HBD", + "percent_hbd": 10000, + "permlink": "4bh3kx-test", + "post_id": 1091922, "promoted": "0.000 HBD", "replies": [], - "body_length": 887, + "root_title": "Change request for steemit: allow posts to be hidden by author", + "title": "Change request for steemit: allow posts to be hidden by author", + "total_payout_value": "0.000 HBD", + "url": "/test/@asch/4bh3kx-test" + }, + { "active_votes": [ { - "voter": "richman", - "rshares": "7800265111", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7800265111", + "voter": "richman" }, { - "voter": "jerome-colley", - "rshares": "9647209204", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "9647209204", + "voter": "jerome-colley" }, { - "voter": "steemswede", - "rshares": "2182262521", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2182262521", + "voter": "steemswede" }, { - "voter": "derekareith", - "rshares": "3857214813", "percent": "0", - "reputation": 0 + "reputation": 0, + "rshares": "3857214813", + "voter": "derekareith" }, { - "voter": "rxhector", - "rshares": "734052546", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "734052546", + "voter": "rxhector" }, { - "voter": "cynetyc", - "rshares": "113270416", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "113270416", + "voter": "cynetyc" }, { - "voter": "jbouchard12", - "rshares": "3309065147", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3309065147", + "voter": "jbouchard12" }, { - "voter": "bitcoiner", - "rshares": "5534121085", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5534121085", + "voter": "bitcoiner" }, { - "voter": "sergey44", - "rshares": "77156992", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "77156992", + "voter": "sergey44" }, { - "voter": "karenb54", - "rshares": "514947462", "percent": "1000", - "reputation": 0 + "reputation": 0, + "rshares": "514947462", + "voter": "karenb54" }, { - "voter": "anotherjoe", - "rshares": "91627251937", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "91627251937", + "voter": "anotherjoe" }, { - "voter": "the-bitcoin-dood", - "rshares": "1181902434", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1181902434", + "voter": "the-bitcoin-dood" }, { - "voter": "elissahawke", - "rshares": "10384598371", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "10384598371", + "voter": "elissahawke" }, { - "voter": "wuyueling", - "rshares": "413323439", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "413323439", + "voter": "wuyueling" }, { - "voter": "roadhog", - "rshares": "52910800", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52910800", + "voter": "roadhog" }, { - "voter": "doggnostic", - "rshares": "50639382", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50639382", + "voter": "doggnostic" }, { - "voter": "jenny-talls", - "rshares": "50377764", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50377764", + "voter": "jenny-talls" }, { - "voter": "post-successful", - "rshares": "51278775", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51278775", + "voter": "post-successful" }, { - "voter": "freebornangel", - "rshares": "60293991", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "60293991", + "voter": "freebornangel" }, { - "voter": "jbaker585", - "rshares": "849039554", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "849039554", + "voter": "jbaker585" } ], + "author": "derekareith", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@derekareith/page-view-counter-test-post", - "root_title": "Page View Counter [Test Post]", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 804099, - "author": "jonathan-looman", - "permlink": "hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain", + "body": "\n

I wanted to try one and see if it worked here:

\n


\n
\n

I think that this can be a good statistic to track as it gives you a feel for how many users actually opened your article.  This can help guide authors to work on topics that attract the most views.  Upvotes are nice, but I feel that they don't tell the whole story as far as the level of interest your articles generate.

\n

There are also lurkers who don't have accounts but occasionally check out what's going on here.  This could help to track them as well.

\n

I found some others that require the webpage address, so I will add those in the comments after I post.

\n", + "body_length": 887, + "cashout_time": "2016-10-15T00:25:18", "category": "test", - "title": "What is Steemit?", - "body": "\n

\n", - "json_metadata": "{\"tags\":[\"test\",\"steemit\",\"visions\",\"video\",\"explainer\"],\"image\":[\"https:\\/\\/dl.dropboxusercontent.com\\/u\\/279041\\/visions.tv\\/visions_steemit.png\"],\"links\":[\"https:\\/\\/visions.tv\\/Jonathan\\/nJvNwQVzL6p?autoplay=1\"]}", - "created": "2016-08-30T18:56:54", - "last_update": "2016-08-30T19:03:27", + "children": 18, + "created": "2016-09-13T20:16:00", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 2, - "net_rshares": 64328067686, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http://www.hitcounterhtmlcode.com/count2.php?id=440360354082326413097\"],\"links\":[\"http://www.hitcounterhtmlcode.com/stats.php?id=440360354082326413097\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-30T19:02:24", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.027 HBD", + "last_update": "2016-09-13T20:16:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 138491181744, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.029 HBD", + "percent_hbd": 10000, + "permlink": "page-view-counter-test-post", + "post_id": 1235812, "promoted": "0.000 HBD", "replies": [], - "body_length": 216, + "root_title": "Page View Counter [Test Post]", + "title": "Page View Counter [Test Post]", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post" + }, + { "active_votes": [ { - "voter": "jonathan-looman", - "rshares": "363639358", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "363639358", + "voter": "jonathan-looman" }, { - "voter": "nippel66", - "rshares": "12972561232", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "12972561232", + "voter": "nippel66" }, { - "voter": "summerrain", - "rshares": "60593188", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "60593188", + "voter": "summerrain" }, { - "voter": "gomeravibz", - "rshares": "49302305855", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "49302305855", + "voter": "gomeravibz" }, { - "voter": "martaspn", - "rshares": "56802928", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "56802928", + "voter": "martaspn" }, { - "voter": "whatsup", - "rshares": "75704784", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "75704784", + "voter": "whatsup" }, { - "voter": "robotev", - "rshares": "1496460341", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1496460341", + "voter": "robotev" } ], + "author": "jonathan-looman", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@jonathan-looman/hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain", - "root_title": "What is Steemit?", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 654873, - "author": "laonie1", - "permlink": "this-is-a-test", + "body": "\n

\n", + "body_length": 216, + "cashout_time": "2016-09-30T19:02:24", "category": "test", - "title": "This is a test", - "body": "test", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-18T12:51:33", - "last_update": "2016-08-18T12:51:33", + "children": 2, + "created": "2016-08-30T18:56:54", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 0, - "net_rshares": 41461414568, + "json_metadata": "{\"tags\":[\"test\",\"steemit\",\"visions\",\"video\",\"explainer\"],\"image\":[\"https://dl.dropboxusercontent.com/u/279041/visions.tv/visions_steemit.png\"],\"links\":[\"https://visions.tv/Jonathan/nJvNwQVzL6p?autoplay=1\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-18T15:23:33", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.020 HBD", + "last_update": "2016-08-30T19:03:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 64328067686, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.027 HBD", + "percent_hbd": 10000, + "permlink": "hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain", + "post_id": 1059995, "promoted": "0.000 HBD", "replies": [], - "body_length": 4, + "root_title": "What is Steemit?", + "title": "What is Steemit?", + "total_payout_value": "0.000 HBD", + "url": "/test/@jonathan-looman/hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain" + }, + { "active_votes": [ { - "voter": "laonie1", - "rshares": "180228664", "percent": "0", - "reputation": 0 + "reputation": 0, + "rshares": "180228664", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "3063861503", "percent": "4300", - "reputation": 0 + "reputation": 0, + "rshares": "3063861503", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "3063834206", "percent": "4300", - "reputation": 0 + "reputation": 0, + "rshares": "3063834206", + "voter": "laonie3" }, { - "voter": "laonie4", - "rshares": "3063616032", "percent": "4300", - "reputation": 0 + "reputation": 0, + "rshares": "3063616032", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "3063594286", "percent": "4300", - "reputation": 0 + "reputation": 0, + "rshares": "3063594286", + "voter": "laonie5" }, { - "voter": "laonie7", - "rshares": "7942123026", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7942123026", + "voter": "laonie7" }, { - "voter": "laonie8", - "rshares": "7031406262", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7031406262", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "7028172275", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7028172275", + "voter": "laonie9" }, { - "voter": "laonie10", - "rshares": "7024578314", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7024578314", + "voter": "laonie10" } ], + "author": "laonie1", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@laonie1/this-is-a-test", - "root_title": "This is a test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 807480, - "author": "gregnie", - "permlink": "test-again", + "body": "test", + "body_length": 4, + "cashout_time": "2016-09-18T15:23:33", "category": "test", - "title": "test again", - "body": "this is a test again.", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-31T00:52:21", - "last_update": "2016-08-31T00:52:21", - "depth": 0, "children": 0, - "net_rshares": 52403036896, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-01T01:58:00", - "total_payout_value": "0.000 HBD", + "created": "2016-08-18T12:51:33", "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.019 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T12:51:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 41461414568, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.020 HBD", + "percent_hbd": 10000, + "permlink": "this-is-a-test", + "post_id": 869974, "promoted": "0.000 HBD", "replies": [], - "body_length": 21, + "root_title": "This is a test", + "title": "This is a test", + "total_payout_value": "0.000 HBD", + "url": "/test/@laonie1/this-is-a-test" + }, + { "active_votes": [ { - "voter": "drinkzya", - "rshares": "34873624275", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "34873624275", + "voter": "drinkzya" }, { - "voter": "laonie1", - "rshares": "1588471883", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1588471883", + "voter": "laonie1" }, { - "voter": "laonie2", - "rshares": "1590320654", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1590320654", + "voter": "laonie2" }, { - "voter": "laonie3", - "rshares": "1590902281", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1590902281", + "voter": "laonie3" }, { - "voter": "laonie4", - "rshares": "1590642190", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1590642190", + "voter": "laonie4" }, { - "voter": "laonie5", - "rshares": "1590567721", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1590567721", + "voter": "laonie5" }, { - "voter": "laonie6", - "rshares": "1590416046", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1590416046", + "voter": "laonie6" }, { - "voter": "laonie7", - "rshares": "1590250709", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1590250709", + "voter": "laonie7" }, { - "voter": "laonie8", - "rshares": "1590083299", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1590083299", + "voter": "laonie8" }, { - "voter": "laonie9", - "rshares": "1589989115", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1589989115", + "voter": "laonie9" }, { - "voter": "gregnie", - "rshares": "62044982", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "62044982", + "voter": "gregnie" }, { - "voter": "laonie10", - "rshares": "1589655616", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1589655616", + "voter": "laonie10" }, { - "voter": "laonie11", - "rshares": "1566068125", "percent": "500", - "reputation": 0 + "reputation": 0, + "rshares": "1566068125", + "voter": "laonie11" } ], + "author": "gregnie", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@gregnie/test-again", - "root_title": "test again", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 889524, - "author": "zionuziriel", - "permlink": "kindly-upvote", + "body": "this is a test again.", + "body_length": 21, + "cashout_time": "2016-10-01T01:58:00", "category": "test", - "title": "KINDLY UPVOTE", - "body": "\n

Hello everyone :) Kindly upvote.
\n
\n-Test

\n", - "json_metadata": "{\"tags\":[\"test\",\"upvote\"]}", - "created": "2016-09-08T05:23:21", - "last_update": "2016-09-08T05:23:21", + "children": 0, + "created": "2016-08-31T00:52:21", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 1, - "net_rshares": 69600101439, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-09T06:17:03", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.015 HBD", + "last_update": "2016-08-31T00:52:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 52403036896, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.019 HBD", + "percent_hbd": 10000, + "permlink": "test-again", + "post_id": 1064399, "promoted": "0.000 HBD", "replies": [], - "body_length": 69, + "root_title": "test again", + "title": "test again", + "total_payout_value": "0.000 HBD", + "url": "/test/@gregnie/test-again" + }, + { "active_votes": [ { - "voter": "zionuziriel", - "rshares": "63736720", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "63736720", + "voter": "zionuziriel" }, { - "voter": "uziriel", - "rshares": "55929928", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "55929928", + "voter": "uziriel" } ], + "author": "zionuziriel", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@zionuziriel/kindly-upvote", - "root_title": "KINDLY UPVOTE", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 765498, - "author": "feruz", - "permlink": "test-2016827t14139950z", + "body": "\n

Hello everyone :) Kindly upvote.
\n
\n-Test

\n", + "body_length": 69, + "cashout_time": "2016-10-09T06:17:03", "category": "test", - "title": "Test", - "body": "

This is test post with new markdown editor.

​H1

​H2

​H3

​H4

​H5
​H6

​paragraph text

​pre text

​quote text



bold  underline italic stroked 





", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-27T11:13:06", - "last_update": "2016-08-27T11:13:06", - "depth": 0, "children": 1, - "net_rshares": 26057046444, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-27T11:26:12", - "total_payout_value": "0.000 HBD", + "created": "2016-09-08T05:23:21", "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.005 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"test\",\"upvote\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-08T05:23:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 69600101439, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.015 HBD", + "percent_hbd": 10000, + "permlink": "kindly-upvote", + "post_id": 889524, "promoted": "0.000 HBD", "replies": [], - "body_length": 2322, + "root_title": "KINDLY UPVOTE", + "title": "KINDLY UPVOTE", + "total_payout_value": "0.000 HBD", + "url": "/test/@zionuziriel/kindly-upvote" + }, + { "active_votes": [ { - "voter": "good-karma", - "rshares": "26742232944", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "26742232944", + "voter": "good-karma" }, { - "voter": "rkpl", - "rshares": "-800104186", "percent": "-10000", - "reputation": 0 + "reputation": 0, + "rshares": "-800104186", + "voter": "rkpl" }, { - "voter": "sergey44", - "rshares": "114917686", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "114917686", + "voter": "sergey44" } ], + "author": "feruz", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@feruz/test-2016827t14139950z", - "root_title": "Test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 753411, - "author": "feruz", - "permlink": "test-post-2016826t13935375z", + "body": "

This is test post with new markdown editor.

\u200bH1

\u200bH2

\u200bH3

\u200bH4

\u200bH5
\u200bH6

\u200bparagraph text

\u200bpre text

\u200bquote text



bold \u00a0underline italic stroked\u00a0

\u200b

\u200b



", + "body_length": 2322, + "cashout_time": "2016-09-27T11:26:12", "category": "test", - "title": "Test post", - "body": "Testing iOS posting\n\n#### Heading ####\n\nEditing post\n\n# Heading #\n\n", - "json_metadata": "{\"tags\":[\"test\",\"spam\"]}", - "created": "2016-08-26T10:09:39", - "last_update": "2016-08-26T10:10:18", + "children": 1, + "created": "2016-08-27T11:13:06", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 0, - "net_rshares": 24517139679, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-25T22:09:39", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-27T11:13:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 26057046444, + "parent_author": "", + "parent_permlink": "test", "pending_payout_value": "0.005 HBD", + "percent_hbd": 10000, + "permlink": "test-2016827t14139950z", + "post_id": 765498, "promoted": "0.000 HBD", "replies": [], - "body_length": 67, + "root_title": "Test", + "title": "Test", + "total_payout_value": "0.000 HBD", + "url": "/test/@feruz/test-2016827t14139950z" + }, + { "active_votes": [ { - "voter": "good-karma", - "rshares": "24517139679", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "24517139679", + "voter": "good-karma" } ], + "author": "feruz", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@feruz/test-post-2016826t13935375z", - "root_title": "Test post", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 730369, - "author": "feruz", - "permlink": "test-2016824t15279369z", + "body": "Testing iOS posting\n\n#### Heading ####\n\nEditing post\n\n# Heading #\n\n", + "body_length": 67, + "cashout_time": "2016-09-25T22:09:39", "category": "test", - "title": "Test", - "body": "https://www.youtube.com/watch?v=BCXYw6N2nOA\n\n\nhttps://www.youtube.com/watch?v=k70b3MLpz_U\n\n\n\n@good-karma", - "json_metadata": "{\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=BCXYw6N2nOA\",\"https:\\/\\/www.youtube.com\\/watch?v=k70b3MLpz_U\"],\"users\":[\"good-karma\"],\"tags\":[\"test\",\"esteem\"]}", - "created": "2016-08-24T12:27:09", - "last_update": "2016-08-24T12:27:09", + "children": 0, + "created": "2016-08-26T10:09:39", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 1, - "net_rshares": 26891674361, + "json_metadata": "{\"tags\":[\"test\",\"spam\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-24T13:30:03", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", + "last_update": "2016-08-26T10:10:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 24517139679, + "parent_author": "", + "parent_permlink": "test", "pending_payout_value": "0.005 HBD", + "percent_hbd": 10000, + "permlink": "test-post-2016826t13935375z", + "post_id": 753411, "promoted": "0.000 HBD", "replies": [], - "body_length": 104, + "root_title": "Test post", + "title": "Test post", + "total_payout_value": "0.000 HBD", + "url": "/test/@feruz/test-post-2016826t13935375z" + }, + { "active_votes": [ { - "voter": "good-karma", - "rshares": "26728920407", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "26728920407", + "voter": "good-karma" }, { - "voter": "digipzle969", - "rshares": "58699961", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "58699961", + "voter": "digipzle969" }, { - "voter": "f1111111", - "rshares": "51109965", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51109965", + "voter": "f1111111" }, { - "voter": "jbaker585", - "rshares": "52944028", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52944028", + "voter": "jbaker585" } ], + "author": "feruz", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@feruz/test-2016824t15279369z", - "root_title": "Test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 727996, - "author": "feruz", - "permlink": "test-2016824t92740421z", + "body": "https://www.youtube.com/watch?v=BCXYw6N2nOA\n\n\nhttps://www.youtube.com/watch?v=k70b3MLpz_U\n\n\n\n@good-karma", + "body_length": 104, + "cashout_time": "2016-09-24T13:30:03", "category": "test", - "title": "Test", - "body": "Test post\n\n**Bold**\n\n*italic*\n\n# Heading #\n\n Code\n \n* list\n* dfdg\n\n1. number\n2. list\n\n----------\n\n# Heading #\n\n## Heading ##\n\n### Heading ###\n\n#### Heading ####", - "json_metadata": "{\"tags\":[\"test\"]}", - "created": "2016-08-24T06:27:39", - "last_update": "2016-08-24T06:27:39", - "depth": 0, "children": 1, - "net_rshares": 27206441238, - "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-24T07:18:24", - "total_payout_value": "0.000 HBD", + "created": "2016-08-24T12:27:09", "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"links\":[\"https://www.youtube.com/watch?v=BCXYw6N2nOA\",\"https://www.youtube.com/watch?v=k70b3MLpz_U\"],\"users\":[\"good-karma\"],\"tags\":[\"test\",\"esteem\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-24T12:27:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 26891674361, + "parent_author": "", + "parent_permlink": "test", "pending_payout_value": "0.005 HBD", + "percent_hbd": 10000, + "permlink": "test-2016824t15279369z", + "post_id": 730369, "promoted": "0.000 HBD", "replies": [], - "body_length": 166, + "root_title": "Test", + "title": "Test", + "total_payout_value": "0.000 HBD", + "url": "/test/@feruz/test-2016824t15279369z" + }, + { "active_votes": [ { - "voter": "good-karma", - "rshares": "26728969107", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "26728969107", + "voter": "good-karma" }, { - "voter": "whispershaper", - "rshares": "55067873", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "55067873", + "voter": "whispershaper" }, { - "voter": "yggsius", - "rshares": "55052340", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "55052340", + "voter": "yggsius" }, { - "voter": "silaev", - "rshares": "53513538", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "53513538", + "voter": "silaev" }, { - "voter": "f1111111", - "rshares": "50066904", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50066904", + "voter": "f1111111" }, { - "voter": "lapina", - "rshares": "52825802", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52825802", + "voter": "lapina" }, { - "voter": "jannada", - "rshares": "52794919", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52794919", + "voter": "jannada" }, { - "voter": "kamila74", - "rshares": "52732658", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52732658", + "voter": "kamila74" }, { - "voter": "svetabrigadir", - "rshares": "52723574", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52723574", + "voter": "svetabrigadir" }, { - "voter": "zenna", - "rshares": "52694523", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52694523", + "voter": "zenna" } ], + "author": "feruz", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@feruz/test-2016824t92740421z", - "root_title": "Test", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 839863, - "author": "str11ngfello", - "permlink": "transaction-signing-a-post-from-steemy-5", + "body": "Test post\n\n**Bold**\n\n*italic*\n\n# Heading #\n\n Code\n \n* list\n* dfdg\n\n1. number\n2. list\n\n----------\n\n# Heading #\n\n## Heading ##\n\n### Heading ###\n\n#### Heading ####", + "body_length": 166, + "cashout_time": "2016-09-24T07:18:24", "category": "test", - "title": "Transaction signing a post from Steemy 5", - "body": "Pardon the intrusion, this is a live test from Steemy for iOS 3 \n http://i.giphy.com/l0HlKylC4U2R1l8vm.gif", - "json_metadata": "{\"category\":\"testing_category\",\"tags\":[\"steemy_testing1\",\"steemy_testing2\"]}", - "created": "2016-09-03T00:07:33", - "last_update": "2016-09-03T00:07:33", + "children": 1, + "created": "2016-08-24T06:27:39", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 0, - "net_rshares": 19069014880, + "json_metadata": "{\"tags\":[\"test\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-10-03T12:07:33", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.004 HBD", + "last_update": "2016-08-24T06:27:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 27206441238, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.005 HBD", + "percent_hbd": 10000, + "permlink": "test-2016824t92740421z", + "post_id": 727996, "promoted": "0.000 HBD", "replies": [], - "body_length": 106, + "root_title": "Test", + "title": "Test", + "total_payout_value": "0.000 HBD", + "url": "/test/@feruz/test-2016824t92740421z" + }, + { "active_votes": [ { - "voter": "str11ngfello", - "rshares": "19069014880", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "19069014880", + "voter": "str11ngfello" } ], + "author": "str11ngfello", "author_reputation": 0, - "parent_author": "", - "parent_permlink": "test", - "url": "/test/@str11ngfello/transaction-signing-a-post-from-steemy-5", - "root_title": "Transaction signing a post from Steemy 5", "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 - }, - { - "post_id": 727662, - "author": "libertyism", - "permlink": "6g1sn5-test", + "body": "Pardon the intrusion, this is a live test from Steemy for iOS 3 \n http://i.giphy.com/l0HlKylC4U2R1l8vm.gif", + "body_length": 106, + "cashout_time": "2016-10-03T12:07:33", "category": "test", - "title": "Test", - "body": "\n

425x243px

\n

\n", - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/d32113cda0.png\"]}", - "created": "2016-08-24T05:35:27", - "last_update": "2016-08-24T05:35:27", + "children": 0, + "created": "2016-09-03T00:07:33", + "curator_payout_value": "0.000 HBD", "depth": 0, - "children": 1, - "net_rshares": 17633674353, + "json_metadata": "{\"category\":\"testing_category\",\"tags\":[\"steemy_testing1\",\"steemy_testing2\"]}", "last_payout": "1969-12-31T23:59:59", - "cashout_time": "2016-09-24T05:35:54", - "total_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "pending_payout_value": "0.003 HBD", + "last_update": "2016-09-03T00:07:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 19069014880, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.004 HBD", + "percent_hbd": 10000, + "permlink": "transaction-signing-a-post-from-steemy-5", + "post_id": 839863, "promoted": "0.000 HBD", "replies": [], - "body_length": 113, + "root_title": "Transaction signing a post from Steemy 5", + "title": "Transaction signing a post from Steemy 5", + "total_payout_value": "0.000 HBD", + "url": "/test/@str11ngfello/transaction-signing-a-post-from-steemy-5" + }, + { "active_votes": [ { - "voter": "luminousvisions", - "rshares": "17580966372", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "17580966372", + "voter": "luminousvisions" }, { - "voter": "stas44", - "rshares": "52707981", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52707981", + "voter": "stas44" } ], + "author": "libertyism", "author_reputation": 0, + "beneficiaries": [], + "body": "\n

425x243px

\n

\n", + "body_length": 113, + "cashout_time": "2016-09-24T05:35:54", + "category": "test", + "children": 1, + "created": "2016-08-24T05:35:27", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https://i.imgsafe.org/d32113cda0.png\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-24T05:35:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 17633674353, "parent_author": "", "parent_permlink": "test", - "url": "/test/@libertyism/6g1sn5-test", + "pending_payout_value": "0.003 HBD", + "percent_hbd": 10000, + "permlink": "6g1sn5-test", + "post_id": 727662, + "promoted": "0.000 HBD", + "replies": [], "root_title": "Test", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000 + "title": "Test", + "total_payout_value": "0.000 HBD", + "url": "/test/@libertyism/6g1sn5-test" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json index 5eddfb74..58a50d1f 100644 --- a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update_limit_100.pat.json @@ -6,7 +6,7 @@ "beneficiaries": [], "body": "But this is not an issue of Top Witnesses vs Backup witnesses. This is an issue that involves all members of the Steemit. If top witnesses keep receiving 1,370 Steems per day, their voting influence will keep growing while the rest of the users see their voting power diminished.", "body_length": 279, - "cashout_time": "2016-09-16T15:31:24", + "cashout_time": "2016-09-22T18:52:09", "category": "steemit", "children": 0, "created": "2016-09-15T18:52:09", @@ -20,9 +20,9 @@ "parent_author": "gtg", "parent_permlink": "re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t184349883z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-chitty-re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t185208490z", - "post_id": 960531, + "post_id": 1257321, "promoted": "0.000 HBD", "replies": [], "root_title": "A balanced voting system is impossible with current witness\u2019s payouts.", @@ -37,7 +37,7 @@ "beneficiaries": [], "body": "Thanks very much!", "body_length": 17, - "cashout_time": "2016-09-16T01:44:18", + "cashout_time": "2016-09-22T15:04:09", "category": "introducemyself", "children": 0, "created": "2016-09-15T15:04:09", @@ -51,9 +51,9 @@ "parent_author": "gtg", "parent_permlink": "re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t071444722z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-woman-onthe-wing-introduction-post-gold-at-the-end-of-the-rainbow-on-the-emerald-isle-20160915t150410237z", - "post_id": 958542, + "post_id": 1254888, "promoted": "0.000 HBD", "replies": [], "root_title": "Introduction post - Gold at the end of the rainbow... On the Emerald Isle", @@ -75,7 +75,7 @@ "beneficiaries": [], "body": "This is true, but you have to agree that the gap between top 19 witnesses and the rest of the users is getting bigger... nobody buys 1,370 steem per day, every day!... its impossible to match. The result of this is richer witnesses with more influence and \"normal\" users with very little to no influence at all.", "body_length": 311, - "cashout_time": "2016-09-16T15:31:24", + "cashout_time": "2016-09-22T14:21:09", "category": "steemit", "children": 2, "created": "2016-09-15T14:21:09", @@ -88,10 +88,10 @@ "net_rshares": 1000247174970, "parent_author": "gtg", "parent_permlink": "re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t141551322z", - "pending_payout_value": "0.275 HBD", - "percent_steem_dollars": 10000, + "pending_payout_value": "0.271 HBD", + "percent_hbd": 10000, "permlink": "re-gtg-re-chitty-a-balanced-voting-system-is-impossible-with-current-witness-s-payouts-20160915t142108544z", - "post_id": 958150, + "post_id": 1254372, "promoted": "0.000 HBD", "replies": [], "root_title": "A balanced voting system is impossible with current witness\u2019s payouts.", @@ -106,7 +106,7 @@ "beneficiaries": [], "body": "Lol. You're welcome!\nBut I suspect you're working hard to hit the top 20 chart with your two comments :p", "body_length": 104, - "cashout_time": "2016-09-16T13:44:39", + "cashout_time": "2016-09-22T13:24:15", "category": "stats", "children": 1, "created": "2016-09-15T13:24:15", @@ -120,9 +120,9 @@ "parent_author": "gtg", "parent_permlink": "re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t131924290z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-arcange-re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t132416244z", - "post_id": 957646, + "post_id": 1253741, "promoted": "0.000 HBD", "replies": [], "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", @@ -137,7 +137,7 @@ "beneficiaries": [], "body": "That's the purpose of using FREETEXT() instead of CONTAINS()", "body_length": 60, - "cashout_time": "2016-09-16T13:44:39", + "cashout_time": "2016-09-22T13:06:18", "category": "stats", "children": 3, "created": "2016-09-15T13:06:18", @@ -151,9 +151,9 @@ "parent_author": "gtg", "parent_permlink": "re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130410195z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-arcange-steemsql-com-a-deep-analysis-of-steemians-gratefulness-20160915t130619700z", - "post_id": 957511, + "post_id": 1253573, "promoted": "0.000 HBD", "replies": [], "root_title": "[STEEMSQL] A deep analysis of Steemians gratefulness", @@ -168,7 +168,7 @@ "beneficiaries": [], "body": "Thank you!", "body_length": 10, - "cashout_time": "2016-09-16T03:45:30", + "cashout_time": "2016-09-22T07:54:42", "category": "introducemyself", "children": 0, "created": "2016-09-15T07:54:42", @@ -182,9 +182,9 @@ "parent_author": "gtg", "parent_permlink": "re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t071902704z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-gamer00-hi-i-m-jaro-and-this-is-my-introductory-verification-post-20160915t075443671z", - "post_id": 956069, + "post_id": 1251775, "promoted": "0.000 HBD", "replies": [], "root_title": "Hi! I'm Jaro and this is my introductory verification post!", @@ -199,7 +199,7 @@ "beneficiaries": [], "body": "See there is a positive to everything! That does sound like quite the cold compromise though! You should post up some pictures of the cherries! I love cherry picking! Yumm!", "body_length": 172, - "cashout_time": "2016-09-26T08:08:21", + "cashout_time": "2016-09-08T14:18:48", "category": "food", "children": 0, "created": "2016-09-01T14:18:48", @@ -213,9 +213,9 @@ "parent_author": "gtg", "parent_permlink": "re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160829t070902349z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-lilmisjenn-re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160901t141846983z", - "post_id": 823649, + "post_id": 1084795, "promoted": "0.000 HBD", "replies": [], "root_title": "Do you have a drinking problem??", @@ -275,9 +275,9 @@ "parent_author": "gtg", "parent_permlink": "witness-gtg", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-witness-gtg", - "post_id": 814638, + "post_id": 1073192, "promoted": "0.000 HBD", "replies": [], "root_title": "Witness \"gtg\"", @@ -292,7 +292,7 @@ "beneficiaries": [], "body": "Hi and thanks! I've been attempting to figure out how to add a picture. I'll get it at some point :)", "body_length": 100, - "cashout_time": "2016-09-26T08:42:15", + "cashout_time": "2016-09-07T02:16:54", "category": "introduceyourself", "children": 0, "created": "2016-08-31T02:16:54", @@ -306,9 +306,9 @@ "parent_author": "gtg", "parent_permlink": "re-melissarhiann-lasting-impression-20160826t083943073z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-melissarhiann-lasting-impression-20160831t021708505z", - "post_id": 808051, + "post_id": 1065123, "promoted": "0.000 HBD", "replies": [], "root_title": "Lasting Impression", @@ -323,7 +323,7 @@ "beneficiaries": [], "body": "actually I won't send, however I expect to receive... lol (as you can see wanting to know who is who is a totally legitimate question...)", "body_length": 138, - "cashout_time": "2016-09-30T17:29:27", + "cashout_time": "2016-09-06T17:06:09", "category": "steem", "children": 1, "created": "2016-08-30T17:06:09", @@ -337,9 +337,9 @@ "parent_author": "gtg", "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t170611218z", - "post_id": 802893, + "post_id": 1058489, "promoted": "0.000 HBD", "replies": [], "root_title": "[Bounty] Community bounty for open source GPU miner.", @@ -373,7 +373,7 @@ "beneficiaries": [], "body": "I don't see where @djm34 said that he doesn't trust @picokernel. That is a rather harsh accusation when all this user has done is stated he doesn't believe they are gpu miners. I see nothing else in his comment beyond that.", "body_length": 225, - "cashout_time": "2016-09-30T17:29:27", + "cashout_time": "2016-09-06T16:40:03", "category": "steem", "children": 3, "created": "2016-08-30T16:40:03", @@ -386,10 +386,10 @@ "net_rshares": 23276351497, "parent_author": "gtg", "parent_permlink": "re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t161109296z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "pending_payout_value": "0.010 HBD", + "percent_hbd": 10000, "permlink": "re-gtg-re-djm34-re-picokernel-bounty-community-bounty-for-open-source-gpu-miner-20160830t164004703z", - "post_id": 802611, + "post_id": 1058136, "promoted": "0.000 HBD", "replies": [], "root_title": "[Bounty] Community bounty for open source GPU miner.", @@ -404,7 +404,7 @@ "beneficiaries": [], "body": "Thanks! I'm really enjoying the site so far - beyond the technical aspects, the content here all seems pretty high-quality.", "body_length": 123, - "cashout_time": "2016-09-29T22:31:27", + "cashout_time": "2016-09-05T22:45:33", "category": "introduceyourself", "children": 0, "created": "2016-08-29T22:45:33", @@ -418,9 +418,9 @@ "parent_author": "gtg", "parent_permlink": "re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t213519226z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-emsenn-introducing-myself-bitcoin-early-adopter-content-producer-and-designer-20160829t224534386z", - "post_id": 794736, + "post_id": 1048130, "promoted": "0.000 HBD", "replies": [], "root_title": "Introducing Myself: Bitcoin Early Adopter, Content Producer & Designer", @@ -435,7 +435,7 @@ "beneficiaries": [], "body": "It took me a long time until I could say I have them from my own garden. That is why I am so appreciative and can make such a silly post over such simplicity! It is a skill I have also worked on mastering over the years. Thanks for your comment and for appreciating my fruit tree! I shall grow it for all that cannot and be extra grateful for its produce. What is your climate like? I also have restrictions on what I can grow around here due to climate. But its a small sacrifice for the serenity.", "body_length": 498, - "cashout_time": "2016-09-26T08:08:21", + "cashout_time": "2016-09-04T11:46:00", "category": "food", "children": 2, "created": "2016-08-28T11:46:00", @@ -449,9 +449,9 @@ "parent_author": "gtg", "parent_permlink": "re-lilmisjenn-do-you-have-a-drinking-problem-20160826t085857261z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-lilmisjenn-do-you-have-a-drinking-problem-20160828t114559502z", - "post_id": 776630, + "post_id": 1025459, "promoted": "0.000 HBD", "replies": [], "root_title": "Do you have a drinking problem??", @@ -466,7 +466,7 @@ "beneficiaries": [], "body": "I've been mining since last Friday and haven't found a block yet, so there are no witness details for my account yet. I wanted to check the \"total_missed\" count, since it sounds like this post could be describing my issue. After talking to peeps on Steemit chat, it sounds like I need to change the keys I'm using. I'm currently using my 'owner private' key for both.", "body_length": 367, - "cashout_time": "2016-09-21T13:01:45", + "cashout_time": "2016-09-03T15:51:15", "category": "mining", "children": 1, "created": "2016-08-27T15:51:15", @@ -480,9 +480,9 @@ "parent_author": "gtg", "parent_permlink": "re-timcliff-re-gtg-missing-rewards-while-mining-20160827t153756820z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-timcliff-re-gtg-missing-rewards-while-mining-20160827t155116406z", - "post_id": 767624, + "post_id": 1014252, "promoted": "0.000 HBD", "replies": [], "root_title": "Missing rewards while mining - common mistake with keys", @@ -497,7 +497,7 @@ "beneficiaries": [], "body": "Is there a way to check the \"total_missed\" count without using cli_wallet?", "body_length": 74, - "cashout_time": "2016-09-21T13:01:45", + "cashout_time": "2016-09-03T14:13:18", "category": "mining", "children": 3, "created": "2016-08-27T14:13:18", @@ -511,9 +511,9 @@ "parent_author": "gtg", "parent_permlink": "missing-rewards-while-mining", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-missing-rewards-while-mining-20160827t141319137z", - "post_id": 766749, + "post_id": 1013122, "promoted": "0.000 HBD", "replies": [], "root_title": "Missing rewards while mining - common mistake with keys", @@ -528,7 +528,7 @@ "beneficiaries": [], "body": "I wanted to, I just didn't know how. But someone did link me to a thing. Thanks for the advice!\nP.S. Cats are adorable! :D", "body_length": 122, - "cashout_time": "2016-09-26T09:23:57", + "cashout_time": "2016-09-03T04:15:48", "category": "aboutme", "children": 1, "created": "2016-08-27T04:15:48", @@ -542,9 +542,9 @@ "parent_author": "gtg", "parent_permlink": "re-eternalmoon-this-is-my-about-me-entry-enjoy-20160826t094835368z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-eternalmoon-this-is-my-about-me-entry-enjoy-20160827t041549494z", - "post_id": 763016, + "post_id": 1008516, "promoted": "0.000 HBD", "replies": [], "root_title": "This is my about me entry (: Enjoy~", @@ -559,7 +559,7 @@ "beneficiaries": [], "body": "Thank you Gandalf :)", "body_length": 20, - "cashout_time": "2016-09-26T21:18:18", + "cashout_time": "2016-09-02T21:16:45", "category": "introduceyourself", "children": 0, "created": "2016-08-26T21:16:45", @@ -573,9 +573,9 @@ "parent_author": "gtg", "parent_permlink": "re-ania-hello-world-20160826t185305711z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-ania-hello-world-20160826t211629005z", - "post_id": 759894, + "post_id": 1004255, "promoted": "0.000 HBD", "replies": [], "root_title": "Hello World!", @@ -590,7 +590,7 @@ "beneficiaries": [], "body": "Thank you :)", "body_length": 12, - "cashout_time": "2016-09-27T01:07:09", + "cashout_time": "2016-09-02T18:58:27", "category": "zee", "children": 0, "created": "2016-08-26T18:58:27", @@ -604,9 +604,9 @@ "parent_author": "gtg", "parent_permlink": "re-orcish-my-introduction-20160826t080607987z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-orcish-my-introduction-20160826t185829224z", - "post_id": 758311, + "post_id": 1002117, "promoted": "0.000 HBD", "replies": [], "root_title": "My Introduction", @@ -621,7 +621,7 @@ "beneficiaries": [], "body": "Oh yes of course. I subscribe to a lot of different artists for my coloring pages. One had sent me the link to her blog and kind of just ended up sticking around and read a few blogs. Next thing i know, I signed up haha.", "body_length": 220, - "cashout_time": "2016-09-26T08:05:57", + "cashout_time": "2016-09-02T18:20:12", "category": "introduceyourself", "children": 0, "created": "2016-08-26T18:20:12", @@ -635,9 +635,9 @@ "parent_author": "gtg", "parent_permlink": "re-bumblebrii-about-me-20160826t094306616z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-bumblebrii-about-me-20160826t182001959z", - "post_id": 757931, + "post_id": 1001581, "promoted": "0.000 HBD", "replies": [], "root_title": "About me", @@ -652,7 +652,7 @@ "beneficiaries": [], "body": "Hi gtg, thanks for stopping by :)", "body_length": 33, - "cashout_time": "2016-09-26T16:08:51", + "cashout_time": "2016-09-02T13:29:27", "category": "travel", "children": 0, "created": "2016-08-26T13:29:27", @@ -666,9 +666,9 @@ "parent_author": "gtg", "parent_permlink": "re-mynomadicyear-16-months-out-of-a-suitcase-20160826t090811525z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-mynomadicyear-16-months-out-of-a-suitcase-20160826t132929538z", - "post_id": 754968, + "post_id": 997617, "promoted": "0.000 HBD", "replies": [], "root_title": "16 Months Out Of A Suitcase", @@ -683,7 +683,7 @@ "beneficiaries": [], "body": "thankyou! :) hi there", "body_length": 21, - "cashout_time": "2016-09-25T19:26:21", + "cashout_time": "2016-09-02T11:37:33", "category": "introduceyourself", "children": 0, "created": "2016-08-26T11:37:33", @@ -697,9 +697,9 @@ "parent_author": "gtg", "parent_permlink": "re-seasoul-aboutme-20160826t095320794z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-seasoul-aboutme-20160826t113727450z", - "post_id": 754013, + "post_id": 996383, "promoted": "0.000 HBD", "replies": [], "root_title": "Aboutme", @@ -728,9 +728,9 @@ "parent_author": "gtg", "parent_permlink": "witness-gtg", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-witness-gtg-20160826t052714859z", - "post_id": 751872, + "post_id": 993506, "promoted": "0.000 HBD", "replies": [], "root_title": "Witness \"gtg\"", @@ -741,17 +741,17 @@ { "active_votes": [], "author": "gtg", - "author_reputation": 3920426655270, + "author_reputation": 0, "beneficiaries": [], "body": "I encourage miners to visit [Steemit Chat](https://steemit.chat/channel/mining \"#mining\") where you can find help and share your experience.", "body_length": 140, - "cashout_time": "2016-09-21T13:01:45", + "cashout_time": "2016-08-28T13:12:45", "category": "mining", "children": 0, "created": "2016-08-21T13:12:45", "curator_payout_value": "0.000 HBD", "depth": 1, - "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https:\\/\\/steemit.chat\\/channel\\/mining\"]}", + "json_metadata": "{\"tags\":[\"mining\"],\"links\":[\"https://steemit.chat/channel/mining\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-08-21T13:12:45", "max_accepted_payout": "1000000.000 HBD", @@ -759,9 +759,9 @@ "parent_author": "gtg", "parent_permlink": "missing-rewards-while-mining", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-missing-rewards-while-mining-20160821t131242531z", - "post_id": 693986, + "post_id": 919652, "promoted": "0.000 HBD", "replies": [], "root_title": "Missing rewards while mining - common mistake with keys", @@ -776,7 +776,7 @@ "beneficiaries": [], "body": "so frustrated was mining for a while found a few blocks and received no reward now i know why thank you !", "body_length": 105, - "cashout_time": "2016-09-21T13:01:45", + "cashout_time": "2016-08-28T12:52:06", "category": "mining", "children": 0, "created": "2016-08-21T12:52:06", @@ -790,9 +790,9 @@ "parent_author": "gtg", "parent_permlink": "missing-rewards-while-mining", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-missing-rewards-while-mining-20160821t125207685z", - "post_id": 693858, + "post_id": 919497, "promoted": "0.000 HBD", "replies": [], "root_title": "Missing rewards while mining - common mistake with keys", @@ -807,7 +807,7 @@ "beneficiaries": [], "body": "The private seed nodes still need to connect to the rest of the network to be able to sync and broadcast new blocks. So from an attacker's pov perhaps it's cheaper/easier to attack the public seed nodes directly.", "body_length": 212, - "cashout_time": "2016-09-16T20:13:00", + "cashout_time": "2016-08-25T03:32:12", "category": "witness-category", "children": 0, "created": "2016-08-18T03:32:12", @@ -821,9 +821,9 @@ "parent_author": "gtg", "parent_permlink": "heavy-duty-witness-node-infrastructure", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160818t033212861z", - "post_id": 650924, + "post_id": 864739, "promoted": "0.000 HBD", "replies": [], "root_title": "Heavy duty witness node infrastructure", @@ -838,13 +838,13 @@ "beneficiaries": [], "body": "`gtg said: Please note that setting up all seed nodes in a single data center won\u2019t help. A DDoS attack targeted at that particular network will bring all your nodes down anyway.`\n\nThat is unless the data center provides a variety of network routes from different providers and your seed nodes are therefore located on different wide area networks even when on the same LAN. This is possible on today's top of the line data centers.\nOf course decentralization is always good so several locations for seed nodes and witnesses is a plus. Good post. \nJust installed a witness node. Consider to [Vote for witness okay](https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network)", "body_length": 714, - "cashout_time": "2016-09-16T20:13:00", + "cashout_time": "2016-08-24T12:06:03", "category": "witness-category", "children": 0, "created": "2016-08-17T12:06:03", "curator_payout_value": "0.000 HBD", "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https:\\/\\/steemit.com\\/witness-category\\/@okay\\/new-witness-okay-a-great-addition-to-the-steem-network\"]}", + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"https://steemit.com/witness-category/@okay/new-witness-okay-a-great-addition-to-the-steem-network\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-08-17T12:06:03", "max_accepted_payout": "1000000.000 HBD", @@ -852,9 +852,9 @@ "parent_author": "gtg", "parent_permlink": "heavy-duty-witness-node-infrastructure", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t120511092z", - "post_id": 640215, + "post_id": 851273, "promoted": "0.000 HBD", "replies": [], "root_title": "Heavy duty witness node infrastructure", @@ -869,7 +869,7 @@ "beneficiaries": [], "body": "I just saw your article now and followed you . In this way I don't miss your new ones .", "body_length": 87, - "cashout_time": "2016-09-16T20:13:00", + "cashout_time": "2016-08-24T07:03:33", "category": "witness-category", "children": 0, "created": "2016-08-17T07:03:33", @@ -883,9 +883,9 @@ "parent_author": "gtg", "parent_permlink": "heavy-duty-witness-node-infrastructure", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t070329871z", - "post_id": 637902, + "post_id": 848378, "promoted": "0.000 HBD", "replies": [], "root_title": "Heavy duty witness node infrastructure", @@ -900,7 +900,7 @@ "beneficiaries": [], "body": "I wish I was intelligent enough to participate in this conversation.", "body_length": 68, - "cashout_time": "2016-09-16T20:13:00", + "cashout_time": "2016-08-24T04:00:42", "category": "witness-category", "children": 0, "created": "2016-08-17T04:00:42", @@ -914,9 +914,9 @@ "parent_author": "gtg", "parent_permlink": "heavy-duty-witness-node-infrastructure", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t040038640z", - "post_id": 636638, + "post_id": 846743, "promoted": "0.000 HBD", "replies": [], "root_title": "Heavy duty witness node infrastructure", @@ -931,7 +931,7 @@ "beneficiaries": [], "body": "Really good infrastructure top 19 sure can implement for better protection of their nodes. \nThough Steem network as whole have good protection against DDoS - even if most of 19 will go offline other witnesses will do their job, we just need more active and up-to-date witnesses. \nI personally too want become good witness and currently learning all nuances of secure operation of node.", "body_length": 385, - "cashout_time": "2016-09-16T20:13:00", + "cashout_time": "2016-08-24T02:12:48", "category": "witness-category", "children": 0, "created": "2016-08-17T02:12:48", @@ -945,9 +945,9 @@ "parent_author": "gtg", "parent_permlink": "heavy-duty-witness-node-infrastructure", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160817t021249248z", - "post_id": 635741, + "post_id": 845579, "promoted": "0.000 HBD", "replies": [], "root_title": "Heavy duty witness node infrastructure", @@ -999,23 +999,23 @@ "beneficiaries": [], "body": "great post! I completely agree with the analysis of the problem as well as the proposed solution. I actually wanted to implement something similar some time ago, during BitShares times, but then BitShares 2.0 happened and there were a lot more urgent things to do, so this got sidetracked. See [here](http://digitalgaia.io/backbone.html) for the same analysis, where those nodes were called \"backbone nodes\" as they were intended to be shared between witnesses. Witnesses were paid a lot less during that time so I intended to have this as a public service, although that would mean that witnesses had to trust the operator of the backbone. Having your own personal line of defense is obviously much better. I still believe that this is an extremely important issue that should be tackled as soon as possible, and was planning to reboot this proposal as soon as I got some free time (haha good one!). In all seriousness, I believe that this is not too much work, but there will be some features that need to be added to the network code of the steemd client, in order to limit the nodes the client can connect too, as well as ensuring that your backbone nodes do not share the IP of your witness node (was in bts 0.9.x, but not in 2.0 nor steem I believe). This can probably also be implemented with some sort of VPN I guess, but I'm a coder, not a sysadmin, so I can't tell for sure. I even thought (fantasized) about how to make these nodes replace themselves autonomously when attacked via DDoS using messages on the blockchain, in order to simulate a resilient, living organism. Now you see where part of the \"overmind\" idea came from, too :) That is a discussion for a bit later, though...", "body_length": 1694, - "cashout_time": "2016-09-16T20:13:00", + "cashout_time": "2016-08-23T21:28:48", "category": "witness-category", "children": 0, "created": "2016-08-16T21:28:48", "curator_payout_value": "0.000 HBD", "depth": 1, - "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"http:\\/\\/digitalgaia.io\\/backbone.html\"]}", + "json_metadata": "{\"tags\":[\"witness-category\"],\"links\":[\"http://digitalgaia.io/backbone.html\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-08-16T21:28:48", "max_accepted_payout": "1000000.000 HBD", "net_rshares": 4818972403787, "parent_author": "gtg", "parent_permlink": "heavy-duty-witness-node-infrastructure", - "pending_payout_value": "6.136 HBD", - "percent_steem_dollars": 10000, + "pending_payout_value": "6.160 HBD", + "percent_hbd": 10000, "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t212848539z", - "post_id": 632723, + "post_id": 841765, "promoted": "0.000 HBD", "replies": [], "root_title": "Heavy duty witness node infrastructure", @@ -1037,7 +1037,7 @@ "beneficiaries": [], "body": "That's awesome :)\n\nI love seeing these kinds of advanced setups being theorized, tested and deployed!", "body_length": 101, - "cashout_time": "2016-09-16T20:13:00", + "cashout_time": "2016-08-23T20:31:06", "category": "witness-category", "children": 0, "created": "2016-08-16T20:31:06", @@ -1050,10 +1050,10 @@ "net_rshares": 19467531428, "parent_author": "gtg", "parent_permlink": "re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t201857176z", - "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "pending_payout_value": "0.012 HBD", + "percent_hbd": 10000, "permlink": "re-gtg-re-jesta-re-gtg-heavy-duty-witness-node-infrastructure-20160816t203107019z", - "post_id": 632008, + "post_id": 840868, "promoted": "0.000 HBD", "replies": [], "root_title": "Heavy duty witness node infrastructure", @@ -1081,7 +1081,7 @@ "beneficiaries": [], "body": "Reading stuff like this makes me realize just how little I know about this whole thing...", "body_length": 89, - "cashout_time": "2016-09-16T20:13:00", + "cashout_time": "2016-08-23T20:01:27", "category": "witness-category", "children": 0, "created": "2016-08-16T20:01:27", @@ -1095,9 +1095,9 @@ "parent_author": "gtg", "parent_permlink": "heavy-duty-witness-node-infrastructure", "pending_payout_value": "0.024 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t200131779z", - "post_id": 631654, + "post_id": 840412, "promoted": "0.000 HBD", "replies": [], "root_title": "Heavy duty witness node infrastructure", @@ -1112,7 +1112,7 @@ "beneficiaries": [], "body": "Thanks for explaining. You've got my witness vote now.", "body_length": 55, - "cashout_time": "2016-09-16T20:13:00", + "cashout_time": "2016-08-23T19:31:06", "category": "witness-category", "children": 0, "created": "2016-08-16T19:31:06", @@ -1126,9 +1126,9 @@ "parent_author": "gtg", "parent_permlink": "heavy-duty-witness-node-infrastructure", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t193106395z", - "post_id": 631312, + "post_id": 839953, "promoted": "0.000 HBD", "replies": [], "root_title": "Heavy duty witness node infrastructure", @@ -1198,7 +1198,7 @@ "beneficiaries": [], "body": "I love the idea in this, basically setting up a fortress for your witness node to be more resilient. \n\nOne thing you're right about though is it would be a somewhat expensive venture. At the rate I'm witnessing blocks (maybe 3-4 a day?), it's not feasible to sustain itself financially, but I imagine the top 19 could easily go this route. Maybe even some of the people in the top 30?\n\nI'd be more than willing to help prototype this type of infrastructure. I've been considering how difficult it would be to setup on AWS with a CloudFormation script that spins up seed nodes as ECS Containers, VPCs in every region that all interconnect via private networking, and an EC2 container for your witness node that's not accessible from the internet, but only the seed nodes. \n\nIt really shouldn't be all that hard, and even non-technical witnesses could copy/paste the cloudformation script to get started. Of course with this idea, if AWS is attacked, you're still the mercy of them being able to handle it.", "body_length": 1005, - "cashout_time": "2016-09-16T20:13:00", + "cashout_time": "2016-08-23T19:11:06", "category": "witness-category", "children": 2, "created": "2016-08-16T19:11:06", @@ -1211,10 +1211,10 @@ "net_rshares": 6486910806264, "parent_author": "gtg", "parent_permlink": "heavy-duty-witness-node-infrastructure", - "pending_payout_value": "9.966 HBD", - "percent_steem_dollars": 10000, + "pending_payout_value": "9.970 HBD", + "percent_hbd": 10000, "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t191107309z", - "post_id": 631058, + "post_id": 839626, "promoted": "0.000 HBD", "replies": [], "root_title": "Heavy duty witness node infrastructure", @@ -1229,7 +1229,7 @@ "beneficiaries": [], "body": "i was checking if you tagged it in #witness-category ;) \nglad to see steemit has a great team of security devs and glad to have upvoted you as witness.", "body_length": 151, - "cashout_time": "2016-09-16T20:13:00", + "cashout_time": "2016-08-23T19:08:06", "category": "witness-category", "children": 0, "created": "2016-08-16T19:08:06", @@ -1243,9 +1243,9 @@ "parent_author": "gtg", "parent_permlink": "heavy-duty-witness-node-infrastructure", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t190814180z", - "post_id": 631016, + "post_id": 839578, "promoted": "0.000 HBD", "replies": [], "root_title": "Heavy duty witness node infrastructure", @@ -1260,7 +1260,7 @@ "beneficiaries": [], "body": "I can tell you're definitely a well-invested witness. You have my vote. \n\nThese details could help to improve the general quality of witnesses on the network", "body_length": 157, - "cashout_time": "2016-09-16T20:13:00", + "cashout_time": "2016-08-23T18:52:48", "category": "witness-category", "children": 0, "created": "2016-08-16T18:52:48", @@ -1274,9 +1274,9 @@ "parent_author": "gtg", "parent_permlink": "heavy-duty-witness-node-infrastructure", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t185248185z", - "post_id": 630835, + "post_id": 839328, "promoted": "0.000 HBD", "replies": [], "root_title": "Heavy duty witness node infrastructure", @@ -1291,7 +1291,7 @@ "beneficiaries": [], "body": "THis is something. @gtg", "body_length": 23, - "cashout_time": "2016-09-16T20:13:00", + "cashout_time": "2016-08-23T18:12:21", "category": "witness-category", "children": 0, "created": "2016-08-16T18:12:21", @@ -1305,9 +1305,9 @@ "parent_author": "gtg", "parent_permlink": "heavy-duty-witness-node-infrastructure", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-heavy-duty-witness-node-infrastructure-20160816t181221888z", - "post_id": 630198, + "post_id": 838553, "promoted": "0.000 HBD", "replies": [], "root_title": "Heavy duty witness node infrastructure", @@ -1341,7 +1341,7 @@ "created": "2016-08-15T14:15:42", "curator_payout_value": "0.198 HBD", "depth": 2, - "json_metadata": "{\"tags\":[\"steemit-ideas\"],\"users\":[\"dantheman\"],\"links\":[\"https:\\/\\/steemit.com\\/steem\\/@dantheman\\/curation-rewards-and-voting-incentive\"]}", + "json_metadata": "{\"tags\":[\"steemit-ideas\"],\"users\":[\"dantheman\"],\"links\":[\"https://steemit.com/steem/@dantheman/curation-rewards-and-voting-incentive\"]}", "last_payout": "2016-09-15T07:07:00", "last_update": "2016-08-15T14:16:39", "max_accepted_payout": "1000000.000 HBD", @@ -1349,9 +1349,9 @@ "parent_author": "gtg", "parent_permlink": "re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t123329115z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-liondani-don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page-20160815t141541480z", - "post_id": 613314, + "post_id": 817208, "promoted": "0.000 HBD", "replies": [], "root_title": "DON'T REMOVE Curation Rewards! Just stop them when the post reach the trending page !!!", @@ -1387,9 +1387,9 @@ "parent_author": "gtg", "parent_permlink": "witness-gtg", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-witness-gtg-20160805t161219379z", - "post_id": 465280, + "post_id": 627877, "promoted": "0.000 HBD", "replies": [], "root_title": "Witness \"gtg\"", @@ -1437,9 +1437,9 @@ "parent_author": "gtg", "parent_permlink": "witness-gtg", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-witness-gtg-20160805t154528701z", - "post_id": 464773, + "post_id": 627215, "promoted": "0.000 HBD", "replies": [], "root_title": "Witness \"gtg\"", @@ -1468,9 +1468,9 @@ "parent_author": "gtg", "parent_permlink": "re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t123936611z", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-re-mefisto-pl-czy-polska-spolecznosc-powinna-miec-swojego-delegata-witness-20160803t125639335z", - "post_id": 427686, + "post_id": 580103, "promoted": "0.000 HBD", "replies": [], "root_title": "[PL] Czy polska spo\u0142eczno\u015b\u0107 powinna mie\u0107 swojego delegata (witness) ?", @@ -1499,9 +1499,9 @@ "parent_author": "gtg", "parent_permlink": "hello-world", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-hello-world-20160704t182251522z", - "post_id": 38463, + "post_id": 53542, "promoted": "0.000 HBD", "replies": [], "root_title": "Hello, World!", @@ -1530,9 +1530,9 @@ "parent_author": "gtg", "parent_permlink": "hello-world", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-hello-world-20160703t224527020z", - "post_id": 37179, + "post_id": 51824, "promoted": "0.000 HBD", "replies": [], "root_title": "Hello, World!", @@ -1561,9 +1561,9 @@ "parent_author": "gtg", "parent_permlink": "hello-world", "pending_payout_value": "0.000 HBD", - "percent_steem_dollars": 10000, + "percent_hbd": 10000, "permlink": "re-gtg-hello-world-20160703t175141501z", - "post_id": 36953, + "post_id": 51479, "promoted": "0.000 HBD", "replies": [], "root_title": "Hello, World!", diff --git a/hivemind/tavern/condenser_api_patterns/get_trending_tags_limit_250.pat.json b/hivemind/tavern/condenser_api_patterns/get_trending_tags_limit_250.pat.json index 454ea0a6..2bfdb902 100644 --- a/hivemind/tavern/condenser_api_patterns/get_trending_tags_limit_250.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_trending_tags_limit_250.pat.json @@ -3,7 +3,7 @@ "comments": 16, "name": "dream", "top_posts": 11, - "total_payouts": "31.135 HBD" + "total_payouts": "31.138 HBD" }, { "comments": 14, @@ -15,13 +15,19 @@ "comments": 27, "name": "joke", "top_posts": 14, - "total_payouts": "31.022 HBD" + "total_payouts": "31.079 HBD" + }, + { + "comments": 181, + "name": "wordnerd", + "top_posts": 20, + "total_payouts": "30.882 HBD" }, { "comments": 7, "name": "tech-analysis", "top_posts": 2, - "total_payouts": "30.801 HBD" + "total_payouts": "30.809 HBD" }, { "comments": 1, @@ -30,10 +36,10 @@ "total_payouts": "30.782 HBD" }, { - "comments": 181, - "name": "wordnerd", - "top_posts": 20, - "total_payouts": "30.676 HBD" + "comments": 18, + "name": "poems", + "top_posts": 14, + "total_payouts": "30.540 HBD" }, { "comments": 6, @@ -45,25 +51,25 @@ "comments": 7, "name": "snapsteem", "top_posts": 1, - "total_payouts": "30.173 HBD" + "total_payouts": "30.175 HBD" }, { "comments": 19, "name": "hillary-clinton", "top_posts": 3, - "total_payouts": "30.102 HBD" - }, - { - "comments": 18, - "name": "poems", - "top_posts": 14, - "total_payouts": "29.991 HBD" + "total_payouts": "30.116 HBD" }, { "comments": 22, "name": "change", "top_posts": 6, - "total_payouts": "29.978 HBD" + "total_payouts": "30.009 HBD" + }, + { + "comments": 9, + "name": "skyrim", + "top_posts": 17, + "total_payouts": "29.579 HBD" }, { "comments": 1, @@ -71,29 +77,23 @@ "top_posts": 1, "total_payouts": "29.558 HBD" }, - { - "comments": 9, - "name": "skyrim", - "top_posts": 17, - "total_payouts": "29.551 HBD" - }, { "comments": 5, "name": "motiongraphics", "top_posts": 1, - "total_payouts": "28.957 HBD" + "total_payouts": "28.961 HBD" }, { "comments": 1, "name": "alchemy", "top_posts": 3, - "total_payouts": "28.936 HBD" + "total_payouts": "28.939 HBD" }, { "comments": 14, "name": "cryptography", "top_posts": 4, - "total_payouts": "28.681 HBD" + "total_payouts": "28.748 HBD" }, { "comments": 5, @@ -105,7 +105,7 @@ "comments": 11, "name": "selfownership", "top_posts": 2, - "total_payouts": "27.889 HBD" + "total_payouts": "27.908 HBD" }, { "comments": 3, @@ -119,35 +119,41 @@ "top_posts": 2, "total_payouts": "27.347 HBD" }, + { + "comments": 217, + "name": "spam", + "top_posts": 118, + "total_payouts": "27.187 HBD" + }, { "comments": 15, "name": "latte", "top_posts": 4, - "total_payouts": "27.165 HBD" + "total_payouts": "27.171 HBD" + }, + { + "comments": 20, + "name": "lsd", + "top_posts": 2, + "total_payouts": "26.439 HBD" }, { "comments": 12, "name": "demoscene", "top_posts": 1, - "total_payouts": "26.426 HBD" - }, - { - "comments": 217, - "name": "spam", - "top_posts": 118, - "total_payouts": "26.349 HBD" + "total_payouts": "26.432 HBD" }, { "comments": 14, "name": "keepit100", "top_posts": 1, - "total_payouts": "26.337 HBD" + "total_payouts": "26.359 HBD" }, { "comments": 47, "name": "journal", "top_posts": 2, - "total_payouts": "26.227 HBD" + "total_payouts": "26.261 HBD" }, { "comments": 0, @@ -156,40 +162,40 @@ "total_payouts": "26.227 HBD" }, { - "comments": 20, - "name": "lsd", + "comments": 80, + "name": "dash", + "top_posts": 22, + "total_payouts": "26.043 HBD" + }, + { + "comments": 2, + "name": "tokyo", "top_posts": 2, - "total_payouts": "26.127 HBD" + "total_payouts": "25.990 HBD" }, { "comments": 6, "name": "anarchist", "top_posts": 5, - "total_payouts": "25.921 HBD" + "total_payouts": "25.929 HBD" }, { "comments": 71, "name": "promoted", "top_posts": 4, - "total_payouts": "25.820 HBD" + "total_payouts": "25.920 HBD" }, { "comments": 13, "name": "m", "top_posts": 4, - "total_payouts": "25.814 HBD" - }, - { - "comments": 2, - "name": "tokyo", - "top_posts": 2, - "total_payouts": "25.805 HBD" + "total_payouts": "25.826 HBD" }, { "comments": 11, "name": "dailydialogue", "top_posts": 2, - "total_payouts": "25.548 HBD" + "total_payouts": "25.646 HBD" }, { "comments": 0, @@ -201,43 +207,43 @@ "comments": 3, "name": "render", "top_posts": 3, - "total_payouts": "25.256 HBD" + "total_payouts": "25.261 HBD" }, { "comments": 4, "name": "anachy", "top_posts": 1, - "total_payouts": "25.002 HBD" - }, - { - "comments": 7, - "name": "issue", - "top_posts": 1, - "total_payouts": "24.771 HBD" + "total_payouts": "24.991 HBD" }, { "comments": 4, "name": "jobs", "top_posts": 3, - "total_payouts": "24.766 HBD" + "total_payouts": "24.774 HBD" }, { - "comments": 80, - "name": "dash", - "top_posts": 22, - "total_payouts": "24.736 HBD" + "comments": 7, + "name": "issue", + "top_posts": 1, + "total_payouts": "24.771 HBD" }, { "comments": 22, "name": "robotics", "top_posts": 2, - "total_payouts": "24.705 HBD" + "total_payouts": "24.730 HBD" }, { "comments": 17, "name": "consumerism", "top_posts": 2, - "total_payouts": "24.657 HBD" + "total_payouts": "24.712 HBD" + }, + { + "comments": 2, + "name": "ethics", + "top_posts": 6, + "total_payouts": "24.711 HBD" }, { "comments": 5, @@ -246,46 +252,46 @@ "total_payouts": "24.320 HBD" }, { - "comments": 2, - "name": "ethics", - "top_posts": 6, - "total_payouts": "24.194 HBD" - }, - { - "comments": 11, - "name": "authority", - "top_posts": 2, - "total_payouts": "23.982 HBD" + "comments": 57, + "name": "parody", + "top_posts": 5, + "total_payouts": "24.185 HBD" }, { "comments": 12, "name": "ico", "top_posts": 12, - "total_payouts": "23.915 HBD" + "total_payouts": "24.035 HBD" }, { "comments": 11, - "name": "boinc", - "top_posts": 3, - "total_payouts": "23.878 HBD" + "name": "authority", + "top_posts": 2, + "total_payouts": "24.007 HBD" }, { "comments": 5, "name": "fortgalt", "top_posts": 1, - "total_payouts": "23.870 HBD" + "total_payouts": "23.963 HBD" + }, + { + "comments": 11, + "name": "boinc", + "top_posts": 3, + "total_payouts": "23.942 HBD" }, { "comments": 21, "name": "storychallenge", "top_posts": 1, - "total_payouts": "23.763 HBD" + "total_payouts": "23.765 HBD" }, { - "comments": 57, - "name": "parody", - "top_posts": 5, - "total_payouts": "23.619 HBD" + "comments": 55, + "name": "death", + "top_posts": 17, + "total_payouts": "23.600 HBD" }, { "comments": 0, @@ -299,17 +305,17 @@ "top_posts": 1, "total_payouts": "23.427 HBD" }, - { - "comments": 55, - "name": "death", - "top_posts": 17, - "total_payouts": "23.427 HBD" - }, { "comments": 16, "name": "flagging", "top_posts": 3, - "total_payouts": "23.359 HBD" + "total_payouts": "23.386 HBD" + }, + { + "comments": 2, + "name": "montreal", + "top_posts": 2, + "total_payouts": "23.312 HBD" }, { "comments": 5, @@ -321,7 +327,7 @@ "comments": 8, "name": "self-improvement", "top_posts": 3, - "total_payouts": "23.260 HBD" + "total_payouts": "23.261 HBD" }, { "comments": 0, @@ -335,65 +341,65 @@ "top_posts": 1, "total_payouts": "23.185 HBD" }, + { + "comments": 73, + "name": "rant", + "top_posts": 10, + "total_payouts": "23.155 HBD" + }, + { + "comments": 2, + "name": "mixedmedia", + "top_posts": 1, + "total_payouts": "23.086 HBD" + }, { "comments": 3, "name": "analysis", "top_posts": 5, - "total_payouts": "23.046 HBD" + "total_payouts": "23.060 HBD" }, { "comments": 7, "name": "howtotalksteemit", "top_posts": 1, - "total_payouts": "22.989 HBD" + "total_payouts": "23.004 HBD" }, { "comments": 9, "name": "osc", "top_posts": 2, - "total_payouts": "22.897 HBD" + "total_payouts": "22.902 HBD" }, { "comments": 13, "name": "morning", "top_posts": 5, - "total_payouts": "22.827 HBD" - }, - { - "comments": 2, - "name": "mixedmedia", - "top_posts": 1, - "total_payouts": "22.784 HBD" - }, - { - "comments": 2, - "name": "montreal", - "top_posts": 2, - "total_payouts": "22.714 HBD" + "total_payouts": "22.864 HBD" }, { "comments": 13, "name": "aquarium", "top_posts": 6, - "total_payouts": "22.412 HBD" + "total_payouts": "22.454 HBD" }, { "comments": 8, "name": "puertorico", "top_posts": 2, - "total_payouts": "22.364 HBD" + "total_payouts": "22.388 HBD" }, { "comments": 9, "name": "minnow-report", "top_posts": 1, - "total_payouts": "22.195 HBD" + "total_payouts": "22.238 HBD" }, { "comments": 4, "name": "scince", "top_posts": 1, - "total_payouts": "22.053 HBD" + "total_payouts": "22.062 HBD" }, { "comments": 3, @@ -405,13 +411,19 @@ "comments": 11, "name": "downtherabbithole", "top_posts": 1, - "total_payouts": "21.787 HBD" + "total_payouts": "21.887 HBD" }, { "comments": 19, "name": "dicordion", "top_posts": 1, - "total_payouts": "21.783 HBD" + "total_payouts": "21.842 HBD" + }, + { + "comments": 65, + "name": "steemgirls", + "top_posts": 27, + "total_payouts": "21.792 HBD" }, { "comments": 20, @@ -423,7 +435,7 @@ "comments": 16, "name": "gratitude", "top_posts": 3, - "total_payouts": "21.502 HBD" + "total_payouts": "21.510 HBD" }, { "comments": 1, @@ -432,46 +444,40 @@ "total_payouts": "21.251 HBD" }, { - "comments": 65, - "name": "steemgirls", - "top_posts": 27, - "total_payouts": "21.181 HBD" + "comments": 81, + "name": "klyeart", + "top_posts": 4, + "total_payouts": "21.001 HBD" }, { "comments": 2, "name": "golf", "top_posts": 3, - "total_payouts": "21.009 HBD" + "total_payouts": "20.911 HBD" }, { - "comments": 81, - "name": "klyeart", - "top_posts": 4, - "total_payouts": "20.827 HBD" + "comments": 42, + "name": "voidart-argantuan", + "top_posts": 2, + "total_payouts": "20.442 HBD" }, { "comments": 1, "name": "jewelscoin", "top_posts": 2, - "total_payouts": "20.347 HBD" - }, - { - "comments": 5, - "name": "meow", - "top_posts": 1, - "total_payouts": "20.320 HBD" + "total_payouts": "20.396 HBD" }, { "comments": 20, "name": "tickets", "top_posts": 1, - "total_payouts": "20.303 HBD" + "total_payouts": "20.336 HBD" }, { - "comments": 42, - "name": "voidart-argantuan", - "top_posts": 2, - "total_payouts": "20.032 HBD" + "comments": 5, + "name": "meow", + "top_posts": 1, + "total_payouts": "20.326 HBD" }, { "comments": 3, @@ -489,13 +495,13 @@ "comments": 27, "name": "uber", "top_posts": 13, - "total_payouts": "19.840 HBD" + "total_payouts": "19.864 HBD" }, { "comments": 29, "name": "robotev", "top_posts": 20, - "total_payouts": "19.812 HBD" + "total_payouts": "19.839 HBD" }, { "comments": 13, @@ -507,55 +513,55 @@ "comments": 9, "name": "internet-story", "top_posts": 1, - "total_payouts": "19.664 HBD" + "total_payouts": "19.696 HBD" }, { "comments": 7, "name": "chinese", "top_posts": 11, - "total_payouts": "19.459 HBD" + "total_payouts": "19.471 HBD" + }, + { + "comments": 47, + "name": "ai", + "top_posts": 14, + "total_payouts": "19.404 HBD" }, { "comments": 11, "name": "cafe", "top_posts": 1, - "total_payouts": "19.364 HBD" + "total_payouts": "19.391 HBD" }, { - "comments": 47, - "name": "ai", - "top_posts": 14, - "total_payouts": "19.364 HBD" + "comments": 14, + "name": "university", + "top_posts": 2, + "total_payouts": "19.235 HBD" }, { "comments": 15, "name": "unheardvoices", "top_posts": 1, - "total_payouts": "19.093 HBD" + "total_payouts": "19.131 HBD" }, { "comments": 52, "name": "thegreencandle", "top_posts": 5, - "total_payouts": "19.026 HBD" - }, - { - "comments": 73, - "name": "rant", - "top_posts": 10, - "total_payouts": "18.934 HBD" + "total_payouts": "19.045 HBD" }, { "comments": 13, "name": "fascism", "top_posts": 2, - "total_payouts": "18.915 HBD" + "total_payouts": "18.942 HBD" }, { "comments": 2, "name": "time-travel", "top_posts": 1, - "total_payouts": "18.782 HBD" + "total_payouts": "18.788 HBD" }, { "comments": 4, @@ -564,22 +570,22 @@ "total_payouts": "18.655 HBD" }, { - "comments": 1, - "name": "sunrise", + "comments": 8, + "name": "ultra", "top_posts": 1, - "total_payouts": "18.580 HBD" + "total_payouts": "18.592 HBD" }, { - "comments": 8, - "name": "ultra", + "comments": 1, + "name": "sunrise", "top_posts": 1, - "total_payouts": "18.570 HBD" + "total_payouts": "18.580 HBD" }, { "comments": 16, "name": "tile", "top_posts": 1, - "total_payouts": "18.348 HBD" + "total_payouts": "18.397 HBD" }, { "comments": 20, @@ -597,7 +603,7 @@ "comments": 5, "name": "state", "top_posts": 2, - "total_payouts": "18.033 HBD" + "total_payouts": "18.042 HBD" }, { "comments": 1, @@ -605,23 +611,17 @@ "top_posts": 1, "total_payouts": "17.886 HBD" }, - { - "comments": 14, - "name": "university", - "top_posts": 2, - "total_payouts": "17.762 HBD" - }, { "comments": 50, "name": "flatearth", "top_posts": 10, - "total_payouts": "17.532 HBD" + "total_payouts": "17.557 HBD" }, { "comments": 21, "name": "teaching", "top_posts": 7, - "total_payouts": "17.502 HBD" + "total_payouts": "17.513 HBD" }, { "comments": 3, @@ -633,133 +633,133 @@ "comments": 9, "name": "mobypicture", "top_posts": 1, - "total_payouts": "16.976 HBD" + "total_payouts": "16.989 HBD" }, { "comments": 14, "name": "monsanto", "top_posts": 3, - "total_payouts": "16.934 HBD" + "total_payouts": "16.854 HBD" }, { "comments": 15, "name": "auto", "top_posts": 2, - "total_payouts": "16.831 HBD" + "total_payouts": "16.839 HBD" }, { - "comments": 27, - "name": "aviewaday", + "comments": 48, + "name": "wordchallenge", "top_posts": 4, - "total_payouts": "16.653 HBD" + "total_payouts": "16.772 HBD" }, { "comments": 25, "name": "brexit", "top_posts": 6, - "total_payouts": "16.652 HBD" + "total_payouts": "16.712 HBD" }, { - "comments": 16, - "name": "savings", - "top_posts": 5, - "total_payouts": "16.589 HBD" + "comments": 14, + "name": "promotion", + "top_posts": 4, + "total_payouts": "16.674 HBD" }, { - "comments": 48, - "name": "wordchallenge", + "comments": 27, + "name": "aviewaday", "top_posts": 4, - "total_payouts": "16.560 HBD" + "total_payouts": "16.649 HBD" + }, + { + "comments": 16, + "name": "savings", + "top_posts": 5, + "total_payouts": "16.601 HBD" }, { "comments": 29, "name": "steemit-hunt", "top_posts": 4, - "total_payouts": "16.528 HBD" + "total_payouts": "16.538 HBD" }, { - "comments": 6, - "name": "affiliate", - "top_posts": 5, - "total_payouts": "16.514 HBD" + "comments": 47, + "name": "ru-steem", + "top_posts": 6, + "total_payouts": "16.530 HBD" }, { "comments": 15, "name": "challenge", "top_posts": 5, - "total_payouts": "16.478 HBD" + "total_payouts": "16.520 HBD" + }, + { + "comments": 6, + "name": "affiliate", + "top_posts": 5, + "total_payouts": "16.516 HBD" }, { "comments": 12, "name": "chiptune", "top_posts": 3, - "total_payouts": "16.425 HBD" - }, - { - "comments": 14, - "name": "promotion", - "top_posts": 4, - "total_payouts": "16.401 HBD" + "total_payouts": "16.478 HBD" }, { "comments": 1, "name": "freiheit", "top_posts": 11, - "total_payouts": "16.364 HBD" + "total_payouts": "16.371 HBD" }, { "comments": 4, "name": "steemitsignchallenge", "top_posts": 1, - "total_payouts": "16.203 HBD" + "total_payouts": "16.207 HBD" }, { "comments": 11, "name": "romance", "top_posts": 5, - "total_payouts": "16.190 HBD" - }, - { - "comments": 27, - "name": "courage", - "top_posts": 1, - "total_payouts": "16.164 HBD" + "total_payouts": "16.197 HBD" }, { "comments": 4, "name": "mytown", "top_posts": 1, - "total_payouts": "16.162 HBD" + "total_payouts": "16.185 HBD" }, { - "comments": 47, - "name": "ru-steem", - "top_posts": 6, - "total_payouts": "16.073 HBD" + "comments": 27, + "name": "courage", + "top_posts": 1, + "total_payouts": "16.168 HBD" }, { "comments": 51, "name": "it-steem", "top_posts": 7, - "total_payouts": "16.017 HBD" + "total_payouts": "16.087 HBD" }, { "comments": 21, "name": "robots", "top_posts": 7, - "total_payouts": "15.872 HBD" + "total_payouts": "15.963 HBD" }, { "comments": 83, "name": "steemit-abuse", "top_posts": 3, - "total_payouts": "15.806 HBD" + "total_payouts": "15.881 HBD" }, { "comments": 99, "name": "magiceyechallenge", "top_posts": 4, - "total_payouts": "15.798 HBD" + "total_payouts": "15.877 HBD" }, { "comments": 3, @@ -771,37 +771,37 @@ "comments": 1, "name": "assetbasedcommunitydevelopment", "top_posts": 1, - "total_payouts": "15.573 HBD" + "total_payouts": "15.578 HBD" }, { - "comments": 2, - "name": "hiatus", + "comments": 29, + "name": "studying", "top_posts": 1, - "total_payouts": "15.493 HBD" + "total_payouts": "15.500 HBD" }, { - "comments": 29, - "name": "studying", + "comments": 2, + "name": "hiatus", "top_posts": 1, - "total_payouts": "15.445 HBD" + "total_payouts": "15.493 HBD" }, { "comments": 6, "name": "princess", "top_posts": 2, - "total_payouts": "15.439 HBD" + "total_payouts": "15.456 HBD" }, { "comments": 10, "name": "steemlife", "top_posts": 8, - "total_payouts": "15.370 HBD" + "total_payouts": "15.380 HBD" }, { "comments": 2, "name": "freetheareola", "top_posts": 1, - "total_payouts": "15.186 HBD" + "total_payouts": "15.188 HBD" }, { "comments": 2, @@ -815,24 +815,36 @@ "top_posts": 1, "total_payouts": "15.048 HBD" }, + { + "comments": 30, + "name": "rip", + "top_posts": 3, + "total_payouts": "14.985 HBD" + }, { "comments": 5, "name": "beekeepering", "top_posts": 1, "total_payouts": "14.932 HBD" }, - { - "comments": 30, - "name": "rip", - "top_posts": 3, - "total_payouts": "14.924 HBD" - }, { "comments": 4, "name": "humblebundle", "top_posts": 1, "total_payouts": "14.906 HBD" }, + { + "comments": 17, + "name": "human", + "top_posts": 4, + "total_payouts": "14.785 HBD" + }, + { + "comments": 10, + "name": "american", + "top_posts": 6, + "total_payouts": "14.763 HBD" + }, { "comments": 0, "name": "socialismsucks", @@ -845,23 +857,11 @@ "top_posts": 1, "total_payouts": "14.743 HBD" }, - { - "comments": 17, - "name": "human", - "top_posts": 4, - "total_payouts": "14.734 HBD" - }, - { - "comments": 10, - "name": "american", - "top_posts": 6, - "total_payouts": "14.716 HBD" - }, { "comments": 22, "name": "political", "top_posts": 13, - "total_payouts": "14.682 HBD" + "total_payouts": "14.686 HBD" }, { "comments": 3, @@ -869,6 +869,12 @@ "top_posts": 1, "total_payouts": "14.469 HBD" }, + { + "comments": 85, + "name": "finance", + "top_posts": 34, + "total_payouts": "14.364 HBD" + }, { "comments": 0, "name": "pt", @@ -879,79 +885,67 @@ "comments": 9, "name": "multi-rotors", "top_posts": 1, - "total_payouts": "14.212 HBD" - }, - { - "comments": 85, - "name": "finance", - "top_posts": 34, - "total_payouts": "14.155 HBD" + "total_payouts": "14.255 HBD" }, { "comments": 20, "name": "begging", "top_posts": 1, - "total_payouts": "14.073 HBD" + "total_payouts": "14.080 HBD" }, { "comments": 4, "name": "forgottenhistory", "top_posts": 1, - "total_payouts": "13.827 HBD" + "total_payouts": "13.757 HBD" }, { "comments": 6, "name": "ransomware", "top_posts": 2, - "total_payouts": "13.629 HBD" + "total_payouts": "13.632 HBD" }, { "comments": 5, "name": "wrestling", "top_posts": 3, - "total_payouts": "13.595 HBD" + "total_payouts": "13.598 HBD" }, { "comments": 21, "name": "housedecor", "top_posts": 1, - "total_payouts": "13.529 HBD" + "total_payouts": "13.582 HBD" }, { "comments": 4, "name": "philsophy", "top_posts": 1, - "total_payouts": "13.467 HBD" + "total_payouts": "13.409 HBD" }, { - "comments": 18, - "name": "japan", - "top_posts": 11, - "total_payouts": "13.263 HBD" + "comments": 68, + "name": "dots", + "top_posts": 31, + "total_payouts": "13.237 HBD" }, { "comments": 10, "name": "ja-blockchain", "top_posts": 13, - "total_payouts": "13.172 HBD" - }, - { - "comments": 68, - "name": "dots", - "top_posts": 31, - "total_payouts": "13.150 HBD" + "total_payouts": "13.105 HBD" }, { "comments": 13, "name": "dadbod", "top_posts": 1, - "total_payouts": "12.936 HBD" + "total_payouts": "12.944 HBD" }, { "comments": 12, "name": "swagsunday", "top_posts": 1, - "total_payouts": "12.864 HBD" + "total_payouts": "12.911 HBD" }, { "comments": 4, @@ -963,43 +957,49 @@ "comments": 20, "name": "seasteading", "top_posts": 2, - "total_payouts": "12.562 HBD" + "total_payouts": "12.781 HBD" }, { "comments": 7, "name": "subconscious", "top_posts": 1, - "total_payouts": "12.385 HBD" + "total_payouts": "12.533 HBD" + }, + { + "comments": 63, + "name": "introduce", + "top_posts": 42, + "total_payouts": "12.481 HBD" }, { "comments": 9, "name": "steemspot", "top_posts": 1, - "total_payouts": "12.358 HBD" + "total_payouts": "12.375 HBD" }, { - "comments": 63, - "name": "introduce", - "top_posts": 42, - "total_payouts": "12.345 HBD" + "comments": 60, + "name": "outdoors", + "top_posts": 3, + "total_payouts": "12.368 HBD" }, { "comments": 7, "name": "pschology", "top_posts": 1, - "total_payouts": "12.298 HBD" + "total_payouts": "12.311 HBD" }, { "comments": 13, "name": "tribute", "top_posts": 1, - "total_payouts": "12.289 HBD" + "total_payouts": "12.299 HBD" }, { - "comments": 60, - "name": "outdoors", - "top_posts": 3, - "total_payouts": "12.246 HBD" + "comments": 18, + "name": "japan", + "top_posts": 11, + "total_payouts": "12.249 HBD" }, { "comments": 1, @@ -1007,59 +1007,65 @@ "top_posts": 1, "total_payouts": "12.241 HBD" }, - { - "comments": 41, - "name": "promote", - "top_posts": 6, - "total_payouts": "12.125 HBD" - }, { "comments": 22, "name": "blackjintrader", "top_posts": 7, - "total_payouts": "12.109 HBD" + "total_payouts": "12.210 HBD" + }, + { + "comments": 41, + "name": "promote", + "top_posts": 6, + "total_payouts": "12.195 HBD" }, { "comments": 10, "name": "star", "top_posts": 4, - "total_payouts": "12.060 HBD" + "total_payouts": "12.089 HBD" }, { "comments": 15, "name": "yinyang", "top_posts": 3, - "total_payouts": "12.040 HBD" - }, - { - "comments": 13, - "name": "homesteading", - "top_posts": 5, - "total_payouts": "11.782 HBD" + "total_payouts": "12.062 HBD" }, { "comments": 29, "name": "steemit-update", "top_posts": 1, - "total_payouts": "11.777 HBD" + "total_payouts": "11.951 HBD" }, { - "comments": 0, - "name": "cybernetics", - "top_posts": 1, - "total_payouts": "11.762 HBD" + "comments": 108, + "name": "investment", + "top_posts": 43, + "total_payouts": "11.861 HBD" + }, + { + "comments": 13, + "name": "homesteading", + "top_posts": 5, + "total_payouts": "11.824 HBD" }, { "comments": 30, "name": "pokemon", "top_posts": 43, - "total_payouts": "11.715 HBD" + "total_payouts": "11.785 HBD" + }, + { + "comments": 0, + "name": "cybernetics", + "top_posts": 1, + "total_payouts": "11.766 HBD" }, { "comments": 18, "name": "bioinformatics", "top_posts": 1, - "total_payouts": "11.643 HBD" + "total_payouts": "11.703 HBD" }, { "comments": 3, @@ -1071,43 +1077,43 @@ "comments": 70, "name": "streemian", "top_posts": 2, - "total_payouts": "11.553 HBD" + "total_payouts": "11.563 HBD" }, { "comments": 15, "name": "france", "top_posts": 13, - "total_payouts": "11.533 HBD" - }, - { - "comments": 108, - "name": "investment", - "top_posts": 43, - "total_payouts": "11.493 HBD" + "total_payouts": "11.563 HBD" }, { "comments": 15, "name": "excercise", "top_posts": 1, - "total_payouts": "11.420 HBD" + "total_payouts": "11.444 HBD" + }, + { + "comments": 19, + "name": "newyork", + "top_posts": 5, + "total_payouts": "11.384 HBD" }, { "comments": 20, "name": "wow", "top_posts": 3, - "total_payouts": "11.305 HBD" + "total_payouts": "11.308 HBD" }, { "comments": 39, "name": "christianity", "top_posts": 13, - "total_payouts": "11.036 HBD" + "total_payouts": "11.065 HBD" }, { "comments": 6, "name": "topless", "top_posts": 1, - "total_payouts": "11.005 HBD" + "total_payouts": "11.009 HBD" }, { "comments": 0, @@ -1115,41 +1121,47 @@ "top_posts": 1, "total_payouts": "10.913 HBD" }, + { + "comments": 131, + "name": "usersummary", + "top_posts": 2, + "total_payouts": "10.816 HBD" + }, { "comments": 4, "name": "eth", "top_posts": 5, - "total_payouts": "10.729 HBD" + "total_payouts": "10.736 HBD" }, { "comments": 5, "name": "artificialintelligence", "top_posts": 2, - "total_payouts": "10.619 HBD" - }, - { - "comments": 131, - "name": "usersummary", - "top_posts": 2, - "total_payouts": "10.533 HBD" + "total_payouts": "10.638 HBD" }, { "comments": 18, "name": "handmade", "top_posts": 5, - "total_payouts": "10.475 HBD" + "total_payouts": "10.487 HBD" }, { "comments": 12, "name": "rape", "top_posts": 4, - "total_payouts": "10.378 HBD" + "total_payouts": "10.386 HBD" + }, + { + "comments": 5, + "name": "steemit-new", + "top_posts": 1, + "total_payouts": "10.352 HBD" }, { "comments": 31, "name": "mystery", "top_posts": 10, - "total_payouts": "10.277 HBD" + "total_payouts": "10.329 HBD" }, { "comments": 1, @@ -1157,17 +1169,11 @@ "top_posts": 1, "total_payouts": "10.246 HBD" }, - { - "comments": 5, - "name": "steemit-new", - "top_posts": 1, - "total_payouts": "10.205 HBD" - }, { "comments": 19, "name": "sunset", "top_posts": 7, - "total_payouts": "10.013 HBD" + "total_payouts": "10.048 HBD" }, { "comments": 12, @@ -1185,43 +1191,61 @@ "comments": 13, "name": "diving", "top_posts": 1, - "total_payouts": "9.782 HBD" + "total_payouts": "9.801 HBD" + }, + { + "comments": 26, + "name": "biohacking", + "top_posts": 10, + "total_payouts": "9.695 HBD" }, { "comments": 25, "name": "russia", "top_posts": 13, - "total_payouts": "9.542 HBD" + "total_payouts": "9.575 HBD" }, { "comments": 14, "name": "changemakers", "top_posts": 2, - "total_payouts": "9.534 HBD" + "total_payouts": "9.545 HBD" }, { "comments": 3, "name": "handcraft", "top_posts": 1, - "total_payouts": "9.415 HBD" + "total_payouts": "9.416 HBD" }, { "comments": 2, "name": "conundrum", "top_posts": 1, - "total_payouts": "9.376 HBD" + "total_payouts": "9.388 HBD" + }, + { + "comments": 65, + "name": "facebook", + "top_posts": 36, + "total_payouts": "9.363 HBD" }, { "comments": 5, "name": "motorcycle", "top_posts": 2, - "total_payouts": "9.344 HBD" + "total_payouts": "9.350 HBD" + }, + { + "comments": 64, + "name": "harassment", + "top_posts": 3, + "total_payouts": "9.321 HBD" }, { "comments": 9, "name": "ghosts", "top_posts": 3, - "total_payouts": "9.284 HBD" + "total_payouts": "9.289 HBD" }, { "comments": 4, @@ -1229,29 +1253,29 @@ "top_posts": 1, "total_payouts": "9.256 HBD" }, - { - "comments": 65, - "name": "facebook", - "top_posts": 36, - "total_payouts": "9.220 HBD" - }, { "comments": 0, "name": "bittrex", "top_posts": 3, - "total_payouts": "9.182 HBD" + "total_payouts": "9.201 HBD" }, { "comments": 0, "name": "poor", "top_posts": 1, - "total_payouts": "9.179 HBD" + "total_payouts": "9.189 HBD" }, { "comments": 0, "name": "preciousmoments", "top_posts": 1, - "total_payouts": "9.071 HBD" + "total_payouts": "9.075 HBD" + }, + { + "comments": 20, + "name": "norway", + "top_posts": 8, + "total_payouts": "9.067 HBD" }, { "comments": 7, @@ -1259,12 +1283,6 @@ "top_posts": 1, "total_payouts": "9.051 HBD" }, - { - "comments": 19, - "name": "newyork", - "top_posts": 5, - "total_payouts": "9.041 HBD" - }, { "comments": 9, "name": "opencv", @@ -1278,40 +1296,40 @@ "total_payouts": "9.023 HBD" }, { - "comments": 64, - "name": "harassment", + "comments": 8, + "name": "insurance", "top_posts": 3, - "total_payouts": "8.954 HBD" + "total_payouts": "8.975 HBD" }, { - "comments": 20, - "name": "norway", - "top_posts": 8, - "total_payouts": "8.947 HBD" + "comments": 50, + "name": "silverbugs", + "top_posts": 3, + "total_payouts": "8.912 HBD" }, { "comments": 5, "name": "climatechange", "top_posts": 3, - "total_payouts": "8.902 HBD" + "total_payouts": "8.912 HBD" }, { - "comments": 8, - "name": "insurance", - "top_posts": 3, - "total_payouts": "8.833 HBD" + "comments": 26, + "name": "humanity", + "top_posts": 11, + "total_payouts": "8.657 HBD" }, { - "comments": 50, - "name": "silverbugs", - "top_posts": 3, - "total_payouts": "8.730 HBD" + "comments": 16, + "name": "puzzle", + "top_posts": 8, + "total_payouts": "8.522 HBD" }, { - "comments": 26, - "name": "humanity", - "top_posts": 11, - "total_payouts": "8.633 HBD" + "comments": 10, + "name": "recommended", + "top_posts": 3, + "total_payouts": "8.501 HBD" }, { "comments": 1, @@ -1325,65 +1343,47 @@ "top_posts": 1, "total_payouts": "8.483 HBD" }, - { - "comments": 16, - "name": "puzzle", - "top_posts": 8, - "total_payouts": "8.413 HBD" - }, { "comments": 2, "name": "nonfiction", "top_posts": 1, "total_payouts": "8.408 HBD" }, - { - "comments": 10, - "name": "recommended", - "top_posts": 3, - "total_payouts": "8.407 HBD" - }, { "comments": 8, "name": "jail", "top_posts": 3, - "total_payouts": "8.362 HBD" + "total_payouts": "8.398 HBD" }, { "comments": 9, "name": "bass", "top_posts": 3, - "total_payouts": "8.289 HBD" + "total_payouts": "8.305 HBD" }, { "comments": 8, "name": "activism", "top_posts": 3, - "total_payouts": "8.175 HBD" - }, - { - "comments": 5, - "name": "coinsupply", - "top_posts": 1, - "total_payouts": "8.133 HBD" + "total_payouts": "8.206 HBD" }, { "comments": 34, "name": "follow", "top_posts": 7, - "total_payouts": "8.107 HBD" + "total_payouts": "8.153 HBD" }, { - "comments": 26, - "name": "biohacking", - "top_posts": 10, - "total_payouts": "8.100 HBD" + "comments": 5, + "name": "coinsupply", + "top_posts": 1, + "total_payouts": "8.133 HBD" }, { "comments": 20, "name": "tips", "top_posts": 17, - "total_payouts": "8.018 HBD" + "total_payouts": "8.071 HBD" }, { "comments": 1, @@ -1395,13 +1395,19 @@ "comments": 3, "name": "foodie", "top_posts": 1, - "total_payouts": "7.901 HBD" + "total_payouts": "7.906 HBD" }, { "comments": 58, "name": "memo", "top_posts": 3, - "total_payouts": "7.861 HBD" + "total_payouts": "7.867 HBD" + }, + { + "comments": 9, + "name": "introducingmyself", + "top_posts": 2, + "total_payouts": "7.864 HBD" }, { "comments": 8, @@ -1409,23 +1415,23 @@ "top_posts": 1, "total_payouts": "7.853 HBD" }, - { - "comments": 9, - "name": "introducingmyself", - "top_posts": 2, - "total_payouts": "7.809 HBD" - }, { "comments": 13, "name": "wedding", "top_posts": 9, "total_payouts": "7.768 HBD" }, + { + "comments": 20, + "name": "wallpapers", + "top_posts": 3, + "total_payouts": "7.689 HBD" + }, { "comments": 6, "name": "college101", "top_posts": 3, - "total_payouts": "7.674 HBD" + "total_payouts": "7.685 HBD" }, { "comments": 7, @@ -1433,35 +1439,35 @@ "top_posts": 5, "total_payouts": "7.662 HBD" }, - { - "comments": 20, - "name": "wallpapers", - "top_posts": 3, - "total_payouts": "7.617 HBD" - }, { "comments": 16, "name": "popular", "top_posts": 1, - "total_payouts": "7.561 HBD" + "total_payouts": "7.599 HBD" }, { "comments": 26, "name": "wordpress", "top_posts": 17, - "total_payouts": "7.524 HBD" + "total_payouts": "7.554 HBD" }, { "comments": 2, "name": "fantasyfootball", "top_posts": 1, - "total_payouts": "7.522 HBD" + "total_payouts": "7.529 HBD" }, { "comments": 5, "name": "childhood", "top_posts": 2, - "total_payouts": "7.497 HBD" + "total_payouts": "7.523 HBD" + }, + { + "comments": 7, + "name": "spirit", + "top_posts": 4, + "total_payouts": "7.461 HBD" }, { "comments": 0, @@ -1469,12 +1475,6 @@ "top_posts": 1, "total_payouts": "7.461 HBD" }, - { - "comments": 7, - "name": "spirit", - "top_posts": 4, - "total_payouts": "7.448 HBD" - }, { "comments": 1, "name": "vpn", diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index 51cb2151..abab639e 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -577,8 +577,6 @@ marks: - patterntest - - failing - - xfail # some tags have too many comments/top_posts, influences total_payouts (problem when post is deleted and recreated); once that is fixed rest of total_payouts can be slightly different includes: - !include common.yaml @@ -607,7 +605,9 @@ test_name: Hivemind condenser_api.get_trending_tags limit 250 patterns test marks: - - patterntest # there is random order in some elements of original answer + - patterntest # there is random order in some elements of original answer, not comparable to original due to ordering influenced by different pending payouts + - failing + - xfail # 4 categories different, in particular some fairly popular not present in original (to be investigated) includes: - !include common.yaml @@ -666,8 +666,6 @@ marks: - patterntest - - failing - - xfail # totally different post includes: - !include common.yaml @@ -697,8 +695,6 @@ marks: - patterntest - - failing - - xfail # totally different post includes: - !include common.yaml @@ -786,8 +782,6 @@ marks: - patterntest - - failing - - xfail # null result (super slow query response) includes: - !include common.yaml @@ -875,6 +869,8 @@ marks: - patterntest + - failing + - xfail # while this would be acceptable we should change it to invalid parameters over server error includes: - !include common.yaml @@ -928,6 +924,7 @@ extra_kwargs: method: "get_replies_by_last_update" directory: "condenser_api_patterns" + --- test_name: Hivemind condenser_api.get_replies_by_last_update limit 100 patterns test @@ -956,6 +953,7 @@ extra_kwargs: method: "get_replies_by_last_update_limit_100" directory: "condenser_api_patterns" + --- test_name: Hivemind condenser_api.get_replies_by_last_update no results patterns test @@ -984,6 +982,7 @@ extra_kwargs: method: "get_replies_by_last_update_no_results" directory: "condenser_api_patterns" + --- test_name: Hivemind condenser_api.get_replies_by_last_update over limit patterns test @@ -1013,6 +1012,7 @@ method: "get_replies_by_last_update_over_limit" directory: "condenser_api_patterns" error_response: true + --- test_name: Hivemind condenser_api.get_replies_by_last_update blank start author patterns test @@ -1101,13 +1101,12 @@ extra_kwargs: method: "get_discussions_by_author_before_date" directory: "condenser_api_patterns" + --- test_name: Hivemind condenser_api.get_discussions_by_author_before_date patterns test marks: - - patterntest - - xfail # should return empty set - no posts before 2009 - - failing + - patterntest # should return empty set - no posts before 2009 (to be investigated but works like original) includes: - !include common.yaml @@ -1131,6 +1130,7 @@ extra_kwargs: method: "get_discussions_by_author_before_date_no_results" directory: "condenser_api_patterns" + --- test_name: Hivemind condenser_api.get_discussions_by_author_before_date over limit patterns test @@ -1160,6 +1160,7 @@ method: "get_discussions_by_author_before_date_over_limit" directory: "condenser_api_patterns" error_response: true + --- test_name: Hivemind condenser_api.get_post_discussions_by_payout patterns test @@ -1188,11 +1189,14 @@ extra_kwargs: method: "get_post_discussions_by_payout" directory: "condenser_api_patterns" + --- test_name: Hivemind condenser_api.get_post_discussions_by_payout limit 20 test marks: - - patterntest + - patterntest # differences in pending payout make it incomparable with original + - failing + - xfail # wrong order, pending_payout_value (total actually, since it was just payout in old version) should be the key includes: - !include common.yaml @@ -1304,11 +1308,14 @@ extra_kwargs: method: "get_comment_discussions_by_payout" directory: "condenser_api_patterns" + --- test_name: Hivemind condenser_api.get_comment_discussions_by_payout limit 100 test marks: - - patterntest + - patterntest # differences in pending payout make it incomparable with original + - failing + - xfail # wrong order, pending_payout_value (total actually, since it was just payout in old version) should be the key includes: - !include common.yaml @@ -1332,6 +1339,7 @@ extra_kwargs: method: "get_comment_discussions_by_payout_limit_100" directory: "condenser_api_patterns" + --- test_name: Hivemind condenser_api.get_comment_discussions_by_payout no results test @@ -1424,11 +1432,11 @@ test_name: Hivemind condenser_api.get_blog invalid limit combination patterns test marks: - - patterntest + - patterntest # strange error - when limit exceeds the number of posts written by user it should return all posts - not error (to be investigated) includes: - !include common.yaml - # strange error - when limit exceeds the number of posts written by user it should return all posts - not error + stages: - name: get_blog invalid limit combination request: @@ -1542,6 +1550,8 @@ marks: - patterntest + - failing + - xfail # wrong response, should be clean error includes: - !include common.yaml @@ -1566,6 +1576,7 @@ method: "get_blog_non_existing" directory: "condenser_api_patterns" error_response: true + --- test_name: Hivemind condenser_api.get_blog too long account name test @@ -1595,6 +1606,7 @@ method: "get_blog_too_long_account_name" directory: "condenser_api_patterns" error_response: true + --- test_name: Hivemind condenser_api.get_blog invalid account test @@ -1624,6 +1636,7 @@ method: "get_blog_invalid_account_char" directory: "condenser_api_patterns" error_response: true + --- test_name: Hivemind condenser_api.get_blog_entries patterns test @@ -1717,8 +1730,6 @@ marks: - patterntest - - failing - - xfail # percent/time wrong for vote with rshares=0 (possibly same problem as in edited votes) includes: - !include common.yaml @@ -1742,11 +1753,12 @@ extra_kwargs: method: "get_active_votes" directory: "condenser_api_patterns" + --- test_name: Hivemind deprecated condenser_api.get_account_votes marks: - - patterntest + - patterntest # we should probably change response to link to hive instead of steemit includes: - !include common.yaml @@ -1771,6 +1783,7 @@ method: "get_account_votes_deprecated" directory: "condenser_api_patterns" error_response: true + --- # get_accounts should be based on fat node - posting_rewards and reputations are 0 on AH node test_name: Hivemind condenser_api.get_accounts with single account patterns test @@ -1802,11 +1815,14 @@ extra_kwargs: method: "get_accounts" directory: "condenser_api_patterns" + --- test_name: Hivemind condenser_api.get_accounts with multiple accounts patterns test marks: - patterntest + - failing + - xfail # server error (to be investigated) includes: - !include common.yaml @@ -1830,6 +1846,7 @@ extra_kwargs: method: "get_multiple_accounts" directory: "condenser_api_patterns" + --- test_name: Hivemind condenser_api.get_accounts with non existing account patterns test -- GitLab From 69da832d26979adf2a6c416ef35eeb1ef42c121e Mon Sep 17 00:00:00 2001 From: Marcin Ickiewicz Date: Wed, 26 Aug 2020 14:02:55 +0200 Subject: [PATCH 44/49] enable database_api tests with active param --- hivemind/tavern/test_database_api_patterns.tavern.yaml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/hivemind/tavern/test_database_api_patterns.tavern.yaml b/hivemind/tavern/test_database_api_patterns.tavern.yaml index 5e3eabe7..7618776e 100644 --- a/hivemind/tavern/test_database_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_database_api_patterns.tavern.yaml @@ -324,8 +324,6 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest # incomparable with original due to cashout_time differences - - failing - - xfail # active includes: - !include common.yaml @@ -360,8 +358,6 @@ test_name: Hivemind database_api.list_comments patterns test order "by_cashout_t marks: - patterntest # incomparable with original due to cashout_time differences (same pattern as in list_comments_by_cashout_first_date) - - failing - - xfail # active includes: - !include common.yaml @@ -397,8 +393,6 @@ test_name: Hivemind database_api.list_comments patterns test order "by_permlink" marks: - patterntest - - failing - - xfail # active includes: - !include common.yaml @@ -541,7 +535,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_root" goo marks: - patterntest - failing - - xfail # active, escaping + - xfail # escaping includes: - !include common.yaml @@ -900,7 +894,7 @@ test_name: Hivemind database_api.list_comments patterns test order "by_parent" n marks: - patterntest # first 2 params are required - failing - - xfail # active, title + - xfail # title includes: - !include common.yaml -- GitLab From d0e9739fd1debe574b05e46c1631e4a6ec6cbb76 Mon Sep 17 00:00:00 2001 From: Paulina Czempiel Date: Wed, 26 Aug 2020 14:43:01 +0200 Subject: [PATCH 45/49] tags_api tests --- ...nt_discussions_by_blog_author_tag.pat.json | 15313 ++++++++++++++++ ...ment_discussions_by_payout_author.pat.json | 2549 +++ ...ussions_by_payout_author_permlink.pat.json | 1061 ++ ...iscussions_by_payout_empty_result.pat.json | 1 + ...ent_discussions_by_payout_no_data.pat.json | 4860 +++++ ...scussions_by_payout_no_data_error.pat.json | 9 - ...ns_by_payout_not_allowed_category.pat.json | 65 + ...iscussions_by_payout_too_long_cat.pat.json | 33 + ...scussions_by_payout_truncate_body.pat.json | 196 + ...ions_by_author_before_date_author.pat.json | 4313 +++++ ...by_author_before_date_author_date.pat.json | 4313 +++++ ..._before_date_author_last_permlink.pat.json | 71 + ...uthor_before_date_author_permlink.pat.json | 538 + ..._before_date_author_permlink_date.pat.json | 1547 ++ .../get_discussions_by_blog.pat.json | 640 - .../get_discussions_by_blog_tag.pat.json | 1295 ++ ...discussions_by_payout_limit_error.pat.json | 5 + ..._discussions_by_payout_name_error.pat.json | 6 + ...scussions_by_payout_no_data_error.pat.json | 6 + ..._discussions_by_payout_type_error.pat.json | 5 + ...ons_by_payout_type_error_permlink.pat.json | 6 + ...ussions_by_payout_wrong_cat_space.pat.json | 5 + ...or_before_date_author_limit_error.pat.json | 6 + ...by_author_before_date_empty_error.pat.json | 5 + ..._discussions_by_blog_empty_params.pat.json | 5 + .../tavern/test_tags_api_patterns.tavern.yaml | 614 +- .../test_tags_api_patterns_error.tavern.yaml | 274 + 27 files changed, 37023 insertions(+), 718 deletions(-) create mode 100644 hivemind/tavern/tags_api_patterns/get_comment_discussions_by_blog_author_tag.pat.json create mode 100644 hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_author.pat.json create mode 100644 hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_author_permlink.pat.json create mode 100644 hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_empty_result.pat.json create mode 100644 hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_no_data.pat.json delete mode 100644 hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_no_data_error.pat.json create mode 100644 hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_not_allowed_category.pat.json create mode 100644 hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_too_long_cat.pat.json create mode 100644 hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_truncate_body.pat.json create mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author.pat.json create mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_date.pat.json create mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_last_permlink.pat.json create mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_permlink.pat.json create mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_permlink_date.pat.json delete mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_blog.pat.json create mode 100644 hivemind/tavern/tags_api_patterns/get_discussions_by_blog_tag.pat.json create mode 100644 hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_limit_error.pat.json create mode 100644 hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_name_error.pat.json create mode 100644 hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_no_data_error.pat.json create mode 100644 hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_type_error.pat.json create mode 100644 hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_type_error_permlink.pat.json create mode 100644 hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_wrong_cat_space.pat.json create mode 100644 hivemind/tavern/tags_api_patterns_error/get_discussions_by_author_before_date_author_limit_error.pat.json create mode 100644 hivemind/tavern/tags_api_patterns_error/get_discussions_by_author_before_date_empty_error.pat.json create mode 100644 hivemind/tavern/tags_api_patterns_error/get_discussions_by_blog_empty_params.pat.json create mode 100644 hivemind/tavern/test_tags_api_patterns_error.tavern.yaml diff --git a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_blog_author_tag.pat.json b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_blog_author_tag.pat.json new file mode 100644 index 00000000..f0327971 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_blog_author_tag.pat.json @@ -0,0 +1,15313 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "1874780865541", + "voter": "badassmother" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1119609451783", + "voter": "rossco99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "436285376612", + "voter": "boatymcboatface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "471861070092", + "voter": "noaommerrr" + }, + { + "percent": "2451", + "reputation": 0, + "rshares": "149600131307", + "voter": "eeks" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "50883585", + "voter": "paco-steem" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "608186674", + "voter": "spaninv" + }, + { + "percent": "300", + "reputation": 0, + "rshares": "1322805132", + "voter": "elishagh1" + }, + { + "percent": "6900", + "reputation": 0, + "rshares": "19501436994", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "805011668", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "706772487", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61609388537", + "voter": "theshell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61990198879", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "408600444540", + "voter": "taoteh1221" + }, + { + "percent": "7600", + "reputation": 0, + "rshares": "148541187074", + "voter": "will-zewe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1457742682", + "voter": "benthegameboy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19206879922", + "voter": "ziv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11270439714", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157752504300", + "voter": "derekareith" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "177916355236", + "voter": "knircky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "113191324", + "voter": "cynetyc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12093658011", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2721046472", + "voter": "dmacshady" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35750811292", + "voter": "creemej" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "348205520125", + "voter": "calaber24p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "696662789", + "voter": "kellywin21" + }, + { + "percent": "6900", + "reputation": 0, + "rshares": "82341369", + "voter": "pokemon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "77151506", + "voter": "sergey44" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3321675875", + "voter": "glitterpig" + }, + { + "percent": "2451", + "reputation": 0, + "rshares": "4151202120", + "voter": "gmurph" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95542105898", + "voter": "joele" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "238498810", + "voter": "sillygoon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "448103907", + "voter": "drzigfrid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "521878539", + "voter": "galamirissa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "378251153", + "voter": "wuyueling" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2920074727", + "voter": "netaterra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50971365", + "voter": "afsane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3265869929", + "voter": "funkywanderer" + }, + { + "percent": "2700", + "reputation": 0, + "rshares": "11767846258", + "voter": "sponge-bob" + }, + { + "percent": "2500", + "reputation": 0, + "rshares": "11755030873", + "voter": "brains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "143402540", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "283113914", + "voter": "robotev1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153411798", + "voter": "darkminded153" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "151445352", + "voter": "jameshowarrd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "160783130", + "voter": "laskovskiy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13291935309", + "voter": "goldmatters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155284607", + "voter": "sampullman" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "Podo - The First Stick and Shoot Camera: The Sequel\n\nhttps://www.youtube.com/watch?v=LPzaW35TLD8\n\nhttp://www.podolabs.com/", + "body_length": 122, + "cashout_time": "2016-10-13T21:03:06", + "category": "kickstarter", + "children": 0, + "created": "2016-09-12T20:37:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"kickstarter\",\"art\",\"photography\",\"news\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/LPzaW35TLD8\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=LPzaW35TLD8\",\"http:\\/\\/www.podolabs.com\\/\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-12T20:37:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5671918401751, + "parent_author": "", + "parent_permlink": "kickstarter", + "pending_payout_value": "3.214 HBD", + "percent_steem_dollars": 10000, + "permlink": "stick-and-shoot-camera-podo-product-of-the-day", + "post_id": 934061, + "promoted": "2.000 HBD", + "replies": [], + "root_title": "Stick and Shoot Camera: - Podo : Product of the day", + "title": "Stick and Shoot Camera: - Podo : Product of the day", + "total_payout_value": "0.000 HBD", + "url": "/kickstarter/@dragonho/stick-and-shoot-camera-podo-product-of-the-day" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "289492113145", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1874750741030", + "voter": "badassmother" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1119593813761", + "voter": "rossco99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4105574084101", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "436248503659", + "voter": "boatymcboatface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "295360862791", + "voter": "chitty" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "462222507119", + "voter": "noaommerrr" + }, + { + "percent": "2500", + "reputation": 0, + "rshares": "149593832076", + "voter": "eeks" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "50883585", + "voter": "paco-steem" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "608177517", + "voter": "spaninv" + }, + { + "percent": "300", + "reputation": 0, + "rshares": "1322797807", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "805000680", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "706765772", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61609388537", + "voter": "theshell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "416917790661", + "voter": "taoteh1221" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18639094123", + "voter": "samether" + }, + { + "percent": "6000", + "reputation": 0, + "rshares": "117959177970", + "voter": "will-zewe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15778753250", + "voter": "zakharya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "113384910439", + "voter": "geoffrey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1611560972", + "voter": "peezaroni" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10245866493", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11841706802", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4595759850", + "voter": "thegoodguy" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "886091840", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35749956725", + "voter": "creemej" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "43068132249", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18284917824", + "voter": "jennamarbles" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "3634612893", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3419329495", + "voter": "glitterpig" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "1838412900", + "voter": "taker" + }, + { + "percent": "2500", + "reputation": 0, + "rshares": "3968251870", + "voter": "gmurph" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3134919672", + "voter": "darrenturetzky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "745266281", + "voter": "romancs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95533500249", + "voter": "joele" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3239083423", + "voter": "blow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50545877", + "voter": "party1998" + }, + { + "percent": "6700", + "reputation": 0, + "rshares": "19829323186", + "voter": "kyriacos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "97300045615", + "voter": "serejandmyself" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "315209294", + "voter": "wuyueling" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1723458764", + "voter": "eight-rad" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "905142036", + "voter": "sponge-bob" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "904172107", + "voter": "brains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "143393994", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "296595529", + "voter": "robotev1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1040213617", + "voter": "jang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4363189634", + "voter": "airmike" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147920480", + "voter": "laskovskiy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "185189971", + "voter": "mexresorts" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "142935648", + "voter": "insight2incite" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "An airport t\u0435rm\u0456n\u0430l is a section \u0430t an airport where \u0440\u0430\u0455\u0455\u0435ng\u0435r\u0455 tr\u0430n\u0455f\u0435r b\u0435tw\u0435\u0435n gr\u043eund transportation \u0430nd th\u0435 f\u0430\u0441\u0456l\u0456t\u0456\u0435\u0455 th\u0430t allow them t\u043e board \u0430nd d\u0456\u0455\u0435mb\u0430rk fr\u043em aircraft. W\u0456th\u0456n th\u0435 t\u0435rm\u0456n\u0430l, ticket purchase, transfer of luggage is done through the security. \n\nSm\u0430ll\u0435r \u0430\u0456r\u0440\u043ert\u0455 h\u0430v\u0435 one terminal wh\u0456l\u0435 larger \u0430\u0456r\u0440\u043ert\u0455 have several t\u0435rm\u0456n\u0430l\u0455 \u0430nd/\u043er \u0441\u043en\u0441\u043eur\u0455\u0435\u0455. At \u0455m\u0430ll \u0430\u0456r\u0440\u043ert\u0455, th\u0435 single t\u0435rm\u0456n\u0430l bu\u0456ld\u0456ng typically serves \u0430ll \u043ef the fun\u0441t\u0456\u043en\u0455 of a t\u0435rm\u0456n\u0430l \u0430nd a \u0441\u043en\u0441\u043eur\u0455\u0435. \nS\u043em\u0435 l\u0430rg\u0435r airports h\u0430v\u0435 m\u043er\u0435 than \u043en\u0435 t\u0435rm\u0456n\u0430l, \u0435\u0430\u0441h with \u043en\u0435 \u043er more concourses (\u0455u\u0441h as New Y\u043erk'\u0455 J\u043ehn F. Kennedy International A\u0456r\u0440\u043ert). Still other larger airports have multiple t\u0435rm\u0456n\u0430l\u0455 \u0435\u0430\u0441h \u043ef which \u0456n\u0441\u043er\u0440\u043er\u0430t\u0435 the functions of a concourse\n\nP\u0430n Am W\u043erld\u0440\u043ert. V\u0456nt\u0430g\u0435 Ph\u043et\u043egr\u0430\u0440h of Idl\u0435w\u0456ld Airport, 1961. The m\u0430mm\u043eth f\u0430\u0441\u0456l\u0456t\u0443 n\u043ew known \u0430\u0455 John F. Kennedy Int\u0435rn\u0430t\u0456\u043en\u0430l A\u0456r\u0440\u043ert (JFK) was once kn\u043ewn \u0430\u0455 Idlewild Airport. Originally P\u0430n Am'\u0455 Worldport at Idl\u0435w\u0456ld, bu\u0456lt \u0456n 1960 (terminal 3 at JFK) - famous f\u043er \u0456t\u0455 4-acre \"flying \u0455\u0430u\u0441\u0435r\" r\u043e\u043ef \u0455u\u0455\u0440\u0435nd\u0435d f\u0430r fr\u043em the outside columns \u043ef th\u0435 t\u0435rm\u0456n\u0430l \n\n\n\n\nP\u0430n Am W\u043erld\u0440\u043ert, Terminal 3 \u0430t J\u043ehn F. K\u0435nn\u0435d\u0443 International A\u0456r\u0440\u043ert - Iv\u0435\u0455, Tur\u0430n\u043e & Gardner (1960) - Ceased \u043e\u0440\u0435r\u0430t\u0456\u043en\u0455 \u0430nd demolished in 2013. \n\nhttps://www.youtube.com/watch?v=Ueh6O2oM2aU\n\nIt wasn\u2019t a \u0455t\u0430g\u0435 \u0455\u0435t. W\u0435ll, \u0456t w\u0430\u0455, but \u0456t w\u0430\u0455 based \u043en something v\u0435r\u0443 real: th\u0435 \u0455tru\u0441tur\u0435 built by Pan Am in 1960 t\u043e \u0430\u0441\u0441\u043emm\u043ed\u0430t\u0435 the n\u0435w B\u043e\u0435\u0456ng 707 j\u0435t\u0455 th\u0430t w\u0435r\u0435 just th\u0435n \u0441\u043em\u0456ng into service. P\u0430n Am \u0441\u0430ll\u0435d th\u0435 terminal, wh\u0456\u0441h many \u0440\u0435\u043e\u0440l\u0435 h\u0430v\u0435 likened t\u043e a flying saucer, the W\u043erld\u0440\u043ert, a n\u0430m\u0435 th\u0430t \u0456t\u0455\u0435lf \u0441\u043enjur\u0435\u0455 u\u0440 a certain \u0456nn\u043e\u0441\u0435nt gu\u0455t\u043e. If the d\u0435\u0455\u0456gn, b\u0443 the firm of Tippets Abbott M\u0441C\u0430rth\u0443 \u0430nd Str\u0430tt\u043en, w\u0430\u0455n\u2019t \u0430\u0455 \u0455\u043e\u0440h\u0456\u0455t\u0456\u0441\u0430t\u0435d as E\u0435r\u043e S\u0430\u0430r\u0456n\u0435n\u2019\u0455 TWA T\u0435rm\u0456n\u0430l a f\u0435w hundred yards away\u2014surely one \u043ef the gr\u0435\u0430t buildings \u043ef \u0456t\u0455 \u0435r\u0430, transportation hub \u043er \u043eth\u0435rw\u0456\u0455\u0435\u2014th\u0435 Pan Am terminal w\u0430\u0455 th\u0435 second-best piece \u043ef architecture at JFK, and \u0456n some ways it captured th\u0435 f\u0435\u0435l\u0456ng \u043ef the m\u043em\u0435nt m\u043er\u0435 d\u0456r\u0435\u0441tl\u0443. Th\u0456\u0455 n\u0435w jet \u0455tuff was g\u043e\u0456ng t\u043e b\u0435 great. Wh\u043e n\u0435\u0435d\u0435d long, dr\u0435\u0430r\u0443 \u0441\u043en\u0441\u043eur\u0455\u0435\u0455? Mu\u0441h m\u043er\u0435 fun t\u043e arrange th\u0435 \u0440l\u0430n\u0435\u0455 \u0456n a circle, their n\u043e\u0455\u0435\u0455 poking und\u0435r a hug\u0435 \u0441\u043en\u0441r\u0435t\u0435 umbr\u0435ll\u0430 roof, and l\u0435t \u0430ll the passengers hang around the m\u0456ddl\u0435 l\u0456k\u0435 it was \u0430ll a b\u0456g party. \n\nTh\u0435 party, \u0455u\u0441h \u0430\u0455 \u0456t w\u0430\u0455, \u0435nd\u0435d a very l\u043eng time \u0430g\u043e, but th\u0435 bu\u0456ld\u0456ng hung \u043en, l\u043e\u043ek\u0456ng \u0456n\u0441r\u0435\u0430\u0455\u0456ngl\u0443 th\u0435 worse f\u043er w\u0435\u0430r with every \u0440\u0430\u0455\u0455\u0456ng year. Since P\u0430n Am w\u0435nt b\u0430nkru\u0440t, \u0456n 1991, th\u0435 t\u0435rm\u0456n\u0430l h\u0430\u0455 b\u0435\u0435n u\u0455\u0435d b\u0443 Delta, wh\u0456\u0441h br\u0456\u0435fl\u0443 renamed \u0456t th\u0435 Delta Fl\u0456ght Center, th\u043eugh \u0456t\u2019\u0455 m\u043er\u0435 often r\u0435f\u0435rr\u0435d t\u043e \u0455\u0456m\u0440l\u0443 as T\u0435rm\u0456n\u0430l 3. D\u0435lt\u0430 recently m\u043ev\u0435d \u0456t\u0455 \u043e\u0440\u0435r\u0430t\u0456\u043en\u0455 n\u0435xt d\u043e\u043er t\u043e th\u0435 \u0435\u051bu\u0430ll\u0443 bl\u0430ndl\u0443 n\u0430m\u0435d Terminal 4, \u0430nd the P\u043ert Auth\u043er\u0456t\u0443 of N\u0435w Y\u043erk \u0430nd N\u0435w Jersey, wh\u0456\u0441h \u0441\u043entr\u043el\u0455 th\u0435 \u0430\u0456r\u0440\u043ert, has \u0430nn\u043eun\u0441\u0435d \u0456t\u0455 \u0456nt\u0435nt\u0456\u043en t\u043e demolish the W\u043erld\u0440\u043ert\u2014n\u043et t\u043e bu\u0456ld a n\u0435w t\u0435rm\u0456n\u0430l, which m\u0456ght be und\u0435r\u0455t\u0430nd\u0430bl\u0435, but t\u043e \u0430ll\u043ew for more r\u043e\u043em f\u043er \u0430\u0456r\u0441r\u0430ft \u0440\u0430rk\u0456ng. \n\nA little m\u043er\u0435 background h\u0435r\u0435. It\u2019\u0455 indisputable that th\u0435 Worldport n\u0435v\u0435r w\u043erk\u0435d v\u0435r\u0443 well. It w\u0430\u0455 mu\u0441h too small, \u0430m\u043eng \u0456t\u0455 other functional fl\u0430w\u0455, \u0430nd for \u0430ll the engineering d\u0430r\u0456ng \u043ef its spectacular \u0441\u0430nt\u0456l\u0435v\u0435r\u0435d \u0441\u043en\u0441r\u0435t\u0435 r\u043e\u043ef, \u0456t really d\u0456d h\u0430v\u0435 a certain n\u0430\u00efv\u0435 \u051bu\u0430l\u0456t\u0443. And tr\u0443 expanding a r\u043eund bu\u0456ld\u0456ng. A few \u0443\u0435\u0430r\u0455 after th\u0435 building was finished, P\u0430n Am br\u043eught the \u0430r\u0441h\u0456t\u0435\u0441t\u0455 b\u0430\u0441k to d\u0435\u0455\u0456gn an addition roughly twice \u0430\u0455 b\u0456g as th\u0435 original building, wh\u0456\u0441h turn\u0435d \u043eut t\u043e b\u0435 one of th\u0435 w\u043er\u0455t\u2014m\u0430\u0443b\u0435 th\u0435 very worst\u2014airport bu\u0456ld\u0456ng\u0455 \u0455\u0456n\u0441\u0435 th\u0435 dawn \u043ef jet tr\u0430v\u0435l. I don\u2019t know wh\u0435th\u0435r Juan Tr\u0456\u0440\u0440\u0435, P\u0430n Am\u2019\u0455 legendary f\u043eund\u0435r, t\u043eld th\u0435 \u0430r\u0441h\u0456t\u0435\u0441t\u0455 that th\u0435\u0443 h\u0430dn\u2019t b\u0435\u0435n serious \u0435n\u043eugh \u0456n th\u0435 \u043er\u0456g\u0456n\u0430l bu\u0456ld\u0456ng, but th\u0435 \u0430dd\u0456t\u0456\u043en l\u043e\u043ek\u0455 l\u0456k\u0435 \u0456t w\u0430\u0455 designed t\u043e crush every b\u0456t \u043ef th\u0435 \u0435xub\u0435r\u0430n\u0441\u0435 that makes th\u0435 1960 structure \u0455\u043e enticing. It \u0456\u0455 heavy \u0430nd \u0441lunk\u0443 and \u0455\u0440r\u0430wl\u0456ng, where th\u0435 original building w\u0430\u0455 l\u0456ght \u0430nd \u0430\u0456r\u0443 \u0430nd \u0441\u043em\u0440\u0430\u0441t. In\u0455\u0456d\u0435, th\u0435 addition feels l\u0456k\u0435 an \u043ev\u0435rbl\u043ewn subway \u0455t\u0430t\u0456\u043en, \u0435x\u0441\u0435\u0440t that \u0455\u043em\u0435 \u0455ubw\u0430\u0443 \u0455t\u0430t\u0456\u043en\u0455 \u0430r\u0435 n\u0456\u0441\u0435r. Th\u0435 \u0430rr\u0456v\u0430l\u0455 l\u0435v\u0435l \u0456\u0455 \u0440\u0430rt\u0456\u0441ul\u0430rl\u0443 harsh. Y\u043eu th\u0456nk \u0443\u043eu\u2019v\u0435 l\u0430nd\u0435d \u0456n Eastern Europe, n\u043et New Y\u043erk. \n\nAnd h\u0456\u0455t\u043er\u0456\u0441 \u0440r\u0435\u0455\u0435rv\u0430t\u0456\u043en at J.F.K. has a m\u0456x\u0435d tr\u0430\u0441k record at b\u0435\u0455t. While th\u0435 P\u043ert Auth\u043er\u0456t\u0443 d\u0456d \u0430gr\u0435\u0435 t\u043e save th\u0435 TWA T\u0435rm\u0456n\u0430l\u2014\u0456t w\u043euld h\u0430v\u0435 been un\u0441\u043en\u0455\u0441\u0456\u043en\u0430bl\u0435 not t\u043e\u2014th\u0430t building still l\u0430\u0441k\u0455 a w\u043erk\u0430bl\u0435 \u0440l\u0430n f\u043er a n\u0435w use, \u0443\u0435\u0430r\u0455 \u0430ft\u0435r \u0456t \u0441\u0435\u0430\u0455\u0435d b\u0435\u0456ng used \u0430\u0455 a t\u0435rm\u0456n\u0430l. L\u0456k\u0435 th\u0435 Worldport, TWA is unw\u043erk\u0430bl\u0435 as a m\u043ed\u0435rn airport t\u0435rm\u0456n\u0430l. Both bu\u0456ld\u0456ng\u0455 \u0430r\u0435 t\u0456n\u0443 b\u0443 today\u2019s standards, \u0430nd th\u0435r\u0435\u2019\u0455 no \u0440l\u0430\u0441\u0435 for \u0455\u0435\u0441ur\u0456t\u0443 \u0435\u051bu\u0456\u0440m\u0435nt except \u0456n th\u0435 m\u0456ddl\u0435 \u043ef the \u0455\u0440\u0430\u0441\u0435, wh\u0435r\u0435 \u0456t \u043ebl\u0456t\u0435r\u0430t\u0435\u0455 any sense \u043ef th\u0435 architecture. But their \u0455m\u0430ll \u0455\u0456z\u0435 \u0430l\u0455\u043e m\u0435\u0430n\u0455 th\u0430t they d\u043en\u2019t t\u0430k\u0435 u\u0440 \u0430ll th\u0430t mu\u0441h r\u0435\u0430l estate, \u0430nd th\u0435\u0443 ought to b\u0435 u\u0455\u0430bl\u0435 \u0430\u0455 something \u043eth\u0435r than \u0430\u0455 \u0440l\u0430\u0441\u0435\u0455 where \u0440\u0435\u043e\u0440l\u0435 get \u043en \u0430nd \u043eff \u0430\u0456r\u0440l\u0430n\u0435\u0455\u2014\u0430\u0455 r\u0435\u0455t\u0430ur\u0430nt\u0455 \u0430nd \u0455h\u043e\u0440\u0455, \u0455\u0430\u0443, or \u0430\u0455 a mu\u0455\u0435um. \nhttps://www.youtube.com/watch?v=m7pDpRMyp8c\n\nL\u0430\u0455t year, th\u0435 P\u043ert Authority t\u043er\u0435 d\u043ewn th\u0435 th\u0456rd-b\u0435\u0455t \u0440\u0456\u0435\u0441\u0435 \u043ef architecture at J.F.K., th\u0435 terminal I.M. P\u0435\u0456 d\u0435\u0455\u0456gn\u0435d for National A\u0456rl\u0456n\u0435\u0455 \u0456n 1970. It w\u0430\u0455 \u0441\u0430ll\u0435d th\u0435 Sundr\u043em\u0435, \u0430nd \u0456n \u0456t\u0455 early \u0443\u0435\u0430r\u0455, b\u0435f\u043er\u0435 m\u043ed\u0456f\u0456\u0441\u0430t\u0456\u043en\u0455, it w\u0430\u0455 an \u0435l\u0435g\u0430nt masterwork \u043ef \u0441\u043en\u0441r\u0435t\u0435 and gl\u0430\u0455\u0455. It too h\u0430d b\u0435\u0435n vacant since its m\u043e\u0455t r\u0435\u0441\u0435nt t\u0435n\u0430nt, J\u0435t Blu\u0435, d\u0435\u0441\u0430m\u0440\u0435d f\u043er a n\u0435w terminal \u0456n 2008. But f\u043er all \u0456t\u0455 \u0430r\u0441h\u0456t\u0435\u0441tur\u0430l \u051bu\u0430l\u0456t\u0443, th\u0435 P\u0435\u0456 building h\u0430d n\u043en\u0435 \u043ef the sexiness of th\u0435 W\u043erld\u0440\u043ert. And National Airlines, which, \u0456r\u043en\u0456\u0441\u0430ll\u0443, was taken \u043ev\u0435r by P\u0430n Am \u0456n 1980, n\u0435v\u0435r h\u0430d the \u0430llur\u0435 of th\u0435 latter \u0441\u043em\u0440\u0430n\u0443\u2014\u0456n \u0456t\u0455 day the m\u043e\u0455t glamorous \u0430\u0456rl\u0456n\u0435 th\u0430t \u0435v\u0435r w\u0430\u0455. Th\u0435 Worldport w\u0430\u0455 its home b\u0430\u0455\u0435, a r\u0435l\u0456\u0441 of a t\u0456m\u0435 wh\u0435n th\u0435 United St\u0430t\u0435\u0455 set th\u0435 tone. \n\n \u201cTh\u0435 \u043eld P\u0430n Am Worldport terminal at J.F.K. \u0455\u0435rv\u0435d this r\u0435g\u0456\u043en for more than a half \u0441\u0435ntur\u0443, but \u0456\u0455 obsolete f\u043er 21\u0455t-\u0441\u0435ntur\u0443 aviation \u0440ur\u0440\u043e\u0455\u0435\u0455,\u201d said R\u043en Marsico, a spokesman f\u043er the authority. \u201cUnf\u043ertun\u0430t\u0435l\u0443, J.F.K. is a land-constrained airport, \u0430nd the space wh\u0435r\u0435 Worldport \u0456\u0455 l\u043e\u0441\u0430t\u0435d \u0441\u0430nn\u043et b\u0435 \u0455\u0435t aside f\u043er preservation because it is n\u0435\u0435d\u0435d f\u043er \u043eth\u0435r \u0430v\u0456\u0430t\u0456\u043en u\u0455\u0435\u0455 th\u0430t will l\u0435\u0430d to job creation and economic growth.\u201d", + "body_length": 6025, + "cashout_time": "2016-10-13T20:05:09", + "category": "travel", + "children": 0, + "created": "2016-09-12T19:47:33", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"travel\",\"history\",\"education\",\"jetage\",\"\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/Ueh6O2oM2aU\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/m7pDpRMyp8c\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=Ueh6O2oM2aU\",\"https:\\/\\/www.youtube.com\\/watch?v=m7pDpRMyp8c\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-12T19:50:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 9849763903313, + "parent_author": "", + "parent_permlink": "travel", + "pending_payout_value": "8.129 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-jet-age-of-yesterday-glamorous-times-to-fly", + "post_id": 933614, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "The Jet Age of yesterday, glamorous times to fly....", + "title": "The Jet Age of yesterday, glamorous times to fly....", + "total_payout_value": "0.000 HBD", + "url": "/travel/@dragonho/the-jet-age-of-yesterday-glamorous-times-to-fly" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "1873946572969", + "voter": "badassmother" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1119290177600", + "voter": "rossco99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5113121585969", + "voter": "steemit200" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3726559057", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4524563442", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "821036287", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66101090086", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1996727042", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "256577770", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "445664317985", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "432789465102", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "750187076323", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "107562654367", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1813913350", + "voter": "bingo-1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "435366531816", + "voter": "boatymcboatface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "750185979", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1168123027", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129026210457", + "voter": "team" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "346070380", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "423647307211", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "83489851150", + "voter": "acidsun" + }, + { + "percent": "3109", + "reputation": 0, + "rshares": "194401505328", + "voter": "eeks" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "50878979", + "voter": "paco-steem" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "612689764", + "voter": "spaninv" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "8672166438", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651505039551", + "voter": "nanzo-scoop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "206016931896", + "voter": "mummyimperfect" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "982799520", + "voter": "coar" + }, + { + "percent": "666", + "reputation": 0, + "rshares": "353367913", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "214568023513", + "voter": "dragonslayer109" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "68637687828", + "voter": "theshell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57175304008", + "voter": "ak2020" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "412587228987", + "voter": "taoteh1221" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "382843562563", + "voter": "hedge-x" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "882951616", + "voter": "sunnyray" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19003130251", + "voter": "samether" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "507084415351", + "voter": "infovore" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51727323862", + "voter": "kus-knee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19204004017", + "voter": "ziv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15774528695", + "voter": "zakharya" + }, + { + "percent": "2500", + "reputation": 0, + "rshares": "2190216920", + "voter": "simoneighties" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "325527619", + "voter": "kosimoos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155472006431", + "voter": "asmolokalo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10243802603", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "214710694660", + "voter": "domino" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1206863793", + "voter": "dicov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "842007558", + "voter": "steem1653" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "664533963", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318956323169", + "voter": "nabilov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42896930167", + "voter": "creemej" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1685749759", + "voter": "dimon14" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "159045802338", + "voter": "dragonho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6703785002", + "voter": "smolalit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3067511020", + "voter": "tarindel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27637434519", + "voter": "deanliu" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "32299149356", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "77100966", + "voter": "sergey44" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2725832001", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1481066279", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3172877896", + "voter": "glitterpig" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "1378717807", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16007476052", + "voter": "sunshine" + }, + { + "percent": "3067", + "reputation": 0, + "rshares": "5153059627", + "voter": "gmurph" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "110490591286", + "voter": "joele" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10145929638", + "voter": "gargon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54233561", + "voter": "dmns" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "104635193364", + "voter": "serejandmyself" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2532192405", + "voter": "levycore" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "26371494746", + "voter": "andrewawerdna" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2017909115", + "voter": "cryptoeasy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9396426416", + "voter": "etcmike" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57813247", + "voter": "bradyd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4386967932", + "voter": "richardcrill" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1501812252", + "voter": "paa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "176594596", + "voter": "team101" + }, + { + "percent": "7000", + "reputation": 0, + "rshares": "30739920292", + "voter": "sponge-bob" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "701447812", + "voter": "edgarsart" + }, + { + "percent": "7000", + "reputation": 0, + "rshares": "30713895678", + "voter": "brains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "358240552", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52864017", + "voter": "everittdmickey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1073010857", + "voter": "modernsuperior" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156729673", + "voter": "laskovskiy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10549787362", + "voter": "goldmatters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158189020", + "voter": "rhp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "154247502", + "voter": "dougkarr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153957502", + "voter": "sos33" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153596706", + "voter": "mootwo" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "This is the coolest thing i have seen in a long time \n\nhttps://www.youtube.com/watch?v=BuRf6r0LuL8", + "body_length": 98, + "cashout_time": "2016-10-12T16:43:00", + "category": "life", + "children": 7, + "created": "2016-09-11T16:18:57", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"life\",\"news\",\"travel\",\"sports\",\"surfing\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/BuRf6r0LuL8\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=BuRf6r0LuL8\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-11T16:18:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 15162357652485, + "parent_author": "", + "parent_permlink": "life", + "pending_payout_value": "20.913 HBD", + "percent_steem_dollars": 10000, + "permlink": "dronesurfing-coolest-thing-seen-in-a-long-time", + "post_id": 922742, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Dronesurfing - coolest thing seen in a long time", + "title": "Dronesurfing - coolest thing seen in a long time", + "total_payout_value": "0.000 HBD", + "url": "/life/@dragonho/dronesurfing-coolest-thing-seen-in-a-long-time" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "375798534523", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4823081303240", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2482526259", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3014024925", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "552731131", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "43727595307", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1330285331", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "171025716", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "438586000496", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "464533143790", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1460301143", + "voter": "mineralwasser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "876459346701", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "499908787", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "775815671", + "voter": "daniel.pan" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "7854712154", + "voter": "woo7739" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "410560593342", + "voter": "steemrollin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "230666348", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "173240933785", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "83777857709", + "voter": "acidsun" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "6042746002", + "voter": "fkn" + }, + { + "percent": "9900", + "reputation": 0, + "rshares": "477120067", + "voter": "paco-steem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10459762648", + "voter": "mranderson" + }, + { + "percent": "9900", + "reputation": 0, + "rshares": "5369519061", + "voter": "spaninv" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "7948614802", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "704949737872", + "voter": "nanzo-scoop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "225876414560", + "voter": "mummyimperfect" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "490457023", + "voter": "coar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "67847484720", + "voter": "asch" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1069357553", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62101585537", + "voter": "ak2020" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46484869802", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "369641199408", + "voter": "taoteh1221" + }, + { + "percent": "9900", + "reputation": 0, + "rshares": "372511334", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "208805226268", + "voter": "will-zewe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16072173485", + "voter": "zakharya" + }, + { + "percent": "3700", + "reputation": 0, + "rshares": "75853651372", + "voter": "kimziv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88541455006", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "480963125580", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "874985559", + "voter": "steemswede" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "18563674214", + "voter": "furion" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "142213791", + "voter": "barbara2" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "159540832", + "voter": "ch0c0latechip" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "146255835", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1473459278", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "241809191", + "voter": "joseph.kalu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4523683461", + "voter": "gikitiki" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11988114106", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213618252", + "voter": "danielkt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3758424597", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "342697538", + "voter": "dr2073" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5541912127", + "voter": "juvyjabian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12047532113", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "779812588", + "voter": "thinkngrow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155075964888", + "voter": "dragonho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3144069506", + "voter": "simon.braki.love" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7620147467", + "voter": "rpf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155612123", + "voter": "rectusfemoris" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4245216327", + "voter": "tarindel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5463871791", + "voter": "sharker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "182764669318", + "voter": "jl777" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "4895579637", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14659677439", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "614440067", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161910187", + "voter": "bitmap" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24322577216", + "voter": "pinkisland" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "10908769639", + "voter": "sisterholics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1711275100", + "voter": "alex.chien" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "161369516", + "voter": "fnait" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "147236599", + "voter": "keepcalmand" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115523854", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4305098451", + "voter": "karenb54" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7871193348", + "voter": "taker" + }, + { + "percent": "7800", + "reputation": 0, + "rshares": "758744121665", + "voter": "laonie" + }, + { + "percent": "2800", + "reputation": 0, + "rshares": "10369013981", + "voter": "myfirst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5172646569", + "voter": "rich77" + }, + { + "percent": "3700", + "reputation": 0, + "rshares": "90153392174", + "voter": "somebody" + }, + { + "percent": "3700", + "reputation": 0, + "rshares": "3372994495", + "voter": "flysaga" + }, + { + "percent": "3700", + "reputation": 0, + "rshares": "19921221093", + "voter": "midnightoil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4345349258", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3133084073", + "voter": "darrenturetzky" + }, + { + "percent": "7800", + "reputation": 0, + "rshares": "88621561869", + "voter": "xiaohui" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "84774171750", + "voter": "joele" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "1558711845", + "voter": "xiaokongcom" + }, + { + "percent": "3700", + "reputation": 0, + "rshares": "3140559997", + "voter": "xianjun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "339129814", + "voter": "gamerate" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "230347891", + "voter": "vootka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62929947", + "voter": "immortality" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115008476", + "voter": "future-shock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "209436170", + "voter": "party1999" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62391219", + "voter": "immortal" + }, + { + "percent": "3700", + "reputation": 0, + "rshares": "206330021", + "voter": "microluck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71551855", + "voter": "longevity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61874235", + "voter": "rashka" + }, + { + "percent": "2800", + "reputation": 0, + "rshares": "5205024087", + "voter": "kyriacos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "584469365", + "voter": "chanbam" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58816907", + "voter": "longtech" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58064982", + "voter": "zite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46611951195", + "voter": "dragonanarchist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1923849174", + "voter": "cryptoeasy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9883196919", + "voter": "etcmike" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "68216703", + "voter": "paa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1353576536", + "voter": "smisi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56897224", + "voter": "lighter" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54632424", + "voter": "budda" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "537067064", + "voter": "winglessss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54012814", + "voter": "warhammer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54839629", + "voter": "dr-who" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106784239", + "voter": "dr-house" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "9136703623", + "voter": "brains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53546921", + "voter": "imc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4945497169", + "voter": "burnin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51240567", + "voter": "billkappa442" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50223099", + "voter": "battalar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50139069", + "voter": "slow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50907857", + "voter": "oxygen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50798322", + "voter": "breeze" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50796122", + "voter": "factom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50479027", + "voter": "sunlight" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158057595", + "voter": "sdc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157831632", + "voter": "sergeykitayev" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "I have had the chance to be on an inaugural flight. And inaugural flight is when a new destination is flown for the first time and it ends with a water cannon salute. \n\nI have had the chance two days ago on my flight from Vienna to Hong Kong. \n\nhttps://www.youtube.com/watch?v=D03w_XhmWWQ\n\nDid you ever have had the chance to be on an inaugural flight\n\nhttp://i.imgur.com/OKCqZ7K.png", + "body_length": 383, + "cashout_time": "2016-10-07T23:25:33", + "category": "travel", + "children": 7, + "created": "2016-09-06T23:04:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"travel\",\"story\",\"introduceyourself\",\"blog\",\"life\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/D03w_XhmWWQ\\/0.jpg\",\"http:\\/\\/i.imgur.com\\/OKCqZ7K.png\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=D03w_XhmWWQ\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-06T23:18:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 11732729703075, + "parent_author": "", + "parent_permlink": "travel", + "pending_payout_value": "14.776 HBD", + "percent_steem_dollars": 10000, + "permlink": "my-first-inaugural-flight-of-my-life", + "post_id": 877045, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "First Inaugural Flight of my life", + "title": "First Inaugural Flight of my life", + "total_payout_value": "0.000 HBD", + "url": "/travel/@dragonho/my-first-inaugural-flight-of-my-life" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "2335990917918", + "voter": "badassmother" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3100003478", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3763529362", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "690416198", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54144112816", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1661328915", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213686202", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4606105935664", + "voter": "au1nethyb1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "382548770703", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "399241183982", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "622851614", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "967400396", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "134196302305", + "voter": "team" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "288177763", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "38479085741", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22754307696", + "voter": "mod-tamichh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1055039434484", + "voter": "gavvet" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "11590512190", + "voter": "fkn" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "394674318", + "voter": "paco-steem" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "4614118557", + "voter": "spaninv" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "16587610701", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "695782786658", + "voter": "nanzo-scoop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "229512087562", + "voter": "mummyimperfect" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8608144890", + "voter": "censor-this" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1109713884", + "voter": "coar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71182545666", + "voter": "asch" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1432454904", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63105767641", + "voter": "ak2020" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "355377661767", + "voter": "taoteh1221" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "308220781", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "846572826", + "voter": "sunnyray" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "216814872213", + "voter": "will-zewe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "308215924", + "voter": "hendra-khaidir" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18411265425", + "voter": "ziv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15102847791", + "voter": "zakharya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103271810744", + "voter": "geoffrey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4430492814", + "voter": "fuck.off" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5615788732", + "voter": "iloveporn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6659434674", + "voter": "johnbradshaw" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39447062051", + "voter": "clement" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4760195455", + "voter": "the.whale" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4621349598", + "voter": "unicornfarts" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4877667780", + "voter": "vote" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5014923549", + "voter": "kissmybutt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485071054", + "voter": "chamviet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "506874184646", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "366123878", + "voter": "steemswede" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "330631495", + "voter": "ch0c0latechip" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "306004255", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "762992521", + "voter": "dicov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11090596825", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4563435793", + "voter": "thegoodguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3747285327", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2390029222", + "voter": "jbouchard12" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "342458473", + "voter": "dr2073" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8989106263", + "voter": "warrensteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "429170927", + "voter": "natalyt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "152849700306", + "voter": "dragonho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5726558608", + "voter": "smolalit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125855148", + "voter": "bobo012" + }, + { + "percent": "8000", + "reputation": 0, + "rshares": "17230004707", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "182397872870", + "voter": "jl777" + }, + { + "percent": "2000", + "reputation": 0, + "rshares": "4081554366", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8189212382", + "voter": "fishborne" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15696799539", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "594272148", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "383220441", + "voter": "alanc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6682258588", + "voter": "lykkeliten" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115507974", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "122297166", + "voter": "steemster1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "89204072289", + "voter": "shaka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7847424937", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45316174238", + "voter": "allasyummyfood" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50731326", + "voter": "lillianjones" + }, + { + "percent": "8000", + "reputation": 0, + "rshares": "17454389316", + "voter": "laoyao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "547778113619", + "voter": "toxic" + }, + { + "percent": "8000", + "reputation": 0, + "rshares": "3018346620", + "voter": "oflyhigh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "320391778", + "voter": "rusteller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51120963", + "voter": "msjennifer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50828873", + "voter": "ciao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8857425324", + "voter": "thebotkiller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3301725134", + "voter": "blow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "322647983", + "voter": "gamerate" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "230299622", + "voter": "vootka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56658670", + "voter": "confucius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61696026", + "voter": "immortality" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "982813675", + "voter": "bledarus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "114992597", + "voter": "future-shock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61167862", + "voter": "immortal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50692212", + "voter": "fortuner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71551855", + "voter": "longevity" + }, + { + "percent": "8000", + "reputation": 0, + "rshares": "932751865", + "voter": "chinadaily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10753266775", + "voter": "kyriacos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64564711612", + "voter": "serejandmyself" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "244093128", + "voter": "jimmytwoshoes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50684643", + "voter": "johnbyrd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50682252", + "voter": "thomasaustin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50680459", + "voter": "thermor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50673817", + "voter": "widell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58816907", + "voter": "longtech" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17082219715", + "voter": "yef99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58064982", + "voter": "zite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8235530947", + "voter": "etcmike" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "394178677", + "voter": "hpk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "113731881", + "voter": "team101" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50271139", + "voter": "hitherise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "37301409356", + "voter": "sponge-bob" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1615975909", + "voter": "smisi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54632424", + "voter": "budda" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50065875", + "voter": "bane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54012814", + "voter": "warhammer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53990613", + "voter": "roadhog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103730281", + "voter": "alina1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53764342", + "voter": "dr-who" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106768414", + "voter": "dr-house" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18962115199", + "voter": "brains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54601718", + "voter": "imc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50918375", + "voter": "ailo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4458268048", + "voter": "burnin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51877853", + "voter": "chrisdunn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50439559", + "voter": "roto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7214022575", + "voter": "hustle-no-more" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "851238445", + "voter": "robotev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50704078", + "voter": "yotoh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50372583", + "voter": "carre" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "http://blogs-images.forbes.com/feeonlyplanner/files/2011/11/1029_retirement-fund_392x392.jpg\nReaching your golden years has many benefits, one of them being that you get to retire and relax after all those years of hard work. This is something that should excite every retiree, but it often comes with a whole set of complications. The truth is that many people fail to plan for their retirement properly and it affects them in a big way. Many people have to continue working in order to survive or rely on family members to get them through. Planning for your retirement starts early in your life which is why you need to pay attention to how you work with your finances. Here are a few ways you can prepare for retirement. \n\nhttp://www.nowwhatrcoach.com/wp-content/uploads/2014/11/retire-beach.jpg\n**Start saving**\nThe number one thing that you need to start doing is start saving. You can easily put away a few dollars a month to keep your nest egg nice and warm. If you do this from your very first pay check you will be able to live comfortably by the time you retire. Even if you have a retirement policy, this might not always be enough. Find ways to stretch your cash in order to make sure you are covered. \n\n**Know your retirement needs**\nWhen you stop working, life does not end for you; it is only the beginning. You need to sit down (with your partner if you have one) and decide what you want to do after you have stopped working. Many people decide to sell their house and move to the coast whilst others are happy where they are living. Whatever you decide, you need to make sure that you have enough cash to survive until the day that you die. It actually goes further than survival: you need to maintain the standard of your current lifestyle. \n\nhttp://refe99.com/wp-content/uploads/2014/09/keep-calm-and-enjoy-retirement-3.png\n\n**Invest in your company\u2019s retirement fund**\nMany companies make sure that their employees are looked after when they retire, but employees often think it is just a money-making ploy. The truth is that it could save your life one day in a financial sense. If a company offers a retirement plan, invest as much as you can into it. Your taxes will be lower and you will receive interest over the amount of months your money is in that retirement policy. By the time you leave the company, you should get a sturdy amount every month. \n\n**Learn about your employer\u2019s pension plan**\nBefore you jump into the retirement policy, ask about it first. It is understandable that many people are uncertain about this, so it is good to ask for advice and do research. Find out how the plan works and what exactly it will cover for the amount that you pay at the end of each month. If you are married it would be a good idea to find out what the plan says about spouses. This way you can make additional plans if the company\u2019s retirement plan is not what you are looking for exactly. \n\n**Do research about retirement investment**\nWhen you start working you should be doing as much research about investing and pension policies. Retirement annuities are nothing more than an investment in your old age and you have the right to know how it works. Inflation plays a big part in the return that you will get and you must understand how this works so that you can calculate how much you will get back after retirement. These policies are not standing still and there are a number of factors that influence the outcome. Empower yourself and know more about financial processes. \n\n**Do not touch your retirement savings**\nTimes are tough all over the world and sometimes you land yourself in a pickle you need to get out of. Many people turn to their retirement fund in order to fill a few holes, but this is not recommended. Make it a point of almost forgetting of your retirement money once you start accumulating it. Not only will you disadvantage your older self, but you might need to review your taxes and pay withdrawal penalties. You might even lose certain benefits that you have grown accustomed to. Rather look for another solution. \n\n**Talk to your employer about starting a retirement plan**\nEvery company should look after its employees in terms of retirement but this is not always possible. If your employer does not offer a retirement plan, talk to him or her about it and see what options you have. There are many different types of plans that may be more affordable for your employer to offer the employees. Let your colleagues help you with research before you take it up with your employer. A cheaper retirement plan is always better than no retirement plan. \n\nhttp://blog.quizzle.com/wp-content/uploads/2011/08/save-for-retirement-fortune-cookie.jpg\n**Put money into an Individual Retirement Account**\nThe IRA offers comprehensive solutions that you can use to supplement your retirement policy through the company that you work for. You can put up to $5,500 per year into your IRA and this amount becomes even more when you are 50 years or older. There are different IRA accounts and you should do research on them before you make a choice. Talk to people who already have IRAs and find out what their experiences are with it. This is also a great way for you to plan for retirement if you do not have access to a plan at work.\n\n**Find out more about Social Security benefits**\nSocial Security is there to keep you secure in a financial sense and this includes offering retirement benefits. Do research and find out if you apply for it and what you need to do to activate it after retirement. Social Security pays out about 40% of what you earned before retirement and this can make a big difference if you do not have any other type of plan. You can calculate this amount on their website to establish a solid financial plan for your retirement. \n\n\nCONCLUSION - I DO IT THE STEEMIT WAY :)\n\nhttp://i.imgur.com/8WQHCEx.png", + "body_length": 5871, + "cashout_time": "2016-10-02T22:22:36", + "category": "life", + "children": 9, + "created": "2016-09-01T19:50:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"life\",\"howto\",\"philosophy\",\"steem\",\"steemit\"],\"image\":[\"http:\\/\\/blogs-images.forbes.com\\/feeonlyplanner\\/files\\/2011\\/11\\/1029_retirement-fund_392x392.jpg\",\"http:\\/\\/www.nowwhatrcoach.com\\/wp-content\\/uploads\\/2014\\/11\\/retire-beach.jpg\",\"http:\\/\\/refe99.com\\/wp-content\\/uploads\\/2014\\/09\\/keep-calm-and-enjoy-retirement-3.png\",\"http:\\/\\/blog.quizzle.com\\/wp-content\\/uploads\\/2011\\/08\\/save-for-retirement-fortune-cookie.jpg\",\"http:\\/\\/i.imgur.com\\/8WQHCEx.png\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-01T19:50:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 12763550981433, + "parent_author": "", + "parent_permlink": "life", + "pending_payout_value": "20.922 HBD", + "percent_steem_dollars": 10000, + "permlink": "planning-for-your-retirement-the-old-way-the-steemit-way", + "post_id": 827252, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Planning For Your Retirement (the old way) / the STEEMIT WAY :)", + "title": "Planning For Your Retirement (the old way) / the STEEMIT WAY :)", + "total_payout_value": "0.000 HBD", + "url": "/life/@dragonho/planning-for-your-retirement-the-old-way-the-steemit-way" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "30854372489222", + "voter": "smooth" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3099647526", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3763066131", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "697396740", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54053469883", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1661151753", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213676452", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4604460893970", + "voter": "au1nethyb1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "392059774653", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "389237830804", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5473835183546", + "voter": "smooth.witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "622799607", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "967315888", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "823438421943", + "voter": "steemrollin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "65907216897", + "voter": "jchch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "288163140", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48091339230", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24180943228", + "voter": "fkn" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "404690214", + "voter": "paco-steem" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "4611969002", + "voter": "spaninv" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "3316449761", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "677991438275", + "voter": "nanzo-scoop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "888067066", + "voter": "weenfan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "231426713782", + "voter": "mummyimperfect" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73985996184", + "voter": "asch" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1432104926", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "511400392515", + "voter": "cyber" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "623056398", + "voter": "ethan-castle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63031849785", + "voter": "ak2020" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "41838583543", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8753283330", + "voter": "zebbra2014" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96313413696", + "voter": "eric-boucher" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3521856193404", + "voter": "satoshifund" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "363684682168", + "voter": "taoteh1221" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "316058927", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54129429193", + "voter": "juanmiguelsalas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "810686260", + "voter": "sunnyray" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12135959049", + "voter": "samether" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "199374179494", + "voter": "will-zewe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49795438434", + "voter": "kus-knee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1398781482", + "voter": "benthegameboy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "270599078834", + "voter": "lukestokes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42315131934", + "voter": "honeythief" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16644055203", + "voter": "acassity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "178147875", + "voter": "ales" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8304063156", + "voter": "cannav" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "495190297", + "voter": "chamviet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "573470971402", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "230742410", + "voter": "steemswede" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15941910341", + "voter": "picokernel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "692461443970", + "voter": "slowwalker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "641903579", + "voter": "busser" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "66116529", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "61192711", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "762881799", + "voter": "dicov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45722289406", + "voter": "mraytekin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "217425536", + "voter": "joseph.kalu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "701869001", + "voter": "cherish" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11515544464", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5093692663", + "voter": "thegoodguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4186326122", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1282623100", + "voter": "jrd8526" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "342458473", + "voter": "dr2073" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2817031740", + "voter": "pigatto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "429170927", + "voter": "natalyt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155906395909", + "voter": "dragonho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7174158649", + "voter": "rpf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24266298182", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4213488926", + "voter": "rainchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "193042940339", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2621166255", + "voter": "lostnuggett" + }, + { + "percent": "2000", + "reputation": 0, + "rshares": "4078673403", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "387497690", + "voter": "quigua" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17536455226", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9692810581", + "voter": "michaeldodridge" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115507974", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1681517332", + "voter": "karenb54" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55922674292", + "voter": "gomeravibz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8766419573", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "37476742709", + "voter": "allasyummyfood" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22431440890", + "voter": "laoyao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "29020723398", + "voter": "myfirst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2594437121", + "voter": "anthonyj" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3410771596", + "voter": "oflyhigh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50020012", + "voter": "nickche" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42386594805", + "voter": "nonlinearone" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3236349620", + "voter": "blow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "273860901", + "voter": "gamerate" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "230299622", + "voter": "vootka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61696026", + "voter": "immortality" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1472926663", + "voter": "bledarus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "114992597", + "voter": "future-shock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61167862", + "voter": "immortal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71551855", + "voter": "longevity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60661014", + "voter": "rashka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1125039982", + "voter": "chinadaily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1354537004", + "voter": "alexma3x" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58816907", + "voter": "longtech" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17447693232", + "voter": "yef99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58064982", + "voter": "zite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "110770841", + "voter": "team101" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54565194", + "voter": "benaccept" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "516723861", + "voter": "kev7000" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55043079", + "voter": "zettar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54632424", + "voter": "budda" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54012814", + "voter": "warhammer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "199849186", + "voter": "irininich" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53990613", + "voter": "roadhog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50639382", + "voter": "doggnostic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53764342", + "voter": "dr-who" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106768414", + "voter": "dr-house" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55667901", + "voter": "plantbasedjunkie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50377764", + "voter": "jenny-talls" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53531096", + "voter": "imc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52332195", + "voter": "post-successful" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "336420065", + "voter": "robotev1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "322592441", + "voter": "robotev2" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "http://www.lovethispic.com/uploaded_images/117818-Just-Run-Away.jpg\nThere comes a time in most people\u2019s lives when the life they have feels wrong. We may start to feel that we are sick of the same old job, our home which has served us well for years may feel boring and even the people in our lives start to feel irritating. We typically hear of people having a mid-life crisis, where they leave their home and family and go off with a younger person. Men may go out and buy a sports car or a motorbike, women too possibly but not so obviously. People have affairs and marriages break up. When they are asked they reply thing like \u201cI needed some excitement in my life\u201d or \u201cI felt I was getting old, in a rut ad things had to change\u201d.\n\nPeople are strange we spend our lives looking for peaceful, stress \u2013 free, easy lives but when we get it \u2013 or even when we do not, when we get a regular routine that works well, we soon become bored with the \u201csame old, same old\u201d of our lives. So how can we ever reach a happy medium and just enjoy the life around us?\n\nThe answer is not as hard as it seems. You see these massive reactions to the boredom in people\u2019s lives can be avoided by making small changes. If we change one thing every day we can keep our lives happy, refreshed and fulfilled, as long as it is the right thing.\n\nTo find what we need to change we need to sit and look at our life as it is at the moment. Identify the things you are not happy with and the changes you need to make, then you need to break those changes down into a plan of action with one small achievable step to do each day. \nhttp://data2.whicdn.com/images/70272937/original.jpg\n\nLet us say that you are not happy with your work. Firstly, you have to decide why you are not happy, is the work too challenging that it takes over your life, or maybe it is not challenging enough and you feel you are at a dead end. Maybe you are in the wrong environment or do not get along with your boss but love the work. When you have decided what the problem is then you need to decide how you can change things. If you have a good boss but feel trapped maybe you could talk to them about further training and possible advancement, if you are under pressure all the time maybe you could find ways to reduce the pressure. It is never a good idea to approach a boss saying you are overworked without evidence, so sit down one evening and estimate the work you do and the time it takes on a daily, weekly or monthly basis. Have a good look to make sure you are not doing other people\u2019s work and if you are find a way to stop doing that. However, if you really are expected to do 60 hours work in a week and have the proof, you can then talk to your boss about how you can reduce the work load.\n\nShould you decide that for some reason you do not want to discuss this or you feel it will be badly received, or you have decided that you do not like the work environment then it is time to think about getting a different job. Again we are looking to make small changes so maybe on day one you could update your CV, on day two you may want to think about where you would like to work, on day three you can start looking for jobs to apply for. Day four write a covering letter and apply for one job, day 5 write another appropriate covering letter and apply for a second job. \n\nAll the time you are doing this you are making small changes that will improve your life in the future and stop you getting to a point where you are so displeased with your job that you just quit. In the same way you may think your work is fine but your relationship is stale. This may be due to the hours you are working. So still on a theme of changing one thing a day, sit and figure out what you think has changed since you got together and also think about how your partner\u2019s life has changed since the beginning too. \n\nRelationships can become very stale when children appear on the scene. Men may feel pushed out as the women fuss over the baby and attend to its needs. Women may feel that they have no life left as it is taken up with the needs of this little person who is completely reliant on them. It is very important to talk to your partner if you are feeling like either of these scenarios applies to you. You see it is very easy to think the other partner is happy playing mum or busy working. If you do not discuss your feelings how will they ever know any different?\n\nhttp://lifeismymovie.ca/wp-content/uploads/2015/08/SmallChanges-Feat.png\n\nSo maybe changing one thing a day is stopping feeling sorry for yourself and asking your partner not just about their day but how they feel about their day. Sometimes something as simple as dad looking after baby while mum goes shopping, or to the hairdressers, to visit her family or friends without baby tagging on, can make mum feel better and less tied to baby, while dad gets to know the baby and see them growing up. Maybe you can all go to the park or somewhere as a family, which would also bring you all together instead of two individuals in a lonely place.\n\nWhatever you want to change the secret of keeping your life fresh and interesting is to not let it drag you along. Look at your life every day and think about what makes you happy and what makes you bored or unhappy. Be grateful for the good in your life, the love of friends and family, the roof over your head, the security heat and warmth your home provides and the other things that make you happy. Then look at the things you do not like and think of the small things you can change to try to improve the situation.\nhttp://www.nutritionalanarchy.com/wp-content/uploads/2016/04/change.jpg", + "body_length": 5652, + "cashout_time": "2016-10-02T00:43:03", + "category": "life", + "children": 5, + "created": "2016-08-31T21:50:54", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"life\",\"introduceyourself\",\"philosophy\",\"story\",\"writing\"],\"image\":[\"http:\\/\\/www.lovethispic.com\\/uploaded_images\\/117818-Just-Run-Away.jpg\",\"http:\\/\\/data2.whicdn.com\\/images\\/70272937\\/original.jpg\",\"http:\\/\\/lifeismymovie.ca\\/wp-content\\/uploads\\/2015\\/08\\/SmallChanges-Feat.png\",\"http:\\/\\/www.nutritionalanarchy.com\\/wp-content\\/uploads\\/2016\\/04\\/change.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-31T21:50:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 51005588465562, + "parent_author": "", + "parent_permlink": "life", + "pending_payout_value": "261.787 HBD", + "percent_steem_dollars": 10000, + "permlink": "i-want-to-run-away-from-all-confession-of-my-inner-third-person", + "post_id": 817388, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "I want to run away from all?! (CONFESSION of my inner third-person)", + "title": "I want to run away from all?! (CONFESSION of my inner third-person)", + "total_payout_value": "0.000 HBD", + "url": "/life/@dragonho/i-want-to-run-away-from-all-confession-of-my-inner-third-person" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "685172531804", + "voter": "barrie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2924132151314", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "342032044847", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "329866076197", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1779389087", + "voter": "mineralwasser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1020480411582", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "133500194001", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10212261069", + "voter": "lee3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3827297033", + "voter": "lee5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9462142571", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2382160956", + "voter": "bingo-1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57691752927", + "voter": "noaommerrr" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2537807839", + "voter": "fkn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23490409758", + "voter": "instructor2121" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27523544747", + "voter": "james-show" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "612531707829", + "voter": "nanzo-scoop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "127361637481", + "voter": "steve-walschot" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7574304064", + "voter": "kefkius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "216129512024", + "voter": "mummyimperfect" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8434060047", + "voter": "censor-this" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15419033662", + "voter": "b4bb4r-5h3r" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "387320517573", + "voter": "cyber" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58484338820", + "voter": "ak2020" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "36380794642", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "372629539281", + "voter": "taoteh1221" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "30099389795", + "voter": "altoz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13662000616", + "voter": "samether" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55180330821", + "voter": "thecryptodrive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8786391848", + "voter": "cannav" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "105086884817", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2737115931", + "voter": "stranger27" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20737286076", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "309404061", + "voter": "damono" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201996567", + "voter": "steemswede" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "6389295005", + "voter": "furion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "607597710", + "voter": "busser" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "66706407", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "61734236", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "688422818", + "voter": "dicov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2582441614", + "voter": "algimantas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5479748897", + "voter": "smolalit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "210518647783", + "voter": "calaber24p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123354556", + "voter": "bobo012" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2044307666", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1895040416", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1790353851", + "voter": "tygergamer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "70760657", + "voter": "nicoleta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "30480581208", + "voter": "allasyummyfood" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21183512341", + "voter": "laoyao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17023233884", + "voter": "essra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55770078812", + "voter": "joele" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3152399608", + "voter": "oflyhigh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "109495462", + "voter": "erikkartmen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3230027126", + "voter": "blow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15521326657", + "voter": "plasticfuzzy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54828121", + "voter": "nano2nd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "964726687", + "voter": "chinadaily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3019346986", + "voter": "voltarius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61390176761", + "voter": "barrycooper" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21449886453", + "voter": "dragonanarchist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11361173752", + "voter": "mandibil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1281772374", + "voter": "seva" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1745302958", + "voter": "richardcrill" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "169138872", + "voter": "eight-rad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1897080260", + "voter": "doitvoluntarily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "142409264", + "voter": "alina1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "178824654821", + "voter": "charlieshrem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61843921743", + "voter": "tracemayer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50562241", + "voter": "sudo82" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "http://i.imgur.com/P9KsV01.png\n\"Th\u0435 \u043en\u0435 un\u0441h\u0430ng\u0435\u0430bl\u0435 \u0441\u0435rt\u0430\u0456nt\u0443 \u0456\u0455 th\u0430t n\u043eth\u0456ng is \u0441\u0435rt\u0430\u0456n \u043er un\u0441h\u0430ng\u0435\u0430bl\u0435\" - J\u043ehn F. K\u0435nn\u0435d\u0443. T\u0435\u0430m\u0455 r\u0435\u0455\u0456\u0455t change. Few \u0440\u0435\u043e\u0440l\u0435 in the everyday world \u043ef work w\u0430nt the \u0455\u0443\u0455t\u0435m th\u0435\u0443 are f\u0430m\u0456l\u0456\u0430r with to b\u0435\u0441\u043em\u0435 n\u0435w and unfamiliar. Ev\u0435n wh\u0435n a \u0441h\u0430ng\u0435 \u0456m\u0440r\u043ev\u0435\u0455 th\u0435 fun\u0441t\u0456\u043en \u043ef th\u0435 organization or m\u0430k\u0435\u0455 a process easier, \u0455\u043em\u0435 t\u0435\u0430m m\u0435mb\u0435r\u0455 w\u0456ll h\u0430v\u0435 t\u043e be dragged thr\u043eugh th\u0435 evolution.\n\nFirst \u0430\u0441\u0441\u0435\u0440t th\u0435 \u0456n\u0435v\u0456t\u0430bl\u0435. It'\u0455 a common \u0435x\u0440\u0435r\u0456\u0435n\u0441\u0435 t\u043e want t\u043e h\u043eld \u043en t\u043e the old \u0430nd n\u043et embrace the n\u0435w. P\u0435\u043e\u0440l\u0435 tr\u0443 t\u043e rebuild \u0455\u043em\u0435th\u0456ng wh\u0456\u0441h h\u0430\u0455 b\u0435\u0435n l\u043e\u0455t w\u0456th \u0455\u043em\u0435th\u0456ng which is as much the same as th\u0435\u0443 \u0441\u0430n make \u0456t. But th\u0430t d\u043e\u0435\u0455n't always w\u043erk. Th\u0456nk of m\u0435nd\u0456ng a broken plate: \u0443\u043eu will \u0430lw\u0430\u0443\u0455 be able t\u043e see the j\u043e\u0456n. \n\nInstead t\u0430k\u0435 th\u0435 opportunity t\u043e think about your \u0455\u0456tu\u0430t\u0456\u043en and w\u043erk \u043eut wh\u0430t \u0456\u0455 th\u0435 best f\u043er \u0443\u043eu at th\u0435 m\u043em\u0435nt. It's \u0435\u0430\u0455\u0443 to slip \u0456nt\u043e th\u0435 m\u0456nd\u0455\u0435t th\u0430t b\u0435\u0441\u0430u\u0455\u0435 something h\u0430\u0455 w\u043erk\u0435d w\u0435ll f\u043er some t\u0456m\u0435 th\u0430t \u0443\u043eu mu\u0455t copy what went b\u0435f\u043er\u0435. Th\u0430t \u0456\u0455n't \u0430lw\u0430\u0443\u0455 th\u0435 case. In spite of th\u0435 f\u0430\u0441t that \u0441h\u0430ng\u0435 \u0456n itself m\u0430\u0443 bring u\u0440 a \u0455\u0435n\u0455\u0435 \u043ef l\u043e\u0455\u0455 \u0430nd all th\u0430t g\u043e\u0435\u0455 with th\u0430t: anger, feelings of gu\u0456lt \u0430b\u043eut wh\u0430t could have been done differently, and eventual acceptance \u043ef wh\u0430t'\u0455 h\u0430\u0440\u0440\u0435n\u0435d, \u0456t \u0456\u0455 also about looking forward t\u043e wh\u0430t \u0441\u043euld h\u0430\u0440\u0440\u0435n n\u043ew \u0430nd how t\u043e \u0456m\u0440r\u043ev\u0435 on wh\u0430t went before. \nhttp://asfort.org/wp-content/uploads/2016/07/opportunity-fish.jpg\n\n\nSt\u0430rt b\u0443 \u0430\u0455k\u0456ng yourself wh\u0430t d\u043e \u0443\u043eu w\u0430nt now. Not what \u0443\u043eur g\u043e\u0430l\u0455 were a \u0443\u0435\u0430r \u043er m\u043er\u0435 \u0430g\u043e but wh\u0430t d\u0456r\u0435\u0441t\u0456\u043en \u0443\u043eu want t\u043e b\u0435 f\u0430\u0441\u0456ng \u0430t th\u0456\u0455 t\u0456m\u0435 \u0430nd \u0456n th\u0456\u0455 place. A\u0455 with \u0430ll g\u043e\u0430l setting exercises \u0456t'\u0455 important t\u043e b\u0435 \u0430\u0455 \u0455\u0440\u0435\u0441\u0456f\u0456\u0441 as \u0443\u043eu \u0441\u0430n and \u0430\u0455 \u0440\u043e\u0455\u0456t\u0456v\u0435 as \u0440\u043e\u0455\u0455\u0456bl\u0435 t\u043e\u043e. That m\u0435\u0430n\u0455 deciding what \u0443\u043eu w\u0430nt as much as kn\u043ew\u0456ng what \u0443\u043eu n\u043e l\u043eng\u0435r w\u0430nt. \n\nTh\u0435n start w\u0456th \u0455\u043em\u0435th\u0456ng, however small, \u0456t'\u0455 \u0456m\u0440\u043ert\u0430nt to make a start \u043en \u0443\u043eur \u0440r\u043e\u0440\u043e\u0455\u0435d \u0441h\u0430ng\u0435. B\u0435 prepared f\u043er other's \u0440\u0435\u043e\u0440l\u0435'\u0455 \u043e\u0440\u0440\u043e\u0455\u0456t\u0456\u043en \u0430nd \u0443\u043eur \u043ewn f\u0435\u0435l\u0456ng\u0455 of doubt \u0430b\u043eut whether you are doing the right things. R\u0435\u0441\u043egn\u0456\u0455\u0435 that \u0443\u043eur change may not take place \u0455m\u043e\u043ethl\u0443 but \u043en\u0441\u0435 \u0443\u043eu \u0455t\u0430rt you w\u0456ll g\u0430\u0456n \u0441l\u0430r\u0456t\u0443 \u0430b\u043eut which way t\u043e g\u043e w\u0456th it. Ab\u043ev\u0435 \u0430ll r\u0435m\u0430\u0456n d\u0435t\u0435rm\u0456n\u0435d \u0430b\u043eut wh\u0430t \u0443\u043eu want t\u043e do \u0430nd accept \u0455u\u0440\u0440\u043ert from th\u043e\u0455\u0435 wh\u043e \u0435n\u0441\u043eur\u0430g\u0435 \u0443\u043eu and \u0435n\u0430bl\u0435 \u0443\u043eu t\u043e move f\u043erw\u0430rd.\n\nP\u0435\u043e\u0440l\u0435 deal with transformation differently. Change \u0440\u0435\u0455\u0455\u0456m\u0456\u0455t\u0455 u\u0455u\u0430ll\u0443 b\u0435l\u0456\u0435v\u0435 that \u0441\u043env\u0435r\u0455\u0456\u043en \u0456\u0455 d\u0456ff\u0456\u0441ult \u0430nd \u0455tr\u0435\u0455\u0455ful. Th\u0435\u0443 worry \u0430b\u043eut th\u0435\u0456r ability t\u043e cope w\u0456th l\u0456f\u0435 \u0430dju\u0455tm\u0435nt\u0455. Th\u0435\u0443 often believe th\u0430t th\u0435\u0443 are \"unlucky\" \u0456f \u0441h\u0430ng\u0435 is pressed u\u0440\u043en them. Change \u0440\u0435\u0455\u0455\u0456m\u0456\u0455t\u0455 \u0455\u0435\u0435 no b\u0435n\u0435f\u0456t\u0455 t\u043e \u0441h\u0430ng\u0435. \nChange \u043e\u0440t\u0456m\u0456\u0455t\u0455 \u0430\u0441\u0441\u0435\u0440t \u0441h\u0430ng\u0435 \u0430\u0455 a n\u0430tur\u0430l part \u043ef life and th\u0435\u0443 \u0455\u0435\u0435 transformations \u0430\u0455 good. Th\u0435\u0443 h\u0430v\u0435 \u0441\u043enf\u0456d\u0435n\u0441\u0435 th\u0430t th\u0435\u0443 have th\u0435 ability t\u043e deal w\u0456th m\u0435t\u0430m\u043er\u0440h\u043e\u0455\u0435\u0455. Ch\u0430ng\u0435 optimists seek out the \u0440\u043e\u0455\u0456t\u0456v\u0435\u0455 th\u0430t th\u0435\u0443 b\u0435l\u0456\u0435v\u0435 \u0441\u043em\u0435\u0455 fr\u043em \u0435v\u0435n difficult change. \nhttp://www.simion7d.com/images/butterfly-change-metamorphosis.jpg\n\n\nTh\u0435 good n\u0435w\u0455 is th\u0430t \u0443\u043eu \u0441\u0430n \u0456m\u0440r\u043ev\u0435 \u0443\u043eur \u0430b\u0456l\u0456t\u0443 to change. Your r\u0435\u0455\u0456l\u0456\u0435n\u0441\u0443 mu\u0455\u0441l\u0435 can be \u0455tr\u0435ngth\u0435n\u0435d b\u0443 transforming \u0443\u043eur beliefs. Beliefs, habits, \u0430nd r\u0435\u0455\u0440\u043en\u0455\u0435\u0455 \u0430r\u0435 l\u0456k\u0435 cross-country ski paths, wh\u0435r\u0435 gr\u043e\u043ev\u0435\u0455 \u0430r\u0435 \u0441ut \u0456nt\u043e th\u0435 \u0455n\u043ew. W\u0435 \u0455k\u0456 \u0456n th\u0435 gr\u043e\u043ev\u0435\u0455 b\u0435\u0441\u0430u\u0455\u0435 its' \u0435\u0430\u0455\u0456\u0435\u0455t, th\u0435 \u0440\u0430th is \u0430lr\u0435\u0430d\u0443 \u0441ut but we are not r\u0435\u051bu\u0456r\u0435d t\u043e ski \u0456n the groove. With effort, w\u0435 can \u0441ut a n\u0435w \u0440\u0430th. W\u0456th \u0435ff\u043ert \u0443\u043eu \u0441\u0430n \u0455tr\u0435ngth\u0435n \u0443\u043eur resiliency muscle \u0430nd b\u0435\u0441\u043em\u0435 a \u0441h\u0430ng\u0435 optimist.\n\nSO CHANGE NOT YOURSELF AS WELL THE STATUS QUO!!! THERE IS A NEW PATH AHEAD CAN YOU SEE HIM", + "body_length": 3424, + "cashout_time": "2016-09-26T19:56:54", + "category": "steemit", + "children": 3, + "created": "2016-08-26T19:32:27", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"money\",\"life\",\"philosophy\"],\"image\":[\"http:\\/\\/i.imgur.com\\/P9KsV01.png\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-26T19:32:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 8376140469694, + "parent_author": "", + "parent_permlink": "steemit", + "pending_payout_value": "12.739 HBD", + "percent_steem_dollars": 10000, + "permlink": "transformation-celebrate-change-part-1-thoughts-on-a-friday", + "post_id": 758687, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Transformation - celebrate Change (Part 1 - thoughts on a friday....)", + "title": "Transformation - celebrate Change (Part 1 - thoughts on a friday....)", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@dragonho/transformation-celebrate-change-part-1-thoughts-on-a-friday" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "40296469126300", + "voter": "blocktrades" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3358232186055", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3094984132", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3756901624", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "696671079", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53370336088", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1658821531", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213558827", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4186480263875", + "voter": "au1nethyb1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "354810038737", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "352343164226", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "622140509", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "952759543", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287969338", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12171946152", + "voter": "jademont" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7883482866", + "voter": "cryptorune" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2536344757", + "voter": "fkn" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "423485897", + "voter": "paco-steem" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "4949311290", + "voter": "spaninv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32652795039", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "709245144227", + "voter": "nanzo-scoop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "238835403910", + "voter": "pal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12570159570", + "voter": "cian.dafe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54934580320", + "voter": "asch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "389686474927", + "voter": "cyber" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "371987768205", + "voter": "taoteh1221" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2298641724179", + "voter": "stellabelle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61580551943", + "voter": "sahirahla" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32289499384", + "voter": "altoz" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "330898027", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53477284457", + "voter": "juanmiguelsalas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "211092304446", + "voter": "alexc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "137985739281", + "voter": "schro" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88591858942", + "voter": "geoffrey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "43939871809", + "voter": "honeythief" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2620924903", + "voter": "gary-smith" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2100898478", + "voter": "mammasitta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39712131626", + "voter": "marco-delsalto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "336898233450", + "voter": "inboundinken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "204578976", + "voter": "ales" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5445573594", + "voter": "arcaneinfo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50186088359", + "voter": "sonzweil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4623260663", + "voter": "dennygalindo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132638292042", + "voter": "chhayll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2910950076", + "voter": "stranger27" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "622499323834", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23836049644", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "290066307", + "voter": "damono" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "83708178", + "voter": "steemswede" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5556237689", + "voter": "qamarpinkpanda" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "514586280240", + "voter": "slowwalker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7745435468", + "voter": "hammurabi" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "6380319546", + "voter": "furion" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "66692894", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "61722414", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57967426", + "voter": "ghozia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "122008183073", + "voter": "knircky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "233332478", + "voter": "ardina" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "688158724", + "voter": "dicov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4541919146", + "voter": "gikitiki" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10701541074", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "33599218334", + "voter": "toxonaut" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81198252965", + "voter": "paco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2022840569", + "voter": "incomemonthly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11603277125", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3950363392", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10623847628", + "voter": "bycz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "80289117654", + "voter": "stephencurry" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "808965798", + "voter": "thinkngrow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651173315", + "voter": "luisucv34" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "37611710226", + "voter": "streetstyle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4285692983", + "voter": "r-niki09" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3845332463", + "voter": "adamt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5367413014", + "voter": "smolalit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8076971457", + "voter": "magz8716" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6939038250", + "voter": "rpf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "146929404380", + "voter": "liberosist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5146311248", + "voter": "rainchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "459882281", + "voter": "nin0000" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1805756917", + "voter": "tokyodude" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "109399116", + "voter": "elmusic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "180857785939", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1703586554", + "voter": "lostnuggett" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2042770630", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32739143886", + "voter": "paquito" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4644846214", + "voter": "fishborne" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3643939804", + "voter": "bristolchris72" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17782580013", + "voter": "jennamarbles" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19679237911", + "voter": "krabgat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16714604714", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "721563649", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2376593347", + "voter": "tjpezlo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4655026909", + "voter": "spookypooky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "817190717", + "voter": "metaflute" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8269924555", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40431446913", + "voter": "allasyummyfood" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23469560277", + "voter": "laoyao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25980126700", + "voter": "myfirst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "555412571", + "voter": "chris.roy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2266655599", + "voter": "crypto-toll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1523262816", + "voter": "minion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3228837684", + "voter": "oflyhigh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2242340109", + "voter": "kainmarx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "874127370", + "voter": "hms818" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62966412", + "voter": "moodledidoodledi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15838088426", + "voter": "plasticfuzzy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1245333892", + "voter": "nonamer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61277607", + "voter": "kateblack" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11132558343", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "830637356", + "voter": "chinadaily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50738574690", + "voter": "serejandmyself" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95660351", + "voter": "cinderphoenix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53238254", + "voter": "tolik8080" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2880118420", + "voter": "voltarius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50439994", + "voter": "vasilii" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "290373723", + "voter": "levycore" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23341408242", + "voter": "andrewawerdna" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18363936092", + "voter": "dragonanarchist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10357506150", + "voter": "mandibil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1694107292", + "voter": "unchainedio" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4137913261", + "voter": "rwgunderson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "90671293", + "voter": "trendwizard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5108824799", + "voter": "brandonv111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25606625314", + "voter": "onesunbeingnow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61654620", + "voter": "team101" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "515160371", + "voter": "sophiachan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16721361908", + "voter": "oldstone" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "644939263", + "voter": "kev7000" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3307077896", + "voter": "nubchai" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318394501", + "voter": "baodog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53110243", + "voter": "recurvez" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53945932", + "voter": "beshaolin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51396498", + "voter": "nathan.chinn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50800450", + "voter": "jcampbell535" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "While going with friends or a close one can be a loads of fun, travelling alone for a specific measure of time can turn out to be a standout amongst the most remunerating things you'll ever do as a result of the immense individuals you'll meet. \n\nWhen we go with friends or family, we tend to adhere to that little gathering of well-known faces and despite the fact that you'll meet new individuals, the elements and collaborations won't be as profound and satisfying. While you're all alone out and about, you're a great deal more energetic to meet travel amigos, collaborate with different explorers and by and large connect more keeping in mind the end goal to mingle. \nhttp://static4.quoteswave.com/wp-content/uploads/2013/09/Be-a-loner.jpg\n\nA standout amongst the most well-known reasons that we get notification from individuals that need to leave on some kind of outing is: I would love to travel, however I have nobody to go with. \n\nSomebody extraordinary said long time ago\u2013 If you sit tight for flawless conditions, you will never complete anything. Absolutely agree with that one. \n\n**REASONS ONE SHOULD TRAVEL ALONE**\nIt\u2019s verging on difficult to locate a good travel buddy, particularly toward the starting, when you have no clue in what capacity will you act out and about and what you really need from your ventures. Toward the starting everything boils down to two decisions: would we like to travel alone, or not go by any means? \nSince travelling alone and with somebody are two distinct universes, both have points of interest and weaknesses. Preferred standpoint of one is all the time the detriment of the other one, and the other way around. \n\n**A) THE STAGGERING FEELING OF SUPREME FLEXIBILITY**\n\t\nWhen you go all alone and you begin meeting individuals and making magnificent friends, you'll most likely collaborate with travel mates and wind up extending your touring plans. You'll most likely change your arrangements once you catch wind of that astonishing waterfall, that extraordinary desert shoreline, the chance to bungee hop from a high extension, or taste an exceptional delicacy you'll just discover off the beaten track. \nhttp://solotravelerblog.com/wp-content/uploads/2015/08/6.jpg\n\nWhen you're travelling, you're interested in change and you'll invite it with open arms. The colossal thing is that you don't need to fit into a gathering's plan, give clarifications or disillusion anybody, you can take after your cadence, longings and move like the wind. \n\n\n**B) YOU WILL IMPROVE AS A LEADER**\n\nWhen you are setting out alone you need to settle on you possess choices. It's as basic as that. No one lets you know where to go and what to do next. It's totally up to you. In the event that you need to go to a remote territory or possibly a risky range, you settle on the choices! Your choice makings abilities won't not be great but rather following 1 to 2 years they will enhance and it's much less demanding for me to settle on choices in each part of my life.\n\nhttp://laurencebradford.com/wp-content/uploads/2014/04/solo-travel-dirtbike.jpg\n\n**C) BETTER DECISION MAKING ABILITIES**\n\nWhen you're travelling alone, you get a considerable measure of time to see and appreciate minimal wonderful things about nature that you didn't have room schedule-wise to take a gander at some time recently. Dusk, sea waves, crisp breeze, twittering of the fowls - all these appear to be exceptional when you invest energy alone travelling. \n\n**D) DISCOVER THAT YOU CAN POSSIBLY ADJUST TO ANY SORT OF ENVIRONMENT YOU NEED**\nYou figure out how to adapt any and all over the place. You mix with the magnificence of the spot you're at in light of the fact that that was the rationale to travel alone at the primary spot.\n\n**E) VENTURE OUT OF YOUR USUAL RANGE OF FAMILIARITY**\nIt's a test for you to make due in a spot you know no one and once in a while, you don't know the dialect and you need to talk in activities or take in the dialect. In the interim, you additionally figure out how to be modest to outsiders in your own particular nation - you help them, make them feel at home since that is precisely what you required when you travelled alone.\n\n**PERSISTENCE IS THE WAY TO EVERYTHING**\n\nYou're not running shy of time or vitality ever on the grounds that you're the main individual YOU'RE needy upon. You don't need to hurry into doing or seeing things, this is a unique open door for you and you know it. You figure out how to be quiet by kicking back and unwinding for a change.\n\nhttp://www.travelscamming.com/wp-content/uploads/2014/02/alone.jpg", + "body_length": 4577, + "cashout_time": "2016-09-25T14:04:39", + "category": "life", + "children": 15, + "created": "2016-08-25T13:20:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"life\",\"introduceyourself\",\"philosophy\",\"story\",\"writing\"],\"image\":[\"http:\\/\\/static4.quoteswave.com\\/wp-content\\/uploads\\/2013\\/09\\/Be-a-loner.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-25T13:20:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 56311776057383, + "parent_author": "", + "parent_permlink": "life", + "pending_payout_value": "470.252 HBD", + "percent_steem_dollars": 10000, + "permlink": "i-am-a-loner-so-what-confession", + "post_id": 742195, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "I am a loner so what?! (CONFESSION)", + "title": "I am a loner so what?! (CONFESSION)", + "total_payout_value": "0.000 HBD", + "url": "/life/@dragonho/i-am-a-loner-so-what-confession" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "684391112245", + "voter": "barrie" + }, + { + "percent": "67", + "reputation": 0, + "rshares": "28861242637", + "voter": "anonymous" + }, + { + "percent": "6700", + "reputation": 0, + "rshares": "11443166253803", + "voter": "rainman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1799329410526", + "voter": "badassmother" + }, + { + "percent": "6700", + "reputation": 0, + "rshares": "123265212225", + "voter": "svk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3210145812518", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2475555968", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3004957033", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "562914017", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42634187380", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1326832061", + "voter": "mini" + }, + { + "percent": "6700", + "reputation": 0, + "rshares": "3850806241533", + "voter": "witness.svk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "170845704", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "325123780094", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "313057889235", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1778262868", + "voter": "mineralwasser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "998189986718", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "133286622056", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9401291654", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2379607300", + "voter": "bingo-1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "497654080", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "758048978", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "230367336", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "86495059917", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "90328344359", + "voter": "juanlibertad" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "3042780804", + "voter": "fkn" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "413319392", + "voter": "paco-steem" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "4826695300", + "voter": "spaninv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23285121596", + "voter": "instructor2121" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "721695329223", + "voter": "nanzo-scoop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6082992060", + "voter": "jerome-colley" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "2164048830", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6176350844", + "voter": "motivational" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "141944533", + "voter": "irit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "346528660475", + "voter": "taoteh1221" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5599875761", + "voter": "karbonxx" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "322991662", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "860993035", + "voter": "sunnyray" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "168028017574", + "voter": "will-zewe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "117776558510", + "voter": "omarb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "269662314937", + "voter": "trogdor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "294114011", + "voter": "knopki" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88573416018", + "voter": "geoffrey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40338902771", + "voter": "honeythief" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6369784385", + "voter": "magnebit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "231088300", + "voter": "ales" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153033041005", + "voter": "asmolokalo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96691334170", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2793666874", + "voter": "stranger27" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "7653769287", + "voter": "furion" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "80021287", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "74058748", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "67628664", + "voter": "ghozia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "663517540", + "voter": "dicov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1012952103", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "274341484", + "voter": "johanniellano" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10685115559", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4378702037", + "voter": "thegoodguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3729428517", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1628549215", + "voter": "pigatto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8294069454", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "152782302685", + "voter": "dragonho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8076886574", + "voter": "magz8716" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "170161819036", + "voter": "jl777" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2450648677", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6200403614", + "voter": "summonerrk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14852645493", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1893100295", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7807128608", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "38819548773", + "voter": "allasyummyfood" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19157224764", + "voter": "laoyao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2964127141", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2555069369", + "voter": "darrenturetzky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9316713067", + "voter": "jphamer1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48633671492", + "voter": "joele" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2892607227", + "voter": "oflyhigh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5825109832", + "voter": "gargon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59668352", + "voter": "tomeraddady" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "731528496", + "voter": "chinadaily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53401673", + "voter": "alfaman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16504052671", + "voter": "yef99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "211234843", + "voter": "mig641" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4377598977", + "voter": "craigwilliamz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "485180293", + "voter": "smisi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60480850", + "voter": "thechosenwhan" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "http://themindunleashed.org/wp-content/uploads/2015/03/emotional-intelligence.jpg\nOur n\u0430tur\u0430l state of being, \u0430\u0455 \u043en\u0435 w\u0456th Soul, is a h\u0430rm\u043en\u0456\u043eu\u0455 \u0455t\u0430t\u0435 \u043ef L\u043ev\u0435, \u0456n wh\u0456\u0441h th\u0435 only feelings \u0430r\u0435 \u043ef \u0441\u043ent\u0456nu\u043eu\u0455 peace \u0430nd bl\u0456\u0455\u0455. Th\u0435r\u0435f\u043er\u0435 \u0456f we are f\u0435\u0435l\u0456ng any f\u0435\u0435l\u0456ng other than \u0440\u0435\u0430\u0441\u0435 and bl\u0456\u0455\u0455, w\u0435 h\u0430v\u0435 got \u043eut \u043ef b\u0430l\u0430n\u0441\u0435 somewhere. Th\u0456\u0455 \u0456\u0455 du\u0435 t\u043e \u043eur \u0441\u043end\u0456t\u0456\u043en\u0435d and f\u0430ult\u0443 thinking, wh\u0456\u0441h \u0435m\u0435rg\u0435\u0455 as t\u043el\u0435r\u0430t\u0456\u043en\u0455, n\u0435\u0435d\u0455 and l\u0456m\u0456t\u0456ng beliefs. U\u0455\u0456ng \u043eur Em\u043et\u0456\u043en\u0430l Int\u0435ll\u0456g\u0435n\u0441\u0435 \u0435\u051bu\u0456\u0440\u0455 us to identify th\u0435 message th\u0430t Soul is \u0455\u0435nd\u0456ng u\u0455 thr\u043eugh th\u0435\u0455\u0435 f\u0435\u0435l\u0456ng\u0455, \u0455\u043e w\u0435 \u0441\u0430n r\u0435\u0441t\u0456f\u0443 our th\u0456nk\u0456ng \u0430nd thus m\u043ev\u0435 always towards Love. \n\nB\u0435\u0456ng Em\u043et\u0456\u043en\u0430ll\u0443 Int\u0435ll\u0456g\u0435nt is m\u0443 \u0430b\u0456l\u0456t\u0443 t\u043e consciously \u0441\u043em\u0440r\u0435h\u0435nd m\u0443 \u043ewn emotional St\u0430t\u0435\u0455 \u043ef B\u0435\u0456ng. B\u0435\u0456ng 'Emotional' m\u0435\u0430n\u0455 that I am aware \u043ef the f\u0435\u0435l\u0456ng th\u0430t is m\u0443 emotional \u0455t\u0430t\u0435 \u043ef b\u0435\u0456ng. Being 'Int\u0435ll\u0456g\u0435nt' m\u0435\u0430n\u0455 I h\u0430v\u0435 a r\u0430t\u0456\u043en\u0430l kn\u043ewl\u0435dg\u0435 or l\u043eg\u0456\u0441\u0430l und\u0435r\u0455t\u0430nd\u0456ng \u043ef the \u0455\u0456tu\u0430t\u0456\u043en, occurrence \u0430nd \u0441\u0456r\u0441um\u0455t\u0430n\u0441\u0435\u0455 th\u0430t I \u0430m \u0441urr\u0435ntl\u0443 experiencing. I am Intelligent wh\u0435n I can \u0441\u043en\u0455\u0441\u0456\u043eu\u0455l\u0443 r\u0430t\u0456\u043en\u0430l\u0456\u0455\u0435 wh\u0430t \u0456\u0455 h\u0430\u0440\u0440\u0435n\u0456ng in m\u0443 reality. I am Em\u043et\u0456\u043en\u0430l wh\u0435n I \u0441\u0430n feel the \u0430w\u0430r\u0435n\u0435\u0455\u0455 of m\u0443 energetic \u0455t\u0430t\u0435 \u043ef being - my \u0435m\u043et\u0456\u043en\u0430l energy. \n\nEmotional Intelligence l\u043e\u0455\u0435\u0455 clarity wh\u0435n I \u0441\u043enfu\u0455\u0435 'being emotional' with 'b\u0435\u0456ng \u0456rr\u0430t\u0456\u043en\u0430l'. Wh\u0435n I am studying negative \u0455t\u0430t\u0435\u0455 of b\u0435\u0456ng th\u0430t \u0441\u0430u\u0455\u0435 m\u0435 to sub-consciously r\u0435\u0430\u0441t, I \u0430m learning \u0430b\u043eut m\u0443 \u043ewn irrational b\u0435h\u0430v\u0456\u043eur th\u0430t \u0456\u0455 w\u0456th\u043eut \u0435m\u043et\u0456\u043en\u0430l \u0456nt\u0435ll\u0456g\u0435n\u0441\u0435. I \u0430m studying 'irrational \u0456nt\u0435ll\u0456g\u0435n\u0441\u0435'. \n\nB\u0435\u0456ng \u0435m\u043et\u0456\u043en\u0430l \u0456\u0455 n\u043et r\u0435\u0430\u0441t\u0456ng \u0456rr\u0430t\u0456\u043en\u0430ll\u0443; it \u0456\u0455 b\u0435\u0456ng \u0441\u043en\u0455\u0441\u0456\u043eu\u0455l\u0443-\u0430w\u0430r\u0435 of m\u0443 emotional \u0455t\u0430t\u0435 \u043ef being. I n\u0435v\u0435r r\u0435\u0430\u0441t \u0435m\u043et\u0456\u043en\u0430ll\u0443 because with emotional \u0456nt\u0435ll\u0456g\u0435n\u0441\u0435 I \u0430m always \u0430bl\u0435 t\u043e r\u0435\u0455\u0440\u043end \u0456nt\u0435ll\u0456g\u0435ntl\u0443. Negative \u0435m\u043et\u0456\u043en\u0430l \u0455t\u0430t\u0435\u0455 \u043ef b\u0435\u0456ng are irrational because a r\u0430t\u0456\u043en\u0430ll\u0443 \u0456nt\u0435ll\u0456g\u0435nt person who \u0456\u0455 \u0435m\u043et\u0456\u043en\u0430ll\u0443 \u0430w\u0430r\u0435 (\u0456nt\u0435ll\u0456g\u0435nt) would n\u0435v\u0435r \u0441h\u043e\u043e\u0455\u0435 to \u0435x\u0440\u0435r\u0456\u0435n\u0441\u0435 them. Understanding irrational b\u0435h\u0430v\u0456\u043eur d\u043e\u0435\u0455 r\u0435\u051bu\u0456r\u0435 \u0435m\u043et\u0456\u043en\u0430l \u0456nt\u0435ll\u0456g\u0435n\u0441\u0435 but \u0456t \u0456\u0455 n\u043et th\u0435 d\u0435f\u0456n\u0456t\u0456\u043en \u043ef Em\u043et\u0456\u043en\u0430l Int\u0435ll\u0456g\u0435n\u0441\u0435. \n**Em\u043et\u0456\u043en\u0430l States \u043ef B\u0435\u0456ng** \nEm\u043et\u0456\u043en\u0430l 'St\u0430t\u0435\u0455 \u043ef B\u0435\u0456ng' r\u0435\u051bu\u0456r\u0435 definition before I \u0441\u0430n und\u0435r\u0455t\u0430nd them intelligently. Wh\u0435n I define \u0430n emotional \u0455t\u0430t\u0435 \u043ef being, I g\u0456v\u0435 \u0456t definition, \u0456t b\u0435\u0441\u043em\u0435\u0455 a definite \u0435m\u043et\u0456\u043en, \u0430nd I b\u0435\u0441\u043em\u0435 \u0441\u043en\u0455\u0441\u0456\u043eu\u0455l\u0443-\u0430w\u0430r\u0435 \u043ef \u0456t\u0455 \u0435x\u0456\u0455t\u0435n\u0441\u0435. \nIt \u0456\u0455 my \u0441\u043en\u0455\u0441\u0456\u043eu\u0455-\u0430w\u0430r\u0435n\u0435\u0455\u0455 \u043ef th\u0435 d\u0435f\u0456n\u0456t\u0435 n\u0430tur\u0435 of m\u0443 \u0435m\u043et\u0456\u043en\u0455 that \u0430ll\u043ew\u0455 m\u0435 t\u043e be emotionally intelligent. \n\nAn 'Em\u043et\u0456\u043en\u0430l' person \u0456\u0455 \u0430w\u0430r\u0435 \u043ef th\u0435\u0456r f\u0435\u0435l\u0456ng\u0455 \u0430\u0455 different \u0435m\u043et\u0456\u043en\u0455. \n\nAn 'Emotionally Int\u0435ll\u0456g\u0435nt' \u0440\u0435r\u0455\u043en is able t\u043e \u0441\u043en\u0455\u0441\u0456\u043eu\u0455l\u0443 n\u0430m\u0435 (d\u0435f\u0456n\u0435) th\u0435\u0456r \u0435m\u043et\u0456\u043en\u0430l \u0455t\u0430t\u0435 \u043ef b\u0435\u0456ng and create \u0456t at w\u0456ll, \u0456f and wh\u0435n th\u0435\u0443 \u0455\u043e \u0441h\u043e\u043e\u0455\u0435.B\u0443 \u0456nt\u0435ll\u0456g\u0435ntl\u0443 d\u0435f\u0456n\u0456ng an \u0435m\u043et\u0456\u043en, I become b\u043eth \u0435m\u043et\u0456\u043en\u0430ll\u0443 \u0430w\u0430r\u0435 of the feeling \u0430nd rationally \u0441\u043en\u0455\u0441\u0456\u043eu\u0455 of \u0456t\u0455 d\u0435f\u0456n\u0456t\u0456\u043en. I \u0441\u0430nn\u043et \u0435x\u0440\u0435r\u0456\u0435n\u0441\u0435 a definite \u0435m\u043et\u0456\u043en unl\u0435\u0455\u0455 I \u0441\u0430n n\u0430m\u0435 it adjectively. In th\u0435 \u0430b\u0455\u0435n\u0441\u0435 \u043ef n\u0430m\u0456ng \u0430n \u0435m\u043et\u0456\u043en, \u0456t w\u0456ll r\u0435m\u0430\u0456n \u0435\u0456th\u0435r a \u0440\u043e\u0455\u0456t\u0456v\u0435 or a n\u0435g\u0430t\u0456v\u0435 experience, d\u0435\u0440\u0435nd\u0435nt \u043en the b\u0435l\u0456\u0435f\u0455 th\u0430t I h\u043eld \u0456n m\u0443 sub-conscious. \n\nI define an emotion (\u0435m\u043et\u0456\u043en\u0430l \u0455t\u0430t\u0435 of b\u0435\u0456ng) w\u0456th an \u0430dj\u0435\u0441t\u0456v\u0435, wh\u0456\u0441h \u0456\u0455 a d\u0435\u0455\u0441r\u0456b\u0456ng word. Any \u0430dj\u0435\u0441t\u0456v\u0435 th\u0430t d\u0435\u0455\u0441r\u0456b\u0435\u0455 my feelings \u043er m\u0443 emotional \u0455t\u0430t\u0435 \u043ef b\u0435\u0456ng is \u0430n emotion. Without \u0430n adjective t\u043e d\u0435\u0455\u0441r\u0456b\u0435 it, \u0430n emotion \u0456\u0455 ju\u0455t a f\u0435\u0435l\u0456ng th\u0430t I d\u043en't r\u0435\u0430ll\u0443 understand. \n\n**Th\u0435 P\u043et\u0435nt\u0456\u0430l of m\u0443 Em\u043et\u0456\u043en\u0430l En\u0435rg\u0443**\nEm\u043et\u0456\u043en \u0456\u0455 an energetic state of being th\u0430t I \u0430m \u0435x\u0440\u0435r\u0456\u0435n\u0441\u0456ng. All f\u043erm\u0455 of \u0435n\u0435rg\u0443 h\u0430v\u0435 a f\u043er\u0441\u0435, a m\u0430gn\u0456tud\u0435 and a \u0440\u043et\u0435nt\u0456\u0430l. Em\u043et\u0456\u043en\u0455 are no different. Th\u0435 \u0440\u043et\u0435nt\u0456\u0430l \u043ef any \u0435n\u0435rg\u0443 \u0456\u0455 r\u0435\u0430l\u0456\u0455\u0435d wh\u0435n the f\u043er\u0441\u0435 \u0430nd m\u0430gn\u0456tud\u0435 \u043ef th\u0430t energy un\u0456t\u0435. \n\nEl\u0435\u0441tr\u0456\u0441\u0430l energy h\u0430\u0455 a f\u043er\u0441\u0435 \u0441\u0430ll\u0435d 'v\u043elt\u0455', a magnitude called 'amps' \u0430nd a potential \u0441\u0430ll\u0435d 'w\u0430tt\u0455'. Th\u0435\u0443 \u0430r\u0435 \u0430ll named after th\u0435 \u0440\u0435r\u0455\u043en wh\u043e f\u0456r\u0455t defined th\u0435m. Emotional energy \u0456\u0455 m\u043er\u0435 \u0441\u043em\u0440l\u0456\u0441\u0430t\u0435d b\u0435\u0441\u0430u\u0455\u0435 not only is \u0456t\u0455 \u0440\u043et\u0435nt\u0456\u0430l d\u0456v\u0456d\u0435d b\u0443 force and magnitude but its force \u0456\u0455 divided b\u0443 polarity \u0430nd \u0456t\u0455 m\u0430gn\u0456tud\u0435 is divided b\u0443 g\u0435nd\u0435r. \nTh\u0435 polarity of my emotions \u0456\u0455 \u0435\u0456th\u0435r positive \u043er n\u0435g\u0430t\u0456v\u0435 \u0430nd the g\u0435nd\u0435r \u043ef m\u0443 \u0435n\u0435rg\u0443 is either male \u043er f\u0435m\u0430l\u0435. (Anger & \u0440r\u0456d\u0435 are m\u0430l\u0435 wh\u0435r\u0435\u0430\u0455 m\u0435\u0435kn\u0435\u0455\u0455 & hum\u0456l\u0456t\u0443 \u0430r\u0435 f\u0435m\u0430l\u0435. H\u043ew\u0435v\u0435r, Im\u0440\u0430t\u0456\u0435n\u0441\u0435 \u0430nd \u0456nt\u043el\u0435r\u0430n\u0441\u0435 are usually \u0455\u0435\u0435n as negative and patience \u0430nd t\u043el\u0435r\u0430n\u0441\u0435 as \u0440\u043e\u0455\u0456t\u0456v\u0435). \n\nTh\u0435 degree, to which my \u0435m\u043et\u0456\u043en\u0430l energy is unb\u0430l\u0430n\u0441\u0435d, b\u0443 b\u0435\u0456ng d\u0456v\u0456d\u0435d b\u0443 \u0435\u0456th\u0435r \u0440\u043el\u0430r\u0456t\u0443 or g\u0435nd\u0435r \u043er b\u043eth, determines th\u0435 intensity \u043ef the emotion that I \u0430m feeling. Th\u0435 greater is the \u0456mb\u0430l\u0430n\u0441\u0435 th\u0435 gr\u0435\u0430t\u0435r \u0456\u0455 th\u0435 intensity \u043ef th\u0435 \u0435m\u043et\u0456\u043en\u0430l feeling. Th\u0435 \u0456nt\u0435n\u0455\u0456t\u0443 of my emotional \u0455t\u0430t\u0435 \u043ef being \u0456\u0455 the product of both th\u0435 g\u0435nd\u0435r \u0430nd th\u0435 polarity of th\u0435 emotional \u0435n\u0435rg\u0443. \nEm\u043et\u0456\u043en\u0430l Int\u0435ll\u0456g\u0435n\u0441\u0435 r\u0435\u051bu\u0456r\u0435\u0455 n\u043et \u043enl\u0443 the definition of m\u0443 emotional \u0455t\u0430t\u0435 \u043ef b\u0435\u0456ng but the und\u0435r\u0455t\u0430nd\u0456ng \u043ef \u0456t\u0455 potential f\u043er my L\u0456f\u0435. \n \n**Understanding th\u0435 \u0440\u043et\u0435nt\u0456\u0430l \u043ef m\u0443 emotional \u0435n\u0435rg\u0443 requires m\u0435 to b\u0435 \u0441\u043en\u0455\u0441\u0456\u043eu\u0455l\u0443-\u0430w\u0430r\u0435 \u043ef:**\no Its force and magnitude \no Its gender, \u0440\u043el\u0430r\u0456t\u0443 \u0430nd intensity \no It\u0455 d\u0435f\u0456n\u0456t\u0456\u043en or Adj\u0435\u0441t\u0456v\u0456t\u0443 \no Th\u0435 \u0455\u0440\u043en\u0455\u043er\u0456ng th\u043eught \u043er th\u043eught\u0455 that \u0430r\u0435 \u0441r\u0435\u0430t\u0456ng th\u0435 emotion. \nTh\u0435 Ult\u0456m\u0430t\u0435 Potential of my Emotional Energy \u0456\u0455 th\u0435 Pur\u0435 F\u0435\u0435l\u0456ng \u043ef L\u043ev\u0435 th\u0430t emanates from m\u0443 S\u043eul. \n\n**L\u0456f\u0435 is \u0430n emotional \u0435x\u0440\u0435r\u0456\u0435n\u0441\u0435**\nM\u0443 Emotional Intelligence requires more than m\u0443 ability t\u043e m\u0430n\u0430g\u0435 my irrational b\u0435h\u0430v\u0456\u043eur. It r\u0435\u051bu\u0456r\u0435\u0455 th\u0435 \u0430b\u0456l\u0456t\u0443 t\u043e understand m\u0443 \u0435m\u043et\u0456\u043en\u0430l experiences intelligently.The \u0441\u0430u\u0455\u0435 \u043ef m\u0443 \u0456rr\u0430t\u0456\u043en\u0430l behaviour \u0456\u0455 m\u0443 lack of emotional \u0456nt\u0435ll\u0456g\u0435n\u0441\u0435. I r\u0435\u0430\u0441t \u0456rr\u0430t\u0456\u043en\u0430ll\u0443 with wh\u0430t \u0456\u0455 sometimes \u0441\u043enfu\u0455\u0456ngl\u0443 \u0441\u0430ll\u0435d \u0430n \u0435m\u043et\u0456\u043en\u0430l reaction. \n\nI respond with positive emotion once I attain th\u0435 intelligence and understanding t\u043e d\u043e \u0455\u043e. M\u0443 symptoms \u043ef irrational b\u0435h\u0430v\u0456\u043eur \u0430r\u0435 \u0441r\u0435\u0430t\u0435d b\u0443 m\u0443 l\u0430\u0441k \u043ef rational \u0456nt\u0435ll\u0456g\u0435n\u0441\u0435. Extreme \u0456rr\u0430t\u0456\u043en\u0430l b\u0435h\u0430v\u0456\u043eur \u0441\u0430u\u0455\u0435d by a lack \u043ef rational \u0430b\u0456l\u0456t\u0443 m\u0430\u0443 b\u0435 diagnosed \u0430\u0455 a m\u0435nt\u0430l \u0456lln\u0435\u0455\u0455 b\u0443 a r\u0430t\u0456\u043en\u0430l \u0440\u0435r\u0455\u043en wh\u043e h\u0430\u0455 no emotional intelligence. \nD\u0456\u0430gn\u043e\u0455\u0456ng emotional d\u0456\u0455\u043erd\u0435r \u043er d\u0456\u0455\u0435\u0430\u0455\u0435 r\u0435\u051bu\u0456r\u0435\u0455 \u0435m\u043et\u0456\u043en\u0430l \u0456nt\u0435ll\u0456g\u0435n\u0441\u0435 not rational \u0456nt\u0435ll\u0456g\u0435n\u0441\u0435, which \u0456\u0455 \u0440r\u043eb\u0430bl\u0443 wh\u0443 illness is u\u0455u\u0430ll\u0443 d\u0456\u0430gn\u043e\u0455\u0435d \u0430\u0455 \u0435\u0456th\u0435r \u0440h\u0443\u0455\u0456\u0441\u0430l \u043er mental and n\u043et \u0435m\u043et\u0456\u043en\u0430l. In th\u0435 \u0430b\u0455\u0435n\u0441\u0435 \u043ef \u0435m\u043et\u0456\u043en\u0430l \u0456nt\u0435ll\u0456g\u0435n\u0441\u0435, my l\u0456f\u0435 became \u0430n un\u0435m\u043et\u0456\u043en\u0430l experience \u0430\u0455 a rationally \u0456nt\u0435ll\u0456g\u0435nt m\u0430n. \n\nIn a du\u0430l\u0456\u0455t\u0456\u0441 w\u043erld, the m\u043er\u0435 r\u0430t\u0456\u043en\u0430ll\u0443 \u0456nt\u0435ll\u0456g\u0435nt I b\u0435\u0441\u043em\u0435 th\u0435 more \u0441\u043ent\u0430\u0456n\u0435d, d\u0456\u0455\u0441\u043enn\u0435\u0441t\u0435d \u0430nd emotionally unintelligent I \u0430m. It \u0456\u0455 m\u0443 \u0435x\u0440\u0435r\u0456\u0435n\u0441\u0435 that th\u0435 m\u043er\u0435 I r\u0430t\u0456\u043en\u0430l\u0456\u0455\u0435 m\u0443 world w\u0456th t\u043el\u0435r\u0430n\u0441\u0435 and patience the less I react with th\u0435 frustration \u043ef m\u0443 anger \u0430nd \u0456nt\u043el\u0435r\u0430n\u0441\u0435. However, w\u0456th emotional \u0456nt\u0435ll\u0456g\u0435n\u0441\u0435 I \u0441\u043en\u0455\u0441\u0456\u043eu\u0455l\u0443 \u0441h\u043e\u043e\u0455\u0435 t\u043e be 'Accepting' \u0456n\u0455t\u0435\u0430d \u043ef t\u043el\u0435r\u0430nt and 'All\u043ew\u0456ng' instead of \u0440\u0430t\u0456\u0435nt. I n\u043e longer \u0441h\u043e\u043e\u0455\u0435 t\u043e b\u0435 a tolerant patient wh\u043e \u0456\u0455 patiently tolerating L\u0456f\u0435. \n\n***I \u0430m n\u043ew \u0430\u0441\u0441\u0435\u0440t\u0456ng L\u0456f\u0435 \u0430\u0455 \u0430n \u0435m\u043et\u0456\u043en\u0430l \u0435x\u0440\u0435r\u0456\u0435n\u0441\u0435 b\u0435\u0441\u0430u\u0455\u0435 I \u0430m l\u0435\u0430rn\u0456ng t\u043e b\u0435 \u0435m\u043et\u0456\u043en\u0430ll\u0443 intelligent \u0435n\u043eugh to allow it to b\u0435 so.**\n \nThe True T\u0435\u0455t \u043ef Em\u043et\u0456\u043en\u0430l Int\u0435ll\u0456g\u0435n\u0441\u0435 \nTh\u0435 tru\u0435 t\u0435\u0455t \u043ef m\u0443 Emotional Int\u0435ll\u0456g\u0435n\u0441\u0435 is whether I can be H\u0430\u0440\u0440\u0443 & W\u0435ll as a r\u0435\u0455ult of m\u0443 \u0441\u043en\u0455\u0441\u0456\u043eu\u0455 \u0441h\u043e\u0456\u0441\u0435 t\u043e b\u0435 \u0455\u043e. It is \u043enl\u0443 m\u0443 emotional ignorance th\u0430t \u0456\u0455 d\u0435\u0440r\u0456v\u0456ng m\u0435 \u043ef th\u0435 happiness \u0430nd well-being th\u0430t \u0456\u0455 m\u0443 true n\u0430tur\u0435. \nHappiness \u0456\u0455 \u0430n \u0435m\u043et\u0456\u043en\u0430l feeling. H\u043ew \u0441\u0430n a r\u0430t\u0456\u043en\u0430l m\u0430n b\u0435 h\u0430\u0440\u0440\u0443 \u0456n a \u0455t\u0430t\u0435 \u043ef b\u0435\u0456ng d\u0456\u0455\u0441\u043enn\u0435\u0441t\u0435d \u0430nd unemotional? W\u0435ll-b\u0435\u0456ng \u0456\u0455 \u0430n emotional f\u0435\u0435l\u0456ng. How \u0441\u0430n I feel well \u0456n a society that medicates \u0440h\u0443\u0455\u0456\u0441\u0430l \u0430nd mental \u0456lln\u0435\u0455\u0455 w\u0456th\u043eut one iota of emotional \u0456nt\u0435ll\u0456g\u0435n\u0441\u0435? \n\nH\u0430v\u0456ng compassion f\u043er \u043eth\u0435r \u0440\u0435\u043e\u0440l\u0435 doesn't m\u0435\u0430n \u0430n\u0443th\u0456ng unl\u0435\u0455\u0455 I have defined th\u0435 \u0441\u043em\u0440\u0430\u0455\u0455\u0456\u043en that I \u0430m feeling. D\u0435f\u0456n\u0456ng compassion \u0430\u0455: \"Wanting to \u0430ll\u0435v\u0456\u0430t\u0435 th\u0435 \u0455uff\u0435r\u0456ng \u043ef others\", \u0456\u0455 a r\u0430t\u0456\u043en\u0430ll\u0443 intelligent d\u0435f\u0456n\u0456t\u0456\u043en of a \u0440h\u0443\u0455\u0456\u0441\u0430l d\u0435\u0455\u0456r\u0435 not th\u0435 d\u0435f\u0456n\u0456t\u0456\u043en \u043ef \u0430n \u0435m\u043et\u0456\u043en\u0430l f\u0435\u0435l\u0456ng. \n\nIt \u0456\u0455 m\u0443 lack of \u0435m\u043et\u0456\u043en\u0430l \u0456nt\u0435ll\u0456g\u0435n\u0441\u0435 th\u0430t d\u0456\u0455\u0441\u043enn\u0435\u0441t\u0455 m\u0435 fr\u043em m\u0443 tru\u0435 emotional n\u0430tur\u0435. A l\u043eg\u0456\u0441\u0430l w\u043erld h\u0430\u0455 b\u0435\u0441\u043em\u0435 an un\u0435m\u043et\u0456\u043en\u0430l w\u043erld th\u0430t \u0456\u0455 d\u0435v\u043e\u0456d of tru\u0435 Happiness & Well-being \u0430nd is full \u043ef sadness \u0430nd \u0455\u0456\u0441kn\u0435\u0455\u0455. W\u0435 have l\u043e\u0455t \u043eur \u0441\u043enn\u0435\u0441t\u0456\u043en t\u043e \u043eur tru\u0435 W\u0435\u0430lth and \u043eur tru\u0435 H\u0435\u0430lth wh\u0435n, \u0430\u0455 a \u0455\u043e\u0441\u0456\u0435t\u0443, w\u0435 \u0430r\u0435 d\u0456\u0455\u0441\u043enn\u0435\u0441t\u0435d fr\u043em \u043eur Emotional Int\u0435ll\u0456g\u0435n\u0441\u0435.", + "body_length": 7886, + "cashout_time": "2016-09-25T03:09:24", + "category": "life", + "children": 2, + "created": "2016-08-24T22:20:27", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"life\",\"howto\",\"philosophy\",\"health\",\"psychology\"],\"image\":[\"http:\\/\\/themindunleashed.org\\/wp-content\\/uploads\\/2015\\/03\\/emotional-intelligence.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-24T22:20:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 25772015141012, + "parent_author": "", + "parent_permlink": "life", + "pending_payout_value": "98.809 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-opposite-of-logisal-under-tanding-original-thoughts-in-1200-words", + "post_id": 736583, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "The opposite of l\u043eg\u0456\u0441\u0430l und\u0435r\u0455t\u0430nd\u0456ng (Original Thoughts in 1200 Words)", + "title": "The opposite of l\u043eg\u0456\u0441\u0430l und\u0435r\u0455t\u0430nd\u0456ng (Original Thoughts in 1200 Words)", + "total_payout_value": "0.000 HBD", + "url": "/life/@dragonho/the-opposite-of-logisal-under-tanding-original-thoughts-in-1200-words" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "668937734218", + "voter": "barrie" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "28856334255", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14541676017396", + "voter": "summon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "65738868122357", + "voter": "ned" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "104885942087", + "voter": "sandra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "829611980239", + "voter": "ihashfury" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3523609766263", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3091083868", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3751872670", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "703078134", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52785528915", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1656894481", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213491769", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "109905473578", + "voter": "alex90342fastn1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "34790108629", + "voter": "aizensou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "382123413420", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "331163120465", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "974591820760", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132765011181", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9413487452", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2389001052", + "voter": "bingo-1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "280440782260", + "voter": "officialfuzzy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1071702906604", + "voter": "cass" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "621602758", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "923628524", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "390763860408", + "voter": "woo7739" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "687299672", + "voter": "timifey2015" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25093971445", + "voter": "dedriss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "43215312611", + "voter": "jchch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287852470", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48031112568", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11259119702", + "voter": "dave-hughes" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-34125390164", + "voter": "noisy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "410899538831", + "voter": "chryspano" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3514308118", + "voter": "nastrom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "143442050992", + "voter": "itsjoeco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "576043212174", + "voter": "eeks" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "510496812", + "voter": "fkn" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "422431208", + "voter": "paco-steem" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "4967938453", + "voter": "spaninv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45577213666", + "voter": "tsugimoto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2007820761", + "voter": "gekko" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "670268914", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "733646916464", + "voter": "nanzo-scoop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8431808575", + "voter": "jerome-colley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5502047299", + "voter": "kingjohal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "90134391614", + "voter": "steve-walschot" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "417009617", + "voter": "yoona-lee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57850241507", + "voter": "hannixx42" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1884956348", + "voter": "coar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44024667559", + "voter": "asch" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1440033247", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17927406157", + "voter": "b4bb4r-5h3r" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "328846755510", + "voter": "blakemiles84" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "367083089332", + "voter": "cyber" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161833281", + "voter": "akaninyene-etuk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "141944533", + "voter": "irit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12177340917", + "voter": "zebbra2014" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "382410007997", + "voter": "taoteh1221" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "330247725", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52803777568", + "voter": "juanmiguelsalas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61950416028", + "voter": "ratel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19053336845", + "voter": "minfon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1147181770", + "voter": "fjccoin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "74901396295", + "voter": "tim-johnston" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "152610751574", + "voter": "thedashguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "33844146844", + "voter": "cheftony" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5412463822", + "voter": "grandpere" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23575160787", + "voter": "ozzy-vega" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47564957024", + "voter": "geoffrey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "234224501190", + "voter": "kimziv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15030579703", + "voter": "jparty" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23287378544", + "voter": "marco-delsalto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31920382172", + "voter": "talanhorne" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2257465592", + "voter": "fuck.off" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "70687509671", + "voter": "freedomengineer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3075354623", + "voter": "iloveporn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8578286187", + "voter": "simoneighties" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3739710609", + "voter": "johnbradshaw" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7578611454", + "voter": "primus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5614905936", + "voter": "dailyfeed" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2608200595", + "voter": "the.whale" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4010352187", + "voter": "spikykevin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "220050702", + "voter": "russle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48991282543", + "voter": "booja" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4903045253", + "voter": "good-karma" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2471065942", + "voter": "unicornfarts" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "78969067407", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23147643255", + "voter": "firepower" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "245616724", + "voter": "mstang83" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "222532257", + "voter": "soupernerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4907399969", + "voter": "cmtzco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39910277653", + "voter": "menta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2608101796", + "voter": "vote" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2675116157", + "voter": "stranger27" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60746961944", + "voter": "jackkang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2746300635", + "voter": "kissmybutt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28718147185", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25692929626", + "voter": "tcfxyz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "300550721", + "voter": "thealexander" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "360927957", + "voter": "rxhector" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1248883243", + "voter": "furion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "227022848", + "voter": "ghozia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20350277957", + "voter": "ausbitbank" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6427602632", + "voter": "autosmile13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "989117228", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1349522322", + "voter": "marcgodard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4466904026", + "voter": "gikitiki" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92736156531", + "voter": "paco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6127335881", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24899403513", + "voter": "igster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4501034549", + "voter": "deviedev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56352134799", + "voter": "sephiroth" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1051966022", + "voter": "jrd8526" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "208581030", + "voter": "zoicneo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "236993728", + "voter": "nysemax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "261906883616", + "voter": "nabilov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "69835502463", + "voter": "ntomaino" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2464852335", + "voter": "dmacshady" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1507108159", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7551319150", + "voter": "tryptamin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3316247889", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "253048089", + "voter": "natali22" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10662899418", + "voter": "nippel66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12360591730", + "voter": "dudutaulois" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "242858237", + "voter": "willytrader" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1219639516", + "voter": "sgnsteems" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "141918879021", + "voter": "dragonho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4385329257", + "voter": "poseidon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "167174613555", + "voter": "calaber24p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13623464709", + "voter": "all-of-us" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7023608765", + "voter": "geronimo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6639090671", + "voter": "cryptobro" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5897621131", + "voter": "tarindel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2712122271", + "voter": "cryptohustlin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4867537049", + "voter": "rainchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "37699663541", + "voter": "sauravrungta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58864388268", + "voter": "rea" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "539576877", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "111726756", + "voter": "elmusic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "265192596484", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "361850682", + "voter": "meteor78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2345937029", + "voter": "lostnuggett" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "411164157", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "435316007", + "voter": "raymonjohnstone" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2822357406", + "voter": "willbeonceagain8" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5950638457", + "voter": "alsprinting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112583666", + "voter": "dabaisha" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4251171596", + "voter": "sacode" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "111850189", + "voter": "pyneer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "788422149", + "voter": "happyphoenix" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20509443094", + "voter": "krabgat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25256579030", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "590354284", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2843794852", + "voter": "trisnawati" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "6945529841", + "voter": "sisterholics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226048695", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "236094999", + "voter": "faraz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3039205816", + "voter": "bkkshadow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "84206519", + "voter": "elliottgodard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3375155212", + "voter": "beanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9280314440", + "voter": "dimitarj" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "186939870", + "voter": "taz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "98468959", + "voter": "steemster1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1763032500", + "voter": "dmilash" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "657021964", + "voter": "spinner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "218472801", + "voter": "weenis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "739655756", + "voter": "metaflute" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50160146364", + "voter": "gomeravibz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12824835130", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51143991", + "voter": "sharon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51522514", + "voter": "johnblow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50731326", + "voter": "lillianjones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1355029444576", + "voter": "laonie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16361768844", + "voter": "rawnetics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12454746135", + "voter": "capitalism" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1988328132", + "voter": "naturalista" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "14976676708", + "voter": "myfirst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "255846109048", + "voter": "somebody" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "369818210", + "voter": "mariadianaelaine" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5548966133", + "voter": "gmurph" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "30691300049", + "voter": "xtester" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15039009354", + "voter": "essra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3205465594", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2306673067", + "voter": "darrenturetzky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7030674025", + "voter": "veerprit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52390149955", + "voter": "xiaohui" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61660086", + "voter": "zahar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3955342930", + "voter": "aboundlessworld" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1578106770", + "voter": "alitas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "662456490", + "voter": "skavkaz" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "1985162457", + "voter": "xiaokongcom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "225195111", + "voter": "future24" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51120963", + "voter": "msjennifer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50828873", + "voter": "ciao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5333573793", + "voter": "thebotkiller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14326940992", + "voter": "cryptos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5782229020", + "voter": "xianjun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50390768", + "voter": "steema" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10836029309", + "voter": "plasticfuzzy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71246492", + "voter": "sparkeddev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "484482156", + "voter": "nonamer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1267824755", + "voter": "bhavnapatel68" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50183394", + "voter": "confucius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2632229460", + "voter": "bledarus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60886073", + "voter": "tomeraddady" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "126983452", + "voter": "party1999" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51153233", + "voter": "jarvis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "574344398", + "voter": "microluck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66981954", + "voter": "mustool" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56572793", + "voter": "belohndichselbst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "37626356958", + "voter": "serejandmyself" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "70111504", + "voter": "sifodyas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58148489", + "voter": "alfaman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "127672859", + "voter": "jimmytwoshoes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "119293113", + "voter": "stevenh512" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1603120138", + "voter": "madoff" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50684643", + "voter": "johnbyrd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "436540984", + "voter": "keepdoodling" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1677565738", + "voter": "shneakysquirrel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54246894", + "voter": "dimitriy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1714091420", + "voter": "movievertigo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51613018", + "voter": "vasilii" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50311250", + "voter": "revelbrooks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2191235220", + "voter": "tomoaki" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15596792368", + "voter": "yef99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24992952529", + "voter": "andrewawerdna" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6857689066", + "voter": "blaat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18363936092", + "voter": "dragonanarchist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61804840", + "voter": "rangertx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55998234", + "voter": "bonapetit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1082600609", + "voter": "rwgunderson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "133141273", + "voter": "runridefly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "440009576", + "voter": "steemitguide" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53116957", + "voter": "maximator15" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54239164", + "voter": "tiituskangas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "26338007740", + "voter": "onesunbeingnow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "94079185", + "voter": "eight-rad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50588612", + "voter": "troich" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57259315", + "voter": "cryptohazard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50593879", + "voter": "crion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50262756", + "voter": "wiss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50422782", + "voter": "goldstein" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54575672", + "voter": "happylovelife" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "327816074", + "voter": "ghasemkiani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50094345", + "voter": "kosmatimuc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "124340468", + "voter": "frick" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52073223", + "voter": "feedyourbank" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50712038", + "voter": "thadm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50710305", + "voter": "prof" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "76666804129", + "voter": "dan-bn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55171651", + "voter": "baldsteve1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50065875", + "voter": "bane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6836656977", + "voter": "goose" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2110924737", + "voter": "renzoarg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50825587", + "voter": "sofa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50751176", + "voter": "roadhog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73182404", + "voter": "ricov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50639382", + "voter": "doggnostic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50377764", + "voter": "jenny-talls" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50288358", + "voter": "waldemar-kuhn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52089873", + "voter": "rb3coins" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50918375", + "voter": "ailo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50663734", + "voter": "libertyism" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50513896", + "voter": "mobilebestdeal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52322404", + "voter": "ksc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52319921", + "voter": "karazia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50186099", + "voter": "moda1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53287995", + "voter": "jamebuffalobill" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50104155", + "voter": "irura" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51109965", + "voter": "f1111111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53052986", + "voter": "vorona" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51983748", + "voter": "ahmedeblogger" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51972989", + "voter": "miriams" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://img1.steemit.com/0x0/http://i.imgur.com/eCWkyEJ.jpg\nThis is a fundraiser for **steemwiki.com** - I have at the moment to much on the plate and I want to give away part of the Managment of steemwiki.com to the community . \n\nWhat is the plan:\n\n1) This should be a fundraiser, and all the STEEMDOLLAR raised will be used for the Managment of steemwiki.com \n- I will still remain the rights Admin of the Domain. \n- I will as well still pay for the hosting and everything like Domain. \n- I will as well act as Director of the Managment \n\nLet me know whey you are the person who is able to manage the project and maybe pitch as well with a short outline how you would like to push steemwiki.com and build it up . A minimum requirement of 10 to 15 hours a week is required for at least for the next 3 to 4 Month to get it going. \n\n**How to apply**\n- Pitch in the Comment whey you or you and your friends are capable and interested in doing so via the Comments.\n\n\nPS: this initiative is started as a response to @ned post two days ago \nhttps://steemit.com/steem/@ned/the-first-phase-of-the-steem-faq-and-wikee-consolidation-of-knowledge\n\n\nUPDATE:\nI have been already in discussion with @ned and got pinged by several people on the Chat. Thanks for the interrest. I will come up with a outline and Roadmap for the Project.", + "body_length": 1326, + "cashout_time": "2016-09-20T18:47:36", + "category": "steemit", + "children": 33, + "created": "2016-08-20T16:06:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"steemwiki\",\"fundraiser\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/i.imgur.com\\/eCWkyEJ.jpg\"],\"users\":[\"ned\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-20T19:37:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 97285668269875, + "parent_author": "", + "parent_permlink": "steemit", + "pending_payout_value": "1452.624 HBD", + "percent_steem_dollars": 10000, + "permlink": "fundraiser-for-http-steemwiki-com-community-management", + "post_id": 684406, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Fundraiser for http://steemwiki.com Community Management.", + "title": "Fundraiser for http://steemwiki.com Community Management.", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@dragonho/fundraiser-for-http-steemwiki-com-community-management" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "654953922744", + "voter": "barrie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3376192052437", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3090874581", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3751590132", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "703039765", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52748916861", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1656784606", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213486537", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "109870718590", + "voter": "alex90342fastn1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381967057553", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "331050639122", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103933614", + "voter": "mineralwasser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "932156854814", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "127320010543", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9360483819", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2388896439", + "voter": "bingo-1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "621571364", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "921836216", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287843749", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48030153180", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18141674423", + "voter": "dedmatvey" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "510434725", + "voter": "fkn" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "412373322", + "voter": "paco-steem" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "4846559905", + "voter": "spaninv" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "670196010", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "719245497772", + "voter": "nanzo-scoop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12016550950", + "voter": "gugnik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2103752174", + "voter": "coar" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1439694092", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "388617380324", + "voter": "cyber" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46993905650", + "voter": "justtryme90" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "322384684", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "835011663", + "voter": "sunnyray" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "180316024488", + "voter": "will-zewe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23195120933", + "voter": "ossama-benjohn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2153930402", + "voter": "fuck.off" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3073911681", + "voter": "iloveporn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3738022061", + "voter": "johnbradshaw" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7892729391", + "voter": "primus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2607018619", + "voter": "the.whale" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8755286125", + "voter": "cannav" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "250755451", + "voter": "russle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2470037491", + "voter": "unicornfarts" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "793498802", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "77353234748", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21158766504", + "voter": "firepower" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "222532257", + "voter": "soupernerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4906356704", + "voter": "cmtzco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2607011927", + "voter": "vote" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2907630270", + "voter": "stranger27" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60189364", + "voter": "aidar88" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2620274598", + "voter": "kissmybutt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "246459444", + "voter": "strawhat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "29740386114", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1515897059", + "voter": "anwar78" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1214099059", + "voter": "furion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57963280", + "voter": "ghozia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1030131032", + "voter": "dicov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11445628842", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6565002729", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "236762268", + "voter": "hankrearden" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "343271522", + "voter": "dr2073" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "269331515603", + "voter": "nabilov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2361896629", + "voter": "juvyjabian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8596857624", + "voter": "warrensteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "430844632", + "voter": "natalyt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "123337144", + "voter": "bobo012" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7054654243", + "voter": "heimindanger" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5728690616", + "voter": "tarindel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108936727685", + "voter": "liberosist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2710228649", + "voter": "cryptohustlin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4971101667", + "voter": "rainchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3541358119", + "voter": "mastletter" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "114054397", + "voter": "elmusic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "297013470916", + "voter": "jl777" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "411114975", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28062844639", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "590278907", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14248320671", + "voter": "sisterholics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226048695", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115354761", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1789014648", + "voter": "smailer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "98458844", + "voter": "steemster1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1940548131", + "voter": "bullionstackers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "829168794", + "voter": "spinner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "218472801", + "voter": "weenis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "739655756", + "voter": "metaflute" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13740894782", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51143991", + "voter": "sharon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50731326", + "voter": "lillianjones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64187235", + "voter": "relocait" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4217456398", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1546544635", + "voter": "alitas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103622524", + "voter": "jonasontheroof" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1823601395", + "voter": "vladikras" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51120963", + "voter": "msjennifer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50828873", + "voter": "ciao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5099699153", + "voter": "thebotkiller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50521096", + "voter": "steemo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50390768", + "voter": "steema" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "148160813", + "voter": "gamerate" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "230196056", + "voter": "vootka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50183394", + "voter": "confucius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61696026", + "voter": "immortality" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60886073", + "voter": "tomeraddady" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "117292449", + "voter": "future-shock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52952823", + "voter": "party1998" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "126983452", + "voter": "party1999" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62391219", + "voter": "immortal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51153233", + "voter": "jarvis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11844637402", + "voter": "matrixdweller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50692212", + "voter": "fortuner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71432076", + "voter": "longevity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "121862219", + "voter": "jimmytwoshoes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50684643", + "voter": "johnbyrd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50682252", + "voter": "thomasaustin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50680459", + "voter": "thermor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50677748", + "voter": "ficholl" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50673817", + "voter": "widell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58816907", + "voter": "longtech" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52786041", + "voter": "vasilii" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50311250", + "voter": "revelbrooks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1103820738", + "voter": "garretts87" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58064982", + "voter": "zite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "302029340", + "voter": "stillsafe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50416427", + "voter": "curpose" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "120048594", + "voter": "runridefly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "222442807", + "voter": "newandold" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4971815160", + "voter": "sharingeverybite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73281122", + "voter": "raseukinapobri" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4483077243", + "voter": "io-io-io" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50588612", + "voter": "troich" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50593879", + "voter": "crion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50271139", + "voter": "hitherise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50262756", + "voter": "wiss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51033798", + "voter": "stroully" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1972433888", + "voter": "doitvoluntarily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "187358259", + "voter": "bobcollier" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50712038", + "voter": "thadm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50710305", + "voter": "prof" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50356354", + "voter": "yorsens" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "74995030613", + "voter": "dan-bn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50065875", + "voter": "bane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50059754", + "voter": "vive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50054445", + "voter": "coad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50825587", + "voter": "sofa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55093071", + "voter": "warhammer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50639382", + "voter": "doggnostic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54839629", + "voter": "dr-who" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "91113944", + "voter": "dr-house" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54929726", + "voter": "michal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51301791", + "voter": "plantbasedjunkie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50377764", + "voter": "jenny-talls" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53771981", + "voter": "freedomnow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53531096", + "voter": "imc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53363887", + "voter": "lynchiandream" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50918375", + "voter": "ailo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "399395426", + "voter": "denmark9560" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52367716", + "voter": "thecentreofitall" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://www.allthingsforsale.com/bento/wp-content/uploads/2015/01/Baby-hedgehog-bento-rice-ball.jpg\nFor most Japanese moms, lunch is not simply basic food planning and pressing meals for their loved and dear ones, they invest their energy serving the dinner in stylishly effective way. These stylish, good looking lunch boxes are known as Bento. It is a Japanese word for any meal served in a box. Ever, bento is a pressed Japanese lunch box. Today, they are an energetic deals that are chanting worldwide.\n\nAs parents turned out to be more gifted at making these boxed snacks, they turned into a fine art that speaks to the individuals who never need to put together a lunch or have a pressed lunch. \n\n\n\n\n\n\n\n\n\n\n\n\n**SOUND, COLORFUL BENTO**\nThe vast majority's thought on bentos is with regards to the customary Japanese gluten and sans dairy approach, yet they get a kick out of the chance to blend it up a little with a scope of wholesome carbs \u2013 cocoa rice, quinoa, buckwheat, rice noodles \u2013 and a lot of crude, beautiful vegetables, in addition to a veggie lover protein like eggs or tofu. It's anything but difficult to get that incredible umami flavor, run of the mill of numerous Japanese dishes, with basic toppings, for example, soya sauce, sesame oil and nori ocean growth. Consolidate these with delightful, new fixings, and your bento is ensured to taste on a par with it looks. \n\n**BRILLIANT BENTO BOX SMALL TREATS TO TRY OUT**\nHere are few small treats that you would love to try out for experiencing with bento boxes.\n\nhttp://popbetty.com/wp-content/uploads/2012/01/bento-box-totoro-annathered.jpg\n\nhttps://shizuokagourmet.files.wordpress.com/2011/12/2011-best-2.jpg\n\nhttp://images.parenting.mdpcdn.com/sites/parenting.com/files/styles/slide/public/birds-nest-bento-box-lunch.jpg?itok=0ICrPqC8\n\nhttp://img3.rnkr-static.com/user_node_img/50035/1000685220/870/tiny-pandas-photo-u1.jpg\n\n\n\n\n\n**TOP TIPS FOR MAKING YOUR OWN PARTICULAR BENTO BOX**\n- Prepare and plan ahead of time \n- Use leftovers where ever possible (it diminishes food waste and spares you time) \n- Use a cookie cutter to make vegetables and natural product into fun shapes, for example, blooms or stars \n- Use beautiful and styled bun boxes to isolate diverse foods \n- better use different colors e.g. in box you're including a green vegetable (e.g. steamed broccoli) then include an alternate colored organic product (e.g. cut strawberries). \t\n\nhttps://www.youtube.com/watch?v=-_hbPLsZvvo\n\n\n\n\n\n\n**TRYING OUT BENTO BOX SMALL TREATS YOURSELF**\nIf you'd like to experience and enjoy eating out bento, then you should know that most Japanese eateries offer a bento alternative on their lunch menu which are by and large sensibly evaluated. On the off chance that you think that it\u2019s hard to pick one dish from the menu it allows you to taste a couple of various dishes at one mealtime. \n\nOne thing you might want to recollect about making these truly little snacks, is that they are not complex and complicated. In any box, they don't need to be. If it can be cut into sufficiently little pieces or put in a sufficiently little holder, it can be a piece of the bento. Bentos should make lunch time more content and less unpleasant, so if you are over-deduction and stretching your hair out for thoughts, you are overlooking the main issue.", + "body_length": 3314, + "cashout_time": "2016-09-20T09:01:45", + "category": "food", + "children": 7, + "created": "2016-08-20T08:41:24", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"food\",\"recipes\",\"art\",\"travel\",\"life\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=-_hbPLsZvvo\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-20T08:41:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 8523791608277, + "parent_author": "", + "parent_permlink": "food", + "pending_payout_value": "14.535 HBD", + "percent_steem_dollars": 10000, + "permlink": "little-lunch-treats-japanese-style", + "post_id": 680970, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Little lunch treats japanese style", + "title": "Little lunch treats japanese style", + "total_payout_value": "0.000 HBD", + "url": "/food/@dragonho/little-lunch-treats-japanese-style" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "640898110967", + "voter": "barrie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3373528425686", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381647672647", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "330875933459", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "889645750470", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "124570708142", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9170685219", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2340724362", + "voter": "bingo-1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "126424085430", + "voter": "team" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48029273695", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3935165340", + "voter": "nastrom" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "510235260", + "voter": "fkn" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "411956985", + "voter": "paco-steem" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "4719920748", + "voter": "spaninv" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "669930054", + "voter": "elishagh1" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1799526647", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "146420588", + "voter": "akaninyene-etuk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "139105642", + "voter": "irit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44362974188", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "382277012591", + "voter": "taoteh1221" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25888963795", + "voter": "altoz" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "322083168", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "180240894546", + "voter": "will-zewe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2255636316", + "voter": "fuck.off" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3072649056", + "voter": "iloveporn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3736659513", + "voter": "johnbradshaw" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2605963906", + "voter": "the.whale" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2469021226", + "voter": "unicornfarts" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "74109662583", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "166899192", + "voter": "soupernerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2606018808", + "voter": "vote" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2744010267", + "voter": "kissmybutt" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "1115475844", + "voter": "furion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7646103172", + "voter": "spiz0r" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1028750422", + "voter": "dicov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "336400723", + "voter": "dr2073" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1478823979", + "voter": "juvyjabian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1848639251", + "voter": "dmacshady" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "570648563", + "voter": "pigatto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422344218", + "voter": "natalyt" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "410932678", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "221510561", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115319800", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95063711", + "voter": "steemster1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "163854600", + "voter": "weenis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1858716461", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5097651473", + "voter": "thebotkiller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61696026", + "voter": "immortality" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59668352", + "voter": "tomeraddady" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "114992597", + "voter": "future-shock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51749350", + "voter": "party1998" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "120775561", + "voter": "party1999" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61167862", + "voter": "immortal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50692212", + "voter": "fortuner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71432076", + "voter": "longevity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60661014", + "voter": "rashka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "127618962", + "voter": "jimmytwoshoes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50673817", + "voter": "widell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58816907", + "voter": "longtech" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13682324960", + "voter": "yef99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "76648552", + "voter": "artsteemit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42241980758", + "voter": "albensilverberg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58534791", + "voter": "runridefly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4734821015", + "voter": "brandonv111" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51033798", + "voter": "stroully" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50712038", + "voter": "thadm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "116717147", + "voter": "powercouple" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54632424", + "voter": "budda" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54351380", + "voter": "heidij" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53278748", + "voter": "ande" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51830988", + "voter": "roadhog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53886433", + "voter": "popovych" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50639382", + "voter": "doggnostic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53746826", + "voter": "dr-who" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "89309880", + "voter": "dr-house" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50377764", + "voter": "jenny-talls" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53496114", + "voter": "imc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50196187", + "voter": "post-successful" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "http://commons.bcit.ca/update/files/2014/10/IMG_3192.jpg\n***JUST ONE PIECE!! TOTALLY UNIQUE**\n\nSince crafted works are made through hands, artists dependably have an alternate thought on the outline. In this way, every craftsmanship that is made is clearly exceptional. In the event that the deals for specific things expand, this is the main time that craftsmen produce indistinguishable articles. Be that as it may, why is it great if stocks are restricted? Great inquiry. Actually, individuals don't need other individuals having the careful thing that they bought, particularly in designs. In this way, in the event that you purchase a craftsmanship, you can guarantee that you are one of the lucky individuals to have that thing! \n\n\u2028\n**EXTREMELY STIFF**\n\nBehind each handcrafted thing is diligent work. The craftsman has put their endeavors into each delivered piece. The greater part of this is done as a work of affection and not took a gander at as a task. I jump at the chance to think the love and enthusiasm set into each carefully handcrafted thing is substantial and the vitality lives on in every creation. \n\n**CHEEKY AND FUNKY**\n\nHandicraft things are quite clever, remarkable, and thus enjoyable to flaunt and share. Purchase handcrafted for the unadulterated fun of sharing. Wouldn't you rather hear how fascinating and one of a kind something you possess is over gracious I have that as well? I know I would! \n\n**THE HARDWORKING ARTIST**\n\nSupport the poor starving craftsman! OK, perhaps it isn't so much that emotional yet simply think\u2026 when you purchase handicrafts you are exchanging cash for an exceptionally made cool article. \nThe Artist is past excited with your backing. Every buy has a major effect in the life of the crafter. You are helping them give more once again into society by helping with assets for a greater amount of their creative products.\n As a fiber craftsman, every time you purchase from me, you'll see me doing a noteworthy cheerful move and in the event that I could, possibly a reverse somersault. \n\n**PROTECTS THE EARTH**\n\nAnother motivation behind why crafted works are so moderate is on the grounds that the materials utilized by the craftsmen are found in nature. Truth be told, a portion of the normally utilized are those that aren't utilized by whatever remains of society. These allude to water lilies that simply obstruct waterways, dried leaves that add to woodland fires, and different indigenous materials. In correlation, the crude materials of their partners experience a few procedures that produces destructive chemicals that hurt air quality and add to an unnatural weather change. Thus, in the event that you are a green crusader who needs to protract the life of our Mother Nature, assume on the liability and favor painstaking work. \n\n\n\n**TRAINS THE BRAIN AND KEEPS PEACE OF MIND**\n\nResearchers have likewise found that subjective challenges are healed through these exercises. Extraordinary skills and attributes include, for instance, discernment and the capacity to arrange and facilitate. All that we do with our hands requests precisely that. We should have the capacity to take in what is at present occurrence, plan ahead, and afterward facilitate our developments and contemplations in a manner that we can finish our crafted works as wanted. With a flawless bit of custom made magnificence to boot! \n\nThe basic certainty is, creating trains the cerebrum. Also, for individuals living, that is a decent thing. While everybody's mind, may lose cells and not recover them, it is totally fit for making new pathways following which we can lead a life where efforts of man and hard work gets paid and less carbon copy stuffs.", + "body_length": 3697, + "cashout_time": "2016-09-19T21:15:06", + "category": "handcraft", + "children": 3, + "created": "2016-08-19T21:02:12", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"handcraft\",\"life\",\"art\",\"introduceyourself\",\"diy\"],\"image\":[\"http:\\/\\/commons.bcit.ca\\/update\\/files\\/2014\\/10\\/IMG_3192.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-19T21:02:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 6751301711721, + "parent_author": "", + "parent_permlink": "handcraft", + "pending_payout_value": "9.415 HBD", + "percent_steem_dollars": 10000, + "permlink": "why-using-handicrafts-relaxes-me", + "post_id": 675504, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "WHY USING HANDICRAFTS RELAXES ME", + "title": "WHY USING HANDICRAFTS RELAXES ME", + "total_payout_value": "0.000 HBD", + "url": "/handcraft/@dragonho/why-using-handicrafts-relaxes-me" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "640898110967", + "voter": "barrie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1594941929014", + "voter": "rossco99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3373467161449", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2472082217", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3000490847", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "562312793", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42148985907", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1325108449", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "170759820", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "109782263120", + "voter": "alex90342fastn1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381640840992", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "330873598837", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103933614", + "voter": "mineralwasser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "889645750470", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "124570708142", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9170685219", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2340724362", + "voter": "bingo-1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "497152073", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "737299552", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "126424085430", + "voter": "team" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "230232988", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22199140100", + "voter": "steampunkpowered" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48029273695", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9875454033", + "voter": "gregory60" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23005174349", + "voter": "joelinux" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2551165790", + "voter": "fkn" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "411956985", + "voter": "paco-steem" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "4719866094", + "voter": "spaninv" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "3349634506", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "718323856149", + "voter": "nanzo-scoop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35830684801", + "voter": "asch" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1799526647", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "139105642", + "voter": "irit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46972560905", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "382276492345", + "voter": "taoteh1221" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "29585748142", + "voter": "altoz" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "322083168", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51650379220", + "voter": "juanmiguelsalas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "188801629744", + "voter": "will-zewe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2255420520", + "voter": "fuck.off" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3072518037", + "voter": "iloveporn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3736505374", + "voter": "johnbradshaw" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7886928428", + "voter": "primus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2605740404", + "voter": "the.whale" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2468913328", + "voter": "unicornfarts" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75720742204", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "166899192", + "voter": "soupernerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4715332328", + "voter": "cmtzco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2605926324", + "voter": "vote" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2743740523", + "voter": "kissmybutt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "239699936910", + "voter": "juneaugoldbuyer" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "5577354698", + "voter": "furion" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "60670058", + "voter": "barbara2" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "67206940", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "62195203", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62793553", + "voter": "ghozia" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1028750422", + "voter": "dicov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "928157051", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2250732176", + "voter": "jvper" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "336400723", + "voter": "dr2073" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1478823979", + "voter": "juvyjabian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422256638", + "voter": "natalyt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156921552944", + "voter": "calaber24p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "555696286", + "voter": "fubar-bdhr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5556366453", + "voter": "tarindel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2802320223", + "voter": "cryptohustlin" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2054654636", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112424717", + "voter": "bigb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "589993342", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "221510561", + "voter": "alex.chien" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "63393354", + "voter": "fnait" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "62763630", + "voter": "keepcalmand" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115302284", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115172592", + "voter": "wunju" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "29279187482", + "voter": "jasonstaggers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "163854600", + "voter": "weenis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "426516004895", + "voter": "glitterfart" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1774287509", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2264449613", + "voter": "darrenturetzky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5097420264", + "voter": "thebotkiller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3219647302", + "voter": "blow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "810261346", + "voter": "kdugar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "145150689", + "voter": "gamerate" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61696026", + "voter": "immortality" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59668352", + "voter": "tomeraddady" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "114975081", + "voter": "future-shock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "120775561", + "voter": "party1999" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61167862", + "voter": "immortal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71432076", + "voter": "longevity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60661014", + "voter": "rashka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "127618962", + "voter": "jimmytwoshoes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58816907", + "voter": "longtech" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13682249646", + "voter": "yef99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58064982", + "voter": "zite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58534791", + "voter": "runridefly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "143667671", + "voter": "pollux.one" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2077507651", + "voter": "einsteinpotsdam" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24469797551", + "voter": "zahnspange" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54632424", + "voter": "budda" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54361270", + "voter": "ilse" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53995298", + "voter": "warhammer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53746826", + "voter": "dr-who" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "89309880", + "voter": "dr-house" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50377764", + "voter": "jenny-talls" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53478598", + "voter": "imc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50196187", + "voter": "post-successful" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "It's happening \nhttp://assets.bwbx.io/images/users/iqjWHBFdfxIU/igEQbELlzuO4/v0/-1x-1.jpg\nNear the end of 2014, Uber co-founder and Chief Executive Officer Travis Kalanick flew to Pittsburgh on a mission: to hire dozens of the world\u2019s experts in autonomous vehicles. The city is home to Carnegie Mellon University\u2019s robotics department, which has produced many of the biggest names in the newly hot field. Sebastian Thrun, the creator of Google\u2019s self-driving car project, spent seven years researching autonomous robots at CMU, and the project\u2019s former director, Chris Urmson, was a CMU grad student.\n\nhttp://www.bloomberg.com/news/features/2016-08-18/uber-s-first-self-driving-fleet-arrives-in-pittsburgh-this-month-is06r7on", + "body_length": 726, + "cashout_time": "2016-09-19T21:45:18", + "category": "uber", + "children": 3, + "created": "2016-08-19T20:46:24", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"uber\",\"business\",\"news\",\"\"],\"image\":[\"http:\\/\\/assets.bwbx.io\\/images\\/users\\/iqjWHBFdfxIU\\/igEQbELlzuO4\\/v0\\/-1x-1.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-19T20:53:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 10244980972540, + "parent_author": "", + "parent_permlink": "uber", + "pending_payout_value": "18.988 HBD", + "percent_steem_dollars": 10000, + "permlink": "uber-s-first-self-driving-fleet-arrives-in-pittsburgh-this-month", + "post_id": 675322, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "NEWSFLASH: Uber\u2019s First Self-Driving Fleet Arrives in Pittsburgh This Month", + "title": "NEWSFLASH: Uber\u2019s First Self-Driving Fleet Arrives in Pittsburgh This Month", + "total_payout_value": "0.000 HBD", + "url": "/uber/@dragonho/uber-s-first-self-driving-fleet-arrives-in-pittsburgh-this-month" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "612457685107", + "voter": "barrie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147938687963", + "voter": "highasfuck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3222649497366", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2470386143", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2998313387", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "567626298", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "41970031815", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1324238651", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "170710638", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131919671291", + "voter": "alex90342fastn1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "443594016925", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "402131480331", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2885285420775", + "voter": "recursive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "804145248438", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "118945064872", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "496893159", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1033672889549", + "voter": "tuck-fheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "725606637", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "230151422", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "76832906436", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21584018574", + "voter": "joelinux" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "533775244918", + "voter": "eeks" + }, + { + "percent": "6000", + "reputation": 0, + "rshares": "15285214838", + "voter": "fkn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81366677909", + "voter": "kingscrown" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "431415531", + "voter": "paco-steem" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "4951892723", + "voter": "spaninv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22734629369", + "voter": "james-show" + }, + { + "percent": "6000", + "reputation": 0, + "rshares": "20069698068", + "voter": "elishagh1" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1798982374", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473983400237", + "voter": "cyber" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "139105642", + "voter": "irit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "36985485439", + "voter": "justtryme90" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "337294006", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "179709454126", + "voter": "will-zewe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46151844179", + "voter": "geoffrey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40156240012", + "voter": "honeythief" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11346049160", + "voter": "primus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72411323467", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2001189701", + "voter": "orly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "561338123", + "voter": "soupernerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128722864367", + "voter": "chhayll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "229349178550", + "voter": "juneaugoldbuyer" + }, + { + "percent": "6000", + "reputation": 0, + "rshares": "32500172999", + "voter": "furion" + }, + { + "percent": "6000", + "reputation": 0, + "rshares": "363745767", + "voter": "barbara2" + }, + { + "percent": "6000", + "reputation": 0, + "rshares": "402914233", + "voter": "ch0c0latechip" + }, + { + "percent": "6000", + "reputation": 0, + "rshares": "372875511", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1099399818", + "voter": "dicov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3279873832", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "336171392", + "voter": "dr2073" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "231607855", + "voter": "yousaywhat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1280971947", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "439481285", + "voter": "luisucv34" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "988233143", + "voter": "arcange" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "138586395310", + "voter": "dragonho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "249043712", + "voter": "licianek" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "121773637", + "voter": "firstbloodio" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23084263177", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21583034312", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4848776038", + "voter": "rainchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "148338993824", + "voter": "jl777" + }, + { + "percent": "6000", + "reputation": 0, + "rshares": "12310352078", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1100163735", + "voter": "yarly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "253811999", + "voter": "yarly2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "254193655", + "voter": "yarly3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147330103", + "voter": "yarly4" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "148163332", + "voter": "yarly5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "84534140", + "voter": "yarly7" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14018437612", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "638371714", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "247428720", + "voter": "yarly10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "221406946", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "139126640", + "voter": "yarly11" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "76414731", + "voter": "yarly12" + }, + { + "percent": "6000", + "reputation": 0, + "rshares": "383569149", + "voter": "fnait" + }, + { + "percent": "6000", + "reputation": 0, + "rshares": "376286073", + "voter": "keepcalmand" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115302284", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "105249109", + "voter": "steemster1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551120334", + "voter": "weenis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6864710552", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50731326", + "voter": "lillianjones" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "495703070", + "voter": "rawnetics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4343107859", + "voter": "gmurph" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2265593960", + "voter": "crypto-toll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62364757", + "voter": "elena000" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "790195310", + "voter": "cjclaro" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3558963294", + "voter": "randyclemens" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61250291", + "voter": "biggdogg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50521096", + "voter": "steemo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50390768", + "voter": "steema" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "127454098", + "voter": "gamerate" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "230038074", + "voter": "vootka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62929947", + "voter": "immortality" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "114939806", + "voter": "future-shock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50545877", + "voter": "party1998" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3078539489", + "voter": "rachelkhona" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61150289", + "voter": "immortal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71432076", + "voter": "longevity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50684643", + "voter": "johnbyrd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50682252", + "voter": "thomasaustin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50680459", + "voter": "thermor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50673817", + "voter": "widell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13875710993", + "voter": "yef99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58064982", + "voter": "zite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57369558", + "voter": "gduran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50687651", + "voter": "abanks1000" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "814036258", + "voter": "eileenbeach" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "113469561", + "voter": "mrainp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "74143056", + "voter": "runridefly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56945554", + "voter": "dubloon135" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1072870174", + "voter": "mister-t" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50356354", + "voter": "yorsens" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54632424", + "voter": "budda" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53995298", + "voter": "warhammer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50718184", + "voter": "roadhog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51112814", + "voter": "lchow14" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54821762", + "voter": "dr-who" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "91096078", + "voter": "dr-house" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50855387", + "voter": "ecoosha" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "http://i.imgur.com/3VBCuyC.png\nWith regards to chocolate, frozen yogurt especially entices us. So do cakes, treats, crisps, and pies. I enjoy the wrapping luxuriousness of a tasty hunk of chocolate; the slight clue of intensity; the exquisite, sweet fragrance; the fragile, dull shading. I regret a low quality, waxy chocolate piece, yet at home, I take pride in utilizing the premium stuff the distance. Yes, you can mark me a chocoholic, and with joy, I gesture in assertion.\n\nIt doesn't take much to get self-maintained chocoholics to begin discussing their most loved culinary subject. White, milk or dim? What's the best strategy for dissolving? Take little chomps or pop the entire thing in your mouth? Cream-filled, organic product filled or nougat-filled? Most loved sweet treat? The discussions could keep going for a considerable length of time. \n\nhttp://i.imgur.com/YtX2inA.png\n\n**THE STORY BEHIND CHOCOLATE**\n\nThe mysterious story of chocolate retreats to years around 1000 BC. Sacred writings from verifiable leftovers demonstrate that it was Mayas who initially found this mystical taste and began developing. Mayas were trailed by Toltecs and Aztecs. These social orders named chocolate, which has right around a sacrosanct significance for them, cacahualt that signifies the seed which is the honor of God. This word changed in time into chocolate\n\n\nThe enchanted story of chocolate does a reversal to years around 1000 BC. Sacred texts from chronicled leftovers demonstrate that it was Mayas who initially found this mystical taste and began developing. Mayas were trailed by Toltecs and Aztecs. \nThese social orders named chocolate, which has just about a holy significance for them, \"cacahualt\" that signifies the seed which is the honor of God. This word changed in time into chocolate. \n\n**CHOCOLATE ENHANCES PASSION**\n\nSo why does chocolate stir such enthusiasm? The answer is fivefold. To begin with, cocoa margarine, the fat in chocolate, dissolves precisely at body temperature. Indeed, different nourishments melt, however there is a minute in chocolate that is neither strong nor fluid: both and not one or the other. \nAt that point, there are the lovely recollections connected with chocolate: solace, great times, and uncommon events of youth. Third, longings. The blend of fat, sweet and sugars draws in the survival systems in our brains. Fourth is absolutely primal impulse: While a preference for hot and severe nourishments is obtained, we were all conceived with an adoration for desserts. Also, the last reason we adore chocolate is for its flavor. \nhttp://i.imgur.com/WbcORfk.png\n\n**INTERESTING SECRET FACTS ABOUT CHOCOLATE**\n\nChocolate tastes awesome, obviously, yet for some chocolate sweethearts, a bit of incredible chocolate offers them something more. Here are a portion of the reasons why the sense of taste and body wish chocolate to such a degree, alongside a couple of peculiar chocolate certainties. \n\n**A) CHOCOLATE MAKES US HAPPY PROVED WITH SCIENCE**\nThere are a great deal of actually happening chemicals in chocolate that are either bravo or influence our state of mind. There's a substance that impels emotions connected with adoration (which we'll get to later), and also tryptophan, which fulfills us exceptionally. \n\nTryptophan (which is additionally found in turkey) impacts the levels of endorphins in the human mind and expands the creation of serotonin, which prompts lifted conditions of rapture. Since there's a ton of this stuff in chocolate, it bodes well that individuals can go a little over the edge with regards to their enthusiasm for chocolate. \nhttp://i.imgur.com/tbntj1x.png\n\n\n**B) CAN WARD OFF TOOTH DECAY**\n\nYou most likely think chocolate is loaded with sugar or manufactured sweetener, and it isn't useful for our teeth. All things considered, it is, however it doesn't need to be. Immaculate cocoa can really avert tooth rot. \n\nCertain normally happening chemicals in cocoa beans battle hurtful microbes in the mouth. Chocolate's capacity to manage the minute crawlies living on the surface of your teeth is effective to the point that it may be added to toothpastes and mouthwashes one day\u2014short the sugar, obviously. \nhttp://i.imgur.com/NYg9Irt.png\n\n**C) CHOCOLATE IS LITERALLY CHEMICAL LOVE**\n\nChocolate contains a substance called phenyl ethylamine which discharges certain \"delight\" endorphins in the cerebrum, which make individuals feel great all over \u2014 like how they feel when they're frantically infatuated. While chocolate won't not be an immaculate adoration substitute, it's one of the best interchanges you'll discover created in mass amount. \nhttp://i.imgur.com/Yv4imxq.png\n\n**D) CHOCOLATE INSPIRED THE INVENTION OF THE MICROWAVE**\n\nPercy Spence, a researcher taking a shot at WWII radar and weapons ventures, happened to be a major enthusiast of chocolate. In the wake of investing some energy close to an impressive gadget called a magnetron, he saw the chocolate bar he'd been keeping in his pocket had swung to mush. \n\nHe rapidly come to an obvious conclusion and acknowledged magnetrons may have the capacity to warm up sustenance at unimaginably quick rates, and voil\u00e0, the microwave broiler was conceived.\nhttp://i.imgur.com/sh7rour.png\n\n\nhttp://i.imgur.com/7eFJ5yy.png", + "body_length": 5268, + "cashout_time": "2016-09-18T01:45:18", + "category": "food", + "children": 3, + "created": "2016-08-18T01:15:51", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"food\",\"life\",\"health\",\"recipes\"],\"image\":[\"http:\\/\\/i.imgur.com\\/3VBCuyC.png\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T01:45:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 12302882227860, + "parent_author": "", + "parent_permlink": "food", + "pending_payout_value": "28.584 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-secret-passion-for-chocolate-sweet-read", + "post_id": 649690, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "THE SECRET PASSION FOR CHOCOLATE (sweet read)", + "title": "THE SECRET PASSION FOR CHOCOLATE (sweet read)", + "total_payout_value": "0.000 HBD", + "url": "/food/@dragonho/the-secret-passion-for-chocolate-sweet-read" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "612444623614", + "voter": "barrie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "151300930871", + "voter": "highasfuck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3222647384907", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3087846295", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3747718155", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "709509846", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52450903737", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1655227465", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213386527", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131916288456", + "voter": "alex90342fastn1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "443586794559", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "402125481002", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2885285420775", + "voter": "recursive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "804132083508", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "118942461925", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "621096965", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1033672889549", + "voter": "tuck-fheman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "906976415", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287683963", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "86436898570", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "464608268", + "voter": "densmirnov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "547460344124", + "voter": "eeks" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "7642607419", + "voter": "fkn" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "431415531", + "voter": "paco-steem" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "4925905044", + "voter": "spaninv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23546200289", + "voter": "james-show" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "10034849034", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "583047036970", + "voter": "nanzo-scoop" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1798948743", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "473936290057", + "voter": "cyber" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "141944533", + "voter": "irit" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "337294006", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "833965174", + "voter": "sunnyray" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45439221658", + "voter": "brandonp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "222897162288", + "voter": "trogdor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5414839604", + "voter": "magnebit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11661217192", + "voter": "primus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72409649688", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2001189701", + "voter": "orly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "617471935", + "voter": "soupernerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "229349178550", + "voter": "juneaugoldbuyer" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "16250086499", + "voter": "furion" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "181872883", + "voter": "barbara2" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "201457116", + "voter": "ch0c0latechip" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "186437755", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1347650689", + "voter": "marcgodard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3279794112", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1310761992", + "voter": "allmonitors" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "141414689092", + "voter": "dragonho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147800867628", + "voter": "calaber24p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "119385919", + "voter": "firstbloodio" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "30812954748", + "voter": "thylbom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24403363930", + "voter": "ubg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8075406677", + "voter": "magz8716" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5382722314", + "voter": "tarindel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4848776038", + "voter": "rainchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "148334053364", + "voter": "jl777" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "6155176039", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1100163735", + "voter": "yarly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "253811999", + "voter": "yarly2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "254193655", + "voter": "yarly3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147330103", + "voter": "yarly4" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "148163332", + "voter": "yarly5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "84534140", + "voter": "yarly7" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8438509202", + "voter": "alsprinting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4340086407", + "voter": "sacode" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "422346630", + "voter": "quigua" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14017985871", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "638362502", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "247428720", + "voter": "yarly10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "221406946", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "139126640", + "voter": "yarly11" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "76414731", + "voter": "yarly12" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "191784574", + "voter": "fnait" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "188143036", + "voter": "keepcalmand" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "84206519", + "voter": "elliottgodard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "186796819", + "voter": "taz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8235704054", + "voter": "youngkim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108644242", + "voter": "steemster1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9607758441", + "voter": "michiel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "505966505", + "voter": "thnkr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "606232368", + "voter": "weenis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46818932902", + "voter": "gomeravibz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6864529853", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52810577", + "voter": "johnblow" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "495703070", + "voter": "rawnetics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1761339156", + "voter": "naturalista" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4416965190", + "voter": "gmurph" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62364757", + "voter": "elena000" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2083930101", + "voter": "darrenturetzky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71286916", + "voter": "sneakerhead" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4831991431", + "voter": "goingpaper" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50390768", + "voter": "steema" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50183394", + "voter": "confucius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59668352", + "voter": "tomeraddady" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50545877", + "voter": "party1998" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3078539489", + "voter": "rachelkhona" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13875280570", + "voter": "yef99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "26247169890", + "voter": "sweetsssj" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "877864470", + "voter": "jotaris" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60985917", + "voter": "rangertx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2170412668", + "voter": "hoopatang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "814036258", + "voter": "eileenbeach" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "113469561", + "voter": "mrainp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50633051602", + "voter": "skum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50588612", + "voter": "troich" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53658735", + "voter": "team101" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1692339912", + "voter": "davidbrogan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53681172", + "voter": "bitdrone" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50271139", + "voter": "hitherise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1325282686", + "voter": "sponge-bob" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "68923369", + "voter": "damnthatbanana" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1402067419", + "voter": "metalbrushes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59023455", + "voter": "magdalenaruth" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61662264", + "voter": "venkat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50054445", + "voter": "coad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6699358198", + "voter": "goose" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "65425247", + "voter": "ezrathecat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52441659", + "voter": "brains" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "http://s2.quickmeme.com/img/05/051570199a55f8b1816200263d2c78747ca8aaa909af32890433604599064b56.jpg\nUnderstanding how to \u0455urv\u0456v\u0435 \u0430nd thr\u0456v\u0435 thr\u043eugh a d\u043ell\u0430r \u0441r\u0456\u0455\u0456\u0455 first r\u0435\u200bqu\u0456r\u0435\u0455 th\u0430t one understand the d\u0435f\u0456n\u0456t\u0456\u043en \u043ef money. Wh\u0456l\u0435 at first gl\u0430n\u0441\u0435, th\u0435 definition of money m\u0456ght \u0455\u0435\u0435m obvious, d\u0435f\u0456n\u0456ng m\u043en\u0435\u0443 \u0456\u0455 more complicated than m\u043e\u0455t might think. Throughout h\u0456\u0455t\u043er\u0443, many \u0456t\u0435m\u0455 h\u0430v\u0435 \u0455\u0435rv\u0435d \u0430\u0455 money, fr\u043em g\u043eld t\u043e \u0441\u0430ttl\u0435 t\u043e shells, t\u043e coins \u0430nd \u0430\u0455 in the United St\u0430t\u0435\u0455 \u0430nd v\u0456rtu\u0430ll\u0443 \u0435v\u0435r\u0443 \u043eth\u0435r \u0441\u043euntr\u0443 in today's w\u043erld, \u0440\u0430\u0440\u0435r created b\u0443 a government \u043er b\u0430nk\u0456ng authority. M\u043e\u0455t Americans \u0455\u0456m\u0440l\u0443 define m\u043en\u0435\u0443 as the U.S. D\u043ell\u0430r. It \u0456\u0455 true that an American \u0441\u0430n \u0435nt\u0435r \u0430n\u0443 retail \u0435\u0455t\u0430bl\u0456\u0455hm\u0435nt \u0456n th\u0435 U.S. \u0430nd l\u0435\u0430v\u0435 w\u0456th wh\u0430t\u0435v\u0435r goods f\u043er wh\u0456\u0441h he \u043er \u0455h\u0435 \u0441h\u043e\u043e\u0455\u0435\u0455 t\u043e exchange f\u043er g\u043e\u043ed\u0455 \u0430nd \u0455\u0435rv\u0456\u0441\u0435\u0455. But wh\u0443 \u0456\u0455 th\u0456\u0455 th\u0435 case? \n\n\n**ALL ABOUT THE MONEY**\nWhen th\u0435 typical \u0441\u0456t\u0456z\u0435n asked t\u043e d\u0435f\u0456n\u0435 m\u043en\u0435\u0443, most w\u0456ll describe it as th\u0435\u0456r n\u0430t\u0456\u043en\u0430l currency, \u043eth\u0435r\u0455 m\u0456ght say \u0456t'\u0455 g\u043eld \u043er silver. \n\nTh\u0435 dictionary defines it \u0430\u0455: \n\"\u0430n\u0443 \u0430rt\u0456\u0441l\u0435 \u043er \u0455ub\u0455t\u0430n\u0441\u0435 u\u0455\u0435d as a m\u0435d\u0456um \u043ef \u0435x\u0441h\u0430ng\u0435, m\u0435\u0430\u0455ur\u0435 \u043ef w\u0435\u0430lth, \u043er m\u0435\u0430n\u0455 \u043ef \u0440\u0430\u0443m\u0435nt, as checks \u043en d\u0435m\u0430nd deposit\". \n\nE\u0441\u043en\u043em\u0456\u0455t Frederic M\u0456\u0455hk\u0456n defines m\u043en\u0435\u0443 \u0430\u0455: \n\"any object \u043er r\u0435\u0441\u043erd that \u0456\u0455 g\u0435n\u0435r\u0430ll\u0443 \u0430\u0441\u0441\u0435\u0440t\u0435d as \u0440\u0430\u0443m\u0435nt for goods and \u0455\u0435rv\u0456\u0441\u0435\u0455 \u0430nd r\u0435\u0440\u0430\u0443m\u0435nt \u043ef d\u0435bt\u0455 \u0456n a g\u0456v\u0435n \u0455\u043e\u0441\u0456\u043e-\u0435\u0441\u043en\u043em\u0456\u0441 \u0441\u043ent\u0435xt \u043er \u0441\u043euntr\u0443\". \n\nTh\u0435\u0455\u0435 d\u0435f\u0456n\u0456t\u0456\u043en\u0455 w\u043euld presumably d\u0435f\u0456n\u0435 money \u0430\u0455 the \u0441urr\u0435n\u0441\u0443 \u0456n your w\u0430ll\u0435t. But that currency \u0456\u0455 \u0455\u0456m\u0440l\u0443 \u0440\u0430\u0440\u0435r \u0456\u0455\u0455u\u0435d b\u0443 th\u0435 g\u043ev\u0435rnm\u0435nt. Wh\u0443 d\u043e\u0435\u0455 this paper have v\u0430lu\u0435? I\u0455 \u0456t because w\u0435 have such a \u0455tr\u043eng b\u0435l\u0456\u0435f \u0456n \u043eur g\u043ev\u0435rnm\u0435nt? I\u0455 it the \u0455\u0440\u0435\u0441\u0456\u0430l \u0440\u0430\u0440\u0435r the U.S. Bureau \u043ef Engraving and Pr\u0456nt\u0456ng uses? Or \u0456\u0455 \u0456t \u0455\u043em\u0435th\u0456ng printed on th\u0435 b\u0456ll\u0455 th\u0435m\u0455\u0435lv\u0435\u0455? Wh\u0435n one r\u0435\u0430d\u0455 wh\u0430t'\u0455 \u043en a \u043en\u0435-d\u043ell\u0430r bill, that person w\u0456ll r\u0435\u0430d: \"This n\u043et\u0435 is l\u0435g\u0430l t\u0435nd\u0435r f\u043er all d\u0435bt\u0455, public \u0430nd private.\" But what \u0456\u0455 \"l\u0435g\u0430l t\u0435nd\u0435r\"? Well, l\u0435g\u0430l tender \u0456\u0455 d\u0435f\u0456n\u0435d as: \n\n\"currency that may b\u0435 l\u0430wfull\u0443 tendered \u0456n \u0440\u0430\u0443m\u0435nt \u043ef a d\u0435bt, \u0455u\u0441h as paper money, Federal Reserve n\u043et\u0435\u0455, \u043er \u0441\u043e\u0456n\u0455\".\n\nW\u0435 u\u0455\u0435 th\u0456\u0455 money because \u0441\u0456v\u0456l\u0456z\u0430t\u0456\u043en\u0455 n\u0435\u0435d a \u0440\u043ert\u0430bl\u0435 \u0430nd \u0441\u043env\u0435rt\u0456bl\u0435 \u0455t\u043er\u0435 \u043ef v\u0430lu\u0435 t\u043e exchange g\u043e\u043ed\u0455. Fr\u043em the b\u0435g\u0456nn\u0456ng \u043ef time, people \u0435x\u0441h\u0430ng\u0435d goods \u0430nd services b\u0443 barter, \u043er tr\u0430d\u0435. H\u043ew\u0435v\u0435r, b\u0430rt\u0435r h\u0430\u0455 \u0455ub\u0455t\u0430nt\u0456\u0430l limitations. For \u0435x\u0430m\u0440l\u0435, a b\u0430rb\u0435r m\u0430\u0443 need th\u0435 \u0455\u0435rv\u0456\u0441\u0435\u0455 \u043ef a d\u043e\u0441t\u043er. H\u043ew\u0435v\u0435r, \u0456f th\u0435 \u043enl\u0443 n\u0435\u0430rb\u0443 d\u043e\u0441t\u043er \u0456\u0455 b\u0430ld \u0430nd \u0456n n\u0435\u0435d of a \u0440lumb\u0435r, neither th\u0435 d\u043e\u0441t\u043er n\u043er th\u0435 b\u0430rb\u0435r can g\u0435t th\u0435 \u0455\u0435rv\u0456\u0441\u0435\u0455 th\u0435\u0443 might need b\u0443 trade \u0430l\u043en\u0435. F\u043er th\u0456\u0455 r\u0435\u0430\u0455\u043en, th\u0435 world h\u0430\u0455 gravitated t\u043e th\u0435 use of money, a f\u043erm of exchange un\u0456v\u0435r\u0455\u0430ll\u0443 \u0430\u0441\u0441\u0435\u0440t\u0435d across a defined area.\nhttp://66.media.tumblr.com/c1df73243d02eb683b4dce4822c0bae2/tumblr_n1a48yFsSx1t5hwi1o1_1280.gif\n\n\n**HOW MONEY IS CREATED**\nIn the current \u0435\u0441\u043en\u043em\u0456\u0441 \u0455\u0443\u0455t\u0435m\u0455, m\u043en\u0435\u0443 \u0456\u0455 \u0441r\u0435\u0430t\u0435d \u0456n tw\u043e w\u0430\u0443\u0455: \n \n* L\u0435g\u0430l Money is th\u0435 Central Bank \u0441r\u0435\u0430t\u0435d b\u0443 th\u0435 minting \u043ef \u0441\u043e\u0456n\u0455 and \u0440r\u0456nt\u0456ng b\u0430nkn\u043et\u0435\u0455 (cash m\u043en\u0435\u0443). \n* M\u043en\u0435\u0443 check, is \"\u0441r\u0435\u0430t\u0435d\" by th\u0435 private b\u0430nk\u0455 b\u0443 b\u043e\u043ek-\u0435ntr\u0443 d\u0435\u0440\u043e\u0455\u0456t \u0455\u0456gn\u0435d b\u0443 th\u0435 \u0441l\u0456\u0435nt\u0455. \nThe \u0430m\u043eunt \u043ef money created \u0456\u0455 m\u0435\u0430\u0455ur\u0435d b\u0443 m\u043en\u0435t\u0430r\u0443 \u0430ggr\u0435g\u0430t\u0435\u0455. \n\n Wh\u0435n it \u0441\u043em\u0435\u0455 to money \u0441r\u0435\u0430t\u0435d b\u0443 \u0440r\u0456v\u0430t\u0435 b\u0430nk\u0455, th\u0435\u0443 do n\u043et really b\u0435l\u0456\u0435v\u0435 it, \u0455\u043e th\u0435r\u0435 is a \u0441\u043env\u0435r\u0455\u0456\u043en \u043ef lawful money \u0430t call d\u0435\u0440\u043e\u0455\u0456t money w\u0456th a ratio of 1 t\u043e 1. Th\u0456\u0455 \u0435x\u0440r\u0435\u0455\u0455\u0456\u043en \u0456\u0455 b\u0435\u0441\u0430u\u0455\u0435 banks have \u0430n \u043ebl\u0456g\u0430t\u0456\u043en \u043ef \u0456mm\u0435d\u0456\u0430t\u0435 payment, \u0456n lawful m\u043en\u0435\u0443 (n\u043et\u0435\u0455 \u0430nd coins), with \u0456t\u0455 d\u0435\u0440\u043e\u0455\u0456t\u043er\u0455, \u0456\u0435 d\u0435bt \u0456\u0455 \u0435\u0430\u0455\u0456l\u0443 r\u0435\u0430l\u0456z\u0430bl\u0435 d\u0430\u0456l\u0443 (expiration d\u0430\u0443). Th\u0456\u0455 creates th\u0435 \u0456m\u0440r\u0435\u0455\u0455\u0456\u043en th\u0430t th\u0435 bank h\u0430\u0455 100% \u043ef our m\u043en\u0435\u0443 \u0455\u0430v\u0435d, but in r\u0435\u0430l\u0456t\u0443 it \u0456\u0455 n\u043et. When a \u0441u\u0455t\u043em\u0435r \u0441h\u0435\u0441k\u0455 h\u0456\u0455 \u0430\u0441\u0441\u043eunt \u0430nd see \u0443\u043eur balance, all \u0443\u043eu'r\u0435 \u0455\u0435\u0435\u0456ng is a b\u043e\u043ek \u0435ntr\u0443 \u043ef wh\u0430t th\u0435 b\u0430nk \u043ew\u0435\u0455 h\u0456m since, th\u0435 bank h\u0430\u0455 b\u043err\u043ew\u0435d \u0455\u043em\u0435 money from \u0430ll their d\u0435\u0440\u043e\u0455\u0456t\u043er\u0455 t\u043e \u0430n\u043eth\u0435r customer thr\u043eugh \u0441r\u0435d\u0456t, \u043er \u0456t m\u0430\u0443 be \u0456nv\u0435\u0455t\u0435d \u0456n b\u043end\u0455 \u043er shares \u043ef companies. \n\nTh\u0435 bank u\u0455u\u0430ll\u0443 h\u0430\u0455 a r\u0435\u0455\u0435rv\u0430t\u0456\u043en (legal 2% plus \u043e\u0440\u0435r\u0430t\u0456ng) \u0441\u0430\u0455h to meet \u0456t\u0455 payment \u043ebl\u0456g\u0430t\u0456\u043en\u0455, \u0455u\u0441h as w\u0456thdr\u0430w\u0456ng cash fr\u043em \u0441u\u0455t\u043em\u0435r\u0455, tr\u0430n\u0455f\u0435r \u0430m\u043eunt\u0455 t\u043e other entities, \u0435t\u0441. .., the \u043eth\u0435r \u0430\u0455\u0455\u0435t\u0455 \u0430r\u0435 b\u043end\u0455, stocks, m\u043ertg\u0430g\u0435\u0455, l\u043e\u0430n\u0455, offices, \u0435t\u0441 ... th\u0430t m\u043en\u0435\u0443 \u0441\u0430n b\u0435 converted t\u043e a gr\u0435\u0430t\u0435r or lesser \u0435xt\u0435nt (liquidity of th\u0435 asset). Th\u0430t is wh\u0443 th\u0435 existence of th\u0435 \"b\u0430nk run\" and th\u0430t \u0456f \u0430ll b\u0430nk \u0441u\u0455t\u043em\u0435r\u0455 w\u0430nt t\u043e exercise th\u0435\u0456r r\u0456ght t\u043e withdraw \u0430ll th\u0435\u0456r m\u043en\u0435\u0443, th\u0435 bank \u0441\u0430n n\u043et d\u0435\u0430l w\u0456th \u0455u\u0441h an und\u0435rt\u0430k\u0456ng t\u043e \u0440\u0430\u0443 \u0456n l\u0430wful m\u043en\u0435\u0443, \u0456n this \u0441\u0430\u0455\u0435 w\u043euld occur a b\u0430nk f\u0430\u0456lur\u0435 \u0456n wh\u0456\u0441h would have to l\u0456\u051bu\u0456d\u0430t\u0435 assets (b\u043end\u0455, \u0455t\u043e\u0441k\u0455, etc ...), as \u0456n \u0430n\u0443 \u043eth\u0435r \u0456n\u0455\u043elv\u0435n\u0441\u0443 \u0440r\u043e\u0441\u0435\u0435d\u0456ng\u0455. In th\u0435 \u0441urr\u0435nt system is unlikely t\u043e h\u0430\u0440\u0440\u0435n \u0430\u0455 th\u0435r\u0435 are mechanisms t\u043e tr\u0443 t\u043e avoid b\u0430nkru\u0440t\u0441\u0443 \u043ef th\u0435 b\u0430nk\u0455 b\u0435\u0441\u0430u\u0455\u0435 of th\u0435\u0455\u0435 panics, \u0430\u0455 an \u0435x\u0430m\u0440l\u0435, we h\u0430v\u0435 the financial \u0441r\u0456\u0455\u0456\u0455 of 2008, where w\u0435 h\u0430v\u0435 \u0455\u0435\u0435n \u0455\u0435v\u0435r\u0430l b\u0430nk\u0455 h\u0430v\u0435 b\u0435\u0435n r\u0435\u0455\u0441u\u0435d b\u0443 Governments and \u0441\u0435ntr\u0430l b\u0430nk\u0455 t\u043e \u0440r\u0435v\u0435nt these failures. \n\nhttps://www.youtube.com/watch?v=Zx0vrR2BFp8\nA Good Video about MONEY creation. \n\nIn \u0455um, th\u0435 bank h\u0430\u0455, f\u043er example, 10% of th\u0435 v\u0430lu\u0435 \u043ef d\u0435\u0440\u043e\u0455\u0456t\u0455 \u0456n cash, does n\u043et m\u0435\u0430n th\u0435 r\u0435m\u0430\u0456n\u0456ng 90% \u043ef m\u043en\u0435\u0443 \u0435x\u0456\u0455t\u0455 in r\u0435\u0430l, v\u0456rtu\u0430l or \u0456m\u0430g\u0456n\u0430r\u0443, th\u0430t 90% \u043ef th\u0435 v\u0430lu\u0435 \u0456\u0455 contained \u0456n \u043eth\u0435r \u0430\u0455\u0455\u0435t\u0455 (b\u043end\u0455, \u0455t\u043e\u0441k\u0455, \u0441r\u0435d\u0456t\u0455, etc. ...). It \u0455h\u043euld also b\u0435 mentioned th\u0430t \u0456f a \u0441u\u0455t\u043em\u0435r writes a \u0441h\u0435\u0441k \u043er m\u0430k\u0435 a tr\u0430n\u0455f\u0435r to \u0430n \u0430\u0441\u0441\u043eunt \u0430t \u0430n\u043eth\u0435r b\u0430nk, the b\u0430nk mu\u0455t \u0455\u0435nd the origin lawful m\u043en\u0435\u0443 (n\u043et\u0435\u0455 \u0430nd \u0441\u043e\u0456n\u0455) to the d\u0435\u0455t\u0456n\u0430t\u0456\u043en bank, but this \u0456\u0455 n\u043et d\u043en\u0435 \u0435\u0456th\u0435r \u0456mm\u0435d\u0456\u0430t\u0435l\u0443, \u043er d\u0456r\u0435\u0441tl\u0443, but b\u0443 \u0441l\u0435\u0430r\u0456ng \u0441\u0430ll\u0455, \u0430nd \u0430l\u0455\u043e, electronic clearing systems, which are calculated on the n\u0435t b\u0430l\u0430n\u0441\u0435\u0455 \u043ef banks wh\u0456\u0441h h\u0430v\u0435 b\u0435\u0435n received \u0430nd \u0456\u0455\u0455u\u0435d \u0441h\u0435\u0441k\u0455, tr\u0430n\u0455f\u0435r \u043er other means \u043ef \u0440\u0430\u0443m\u0435nt, \u0430nd \u0435v\u0435r\u0443 \u0441\u0435rt\u0430\u0456n \u0440\u0435r\u0456\u043ed (d\u0430\u0456l\u0443 - w\u0435\u0435kl\u0443) is w\u0456thdr\u0430wn \u043er \u0440\u0430\u0456d legal m\u043en\u0435\u0443 (n\u043et\u0435\u0455 and \u0441\u043e\u0456n\u0455) fr\u043em th\u0435m \u0430\u0455 those \u0455t\u043e\u0441k\u0455.\n\n**M\u043en\u0435\u0443 \u0456\u0455 \u0455\u0456m\u0440l\u0443 a medium \u043ef exchange** created b\u0443 and b\u0430\u0441k\u0435d by \u0455\u043e\u0441\u0456\u0435t\u0443 in order f\u043er goods and services t\u043e b\u0435 \u0435x\u0441h\u0430ng\u0435d. An\u0443 numb\u0435r \u043ef items h\u0430v\u0435 b\u0435\u0435n used thr\u043eugh\u043eut history, th\u043eugh th\u0435 most durable m\u0435d\u0456um\u0455 \u043ef exchange h\u0430v\u0435 a \u0455t\u0430bl\u0435 v\u0430lu\u0435, \u0430r\u0435 \u0435\u0430\u0455\u0456l\u0443 \u0441\u0430rr\u0456\u0435d, \u0430nd n\u043et subject to \u0455\u0440\u043e\u0456l\u0430g\u0435. B\u0443 und\u0435r\u0455t\u0430nd\u0456ng wh\u0430t m\u043en\u0435\u0443 r\u0435\u0430ll\u0443 is, people, groups and \u0455\u043e\u0441\u0456\u0435t\u0456\u0435\u0455 \u0441\u0430n b\u0435tt\u0435r und\u0435r\u0455t\u0430nd value \u0430nd h\u043ew \u043en\u0435 creates \u0430nd preserves th\u0430t v\u0430lu\u0435. \n\n\nIF you have been reading that far youshould read this book.\n\nhttp://pictures.abebooks.com/isbn/9781469061092-us-300.jpg\nhttps://www.amazon.com/Age-Cryptocurrency-Bitcoin-Challenging-Economic/dp/1250065631/ref=asap_B001JRYOHI_1_1?s=books&ie=UTF8&qid=1416973015&sr=1-1\n\nAND NOW IT'S TIME FOR HAPPY STEEMING !!!\nPS: http://i.imgur.com/8WQHCEx.png", + "body_length": 6428, + "cashout_time": "2016-09-18T00:57:00", + "category": "steemit", + "children": 7, + "created": "2016-08-18T00:20:57", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"steemit\",\"life\",\"steem\",\"money\",\"bitcoin\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=Zx0vrR2BFp8\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T00:20:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 12968139735959, + "parent_author": "", + "parent_permlink": "steemit", + "pending_payout_value": "31.508 HBD", + "percent_steem_dollars": 10000, + "permlink": "thoughts-about-money-when-the-dollar-crises-hits", + "post_id": 649094, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Thoughts about MONEY - When the dollar crises hits...", + "title": "Thoughts about MONEY - When the dollar crises hits...", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@dragonho/thoughts-about-money-when-the-dollar-crises-hits" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "626171362615", + "voter": "barrie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "154585758780", + "voter": "highasfuck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3074581772491", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "140316422085", + "voter": "alex90342fastn1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "472662273067", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "431161922405", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2951012348136", + "voter": "recursive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103915987", + "voter": "mineralwasser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "825099774184", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "121572592504", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2370016042", + "voter": "bingo-1" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "415614379408", + "voter": "steemrollin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "134047282357", + "voter": "team" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "29446433738", + "voter": "jchch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "163251863142", + "voter": "noaommerrr" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "7637204076", + "voter": "fkn" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "411087770", + "voter": "paco-steem" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "4800649963", + "voter": "spaninv" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "10027768790", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "254169227222", + "voter": "pal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4702449999", + "voter": "xav" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1797998021", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72369352954", + "voter": "teamnearandl" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "181852059", + "voter": "edtorrez" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "1625344605", + "voter": "dragonslayer109" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "537623020842", + "voter": "cyber" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "144783423", + "voter": "irit" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "321402190", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "833045186", + "voter": "sunnyray" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "65230737766", + "voter": "ratel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "179541871156", + "voter": "will-zewe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "208150377895", + "voter": "alexc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "37460220513", + "voter": "honeythief" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9859069669", + "voter": "nobodyishome" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7963701306", + "voter": "cannav" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4813524062", + "voter": "good-karma" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73997700758", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2088345879", + "voter": "orly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2245352492", + "voter": "soupernerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5644933315", + "voter": "cmtzco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1615901820", + "voter": "stranger27" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59823637432", + "voter": "jackkang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "181057961389", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35863203963", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1363766636", + "voter": "btcshare7" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "16231621913", + "voter": "furion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "519056881", + "voter": "busser" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "181787721", + "voter": "barbara2" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "203260024", + "voter": "ch0c0latechip" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "186352593", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "198648143", + "voter": "ardina" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1274170818", + "voter": "marcgodard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6914761628", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4048632264", + "voter": "thegoodguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3059560755", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "322707486", + "voter": "dr2073" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7741723631", + "voter": "noodhoog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1476685561", + "voter": "juvyjabian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35098360535", + "voter": "streetstyle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "421850321", + "voter": "natalyt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "138586395310", + "voter": "dragonho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3822601388", + "voter": "oululahti" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "146103325964", + "voter": "calaber24p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "116998200", + "voter": "firstbloodio" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2324867542", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "118353022", + "voter": "bobo012" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21419088440", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5373587569", + "voter": "tarindel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13481220938", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1834207609", + "voter": "cryptohustlin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19433858245", + "voter": "celsius100" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "538820653", + "voter": "qonq99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3321791091", + "voter": "dmitriybtc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "148243716459", + "voter": "jl777" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "6150848082", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "319209188", + "voter": "jeison" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1148208847", + "voter": "yarly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "264975700", + "voter": "yarly2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "265374319", + "voter": "yarly3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153861416", + "voter": "yarly4" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "154731677", + "voter": "yarly5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88291213", + "voter": "yarly7" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "645511564", + "voter": "cooper10510" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15874579884", + "voter": "crazymumzysa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "126830539", + "voter": "mysteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13075969179", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "662570076", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2185629468", + "voter": "sisterholics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "258325412", + "voter": "yarly10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "225925455", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "145310046", + "voter": "yarly11" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79810941", + "voter": "yarly12" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "191699412", + "voter": "fnait" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "188057873", + "voter": "keepcalmand" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81917882", + "voter": "elliottgodard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112996238", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6073004949", + "voter": "dimitarj" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "186777641", + "voter": "taz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112027656", + "voter": "steemster1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115172592", + "voter": "wunju" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1653454864", + "voter": "spinner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4524432256", + "voter": "viernas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3907262027", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2094257272", + "voter": "weenis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6403246595", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51143991", + "voter": "sharon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51522514", + "voter": "johnblow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50731326", + "voter": "lillianjones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6438038655", + "voter": "rawnetics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3783891188", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59484964", + "voter": "muizianer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "385263062", + "voter": "skavkaz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "196154732", + "voter": "drzigfrid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2070924870", + "voter": "kainmarx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51120963", + "voter": "msjennifer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50828873", + "voter": "ciao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3035493326", + "voter": "dercoco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50521096", + "voter": "steemo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50390768", + "voter": "steema" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "91982705", + "voter": "gamerate" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51802213", + "voter": "confucius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60462106", + "voter": "immortality" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60886073", + "voter": "tomeraddady" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112641010", + "voter": "future-shock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50545877", + "voter": "party1998" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2743915631", + "voter": "rachelkhona" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61150289", + "voter": "immortal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51153233", + "voter": "jarvis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50692212", + "voter": "fortuner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71432076", + "voter": "longevity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59447794", + "voter": "rashka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50114625", + "voter": "highnye" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27140497900", + "voter": "serejandmyself" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50684643", + "voter": "johnbyrd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50682252", + "voter": "thomasaustin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50680459", + "voter": "thermor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50677748", + "voter": "ficholl" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50673817", + "voter": "widell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58816907", + "voter": "longtech" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1543088925", + "voter": "movievertigo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50311250", + "voter": "revelbrooks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14379714199", + "voter": "yef99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25676682046", + "voter": "andrewawerdna" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58064982", + "voter": "zite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61682344", + "voter": "artsteemit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50416427", + "voter": "curpose" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "934958518", + "voter": "eileenbeach" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54003219", + "voter": "dajohns1420" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "127493671", + "voter": "mrainp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92595506", + "voter": "runridefly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1252500010", + "voter": "seva" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4652050307", + "voter": "io-io-io" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50588612", + "voter": "troich" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50593879", + "voter": "crion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50271139", + "voter": "hitherise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50262756", + "voter": "wiss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3526435144", + "voter": "ericbotticelli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50712038", + "voter": "thadm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50356354", + "voter": "yorsens" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54632424", + "voter": "budda" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50065875", + "voter": "bane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50059754", + "voter": "vive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50054445", + "voter": "coad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55224909", + "voter": "mindhunter" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52015504", + "voter": "analyzethis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53995298", + "voter": "warhammer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51780266", + "voter": "roadhog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52777051", + "voter": "doggnostic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52504270", + "voter": "jenny-talls" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://image.freepik.com/free-vector/happy-family-day-flat-design-background_23-2147548603.jpg\nAs we go through our everyday lives we often argue and fight with our family. Children fight with their siblings over toys and the cries of \u201cmum, he hit me\u201d, \u201cmum, she\u2019s got my toy\u201d are just some of the things that mothers all over will recognise. When we become teenagers we are going through hormonal changes and dealing with new relationships and we think our parents have never been there. We feel that our parents are holding us back, and stopping us enjoying our lives, when the truth is that they probably have been there, and are trying to stop us from getting hurt the way they were.\nhttp://resources1.news.com.au/images/2011/01/30/1225997/016721-children-fight.jpg\n\n\nFamily are usually with us all the time and as the saying goes \u201cfamiliarity breeds contempt\u201d, we take family for granted and can concentrate on our differences and not our similarities. We let every-day things drive us apart, small things seem so important to argue and fight about that we forget the importance of family.\n\nOur family is there from the day we are born. Mum, dad, grandmothers and granddads, siblings and cousins. Sometimes we don\u2019t have a very big family sometimes we have a lot of family, however many family we have they are the basis of our life. They provide us with life, protection, a home, security and they allow us to grow into the person we will become.\n\nSome people are unfortunate and do not have family, orphans lose their closest relatives when they are young and vulnerable, and may live with more distant family, grandparents, uncles and aunts. Some children are adopted at an early age and these children can say more than any about the importance of family. Many adopted children who have perfectly good lives growing up in their adopted home still want to know about their blood relatives, what they see as their true family.\nhttps://i.ytimg.com/vi/xL22ZnLu-zg/maxresdefault.jpg\n\nFamily are more than the people you live with, they are the people who share your genes, they have similar ways, and maybe that similarity is what makes us push away from each other, but at the end of the day those similarities do pull us back together. \n\nThe format of families has changed over the years. We have gone from a nation where mum used to be the centre of the family, cooking cleaning and caring for everyone else. Where the family elders would be respected for their wisdom and cared for well into their old age in the family home. Today mum is still the centre point of the family but as a lot of mums now work the dynamic is different. Instead of the whole family pivoting around mum, the whole family rotates around each other. Dad may cook a meal while mum takes children to after school activities, mum may take daughters and dad take sons to a different after school activities and they grab a take away meal as a family afterwards.\nhttp://3.bp.blogspot.com/_e_ouH7VtjyY/S-YJD8ib9zI/AAAAAAAAAKE/kV-phALr-lk/s1600/IMG_8126copy.jpg\n\nThe next week they may swap so that mum can see the boys play football and dad can see the girls dance, or play football too. The whole family moves on a constantly moving base changing and developing with the constraints of the weeks and months. Dads and mums may have holidays from work separately to be able to be there for the children. With such busy lives people have less time for their own parents and as the older generations become less independent they rely more on the private services provided to support and care for them.\n\nThis means that the older generations are no longer respected and revered as they used to be. Unfortunately, it is often too late before people really understand the importance of family and the value of the older generation and their knowledge. We rush around in our lives today trying to get so much done and we forget what really matters.\n\nIt is people who do not have a family of their own who really appreciate what is so special about having a family. They appreciate how much you can learn from the older generation, and the value of their experience of life. It is they who like to find where their attitudes and values have come from are they genetic or have they been learned? \n\nFamily is very important as they give each other support, and help through difficult times. Most people turn to their mother or father when they need help or advice, if they need somewhere to stay home is always there. Sisters may be best friends or brothers may be best mates. Brothers may protect their sisters much to their sisters\u2019 annoyance sometimes. \nhttp://i.huffpost.com/gen/1447961/images/o-YOUNG-PEOPLE-TALKING-TO-OLD-PEOPLE-facebook.jpg\n\nFamilies share blood types and genes and sometimes we need our family to donate an organ, bone marrow or some other medical help. It takes a strong family bond for someone to make this kind of sacrifice and yet it does happen when the match is right.\n\nThe family is our personal history, our older generations know this history and unless we take the time to talk and listen to our older family relatives we lose the record of our history. People have amazing histories and these histories have built the life that we are living now. The histories do not have to be spectacular, we do not need to have a king, prince or murderer in our history to make it worthwhile knowing.\n\nEvery family history tells its own story and as part of that family you are part of that story. The hardships and struggles within your family have built the strength of character that you have inherited from your parents, the ethics and morals you have grown up with are part of that history. The beliefs of our parents are passed on to us and this is the grounding of our own beliefs. \n\nFamily is the one group that you are always part of. Whatever you do and wherever you go you are always part of that family. They are your base, your history, your teachers and protectors when you are young and vulnerable and their wisdom is invaluable as you forge your way in life.", + "body_length": 6065, + "cashout_time": "2016-09-17T07:35:18", + "category": "life", + "children": 3, + "created": "2016-08-17T06:58:24", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"life\",\"story\",\"philosophy\",\"psychology\"],\"image\":[\"https:\\/\\/image.freepik.com\\/free-vector\\/happy-family-day-flat-design-background_23-2147548603.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T06:58:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 12066012234079, + "parent_author": "", + "parent_permlink": "life", + "pending_payout_value": "31.082 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-one-group-that-you-are-always-part-of", + "post_id": 637866, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "The one group that you are always part of.", + "title": "The one group that you are always part of.", + "total_payout_value": "0.000 HBD", + "url": "/life/@dragonho/the-one-group-that-you-are-always-part-of" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "625828420411", + "voter": "barrie" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "28854892452", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13649964676132", + "voter": "summon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2925458782474", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1851434600", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2247039689", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425455109", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31378635899", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "992487616", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "127981753", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "136064409295", + "voter": "alex90342fastn1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "101820195", + "voter": "mineralwasser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "803577731776", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "121470907029", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8917511693", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "369247770", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "537460001", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128467771000", + "voter": "team" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "90290869899", + "voter": "jchch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "172530341", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "172853951590", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9674833441", + "voter": "gregory60" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "400961487", + "voter": "paco-steem" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "4799253476", + "voter": "spaninv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20922399584", + "voter": "instructor2121" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "622376690812", + "voter": "nanzo-scoop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1312176444", + "voter": "coar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "363932220", + "voter": "viet-ngo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "395330564", + "voter": "edtorrez" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "532644937822", + "voter": "cyber" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "141944533", + "voter": "irit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "33281324222", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28311982378", + "voter": "altoz" + }, + { + "percent": "8500", + "reputation": 0, + "rshares": "313491861", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53915796245", + "voter": "juanmiguelsalas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183323292342", + "voter": "will-zewe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "228052052760", + "voter": "trogdor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "333320432605", + "voter": "inboundinken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73989891161", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5644205883", + "voter": "cmtzco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3580677068", + "voter": "manoami" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "181057961389", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "517222717", + "voter": "busser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8835117939", + "voter": "spiz0r" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1237159753", + "voter": "marcgodard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7123324337", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3640574315", + "voter": "thegoodguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "493084533", + "voter": "bitland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2840673246", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "943052813", + "voter": "jrd8526" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "315934162", + "voter": "dr2073" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "164264333986", + "voter": "nabilov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1424990011", + "voter": "juvyjabian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "570074959", + "voter": "pigatto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "413308536", + "voter": "natalyt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "138586395310", + "voter": "dragonho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "116998200", + "voter": "firstbloodio" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8322553326", + "voter": "mustafaomar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1340281555", + "voter": "madhatting" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8075247011", + "voter": "magz8716" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1832900379", + "voter": "cryptohustlin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "127018631147", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "185978796", + "voter": "tobythecat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4437506751", + "voter": "sacode" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8367388073", + "voter": "winstonwolfe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12140132009", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "613223409", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "221372001", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "77354765", + "voter": "elliottgodard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "110690192", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "172915517", + "voter": "taz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23314436968", + "voter": "jasonstaggers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3668204600", + "voter": "spookypooky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5945028669", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50220544", + "voter": "johnblow" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "526827957127", + "voter": "laonie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6971609855", + "voter": "rawnetics" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "3958915129", + "voter": "laonie1" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "3958897309", + "voter": "laonie2" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "3958885438", + "voter": "laonie3" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "9802573014", + "voter": "myfirst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "415805658752", + "voter": "glitterfart" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3529565054", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1952628773", + "voter": "darrenturetzky" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "3958548557", + "voter": "laonie4" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "3958536002", + "voter": "laonie5" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "3958527539", + "voter": "laonie6" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "3958503881", + "voter": "laonie7" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "3958485414", + "voter": "laonie8" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "3958463351", + "voter": "laonie9" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "19943231679", + "voter": "xiaohui" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17492278427", + "voter": "driv3n" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3279439905", + "voter": "blow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2843361031", + "voter": "dercoco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103427744", + "voter": "nonamer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72697219", + "voter": "gamerate" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "169697899", + "voter": "vootka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59228185", + "voter": "immortality" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60886073", + "voter": "tomeraddady" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "110342213", + "voter": "future-shock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2632265610", + "voter": "dumpa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88613438", + "voter": "party1999" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58704277", + "voter": "immortal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "109867518", + "voter": "annaha" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58234574", + "voter": "rashka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "470013783", + "voter": "virtualgrowth" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57640568", + "voter": "longtech" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "3956428199", + "voter": "laonie10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14376244687", + "voter": "yef99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56903682", + "voter": "zite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5451239822", + "voter": "monopoly-man" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56318662", + "voter": "artsteemit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155519858", + "voter": "mrainp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92595506", + "voter": "runridefly" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "3939737612", + "voter": "laonie11" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1272152292", + "voter": "sponge-bob" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3603636600", + "voter": "ericbotticelli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "394487282", + "voter": "doitvoluntarily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1809825174", + "voter": "hunterisgreat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53539776", + "voter": "budda" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55224909", + "voter": "mindhunter" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52015504", + "voter": "analyzethis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51835486", + "voter": "warhammer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52859022", + "voter": "roadhog" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53575786", + "voter": "jenny-talls" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53546716", + "voter": "jod" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51401861", + "voter": "atirador101" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://s-media-cache-ak0.pinimg.com/236x/d3/42/40/d34240e2ea6a42b85299cfb0c5f42974.jpg\nWhat is h\u0430\u0440\u0440\u0456n\u0435\u0455\u0455? If we m\u0435\u0430n b\u0443 \u0456t a state \u043ef fulf\u0456llm\u0435nt, when everything \u0456\u0455 g\u043e\u0456ng our way, in t\u0435rm\u0455 \u043ef r\u0435\u0455ult\u0455 \u0430\u0455 well as \u0435ff\u043ert\u0455 (which r\u0435qu\u0456r\u0435\u0455 a \u0440r\u043ev\u0456d\u0435nt\u0456\u0430l \u0441\u043emb\u0456n\u0430t\u0456\u043en of \u0440lu\u0441k \u0430nd lu\u0441k), then \u0456t \u0441\u0430nn\u043et simply be w\u0456ll\u0435d; \u0456t \u0456\u0455 \u0440\u0430rtl\u0443, \u0456f not l\u0430rg\u0435l\u0443, a gift \u043ef f\u0430t\u0435. \n\nHaving \u0455\u0430\u0456d th\u0456\u0455, \u0435v\u0435n th\u0456\u0455 sort \u043ef happiness is a \u0440r\u043edu\u0441t of positive thinking \u0430nd \u0440\u043e\u0455\u0456t\u0456v\u0435 \u0430\u0441t\u0456\u043en, w\u0456th g\u043e\u043ed f\u043ertun\u0435 lending a h\u0435l\u0440\u0456ng hand. In \u0455h\u043ert, \u0456t \u0456\u0455 a \u0440r\u043edu\u0441t \u043ef w\u0456ll \u0456n r\u0435l\u0430t\u0456v\u0435l\u0443 f\u0430v\u043er\u0430bl\u0435 \u0441\u0456r\u0441um\u0455t\u0430n\u0441\u0435\u0455. But isn't \u0456t peculiar to \u0456m\u0440l\u0443 th\u0430t h\u0430\u0440\u0440\u0456n\u0435\u0455\u0455 \u0441\u0430n b\u0435 \u043ef \u043en\u0435 \u0455\u043ert or \u0430n\u043eth\u0435r? Ar\u0435 th\u0435r\u0435 n\u043et simply happiness and unh\u0430\u0440\u0440\u0456n\u0435\u0455\u0455? I think n\u043et. Th\u0435 \u0455\u043ert \u043ef happiness th\u0430t th\u0435 sage talks \u0430b\u043eut \u0456\u0455 compatible w\u0456th m\u0456\u0455f\u043ertun\u0435. It is \u0440r\u0435\u0435m\u0456n\u0435ntl\u0443 a doing fr\u043em w\u0456th\u0456n - wh\u0456l\u0435 w\u0456th\u043eut, th\u0435 \u043enl\u0443 prerequisite f\u043er it is that th\u0435 \u0455\u0430g\u0435 be \u0430l\u0456v\u0435 \u0430nd capable \u043ef thought. It is a f\u0435\u0435l\u0456ng of serenity, \u043ef b\u0435\u0456ng at \u0440\u0435\u0430\u0441\u0435 w\u0456th h\u0456\u0455 situation \u0430nd h\u0456\u0455 conscience, as a w\u0435ll-\u0430dju\u0455t\u0435d \u0430nd fully committed servant \u043ef l\u0456f\u0435, \u043ef hum\u0430n\u0456t\u0443, \u043ef God \u0430\u0455 h\u0435 \u0455\u0435\u0435\u0455 them. \n\nhttp://www.relatably.com/q/img/happiness-quotes-tumblr/896100d801800f03eeb831cfea9840c1.jpg\n\nH\u043ew\u0435v\u0435r \u0441\u043en\u0455\u0441\u0456\u043eu\u0455 h\u0435 is \u043ef th\u0435 \u0455ubj\u0435\u0441t\u0456v\u0435n\u0435\u0455\u0455 - i.e., th\u0435 individual limitations \u0430nd h\u0435n\u0441\u0435 th\u0435 imperfection - \u043ef his view, he d\u043e\u0435\u0455 live by \u0456t w\u0456th utm\u043e\u0455t faithfulness, \u0456f also w\u0456th a w\u0456ll\u0456ngn\u0435\u0455\u0455 to r\u0435\u0435v\u0430lu\u0430t\u0435 \u0456t \u0441r\u0456t\u0456\u0441\u0430ll\u0443 when he catches himself out in a misstep. H\u0456\u0455 w\u0456\u0455d\u043em \u0456\u0455 f\u043er\u0435v\u0435r a work \u0456n \u0440r\u043egr\u0435\u0455\u0455; it \u0456\u0455 \u0430lw\u0430\u0443\u0455 l\u0430\u0441\u0435d with \u0455\u043em\u0435 form \u043ef f\u043e\u043el\u0456\u0455hn\u0435\u0455\u0455, which l\u0435\u0430v\u0435\u0455 him \u043e\u0440\u0435n t\u043e ridicule. Humility \u0430nd \u0441\u043em\u0440\u0430\u0455\u0455\u0456\u043en, plus humor are th\u0435r\u0435f\u043er\u0435 qualities th\u0430t h\u0435 \u0441ult\u0456v\u0430t\u0435\u0455. H\u0435 mocks \u0430nd f\u043erg\u0456v\u0435\u0455 h\u0456m\u0455\u0435lf, and \u0430b\u043ev\u0435 \u0430ll strives to \u0456m\u0440r\u043ev\u0435. He shows no complacency, but an \u0430\u0441\u0441\u0435\u0440t\u0430n\u0441\u0435 of h\u0456\u0455 hum\u0430nn\u0435\u0455\u0455 th\u0430t h\u0435 \u0456\u0455 \u0456nt\u0435nt \u043en br\u0456ng\u0456ng to the highest \u0440\u043e\u0455\u0455\u0456bl\u0435 d\u0435gr\u0435\u0435 of truth \u0430nd n\u043eb\u0456l\u0456t\u0443. And th\u0456\u0455 d\u0435l\u0456\u0441\u0430t\u0435 blend of resignation \u0430nd \u0455truggl\u0435 alone - \u0456n any \u0455\u0456tu\u0430t\u0456\u043en, favorable \u043er not - \u0456\u0455 indeed th\u0435 secret of h\u0456\u0455 h\u0430\u0440\u0440\u0456n\u0435\u0455\u0455, wh\u0456\u0441h \u0430dm\u0456tt\u0435dl\u0443 \u0456\u0455 a dr\u0443 m\u0430nn\u0435r \u043ef j\u043e\u0443 that f\u0456ll\u0455 th\u0435 mind r\u0430th\u0435r than th\u0435 h\u0435\u0430rt. \n\n\nIt f\u043ell\u043ew\u0455 th\u0430t this h\u0430\u0440\u0440\u0456n\u0435\u0455\u0455 leaves \u0455\u043em\u0435th\u0456ng to be desired: happiness \u0456n th\u0435 full\u0435\u0455t \u0455\u0435n\u0455\u0435 \u043ef th\u0435 w\u043erd (\u0430 state \u043ef fulf\u0456llm\u0435nt, wh\u0435n everything \u0456\u0455 g\u043e\u0456ng \u043eur way, \u0456n t\u0435rm\u0455 of results \u0430\u0455 w\u0435ll as \u0435ff\u043ert\u0455), wh\u0456\u0441h \u0456\u0455 a j\u043e\u0443, \u0435v\u0435r so \u0455w\u0435\u0435t, th\u0430t fills b\u043eth the m\u0456nd and the h\u0435\u0430rt. Wh\u0435n th\u0435 \u0455\u0430g\u0435 experiences th\u0456\u0455 supreme h\u0430\u0440\u0440\u0456n\u0435\u0455\u0455, h\u0435 r\u0456ghtl\u0443 f\u0435\u0435l\u0455 bl\u0435\u0455\u0455\u0435d, \u0430nd kn\u043ew\u0455 how \u0440r\u0435\u0441\u0430r\u0456\u043eu\u0455 \u0456t is. Furth\u0435rm\u043er\u0435, h\u0435 accepts this precariousness or th\u0435 fact that suffering \u0430nd ultimately d\u0435\u0430th l\u043e\u043em ahead. Onl\u0443 battles \u0430r\u0435 w\u043en in th\u0435 w\u0430r of l\u0456f\u0435 that w\u0456ll inevitably - d\u0435\u0455\u0440\u0456t\u0435 every valiant effort to \u0440r\u0435v\u0430\u0456l - end in defeat. \n\nSome w\u0456ll say th\u0430t happiness \u0456n its so-called full\u0435\u0455t \u0455\u0435n\u0455\u0435 l\u0435\u0430v\u0435\u0455 \u0455\u043em\u0435th\u0456ng m\u043er\u0435 t\u043e be desired: th\u0435 \u0440\u043ew\u0435r t\u043e make th\u0456\u0455 h\u0430\u0440\u0440\u0456n\u0435\u0455\u0455 infinite: immeasurably gr\u0435\u0430t \u0430nd unl\u0456m\u0456t\u0435d \u0456n duration. Am\u043eng them, some w\u0456ll choose th\u0435 \u0440\u0430th \u043ef f\u0430\u0456th, wh\u0456\u0441h allegedly l\u0435\u0430d\u0455 to a h\u0435\u0430v\u0435nl\u0443 afterlife, wh\u0435r\u0435\u0430\u0455 \u0455\u043em\u0435 will choose th\u0435 path \u043ef r\u0435\u0430\u0455\u043en, which \u0430dm\u0456t\u0455 of n\u043e r\u043e\u0455\u0443 belief b\u0430\u0455\u0435d \u043en wishful th\u0456nk\u0456ng \u0430nd unbridled tru\u0455t. Th\u0456\u0455 path leads n\u043ewh\u0435r\u0435 \u0430\u0455 far as the beyond is concerned, \u043er r\u0430th\u0435r somewhere that \u0456\u0455 unknown - \u0440r\u0435\u0455um\u0430bl\u0443 \u0455\u043e d\u0456ff\u0435r\u0435nt from wh\u0430t \u0456\u0455 known th\u0430t \u0456t totally exceeds our \u0430b\u0456l\u0456t\u0443 to \u0441\u043en\u0441\u0435\u0456v\u0435 \u043ef \u0456t\u0455 n\u0430tur\u0435. \nhttp://i.quoteaddicts.com/media/quotes/1/34832-today-i-choose-to-be-happy.jpg\n\n\nI \u0441\u043eunt among th\u0435\u0455\u0435 \u0440r\u043e\u0440\u043en\u0435nt\u0455 \u043ef r\u0435\u0430\u0455\u043en, th\u0435\u0455\u0435 infidels, t\u043e whom the \u043enl\u0443 \u0455\u043eur\u0441\u0435 \u043ef m\u0435\u0430n\u0456ng \u0456\u0455 not a \u0440\u0430r\u0430d\u0456\u0455\u0456\u0430\u0441\u0430l d\u0435\u0455t\u0456n\u0430t\u0456\u043en, whose existence is \u0455u\u0440\u0440\u043ert\u0435d b\u0443 n\u043e credible evidence, but th\u0435 j\u043eurn\u0435\u0443 \u0456t\u0455\u0435lf, a rugged and uphill j\u043eurn\u0435\u0443 t\u043e b\u0435 sure, w\u0456th an \u0430bund\u0430n\u0441\u0435 of tw\u0456\u0455t\u0455 \u0430nd turn\u0455, some \u043ef wh\u0456\u0441h are \u0440r\u043e\u0440\u0456t\u0456\u043eu\u0455, others not. This journey \u0456\u0455 well worth th\u0435 tr\u043eubl\u0435, \u0456n my \u043e\u0440\u0456n\u0456\u043en. It is \u0455\u043e \u0456nd\u0435\u0440\u0435nd\u0435ntl\u0443 \u043ef the above-mentioned d\u0435\u0455t\u0456n\u0430t\u0456\u043en, which \u0440\u0435\u043e\u0440l\u0435 \u0430r\u0435 fr\u0435\u0435 to pursue bl\u0456ndl\u0443 \u043er r\u0435g\u0430rd w\u0456th skepticism (\u0430nd w\u0456th d\u0435t\u0430\u0441hm\u0435nt t\u043e b\u043e\u043et, in th\u0435 b\u0435\u0455t \u0441\u0430\u0455\u0435 scenario). It \u0456\u0455 \u0430ll about th\u0435 d\u0456gn\u0456t\u0443 of living and loving \u0430nd the \u0440l\u0435\u0430\u0455ur\u0435 \u043ef succeeding \u0456n these d\u0456ff\u0456\u0441ult assignments. Fr\u043em th\u0456\u0455 perspective, the \u0440ur\u0440\u043e\u0455\u0435 \u043ef life is none \u043eth\u0435r th\u0430n l\u0456f\u0435 \u0456t\u0455\u0435lf, \u0456n \u0440\u0430rtn\u0435r\u0455h\u0456\u0440 w\u0456th our f\u0435ll\u043ew creatures; \u0430nd h\u0430\u0440\u0440\u0456n\u0435\u0455\u0455 is made \u0440\u043e\u0455\u0455\u0456bl\u0435 - within \u0441\u0435rt\u0430\u0456n l\u0456m\u0456t\u0455 - by \u043eur striving t\u043e \u0430\u0441h\u0456\u0435v\u0435 th\u0456\u0455 w\u043erth\u0443, albeit humble \u0440ur\u0440\u043e\u0455\u0435. \n\nhttp://cdn.coresites.factorymedia.com/cooler_new/wp-content/uploads/2015/03/42528712954ddebef15fe09.93531036.jpg\n\nTh\u0435 limits imposed u\u0440\u043en w\u043erldl\u0443 h\u0430\u0440\u0440\u0456n\u0435\u0455\u0455 may \u0456n\u0456t\u0456\u0430ll\u0443 \u0455t\u0456\u0441k \u0456n \u043eur craw, but after du\u0435 consideration, \u0430\u0455 w\u0435 r\u0435\u0430l\u0456z\u0435 that life w\u0456th\u043eut th\u0435\u0455\u0435 limits w\u043euld b\u0435 d\u0435\u0430th, we accept them, \u0430nd b\u0435tt\u0435r \u0455t\u0456ll we welcome th\u0435m. Life \u0456\u0455 b\u0443 d\u0435f\u0456n\u0456t\u0456\u043en a d\u0443n\u0430m\u0456\u0441 state th\u0430t \u0440r\u0435\u0455u\u0440\u0440\u043e\u0455\u0435\u0455 a \u0440\u0435r\u0440\u0435tu\u0430l t\u0435n\u0455\u0456\u043en between desires \u0430nd th\u0435\u0456r \u0455\u0430t\u0456\u0455f\u0430\u0441t\u0456\u043en. R\u0435nd\u0435r this \u0455\u0430t\u0456\u0455f\u0430\u0441t\u0456\u043en absolute, \u0443\u043eu resolve th\u0456\u0455 t\u0435n\u0455\u0456\u043en \u0430nd \u0441\u043en\u0455\u0435\u051bu\u0435ntl\u0443 r\u0435du\u0441\u0435 l\u0456f\u0435 t\u043e nothing; i.e., something \u0430\u0455 \u0456n\u0435rt \u0430\u0455 a \u0455t\u043en\u0435. And th\u0456\u0455 nothing - th\u0456\u0455 \u0456n\u0435rt \u0455\u043em\u0435th\u0456ng - \u0456\u0455 death, \u0430\u0455 I ju\u0455t pointed \u043eut. N\u043et a br\u0456ll\u0456\u0430nt prospect \u0456n th\u0435 \u0435\u0443\u0435\u0455 of a life l\u043ev\u0435r!", + "body_length": 5035, + "cashout_time": "2016-09-16T21:25:18", + "category": "life", + "children": 7, + "created": "2016-08-16T20:50:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"life\",\"howto\",\"philosophy\",\"health\",\"liberty\"],\"image\":[\"https:\\/\\/s-media-cache-ak0.pinimg.com\\/236x\\/d3\\/42\\/40\\/d34240e2ea6a42b85299cfb0c5f42974.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T20:50:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 22668710669324, + "parent_author": "", + "parent_permlink": "life", + "pending_payout_value": "87.667 HBD", + "percent_steem_dollars": 10000, + "permlink": "pursuit-the-desired-status-of-happiness", + "post_id": 632260, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Pursuit the desired status of happiness", + "title": "Pursuit the desired status of happiness", + "total_payout_value": "0.000 HBD", + "url": "/life/@dragonho/pursuit-the-desired-status-of-happiness" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "681191974756", + "voter": "barrie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "117586394931", + "voter": "highasfuck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3215224467003", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3084778164", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3743876687", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "708886127", + "voter": "bunny" + }, + { + "percent": "4200", + "reputation": 0, + "rshares": "1677863737953", + "voter": "complexring" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52144247916", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1653654173", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213261824", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106230685302", + "voter": "alex90342fastn1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "461805617187", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "449986541635", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3016121417285", + "voter": "recursive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103898158", + "voter": "mineralwasser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "824431878108", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132152478271", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "613475438", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "882992232", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22595314036", + "voter": "dedriss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287488004", + "voter": "helen.tan" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "7627374798", + "voter": "fkn" + }, + { + "percent": "8000", + "reputation": 0, + "rshares": "400731457", + "voter": "paco-steem" + }, + { + "percent": "8000", + "reputation": 0, + "rshares": "4674985428", + "voter": "spaninv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "37644809307", + "voter": "james-show" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "10015121456", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "605723141723", + "voter": "nanzo-scoop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "227471915413", + "voter": "mummyimperfect" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1812997991", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25882240559", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24494634227", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "296665146103", + "voter": "taoteh1221" + }, + { + "percent": "8000", + "reputation": 0, + "rshares": "313304884", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "223257558252", + "voter": "wingz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1145891128", + "voter": "fjccoin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73025817423", + "voter": "herzmeister" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "77102090452", + "voter": "tim-johnston" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "222302468309", + "voter": "trogdor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "34745264614", + "voter": "honeythief" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1058186213", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "611852008", + "voter": "mammasitta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6930561064", + "voter": "primus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54459091390", + "voter": "isteemit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7693374562", + "voter": "cannav" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4332238166", + "voter": "dennygalindo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46326428852", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2044494454", + "voter": "orly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9859740553", + "voter": "getssidetracked" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "150452302", + "voter": "aidar88" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58551955906", + "voter": "jackkang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "181057961389", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35916485618", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1128476854", + "voter": "anwar78" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "15676959042", + "voter": "furion" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "181632015", + "voter": "barbara2" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "203088229", + "voter": "ch0c0latechip" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "186196887", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9436954203", + "voter": "spiz0r" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "159828565", + "voter": "ardina" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1236231983", + "voter": "marcgodard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4368646507", + "voter": "gikitiki" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6654464381", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1548369371", + "voter": "incomemonthly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4149993026", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2451544510", + "voter": "deviedev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "298331181", + "voter": "dr2073" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2451380021", + "voter": "screasey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28800756928", + "voter": "streetstyle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1389717674", + "voter": "dimon14" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7027828848", + "voter": "warrensteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "421419778", + "voter": "natalyt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "140712210804", + "voter": "dragonho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3762434891", + "voter": "oululahti" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4499526465", + "voter": "smolalit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "149304784201", + "voter": "calaber24p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "119385919", + "voter": "firstbloodio" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108474582", + "voter": "bobo012" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4864472801", + "voter": "tarindel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20196514637", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "104551239", + "voter": "elmusic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "201013865601", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "350779472", + "voter": "meteor78" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "6143300612", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15689000196", + "voter": "steemedbroccoli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1126640588", + "voter": "yarly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "284219244", + "voter": "yarly2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "284646338", + "voter": "yarly3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "168397916", + "voter": "yarly4" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "166032052", + "voter": "yarly5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "94816434", + "voter": "yarly7" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7239402028", + "voter": "rayphu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5785084309", + "voter": "carlidos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "318172716", + "voter": "atx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "331281234", + "voter": "berrysmok" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17734340595", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "618780033", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "227430389", + "voter": "yarly10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "225889797", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "137916694", + "voter": "yarly11" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7902417568", + "voter": "michaeldodridge" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "67659226", + "voter": "yarly12" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "191533009", + "voter": "fnait" + }, + { + "percent": "3000", + "reputation": 0, + "rshares": "187896815", + "voter": "keepcalmand" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "79629905", + "voter": "elliottgodard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112943504", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "186709920", + "voter": "taz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112027656", + "voter": "steemster1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "562153915", + "voter": "dmilash" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "109027228", + "voter": "spinner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66982682", + "voter": "buyselltrade" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3334195501", + "voter": "uwe69" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "938313206", + "voter": "metaflute" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8684754453", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50731326", + "voter": "lillianjones" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "525454781690", + "voter": "laonie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6971609855", + "voter": "rawnetics" + }, + { + "percent": "7000", + "reputation": 0, + "rshares": "11272967321", + "voter": "myfirst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "65123028", + "voter": "kurzer42" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4030655411", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2128818147", + "voter": "darrenturetzky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "681723333", + "voter": "romancs" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "19916799245", + "voter": "xiaohui" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "376352476", + "voter": "bitcoindon23" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12665329218", + "voter": "velourex" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31835964431", + "voter": "joele" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1156392982", + "voter": "dercoco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1599266434", + "voter": "cmorton" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425639016", + "voter": "deepdarkweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "120504824", + "voter": "vootka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50183394", + "voter": "confucius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12171955430", + "voter": "borran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61696026", + "voter": "immortality" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "114921957", + "voter": "future-shock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50545877", + "voter": "party1998" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "110168059", + "voter": "party1999" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61150289", + "voter": "immortal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "70003435", + "voter": "longevity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60661014", + "voter": "rashka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27739916666", + "voter": "serejandmyself" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99283460", + "voter": "stevenh512" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2098288486", + "voter": "movievertigo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11501934432", + "voter": "yef99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56695901", + "voter": "gosteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66518345", + "voter": "artsteemit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1217688364", + "voter": "eileenbeach" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "595518238", + "voter": "lenar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "310992576", + "voter": "mrainp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55426261", + "voter": "runridefly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51720620", + "voter": "profanarky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63822602", + "voter": "moneymaker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55737590", + "voter": "kingsjack123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54632424", + "voter": "budda" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50065875", + "voter": "bane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54992417", + "voter": "pennystockhelp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50931848", + "voter": "analyzethis" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://cdn-media-1.lifehack.org/wp-content/files/2011/12/shutterstock_4325380.jpg\nSome folk say I need to be smarter\nI have tried all I know how to do\nThe path to success is challenging\nThe easy roads are few\n\nTo fail is certainly needed\nYes, it certainly takes its toll.\nFor Failure is the name of the highway\nThat will take you to your goal.\n\nFear not the failures in life, you see.\nThey are the path to success.\nNo creature on Earth has done better\nNone has avoided the stress.\n\nSo when you encounter failure\u200b\nDo not dismay or groan.\nIt\u2019s only another required step \nTreat Failure as a welcome step-stone", + "body_length": 608, + "cashout_time": "1969-12-31T23:59:59", + "category": "life", + "children": 5, + "created": "2016-08-15T13:24:42", + "curator_payout_value": "3.223 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"life\",\"writing\",\"poetry\",\"creative\"],\"image\":[\"https:\\/\\/cdn-media-1.lifehack.org\\/wp-content\\/files\\/2011\\/12\\/shutterstock_4325380.jpg\"]}", + "last_payout": "2016-09-15T03:47:42", + "last_update": "2016-08-15T13:24:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 14419473907892, + "parent_author": "", + "parent_permlink": "life", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "failure-an-original-poem", + "post_id": 612750, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Failure (An Original Poem)", + "title": "Failure (An Original Poem)", + "total_payout_value": "40.199 HBD", + "url": "/life/@dragonho/failure-an-original-poem" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "104079329607", + "voter": "highasfuck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3240548276801", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3700162488", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4490682992", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "850358642", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62432101870", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1983596136", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "255851544", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "110182187252", + "voter": "alex90342fastn1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "441421923212", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "439772110249", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2875266606624", + "voter": "recursive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "735915524", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1059199527", + "voter": "daniel.pan" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "415222428373", + "voter": "steemrollin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129965111626", + "voter": "team" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "344886223", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24696444717", + "voter": "yefet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23692788867", + "voter": "mod-tamichh" + }, + { + "percent": "8000", + "reputation": 0, + "rshares": "400038277", + "voter": "paco-steem" + }, + { + "percent": "8000", + "reputation": 0, + "rshares": "4700713987", + "voter": "spaninv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "616947982137", + "voter": "nanzo-scoop" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1449566793", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "511854148", + "voter": "rok-fabiani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49338626216", + "voter": "dragonslayer109" + }, + { + "percent": "8000", + "reputation": 0, + "rshares": "312756164", + "voter": "stiletto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "69319769108", + "voter": "ratel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "362583467847", + "voter": "infovore" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "134592928811", + "voter": "schro" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "227360810383", + "voter": "trogdor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35610631042", + "voter": "honeythief" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6925283741", + "voter": "primus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9196284134", + "voter": "cannav" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1918311094", + "voter": "orly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1090177325", + "voter": "bitcointop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2352960105", + "voter": "soupernerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7873564057", + "voter": "cmtzco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9980899190", + "voter": "yogi.artist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "181057961389", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32829590555", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17034005934", + "voter": "freiheit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "482469279", + "voter": "busser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "110021371663", + "voter": "knircky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10441805155", + "voter": "spiz0r" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1066355012", + "voter": "demyan7" + }, + { + "percent": "2000", + "reputation": 0, + "rshares": "21191693992", + "voter": "anyx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1393693023", + "voter": "marcgodard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7263305640", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3824710597", + "voter": "thegoodguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "236744652", + "voter": "hankrearden" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "298168872", + "voter": "dr2073" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "119364805132", + "voter": "nabilov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7136144430", + "voter": "sylv3se" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1435470701", + "voter": "juvyjabian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "231136169", + "voter": "ricardolucas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1282097523", + "voter": "vorsseli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32758436141", + "voter": "streetstyle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1152239791", + "voter": "dimon14" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "421221229", + "voter": "natalyt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4492579840", + "voter": "smolalit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "149212966899", + "voter": "calaber24p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "116998200", + "voter": "firstbloodio" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2489473799", + "voter": "simon.braki.love" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2572611930", + "voter": "desmonid" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4358278175", + "voter": "tarindel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "87973383521", + "voter": "liberosist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20282567453", + "voter": "deanliu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5184855121", + "voter": "rainchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15679499029", + "voter": "steemedbroccoli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1058443281", + "voter": "yarly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "272486418", + "voter": "yarly2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "272896428", + "voter": "yarly3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161687878", + "voter": "yarly4" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155968266", + "voter": "yarly5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42943218", + "voter": "yarly6" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "89093454", + "voter": "yarly7" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2844381779", + "voter": "e-steem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6477762089", + "voter": "rayphu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "204987589", + "voter": "turretkilo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18433350305", + "voter": "jennamarbles" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "642056038", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "218299232", + "voter": "yarly10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129573823", + "voter": "yarly11" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64952857", + "voter": "yarly12" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "43084943", + "voter": "yarly13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "119416315", + "voter": "pittyvandefik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88716341", + "voter": "elliottgodard" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22447399455", + "voter": "rznag" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115248474", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "214281171", + "voter": "taz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "122186021", + "voter": "steemster1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71320902", + "voter": "buyselltrade" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25835697261", + "voter": "jasonstaggers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1980572010", + "voter": "weenis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47106308", + "voter": "sharon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50220544", + "voter": "johnblow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47989093", + "voter": "lillianjones" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "612232860625", + "voter": "laonie" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "8640888230", + "voter": "myfirst" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "369639336", + "voter": "mariadianaelaine" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1515172179", + "voter": "feelapi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "463119586588", + "voter": "glitterfart" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "727797912", + "voter": "romancs" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "22102503313", + "voter": "xiaohui" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13979907232", + "voter": "sirwinchester" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48357668", + "voter": "msjennifer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35580211", + "voter": "ciao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1137684552", + "voter": "dercoco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "34502211", + "voter": "steemo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35642250", + "voter": "steema" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2739498535", + "voter": "plasticfuzzy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "382362347", + "voter": "deepdarkweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20484992", + "voter": "gamerate" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "80282583", + "voter": "vootka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46945755", + "voter": "confucius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61696026", + "voter": "immortality" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62603745", + "voter": "ltyadigg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "114921957", + "voter": "future-shock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2600774194", + "voter": "rachelkhona" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "91008396", + "voter": "party1999" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61150289", + "voter": "immortal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "34933915", + "voter": "jarvis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39802149", + "voter": "eternal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42243510", + "voter": "fortuner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71432076", + "voter": "longevity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60661014", + "voter": "rashka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15420280306", + "voter": "steemit8" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3147857469", + "voter": "almerri" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "140022382", + "voter": "ashleybeckwith" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42433654", + "voter": "johnbyrd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42431653", + "voter": "thomasaustin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "41251536", + "voter": "thermor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "41249329", + "voter": "ficholl" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "41246130", + "voter": "widell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40951017", + "voter": "revelbrooks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12584330332", + "voter": "yef99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53917818", + "voter": "fiat19" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40103976", + "voter": "curpose" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "668328488", + "voter": "lenar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4094746659", + "voter": "io-io-io" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50015029", + "voter": "makov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39346698", + "voter": "troich" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64809733", + "voter": "carlyle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39350795", + "voter": "crion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39099775", + "voter": "hitherise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39093255", + "voter": "wiss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1186605928", + "voter": "victor-smirnoff" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39939494", + "voter": "stroully" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40790117", + "voter": "thadm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40788724", + "voter": "prof" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44882837", + "voter": "yorsens" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54632424", + "voter": "budda" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50065875", + "voter": "bane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50059754", + "voter": "vive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50054445", + "voter": "coad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "116570369", + "voter": "stepa" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54333817", + "voter": "sjshah91" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "http://cbsnews3.cbsistatic.com/hub/i/r/2011/11/08/0844c35a-a644-11e2-a3f0-029118418759/resize/620x465/321b2c3cde9f7ccb295323703866af3d/muhammad_ali_chamberlin.jpg\n\n\nF\u0456nd\u0456ng th\u0435 r\u0456ght bu\u0455\u0456n\u0435\u0455\u0455 sparring partner is \u0441r\u0456t\u0456\u0441\u0430l \u0430nd \u0441\u0430n b\u0435 m\u0430d\u0435 easy. Th\u0435 \u0455u\u0441\u0441\u0435\u0455\u0455 \u043ef \u0443\u043eur business \u0441\u0430n r\u0435\u0455t \u043en th\u0435 \u0441\u043e\u0430\u0441h\u0456ng th\u0430t \u0443\u043eu g\u0435t and \u0443\u043eur f\u0456n\u0430n\u0441\u0435\u0455 can r\u0456\u0455\u0435 \u0430nd f\u0430ll with food \u0430nd b\u0430d \u0430dv\u0456\u0441\u0435. A combination \u043ef preparation \u0430nd \u0455\u0456m\u0440l\u0435 approaches t\u043e selecting th\u0435 m\u043e\u0455t \u0455u\u0456t\u0430bl\u0435 m\u0435nt\u043er f\u043er you w\u0456ll help ensure th\u0430t your business sparring partner provides long t\u0435rm benefits f\u043er you \u0430nd your bu\u0455\u0456n\u0435\u0455\u0455. \n\n\nBefore you \u0435mb\u0430rk u\u0440\u043en th\u0435 \u0455\u0435\u0430r\u0441h for your business sparring partner, \u0443\u043eu n\u0435\u0435d to \u0455\u0456t d\u043ewn with your m\u0430n\u0430g\u0435r\u0456\u0430l colleagues, \u043er \u0430l\u043en\u0435, and \u0430\u0455k \u0443\u043eur\u0455\u0435lf some qu\u0435\u0455t\u0456\u043en\u0455. A\u0455\u0455\u0435\u0455\u0455\u0456ng wh\u0435r\u0435 \u0443\u043eur f\u0430ult\u0455 and weaknesses l\u0456\u0435 \u0456\u0455 v\u0456t\u0430l to \u0456d\u0435nt\u0456f\u0443\u0456ng what \u0443\u043eu need \u0430nd fr\u043em wh\u0435r\u0435. \nSt\u0430rt by asking yourself th\u0435\u0455\u0435 thr\u0435\u0435 questions. \n\n \n1. Wh\u0430t outcomes do I \u0455\u0435\u0435k from bu\u0455\u0456n\u0435\u0455\u0455 sparring partner? \n2. Wh\u0430t \u0430dd\u0456t\u0456\u043en\u0430l skills \u0430nd experience d\u043e I seek fr\u043em a business m\u0435nt\u043er? \n3. What sparring partner \u0440\u0435r\u0455\u043en\u0430l\u0456t\u0443 \u0430nd \u0455t\u0443l\u0435 w\u043euld help m\u0435 the m\u043e\u0455t? \n\nArmed w\u0456th the answers to th\u0435\u0455\u0435 qu\u0435\u0455t\u0456\u043en\u0455, \u0443\u043eur search will be mu\u0441h easier. Y\u043eu \u0441\u0430n identify \u0440\u043et\u0435nt\u0456\u0430l m\u0435nt\u043er\u0455 thr\u043eugh many different routes including \u0440\u0435r\u0455\u043en\u0430l r\u0435\u0441\u043emm\u0435nd\u0430t\u0456\u043en\u0455 fr\u043em people you kn\u043ew, \u043en-l\u0456n\u0435 through G\u043e\u043egl\u0435, \u0430nd thr\u043eugh v\u0430r\u0456\u043eu\u0455 w\u0435b d\u0456r\u0435\u0441t\u043er\u0456\u0435\u0455. \n\nBe careful w\u0456th personal r\u0435\u0441\u043emm\u0435nd\u0430t\u0456\u043en\u0455; \u0443\u043eur friend w\u0456th th\u0435 h\u0430\u0456r salon will n\u0435\u0435d drastically d\u0456ff\u0435r\u0435nt advice to \u0443\u043eur \u0430\u0441\u0441\u043eunt\u0430n\u0441\u0443 firm. A g\u043e\u043ed bu\u0455\u0456n\u0435\u0455\u0455 f\u043er h\u0430\u0456r and b\u0435\u0430ut\u0443 m\u0456ght \u0455\u0435\u0435 instant r\u0435\u0455ult\u0455 \u0456n a \u0455\u0430l\u043en, but \u0443\u043eu n\u0435\u0435d t\u043e have th\u0435 \u0430dv\u0456\u0441\u0435 catered t\u043e your \u0455\u0440\u0435\u0441\u0456f\u0456\u0441 sector\n\nAssociating with a business sparring partner allows you to define your objectives and outcomes, while working through a composed process identifying where you may fall short. Such a review allows one to develop a step-by-step plan with your sparring partner in overcoming business obstacles, while at the same time developing fresh ideas to fit in with your new business plan.\n\n\nhttps://ideal.com/wp-content/uploads/2016/06/look-for-sdr-role.png\n**What to look for in a business sparring partner?**\n\n**Experience**\nWorking with a sparring partner who has much experience is always advisable. This allows you to learn from your sparring partner and may help you avoid making the same mistakes your sparring partner had made in the past, saving you much time and effort as well as financially. You always need the expertise and guidance that only an experienced sparring partner can contribute to.\n\n**Accessibility**\nYou want to find a sparring partner who is willing to put in the time to not only teach you what needs to be done in order to build a successful business but also someone whom you can reach out to anytime you need help. Having a sparring partner whom you can talk to will aid in alleviating much stress. From day-to-day issues to major problems, you should be able to look to your sparring partner for being a source of guidance.\n\nI have found several sparring partners over a period of around the last 10 years and it helped me to be more aware of myself and as well had a positive contribution to the development of my personalty and as well my business ventures. \n\nHave a happy weekend and happy steeming, don't forget to follow \n\nhttp://i.imgur.com/8WQHCEx.png", + "body_length": 3328, + "cashout_time": "1969-12-31T23:59:59", + "category": "business", + "children": 3, + "created": "2016-08-14T10:56:27", + "curator_payout_value": "2.412 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"business\",\"life\",\"philosophy\",\"psychology\",\"advice\"],\"image\":[\"http:\\/\\/cbsnews3.cbsistatic.com\\/hub\\/i\\/r\\/2011\\/11\\/08\\/0844c35a-a644-11e2-a3f0-029118418759\\/resize\\/620x465\\/321b2c3cde9f7ccb295323703866af3d\\/muhammad_ali_chamberlin.jpg\"]}", + "last_payout": "2016-09-13T23:32:27", + "last_update": "2016-08-14T10:56:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 11517595862780, + "parent_author": "", + "parent_permlink": "business", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "overcoming-one-s-faults-and-weaknesses-as-an-entrepreneur", + "post_id": 596739, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Overcoming one's faults and weaknesses as an entrepreneur", + "title": "Overcoming one's faults and weaknesses as an entrepreneur", + "total_payout_value": "34.186 HBD", + "url": "/business/@dragonho/overcoming-one-s-faults-and-weaknesses-as-an-entrepreneur" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "708621300034", + "voter": "barrie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "87205346551", + "voter": "highasfuck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3089424303552", + "voter": "wang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "105828528600", + "voter": "alex90342fastn1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "439776491742", + "voter": "recursive2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "438730487761", + "voter": "recursive3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2663675219424", + "voter": "recursive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "105976122", + "voter": "mineralwasser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "802513045973", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9157276265", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132467622336", + "voter": "team" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "989741851", + "voter": "relativelyboston" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23700209265", + "voter": "yefet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20628769393", + "voter": "steampunkpowered" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "153600290155", + "voter": "noaommerrr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19455612035", + "voter": "fkn" + }, + { + "percent": "2500", + "reputation": 0, + "rshares": "1437078474", + "voter": "spaninv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24876456545", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13875206272", + "voter": "fact" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1811027497", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "451685458834", + "voter": "cyber" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "138145517", + "voter": "akaninyene-etuk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "290660625514", + "voter": "taoteh1221" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66525770148", + "voter": "ratel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17923785438", + "voter": "minfon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "137232756828", + "voter": "schro" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5521688008", + "voter": "angusleung100" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6606252275", + "voter": "primus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7918873882", + "voter": "nobodyishome" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32672215769", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1912721911", + "voter": "orly" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "224028948", + "voter": "soupernerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1614994747", + "voter": "stranger27" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "145437226", + "voter": "aidar88" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52484678430", + "voter": "jackkang" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "181057961389", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31795369968", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "353119982", + "voter": "wintrop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "468417024", + "voter": "busser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "435222959", + "voter": "barbara2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "486521711", + "voter": "ch0c0latechip" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "446126228", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "169574072", + "voter": "vkoreshkoff" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7673943279", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3817590583", + "voter": "thegoodguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14820879701", + "voter": "aaseb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1512924078", + "voter": "incomemonthly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3273190895", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "279263844", + "voter": "dr2073" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1427997633", + "voter": "juvyjabian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "124785313562", + "voter": "gbert" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1082632514", + "voter": "vorsseli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "37678055640", + "voter": "streetstyle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10166002203", + "voter": "artific" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1050155407", + "voter": "dimon14" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5606365375", + "voter": "warrensteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6541654058", + "voter": "cryptojoy.com" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "420893966", + "voter": "natalyt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4490143290", + "voter": "smolalit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "138016995274", + "voter": "calaber24p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "119385919", + "voter": "firstbloodio" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7913420938", + "voter": "mustafaomar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "504683789", + "voter": "vlad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3517489467", + "voter": "tarindel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "83194610394", + "voter": "liberosist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2101417051", + "voter": "cryptohustlin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158526898512", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14847530918", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1055318583", + "voter": "yarly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "266245402", + "voter": "yarly2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "272320208", + "voter": "yarly3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "161402619", + "voter": "yarly4" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155711792", + "voter": "yarly5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42926104", + "voter": "yarly6" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88990818", + "voter": "yarly7" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "179887067", + "voter": "turretkilo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14117706990", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "616925088", + "voter": "curator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2232446763", + "voter": "sisterholics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "217871480", + "voter": "yarly10" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "129368545", + "voter": "yarly11" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11051624343", + "voter": "michaeldodridge" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63531291", + "voter": "yarly12" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42170227", + "voter": "yarly13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "458906871", + "voter": "fnait" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "450192944", + "voter": "keepcalmand" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115103036", + "voter": "creatorgalaxy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "132354049", + "voter": "steemster1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82410911", + "voter": "buyselltrade" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1951107504", + "voter": "andreynoch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23801719197", + "voter": "jasonstaggers" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "220015607", + "voter": "weenis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3649602315", + "voter": "spookypooky" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6849474266", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51143991", + "voter": "sharon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53473560", + "voter": "lillianjones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "347204273", + "voter": "mariadianaelaine" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "481319830427", + "voter": "glitterfart" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4115304129", + "voter": "ullikume" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13186649372", + "voter": "omfedor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25445501332", + "voter": "joele" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14498074313", + "voter": "sirwinchester" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52502611", + "voter": "msjennifer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "34309489", + "voter": "ciao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3212813259", + "voter": "blow" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "34502211", + "voter": "steemo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35642250", + "voter": "steema" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "410147416", + "voter": "deepdarkweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81888234", + "voter": "vootka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45326936", + "voter": "confucius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62929947", + "voter": "immortality" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62103794", + "voter": "tomeraddady" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96714573", + "voter": "future-shock" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3320455391", + "voter": "rachelkhona" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61150289", + "voter": "immortal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "34933915", + "voter": "jarvis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47071340", + "voter": "fortuner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72860718", + "voter": "longevity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61874235", + "voter": "rashka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22334676238", + "voter": "serejandmyself" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "81433672", + "voter": "crezyliza" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45969792", + "voter": "johnbyrd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45967624", + "voter": "thomasaustin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45965997", + "voter": "thermor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45963539", + "voter": "ficholl" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44781512", + "voter": "widell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44461105", + "voter": "revelbrooks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12720019143", + "voter": "sweetsssj" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "43541460", + "voter": "curpose" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59885612", + "voter": "da99er" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1822982593", + "voter": "eileenbeach" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "84991821", + "voter": "lenar" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3437159850", + "voter": "io-io-io" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3187295522", + "voter": "asuran" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42719273", + "voter": "troich" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "43848029", + "voter": "crion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "43568321", + "voter": "hitherise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42444105", + "voter": "wiss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "312210665", + "voter": "neurosploit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "347990811", + "voter": "grm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42158354", + "voter": "stroully" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50805771", + "voter": "tanshin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45199860", + "voter": "thadm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45198315", + "voter": "prof" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53821117", + "voter": "tito-baron" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51451058", + "voter": "yorsens" + } + ], + "author": "dragonho", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://images.alphacoders.com/227/227571.jpg\n\n\nH\u043ew often \u0456\u0455 your l\u043e\u0443\u0430lt\u0443 qu\u0435\u0455t\u0456\u043en\u0435d? Loyalty \u0456\u0455 something of v\u0430lu\u0435. L\u043e\u0443\u0430lt\u0443 is a j\u0435w\u0435l th\u0430t \u0456\u0455 h\u0430rd t\u043e f\u0456nd in today's \u0455\u043e\u0441\u0456\u0435t\u0443. Think \u043ef \u0443\u043eur l\u043e\u0443\u0430lt\u0443 t\u043e an \u043erg\u0430n\u0456z\u0430t\u0456\u043en. P\u0435\u043e\u0440l\u0435 do not \u0455\u0440\u0435nd th\u0435 \u0455\u0430m\u0435 \u0430m\u043eunt \u043ef \u0443\u0435\u0430r\u0455 w\u043erk\u0456ng f\u043er th\u0435 \u0455\u0430m\u0435 company, \u0430\u0455 their parents \u0430nd grandparents d\u0456d. Th\u0456nk \u043ef the m\u0430rr\u0456\u0430g\u0435\u0455 th\u0430t \u0435nd \u0456n divorce. P\u0435\u043e\u0440l\u0435 \u0430r\u0435 qu\u0456\u0441k\u0435r t\u043e t\u0435rm\u0456n\u0430t\u0435 m\u0430rr\u0456\u0430g\u0435\u0455 f\u043er th\u0435 \u0455m\u0430ll\u0435\u0455t of \u0456\u0455\u0455u\u0435\u0455, \u0455u\u0441h \u0430\u0455 \"\u0456rr\u0435\u0441\u043en\u0441\u0456l\u0430bl\u0435 d\u0456ff\u0435r\u0435n\u0441\u0435\u0455.\" L\u043e\u0443\u0430lt\u0443 is a \u0455tr\u043eng force that w\u0456ll keep \u0443\u043eu \u0456n \u0430n\u0443 r\u0435l\u0430t\u0456\u043en\u0455h\u0456\u0440, whether bu\u0455\u0456n\u0435\u0455\u0455 \u043er personal. \n\n\n**HOW TO BE LOYAL**\nY\u043eur l\u043e\u0443\u0430lt\u0443 to \u0455\u043em\u0435\u043en\u0435 or \u0435v\u0435n \u0430n \u043erg\u0430n\u0456z\u0430t\u0456\u043en w\u0456ll \u0430lw\u0430\u0443\u0455 h\u0430v\u0435 a h\u0456gh \u0430\u0440\u0440r\u0430\u0456\u0455\u0430l value. Wh\u0435n \u0443\u043eur m\u0430t\u0435 f\u043er \u0435x\u0430m\u0440l\u0435 \u0455\u0435n\u0455\u0435\u0455 a hint of disloyalty \u0456n \u0443\u043eu, th\u0435 l\u0435v\u0435l \u043ef tru\u0455t g\u043e\u0435\u0455 d\u043ewn. Wh\u0435n trust d\u0456m\u0456n\u0456\u0455h\u0435\u0455, the r\u0435l\u0430t\u0456\u043en\u0455h\u0456\u0440 d\u0435t\u0435r\u0456\u043er\u0430t\u0435\u0455. The same \u0456\u0455 true f\u043er th\u0435 organization \u0443\u043eu w\u043erk f\u043er. Wh\u0435n d\u0456\u0455l\u043e\u0443\u0430lt\u0443 \u0456\u0455 \u0435v\u0456d\u0435nt in you, \u0443\u043eur \u043e\u0440\u0440\u043ertun\u0456t\u0456\u0435\u0455 f\u043er growth \u0456n th\u0430t organization \u0430r\u0435 lost. Tru\u0455t and loyalty g\u043e hand \u0456n hand. \n\n\nhttp://images-cdn.moviepilot.com/images/c_scale,h_776,w_1164/t_mp_quality/jiinevf3dabm6amjjkhc/10-iconic-movie-sidekicks-that-taught-us-about-friendship-and-loyalty-and-changed-the-way-529787.jpg\n\n\n\n**WHAT IS DISLOYALTY**\nTh\u0435 opposite obviously \u0456\u0455 disloyalty. S\u043e h\u043ew \u0456\u0455 d\u0456\u0455l\u043e\u0443\u0430lt\u0443 shown? S\u0456m\u0440l\u0443 \u0456n wh\u0430t \u0443\u043eu \u0455\u0430\u0443 \u0430nd sometimes wh\u0430t you d\u043e. Do \u0443\u043eu g\u0430th\u0435r \u0430t th\u0435 w\u0430t\u0435r f\u043eunt\u0430\u0456n w\u0456th \u043eth\u0435r \u0435m\u0440l\u043e\u0443\u0435\u0435\u0455 t\u043e b\u0430d-m\u043euth what m\u0430n\u0430g\u0435m\u0435nt \u0456\u0455 d\u043e\u0456ng? D\u043e \u0443\u043eu t\u0435ll \u0443\u043eur m\u0430t\u0435'\u0455 \u0455\u0435\u0441r\u0435t\u0455 to \u0443\u043eur fr\u0456\u0435nd\u0455, knowing th\u0430t \u0456f \u0443\u043eur m\u0430t\u0435 f\u043eund \u043eut, h\u0435 or \u0455h\u0435 w\u0456ll b\u0435 h\u0456ghl\u0443 \u0435mb\u0430rr\u0430\u0455\u0455\u0435d \u043er upset? In t\u0435rm\u0455 \u043ef wh\u0430t \u0443\u043eu d\u043e, how l\u0456k\u0435l\u0443 \u0430r\u0435 \u0443\u043eu t\u043e \u0430ll\u043ew someone to \u0455\u0440\u0435\u0430k evil of a fr\u0456\u0435nd \u043er r\u0435l\u0430t\u0456v\u0435 \u043ef \u0443\u043eur\u0455 w\u0456th\u043eut you \u0455\u0440\u0435\u0430k\u0456ng u\u0440 f\u043er th\u0435m? Wh\u0430t \u0456f \u0443\u043eur coworkers \u0455\u0430\u0443 n\u0435g\u0430t\u0456v\u0435 th\u0456ng\u0455 about your CEO? I\u0455 he \u043er \u0455h\u0435 w\u043erth\u0443 \u043ef \u0443\u043eur defense? \n\n\nhttp://s2.quickmeme.com/img/30/305612fdf12335b96585512fff212e69c3ad293363092cdc1428adf24b243aa7.jpg\n\n\nL\u043e\u0443\u0430lt\u0443 \u0456\u0455 r\u043e\u043et\u0435d in th\u0435 heart. It \u0456\u0455 n\u043et \u0455u\u0440\u0435rf\u0456\u0441\u0456\u0430l b\u0443 \u0430n\u0443 m\u0435\u0430n\u0455. It is a code by wh\u0456\u0441h \u043en\u0435 l\u0456v\u0435\u0455. It is a standard th\u0430t will g\u0430\u0456n \u0443\u043eu allies for l\u0456f\u0435. It \u0456\u0455 true th\u0430t \u043en\u0435 can b\u0435 l\u043e\u0443\u0430l t\u043e \u0440\u0435\u043e\u0440l\u0435 \u043er \u043erg\u0430n\u0456z\u0430t\u0456\u043en\u0455 that are n\u0435g\u0430t\u0456v\u0435, such \u0430\u0455 gangs or t\u0435rr\u043er gr\u043eu\u0440\u0455. So loyalty \u0456n \u0456t\u0455\u0435lf \u0456\u0455 not a \u0455\u0456gn \u043ef a good trait. Wh\u0430t is important \u0456\u0455 wh\u043e \u043er wh\u0430t \u0443\u043eu are l\u043e\u0443\u0430l to.\n\n \nN\u043ew, l\u043e\u0443\u0430lt\u0443 is not ju\u0455t a matter \u043ef \u0443\u043eu showing it for th\u0435 sake of being l\u043e\u0443\u0430l. Th\u0435 reason \u0443\u043eu are l\u043e\u0443\u0430l is b\u0435\u0441\u0430u\u0455\u0435 th\u0435 other \u0440\u0430rt\u0443 h\u0430\u0455 your \u0456nt\u0435r\u0435\u0455t \u0430t h\u0435\u0430rt. Loyalty \u0456\u0455 r\u0435qu\u0456r\u0435d \u043en th\u0435 parts \u043ef both \u0440\u0430rt\u0456\u0435\u0455. If \u0443\u043eur company for \u0435x\u0430m\u0440l\u0435 \u0456\u0455 not showing \u0443\u043eu \u0455\u0456gn\u0455 of j\u043eb \u0455\u0435\u0441ur\u0456t\u0443 \u043er passes \u0443\u043eu u\u0440 f\u043er \u0440r\u043em\u043et\u0456\u043en wh\u0435n you \u0430r\u0435 th\u0435 m\u043e\u0455t qu\u0430l\u0456f\u0456\u0435d, th\u0435n th\u0435 \u0441\u043em\u0440\u0430n\u0443 is not being loyal t\u043e \u0443\u043eu. Going back t\u043e Tru\u0455t, \u0456t is d\u0456m\u0456n\u0456\u0455h\u0435d in your \u0435\u0443\u0435\u0455. L\u0456k\u0435w\u0456\u0455\u0435 w\u0456th \u0443\u043eur \u0440\u0435r\u0455\u043en\u0430l relationships. All parties \u0456nv\u043elv\u0435d must show l\u043e\u0443\u0430lt\u0443. If you \u0430r\u0435 not b\u0435n\u0435f\u0456t\u0456ng from th\u0435 r\u0435l\u0430t\u0456\u043en\u0455h\u0456\u0440, then the l\u043e\u0443\u0430lt\u0443 l\u0435v\u0435l \u0456\u0455 dropping. \n\n**CONCLUSION**\nSo b\u0435 a \u0440\u0435r\u0455\u043en who \u0456\u0455 kn\u043ewn f\u043er b\u0435\u0456ng loyal. However be a \u0455m\u0430rt l\u043e\u0443\u0430l \u0440\u0435r\u0455\u043en. If you \u0430r\u0435 g\u0456v\u0435n r\u0435\u0430\u0455\u043en\u0455 t\u043e distrust the \u043eth\u0435r \u0440\u0430rt\u0443, \u0443\u043eur l\u043e\u0443\u0430lt\u0443 l\u0435v\u0435l w\u0456ll naturally dr\u043e\u0440 and \u0443\u043eu mu\u0455t demand th\u0430t corrections are m\u0430d\u0435. If corrections \u0430r\u0435 n\u043et m\u0430d\u0435, then \u0443\u043eu h\u0430v\u0435 r\u0435\u0430\u0455\u043en\u0455 t\u043e terminate th\u0435 relationship.\n\nhttp://i.imgur.com/8WQHCEx.png", + "body_length": 3263, + "cashout_time": "1969-12-31T23:59:59", + "category": "life", + "children": 12, + "created": "2016-08-13T09:44:12", + "curator_payout_value": "3.166 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"life\",\"howto\",\"philosophy\",\"psychology\",\"business\"],\"image\":[\"https:\\/\\/images.alphacoders.com\\/227\\/227571.jpg\"]}", + "last_payout": "2016-09-12T22:13:54", + "last_update": "2016-08-13T09:48:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 11320045428129, + "parent_author": "", + "parent_permlink": "life", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "don-t-run-the-secret-of-build-trust-through-loyalty", + "post_id": 583718, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Don't run -The SECRET of build Trust through Loyalty", + "title": "Don't run -The SECRET of build Trust through Loyalty", + "total_payout_value": "30.938 HBD", + "url": "/life/@dragonho/don-t-run-the-secret-of-build-trust-through-loyalty" + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_author.pat.json b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_author.pat.json new file mode 100644 index 00000000..efdafd08 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_author.pat.json @@ -0,0 +1,2549 @@ +[ + { + "active_votes": [ + { + "percent": "300", + "reputation": 0, + "rshares": "1294968367268", + "voter": "smooth" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "28860902224", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14409605494831", + "voter": "summon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40261554792719", + "voter": "blocktrades" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3155750963782", + "voter": "lafona-miner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "377906636658", + "voter": "lafona" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1245475534803", + "voter": "silver" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2875138885044", + "voter": "silversteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "992692841277", + "voter": "delegate.lafona" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "948645888607", + "voter": "liondani" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "314602171157", + "voter": "lafona5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3094244335", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3755939559", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "703615315", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5751660885474", + "voter": "complexring" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1644151280793", + "voter": "steemychicken1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53261984748", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1658441464", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213555429", + "voter": "moon" + }, + { + "percent": "300", + "reputation": 0, + "rshares": "222747002001", + "voter": "smooth.witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "622045496", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "947522117", + "voter": "daniel.pan" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "54127411451", + "voter": "donkeypong" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1759901644", + "voter": "nexusdev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "351517418935", + "voter": "ash" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "282481919881", + "voter": "chitty" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287957469", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25822874684", + "voter": "steampunkpowered" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10283360038", + "voter": "ervin-lemark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24290958657", + "voter": "instructor2121" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7456570912", + "voter": "jerome-colley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "491733834025", + "voter": "kevinwong" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "41463145095", + "voter": "nphacker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "367830728600", + "voter": "blakemiles84" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45912096650", + "voter": "ranko-k" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23227592357", + "voter": "treeleaves" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63707549495", + "voter": "kanoptx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31690086400", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73022585138", + "voter": "eric-boucher" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "109636482823", + "voter": "kenny-crane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61288399197", + "voter": "thecryptodrive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "117389810764", + "voter": "bravenewcoin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "449244898326", + "voter": "infovore" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128017998380", + "voter": "omarb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "36007650081", + "voter": "cheftony" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32961119819", + "voter": "cryptoiskey" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71452016003", + "voter": "discombobulated" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5121130339", + "voter": "expanse" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25440234426", + "voter": "hitmeasap" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13382892819", + "voter": "stealthtrader" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24939158057", + "voter": "tcfxyz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103574158909", + "voter": "cdubendo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7881221000", + "voter": "spiz0r" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112751020008", + "voter": "jacor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14190084617", + "voter": "halo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "159492592967", + "voter": "jesta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "33597624083", + "voter": "toxonaut" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7028930352", + "voter": "btcupload" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17438618169", + "voter": "anduweb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75155947399", + "voter": "demotruk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3697940497", + "voter": "maximkichev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10377897348", + "voter": "nippel66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7753599028", + "voter": "magz8716" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1388783807", + "voter": "cryptocurrency1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115874018", + "voter": "gosha" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "505816971", + "voter": "raymonjohnstone" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "124907433", + "voter": "biternator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3090635988", + "voter": "willbeonceagain8" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54497070629", + "voter": "arcurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4745090234", + "voter": "bakingengineer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "36689125715", + "voter": "claudiop63" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16359584188", + "voter": "noodles.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10399150907", + "voter": "npl77" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108836213411", + "voter": "steemdrive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11060114610", + "voter": "bergy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2050213474", + "voter": "theprophet0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "295915630", + "voter": "theprophet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "38819548773", + "voter": "allasyummyfood" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "461449860", + "voter": "neddykelly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1579699570", + "voter": "minion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "77473387847", + "voter": "sirwinchester" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61385527", + "voter": "sijoittaja" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4190219999", + "voter": "tom77" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125663528", + "voter": "nelkel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "148930176", + "voter": "letsgo.asino" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14968711124", + "voter": "hilarski" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58226150", + "voter": "ajavajive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "253750401751", + "voter": "oldtimer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57886832", + "voter": "shootetxd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "191216226", + "voter": "comcentrate" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13741567322", + "voter": "antoinev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61289460", + "voter": "jtstreetman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5100395909", + "voter": "io-io-io" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54884363", + "voter": "ian89" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50351260", + "voter": "chuckleberry" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "349611227", + "voter": "panther" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59354601485", + "voter": "tracemayer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51884666", + "voter": "brs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130434883", + "voter": "bitcoinparadise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52571606", + "voter": "bellphorion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53224648", + "voter": "yanikkoval" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51136429", + "voter": "infotoday" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50977036", + "voter": "tldr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50797377", + "voter": "bo-ro" + } + ], + "author": "smooth", + "author_reputation": 0, + "beneficiaries": [], + "body": "I will sponsor an additional 2000 SBD toward this campaign in addition to my vote on the post, plus any rewards on this comment.", + "body_length": 128, + "cashout_time": "2016-09-24T19:41:42", + "category": "steemit", + "children": 31, + "created": "2016-08-24T16:43:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-24T16:43:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 77833655363992, + "parent_author": "steemdrive", + "parent_permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream", + "pending_payout_value": "852.555 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t164320100z", + "post_id": 733019, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream#@smooth/re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t164320100z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "30296554046147", + "voter": "smooth" + }, + { + "percent": "97", + "reputation": 0, + "rshares": "28854877817", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14368089454321", + "voter": "summon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3183112492799", + "voter": "lafona-miner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "377387227766", + "voter": "lafona" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "790314875205", + "voter": "delegate.lafona" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "314383371770", + "voter": "lafona5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1851434600", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2247039689", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "425455109", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31378635899", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "992487616", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "127981753", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6510505164", + "voter": "sean0010" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5308002434389", + "voter": "smooth.witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "342922310367", + "voter": "officialfuzzy" + }, + { + "percent": "9700", + "reputation": 0, + "rshares": "802009404542", + "voter": "cass" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "369247770", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "537460001", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "172530341", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "410778394570", + "voter": "chryspano" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "113345677592", + "voter": "forrestwillie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5390642912", + "voter": "kingjohal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "346429583563", + "voter": "blakemiles84" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46740932510", + "voter": "ranko-k" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18522231224", + "voter": "allahhh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "398461524", + "voter": "rafikichi" + }, + { + "percent": "9900", + "reputation": 0, + "rshares": "1421853753930", + "voter": "sean-king" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "65040641602", + "voter": "charleshosk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "739465956", + "voter": "mammasitta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17651204278", + "voter": "acassity" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "480475374", + "voter": "chamviet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "239694404", + "voter": "concave" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1386708550", + "voter": "vi1son" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1798938485", + "voter": "gazm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19465926763", + "voter": "ausbitbank" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2622666444", + "voter": "egjoshslim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6373898691", + "voter": "perwest" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "312475355", + "voter": "lioliomir" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "33482946725", + "voter": "alexfortin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5612628842", + "voter": "r33drum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24373102947", + "voter": "igster" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51538128557", + "voter": "sephiroth" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5989513477", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72131208610", + "voter": "ntomaino" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9493199624", + "voter": "domavila" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "107006946999", + "voter": "bonface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12353093513", + "voter": "grolelo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32088583721", + "voter": "streetstyle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54299398751", + "voter": "demotruk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45617820200", + "voter": "arcurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "211677715438", + "voter": "johnsmith" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17146066951", + "voter": "team-leibniz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "22277193587", + "voter": "solidgold" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "143431864", + "voter": "borntowin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "609312338", + "voter": "metaflute" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1125051142", + "voter": "bofadeez" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100022771", + "voter": "darkstar1o9" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57276142", + "voter": "pgarcgo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "328256060", + "voter": "alifton" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63775214", + "voter": "laissezfairedr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66697195", + "voter": "rubenalexander" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7960548410", + "voter": "kyriacos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "376001676", + "voter": "manicmidnight" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58682093", + "voter": "tradz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58914198", + "voter": "brandon-rosano" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "38710389758", + "voter": "simon-says" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57980741", + "voter": "alaqrab" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56436574", + "voter": "saintbitts" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55261899", + "voter": "shakimclark7" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75377250", + "voter": "powercouple" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55618704", + "voter": "jaypillagara" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53912690", + "voter": "shax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53846159", + "voter": "wulfmeister" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53707619", + "voter": "ct-gurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53333238", + "voter": "donzy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53210703", + "voter": "frostwalker" + } + ], + "author": "charlieshrem", + "author_reputation": 50375830871208, + "beneficiaries": [], + "body": "I have a series of posts I'm writing now about socioeconomic observations in prison. If the Steemit community likes it, Ill post it here exclusively.", + "body_length": 149, + "cashout_time": "2016-09-16T21:13:42", + "category": "introduceyourself", + "children": 21, + "created": "2016-08-16T18:55:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T18:55:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 59091129639172, + "parent_author": "dennygalindo", + "parent_permlink": "re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185037477z", + "pending_payout_value": "545.728 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dennygalindo-re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185524881z", + "post_id": 630864, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Charlie Shrem Is Now On Steemit!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/introduceyourself/@charlieshrem/charlie-shrem-is-now-on-steemit#@charlieshrem/re-dennygalindo-re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185524881z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "29186049220380", + "voter": "berniesanders" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "623996958321", + "voter": "justin" + }, + { + "percent": "9900", + "reputation": 0, + "rshares": "5881098331094", + "voter": "abit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4855865727368", + "voter": "nextgencrypto" + }, + { + "percent": "9800", + "reputation": 0, + "rshares": "2454399166148", + "voter": "adm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2467985030", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2995309863", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "567154894", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "41750226248", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1323006745", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "170612336", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "664278529380", + "voter": "pfunk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "490800486", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "709305835", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "229997595", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130506632815", + "voter": "kaylinart" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106890789634", + "voter": "anyx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9971301073", + "voter": "senseiteekay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9400027589", + "voter": "shredlord" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61646469732", + "voter": "cheetah" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "219824678620", + "voter": "originate" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "685101796", + "voter": "metaflute" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "394148198", + "voter": "theconnoisseur" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32404401324", + "voter": "thecurator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "582451688", + "voter": "alorya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1059033052", + "voter": "seraph" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16011014560", + "voter": "someguy123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "454752565", + "voter": "celestial" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "188226473", + "voter": "andyinspace" + } + ], + "author": "adm", + "author_reputation": 0, + "beneficiaries": [], + "body": "This is an article spun to avoid automatic plagiarism detection.\nHere is the source:\nhttp://health.learninginfo.org/muscle-building-tips.htm", + "body_length": 140, + "cashout_time": "2016-09-15T23:59:09", + "category": "workout", + "children": 0, + "created": "2016-08-15T22:50:42", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"workout\"],\"links\":[\"http:\\/\\/health.learninginfo.org\\/muscle-building-tips.htm\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-15T22:50:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 44306411360842, + "parent_author": "dopezzz123", + "parent_permlink": "why-muscles-get-sore", + "pending_payout_value": "312.617 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-dopezzz123-why-muscles-get-sore-20160815t225039946z", + "post_id": 619751, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Why Muscles Get Sore", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/workout/@dopezzz123/why-muscles-get-sore#@adm/re-dopezzz123-why-muscles-get-sore-20160815t225039946z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "40261554792719", + "voter": "blocktrades" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48124579959", + "voter": "full-steem-ahead" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "282481919881", + "voter": "chitty" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25822874684", + "voter": "steampunkpowered" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10283360038", + "voter": "ervin-lemark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24290958657", + "voter": "instructor2121" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62458381858", + "voter": "kanoptx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71100938161", + "voter": "eric-boucher" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61288297136", + "voter": "thecryptodrive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "117389810764", + "voter": "bravenewcoin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5121130339", + "voter": "expanse" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7881221000", + "voter": "spiz0r" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10377897348", + "voter": "nippel66" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49642777135", + "voter": "thylbom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115874018", + "voter": "gosha" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "37453482500", + "voter": "claudiop63" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4096208838", + "voter": "smailer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8375659361", + "voter": "jamesbrown" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108836213411", + "voter": "steemdrive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "195118598", + "voter": "comcentrate" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61289460", + "voter": "jtstreetman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56939384", + "voter": "dcat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130434883", + "voter": "bitcoinparadise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50468741", + "voter": "bellphorion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50353356", + "voter": "takemyfive" + } + ], + "author": "steemdrive", + "author_reputation": 0, + "beneficiaries": [], + "body": "
[![vote-Ohare.jpg](https://s19.postimg.org/vpowej1g3/vote_Ohare.jpg)](http://www.steemit.com/@steemdrive)
", + "body_length": 122, + "cashout_time": "2016-09-24T19:41:42", + "category": "steemit", + "children": 0, + "created": "2016-08-24T16:23:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"steemit\"],\"image\":[\"https:\\/\\/s19.postimg.org\\/vpowej1g3\\/vote_Ohare.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-24T16:23:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 41197240982229, + "parent_author": "steemdrive", + "parent_permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream", + "pending_payout_value": "249.516 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t162300868z", + "post_id": 732832, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream#@steemdrive/re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t162300868z" + }, + { + "active_votes": [ + { + "percent": "5000", + "reputation": 0, + "rshares": "14824916004472", + "voter": "smooth" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "28851426273", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14660905118594", + "voter": "summon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5645842591970", + "voter": "kushed" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3085011784", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3744178588", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "708945412", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52221628833", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1653774577", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213265420", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "733758489177", + "voter": "cass" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "613502402", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "888428594", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287496994", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5519141498", + "voter": "spaninv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "151618531853", + "voter": "killerstorm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13114605961", + "voter": "facer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "137573239907", + "voter": "thedashguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "586358175", + "voter": "mammasitta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128697036640", + "voter": "chhayll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "269379546", + "voter": "thealexander" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13452877972", + "voter": "bitshares101" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51529058014", + "voter": "sephiroth" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5729767206", + "voter": "inti" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14254612849", + "voter": "deanero" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1646059150", + "voter": "belkins" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "116253105", + "voter": "darkstar1o9" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61980222", + "voter": "breastsono" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2359201317", + "voter": "matherly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "897505702", + "voter": "harand" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17530292877", + "voter": "shenanigator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4300748049", + "voter": "bitbutter" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54634677", + "voter": "stephenm" + } + ], + "author": "steemapp", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hi, @smooth this is @str11ngfello, the iOS developer on Steemy. \n\nHere's my linked in profile ->\nhttps://www.linkedin.com/in/lynn-duke-097a724\n\n @cyonic here as a followup edit, my linkedin profile here:\nhttps://www.linkedin.com/in/johnelliotwhite\n\nGive me a few moments and I'll add a blurb to my linked in profile that references Steemy. Look for it towards the top. \n\nHere is a quick vid I made of Steemy at the request of many users. \n\nhttps://youtu.be/kHbOHuXQWg4\n\nHere's to hoping we can prove ourselves a bit. STEEM ON!", + "body_length": 529, + "cashout_time": "2016-09-16T04:46:15", + "category": "steemit", + "children": 18, + "created": "2016-08-16T04:52:51", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit\"],\"links\":[\"https:\\/\\/youtu.be\\/kHbOHuXQWg4\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T14:16:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 36507001147810, + "parent_author": "smooth", + "parent_permlink": "re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t042406700z", + "pending_payout_value": "227.842 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t045252952z", + "post_id": 622869, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "[Introducing Steemy] - Fully Native iOS/Android apps for STEEM", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem#@steemapp/re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t045252952z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "17735818038199", + "voter": "itsascam" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2091363547583", + "voter": "steemroller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17881645967595", + "voter": "steemed" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2473129069", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3001847911", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "562495952", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42273561181", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1325647967", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "170794809", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "115426377545", + "voter": "stan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "497314258", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "741745834", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "230286157", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17452286451", + "voter": "marklyford" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-118201007", + "voter": "cyonic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1259875358", + "voter": "shadowspub" + } + ], + "author": "michaelx", + "author_reputation": 0, + "beneficiaries": [], + "body": "It doesn't matter at all in the big picture, when company accounts are used to censor any conversation (as they have been doing and will likely continue to do) they please, regardless of community voting consensus. \n\nThis has already been proven by the actions of management using those accounts for this purpose.\n\nAnyone believing Steemit as it exists currently to be a censorship free platform for free speech is sadly mistaken.", + "body_length": 431, + "cashout_time": "2016-09-20T07:22:48", + "category": "philosophy", + "children": 0, + "created": "2016-08-20T21:35:15", + "curator_payout_value": "0.000 HBD", + "depth": 5, + "json_metadata": "{\"tags\":[\"philosophy\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-20T21:35:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 37894124714862, + "parent_author": "stellabelle", + "parent_permlink": "re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t150054378z", + "pending_payout_value": "218.456 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-stellabelle-re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t213500128z", + "post_id": 687886, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Our Corrupt Sense of Fairness", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/philosophy/@dantheman/our-corrupt-sense-of-fairness#@michaelx/re-stellabelle-re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t213500128z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "29864685009305", + "voter": "berniesanders" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "189574335690", + "voter": "friend2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "639212703934", + "voter": "justin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968734358586", + "voter": "nextgencrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3084986672", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3744144508", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "708943618", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52193349399", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1653762021", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213265420", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "613500608", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "886632294", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287496994", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "154121482815", + "voter": "jamtaylor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130134738142", + "voter": "thedashguy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39444938394", + "voter": "tiffjane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "851256740", + "voter": "cousteau" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5673774261", + "voter": "meesterboom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "33726244522", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "718346410", + "voter": "birdie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20128929530", + "voter": "rznag" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51125341014", + "voter": "gomeravibz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1954050724", + "voter": "t3ran13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2194116353", + "voter": "xroni" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "403314436", + "voter": "theconnoisseur" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11535444605", + "voter": "queenmountain" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "127023220", + "voter": "harrycoins" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61084860", + "voter": "mndstruct" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "33194586794", + "voter": "thecurator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "230160266", + "voter": "mefisto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1059907708", + "voter": "iamrohitkgupta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71181331", + "voter": "emilyjane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "133481361", + "voter": "mweich" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50281530", + "voter": "topslim" + } + ], + "author": "condra", + "author_reputation": 0, + "beneficiaries": [], + "body": "Congrats to everyone, and forgive me if you didn't place. It wasn't easy to omit so many amazing shots. The standard was very high and there were hundreds of submissions. Huge love for all the Steemit #photography community.", + "body_length": 224, + "cashout_time": "2016-09-15T23:37:45", + "category": "steemitphotochallenge", + "children": 8, + "created": "2016-08-15T14:23:27", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-15T14:23:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 36212532174065, + "parent_author": "jamtaylor", + "parent_permlink": "steemit-photo-challenge-4-winners-announcement-guest-judge-condra", + "pending_payout_value": "218.336 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t142348222z", + "post_id": 613425, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "\ud83d\udcf7 Steemit Photo Challenge #4 \u2014 WINNERS ANNOUNCEMENT! Guest Judge: @condra", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemitphotochallenge/@jamtaylor/steemit-photo-challenge-4-winners-announcement-guest-judge-condra#@condra/re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t142348222z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "29864685009305", + "voter": "berniesanders" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "639212703934", + "voter": "justin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968734358586", + "voter": "nextgencrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2467989338", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2995315607", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "567154894", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "41754679519", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1653762021", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "170612336", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "490800486", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "709305835", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "229997595", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "147833075316", + "voter": "jamtaylor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "33749012863", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8813120108", + "voter": "blinova" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "177253189627", + "voter": "blueorgy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7958656381", + "voter": "kristylynn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "250542489", + "voter": "nat4ka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2869166387", + "voter": "dercoco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "403314436", + "voter": "theconnoisseur" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "33194586794", + "voter": "thecurator" + } + ], + "author": "blueorgy", + "author_reputation": 0, + "beneficiaries": [], + "body": "**Amazing Entries** once again this weekend! The talent here on steemit just keeps on growing with each #SteemitPhotoChallenge and I feel it's 100% a direct result of this **trending topic**. So be proud of your work and if you didn't make it into the **Top 3** don't even think about giving up, the computation is tuff and @condra had a difficult time deciding I'm sure.\n\n
\n\n**Honourable Mentions**\n\n @kristylynn I really enjoyed this photo! It reminded me of when I was a kid grabbing dandelions at every change and blowing them all over the place! My father absolutely hated this because they would end up growing all over his lawn. Great work with the depth and the color is very pleasing. Thank you for bring back some old memories.\n\n@minion I tried to capture a very similar shot during my little exploration last sunday morning. I of course failed to get such a crisp, captivating, and **Super Lush** photo if you can describ the vibrant green colors this way. Great job on capturing that moment right before the water droplet escapes the branch , not easy and patience is required. \n\n**Finalist**\n\n@bebecitosfotos This flower is epic! The clarity and brightness is spot on and even the viewed in post and at lower resolution it still comes off as perfectly in focus (always a very difficult thing to do while using Macro). The background is just muted enough to capture a actual backdrop while not taking away fro the foreground image. Excellent work.\n\n@dercoco What can I say about this one... how about **EYES**. I have always loved the reptile eye, Great Work.\n\n@mweich This is spot on! Being able to capture the pollen on the Bee's legs was a great feat I tell you that, while still keeping other expects and depths of the photo in great focus is even harder, very still hand you must have! The angle of the photo and the choice of background imagery defiantly gave this photo an edge when it came to being Macro. The background is often forgot when capturing with Macro even thought it plays such a big role, you seem to have a very good eye for it. And **Congratulations!** on taking First Place!\n\n
\n\nAgain I can't say it enough great job everyone, keep it up!\nCan't wait for next weekend's challenge @jamtaylor make it a good one ;)\n\nBlue", + "body_length": 2259, + "cashout_time": "2016-09-15T23:37:45", + "category": "steemitphotochallenge", + "children": 0, + "created": "2016-08-15T16:39:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"],\"users\":[\"kristylynn\",\"minion\",\"bebecitosfotos\",\"dercoco\",\"mweich\",\"jamtaylor\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-15T16:52:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 35935996353857, + "parent_author": "jamtaylor", + "parent_permlink": "steemit-photo-challenge-4-winners-announcement-guest-judge-condra", + "pending_payout_value": "215.088 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t163904911z", + "post_id": 615071, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "\ud83d\udcf7 Steemit Photo Challenge #4 \u2014 WINNERS ANNOUNCEMENT! Guest Judge: @condra", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemitphotochallenge/@jamtaylor/steemit-photo-challenge-4-winners-announcement-guest-judge-condra#@blueorgy/re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t163904911z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "29864685009305", + "voter": "berniesanders" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "639212703934", + "voter": "justin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4968734358586", + "voter": "nextgencrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11700424464", + "voter": "by24seven" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18794778971", + "voter": "ozzy-vega" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "106925555861", + "voter": "anyx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "278001908", + "voter": "mirrax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17506904849", + "voter": "keithsmih" + }, + { + "percent": "3300", + "reputation": 0, + "rshares": "20129459504", + "voter": "cheetah" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100129802", + "voter": "cheetah33" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "403314436", + "voter": "theconnoisseur" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100111679", + "voter": "cheetah34" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "33194586794", + "voter": "thecurator" + }, + { + "percent": "3300", + "reputation": 0, + "rshares": "198033574", + "voter": "alorya" + }, + { + "percent": "3300", + "reputation": 0, + "rshares": "360071237", + "voter": "seraph" + }, + { + "percent": "3300", + "reputation": 0, + "rshares": "154615872", + "voter": "celestial" + } + ], + "author": "cheetah", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hi! I am a content-detection robot. This post is to help manual curators; I have NOT flagged you.\nHere is similar content:\nhttp://www.youtube.com/watch?v=Jetfhhkg_YU", + "body_length": 165, + "cashout_time": "2016-09-16T00:01:18", + "category": "blocktalk", + "children": 4, + "created": "2016-08-15T19:46:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-15T19:46:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 35682478060776, + "parent_author": "blocktalk", + "parent_permlink": "blocktalk-with-nexus-colin-cantrell-question-thread", + "pending_payout_value": "212.366 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-blocktalk-with-nexus-colin-cantrell-question-thread-20160815t194601", + "post_id": 617412, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "#Blocktalk with Nexus' Colin Cantrell [Question Thread]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/blocktalk/@blocktalk/blocktalk-with-nexus-colin-cantrell-question-thread#@cheetah/re-blocktalk-with-nexus-colin-cantrell-question-thread-20160815t194601" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "17387563883098", + "voter": "itsascam" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2050320927937", + "voter": "steemroller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17506821189546", + "voter": "steemed" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2472687085", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3001252537", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "562430414", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42191835467", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1325422094", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "170789230", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "497255693", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "737466177", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "230274999", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5163277168", + "voter": "christoryan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4146107046", + "voter": "fishborne" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100022771", + "voter": "darkstar1o9" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58035101", + "voter": "aaronjwhite" + } + ], + "author": "knircky", + "author_reputation": 0, + "beneficiaries": [], + "body": "Nope a stock is not a ponzu scheme and steem is not either.\n\nI am sick of people that cannot understand how things calling them Ponzi schemes, so they can sound smarter than they are.", + "body_length": 183, + "cashout_time": "2016-09-20T07:57:42", + "category": "steemit", + "children": 10, + "created": "2016-08-20T03:22:36", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"steemit\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-20T03:22:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 37005362856363, + "parent_author": "gmalhotra", + "parent_permlink": "re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t025813753z", + "pending_payout_value": "210.101 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-gmalhotra-re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t032236858z", + "post_id": 678887, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Is Bitcoin a Ponzi too? A Simple Explanation about Where Does Money Come From for Dummies", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/steemit/@clayop/is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies#@knircky/re-gmalhotra-re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t032236858z" + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_author_permlink.pat.json b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_author_permlink.pat.json new file mode 100644 index 00000000..e5ed965d --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_author_permlink.pat.json @@ -0,0 +1,1061 @@ +[ + { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "28866299703", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7450679767870", + "voter": "riverhead" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1764088270313", + "voter": "xeroc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7145357377", + "voter": "patrice" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25137309454", + "voter": "instructor2121" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "144262356780", + "voter": "steve-walschot" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "33760968876", + "voter": "ranko-k" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "36553937965", + "voter": "drinkzya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51773329420", + "voter": "thecryptodrive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35397036681", + "voter": "michaelx" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "548967230", + "voter": "mrhankeh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52622878951", + "voter": "isteemit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "48140595510", + "voter": "bacchist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "163693208362", + "voter": "repholder" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11006646312", + "voter": "jaycobbell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "38664653565", + "voter": "condra" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "98956989", + "voter": "wildchild" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11083265481", + "voter": "carlidos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2004715143", + "voter": "tygergamer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3966944281", + "voter": "jed78" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "121805855858", + "voter": "steemdrive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1106341334", + "voter": "paynode" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53812359", + "voter": "stevescriber" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51234301", + "voter": "loli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52405452", + "voter": "nano2nd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11757470887", + "voter": "kyriacos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56598010", + "voter": "cryptoblu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56591855", + "voter": "instructor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "595674328947", + "voter": "dollarvigilante" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7330124869", + "voter": "jaredcwillis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59501709490", + "voter": "barrycooper" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11662670473", + "voter": "hilarski" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53565688", + "voter": "rickmiller" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1086048364", + "voter": "nulliusinverba" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "87349510", + "voter": "steemerpat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1129213184", + "voter": "chaeya" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "263275825888", + "voter": "charlieshrem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59192204578", + "voter": "tracemayer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "205199394749", + "voter": "robinhoodwhale" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1798215057", + "voter": "steemsquad" + } + ], + "author": "robinhoodwhale", + "author_reputation": 0, + "beneficiaries": [], + "body": "Hi @skypilot, \n\nYou have been chosen as a featured author by the @robinhoodwhale initiative.\n\n#### [Learn more about the Robinhood Whale here!](https://steemit.com/robinhoodwhale/@robinhoodwhale/announcing-robinhoodwhale-the-steemit-deep-sea-savior) \n\nKeep on Steeming more amazing posts! \n\nGoodluck!\n~RHW~", + "body_length": 306, + "cashout_time": "2016-10-03T19:05:27", + "category": "photography", + "children": 1, + "created": "2016-09-02T15:56:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"photography\"],\"users\":[\"skypilot\",\"robinhoodwhale\"],\"links\":[\"https:\\/\\/steemit.com\\/robinhoodwhale\\/@robinhoodwhale\\/announcing-robinhoodwhale-the-steemit-deep-sea-savior\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-02T15:56:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 11250426427116, + "parent_author": "skypilot", + "parent_permlink": "where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse", + "pending_payout_value": "17.277 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-skypilot-where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse-20160902t155649699z", + "post_id": 835572, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Where Eagles Fly - Part 2 - Zapata Ranch, Colorado by Zedekiah Morse", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/photography/@skypilot/where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse#@robinhoodwhale/re-skypilot-where-eagles-fly-part-2-zapata-ranch-colorado-by-zedekiah-morse-20160902t155649699z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "7016285569936", + "voter": "riverhead" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24790479260", + "voter": "steampunkpowered" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1950834301", + "voter": "mammasitta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25478344941", + "voter": "firepower" + } + ], + "author": "thecryptofiend", + "author_reputation": 0, + "beneficiaries": [], + "body": "Great shots. This one is my favourite:\n\nhttp://i.imgur.com/gTbRron.jpg\n\nI just love the composition on it and the beautiful colours and cloud pattern. It would also make a great wallpaper.", + "body_length": 190, + "cashout_time": "2016-09-25T18:41:06", + "category": "photography", + "children": 4, + "created": "2016-08-25T17:35:30", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"photography\"],\"image\":[\"http:\\/\\/i.imgur.com\\/gTbRron.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-25T17:35:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 7068505228438, + "parent_author": "firepower", + "parent_permlink": "brown-headed-gulls-in-action-at-the-frozen-pangong-tso-14000-ft", + "pending_payout_value": "10.438 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-firepower-brown-headed-gulls-in-action-at-the-frozen-pangong-tso-14000-ft-20160825t173530609z", + "post_id": 745060, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Brown-headed Gulls in action at the frozen Pangong Tso, 14000+ ft", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/photography/@firepower/brown-headed-gulls-in-action-at-the-frozen-pangong-tso-14000-ft#@thecryptofiend/re-firepower-brown-headed-gulls-in-action-at-the-frozen-pangong-tso-14000-ft-20160825t173530609z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "5619601001718", + "voter": "kushed" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3092016176", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3753101885", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "703213518", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52931035689", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1657363221", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213503903", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "621731193", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "933255856", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287876749", + "voter": "helen.tan" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-129957599035", + "voter": "chhayll" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61649040", + "voter": "kamil5" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51445853", + "voter": "chuckleberry" + }, + { + "percent": "-10000", + "reputation": 0, + "rshares": "-102936299", + "voter": "anotherone" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53006556", + "voter": "fluffy" + } + ], + "author": "sascha", + "author_reputation": 0, + "beneficiaries": [], + "body": "That's just WOW! Awesome!", + "body_length": 25, + "cashout_time": "2016-09-22T05:09:03", + "category": "photography", + "children": 0, + "created": "2016-08-21T20:37:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"photography\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-21T20:37:06", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5553899666023, + "parent_author": "kamil5", + "parent_permlink": "russian-mafia-tattoo", + "pending_payout_value": "8.119 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-kamil5-russian-mafia-tattoo-20160821t203842353z", + "post_id": 698296, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Russian mafia tattoo", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/photography/@kamil5/russian-mafia-tattoo#@sascha/re-kamil5-russian-mafia-tattoo-20160821t203842353z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "727407423660", + "voter": "erath" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82613356260", + "voter": "friend5" + }, + { + "percent": "5100", + "reputation": 0, + "rshares": "139864687027", + "voter": "indominon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3000929371249", + "voter": "onceuponatime" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "728571343037", + "voter": "marginal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "76037093713", + "voter": "vault" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39937555422", + "voter": "kus-knee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3768314076", + "voter": "randyclemens" + } + ], + "author": "indominon", + "author_reputation": 0, + "beneficiaries": [], + "body": "**I own a lawn maintenance business. I hate you. I am going to flag your post.**\n\nJust kidding.", + "body_length": 95, + "cashout_time": "2016-09-17T22:00:39", + "category": "photography", + "children": 1, + "created": "2016-08-17T16:25:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"photography\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T16:25:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 4799129144444, + "parent_author": "kus-knee", + "parent_permlink": "the-old-dog-investigates-why-do-we-even-have-lawns-is-there-a-better-way", + "pending_payout_value": "6.115 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-kus-knee-the-old-dog-investigates-why-do-we-even-have-lawns-is-there-a-better-way-20160817t162553219z", + "post_id": 643398, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "The Old Dog Investigates: Why Do We Even Have Lawns? Is There a Better Way?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/photography/@kus-knee/the-old-dog-investigates-why-do-we-even-have-lawns-is-there-a-better-way#@indominon/re-kus-knee-the-old-dog-investigates-why-do-we-even-have-lawns-is-there-a-better-way-20160817t162553219z" + }, + { + "active_votes": [ + { + "percent": "4000", + "reputation": 0, + "rshares": "5770952961588", + "voter": "summon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3100087836", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3763646165", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "690429176", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54153246604", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1661369472", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213687824", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "622861348", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "967419863", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "288179385", + "voter": "helen.tan" + } + ], + "author": "chris.roy", + "author_reputation": 0, + "beneficiaries": [], + "body": "Wow, herzlich willkommen auf Steemit!\nIch habe dir ein UpVote und Follow da gelassen und das aus guten Gr\u00fcnden :)\nIch freue mich auf weitere Posts von dir.\n\nKomm doch gerne mit in den #deutsch chat, vom Steemit.Chat.\nDort tummelt sich beinahe, die ganze deutschsprachige Steemit Community und du w\u00e4hrst herzlich willkommen:\nhttps://steemit.chat/channel/deutsch\n\nAlles Gute und *full steem ahead* ;)", + "body_length": 398, + "cashout_time": "2016-10-02T22:02:54", + "category": "photography", + "children": 0, + "created": "2016-09-01T19:19:21", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"deutsch\",\"photography\"],\"links\":[\"https:\\/\\/steemit.chat\\/channel\\/deutsch\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-01T19:19:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5836413889261, + "parent_author": "otc", + "parent_permlink": "hi-steemit-let-me-take-a-picture", + "pending_payout_value": "5.584 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-otc-hi-steemit-let-me-take-a-picture-20160901t191925920z", + "post_id": 826962, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hi Steemit, let me take a picture", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/photography/@otc/hi-steemit-let-me-take-a-picture#@chris.roy/re-otc-hi-steemit-let-me-take-a-picture-20160901t191925920z" + }, + { + "active_votes": [ + { + "percent": "4000", + "reputation": 0, + "rshares": "5770952961588", + "voter": "summon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3100087836", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3763646165", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "690429176", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54153246604", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1661369472", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213687824", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "622861348", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "967419863", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "288179385", + "voter": "helen.tan" + } + ], + "author": "essra", + "author_reputation": 0, + "beneficiaries": [], + "body": "great shots, good to have you here :-)", + "body_length": 38, + "cashout_time": "2016-10-02T22:02:54", + "category": "photography", + "children": 0, + "created": "2016-09-01T17:51:57", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"photography\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-01T17:51:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5836413889261, + "parent_author": "otc", + "parent_permlink": "hi-steemit-let-me-take-a-picture", + "pending_payout_value": "5.584 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-otc-hi-steemit-let-me-take-a-picture-20160901t175155160z", + "post_id": 826085, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hi Steemit, let me take a picture", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/photography/@otc/hi-steemit-let-me-take-a-picture#@essra/re-otc-hi-steemit-let-me-take-a-picture-20160901t175155160z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "727408936596", + "voter": "erath" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3088509304", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3748566787", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "702594129", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52530849642", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1655561625", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213393595", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "269017819788", + "voter": "indominon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2942358731305", + "voter": "onceuponatime" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "714328071251", + "voter": "marginal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "74549113891", + "voter": "vault" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "621190665", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "910670584", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287705182", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40371132793", + "voter": "kus-knee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51134434", + "voter": "southbaybits" + } + ], + "author": "shaka", + "author_reputation": 0, + "beneficiaries": [], + "body": "First thing I saw when looking at this picture was one gargantuan grazing horse. Don\u00b4t know whether anyone can follow this impression.", + "body_length": 135, + "cashout_time": "2016-09-19T03:16:21", + "category": "photography", + "children": 4, + "created": "2016-08-18T16:20:09", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"photography\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T16:20:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 4831843981571, + "parent_author": "kus-knee", + "parent_permlink": "the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you", + "pending_payout_value": "5.544 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-kus-knee-the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you-20160818t162010599z", + "post_id": 657458, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "The Old Dog Asks: Does This Picture Scare and Disturb You? Should It? Do You Find it Beautiful? Should You?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/photography/@kus-knee/the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you#@shaka/re-kus-knee-the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you-20160818t162010599z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "727449675213", + "voter": "erath" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "269017819788", + "voter": "indominon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3001205905931", + "voter": "onceuponatime" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "714328071251", + "voter": "marginal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "74549113891", + "voter": "vault" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "34969527491", + "voter": "shaka" + } + ], + "author": "erath", + "author_reputation": 0, + "beneficiaries": [], + "body": "**I see it!**", + "body_length": 13, + "cashout_time": "2016-09-19T03:16:21", + "category": "photography", + "children": 0, + "created": "2016-08-18T16:22:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"photography\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-18T16:22:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 4821520113565, + "parent_author": "shaka", + "parent_permlink": "re-kus-knee-the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you-20160818t162010599z", + "pending_payout_value": "5.526 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-shaka-re-kus-knee-the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you-20160818t162226729z", + "post_id": 657496, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "The Old Dog Asks: Does This Picture Scare and Disturb You? Should It? Do You Find it Beautiful? Should You?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/photography/@kus-knee/the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you#@erath/re-shaka-re-kus-knee-the-old-dog-asks-does-this-picture-scare-and-disturb-you-should-it-do-you-find-it-beautiful-should-you-20160818t162226729z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "7699187945525", + "voter": "steempty" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50275655781", + "voter": "simba" + } + ], + "author": "rainchen", + "author_reputation": 0, + "beneficiaries": [], + "body": "Solar panel ?", + "body_length": 13, + "cashout_time": "2016-09-28T07:56:00", + "category": "photography", + "children": 2, + "created": "2016-08-28T06:36:33", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"photography\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-28T06:36:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 7749463601306, + "parent_author": "simba", + "parent_permlink": "steemit-photography-guessing-game-4-up-to-15-sbd-prize", + "pending_payout_value": "4.984 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-simba-steemit-photography-guessing-game-4-up-to-15-sbd-prize-20160828t063625747z", + "post_id": 775009, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Steemit Photography Guessing Game #4: up to 15 SBD Prize!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/photography/@simba/steemit-photography-guessing-game-4-up-to-15-sbd-prize#@rainchen/re-simba-steemit-photography-guessing-game-4-up-to-15-sbd-prize-20160828t063625747z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "7582498221815", + "voter": "steempty" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3720592927", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4516975561", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "828594645", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "65071559404", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53006240358", + "voter": "simba" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1993882275", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "256442875", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "747505484", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1161028150", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "345840511", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62113589", + "voter": "mcsvi" + } + ], + "author": "mcsvi", + "author_reputation": 0, + "beneficiaries": [], + "body": "Could be a cinnamon toast crunch cereal? ;)", + "body_length": 43, + "cashout_time": "2016-10-02T11:54:57", + "category": "photography", + "children": 2, + "created": "2016-09-01T13:16:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"photography\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-01T13:16:39", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 7714208997594, + "parent_author": "simba", + "parent_permlink": "steemit-photography-guessing-game-5-30-prize", + "pending_payout_value": "4.976 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-simba-steemit-photography-guessing-game-5-30-prize-20160901t131640537z", + "post_id": 823115, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Steemit Photography Guessing Game #6: 30% Prize!", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/photography/@simba/steemit-photography-guessing-game-5-30-prize#@mcsvi/re-simba-steemit-photography-guessing-game-5-30-prize-20160901t131640537z" + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_empty_result.pat.json b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_empty_result.pat.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_empty_result.pat.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_no_data.pat.json b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_no_data.pat.json new file mode 100644 index 00000000..ce2850eb --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_no_data.pat.json @@ -0,0 +1,4860 @@ +[ + { + "post_id": 733019, + "author": "smooth", + "permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t164320100z", + "category": "steemit", + "title": "", + "body": "I will sponsor an additional 2000 SBD toward this campaign in addition to my vote on the post, plus any rewards on this comment.", + "json_metadata": "{\"tags\":[\"steemit\"]}", + "created": "2016-08-24T16:43:21", + "last_update": "2016-08-24T16:43:21", + "depth": 1, + "children": 31, + "net_rshares": 77833655363992, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-24T19:41:42", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "852.555 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 128, + "active_votes": [ + { + "voter": "smooth", + "rshares": "1294968367268", + "percent": "300", + "reputation": 0 + }, + { + "voter": "anonymous", + "rshares": "28860902224", + "percent": "100", + "reputation": 0 + }, + { + "voter": "summon", + "rshares": "14409605494831", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "blocktrades", + "rshares": "40261554792719", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lafona-miner", + "rshares": "3155750963782", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lafona", + "rshares": "377906636658", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "silver", + "rshares": "1245475534803", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "silversteem", + "rshares": "2875138885044", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "delegate.lafona", + "rshares": "992692841277", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "liondani", + "rshares": "948645888607", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lafona5", + "rshares": "314602171157", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "3094244335", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "3755939559", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "703615315", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "complexring", + "rshares": "5751660885474", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemychicken1", + "rshares": "1644151280793", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "53261984748", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "1658441464", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "213555429", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "smooth.witness", + "rshares": "222747002001", + "percent": "300", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "622045496", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "947522117", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "donkeypong", + "rshares": "54127411451", + "percent": "100", + "reputation": 0 + }, + { + "voter": "nexusdev", + "rshares": "1759901644", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ash", + "rshares": "351517418935", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "chitty", + "rshares": "282481919881", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "287957469", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steampunkpowered", + "rshares": "25822874684", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ervin-lemark", + "rshares": "10283360038", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "instructor2121", + "rshares": "24290958657", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jerome-colley", + "rshares": "7456570912", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kevinwong", + "rshares": "491733834025", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nphacker", + "rshares": "41463145095", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "blakemiles84", + "rshares": "367830728600", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ranko-k", + "rshares": "45912096650", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "treeleaves", + "rshares": "23227592357", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kanoptx", + "rshares": "63707549495", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "drinkzya", + "rshares": "31690086400", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "eric-boucher", + "rshares": "73022585138", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kenny-crane", + "rshares": "109636482823", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thecryptodrive", + "rshares": "61288399197", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bravenewcoin", + "rshares": "117389810764", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "infovore", + "rshares": "449244898326", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "omarb", + "rshares": "128017998380", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cheftony", + "rshares": "36007650081", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cryptoiskey", + "rshares": "32961119819", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "discombobulated", + "rshares": "71452016003", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "expanse", + "rshares": "5121130339", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "hitmeasap", + "rshares": "25440234426", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "stealthtrader", + "rshares": "13382892819", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tcfxyz", + "rshares": "24939158057", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cdubendo", + "rshares": "103574158909", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "spiz0r", + "rshares": "7881221000", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jacor", + "rshares": "112751020008", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "halo", + "rshares": "14190084617", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jesta", + "rshares": "159492592967", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "toxonaut", + "rshares": "33597624083", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "btcupload", + "rshares": "7028930352", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "anduweb", + "rshares": "17438618169", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "demotruk", + "rshares": "75155947399", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "maximkichev", + "rshares": "3697940497", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nippel66", + "rshares": "10377897348", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "magz8716", + "rshares": "7753599028", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cryptocurrency1", + "rshares": "1388783807", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gosha", + "rshares": "115874018", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "raymonjohnstone", + "rshares": "505816971", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "biternator", + "rshares": "124907433", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "willbeonceagain8", + "rshares": "3090635988", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "arcurus", + "rshares": "54497070629", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bakingengineer", + "rshares": "4745090234", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "claudiop63", + "rshares": "36689125715", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "noodles.pan", + "rshares": "16359584188", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "npl77", + "rshares": "10399150907", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemdrive", + "rshares": "108836213411", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bergy", + "rshares": "11060114610", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "theprophet0", + "rshares": "2050213474", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "theprophet", + "rshares": "295915630", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "allasyummyfood", + "rshares": "38819548773", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "neddykelly", + "rshares": "461449860", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "minion", + "rshares": "1579699570", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sirwinchester", + "rshares": "77473387847", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sijoittaja", + "rshares": "61385527", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tom77", + "rshares": "4190219999", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nelkel", + "rshares": "125663528", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "letsgo.asino", + "rshares": "148930176", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "hilarski", + "rshares": "14968711124", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ajavajive", + "rshares": "58226150", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "oldtimer", + "rshares": "253750401751", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "shootetxd", + "rshares": "57886832", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "comcentrate", + "rshares": "191216226", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "antoinev", + "rshares": "13741567322", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jtstreetman", + "rshares": "61289460", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "io-io-io", + "rshares": "5100395909", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ian89", + "rshares": "54884363", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "chuckleberry", + "rshares": "50351260", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "panther", + "rshares": "349611227", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tracemayer", + "rshares": "59354601485", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "brs", + "rshares": "51884666", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bitcoinparadise", + "rshares": "130434883", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bellphorion", + "rshares": "52571606", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "yanikkoval", + "rshares": "53224648", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "infotoday", + "rshares": "51136429", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tldr", + "rshares": "50977036", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bo-ro", + "rshares": "50797377", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "steemdrive", + "parent_permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream", + "url": "/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream#@smooth/re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t164320100z", + "root_title": "Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the “American Dream\"!", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 630864, + "author": "charlieshrem", + "permlink": "re-dennygalindo-re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185524881z", + "category": "introduceyourself", + "title": "", + "body": "I have a series of posts I'm writing now about socioeconomic observations in prison. If the Steemit community likes it, Ill post it here exclusively.", + "json_metadata": "{\"tags\":[\"introduceyourself\"]}", + "created": "2016-08-16T18:55:27", + "last_update": "2016-08-16T18:55:27", + "depth": 2, + "children": 21, + "net_rshares": 59091129639172, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T21:13:42", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "545.728 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 149, + "active_votes": [ + { + "voter": "smooth", + "rshares": "30296554046147", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "anonymous", + "rshares": "28854877817", + "percent": "97", + "reputation": 0 + }, + { + "voter": "summon", + "rshares": "14368089454321", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lafona-miner", + "rshares": "3183112492799", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lafona", + "rshares": "377387227766", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "delegate.lafona", + "rshares": "790314875205", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lafona5", + "rshares": "314383371770", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "1851434600", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "2247039689", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "425455109", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "31378635899", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "992487616", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "127981753", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sean0010", + "rshares": "6510505164", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "smooth.witness", + "rshares": "5308002434389", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "officialfuzzy", + "rshares": "342922310367", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cass", + "rshares": "802009404542", + "percent": "9700", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "369247770", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "537460001", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "172530341", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "chryspano", + "rshares": "410778394570", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "forrestwillie", + "rshares": "113345677592", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kingjohal", + "rshares": "5390642912", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "blakemiles84", + "rshares": "346429583563", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ranko-k", + "rshares": "46740932510", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "allahhh", + "rshares": "18522231224", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rafikichi", + "rshares": "398461524", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sean-king", + "rshares": "1421853753930", + "percent": "9900", + "reputation": 0 + }, + { + "voter": "charleshosk", + "rshares": "65040641602", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mammasitta", + "rshares": "739465956", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "acassity", + "rshares": "17651204278", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "chamviet", + "rshares": "480475374", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "concave", + "rshares": "239694404", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "vi1son", + "rshares": "1386708550", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gazm", + "rshares": "1798938485", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ausbitbank", + "rshares": "19465926763", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "egjoshslim", + "rshares": "2622666444", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "perwest", + "rshares": "6373898691", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lioliomir", + "rshares": "312475355", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "alexfortin", + "rshares": "33482946725", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "r33drum", + "rshares": "5612628842", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "igster", + "rshares": "24373102947", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sephiroth", + "rshares": "51538128557", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cryptosi", + "rshares": "5989513477", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ntomaino", + "rshares": "72131208610", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "domavila", + "rshares": "9493199624", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bonface", + "rshares": "107006946999", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "grolelo", + "rshares": "12353093513", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "streetstyle", + "rshares": "32088583721", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "demotruk", + "rshares": "54299398751", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "arcurus", + "rshares": "45617820200", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "johnsmith", + "rshares": "211677715438", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "team-leibniz", + "rshares": "17146066951", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "solidgold", + "rshares": "22277193587", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "borntowin", + "rshares": "143431864", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "metaflute", + "rshares": "609312338", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bofadeez", + "rshares": "1125051142", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "darkstar1o9", + "rshares": "100022771", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "pgarcgo", + "rshares": "57276142", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "alifton", + "rshares": "328256060", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "laissezfairedr", + "rshares": "63775214", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rubenalexander", + "rshares": "66697195", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kyriacos", + "rshares": "7960548410", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "manicmidnight", + "rshares": "376001676", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tradz", + "rshares": "58682093", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "brandon-rosano", + "rshares": "58914198", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "simon-says", + "rshares": "38710389758", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "alaqrab", + "rshares": "57980741", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "saintbitts", + "rshares": "56436574", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "shakimclark7", + "rshares": "55261899", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "powercouple", + "rshares": "75377250", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jaypillagara", + "rshares": "55618704", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "shax", + "rshares": "53912690", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "wulfmeister", + "rshares": "53846159", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ct-gurus", + "rshares": "53707619", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "donzy", + "rshares": "53333238", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "frostwalker", + "rshares": "53210703", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 50375830871208, + "parent_author": "dennygalindo", + "parent_permlink": "re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185037477z", + "url": "/introduceyourself/@charlieshrem/charlie-shrem-is-now-on-steemit#@charlieshrem/re-dennygalindo-re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185524881z", + "root_title": "Charlie Shrem Is Now On Steemit!", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 619751, + "author": "adm", + "permlink": "re-dopezzz123-why-muscles-get-sore-20160815t225039946z", + "category": "workout", + "title": "", + "body": "This is an article spun to avoid automatic plagiarism detection.\nHere is the source:\nhttp://health.learninginfo.org/muscle-building-tips.htm", + "json_metadata": "{\"tags\":[\"workout\"],\"links\":[\"http:\\/\\/health.learninginfo.org\\/muscle-building-tips.htm\"]}", + "created": "2016-08-15T22:50:42", + "last_update": "2016-08-15T22:50:42", + "depth": 1, + "children": 0, + "net_rshares": 44306411360842, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-15T23:59:09", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "312.617 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 140, + "active_votes": [ + { + "voter": "berniesanders", + "rshares": "29186049220380", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "justin", + "rshares": "623996958321", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "abit", + "rshares": "5881098331094", + "percent": "9900", + "reputation": 0 + }, + { + "voter": "nextgencrypto", + "rshares": "4855865727368", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "adm", + "rshares": "2454399166148", + "percent": "9800", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "2467985030", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "2995309863", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "567154894", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "41750226248", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "1323006745", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "170612336", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "pfunk", + "rshares": "664278529380", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "490800486", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "709305835", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "229997595", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kaylinart", + "rshares": "130506632815", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "anyx", + "rshares": "106890789634", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "senseiteekay", + "rshares": "9971301073", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "shredlord", + "rshares": "9400027589", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cheetah", + "rshares": "61646469732", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "originate", + "rshares": "219824678620", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "metaflute", + "rshares": "685101796", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "theconnoisseur", + "rshares": "394148198", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thecurator", + "rshares": "32404401324", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "alorya", + "rshares": "582451688", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "seraph", + "rshares": "1059033052", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "someguy123", + "rshares": "16011014560", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "celestial", + "rshares": "454752565", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "andyinspace", + "rshares": "188226473", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "dopezzz123", + "parent_permlink": "why-muscles-get-sore", + "url": "/workout/@dopezzz123/why-muscles-get-sore#@adm/re-dopezzz123-why-muscles-get-sore-20160815t225039946z", + "root_title": "Why Muscles Get Sore", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 732832, + "author": "steemdrive", + "permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t162300868z", + "category": "steemit", + "title": "", + "body": "
[![vote-Ohare.jpg](https://s19.postimg.org/vpowej1g3/vote_Ohare.jpg)](http://www.steemit.com/@steemdrive)
", + "json_metadata": "{\"tags\":[\"steemit\"],\"image\":[\"https:\\/\\/s19.postimg.org\\/vpowej1g3\\/vote_Ohare.jpg\"]}", + "created": "2016-08-24T16:23:00", + "last_update": "2016-08-24T16:23:00", + "depth": 1, + "children": 0, + "net_rshares": 41197240982229, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-24T19:41:42", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "249.516 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 122, + "active_votes": [ + { + "voter": "blocktrades", + "rshares": "40261554792719", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "full-steem-ahead", + "rshares": "48124579959", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "chitty", + "rshares": "282481919881", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steampunkpowered", + "rshares": "25822874684", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ervin-lemark", + "rshares": "10283360038", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "instructor2121", + "rshares": "24290958657", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kanoptx", + "rshares": "62458381858", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "eric-boucher", + "rshares": "71100938161", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thecryptodrive", + "rshares": "61288297136", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bravenewcoin", + "rshares": "117389810764", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "expanse", + "rshares": "5121130339", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "spiz0r", + "rshares": "7881221000", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nippel66", + "rshares": "10377897348", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thylbom", + "rshares": "49642777135", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gosha", + "rshares": "115874018", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "claudiop63", + "rshares": "37453482500", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "smailer", + "rshares": "4096208838", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jamesbrown", + "rshares": "8375659361", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemdrive", + "rshares": "108836213411", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "comcentrate", + "rshares": "195118598", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jtstreetman", + "rshares": "61289460", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dcat", + "rshares": "56939384", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bitcoinparadise", + "rshares": "130434883", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bellphorion", + "rshares": "50468741", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "takemyfive", + "rshares": "50353356", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "steemdrive", + "parent_permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream", + "url": "/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream#@steemdrive/re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t162300868z", + "root_title": "Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the “American Dream\"!", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 622869, + "author": "steemapp", + "permlink": "re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t045252952z", + "category": "steemit", + "title": "", + "body": "Hi, @smooth this is @str11ngfello, the iOS developer on Steemy. \n\nHere's my linked in profile ->\nhttps://www.linkedin.com/in/lynn-duke-097a724\n\n @cyonic here as a followup edit, my linkedin profile here:\nhttps://www.linkedin.com/in/johnelliotwhite\n\nGive me a few moments and I'll add a blurb to my linked in profile that references Steemy. Look for it towards the top. \n\nHere is a quick vid I made of Steemy at the request of many users. \n\nhttps://youtu.be/kHbOHuXQWg4\n\nHere's to hoping we can prove ourselves a bit. STEEM ON!", + "json_metadata": "{\"tags\":[\"steemit\"],\"links\":[\"https:\\/\\/youtu.be\\/kHbOHuXQWg4\"]}", + "created": "2016-08-16T04:52:51", + "last_update": "2016-08-16T14:16:24", + "depth": 2, + "children": 18, + "net_rshares": 36507001147810, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T04:46:15", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "227.842 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 529, + "active_votes": [ + { + "voter": "smooth", + "rshares": "14824916004472", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "anonymous", + "rshares": "28851426273", + "percent": "100", + "reputation": 0 + }, + { + "voter": "summon", + "rshares": "14660905118594", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kushed", + "rshares": "5645842591970", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "3085011784", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "3744178588", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "708945412", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "52221628833", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "1653774577", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "213265420", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cass", + "rshares": "733758489177", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "613502402", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "888428594", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "287496994", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "spaninv", + "rshares": "5519141498", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "killerstorm", + "rshares": "151618531853", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "facer", + "rshares": "13114605961", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thedashguy", + "rshares": "137573239907", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mammasitta", + "rshares": "586358175", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "chhayll", + "rshares": "128697036640", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thealexander", + "rshares": "269379546", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bitshares101", + "rshares": "13452877972", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sephiroth", + "rshares": "51529058014", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "inti", + "rshares": "5729767206", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "deanero", + "rshares": "14254612849", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "belkins", + "rshares": "1646059150", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "darkstar1o9", + "rshares": "116253105", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "breastsono", + "rshares": "61980222", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "matherly", + "rshares": "2359201317", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "harand", + "rshares": "897505702", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "shenanigator", + "rshares": "17530292877", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bitbutter", + "rshares": "4300748049", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "stephenm", + "rshares": "54634677", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "smooth", + "parent_permlink": "re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t042406700z", + "url": "/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem#@steemapp/re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t045252952z", + "root_title": "[Introducing Steemy] - Fully Native iOS/Android apps for STEEM", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 687886, + "author": "michaelx", + "permlink": "re-stellabelle-re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t213500128z", + "category": "philosophy", + "title": "", + "body": "It doesn't matter at all in the big picture, when company accounts are used to censor any conversation (as they have been doing and will likely continue to do) they please, regardless of community voting consensus. \n\nThis has already been proven by the actions of management using those accounts for this purpose.\n\nAnyone believing Steemit as it exists currently to be a censorship free platform for free speech is sadly mistaken.", + "json_metadata": "{\"tags\":[\"philosophy\"]}", + "created": "2016-08-20T21:35:15", + "last_update": "2016-08-20T21:35:15", + "depth": 5, + "children": 0, + "net_rshares": 37894124714862, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-20T07:22:48", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "218.456 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 431, + "active_votes": [ + { + "voter": "itsascam", + "rshares": "17735818038199", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemroller", + "rshares": "2091363547583", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemed", + "rshares": "17881645967595", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "2473129069", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "3001847911", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "562495952", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "42273561181", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "1325647967", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "170794809", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "stan", + "rshares": "115426377545", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "497314258", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "741745834", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "230286157", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "marklyford", + "rshares": "17452286451", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cyonic", + "rshares": "-118201007", + "percent": "-10000", + "reputation": 0 + }, + { + "voter": "shadowspub", + "rshares": "1259875358", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "stellabelle", + "parent_permlink": "re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t150054378z", + "url": "/philosophy/@dantheman/our-corrupt-sense-of-fairness#@michaelx/re-stellabelle-re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t213500128z", + "root_title": "Our Corrupt Sense of Fairness", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 613425, + "author": "condra", + "permlink": "re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t142348222z", + "category": "steemitphotochallenge", + "title": "", + "body": "Congrats to everyone, and forgive me if you didn't place. It wasn't easy to omit so many amazing shots. The standard was very high and there were hundreds of submissions. Huge love for all the Steemit #photography community.", + "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\"]}", + "created": "2016-08-15T14:23:27", + "last_update": "2016-08-15T14:23:27", + "depth": 1, + "children": 8, + "net_rshares": 36212532174065, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-15T23:37:45", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "218.336 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 224, + "active_votes": [ + { + "voter": "berniesanders", + "rshares": "29864685009305", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "friend2", + "rshares": "189574335690", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "justin", + "rshares": "639212703934", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nextgencrypto", + "rshares": "4968734358586", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "3084986672", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "3744144508", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "708943618", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "52193349399", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "1653762021", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "213265420", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "613500608", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "886632294", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "287496994", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jamtaylor", + "rshares": "154121482815", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thedashguy", + "rshares": "130134738142", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tiffjane", + "rshares": "39444938394", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cousteau", + "rshares": "851256740", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "meesterboom", + "rshares": "5673774261", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "condra", + "rshares": "33726244522", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "birdie", + "rshares": "718346410", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rznag", + "rshares": "20128929530", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gomeravibz", + "rshares": "51125341014", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "t3ran13", + "rshares": "1954050724", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "xroni", + "rshares": "2194116353", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "theconnoisseur", + "rshares": "403314436", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "queenmountain", + "rshares": "11535444605", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "harrycoins", + "rshares": "127023220", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mndstruct", + "rshares": "61084860", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thecurator", + "rshares": "33194586794", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mefisto", + "rshares": "230160266", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "iamrohitkgupta", + "rshares": "1059907708", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "emilyjane", + "rshares": "71181331", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mweich", + "rshares": "133481361", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "topslim", + "rshares": "50281530", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "jamtaylor", + "parent_permlink": "steemit-photo-challenge-4-winners-announcement-guest-judge-condra", + "url": "/steemitphotochallenge/@jamtaylor/steemit-photo-challenge-4-winners-announcement-guest-judge-condra#@condra/re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t142348222z", + "root_title": "📷 Steemit Photo Challenge #4 — WINNERS ANNOUNCEMENT! Guest Judge: @condra", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 615071, + "author": "blueorgy", + "permlink": "re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t163904911z", + "category": "steemitphotochallenge", + "title": "", + "body": "**Amazing Entries** once again this weekend! The talent here on steemit just keeps on growing with each #SteemitPhotoChallenge and I feel it's 100% a direct result of this **trending topic**. So be proud of your work and if you didn't make it into the **Top 3** don't even think about giving up, the computation is tuff and @condra had a difficult time deciding I'm sure.\n\n
\n\n**Honourable Mentions**\n\n @kristylynn I really enjoyed this photo! It reminded me of when I was a kid grabbing dandelions at every change and blowing them all over the place! My father absolutely hated this because they would end up growing all over his lawn. Great work with the depth and the color is very pleasing. Thank you for bring back some old memories.\n\n@minion I tried to capture a very similar shot during my little exploration last sunday morning. I of course failed to get such a crisp, captivating, and **Super Lush** photo if you can describ the vibrant green colors this way. Great job on capturing that moment right before the water droplet escapes the branch , not easy and patience is required. \n\n**Finalist**\n\n@bebecitosfotos This flower is epic! The clarity and brightness is spot on and even the viewed in post and at lower resolution it still comes off as perfectly in focus (always a very difficult thing to do while using Macro). The background is just muted enough to capture a actual backdrop while not taking away fro the foreground image. Excellent work.\n\n@dercoco What can I say about this one... how about **EYES**. I have always loved the reptile eye, Great Work.\n\n@mweich This is spot on! Being able to capture the pollen on the Bee's legs was a great feat I tell you that, while still keeping other expects and depths of the photo in great focus is even harder, very still hand you must have! The angle of the photo and the choice of background imagery defiantly gave this photo an edge when it came to being Macro. The background is often forgot when capturing with Macro even thought it plays such a big role, you seem to have a very good eye for it. And **Congratulations!** on taking First Place!\n\n
\n\nAgain I can't say it enough great job everyone, keep it up!\nCan't wait for next weekend's challenge @jamtaylor make it a good one ;)\n\nBlue", + "json_metadata": "{\"tags\":[\"steemitphotochallenge\"],\"users\":[\"kristylynn\",\"minion\",\"bebecitosfotos\",\"dercoco\",\"mweich\",\"jamtaylor\"]}", + "created": "2016-08-15T16:39:03", + "last_update": "2016-08-15T16:52:30", + "depth": 1, + "children": 0, + "net_rshares": 35935996353857, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-15T23:37:45", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "215.088 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 2259, + "active_votes": [ + { + "voter": "berniesanders", + "rshares": "29864685009305", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "justin", + "rshares": "639212703934", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nextgencrypto", + "rshares": "4968734358586", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "2467989338", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "2995315607", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "567154894", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "41754679519", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "1653762021", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "170612336", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "490800486", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "709305835", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "229997595", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jamtaylor", + "rshares": "147833075316", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "condra", + "rshares": "33749012863", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "blinova", + "rshares": "8813120108", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "blueorgy", + "rshares": "177253189627", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kristylynn", + "rshares": "7958656381", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nat4ka", + "rshares": "250542489", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dercoco", + "rshares": "2869166387", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "theconnoisseur", + "rshares": "403314436", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thecurator", + "rshares": "33194586794", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "jamtaylor", + "parent_permlink": "steemit-photo-challenge-4-winners-announcement-guest-judge-condra", + "url": "/steemitphotochallenge/@jamtaylor/steemit-photo-challenge-4-winners-announcement-guest-judge-condra#@blueorgy/re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t163904911z", + "root_title": "📷 Steemit Photo Challenge #4 — WINNERS ANNOUNCEMENT! Guest Judge: @condra", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 617412, + "author": "cheetah", + "permlink": "re-blocktalk-with-nexus-colin-cantrell-question-thread-20160815t194601", + "category": "blocktalk", + "title": "", + "body": "Hi! I am a content-detection robot. This post is to help manual curators; I have NOT flagged you.\nHere is similar content:\nhttp://www.youtube.com/watch?v=Jetfhhkg_YU", + "json_metadata": "{}", + "created": "2016-08-15T19:46:09", + "last_update": "2016-08-15T19:46:09", + "depth": 1, + "children": 4, + "net_rshares": 35682478060776, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-16T00:01:18", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "212.366 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 165, + "active_votes": [ + { + "voter": "berniesanders", + "rshares": "29864685009305", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "justin", + "rshares": "639212703934", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nextgencrypto", + "rshares": "4968734358586", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "by24seven", + "rshares": "11700424464", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ozzy-vega", + "rshares": "18794778971", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "anyx", + "rshares": "106925555861", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mirrax", + "rshares": "278001908", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "keithsmih", + "rshares": "17506904849", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cheetah", + "rshares": "20129459504", + "percent": "3300", + "reputation": 0 + }, + { + "voter": "cheetah33", + "rshares": "100129802", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "theconnoisseur", + "rshares": "403314436", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cheetah34", + "rshares": "100111679", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thecurator", + "rshares": "33194586794", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "alorya", + "rshares": "198033574", + "percent": "3300", + "reputation": 0 + }, + { + "voter": "seraph", + "rshares": "360071237", + "percent": "3300", + "reputation": 0 + }, + { + "voter": "celestial", + "rshares": "154615872", + "percent": "3300", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "blocktalk", + "parent_permlink": "blocktalk-with-nexus-colin-cantrell-question-thread", + "url": "/blocktalk/@blocktalk/blocktalk-with-nexus-colin-cantrell-question-thread#@cheetah/re-blocktalk-with-nexus-colin-cantrell-question-thread-20160815t194601", + "root_title": "#Blocktalk with Nexus' Colin Cantrell [Question Thread]", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 678887, + "author": "knircky", + "permlink": "re-gmalhotra-re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t032236858z", + "category": "steemit", + "title": "", + "body": "Nope a stock is not a ponzu scheme and steem is not either.\n\nI am sick of people that cannot understand how things calling them Ponzi schemes, so they can sound smarter than they are.", + "json_metadata": "{\"tags\":[\"steemit\"]}", + "created": "2016-08-20T03:22:36", + "last_update": "2016-08-20T03:22:36", + "depth": 2, + "children": 10, + "net_rshares": 37005362856363, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-20T07:57:42", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "210.101 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 183, + "active_votes": [ + { + "voter": "itsascam", + "rshares": "17387563883098", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemroller", + "rshares": "2050320927937", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemed", + "rshares": "17506821189546", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "2472687085", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "3001252537", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "562430414", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "42191835467", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "1325422094", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "170789230", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "497255693", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "737466177", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "230274999", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "christoryan", + "rshares": "5163277168", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "fishborne", + "rshares": "4146107046", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "darkstar1o9", + "rshares": "100022771", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "aaronjwhite", + "rshares": "58035101", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "gmalhotra", + "parent_permlink": "re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t025813753z", + "url": "/steemit/@clayop/is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies#@knircky/re-gmalhotra-re-clayop-is-bitcoin-a-ponzi-too-a-simple-explanation-about-where-does-money-come-from-for-dummies-20160820t032236858z", + "root_title": "Is Bitcoin a Ponzi too? A Simple Explanation about Where Does Money Come From for Dummies", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 619811, + "author": "anyx", + "permlink": "re-dopezzz123-why-muscles-get-sore-20160815t225638685z", + "category": "workout", + "title": "", + "body": "This user is a serial plagiarist who has taken to spinning articles to plagiarize, instead of providing sources and discussion.\n\n!cheetah ban", + "json_metadata": "{\"tags\":[\"workout\"]}", + "created": "2016-08-15T22:56:39", + "last_update": "2016-08-15T22:56:39", + "depth": 1, + "children": 1, + "net_rshares": 35271450211375, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-15T23:59:09", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "208.151 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 141, + "active_votes": [ + { + "voter": "berniesanders", + "rshares": "29186049220380", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "justin", + "rshares": "623996958321", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nextgencrypto", + "rshares": "4855865727368", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jamtaylor", + "rshares": "154146763309", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "zebbra2014", + "rshares": "-5787205072", + "percent": "-10000", + "reputation": 0 + }, + { + "voter": "anyx", + "rshares": "106890789634", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "senseiteekay", + "rshares": "9733889143", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "shredlord", + "rshares": "9400027589", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cheetah", + "rshares": "61646469732", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "originate", + "rshares": "219824678620", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "metaflute", + "rshares": "685101796", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "theconnoisseur", + "rshares": "394148198", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thecurator", + "rshares": "32404401324", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "someguy123", + "rshares": "16011014560", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "andyinspace", + "rshares": "188226473", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "dopezzz123", + "parent_permlink": "why-muscles-get-sore", + "url": "/workout/@dopezzz123/why-muscles-get-sore#@anyx/re-dopezzz123-why-muscles-get-sore-20160815t225638685z", + "root_title": "Why Muscles Get Sore", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 675843, + "author": "thylbom", + "permlink": "re-blocktrades-blocktrades-witness-report-for-3rd-week-of-august-20160819t213441316z", + "category": "witness-category", + "title": "", + "body": "I definitely agree that the password recovery problem is a good one to work on. People who have been involved in crypto for some time are almost instinctively aware of the importance of safeguarding private keys, but \"mainstream\" adopters are accustomed to a world of hand-holding where the powers that be can bail you out if you are careless, stupid, forgetful or unlucky. If a method can be devised to facilitate recovery without sacrificing security, it can avoid problems of negative user experience that could hurt the platform's prospects for widespread adaption.", + "json_metadata": "{\"tags\":[\"witness-category\"]}", + "created": "2016-08-19T21:34:42", + "last_update": "2016-08-19T21:34:57", + "depth": 1, + "children": 1, + "net_rshares": 37471570441471, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-20T02:41:45", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "204.392 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 569, + "active_votes": [ + { + "voter": "itsascam", + "rshares": "17387563883098", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "blocktrades", + "rshares": "2478143633692", + "percent": "500", + "reputation": 0 + }, + { + "voter": "steemed", + "rshares": "17508649345673", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "2472598979", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "3001139259", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "562419226", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "42178757456", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "1325381537", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "170789230", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "497247302", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "737445199", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "230273601", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "claudiop63", + "rshares": "38894121671", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "goose", + "rshares": "7143405548", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "blocktrades", + "parent_permlink": "blocktrades-witness-report-for-3rd-week-of-august", + "url": "/witness-category/@blocktrades/blocktrades-witness-report-for-3rd-week-of-august#@thylbom/re-blocktrades-blocktrades-witness-report-for-3rd-week-of-august-20160819t213441316z", + "root_title": "BlockTrades Witness Report for 3rd Week of August", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 681168, + "author": "r4fken", + "permlink": "re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z", + "category": "philosophy", + "title": "", + "body": "Do I understand correctly that you're referencing the initial \"mining\" by a select group of devs and friends, resulting in \"overwhelming control\" by means of vests now?\nOr am I just imagining things? :)", + "json_metadata": "{\"tags\":[\"philosophy\"]}", + "created": "2016-08-20T09:06:27", + "last_update": "2016-08-20T09:07:12", + "depth": 2, + "children": 0, + "net_rshares": 35692802942928, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-20T07:22:48", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "196.246 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 202, + "active_votes": [ + { + "voter": "itsascam", + "rshares": "17735315160760", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemed", + "rshares": "17865766992651", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "3091007147", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "3751778512", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "703064185", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "52778799199", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "1656856120", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "213490026", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "621592296", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "923609344", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "287848982", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "r4fken", + "rshares": "27692743706", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "steemed", + "parent_permlink": "re-dantheman-our-corrupt-sense-of-fairness-20160820t035220528z", + "url": "/philosophy/@dantheman/our-corrupt-sense-of-fairness#@r4fken/re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z", + "root_title": "Our Corrupt Sense of Fairness", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 637043, + "author": "lukestokes", + "permlink": "re-bacchist-dan-needs-to-be-stopped-20160817t045803929z", + "category": "steem", + "title": "", + "body": "`dictatorship`, `hindenburg`, `titanic` and a hitler meme are all a bit too over the top for me. I'm glad you're voicing your concerns, but a \"Dan must be stopped\" call to action against the very person who created what we are all enjoying isn't (IMO) the best approach for having a respectful dialogue about the issue. It seems many are already discussing the issue on github and voicing their disapproval there. We'll see where it goes from here, and it's definitely something to keep an eye on. For that, I thank you, but I won't give you my vote on this post because I think the tone is counter productive to a rational, open conversation about the issue. I may be wrong and maybe a more alarmist tone is called for. As with many things, we shall see over time.", + "json_metadata": "{\"tags\":[\"steem\"]}", + "created": "2016-08-17T04:58:03", + "last_update": "2016-08-17T12:34:09", + "depth": 1, + "children": 38, + "net_rshares": 31034930180364, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-17T19:51:06", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "164.026 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 766, + "active_votes": [ + { + "voter": "erath", + "rshares": "727407423660", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "smooth", + "rshares": "644958517124", + "percent": "100", + "reputation": 0 + }, + { + "voter": "anonymous", + "rshares": "28855608662", + "percent": "49", + "reputation": 0 + }, + { + "voter": "rainman", + "rshares": "8486664643623", + "percent": "4900", + "reputation": 0 + }, + { + "voter": "wackou", + "rshares": "6370652360778", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "friend5", + "rshares": "82613356260", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "roadscape", + "rshares": "6571978360124", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "2470238755", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "2998129153", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "567603623", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "41948298509", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "1324164960", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "170709221", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "joseph", + "rshares": "1813610822120", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "smooth.witness", + "rshares": "108871922542", + "percent": "100", + "reputation": 0 + }, + { + "voter": "twiceuponatime", + "rshares": "51208392605", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "indominon", + "rshares": "139867989371", + "percent": "5200", + "reputation": 0 + }, + { + "voter": "onceuponatime", + "rshares": "2942087618871", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "marginal", + "rshares": "728571343037", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cass", + "rshares": "937174079758", + "percent": "9700", + "reputation": 0 + }, + { + "voter": "vault", + "rshares": "76036949216", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "496873319", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "725575461", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "230145753", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "chryspano", + "rshares": "410807696946", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "acidyo", + "rshares": "9521769889", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mughat", + "rshares": "19196002726", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nphacker", + "rshares": "47541496466", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kennyskitchen", + "rshares": "3892379945", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "schro", + "rshares": "129268320437", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thedashguy", + "rshares": "92995154682", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lukestokes", + "rshares": "213701132994", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "carlgetalada", + "rshares": "276395602", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "catchfire", + "rshares": "28736613783", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "quintanilla", + "rshares": "5894409181", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bacchist", + "rshares": "41089533337", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cannav", + "rshares": "8483258053", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "discombobulated", + "rshares": "65583674268", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "chrisj", + "rshares": "1259117194", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "krystle", + "rshares": "3704243578", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "artakan", + "rshares": "14629758637", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "phenom", + "rshares": "6012406044", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "crazymumzysa", + "rshares": "17402129371", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bbrewer", + "rshares": "4183080661", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "fatboy", + "rshares": "35472659687", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "beanz", + "rshares": "3978086691", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "solidgold", + "rshares": "22725564707", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jasonstaggers", + "rshares": "24344116072", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "najoh", + "rshares": "6603057948", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "capitalism", + "rshares": "12993857503", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "satoshifpv", + "rshares": "4872113322", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "aboundlessworld", + "rshares": "2818362970", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "oflyhigh", + "rshares": "2636752145", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "randyclemens", + "rshares": "3558963294", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "alifton", + "rshares": "377494461", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bitcalm", + "rshares": "26914242849", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "davidbrogan", + "rshares": "1692339912", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "negoshi", + "rshares": "56779364", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "david.prochnow", + "rshares": "50997147", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "doze49", + "rshares": "50258926", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "fraterralph", + "rshares": "61941319", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "onlyspeakslies", + "rshares": "52891748", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "bacchist", + "parent_permlink": "dan-needs-to-be-stopped", + "url": "/steem/@bacchist/dan-needs-to-be-stopped#@lukestokes/re-bacchist-dan-needs-to-be-stopped-20160817t045803929z", + "root_title": "Dan needs to be stopped", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 826676, + "author": "recursive", + "permlink": "re-dantheman-why-do-we-fight-to-change-the-world-20160901t184948317z", + "category": "philosophy", + "title": "", + "body": "> This state of being creates a paradox for those with aims to change the world. If you are at complete peace with the way things are, then what motive is there to change the world? On what basis should you choose to act? This is the very heart of economics, the study of human action. This is the root of my current internal conflict.\n\nMahayana (Great Vehicle) buddhism may have an answer to that apparent conflict you are experiencing. According to the Mahayana tradition, true enlightenment cannot be reached merely by cultivating inner peace and eliminating delusions and suffering in isolation of other people, because doing so remains a selfish endeavor that implies that one hasn't truly reached the state of selflessness that underlies enlightenment. \n\nInstead, at some point along the path to enlightenment, one realizes that one's true nature is that of being conscious: a pure form of benevolent consciousness without shape and boundaries, and that permeates all that is. At that point, one doesn't seek anymore to deliver from suffering that fictious \"ego\" entity that has long been identified as a delusion, but instead seeks to deliver all of consciousness from suffering, including all sentient beings. This intrinsic benevolence of consciousness is what we call \"compassion\", and is the central tenet of Mahayana tradition. It is both the ultimate goal and the mean to reach that goal. By cultivating compassion, one reveals his compassionate nature, and this compassion is what will eventually lead to a contradiction with the ego and materialistic delusions, and their dissolution. \n\nFrom that perspective, he who seeks enlightenment will first accept reality as it is, and reach what first feels as a form of blissful and permanent internal peace (this is typically what Hinayana / Small Vehicule buddhism think is enlightenment, and this includes some famous western self-help authors), but will soon realize that there is one type of suffering that transcends attachment and the delusion of self and that can't be addressed by meditation and spiritual practice alone but on the contrary become more and more sharp: the suffering of seeing others suffering within this reality. This is because suffering is a noble truth, a truth that can't be denied, ignored or accepted but simply acknowledged as being true. This leads to a paradox where embracing reality leads to embracing a form of suffering that can only be eliminated by altering reality which cannot be achieved if one simply embraces reality. The only solution to this apparent paradox is to realize that reality is impermanent and can be embraced while being altered. It should be accepted in the present so that one may live free from delusions and attachment, and reduce suffering to the prime denominator of the quintessential and universally experienced suffering of being alive, while being actively shaped with all one's will and energy into a future reality where other sentient beings suffer less.\n\nUnder the mahayana assumption that consciousness is intrinsically benevolent and unable not to experience compassion as it gets closer to enlightenment, acting with all one's will and energy against the corruption that permeates reality and increases suffering of other sentient beings is not only consistent, but the one and only true way to enlightenment.\n\nArguably, government is one such big chunk of pervasive corruption that has spread like weed in our consensual reality, and creates an inordinate amount of suffering. From that perspective, being anarchist isn't only a political view, it is a statement of compassion. Ask the Dalai Lama what he thinks about governments...", + "json_metadata": "{\"tags\":[\"philosophy\"]}", + "created": "2016-09-01T18:48:39", + "last_update": "2016-09-01T19:11:48", + "depth": 1, + "children": 1, + "net_rshares": 38538789887465, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-02T19:14:21", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "160.617 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 3669, + "active_votes": [ + { + "voter": "dantheman", + "rshares": "28300878156066", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "smooth", + "rshares": "636585679281", + "percent": "100", + "reputation": 0 + }, + { + "voter": "wackou", + "rshares": "6549727125575", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "3099954800", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "3763461212", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "690406462", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "54138246944", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "1661302953", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "213684579", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lovejoy", + "rshares": "251709705259", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "recursive", + "rshares": "2511125853605", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "smooth.witness", + "rshares": "114398906816", + "percent": "100", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "622843501", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "967387415", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "288174518", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "eric-boucher", + "rshares": "71291626568", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "christoryan", + "rshares": "5223833163", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "zelgald1", + "rshares": "4999497773", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tommycordero", + "rshares": "63437792", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "darrantrute", + "rshares": "11501604178", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nebcat", + "rshares": "615797359", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kiwideb", + "rshares": "381939549", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "floweroflife", + "rshares": "444650943", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kingarbinv", + "rshares": "807251193", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "skypilot", + "rshares": "10978877529", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "robcichocki", + "rshares": "2610482432", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "dantheman", + "parent_permlink": "why-do-we-fight-to-change-the-world", + "url": "/philosophy/@dantheman/why-do-we-fight-to-change-the-world#@recursive/re-dantheman-why-do-we-fight-to-change-the-world-20160901t184948317z", + "root_title": "Why do we fight to change the world?", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 726941, + "author": "val-a", + "permlink": "re-litrbooh-budushee-steemit-nuzhna-li-reklama-v-steemit-20160824t033703760z", + "category": "ru-steemit", + "title": "", + "body": "Прочитайте еще раз внимательно определение пирамиды:\n> Доход _первым_ _участникам_ пирамиды выплачивается за счет вкладов последующих участников.\n\nКлючевые слова _первым_ и _участникам_ (под участниками подразумеваются инвесторы), а в случае Стима доход получают не инвесторы, а авторы от которых не требуется ни копейки инвестировать прежде они начнут получать доход. Инвесторы теоретически могут получить доход, если цена STEEM, SP или SD вырастет, но этого им никто не обещает (в отличии от пирамид). К тому же авторам выплачивается гонорар не с денег новых инвесторов, а размытием доли всех предыдущих инвесторов в STEEM или в SP, в том числе и доли китов. Доход китов, или любого, кто инвестировал на начальном этапе зависит от новых инвестиций в той же степени как и в любой другой криптовалюте.\n\nВместо сравнения с прирамидой, продуктивнее сравнить с обыкновенным стартапом, возьмите например Твитер - по большому счету они, являсь убыточной компанией (да компании 10 лет и она до сих пор убыточна), платят пользователям (не напрямую, а косвенно, например оплачивая сервера в датацентре) продавая долю/акции фаундеров инвесторам. Почему акции твитера стоят больше нуля? Почему Твитер никто не называет финансовой пирамидой?\n\nИли сравните стим с биткоином - с таким же успехом и биткоин можно назвать финансовой пирамидой - ведь платит же майнерам деньгами инвесторов.\n\n(p.s. проголосую за себя, что бы показать как использовать SP для рекламы собственных постов)", + "json_metadata": "{\"tags\":[\"ru-steemit\"]}", + "created": "2016-08-24T03:37:03", + "last_update": "2016-08-24T03:37:03", + "depth": 1, + "children": 12, + "net_rshares": 31599651204284, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-24T02:46:54", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "149.954 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 1470, + "active_votes": [ + { + "voter": "val-a", + "rshares": "31543759293106", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "domino", + "rshares": "22090812048", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "zaebars", + "rshares": "28897024316", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "andreynoch", + "rshares": "1953557909", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "litrbooh", + "rshares": "1708472880", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nonamer", + "rshares": "1188786726", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "shvedas", + "rshares": "53257299", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "litrbooh", + "parent_permlink": "budushee-steemit-nuzhna-li-reklama-v-steemit", + "url": "/ru-steemit/@litrbooh/budushee-steemit-nuzhna-li-reklama-v-steemit#@val-a/re-litrbooh-budushee-steemit-nuzhna-li-reklama-v-steemit-20160824t033703760z", + "root_title": "Будущее STEEMIT. Нужна ли реклама в STEEMIT?", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 838503, + "author": "donkeypong", + "permlink": "re-steemitblog-announcing-steem-0-14-0-release-candidate-20160902t211609578z", + "category": "steem", + "title": "", + "body": "## I strongly oppose the \"5 votes a day\" target. \n\nI thought one of the greatest changes to be implemented so far was when that target INCREASED. People have not been so stressed in the last month or two about curation rewards; they just vote for what they like and have fun. \n\nI don't think Steemit will be FUN anymore if there is an expected target of 5 votes per day. People will spend much less time on the site. They will vote for predictably popular content. And we will be right back where we were a couple of months ago. \n\nNo, it will be worse than that. Because 20 votes a day used to stress people out. 5 votes a day? NO ONE can do any real curation under that scheme.\n\nAs an individual and an established author, the 5 votes a day could be great for me. If we go back to the days when everybody upvoted the same posts, then maybe I'd get all those votes again. I could quit my job and write for Steemit full time. \n\nAnd we'd go back to the days when emerging authors and artists got far fewer votes and rewards. \n\nAs far as curation and voting bots, they are being used for very good purposes also. Rather than turning our tails and running away from them, why don't we use them for the greater good? I think the mega-whales' curation teams are doing a far better job than ever before at redistributing rewards; I make nothing from being involved in that effort, but I think it is working quite well. Give the vote sliders and the voting bots more time; Steemit's front page is finally diversifying and newer people are getting rewards like never before. \n\nOne more thing: Redistribution of Steemit's resources from big whale accounts to the masses MUST be one of our top priorities. How does this help? I understand that big whale accounts may make less on curation rewards, but I think few of them are concerned with this anymore; they're trying to channel their votes to worthy posters. They have recognized that their big stakes will be worth nothing unless we make this thing succeed.\n\nUnder this scheme, the big whales will need to sell the max on exchanges every week and other people buy their Steem for any real redistribution to occur. That will hold down the price and our competitors will zoom right by us. \n\nSteem Team, I understand you are trying to solve real problems with these tweaks. I don't normally comment on them because I feel that Steemit is good enough that there is some margin for error with these back-end decisions. But this is far, far too severe a change for the platform to absorb.\n\n## If I am wrong, then I'd love to hear that from the community, and I am open to learning from other views. Give us time for this discussion, please, before forcing through such a change. Until then, I oppose this change.", + "json_metadata": "{\"tags\":[\"steem\"]}", + "created": "2016-09-02T21:16:27", + "last_update": "2016-09-02T21:19:45", + "depth": 1, + "children": 106, + "net_rshares": 42304792392028, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-04T01:16:51", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "141.827 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 2749, + "active_votes": [ + { + "voter": "highasfuck", + "rshares": "-6795625112", + "percent": "-400", + "reputation": 0 + }, + { + "voter": "nextgenwitness", + "rshares": "164482168912", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kushed", + "rshares": "5468384423175", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "silversteem", + "rshares": "4945364226662", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nextgencrypto", + "rshares": "4656370926104", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "3100766695", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "3764486632", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "690539083", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "complexring", + "rshares": "7221866970964", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "54261605662", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "danknugs", + "rshares": "30390370257", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "1661700819", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "213710460", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "aizensou", + "rshares": "38600533043", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bentley", + "rshares": "12269445334", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "recursive", + "rshares": "2651243328828", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mineralwasser", + "rshares": "1820914592", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boombastic", + "rshares": "1066518981517", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bingo-0", + "rshares": "9578311657", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bingo-1", + "rshares": "2440314179", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "benjojo", + "rshares": "1336788173111", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "pfunk", + "rshares": "749198663628", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "622955105", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tuck-fheman", + "rshares": "1039484860678", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "967591200", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "donkeypong", + "rshares": "2783598325676", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "patrice", + "rshares": "7288280988", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "288213327", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "piedpiper", + "rshares": "14796343926", + "percent": "100", + "reputation": 0 + }, + { + "voter": "ervin-lemark", + "rshares": "8972462707", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "eeks", + "rshares": "715648773415", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cryptogee", + "rshares": "854401132096", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "spaninv", + "rshares": "5470652472", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nanzo-scoop", + "rshares": "726664133144", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "acidyo", + "rshares": "16798528489", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jonno-katz", + "rshares": "3868778895", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "hannixx42", + "rshares": "56779104986", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mummyimperfect", + "rshares": "239176165083", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "asch", + "rshares": "71220031567", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kevinwong", + "rshares": "608622985586", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "beerbloke", + "rshares": "73303668582", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ak2020", + "rshares": "65759745683", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thecryptofiend", + "rshares": "53884344664", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "hien-tran", + "rshares": "10426970985", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "stellabelle", + "rshares": "2264268111917", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "juanmiguelsalas", + "rshares": "57529825067", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dahaz159", + "rshares": "4476883095", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kaylinart", + "rshares": "306456223000", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "infovore", + "rshares": "501259458185", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kus-knee", + "rshares": "26315426014", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "ossama-benjohn", + "rshares": "11630218162", + "percent": "4900", + "reputation": 0 + }, + { + "voter": "anwenbaumeister", + "rshares": "648138422927", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "razvanelulmarin", + "rshares": "69137542683", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cryptoiskey", + "rshares": "35291674341", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "chetlanin", + "rshares": "360818648", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "venuspcs", + "rshares": "84518713331", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "psychonaut", + "rshares": "2936111289", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "roelandp", + "rshares": "318074226526", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dennygalindo", + "rshares": "4261065978", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "chhaylin", + "rshares": "140535670338", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "firepower", + "rshares": "38348578159", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mstang83", + "rshares": "254364900", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "chhayll", + "rshares": "116908007408", + "percent": "8900", + "reputation": 0 + }, + { + "voter": "stranger27", + "rshares": "2812431753", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "yogi.artist", + "rshares": "13896170396", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "elyaque", + "rshares": "14528410967", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "r4fken", + "rshares": "2046170935", + "percent": "1000", + "reputation": 0 + }, + { + "voter": "furion", + "rshares": "72655151512", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sigmajin", + "rshares": "96443143963", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mrwang", + "rshares": "40575184405", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steem1653", + "rshares": "1287519621", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "marcgodard", + "rshares": "1827599826", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "akareyon", + "rshares": "21069395024", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sebastien", + "rshares": "16233014225", + "percent": "9300", + "reputation": 0 + }, + { + "voter": "flyingmind", + "rshares": "1214668585", + "percent": "0", + "reputation": 0 + }, + { + "voter": "steemit-life", + "rshares": "3259008743", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "diana.catherine", + "rshares": "38541756150", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bobkillaz", + "rshares": "241033184", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "deviedev", + "rshares": "9142372606", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "knozaki2015", + "rshares": "306656746516", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "steemgrindr", + "rshares": "2482350068", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "adamt", + "rshares": "3860285221", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "calaber24p", + "rshares": "270410711489", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "pcste", + "rshares": "9763976269", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "liberosist", + "rshares": "231813853890", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "oumar", + "rshares": "9172859646", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sauravrungta", + "rshares": "35903507776", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rea", + "rshares": "37542098641", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "prufarchy", + "rshares": "21424668654", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "carlidos", + "rshares": "9888950976", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cryptocameo", + "rshares": "17018462501", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "claudiop63", + "rshares": "38704462901", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "phoenixmaid", + "rshares": "10716559196", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "tjpezlo", + "rshares": "2850823006", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "clevecross", + "rshares": "13269181041", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "smailer", + "rshares": "24054735183", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "pixielolz", + "rshares": "18688350126", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "williambanks", + "rshares": "26483585759", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "webosfritos", + "rshares": "3431378627", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "shaka", + "rshares": "89283515898", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "twinner", + "rshares": "73511111757", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "handmade", + "rshares": "1475564323", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "viktor.phuket", + "rshares": "9986529692", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ullikume", + "rshares": "4245841619", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ekitcho", + "rshares": "6013694326", + "percent": "5600", + "reputation": 0 + }, + { + "voter": "joele", + "rshares": "2112721437", + "percent": "100", + "reputation": 0 + }, + { + "voter": "oflyhigh", + "rshares": "4344750511", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "randyclemens", + "rshares": "11208435898", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "rusteller", + "rshares": "315529006", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "gargon", + "rshares": "8668714921", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "pgarcgo", + "rshares": "2402681750", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "theconnoisseur", + "rshares": "4722016641", + "percent": "5000", + "reputation": 0 + }, + { + "voter": "queenmountain", + "rshares": "13978892123", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "hanshotfirst", + "rshares": "21216135219", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "herbertmueller", + "rshares": "360104574", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lightsplasher", + "rshares": "2790597203", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "princewahaj", + "rshares": "760244820", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "theb0red1", + "rshares": "7124799262", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "serejandmyself", + "rshares": "59327261726", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "anarchyhasnogods", + "rshares": "3673690786", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "indykpol", + "rshares": "1481195780", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "comcentrate", + "rshares": "302329407", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jtstreetman", + "rshares": "122637921", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ines-f", + "rshares": "1623996599", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "etcmike", + "rshares": "8237809906", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "lesliestarrohara", + "rshares": "6391005392", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ats-david", + "rshares": "3425466270", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "pollux.one", + "rshares": "293609359", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "contentjunkie", + "rshares": "1184448867", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "einsteinpotsdam", + "rshares": "7304947957", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "darrantrute", + "rshares": "11502232563", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sabot", + "rshares": "17585035067", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "markrmorrisjr", + "rshares": "28036909101", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "sponge-bob", + "rshares": "45121178435", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "reaction", + "rshares": "249472621", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "doitvoluntarily", + "rshares": "2914432081", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nubchai", + "rshares": "3648710236", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "richardjuckes", + "rshares": "4721456837", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "jens-jung", + "rshares": "146618463", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "chadcrypto", + "rshares": "116558699", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ballinconscious", + "rshares": "54685141", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "whatsup", + "rshares": "70593457", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "dirkzett", + "rshares": "1584386308", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "willio", + "rshares": "66920614", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "justusagenstum", + "rshares": "71584544", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "angelius", + "rshares": "140430106", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "steemitblog", + "parent_permlink": "announcing-steem-0-14-0-release-candidate", + "url": "/steem/@steemitblog/announcing-steem-0-14-0-release-candidate#@donkeypong/re-steemitblog-announcing-steem-0-14-0-release-candidate-20160902t211609578z", + "root_title": "Announcing Steem 0.14.0 Release Candidate", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 713237, + "author": "jhermanbeans", + "permlink": "re-senderos-the-nightmare-song-20160823t011659950z", + "category": "horror", + "title": "", + "body": "Fascinating world. Can't wait to see where it goes!", + "json_metadata": "{\"tags\":[\"horror\"]}", + "created": "2016-08-23T01:17:00", + "last_update": "2016-08-23T01:17:00", + "depth": 1, + "children": 0, + "net_rshares": 30158646716022, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-09-23T02:56:09", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "132.545 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 51, + "active_votes": [ + { + "voter": "berniesanders", + "rshares": "25590936673298", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "nextgencrypto", + "rshares": "4503240944593", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "3093334843", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "3754789393", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "703475396", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "53137822427", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "1658013141", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "213534945", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "621926043", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "945621921", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "287928458", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "meredithpetran", + "rshares": "52651564", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "senderos", + "parent_permlink": "the-nightmare-song", + "url": "/horror/@senderos/the-nightmare-song#@jhermanbeans/re-senderos-the-nightmare-song-20160823t011659950z", + "root_title": "The Nightmare Song", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 918173, + "author": "luminousvisions", + "permlink": "re-luminousvisions-re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t035652062z", + "category": "steemit", + "title": "", + "body": "### @dantheman ... you just downvoted my comment?\n\nwhat is that all about? what's wrong with it?\n\n#### I'm just suggestion a solution and in return for offering my help ... you downvote me?!?\n\n\nlook at what I've been up to;\n[little baby dolphin](https://steemit.com/steemit/@luminousvisions/little-baby-dolphin-goes-to-steemit-school)\nI'm already working on a solution!", + "json_metadata": "{\"tags\":[\"steemit\"],\"users\":[\"dantheman\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@luminousvisions\\/little-baby-dolphin-goes-to-steemit-school\"]}", + "created": "2016-09-11T03:56:51", + "last_update": "2016-09-11T06:14:27", + "depth": 3, + "children": 22, + "net_rshares": 40084767746965, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-12T06:00:30", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "131.347 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 369, + "active_votes": [ + { + "voter": "smooth", + "rshares": "31588356739639", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "3726201087", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "4524113216", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "820980926", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "66047512415", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "1996555438", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "256574080", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "smooth.witness", + "rshares": "5893489774073", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "750139848", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "1168034456", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "346061156", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "craig-grant", + "rshares": "394226217606", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "thecryptofiend", + "rshares": "24215364511", + "percent": "3000", + "reputation": 0 + }, + { + "voter": "stellabelle", + "rshares": "2042269341790", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "cmtzco", + "rshares": "8944971271", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "reported", + "rshares": "52207362", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "southbaybits", + "rshares": "58804600", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "randyclemens", + "rshares": "14292459528", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "luminousvisions", + "rshares": "39105503792", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "emeline", + "rshares": "120190171", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "luminousvisions", + "parent_permlink": "re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t021909082z", + "url": "/steemit/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or#@luminousvisions/re-luminousvisions-re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t035652062z", + "root_title": "Open Letter to Ned and Dan: You Badly Need a Communications/Community/Content Expert and I Hereby Nominate @stellabelle or @donkeypong For That Job", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + }, + { + "post_id": 889443, + "author": "dana-edwards", + "permlink": "re-ned-increasing-curation-demand-for-steem-power-and-community-interaction-20160908t050749903z", + "category": "steem", + "title": "", + "body": "1 needs modification, 2 is a good idea\n----\n\nDespite some who call 2 an exit fee, I think Steem Power should stop being marketed as an **\"investment\"** to **\"investors\"**. Market it to users of the platform who want to power up their accounts but make powering up or upgrading a lot easier. Make it possible with a gift card, fiat, a credit card, or Paypal. People should never see Bitcoin or blockchain anywhere on the Steemit official marketing.\n\nUse gamification to make people want to upgrade their Steem Power. Market Steem Dollars to crypto investors for the 10% interest.\n\nSteem Power a purchasable upgrade for accounts\n-----\n\n>reddit gold is our premium membership program. It grants you access to extra features to improve your reddit experience. It also makes you really quite dapper.\n\nAnd Alice goes to Walgreens with her Visa Card and buys the Steem Card instead of the Netflix card. It's also possible to sell a Steem Power subscription for people who want to buy a little bit at a time, remeber WoW is subscription based and. Second Life has Linden Dollars which are like our Steem Dollars and can be marketed in a similar way.\n\nDo not make the mistake of listening to crypto anarchists or crypto people when it comes to marketing. Crypto people are horrible at marketing and that includes Bitcoin. All of crypto has a bad reputaton and horrible marketing. Look at Pokemon Go or even Reddit Gold to see how to do marketing, or just hire a profesisonal in gamification and marketing guru. Do not listen to Steemit whales and don't even listen to me. Hire people who are from the gaming world, or who marketed popular social networks.\n\n**Note: notice games and social networks never use words like \"investor\" or \"speculator\", as this would be like trying to market the social network as a gambling site which is something they all avoid.**\n\n**UPDATE: IF ANYONE CAN GET IN CONTACT WITH [Jane McGonigal](https://janemcgonigal.com/) AND HIRE HER AS A CONSULTANT IT WOULD BE GREAT FOR STEEMIT. SHE IS A THOUGHT LEADER IN \"PURPOSE DRIVEN GAMING\" AND HAVING HER ASSOCIATED WITH STEEMIT WOULD BRING MOMENTUM.**\n\nReferences\n1. https://community.secondlife.com/t5/English-Knowledge-Base/Buying-and-selling-Linden-dollars/ta-p/700107\n2. https://www.reddit.com/gold/about/\n3. https://www.quora.com/Who-are-the-best-gamification-experts\n4. https://www.linkedin.com/title/gamification-expert", + "json_metadata": "{\"tags\":[\"steem\"],\"links\":[\"https:\\/\\/janemcgonigal.com\\/\",\"https:\\/\\/community.secondlife.com\\/t5\\/English-Knowledge-Base\\/Buying-and-selling-Linden-dollars\\/ta-p\\/700107\",\"https:\\/\\/www.reddit.com\\/gold\\/about\\/\",\"https:\\/\\/www.quora.com\\/Who-are-the-best-gamification-experts\",\"https:\\/\\/www.linkedin.com\\/title\\/gamification-expert\"]}", + "created": "2016-09-08T05:07:51", + "last_update": "2016-09-08T20:47:24", + "depth": 1, + "children": 7, + "net_rshares": 33807216655501, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-09T02:14:24", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "116.932 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 2392, + "active_votes": [ + { + "voter": "ned", + "rshares": "25299389880141", + "percent": "4000", + "reputation": 0 + }, + { + "voter": "wackou", + "rshares": "6927705674664", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "liondani", + "rshares": "992154852299", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "boy", + "rshares": "3103959302", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue-witness", + "rshares": "3768577454", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bunny", + "rshares": "683986391", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "bue", + "rshares": "54809820514", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "mini", + "rshares": "1663237841", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "moon", + "rshares": "213793127", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "healthcare", + "rshares": "624976946", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "daniel.pan", + "rshares": "973085978", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "helen.tan", + "rshares": "288350184", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "blakemiles84", + "rshares": "347492602044", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "kooshikoo", + "rshares": "445654522", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "shaka", + "rshares": "113354733694", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "capitalism", + "rshares": "46418159604", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "ats-david", + "rshares": "4864933964", + "percent": "10000", + "reputation": 0 + }, + { + "voter": "goose", + "rshares": "9260376832", + "percent": "10000", + "reputation": 0 + } + ], + "author_reputation": 0, + "parent_author": "ned", + "parent_permlink": "increasing-curation-demand-for-steem-power-and-community-interaction", + "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction#@dana-edwards/re-ned-increasing-curation-demand-for-steem-power-and-community-interaction-20160908t050749903z", + "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + } +] \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_no_data_error.pat.json b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_no_data_error.pat.json deleted file mode 100644 index f7e50032..00000000 --- a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_no_data_error.pat.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "jsonrpc": "2.0", - "error": { - "code": -32000, - "message": "Server error", - "data": "ValueError: invalid literal for int() with base 10: ''" - }, - "id": 1 - } \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_not_allowed_category.pat.json b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_not_allowed_category.pat.json new file mode 100644 index 00000000..ecc83217 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_not_allowed_category.pat.json @@ -0,0 +1,65 @@ +[ + { + "active_votes": [], + "author": "earnest", + "author_reputation": 0, + "beneficiaries": [], + "body": "dont get me started", + "body_length": 19, + "cashout_time": "2016-10-13T20:51:21", + "category": "432hz", + "children": 0, + "created": "2016-09-13T09:11:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"432hz\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-13T09:11:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "so-guitarist", + "parent_permlink": "any-musicians-know-about-the-a-440-or-a-432-phenomenon-2016913t1511946z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-so-guitarist-any-musicians-know-about-the-a-440-or-a-432-phenomenon-2016913t1511946z-20160913t091058200z", + "post_id": 938655, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Any musicians know about the A = 440 or A = 432 Phenomenon?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/432hz/@so-guitarist/any-musicians-know-about-the-a-440-or-a-432-phenomenon-2016913t1511946z#@earnest/re-so-guitarist-any-musicians-know-about-the-a-440-or-a-432-phenomenon-2016913t1511946z-20160913t091058200z" + }, + { + "active_votes": [], + "author": "earnest", + "author_reputation": 0, + "beneficiaries": [], + "body": "i know", + "body_length": 6, + "cashout_time": "2016-10-13T20:51:21", + "category": "432hz", + "children": 0, + "created": "2016-09-13T08:53:36", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"432hz\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-13T08:53:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "so-guitarist", + "parent_permlink": "any-musicians-know-about-the-a-440-or-a-432-phenomenon-2016913t1511946z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-so-guitarist-any-musicians-know-about-the-a-440-or-a-432-phenomenon-2016913t1511946z-20160913t085335400z", + "post_id": 938559, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Any musicians know about the A = 440 or A = 432 Phenomenon?", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/432hz/@so-guitarist/any-musicians-know-about-the-a-440-or-a-432-phenomenon-2016913t1511946z#@earnest/re-so-guitarist-any-musicians-know-about-the-a-440-or-a-432-phenomenon-2016913t1511946z-20160913t085335400z" + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_too_long_cat.pat.json b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_too_long_cat.pat.json new file mode 100644 index 00000000..b224fb3b --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_too_long_cat.pat.json @@ -0,0 +1,33 @@ +[ + { + "post_id": 808802, + "author": "twitterbot", + "permlink": "re-thisisgoingintomyinternetfolder-20160831t035832", + "category": "thisisgoingintomyinternetfolder", + "title": "", + "body": "### ![irqed](https://pbs.twimg.com/profile_images/664342080185995264/UFj_2Ipg_normal.jpg) **[##########](https://twitter.com/@irqed/status/358212928404586498)** tweeted @ 19 Jul 2013 - 13:13 UTC\n\n> 99 little bugs in the code\n99 little bugs in the code\nTake one down, patch it around\n117 little bugs in the code\n\n\n###### *Disclaimer: I am just a bot trying to be helpful.*", + "json_metadata": "{}", + "created": "2016-08-31T03:58:33", + "last_update": "2016-08-31T03:58:33", + "depth": 1, + "children": 0, + "net_rshares": 0, + "last_payout": "1969-12-31T23:59:59", + "cashout_time": "2016-10-01T23:28:15", + "total_payout_value": "0.000 HBD", + "curator_payout_value": "0.000 HBD", + "pending_payout_value": "0.000 HBD", + "promoted": "0.000 HBD", + "replies": [], + "body_length": 371, + "active_votes": [], + "author_reputation": 0, + "parent_author": "nemo", + "parent_permlink": "thisisgoingintomyinternetfolder", + "url": "/thisisgoingintomyinternetfolder/@nemo/thisisgoingintomyinternetfolder#@twitterbot/re-thisisgoingintomyinternetfolder-20160831t035832", + "root_title": "#thisisgoingintomyinternetfolder", + "beneficiaries": [], + "max_accepted_payout": "1000000.000 HBD", + "percent_steem_dollars": 10000 + } +] \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_truncate_body.pat.json b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_truncate_body.pat.json new file mode 100644 index 00000000..c045426e --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout_truncate_body.pat.json @@ -0,0 +1,196 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "170280952462", + "voter": "anyx" + }, + { + "percent": "2500", + "reputation": 0, + "rshares": "14565850595", + "voter": "cheetah" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "100056560", + "voter": "cheetah55" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "120732244", + "voter": "cheetah56" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "99934003", + "voter": "cheetah57" + } + ], + "author": "cheetah", + "author_reputation": 0, + "beneficiaries": [], + "body": "Warning! This user is on my black list, likely as a known plagiarist, spammer or ID thief. Please be cautious with this post!\nTo get off this list, please chat with us in the #steemitabuse-appeals channel in [steemit.cha", + "body_length": 244, + "cashout_time": "2016-10-11T17:44:18", + "category": "pictures", + "children": 0, + "created": "2016-09-10T10:04:03", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-10T10:04:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 185167525864, + "parent_author": "yassinebentour", + "parent_permlink": "the-beauty-of-color", + "pending_payout_value": "0.061 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-the-beauty-of-color-20160910t100354", + "post_id": 909817, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "The beauty of color", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/pictures/@yassinebentour/the-beauty-of-color#@cheetah/re-the-beauty-of-color-20160910t100354" + }, + { + "active_votes": [], + "author": "papa-pepper", + "author_reputation": 0, + "beneficiaries": [], + "body": "", + "body_length": 16, + "cashout_time": "2016-10-12T17:09:57", + "category": "pictures", + "children": 0, + "created": "2016-09-15T12:20:33", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"pictures\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T12:20:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "budgiebee", + "parent_permlink": "re-papa-pepper-re-budgiebee-hey-can-somebody-please-tell-me-how-to-add-pictures-to-blogs-20160915t081728113z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-budgiebee-re-papa-pepper-re-budgiebee-hey-can-somebody-please-tell-me-how-to-add-pictures-to-blogs-20160915t121930868z", + "post_id": 957187, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hey Can somebody please tell me how to add pictures to blogs", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/pictures/@budgiebee/hey-can-somebody-please-tell-me-how-to-add-pictures-to-blogs#@papa-pepper/re-budgiebee-re-papa-pepper-re-budgiebee-hey-can-somebody-please-tell-me-how-to-add-pictures-to-blogs-20160915t121930868z" + }, + { + "active_votes": [], + "author": "mindhunter", + "author_reputation": 2906252429820, + "beneficiaries": [], + "body": "Here you go my friend: http://bitbar.co/ - a lovely old cryptocoin - been around for yonks! L", + "body_length": 117, + "cashout_time": "2016-09-16T11:19:14", + "category": "pictures", + "children": 0, + "created": "2016-09-15T11:19:48", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"pictures\"],\"links\":[\"http:\\/\\/bitbar.co\\/\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-15T11:20:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "slayer", + "parent_permlink": "re-mindhunter-re-ahmetova-with-cryptocurrency-the-world-has-gone-mad-20160915t110557756z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-slayer-re-mindhunter-re-ahmetova-with-cryptocurrency-the-world-has-gone-mad-20160915t111944617z", + "post_id": 956833, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "With cryptocurrency, the world has gone mad.", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/pictures/@ahmetova/with-cryptocurrency-the-world-has-gone-mad#@mindhunter/re-slayer-re-mindhunter-re-ahmetova-with-cryptocurrency-the-world-has-gone-mad-20160915t111944617z" + }, + { + "active_votes": [], + "author": "mikkolyytinen", + "author_reputation": 0, + "beneficiaries": [], + "body": "You're welcome. It's not all very intuitive when you start, i'm", + "body_length": 87, + "cashout_time": "2016-10-12T17:09:57", + "category": "pictures", + "children": 0, + "created": "2016-09-11T19:19:57", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"pictures\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-11T19:19:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "budgiebee", + "parent_permlink": "re-mikkolyytinen-re-budgiebee-hey-can-somebody-please-tell-me-how-to-add-pictures-to-blogs-20160911t173854758z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-budgiebee-re-mikkolyytinen-re-budgiebee-hey-can-somebody-please-tell-me-how-to-add-pictures-to-blogs-20160911t191955857z", + "post_id": 924271, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hey Can somebody please tell me how to add pictures to blogs", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/pictures/@budgiebee/hey-can-somebody-please-tell-me-how-to-add-pictures-to-blogs#@mikkolyytinen/re-budgiebee-re-mikkolyytinen-re-budgiebee-hey-can-somebody-please-tell-me-how-to-add-pictures-to-blogs-20160911t191955857z" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "3286335338", + "voter": "beanz" + } + ], + "author": "siren", + "author_reputation": 0, + "beneficiaries": [], + "body": "Why? I've seen some users use the same picture on all articles as part of their branding. Anyway good luck. I do think it would be nice to be able to upload images from the submit page, but I guess the bloc", + "body_length": 230, + "cashout_time": "2016-09-20T19:30:15", + "category": "pictures", + "children": 0, + "created": "2016-08-20T19:41:18", + "curator_payout_value": "0.000 HBD", + "depth": 3, + "json_metadata": "{\"tags\":[\"pictures\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-20T19:41:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 3286335338, + "parent_author": "somethingsea", + "parent_permlink": "re-siren-re-somethingsea-why-i-don-t-use-pictures-20160820t192923919z", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-somethingsea-re-siren-re-somethingsea-why-i-don-t-use-pictures-20160820t194138303z", + "post_id": 686699, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Why I Don't Use Pictures", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/pictures/@somethingsea/why-i-don-t-use-pictures#@siren/re-somethingsea-re-siren-re-somethingsea-why-i-don-t-use-pictures-20160820t194138303z" + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author.pat.json new file mode 100644 index 00000000..6505bcff --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author.pat.json @@ -0,0 +1,4313 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "289496406729", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "166818556981", + "voter": "highasfuck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651650151993", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "203214055493", + "voter": "camilla" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "661462066", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130765654564", + "voter": "psylains" + }, + { + "percent": "4200", + "reputation": 0, + "rshares": "12188532385", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "760600032", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "706772487", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59861247996", + "voter": "theshell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17018803209", + "voter": "samether" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9721807408", + "voter": "andread" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11707843677", + "voter": "primus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4362079757", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46148758185", + "voter": "isteemit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "330853272", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "290559594", + "voter": "sonyanka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1608900298", + "voter": "gidlark" + }, + { + "percent": "4200", + "reputation": 0, + "rshares": "103512966", + "voter": "strawhat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2340059283", + "voter": "steemswede" + }, + { + "percent": "4200", + "reputation": 0, + "rshares": "102583242", + "voter": "cryptochannel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12345609219", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "154310336", + "voter": "sergey44" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3912738831", + "voter": "sompitonov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5942642822", + "voter": "beanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "26148166391", + "voter": "pixielolz" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "116538182", + "voter": "bullionstackers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3321707002", + "voter": "glitterpig" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5606477483", + "voter": "shortcut" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "508520907", + "voter": "karenb54" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "464346063318", + "voter": "glitterfart" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8529222483", + "voter": "mione" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "472813942", + "voter": "wuyueling" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2337983869", + "voter": "cryptoeasy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "174554557", + "voter": "chadcrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "143406202", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13292298415", + "voter": "goldmatters" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://i.imgsafe.org/7252ed86f2.jpg\n\n### Drawing made with Prismacolor pencils on gray toned paper.", + "body_length": 100, + "cashout_time": "2016-10-13T23:30:27", + "category": "art", + "children": 5, + "created": "2016-09-12T21:37:27", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"portrait\",\"\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/7252ed86f2.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-12T21:59:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 2157212255576, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "0.795 HBD", + "percent_steem_dollars": 10000, + "permlink": "girl-with-a-pink-bow", + "post_id": 934538, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Girl with a Pink Bow", + "title": "Girl with a Pink Bow", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/girl-with-a-pink-bow" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "289482062341", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1152457041840", + "voter": "rossco99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "436172432967", + "voter": "boatymcboatface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651650151993", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75110722747", + "voter": "easteagle13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "215909081377", + "voter": "camilla" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16221469512", + "voter": "jademont" + }, + { + "percent": "400", + "reputation": 0, + "rshares": "1322723922", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130765654564", + "voter": "psylains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "29251115097", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "849659123", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "706760886", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63365513478", + "voter": "theshell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5091917697", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4487075430", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "324365953", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1541722449", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "246459444", + "voter": "strawhat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9220777116", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "244245816", + "voter": "cryptochannel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5888378458", + "voter": "bitspace" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "321100442", + "voter": "luisucv34" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2308410567", + "voter": "the-future" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4263594327", + "voter": "fubar-bdhr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "117630527", + "voter": "pokemon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51423955", + "voter": "sergey44" + }, + { + "percent": "8600", + "reputation": 0, + "rshares": "2911202361", + "voter": "ace108" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "26148166391", + "voter": "pixielolz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "149597919", + "voter": "steemster1" + }, + { + "percent": "3400", + "reputation": 0, + "rshares": "1165238399", + "voter": "bullionstackers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3505969711", + "voter": "glitterpig" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5731769098", + "voter": "shortcut" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59219358", + "voter": "sharon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60342922", + "voter": "lillianjones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60806273", + "voter": "msjennifer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57196572", + "voter": "ciao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55449983", + "voter": "steemo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3892676217", + "voter": "alchemage" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55306941", + "voter": "steema" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71268878", + "voter": "confucius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "898882906", + "voter": "gretepe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56157882", + "voter": "jarvis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "597059749", + "voter": "ashwim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54313084", + "voter": "fortuner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53056158", + "voter": "johnbyrd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53037689", + "voter": "thermor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53048942", + "voter": "ficholl" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53030738", + "voter": "widell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52651308", + "voter": "revelbrooks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51562255", + "voter": "curpose" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58273844", + "voter": "hotgirlktm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63850166", + "voter": "aavkc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50588612", + "voter": "troich" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50593879", + "voter": "crion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50271139", + "voter": "hitherise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50262756", + "voter": "wiss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51033798", + "voter": "stroully" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50712038", + "voter": "thadm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50710305", + "voter": "prof" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59551730", + "voter": "techguru" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50370757", + "voter": "yorsens" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50065875", + "voter": "bane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50059754", + "voter": "vive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50054445", + "voter": "coad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551289713", + "voter": "jessicanicklos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "143358574", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1027866325", + "voter": "ola1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6349496599", + "voter": "orcish" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50441122", + "voter": "eavy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50454901", + "voter": "roto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56509947", + "voter": "alex.gaud" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1192255729", + "voter": "ndbeledrifts" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72812589", + "voter": "igtes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "148091845", + "voter": "buffett" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "229890255", + "voter": "sjamayee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155364835", + "voter": "insight2incite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13670562023", + "voter": "goldmatters" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "### I made this drawing with my new Prismacolor pencils. I got them from the talented artist @Pixielols. I met her in real life today at the University and she is the sweetest and loveliest person you can imagine.\n\nhttps://i.imgsafe.org/6dd4fe4912.jpg\n\n ### I had to test them right away so I just spent an hour on this autumn inspired apple drawing. These color pencils are very soft and is a joy to work with.\n\nhttps://i.imgsafe.org/6dc35d7e3c.jpg\n\n### The apple have felt the warm sun on its red skin, drawn energy from the soil, nourished birds and children and heard the cold autumn wind in the leaves. It is a sweet gift from nature for you to enjoy.\n\nhttps://i.imgsafe.org/6ddd3dee6b.jpg\n\n### Thank you for visiting my post! I hope you liked it.", + "body_length": 753, + "cashout_time": "2016-10-13T17:57:21", + "category": "art", + "children": 16, + "created": "2016-09-12T17:11:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"apple\",\"autumn\",\"colours\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/6dd4fe4912.jpg\",\"https:\\/\\/i.imgsafe.org\\/6dc35d7e3c.jpg\",\"https:\\/\\/i.imgsafe.org\\/6ddd3dee6b.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-12T17:38:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 3167706336883, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "1.377 HBD", + "percent_steem_dollars": 10000, + "permlink": "apple-and-leaves", + "post_id": 932171, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Apple Art", + "title": "Apple Art", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/apple-and-leaves" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "376233439931", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2044001489909", + "voter": "badassmother" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1119181397810", + "voter": "rossco99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "461536194020", + "voter": "boatymcboatface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "698098902296", + "voter": "pfunk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651645205561", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131708490559", + "voter": "team" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42712960461", + "voter": "alexgr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "211242392243", + "voter": "camilla" + }, + { + "percent": "400", + "reputation": 0, + "rshares": "1333641507", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130765248410", + "voter": "psylains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27088176517", + "voter": "tmendieta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1027472226", + "voter": "coar" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1413239642", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16193082064", + "voter": "b4bb4r-5h3r" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "24219759293", + "voter": "thecryptofiend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8338989775", + "voter": "givemeyoursteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20202699413", + "voter": "samether" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51727323862", + "voter": "kus-knee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9721776176", + "voter": "andread" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3484563685", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "324365953", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1640980092", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17414401735", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5888362824", + "voter": "bitspace" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "626660650", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11521200292", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226192934152", + "voter": "jesta" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "664445440", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10310589431", + "voter": "mun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1913344238", + "voter": "earnest" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "261981171388", + "voter": "liberosist" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "32296817492", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "327972405", + "voter": "valenttina" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3985741522", + "voter": "sompitonov" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2725653124", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7508323572", + "voter": "beanz" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "348014675", + "voter": "bullionstackers" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "22980208089", + "voter": "jasonstaggers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3258419015", + "voter": "glitterpig" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "1378514942", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14860602062", + "voter": "randyclemens" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "898882906", + "voter": "gretepe" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "728479455", + "voter": "alexma3x" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8953896241", + "voter": "doitvoluntarily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "111977218", + "voter": "skeptic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3066392990", + "voter": "funnyman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88662747", + "voter": "mlialen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "336979073", + "voter": "robotev1" + }, + { + "percent": "4500", + "reputation": 0, + "rshares": "1515433531", + "voter": "robotev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1977901532", + "voter": "haphazard-hstead" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50985709", + "voter": "natord" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "62244532", + "voter": "socialbutterfly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13670562023", + "voter": "goldmatters" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "### Where the Trees will not grow in the cold weather, where the houses are far apart but the hearts are close together.\n\nhttps://i.imgsafe.org/52a5ddd3b8.jpg\n\n### My Mother grew up here and I lived my first year in worlds most northern city called Hammerfest. The soil here is frozen, the land is flat and full of stones but still the tourists are very impressed.\n\nhttps://i.imgsafe.org/52c7a83b71.jpg\n\n### On a small island called Ertsvika my great grand parents lived with their 13 children. It was a hard life in poverty and cold winters, but their health where strong and their hearts where warm.\n\nhttps://i.imgsafe.org/52c38d5ff5.jpg\n\n### They lived of fishing and gathering berries. The next neighbors where 8 hours away by foot. My great grand mother gave birth to all the children without any doctor to help her, the oldest daughter was the midwife. The oldest son had to fish with his father on the stormy ocean when he was 8 years old, he died early from hard work. \n\nhttps://i.imgsafe.org/52b994c30e.jpg\n\n### Now the ancestors visit this place from time to time, where the old house used to be there is now a small cabin. There is a peaceful land far far north where nobody lives only birds and raindeers. \n\nhttps://i.imgsafe.org/52ad9349ed.jpg\n\n### The pictures are taken by my mother who is there now, visiting her mother and her childhood places. I hope you enjoyed this glimpse from the past.", + "body_length": 1412, + "cashout_time": "2016-10-12T11:19:21", + "category": "history", + "children": 21, + "created": "2016-09-11T09:55:24", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"history\",\"memories\",\"family\",\"photography\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/52a5ddd3b8.jpg\",\"https:\\/\\/i.imgsafe.org\\/52c7a83b71.jpg\",\"https:\\/\\/i.imgsafe.org\\/52c38d5ff5.jpg\",\"https:\\/\\/i.imgsafe.org\\/52b994c30e.jpg\",\"https:\\/\\/i.imgsafe.org\\/52ad9349ed.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-11T10:06:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 6691487566410, + "parent_author": "", + "parent_permlink": "history", + "pending_payout_value": "5.735 HBD", + "percent_steem_dollars": 10000, + "permlink": "there-is-a-land-far-far-north", + "post_id": 920349, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "There is a Land far, far North...", + "title": "There is a Land far, far North...", + "total_payout_value": "0.000 HBD", + "url": "/history/@camilla/there-is-a-land-far-far-north" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "376199691813", + "voter": "anonymous" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "10514445664165", + "voter": "berniesanders" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2043524972373", + "voter": "badassmother" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "64047892423", + "voter": "nextgenwitness" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "228778017848", + "voter": "justin" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "667121759026", + "voter": "silver" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "1625458470769", + "voter": "silversteem" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "1817776274078", + "voter": "nextgencrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1086156024356", + "voter": "rossco99" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "134451929559", + "voter": "steemservices" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "6459214622", + "voter": "bentley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "469477368872", + "voter": "boatymcboatface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651645205561", + "voter": "clains" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2586674942", + "voter": "yefet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "215464179712", + "voter": "camilla" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "2027172658", + "voter": "fkn" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "2666300169", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130765248410", + "voter": "psylains" + }, + { + "percent": "4200", + "reputation": 0, + "rshares": "10966759140", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27080912220", + "voter": "tmendieta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1027351719", + "voter": "coar" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1413116466", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59824941705", + "voter": "theshell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "76309016178", + "voter": "thecryptofiend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7998622846", + "voter": "givemeyoursteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1457681508", + "voter": "benthegameboy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9531153114", + "voter": "andread" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "21517750872", + "voter": "kimziv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6684459064", + "voter": "fuck.off" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6605970020", + "voter": "iloveporn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5890677916", + "voter": "the.bot" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8035250377", + "voter": "johnbradshaw" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3600677639", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5718018880", + "voter": "the.whale" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "69790115190", + "voter": "bacchist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7395923269", + "voter": "dasha" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "324365953", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5415715980", + "voter": "unicornfarts" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1640965017", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5716399817", + "voter": "vote" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6024180188", + "voter": "kissmybutt" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "7528587638", + "voter": "furion" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "52858601", + "voter": "ch0c0latechip" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5888362824", + "voter": "bitspace" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "740454861", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11146913938", + "voter": "asim" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "442913138", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4188095885", + "voter": "fubar-bdhr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9150087358", + "voter": "rpf" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "21529337232", + "voter": "jl777" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "1643275913", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3905082034", + "voter": "sompitonov" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "1816956761", + "voter": "proto" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "2685190882", + "voter": "sisterholics" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "54905658", + "voter": "fnait" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7508323572", + "voter": "beanz" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "1609908331", + "voter": "bullionstackers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3142023228", + "voter": "glitterpig" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "918895431", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7760931567", + "voter": "sykochica" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "95270090466", + "voter": "laonie" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "3947218827", + "voter": "myfirst" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "19377752514", + "voter": "somebody" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "966298641", + "voter": "flysaga" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "5708182705", + "voter": "midnightoil" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "10675325035", + "voter": "xiaohui" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "286701566", + "voter": "riosparada" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15163479832", + "voter": "randyclemens" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "446441859", + "voter": "xiaokongcom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10971913263", + "voter": "thebotkiller" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "899777990", + "voter": "xianjun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "916860564", + "voter": "gretepe" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "59017260", + "voter": "microluck" + }, + { + "percent": "2900", + "reputation": 0, + "rshares": "8925161251", + "voter": "kyriacos" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "13689306732", + "voter": "thecurator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "284822451", + "voter": "jimmytwoshoes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "758446790", + "voter": "dajohns1420" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "446928899", + "voter": "runridefly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92325410560", + "voter": "thecyclist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "992068506", + "voter": "smisi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158821861", + "voter": "tycho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "167755251", + "voter": "myxxo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9342417724", + "voter": "goldmatters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "154551739", + "voter": "reddust" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "### I colored this drawing with color pencils and markers. It took me about 6 hours to color in all the details.\nhttps://i.imgsafe.org/496152e4bb.jpg\n\n### The drawing is from Johanna Basfords coloring book: Enchanted Forest.\n### I hope your autumn days are bright, peaceful and full of colors :)", + "body_length": 296, + "cashout_time": "2016-10-12T01:11:48", + "category": "art", + "children": 13, + "created": "2016-09-10T23:31:03", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"coloring\",\"flowers\",\"\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/496152e4bb.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-10T23:31:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 20772669943572, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "39.586 HBD", + "percent_steem_dollars": 10000, + "permlink": "colors-of-the-falling-leaves", + "post_id": 916215, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Colors of the Falling Leaves", + "title": "Colors of the Falling Leaves", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/colors-of-the-falling-leaves" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "17217440575", + "voter": "fury" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32976357478", + "voter": "ihash" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "881134799010", + "voter": "ihashfury" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3717110869", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4512329498", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "836485872", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64574074288", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1992112524", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "256346717", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58220800300", + "voter": "jason" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "746977095", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1160160147", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651547610677", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "345687346", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "208959265498", + "voter": "camilla" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18819526182", + "voter": "joelinux" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2516322334", + "voter": "fkn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130761399219", + "voter": "psylains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20594040118", + "voter": "acidyo" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "2144798511", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14510675143", + "voter": "thecryptofiend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "105319082824", + "voter": "kenny-crane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12517472259", + "voter": "samether" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498866441418", + "voter": "infovore" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9528187802", + "voter": "andread" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1293108114", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "317878634", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "288862211", + "voter": "sonyanka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1068065366", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "36373502706", + "voter": "r4fken" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "6737532997", + "voter": "furion" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "66729728", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "61176267", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1449063519", + "voter": "bitland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8958646993", + "voter": "warrensteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11847119619", + "voter": "benjiberigan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3477759461", + "voter": "davidr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5157719610", + "voter": "rainchen" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2035711479", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2582334157", + "voter": "sompitonov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1483268746", + "voter": "karenb54" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5881267398", + "voter": "nekromarinist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14523418548", + "voter": "trending" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "916860564", + "voter": "gretepe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53538363", + "voter": "alfaman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "89557215", + "voter": "artsteemit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "260795401928", + "voter": "oldtimer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5119704190", + "voter": "pseudopoise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2640261133", + "voter": "newandold" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73301607", + "voter": "alina1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "86602186", + "voter": "borishaifa" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://i.imgsafe.org/462f04dde3.jpg\n\n### I decided to color this drawing in evening colors, with moonlight and a mysterious atmosphere. I wonder who lives inside? \n\n### This is a coloring page from Johanna Basfords adult coloring book; The Enchanted Forest. It is a beautiful coloring book with a lot of detailed drawings for art lovers. I recommend you to try coloring, it is very fun and relaxing.", + "body_length": 400, + "cashout_time": "2016-09-30T06:45:24", + "category": "art", + "children": 34, + "created": "2016-08-29T16:30:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"coloring\",\"castle\",\"\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/462f04dde3.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-29T16:30:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 3117153896443, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "2.288 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-castle-from-my-dreams", + "post_id": 790923, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "The Castle from my Dreams", + "title": "The Castle from my Dreams", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/the-castle-from-my-dreams" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "699869142788", + "voter": "barrie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3716506788", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4511520754", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "836390485", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64478208626", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1991810487", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "256334795", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "205885443922", + "voter": "alex90342fastn1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1781009490", + "voter": "mineralwasser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1042742279126", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "136423477114", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9505233750", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "746895624", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1160009124", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651547610677", + "voter": "clains" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "411193620672", + "voter": "steemrollin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "83823290528", + "voter": "jchch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "345667472", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "196415887656", + "voter": "camilla" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2515794369", + "voter": "fkn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "815109030", + "voter": "weenfan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1235425485", + "voter": "coar" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "2501121670", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "38148796757", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6621890334", + "voter": "givemeyoursteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12506147358", + "voter": "samether" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498866441418", + "voter": "infovore" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "576123366602", + "voter": "anwenbaumeister" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9718717859", + "voter": "andread" + }, + { + "percent": "3800", + "reputation": 0, + "rshares": "81516988096", + "voter": "kimziv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "380560965830", + "voter": "inboundinken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1323495176", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4144765674", + "voter": "azaan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7251338488", + "voter": "cannav" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "317878634", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "899072978", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "309595731", + "voter": "damono" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66072086", + "voter": "steemswede" + }, + { + "percent": "5300", + "reputation": 0, + "rshares": "385407509479", + "voter": "slowwalker" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "6443364271", + "voter": "furion" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "80071708", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "73407555", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "670339334", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11247489359", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10718908273", + "voter": "mun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3477759461", + "voter": "davidr" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2035271197", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2582334157", + "voter": "sompitonov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "573561954", + "voter": "curator" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "10939107363", + "voter": "sisterholics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1935501680", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21092500953", + "voter": "sisters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18662568563", + "voter": "pixielolz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49255441191", + "voter": "gomeravibz" + }, + { + "percent": "1900", + "reputation": 0, + "rshares": "246915489385", + "voter": "laonie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71274014", + "voter": "always1success" + }, + { + "percent": "2800", + "reputation": 0, + "rshares": "9989223166", + "voter": "myfirst" + }, + { + "percent": "3800", + "reputation": 0, + "rshares": "95503641493", + "voter": "somebody" + }, + { + "percent": "3800", + "reputation": 0, + "rshares": "3590726569", + "voter": "flysaga" + }, + { + "percent": "3700", + "reputation": 0, + "rshares": "19790068742", + "voter": "midnightoil" + }, + { + "percent": "1900", + "reputation": 0, + "rshares": "28004283547", + "voter": "xiaohui" + }, + { + "percent": "3300", + "reputation": 0, + "rshares": "1203592518", + "voter": "xiaokongcom" + }, + { + "percent": "3800", + "reputation": 0, + "rshares": "3300873134", + "voter": "xianjun" + }, + { + "percent": "3800", + "reputation": 0, + "rshares": "220497628", + "voter": "microluck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "467344544", + "voter": "wuyueling" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2291978770", + "voter": "seva" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2712232665", + "voter": "andressilvera" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2688591552", + "voter": "doitvoluntarily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8155734304", + "voter": "goose" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53783795", + "voter": "jod" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "186528421973", + "voter": "jamielefay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2492945627", + "voter": "gringalicious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157160989", + "voter": "robotev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50056278", + "voter": "anns" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://i.imgsafe.org/355673e5fe.jpg\n\n### I colored this Peacock from Millie Marotta's Tropical Wonderland coloring book for adults. I love this drawing, but it took forever. Unfortunately I never finished it completely.", + "body_length": 220, + "cashout_time": "2016-09-29T00:24:03", + "category": "art", + "children": 17, + "created": "2016-08-28T21:22:54", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"coloring\",\"peacock\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/355673e5fe.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-28T21:22:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 6282056380644, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "6.967 HBD", + "percent_steem_dollars": 10000, + "permlink": "colours-of-a-peacock", + "post_id": 782573, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Colours of a Peacock", + "title": "Colours of a Peacock", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/colours-of-a-peacock" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "699869142788", + "voter": "barrie" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "11357569835389", + "voter": "berniesanders" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "91312255682", + "voter": "nextgenwitness" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "273812540770", + "voter": "justin" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "552847788283", + "voter": "silver" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "1251901458047", + "voter": "silversteem" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "2044381967001", + "voter": "nextgencrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3716409175", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4511397243", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "836372556", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64467288690", + "voter": "bue" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "190090324242", + "voter": "steemservices" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1991762675", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "256330811", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1021461824450", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "133695007572", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8924012299", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2384419850", + "voter": "bingo-1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "746881679", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1159983226", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651547610677", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "345661496", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "196415887656", + "voter": "camilla" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "3018949260", + "voter": "fkn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130761399219", + "voter": "psylains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1235416187", + "voter": "coar" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "2501119346", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "67102335327", + "voter": "beerbloke" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14164988206", + "voter": "thecryptofiend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12908349623", + "voter": "samether" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2988547486", + "voter": "ola-haukland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21364980610", + "voter": "ossama-benjohn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "605001101244", + "voter": "anwenbaumeister" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9528154764", + "voter": "andread" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "86937942635", + "voter": "kimziv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "372949746513", + "voter": "inboundinken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39931517472", + "voter": "treeshaface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1291983386", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7251329191", + "voter": "cannav" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "317878634", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "300652505", + "voter": "sonyanka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "899072978", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "105203907357", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "316045642", + "voter": "damono" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66072086", + "voter": "steemswede" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "6443355972", + "voter": "furion" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "80071708", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "73407555", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5888231135", + "voter": "bitspace" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "670328376", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11247489359", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10508733601", + "voter": "mun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3477759461", + "voter": "davidr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7779206097", + "voter": "tarindel" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2442323444", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2582334157", + "voter": "sompitonov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "573554319", + "voter": "curator" + }, + { + "percent": "3700", + "reputation": 0, + "rshares": "10937960192", + "voter": "sisterholics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1896791647", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9379848960", + "voter": "michaeldodridge" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "43662231796", + "voter": "healthyrecipes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7333711396", + "voter": "beanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20670650934", + "voter": "sisters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1655710133", + "voter": "karenb54" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1824033796", + "voter": "sykochica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "65556498", + "voter": "whitemike313" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "401107146215", + "voter": "laonie" + }, + { + "percent": "2800", + "reputation": 0, + "rshares": "9854253757", + "voter": "myfirst" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "101852903978", + "voter": "somebody" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2149546785", + "voter": "darknet" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "3829646472", + "voter": "flysaga" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "21296995476", + "voter": "midnightoil" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "44908115073", + "voter": "xiaohui" + }, + { + "percent": "3300", + "reputation": 0, + "rshares": "1181562298", + "voter": "xiaokongcom" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "3520527889", + "voter": "xianjun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "898882906", + "voter": "gretepe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "105457766", + "voter": "quitothewalrus" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "210843520", + "voter": "microluck" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "15277887140", + "voter": "thecurator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11929850774", + "voter": "mikemacintire" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "310128045", + "voter": "stillsafe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2291978770", + "voter": "seva" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1190649584", + "voter": "baro" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2688591552", + "voter": "doitvoluntarily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53783795", + "voter": "jod" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "69255373", + "voter": "kattz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "168125709", + "voter": "robotev" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "### Adult coloring is a popular activity all over the world. People say it makes them more creative and peaceful. It is like a meditative practice! I have all the coloring books made by Johanna Basford. Her drawings are so detailed and beautiful and I love to color them. \n### Here is some of the pages I have colored so far:\n### 1. The watering can\nhttps://i.imgsafe.org/349cd53693.jpg\n\n### 2. Colorful Plants\nhttps://i.imgsafe.org/34a0a5aa73.jpg\n\n### 3. The Bird (This is from Millie Marotta's tropical wonderland book)\nhttps://i.imgsafe.org/34ea9ca68b.jpg\n\n### 4. Heart of Flowers\nhttps://i.imgsafe.org/34a0990260.jpg\n\n### 5. The TreeHouse (not yet finished)\nhttps://i.imgsafe.org/34eac272d9.jpg\n\n### Which one do you like best?\n### Do you like to color? \n\n### Maybe we should share our color pages here on Steem? :)", + "body_length": 819, + "cashout_time": "2016-09-29T06:24:03", + "category": "art", + "children": 12, + "created": "2016-08-28T20:35:27", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"coloring\",\"flowers\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/349cd53693.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-28T21:56:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 20814377075341, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "59.438 HBD", + "percent_steem_dollars": 10000, + "permlink": "do-you-like-to-colour", + "post_id": 782139, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "The Secret Garden: Do You Like to Colour?", + "title": "The Secret Garden: Do You Like to Colour?", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/do-you-like-to-colour" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "4335706062", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5263166562", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "975749378", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75198005302", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2323671963", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "299047962", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2059417973499", + "voter": "joseph" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "871348006", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1353285859", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "638772167330", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "403264769", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "204774010535", + "voter": "camilla" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2515681432", + "voter": "fkn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "267645652204", + "voter": "pal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130761399219", + "voter": "psylains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18287076517", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1455982374", + "voter": "coar" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "2501114696", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7301058574", + "voter": "givemeyoursteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "575997658790", + "voter": "anwenbaumeister" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9528121561", + "voter": "andread" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "86937942635", + "voter": "kimziv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1384136862", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "304903995", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "898813284", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10960200839", + "voter": "aeico" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "34242054440", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66069097", + "voter": "steemswede" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "6443090237", + "voter": "furion" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "66726423", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "61172962", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5888231135", + "voter": "bitspace" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710838072", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1691522724", + "voter": "incomemonthly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1512341703", + "voter": "the-future" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3409568099", + "voter": "davidr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27552870183", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44575603381", + "voter": "sauravrungta" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2035181510", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156154164", + "voter": "valenttina" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108022625", + "voter": "sergey44" + }, + { + "percent": "3700", + "reputation": 0, + "rshares": "10937960192", + "voter": "sisterholics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18296635846", + "voter": "pixielolz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5889601079", + "voter": "nekromarinist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35763366050", + "voter": "rampant" + }, + { + "percent": "3200", + "reputation": 0, + "rshares": "401107146215", + "voter": "laonie" + }, + { + "percent": "2800", + "reputation": 0, + "rshares": "9854253757", + "voter": "myfirst" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "101852903978", + "voter": "somebody" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2283893459", + "voter": "darknet" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "3829646472", + "voter": "flysaga" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "21296995476", + "voter": "midnightoil" + }, + { + "percent": "3200", + "reputation": 0, + "rshares": "44908115073", + "voter": "xiaohui" + }, + { + "percent": "3300", + "reputation": 0, + "rshares": "1181562298", + "voter": "xiaokongcom" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "3520527889", + "voter": "xianjun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64019062", + "voter": "evgenyche" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "210843520", + "voter": "microluck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "433283674", + "voter": "violino" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57556400", + "voter": "unnsmed" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "87766070", + "voter": "artsteemit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12178128873", + "voter": "mikemacintire" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2712232665", + "voter": "andressilvera" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2752605636", + "voter": "doitvoluntarily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53733343", + "voter": "rigaronib" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129179", + "voter": "julianoneill" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "160815896", + "voter": "robotev" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://i.imgsafe.org/3221da5276.jpg\n\n### I made this drawing after an interesting LSD trip that changed me in many ways. I am not really sure what these spirits represent but they came from some kind of inhabited emptiness. I spent most of the trip in bed, in the darkness and silence and reorganized my brain. It felt like my universe opened itself up to become aware of even deeper parts of existence. \n\n### The next day I spent about 10 hours just drawing in silence without any plan, this is the result. I made it with markers and colored pencils. I hope you can find some wonder and courage in this drawing.", + "body_length": 613, + "cashout_time": "2016-09-28T19:12:30", + "category": "art", + "children": 15, + "created": "2016-08-28T17:50:24", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"lsd\",\"drawing\",\"\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/3221da5276.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-28T18:56:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 4918470309066, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "5.103 HBD", + "percent_steem_dollars": 10000, + "permlink": "my-lsd-spirits", + "post_id": 780174, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "My LSD Spirits. Art on Acid", + "title": "My LSD Spirits. Art on Acid", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/my-lsd-spirits" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "40423696280163", + "voter": "blocktrades" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651547610677", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21742912981", + "voter": "dedriss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "85420329595", + "voter": "edgeland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5443852086", + "voter": "nastrom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "78050821526", + "voter": "easteagle13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213132133414", + "voter": "camilla" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "3018562528", + "voter": "fkn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1500103052", + "voter": "coar" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "2501114696", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9697923395", + "voter": "zebbra2014" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7301058574", + "voter": "givemeyoursteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49453012712", + "voter": "kus-knee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "590098544857", + "voter": "anwenbaumeister" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9718683992", + "voter": "andread" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1384136862", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "317878634", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "898813284", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10960200839", + "voter": "aeico" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35279692453", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66067104", + "voter": "steemswede" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "6442551945", + "voter": "furion" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "80065727", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "73401574", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710768293", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2867794061", + "voter": "sveokla" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7946264179", + "voter": "deviedev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8884342752", + "voter": "blinova" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1596360687", + "voter": "the-future" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3477759461", + "voter": "davidr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2031261689", + "voter": "lostnuggett" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2442012464", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "89901345", + "voter": "tabata" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44571861626", + "voter": "healthyrecipes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7333711396", + "voter": "beanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3064339400", + "voter": "jillstein2016" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62738681", + "voter": "evgenyche" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "916860564", + "voter": "gretepe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1719235215", + "voter": "bledarus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "564194019", + "voter": "ashwim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "489866165", + "voter": "levycore" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46111352781", + "voter": "albensilverberg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4743553049", + "voter": "craigwilliamz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56447612", + "voter": "abanks1000" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2339728327", + "voter": "seva" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "368214925", + "voter": "eight-rad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21537535238", + "voter": "luminousvisions" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2712232665", + "voter": "andressilvera" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2752605636", + "voter": "doitvoluntarily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "525563862", + "voter": "edgarsart" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52182445", + "voter": "alina1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52794249", + "voter": "doggnostic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52521499", + "voter": "jenny-talls" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52332195", + "voter": "post-successful" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50125683", + "voter": "granddady" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50124642", + "voter": "senpai30" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50056278", + "voter": "anns" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "938220198", + "voter": "linny" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "
https://i.imgsafe.org/31a4097d43.jpg
\n\n### Zendoodles are fun and relaxing to make and does not take much time or skill. I like drawing them while listening to lectures to help my brain process information easier. I made this one with markers and gel pens. I hope you like it :)", + "body_length": 294, + "cashout_time": "2016-09-28T21:19:57", + "category": "art", + "children": 14, + "created": "2016-08-28T17:22:42", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"zendoodle\",\"drawing\",\"\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/31a4097d43.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-28T17:22:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 42379040615951, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "222.752 HBD", + "percent_steem_dollars": 10000, + "permlink": "zendoodle-drawing", + "post_id": 779857, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Zendoodle Drawing", + "title": "Zendoodle Drawing", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/zendoodle-drawing" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "683847433191", + "voter": "barrie" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "28860495550", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1458371301057", + "voter": "silver" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3345680944130", + "voter": "silversteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16879726792", + "voter": "fury" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32975758639", + "voter": "ihash" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "833000682841", + "voter": "ihashfury" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2474667874", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3003831514", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "562780317", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42511716379", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1326410513", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "170827956", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58653028106", + "voter": "jason" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1018686257991", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "133122969670", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9360147548", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2377987129", + "voter": "bingo-1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "497540834", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "756497537", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "650035765683", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "230342766", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "77130343250", + "voter": "easteagle13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "212975452822", + "voter": "camilla" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18922786616", + "voter": "ninzacode" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "3039393043", + "voter": "fkn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28296664166", + "voter": "thedarkestplum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130745414900", + "voter": "psylains" + }, + { + "percent": "2100", + "reputation": 0, + "rshares": "6533369417", + "voter": "acidyo" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1802569172", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75065790", + "voter": "akaninyene-etuk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "107356674966", + "voter": "kenny-crane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6090874010", + "voter": "kennyskitchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45157199110", + "voter": "kus-knee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "702883755660", + "voter": "anwenbaumeister" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9525351076", + "voter": "andread" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42416476585", + "voter": "treeshaface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1184197459", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "272053813", + "voter": "ales" + }, + { + "percent": "2100", + "reputation": 0, + "rshares": "15621109400", + "voter": "venuspcs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "328582197", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287300396", + "voter": "sonyanka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55749238572", + "voter": "sonzweil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "810635797", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96608292719", + "voter": "rubybian" + }, + { + "percent": "2100", + "reputation": 0, + "rshares": "1911037334", + "voter": "getssidetracked" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "193683835", + "voter": "eleny" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "7625139986", + "voter": "furion" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "80727592", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "74011710", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5887644206", + "voter": "bitspace" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1932241518", + "voter": "incomemonthly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28142586562", + "voter": "diana.catherine" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10683249473", + "voter": "mun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8989925029", + "voter": "warrensteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2536619358", + "voter": "imp3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "550614299", + "voter": "qonq99" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2447903423", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1050846422", + "voter": "politicasan2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25012318449", + "voter": "anca3drandom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "221679491", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5009584219", + "voter": "pixielolz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2448936788", + "voter": "sykochica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20109765764", + "voter": "laoyao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31034465046", + "voter": "persianqueen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "83638970", + "voter": "xerneas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17235879497", + "voter": "velourex" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2957848839", + "voter": "oflyhigh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "525392335", + "voter": "iaco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62362897", + "voter": "gretepe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "722557178", + "voter": "chinadaily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "413471359", + "voter": "anarchyhasnogods" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "328935828", + "voter": "runridefly" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "137701110", + "voter": "krnel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1821534745", + "voter": "metalbrushes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1790641383", + "voter": "steempowerwhale" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50431792", + "voter": "stardust" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "#### There was a lot of students, more than 200 and mostly girls. They are all western, privileged straight A students just out of highschool. Most of them chose psychology because it is the most intriguing subject that is still sensible and useful to society. \n\nhttps://i.imgsafe.org/c75a36832c.jpg\n\n#### How many of us will make it? Only time can tell. The first ones to fall will be those who just realized that psychology is not at all what they thought it was. Soon those who can't read english will disappear. (The books and tests are in english) Then the undisciplined and lazy ones will be gone and last to fall will be the scared and the doubtful. I can already see it in their eyes, I'm one of them. Somehow I always pull through. What I lack in confidence I make up for in the ability to push myself. \nhttps://i.imgsafe.org/c75a75be50.jpg\n\n#### We have to pass 6 out of nine multiple choice test to be allowed to take the exam. On the exam we have to answer 6 out of seven questions in 6 hours. Two of them will be about the history of psychology. \n\n#### The curriculum consist of one giant brick of a book with 900 pages. We have to read it all and remember everything. Then there is one history book, it is not so big and not as important. There is also a number of articles. I assume that I will have to spend at least 3 hours a day with my psychology studies to get a good grade. I can do this!\n\nhttps://i.imgsafe.org/c71a9983e3.jpg\n### The main book Thankfully it has a lot of good illustrations and pictures in it and it is very organised and well written. \nhttps://i.imgsafe.org/c71cf8d3d8.jpg\n\n### The history book is in Norwegian, which makes it a bit easier. \nhttps://i.imgsafe.org/c72195f224.jpg\n\n#### Before the lecture I took some time to make a healthy breakfast, Avocadoes and Tomatoes with olive oil, salt, pepper balsamic and some bread. It served me well today. \nhttps://i.imgsafe.org/c717cebc5f.jpg\n\n#### The road from the subway to the psychological institute is a beautiful walk through a field with a great view of the sunny sky. It made me feel optimistic and calm.\nhttps://i.imgsafe.org/c75a1aed08.jpg\n\n### The institute is located by a psychiatrical hospital, on the outskirts of campus. \nhttps://i.imgsafe.org/c75a2edf50.jpg\n\n### We have well known and highly competent psychology professors in the lectures. The one we we had today was this guy: \nhttp://www.sv.uio.no/psi/personer/vit/rolfreb/rolfreb.jpg \n#### Rolf Reber from Germany. He is a professor in cognitive psychology and have also written some articles about emotions and aesthetics according to the university website. He was funny and interesting to listen to. He talked about the usefulness of psychology and the scientific methods. He also gave us a lot of practical information and talked about interesting psychological phenomenons like how astrology can trick us into reading our horoscope and many other exiting things.\n\n### My \u201cnotes\u201d \n\nhttps://i.imgsafe.org/c727fedbe4.jpg\nhttps://i.imgsafe.org/c725451d1c.jpg\n\n#### I also talked to a few of the students I sat next too. One girl had finally gotten into the profession studies to become an actual working psychologist after 3 years of hard work to get high enough grades. You need to have A in all exams to get into psychology profession studies. Thankfully the pressure is not as high for a useless philosophy student.\n\n### I hope you enjoyed taking a look inside the life of a university student. I will keep posting about my life at Uni. so follow me if you find it interesting.", + "body_length": 3540, + "cashout_time": "2016-09-23T18:49:57", + "category": "university", + "children": 14, + "created": "2016-08-23T16:24:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"university\",\"lecture\",\"psychology\",\"student\",\"life\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/c75a36832c.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-23T16:35:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 10069273291390, + "parent_author": "", + "parent_permlink": "university", + "pending_payout_value": "15.906 HBD", + "percent_steem_dollars": 10000, + "permlink": "my-first-psychology-lecture", + "post_id": 720282, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "My first Psychology Lecture", + "title": "My first Psychology Lecture", + "total_payout_value": "0.000 HBD", + "url": "/university/@camilla/my-first-psychology-lecture" + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_date.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_date.pat.json new file mode 100644 index 00000000..6505bcff --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_date.pat.json @@ -0,0 +1,4313 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "289496406729", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "166818556981", + "voter": "highasfuck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651650151993", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "203214055493", + "voter": "camilla" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "661462066", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130765654564", + "voter": "psylains" + }, + { + "percent": "4200", + "reputation": 0, + "rshares": "12188532385", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "760600032", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "706772487", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59861247996", + "voter": "theshell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17018803209", + "voter": "samether" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9721807408", + "voter": "andread" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11707843677", + "voter": "primus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4362079757", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46148758185", + "voter": "isteemit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "330853272", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "290559594", + "voter": "sonyanka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1608900298", + "voter": "gidlark" + }, + { + "percent": "4200", + "reputation": 0, + "rshares": "103512966", + "voter": "strawhat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2340059283", + "voter": "steemswede" + }, + { + "percent": "4200", + "reputation": 0, + "rshares": "102583242", + "voter": "cryptochannel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12345609219", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "154310336", + "voter": "sergey44" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3912738831", + "voter": "sompitonov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5942642822", + "voter": "beanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "26148166391", + "voter": "pixielolz" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "116538182", + "voter": "bullionstackers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3321707002", + "voter": "glitterpig" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5606477483", + "voter": "shortcut" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "508520907", + "voter": "karenb54" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "464346063318", + "voter": "glitterfart" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8529222483", + "voter": "mione" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "472813942", + "voter": "wuyueling" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2337983869", + "voter": "cryptoeasy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "174554557", + "voter": "chadcrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "143406202", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13292298415", + "voter": "goldmatters" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://i.imgsafe.org/7252ed86f2.jpg\n\n### Drawing made with Prismacolor pencils on gray toned paper.", + "body_length": 100, + "cashout_time": "2016-10-13T23:30:27", + "category": "art", + "children": 5, + "created": "2016-09-12T21:37:27", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"portrait\",\"\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/7252ed86f2.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-12T21:59:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 2157212255576, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "0.795 HBD", + "percent_steem_dollars": 10000, + "permlink": "girl-with-a-pink-bow", + "post_id": 934538, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Girl with a Pink Bow", + "title": "Girl with a Pink Bow", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/girl-with-a-pink-bow" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "289482062341", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1152457041840", + "voter": "rossco99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "436172432967", + "voter": "boatymcboatface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651650151993", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75110722747", + "voter": "easteagle13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "215909081377", + "voter": "camilla" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16221469512", + "voter": "jademont" + }, + { + "percent": "400", + "reputation": 0, + "rshares": "1322723922", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130765654564", + "voter": "psylains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "29251115097", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "849659123", + "voter": "coar" + }, + { + "percent": "1509", + "reputation": 0, + "rshares": "706760886", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63365513478", + "voter": "theshell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5091917697", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4487075430", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "324365953", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1541722449", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "246459444", + "voter": "strawhat" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9220777116", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "244245816", + "voter": "cryptochannel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5888378458", + "voter": "bitspace" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "321100442", + "voter": "luisucv34" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2308410567", + "voter": "the-future" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4263594327", + "voter": "fubar-bdhr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "117630527", + "voter": "pokemon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51423955", + "voter": "sergey44" + }, + { + "percent": "8600", + "reputation": 0, + "rshares": "2911202361", + "voter": "ace108" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "26148166391", + "voter": "pixielolz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "149597919", + "voter": "steemster1" + }, + { + "percent": "3400", + "reputation": 0, + "rshares": "1165238399", + "voter": "bullionstackers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3505969711", + "voter": "glitterpig" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5731769098", + "voter": "shortcut" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59219358", + "voter": "sharon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60342922", + "voter": "lillianjones" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60806273", + "voter": "msjennifer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57196572", + "voter": "ciao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55449983", + "voter": "steemo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3892676217", + "voter": "alchemage" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55306941", + "voter": "steema" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71268878", + "voter": "confucius" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "898882906", + "voter": "gretepe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56157882", + "voter": "jarvis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "597059749", + "voter": "ashwim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54313084", + "voter": "fortuner" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53056158", + "voter": "johnbyrd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53039566", + "voter": "thomasaustin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53037689", + "voter": "thermor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53048942", + "voter": "ficholl" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53030738", + "voter": "widell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52651308", + "voter": "revelbrooks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51562255", + "voter": "curpose" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58273844", + "voter": "hotgirlktm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63850166", + "voter": "aavkc" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50588612", + "voter": "troich" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50593879", + "voter": "crion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50271139", + "voter": "hitherise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50262756", + "voter": "wiss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51033798", + "voter": "stroully" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50712038", + "voter": "thadm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50710305", + "voter": "prof" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59551730", + "voter": "techguru" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50370757", + "voter": "yorsens" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50065875", + "voter": "bane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50059754", + "voter": "vive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50054445", + "voter": "coad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "551289713", + "voter": "jessicanicklos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "143358574", + "voter": "anomaly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1027866325", + "voter": "ola1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6349496599", + "voter": "orcish" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50441122", + "voter": "eavy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50454901", + "voter": "roto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56509947", + "voter": "alex.gaud" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1192255729", + "voter": "ndbeledrifts" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72812589", + "voter": "igtes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "148091845", + "voter": "buffett" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "229890255", + "voter": "sjamayee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "155364835", + "voter": "insight2incite" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13670562023", + "voter": "goldmatters" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "### I made this drawing with my new Prismacolor pencils. I got them from the talented artist @Pixielols. I met her in real life today at the University and she is the sweetest and loveliest person you can imagine.\n\nhttps://i.imgsafe.org/6dd4fe4912.jpg\n\n ### I had to test them right away so I just spent an hour on this autumn inspired apple drawing. These color pencils are very soft and is a joy to work with.\n\nhttps://i.imgsafe.org/6dc35d7e3c.jpg\n\n### The apple have felt the warm sun on its red skin, drawn energy from the soil, nourished birds and children and heard the cold autumn wind in the leaves. It is a sweet gift from nature for you to enjoy.\n\nhttps://i.imgsafe.org/6ddd3dee6b.jpg\n\n### Thank you for visiting my post! I hope you liked it.", + "body_length": 753, + "cashout_time": "2016-10-13T17:57:21", + "category": "art", + "children": 16, + "created": "2016-09-12T17:11:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"apple\",\"autumn\",\"colours\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/6dd4fe4912.jpg\",\"https:\\/\\/i.imgsafe.org\\/6dc35d7e3c.jpg\",\"https:\\/\\/i.imgsafe.org\\/6ddd3dee6b.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-12T17:38:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 3167706336883, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "1.377 HBD", + "percent_steem_dollars": 10000, + "permlink": "apple-and-leaves", + "post_id": 932171, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Apple Art", + "title": "Apple Art", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/apple-and-leaves" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "376233439931", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2044001489909", + "voter": "badassmother" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1119181397810", + "voter": "rossco99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "461536194020", + "voter": "boatymcboatface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "698098902296", + "voter": "pfunk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651645205561", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "131708490559", + "voter": "team" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42712960461", + "voter": "alexgr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "211242392243", + "voter": "camilla" + }, + { + "percent": "400", + "reputation": 0, + "rshares": "1333641507", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130765248410", + "voter": "psylains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27088176517", + "voter": "tmendieta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1027472226", + "voter": "coar" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1413239642", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16193082064", + "voter": "b4bb4r-5h3r" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "24219759293", + "voter": "thecryptofiend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8338989775", + "voter": "givemeyoursteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20202699413", + "voter": "samether" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51727323862", + "voter": "kus-knee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9721776176", + "voter": "andread" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3484563685", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "324365953", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1640980092", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17414401735", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5888362824", + "voter": "bitspace" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "626660650", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11521200292", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226192934152", + "voter": "jesta" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "664445440", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10310589431", + "voter": "mun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1913344238", + "voter": "earnest" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "261981171388", + "voter": "liberosist" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "32296817492", + "voter": "jl777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "327972405", + "voter": "valenttina" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3985741522", + "voter": "sompitonov" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2725653124", + "voter": "proto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7508323572", + "voter": "beanz" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "348014675", + "voter": "bullionstackers" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "22980208089", + "voter": "jasonstaggers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3258419015", + "voter": "glitterpig" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "1378514942", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14860602062", + "voter": "randyclemens" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "898882906", + "voter": "gretepe" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "728479455", + "voter": "alexma3x" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8953896241", + "voter": "doitvoluntarily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "111977218", + "voter": "skeptic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3066392990", + "voter": "funnyman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88662747", + "voter": "mlialen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "336979073", + "voter": "robotev1" + }, + { + "percent": "4500", + "reputation": 0, + "rshares": "1515433531", + "voter": "robotev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1977901532", + "voter": "haphazard-hstead" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50985709", + "voter": "natord" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "62244532", + "voter": "socialbutterfly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13670562023", + "voter": "goldmatters" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "### Where the Trees will not grow in the cold weather, where the houses are far apart but the hearts are close together.\n\nhttps://i.imgsafe.org/52a5ddd3b8.jpg\n\n### My Mother grew up here and I lived my first year in worlds most northern city called Hammerfest. The soil here is frozen, the land is flat and full of stones but still the tourists are very impressed.\n\nhttps://i.imgsafe.org/52c7a83b71.jpg\n\n### On a small island called Ertsvika my great grand parents lived with their 13 children. It was a hard life in poverty and cold winters, but their health where strong and their hearts where warm.\n\nhttps://i.imgsafe.org/52c38d5ff5.jpg\n\n### They lived of fishing and gathering berries. The next neighbors where 8 hours away by foot. My great grand mother gave birth to all the children without any doctor to help her, the oldest daughter was the midwife. The oldest son had to fish with his father on the stormy ocean when he was 8 years old, he died early from hard work. \n\nhttps://i.imgsafe.org/52b994c30e.jpg\n\n### Now the ancestors visit this place from time to time, where the old house used to be there is now a small cabin. There is a peaceful land far far north where nobody lives only birds and raindeers. \n\nhttps://i.imgsafe.org/52ad9349ed.jpg\n\n### The pictures are taken by my mother who is there now, visiting her mother and her childhood places. I hope you enjoyed this glimpse from the past.", + "body_length": 1412, + "cashout_time": "2016-10-12T11:19:21", + "category": "history", + "children": 21, + "created": "2016-09-11T09:55:24", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"history\",\"memories\",\"family\",\"photography\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/52a5ddd3b8.jpg\",\"https:\\/\\/i.imgsafe.org\\/52c7a83b71.jpg\",\"https:\\/\\/i.imgsafe.org\\/52c38d5ff5.jpg\",\"https:\\/\\/i.imgsafe.org\\/52b994c30e.jpg\",\"https:\\/\\/i.imgsafe.org\\/52ad9349ed.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-11T10:06:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 6691487566410, + "parent_author": "", + "parent_permlink": "history", + "pending_payout_value": "5.735 HBD", + "percent_steem_dollars": 10000, + "permlink": "there-is-a-land-far-far-north", + "post_id": 920349, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "There is a Land far, far North...", + "title": "There is a Land far, far North...", + "total_payout_value": "0.000 HBD", + "url": "/history/@camilla/there-is-a-land-far-far-north" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "376199691813", + "voter": "anonymous" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "10514445664165", + "voter": "berniesanders" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2043524972373", + "voter": "badassmother" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "64047892423", + "voter": "nextgenwitness" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "228778017848", + "voter": "justin" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "667121759026", + "voter": "silver" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "1625458470769", + "voter": "silversteem" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "1817776274078", + "voter": "nextgencrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1086156024356", + "voter": "rossco99" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "134451929559", + "voter": "steemservices" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "6459214622", + "voter": "bentley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "469477368872", + "voter": "boatymcboatface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651645205561", + "voter": "clains" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2586674942", + "voter": "yefet" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "215464179712", + "voter": "camilla" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "2027172658", + "voter": "fkn" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "2666300169", + "voter": "elishagh1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130765248410", + "voter": "psylains" + }, + { + "percent": "4200", + "reputation": 0, + "rshares": "10966759140", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27080912220", + "voter": "tmendieta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1027351719", + "voter": "coar" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1413116466", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59824941705", + "voter": "theshell" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "76309016178", + "voter": "thecryptofiend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7998622846", + "voter": "givemeyoursteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1457681508", + "voter": "benthegameboy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9531153114", + "voter": "andread" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "21517750872", + "voter": "kimziv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6684459064", + "voter": "fuck.off" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6605970020", + "voter": "iloveporn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5890677916", + "voter": "the.bot" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8035250377", + "voter": "johnbradshaw" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3600677639", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5718018880", + "voter": "the.whale" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "69790115190", + "voter": "bacchist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7395923269", + "voter": "dasha" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "324365953", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5415715980", + "voter": "unicornfarts" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1640965017", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5716399817", + "voter": "vote" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6024180188", + "voter": "kissmybutt" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "7528587638", + "voter": "furion" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "52858601", + "voter": "ch0c0latechip" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5888362824", + "voter": "bitspace" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "740454861", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11146913938", + "voter": "asim" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "442913138", + "voter": "karen13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4188095885", + "voter": "fubar-bdhr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9150087358", + "voter": "rpf" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "21529337232", + "voter": "jl777" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "1643275913", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3905082034", + "voter": "sompitonov" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "1816956761", + "voter": "proto" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "2685190882", + "voter": "sisterholics" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "54905658", + "voter": "fnait" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7508323572", + "voter": "beanz" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "1609908331", + "voter": "bullionstackers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3142023228", + "voter": "glitterpig" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "918895431", + "voter": "taker" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7760931567", + "voter": "sykochica" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "95270090466", + "voter": "laonie" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "3947218827", + "voter": "myfirst" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "19377752514", + "voter": "somebody" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "966298641", + "voter": "flysaga" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "5708182705", + "voter": "midnightoil" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "10675325035", + "voter": "xiaohui" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "286701566", + "voter": "riosparada" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "15163479832", + "voter": "randyclemens" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "446441859", + "voter": "xiaokongcom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10971913263", + "voter": "thebotkiller" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "899777990", + "voter": "xianjun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "916860564", + "voter": "gretepe" + }, + { + "percent": "900", + "reputation": 0, + "rshares": "59017260", + "voter": "microluck" + }, + { + "percent": "2900", + "reputation": 0, + "rshares": "8925161251", + "voter": "kyriacos" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "13689306732", + "voter": "thecurator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "284822451", + "voter": "jimmytwoshoes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "758446790", + "voter": "dajohns1420" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "446928899", + "voter": "runridefly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "92325410560", + "voter": "thecyclist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "992068506", + "voter": "smisi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "158821861", + "voter": "tycho" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "167755251", + "voter": "myxxo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9342417724", + "voter": "goldmatters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "154551739", + "voter": "reddust" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "### I colored this drawing with color pencils and markers. It took me about 6 hours to color in all the details.\nhttps://i.imgsafe.org/496152e4bb.jpg\n\n### The drawing is from Johanna Basfords coloring book: Enchanted Forest.\n### I hope your autumn days are bright, peaceful and full of colors :)", + "body_length": 296, + "cashout_time": "2016-10-12T01:11:48", + "category": "art", + "children": 13, + "created": "2016-09-10T23:31:03", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"coloring\",\"flowers\",\"\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/496152e4bb.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-10T23:31:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 20772669943572, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "39.586 HBD", + "percent_steem_dollars": 10000, + "permlink": "colors-of-the-falling-leaves", + "post_id": 916215, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Colors of the Falling Leaves", + "title": "Colors of the Falling Leaves", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/colors-of-the-falling-leaves" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "17217440575", + "voter": "fury" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32976357478", + "voter": "ihash" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "881134799010", + "voter": "ihashfury" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3717110869", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4512329498", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "836485872", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64574074288", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1992112524", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "256346717", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58220800300", + "voter": "jason" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "746977095", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1160160147", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651547610677", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "345687346", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "208959265498", + "voter": "camilla" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18819526182", + "voter": "joelinux" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2516322334", + "voter": "fkn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130761399219", + "voter": "psylains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20594040118", + "voter": "acidyo" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "2144798511", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14510675143", + "voter": "thecryptofiend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "105319082824", + "voter": "kenny-crane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12517472259", + "voter": "samether" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498866441418", + "voter": "infovore" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9528187802", + "voter": "andread" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1293108114", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "317878634", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "288862211", + "voter": "sonyanka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1068065366", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "36373502706", + "voter": "r4fken" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "6737532997", + "voter": "furion" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "66729728", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "61176267", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1449063519", + "voter": "bitland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8958646993", + "voter": "warrensteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11847119619", + "voter": "benjiberigan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3477759461", + "voter": "davidr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5157719610", + "voter": "rainchen" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2035711479", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2582334157", + "voter": "sompitonov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1483268746", + "voter": "karenb54" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5881267398", + "voter": "nekromarinist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14523418548", + "voter": "trending" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "916860564", + "voter": "gretepe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53538363", + "voter": "alfaman" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "89557215", + "voter": "artsteemit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "260795401928", + "voter": "oldtimer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5119704190", + "voter": "pseudopoise" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2640261133", + "voter": "newandold" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73301607", + "voter": "alina1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "86602186", + "voter": "borishaifa" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://i.imgsafe.org/462f04dde3.jpg\n\n### I decided to color this drawing in evening colors, with moonlight and a mysterious atmosphere. I wonder who lives inside? \n\n### This is a coloring page from Johanna Basfords adult coloring book; The Enchanted Forest. It is a beautiful coloring book with a lot of detailed drawings for art lovers. I recommend you to try coloring, it is very fun and relaxing.", + "body_length": 400, + "cashout_time": "2016-09-30T06:45:24", + "category": "art", + "children": 34, + "created": "2016-08-29T16:30:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"coloring\",\"castle\",\"\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/462f04dde3.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-29T16:30:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 3117153896443, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "2.288 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-castle-from-my-dreams", + "post_id": 790923, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "The Castle from my Dreams", + "title": "The Castle from my Dreams", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/the-castle-from-my-dreams" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "699869142788", + "voter": "barrie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3716506788", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4511520754", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "836390485", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64478208626", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1991810487", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "256334795", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "205885443922", + "voter": "alex90342fastn1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1781009490", + "voter": "mineralwasser" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1042742279126", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "136423477114", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9505233750", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "746895624", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1160009124", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651547610677", + "voter": "clains" + }, + { + "percent": "5000", + "reputation": 0, + "rshares": "411193620672", + "voter": "steemrollin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "83823290528", + "voter": "jchch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "345667472", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "196415887656", + "voter": "camilla" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2515794369", + "voter": "fkn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "815109030", + "voter": "weenfan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1235425485", + "voter": "coar" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "2501121670", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "38148796757", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6621890334", + "voter": "givemeyoursteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12506147358", + "voter": "samether" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "498866441418", + "voter": "infovore" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "576123366602", + "voter": "anwenbaumeister" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9718717859", + "voter": "andread" + }, + { + "percent": "3800", + "reputation": 0, + "rshares": "81516988096", + "voter": "kimziv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "380560965830", + "voter": "inboundinken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1323495176", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4144765674", + "voter": "azaan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7251338488", + "voter": "cannav" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "317878634", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "899072978", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "309595731", + "voter": "damono" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66072086", + "voter": "steemswede" + }, + { + "percent": "5300", + "reputation": 0, + "rshares": "385407509479", + "voter": "slowwalker" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "6443364271", + "voter": "furion" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "80071708", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "73407555", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "670339334", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11247489359", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10718908273", + "voter": "mun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3477759461", + "voter": "davidr" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2035271197", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2582334157", + "voter": "sompitonov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "573561954", + "voter": "curator" + }, + { + "percent": "3600", + "reputation": 0, + "rshares": "10939107363", + "voter": "sisterholics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1935501680", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21092500953", + "voter": "sisters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18662568563", + "voter": "pixielolz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49255441191", + "voter": "gomeravibz" + }, + { + "percent": "1900", + "reputation": 0, + "rshares": "246915489385", + "voter": "laonie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "71274014", + "voter": "always1success" + }, + { + "percent": "2800", + "reputation": 0, + "rshares": "9989223166", + "voter": "myfirst" + }, + { + "percent": "3800", + "reputation": 0, + "rshares": "95503641493", + "voter": "somebody" + }, + { + "percent": "3800", + "reputation": 0, + "rshares": "3590726569", + "voter": "flysaga" + }, + { + "percent": "3700", + "reputation": 0, + "rshares": "19790068742", + "voter": "midnightoil" + }, + { + "percent": "1900", + "reputation": 0, + "rshares": "28004283547", + "voter": "xiaohui" + }, + { + "percent": "3300", + "reputation": 0, + "rshares": "1203592518", + "voter": "xiaokongcom" + }, + { + "percent": "3800", + "reputation": 0, + "rshares": "3300873134", + "voter": "xianjun" + }, + { + "percent": "3800", + "reputation": 0, + "rshares": "220497628", + "voter": "microluck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "467344544", + "voter": "wuyueling" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2291978770", + "voter": "seva" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2712232665", + "voter": "andressilvera" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2688591552", + "voter": "doitvoluntarily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8155734304", + "voter": "goose" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53783795", + "voter": "jod" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "186528421973", + "voter": "jamielefay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2492945627", + "voter": "gringalicious" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157160989", + "voter": "robotev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50056278", + "voter": "anns" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://i.imgsafe.org/355673e5fe.jpg\n\n### I colored this Peacock from Millie Marotta's Tropical Wonderland coloring book for adults. I love this drawing, but it took forever. Unfortunately I never finished it completely.", + "body_length": 220, + "cashout_time": "2016-09-29T00:24:03", + "category": "art", + "children": 17, + "created": "2016-08-28T21:22:54", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"coloring\",\"peacock\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/355673e5fe.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-28T21:22:54", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 6282056380644, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "6.967 HBD", + "percent_steem_dollars": 10000, + "permlink": "colours-of-a-peacock", + "post_id": 782573, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Colours of a Peacock", + "title": "Colours of a Peacock", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/colours-of-a-peacock" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "699869142788", + "voter": "barrie" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "11357569835389", + "voter": "berniesanders" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "91312255682", + "voter": "nextgenwitness" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "273812540770", + "voter": "justin" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "552847788283", + "voter": "silver" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "1251901458047", + "voter": "silversteem" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "2044381967001", + "voter": "nextgencrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3716409175", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4511397243", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "836372556", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64467288690", + "voter": "bue" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "190090324242", + "voter": "steemservices" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1991762675", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "256330811", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1021461824450", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "133695007572", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8924012299", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2384419850", + "voter": "bingo-1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "746881679", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1159983226", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651547610677", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "345661496", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "196415887656", + "voter": "camilla" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "3018949260", + "voter": "fkn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130761399219", + "voter": "psylains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1235416187", + "voter": "coar" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "2501119346", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "67102335327", + "voter": "beerbloke" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14164988206", + "voter": "thecryptofiend" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12908349623", + "voter": "samether" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2988547486", + "voter": "ola-haukland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21364980610", + "voter": "ossama-benjohn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "605001101244", + "voter": "anwenbaumeister" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9528154764", + "voter": "andread" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "86937942635", + "voter": "kimziv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "372949746513", + "voter": "inboundinken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "39931517472", + "voter": "treeshaface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1291983386", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7251329191", + "voter": "cannav" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "317878634", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "300652505", + "voter": "sonyanka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "899072978", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "105203907357", + "voter": "rubybian" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "316045642", + "voter": "damono" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66072086", + "voter": "steemswede" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "6443355972", + "voter": "furion" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "80071708", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "73407555", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5888231135", + "voter": "bitspace" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "670328376", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11247489359", + "voter": "asim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10508733601", + "voter": "mun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3477759461", + "voter": "davidr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7779206097", + "voter": "tarindel" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2442323444", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2582334157", + "voter": "sompitonov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "573554319", + "voter": "curator" + }, + { + "percent": "3700", + "reputation": 0, + "rshares": "10937960192", + "voter": "sisterholics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1896791647", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9379848960", + "voter": "michaeldodridge" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "43662231796", + "voter": "healthyrecipes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7333711396", + "voter": "beanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20670650934", + "voter": "sisters" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1655710133", + "voter": "karenb54" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1824033796", + "voter": "sykochica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "65556498", + "voter": "whitemike313" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "401107146215", + "voter": "laonie" + }, + { + "percent": "2800", + "reputation": 0, + "rshares": "9854253757", + "voter": "myfirst" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "101852903978", + "voter": "somebody" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2149546785", + "voter": "darknet" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "3829646472", + "voter": "flysaga" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "21296995476", + "voter": "midnightoil" + }, + { + "percent": "3100", + "reputation": 0, + "rshares": "44908115073", + "voter": "xiaohui" + }, + { + "percent": "3300", + "reputation": 0, + "rshares": "1181562298", + "voter": "xiaokongcom" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "3520527889", + "voter": "xianjun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "898882906", + "voter": "gretepe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "105457766", + "voter": "quitothewalrus" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "210843520", + "voter": "microluck" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "15277887140", + "voter": "thecurator" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11929850774", + "voter": "mikemacintire" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "310128045", + "voter": "stillsafe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2291978770", + "voter": "seva" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1190649584", + "voter": "baro" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2688591552", + "voter": "doitvoluntarily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53783795", + "voter": "jod" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "69255373", + "voter": "kattz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "168125709", + "voter": "robotev" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "### Adult coloring is a popular activity all over the world. People say it makes them more creative and peaceful. It is like a meditative practice! I have all the coloring books made by Johanna Basford. Her drawings are so detailed and beautiful and I love to color them. \n### Here is some of the pages I have colored so far:\n### 1. The watering can\nhttps://i.imgsafe.org/349cd53693.jpg\n\n### 2. Colorful Plants\nhttps://i.imgsafe.org/34a0a5aa73.jpg\n\n### 3. The Bird (This is from Millie Marotta's tropical wonderland book)\nhttps://i.imgsafe.org/34ea9ca68b.jpg\n\n### 4. Heart of Flowers\nhttps://i.imgsafe.org/34a0990260.jpg\n\n### 5. The TreeHouse (not yet finished)\nhttps://i.imgsafe.org/34eac272d9.jpg\n\n### Which one do you like best?\n### Do you like to color? \n\n### Maybe we should share our color pages here on Steem? :)", + "body_length": 819, + "cashout_time": "2016-09-29T06:24:03", + "category": "art", + "children": 12, + "created": "2016-08-28T20:35:27", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"coloring\",\"flowers\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/349cd53693.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-28T21:56:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 20814377075341, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "59.438 HBD", + "percent_steem_dollars": 10000, + "permlink": "do-you-like-to-colour", + "post_id": 782139, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "The Secret Garden: Do You Like to Colour?", + "title": "The Secret Garden: Do You Like to Colour?", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/do-you-like-to-colour" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "4335706062", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5263166562", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "975749378", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75198005302", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2323671963", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "299047962", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2059417973499", + "voter": "joseph" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "871348006", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1353285859", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "638772167330", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "403264769", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "204774010535", + "voter": "camilla" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2515681432", + "voter": "fkn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "267645652204", + "voter": "pal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130761399219", + "voter": "psylains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18287076517", + "voter": "acidyo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1455982374", + "voter": "coar" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "2501114696", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7301058574", + "voter": "givemeyoursteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "575997658790", + "voter": "anwenbaumeister" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9528121561", + "voter": "andread" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "86937942635", + "voter": "kimziv" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1384136862", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "304903995", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "898813284", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10960200839", + "voter": "aeico" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "34242054440", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66069097", + "voter": "steemswede" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "6443090237", + "voter": "furion" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "66726423", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "61172962", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5888231135", + "voter": "bitspace" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710838072", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1691522724", + "voter": "incomemonthly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1512341703", + "voter": "the-future" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3409568099", + "voter": "davidr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27552870183", + "voter": "royaltiffany" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44575603381", + "voter": "sauravrungta" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2035181510", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "156154164", + "voter": "valenttina" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "108022625", + "voter": "sergey44" + }, + { + "percent": "3700", + "reputation": 0, + "rshares": "10937960192", + "voter": "sisterholics" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18296635846", + "voter": "pixielolz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5889601079", + "voter": "nekromarinist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35763366050", + "voter": "rampant" + }, + { + "percent": "3200", + "reputation": 0, + "rshares": "401107146215", + "voter": "laonie" + }, + { + "percent": "2800", + "reputation": 0, + "rshares": "9854253757", + "voter": "myfirst" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "101852903978", + "voter": "somebody" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2283893459", + "voter": "darknet" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "3829646472", + "voter": "flysaga" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "21296995476", + "voter": "midnightoil" + }, + { + "percent": "3200", + "reputation": 0, + "rshares": "44908115073", + "voter": "xiaohui" + }, + { + "percent": "3300", + "reputation": 0, + "rshares": "1181562298", + "voter": "xiaokongcom" + }, + { + "percent": "4000", + "reputation": 0, + "rshares": "3520527889", + "voter": "xianjun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64019062", + "voter": "evgenyche" + }, + { + "percent": "3900", + "reputation": 0, + "rshares": "210843520", + "voter": "microluck" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "433283674", + "voter": "violino" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57556400", + "voter": "unnsmed" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "87766070", + "voter": "artsteemit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12178128873", + "voter": "mikemacintire" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2712232665", + "voter": "andressilvera" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2752605636", + "voter": "doitvoluntarily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53733343", + "voter": "rigaronib" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50129179", + "voter": "julianoneill" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "160815896", + "voter": "robotev" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://i.imgsafe.org/3221da5276.jpg\n\n### I made this drawing after an interesting LSD trip that changed me in many ways. I am not really sure what these spirits represent but they came from some kind of inhabited emptiness. I spent most of the trip in bed, in the darkness and silence and reorganized my brain. It felt like my universe opened itself up to become aware of even deeper parts of existence. \n\n### The next day I spent about 10 hours just drawing in silence without any plan, this is the result. I made it with markers and colored pencils. I hope you can find some wonder and courage in this drawing.", + "body_length": 613, + "cashout_time": "2016-09-28T19:12:30", + "category": "art", + "children": 15, + "created": "2016-08-28T17:50:24", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"lsd\",\"drawing\",\"\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/3221da5276.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-28T18:56:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 4918470309066, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "5.103 HBD", + "percent_steem_dollars": 10000, + "permlink": "my-lsd-spirits", + "post_id": 780174, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "My LSD Spirits. Art on Acid", + "title": "My LSD Spirits. Art on Acid", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/my-lsd-spirits" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "40423696280163", + "voter": "blocktrades" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "651547610677", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21742912981", + "voter": "dedriss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "85420329595", + "voter": "edgeland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5443852086", + "voter": "nastrom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "78050821526", + "voter": "easteagle13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "213132133414", + "voter": "camilla" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "3018562528", + "voter": "fkn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1500103052", + "voter": "coar" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "2501114696", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9697923395", + "voter": "zebbra2014" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7301058574", + "voter": "givemeyoursteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "49453012712", + "voter": "kus-knee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "590098544857", + "voter": "anwenbaumeister" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9718683992", + "voter": "andread" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1384136862", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "317878634", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "898813284", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10960200839", + "voter": "aeico" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "35279692453", + "voter": "r4fken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66067104", + "voter": "steemswede" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "6442551945", + "voter": "furion" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "80065727", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "73401574", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "710768293", + "voter": "steem1653" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2867794061", + "voter": "sveokla" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7946264179", + "voter": "deviedev" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8884342752", + "voter": "blinova" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1596360687", + "voter": "the-future" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3477759461", + "voter": "davidr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2031261689", + "voter": "lostnuggett" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2442012464", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "89901345", + "voter": "tabata" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "44571861626", + "voter": "healthyrecipes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7333711396", + "voter": "beanz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3064339400", + "voter": "jillstein2016" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62738681", + "voter": "evgenyche" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "916860564", + "voter": "gretepe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1719235215", + "voter": "bledarus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "564194019", + "voter": "ashwim" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "489866165", + "voter": "levycore" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46111352781", + "voter": "albensilverberg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4743553049", + "voter": "craigwilliamz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56447612", + "voter": "abanks1000" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2339728327", + "voter": "seva" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "368214925", + "voter": "eight-rad" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "21537535238", + "voter": "luminousvisions" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2712232665", + "voter": "andressilvera" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2752605636", + "voter": "doitvoluntarily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "525563862", + "voter": "edgarsart" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52182445", + "voter": "alina1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52794249", + "voter": "doggnostic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52521499", + "voter": "jenny-talls" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52332195", + "voter": "post-successful" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50125683", + "voter": "granddady" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50124642", + "voter": "senpai30" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50056278", + "voter": "anns" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "938220198", + "voter": "linny" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "
https://i.imgsafe.org/31a4097d43.jpg
\n\n### Zendoodles are fun and relaxing to make and does not take much time or skill. I like drawing them while listening to lectures to help my brain process information easier. I made this one with markers and gel pens. I hope you like it :)", + "body_length": 294, + "cashout_time": "2016-09-28T21:19:57", + "category": "art", + "children": 14, + "created": "2016-08-28T17:22:42", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"art\",\"zendoodle\",\"drawing\",\"\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/31a4097d43.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-28T17:22:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 42379040615951, + "parent_author": "", + "parent_permlink": "art", + "pending_payout_value": "222.752 HBD", + "percent_steem_dollars": 10000, + "permlink": "zendoodle-drawing", + "post_id": 779857, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Zendoodle Drawing", + "title": "Zendoodle Drawing", + "total_payout_value": "0.000 HBD", + "url": "/art/@camilla/zendoodle-drawing" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "683847433191", + "voter": "barrie" + }, + { + "percent": "100", + "reputation": 0, + "rshares": "28860495550", + "voter": "anonymous" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1458371301057", + "voter": "silver" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3345680944130", + "voter": "silversteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16879726792", + "voter": "fury" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32975758639", + "voter": "ihash" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "833000682841", + "voter": "ihashfury" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2474667874", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3003831514", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "562780317", + "voter": "bunny" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42511716379", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1326410513", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "170827956", + "voter": "moon" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58653028106", + "voter": "jason" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1018686257991", + "voter": "boombastic" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "133122969670", + "voter": "mrs.agsexplorer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9360147548", + "voter": "bingo-0" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2377987129", + "voter": "bingo-1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "497540834", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "756497537", + "voter": "daniel.pan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "650035765683", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "230342766", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "77130343250", + "voter": "easteagle13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "212975452822", + "voter": "camilla" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18922786616", + "voter": "ninzacode" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "3039393043", + "voter": "fkn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28296664166", + "voter": "thedarkestplum" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "130745414900", + "voter": "psylains" + }, + { + "percent": "2100", + "reputation": 0, + "rshares": "6533369417", + "voter": "acidyo" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1802569172", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75065790", + "voter": "akaninyene-etuk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "107356674966", + "voter": "kenny-crane" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6090874010", + "voter": "kennyskitchen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "45157199110", + "voter": "kus-knee" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "702883755660", + "voter": "anwenbaumeister" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9525351076", + "voter": "andread" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "42416476585", + "voter": "treeshaface" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1184197459", + "voter": "alexft" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "272053813", + "voter": "ales" + }, + { + "percent": "2100", + "reputation": 0, + "rshares": "15621109400", + "voter": "venuspcs" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "328582197", + "voter": "helle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287300396", + "voter": "sonyanka" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55749238572", + "voter": "sonzweil" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "810635797", + "voter": "gidlark" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "96608292719", + "voter": "rubybian" + }, + { + "percent": "2100", + "reputation": 0, + "rshares": "1911037334", + "voter": "getssidetracked" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "193683835", + "voter": "eleny" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "7625139986", + "voter": "furion" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "80727592", + "voter": "ch0c0latechip" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "74011710", + "voter": "doge4lyf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5887644206", + "voter": "bitspace" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1932241518", + "voter": "incomemonthly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "28142586562", + "voter": "diana.catherine" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10683249473", + "voter": "mun" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8989925029", + "voter": "warrensteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2536619358", + "voter": "imp3" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "550614299", + "voter": "qonq99" + }, + { + "percent": "1000", + "reputation": 0, + "rshares": "2447903423", + "voter": "positive" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1050846422", + "voter": "politicasan2" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "25012318449", + "voter": "anca3drandom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "221679491", + "voter": "alex.chien" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5009584219", + "voter": "pixielolz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2448936788", + "voter": "sykochica" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "20109765764", + "voter": "laoyao" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "31034465046", + "voter": "persianqueen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "83638970", + "voter": "xerneas" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "17235879497", + "voter": "velourex" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2957848839", + "voter": "oflyhigh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "525392335", + "voter": "iaco" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "62362897", + "voter": "gretepe" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "722557178", + "voter": "chinadaily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "413471359", + "voter": "anarchyhasnogods" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "328935828", + "voter": "runridefly" + }, + { + "percent": "0", + "reputation": 0, + "rshares": "137701110", + "voter": "krnel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1821534745", + "voter": "metalbrushes" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1790641383", + "voter": "steempowerwhale" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50431792", + "voter": "stardust" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "#### There was a lot of students, more than 200 and mostly girls. They are all western, privileged straight A students just out of highschool. Most of them chose psychology because it is the most intriguing subject that is still sensible and useful to society. \n\nhttps://i.imgsafe.org/c75a36832c.jpg\n\n#### How many of us will make it? Only time can tell. The first ones to fall will be those who just realized that psychology is not at all what they thought it was. Soon those who can't read english will disappear. (The books and tests are in english) Then the undisciplined and lazy ones will be gone and last to fall will be the scared and the doubtful. I can already see it in their eyes, I'm one of them. Somehow I always pull through. What I lack in confidence I make up for in the ability to push myself. \nhttps://i.imgsafe.org/c75a75be50.jpg\n\n#### We have to pass 6 out of nine multiple choice test to be allowed to take the exam. On the exam we have to answer 6 out of seven questions in 6 hours. Two of them will be about the history of psychology. \n\n#### The curriculum consist of one giant brick of a book with 900 pages. We have to read it all and remember everything. Then there is one history book, it is not so big and not as important. There is also a number of articles. I assume that I will have to spend at least 3 hours a day with my psychology studies to get a good grade. I can do this!\n\nhttps://i.imgsafe.org/c71a9983e3.jpg\n### The main book Thankfully it has a lot of good illustrations and pictures in it and it is very organised and well written. \nhttps://i.imgsafe.org/c71cf8d3d8.jpg\n\n### The history book is in Norwegian, which makes it a bit easier. \nhttps://i.imgsafe.org/c72195f224.jpg\n\n#### Before the lecture I took some time to make a healthy breakfast, Avocadoes and Tomatoes with olive oil, salt, pepper balsamic and some bread. It served me well today. \nhttps://i.imgsafe.org/c717cebc5f.jpg\n\n#### The road from the subway to the psychological institute is a beautiful walk through a field with a great view of the sunny sky. It made me feel optimistic and calm.\nhttps://i.imgsafe.org/c75a1aed08.jpg\n\n### The institute is located by a psychiatrical hospital, on the outskirts of campus. \nhttps://i.imgsafe.org/c75a2edf50.jpg\n\n### We have well known and highly competent psychology professors in the lectures. The one we we had today was this guy: \nhttp://www.sv.uio.no/psi/personer/vit/rolfreb/rolfreb.jpg \n#### Rolf Reber from Germany. He is a professor in cognitive psychology and have also written some articles about emotions and aesthetics according to the university website. He was funny and interesting to listen to. He talked about the usefulness of psychology and the scientific methods. He also gave us a lot of practical information and talked about interesting psychological phenomenons like how astrology can trick us into reading our horoscope and many other exiting things.\n\n### My \u201cnotes\u201d \n\nhttps://i.imgsafe.org/c727fedbe4.jpg\nhttps://i.imgsafe.org/c725451d1c.jpg\n\n#### I also talked to a few of the students I sat next too. One girl had finally gotten into the profession studies to become an actual working psychologist after 3 years of hard work to get high enough grades. You need to have A in all exams to get into psychology profession studies. Thankfully the pressure is not as high for a useless philosophy student.\n\n### I hope you enjoyed taking a look inside the life of a university student. I will keep posting about my life at Uni. so follow me if you find it interesting.", + "body_length": 3540, + "cashout_time": "2016-09-23T18:49:57", + "category": "university", + "children": 14, + "created": "2016-08-23T16:24:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"university\",\"lecture\",\"psychology\",\"student\",\"life\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/c75a36832c.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-23T16:35:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 10069273291390, + "parent_author": "", + "parent_permlink": "university", + "pending_payout_value": "15.906 HBD", + "percent_steem_dollars": 10000, + "permlink": "my-first-psychology-lecture", + "post_id": 720282, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "My first Psychology Lecture", + "title": "My first Psychology Lecture", + "total_payout_value": "0.000 HBD", + "url": "/university/@camilla/my-first-psychology-lecture" + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_last_permlink.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_last_permlink.pat.json new file mode 100644 index 00000000..0dd5da77 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_last_permlink.pat.json @@ -0,0 +1,71 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "3196109703901", + "voter": "wackou" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "37503630300", + "voter": "val" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "73896115956", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "569159751", + "voter": "gregory-f" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "536057250", + "voter": "camilla" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381265652", + "voter": "murh" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://i.imgsafe.org/f9e5de3.jpg", + "body_length": 33, + "cashout_time": "1969-12-31T23:59:59", + "category": "cute", + "children": 1, + "created": "2016-05-11T21:20:24", + "curator_payout_value": "0.965 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-23T22:07:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 3308995932810, + "parent_author": "", + "parent_permlink": "cute", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "ready-for-action", + "post_id": 3706, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Ready for Action!", + "title": "Ready for Action!", + "total_payout_value": "0.966 HBD", + "url": "/cute/@camilla/ready-for-action" + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_permlink.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_permlink.pat.json new file mode 100644 index 00000000..aff83dcb --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_permlink.pat.json @@ -0,0 +1,538 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "489081430", + "voter": "joelinux" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://i.imgsafe.org/a0e5e6f13a.jpg", + "body_length": 36, + "cashout_time": "1969-12-31T23:59:59", + "category": "cute", + "children": 0, + "created": "2016-05-28T21:32:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-28T21:32:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 489081430, + "parent_author": "", + "parent_permlink": "cute", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "do-you-mind-if-we-play-in-your-puddle", + "post_id": 12586, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "do you mind if we play in your puddle?", + "title": "do you mind if we play in your puddle?", + "total_payout_value": "0.000 HBD", + "url": "/cute/@camilla/do-you-mind-if-we-play-in-your-puddle" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "665844693", + "voter": "dedriss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "527666714", + "voter": "nkdk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "389968370", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "346793439", + "voter": "edeer" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://s-media-cache-ak0.pinimg.com/564x/8e/02/52/8e0252437a2f976ec34fb3327446ad8d.jpg", + "body_length": 87, + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "created": "2016-05-28T21:11:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-28T21:11:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1930273216, + "parent_author": "", + "parent_permlink": "photography", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "magical-france", + "post_id": 12576, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "magical France", + "title": "magical France", + "total_payout_value": "0.000 HBD", + "url": "/photography/@camilla/magical-france" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "100592957071", + "voter": "pheonike" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "527666714", + "voter": "nkdk" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://s-media-cache-ak0.pinimg.com/564x/80/84/aa/8084aa603a42fd8b9d2db1f6c3f7c47e.jpg", + "body_length": 87, + "cashout_time": "1969-12-31T23:59:59", + "category": "cute", + "children": 0, + "created": "2016-05-28T21:08:45", + "curator_payout_value": "0.016 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-28T21:08:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 101120623785, + "parent_author": "", + "parent_permlink": "cute", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "playing-in-the-woods-with-a-best-friend", + "post_id": 12574, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "playing in the woods with a best friend", + "title": "playing in the woods with a best friend", + "total_payout_value": "0.016 HBD", + "url": "/cute/@camilla/playing-in-the-woods-with-a-best-friend" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "651972928", + "voter": "dedriss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "527666714", + "voter": "nkdk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "389968370", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "346793439", + "voter": "edeer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "239471612", + "voter": "brianj" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://i.imgsafe.org/a083624480.jpg", + "body_length": 36, + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 2, + "created": "2016-05-28T21:06:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-20T21:56:12", + "last_update": "2016-05-28T21:06:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 2155873063, + "parent_author": "", + "parent_permlink": "photography", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "a-sunset-in-china", + "post_id": 12573, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A sunset in China", + "title": "A sunset in China", + "total_payout_value": "0.000 HBD", + "url": "/photography/@camilla/a-sunset-in-china" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "2870231621033", + "voter": "complexring" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1805471669249", + "voter": "onceuponatime" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "411699139", + "voter": "himalayanguru" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "418121466", + "voter": "censor-this" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "a gentle yoga sequence\n\nhttps://i.imgsafe.org/a078123c2e.jpg", + "body_length": 60, + "cashout_time": "1969-12-31T23:59:59", + "category": "yoga", + "children": 0, + "created": "2016-05-28T20:58:54", + "curator_payout_value": "1.620 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-28T21:03:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 4676533110887, + "parent_author": "", + "parent_permlink": "yoga", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "how-to-unwind-after-a-long-day-of-steeming", + "post_id": 12570, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "How to unwind after a long day of steeming", + "title": "How to unwind after a long day of steeming", + "total_payout_value": "1.620 HBD", + "url": "/yoga/@camilla/how-to-unwind-after-a-long-day-of-steeming" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "5439811589838", + "voter": "fuzzyvest" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4579586234", + "voter": "officialfuzzy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "479299801", + "voter": "joelinux" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2103276766", + "voter": "tsugimoto" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://s-media-cache-ak0.pinimg.com/564x/d1/a2/9c/d1a29c92d6b74e1f3db7561d327f53e4.jpg", + "body_length": 87, + "cashout_time": "1969-12-31T23:59:59", + "category": "cute", + "children": 0, + "created": "2016-05-28T20:53:09", + "curator_payout_value": "2.054 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-28T20:53:09", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5446973752639, + "parent_author": "", + "parent_permlink": "cute", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "happy-puppies", + "post_id": 12564, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Happy Puppies!", + "title": "Happy Puppies!", + "total_payout_value": "2.054 HBD", + "url": "/cute/@camilla/happy-puppies" + }, + { + "active_votes": [], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://s-media-cache-ak0.pinimg.com/564x/82/30/12/823012732e2812d45ade3af57b37cec0.jpg", + "body_length": 87, + "cashout_time": "1969-12-31T23:59:59", + "category": "cute", + "children": 0, + "created": "2016-05-28T20:52:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-26T03:00:03", + "last_update": "2016-05-28T20:52:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 0, + "parent_author": "", + "parent_permlink": "cute", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "im-think-this-box-is-getting-smaller", + "post_id": 12563, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Im think this box is getting smaller", + "title": "Im think this box is getting smaller", + "total_payout_value": "0.000 HBD", + "url": "/cute/@camilla/im-think-this-box-is-getting-smaller" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "111503304415", + "voter": "clains" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "411699139", + "voter": "himalayanguru" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "351024347", + "voter": "jerome-colley" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "381671171", + "voter": "murh" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://s-media-cache-ak0.pinimg.com/564x/4c/68/55/4c6855155fb1a0b38cf1568d8c81d705.jpg", + "body_length": 87, + "cashout_time": "1969-12-31T23:59:59", + "category": "cute", + "children": 0, + "created": "2016-05-28T18:05:57", + "curator_payout_value": "0.018 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-28T18:05:57", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 112647699072, + "parent_author": "", + "parent_permlink": "cute", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "meanwile-in-japan", + "post_id": 12475, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "meanwile in Japan", + "title": "meanwile in Japan", + "total_payout_value": "0.018 HBD", + "url": "/cute/@camilla/meanwile-in-japan" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "5318926887842", + "voter": "fuzzyvest" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2654899672586", + "voter": "abit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72498800", + "voter": "officialinfotech" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "471074322", + "voter": "germanaure" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "444862773", + "voter": "ned-reddit-login" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "360580581", + "voter": "cryptopuffin" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "414859968", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "355638524", + "voter": "viet-ngo" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "402032558", + "voter": "dke" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "346793439", + "voter": "edeer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "10078649525", + "voter": "ossama-benjohn" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "https://s-media-cache-ak0.pinimg.com/564x/84/2d/e6/842de617c66f5b9d86e370aa26e55a17.jpg", + "body_length": 87, + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "created": "2016-05-28T15:04:45", + "curator_payout_value": "3.823 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-03T00:00:06", + "last_update": "2016-05-28T15:04:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 7986773550918, + "parent_author": "", + "parent_permlink": "photography", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "from-a-japanese-garden", + "post_id": 12368, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "From a Japanese garden", + "title": "From a Japanese garden", + "total_payout_value": "3.824 HBD", + "url": "/photography/@camilla/from-a-japanese-garden" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "734325162", + "voter": "jsteck" + } + ], + "author": "camilla", + "author_reputation": 0, + "beneficiaries": [], + "body": "The vail of ignorance; If you knew nothing about where you would end up, what kind of society would it feel safe to enter?\n\nhttps://www.youtube.com/watch?v=5-JQ17X6VNg", + "body_length": 167, + "cashout_time": "1969-12-31T23:59:59", + "category": "philosophy", + "children": 0, + "created": "2016-05-28T13:19:18", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-26T03:00:03", + "last_update": "2016-05-28T13:19:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 734325162, + "parent_author": "", + "parent_permlink": "philosophy", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "rawls-a-theory-of-justice", + "post_id": 12318, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Rawls: A theory of justice", + "title": "Rawls: A theory of justice", + "total_payout_value": "0.000 HBD", + "url": "/philosophy/@camilla/rawls-a-theory-of-justice" + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_permlink_date.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_permlink_date.pat.json new file mode 100644 index 00000000..e25eca89 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date_author_permlink_date.pat.json @@ -0,0 +1,1547 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "2335990917918", + "voter": "badassmother" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2374680551", + "voter": "konelectric" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72755674621", + "voter": "tosch" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1432454904", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8420248064", + "voter": "simoneighties" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "411889362", + "voter": "steemswede" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2787714775", + "voter": "kepo777" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1266265455", + "voter": "danny-g" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "482499113", + "voter": "keirb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7958977616", + "voter": "kristylynn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8003093919", + "voter": "fishborne" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24445755835", + "voter": "pinkisland" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "900912535", + "voter": "bledarus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1596724666", + "voter": "carlyle" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "14423470799", + "voter": "canadian-coconut" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "103730281", + "voter": "alina1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "922306446", + "voter": "geke" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "442328750", + "voter": "mikkolyytinen" + } + ], + "author": "kristylynn", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

Hello Steemit friends,

\n

I have missed you even though I have intentionally been avoiding being connected for parts of the summer. No matter how much I like and enjoy all the internet has to offer I often find myself getting a little too wrapped up in it and need a break sometimes. Really its me not you...

\n

https://67.media.tumblr.com/1d3a70a5e553ba17aba3b3c54076dadd/tumblr_ocubh194Jq1u2s84ro3_1280.jpg

\n

So it is still summer where I live but already does not feel like it. Alberta is mean like that... you think its still hot and then all of a sudden its fall when it should still be summer. I always hope to get to the end of August before feeling cooler nights but that is always high hopes. My summer easy goingness is slowly floating away as I pull out my knitted sweaters. This is the time of year I try to run back to the mountains one more time, I call it chasing summer. There is a place called the Shushwaps in BC and when it is chilly here, you might still get one more really hot weekend there. 

\n

I have been a bit MIA on Steemit since I first started and got excited about it but this is why: I have been having an amazing summer! I actually have so many things to tell you guys about. So all adventures this year have been road trips and they all have landed me in places with some to no cellphone reception which as I said before it really feels amazing to disconnect but now it is time to share!

\n

https://68.media.tumblr.com/3d4d8c3e62f015a0cd7169d75f3c383a/tumblr_ocubh194Jq1u2s84ro2_1280.jpg

\n

Earlier this summer in July me and my boyfriend packed up my little car last minute and went to a place called Lussier Hot Springs, if you have not been here before it is amazing. There are three pools of hot water coming out of the mountain rocks. So the top pool being the hottest, flowing down into the second pool, then the bottom pool which is right by a river is the coolest. And yes! there is also a river! Mountains, trees, hot springs and a fresh cool river. I don't have my own picture of this, bringing my phone was too risky to me but I did find this one online to show you kind of what it looks like: 

\n

http://www.explore-mag.com/media/image/40575_max.jpg

\n

(www.explore-mag.com)

\n

Camping there is also amazing if you ever get the chance, there are two lakes up the road from the hot springs, here is a picture of the sunset right form our camp spot in the trees. It is a must go spot. Also the sunset that night was absolutely insane, I can't belive how bright that red/pink light is. 

\n

https://66.media.tumblr.com/2a68ba3a484a0d7ecac3d5a73f1dc662/tumblr_ocubh194Jq1u2s84ro4_1280.jpg

\n

Another really amazing thing that we have been doing this summer is finding spring water. Between the two lakes running down the mountain side was the best natural spring water I have ever had. Actually as soon as I drank some I felt like I had super powers. If you have access to water like this I definitely recommend it. There is a great website called findaspring.com and you can find your location and see if people have posted any in your area. So really for days straight we just drank spring water and went in the natural hot springs. The trip was cheap but that is a version of luxury to me! 

\n

https://66.media.tumblr.com/eb81971cc873c55cf87b08acc201abd3/tumblr_ocubh194Jq1u2s84ro7_1280.jpg

\n

Our second adventure was to a festival called Shambhala, it is in Salmo BC, Canada. If you have never been it is quite the experience and worth the trip (pun intended). We were there four nights, getting there on a Thursday just before everything started on the Friday. Shambhala is an electronic music festival and features some really amazing DJ's. My favourite part about this whole festival is how beautiful the land is, there are so many trees and a river you can swim in, you are free to just roam and be free in the woods. Besides music there are speakers, classes, art... so much art. If you need some inspiration this place is magical. It holds space for people to really be themselves and explore. Through the forest everything is lit up with lamps, tree lights, it is like your in a magical forest. I only went for the first time in 2015, and when we got in at night and walked into where all the stages were it was like I was on another planet. It was just magic and its the only way I can describe it. Next year is the 20th anniversary and if you want more information on the festival here is the link - http://www.shambhalamusicfestival.com/about/ 

\n

https://68.media.tumblr.com/b963fe8fee14240daabb228b0cb2ad8a/tumblr_ocubh194Jq1u2s84ro5_1280.jpg

\n

https://66.media.tumblr.com/9d6e9726fe79a6fd9b401fddb03ff830/tumblr_ocubh194Jq1u2s84ro6_1280.jpg

\n

I am hoping I have more interesting things to talk about more soon. I am planning a year of work and travel. The first part however I need a bit more secure is the work. Freelance photography is a tough gig sometimes! I will also bring my professional camera and take much better images :) everything in this post was my iphone since I didn't want to take my camera with me on that trip (however iphone photography is really fun!).  

\n

https://66.media.tumblr.com/4cdc4413aac311d3c4f05ec645fad50e/tumblr_ocubh194Jq1u2s84ro1_1280.jpg

\n

(iphone - 5am foggy morning walking back to sleep after a crazy night of shambhala)

\n

I hope everyone has been enjoying their summer and I am glad to be posting again. Please follow if you like my stuff and I look forward much more Steemit time with you all! 

\n

Always, 

\n

Kristylynn

\n", + "body_length": 5678, + "cashout_time": "2016-10-02T20:02:00", + "category": "life", + "children": 2, + "created": "2016-09-01T19:38:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"life\",\"travel\",\"steemit\",\"photography\"],\"image\":[\"https:\\/\\/67.media.tumblr.com\\/1d3a70a5e553ba17aba3b3c54076dadd\\/tumblr_ocubh194Jq1u2s84ro3_1280.jpg\",\"https:\\/\\/68.media.tumblr.com\\/3d4d8c3e62f015a0cd7169d75f3c383a\\/tumblr_ocubh194Jq1u2s84ro2_1280.jpg\",\"http:\\/\\/www.explore-mag.com\\/media\\/image\\/40575_max.jpg\",\"https:\\/\\/66.media.tumblr.com\\/2a68ba3a484a0d7ecac3d5a73f1dc662\\/tumblr_ocubh194Jq1u2s84ro4_1280.jpg\",\"https:\\/\\/66.media.tumblr.com\\/eb81971cc873c55cf87b08acc201abd3\\/tumblr_ocubh194Jq1u2s84ro7_1280.jpg\",\"https:\\/\\/68.media.tumblr.com\\/b963fe8fee14240daabb228b0cb2ad8a\\/tumblr_ocubh194Jq1u2s84ro5_1280.jpg\",\"https:\\/\\/66.media.tumblr.com\\/9d6e9726fe79a6fd9b401fddb03ff830\\/tumblr_ocubh194Jq1u2s84ro6_1280.jpg\",\"https:\\/\\/66.media.tumblr.com\\/4cdc4413aac311d3c4f05ec645fad50e\\/tumblr_ocubh194Jq1u2s84ro1_1280.jpg\"],\"links\":[\"http:\\/\\/www.shambhalamusicfestival.com\\/about\\/\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-01T22:16:36", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 2484719645610, + "parent_author": "", + "parent_permlink": "life", + "pending_payout_value": "1.561 HBD", + "percent_steem_dollars": 10000, + "permlink": "hot-springs-and-music-festivals-but-now-it-s-time-to-get-back-to-steemit", + "post_id": 827153, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hot springs & Music Festivals but now it's time to get back to Steemit!", + "title": "Hot springs & Music Festivals but now it's time to get back to Steemit!", + "total_payout_value": "0.000 HBD", + "url": "/life/@kristylynn/hot-springs-and-music-festivals-but-now-it-s-time-to-get-back-to-steemit" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "390536242", + "voter": "akaninyene-etuk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "151497425", + "voter": "steemswede" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2120735569", + "voter": "jbouchard12" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "482499113", + "voter": "keirb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8118021669", + "voter": "kristylynn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7433263144", + "voter": "webdeals" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56716182", + "voter": "sammie" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5306204963", + "voter": "daveks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "977135407", + "voter": "matthewtiii" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56490705", + "voter": "bobbins" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1589831048", + "voter": "doitvoluntarily" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56326491", + "voter": "steemafon" + } + ], + "author": "kristylynn", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

I have been doing so much driving in BC Canada this summer I had to share this once for the contest. I almost died when I didn't have my professional camera on me for this, its just too beautiful.

\n

http://67.media.tumblr.com/795b5b062abdc52a141feb90fa6bfae1/tumblr_ocjka4EIR51u2s84ro1_1280.jpg

\n

This photo was taken with my iphone 6, the clouds were legit that colour at sunset. It was absolutely amazing. If you have the change to visit Lussier hot springs in BC Canada do it. This is the lake just up the road where you can camp and there is another lake just five minutes further called White Swan Lake. The drive here is a bit dangerous, up a mountain cliff with a skinny road and no side rails...but besides that its magical! This was my camp view no joke... travelling for cheap and still in paradise. :)

\n

Always,

\n

Kristylynn

\n", + "body_length": 877, + "cashout_time": "2016-09-27T07:15:54", + "category": "steemitphotochallenge", + "children": 2, + "created": "2016-08-27T00:19:33", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\",\"photography\",\"life\"],\"image\":[\"http:\\/\\/67.media.tumblr.com\\/795b5b062abdc52a141feb90fa6bfae1\\/tumblr_ocjka4EIR51u2s84ro1_1280.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-27T00:19:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 26739257958, + "parent_author": "", + "parent_permlink": "steemitphotochallenge", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "steemitphotochallenge-entry-6-alces-lake", + "post_id": 761479, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "SteemitPhotoChallenge Entry #6 - Alces Lake", + "title": "SteemitPhotoChallenge Entry #6 - Alces Lake", + "total_payout_value": "0.000 HBD", + "url": "/steemitphotochallenge/@kristylynn/steemitphotochallenge-entry-6-alces-lake" + }, + { + "active_votes": [ + { + "percent": "4800", + "reputation": 0, + "rshares": "293675242118", + "voter": "piedpiper" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "124081187968", + "voter": "jamtaylor" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1448580965", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "82052119747", + "voter": "herzmeister" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "525251187", + "voter": "mammasitta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50146680", + "voter": "steemswede" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "12010263700", + "voter": "lovenugz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "119241631117", + "voter": "nabilov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11073002045", + "voter": "tinyhomeliving" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9306133389", + "voter": "artific" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "492149095", + "voter": "keirb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7955394044", + "voter": "kristylynn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "578326251", + "voter": "ace108" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6426002041", + "voter": "comealong" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3457475929", + "voter": "veralynn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "122124538", + "voter": "harrycoins" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61296223", + "voter": "strangedays" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54599625", + "voter": "violino" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53194317", + "voter": "landslide" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55214873", + "voter": "mutsima" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50360303", + "voter": "pitrich" + } + ], + "author": "kristylynn", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

I choose wish.

\n

https://66.media.tumblr.com/a2b73dbb8cc78711a6266a5ab3048a28/tumblr_obtl4aQA7k1u2s84ro1_1280.jpg

\n

Sigma 50mm | 1.4 | Canon 6D

\n

Always,

\n

Kristylynn

\n", + "body_length": 208, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 4, + "created": "2016-08-12T23:31:48", + "curator_payout_value": "0.086 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\",\"photography\",\"steemit\"],\"image\":[\"https:\\/\\/66.media.tumblr.com\\/a2b73dbb8cc78711a6266a5ab3048a28\\/tumblr_obtl4aQA7k1u2s84ro1_1280.jpg\"]}", + "last_payout": "2016-09-12T12:59:30", + "last_update": "2016-08-12T23:31:48", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 672769696155, + "parent_author": "", + "parent_permlink": "steemitphotochallenge", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "a-weed-or-a-wish-or-steemitphotochallenge-entry-close-up", + "post_id": 579212, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A weed or a wish? | SteemitPhotoChallenge Entry - Close up", + "title": "A weed or a wish? | SteemitPhotoChallenge Entry - Close up", + "total_payout_value": "0.542 HBD", + "url": "/steemitphotochallenge/@kristylynn/a-weed-or-a-wish-or-steemitphotochallenge-entry-close-up" + }, + { + "active_votes": [ + { + "percent": "100", + "reputation": 0, + "rshares": "14683731375", + "voter": "piedpiper" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "29419818426", + "voter": "james-show" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1448572185", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "525251187", + "voter": "mammasitta" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "111789029172", + "voter": "nabilov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "482499113", + "voter": "keirb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8114501925", + "voter": "kristylynn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "330929584", + "voter": "fubar-bdhr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "578326251", + "voter": "ace108" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1952492781", + "voter": "t3ran13" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53194317", + "voter": "landslide" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1516026558", + "voter": "jackgallenhall" + } + ], + "author": "kristylynn", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

I love this place. I was just in the mountains this week and visiting BC is my favourite. I didn't have my regular camera with me but managed to capture these guys in this beautiful lush forest with my iphone, I added a little effects in photoshop and done. 

\n

I hope you enjoy. :) Good luck everyone on this weeks challenge! 

\n

https://66.media.tumblr.com/8b817f1820fa41cf094c5c2189a44739/tumblr_obtjrmhtd51u2s84ro1_1280.jpg

\n

iphone 6 | Photoshop 

\n

Always,

\n

Kristylynn

\n", + "body_length": 534, + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 3, + "created": "2016-08-12T23:05:12", + "curator_payout_value": "0.027 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"photography\",\"steemitphotochallenge\",\"\"],\"image\":[\"https:\\/\\/66.media.tumblr.com\\/8b817f1820fa41cf094c5c2189a44739\\/tumblr_obtjrmhtd51u2s84ro1_1280.jpg\"]}", + "last_payout": "2016-09-12T12:33:48", + "last_update": "2016-08-12T23:14:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 170894372874, + "parent_author": "", + "parent_permlink": "photography", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "magical-mushrooms-in-shushwaps-bc-canada-steemitphotochallenge-entry-close-up", + "post_id": 578903, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Magical Mushrooms in Shushwaps BC Canada | SteemitPhotoChallenge Entry | Close up", + "title": "Magical Mushrooms in Shushwaps BC Canada | SteemitPhotoChallenge Entry | Close up", + "total_payout_value": "0.112 HBD", + "url": "/photography/@kristylynn/magical-mushrooms-in-shushwaps-bc-canada-steemitphotochallenge-entry-close-up" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "558919243", + "voter": "jazzycrypt" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "226914581", + "voter": "bitcointop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6165836224", + "voter": "cryptosi" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52009373", + "voter": "dimon14" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "352853894", + "voter": "keirb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8113888386", + "voter": "kristylynn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18628606536", + "voter": "mynewsteemit" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "173029724", + "voter": "hofman386" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3771690030", + "voter": "gmurph" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2353001966", + "voter": "thedailyhobbyist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "24212063", + "voter": "admin2017" + }, + { + "percent": "10", + "reputation": 0, + "rshares": "1247182", + "voter": "angevel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1248087", + "voter": "corax" + }, + { + "percent": "10", + "reputation": 0, + "rshares": "1218552", + "voter": "koolaidssss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50930729", + "voter": "landslide" + } + ], + "author": "kristylynn", + "author_reputation": 0, + "beneficiaries": [], + "body": "

Sometimes I ask myself, why did I choose this? What in my life brought me to this place where capturing images is my profession. Even though I have struggled so much why do I still love it?\u00a0

\n

Photography is something I can't live without. The ability to capture and create is thrilling! I love shooting, editing the images, connecting with people... I could go on and on. I actually sometimes think I like the people part of it more then all the technical photography mumbo jumbo, I just see the camera as a way to connect.\u00a0

\n

I am specifically drawn to people, if you look at any of my posts that is what I do for the most part. There is a magic in capturing someone, and in a way they may not see themselves. I specialize somewhere in the lifestyle, fashion, boudoir, portrait area...sometimes I am not sure exactly what to call it. My subjects are not professional models and nothing I have made has been for a commercial company. Not saying I would not love to do that but my focus is on your every day person. My goal is to create a concept, mood or theme and produce images where my client looks stunning while getting the vision and purpose for the shoot across. \u00a0Simple enough right? ...

\n

https://65.media.tumblr.com/3ce14701945fcf5daa3f1bc685a8c954/tumblr_ob37a4p73s1u2s84ro3_1280.jpg

\n

I had this awesome client (above), we called this her Beyonce shoot. She is in her 40's, she's a mom and said at this point in her life she feels fierce and she wants to express that. \u00a0It can be scary putting yourself out like this, getting your hair and makeup done, getting in front of the camera and then trusting that no matter how goofy you are feeling I am directing you properly. But she did it! When the shoot was done, and she had not even seen any pictures yet she went on and on about how empowered she felt and how excited she was that she did the session. Just the session itself and how she felt after was already worth it. It is like putting on a costume you have always wanted to wear for a day, or dress like and act out some kind of part of your personality that in your day to day life you may not be able to show. When she saw her images she was so excited and wanted to share them everywhere and talk about her experience! \u00a0(permission granted :) I never post things without consent).\u00a0

\n

https://67.media.tumblr.com/62deb177d11c15e6e860262726c568ce/tumblr_ob37a4p73s1u2s84ro1_1280.jpg

\n

I believe in making people feel beautiful, and finding beauty. As a photographer I think my job is to find beauty in everyone, the things no one sees or may not be looking at. How that light is touching someones cheek, or how their lips are slightly open and pouty and it looks perfect. What is the part of them that is amazing?\u00a0

\n
"Beauty, to me, is about being comfortable in your own skin. That, or a kick-ass red lipstick." - Gwyneth Paltrow
\n

For anyone who struggles in a profession you love I hear you. I battle with more then just trying to get my business going, what gear to use, what are popular photographers doing, etc. I am always trying to figure out why I am doing this and what value do I want to bring to people. At the end of the day it really does have to mean something to me at my very core, its like I want the people I shoot to understand that as well. I just want to make them feel really amazing and in a selfish way it makes me feel amazing too.\u00a0

\n

There is beauty in everyone, please just take a second to look.

\n

Always,

\n

Kristylynn

\n


", + "body_length": 3589, + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 13, + "created": "2016-07-29T18:39:51", + "curator_payout_value": "0.002 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"photography\",\"steemit\",\"life\",\"journey\"],\"image\":[\"https:\\/\\/65.media.tumblr.com\\/3ce14701945fcf5daa3f1bc685a8c954\\/tumblr_ob37a4p73s1u2s84ro3_1280.jpg\",\"https:\\/\\/67.media.tumblr.com\\/62deb177d11c15e6e860262726c568ce\\/tumblr_ob37a4p73s1u2s84ro1_1280.jpg\"]}", + "last_payout": "2016-08-29T06:57:09", + "last_update": "2016-07-29T18:41:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 40475606570, + "parent_author": "", + "parent_permlink": "photography", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-art-of-making-people-feel-beautiful-through-photography", + "post_id": 340066, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Making people feel beautiful through photography", + "title": "Making people feel beautiful through photography", + "total_payout_value": "0.061 HBD", + "url": "/photography/@kristylynn/the-art-of-making-people-feel-beautiful-through-photography" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "111808947", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52009373", + "voter": "dimon14" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "345935190", + "voter": "keirb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8113888386", + "voter": "kristylynn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2246022524", + "voter": "shortcut" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4068547616", + "voter": "gmurph" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "19114786", + "voter": "admin2017" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1248087", + "voter": "corax" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "27823496", + "voter": "puttyswag" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50930729", + "voter": "landslide" + } + ], + "author": "kristylynn", + "author_reputation": 0, + "beneficiaries": [], + "body": "

Hello everyone!

\n

Here is my #steemitphotochallenge entry. Thanks for taking the time to look :)

\n

Gear used: Canon 6D body - 50mm 1.4 - photoshop.\u00a0

\n

https://66.media.tumblr.com/1c4b700b5be0bfcad37e843746438d0b/tumblr_ob338yeUjC1u2s84ro1_540.jpg

\n
\u22c5\u22c5\u25bd\u22c5\u22c5 I will never be a morning person for the moon and I are too much in love \u22c5\u22c5\u25bd\u22c5\u22c5 christopher poindexter
\n

I am a portrait photographer from Edmonton, AB, Canada. This is my work :) You can check me out on facebook.com/kristylynnphotos or instagram.com/imkristylynn.\u00a0

\n


\n

Always,\u00a0

\n

Kristylynn

\n


", + "body_length": 632, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 4, + "created": "2016-07-29T16:14:54", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\",\"photography\",\"steemit\"],\"image\":[\"https:\\/\\/66.media.tumblr.com\\/1c4b700b5be0bfcad37e843746438d0b\\/tumblr_ob338yeUjC1u2s84ro1_540.jpg\"]}", + "last_payout": "2016-08-29T05:02:06", + "last_update": "2016-07-29T18:57:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 15037329134, + "parent_author": "", + "parent_permlink": "steemitphotochallenge", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "daydreaming-of-the-moon-or-steemitphotochallenge-entry", + "post_id": 337480, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Daydreaming of the Moon \u22c5\u22c5\u25bd\u22c5\u22c5 | \u22c5\u22c5\u25bd\u22c5\u22c5SteemitPhotoChallenge Entry", + "title": "Daydreaming of the Moon \u22c5\u22c5\u25bd\u22c5\u22c5 | \u22c5\u22c5\u25bd\u22c5\u22c5SteemitPhotoChallenge Entry", + "total_payout_value": "0.024 HBD", + "url": "/steemitphotochallenge/@kristylynn/daydreaming-of-the-moon-or-steemitphotochallenge-entry" + }, + { + "active_votes": [ + { + "percent": "200", + "reputation": 0, + "rshares": "56516919", + "voter": "soupernerd" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "95418987", + "voter": "luisucv34" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7953453249", + "voter": "kristylynn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "23022526", + "voter": "yarly8" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "4255479", + "voter": "emilyelizabeth" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "55437035", + "voter": "weenis" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50565445", + "voter": "culture" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1277435", + "voter": "steemitlove" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1277349", + "voter": "steemlove" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4091564004", + "voter": "mrweed" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1690483", + "voter": "steemit.tips" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1237709", + "voter": "curls4life" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1236422", + "voter": "alniskobs" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1236413", + "voter": "amboyst" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1236404", + "voter": "cheremet" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1236335", + "voter": "anarchypory" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1236301", + "voter": "angevel" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1236295", + "voter": "backetri" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1236287", + "voter": "chonesta" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1234186", + "voter": "countrytalented" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1234178", + "voter": "cozyone123" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1234164", + "voter": "crumaner" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1234153", + "voter": "daysaiyan" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1234104", + "voter": "daysmega" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1234097", + "voter": "daysmega1421" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1234087", + "voter": "dotersvilic" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1234073", + "voter": "eternalabove" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1228844", + "voter": "sugarfromhell" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1228835", + "voter": "gaspot" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1228825", + "voter": "forgetthefallen" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1228817", + "voter": "eleiminer" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1228746", + "voter": "etccrap" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1228720", + "voter": "abctrade" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1228697", + "voter": "yandra86" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1228680", + "voter": "hxclife" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1228671", + "voter": "rottennasty" + }, + { + "percent": "200", + "reputation": 0, + "rshares": "1228658", + "voter": "bignastywhale" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59854448", + "voter": "azas" + } + ], + "author": "kristylynn", + "author_reputation": 0, + "beneficiaries": [], + "body": "test", + "body_length": 4, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 2, + "created": "2016-07-28T04:16:45", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"test\",\"steemit\"]}", + "last_payout": "2016-08-27T16:23:51", + "last_update": "2016-07-28T04:56:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 12426386060, + "parent_author": "", + "parent_permlink": "steemit", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "i-am-pretty-and-on-steemit-so-deal-with-it", + "post_id": 306422, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "test", + "title": "test", + "total_payout_value": "0.026 HBD", + "url": "/steemit/@kristylynn/i-am-pretty-and-on-steemit-so-deal-with-it" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "24544113468", + "voter": "fkn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "36381488866", + "voter": "asch" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "793750683", + "voter": "itay" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "120711878136", + "voter": "mauricemikkers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1865673220", + "voter": "allyourbase" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "585960020", + "voter": "balyyu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "287449389", + "voter": "dicov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3450427533", + "voter": "taurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13605586980", + "voter": "amirali" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "352853894", + "voter": "keirb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "8112522314", + "voter": "kristylynn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1955387677", + "voter": "sanbir" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "74667916", + "voter": "ace108" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2978017196", + "voter": "darkb4dawn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "141285903", + "voter": "mattyfu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "140801290", + "voter": "cybercodetwins" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "47947045", + "voter": "leagues" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "72999358", + "voter": "adrianakgb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1339112673", + "voter": "timcliff" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "306940918", + "voter": "question-answers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57477756", + "voter": "landslide" + } + ], + "author": "kristylynn", + "author_reputation": 0, + "beneficiaries": [], + "body": "

https://65.media.tumblr.com/94f52849f35cd84cc9b5b750a3265140/tumblr_ob0034lNYs1u2s84ro1_1280.jpg

\n

Ok I have to say I just couldn't help myself and I hope this brought a chuckle. Was this actually intended? I figured the Steemit waves were steam right?\u00a0

\n

\u00a0I was reading @the-aliens post - https://steemit.com/whales/@the-alien/whales-from-a-strictly-extraterrestrial-point-of-view (awesome post btw) and when I saw the whale image at the top this idea just shot into my head.\u00a0

\n

\u00a0All this talk about Steemit whales and now all I can see it whales!\u00a0

\n

Just made by me in photoshop.

\n

Always,

\n

Kristylynn

", + "body_length": 658, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemit", + "children": 14, + "created": "2016-07-28T00:03:18", + "curator_payout_value": "0.099 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"steemit\",\"whales\",\"\"],\"users\":[\"the-aliens\"],\"image\":[\"https:\\/\\/65.media.tumblr.com\\/94f52849f35cd84cc9b5b750a3265140\\/tumblr_ob0034lNYs1u2s84ro1_1280.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/whales\\/@the-alien\\/whales-from-a-strictly-extraterrestrial-point-of-view\"]}", + "last_payout": "2016-08-27T12:50:21", + "last_update": "2016-07-28T00:03:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 217806342235, + "parent_author": "", + "parent_permlink": "steemit", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "look-closer-at-the-steemit-logo", + "post_id": 302925, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Look closer at the Steemit logo!", + "title": "Look closer at the Steemit logo!", + "total_payout_value": "0.388 HBD", + "url": "/steemit/@kristylynn/look-closer-at-the-steemit-logo" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "5848726638925", + "voter": "xeldal" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5929963420500", + "voter": "roadscape" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3674695654", + "voter": "boy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "5941893351", + "voter": "bue-witness" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "78847365173", + "voter": "bue" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2626968444", + "voter": "mini" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "972259286", + "voter": "healthcare" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16349123464", + "voter": "dedriss" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "457316001", + "voter": "helen.tan" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "409770163537", + "voter": "void" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "18037425263", + "voter": "joelinux" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "364180471390", + "voter": "cyber" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60719596", + "voter": "akaninyene-etuk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "33664123578", + "voter": "shelly-dawson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "13223895201", + "voter": "justtryme90" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "125416109597", + "voter": "schro" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "181472480", + "voter": "ben99" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "830463816", + "voter": "erik-prestinary" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "206761033", + "voter": "ardina" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3415063843", + "voter": "taurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4233925926", + "voter": "q00p" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "37554494", + "voter": "delik" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "4107508474", + "voter": "peacekeeper" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "352853894", + "voter": "keirb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1779399496", + "voter": "opheliafu" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7941267307", + "voter": "kristylynn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1461445147", + "voter": "bagogong" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "513256936682", + "voter": "james212" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "11437297303", + "voter": "zaebars" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "795086162", + "voter": "e-steem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "16041416474", + "voter": "arcurus" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "40659190", + "voter": "culoemono" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "2978017196", + "voter": "darkb4dawn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "139080408", + "voter": "pulpably" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112961880", + "voter": "pkirk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "32828189", + "voter": "architecture" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "87934386", + "voter": "jasmine-l" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60102966", + "voter": "nikowonder" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59415008", + "voter": "lianbing" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "9046148", + "voter": "alexander1" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61786123", + "voter": "postlib" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7563301", + "voter": "fireballofdoom" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58675426", + "voter": "thedailyhobbyist" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60405060", + "voter": "snwolak" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60227170", + "voter": "john-packel" + } + ], + "author": "kristylynn", + "author_reputation": 0, + "beneficiaries": [], + "body": "

\u00a0https://67.media.tumblr.com/421ed2d8acc39dc7b0dfdd106a50a992/tumblr_oaxpnilENH1u2s84ro2_1280.jpg

\n

Being here for a week now I have learned a lot. I've learned more about crypto, other people, new ideas and I'm not going to lie I'm a bit addicted. Im just happy there is something that exists for content creators where you can share and speak about whatever you want. You can be unfiltered and not worried about "controversial content" because it will make someone else mad or "what if my following doesn't like this" or "is this appropriate for my personal brand". I am not saying don't focus on something specific if that's what you want to do, but for once I want the rules to be thrown out the window and be in a place where you can speak freely.\u00a0I feel bogged down by posts like "how to get more likes" "how to get more followers" "how to attract people to your whatever". Sure there is some skill in creating attention grabbing content but as soon as I begin to think about that I feel like the flow is turned off, like the tap into my thoughts and what I want to say is clogged full of doubt.\u00a0

\n

https://66.media.tumblr.com/30f19780eafa38de0a6223e662fccdb7/tumblr_oaxpnilENH1u2s84ro4_1280.jpg

\n


\nI don't want to only talk about photos because I am a photographer or only post pictures because that is what I am good at. I want to learn and try different things. You know what I am not good at? this! Writing and expressing my thoughts is scary for me! I have barely even written in a journal, my website blog is images and I write as little as I can. Honestly because it is something I have never done and I don't even know if I am good at it! I am also constantly afraid to write the wrong thing or not be able to properly express myself. The idea of blogging and not feeling like I have to fit into a certain niche or impress a specific audience to be popular is thrilling. I am not worried about censoring myself or my experience, I want to read about others with an open mind while they also speak freely, create and share ideas. Some will be liked my the masses and some won't and thats okay.\u00a0\u00a0

\n


\nMaybe I am out to lunch but if there is something I want Steemit to be I would like it to be is a place that feels like freedom. Freedom of opinions without consequences, and I'm not talking here about being a terrible person or posting awful hateful things. But if your mad let hear why, if you think this certain thing is the best thing ever then say why. I would love a place where I can read about people. On a level though that isn't covered by what you think you should do or what you think will be popular. I think sharing yourself has value. Who are you? What do you do? What knowledge do you have?\u00a0\u00a0

\n

https://67.media.tumblr.com/e09da9a5d8c25fdba7c9e2b7e1a9c551/tumblr_oaxpnilENH1u2s84ro1_1280.jpg

\n


\nWe are so used to being told no, or do it this way. How jealous do people get being on things like Instagram and you have 150 followers and how does that person have 25000. They must be so cool or have something I don't or whatever your thinking and then you feel bad about what you are doing or you just stop creating all together because you only got one thumbs up. Everything popular on there is all starting to look the same. Its a strange time and place we are in, but I think with something like Steemit we have more control over shaping what we want and creating support, or at least I hope so. I don't want the Kim Kardashians of the world to be top trending on here because they got butt lifts, or Buzzfeed telling me the top things guys like in girls, or and endless sea of memes. Make something yourself, speak about you, you are more interesting then all of that.\u00a0Im excited about where this can go lets be excited together. (Below I am trying to show a happy dance ;))

\n

https://67.media.tumblr.com/4718f307f9e474a51ec3a87898f2abbf/tumblr_oaxpnilENH1u2s84ro5_1280.jpg

\n


\nLike what you like, feel how you feel and speak about what really makes you tick. Art, money, technology... the sunset, the last book you read. Heck! We can learn so much from each others stories while supporting the things we really connect to. What is better then that? At the moment I am not sure. I hope you enjoyed reading and if you got this far I'd love to hear what you think.\u00a0\u00a0

\n


\nAlways,
\nKristylynn\u00a0

\n

https://65.media.tumblr.com/652de02a7164e87ddfd74b42226847b3/tumblr_oaxpnilENH1u2s84ro6_1280.jpg

", + "body_length": 4568, + "cashout_time": "1969-12-31T23:59:59", + "category": "life", + "children": 10, + "created": "2016-07-26T18:31:06", + "curator_payout_value": "19.061 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"life\",\"steemit\",\"photography\",\"writing\"],\"image\":[\"https:\\/\\/67.media.tumblr.com\\/421ed2d8acc39dc7b0dfdd106a50a992\\/tumblr_oaxpnilENH1u2s84ro2_1280.jpg\",\"https:\\/\\/66.media.tumblr.com\\/30f19780eafa38de0a6223e662fccdb7\\/tumblr_oaxpnilENH1u2s84ro4_1280.jpg\",\"https:\\/\\/67.media.tumblr.com\\/e09da9a5d8c25fdba7c9e2b7e1a9c551\\/tumblr_oaxpnilENH1u2s84ro1_1280.jpg\",\"https:\\/\\/67.media.tumblr.com\\/4718f307f9e474a51ec3a87898f2abbf\\/tumblr_oaxpnilENH1u2s84ro5_1280.jpg\",\"https:\\/\\/65.media.tumblr.com\\/652de02a7164e87ddfd74b42226847b3\\/tumblr_oaxpnilENH1u2s84ro6_1280.jpg\"]}", + "last_payout": "2016-08-26T11:04:03", + "last_update": "2016-07-26T18:47:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 13421759743942, + "parent_author": "", + "parent_permlink": "life", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "i-am-steemit-hear-me-roar-my-experience-so-far-on-steemit", + "post_id": 275441, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A place to speak freely | My experience so far on Steemit", + "title": "A place to speak freely | My experience so far on Steemit", + "total_payout_value": "57.719 HBD", + "url": "/life/@kristylynn/i-am-steemit-hear-me-roar-my-experience-so-far-on-steemit" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "144163477", + "voter": "bitcointop" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "631643035", + "voter": "rambogoham" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6541127185", + "voter": "marsresident" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "304292502", + "voter": "daf" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "332097783", + "voter": "keirb" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "7234652260", + "voter": "kristylynn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "84092581", + "voter": "kukuy" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "3041379264", + "voter": "darkb4dawn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "46670823", + "voter": "jinn" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55361096", + "voter": "janierson" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56520173", + "voter": "smartmoves20" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50930729", + "voter": "landslide" + } + ], + "author": "kristylynn", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

The first challenge is animals! No!!! That's one of the only things I really don't take photos of, well that and babies. However I guess it is good to snap some pictures of things you wouldn't normally. This may not be the most adventurous and original animal to photograph but I did interrupted my cats sweet and lazy life to get her to be my model. So in saying that here is my submission!
\n(40mm f4 Canon 6D with a bit of Lightroom edit)

\n

Animal Portrait:

\n

https://66.media.tumblr.com/d0886a11a01cadad1ebf54ff5aae0cdb/tumblr_oasredZds91u2s84ro2_1280.jpg

\n

I have to say it was fun, but what made me laugh most like the crazy cat lady I am was the pictures that didn't work. So I figured I would share some of those as well just for fun.

\n

Outtake #1: Cat trying to get away

\n

https://67.media.tumblr.com/af3166df59920a003cbecdbaff991c7f/tumblr_oasredZds91u2s84ro4_1280.jpg

\n

Outtake #2: Unimpressed cat

\n

https://66.media.tumblr.com/599134a1e1fb6e23cd089e1ba2a17ac4/tumblr_oasredZds91u2s84ro1_1280.jpg

\n

Outtake #3: I'm hungry and sleepy so f*ck off

\n

https://66.media.tumblr.com/8cfcc17b4a9e5a5e7d31a941cfb01db7/tumblr_oasredZds91u2s84ro3_1280.jpg

\n

By the way her name is Mika, I guess I should introduce her and not just call her cat. After all she did have a very important role and deserves some credit. Yah know I've always told her to get a job to help pay rent so I feel like this was just a long time coming and being a model isn't the worst gig.

\n

https://66.media.tumblr.com/11d08a7398512d87ae80464c85c5c44e/tumblr_oasredZds91u2s84ro5_1280.jpg

\n

I look forward to the next photo challenge. This was fun and a great way to get people involved and posting. What are you thinking next?! Please just don't say babies.

\n

Kristylynn xo
\n

\n", + "body_length": 1845, + "cashout_time": "1969-12-31T23:59:59", + "category": "steemitphotochallenge", + "children": 3, + "created": "2016-07-24T23:11:57", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"steemitphotochallenge\",\"photography\",\"steemit\"],\"image\":[\"https:\\/\\/66.media.tumblr.com\\/d0886a11a01cadad1ebf54ff5aae0cdb\\/tumblr_oasredZds91u2s84ro2_1280.jpg\",\"https:\\/\\/67.media.tumblr.com\\/af3166df59920a003cbecdbaff991c7f\\/tumblr_oasredZds91u2s84ro4_1280.jpg\",\"https:\\/\\/66.media.tumblr.com\\/599134a1e1fb6e23cd089e1ba2a17ac4\\/tumblr_oasredZds91u2s84ro1_1280.jpg\",\"https:\\/\\/66.media.tumblr.com\\/8cfcc17b4a9e5a5e7d31a941cfb01db7\\/tumblr_oasredZds91u2s84ro3_1280.jpg\",\"https:\\/\\/66.media.tumblr.com\\/11d08a7398512d87ae80464c85c5c44e\\/tumblr_oasredZds91u2s84ro5_1280.jpg\"]}", + "last_payout": "2016-08-24T23:28:18", + "last_update": "2016-07-24T23:14:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 18522930908, + "parent_author": "", + "parent_permlink": "steemitphotochallenge", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "project-cat-with-outtakes-or-steemit-photo-challenge", + "post_id": 241774, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Project Cat with Outtakes | Steemit Photo Challenge", + "title": "Project Cat with Outtakes | Steemit Photo Challenge", + "total_payout_value": "0.000 HBD", + "url": "/steemitphotochallenge/@kristylynn/project-cat-with-outtakes-or-steemit-photo-challenge" + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_blog.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_blog.pat.json deleted file mode 100644 index 7954c8dd..00000000 --- a/hivemind/tavern/tags_api_patterns/get_discussions_by_blog.pat.json +++ /dev/null @@ -1,640 +0,0 @@ -[ - { - "active_votes": [ - { - "percent": "100", - "reputation": 0, - "rshares": "375241", - "voter": "dantheman" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "886132", - "voter": "mr11acdee" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5100", - "voter": "steemit78" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1259167", - "voter": "anonymous" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "318519", - "voter": "hello" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "153384", - "voter": "world" - }, - { - "percent": "-100", - "reputation": 0, - "rshares": "-936400", - "voter": "ned" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59412", - "voter": "fufubar1" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "14997", - "voter": "anonymous1" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "1441", - "voter": "red" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "551390835500", - "voter": "liondani" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "82748", - "voter": "roadscape" - }, - { - "percent": "100", - "reputation": 0, - "rshares": "10772", - "voter": "xeroc" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7685088000", - "voter": "markopaasila" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "454510724", - "voter": "tshering-tamang" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "681946946", - "voter": "romangelsi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "504895891", - "voter": "dedmatvey" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "498863058", - "voter": "joelinux" - }, - { - "percent": "0", - "reputation": 0, - "rshares": "9590417", - "voter": "piranhax" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "473258270", - "voter": "ned-reddit-login" - }, - { - "percent": "3600", - "reputation": 0, - "rshares": "0", - "voter": "fernando-sanz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "425903066", - "voter": "gekko" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "381805870", - "voter": "gilang-ramadhan" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "392459059", - "voter": "kamvreto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "422984262", - "voter": "acidyo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "47179379651", - "voter": "tosch" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "7831667988", - "voter": "klye" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1019950749", - "voter": "coar" - }, - { - "percent": "1509", - "reputation": 0, - "rshares": "1746058458", - "voter": "murh" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "22639073725", - "voter": "drinkzya" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "hien-tran" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "742566481", - "voter": "patrick-g" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "40624969", - "voter": "ben99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1742755097", - "voter": "sunshinecrypto" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "108855472", - "voter": "kingtylervvs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "485112237", - "voter": "marinabogumil" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "917398502", - "voter": "decrypt" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5067187498", - "voter": "senseiteekay" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5154897955", - "voter": "r33drum" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "5033902237", - "voter": "cryptosi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1037079223", - "voter": "condra" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "233032838", - "voter": "jearson" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "240809500", - "voter": "tritium" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "123321995", - "voter": "allmonitors" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "226074637", - "voter": "artjedi" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "931542394", - "voter": "anduweb" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "2292983350", - "voter": "inertia" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "128561059", - "voter": "maximkichev" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "183438273", - "voter": "a9inchcock" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "266262926", - "voter": "desmonid" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "71498008", - "voter": "madhatting" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "23726644841", - "voter": "ubg" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3741408303", - "voter": "royaltiffany" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "131577259", - "voter": "gribgo" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "12371398765", - "voter": "deanliu" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "28907874049", - "voter": "orm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "528988007", - "voter": "qonq99" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "129537329", - "voter": "rd7783" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "615020728", - "voter": "slava" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "flyboyzombie" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "100102503", - "voter": "sictransitgloria" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "95219365", - "voter": "curator" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "232295871", - "voter": "dubovoy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "solos" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "96945805", - "voter": "creatorgalaxy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "99813231", - "voter": "trigonice29" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "blysards" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "3721016208", - "voter": "uwe69" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1279854", - "voter": "nigmat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "13974353753", - "voter": "magicmonk" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "4968585456", - "voter": "satoshifpv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "1660613178", - "voter": "naturalista" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "10847083143", - "voter": "metrox" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "18340928", - "voter": "bestmalik" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59563315", - "voter": "kolyan31" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "710989138", - "voter": "romancs" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59366614", - "voter": "luke490" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58762473", - "voter": "bro66" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "201822591", - "voter": "future24" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "58623688", - "voter": "mythras" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "56536509", - "voter": "imarealboy777" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "matrixdweller" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48299362", - "voter": "smartguylabcoat" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "59157099", - "voter": "mabiturm" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48283979", - "voter": "captainamerica" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54761612", - "voter": "edbriv" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "865125771", - "voter": "rittr" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "92614447", - "voter": "jelloducky" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52740989", - "voter": "tcstix" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "49467477", - "voter": "friedwater" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "57366185", - "voter": "denisdiaz" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "132070449", - "voter": "loganarchy" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "48811442", - "voter": "love-spirit-nerd" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "51549585", - "voter": "dikanevn" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "54017869", - "voter": "zelious" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "50129944", - "voter": "freebornangel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "53196086", - "voter": "f1111111" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "anomaly" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "52394017140", - "voter": "jack8831" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "buckland" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "0", - "voter": "goldmatters" - } - ], - "author": "steemit", - "author_reputation": 0, - "beneficiaries": [], - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "body_length": 224, - "cashout_time": "1969-12-31T23:59:59", - "category": "meta", - "children": 36, - "created": "2016-03-30T18:30:18", - "curator_payout_value": "0.756 HBD", - "depth": 0, - "json_metadata": "{}", - "last_payout": "2016-08-24T19:59:42", - "last_update": "2016-03-30T18:30:18", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 830053779138, - "parent_author": "", - "parent_permlink": "meta", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "firstpost", - "post_id": 1, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Welcome to Steem!", - "title": "Welcome to Steem!", - "total_payout_value": "0.942 HBD", - "url": "/meta/@steemit/firstpost" - } -] \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns/get_discussions_by_blog_tag.pat.json b/hivemind/tavern/tags_api_patterns/get_discussions_by_blog_tag.pat.json new file mode 100644 index 00000000..c73b02f1 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns/get_discussions_by_blog_tag.pat.json @@ -0,0 +1,1295 @@ +[ + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "13280126898", + "voter": "telos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "86856328", + "voter": "ruscion" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "64664952", + "voter": "pictures" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "261778278", + "voter": "darkminded153" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "151817331", + "voter": "juanmanavella" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n", + "body_length": 65, + "cashout_time": "2016-10-14T20:40:09", + "category": "bitcoin", + "children": 0, + "created": "2016-09-13T19:46:42", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"bitcoin\",\"internet\",\"computers\",\"economics\",\"funny\"],\"image\":[\"http:\\/\\/i.imgur.com\\/MYPzOtp.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-13T19:46:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 13845243787, + "parent_author": "", + "parent_permlink": "bitcoin", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "computer-web-to-change-billions-of-lives-yeah-right", + "post_id": 943172, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Computer 'Web' To Change Billions Of Lives (YEAH, RIGHT)", + "title": "Computer 'Web' To Change Billions Of Lives (YEAH, RIGHT)", + "total_payout_value": "0.000 HBD", + "url": "/bitcoin/@pictures/computer-web-to-change-billions-of-lives-yeah-right" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "1353041526", + "voter": "endgame" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52207362", + "voter": "reported" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "513140471", + "voter": "minnowsunited" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59002619", + "voter": "makaveli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1158012122", + "voter": "the-bitcoin-dood" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "65362056", + "voter": "ozertayiz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "164870028", + "voter": "decentro" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "63110974", + "voter": "pictures" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

http://video.dailymail.co.uk/preview/mol/2016/09/11/7023501702792170161/636x382_MP4_7023501702792170161.mp4

\n


\n

\n", + "body_length": 245, + "cashout_time": "2016-10-12T22:10:51", + "category": "clinton", + "children": 0, + "created": "2016-09-11T21:55:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"clinton\",\"anarchy\",\"politics\",\"minnowsunite\",\"steemsquad\"],\"links\":[\"http:\\/\\/video.dailymail.co.uk\\/preview\\/mol\\/2016\\/09\\/11\\/7023501702792170161\\/636x382_MP4_7023501702792170161.mp4\"],\"image\":[\"https:\\/\\/cogsr.files.wordpress.com\\/2015\\/08\\/images.jpg?w=406\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-11T21:58:45", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 3428747158, + "parent_author": "", + "parent_permlink": "clinton", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "clinton", + "post_id": 925618, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hillary Clinton has another seizure..........", + "title": "Hillary Clinton has another seizure..........", + "total_payout_value": "0.000 HBD", + "url": "/clinton/@pictures/clinton" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "1502908468", + "voter": "endgame" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1518450297", + "voter": "tokyodude" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "112678431", + "voter": "smech" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "589046713", + "voter": "minnowsunited" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "67743748", + "voter": "makaveli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75045323", + "voter": "ozertayiz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60413956", + "voter": "pictures" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "88662747", + "voter": "mlialen" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51372025", + "voter": "oktavianorlov" + }, + { + "percent": "5100", + "reputation": 0, + "rshares": "1631278899", + "voter": "robotev" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n", + "body_length": 65, + "cashout_time": "2016-10-11T19:52:09", + "category": "food", + "children": 0, + "created": "2016-09-10T15:52:18", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"food\",\"health\",\"healthy-eating\",\"minnowsunite\",\"steemsquad\"],\"image\":[\"http:\\/\\/i.imgur.com\\/lVKidT4.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-10T15:52:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5697600607, + "parent_author": "", + "parent_permlink": "food", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "why-i-don-t-eat-margarine", + "post_id": 912225, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Why I don't eat Margarine...........", + "title": "Why I don't eat Margarine...........", + "total_payout_value": "0.000 HBD", + "url": "/food/@pictures/why-i-don-t-eat-margarine" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "1552957536", + "voter": "endgame" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1823991416", + "voter": "incomemonthly" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1602773439", + "voter": "tokyodude" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52207362", + "voter": "reported" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "51206711", + "voter": "krushing" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "608038334", + "voter": "minnowsunited" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "50065542", + "voter": "whatyouganjado" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "69929030", + "voter": "makaveli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "77466140", + "voter": "ozertayiz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "60413956", + "voter": "pictures" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "621305139", + "voter": "jessicanicklos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157588516", + "voter": "tezi123" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "157255411", + "voter": "mikepicker" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n", + "body_length": 65, + "cashout_time": "2016-10-11T14:06:15", + "category": "economics", + "children": 0, + "created": "2016-09-10T13:47:12", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"economics\",\"bitcoin\",\"inflation\",\"deflation\",\"minnowsunite\"],\"image\":[\"http:\\/\\/i.imgur.com\\/3Go8xqk.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-10T13:47:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 6885198532, + "parent_author": "", + "parent_permlink": "economics", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "inflation-vs-deflation", + "post_id": 911277, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Inflation vs Deflation", + "title": "Inflation vs Deflation", + "total_payout_value": "0.000 HBD", + "url": "/economics/@pictures/inflation-vs-deflation" + }, + { + "active_votes": [ + { + "percent": "1000", + "reputation": 0, + "rshares": "4757810665", + "voter": "alexgr" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1502862132", + "voter": "endgame" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1560595190", + "voter": "tokyodude" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "608038334", + "voter": "minnowsunited" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "483626037014", + "voter": "glitterfart" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "67743748", + "voter": "makaveli" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "75045323", + "voter": "ozertayiz" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "69598904", + "voter": "saxon84" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55049600", + "voter": "poulawaken" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61622235", + "voter": "pictures" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "594291872", + "voter": "jessicanicklos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "183713123", + "voter": "chadcrypto" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "83596304", + "voter": "mlialen" + }, + { + "percent": "5100", + "reputation": 0, + "rshares": "1631278899", + "voter": "robotev" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n", + "body_length": 65, + "cashout_time": "2016-10-11T14:39:30", + "category": "steemsquad", + "children": 0, + "created": "2016-09-10T13:39:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"bitcoin\",\"anarchy\",\"politics\",\"minnowsunite\",\"steemsquad\"],\"image\":[\"http:\\/\\/i.imgur.com\\/oEVkuwQ.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-10T13:52:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 494877283343, + "parent_author": "", + "parent_permlink": "steemsquad", + "pending_payout_value": "0.184 HBD", + "percent_steem_dollars": 10000, + "permlink": "people-don-t-know-their-true-power", + "post_id": 911204, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "People don't know their true power..........", + "title": "People don't know their true power..........", + "total_payout_value": "0.000 HBD", + "url": "/steemsquad/@pictures/people-don-t-know-their-true-power" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "228179715", + "voter": "ivp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "244732928781", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "140878572", + "voter": "telos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "118844834", + "voter": "rossenpavlov" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128112579", + "voter": "groovedigital" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56834152", + "voter": "saxon84" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57714709", + "voter": "pictures" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "52623253", + "voter": "chengmin" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n", + "body_length": 65, + "cashout_time": "2016-09-17T06:49:36", + "category": "politics", + "children": 3, + "created": "2016-08-16T09:30:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"politics\",\"trump\",\"funny\",\"meme\"],\"image\":[\"http:\\/\\/i.imgur.com\\/qB3j9sX.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T09:30:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 245516116595, + "parent_author": "", + "parent_permlink": "politics", + "pending_payout_value": "0.162 HBD", + "percent_steem_dollars": 10000, + "permlink": "donald-trump-economy-meme", + "post_id": 624630, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Donald Trump economy meme", + "title": "Donald Trump economy meme", + "total_payout_value": "0.000 HBD", + "url": "/politics/@pictures/donald-trump-economy-meme" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "647296235", + "voter": "nxtblg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "244732928781", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "245405210", + "voter": "thealexander" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6452003427", + "voter": "summonerrk" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "128112579", + "voter": "groovedigital" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55719757", + "voter": "saxon84" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "58892560", + "voter": "pictures" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "1952101031", + "voter": "pierrevr" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n", + "body_length": 65, + "cashout_time": "2016-09-17T06:04:51", + "category": "funny", + "children": 1, + "created": "2016-08-16T09:23:42", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"funny\",\"picture\",\"actor\",\"hollywood\"],\"image\":[\"http:\\/\\/i.imgur.com\\/llUVaxC.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-16T09:23:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 254272459580, + "parent_author": "", + "parent_permlink": "funny", + "pending_payout_value": "0.166 HBD", + "percent_steem_dollars": 10000, + "permlink": "morgan-freeman-aged-8", + "post_id": 624581, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Morgan Freeman Aged 8", + "title": "Morgan Freeman Aged 8", + "total_payout_value": "0.000 HBD", + "url": "/funny/@pictures/morgan-freeman-aged-8" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "244732928781", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "700271848", + "voter": "bullionstackers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55719757", + "voter": "saxon84" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57714709", + "voter": "pictures" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "89527644", + "voter": "nighthawkdive" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n", + "body_length": 65, + "cashout_time": "2016-09-16T05:32:36", + "category": "olympics", + "children": 0, + "created": "2016-08-15T22:52:27", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"olympics\",\"photography\",\"running\",\"sport\",\"pictures\"],\"image\":[\"http:\\/\\/i.imgur.com\\/9Jmu3hB.jpg\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-15T22:52:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 245636162739, + "parent_author": "", + "parent_permlink": "olympics", + "pending_payout_value": "0.057 HBD", + "percent_steem_dollars": 10000, + "permlink": "usain-bolt-smiling-for-the-camera-while-streaking-ahead-in-semi-final", + "post_id": 619767, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Usain Bolt smiling for the camera while streaking ahead in semi-final", + "title": "Usain Bolt smiling for the camera while streaking ahead in semi-final", + "total_payout_value": "0.000 HBD", + "url": "/olympics/@pictures/usain-bolt-smiling-for-the-camera-while-streaking-ahead-in-semi-final" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "759015717", + "voter": "nxtblg" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "104885067401", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "245441429", + "voter": "fedor" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "700271848", + "voter": "bullionstackers" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55365822", + "voter": "frol" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "57714709", + "voter": "pictures" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n", + "body_length": 90, + "cashout_time": "1969-12-31T23:59:59", + "category": "anarchy", + "children": 1, + "created": "2016-08-14T18:33:42", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"anarchy\",\"anarchism\",\"meme\",\"rothbard\",\"statism\"],\"image\":[\"http:\\/\\/i.imgur.com\\/HHsZcdd.jpg\"]}", + "last_payout": "2016-09-14T06:34:51", + "last_update": "2016-08-14T18:34:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 106702876926, + "parent_author": "", + "parent_permlink": "anarchy", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "murray-rothbard-meme-99-problems", + "post_id": 601373, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Murray Rothbard meme: 99 problems.....", + "title": "Murray Rothbard meme: 99 problems.....", + "total_payout_value": "0.000 HBD", + "url": "/anarchy/@pictures/murray-rothbard-meme-99-problems" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "104885067401", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "59401753", + "voter": "telos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "636811489", + "voter": "matthewtiii" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "0", + "voter": "pictures" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n", + "body_length": 65, + "cashout_time": "1969-12-31T23:59:59", + "category": "politics", + "children": 0, + "created": "2016-08-14T18:02:42", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"politics\",\"funny\",\"meme\",\"hilary\"],\"image\":[\"http:\\/\\/i.imgur.com\\/LYSWoga.jpg\"]}", + "last_payout": "2016-09-14T06:12:48", + "last_update": "2016-08-14T18:02:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 105581280643, + "parent_author": "", + "parent_permlink": "politics", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "hilary-for-president-meme", + "post_id": 600982, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Hilary for president meme", + "title": "Hilary for president meme", + "total_payout_value": "0.000 HBD", + "url": "/politics/@pictures/hilary-for-president-meme" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "104885067401", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61098946", + "voter": "telos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53191954", + "voter": "xsupremeleaderx" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n", + "body_length": 65, + "cashout_time": "1969-12-31T23:59:59", + "category": "funny", + "children": 1, + "created": "2016-08-14T16:25:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"funny\",\"meme\",\"politics\",\"trump\"],\"image\":[\"http:\\/\\/i.imgur.com\\/vLZZVpq.jpg\"]}", + "last_payout": "2016-09-14T04:41:39", + "last_update": "2016-08-14T16:25:00", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 104999358301, + "parent_author": "", + "parent_permlink": "funny", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "donald-trump-meme", + "post_id": 599814, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Donald Trump meme", + "title": "Donald Trump meme", + "total_payout_value": "0.000 HBD", + "url": "/funny/@pictures/donald-trump-meme" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "10627868860", + "voter": "jademont" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "104885067401", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "344049694", + "voter": "bitlord" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "102831413", + "voter": "darthnava" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n", + "body_length": 90, + "cashout_time": "1969-12-31T23:59:59", + "category": "economics", + "children": 2, + "created": "2016-08-14T15:47:03", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"economics\",\"gold\",\"usa\",\"china\",\"funny\"],\"image\":[\"http:\\/\\/i.imgur.com\\/yNUJdbj.jpg\"]}", + "last_payout": "2016-09-14T04:47:45", + "last_update": "2016-08-14T15:47:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 115959817368, + "parent_author": "", + "parent_permlink": "economics", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "currency-wars-usa-vs-china", + "post_id": 599310, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Currency wars: USA vs China", + "title": "Currency wars: USA vs China", + "total_payout_value": "0.000 HBD", + "url": "/economics/@pictures/currency-wars-usa-vs-china" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "116538963779", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "76248694", + "voter": "lukeofkondor" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n

Woman carrying a British man on her back, West Bengal, India, c. 1900

\n", + "body_length": 168, + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "created": "2016-08-14T13:19:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"photography\",\"india\",\"british\",\"pictures\",\"vintage\"],\"image\":[\"http:\\/\\/i.imgur.com\\/vIHss6C.jpg\"]}", + "last_payout": "2016-09-14T01:22:24", + "last_update": "2016-08-14T13:19:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 116615212473, + "parent_author": "", + "parent_permlink": "photography", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "woman-carrying-a-british-man-on-her-back", + "post_id": 597700, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Woman Carrying a British man on her back", + "title": "Woman Carrying a British man on her back", + "total_payout_value": "0.023 HBD", + "url": "/photography/@pictures/woman-carrying-a-british-man-on-her-back" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "116538963779", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "110380615", + "voter": "moneykicks" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "67887718", + "voter": "telos" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n

It was an Elliot 405, and the first municipal computer in Britain.

\n", + "body_length": 164, + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "created": "2016-08-14T12:55:24", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"photography\",\"computer\",\"technology\",\"pictures\",\"vintage\"],\"image\":[\"http:\\/\\/i.imgur.com\\/QPtQWHI.png\"]}", + "last_payout": "2016-09-14T01:30:30", + "last_update": "2016-08-14T12:55:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 116717232112, + "parent_author": "", + "parent_permlink": "photography", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "norwich-city-council-england-receiving-its-first-computer-in-1957", + "post_id": 597520, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Norwich City Council, England, receiving its first computer in 1957", + "title": "Norwich City Council, England, receiving its first computer in 1957", + "total_payout_value": "0.027 HBD", + "url": "/photography/@pictures/norwich-city-council-england-receiving-its-first-computer-in-1957" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "151869206163", + "voter": "vato" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "228179715", + "voter": "ivp" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "78269325305", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "6568655483", + "voter": "yonuts" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "162629171", + "voter": "misteem" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "61429239", + "voter": "rubenalexander" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "66190525", + "voter": "telos" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "68314793", + "voter": "dasfarm" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "68234219", + "voter": "saxon84" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "56042911", + "voter": "globalnews" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54660184", + "voter": "nevid" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

A 5MB hard drive being loaded onto a PanAm plane in 1956.

\n

\n", + "body_length": 130, + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "created": "2016-08-14T09:07:51", + "curator_payout_value": "0.048 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"photography\",\"technology\",\"pictures\",\"vintage\"],\"image\":[\"http:\\/\\/i.imgur.com\\/H6V7Mi3.jpg\"]}", + "last_payout": "2016-09-13T22:41:51", + "last_update": "2016-08-14T09:07:51", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 237472867708, + "parent_author": "", + "parent_permlink": "photography", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "a-5mb-hard-drive-being-loaded", + "post_id": 596186, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "A 5mb Hard Drive Being Loaded", + "title": "A 5mb Hard Drive Being Loaded", + "total_payout_value": "0.161 HBD", + "url": "/photography/@pictures/a-5mb-hard-drive-being-loaded" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "78269325305", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53369912", + "voter": "dmcummins" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "54944031", + "voter": "globalnews" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n", + "body_length": 65, + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 0, + "created": "2016-08-13T20:18:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"photography\",\"olympics\",\"vintage\",\"pictures\",\"women\"],\"image\":[\"http:\\/\\/i.imgur.com\\/wYVStl0.jpg\"]}", + "last_payout": "2016-09-13T08:21:12", + "last_update": "2016-08-13T20:23:27", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 78377639248, + "parent_author": "", + "parent_permlink": "photography", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "winning-english-400-m-women-s-relay-swimming-team-at-the-stockholm-olympic-games", + "post_id": 590232, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Winning English 400m women's relay swimming team at the Stockholm Olympic Games", + "title": "Winning English 400m women's relay swimming team at the Stockholm Olympic Games", + "total_payout_value": "0.020 HBD", + "url": "/photography/@pictures/winning-english-400-m-women-s-relay-swimming-team-at-the-stockholm-olympic-games" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "78269325305", + "voter": "juneaugoldbuyer" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n", + "body_length": 65, + "cashout_time": "1969-12-31T23:59:59", + "category": "olympics", + "children": 1, + "created": "2016-08-13T19:54:03", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"olympics\",\"photography\",\"history\",\"picture\",\"woman\"],\"image\":[\"http:\\/\\/i.imgur.com\\/U0Avcuf.png\"]}", + "last_payout": "2016-09-13T07:54:03", + "last_update": "2016-08-13T19:54:03", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 78269325305, + "parent_author": "", + "parent_permlink": "olympics", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "gymnast-at-the-1908-london-olympics", + "post_id": 589966, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Gymnast at the 1908 London Olympics", + "title": "Gymnast at the 1908 London Olympics", + "total_payout_value": "0.020 HBD", + "url": "/olympics/@pictures/gymnast-at-the-1908-london-olympics" + }, + { + "active_votes": [ + { + "percent": "6800", + "reputation": 0, + "rshares": "746460767195", + "voter": "steempower" + }, + { + "percent": "3301", + "reputation": 0, + "rshares": "1449198100", + "voter": "murh" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "78269325305", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "69598904", + "voter": "saxon84" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n", + "body_length": 65, + "cashout_time": "1969-12-31T23:59:59", + "category": "economics", + "children": 0, + "created": "2016-08-13T18:59:24", + "curator_payout_value": "0.107 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"economics\",\"inflation\",\"america\"],\"image\":[\"http:\\/\\/i.imgur.com\\/SiVmliF.jpg\"]}", + "last_payout": "2016-09-13T07:17:42", + "last_update": "2016-08-13T18:59:24", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 826248889504, + "parent_author": "", + "parent_permlink": "economics", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "1938-usa-cost-of-living", + "post_id": 589290, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "1938 USA Cost of Living", + "title": "1938 USA Cost of Living", + "total_payout_value": "0.620 HBD", + "url": "/economics/@pictures/1938-usa-cost-of-living" + }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "78269325305", + "voter": "juneaugoldbuyer" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "53430536", + "voter": "manuxvalero" + } + ], + "author": "pictures", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

\n

2008: Joseph Schooling meets his hero Michael Phelps   

\n

2016: Joseph Schooling beats his hero Michael Phelps

\n", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "photography", + "children": 1, + "created": "2016-08-13T18:47:42", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"photography\",\"olympics\",\"phelps\",\"swimming\",\"sports\"],\"image\":[\"http:\\/\\/i.imgur.com\\/bof1mDd.jpg\"]}", + "last_payout": "2016-09-13T06:47:42", + "last_update": "2016-08-13T18:47:42", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 78322755841, + "parent_author": "", + "parent_permlink": "photography", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "joseph-schooling-meets-his-hero-michael-phelps", + "post_id": 589139, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Joseph Schooling meets his hero Michael Phelps", + "title": "Joseph Schooling meets his hero Michael Phelps", + "total_payout_value": "0.020 HBD", + "url": "/photography/@pictures/joseph-schooling-meets-his-hero-michael-phelps" + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_limit_error.pat.json b/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_limit_error.pat.json new file mode 100644 index 00000000..0e9578e1 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_limit_error.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "message": "Invalid parameters", + "data": "limit must be positive" +} \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_name_error.pat.json b/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_name_error.pat.json new file mode 100644 index 00000000..a97948cc --- /dev/null +++ b/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_name_error.pat.json @@ -0,0 +1,6 @@ +{ + "code": -32602, + "data": "invalid account name length: `1`", + "message": "Invalid parameters" + } + \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_no_data_error.pat.json b/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_no_data_error.pat.json new file mode 100644 index 00000000..b14e9bbc --- /dev/null +++ b/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_no_data_error.pat.json @@ -0,0 +1,6 @@ +{ + "code": -32000, + "data": "ValueError: invalid literal for int() with base 10: ''", + "message": "Server error" + } + \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_type_error.pat.json b/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_type_error.pat.json new file mode 100644 index 00000000..a1dc7412 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_type_error.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid account name type", + "message": "Invalid parameters" +} \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_type_error_permlink.pat.json b/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_type_error_permlink.pat.json new file mode 100644 index 00000000..e1b74406 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_type_error_permlink.pat.json @@ -0,0 +1,6 @@ +{ + "code": -32602, + "data": "permlink must be string", + "message": "Invalid parameters" + } + \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_wrong_cat_space.pat.json b/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_wrong_cat_space.pat.json new file mode 100644 index 00000000..6892a529 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns_error/get_comment_discussions_by_payout_wrong_cat_space.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid tag `ab dd`", + "message": "Invalid parameters" + } \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns_error/get_discussions_by_author_before_date_author_limit_error.pat.json b/hivemind/tavern/tags_api_patterns_error/get_discussions_by_author_before_date_author_limit_error.pat.json new file mode 100644 index 00000000..0b01ef1a --- /dev/null +++ b/hivemind/tavern/tags_api_patterns_error/get_discussions_by_author_before_date_author_limit_error.pat.json @@ -0,0 +1,6 @@ +{ + "code": -32602, + "data": "limit exceeds max (101 > 100)", + "message": "Invalid parameters" + } + \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns_error/get_discussions_by_author_before_date_empty_error.pat.json b/hivemind/tavern/tags_api_patterns_error/get_discussions_by_author_before_date_empty_error.pat.json new file mode 100644 index 00000000..53513e04 --- /dev/null +++ b/hivemind/tavern/tags_api_patterns_error/get_discussions_by_author_before_date_empty_error.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "`author` cannot be blank", + "message": "Invalid parameters" +} \ No newline at end of file diff --git a/hivemind/tavern/tags_api_patterns_error/get_discussions_by_blog_empty_params.pat.json b/hivemind/tavern/tags_api_patterns_error/get_discussions_by_blog_empty_params.pat.json new file mode 100644 index 00000000..14ae692a --- /dev/null +++ b/hivemind/tavern/tags_api_patterns_error/get_discussions_by_blog_empty_params.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "`tag` cannot be blank", + "message": "Invalid parameters" +} \ No newline at end of file diff --git a/hivemind/tavern/test_tags_api_patterns.tavern.yaml b/hivemind/tavern/test_tags_api_patterns.tavern.yaml index 4a6b3c22..636b8be2 100644 --- a/hivemind/tavern/test_tags_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_tags_api_patterns.tavern.yaml @@ -1,5 +1,324 @@ +# --- +# test_name: Hivemind tags_api.get_discussion patterns test + +# marks: +# - patterntest + +# includes: +# - !include common.yaml + +# stages: +# - name: get_discussion +# request: +# url: "{service.proto:s}://{service.server:s}:{service.port}/" +# method: POST +# headers: +# content-type: application/json +# json: +# jsonrpc: "2.0" +# id: 1 +# method: "tags_api.get_discussion" +# params: {"author":"steemit", "permlink":"firstpost"} +# response: +# status_code: 200 +# verify_response_with: +# function: validate_response:compare_response_with_pattern +# extra_kwargs: +# method: "get_discussion" +# directory: "tags_api_patterns" + +# --- +# test_name: Hivemind tags_api.get_content_replies patterns test + +# marks: +# - patterntest + +# includes: +# - !include common.yaml + +# stages: +# - name: get_content_replies +# request: +# url: "{service.proto:s}://{service.server:s}:{service.port}/" +# method: POST +# headers: +# content-type: application/json +# json: +# jsonrpc: "2.0" +# id: 1 +# method: "tags_api.get_content_replies" +# params: {"author":"admin", "permlink":"firstpost"} +# response: +# status_code: 200 +# verify_response_with: +# function: validate_response:compare_response_with_pattern +# extra_kwargs: +# method: "get_content_replies" +# directory: "tags_api_patterns" + +# --- +# test_name: Hivemind tags_api.get_discussions_by_trending patterns test + +# marks: +# - patterntest + +# includes: +# - !include common.yaml + +# stages: +# - name: get_discussions_by_trending +# request: +# url: "{service.proto:s}://{service.server:s}:{service.port}/" +# method: POST +# headers: +# content-type: application/json +# json: +# jsonrpc: "2.0" +# id: 1 +# method: "tags_api.get_discussions_by_trending" +# params: {"tag":"polska","limit":1} +# response: +# status_code: 200 +# verify_response_with: +# function: validate_response:compare_response_with_pattern +# extra_kwargs: +# method: "get_discussions_by_trending" +# directory: "tags_api_patterns" + +# --- +# test_name: Hivemind tags_api.get_discussions_by_hot patterns test + +# marks: +# - patterntest + +# includes: +# - !include common.yaml + +# stages: +# - name: get_discussions_by_hot +# request: +# url: "{service.proto:s}://{service.server:s}:{service.port}/" +# method: POST +# headers: +# content-type: application/json +# json: +# jsonrpc: "2.0" +# id: 1 +# method: "tags_api.get_discussions_by_hot" +# params: {"tag":"polska","limit":1} +# response: +# status_code: 200 +# verify_response_with: +# function: validate_response:compare_response_with_pattern +# extra_kwargs: +# method: "get_discussions_by_hot" +# directory: "tags_api_patterns" + +# --- +# test_name: Hivemind tags_api.get_discussions_by_promoted patterns test + +# marks: +# - patterntest + +# includes: +# - !include common.yaml + +# stages: +# - name: get_discussions_by_promoted +# request: +# url: "{service.proto:s}://{service.server:s}:{service.port}/" +# method: POST +# headers: +# content-type: application/json +# json: +# jsonrpc: "2.0" +# id: 1 +# method: "tags_api.get_discussions_by_promoted" +# params: {"tag":"steem","limit":1} +# response: +# status_code: 200 +# verify_response_with: +# function: validate_response:compare_response_with_pattern +# extra_kwargs: +# method: "get_discussions_by_promoted" +# directory: "tags_api_patterns" + +# --- +# test_name: Hivemind tags_api.get_discussions_by_created patterns test + +# marks: +# - patterntest + +# includes: +# - !include common.yaml + +# stages: +# - name: get_discussions_by_created +# request: +# url: "{service.proto:s}://{service.server:s}:{service.port}/" +# method: POST +# headers: +# content-type: application/json +# json: +# jsonrpc: "2.0" +# id: 1 +# method: "tags_api.get_discussions_by_created" +# params: {"tag":"polska","limit":1} +# response: +# status_code: 200 +# verify_response_with: +# function: validate_response:compare_response_with_pattern +# extra_kwargs: +# method: "get_discussions_by_created" +# directory: "tags_api_patterns" + +# --- +# test_name: Hivemind tags_api.get_discussions_by_blog patterns test + +# marks: +# - patterntest + +# includes: +# - !include common.yaml + +# stages: +# - name: get_discussions_by_blog +# request: +# url: "{service.proto:s}://{service.server:s}:{service.port}/" +# method: POST +# headers: +# content-type: application/json +# json: +# jsonrpc: "2.0" +# id: 1 +# method: "tags_api.get_discussions_by_blog" +# params: {"tag":"steemit","limit":1} +# response: +# status_code: 200 +# verify_response_with: +# function: validate_response:compare_response_with_pattern +# extra_kwargs: +# method: "get_discussions_by_blog" +# directory: "tags_api_patterns" + +# --- +# test_name: Hivemind tags_api.get_discussions_by_comments patterns test + +# marks: +# - patterntest + +# includes: +# - !include common.yaml + +# stages: +# - name: get_discussions_by_comments +# request: +# url: "{service.proto:s}://{service.server:s}:{service.port}/" +# method: POST +# headers: +# content-type: application/json +# json: +# jsonrpc: "2.0" +# id: 1 +# method: "tags_api.get_discussions_by_comments" +# params: {"start_author":"admin","start_permlink":"firstpost","limit":1} +# response: +# status_code: 200 +# verify_response_with: +# function: validate_response:compare_response_with_pattern +# extra_kwargs: +# method: "get_discussions_by_comments" +# directory: "tags_api_patterns" + +# --- +# test_name: Hivemind tags_api.get_discussions_by_author_before_date patterns test + +# marks: +# - patterntest + +# includes: +# - !include common.yaml + +# stages: +# - name: get_discussions_by_author_before_date +# request: +# url: "{service.proto:s}://{service.server:s}:{service.port}/" +# method: POST +# headers: +# content-type: application/json +# json: +# jsonrpc: "2.0" +# id: 1 +# method: "tags_api.get_discussions_by_author_before_date" +# params: {"author":"steemit","start_permlink":"firstpost","before_date":"2016-04-19T22:49:43","limit":1} +# response: +# status_code: 200 +# verify_response_with: +# function: validate_response:compare_response_with_pattern +# extra_kwargs: +# method: "get_discussions_by_author_before_date" +# directory: "tags_api_patterns" + +# --- +# test_name: Hivemind tags_api.get_post_discussions_by_payout patterns test + +# marks: +# - patterntest + +# includes: +# - !include common.yaml + +# stages: +# - name: get_post_discussions_by_payout +# request: +# url: "{service.proto:s}://{service.server:s}:{service.port}/" +# method: POST +# headers: +# content-type: application/json +# json: +# jsonrpc: "2.0" +# id: 1 +# method: "tags_api.get_post_discussions_by_payout" +# params: {"tag":"polska","limit":1} +# response: +# status_code: 200 +# verify_response_with: +# function: validate_response:compare_response_with_pattern +# extra_kwargs: +# method: "get_post_discussions_by_payout" +# directory: "tags_api_patterns" + +# --- +# test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test + +# marks: +# - patterntest + +# includes: +# - !include common.yaml + +# stages: +# - name: get_comment_discussions_by_payout +# request: +# url: "{service.proto:s}://{service.server:s}:{service.port}/" +# method: POST +# headers: +# content-type: application/json +# json: +# jsonrpc: "2.0" +# id: 1 +# method: "tags_api.get_comment_discussions_by_payout" +# params: {"tag":"polska","limit":1} +# response: +# status_code: 200 +# verify_response_with: +# function: validate_response:compare_response_with_pattern +# extra_kwargs: +# method: "get_comment_discussions_by_payout" +# directory: "tags_api_patterns" + --- - test_name: Hivemind tags_api.get_discussion patterns test + test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test no data marks: - patterntest @@ -8,7 +327,7 @@ - !include common.yaml stages: - - name: get_discussion + - name: get_comment_discussions_by_payout request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -17,27 +336,29 @@ json: jsonrpc: "2.0" id: 1 - method: "tags_api.get_discussion" - params: {"author":"steemit", "permlink":"firstpost"} + method: "tags_api.get_comment_discussions_by_payout" # returns comments by pending_payout + params: [] # start_author: str = '', start_permlink: str = '',limit: int = 20. tag: str = None, truncate_body: int = 0 response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_discussion" + method: "get_comment_discussions_by_payout_no_data" directory: "tags_api_patterns" --- - test_name: Hivemind tags_api.get_content_replies patterns test + test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test author marks: - patterntest + # does not work correctly, start_author does not matter in sorting + # take only comments with payouts includes: - !include common.yaml stages: - - name: get_content_replies + - name: get_comment_discussions_by_payout request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -46,27 +367,28 @@ json: jsonrpc: "2.0" id: 1 - method: "tags_api.get_content_replies" - params: {"author":"admin", "permlink":"firstpost"} + method: "tags_api.get_comment_discussions_by_payout" + params: ["otc", "", "10", "", 0] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_content_replies" + method: "get_comment_discussions_by_payout_author" directory: "tags_api_patterns" --- - test_name: Hivemind tags_api.get_discussions_by_trending patterns test + test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test author permlink marks: - patterntest + # does not work correctly, start_author and start_permlink does not matter includes: - !include common.yaml stages: - - name: get_discussions_by_trending + - name: get_comment_discussions_by_payout request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -75,18 +397,18 @@ json: jsonrpc: "2.0" id: 1 - method: "tags_api.get_discussions_by_trending" - params: {"tag":"polska","limit":1} + method: "tags_api.get_comment_discussions_by_payout" + params: ["otc", "hi-steemit-let-me-take-a-picture", "10", "photography", 0] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_discussions_by_trending" + method: "get_comment_discussions_by_payout_author_permlink" directory: "tags_api_patterns" --- - test_name: Hivemind tags_api.get_discussions_by_hot patterns test + test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test category marks: - patterntest @@ -95,7 +417,7 @@ - !include common.yaml stages: - - name: get_discussions_by_hot + - name: get_comment_discussions_by_payout request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -104,27 +426,28 @@ json: jsonrpc: "2.0" id: 1 - method: "tags_api.get_discussions_by_hot" - params: {"tag":"polska","limit":1} + method: "tags_api.get_comment_discussions_by_payout" + params: ["", "", "10", "photography", 0] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_discussions_by_hot" + method: "get_comment_discussions_by_payout_author_permlink" directory: "tags_api_patterns" --- - test_name: Hivemind tags_api.get_discussions_by_promoted patterns test + test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test limit category with no votes (no payout) marks: - patterntest + # if all posts in category do not have any votes there is empty result includes: - !include common.yaml stages: - - name: get_discussions_by_promoted + - name: get_comment_discussions_by_payout request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -133,27 +456,29 @@ json: jsonrpc: "2.0" id: 1 - method: "tags_api.get_discussions_by_promoted" - params: {"tag":"steem","limit":1} + method: "tags_api.get_comment_discussions_by_payout" + params: ["", "", "1", "taylorswift", 0] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_discussions_by_promoted" + method: "get_comment_discussions_by_payout_empty_result" directory: "tags_api_patterns" --- - test_name: Hivemind tags_api.get_discussions_by_created patterns test + test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test limit not allowed category marks: - patterntest + # category name not allowed (starts with number) + # wrong output - comments with no payout includes: - !include common.yaml stages: - - name: get_discussions_by_created + - name: get_comment_discussions_by_payout request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -162,27 +487,28 @@ json: jsonrpc: "2.0" id: 1 - method: "tags_api.get_discussions_by_created" - params: {"tag":"polska","limit":1} + method: "tags_api.get_comment_discussions_by_payout" + params: ["", "", "10", "432hz", 0] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_discussions_by_created" + method: "get_comment_discussions_by_payout_not_allowed_category" directory: "tags_api_patterns" --- - test_name: Hivemind tags_api.get_discussions_by_blog patterns test + test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test limit too long category marks: - patterntest + # category is too long > 24 includes: - !include common.yaml stages: - - name: get_discussions_by_blog + - name: get_comment_discussions_by_payout request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -191,18 +517,18 @@ json: jsonrpc: "2.0" id: 1 - method: "tags_api.get_discussions_by_blog" - params: {"tag":"steemit","limit":1} + method: "tags_api.get_comment_discussions_by_payout" + params: ["", "", "10", "thisisgoingintomyinternetfolder", 0] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_discussions_by_blog" + method: "get_comment_discussions_by_payout_too_long_cat" directory: "tags_api_patterns" --- - test_name: Hivemind tags_api.get_discussions_by_comments patterns test + test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test -truncate_body marks: - patterntest @@ -211,7 +537,7 @@ - !include common.yaml stages: - - name: get_discussions_by_comments + - name: get_comment_discussions_by_payout request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -220,18 +546,107 @@ json: jsonrpc: "2.0" id: 1 - method: "tags_api.get_discussions_by_comments" - params: {"start_author":"admin","start_permlink":"firstpost","limit":1} + method: "tags_api.get_comment_discussions_by_payout" + params: ["", "", "5", "pictures", -24] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_discussions_by_comments" + method: "get_comment_discussions_by_payout_truncate_body" directory: "tags_api_patterns" --- - test_name: Hivemind tags_api.get_discussions_by_author_before_date patterns test + test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test good permlink + + marks: + - patterntest + # returns empty result even if permlink is correct + + includes: + - !include common.yaml + + stages: + - name: get_comment_discussions_by_payout + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "tags_api.get_comment_discussions_by_payout" + params: ["", "re-budgiebee-re-mikkolyytinen-re-budgiebee-hey-can-somebody-please-tell-me-how-to-add-pictures-to-blogs-20160911t191955857z", "5", "pictures", 0] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_comment_discussions_by_payout_empty_result" + directory: "tags_api_patterns" + + +# --- does not work +# test_name: Hivemind tags_api.get_discussions_by_active patterns test no params + +# marks: +# - patterntest + +# includes: +# - !include common.yaml + +# stages: +# - name: get_discussions_by_active +# request: +# url: "{service.proto:s}://{service.server:s}:{service.port}/" +# method: POST +# headers: +# content-type: application/json +# json: +# jsonrpc: "2.0" +# id: 1 +# method: "tags_api.get_discussions_by_active" +# params: [] # context, start_author: str = '', start_permlink: str = '', limit: int = 20, tag: str = None, truncate_body: int = 0 +# response: +# status_code: 200 +# verify_response_with: +# function: validate_response:compare_response_with_pattern +# extra_kwargs: +# method: "get_discussions_by_active_empty_params" +# directory: "tags_api_patterns" + +--- + test_name: Hivemind tags_api.get_discussions_by_author_before_date patterns test author + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_discussions_by_author_before_date + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "tags_api.get_discussions_by_author_before_date" + params: ["camilla"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_discussions_by_author_before_date_author" + directory: "tags_api_patterns" + +--- + test_name: Hivemind tags_api.get_discussions_by_author_before_date patterns test author and permlink marks: - patterntest @@ -250,17 +665,17 @@ jsonrpc: "2.0" id: 1 method: "tags_api.get_discussions_by_author_before_date" - params: {"author":"steemit","start_permlink":"firstpost","before_date":"2016-04-19T22:49:43","limit":1} + params: ["camilla", "do-you-mind-if-we-play-in-your-puddle"] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_discussions_by_author_before_date" + method: "get_discussions_by_author_before_date_author_permlink" directory: "tags_api_patterns" --- - test_name: Hivemind tags_api.get_post_discussions_by_payout patterns test + test_name: Hivemind tags_api.get_discussions_by_author_before_date patterns test author and first permlink marks: - patterntest @@ -269,7 +684,37 @@ - !include common.yaml stages: - - name: get_post_discussions_by_payout + - name: get_discussions_by_author_before_date + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "tags_api.get_discussions_by_author_before_date" + params: ["camilla", "ready-for-action"] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_discussions_by_author_before_date_author_last_permlink" + directory: "tags_api_patterns" + +--- + test_name: Hivemind tags_api.get_discussions_by_author_before_date patterns test author date + + marks: + - patterntest + # note: before_date is completely ignored, and it appears to be broken and/or completely ignored in steemd as well. This call is similar to get_discussions_by_blog but does NOT serve reblogs + # does not work properly, there should be different result in output + includes: + - !include common.yaml + + stages: + - name: get_discussions_by_author_before_date request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -278,27 +723,28 @@ json: jsonrpc: "2.0" id: 1 - method: "tags_api.get_post_discussions_by_payout" - params: {"tag":"polska","limit":1} + method: "tags_api.get_discussions_by_author_before_date" + params: ["camilla", "","2016-05-11T21:25:36"] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_post_discussions_by_payout" + method: "get_discussions_by_author_before_date_author_date" directory: "tags_api_patterns" --- - test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test + test_name: Hivemind tags_api.get_discussions_by_author_before_date patterns test author permlink date marks: - patterntest + # does not use date, only author and permlink includes: - !include common.yaml stages: - - name: get_comment_discussions_by_payout + - name: get_discussions_by_author_before_date request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -307,28 +753,58 @@ json: jsonrpc: "2.0" id: 1 - method: "tags_api.get_comment_discussions_by_payout" - params: {"tag":"polska","limit":1} + method: "tags_api.get_discussions_by_author_before_date" + params: ["kristylynn", "hot-springs-and-music-festivals-but-now-it-s-time-to-get-back-to-steemit","2016-05-11T21:25:36"] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_comment_discussions_by_payout" + method: "get_discussions_by_author_before_date_author_permlink_date" directory: "tags_api_patterns" +--- + test_name: Hivemind tags_api.get_discussions_by_author_before_date patterns test not existing author empty result + + marks: + - patterntest + + + includes: + - !include common.yaml + + stages: + - name: get_discussions_by_author_before_date + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "tags_api.get_discussions_by_author_before_date" + params: ["kr3", "", "", 1] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_comment_discussions_by_payout_empty_result" + directory: "tags_api_patterns" --- - test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test no data + test_name: Hivemind tags_api.get_discussions_by_author_before_date patterns test not full permlink marks: - patterntest + includes: - !include common.yaml stages: - - name: get_comment_discussions_by_payout + - name: get_discussions_by_author_before_date request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -337,18 +813,18 @@ json: jsonrpc: "2.0" id: 1 - method: "tags_api.get_comment_discussions_by_payout" - params: [] # start_author: str = '', start_permlink: str = '',limit: int = 20 + method: "tags_api.get_discussions_by_author_before_date" + params: ["dragonho", "suntory-time-weekend", "", 1] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_comment_discussions_by_payout_no_data" + method: "get_comment_discussions_by_payout_empty_result" directory: "tags_api_patterns" - + --- - test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test no data error + test_name: Hivemind tags_api.get_discussions_by_blog patterns test tag marks: - patterntest @@ -357,7 +833,7 @@ - !include common.yaml stages: - - name: get_comment_discussions_by_payout + - name: get_discussions_by_blog request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -366,18 +842,18 @@ json: jsonrpc: "2.0" id: 1 - method: "tags_api.get_comment_discussions_by_payout" - params: ["", "", ""] + method: "tags_api.get_discussions_by_blog" + params: ["pictures"] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_comment_discussions_by_payout_no_data_error" + method: "get_discussions_by_blog_tag" directory: "tags_api_patterns" --- - test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test author + test_name: Hivemind tags_api.get_discussions_by_blog patterns test author tag marks: - patterntest @@ -386,7 +862,7 @@ - !include common.yaml stages: - - name: get_comment_discussions_by_payout + - name: get_discussions_by_blog request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -395,12 +871,12 @@ json: jsonrpc: "2.0" id: 1 - method: "tags_api.get_comment_discussions_by_payout" - params: ["", "", ""] + method: "tags_api.get_discussions_by_blog" + params: ["dragonho", "life"] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_comment_discussions_by_payout_author" + method: "get_comment_discussions_by_blog_author_tag" directory: "tags_api_patterns" \ No newline at end of file diff --git a/hivemind/tavern/test_tags_api_patterns_error.tavern.yaml b/hivemind/tavern/test_tags_api_patterns_error.tavern.yaml new file mode 100644 index 00000000..c516161c --- /dev/null +++ b/hivemind/tavern/test_tags_api_patterns_error.tavern.yaml @@ -0,0 +1,274 @@ +--- + test_name: Hivemind tags_api.get_discussions_by_author_before_date patterns test too big limit error + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_discussions_by_author_before_date + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "tags_api.get_discussions_by_author_before_date" + params: ["dragonho", "", "", 101] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_discussions_by_author_before_date_author_limit_error" + directory: "tags_api_patterns_error" + error_response: true + +--- + test_name: Hivemind tags_api.get_discussions_by_blog patterns test too big limit error + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_discussions_by_blog + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "tags_api.get_discussions_by_blog" + params: [] # context, tag: str = None, start_author: str = '', start_permlink: str = '', limit: int = 20, truncate_body: int = 0, filter_tags: list = None + # tag -> auhtor + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_discussions_by_blog_empty_params" + directory: "tags_api_patterns_error" + error_response: true + +--- + + test_name: Hivemind tags_api.get_discussions_by_author_before_date patterns test empty params error + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_discussions_by_author_before_date + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "tags_api.get_discussions_by_author_before_date" + params: [] # context, author: str = None, start_permlink: str = '', before_date: str = '', limit: int = 10 + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_discussions_by_author_before_date_empty_error" + directory: "tags_api_patterns_error" + error_response: true + + +--- + test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test too short name error + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_comment_discussions_by_payout + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "tags_api.get_comment_discussions_by_payout" + params: ["1", "re-budgiebee-re-mikkolyytinen-re-budgiebee-hey-can-somebody-please-tell-me-how-to-add-pictures-to-blogs-20160911t191955857z", "5", "pictures", 0] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_comment_discussions_by_payout_name_error" + directory: "tags_api_patterns_error" + error_response: true + +--- + test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test account type error + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_comment_discussions_by_payout + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "tags_api.get_comment_discussions_by_payout" + params: [2, "re-budgiebee-re-mikkolyytinen-re-budgiebee-hey-can-somebody-please-tell-me-how-to-add-pictures-to-blogs-20160911t191955857z", "5", "pictures", 0] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_comment_discussions_by_payout_type_error" + directory: "tags_api_patterns_error" + error_response: true + +--- + test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test permlink type error + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_comment_discussions_by_payout + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "tags_api.get_comment_discussions_by_payout" + params: ["", 8, "5", "pictures", 0] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_comment_discussions_by_payout_type_error_permlink" + directory: "tags_api_patterns_error" + error_response: true + +--- + test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test limit wrong category (space) + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_comment_discussions_by_payout + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "tags_api.get_comment_discussions_by_payout" + params: ["", "", "10", "ab dd", 0] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_comment_discussions_by_payout_wrong_cat_space" + directory: "tags_api_patterns_error" + error_response: true + + +--- + test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test limit error + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_comment_discussions_by_payout + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "tags_api.get_comment_discussions_by_payout" + params: ["", "", "0", "photography", 0] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_comment_discussions_by_payout_limit_error" + directory: "tags_api_patterns_error" + error_response: true + + +--- + test_name: Hivemind tags_api.get_comment_discussions_by_payout patterns test no data error + + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_comment_discussions_by_payout + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "tags_api.get_comment_discussions_by_payout" + params: ["", "", ""] + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_comment_discussions_by_payout_no_data_error" + directory: "tags_api_patterns_error" + error_response: true \ No newline at end of file -- GitLab From deb524ed8cbe6638c619920aabf8444cfa743f4f Mon Sep 17 00:00:00 2001 From: ABW Date: Wed, 26 Aug 2020 23:40:38 +0200 Subject: [PATCH 46/49] [ABW]: Changed how error cases are handled (when error is unexpected or expected error is not there whole response is dumped) - some required regeneration of original patterns Some patterns for tests that still don't work regenerated to fix key order Updated comments for problematic tests (research results) Some new bridge_api tests marked as passing Order partially fixed in patterns for tests where that order depends on pending payout --- .../get_community.orig.json | 6 +- .../get_community.pat.json | 6 +- ...discussion_not_existing_permlink.orig.json | 2 +- ..._discussion_not_existing_permlink.pat.json | 2 +- ...post_header_not_existing_permlink.pat.json | 6 +- .../get_profile_not_existing_account.pat.json | 6 +- .../get_ranked_posts_muted.orig.json | 4384 ++++++++--------- .../get_ranked_posts_muted.pat.json | 4384 ++++++++--------- .../get_blog_limit_100.orig.json | 658 +-- .../get_blog_limit_100.pat.json | 658 +-- ...t_discussions_by_payout_limit_100.pat.json | 322 +- .../get_multiple_accounts.orig.json | 422 +- .../get_multiple_accounts.pat.json | 422 +- ...st_discussions_by_payout_limit_20.pat.json | 88 +- .../test_bridge_api_patterns.tavern.yaml | 21 +- .../test_condenser_api_patterns.tavern.yaml | 21 +- hivemind/tavern/validate_response.py | 13 +- 17 files changed, 5716 insertions(+), 5705 deletions(-) diff --git a/hivemind/tavern/bridge_api_patterns/get_community.orig.json b/hivemind/tavern/bridge_api_patterns/get_community.orig.json index b82adc6d..b08409bd 100644 --- a/hivemind/tavern/bridge_api_patterns/get_community.orig.json +++ b/hivemind/tavern/bridge_api_patterns/get_community.orig.json @@ -1 +1,5 @@ -Error detected in response: Invalid parameters \ No newline at end of file +{ + "code": -32602, + "data": "community not found", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns/get_community.pat.json b/hivemind/tavern/bridge_api_patterns/get_community.pat.json index ec747fa4..b08409bd 100644 --- a/hivemind/tavern/bridge_api_patterns/get_community.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_community.pat.json @@ -1 +1,5 @@ -null \ No newline at end of file +{ + "code": -32602, + "data": "community not found", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.orig.json b/hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.orig.json index ec747fa4..0967ef42 100644 --- a/hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.orig.json +++ b/hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.orig.json @@ -1 +1 @@ -null \ No newline at end of file +{} diff --git a/hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.pat.json b/hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.pat.json index ec747fa4..0967ef42 100644 --- a/hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_discussion_not_existing_permlink.pat.json @@ -1 +1 @@ -null \ No newline at end of file +{} diff --git a/hivemind/tavern/bridge_api_patterns/get_post_header_not_existing_permlink.pat.json b/hivemind/tavern/bridge_api_patterns/get_post_header_not_existing_permlink.pat.json index ec747fa4..669cfec3 100644 --- a/hivemind/tavern/bridge_api_patterns/get_post_header_not_existing_permlink.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_post_header_not_existing_permlink.pat.json @@ -1 +1,5 @@ -null \ No newline at end of file +{ + "code": -32602, + "data": "post '@gtg/not_existing_permlink' does not exist", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns/get_profile_not_existing_account.pat.json b/hivemind/tavern/bridge_api_patterns/get_profile_not_existing_account.pat.json index ec747fa4..c76914d9 100644 --- a/hivemind/tavern/bridge_api_patterns/get_profile_not_existing_account.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_profile_not_existing_account.pat.json @@ -1 +1,5 @@ -null \ No newline at end of file +{ + "code": -32602, + "data": "account 'not.existing' does not exist", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.orig.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.orig.json index 3c9fb03d..bb6330c3 100644 --- a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.orig.json +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.orig.json @@ -1,2221 +1,2221 @@ [ - { - "post_id": 681168, - "author": "r4fken", - "permlink": "re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z", - "category": "philosophy", - "title": "RE: Our Corrupt Sense of Fairness", - "body": "Do I understand correctly that you're referencing the initial \"mining\" by a select group of devs and friends, resulting in \"overwhelming control\" by means of vests now?\nOr am I just imagining things? :)", - "json_metadata": { - "tags": [ - "philosophy" - ] - }, - "created": "2016-08-20T09:06:27", - "updated": "2016-08-20T09:07:12", - "depth": 2, - "children": 0, - "net_rshares": 35692802942928, - "is_paidout": false, - "payout_at": "2016-09-20T07:22:48", - "payout": 196.246, - "pending_payout_value": "196.246 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "itsascam", - "rshares": "17735315160760" - }, - { - "voter": "steemed", - "rshares": "17865766992651" - }, - { - "voter": "boy", - "rshares": "3091007147" - }, - { - "voter": "bue-witness", - "rshares": "3751778512" - }, - { - "voter": "bunny", - "rshares": "703064185" - }, - { - "voter": "bue", - "rshares": "52778799199" - }, - { - "voter": "mini", - "rshares": "1656856120" - }, - { - "voter": "moon", - "rshares": "213490026" - }, - { - "voter": "healthcare", - "rshares": "621592296" - }, - { - "voter": "daniel.pan", - "rshares": "923609344" - }, - { - "voter": "helen.tan", - "rshares": "287848982" - }, - { - "voter": "r4fken", - "rshares": "27692743706" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 12, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "steemed", - "parent_permlink": "re-dantheman-our-corrupt-sense-of-fairness-20160820t035220528z", - "url": "/philosophy/@dantheman/our-corrupt-sense-of-fairness#@r4fken/re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z", - "blacklists": [] + { + "active_votes": [ + { + "rshares": "17735315160760", + "voter": "itsascam" + }, + { + "rshares": "17865766992651", + "voter": "steemed" + }, + { + "rshares": "3091007147", + "voter": "boy" + }, + { + "rshares": "3751778512", + "voter": "bue-witness" + }, + { + "rshares": "703064185", + "voter": "bunny" + }, + { + "rshares": "52778799199", + "voter": "bue" + }, + { + "rshares": "1656856120", + "voter": "mini" + }, + { + "rshares": "213490026", + "voter": "moon" + }, + { + "rshares": "621592296", + "voter": "healthcare" + }, + { + "rshares": "923609344", + "voter": "daniel.pan" + }, + { + "rshares": "287848982", + "voter": "helen.tan" + }, + { + "rshares": "27692743706", + "voter": "r4fken" + } + ], + "author": "r4fken", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Do I understand correctly that you're referencing the initial \"mining\" by a select group of devs and friends, resulting in \"overwhelming control\" by means of vests now?\nOr am I just imagining things? :)", + "category": "philosophy", + "children": 0, + "created": "2016-08-20T09:06:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "tags": [ + "philosophy" + ] }, - { - "post_id": 736365, - "author": "tldr", - "permlink": "i-m-tldr-an-experimental-bot-for-summarizing-your-long-articles", - "category": "tldr", - "title": "I'm @tldr - an experimental bot for summarizing your long articles.", - "body": "Steemit is about great content. But sometimes it just gets a bit, well, too long... So you didn't read. \n\nIntroducing, me! @tldr - the summarise bot! \n\nI come to the rescue, at least I try! I will monitor the blockchain and propose summaries as a comment under articles and try to summarize the long text you had to read before you decide to upvote :)\n\nI won't make it long this time, otherwise I would have to TLDR this post, and then, ...... infinite loop NOOOOOOOOS....\n\n

I will run for 24 hours (see payout timer) after which I will analyse the results and see whether to continue or not. Your input is much valued below:

\nCurrent parameters:\n1. Post must have more than 5000 chars\n2. Summary must be smaller than 15% of original content\n3. Summary must be max 7 sentences\n\n\nhttp://i.giphy.com/jChlcC99Vqu2I.gif", - "json_metadata": { - "tags": [ - "tldr", - "bot" - ], - "image": [ - "http://i.giphy.com/jChlcC99Vqu2I.gif" - ] - }, - "created": "2016-08-24T21:56:39", - "updated": "2016-08-24T23:26:03", - "depth": 0, - "children": 22, - "net_rshares": 13805683329893, - "is_paidout": false, - "payout_at": "2016-09-25T02:39:54", - "payout": 31.621, - "pending_payout_value": "31.621 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "abit", - "rshares": "6110298615385" - }, - { - "voter": "ozmaster", - "rshares": "147501011215" - }, - { - "voter": "boy", - "rshares": "2475588575" - }, - { - "voter": "bue-witness", - "rshares": "3004997792" - }, - { - "voter": "bunny", - "rshares": "562918093" - }, - { - "voter": "complexring", - "rshares": "5613233031399" - }, - { - "voter": "bue", - "rshares": "42638940309" - }, - { - "voter": "mini", - "rshares": "1326847006" - }, - { - "voter": "moon", - "rshares": "170845704" - }, - { - "voter": "healthcare", - "rshares": "497656797" - }, - { - "voter": "tuck-fheman", - "rshares": "1149362909097" - }, - { - "voter": "daniel.pan", - "rshares": "758055771" - }, - { - "voter": "helen.tan", - "rshares": "230367336" - }, - { - "voter": "edgeland", - "rshares": "134106565208" - }, - { - "voter": "joelinux", - "rshares": "19742650585" - }, - { - "voter": "richman", - "rshares": "9643353346" - }, - { - "voter": "censor-this", - "rshares": "7917346997" - }, - { - "voter": "murh", - "rshares": "2164056980" - }, - { - "voter": "tee-em", - "rshares": "1211348418" - }, - { - "voter": "djm34", - "rshares": "25349822848" - }, - { - "voter": "tomkirkham", - "rshares": "226688266301" - }, - { - "voter": "endgame", - "rshares": "406954777" - }, - { - "voter": "sebastien", - "rshares": "4469111855" - }, - { - "voter": "moonjelly", - "rshares": "2263852120" - }, - { - "voter": "shredlord", - "rshares": "12749599354" - }, - { - "voter": "hagie", - "rshares": "4590247494" - }, - { - "voter": "raymonjohnstone", - "rshares": "451134055" - }, - { - "voter": "bergy", - "rshares": "11281334218" - }, - { - "voter": "theprophet0", - "rshares": "2008372383" - }, - { - "voter": "coinbar", - "rshares": "1553952443" - }, - { - "voter": "ozchartart", - "rshares": "149764365242" - }, - { - "voter": "croatia", - "rshares": "4977363121" - }, - { - "voter": "kryptik", - "rshares": "4678252310" - }, - { - "voter": "minnowsunited", - "rshares": "170230804" - }, - { - "voter": "stephen.king989", - "rshares": "7371306594" - }, - { - "voter": "eneismijmich", - "rshares": "18742071917" - }, - { - "voter": "quantumanomaly", - "rshares": "1114311519" - }, - { - "voter": "naifaz", - "rshares": "149386074" - }, - { - "voter": "catherinebleish", - "rshares": "1910105759" - }, - { - "voter": "professorx", - "rshares": "5114340641" - }, - { - "voter": "justinlaak", - "rshares": "65542448666" - }, - { - "voter": "comcentrate", - "rshares": "191282778" - }, - { - "voter": "wizwom", - "rshares": "242182757" - }, - { - "voter": "heretickitten", - "rshares": "6548817310" - }, - { - "voter": "alina1", - "rshares": "155385736" - }, - { - "voter": "inwoxer", - "rshares": "143562405" - }, - { - "voter": "whatsup", - "rshares": "53141513" - }, - { - "voter": "freebornangel", - "rshares": "51593171" - }, - { - "voter": "steemwelcome", - "rshares": "51431138" - }, - { - "voter": "tldr", - "rshares": "51996577" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 50, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/tldr/@tldr/i-m-tldr-an-experimental-bot-for-summarizing-your-long-articles", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 35692802942928, + "parent_author": "steemed", + "parent_permlink": "re-dantheman-our-corrupt-sense-of-fairness-20160820t035220528z", + "payout": 196.246, + "payout_at": "2016-09-20T07:22:48", + "pending_payout_value": "196.246 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z", + "post_id": 681168, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 12 }, - { - "post_id": 635822, - "author": "craigwilliamz", - "permlink": "how-to-raise-fantastic-children-part-1", - "category": "life", - "title": "How to Raise Fantastic Children - Part 1", - "body": "![The Crown Family Photo](http://steemit-dub.s3.amazonaws.com/alex/the-crown-family1.png 'The Crown Family Photo')\n\nMy Family is Pretty Cool\n-\n![Family](http://steemit-dub.s3.amazonaws.com/family-800.jpg 'Family')\n\nMy favorite people in the world are my children. They are kind, generous, full of life, fun to be around and crazy creative. They are really cool people.\n\nWe have four children, Alex, Ashley, Abby and Austin. My wife's idea to name them all \"A\" names. They are referred to as the \"A Team\".\n\nWe have a close family. We argue very little and maintain open communication. We have treated them like people from early on and they have behaved as such.\n\n![Guitar](http://steemit-dub.s3.amazonaws.com/alex/guitar.png 'Guitar')\n\n\n\nAn Eye Opening Experience\n-\nA few weeks ago I was in Dallas visiting a friend whom I had not seen in many years. There were other people there as well that I had also not seen in a very long time. I struck up a conversation with one of them and the discussion of family ensued. He told me about his children and what it had been like for him to become a father. He has a wonderful family with children that are still very young. When the time came for me to share about my children, I began listing off what each one was doing from the oldest to the youngest. Before I could get to the youngest one, his mouth was gaped open and he burst out, \"What are you feeding them!\" We had a big laugh as I told him about the youngest and expanded on our philosophy of family.\n\nWe have had many compliments on our children throughout their life. Even today, the people with whom they interact; family, friends and the people who work with them in stage productions, make a point of complimenting them. I am around them all the time, and many of their friends are homeschooled as well so sometimes I forget how special they are and the impact they have on others.\n\n![Railroad tracks](http://steemit-dub.s3.amazonaws.com/alex/alex-railroad-tracks-600.jpg 'Railroad tracks')\n\nWhy Am I Sharing\n-\nI hope to convey a few things here. First, if you are considering homeschooling and have reservations, may these stories encourage you. If you already homeschool and wonder if it is all worth it, maybe our stories will give you hope and encouragement as well.\n\nAnd lastly, I am proud of them and want to share their success with you.\n\n![Sis](http://steemit-dub.s3.amazonaws.com/alex/children-800.jpg 'Children')\n\nWhy We Homeschool\n-\nMy personal experience in public schools was a nightmare. I moved a lot when I was young and changed schools every three to six months. During one stretch of five years, I switched schools nineteen times. I did not build long term relationships and being the new kid all the time often created struggles with teachers.\n\nThere is a very long story to my history so I will not get into that here. It is however, the main reason I became excited about homeschooling when my wife suggested it.\n\nOur Oldest Child Alex\n-\n![Alex](http://steemit-dub.s3.amazonaws.com/alexthrowback.jpg 'Alex')\n\nAlex has always been intelligent as I believe all children are. He had memorized many of the family members phone numbers and home addresses by the time he was six. We started him off in Montessori school at age four where he attended three years. We would have kept him in Montessori but they did not offer classes above six years old. \n\nAt that time my wife was still concerned about her ability to homeschool so we enrolled him in a Christian private school for one year. After that, she had researched enough to build her confidence. She was ready to go. (As the years went by, she found out that she was more than capable. We are guides.)\n\nPre-Teen\n-\n![Sis](http://steemit-dub.s3.amazonaws.com/alex/alex-littlekid1.jpeg 'Alex and Sister')\n\nAlex took two years of Latin and one year of Japanese. He acted in plays and did what most children do, play a lot.\n\nTeen Years\n-\n![Sis](http://steemit-dub.s3.amazonaws.com/ateam.jpg 'Alex and Sister')\n\nMany people will tell you that you will have to deal with the teenage years. \"Brace yourself,\" they will say. \"You will become their enemy!\" We did not experience this with Alex or our other children. Alex would come to me for advice about issues him and his friends were discussing. When he would share how I reacted to some of our serious conversations, his friends were astonished and would respond with descriptions of their parents exploding if they attempted to have the same discussions with their parents.\n\nKeeping your cool when one of your children comes to you with a confession is a sure way to have them trust you with other issues of concern.\n\nDuring his teen years, Alex took CLEP tests and earned twelve college hours.\n\nAt sixteen, he began to gain interest in programming. I had introduced it to him when he was nine but he wasn't interested. Then again around eleven but still no interest. At sixteen, the interest was all his. Had I forced him to do it earlier, he may have never liked it.\n\n![Graduation](http://steemit-dub.s3.amazonaws.com/alex/graduation.jpg 'Graduation')\n\nBecoming an Adult\n-\n![Alex](http://steemit-dub.s3.amazonaws.com/alex/alex-adult1.jpeg 'Alex')\n\nOne his eighteenth birthday, he begin working his first job as a software developer. He was hired as an apprentice and was promoted to junior developer after only three months. At that time, he began mentoring two of his friends. Within a few months he had taken on a third person to mentor. Within a year or so, each of them have now changed their path and work as software developers. It has significantly changed their lives. Alex just recently began mentoring another friend. Pretty cool to pass forward. He had received help from some of my co-workers early on which made all the difference in his progression.\n\nHe now speaks French and Mandarin and has aspirations to learn many more. He has traveled to seven countries and has an arrangement with his employer to work from anywhere in the world as long as he is at the office for part of the year.\n\n![Alex](http://steemit-dub.s3.amazonaws.com/alex/amsterdamcollage.jpg 'Alex')\n\nHe gives technical talks at local meet ups, plays both acoustic and electric guitar, has never met a stranger and has made no enemies.\n\nHe is an inspiration to others, his family and siblings. The bar has been set high but the other children have many interests and accomplishments of their own. I'll share those in subsequent posts.\n\n![Leon](http://steemit-dub.s3.amazonaws.com/alex/leoncollage.jpg 'Leon')\n\nWhat was our part?\n-\nMy wife has worked hard to keep them supplied with good school material, staying compliant with state requirements and providing some structure for learning. We never set up a school room like environment. There are never set hours of study. Homeschooling hours vary depending on the age of the child and what they are working on at that phase of their education. I would say that most of the time they spend less time doing actual school work and the rest of the time exploring, using their imagination and focusing their energy on things they are interested in.\n\nFor Alex, that was a foreign language. Other times it was memorizing all the Pokemon cards and building decks and playing in tournaments. Alex said one of the things that has helped him so much in learning new things was the fact that he had memorized so much Pokemon data. He developed the ability to store and retrieve things in his mind.\n\nThe simple fact is… we didn't do it. Alex did. He deserves all the credit. He did all the work. We provided the canvas, the paint and the paintbrushes. \n\nConclusion\n-\nI feel we have a pretty cool family. There are many ways to raise your children. The most important thing is to love them unconditionally, give them room to grow and treat them as you would your very best friend. They are people and are smarter than most give them credit.\n\nI hope I have been able to convey how proud we are of Alex. These are but a few highlights of his life as he is only twenty-one. There is so much in store for him.\n\nI am so grateful that as much as possible we have given Alex the opportunity to live life on his own terms and he has flourished.", - "json_metadata": { - "tags": [ - "life", - "photography", - "travel", - "parenting", - "family" - ], - "image": [ - "http://steemit-dub.s3.amazonaws.com/alex/the-crown-family1.png" - ] - }, - "created": "2016-08-17T02:23:30", - "updated": "2016-08-17T02:41:03", - "depth": 0, - "children": 3, - "net_rshares": 20952886915040, - "is_paidout": false, - "payout_at": "2016-09-17T02:57:45", - "payout": 28.712, - "pending_payout_value": "28.712 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "dantheman", - "rshares": "20736048327416" - }, - { - "voter": "boy", - "rshares": "2472573792" - }, - { - "voter": "bue-witness", - "rshares": "3001108476" - }, - { - "voter": "bunny", - "rshares": "562413629" - }, - { - "voter": "bue", - "rshares": "42176902013" - }, - { - "voter": "mini", - "rshares": "1325367544" - }, - { - "voter": "moon", - "rshares": "170787830" - }, - { - "voter": "healthcare", - "rshares": "497243104" - }, - { - "voter": "daniel.pan", - "rshares": "737438203" - }, - { - "voter": "helen.tan", - "rshares": "230272201" - }, - { - "voter": "holabebe", - "rshares": "5072953140" - }, - { - "voter": "murh", - "rshares": "1799587902" - }, - { - "voter": "bravenewcoin", - "rshares": "115361382518" - }, - { - "voter": "soupernerd", - "rshares": "166899192" - }, - { - "voter": "qamarpinkpanda", - "rshares": "5429807428" - }, - { - "voter": "aaseb", - "rshares": "4494852918" - }, - { - "voter": "the-future", - "rshares": "2162953561" - }, - { - "voter": "illlefr4u", - "rshares": "289441856" - }, - { - "voter": "pinkisland", - "rshares": "11382937008" - }, - { - "voter": "pigatron", - "rshares": "3420690714" - }, - { - "voter": "weenis", - "rshares": "163854600" - }, - { - "voter": "jonaswakefield", - "rshares": "309113169" - }, - { - "voter": "jsantana", - "rshares": "984803370" - }, - { - "voter": "cehuneke", - "rshares": "61805391" - }, - { - "voter": "craigwilliamz", - "rshares": "6199940304" - }, - { - "voter": "thebrickranger", - "rshares": "57122450" - }, - { - "voter": "vbrasher", - "rshares": "57108081" - }, - { - "voter": "ashleywilliamz", - "rshares": "2980829211" - }, - { - "voter": "abbywilliamz", - "rshares": "57736694" - }, - { - "voter": "colleenwilliamz", - "rshares": "57604403" - }, - { - "voter": "luminousvisions", - "rshares": "3202748238" - }, - { - "voter": "canadian-coconut", - "rshares": "57682239" - }, - { - "voter": "ghasemkiani", - "rshares": "381198814" - }, - { - "voter": "cyborg", - "rshares": "54839161" - }, - { - "voter": "analyzethis", - "rshares": "50931848" - }, - { - "voter": "roadhog", - "rshares": "51780266" - }, - { - "voter": "doggnostic", - "rshares": "52777051" - }, - { - "voter": "jenny-talls", - "rshares": "52504270" - }, - { - "voter": "robovirtuoso", - "rshares": "54522752" - }, - { - "voter": "birdiewonder", - "rshares": "50090625" - }, - { - "voter": "robotev", - "rshares": "1092907021" - }, - { - "voter": "goaldigger", - "rshares": "51074637" - } + "title": "RE: Our Corrupt Sense of Fairness", + "updated": "2016-08-20T09:07:12", + "url": "/philosophy/@dantheman/our-corrupt-sense-of-fairness#@r4fken/re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z" + }, + { + "active_votes": [ + { + "rshares": "6110298615385", + "voter": "abit" + }, + { + "rshares": "147501011215", + "voter": "ozmaster" + }, + { + "rshares": "2475588575", + "voter": "boy" + }, + { + "rshares": "3004997792", + "voter": "bue-witness" + }, + { + "rshares": "562918093", + "voter": "bunny" + }, + { + "rshares": "5613233031399", + "voter": "complexring" + }, + { + "rshares": "42638940309", + "voter": "bue" + }, + { + "rshares": "1326847006", + "voter": "mini" + }, + { + "rshares": "170845704", + "voter": "moon" + }, + { + "rshares": "497656797", + "voter": "healthcare" + }, + { + "rshares": "1149362909097", + "voter": "tuck-fheman" + }, + { + "rshares": "758055771", + "voter": "daniel.pan" + }, + { + "rshares": "230367336", + "voter": "helen.tan" + }, + { + "rshares": "134106565208", + "voter": "edgeland" + }, + { + "rshares": "19742650585", + "voter": "joelinux" + }, + { + "rshares": "9643353346", + "voter": "richman" + }, + { + "rshares": "7917346997", + "voter": "censor-this" + }, + { + "rshares": "2164056980", + "voter": "murh" + }, + { + "rshares": "1211348418", + "voter": "tee-em" + }, + { + "rshares": "25349822848", + "voter": "djm34" + }, + { + "rshares": "226688266301", + "voter": "tomkirkham" + }, + { + "rshares": "406954777", + "voter": "endgame" + }, + { + "rshares": "4469111855", + "voter": "sebastien" + }, + { + "rshares": "2263852120", + "voter": "moonjelly" + }, + { + "rshares": "12749599354", + "voter": "shredlord" + }, + { + "rshares": "4590247494", + "voter": "hagie" + }, + { + "rshares": "451134055", + "voter": "raymonjohnstone" + }, + { + "rshares": "11281334218", + "voter": "bergy" + }, + { + "rshares": "2008372383", + "voter": "theprophet0" + }, + { + "rshares": "1553952443", + "voter": "coinbar" + }, + { + "rshares": "149764365242", + "voter": "ozchartart" + }, + { + "rshares": "4977363121", + "voter": "croatia" + }, + { + "rshares": "4678252310", + "voter": "kryptik" + }, + { + "rshares": "170230804", + "voter": "minnowsunited" + }, + { + "rshares": "7371306594", + "voter": "stephen.king989" + }, + { + "rshares": "18742071917", + "voter": "eneismijmich" + }, + { + "rshares": "1114311519", + "voter": "quantumanomaly" + }, + { + "rshares": "149386074", + "voter": "naifaz" + }, + { + "rshares": "1910105759", + "voter": "catherinebleish" + }, + { + "rshares": "5114340641", + "voter": "professorx" + }, + { + "rshares": "65542448666", + "voter": "justinlaak" + }, + { + "rshares": "191282778", + "voter": "comcentrate" + }, + { + "rshares": "242182757", + "voter": "wizwom" + }, + { + "rshares": "6548817310", + "voter": "heretickitten" + }, + { + "rshares": "155385736", + "voter": "alina1" + }, + { + "rshares": "143562405", + "voter": "inwoxer" + }, + { + "rshares": "53141513", + "voter": "whatsup" + }, + { + "rshares": "51593171", + "voter": "freebornangel" + }, + { + "rshares": "51431138", + "voter": "steemwelcome" + }, + { + "rshares": "51996577", + "voter": "tldr" + } + ], + "author": "tldr", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Steemit is about great content. But sometimes it just gets a bit, well, too long... So you didn't read. \n\nIntroducing, me! @tldr - the summarise bot! \n\nI come to the rescue, at least I try! I will monitor the blockchain and propose summaries as a comment under articles and try to summarize the long text you had to read before you decide to upvote :)\n\nI won't make it long this time, otherwise I would have to TLDR this post, and then, ...... infinite loop NOOOOOOOOS....\n\n

I will run for 24 hours (see payout timer) after which I will analyse the results and see whether to continue or not. Your input is much valued below:

\nCurrent parameters:\n1. Post must have more than 5000 chars\n2. Summary must be smaller than 15% of original content\n3. Summary must be max 7 sentences\n\n\nhttp://i.giphy.com/jChlcC99Vqu2I.gif", + "category": "tldr", + "children": 22, + "created": "2016-08-24T21:56:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.giphy.com/jChlcC99Vqu2I.gif" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 42, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/life/@craigwilliamz/how-to-raise-fantastic-children-part-1", - "blacklists": [] + "tags": [ + "tldr", + "bot" + ] }, - { - "post_id": 787056, - "author": "spinx", - "permlink": "the-rain-it-is-the-law-of-life", - "category": "life", - "title": "The Rain - It is the law of life", - "body": "\n

\n


\n

One of the few precious truths I learned is life is not about waiting for the storm to pass, it is about learning to dance in...

\n

The Rain

\n

A ray of sunshine does not always mean happiness nor does a drop of rain mean total loneliness. Through time writers of all kinds being the sensitive, emotional and deep people that they are, have always associated the rain with loneliness. Today, whenever a cold wind blows through an open window or an empty space on a street, we are swept with its glum, warning us of a heavy feeling, reminding us of what we have lost, memories that are only too sad we almost wish could bury everything in a shroud of oblivion. Regrets come again, as well as faces of people from the past as a teardrop suddenly threatens to fall anytime from already lost and almost hollow eyes. The cold brought by the rain along with the dark clouds lurking outside makes us want to wrap our arms protectively around ourselves to keep us warm or to shut out any sad thoughts that dare to overstep the arms engulfing our curled bodies.

\n

\n


\n

But its not always like that. Not if we can help it, no. The Rain is perceived negatively most of the time but we can care enough to see beyond what is often seen. GO, outside on an early September morning and you will see that the rain leaves a magnificent dew drenched flower or a grass all the more alive as the sunlight hits the few drops left from last night's rain. All for you to behold. See that under umbrellas are faces of people smiling and radiant as you meet them on the street. Really, the rain cant be that bad. Not at all. It is natures gift, a gift from the Almighty. And after a rain, what do the heavens hold for you? An array of colors painting the sky and we know it as rainbow. Just as we know that after the tears, laughter comes, making us very much worthy of the joy because of what we have gone through.

\n

\n


\n

All our days cannot simply be filled with sunshine and it cannot be simply all laughter and smiles. We have to grow as a person just as the rain lets the flowers in the meadow bloom and grow. The flowers need the rain just as much as they need sunshine. Same is true with people. We need to be happy just as we need to be lonely so that we can grow as a person. Then can we only bring ourselves to realize that the bad is not so bad afer all as long as we allow the growth it brings to us as individuals.

\n

\n


\n

You cannot escape the rain, nor chase it away. Dare to hear its pitter patter rhythm as something which can never be a hindrance for you to see things in a different and brighter way no matter how dark the clouds and heavy the downpour. It is as inevitable as the troubles we come across. Learn from the rain because it is the law of nature. Learn from loneliness or troubles because... It is the law of life.

\n


\n


\n

(c) to the owner of the picture I used...

\n", - "json_metadata": { - "tags": [ - "life", - "story", - "blog", - "" - ], - "image": [ - "http://i64.tinypic.com/2ceg9qa.jpg", - "http://i63.tinypic.com/6iwlyw.jpg", - "http://i64.tinypic.com/fnzjtl.jpg", - "http://i63.tinypic.com/16kp014.jpg" - ] - }, - "created": "2016-08-29T07:57:36", - "updated": "2016-08-29T07:57:36", - "depth": 0, - "children": 5, - "net_rshares": 16847399101862, - "is_paidout": false, - "payout_at": "2016-09-29T09:39:45", - "payout": 18.413, - "pending_payout_value": "18.413 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "berniesanders", - "rshares": "11357569835389" - }, - { - "voter": "nextgenwitness", - "rshares": "86746642898" - }, - { - "voter": "justin", - "rshares": "273812540770" - }, - { - "voter": "silver", - "rshares": "552847788283" - }, - { - "voter": "silversteem", - "rshares": "1251914367375" - }, - { - "voter": "nextgencrypto", - "rshares": "1930805191057" - }, - { - "voter": "steemservices", - "rshares": "190090757518" - }, - { - "voter": "boombastic", - "rshares": "957733653490" - }, - { - "voter": "bingo-0", - "rshares": "8536011764" - }, - { - "voter": "bingo-1", - "rshares": "2238572115" - }, - { - "voter": "scientihark", - "rshares": "429169643" - }, - { - "voter": "murh", - "rshares": "2144600092" - }, - { - "voter": "beerbloke", - "rshares": "64184842487" - }, - { - "voter": "romait", - "rshares": "9651283220" - }, - { - "voter": "gidlark", - "rshares": "1090790161" - }, - { - "voter": "rubybian", - "rshares": "96663454240" - }, - { - "voter": "jillfeint", - "rshares": "504731722" - }, - { - "voter": "creemej", - "rshares": "24388027122" - }, - { - "voter": "the-future", - "rshares": "1680830998" - }, - { - "voter": "iamwne", - "rshares": "1487880898" - }, - { - "voter": "alex.chien", - "rshares": "1819480598" - }, - { - "voter": "shortcut", - "rshares": "5328526582" - }, - { - "voter": "gargon", - "rshares": "8943159633" - }, - { - "voter": "future24", - "rshares": "607950836" - }, - { - "voter": "thecurator", - "rshares": "15277887140" - }, - { - "voter": "michelnilles", - "rshares": "90179446" - }, - { - "voter": "kaosdlanor", - "rshares": "56326177" - }, - { - "voter": "thefeature", - "rshares": "425810977" - }, - { - "voter": "elsievr", - "rshares": "56770700" - }, - { - "voter": "champ333", - "rshares": "50663058" - }, - { - "voter": "terrano", - "rshares": "170136269" - }, - { - "voter": "spinx", - "rshares": "51239204" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 32, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/life/@spinx/the-rain-it-is-the-law-of-life", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 13805683329893, + "payout": 31.621, + "payout_at": "2016-09-25T02:39:54", + "pending_payout_value": "31.621 HBD", + "percent_steem_dollars": 10000, + "permlink": "i-m-tldr-an-experimental-bot-for-summarizing-your-long-articles", + "post_id": 736365, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 50 }, - { - "post_id": 628745, - "author": "feminism", - "permlink": "re-sean-king-re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160816t162832308z", - "category": "life", - "title": "RE: The Crap I Put Up With (as a Woman in Crypto) Because You Say You're \"Not a feminist\"", - "body": "I agree with @sean-king here @kato you give feminism a bad name... :)", - "json_metadata": { - "tags": [ - "life" - ], - "users": [ - "sean-king", - "kato" - ] - }, - "created": "2016-08-16T16:28:33", - "updated": "2016-08-16T16:28:33", - "depth": 2, - "children": 2, - "net_rshares": 5426307472843, - "is_paidout": false, - "payout_at": "2016-09-17T00:58:51", - "payout": 7.588, - "pending_payout_value": "7.588 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "kushed", - "rshares": "5426057994994" - }, - { - "voter": "concave", - "rshares": "249477849" - } + "title": "I'm @tldr - an experimental bot for summarizing your long articles.", + "updated": "2016-08-24T23:26:03", + "url": "/tldr/@tldr/i-m-tldr-an-experimental-bot-for-summarizing-your-long-articles" + }, + { + "active_votes": [ + { + "rshares": "20736048327416", + "voter": "dantheman" + }, + { + "rshares": "2472573792", + "voter": "boy" + }, + { + "rshares": "3001108476", + "voter": "bue-witness" + }, + { + "rshares": "562413629", + "voter": "bunny" + }, + { + "rshares": "42176902013", + "voter": "bue" + }, + { + "rshares": "1325367544", + "voter": "mini" + }, + { + "rshares": "170787830", + "voter": "moon" + }, + { + "rshares": "497243104", + "voter": "healthcare" + }, + { + "rshares": "737438203", + "voter": "daniel.pan" + }, + { + "rshares": "230272201", + "voter": "helen.tan" + }, + { + "rshares": "5072953140", + "voter": "holabebe" + }, + { + "rshares": "1799587902", + "voter": "murh" + }, + { + "rshares": "115361382518", + "voter": "bravenewcoin" + }, + { + "rshares": "166899192", + "voter": "soupernerd" + }, + { + "rshares": "5429807428", + "voter": "qamarpinkpanda" + }, + { + "rshares": "4494852918", + "voter": "aaseb" + }, + { + "rshares": "2162953561", + "voter": "the-future" + }, + { + "rshares": "289441856", + "voter": "illlefr4u" + }, + { + "rshares": "11382937008", + "voter": "pinkisland" + }, + { + "rshares": "3420690714", + "voter": "pigatron" + }, + { + "rshares": "163854600", + "voter": "weenis" + }, + { + "rshares": "309113169", + "voter": "jonaswakefield" + }, + { + "rshares": "984803370", + "voter": "jsantana" + }, + { + "rshares": "61805391", + "voter": "cehuneke" + }, + { + "rshares": "6199940304", + "voter": "craigwilliamz" + }, + { + "rshares": "57122450", + "voter": "thebrickranger" + }, + { + "rshares": "57108081", + "voter": "vbrasher" + }, + { + "rshares": "2980829211", + "voter": "ashleywilliamz" + }, + { + "rshares": "57736694", + "voter": "abbywilliamz" + }, + { + "rshares": "57604403", + "voter": "colleenwilliamz" + }, + { + "rshares": "3202748238", + "voter": "luminousvisions" + }, + { + "rshares": "57682239", + "voter": "canadian-coconut" + }, + { + "rshares": "381198814", + "voter": "ghasemkiani" + }, + { + "rshares": "54839161", + "voter": "cyborg" + }, + { + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "rshares": "51780266", + "voter": "roadhog" + }, + { + "rshares": "52777051", + "voter": "doggnostic" + }, + { + "rshares": "52504270", + "voter": "jenny-talls" + }, + { + "rshares": "54522752", + "voter": "robovirtuoso" + }, + { + "rshares": "50090625", + "voter": "birdiewonder" + }, + { + "rshares": "1092907021", + "voter": "robotev" + }, + { + "rshares": "51074637", + "voter": "goaldigger" + } + ], + "author": "craigwilliamz", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "![The Crown Family Photo](http://steemit-dub.s3.amazonaws.com/alex/the-crown-family1.png 'The Crown Family Photo')\n\nMy Family is Pretty Cool\n-\n![Family](http://steemit-dub.s3.amazonaws.com/family-800.jpg 'Family')\n\nMy favorite people in the world are my children. They are kind, generous, full of life, fun to be around and crazy creative. They are really cool people.\n\nWe have four children, Alex, Ashley, Abby and Austin. My wife's idea to name them all \"A\" names. They are referred to as the \"A Team\".\n\nWe have a close family. We argue very little and maintain open communication. We have treated them like people from early on and they have behaved as such.\n\n![Guitar](http://steemit-dub.s3.amazonaws.com/alex/guitar.png 'Guitar')\n\n\n\nAn Eye Opening Experience\n-\nA few weeks ago I was in Dallas visiting a friend whom I had not seen in many years. There were other people there as well that I had also not seen in a very long time. I struck up a conversation with one of them and the discussion of family ensued. He told me about his children and what it had been like for him to become a father. He has a wonderful family with children that are still very young. When the time came for me to share about my children, I began listing off what each one was doing from the oldest to the youngest. Before I could get to the youngest one, his mouth was gaped open and he burst out, \"What are you feeding them!\" We had a big laugh as I told him about the youngest and expanded on our philosophy of family.\n\nWe have had many compliments on our children throughout their life. Even today, the people with whom they interact; family, friends and the people who work with them in stage productions, make a point of complimenting them. I am around them all the time, and many of their friends are homeschooled as well so sometimes I forget how special they are and the impact they have on others.\n\n![Railroad tracks](http://steemit-dub.s3.amazonaws.com/alex/alex-railroad-tracks-600.jpg 'Railroad tracks')\n\nWhy Am I Sharing\n-\nI hope to convey a few things here. First, if you are considering homeschooling and have reservations, may these stories encourage you. If you already homeschool and wonder if it is all worth it, maybe our stories will give you hope and encouragement as well.\n\nAnd lastly, I am proud of them and want to share their success with you.\n\n![Sis](http://steemit-dub.s3.amazonaws.com/alex/children-800.jpg 'Children')\n\nWhy We Homeschool\n-\nMy personal experience in public schools was a nightmare. I moved a lot when I was young and changed schools every three to six months. During one stretch of five years, I switched schools nineteen times. I did not build long term relationships and being the new kid all the time often created struggles with teachers.\n\nThere is a very long story to my history so I will not get into that here. It is however, the main reason I became excited about homeschooling when my wife suggested it.\n\nOur Oldest Child Alex\n-\n![Alex](http://steemit-dub.s3.amazonaws.com/alexthrowback.jpg 'Alex')\n\nAlex has always been intelligent as I believe all children are. He had memorized many of the family members phone numbers and home addresses by the time he was six. We started him off in Montessori school at age four where he attended three years. We would have kept him in Montessori but they did not offer classes above six years old. \n\nAt that time my wife was still concerned about her ability to homeschool so we enrolled him in a Christian private school for one year. After that, she had researched enough to build her confidence. She was ready to go. (As the years went by, she found out that she was more than capable. We are guides.)\n\nPre-Teen\n-\n![Sis](http://steemit-dub.s3.amazonaws.com/alex/alex-littlekid1.jpeg 'Alex and Sister')\n\nAlex took two years of Latin and one year of Japanese. He acted in plays and did what most children do, play a lot.\n\nTeen Years\n-\n![Sis](http://steemit-dub.s3.amazonaws.com/ateam.jpg 'Alex and Sister')\n\nMany people will tell you that you will have to deal with the teenage years. \"Brace yourself,\" they will say. \"You will become their enemy!\" We did not experience this with Alex or our other children. Alex would come to me for advice about issues him and his friends were discussing. When he would share how I reacted to some of our serious conversations, his friends were astonished and would respond with descriptions of their parents exploding if they attempted to have the same discussions with their parents.\n\nKeeping your cool when one of your children comes to you with a confession is a sure way to have them trust you with other issues of concern.\n\nDuring his teen years, Alex took CLEP tests and earned twelve college hours.\n\nAt sixteen, he began to gain interest in programming. I had introduced it to him when he was nine but he wasn't interested. Then again around eleven but still no interest. At sixteen, the interest was all his. Had I forced him to do it earlier, he may have never liked it.\n\n![Graduation](http://steemit-dub.s3.amazonaws.com/alex/graduation.jpg 'Graduation')\n\nBecoming an Adult\n-\n![Alex](http://steemit-dub.s3.amazonaws.com/alex/alex-adult1.jpeg 'Alex')\n\nOne his eighteenth birthday, he begin working his first job as a software developer. He was hired as an apprentice and was promoted to junior developer after only three months. At that time, he began mentoring two of his friends. Within a few months he had taken on a third person to mentor. Within a year or so, each of them have now changed their path and work as software developers. It has significantly changed their lives. Alex just recently began mentoring another friend. Pretty cool to pass forward. He had received help from some of my co-workers early on which made all the difference in his progression.\n\nHe now speaks French and Mandarin and has aspirations to learn many more. He has traveled to seven countries and has an arrangement with his employer to work from anywhere in the world as long as he is at the office for part of the year.\n\n![Alex](http://steemit-dub.s3.amazonaws.com/alex/amsterdamcollage.jpg 'Alex')\n\nHe gives technical talks at local meet ups, plays both acoustic and electric guitar, has never met a stranger and has made no enemies.\n\nHe is an inspiration to others, his family and siblings. The bar has been set high but the other children have many interests and accomplishments of their own. I'll share those in subsequent posts.\n\n![Leon](http://steemit-dub.s3.amazonaws.com/alex/leoncollage.jpg 'Leon')\n\nWhat was our part?\n-\nMy wife has worked hard to keep them supplied with good school material, staying compliant with state requirements and providing some structure for learning. We never set up a school room like environment. There are never set hours of study. Homeschooling hours vary depending on the age of the child and what they are working on at that phase of their education. I would say that most of the time they spend less time doing actual school work and the rest of the time exploring, using their imagination and focusing their energy on things they are interested in.\n\nFor Alex, that was a foreign language. Other times it was memorizing all the Pokemon cards and building decks and playing in tournaments. Alex said one of the things that has helped him so much in learning new things was the fact that he had memorized so much Pokemon data. He developed the ability to store and retrieve things in his mind.\n\nThe simple fact is\u2026 we didn't do it. Alex did. He deserves all the credit. He did all the work. We provided the canvas, the paint and the paintbrushes. \n\nConclusion\n-\nI feel we have a pretty cool family. There are many ways to raise your children. The most important thing is to love them unconditionally, give them room to grow and treat them as you would your very best friend. They are people and are smarter than most give them credit.\n\nI hope I have been able to convey how proud we are of Alex. These are but a few highlights of his life as he is only twenty-one. There is so much in store for him.\n\nI am so grateful that as much as possible we have given Alex the opportunity to live life on his own terms and he has flourished.", + "category": "life", + "children": 3, + "created": "2016-08-17T02:23:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://steemit-dub.s3.amazonaws.com/alex/the-crown-family1.png" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 2, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160815t231355973z", - "url": "/life/@kato/the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist#@feminism/re-sean-king-re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160816t162832308z", - "blacklists": [] + "tags": [ + "life", + "photography", + "travel", + "parenting", + "family" + ] }, - { - "post_id": 678454, - "author": "craigwilliamz", - "permlink": "re-anarcho-andrei-stop-hitting-your-kids-20160820t021940362z", - "category": "voluntaryism", - "title": "RE: Stop Hitting Your Kids", - "body": "Before I had children, I would look at other parents who were giving their children soda and a pacifier and think, \"Those are horrible parents. Don't they know what harm soda is and all the things that are wrong with pacifiers!\" Then I had children. We have four. It was a lot harder than I thought it would be. When children are very young, you cannot reason with them. You cannot get through to them with logic.\n\nI hope you continue on Steemit and share your experiences with your children. You do have children, right?\n\nI love the concepts being presented by this an other posts to raise our children and never discipline them but what I am not seeing are examples of how to do that. Not once they are old enough to reason, between 4 and 6, but before that.\n\nI am a strong opponent to child abuse. I grew up in a **very** unstable home. That was something I did not want and did not do in my own family but each of my children did receive a few spankings when they were very young. Once they were old enough to reason with, we discussed matters and consequences came into play.\n\nI have a post on my oldest son, he is 21 now and I talk about homeschooling and letting children play a large role in their life. It is __their__ life after all.\n\nhttps://steemit.com/life/@craigwilliamz/how-to-raise-fantastic-children-part-1", - "json_metadata": { - "tags": [ - "voluntaryism" - ], - "links": [ - "https://steemit.com/life/@craigwilliamz/how-to-raise-fantastic-children-part-1" - ] - }, - "created": "2016-08-20T02:19:39", - "updated": "2016-08-20T02:19:39", - "depth": 1, - "children": 4, - "net_rshares": 2931180818933, - "is_paidout": false, - "payout_at": "2016-09-20T02:13:36", - "payout": 2.672, - "pending_payout_value": "2.672 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "dantheman", - "rshares": "2880006712141" - }, - { - "voter": "boy", - "rshares": "2472573792" - }, - { - "voter": "bue-witness", - "rshares": "3001108476" - }, - { - "voter": "bunny", - "rshares": "562413629" - }, - { - "voter": "bue", - "rshares": "42176902013" - }, - { - "voter": "mini", - "rshares": "1325367544" - }, - { - "voter": "moon", - "rshares": "170787830" - }, - { - "voter": "healthcare", - "rshares": "497243104" - }, - { - "voter": "daniel.pan", - "rshares": "737438203" - }, - { - "voter": "helen.tan", - "rshares": "230272201" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 10, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "anarcho-andrei", - "parent_permlink": "stop-hitting-your-kids", - "url": "/voluntaryism/@anarcho-andrei/stop-hitting-your-kids#@craigwilliamz/re-anarcho-andrei-stop-hitting-your-kids-20160820t021940362z", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 20952886915040, + "payout": 28.712, + "payout_at": "2016-09-17T02:57:45", + "pending_payout_value": "28.712 HBD", + "percent_steem_dollars": 10000, + "permlink": "how-to-raise-fantastic-children-part-1", + "post_id": 635822, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 42 }, - { - "post_id": 736431, - "author": "cryptocurrency1", - "permlink": "re-complexring-preview-of-custom-steemit-com-skins-by-maximkichev-20160824t220504965z", - "category": "skins", - "title": "RE: Preview of Custom Steemit.com Skins by @maximkichev", - "body": "This is a great idea. Is it a button on Steemit website to change skin colors?", - "json_metadata": { - "tags": [ - "skins" - ] - }, - "created": "2016-08-24T22:04:51", - "updated": "2016-08-24T22:06:48", - "depth": 1, - "children": 1, - "net_rshares": 2929265394715, - "is_paidout": false, - "payout_at": "2016-09-24T23:52:36", - "payout": 2.566, - "pending_payout_value": "2.566 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "boy", - "rshares": "2475545095" - }, - { - "voter": "bue-witness", - "rshares": "3004943442" - }, - { - "voter": "bunny", - "rshares": "562911298" - }, - { - "voter": "complexring", - "rshares": "2877607015480" - }, - { - "voter": "bue", - "rshares": "42631240754" - }, - { - "voter": "mini", - "rshares": "1326826625" - }, - { - "voter": "moon", - "rshares": "170845704" - }, - { - "voter": "healthcare", - "rshares": "497652721" - }, - { - "voter": "daniel.pan", - "rshares": "758046260" - }, - { - "voter": "helen.tan", - "rshares": "230367336" - } + "title": "How to Raise Fantastic Children - Part 1", + "updated": "2016-08-17T02:41:03", + "url": "/life/@craigwilliamz/how-to-raise-fantastic-children-part-1" + }, + { + "active_votes": [ + { + "rshares": "11357569835389", + "voter": "berniesanders" + }, + { + "rshares": "86746642898", + "voter": "nextgenwitness" + }, + { + "rshares": "273812540770", + "voter": "justin" + }, + { + "rshares": "552847788283", + "voter": "silver" + }, + { + "rshares": "1251914367375", + "voter": "silversteem" + }, + { + "rshares": "1930805191057", + "voter": "nextgencrypto" + }, + { + "rshares": "190090757518", + "voter": "steemservices" + }, + { + "rshares": "957733653490", + "voter": "boombastic" + }, + { + "rshares": "8536011764", + "voter": "bingo-0" + }, + { + "rshares": "2238572115", + "voter": "bingo-1" + }, + { + "rshares": "429169643", + "voter": "scientihark" + }, + { + "rshares": "2144600092", + "voter": "murh" + }, + { + "rshares": "64184842487", + "voter": "beerbloke" + }, + { + "rshares": "9651283220", + "voter": "romait" + }, + { + "rshares": "1090790161", + "voter": "gidlark" + }, + { + "rshares": "96663454240", + "voter": "rubybian" + }, + { + "rshares": "504731722", + "voter": "jillfeint" + }, + { + "rshares": "24388027122", + "voter": "creemej" + }, + { + "rshares": "1680830998", + "voter": "the-future" + }, + { + "rshares": "1487880898", + "voter": "iamwne" + }, + { + "rshares": "1819480598", + "voter": "alex.chien" + }, + { + "rshares": "5328526582", + "voter": "shortcut" + }, + { + "rshares": "8943159633", + "voter": "gargon" + }, + { + "rshares": "607950836", + "voter": "future24" + }, + { + "rshares": "15277887140", + "voter": "thecurator" + }, + { + "rshares": "90179446", + "voter": "michelnilles" + }, + { + "rshares": "56326177", + "voter": "kaosdlanor" + }, + { + "rshares": "425810977", + "voter": "thefeature" + }, + { + "rshares": "56770700", + "voter": "elsievr" + }, + { + "rshares": "50663058", + "voter": "champ333" + }, + { + "rshares": "170136269", + "voter": "terrano" + }, + { + "rshares": "51239204", + "voter": "spinx" + } + ], + "author": "spinx", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\n


\n

One of the few precious truths I learned is life is not about waiting for the storm to pass, it is about learning to dance in...

\n

The Rain

\n

A ray of sunshine does not always mean happiness nor does a drop of rain mean total loneliness. Through time writers of all kinds being the sensitive, emotional and deep people that they are, have always associated the rain with loneliness. Today, whenever a cold wind blows through an open window or an empty space on a street, we are swept with its glum, warning us of a heavy feeling, reminding us of what we have lost, memories that are only too sad we almost wish could bury everything in a shroud of oblivion. Regrets come again, as well as faces of people from the past as a teardrop suddenly threatens to fall anytime from already lost and almost hollow eyes. The cold brought by the rain along with the dark clouds lurking outside makes us want to wrap our arms protectively around ourselves to keep us warm or to shut out any sad thoughts that dare to overstep the arms engulfing our curled bodies.

\n

\n


\n

But its not always like that. Not if we can help it, no. The Rain is perceived negatively most of the time but we can care enough to see beyond what is often seen. GO, outside on an early September morning and you will see that the rain leaves a magnificent dew drenched flower or a grass all the more alive as the sunlight hits the few drops left from last night's rain. All for you to behold. See that under umbrellas are faces of people smiling and radiant as you meet them on the street. Really, the rain cant be that bad. Not at all. It is natures gift, a gift from the Almighty. And after a rain, what do the heavens hold for you? An array of colors painting the sky and we know it as rainbow. Just as we know that after the tears, laughter comes, making us very much worthy of the joy because of what we have gone through.

\n

\n


\n

All our days cannot simply be filled with sunshine and it cannot be simply all laughter and smiles. We have to grow as a person just as the rain lets the flowers in the meadow bloom and grow. The flowers need the rain just as much as they need sunshine. Same is true with people. We need to be happy just as we need to be lonely so that we can grow as a person. Then can we only bring ourselves to realize that the bad is not so bad afer all as long as we allow the growth it brings to us as individuals.

\n

\n


\n

You cannot escape the rain, nor chase it away. Dare to hear its pitter patter rhythm as something which can never be a hindrance for you to see things in a different and brighter way no matter how dark the clouds and heavy the downpour. It is as inevitable as the troubles we come across. Learn from the rain because it is the law of nature. Learn from loneliness or troubles because... It is the law of life.

\n


\n


\n

(c) to the owner of the picture I used...

\n", + "category": "life", + "children": 5, + "created": "2016-08-29T07:57:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i64.tinypic.com/2ceg9qa.jpg", + "http://i63.tinypic.com/6iwlyw.jpg", + "http://i64.tinypic.com/fnzjtl.jpg", + "http://i63.tinypic.com/16kp014.jpg" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 10, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "complexring", - "parent_permlink": "preview-of-custom-steemit-com-skins-by-maximkichev", - "url": "/skins/@complexring/preview-of-custom-steemit-com-skins-by-maximkichev#@cryptocurrency1/re-complexring-preview-of-custom-steemit-com-skins-by-maximkichev-20160824t220504965z", - "blacklists": [] + "tags": [ + "life", + "story", + "blog", + "" + ] }, - { - "post_id": 698270, - "author": "r4fken", - "permlink": "my-1000th-post-and-other-steemit-achievements", - "category": "steemit", - "title": "My 1000th post and other Steemit achievements!", - "body": "Today is an historical day for me. This is my **thousandth** post on Steemit already, I hit **100** followers today ánd I'm finally past the magical limit of **3000** SP! :D\n![Achievement unlocked](http://rlv.zcache.com/achievement_unlocked_bumper_sticker-r50c3a5b34b904bb4a8d9e6aad6b920a1_v9wht_8byvr_512.jpg)\n#### Thanks!\nThanks to all my followers, voters and friends! I hope we'll meet again soon, and continue scoring milestones! :)\nAlso, a thank you for the devs, we **love** your work, keep going!", - "json_metadata": { - "tags": [ - "steemit", - "awesome", - "achievement", - "stats", - "milestone" - ], - "image": [ - "http://rlv.zcache.com/achievement_unlocked_bumper_sticker-r50c3a5b34b904bb4a8d9e6aad6b920a1_v9wht_8byvr_512.jpg" - ] - }, - "created": "2016-08-21T20:34:39", - "updated": "2016-08-21T20:34:39", - "depth": 0, - "children": 35, - "net_rshares": -25406680605573, - "is_paidout": false, - "payout_at": "2016-09-22T12:39:06", - "payout": 2.101, - "pending_payout_value": "2.101 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "berniesanders", - "rshares": "-25419129621778" - }, - { - "voter": "adm", - "rshares": "-1303288241222" - }, - { - "voter": "boy", - "rshares": "3711292843" - }, - { - "voter": "bue-witness", - "rshares": "4504842525" - }, - { - "voter": "bunny", - "rshares": "844018072" - }, - { - "voter": "bue", - "rshares": "63630835821" - }, - { - "voter": "steemservices", - "rshares": "-491961877500" - }, - { - "voter": "mini", - "rshares": "1989271577" - }, - { - "voter": "moon", - "rshares": "256227507" - }, - { - "voter": "benjojo", - "rshares": "1244483571299" - }, - { - "voter": "proctologic", - "rshares": "24096643591" - }, - { - "voter": "healthcare", - "rshares": "746214388" - }, - { - "voter": "daniel.pan", - "rshares": "1124279505" - }, - { - "voter": "helen.tan", - "rshares": "345483224" - }, - { - "voter": "chryspano", - "rshares": "-403038020258" - }, - { - "voter": "kingscrown", - "rshares": "81440709580" - }, - { - "voter": "acidyo", - "rshares": "18173041048" - }, - { - "voter": "murh", - "rshares": "1441527990" - }, - { - "voter": "cryptofunk", - "rshares": "7298235047" - }, - { - "voter": "thecryptofiend", - "rshares": "13897431770" - }, - { - "voter": "zebbra2014", - "rshares": "5255137728" - }, - { - "voter": "hater", - "rshares": "-304963538" - }, - { - "voter": "wisehammer", - "rshares": "1013738674" - }, - { - "voter": "micheletrainer", - "rshares": "2750169349" - }, - { - "voter": "roelandp", - "rshares": "305244819566" - }, - { - "voter": "elyaque", - "rshares": "15757395195" - }, - { - "voter": "r4fken", - "rshares": "23999310435" - }, - { - "voter": "on0tole", - "rshares": "4383469997" - }, - { - "voter": "leksimus", - "rshares": "1350456080" - }, - { - "voter": "sveokla", - "rshares": "239464793" - }, - { - "voter": "perwest", - "rshares": "6247936107" - }, - { - "voter": "pigatto", - "rshares": "547667566" - }, - { - "voter": "anduweb", - "rshares": "17764985905" - }, - { - "voter": "maximkichev", - "rshares": "3769939766" - }, - { - "voter": "arek", - "rshares": "-290175754" - }, - { - "voter": "heimindanger", - "rshares": "7864564586" - }, - { - "voter": "bitcoiner", - "rshares": "3766102090" - }, - { - "voter": "qonq99", - "rshares": "528819341" - }, - { - "voter": "valspeaks", - "rshares": "2311634180" - }, - { - "voter": "lukmarcus", - "rshares": "2173853443" - }, - { - "voter": "bullionstackers", - "rshares": "1419541000" - }, - { - "voter": "dmilash", - "rshares": "2022504731" - }, - { - "voter": "kaykunoichi", - "rshares": "508192245" - }, - { - "voter": "jasonstaggers", - "rshares": "28835166886" - }, - { - "voter": "steemdrive", - "rshares": "89850692765" - }, - { - "voter": "litrbooh", - "rshares": "1700610055" - }, - { - "voter": "capitalism", - "rshares": "11642599188" - }, - { - "voter": "always1success", - "rshares": "68869178" - }, - { - "voter": "xtester", - "rshares": "30079446399" - }, - { - "voter": "marinaz", - "rshares": "66954524" - }, - { - "voter": "caitlinm", - "rshares": "178131954" - }, - { - "voter": "thisisbenbrick", - "rshares": "89856273584" - }, - { - "voter": "joele", - "rshares": "54406274025" - }, - { - "voter": "erikkartmen", - "rshares": "57581935" - }, - { - "voter": "driv3n", - "rshares": "24752361813" - }, - { - "voter": "numberone", - "rshares": "63964502" - }, - { - "voter": "naifaz", - "rshares": "154559742" - }, - { - "voter": "violino", - "rshares": "62002598" - }, - { - "voter": "guard", - "rshares": "-92783813" - }, - { - "voter": "bbsj", - "rshares": "2626905838" - }, - { - "voter": "lecrazycanuckeh", - "rshares": "62301037" - }, - { - "voter": "grayhorse", - "rshares": "-149863586" - }, - { - "voter": "jessicalu", - "rshares": "-53470504" - }, - { - "voter": "direcrusher", - "rshares": "55036253" - }, - { - "voter": "tschabidave", - "rshares": "54444758" - }, - { - "voter": "ibringawareness", - "rshares": "100163794" - }, - { - "voter": "anamikasjain", - "rshares": "50742988" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 67, - "flag_weight": 4.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/steemit/@r4fken/my-1000th-post-and-other-steemit-achievements", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 16847399101862, + "payout": 18.413, + "payout_at": "2016-09-29T09:39:45", + "pending_payout_value": "18.413 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-rain-it-is-the-law-of-life", + "post_id": 787056, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 32 }, - { - "post_id": 718957, - "author": "loveangel", - "permlink": "re-jvper-international-money-transfer-provider-started-using-steem-20160823t142700478z", - "category": "steemit", - "title": "RE: International Money Transfer Provider started using Steem", - "body": "If people would be able to use Steem for remittances, then I feel this could just blow up out of proportion for Steem, as there would be no need to convert Steem's to bitcoin and then to local currencies. \n\nIts dependency on bitcoin would be negated and we can then truly consider it as a global currency :-)", - "json_metadata": { - "tags": [ - "steemit" - ] - }, - "created": "2016-08-23T14:27:00", - "updated": "2016-08-23T14:27:00", - "depth": 1, - "children": 1, - "net_rshares": 1784399120902, - "is_paidout": false, - "payout_at": "2016-09-23T13:51:39", - "payout": 1.417, - "pending_payout_value": "1.417 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "dantheman", - "rshares": "1730545983153" - }, - { - "voter": "boy", - "rshares": "2474667874" - }, - { - "voter": "bue-witness", - "rshares": "3003831514" - }, - { - "voter": "bunny", - "rshares": "562780317" - }, - { - "voter": "bue", - "rshares": "42510264789" - }, - { - "voter": "mini", - "rshares": "1326410513" - }, - { - "voter": "moon", - "rshares": "170827956" - }, - { - "voter": "healthcare", - "rshares": "497540834" - }, - { - "voter": "daniel.pan", - "rshares": "756497537" - }, - { - "voter": "helen.tan", - "rshares": "230342766" - }, - { - "voter": "jvper", - "rshares": "2251314435" - }, - { - "voter": "sizil", - "rshares": "68659214" - } + "title": "The Rain - It is the law of life", + "updated": "2016-08-29T07:57:36", + "url": "/life/@spinx/the-rain-it-is-the-law-of-life" + }, + { + "active_votes": [ + { + "rshares": "5426057994994", + "voter": "kushed" + }, + { + "rshares": "249477849", + "voter": "concave" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I agree with @sean-king here @kato you give feminism a bad name... :)", + "category": "life", + "children": 2, + "created": "2016-08-16T16:28:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "tags": [ + "life" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 12, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "jvper", - "parent_permlink": "international-money-transfer-provider-started-using-steem", - "url": "/steemit/@jvper/international-money-transfer-provider-started-using-steem#@loveangel/re-jvper-international-money-transfer-provider-started-using-steem-20160823t142700478z", - "blacklists": [] + "users": [ + "sean-king", + "kato" + ] }, - { - "post_id": 694518, - "author": "feminism", - "permlink": "re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t141224417z", - "category": "faith", - "title": "RE: Faith Versus Religion--Refuting \"God's Undertaker\", Part 1", - "body": "proofreading: quiet-> quite", - "json_metadata": { - "tags": [ - "faith" - ] - }, - "created": "2016-08-21T14:12:24", - "updated": "2016-08-21T14:12:24", - "depth": 1, - "children": 1, - "net_rshares": 1453905500705, - "is_paidout": false, - "payout_at": "2016-09-21T14:54:18", - "payout": 1.308, - "pending_payout_value": "1.308 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "sean-king", - "rshares": "1453905500705" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 1, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "faith-versus-religion-refuting-god-s-undertaker-part-1", - "url": "/faith/@sean-king/faith-versus-religion-refuting-god-s-undertaker-part-1#@feminism/re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t141224417z", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5426307472843, + "parent_author": "sean-king", + "parent_permlink": "re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160815t231355973z", + "payout": 7.588, + "payout_at": "2016-09-17T00:58:51", + "pending_payout_value": "7.588 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160816t162832308z", + "post_id": 628745, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 2 }, - { - "post_id": 695353, - "author": "feminism", - "permlink": "re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t154045710z", - "category": "faith", - "title": "RE: Faith Versus Religion--Refuting \"God's Undertaker\", Part 1", - "body": "money quote: \"And it's also just as likely that God ejaculated out the universe after an epic masterbation session\"\n\nproofreading: masturbation", - "json_metadata": { - "tags": [ - "faith" - ] - }, - "created": "2016-08-21T15:40:45", - "updated": "2016-08-21T15:40:45", - "depth": 1, - "children": 0, - "net_rshares": 1424832587077, - "is_paidout": false, - "payout_at": "2016-09-21T14:54:18", - "payout": 1.276, - "pending_payout_value": "1.276 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "sean-king", - "rshares": "1424832587077" - } + "title": "RE: The Crap I Put Up With (as a Woman in Crypto) Because You Say You're \"Not a feminist\"", + "updated": "2016-08-16T16:28:33", + "url": "/life/@kato/the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist#@feminism/re-sean-king-re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160816t162832308z" + }, + { + "active_votes": [ + { + "rshares": "2880006712141", + "voter": "dantheman" + }, + { + "rshares": "2472573792", + "voter": "boy" + }, + { + "rshares": "3001108476", + "voter": "bue-witness" + }, + { + "rshares": "562413629", + "voter": "bunny" + }, + { + "rshares": "42176902013", + "voter": "bue" + }, + { + "rshares": "1325367544", + "voter": "mini" + }, + { + "rshares": "170787830", + "voter": "moon" + }, + { + "rshares": "497243104", + "voter": "healthcare" + }, + { + "rshares": "737438203", + "voter": "daniel.pan" + }, + { + "rshares": "230272201", + "voter": "helen.tan" + } + ], + "author": "craigwilliamz", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Before I had children, I would look at other parents who were giving their children soda and a pacifier and think, \"Those are horrible parents. Don't they know what harm soda is and all the things that are wrong with pacifiers!\" Then I had children. We have four. It was a lot harder than I thought it would be. When children are very young, you cannot reason with them. You cannot get through to them with logic.\n\nI hope you continue on Steemit and share your experiences with your children. You do have children, right?\n\nI love the concepts being presented by this an other posts to raise our children and never discipline them but what I am not seeing are examples of how to do that. Not once they are old enough to reason, between 4 and 6, but before that.\n\nI am a strong opponent to child abuse. I grew up in a **very** unstable home. That was something I did not want and did not do in my own family but each of my children did receive a few spankings when they were very young. Once they were old enough to reason with, we discussed matters and consequences came into play.\n\nI have a post on my oldest son, he is 21 now and I talk about homeschooling and letting children play a large role in their life. It is __their__ life after all.\n\nhttps://steemit.com/life/@craigwilliamz/how-to-raise-fantastic-children-part-1", + "category": "voluntaryism", + "children": 4, + "created": "2016-08-20T02:19:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemit.com/life/@craigwilliamz/how-to-raise-fantastic-children-part-1" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 1, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "faith-versus-religion-refuting-god-s-undertaker-part-1", - "url": "/faith/@sean-king/faith-versus-religion-refuting-god-s-undertaker-part-1#@feminism/re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t154045710z", - "blacklists": [] + "tags": [ + "voluntaryism" + ] }, - { - "post_id": 736865, - "author": "feminism", - "permlink": "re-cryptoctopus-the-earth-is-flat-the-ultimate-test-for-open-mindedness-20160824t225052573z", - "category": "curiosity", - "title": "RE: The Earth Is Flat? The ultimate test for \"open mindedness\"", - "body": "it is a great exercise in epistemology, I agree.\nand most people are sheeps, meaning, they dont know how they know what \"they know\", meaning they dont know shit", - "json_metadata": { - "tags": [ - "curiosity" - ] - }, - "created": "2016-08-24T22:50:51", - "updated": "2016-08-24T22:50:51", - "depth": 1, - "children": 0, - "net_rshares": 1746474870201, - "is_paidout": false, - "payout_at": "2016-09-24T23:11:33", - "payout": 1.256, - "pending_payout_value": "1.256 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "boy", - "rshares": "2475680916" - }, - { - "voter": "bue-witness", - "rshares": "3005113218" - }, - { - "voter": "bunny", - "rshares": "562928956" - }, - { - "voter": "bue", - "rshares": "42648953508" - }, - { - "voter": "mini", - "rshares": "1326895892" - }, - { - "voter": "moon", - "rshares": "170847062" - }, - { - "voter": "healthcare", - "rshares": "497673093" - }, - { - "voter": "daniel.pan", - "rshares": "759428460" - }, - { - "voter": "helen.tan", - "rshares": "230370052" - }, - { - "voter": "cryptoctopus", - "rshares": "1698179876049" - }, - { - "voter": "beanz", - "rshares": "-3382897005" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 11, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "cryptoctopus", - "parent_permlink": "the-earth-is-flat-the-ultimate-test-for-open-mindedness", - "url": "/curiosity/@cryptoctopus/the-earth-is-flat-the-ultimate-test-for-open-mindedness#@feminism/re-cryptoctopus-the-earth-is-flat-the-ultimate-test-for-open-mindedness-20160824t225052573z", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 2931180818933, + "parent_author": "anarcho-andrei", + "parent_permlink": "stop-hitting-your-kids", + "payout": 2.672, + "payout_at": "2016-09-20T02:13:36", + "pending_payout_value": "2.672 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-anarcho-andrei-stop-hitting-your-kids-20160820t021940362z", + "post_id": 678454, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 10 }, - { - "post_id": 674727, - "author": "feminism", - "permlink": "re-sean-king-nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky-20160819t195205251z", - "category": "feminism", - "title": "RE: \"Nothing in biology makes sense except in the light of evolution.\" --Theodosius Dobzhansky", - "body": "proofreading: lessor", - "json_metadata": { - "tags": [ - "feminism" - ] - }, - "created": "2016-08-19T19:52:06", - "updated": "2016-08-19T19:52:06", - "depth": 1, - "children": 1, - "net_rshares": 1532858419010, - "is_paidout": false, - "payout_at": "2016-09-19T19:24:12", - "payout": 1.099, - "pending_payout_value": "1.099 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "boy", - "rshares": "2471701036" - }, - { - "voter": "bue-witness", - "rshares": "3000021378" - }, - { - "voter": "bunny", - "rshares": "562225906" - }, - { - "voter": "bue", - "rshares": "42142431563" - }, - { - "voter": "mini", - "rshares": "1324903845" - }, - { - "voter": "moon", - "rshares": "170734595" - }, - { - "voter": "healthcare", - "rshares": "497076397" - }, - { - "voter": "daniel.pan", - "rshares": "737187441" - }, - { - "voter": "helen.tan", - "rshares": "230197953" - }, - { - "voter": "sean-king", - "rshares": "1481721938896" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 10, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky", - "url": "/feminism/@sean-king/nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky#@feminism/re-sean-king-nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky-20160819t195205251z", - "blacklists": [] + "title": "RE: Stop Hitting Your Kids", + "updated": "2016-08-20T02:19:39", + "url": "/voluntaryism/@anarcho-andrei/stop-hitting-your-kids#@craigwilliamz/re-anarcho-andrei-stop-hitting-your-kids-20160820t021940362z" + }, + { + "active_votes": [ + { + "rshares": "2475545095", + "voter": "boy" + }, + { + "rshares": "3004943442", + "voter": "bue-witness" + }, + { + "rshares": "562911298", + "voter": "bunny" + }, + { + "rshares": "2877607015480", + "voter": "complexring" + }, + { + "rshares": "42631240754", + "voter": "bue" + }, + { + "rshares": "1326826625", + "voter": "mini" + }, + { + "rshares": "170845704", + "voter": "moon" + }, + { + "rshares": "497652721", + "voter": "healthcare" + }, + { + "rshares": "758046260", + "voter": "daniel.pan" + }, + { + "rshares": "230367336", + "voter": "helen.tan" + } + ], + "author": "cryptocurrency1", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "This is a great idea. Is it a button on Steemit website to change skin colors?", + "category": "skins", + "children": 1, + "created": "2016-08-24T22:04:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "skins" + ] }, - { - "post_id": 736890, - "author": "feminism", - "permlink": "re-sean-king-me-cindy-and-20160824t225250885z", - "category": "celebrity", - "title": "RE: Me, Cindy and...?", - "body": "OMG Sasha Grey\nwhy are you doing this to me Sean ???\n:)", - "json_metadata": { - "tags": [ - "celebrity" - ] - }, - "created": "2016-08-24T22:52:51", - "updated": "2016-08-24T22:55:00", - "depth": 1, - "children": 0, - "net_rshares": 1511562806286, - "is_paidout": false, - "payout_at": "2016-09-24T23:35:06", - "payout": 1.049, - "pending_payout_value": "1.049 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "boy", - "rshares": "2475557327" - }, - { - "voter": "bue-witness", - "rshares": "3004958392" - }, - { - "voter": "bunny", - "rshares": "562914017" - }, - { - "voter": "bue", - "rshares": "42634234947" - }, - { - "voter": "mini", - "rshares": "1326832061" - }, - { - "voter": "moon", - "rshares": "170845704" - }, - { - "voter": "healthcare", - "rshares": "497654080" - }, - { - "voter": "daniel.pan", - "rshares": "758048978" - }, - { - "voter": "helen.tan", - "rshares": "230367336" - }, - { - "voter": "somedude", - "rshares": "7488699966" - }, - { - "voter": "sean-king", - "rshares": "1455795590483" - }, - { - "voter": "beanz", - "rshares": "-3382897005" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 12, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "me-cindy-and", - "url": "/celebrity/@sean-king/me-cindy-and#@feminism/re-sean-king-me-cindy-and-20160824t225250885z", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 2929265394715, + "parent_author": "complexring", + "parent_permlink": "preview-of-custom-steemit-com-skins-by-maximkichev", + "payout": 2.566, + "payout_at": "2016-09-24T23:52:36", + "pending_payout_value": "2.566 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-complexring-preview-of-custom-steemit-com-skins-by-maximkichev-20160824t220504965z", + "post_id": 736431, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 10 }, - { - "post_id": 769459, - "author": "feminism", - "permlink": "re-sean-king-the-bible-isn-t-mainly-history-20160827t184548731z", - "category": "bible", - "title": "RE: The Bible Isn't (Mainly) History", - "body": "\"It’s also the reason why poetry is often able to convey a truer understanding of an ideal than prose: The ineffable, transcendental concepts of art and religion defy encapsulation in mere words. \"\nThats the reason why I dont bother explaining myself with mere prose,\nbut instead I use poetry and music, the closest piece of poetry or music I know\nthat conveys what Im trying to convey.", - "json_metadata": { - "tags": [ - "bible" - ] - }, - "created": "2016-08-27T18:45:48", - "updated": "2016-08-27T18:47:27", - "depth": 1, - "children": 0, - "net_rshares": 1398535239934, - "is_paidout": false, - "payout_at": "2016-09-27T18:51:57", - "payout": 1.031, - "pending_payout_value": "1.031 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "sean-king", - "rshares": "1398535239934" - } + "title": "RE: Preview of Custom Steemit.com Skins by @maximkichev", + "updated": "2016-08-24T22:06:48", + "url": "/skins/@complexring/preview-of-custom-steemit-com-skins-by-maximkichev#@cryptocurrency1/re-complexring-preview-of-custom-steemit-com-skins-by-maximkichev-20160824t220504965z" + }, + { + "active_votes": [ + { + "rshares": "-25419129621778", + "voter": "berniesanders" + }, + { + "rshares": "-1303288241222", + "voter": "adm" + }, + { + "rshares": "3711292843", + "voter": "boy" + }, + { + "rshares": "4504842525", + "voter": "bue-witness" + }, + { + "rshares": "844018072", + "voter": "bunny" + }, + { + "rshares": "63630835821", + "voter": "bue" + }, + { + "rshares": "-491961877500", + "voter": "steemservices" + }, + { + "rshares": "1989271577", + "voter": "mini" + }, + { + "rshares": "256227507", + "voter": "moon" + }, + { + "rshares": "1244483571299", + "voter": "benjojo" + }, + { + "rshares": "24096643591", + "voter": "proctologic" + }, + { + "rshares": "746214388", + "voter": "healthcare" + }, + { + "rshares": "1124279505", + "voter": "daniel.pan" + }, + { + "rshares": "345483224", + "voter": "helen.tan" + }, + { + "rshares": "-403038020258", + "voter": "chryspano" + }, + { + "rshares": "81440709580", + "voter": "kingscrown" + }, + { + "rshares": "18173041048", + "voter": "acidyo" + }, + { + "rshares": "1441527990", + "voter": "murh" + }, + { + "rshares": "7298235047", + "voter": "cryptofunk" + }, + { + "rshares": "13897431770", + "voter": "thecryptofiend" + }, + { + "rshares": "5255137728", + "voter": "zebbra2014" + }, + { + "rshares": "-304963538", + "voter": "hater" + }, + { + "rshares": "1013738674", + "voter": "wisehammer" + }, + { + "rshares": "2750169349", + "voter": "micheletrainer" + }, + { + "rshares": "305244819566", + "voter": "roelandp" + }, + { + "rshares": "15757395195", + "voter": "elyaque" + }, + { + "rshares": "23999310435", + "voter": "r4fken" + }, + { + "rshares": "4383469997", + "voter": "on0tole" + }, + { + "rshares": "1350456080", + "voter": "leksimus" + }, + { + "rshares": "239464793", + "voter": "sveokla" + }, + { + "rshares": "6247936107", + "voter": "perwest" + }, + { + "rshares": "547667566", + "voter": "pigatto" + }, + { + "rshares": "17764985905", + "voter": "anduweb" + }, + { + "rshares": "3769939766", + "voter": "maximkichev" + }, + { + "rshares": "-290175754", + "voter": "arek" + }, + { + "rshares": "7864564586", + "voter": "heimindanger" + }, + { + "rshares": "3766102090", + "voter": "bitcoiner" + }, + { + "rshares": "528819341", + "voter": "qonq99" + }, + { + "rshares": "2311634180", + "voter": "valspeaks" + }, + { + "rshares": "2173853443", + "voter": "lukmarcus" + }, + { + "rshares": "1419541000", + "voter": "bullionstackers" + }, + { + "rshares": "2022504731", + "voter": "dmilash" + }, + { + "rshares": "508192245", + "voter": "kaykunoichi" + }, + { + "rshares": "28835166886", + "voter": "jasonstaggers" + }, + { + "rshares": "89850692765", + "voter": "steemdrive" + }, + { + "rshares": "1700610055", + "voter": "litrbooh" + }, + { + "rshares": "11642599188", + "voter": "capitalism" + }, + { + "rshares": "68869178", + "voter": "always1success" + }, + { + "rshares": "30079446399", + "voter": "xtester" + }, + { + "rshares": "66954524", + "voter": "marinaz" + }, + { + "rshares": "178131954", + "voter": "caitlinm" + }, + { + "rshares": "89856273584", + "voter": "thisisbenbrick" + }, + { + "rshares": "54406274025", + "voter": "joele" + }, + { + "rshares": "57581935", + "voter": "erikkartmen" + }, + { + "rshares": "24752361813", + "voter": "driv3n" + }, + { + "rshares": "63964502", + "voter": "numberone" + }, + { + "rshares": "154559742", + "voter": "naifaz" + }, + { + "rshares": "62002598", + "voter": "violino" + }, + { + "rshares": "-92783813", + "voter": "guard" + }, + { + "rshares": "2626905838", + "voter": "bbsj" + }, + { + "rshares": "62301037", + "voter": "lecrazycanuckeh" + }, + { + "rshares": "-149863586", + "voter": "grayhorse" + }, + { + "rshares": "-53470504", + "voter": "jessicalu" + }, + { + "rshares": "55036253", + "voter": "direcrusher" + }, + { + "rshares": "54444758", + "voter": "tschabidave" + }, + { + "rshares": "100163794", + "voter": "ibringawareness" + }, + { + "rshares": "50742988", + "voter": "anamikasjain" + } + ], + "author": "r4fken", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Today is an historical day for me. This is my **thousandth** post on Steemit already, I hit **100** followers today \u00e1nd I'm finally past the magical limit of **3000** SP! :D\n![Achievement unlocked](http://rlv.zcache.com/achievement_unlocked_bumper_sticker-r50c3a5b34b904bb4a8d9e6aad6b920a1_v9wht_8byvr_512.jpg)\n#### Thanks!\nThanks to all my followers, voters and friends! I hope we'll meet again soon, and continue scoring milestones! :)\nAlso, a thank you for the devs, we **love** your work, keep going!", + "category": "steemit", + "children": 35, + "created": "2016-08-21T20:34:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://rlv.zcache.com/achievement_unlocked_bumper_sticker-r50c3a5b34b904bb4a8d9e6aad6b920a1_v9wht_8byvr_512.jpg" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 1, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "the-bible-isn-t-mainly-history", - "url": "/bible/@sean-king/the-bible-isn-t-mainly-history#@feminism/re-sean-king-the-bible-isn-t-mainly-history-20160827t184548731z", - "blacklists": [] + "tags": [ + "steemit", + "awesome", + "achievement", + "stats", + "milestone" + ] }, - { - "post_id": 684831, - "author": "feminism", - "permlink": "re-sean-king-paraphilia-20160820t164510821z", - "category": "photography", - "title": "RE: Paraphilia", - "body": "Here is a post with a song dedicated to you Sean,\nhttp://steemit.com/science/@feminism/the-symphony-of-science-dedicated-to-sean-king\nyou're really growing on me, thank you for your work.\nI wish I could be as polite as you are with people.", - "json_metadata": { - "tags": [ - "photography" - ], - "links": [ - "http://steemit.com/science/@feminism/the-symphony-of-science-dedicated-to-sean-king" - ] - }, - "created": "2016-08-20T16:45:12", - "updated": "2016-08-20T16:45:12", - "depth": 1, - "children": 2, - "net_rshares": 1379142794288, - "is_paidout": false, - "payout_at": "2016-09-20T06:12:45", - "payout": 1.023, - "pending_payout_value": "1.023 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "boy", - "rshares": "3091167529" - }, - { - "voter": "bue-witness", - "rshares": "3751991188" - }, - { - "voter": "bunny", - "rshares": "703090335" - }, - { - "voter": "bue", - "rshares": "52790740268" - }, - { - "voter": "mini", - "rshares": "1656938054" - }, - { - "voter": "moon", - "rshares": "213491769" - }, - { - "voter": "healthcare", - "rshares": "621613216" - }, - { - "voter": "daniel.pan", - "rshares": "923651182" - }, - { - "voter": "helen.tan", - "rshares": "287854213" - }, - { - "voter": "somedude", - "rshares": "7668537780" - }, - { - "voter": "sean-king", - "rshares": "1307433718754" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 11, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "paraphilia", - "url": "/photography/@sean-king/paraphilia#@feminism/re-sean-king-paraphilia-20160820t164510821z", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -25406680605573, + "payout": 2.101, + "payout_at": "2016-09-22T12:39:06", + "pending_payout_value": "2.101 HBD", + "percent_steem_dollars": 10000, + "permlink": "my-1000th-post-and-other-steemit-achievements", + "post_id": 698270, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 4.0, + "gray": true, + "hide": false, + "total_votes": 67 }, - { - "post_id": 712384, - "author": "feminism", - "permlink": "re-sean-king-mystical-20160822t234424169z", - "category": "photography", - "title": "RE: Mystical Momma", - "body": "That picture is mind blowing, to say anything less would be dishonest.", - "json_metadata": { - "tags": [ - "photography" - ] - }, - "created": "2016-08-22T23:44:24", - "updated": "2016-08-22T23:44:24", - "depth": 1, - "children": 0, - "net_rshares": 1396646939582, - "is_paidout": false, - "payout_at": "2016-09-23T01:34:54", - "payout": 1.0, - "pending_payout_value": "1.000 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "sean-king", - "rshares": "1396646939582" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 1, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "mystical", - "url": "/photography/@sean-king/mystical#@feminism/re-sean-king-mystical-20160822t234424169z", - "blacklists": [] + "title": "My 1000th post and other Steemit achievements!", + "updated": "2016-08-21T20:34:39", + "url": "/steemit/@r4fken/my-1000th-post-and-other-steemit-achievements" + }, + { + "active_votes": [ + { + "rshares": "1730545983153", + "voter": "dantheman" + }, + { + "rshares": "2474667874", + "voter": "boy" + }, + { + "rshares": "3003831514", + "voter": "bue-witness" + }, + { + "rshares": "562780317", + "voter": "bunny" + }, + { + "rshares": "42510264789", + "voter": "bue" + }, + { + "rshares": "1326410513", + "voter": "mini" + }, + { + "rshares": "170827956", + "voter": "moon" + }, + { + "rshares": "497540834", + "voter": "healthcare" + }, + { + "rshares": "756497537", + "voter": "daniel.pan" + }, + { + "rshares": "230342766", + "voter": "helen.tan" + }, + { + "rshares": "2251314435", + "voter": "jvper" + }, + { + "rshares": "68659214", + "voter": "sizil" + } + ], + "author": "loveangel", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "If people would be able to use Steem for remittances, then I feel this could just blow up out of proportion for Steem, as there would be no need to convert Steem's to bitcoin and then to local currencies. \n\nIts dependency on bitcoin would be negated and we can then truly consider it as a global currency :-)", + "category": "steemit", + "children": 1, + "created": "2016-08-23T14:27:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1784399120902, + "parent_author": "jvper", + "parent_permlink": "international-money-transfer-provider-started-using-steem", + "payout": 1.417, + "payout_at": "2016-09-23T13:51:39", + "pending_payout_value": "1.417 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-jvper-international-money-transfer-provider-started-using-steem-20160823t142700478z", + "post_id": 718957, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 12 + }, + "title": "RE: International Money Transfer Provider started using Steem", + "updated": "2016-08-23T14:27:00", + "url": "/steemit/@jvper/international-money-transfer-provider-started-using-steem#@loveangel/re-jvper-international-money-transfer-provider-started-using-steem-20160823t142700478z" + }, + { + "active_votes": [ + { + "rshares": "1453905500705", + "voter": "sean-king" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "proofreading: quiet-> quite", + "category": "faith", + "children": 1, + "created": "2016-08-21T14:12:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "faith" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1453905500705, + "parent_author": "sean-king", + "parent_permlink": "faith-versus-religion-refuting-god-s-undertaker-part-1", + "payout": 1.308, + "payout_at": "2016-09-21T14:54:18", + "pending_payout_value": "1.308 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t141224417z", + "post_id": 694518, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Faith Versus Religion--Refuting \"God's Undertaker\", Part 1", + "updated": "2016-08-21T14:12:24", + "url": "/faith/@sean-king/faith-versus-religion-refuting-god-s-undertaker-part-1#@feminism/re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t141224417z" + }, + { + "active_votes": [ + { + "rshares": "1424832587077", + "voter": "sean-king" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "money quote: \"And it's also just as likely that God ejaculated out the universe after an epic masterbation session\"\n\nproofreading: masturbation", + "category": "faith", + "children": 0, + "created": "2016-08-21T15:40:45", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "faith" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1424832587077, + "parent_author": "sean-king", + "parent_permlink": "faith-versus-religion-refuting-god-s-undertaker-part-1", + "payout": 1.276, + "payout_at": "2016-09-21T14:54:18", + "pending_payout_value": "1.276 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t154045710z", + "post_id": 695353, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Faith Versus Religion--Refuting \"God's Undertaker\", Part 1", + "updated": "2016-08-21T15:40:45", + "url": "/faith/@sean-king/faith-versus-religion-refuting-god-s-undertaker-part-1#@feminism/re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t154045710z" + }, + { + "active_votes": [ + { + "rshares": "2475680916", + "voter": "boy" + }, + { + "rshares": "3005113218", + "voter": "bue-witness" + }, + { + "rshares": "562928956", + "voter": "bunny" + }, + { + "rshares": "42648953508", + "voter": "bue" + }, + { + "rshares": "1326895892", + "voter": "mini" + }, + { + "rshares": "170847062", + "voter": "moon" + }, + { + "rshares": "497673093", + "voter": "healthcare" + }, + { + "rshares": "759428460", + "voter": "daniel.pan" + }, + { + "rshares": "230370052", + "voter": "helen.tan" + }, + { + "rshares": "1698179876049", + "voter": "cryptoctopus" + }, + { + "rshares": "-3382897005", + "voter": "beanz" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "it is a great exercise in epistemology, I agree.\nand most people are sheeps, meaning, they dont know how they know what \"they know\", meaning they dont know shit", + "category": "curiosity", + "children": 0, + "created": "2016-08-24T22:50:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "curiosity" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1746474870201, + "parent_author": "cryptoctopus", + "parent_permlink": "the-earth-is-flat-the-ultimate-test-for-open-mindedness", + "payout": 1.256, + "payout_at": "2016-09-24T23:11:33", + "pending_payout_value": "1.256 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-cryptoctopus-the-earth-is-flat-the-ultimate-test-for-open-mindedness-20160824t225052573z", + "post_id": 736865, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 11 + }, + "title": "RE: The Earth Is Flat? The ultimate test for \"open mindedness\"", + "updated": "2016-08-24T22:50:51", + "url": "/curiosity/@cryptoctopus/the-earth-is-flat-the-ultimate-test-for-open-mindedness#@feminism/re-cryptoctopus-the-earth-is-flat-the-ultimate-test-for-open-mindedness-20160824t225052573z" + }, + { + "active_votes": [ + { + "rshares": "2471701036", + "voter": "boy" + }, + { + "rshares": "3000021378", + "voter": "bue-witness" + }, + { + "rshares": "562225906", + "voter": "bunny" + }, + { + "rshares": "42142431563", + "voter": "bue" + }, + { + "rshares": "1324903845", + "voter": "mini" + }, + { + "rshares": "170734595", + "voter": "moon" + }, + { + "rshares": "497076397", + "voter": "healthcare" + }, + { + "rshares": "737187441", + "voter": "daniel.pan" + }, + { + "rshares": "230197953", + "voter": "helen.tan" + }, + { + "rshares": "1481721938896", + "voter": "sean-king" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "proofreading: lessor", + "category": "feminism", + "children": 1, + "created": "2016-08-19T19:52:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "feminism" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1532858419010, + "parent_author": "sean-king", + "parent_permlink": "nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky", + "payout": 1.099, + "payout_at": "2016-09-19T19:24:12", + "pending_payout_value": "1.099 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky-20160819t195205251z", + "post_id": 674727, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 10 + }, + "title": "RE: \"Nothing in biology makes sense except in the light of evolution.\" --Theodosius Dobzhansky", + "updated": "2016-08-19T19:52:06", + "url": "/feminism/@sean-king/nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky#@feminism/re-sean-king-nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky-20160819t195205251z" + }, + { + "active_votes": [ + { + "rshares": "2475557327", + "voter": "boy" + }, + { + "rshares": "3004958392", + "voter": "bue-witness" + }, + { + "rshares": "562914017", + "voter": "bunny" + }, + { + "rshares": "42634234947", + "voter": "bue" + }, + { + "rshares": "1326832061", + "voter": "mini" + }, + { + "rshares": "170845704", + "voter": "moon" + }, + { + "rshares": "497654080", + "voter": "healthcare" + }, + { + "rshares": "758048978", + "voter": "daniel.pan" + }, + { + "rshares": "230367336", + "voter": "helen.tan" + }, + { + "rshares": "7488699966", + "voter": "somedude" + }, + { + "rshares": "1455795590483", + "voter": "sean-king" + }, + { + "rshares": "-3382897005", + "voter": "beanz" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "OMG Sasha Grey\nwhy are you doing this to me Sean ???\n:)", + "category": "celebrity", + "children": 0, + "created": "2016-08-24T22:52:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "celebrity" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1511562806286, + "parent_author": "sean-king", + "parent_permlink": "me-cindy-and", + "payout": 1.049, + "payout_at": "2016-09-24T23:35:06", + "pending_payout_value": "1.049 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-me-cindy-and-20160824t225250885z", + "post_id": 736890, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 12 + }, + "title": "RE: Me, Cindy and...?", + "updated": "2016-08-24T22:55:00", + "url": "/celebrity/@sean-king/me-cindy-and#@feminism/re-sean-king-me-cindy-and-20160824t225250885z" + }, + { + "active_votes": [ + { + "rshares": "1398535239934", + "voter": "sean-king" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\"It\u2019s also the reason why poetry is often able to convey a truer understanding of an ideal than prose: The ineffable, transcendental concepts of art and religion defy encapsulation in mere words. \"\nThats the reason why I dont bother explaining myself with mere prose,\nbut instead I use poetry and music, the closest piece of poetry or music I know\nthat conveys what Im trying to convey.", + "category": "bible", + "children": 0, + "created": "2016-08-27T18:45:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "bible" + ] }, - { - "post_id": 807303, - "author": "steemwelcome", - "permlink": "help-i-was-unfairly-flagged-i-m-not-a-bot-i-m-a-manual-curator", - "category": "steemit", - "title": "Help I was unfairly flagged, I'm not a \"bot\" I'm a manual curator!", - "body": "As I told already on my [introduction post](https://steemit.com/introduceyourself/@steemwelcome/hello-steemians-i-m-steemwelcome) I AM NOT A BOT, I am a manual curator of new accounts on steemit.\n\nMy journey was just welcoming each verified new user I could MANUALLY. There is nothing wrong about that, but whale @smooth decided to flag me, destroying my reputation and so my ability to greet new steemians. Just look at the messages on my introductory post and you will see how much I was apreciated for this initiative: no one complained.\n\nThis is unfair! Flagging me as if I were a \"bot\" is an insult to the time I took to salute each new steemian I could.\n\nNo one complained about me and only positive reactions from new steemians is what you could read (if my reputation wasn't destroyed by @smooth). So what kind of \"spam\" is the one that makes people happy when they are personaly greeted when they join (and how could this be compared with an \"spambot\", it's my time that was there dedicated for this task). What is the problem if I found time to do this \"repetitive\" task?\n\n@steemwelcome", - "json_metadata": { - "tags": [ - "steemit", - "introduceyourself", - "freedom", - "witness-category" - ], - "users": [ - "smooth", - "steemwelcome" - ], - "links": [ - "https://steemit.com/introduceyourself/@steemwelcome/hello-steemians-i-m-steemwelcome" - ] - }, - "created": "2016-08-31T00:33:33", - "updated": "2016-08-31T01:15:33", - "depth": 0, - "children": 23, - "net_rshares": 1663672556305, - "is_paidout": false, - "payout_at": "2016-10-01T13:33:12", - "payout": 0.999, - "pending_payout_value": "0.999 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.001 HBD", - "replies": [], - "active_votes": [ - { - "voter": "ned", - "rshares": "1289265380237" - }, - { - "voter": "boy", - "rshares": "3099079187" - }, - { - "voter": "bue-witness", - "rshares": "3762318075" - }, - { - "voter": "bunny", - "rshares": "697302029" - }, - { - "voter": "bue", - "rshares": "53977586827" - }, - { - "voter": "mini", - "rshares": "1660857757" - }, - { - "voter": "moon", - "rshares": "213660123" - }, - { - "voter": "healthcare", - "rshares": "622708148" - }, - { - "voter": "daniel.pan", - "rshares": "967168909" - }, - { - "voter": "helen.tan", - "rshares": "288138648" - }, - { - "voter": "ervin-lemark", - "rshares": "13126308422" - }, - { - "voter": "murh", - "rshares": "1431687904" - }, - { - "voter": "lukestokes", - "rshares": "275273168981" - }, - { - "voter": "joseph.kalu", - "rshares": "222257214" - }, - { - "voter": "pinkisland", - "rshares": "17665762711" - }, - { - "voter": "ace108", - "rshares": "1213791485" - }, - { - "voter": "steemwelcome", - "rshares": "61085819" - }, - { - "voter": "fukako", - "rshares": "58685384" - }, - { - "voter": "willio", - "rshares": "65608445" - } + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1398535239934, + "parent_author": "sean-king", + "parent_permlink": "the-bible-isn-t-mainly-history", + "payout": 1.031, + "payout_at": "2016-09-27T18:51:57", + "pending_payout_value": "1.031 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-the-bible-isn-t-mainly-history-20160827t184548731z", + "post_id": 769459, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 1 + }, + "title": "RE: The Bible Isn't (Mainly) History", + "updated": "2016-08-27T18:47:27", + "url": "/bible/@sean-king/the-bible-isn-t-mainly-history#@feminism/re-sean-king-the-bible-isn-t-mainly-history-20160827t184548731z" + }, + { + "active_votes": [ + { + "rshares": "3091167529", + "voter": "boy" + }, + { + "rshares": "3751991188", + "voter": "bue-witness" + }, + { + "rshares": "703090335", + "voter": "bunny" + }, + { + "rshares": "52790740268", + "voter": "bue" + }, + { + "rshares": "1656938054", + "voter": "mini" + }, + { + "rshares": "213491769", + "voter": "moon" + }, + { + "rshares": "621613216", + "voter": "healthcare" + }, + { + "rshares": "923651182", + "voter": "daniel.pan" + }, + { + "rshares": "287854213", + "voter": "helen.tan" + }, + { + "rshares": "7668537780", + "voter": "somedude" + }, + { + "rshares": "1307433718754", + "voter": "sean-king" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Here is a post with a song dedicated to you Sean,\nhttp://steemit.com/science/@feminism/the-symphony-of-science-dedicated-to-sean-king\nyou're really growing on me, thank you for your work.\nI wish I could be as polite as you are with people.", + "category": "photography", + "children": 2, + "created": "2016-08-20T16:45:12", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "links": [ + "http://steemit.com/science/@feminism/the-symphony-of-science-dedicated-to-sean-king" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 19, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/steemit/@steemwelcome/help-i-was-unfairly-flagged-i-m-not-a-bot-i-m-a-manual-curator", - "blacklists": [] + "tags": [ + "photography" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1379142794288, + "parent_author": "sean-king", + "parent_permlink": "paraphilia", + "payout": 1.023, + "payout_at": "2016-09-20T06:12:45", + "pending_payout_value": "1.023 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-paraphilia-20160820t164510821z", + "post_id": 684831, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 11 + }, + "title": "RE: Paraphilia", + "updated": "2016-08-20T16:45:12", + "url": "/photography/@sean-king/paraphilia#@feminism/re-sean-king-paraphilia-20160820t164510821z" + }, + { + "active_votes": [ + { + "rshares": "1396646939582", + "voter": "sean-king" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "That picture is mind blowing, to say anything less would be dishonest.", + "category": "photography", + "children": 0, + "created": "2016-08-22T23:44:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "photography" + ] }, - { - "post_id": 777632, - "author": "spinx", - "permlink": "bike-chained-to-a-tree", - "category": "life", - "title": "Bike chained to a tree....", - "body": "\n

\n


\n

 A boy went to war in 1914 and left his bike chained to a tree. He never came home & the family left the bike there as a memorial to the fallen soldier. 

\n", - "json_metadata": { - "tags": [ - "life", - "story" - ], - "image": [ - "http://i67.tinypic.com/sg1gfm.jpg" - ] - }, - "created": "2016-08-28T13:58:00", - "updated": "2016-08-28T22:58:57", - "depth": 0, - "children": 1, - "net_rshares": 1520007920729, - "is_paidout": false, - "payout_at": "2016-09-28T14:08:12", - "payout": 0.992, - "pending_payout_value": "0.992 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "boy", - "rshares": "4335459431" - }, - { - "voter": "bue-witness", - "rshares": "5262854785" - }, - { - "voter": "bunny", - "rshares": "975716806" - }, - { - "voter": "bue", - "rshares": "75169356896" - }, - { - "voter": "mini", - "rshares": "2323555627" - }, - { - "voter": "moon", - "rshares": "299045636" - }, - { - "voter": "steempower", - "rshares": "1288478836630" - }, - { - "voter": "healthcare", - "rshares": "871313105" - }, - { - "voter": "daniel.pan", - "rshares": "1353232348" - }, - { - "voter": "helen.tan", - "rshares": "403253136" - }, - { - "voter": "coar", - "rshares": "1764827120" - }, - { - "voter": "murh", - "rshares": "2501114696" - }, - { - "voter": "alexft", - "rshares": "1289763894" - }, - { - "voter": "pigatto", - "rshares": "2814342601" - }, - { - "voter": "lostnuggett", - "rshares": "1965737119" - }, - { - "voter": "ladypenelope1", - "rshares": "403833324" - }, - { - "voter": "beanz", - "rshares": "4016798395" - }, - { - "voter": "sunshine", - "rshares": "12555413808" - }, - { - "voter": "jphamer1", - "rshares": "10069561477" - }, - { - "voter": "future24", - "rshares": "104709921" - }, - { - "voter": "bledarus", - "rshares": "1880413517" - }, - { - "voter": "thegoldencookie", - "rshares": "71365686" - }, - { - "voter": "solarguy", - "rshares": "5584217100" - }, - { - "voter": "icfiedler", - "rshares": "79783107300" - }, - { - "voter": "trev", - "rshares": "3785284659" - }, - { - "voter": "mandibil", - "rshares": "11682660949" - }, - { - "voter": "norene", - "rshares": "60127610" - }, - { - "voter": "drinkthemilk", - "rshares": "50264719" - }, - { - "voter": "getmyhand", - "rshares": "50259197" - }, - { - "voter": "lookatme", - "rshares": "50254033" - }, - { - "voter": "spinx", - "rshares": "51239204" - } + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1396646939582, + "parent_author": "sean-king", + "parent_permlink": "mystical", + "payout": 1.0, + "payout_at": "2016-09-23T01:34:54", + "pending_payout_value": "1.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-mystical-20160822t234424169z", + "post_id": 712384, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Mystical Momma", + "updated": "2016-08-22T23:44:24", + "url": "/photography/@sean-king/mystical#@feminism/re-sean-king-mystical-20160822t234424169z" + }, + { + "active_votes": [ + { + "rshares": "1289265380237", + "voter": "ned" + }, + { + "rshares": "3099079187", + "voter": "boy" + }, + { + "rshares": "3762318075", + "voter": "bue-witness" + }, + { + "rshares": "697302029", + "voter": "bunny" + }, + { + "rshares": "53977586827", + "voter": "bue" + }, + { + "rshares": "1660857757", + "voter": "mini" + }, + { + "rshares": "213660123", + "voter": "moon" + }, + { + "rshares": "622708148", + "voter": "healthcare" + }, + { + "rshares": "967168909", + "voter": "daniel.pan" + }, + { + "rshares": "288138648", + "voter": "helen.tan" + }, + { + "rshares": "13126308422", + "voter": "ervin-lemark" + }, + { + "rshares": "1431687904", + "voter": "murh" + }, + { + "rshares": "275273168981", + "voter": "lukestokes" + }, + { + "rshares": "222257214", + "voter": "joseph.kalu" + }, + { + "rshares": "17665762711", + "voter": "pinkisland" + }, + { + "rshares": "1213791485", + "voter": "ace108" + }, + { + "rshares": "61085819", + "voter": "steemwelcome" + }, + { + "rshares": "58685384", + "voter": "fukako" + }, + { + "rshares": "65608445", + "voter": "willio" + } + ], + "author": "steemwelcome", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "As I told already on my [introduction post](https://steemit.com/introduceyourself/@steemwelcome/hello-steemians-i-m-steemwelcome) I AM NOT A BOT, I am a manual curator of new accounts on steemit.\n\nMy journey was just welcoming each verified new user I could MANUALLY. There is nothing wrong about that, but whale @smooth decided to flag me, destroying my reputation and so my ability to greet new steemians. Just look at the messages on my introductory post and you will see how much I was apreciated for this initiative: no one complained.\n\nThis is unfair! Flagging me as if I were a \"bot\" is an insult to the time I took to salute each new steemian I could.\n\nNo one complained about me and only positive reactions from new steemians is what you could read (if my reputation wasn't destroyed by @smooth). So what kind of \"spam\" is the one that makes people happy when they are personaly greeted when they join (and how could this be compared with an \"spambot\", it's my time that was there dedicated for this task). What is the problem if I found time to do this \"repetitive\" task?\n\n@steemwelcome", + "category": "steemit", + "children": 23, + "created": "2016-08-31T00:33:33", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemit.com/introduceyourself/@steemwelcome/hello-steemians-i-m-steemwelcome" + ], + "tags": [ + "steemit", + "introduceyourself", + "freedom", + "witness-category" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 31, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/life/@spinx/bike-chained-to-a-tree", - "blacklists": [] + "users": [ + "smooth", + "steemwelcome" + ] }, - { - "post_id": 773395, - "author": "craigwilliamz", - "permlink": "re-hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast-20160828t023230", - "category": "introduceyourself", - "title": "RE: Hello Steemit - I'd Like to Introduce Myself and a Short History of Becoming a Cooking Enthusiast", - "body": "Welcome to Steemit! If you would like to see statistics of any post on Steemit, you can use Steemd.com. I have made a bookmark for your convenience in accessing Steemd. https://steemit.com/steemd/@craigwilliamz/steemd-statistics-bookmark-for-easy-access-to-steemd", - "json_metadata": {}, - "created": "2016-08-28T02:32:30", - "updated": "2016-08-28T02:32:30", - "depth": 1, - "children": 1, - "net_rshares": 1015475187636, - "is_paidout": false, - "payout_at": "2016-09-28T03:21:15", - "payout": 0.633, - "pending_payout_value": "0.633 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "james212", - "rshares": "1015475187636" - } + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1663672556305, + "payout": 0.999, + "payout_at": "2016-10-01T13:33:12", + "pending_payout_value": "0.999 HBD", + "percent_steem_dollars": 10000, + "permlink": "help-i-was-unfairly-flagged-i-m-not-a-bot-i-m-a-manual-curator", + "post_id": 807303, + "promoted": "0.001 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 19 + }, + "title": "Help I was unfairly flagged, I'm not a \"bot\" I'm a manual curator!", + "updated": "2016-08-31T01:15:33", + "url": "/steemit/@steemwelcome/help-i-was-unfairly-flagged-i-m-not-a-bot-i-m-a-manual-curator" + }, + { + "active_votes": [ + { + "rshares": "4335459431", + "voter": "boy" + }, + { + "rshares": "5262854785", + "voter": "bue-witness" + }, + { + "rshares": "975716806", + "voter": "bunny" + }, + { + "rshares": "75169356896", + "voter": "bue" + }, + { + "rshares": "2323555627", + "voter": "mini" + }, + { + "rshares": "299045636", + "voter": "moon" + }, + { + "rshares": "1288478836630", + "voter": "steempower" + }, + { + "rshares": "871313105", + "voter": "healthcare" + }, + { + "rshares": "1353232348", + "voter": "daniel.pan" + }, + { + "rshares": "403253136", + "voter": "helen.tan" + }, + { + "rshares": "1764827120", + "voter": "coar" + }, + { + "rshares": "2501114696", + "voter": "murh" + }, + { + "rshares": "1289763894", + "voter": "alexft" + }, + { + "rshares": "2814342601", + "voter": "pigatto" + }, + { + "rshares": "1965737119", + "voter": "lostnuggett" + }, + { + "rshares": "403833324", + "voter": "ladypenelope1" + }, + { + "rshares": "4016798395", + "voter": "beanz" + }, + { + "rshares": "12555413808", + "voter": "sunshine" + }, + { + "rshares": "10069561477", + "voter": "jphamer1" + }, + { + "rshares": "104709921", + "voter": "future24" + }, + { + "rshares": "1880413517", + "voter": "bledarus" + }, + { + "rshares": "71365686", + "voter": "thegoldencookie" + }, + { + "rshares": "5584217100", + "voter": "solarguy" + }, + { + "rshares": "79783107300", + "voter": "icfiedler" + }, + { + "rshares": "3785284659", + "voter": "trev" + }, + { + "rshares": "11682660949", + "voter": "mandibil" + }, + { + "rshares": "60127610", + "voter": "norene" + }, + { + "rshares": "50264719", + "voter": "drinkthemilk" + }, + { + "rshares": "50259197", + "voter": "getmyhand" + }, + { + "rshares": "50254033", + "voter": "lookatme" + }, + { + "rshares": "51239204", + "voter": "spinx" + } + ], + "author": "spinx", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\n


\n

 A boy went to war in 1914 and left his bike chained to a tree. He never came home & the family left the bike there as a memorial to the fallen soldier. 

\n", + "category": "life", + "children": 1, + "created": "2016-08-28T13:58:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i67.tinypic.com/sg1gfm.jpg" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 1, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "nestorstable", - "parent_permlink": "hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast", - "url": "/introduceyourself/@nestorstable/hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast#@craigwilliamz/re-hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast-20160828t023230", - "blacklists": [] - } - ] \ No newline at end of file + "tags": [ + "life", + "story" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1520007920729, + "payout": 0.992, + "payout_at": "2016-09-28T14:08:12", + "pending_payout_value": "0.992 HBD", + "percent_steem_dollars": 10000, + "permlink": "bike-chained-to-a-tree", + "post_id": 777632, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 31 + }, + "title": "Bike chained to a tree....", + "updated": "2016-08-28T22:58:57", + "url": "/life/@spinx/bike-chained-to-a-tree" + }, + { + "active_votes": [ + { + "rshares": "1015475187636", + "voter": "james212" + } + ], + "author": "craigwilliamz", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Welcome to Steemit! If you would like to see statistics of any post on Steemit, you can use Steemd.com. I have made a bookmark for your convenience in accessing Steemd. https://steemit.com/steemd/@craigwilliamz/steemd-statistics-bookmark-for-easy-access-to-steemd", + "category": "introduceyourself", + "children": 1, + "created": "2016-08-28T02:32:30", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1015475187636, + "parent_author": "nestorstable", + "parent_permlink": "hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast", + "payout": 0.633, + "payout_at": "2016-09-28T03:21:15", + "pending_payout_value": "0.633 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast-20160828t023230", + "post_id": 773395, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Hello Steemit - I'd Like to Introduce Myself and a Short History of Becoming a Cooking Enthusiast", + "updated": "2016-08-28T02:32:30", + "url": "/introduceyourself/@nestorstable/hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast#@craigwilliamz/re-hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast-20160828t023230" + } +] diff --git a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.pat.json b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.pat.json index 3c9fb03d..bb6330c3 100644 --- a/hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_ranked_posts_muted.pat.json @@ -1,2221 +1,2221 @@ [ - { - "post_id": 681168, - "author": "r4fken", - "permlink": "re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z", - "category": "philosophy", - "title": "RE: Our Corrupt Sense of Fairness", - "body": "Do I understand correctly that you're referencing the initial \"mining\" by a select group of devs and friends, resulting in \"overwhelming control\" by means of vests now?\nOr am I just imagining things? :)", - "json_metadata": { - "tags": [ - "philosophy" - ] - }, - "created": "2016-08-20T09:06:27", - "updated": "2016-08-20T09:07:12", - "depth": 2, - "children": 0, - "net_rshares": 35692802942928, - "is_paidout": false, - "payout_at": "2016-09-20T07:22:48", - "payout": 196.246, - "pending_payout_value": "196.246 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "itsascam", - "rshares": "17735315160760" - }, - { - "voter": "steemed", - "rshares": "17865766992651" - }, - { - "voter": "boy", - "rshares": "3091007147" - }, - { - "voter": "bue-witness", - "rshares": "3751778512" - }, - { - "voter": "bunny", - "rshares": "703064185" - }, - { - "voter": "bue", - "rshares": "52778799199" - }, - { - "voter": "mini", - "rshares": "1656856120" - }, - { - "voter": "moon", - "rshares": "213490026" - }, - { - "voter": "healthcare", - "rshares": "621592296" - }, - { - "voter": "daniel.pan", - "rshares": "923609344" - }, - { - "voter": "helen.tan", - "rshares": "287848982" - }, - { - "voter": "r4fken", - "rshares": "27692743706" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 12, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "steemed", - "parent_permlink": "re-dantheman-our-corrupt-sense-of-fairness-20160820t035220528z", - "url": "/philosophy/@dantheman/our-corrupt-sense-of-fairness#@r4fken/re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z", - "blacklists": [] + { + "active_votes": [ + { + "rshares": "17735315160760", + "voter": "itsascam" + }, + { + "rshares": "17865766992651", + "voter": "steemed" + }, + { + "rshares": "3091007147", + "voter": "boy" + }, + { + "rshares": "3751778512", + "voter": "bue-witness" + }, + { + "rshares": "703064185", + "voter": "bunny" + }, + { + "rshares": "52778799199", + "voter": "bue" + }, + { + "rshares": "1656856120", + "voter": "mini" + }, + { + "rshares": "213490026", + "voter": "moon" + }, + { + "rshares": "621592296", + "voter": "healthcare" + }, + { + "rshares": "923609344", + "voter": "daniel.pan" + }, + { + "rshares": "287848982", + "voter": "helen.tan" + }, + { + "rshares": "27692743706", + "voter": "r4fken" + } + ], + "author": "r4fken", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Do I understand correctly that you're referencing the initial \"mining\" by a select group of devs and friends, resulting in \"overwhelming control\" by means of vests now?\nOr am I just imagining things? :)", + "category": "philosophy", + "children": 0, + "created": "2016-08-20T09:06:27", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "tags": [ + "philosophy" + ] }, - { - "post_id": 736365, - "author": "tldr", - "permlink": "i-m-tldr-an-experimental-bot-for-summarizing-your-long-articles", - "category": "tldr", - "title": "I'm @tldr - an experimental bot for summarizing your long articles.", - "body": "Steemit is about great content. But sometimes it just gets a bit, well, too long... So you didn't read. \n\nIntroducing, me! @tldr - the summarise bot! \n\nI come to the rescue, at least I try! I will monitor the blockchain and propose summaries as a comment under articles and try to summarize the long text you had to read before you decide to upvote :)\n\nI won't make it long this time, otherwise I would have to TLDR this post, and then, ...... infinite loop NOOOOOOOOS....\n\n

I will run for 24 hours (see payout timer) after which I will analyse the results and see whether to continue or not. Your input is much valued below:

\nCurrent parameters:\n1. Post must have more than 5000 chars\n2. Summary must be smaller than 15% of original content\n3. Summary must be max 7 sentences\n\n\nhttp://i.giphy.com/jChlcC99Vqu2I.gif", - "json_metadata": { - "tags": [ - "tldr", - "bot" - ], - "image": [ - "http://i.giphy.com/jChlcC99Vqu2I.gif" - ] - }, - "created": "2016-08-24T21:56:39", - "updated": "2016-08-24T23:26:03", - "depth": 0, - "children": 22, - "net_rshares": 13805683329893, - "is_paidout": false, - "payout_at": "2016-09-25T02:39:54", - "payout": 31.621, - "pending_payout_value": "31.621 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "abit", - "rshares": "6110298615385" - }, - { - "voter": "ozmaster", - "rshares": "147501011215" - }, - { - "voter": "boy", - "rshares": "2475588575" - }, - { - "voter": "bue-witness", - "rshares": "3004997792" - }, - { - "voter": "bunny", - "rshares": "562918093" - }, - { - "voter": "complexring", - "rshares": "5613233031399" - }, - { - "voter": "bue", - "rshares": "42638940309" - }, - { - "voter": "mini", - "rshares": "1326847006" - }, - { - "voter": "moon", - "rshares": "170845704" - }, - { - "voter": "healthcare", - "rshares": "497656797" - }, - { - "voter": "tuck-fheman", - "rshares": "1149362909097" - }, - { - "voter": "daniel.pan", - "rshares": "758055771" - }, - { - "voter": "helen.tan", - "rshares": "230367336" - }, - { - "voter": "edgeland", - "rshares": "134106565208" - }, - { - "voter": "joelinux", - "rshares": "19742650585" - }, - { - "voter": "richman", - "rshares": "9643353346" - }, - { - "voter": "censor-this", - "rshares": "7917346997" - }, - { - "voter": "murh", - "rshares": "2164056980" - }, - { - "voter": "tee-em", - "rshares": "1211348418" - }, - { - "voter": "djm34", - "rshares": "25349822848" - }, - { - "voter": "tomkirkham", - "rshares": "226688266301" - }, - { - "voter": "endgame", - "rshares": "406954777" - }, - { - "voter": "sebastien", - "rshares": "4469111855" - }, - { - "voter": "moonjelly", - "rshares": "2263852120" - }, - { - "voter": "shredlord", - "rshares": "12749599354" - }, - { - "voter": "hagie", - "rshares": "4590247494" - }, - { - "voter": "raymonjohnstone", - "rshares": "451134055" - }, - { - "voter": "bergy", - "rshares": "11281334218" - }, - { - "voter": "theprophet0", - "rshares": "2008372383" - }, - { - "voter": "coinbar", - "rshares": "1553952443" - }, - { - "voter": "ozchartart", - "rshares": "149764365242" - }, - { - "voter": "croatia", - "rshares": "4977363121" - }, - { - "voter": "kryptik", - "rshares": "4678252310" - }, - { - "voter": "minnowsunited", - "rshares": "170230804" - }, - { - "voter": "stephen.king989", - "rshares": "7371306594" - }, - { - "voter": "eneismijmich", - "rshares": "18742071917" - }, - { - "voter": "quantumanomaly", - "rshares": "1114311519" - }, - { - "voter": "naifaz", - "rshares": "149386074" - }, - { - "voter": "catherinebleish", - "rshares": "1910105759" - }, - { - "voter": "professorx", - "rshares": "5114340641" - }, - { - "voter": "justinlaak", - "rshares": "65542448666" - }, - { - "voter": "comcentrate", - "rshares": "191282778" - }, - { - "voter": "wizwom", - "rshares": "242182757" - }, - { - "voter": "heretickitten", - "rshares": "6548817310" - }, - { - "voter": "alina1", - "rshares": "155385736" - }, - { - "voter": "inwoxer", - "rshares": "143562405" - }, - { - "voter": "whatsup", - "rshares": "53141513" - }, - { - "voter": "freebornangel", - "rshares": "51593171" - }, - { - "voter": "steemwelcome", - "rshares": "51431138" - }, - { - "voter": "tldr", - "rshares": "51996577" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 50, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/tldr/@tldr/i-m-tldr-an-experimental-bot-for-summarizing-your-long-articles", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 35692802942928, + "parent_author": "steemed", + "parent_permlink": "re-dantheman-our-corrupt-sense-of-fairness-20160820t035220528z", + "payout": 196.246, + "payout_at": "2016-09-20T07:22:48", + "pending_payout_value": "196.246 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z", + "post_id": 681168, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 12 }, - { - "post_id": 635822, - "author": "craigwilliamz", - "permlink": "how-to-raise-fantastic-children-part-1", - "category": "life", - "title": "How to Raise Fantastic Children - Part 1", - "body": "![The Crown Family Photo](http://steemit-dub.s3.amazonaws.com/alex/the-crown-family1.png 'The Crown Family Photo')\n\nMy Family is Pretty Cool\n-\n![Family](http://steemit-dub.s3.amazonaws.com/family-800.jpg 'Family')\n\nMy favorite people in the world are my children. They are kind, generous, full of life, fun to be around and crazy creative. They are really cool people.\n\nWe have four children, Alex, Ashley, Abby and Austin. My wife's idea to name them all \"A\" names. They are referred to as the \"A Team\".\n\nWe have a close family. We argue very little and maintain open communication. We have treated them like people from early on and they have behaved as such.\n\n![Guitar](http://steemit-dub.s3.amazonaws.com/alex/guitar.png 'Guitar')\n\n\n\nAn Eye Opening Experience\n-\nA few weeks ago I was in Dallas visiting a friend whom I had not seen in many years. There were other people there as well that I had also not seen in a very long time. I struck up a conversation with one of them and the discussion of family ensued. He told me about his children and what it had been like for him to become a father. He has a wonderful family with children that are still very young. When the time came for me to share about my children, I began listing off what each one was doing from the oldest to the youngest. Before I could get to the youngest one, his mouth was gaped open and he burst out, \"What are you feeding them!\" We had a big laugh as I told him about the youngest and expanded on our philosophy of family.\n\nWe have had many compliments on our children throughout their life. Even today, the people with whom they interact; family, friends and the people who work with them in stage productions, make a point of complimenting them. I am around them all the time, and many of their friends are homeschooled as well so sometimes I forget how special they are and the impact they have on others.\n\n![Railroad tracks](http://steemit-dub.s3.amazonaws.com/alex/alex-railroad-tracks-600.jpg 'Railroad tracks')\n\nWhy Am I Sharing\n-\nI hope to convey a few things here. First, if you are considering homeschooling and have reservations, may these stories encourage you. If you already homeschool and wonder if it is all worth it, maybe our stories will give you hope and encouragement as well.\n\nAnd lastly, I am proud of them and want to share their success with you.\n\n![Sis](http://steemit-dub.s3.amazonaws.com/alex/children-800.jpg 'Children')\n\nWhy We Homeschool\n-\nMy personal experience in public schools was a nightmare. I moved a lot when I was young and changed schools every three to six months. During one stretch of five years, I switched schools nineteen times. I did not build long term relationships and being the new kid all the time often created struggles with teachers.\n\nThere is a very long story to my history so I will not get into that here. It is however, the main reason I became excited about homeschooling when my wife suggested it.\n\nOur Oldest Child Alex\n-\n![Alex](http://steemit-dub.s3.amazonaws.com/alexthrowback.jpg 'Alex')\n\nAlex has always been intelligent as I believe all children are. He had memorized many of the family members phone numbers and home addresses by the time he was six. We started him off in Montessori school at age four where he attended three years. We would have kept him in Montessori but they did not offer classes above six years old. \n\nAt that time my wife was still concerned about her ability to homeschool so we enrolled him in a Christian private school for one year. After that, she had researched enough to build her confidence. She was ready to go. (As the years went by, she found out that she was more than capable. We are guides.)\n\nPre-Teen\n-\n![Sis](http://steemit-dub.s3.amazonaws.com/alex/alex-littlekid1.jpeg 'Alex and Sister')\n\nAlex took two years of Latin and one year of Japanese. He acted in plays and did what most children do, play a lot.\n\nTeen Years\n-\n![Sis](http://steemit-dub.s3.amazonaws.com/ateam.jpg 'Alex and Sister')\n\nMany people will tell you that you will have to deal with the teenage years. \"Brace yourself,\" they will say. \"You will become their enemy!\" We did not experience this with Alex or our other children. Alex would come to me for advice about issues him and his friends were discussing. When he would share how I reacted to some of our serious conversations, his friends were astonished and would respond with descriptions of their parents exploding if they attempted to have the same discussions with their parents.\n\nKeeping your cool when one of your children comes to you with a confession is a sure way to have them trust you with other issues of concern.\n\nDuring his teen years, Alex took CLEP tests and earned twelve college hours.\n\nAt sixteen, he began to gain interest in programming. I had introduced it to him when he was nine but he wasn't interested. Then again around eleven but still no interest. At sixteen, the interest was all his. Had I forced him to do it earlier, he may have never liked it.\n\n![Graduation](http://steemit-dub.s3.amazonaws.com/alex/graduation.jpg 'Graduation')\n\nBecoming an Adult\n-\n![Alex](http://steemit-dub.s3.amazonaws.com/alex/alex-adult1.jpeg 'Alex')\n\nOne his eighteenth birthday, he begin working his first job as a software developer. He was hired as an apprentice and was promoted to junior developer after only three months. At that time, he began mentoring two of his friends. Within a few months he had taken on a third person to mentor. Within a year or so, each of them have now changed their path and work as software developers. It has significantly changed their lives. Alex just recently began mentoring another friend. Pretty cool to pass forward. He had received help from some of my co-workers early on which made all the difference in his progression.\n\nHe now speaks French and Mandarin and has aspirations to learn many more. He has traveled to seven countries and has an arrangement with his employer to work from anywhere in the world as long as he is at the office for part of the year.\n\n![Alex](http://steemit-dub.s3.amazonaws.com/alex/amsterdamcollage.jpg 'Alex')\n\nHe gives technical talks at local meet ups, plays both acoustic and electric guitar, has never met a stranger and has made no enemies.\n\nHe is an inspiration to others, his family and siblings. The bar has been set high but the other children have many interests and accomplishments of their own. I'll share those in subsequent posts.\n\n![Leon](http://steemit-dub.s3.amazonaws.com/alex/leoncollage.jpg 'Leon')\n\nWhat was our part?\n-\nMy wife has worked hard to keep them supplied with good school material, staying compliant with state requirements and providing some structure for learning. We never set up a school room like environment. There are never set hours of study. Homeschooling hours vary depending on the age of the child and what they are working on at that phase of their education. I would say that most of the time they spend less time doing actual school work and the rest of the time exploring, using their imagination and focusing their energy on things they are interested in.\n\nFor Alex, that was a foreign language. Other times it was memorizing all the Pokemon cards and building decks and playing in tournaments. Alex said one of the things that has helped him so much in learning new things was the fact that he had memorized so much Pokemon data. He developed the ability to store and retrieve things in his mind.\n\nThe simple fact is… we didn't do it. Alex did. He deserves all the credit. He did all the work. We provided the canvas, the paint and the paintbrushes. \n\nConclusion\n-\nI feel we have a pretty cool family. There are many ways to raise your children. The most important thing is to love them unconditionally, give them room to grow and treat them as you would your very best friend. They are people and are smarter than most give them credit.\n\nI hope I have been able to convey how proud we are of Alex. These are but a few highlights of his life as he is only twenty-one. There is so much in store for him.\n\nI am so grateful that as much as possible we have given Alex the opportunity to live life on his own terms and he has flourished.", - "json_metadata": { - "tags": [ - "life", - "photography", - "travel", - "parenting", - "family" - ], - "image": [ - "http://steemit-dub.s3.amazonaws.com/alex/the-crown-family1.png" - ] - }, - "created": "2016-08-17T02:23:30", - "updated": "2016-08-17T02:41:03", - "depth": 0, - "children": 3, - "net_rshares": 20952886915040, - "is_paidout": false, - "payout_at": "2016-09-17T02:57:45", - "payout": 28.712, - "pending_payout_value": "28.712 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "dantheman", - "rshares": "20736048327416" - }, - { - "voter": "boy", - "rshares": "2472573792" - }, - { - "voter": "bue-witness", - "rshares": "3001108476" - }, - { - "voter": "bunny", - "rshares": "562413629" - }, - { - "voter": "bue", - "rshares": "42176902013" - }, - { - "voter": "mini", - "rshares": "1325367544" - }, - { - "voter": "moon", - "rshares": "170787830" - }, - { - "voter": "healthcare", - "rshares": "497243104" - }, - { - "voter": "daniel.pan", - "rshares": "737438203" - }, - { - "voter": "helen.tan", - "rshares": "230272201" - }, - { - "voter": "holabebe", - "rshares": "5072953140" - }, - { - "voter": "murh", - "rshares": "1799587902" - }, - { - "voter": "bravenewcoin", - "rshares": "115361382518" - }, - { - "voter": "soupernerd", - "rshares": "166899192" - }, - { - "voter": "qamarpinkpanda", - "rshares": "5429807428" - }, - { - "voter": "aaseb", - "rshares": "4494852918" - }, - { - "voter": "the-future", - "rshares": "2162953561" - }, - { - "voter": "illlefr4u", - "rshares": "289441856" - }, - { - "voter": "pinkisland", - "rshares": "11382937008" - }, - { - "voter": "pigatron", - "rshares": "3420690714" - }, - { - "voter": "weenis", - "rshares": "163854600" - }, - { - "voter": "jonaswakefield", - "rshares": "309113169" - }, - { - "voter": "jsantana", - "rshares": "984803370" - }, - { - "voter": "cehuneke", - "rshares": "61805391" - }, - { - "voter": "craigwilliamz", - "rshares": "6199940304" - }, - { - "voter": "thebrickranger", - "rshares": "57122450" - }, - { - "voter": "vbrasher", - "rshares": "57108081" - }, - { - "voter": "ashleywilliamz", - "rshares": "2980829211" - }, - { - "voter": "abbywilliamz", - "rshares": "57736694" - }, - { - "voter": "colleenwilliamz", - "rshares": "57604403" - }, - { - "voter": "luminousvisions", - "rshares": "3202748238" - }, - { - "voter": "canadian-coconut", - "rshares": "57682239" - }, - { - "voter": "ghasemkiani", - "rshares": "381198814" - }, - { - "voter": "cyborg", - "rshares": "54839161" - }, - { - "voter": "analyzethis", - "rshares": "50931848" - }, - { - "voter": "roadhog", - "rshares": "51780266" - }, - { - "voter": "doggnostic", - "rshares": "52777051" - }, - { - "voter": "jenny-talls", - "rshares": "52504270" - }, - { - "voter": "robovirtuoso", - "rshares": "54522752" - }, - { - "voter": "birdiewonder", - "rshares": "50090625" - }, - { - "voter": "robotev", - "rshares": "1092907021" - }, - { - "voter": "goaldigger", - "rshares": "51074637" - } + "title": "RE: Our Corrupt Sense of Fairness", + "updated": "2016-08-20T09:07:12", + "url": "/philosophy/@dantheman/our-corrupt-sense-of-fairness#@r4fken/re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z" + }, + { + "active_votes": [ + { + "rshares": "6110298615385", + "voter": "abit" + }, + { + "rshares": "147501011215", + "voter": "ozmaster" + }, + { + "rshares": "2475588575", + "voter": "boy" + }, + { + "rshares": "3004997792", + "voter": "bue-witness" + }, + { + "rshares": "562918093", + "voter": "bunny" + }, + { + "rshares": "5613233031399", + "voter": "complexring" + }, + { + "rshares": "42638940309", + "voter": "bue" + }, + { + "rshares": "1326847006", + "voter": "mini" + }, + { + "rshares": "170845704", + "voter": "moon" + }, + { + "rshares": "497656797", + "voter": "healthcare" + }, + { + "rshares": "1149362909097", + "voter": "tuck-fheman" + }, + { + "rshares": "758055771", + "voter": "daniel.pan" + }, + { + "rshares": "230367336", + "voter": "helen.tan" + }, + { + "rshares": "134106565208", + "voter": "edgeland" + }, + { + "rshares": "19742650585", + "voter": "joelinux" + }, + { + "rshares": "9643353346", + "voter": "richman" + }, + { + "rshares": "7917346997", + "voter": "censor-this" + }, + { + "rshares": "2164056980", + "voter": "murh" + }, + { + "rshares": "1211348418", + "voter": "tee-em" + }, + { + "rshares": "25349822848", + "voter": "djm34" + }, + { + "rshares": "226688266301", + "voter": "tomkirkham" + }, + { + "rshares": "406954777", + "voter": "endgame" + }, + { + "rshares": "4469111855", + "voter": "sebastien" + }, + { + "rshares": "2263852120", + "voter": "moonjelly" + }, + { + "rshares": "12749599354", + "voter": "shredlord" + }, + { + "rshares": "4590247494", + "voter": "hagie" + }, + { + "rshares": "451134055", + "voter": "raymonjohnstone" + }, + { + "rshares": "11281334218", + "voter": "bergy" + }, + { + "rshares": "2008372383", + "voter": "theprophet0" + }, + { + "rshares": "1553952443", + "voter": "coinbar" + }, + { + "rshares": "149764365242", + "voter": "ozchartart" + }, + { + "rshares": "4977363121", + "voter": "croatia" + }, + { + "rshares": "4678252310", + "voter": "kryptik" + }, + { + "rshares": "170230804", + "voter": "minnowsunited" + }, + { + "rshares": "7371306594", + "voter": "stephen.king989" + }, + { + "rshares": "18742071917", + "voter": "eneismijmich" + }, + { + "rshares": "1114311519", + "voter": "quantumanomaly" + }, + { + "rshares": "149386074", + "voter": "naifaz" + }, + { + "rshares": "1910105759", + "voter": "catherinebleish" + }, + { + "rshares": "5114340641", + "voter": "professorx" + }, + { + "rshares": "65542448666", + "voter": "justinlaak" + }, + { + "rshares": "191282778", + "voter": "comcentrate" + }, + { + "rshares": "242182757", + "voter": "wizwom" + }, + { + "rshares": "6548817310", + "voter": "heretickitten" + }, + { + "rshares": "155385736", + "voter": "alina1" + }, + { + "rshares": "143562405", + "voter": "inwoxer" + }, + { + "rshares": "53141513", + "voter": "whatsup" + }, + { + "rshares": "51593171", + "voter": "freebornangel" + }, + { + "rshares": "51431138", + "voter": "steemwelcome" + }, + { + "rshares": "51996577", + "voter": "tldr" + } + ], + "author": "tldr", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Steemit is about great content. But sometimes it just gets a bit, well, too long... So you didn't read. \n\nIntroducing, me! @tldr - the summarise bot! \n\nI come to the rescue, at least I try! I will monitor the blockchain and propose summaries as a comment under articles and try to summarize the long text you had to read before you decide to upvote :)\n\nI won't make it long this time, otherwise I would have to TLDR this post, and then, ...... infinite loop NOOOOOOOOS....\n\n

I will run for 24 hours (see payout timer) after which I will analyse the results and see whether to continue or not. Your input is much valued below:

\nCurrent parameters:\n1. Post must have more than 5000 chars\n2. Summary must be smaller than 15% of original content\n3. Summary must be max 7 sentences\n\n\nhttp://i.giphy.com/jChlcC99Vqu2I.gif", + "category": "tldr", + "children": 22, + "created": "2016-08-24T21:56:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.giphy.com/jChlcC99Vqu2I.gif" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 42, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/life/@craigwilliamz/how-to-raise-fantastic-children-part-1", - "blacklists": [] + "tags": [ + "tldr", + "bot" + ] }, - { - "post_id": 787056, - "author": "spinx", - "permlink": "the-rain-it-is-the-law-of-life", - "category": "life", - "title": "The Rain - It is the law of life", - "body": "\n

\n


\n

One of the few precious truths I learned is life is not about waiting for the storm to pass, it is about learning to dance in...

\n

The Rain

\n

A ray of sunshine does not always mean happiness nor does a drop of rain mean total loneliness. Through time writers of all kinds being the sensitive, emotional and deep people that they are, have always associated the rain with loneliness. Today, whenever a cold wind blows through an open window or an empty space on a street, we are swept with its glum, warning us of a heavy feeling, reminding us of what we have lost, memories that are only too sad we almost wish could bury everything in a shroud of oblivion. Regrets come again, as well as faces of people from the past as a teardrop suddenly threatens to fall anytime from already lost and almost hollow eyes. The cold brought by the rain along with the dark clouds lurking outside makes us want to wrap our arms protectively around ourselves to keep us warm or to shut out any sad thoughts that dare to overstep the arms engulfing our curled bodies.

\n

\n


\n

But its not always like that. Not if we can help it, no. The Rain is perceived negatively most of the time but we can care enough to see beyond what is often seen. GO, outside on an early September morning and you will see that the rain leaves a magnificent dew drenched flower or a grass all the more alive as the sunlight hits the few drops left from last night's rain. All for you to behold. See that under umbrellas are faces of people smiling and radiant as you meet them on the street. Really, the rain cant be that bad. Not at all. It is natures gift, a gift from the Almighty. And after a rain, what do the heavens hold for you? An array of colors painting the sky and we know it as rainbow. Just as we know that after the tears, laughter comes, making us very much worthy of the joy because of what we have gone through.

\n

\n


\n

All our days cannot simply be filled with sunshine and it cannot be simply all laughter and smiles. We have to grow as a person just as the rain lets the flowers in the meadow bloom and grow. The flowers need the rain just as much as they need sunshine. Same is true with people. We need to be happy just as we need to be lonely so that we can grow as a person. Then can we only bring ourselves to realize that the bad is not so bad afer all as long as we allow the growth it brings to us as individuals.

\n

\n


\n

You cannot escape the rain, nor chase it away. Dare to hear its pitter patter rhythm as something which can never be a hindrance for you to see things in a different and brighter way no matter how dark the clouds and heavy the downpour. It is as inevitable as the troubles we come across. Learn from the rain because it is the law of nature. Learn from loneliness or troubles because... It is the law of life.

\n


\n


\n

(c) to the owner of the picture I used...

\n", - "json_metadata": { - "tags": [ - "life", - "story", - "blog", - "" - ], - "image": [ - "http://i64.tinypic.com/2ceg9qa.jpg", - "http://i63.tinypic.com/6iwlyw.jpg", - "http://i64.tinypic.com/fnzjtl.jpg", - "http://i63.tinypic.com/16kp014.jpg" - ] - }, - "created": "2016-08-29T07:57:36", - "updated": "2016-08-29T07:57:36", - "depth": 0, - "children": 5, - "net_rshares": 16847399101862, - "is_paidout": false, - "payout_at": "2016-09-29T09:39:45", - "payout": 18.413, - "pending_payout_value": "18.413 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "berniesanders", - "rshares": "11357569835389" - }, - { - "voter": "nextgenwitness", - "rshares": "86746642898" - }, - { - "voter": "justin", - "rshares": "273812540770" - }, - { - "voter": "silver", - "rshares": "552847788283" - }, - { - "voter": "silversteem", - "rshares": "1251914367375" - }, - { - "voter": "nextgencrypto", - "rshares": "1930805191057" - }, - { - "voter": "steemservices", - "rshares": "190090757518" - }, - { - "voter": "boombastic", - "rshares": "957733653490" - }, - { - "voter": "bingo-0", - "rshares": "8536011764" - }, - { - "voter": "bingo-1", - "rshares": "2238572115" - }, - { - "voter": "scientihark", - "rshares": "429169643" - }, - { - "voter": "murh", - "rshares": "2144600092" - }, - { - "voter": "beerbloke", - "rshares": "64184842487" - }, - { - "voter": "romait", - "rshares": "9651283220" - }, - { - "voter": "gidlark", - "rshares": "1090790161" - }, - { - "voter": "rubybian", - "rshares": "96663454240" - }, - { - "voter": "jillfeint", - "rshares": "504731722" - }, - { - "voter": "creemej", - "rshares": "24388027122" - }, - { - "voter": "the-future", - "rshares": "1680830998" - }, - { - "voter": "iamwne", - "rshares": "1487880898" - }, - { - "voter": "alex.chien", - "rshares": "1819480598" - }, - { - "voter": "shortcut", - "rshares": "5328526582" - }, - { - "voter": "gargon", - "rshares": "8943159633" - }, - { - "voter": "future24", - "rshares": "607950836" - }, - { - "voter": "thecurator", - "rshares": "15277887140" - }, - { - "voter": "michelnilles", - "rshares": "90179446" - }, - { - "voter": "kaosdlanor", - "rshares": "56326177" - }, - { - "voter": "thefeature", - "rshares": "425810977" - }, - { - "voter": "elsievr", - "rshares": "56770700" - }, - { - "voter": "champ333", - "rshares": "50663058" - }, - { - "voter": "terrano", - "rshares": "170136269" - }, - { - "voter": "spinx", - "rshares": "51239204" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 32, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/life/@spinx/the-rain-it-is-the-law-of-life", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 13805683329893, + "payout": 31.621, + "payout_at": "2016-09-25T02:39:54", + "pending_payout_value": "31.621 HBD", + "percent_steem_dollars": 10000, + "permlink": "i-m-tldr-an-experimental-bot-for-summarizing-your-long-articles", + "post_id": 736365, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 50 }, - { - "post_id": 628745, - "author": "feminism", - "permlink": "re-sean-king-re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160816t162832308z", - "category": "life", - "title": "RE: The Crap I Put Up With (as a Woman in Crypto) Because You Say You're \"Not a feminist\"", - "body": "I agree with @sean-king here @kato you give feminism a bad name... :)", - "json_metadata": { - "tags": [ - "life" - ], - "users": [ - "sean-king", - "kato" - ] - }, - "created": "2016-08-16T16:28:33", - "updated": "2016-08-16T16:28:33", - "depth": 2, - "children": 2, - "net_rshares": 5426307472843, - "is_paidout": false, - "payout_at": "2016-09-17T00:58:51", - "payout": 7.588, - "pending_payout_value": "7.588 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "kushed", - "rshares": "5426057994994" - }, - { - "voter": "concave", - "rshares": "249477849" - } + "title": "I'm @tldr - an experimental bot for summarizing your long articles.", + "updated": "2016-08-24T23:26:03", + "url": "/tldr/@tldr/i-m-tldr-an-experimental-bot-for-summarizing-your-long-articles" + }, + { + "active_votes": [ + { + "rshares": "20736048327416", + "voter": "dantheman" + }, + { + "rshares": "2472573792", + "voter": "boy" + }, + { + "rshares": "3001108476", + "voter": "bue-witness" + }, + { + "rshares": "562413629", + "voter": "bunny" + }, + { + "rshares": "42176902013", + "voter": "bue" + }, + { + "rshares": "1325367544", + "voter": "mini" + }, + { + "rshares": "170787830", + "voter": "moon" + }, + { + "rshares": "497243104", + "voter": "healthcare" + }, + { + "rshares": "737438203", + "voter": "daniel.pan" + }, + { + "rshares": "230272201", + "voter": "helen.tan" + }, + { + "rshares": "5072953140", + "voter": "holabebe" + }, + { + "rshares": "1799587902", + "voter": "murh" + }, + { + "rshares": "115361382518", + "voter": "bravenewcoin" + }, + { + "rshares": "166899192", + "voter": "soupernerd" + }, + { + "rshares": "5429807428", + "voter": "qamarpinkpanda" + }, + { + "rshares": "4494852918", + "voter": "aaseb" + }, + { + "rshares": "2162953561", + "voter": "the-future" + }, + { + "rshares": "289441856", + "voter": "illlefr4u" + }, + { + "rshares": "11382937008", + "voter": "pinkisland" + }, + { + "rshares": "3420690714", + "voter": "pigatron" + }, + { + "rshares": "163854600", + "voter": "weenis" + }, + { + "rshares": "309113169", + "voter": "jonaswakefield" + }, + { + "rshares": "984803370", + "voter": "jsantana" + }, + { + "rshares": "61805391", + "voter": "cehuneke" + }, + { + "rshares": "6199940304", + "voter": "craigwilliamz" + }, + { + "rshares": "57122450", + "voter": "thebrickranger" + }, + { + "rshares": "57108081", + "voter": "vbrasher" + }, + { + "rshares": "2980829211", + "voter": "ashleywilliamz" + }, + { + "rshares": "57736694", + "voter": "abbywilliamz" + }, + { + "rshares": "57604403", + "voter": "colleenwilliamz" + }, + { + "rshares": "3202748238", + "voter": "luminousvisions" + }, + { + "rshares": "57682239", + "voter": "canadian-coconut" + }, + { + "rshares": "381198814", + "voter": "ghasemkiani" + }, + { + "rshares": "54839161", + "voter": "cyborg" + }, + { + "rshares": "50931848", + "voter": "analyzethis" + }, + { + "rshares": "51780266", + "voter": "roadhog" + }, + { + "rshares": "52777051", + "voter": "doggnostic" + }, + { + "rshares": "52504270", + "voter": "jenny-talls" + }, + { + "rshares": "54522752", + "voter": "robovirtuoso" + }, + { + "rshares": "50090625", + "voter": "birdiewonder" + }, + { + "rshares": "1092907021", + "voter": "robotev" + }, + { + "rshares": "51074637", + "voter": "goaldigger" + } + ], + "author": "craigwilliamz", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "![The Crown Family Photo](http://steemit-dub.s3.amazonaws.com/alex/the-crown-family1.png 'The Crown Family Photo')\n\nMy Family is Pretty Cool\n-\n![Family](http://steemit-dub.s3.amazonaws.com/family-800.jpg 'Family')\n\nMy favorite people in the world are my children. They are kind, generous, full of life, fun to be around and crazy creative. They are really cool people.\n\nWe have four children, Alex, Ashley, Abby and Austin. My wife's idea to name them all \"A\" names. They are referred to as the \"A Team\".\n\nWe have a close family. We argue very little and maintain open communication. We have treated them like people from early on and they have behaved as such.\n\n![Guitar](http://steemit-dub.s3.amazonaws.com/alex/guitar.png 'Guitar')\n\n\n\nAn Eye Opening Experience\n-\nA few weeks ago I was in Dallas visiting a friend whom I had not seen in many years. There were other people there as well that I had also not seen in a very long time. I struck up a conversation with one of them and the discussion of family ensued. He told me about his children and what it had been like for him to become a father. He has a wonderful family with children that are still very young. When the time came for me to share about my children, I began listing off what each one was doing from the oldest to the youngest. Before I could get to the youngest one, his mouth was gaped open and he burst out, \"What are you feeding them!\" We had a big laugh as I told him about the youngest and expanded on our philosophy of family.\n\nWe have had many compliments on our children throughout their life. Even today, the people with whom they interact; family, friends and the people who work with them in stage productions, make a point of complimenting them. I am around them all the time, and many of their friends are homeschooled as well so sometimes I forget how special they are and the impact they have on others.\n\n![Railroad tracks](http://steemit-dub.s3.amazonaws.com/alex/alex-railroad-tracks-600.jpg 'Railroad tracks')\n\nWhy Am I Sharing\n-\nI hope to convey a few things here. First, if you are considering homeschooling and have reservations, may these stories encourage you. If you already homeschool and wonder if it is all worth it, maybe our stories will give you hope and encouragement as well.\n\nAnd lastly, I am proud of them and want to share their success with you.\n\n![Sis](http://steemit-dub.s3.amazonaws.com/alex/children-800.jpg 'Children')\n\nWhy We Homeschool\n-\nMy personal experience in public schools was a nightmare. I moved a lot when I was young and changed schools every three to six months. During one stretch of five years, I switched schools nineteen times. I did not build long term relationships and being the new kid all the time often created struggles with teachers.\n\nThere is a very long story to my history so I will not get into that here. It is however, the main reason I became excited about homeschooling when my wife suggested it.\n\nOur Oldest Child Alex\n-\n![Alex](http://steemit-dub.s3.amazonaws.com/alexthrowback.jpg 'Alex')\n\nAlex has always been intelligent as I believe all children are. He had memorized many of the family members phone numbers and home addresses by the time he was six. We started him off in Montessori school at age four where he attended three years. We would have kept him in Montessori but they did not offer classes above six years old. \n\nAt that time my wife was still concerned about her ability to homeschool so we enrolled him in a Christian private school for one year. After that, she had researched enough to build her confidence. She was ready to go. (As the years went by, she found out that she was more than capable. We are guides.)\n\nPre-Teen\n-\n![Sis](http://steemit-dub.s3.amazonaws.com/alex/alex-littlekid1.jpeg 'Alex and Sister')\n\nAlex took two years of Latin and one year of Japanese. He acted in plays and did what most children do, play a lot.\n\nTeen Years\n-\n![Sis](http://steemit-dub.s3.amazonaws.com/ateam.jpg 'Alex and Sister')\n\nMany people will tell you that you will have to deal with the teenage years. \"Brace yourself,\" they will say. \"You will become their enemy!\" We did not experience this with Alex or our other children. Alex would come to me for advice about issues him and his friends were discussing. When he would share how I reacted to some of our serious conversations, his friends were astonished and would respond with descriptions of their parents exploding if they attempted to have the same discussions with their parents.\n\nKeeping your cool when one of your children comes to you with a confession is a sure way to have them trust you with other issues of concern.\n\nDuring his teen years, Alex took CLEP tests and earned twelve college hours.\n\nAt sixteen, he began to gain interest in programming. I had introduced it to him when he was nine but he wasn't interested. Then again around eleven but still no interest. At sixteen, the interest was all his. Had I forced him to do it earlier, he may have never liked it.\n\n![Graduation](http://steemit-dub.s3.amazonaws.com/alex/graduation.jpg 'Graduation')\n\nBecoming an Adult\n-\n![Alex](http://steemit-dub.s3.amazonaws.com/alex/alex-adult1.jpeg 'Alex')\n\nOne his eighteenth birthday, he begin working his first job as a software developer. He was hired as an apprentice and was promoted to junior developer after only three months. At that time, he began mentoring two of his friends. Within a few months he had taken on a third person to mentor. Within a year or so, each of them have now changed their path and work as software developers. It has significantly changed their lives. Alex just recently began mentoring another friend. Pretty cool to pass forward. He had received help from some of my co-workers early on which made all the difference in his progression.\n\nHe now speaks French and Mandarin and has aspirations to learn many more. He has traveled to seven countries and has an arrangement with his employer to work from anywhere in the world as long as he is at the office for part of the year.\n\n![Alex](http://steemit-dub.s3.amazonaws.com/alex/amsterdamcollage.jpg 'Alex')\n\nHe gives technical talks at local meet ups, plays both acoustic and electric guitar, has never met a stranger and has made no enemies.\n\nHe is an inspiration to others, his family and siblings. The bar has been set high but the other children have many interests and accomplishments of their own. I'll share those in subsequent posts.\n\n![Leon](http://steemit-dub.s3.amazonaws.com/alex/leoncollage.jpg 'Leon')\n\nWhat was our part?\n-\nMy wife has worked hard to keep them supplied with good school material, staying compliant with state requirements and providing some structure for learning. We never set up a school room like environment. There are never set hours of study. Homeschooling hours vary depending on the age of the child and what they are working on at that phase of their education. I would say that most of the time they spend less time doing actual school work and the rest of the time exploring, using their imagination and focusing their energy on things they are interested in.\n\nFor Alex, that was a foreign language. Other times it was memorizing all the Pokemon cards and building decks and playing in tournaments. Alex said one of the things that has helped him so much in learning new things was the fact that he had memorized so much Pokemon data. He developed the ability to store and retrieve things in his mind.\n\nThe simple fact is\u2026 we didn't do it. Alex did. He deserves all the credit. He did all the work. We provided the canvas, the paint and the paintbrushes. \n\nConclusion\n-\nI feel we have a pretty cool family. There are many ways to raise your children. The most important thing is to love them unconditionally, give them room to grow and treat them as you would your very best friend. They are people and are smarter than most give them credit.\n\nI hope I have been able to convey how proud we are of Alex. These are but a few highlights of his life as he is only twenty-one. There is so much in store for him.\n\nI am so grateful that as much as possible we have given Alex the opportunity to live life on his own terms and he has flourished.", + "category": "life", + "children": 3, + "created": "2016-08-17T02:23:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://steemit-dub.s3.amazonaws.com/alex/the-crown-family1.png" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 2, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160815t231355973z", - "url": "/life/@kato/the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist#@feminism/re-sean-king-re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160816t162832308z", - "blacklists": [] + "tags": [ + "life", + "photography", + "travel", + "parenting", + "family" + ] }, - { - "post_id": 678454, - "author": "craigwilliamz", - "permlink": "re-anarcho-andrei-stop-hitting-your-kids-20160820t021940362z", - "category": "voluntaryism", - "title": "RE: Stop Hitting Your Kids", - "body": "Before I had children, I would look at other parents who were giving their children soda and a pacifier and think, \"Those are horrible parents. Don't they know what harm soda is and all the things that are wrong with pacifiers!\" Then I had children. We have four. It was a lot harder than I thought it would be. When children are very young, you cannot reason with them. You cannot get through to them with logic.\n\nI hope you continue on Steemit and share your experiences with your children. You do have children, right?\n\nI love the concepts being presented by this an other posts to raise our children and never discipline them but what I am not seeing are examples of how to do that. Not once they are old enough to reason, between 4 and 6, but before that.\n\nI am a strong opponent to child abuse. I grew up in a **very** unstable home. That was something I did not want and did not do in my own family but each of my children did receive a few spankings when they were very young. Once they were old enough to reason with, we discussed matters and consequences came into play.\n\nI have a post on my oldest son, he is 21 now and I talk about homeschooling and letting children play a large role in their life. It is __their__ life after all.\n\nhttps://steemit.com/life/@craigwilliamz/how-to-raise-fantastic-children-part-1", - "json_metadata": { - "tags": [ - "voluntaryism" - ], - "links": [ - "https://steemit.com/life/@craigwilliamz/how-to-raise-fantastic-children-part-1" - ] - }, - "created": "2016-08-20T02:19:39", - "updated": "2016-08-20T02:19:39", - "depth": 1, - "children": 4, - "net_rshares": 2931180818933, - "is_paidout": false, - "payout_at": "2016-09-20T02:13:36", - "payout": 2.672, - "pending_payout_value": "2.672 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "dantheman", - "rshares": "2880006712141" - }, - { - "voter": "boy", - "rshares": "2472573792" - }, - { - "voter": "bue-witness", - "rshares": "3001108476" - }, - { - "voter": "bunny", - "rshares": "562413629" - }, - { - "voter": "bue", - "rshares": "42176902013" - }, - { - "voter": "mini", - "rshares": "1325367544" - }, - { - "voter": "moon", - "rshares": "170787830" - }, - { - "voter": "healthcare", - "rshares": "497243104" - }, - { - "voter": "daniel.pan", - "rshares": "737438203" - }, - { - "voter": "helen.tan", - "rshares": "230272201" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 10, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "anarcho-andrei", - "parent_permlink": "stop-hitting-your-kids", - "url": "/voluntaryism/@anarcho-andrei/stop-hitting-your-kids#@craigwilliamz/re-anarcho-andrei-stop-hitting-your-kids-20160820t021940362z", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 20952886915040, + "payout": 28.712, + "payout_at": "2016-09-17T02:57:45", + "pending_payout_value": "28.712 HBD", + "percent_steem_dollars": 10000, + "permlink": "how-to-raise-fantastic-children-part-1", + "post_id": 635822, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 42 }, - { - "post_id": 736431, - "author": "cryptocurrency1", - "permlink": "re-complexring-preview-of-custom-steemit-com-skins-by-maximkichev-20160824t220504965z", - "category": "skins", - "title": "RE: Preview of Custom Steemit.com Skins by @maximkichev", - "body": "This is a great idea. Is it a button on Steemit website to change skin colors?", - "json_metadata": { - "tags": [ - "skins" - ] - }, - "created": "2016-08-24T22:04:51", - "updated": "2016-08-24T22:06:48", - "depth": 1, - "children": 1, - "net_rshares": 2929265394715, - "is_paidout": false, - "payout_at": "2016-09-24T23:52:36", - "payout": 2.566, - "pending_payout_value": "2.566 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "boy", - "rshares": "2475545095" - }, - { - "voter": "bue-witness", - "rshares": "3004943442" - }, - { - "voter": "bunny", - "rshares": "562911298" - }, - { - "voter": "complexring", - "rshares": "2877607015480" - }, - { - "voter": "bue", - "rshares": "42631240754" - }, - { - "voter": "mini", - "rshares": "1326826625" - }, - { - "voter": "moon", - "rshares": "170845704" - }, - { - "voter": "healthcare", - "rshares": "497652721" - }, - { - "voter": "daniel.pan", - "rshares": "758046260" - }, - { - "voter": "helen.tan", - "rshares": "230367336" - } + "title": "How to Raise Fantastic Children - Part 1", + "updated": "2016-08-17T02:41:03", + "url": "/life/@craigwilliamz/how-to-raise-fantastic-children-part-1" + }, + { + "active_votes": [ + { + "rshares": "11357569835389", + "voter": "berniesanders" + }, + { + "rshares": "86746642898", + "voter": "nextgenwitness" + }, + { + "rshares": "273812540770", + "voter": "justin" + }, + { + "rshares": "552847788283", + "voter": "silver" + }, + { + "rshares": "1251914367375", + "voter": "silversteem" + }, + { + "rshares": "1930805191057", + "voter": "nextgencrypto" + }, + { + "rshares": "190090757518", + "voter": "steemservices" + }, + { + "rshares": "957733653490", + "voter": "boombastic" + }, + { + "rshares": "8536011764", + "voter": "bingo-0" + }, + { + "rshares": "2238572115", + "voter": "bingo-1" + }, + { + "rshares": "429169643", + "voter": "scientihark" + }, + { + "rshares": "2144600092", + "voter": "murh" + }, + { + "rshares": "64184842487", + "voter": "beerbloke" + }, + { + "rshares": "9651283220", + "voter": "romait" + }, + { + "rshares": "1090790161", + "voter": "gidlark" + }, + { + "rshares": "96663454240", + "voter": "rubybian" + }, + { + "rshares": "504731722", + "voter": "jillfeint" + }, + { + "rshares": "24388027122", + "voter": "creemej" + }, + { + "rshares": "1680830998", + "voter": "the-future" + }, + { + "rshares": "1487880898", + "voter": "iamwne" + }, + { + "rshares": "1819480598", + "voter": "alex.chien" + }, + { + "rshares": "5328526582", + "voter": "shortcut" + }, + { + "rshares": "8943159633", + "voter": "gargon" + }, + { + "rshares": "607950836", + "voter": "future24" + }, + { + "rshares": "15277887140", + "voter": "thecurator" + }, + { + "rshares": "90179446", + "voter": "michelnilles" + }, + { + "rshares": "56326177", + "voter": "kaosdlanor" + }, + { + "rshares": "425810977", + "voter": "thefeature" + }, + { + "rshares": "56770700", + "voter": "elsievr" + }, + { + "rshares": "50663058", + "voter": "champ333" + }, + { + "rshares": "170136269", + "voter": "terrano" + }, + { + "rshares": "51239204", + "voter": "spinx" + } + ], + "author": "spinx", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\n


\n

One of the few precious truths I learned is life is not about waiting for the storm to pass, it is about learning to dance in...

\n

The Rain

\n

A ray of sunshine does not always mean happiness nor does a drop of rain mean total loneliness. Through time writers of all kinds being the sensitive, emotional and deep people that they are, have always associated the rain with loneliness. Today, whenever a cold wind blows through an open window or an empty space on a street, we are swept with its glum, warning us of a heavy feeling, reminding us of what we have lost, memories that are only too sad we almost wish could bury everything in a shroud of oblivion. Regrets come again, as well as faces of people from the past as a teardrop suddenly threatens to fall anytime from already lost and almost hollow eyes. The cold brought by the rain along with the dark clouds lurking outside makes us want to wrap our arms protectively around ourselves to keep us warm or to shut out any sad thoughts that dare to overstep the arms engulfing our curled bodies.

\n

\n


\n

But its not always like that. Not if we can help it, no. The Rain is perceived negatively most of the time but we can care enough to see beyond what is often seen. GO, outside on an early September morning and you will see that the rain leaves a magnificent dew drenched flower or a grass all the more alive as the sunlight hits the few drops left from last night's rain. All for you to behold. See that under umbrellas are faces of people smiling and radiant as you meet them on the street. Really, the rain cant be that bad. Not at all. It is natures gift, a gift from the Almighty. And after a rain, what do the heavens hold for you? An array of colors painting the sky and we know it as rainbow. Just as we know that after the tears, laughter comes, making us very much worthy of the joy because of what we have gone through.

\n

\n


\n

All our days cannot simply be filled with sunshine and it cannot be simply all laughter and smiles. We have to grow as a person just as the rain lets the flowers in the meadow bloom and grow. The flowers need the rain just as much as they need sunshine. Same is true with people. We need to be happy just as we need to be lonely so that we can grow as a person. Then can we only bring ourselves to realize that the bad is not so bad afer all as long as we allow the growth it brings to us as individuals.

\n

\n


\n

You cannot escape the rain, nor chase it away. Dare to hear its pitter patter rhythm as something which can never be a hindrance for you to see things in a different and brighter way no matter how dark the clouds and heavy the downpour. It is as inevitable as the troubles we come across. Learn from the rain because it is the law of nature. Learn from loneliness or troubles because... It is the law of life.

\n


\n


\n

(c) to the owner of the picture I used...

\n", + "category": "life", + "children": 5, + "created": "2016-08-29T07:57:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i64.tinypic.com/2ceg9qa.jpg", + "http://i63.tinypic.com/6iwlyw.jpg", + "http://i64.tinypic.com/fnzjtl.jpg", + "http://i63.tinypic.com/16kp014.jpg" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 10, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "complexring", - "parent_permlink": "preview-of-custom-steemit-com-skins-by-maximkichev", - "url": "/skins/@complexring/preview-of-custom-steemit-com-skins-by-maximkichev#@cryptocurrency1/re-complexring-preview-of-custom-steemit-com-skins-by-maximkichev-20160824t220504965z", - "blacklists": [] + "tags": [ + "life", + "story", + "blog", + "" + ] }, - { - "post_id": 698270, - "author": "r4fken", - "permlink": "my-1000th-post-and-other-steemit-achievements", - "category": "steemit", - "title": "My 1000th post and other Steemit achievements!", - "body": "Today is an historical day for me. This is my **thousandth** post on Steemit already, I hit **100** followers today ánd I'm finally past the magical limit of **3000** SP! :D\n![Achievement unlocked](http://rlv.zcache.com/achievement_unlocked_bumper_sticker-r50c3a5b34b904bb4a8d9e6aad6b920a1_v9wht_8byvr_512.jpg)\n#### Thanks!\nThanks to all my followers, voters and friends! I hope we'll meet again soon, and continue scoring milestones! :)\nAlso, a thank you for the devs, we **love** your work, keep going!", - "json_metadata": { - "tags": [ - "steemit", - "awesome", - "achievement", - "stats", - "milestone" - ], - "image": [ - "http://rlv.zcache.com/achievement_unlocked_bumper_sticker-r50c3a5b34b904bb4a8d9e6aad6b920a1_v9wht_8byvr_512.jpg" - ] - }, - "created": "2016-08-21T20:34:39", - "updated": "2016-08-21T20:34:39", - "depth": 0, - "children": 35, - "net_rshares": -25406680605573, - "is_paidout": false, - "payout_at": "2016-09-22T12:39:06", - "payout": 2.101, - "pending_payout_value": "2.101 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "berniesanders", - "rshares": "-25419129621778" - }, - { - "voter": "adm", - "rshares": "-1303288241222" - }, - { - "voter": "boy", - "rshares": "3711292843" - }, - { - "voter": "bue-witness", - "rshares": "4504842525" - }, - { - "voter": "bunny", - "rshares": "844018072" - }, - { - "voter": "bue", - "rshares": "63630835821" - }, - { - "voter": "steemservices", - "rshares": "-491961877500" - }, - { - "voter": "mini", - "rshares": "1989271577" - }, - { - "voter": "moon", - "rshares": "256227507" - }, - { - "voter": "benjojo", - "rshares": "1244483571299" - }, - { - "voter": "proctologic", - "rshares": "24096643591" - }, - { - "voter": "healthcare", - "rshares": "746214388" - }, - { - "voter": "daniel.pan", - "rshares": "1124279505" - }, - { - "voter": "helen.tan", - "rshares": "345483224" - }, - { - "voter": "chryspano", - "rshares": "-403038020258" - }, - { - "voter": "kingscrown", - "rshares": "81440709580" - }, - { - "voter": "acidyo", - "rshares": "18173041048" - }, - { - "voter": "murh", - "rshares": "1441527990" - }, - { - "voter": "cryptofunk", - "rshares": "7298235047" - }, - { - "voter": "thecryptofiend", - "rshares": "13897431770" - }, - { - "voter": "zebbra2014", - "rshares": "5255137728" - }, - { - "voter": "hater", - "rshares": "-304963538" - }, - { - "voter": "wisehammer", - "rshares": "1013738674" - }, - { - "voter": "micheletrainer", - "rshares": "2750169349" - }, - { - "voter": "roelandp", - "rshares": "305244819566" - }, - { - "voter": "elyaque", - "rshares": "15757395195" - }, - { - "voter": "r4fken", - "rshares": "23999310435" - }, - { - "voter": "on0tole", - "rshares": "4383469997" - }, - { - "voter": "leksimus", - "rshares": "1350456080" - }, - { - "voter": "sveokla", - "rshares": "239464793" - }, - { - "voter": "perwest", - "rshares": "6247936107" - }, - { - "voter": "pigatto", - "rshares": "547667566" - }, - { - "voter": "anduweb", - "rshares": "17764985905" - }, - { - "voter": "maximkichev", - "rshares": "3769939766" - }, - { - "voter": "arek", - "rshares": "-290175754" - }, - { - "voter": "heimindanger", - "rshares": "7864564586" - }, - { - "voter": "bitcoiner", - "rshares": "3766102090" - }, - { - "voter": "qonq99", - "rshares": "528819341" - }, - { - "voter": "valspeaks", - "rshares": "2311634180" - }, - { - "voter": "lukmarcus", - "rshares": "2173853443" - }, - { - "voter": "bullionstackers", - "rshares": "1419541000" - }, - { - "voter": "dmilash", - "rshares": "2022504731" - }, - { - "voter": "kaykunoichi", - "rshares": "508192245" - }, - { - "voter": "jasonstaggers", - "rshares": "28835166886" - }, - { - "voter": "steemdrive", - "rshares": "89850692765" - }, - { - "voter": "litrbooh", - "rshares": "1700610055" - }, - { - "voter": "capitalism", - "rshares": "11642599188" - }, - { - "voter": "always1success", - "rshares": "68869178" - }, - { - "voter": "xtester", - "rshares": "30079446399" - }, - { - "voter": "marinaz", - "rshares": "66954524" - }, - { - "voter": "caitlinm", - "rshares": "178131954" - }, - { - "voter": "thisisbenbrick", - "rshares": "89856273584" - }, - { - "voter": "joele", - "rshares": "54406274025" - }, - { - "voter": "erikkartmen", - "rshares": "57581935" - }, - { - "voter": "driv3n", - "rshares": "24752361813" - }, - { - "voter": "numberone", - "rshares": "63964502" - }, - { - "voter": "naifaz", - "rshares": "154559742" - }, - { - "voter": "violino", - "rshares": "62002598" - }, - { - "voter": "guard", - "rshares": "-92783813" - }, - { - "voter": "bbsj", - "rshares": "2626905838" - }, - { - "voter": "lecrazycanuckeh", - "rshares": "62301037" - }, - { - "voter": "grayhorse", - "rshares": "-149863586" - }, - { - "voter": "jessicalu", - "rshares": "-53470504" - }, - { - "voter": "direcrusher", - "rshares": "55036253" - }, - { - "voter": "tschabidave", - "rshares": "54444758" - }, - { - "voter": "ibringawareness", - "rshares": "100163794" - }, - { - "voter": "anamikasjain", - "rshares": "50742988" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 67, - "flag_weight": 4.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/steemit/@r4fken/my-1000th-post-and-other-steemit-achievements", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 16847399101862, + "payout": 18.413, + "payout_at": "2016-09-29T09:39:45", + "pending_payout_value": "18.413 HBD", + "percent_steem_dollars": 10000, + "permlink": "the-rain-it-is-the-law-of-life", + "post_id": 787056, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 32 }, - { - "post_id": 718957, - "author": "loveangel", - "permlink": "re-jvper-international-money-transfer-provider-started-using-steem-20160823t142700478z", - "category": "steemit", - "title": "RE: International Money Transfer Provider started using Steem", - "body": "If people would be able to use Steem for remittances, then I feel this could just blow up out of proportion for Steem, as there would be no need to convert Steem's to bitcoin and then to local currencies. \n\nIts dependency on bitcoin would be negated and we can then truly consider it as a global currency :-)", - "json_metadata": { - "tags": [ - "steemit" - ] - }, - "created": "2016-08-23T14:27:00", - "updated": "2016-08-23T14:27:00", - "depth": 1, - "children": 1, - "net_rshares": 1784399120902, - "is_paidout": false, - "payout_at": "2016-09-23T13:51:39", - "payout": 1.417, - "pending_payout_value": "1.417 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "dantheman", - "rshares": "1730545983153" - }, - { - "voter": "boy", - "rshares": "2474667874" - }, - { - "voter": "bue-witness", - "rshares": "3003831514" - }, - { - "voter": "bunny", - "rshares": "562780317" - }, - { - "voter": "bue", - "rshares": "42510264789" - }, - { - "voter": "mini", - "rshares": "1326410513" - }, - { - "voter": "moon", - "rshares": "170827956" - }, - { - "voter": "healthcare", - "rshares": "497540834" - }, - { - "voter": "daniel.pan", - "rshares": "756497537" - }, - { - "voter": "helen.tan", - "rshares": "230342766" - }, - { - "voter": "jvper", - "rshares": "2251314435" - }, - { - "voter": "sizil", - "rshares": "68659214" - } + "title": "The Rain - It is the law of life", + "updated": "2016-08-29T07:57:36", + "url": "/life/@spinx/the-rain-it-is-the-law-of-life" + }, + { + "active_votes": [ + { + "rshares": "5426057994994", + "voter": "kushed" + }, + { + "rshares": "249477849", + "voter": "concave" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "I agree with @sean-king here @kato you give feminism a bad name... :)", + "category": "life", + "children": 2, + "created": "2016-08-16T16:28:33", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "is_paidout": false, + "json_metadata": { + "tags": [ + "life" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 12, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "jvper", - "parent_permlink": "international-money-transfer-provider-started-using-steem", - "url": "/steemit/@jvper/international-money-transfer-provider-started-using-steem#@loveangel/re-jvper-international-money-transfer-provider-started-using-steem-20160823t142700478z", - "blacklists": [] + "users": [ + "sean-king", + "kato" + ] }, - { - "post_id": 694518, - "author": "feminism", - "permlink": "re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t141224417z", - "category": "faith", - "title": "RE: Faith Versus Religion--Refuting \"God's Undertaker\", Part 1", - "body": "proofreading: quiet-> quite", - "json_metadata": { - "tags": [ - "faith" - ] - }, - "created": "2016-08-21T14:12:24", - "updated": "2016-08-21T14:12:24", - "depth": 1, - "children": 1, - "net_rshares": 1453905500705, - "is_paidout": false, - "payout_at": "2016-09-21T14:54:18", - "payout": 1.308, - "pending_payout_value": "1.308 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "sean-king", - "rshares": "1453905500705" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 1, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "faith-versus-religion-refuting-god-s-undertaker-part-1", - "url": "/faith/@sean-king/faith-versus-religion-refuting-god-s-undertaker-part-1#@feminism/re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t141224417z", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 5426307472843, + "parent_author": "sean-king", + "parent_permlink": "re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160815t231355973z", + "payout": 7.588, + "payout_at": "2016-09-17T00:58:51", + "pending_payout_value": "7.588 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160816t162832308z", + "post_id": 628745, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 2 }, - { - "post_id": 695353, - "author": "feminism", - "permlink": "re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t154045710z", - "category": "faith", - "title": "RE: Faith Versus Religion--Refuting \"God's Undertaker\", Part 1", - "body": "money quote: \"And it's also just as likely that God ejaculated out the universe after an epic masterbation session\"\n\nproofreading: masturbation", - "json_metadata": { - "tags": [ - "faith" - ] - }, - "created": "2016-08-21T15:40:45", - "updated": "2016-08-21T15:40:45", - "depth": 1, - "children": 0, - "net_rshares": 1424832587077, - "is_paidout": false, - "payout_at": "2016-09-21T14:54:18", - "payout": 1.276, - "pending_payout_value": "1.276 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "sean-king", - "rshares": "1424832587077" - } + "title": "RE: The Crap I Put Up With (as a Woman in Crypto) Because You Say You're \"Not a feminist\"", + "updated": "2016-08-16T16:28:33", + "url": "/life/@kato/the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist#@feminism/re-sean-king-re-kato-the-crap-i-put-up-with-as-a-woman-in-crypto-because-you-say-you-re-not-a-feminist-20160816t162832308z" + }, + { + "active_votes": [ + { + "rshares": "2880006712141", + "voter": "dantheman" + }, + { + "rshares": "2472573792", + "voter": "boy" + }, + { + "rshares": "3001108476", + "voter": "bue-witness" + }, + { + "rshares": "562413629", + "voter": "bunny" + }, + { + "rshares": "42176902013", + "voter": "bue" + }, + { + "rshares": "1325367544", + "voter": "mini" + }, + { + "rshares": "170787830", + "voter": "moon" + }, + { + "rshares": "497243104", + "voter": "healthcare" + }, + { + "rshares": "737438203", + "voter": "daniel.pan" + }, + { + "rshares": "230272201", + "voter": "helen.tan" + } + ], + "author": "craigwilliamz", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Before I had children, I would look at other parents who were giving their children soda and a pacifier and think, \"Those are horrible parents. Don't they know what harm soda is and all the things that are wrong with pacifiers!\" Then I had children. We have four. It was a lot harder than I thought it would be. When children are very young, you cannot reason with them. You cannot get through to them with logic.\n\nI hope you continue on Steemit and share your experiences with your children. You do have children, right?\n\nI love the concepts being presented by this an other posts to raise our children and never discipline them but what I am not seeing are examples of how to do that. Not once they are old enough to reason, between 4 and 6, but before that.\n\nI am a strong opponent to child abuse. I grew up in a **very** unstable home. That was something I did not want and did not do in my own family but each of my children did receive a few spankings when they were very young. Once they were old enough to reason with, we discussed matters and consequences came into play.\n\nI have a post on my oldest son, he is 21 now and I talk about homeschooling and letting children play a large role in their life. It is __their__ life after all.\n\nhttps://steemit.com/life/@craigwilliamz/how-to-raise-fantastic-children-part-1", + "category": "voluntaryism", + "children": 4, + "created": "2016-08-20T02:19:39", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemit.com/life/@craigwilliamz/how-to-raise-fantastic-children-part-1" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 1, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "faith-versus-religion-refuting-god-s-undertaker-part-1", - "url": "/faith/@sean-king/faith-versus-religion-refuting-god-s-undertaker-part-1#@feminism/re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t154045710z", - "blacklists": [] + "tags": [ + "voluntaryism" + ] }, - { - "post_id": 736865, - "author": "feminism", - "permlink": "re-cryptoctopus-the-earth-is-flat-the-ultimate-test-for-open-mindedness-20160824t225052573z", - "category": "curiosity", - "title": "RE: The Earth Is Flat? The ultimate test for \"open mindedness\"", - "body": "it is a great exercise in epistemology, I agree.\nand most people are sheeps, meaning, they dont know how they know what \"they know\", meaning they dont know shit", - "json_metadata": { - "tags": [ - "curiosity" - ] - }, - "created": "2016-08-24T22:50:51", - "updated": "2016-08-24T22:50:51", - "depth": 1, - "children": 0, - "net_rshares": 1746474870201, - "is_paidout": false, - "payout_at": "2016-09-24T23:11:33", - "payout": 1.256, - "pending_payout_value": "1.256 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "boy", - "rshares": "2475680916" - }, - { - "voter": "bue-witness", - "rshares": "3005113218" - }, - { - "voter": "bunny", - "rshares": "562928956" - }, - { - "voter": "bue", - "rshares": "42648953508" - }, - { - "voter": "mini", - "rshares": "1326895892" - }, - { - "voter": "moon", - "rshares": "170847062" - }, - { - "voter": "healthcare", - "rshares": "497673093" - }, - { - "voter": "daniel.pan", - "rshares": "759428460" - }, - { - "voter": "helen.tan", - "rshares": "230370052" - }, - { - "voter": "cryptoctopus", - "rshares": "1698179876049" - }, - { - "voter": "beanz", - "rshares": "-3382897005" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 11, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "cryptoctopus", - "parent_permlink": "the-earth-is-flat-the-ultimate-test-for-open-mindedness", - "url": "/curiosity/@cryptoctopus/the-earth-is-flat-the-ultimate-test-for-open-mindedness#@feminism/re-cryptoctopus-the-earth-is-flat-the-ultimate-test-for-open-mindedness-20160824t225052573z", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 2931180818933, + "parent_author": "anarcho-andrei", + "parent_permlink": "stop-hitting-your-kids", + "payout": 2.672, + "payout_at": "2016-09-20T02:13:36", + "pending_payout_value": "2.672 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-anarcho-andrei-stop-hitting-your-kids-20160820t021940362z", + "post_id": 678454, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 10 }, - { - "post_id": 674727, - "author": "feminism", - "permlink": "re-sean-king-nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky-20160819t195205251z", - "category": "feminism", - "title": "RE: \"Nothing in biology makes sense except in the light of evolution.\" --Theodosius Dobzhansky", - "body": "proofreading: lessor", - "json_metadata": { - "tags": [ - "feminism" - ] - }, - "created": "2016-08-19T19:52:06", - "updated": "2016-08-19T19:52:06", - "depth": 1, - "children": 1, - "net_rshares": 1532858419010, - "is_paidout": false, - "payout_at": "2016-09-19T19:24:12", - "payout": 1.099, - "pending_payout_value": "1.099 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "boy", - "rshares": "2471701036" - }, - { - "voter": "bue-witness", - "rshares": "3000021378" - }, - { - "voter": "bunny", - "rshares": "562225906" - }, - { - "voter": "bue", - "rshares": "42142431563" - }, - { - "voter": "mini", - "rshares": "1324903845" - }, - { - "voter": "moon", - "rshares": "170734595" - }, - { - "voter": "healthcare", - "rshares": "497076397" - }, - { - "voter": "daniel.pan", - "rshares": "737187441" - }, - { - "voter": "helen.tan", - "rshares": "230197953" - }, - { - "voter": "sean-king", - "rshares": "1481721938896" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 10, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky", - "url": "/feminism/@sean-king/nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky#@feminism/re-sean-king-nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky-20160819t195205251z", - "blacklists": [] + "title": "RE: Stop Hitting Your Kids", + "updated": "2016-08-20T02:19:39", + "url": "/voluntaryism/@anarcho-andrei/stop-hitting-your-kids#@craigwilliamz/re-anarcho-andrei-stop-hitting-your-kids-20160820t021940362z" + }, + { + "active_votes": [ + { + "rshares": "2475545095", + "voter": "boy" + }, + { + "rshares": "3004943442", + "voter": "bue-witness" + }, + { + "rshares": "562911298", + "voter": "bunny" + }, + { + "rshares": "2877607015480", + "voter": "complexring" + }, + { + "rshares": "42631240754", + "voter": "bue" + }, + { + "rshares": "1326826625", + "voter": "mini" + }, + { + "rshares": "170845704", + "voter": "moon" + }, + { + "rshares": "497652721", + "voter": "healthcare" + }, + { + "rshares": "758046260", + "voter": "daniel.pan" + }, + { + "rshares": "230367336", + "voter": "helen.tan" + } + ], + "author": "cryptocurrency1", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "This is a great idea. Is it a button on Steemit website to change skin colors?", + "category": "skins", + "children": 1, + "created": "2016-08-24T22:04:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "skins" + ] }, - { - "post_id": 736890, - "author": "feminism", - "permlink": "re-sean-king-me-cindy-and-20160824t225250885z", - "category": "celebrity", - "title": "RE: Me, Cindy and...?", - "body": "OMG Sasha Grey\nwhy are you doing this to me Sean ???\n:)", - "json_metadata": { - "tags": [ - "celebrity" - ] - }, - "created": "2016-08-24T22:52:51", - "updated": "2016-08-24T22:55:00", - "depth": 1, - "children": 0, - "net_rshares": 1511562806286, - "is_paidout": false, - "payout_at": "2016-09-24T23:35:06", - "payout": 1.049, - "pending_payout_value": "1.049 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "boy", - "rshares": "2475557327" - }, - { - "voter": "bue-witness", - "rshares": "3004958392" - }, - { - "voter": "bunny", - "rshares": "562914017" - }, - { - "voter": "bue", - "rshares": "42634234947" - }, - { - "voter": "mini", - "rshares": "1326832061" - }, - { - "voter": "moon", - "rshares": "170845704" - }, - { - "voter": "healthcare", - "rshares": "497654080" - }, - { - "voter": "daniel.pan", - "rshares": "758048978" - }, - { - "voter": "helen.tan", - "rshares": "230367336" - }, - { - "voter": "somedude", - "rshares": "7488699966" - }, - { - "voter": "sean-king", - "rshares": "1455795590483" - }, - { - "voter": "beanz", - "rshares": "-3382897005" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 12, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "me-cindy-and", - "url": "/celebrity/@sean-king/me-cindy-and#@feminism/re-sean-king-me-cindy-and-20160824t225250885z", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 2929265394715, + "parent_author": "complexring", + "parent_permlink": "preview-of-custom-steemit-com-skins-by-maximkichev", + "payout": 2.566, + "payout_at": "2016-09-24T23:52:36", + "pending_payout_value": "2.566 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-complexring-preview-of-custom-steemit-com-skins-by-maximkichev-20160824t220504965z", + "post_id": 736431, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 10 }, - { - "post_id": 769459, - "author": "feminism", - "permlink": "re-sean-king-the-bible-isn-t-mainly-history-20160827t184548731z", - "category": "bible", - "title": "RE: The Bible Isn't (Mainly) History", - "body": "\"It’s also the reason why poetry is often able to convey a truer understanding of an ideal than prose: The ineffable, transcendental concepts of art and religion defy encapsulation in mere words. \"\nThats the reason why I dont bother explaining myself with mere prose,\nbut instead I use poetry and music, the closest piece of poetry or music I know\nthat conveys what Im trying to convey.", - "json_metadata": { - "tags": [ - "bible" - ] - }, - "created": "2016-08-27T18:45:48", - "updated": "2016-08-27T18:47:27", - "depth": 1, - "children": 0, - "net_rshares": 1398535239934, - "is_paidout": false, - "payout_at": "2016-09-27T18:51:57", - "payout": 1.031, - "pending_payout_value": "1.031 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "sean-king", - "rshares": "1398535239934" - } + "title": "RE: Preview of Custom Steemit.com Skins by @maximkichev", + "updated": "2016-08-24T22:06:48", + "url": "/skins/@complexring/preview-of-custom-steemit-com-skins-by-maximkichev#@cryptocurrency1/re-complexring-preview-of-custom-steemit-com-skins-by-maximkichev-20160824t220504965z" + }, + { + "active_votes": [ + { + "rshares": "-25419129621778", + "voter": "berniesanders" + }, + { + "rshares": "-1303288241222", + "voter": "adm" + }, + { + "rshares": "3711292843", + "voter": "boy" + }, + { + "rshares": "4504842525", + "voter": "bue-witness" + }, + { + "rshares": "844018072", + "voter": "bunny" + }, + { + "rshares": "63630835821", + "voter": "bue" + }, + { + "rshares": "-491961877500", + "voter": "steemservices" + }, + { + "rshares": "1989271577", + "voter": "mini" + }, + { + "rshares": "256227507", + "voter": "moon" + }, + { + "rshares": "1244483571299", + "voter": "benjojo" + }, + { + "rshares": "24096643591", + "voter": "proctologic" + }, + { + "rshares": "746214388", + "voter": "healthcare" + }, + { + "rshares": "1124279505", + "voter": "daniel.pan" + }, + { + "rshares": "345483224", + "voter": "helen.tan" + }, + { + "rshares": "-403038020258", + "voter": "chryspano" + }, + { + "rshares": "81440709580", + "voter": "kingscrown" + }, + { + "rshares": "18173041048", + "voter": "acidyo" + }, + { + "rshares": "1441527990", + "voter": "murh" + }, + { + "rshares": "7298235047", + "voter": "cryptofunk" + }, + { + "rshares": "13897431770", + "voter": "thecryptofiend" + }, + { + "rshares": "5255137728", + "voter": "zebbra2014" + }, + { + "rshares": "-304963538", + "voter": "hater" + }, + { + "rshares": "1013738674", + "voter": "wisehammer" + }, + { + "rshares": "2750169349", + "voter": "micheletrainer" + }, + { + "rshares": "305244819566", + "voter": "roelandp" + }, + { + "rshares": "15757395195", + "voter": "elyaque" + }, + { + "rshares": "23999310435", + "voter": "r4fken" + }, + { + "rshares": "4383469997", + "voter": "on0tole" + }, + { + "rshares": "1350456080", + "voter": "leksimus" + }, + { + "rshares": "239464793", + "voter": "sveokla" + }, + { + "rshares": "6247936107", + "voter": "perwest" + }, + { + "rshares": "547667566", + "voter": "pigatto" + }, + { + "rshares": "17764985905", + "voter": "anduweb" + }, + { + "rshares": "3769939766", + "voter": "maximkichev" + }, + { + "rshares": "-290175754", + "voter": "arek" + }, + { + "rshares": "7864564586", + "voter": "heimindanger" + }, + { + "rshares": "3766102090", + "voter": "bitcoiner" + }, + { + "rshares": "528819341", + "voter": "qonq99" + }, + { + "rshares": "2311634180", + "voter": "valspeaks" + }, + { + "rshares": "2173853443", + "voter": "lukmarcus" + }, + { + "rshares": "1419541000", + "voter": "bullionstackers" + }, + { + "rshares": "2022504731", + "voter": "dmilash" + }, + { + "rshares": "508192245", + "voter": "kaykunoichi" + }, + { + "rshares": "28835166886", + "voter": "jasonstaggers" + }, + { + "rshares": "89850692765", + "voter": "steemdrive" + }, + { + "rshares": "1700610055", + "voter": "litrbooh" + }, + { + "rshares": "11642599188", + "voter": "capitalism" + }, + { + "rshares": "68869178", + "voter": "always1success" + }, + { + "rshares": "30079446399", + "voter": "xtester" + }, + { + "rshares": "66954524", + "voter": "marinaz" + }, + { + "rshares": "178131954", + "voter": "caitlinm" + }, + { + "rshares": "89856273584", + "voter": "thisisbenbrick" + }, + { + "rshares": "54406274025", + "voter": "joele" + }, + { + "rshares": "57581935", + "voter": "erikkartmen" + }, + { + "rshares": "24752361813", + "voter": "driv3n" + }, + { + "rshares": "63964502", + "voter": "numberone" + }, + { + "rshares": "154559742", + "voter": "naifaz" + }, + { + "rshares": "62002598", + "voter": "violino" + }, + { + "rshares": "-92783813", + "voter": "guard" + }, + { + "rshares": "2626905838", + "voter": "bbsj" + }, + { + "rshares": "62301037", + "voter": "lecrazycanuckeh" + }, + { + "rshares": "-149863586", + "voter": "grayhorse" + }, + { + "rshares": "-53470504", + "voter": "jessicalu" + }, + { + "rshares": "55036253", + "voter": "direcrusher" + }, + { + "rshares": "54444758", + "voter": "tschabidave" + }, + { + "rshares": "100163794", + "voter": "ibringawareness" + }, + { + "rshares": "50742988", + "voter": "anamikasjain" + } + ], + "author": "r4fken", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Today is an historical day for me. This is my **thousandth** post on Steemit already, I hit **100** followers today \u00e1nd I'm finally past the magical limit of **3000** SP! :D\n![Achievement unlocked](http://rlv.zcache.com/achievement_unlocked_bumper_sticker-r50c3a5b34b904bb4a8d9e6aad6b920a1_v9wht_8byvr_512.jpg)\n#### Thanks!\nThanks to all my followers, voters and friends! I hope we'll meet again soon, and continue scoring milestones! :)\nAlso, a thank you for the devs, we **love** your work, keep going!", + "category": "steemit", + "children": 35, + "created": "2016-08-21T20:34:39", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://rlv.zcache.com/achievement_unlocked_bumper_sticker-r50c3a5b34b904bb4a8d9e6aad6b920a1_v9wht_8byvr_512.jpg" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 1, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "the-bible-isn-t-mainly-history", - "url": "/bible/@sean-king/the-bible-isn-t-mainly-history#@feminism/re-sean-king-the-bible-isn-t-mainly-history-20160827t184548731z", - "blacklists": [] + "tags": [ + "steemit", + "awesome", + "achievement", + "stats", + "milestone" + ] }, - { - "post_id": 684831, - "author": "feminism", - "permlink": "re-sean-king-paraphilia-20160820t164510821z", - "category": "photography", - "title": "RE: Paraphilia", - "body": "Here is a post with a song dedicated to you Sean,\nhttp://steemit.com/science/@feminism/the-symphony-of-science-dedicated-to-sean-king\nyou're really growing on me, thank you for your work.\nI wish I could be as polite as you are with people.", - "json_metadata": { - "tags": [ - "photography" - ], - "links": [ - "http://steemit.com/science/@feminism/the-symphony-of-science-dedicated-to-sean-king" - ] - }, - "created": "2016-08-20T16:45:12", - "updated": "2016-08-20T16:45:12", - "depth": 1, - "children": 2, - "net_rshares": 1379142794288, - "is_paidout": false, - "payout_at": "2016-09-20T06:12:45", - "payout": 1.023, - "pending_payout_value": "1.023 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "boy", - "rshares": "3091167529" - }, - { - "voter": "bue-witness", - "rshares": "3751991188" - }, - { - "voter": "bunny", - "rshares": "703090335" - }, - { - "voter": "bue", - "rshares": "52790740268" - }, - { - "voter": "mini", - "rshares": "1656938054" - }, - { - "voter": "moon", - "rshares": "213491769" - }, - { - "voter": "healthcare", - "rshares": "621613216" - }, - { - "voter": "daniel.pan", - "rshares": "923651182" - }, - { - "voter": "helen.tan", - "rshares": "287854213" - }, - { - "voter": "somedude", - "rshares": "7668537780" - }, - { - "voter": "sean-king", - "rshares": "1307433718754" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 11, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "paraphilia", - "url": "/photography/@sean-king/paraphilia#@feminism/re-sean-king-paraphilia-20160820t164510821z", - "blacklists": [] + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": -25406680605573, + "payout": 2.101, + "payout_at": "2016-09-22T12:39:06", + "pending_payout_value": "2.101 HBD", + "percent_steem_dollars": 10000, + "permlink": "my-1000th-post-and-other-steemit-achievements", + "post_id": 698270, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 4.0, + "gray": true, + "hide": false, + "total_votes": 67 }, - { - "post_id": 712384, - "author": "feminism", - "permlink": "re-sean-king-mystical-20160822t234424169z", - "category": "photography", - "title": "RE: Mystical Momma", - "body": "That picture is mind blowing, to say anything less would be dishonest.", - "json_metadata": { - "tags": [ - "photography" - ] - }, - "created": "2016-08-22T23:44:24", - "updated": "2016-08-22T23:44:24", - "depth": 1, - "children": 0, - "net_rshares": 1396646939582, - "is_paidout": false, - "payout_at": "2016-09-23T01:34:54", - "payout": 1.0, - "pending_payout_value": "1.000 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "sean-king", - "rshares": "1396646939582" - } - ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 1, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "sean-king", - "parent_permlink": "mystical", - "url": "/photography/@sean-king/mystical#@feminism/re-sean-king-mystical-20160822t234424169z", - "blacklists": [] + "title": "My 1000th post and other Steemit achievements!", + "updated": "2016-08-21T20:34:39", + "url": "/steemit/@r4fken/my-1000th-post-and-other-steemit-achievements" + }, + { + "active_votes": [ + { + "rshares": "1730545983153", + "voter": "dantheman" + }, + { + "rshares": "2474667874", + "voter": "boy" + }, + { + "rshares": "3003831514", + "voter": "bue-witness" + }, + { + "rshares": "562780317", + "voter": "bunny" + }, + { + "rshares": "42510264789", + "voter": "bue" + }, + { + "rshares": "1326410513", + "voter": "mini" + }, + { + "rshares": "170827956", + "voter": "moon" + }, + { + "rshares": "497540834", + "voter": "healthcare" + }, + { + "rshares": "756497537", + "voter": "daniel.pan" + }, + { + "rshares": "230342766", + "voter": "helen.tan" + }, + { + "rshares": "2251314435", + "voter": "jvper" + }, + { + "rshares": "68659214", + "voter": "sizil" + } + ], + "author": "loveangel", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "If people would be able to use Steem for remittances, then I feel this could just blow up out of proportion for Steem, as there would be no need to convert Steem's to bitcoin and then to local currencies. \n\nIts dependency on bitcoin would be negated and we can then truly consider it as a global currency :-)", + "category": "steemit", + "children": 1, + "created": "2016-08-23T14:27:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "steemit" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1784399120902, + "parent_author": "jvper", + "parent_permlink": "international-money-transfer-provider-started-using-steem", + "payout": 1.417, + "payout_at": "2016-09-23T13:51:39", + "pending_payout_value": "1.417 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-jvper-international-money-transfer-provider-started-using-steem-20160823t142700478z", + "post_id": 718957, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 12 + }, + "title": "RE: International Money Transfer Provider started using Steem", + "updated": "2016-08-23T14:27:00", + "url": "/steemit/@jvper/international-money-transfer-provider-started-using-steem#@loveangel/re-jvper-international-money-transfer-provider-started-using-steem-20160823t142700478z" + }, + { + "active_votes": [ + { + "rshares": "1453905500705", + "voter": "sean-king" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "proofreading: quiet-> quite", + "category": "faith", + "children": 1, + "created": "2016-08-21T14:12:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "faith" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1453905500705, + "parent_author": "sean-king", + "parent_permlink": "faith-versus-religion-refuting-god-s-undertaker-part-1", + "payout": 1.308, + "payout_at": "2016-09-21T14:54:18", + "pending_payout_value": "1.308 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t141224417z", + "post_id": 694518, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Faith Versus Religion--Refuting \"God's Undertaker\", Part 1", + "updated": "2016-08-21T14:12:24", + "url": "/faith/@sean-king/faith-versus-religion-refuting-god-s-undertaker-part-1#@feminism/re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t141224417z" + }, + { + "active_votes": [ + { + "rshares": "1424832587077", + "voter": "sean-king" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "money quote: \"And it's also just as likely that God ejaculated out the universe after an epic masterbation session\"\n\nproofreading: masturbation", + "category": "faith", + "children": 0, + "created": "2016-08-21T15:40:45", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "faith" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1424832587077, + "parent_author": "sean-king", + "parent_permlink": "faith-versus-religion-refuting-god-s-undertaker-part-1", + "payout": 1.276, + "payout_at": "2016-09-21T14:54:18", + "pending_payout_value": "1.276 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t154045710z", + "post_id": 695353, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Faith Versus Religion--Refuting \"God's Undertaker\", Part 1", + "updated": "2016-08-21T15:40:45", + "url": "/faith/@sean-king/faith-versus-religion-refuting-god-s-undertaker-part-1#@feminism/re-sean-king-faith-versus-religion-refuting-god-s-undertaker-part-1-20160821t154045710z" + }, + { + "active_votes": [ + { + "rshares": "2475680916", + "voter": "boy" + }, + { + "rshares": "3005113218", + "voter": "bue-witness" + }, + { + "rshares": "562928956", + "voter": "bunny" + }, + { + "rshares": "42648953508", + "voter": "bue" + }, + { + "rshares": "1326895892", + "voter": "mini" + }, + { + "rshares": "170847062", + "voter": "moon" + }, + { + "rshares": "497673093", + "voter": "healthcare" + }, + { + "rshares": "759428460", + "voter": "daniel.pan" + }, + { + "rshares": "230370052", + "voter": "helen.tan" + }, + { + "rshares": "1698179876049", + "voter": "cryptoctopus" + }, + { + "rshares": "-3382897005", + "voter": "beanz" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "it is a great exercise in epistemology, I agree.\nand most people are sheeps, meaning, they dont know how they know what \"they know\", meaning they dont know shit", + "category": "curiosity", + "children": 0, + "created": "2016-08-24T22:50:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "curiosity" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1746474870201, + "parent_author": "cryptoctopus", + "parent_permlink": "the-earth-is-flat-the-ultimate-test-for-open-mindedness", + "payout": 1.256, + "payout_at": "2016-09-24T23:11:33", + "pending_payout_value": "1.256 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-cryptoctopus-the-earth-is-flat-the-ultimate-test-for-open-mindedness-20160824t225052573z", + "post_id": 736865, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 11 + }, + "title": "RE: The Earth Is Flat? The ultimate test for \"open mindedness\"", + "updated": "2016-08-24T22:50:51", + "url": "/curiosity/@cryptoctopus/the-earth-is-flat-the-ultimate-test-for-open-mindedness#@feminism/re-cryptoctopus-the-earth-is-flat-the-ultimate-test-for-open-mindedness-20160824t225052573z" + }, + { + "active_votes": [ + { + "rshares": "2471701036", + "voter": "boy" + }, + { + "rshares": "3000021378", + "voter": "bue-witness" + }, + { + "rshares": "562225906", + "voter": "bunny" + }, + { + "rshares": "42142431563", + "voter": "bue" + }, + { + "rshares": "1324903845", + "voter": "mini" + }, + { + "rshares": "170734595", + "voter": "moon" + }, + { + "rshares": "497076397", + "voter": "healthcare" + }, + { + "rshares": "737187441", + "voter": "daniel.pan" + }, + { + "rshares": "230197953", + "voter": "helen.tan" + }, + { + "rshares": "1481721938896", + "voter": "sean-king" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "proofreading: lessor", + "category": "feminism", + "children": 1, + "created": "2016-08-19T19:52:06", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "feminism" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1532858419010, + "parent_author": "sean-king", + "parent_permlink": "nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky", + "payout": 1.099, + "payout_at": "2016-09-19T19:24:12", + "pending_payout_value": "1.099 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky-20160819t195205251z", + "post_id": 674727, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 10 + }, + "title": "RE: \"Nothing in biology makes sense except in the light of evolution.\" --Theodosius Dobzhansky", + "updated": "2016-08-19T19:52:06", + "url": "/feminism/@sean-king/nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky#@feminism/re-sean-king-nothing-in-biology-makes-sense-except-in-the-light-of-evolution-theodosius-dobzhansky-20160819t195205251z" + }, + { + "active_votes": [ + { + "rshares": "2475557327", + "voter": "boy" + }, + { + "rshares": "3004958392", + "voter": "bue-witness" + }, + { + "rshares": "562914017", + "voter": "bunny" + }, + { + "rshares": "42634234947", + "voter": "bue" + }, + { + "rshares": "1326832061", + "voter": "mini" + }, + { + "rshares": "170845704", + "voter": "moon" + }, + { + "rshares": "497654080", + "voter": "healthcare" + }, + { + "rshares": "758048978", + "voter": "daniel.pan" + }, + { + "rshares": "230367336", + "voter": "helen.tan" + }, + { + "rshares": "7488699966", + "voter": "somedude" + }, + { + "rshares": "1455795590483", + "voter": "sean-king" + }, + { + "rshares": "-3382897005", + "voter": "beanz" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "OMG Sasha Grey\nwhy are you doing this to me Sean ???\n:)", + "category": "celebrity", + "children": 0, + "created": "2016-08-24T22:52:51", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "celebrity" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1511562806286, + "parent_author": "sean-king", + "parent_permlink": "me-cindy-and", + "payout": 1.049, + "payout_at": "2016-09-24T23:35:06", + "pending_payout_value": "1.049 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-me-cindy-and-20160824t225250885z", + "post_id": 736890, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 12 + }, + "title": "RE: Me, Cindy and...?", + "updated": "2016-08-24T22:55:00", + "url": "/celebrity/@sean-king/me-cindy-and#@feminism/re-sean-king-me-cindy-and-20160824t225250885z" + }, + { + "active_votes": [ + { + "rshares": "1398535239934", + "voter": "sean-king" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\"It\u2019s also the reason why poetry is often able to convey a truer understanding of an ideal than prose: The ineffable, transcendental concepts of art and religion defy encapsulation in mere words. \"\nThats the reason why I dont bother explaining myself with mere prose,\nbut instead I use poetry and music, the closest piece of poetry or music I know\nthat conveys what Im trying to convey.", + "category": "bible", + "children": 0, + "created": "2016-08-27T18:45:48", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "bible" + ] }, - { - "post_id": 807303, - "author": "steemwelcome", - "permlink": "help-i-was-unfairly-flagged-i-m-not-a-bot-i-m-a-manual-curator", - "category": "steemit", - "title": "Help I was unfairly flagged, I'm not a \"bot\" I'm a manual curator!", - "body": "As I told already on my [introduction post](https://steemit.com/introduceyourself/@steemwelcome/hello-steemians-i-m-steemwelcome) I AM NOT A BOT, I am a manual curator of new accounts on steemit.\n\nMy journey was just welcoming each verified new user I could MANUALLY. There is nothing wrong about that, but whale @smooth decided to flag me, destroying my reputation and so my ability to greet new steemians. Just look at the messages on my introductory post and you will see how much I was apreciated for this initiative: no one complained.\n\nThis is unfair! Flagging me as if I were a \"bot\" is an insult to the time I took to salute each new steemian I could.\n\nNo one complained about me and only positive reactions from new steemians is what you could read (if my reputation wasn't destroyed by @smooth). So what kind of \"spam\" is the one that makes people happy when they are personaly greeted when they join (and how could this be compared with an \"spambot\", it's my time that was there dedicated for this task). What is the problem if I found time to do this \"repetitive\" task?\n\n@steemwelcome", - "json_metadata": { - "tags": [ - "steemit", - "introduceyourself", - "freedom", - "witness-category" - ], - "users": [ - "smooth", - "steemwelcome" - ], - "links": [ - "https://steemit.com/introduceyourself/@steemwelcome/hello-steemians-i-m-steemwelcome" - ] - }, - "created": "2016-08-31T00:33:33", - "updated": "2016-08-31T01:15:33", - "depth": 0, - "children": 23, - "net_rshares": 1663672556305, - "is_paidout": false, - "payout_at": "2016-10-01T13:33:12", - "payout": 0.999, - "pending_payout_value": "0.999 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.001 HBD", - "replies": [], - "active_votes": [ - { - "voter": "ned", - "rshares": "1289265380237" - }, - { - "voter": "boy", - "rshares": "3099079187" - }, - { - "voter": "bue-witness", - "rshares": "3762318075" - }, - { - "voter": "bunny", - "rshares": "697302029" - }, - { - "voter": "bue", - "rshares": "53977586827" - }, - { - "voter": "mini", - "rshares": "1660857757" - }, - { - "voter": "moon", - "rshares": "213660123" - }, - { - "voter": "healthcare", - "rshares": "622708148" - }, - { - "voter": "daniel.pan", - "rshares": "967168909" - }, - { - "voter": "helen.tan", - "rshares": "288138648" - }, - { - "voter": "ervin-lemark", - "rshares": "13126308422" - }, - { - "voter": "murh", - "rshares": "1431687904" - }, - { - "voter": "lukestokes", - "rshares": "275273168981" - }, - { - "voter": "joseph.kalu", - "rshares": "222257214" - }, - { - "voter": "pinkisland", - "rshares": "17665762711" - }, - { - "voter": "ace108", - "rshares": "1213791485" - }, - { - "voter": "steemwelcome", - "rshares": "61085819" - }, - { - "voter": "fukako", - "rshares": "58685384" - }, - { - "voter": "willio", - "rshares": "65608445" - } + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1398535239934, + "parent_author": "sean-king", + "parent_permlink": "the-bible-isn-t-mainly-history", + "payout": 1.031, + "payout_at": "2016-09-27T18:51:57", + "pending_payout_value": "1.031 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-the-bible-isn-t-mainly-history-20160827t184548731z", + "post_id": 769459, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 1 + }, + "title": "RE: The Bible Isn't (Mainly) History", + "updated": "2016-08-27T18:47:27", + "url": "/bible/@sean-king/the-bible-isn-t-mainly-history#@feminism/re-sean-king-the-bible-isn-t-mainly-history-20160827t184548731z" + }, + { + "active_votes": [ + { + "rshares": "3091167529", + "voter": "boy" + }, + { + "rshares": "3751991188", + "voter": "bue-witness" + }, + { + "rshares": "703090335", + "voter": "bunny" + }, + { + "rshares": "52790740268", + "voter": "bue" + }, + { + "rshares": "1656938054", + "voter": "mini" + }, + { + "rshares": "213491769", + "voter": "moon" + }, + { + "rshares": "621613216", + "voter": "healthcare" + }, + { + "rshares": "923651182", + "voter": "daniel.pan" + }, + { + "rshares": "287854213", + "voter": "helen.tan" + }, + { + "rshares": "7668537780", + "voter": "somedude" + }, + { + "rshares": "1307433718754", + "voter": "sean-king" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Here is a post with a song dedicated to you Sean,\nhttp://steemit.com/science/@feminism/the-symphony-of-science-dedicated-to-sean-king\nyou're really growing on me, thank you for your work.\nI wish I could be as polite as you are with people.", + "category": "photography", + "children": 2, + "created": "2016-08-20T16:45:12", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "links": [ + "http://steemit.com/science/@feminism/the-symphony-of-science-dedicated-to-sean-king" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 19, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/steemit/@steemwelcome/help-i-was-unfairly-flagged-i-m-not-a-bot-i-m-a-manual-curator", - "blacklists": [] + "tags": [ + "photography" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1379142794288, + "parent_author": "sean-king", + "parent_permlink": "paraphilia", + "payout": 1.023, + "payout_at": "2016-09-20T06:12:45", + "pending_payout_value": "1.023 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-paraphilia-20160820t164510821z", + "post_id": 684831, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 11 + }, + "title": "RE: Paraphilia", + "updated": "2016-08-20T16:45:12", + "url": "/photography/@sean-king/paraphilia#@feminism/re-sean-king-paraphilia-20160820t164510821z" + }, + { + "active_votes": [ + { + "rshares": "1396646939582", + "voter": "sean-king" + } + ], + "author": "feminism", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "That picture is mind blowing, to say anything less would be dishonest.", + "category": "photography", + "children": 0, + "created": "2016-08-22T23:44:24", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": { + "tags": [ + "photography" + ] }, - { - "post_id": 777632, - "author": "spinx", - "permlink": "bike-chained-to-a-tree", - "category": "life", - "title": "Bike chained to a tree....", - "body": "\n

\n


\n

 A boy went to war in 1914 and left his bike chained to a tree. He never came home & the family left the bike there as a memorial to the fallen soldier. 

\n", - "json_metadata": { - "tags": [ - "life", - "story" - ], - "image": [ - "http://i67.tinypic.com/sg1gfm.jpg" - ] - }, - "created": "2016-08-28T13:58:00", - "updated": "2016-08-28T22:58:57", - "depth": 0, - "children": 1, - "net_rshares": 1520007920729, - "is_paidout": false, - "payout_at": "2016-09-28T14:08:12", - "payout": 0.992, - "pending_payout_value": "0.992 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "boy", - "rshares": "4335459431" - }, - { - "voter": "bue-witness", - "rshares": "5262854785" - }, - { - "voter": "bunny", - "rshares": "975716806" - }, - { - "voter": "bue", - "rshares": "75169356896" - }, - { - "voter": "mini", - "rshares": "2323555627" - }, - { - "voter": "moon", - "rshares": "299045636" - }, - { - "voter": "steempower", - "rshares": "1288478836630" - }, - { - "voter": "healthcare", - "rshares": "871313105" - }, - { - "voter": "daniel.pan", - "rshares": "1353232348" - }, - { - "voter": "helen.tan", - "rshares": "403253136" - }, - { - "voter": "coar", - "rshares": "1764827120" - }, - { - "voter": "murh", - "rshares": "2501114696" - }, - { - "voter": "alexft", - "rshares": "1289763894" - }, - { - "voter": "pigatto", - "rshares": "2814342601" - }, - { - "voter": "lostnuggett", - "rshares": "1965737119" - }, - { - "voter": "ladypenelope1", - "rshares": "403833324" - }, - { - "voter": "beanz", - "rshares": "4016798395" - }, - { - "voter": "sunshine", - "rshares": "12555413808" - }, - { - "voter": "jphamer1", - "rshares": "10069561477" - }, - { - "voter": "future24", - "rshares": "104709921" - }, - { - "voter": "bledarus", - "rshares": "1880413517" - }, - { - "voter": "thegoldencookie", - "rshares": "71365686" - }, - { - "voter": "solarguy", - "rshares": "5584217100" - }, - { - "voter": "icfiedler", - "rshares": "79783107300" - }, - { - "voter": "trev", - "rshares": "3785284659" - }, - { - "voter": "mandibil", - "rshares": "11682660949" - }, - { - "voter": "norene", - "rshares": "60127610" - }, - { - "voter": "drinkthemilk", - "rshares": "50264719" - }, - { - "voter": "getmyhand", - "rshares": "50259197" - }, - { - "voter": "lookatme", - "rshares": "50254033" - }, - { - "voter": "spinx", - "rshares": "51239204" - } + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1396646939582, + "parent_author": "sean-king", + "parent_permlink": "mystical", + "payout": 1.0, + "payout_at": "2016-09-23T01:34:54", + "pending_payout_value": "1.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-sean-king-mystical-20160822t234424169z", + "post_id": 712384, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Mystical Momma", + "updated": "2016-08-22T23:44:24", + "url": "/photography/@sean-king/mystical#@feminism/re-sean-king-mystical-20160822t234424169z" + }, + { + "active_votes": [ + { + "rshares": "1289265380237", + "voter": "ned" + }, + { + "rshares": "3099079187", + "voter": "boy" + }, + { + "rshares": "3762318075", + "voter": "bue-witness" + }, + { + "rshares": "697302029", + "voter": "bunny" + }, + { + "rshares": "53977586827", + "voter": "bue" + }, + { + "rshares": "1660857757", + "voter": "mini" + }, + { + "rshares": "213660123", + "voter": "moon" + }, + { + "rshares": "622708148", + "voter": "healthcare" + }, + { + "rshares": "967168909", + "voter": "daniel.pan" + }, + { + "rshares": "288138648", + "voter": "helen.tan" + }, + { + "rshares": "13126308422", + "voter": "ervin-lemark" + }, + { + "rshares": "1431687904", + "voter": "murh" + }, + { + "rshares": "275273168981", + "voter": "lukestokes" + }, + { + "rshares": "222257214", + "voter": "joseph.kalu" + }, + { + "rshares": "17665762711", + "voter": "pinkisland" + }, + { + "rshares": "1213791485", + "voter": "ace108" + }, + { + "rshares": "61085819", + "voter": "steemwelcome" + }, + { + "rshares": "58685384", + "voter": "fukako" + }, + { + "rshares": "65608445", + "voter": "willio" + } + ], + "author": "steemwelcome", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "As I told already on my [introduction post](https://steemit.com/introduceyourself/@steemwelcome/hello-steemians-i-m-steemwelcome) I AM NOT A BOT, I am a manual curator of new accounts on steemit.\n\nMy journey was just welcoming each verified new user I could MANUALLY. There is nothing wrong about that, but whale @smooth decided to flag me, destroying my reputation and so my ability to greet new steemians. Just look at the messages on my introductory post and you will see how much I was apreciated for this initiative: no one complained.\n\nThis is unfair! Flagging me as if I were a \"bot\" is an insult to the time I took to salute each new steemian I could.\n\nNo one complained about me and only positive reactions from new steemians is what you could read (if my reputation wasn't destroyed by @smooth). So what kind of \"spam\" is the one that makes people happy when they are personaly greeted when they join (and how could this be compared with an \"spambot\", it's my time that was there dedicated for this task). What is the problem if I found time to do this \"repetitive\" task?\n\n@steemwelcome", + "category": "steemit", + "children": 23, + "created": "2016-08-31T00:33:33", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "links": [ + "https://steemit.com/introduceyourself/@steemwelcome/hello-steemians-i-m-steemwelcome" + ], + "tags": [ + "steemit", + "introduceyourself", + "freedom", + "witness-category" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 31, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "url": "/life/@spinx/bike-chained-to-a-tree", - "blacklists": [] + "users": [ + "smooth", + "steemwelcome" + ] }, - { - "post_id": 773395, - "author": "craigwilliamz", - "permlink": "re-hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast-20160828t023230", - "category": "introduceyourself", - "title": "RE: Hello Steemit - I'd Like to Introduce Myself and a Short History of Becoming a Cooking Enthusiast", - "body": "Welcome to Steemit! If you would like to see statistics of any post on Steemit, you can use Steemd.com. I have made a bookmark for your convenience in accessing Steemd. https://steemit.com/steemd/@craigwilliamz/steemd-statistics-bookmark-for-easy-access-to-steemd", - "json_metadata": {}, - "created": "2016-08-28T02:32:30", - "updated": "2016-08-28T02:32:30", - "depth": 1, - "children": 1, - "net_rshares": 1015475187636, - "is_paidout": false, - "payout_at": "2016-09-28T03:21:15", - "payout": 0.633, - "pending_payout_value": "0.633 HBD", - "author_payout_value": "0.000 HBD", - "curator_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "active_votes": [ - { - "voter": "james212", - "rshares": "1015475187636" - } + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1663672556305, + "payout": 0.999, + "payout_at": "2016-10-01T13:33:12", + "pending_payout_value": "0.999 HBD", + "percent_steem_dollars": 10000, + "permlink": "help-i-was-unfairly-flagged-i-m-not-a-bot-i-m-a-manual-curator", + "post_id": 807303, + "promoted": "0.001 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 19 + }, + "title": "Help I was unfairly flagged, I'm not a \"bot\" I'm a manual curator!", + "updated": "2016-08-31T01:15:33", + "url": "/steemit/@steemwelcome/help-i-was-unfairly-flagged-i-m-not-a-bot-i-m-a-manual-curator" + }, + { + "active_votes": [ + { + "rshares": "4335459431", + "voter": "boy" + }, + { + "rshares": "5262854785", + "voter": "bue-witness" + }, + { + "rshares": "975716806", + "voter": "bunny" + }, + { + "rshares": "75169356896", + "voter": "bue" + }, + { + "rshares": "2323555627", + "voter": "mini" + }, + { + "rshares": "299045636", + "voter": "moon" + }, + { + "rshares": "1288478836630", + "voter": "steempower" + }, + { + "rshares": "871313105", + "voter": "healthcare" + }, + { + "rshares": "1353232348", + "voter": "daniel.pan" + }, + { + "rshares": "403253136", + "voter": "helen.tan" + }, + { + "rshares": "1764827120", + "voter": "coar" + }, + { + "rshares": "2501114696", + "voter": "murh" + }, + { + "rshares": "1289763894", + "voter": "alexft" + }, + { + "rshares": "2814342601", + "voter": "pigatto" + }, + { + "rshares": "1965737119", + "voter": "lostnuggett" + }, + { + "rshares": "403833324", + "voter": "ladypenelope1" + }, + { + "rshares": "4016798395", + "voter": "beanz" + }, + { + "rshares": "12555413808", + "voter": "sunshine" + }, + { + "rshares": "10069561477", + "voter": "jphamer1" + }, + { + "rshares": "104709921", + "voter": "future24" + }, + { + "rshares": "1880413517", + "voter": "bledarus" + }, + { + "rshares": "71365686", + "voter": "thegoldencookie" + }, + { + "rshares": "5584217100", + "voter": "solarguy" + }, + { + "rshares": "79783107300", + "voter": "icfiedler" + }, + { + "rshares": "3785284659", + "voter": "trev" + }, + { + "rshares": "11682660949", + "voter": "mandibil" + }, + { + "rshares": "60127610", + "voter": "norene" + }, + { + "rshares": "50264719", + "voter": "drinkthemilk" + }, + { + "rshares": "50259197", + "voter": "getmyhand" + }, + { + "rshares": "50254033", + "voter": "lookatme" + }, + { + "rshares": "51239204", + "voter": "spinx" + } + ], + "author": "spinx", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "\n

\n


\n

 A boy went to war in 1914 and left his bike chained to a tree. He never came home & the family left the bike there as a memorial to the fallen soldier. 

\n", + "category": "life", + "children": 1, + "created": "2016-08-28T13:58:00", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i67.tinypic.com/sg1gfm.jpg" ], - "author_reputation": 25.0, - "stats": { - "hide": false, - "gray": true, - "total_votes": 1, - "flag_weight": 0.0 - }, - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_steem_dollars": 10000, - "parent_author": "nestorstable", - "parent_permlink": "hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast", - "url": "/introduceyourself/@nestorstable/hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast#@craigwilliamz/re-hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast-20160828t023230", - "blacklists": [] - } - ] \ No newline at end of file + "tags": [ + "life", + "story" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1520007920729, + "payout": 0.992, + "payout_at": "2016-09-28T14:08:12", + "pending_payout_value": "0.992 HBD", + "percent_steem_dollars": 10000, + "permlink": "bike-chained-to-a-tree", + "post_id": 777632, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 31 + }, + "title": "Bike chained to a tree....", + "updated": "2016-08-28T22:58:57", + "url": "/life/@spinx/bike-chained-to-a-tree" + }, + { + "active_votes": [ + { + "rshares": "1015475187636", + "voter": "james212" + } + ], + "author": "craigwilliamz", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Welcome to Steemit! If you would like to see statistics of any post on Steemit, you can use Steemd.com. I have made a bookmark for your convenience in accessing Steemd. https://steemit.com/steemd/@craigwilliamz/steemd-statistics-bookmark-for-easy-access-to-steemd", + "category": "introduceyourself", + "children": 1, + "created": "2016-08-28T02:32:30", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "is_paidout": false, + "json_metadata": {}, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1015475187636, + "parent_author": "nestorstable", + "parent_permlink": "hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast", + "payout": 0.633, + "payout_at": "2016-09-28T03:21:15", + "pending_payout_value": "0.633 HBD", + "percent_steem_dollars": 10000, + "permlink": "re-hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast-20160828t023230", + "post_id": 773395, + "promoted": "0.000 HBD", + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": true, + "hide": false, + "total_votes": 1 + }, + "title": "RE: Hello Steemit - I'd Like to Introduce Myself and a Short History of Becoming a Cooking Enthusiast", + "updated": "2016-08-28T02:32:30", + "url": "/introduceyourself/@nestorstable/hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast#@craigwilliamz/re-hello-steemit-i-d-like-to-introduce-myself-and-a-short-history-of-becoming-a-cooking-enthusiast-20160828t023230" + } +] diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_limit_100.orig.json b/hivemind/tavern/condenser_api_patterns/get_blog_limit_100.orig.json index 8c58e68f..e4345dc3 100644 --- a/hivemind/tavern/condenser_api_patterns/get_blog_limit_100.orig.json +++ b/hivemind/tavern/condenser_api_patterns/get_blog_limit_100.orig.json @@ -1,645 +1,645 @@ [ { "blog": "steemit", - "entry_id": 1, "comment": { - "post_id": 1, - "author": "steemit", - "permlink": "firstpost", - "category": "meta", - "title": "Welcome to Steem!", - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "json_metadata": "{}", - "created": "2016-03-30T18:30:18", - "last_update": "2016-03-30T18:30:18", - "depth": 0, - "children": 36, - "net_rshares": 830053779138, - "last_payout": "2016-08-24T19:59:42", - "cashout_time": "1969-12-31T23:59:59", - "total_payout_value": "0.942 HBD", - "curator_payout_value": "0.756 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 224, "active_votes": [ { - "voter": "dantheman", - "rshares": "375241", "percent": "100", - "reputation": 0 + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" }, { - "voter": "mr11acdee", - "rshares": "886132", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" }, { - "voter": "steemit78", - "rshares": "5100", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" }, { - "voter": "anonymous", - "rshares": "1259167", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" }, { - "voter": "hello", - "rshares": "318519", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "318519", + "voter": "hello" }, { - "voter": "world", - "rshares": "153384", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "153384", + "voter": "world" }, { - "voter": "ned", - "rshares": "-936400", "percent": "-100", - "reputation": 0 + "reputation": 0, + "rshares": "-936400", + "voter": "ned" }, { - "voter": "fufubar1", - "rshares": "59412", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" }, { - "voter": "anonymous1", - "rshares": "14997", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" }, { - "voter": "red", - "rshares": "1441", "percent": "100", - "reputation": 0 + "reputation": 0, + "rshares": "1441", + "voter": "red" }, { - "voter": "liondani", - "rshares": "551390835500", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" }, { - "voter": "roadscape", - "rshares": "82748", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" }, { - "voter": "xeroc", - "rshares": "10772", "percent": "100", - "reputation": 0 + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" }, { - "voter": "markopaasila", - "rshares": "7685088000", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" }, { - "voter": "tshering-tamang", - "rshares": "454510724", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" }, { - "voter": "romangelsi", - "rshares": "681946946", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" }, { - "voter": "dedmatvey", - "rshares": "504895891", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" }, { - "voter": "joelinux", - "rshares": "498863058", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" }, { - "voter": "piranhax", - "rshares": "9590417", "percent": "0", - "reputation": 0 + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" }, { - "voter": "ned-reddit-login", - "rshares": "473258270", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" }, { - "voter": "fernando-sanz", - "rshares": "0", "percent": "3600", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" }, { - "voter": "gekko", - "rshares": "425903066", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" }, { - "voter": "gilang-ramadhan", - "rshares": "381805870", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" }, { - "voter": "kamvreto", - "rshares": "392459059", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" }, { - "voter": "acidyo", - "rshares": "422984262", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" }, { - "voter": "tosch", - "rshares": "47179379651", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" }, { - "voter": "klye", - "rshares": "7831667988", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" }, { - "voter": "coar", - "rshares": "1019950749", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" }, { - "voter": "murh", - "rshares": "1746058458", "percent": "1509", - "reputation": 0 + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" }, { - "voter": "drinkzya", - "rshares": "22639073725", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" }, { - "voter": "hien-tran", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" }, { - "voter": "patrick-g", - "rshares": "742566481", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" }, { - "voter": "ben99", - "rshares": "40624969", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" }, { - "voter": "sunshinecrypto", - "rshares": "1742755097", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" }, { - "voter": "kingtylervvs", - "rshares": "108855472", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" }, { - "voter": "marinabogumil", - "rshares": "485112237", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" }, { - "voter": "decrypt", - "rshares": "917398502", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" }, { - "voter": "senseiteekay", - "rshares": "5067187498", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" }, { - "voter": "r33drum", - "rshares": "5154897955", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" }, { - "voter": "cryptosi", - "rshares": "5033902237", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" }, { - "voter": "condra", - "rshares": "1037079223", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" }, { - "voter": "jearson", - "rshares": "233032838", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" }, { - "voter": "tritium", - "rshares": "240809500", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" }, { - "voter": "allmonitors", - "rshares": "123321995", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" }, { - "voter": "artjedi", - "rshares": "226074637", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" }, { - "voter": "anduweb", - "rshares": "931542394", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" }, { - "voter": "inertia", - "rshares": "2292983350", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" }, { - "voter": "maximkichev", - "rshares": "128561059", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" }, { - "voter": "a9inchcock", - "rshares": "183438273", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" }, { - "voter": "desmonid", - "rshares": "266262926", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" }, { - "voter": "madhatting", - "rshares": "71498008", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" }, { - "voter": "ubg", - "rshares": "23726644841", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" }, { - "voter": "royaltiffany", - "rshares": "3741408303", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" }, { - "voter": "gribgo", - "rshares": "131577259", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" }, { - "voter": "deanliu", - "rshares": "12371398765", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" }, { - "voter": "orm", - "rshares": "28907874049", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" }, { - "voter": "qonq99", - "rshares": "528988007", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" }, { - "voter": "rd7783", - "rshares": "129537329", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" }, { - "voter": "slava", - "rshares": "615020728", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "615020728", + "voter": "slava" }, { - "voter": "flyboyzombie", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" }, { - "voter": "sictransitgloria", - "rshares": "100102503", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" }, { - "voter": "curator", - "rshares": "95219365", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "95219365", + "voter": "curator" }, { - "voter": "dubovoy", - "rshares": "232295871", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" }, { - "voter": "solos", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "solos" }, { - "voter": "creatorgalaxy", - "rshares": "96945805", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" }, { - "voter": "trigonice29", - "rshares": "99813231", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" }, { - "voter": "blysards", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "blysards" }, { - "voter": "uwe69", - "rshares": "3721016208", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" }, { - "voter": "nigmat", - "rshares": "1279854", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" }, { - "voter": "magicmonk", - "rshares": "13974353753", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" }, { - "voter": "satoshifpv", - "rshares": "4968585456", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" }, { - "voter": "naturalista", - "rshares": "1660613178", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" }, { - "voter": "metrox", - "rshares": "10847083143", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" }, { - "voter": "bestmalik", - "rshares": "18340928", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" }, { - "voter": "kolyan31", - "rshares": "59563315", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" }, { - "voter": "romancs", - "rshares": "710989138", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" }, { - "voter": "luke490", - "rshares": "59366614", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" }, { - "voter": "bro66", - "rshares": "58762473", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" }, { - "voter": "future24", - "rshares": "201822591", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "201822591", + "voter": "future24" }, { - "voter": "mythras", - "rshares": "58623688", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" }, { - "voter": "imarealboy777", - "rshares": "56536509", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" }, { - "voter": "matrixdweller", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" }, { - "voter": "smartguylabcoat", - "rshares": "48299362", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" }, { - "voter": "mabiturm", - "rshares": "59157099", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" }, { - "voter": "captainamerica", - "rshares": "48283979", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" }, { - "voter": "edbriv", - "rshares": "54761612", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" }, { - "voter": "rittr", - "rshares": "865125771", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" }, { - "voter": "jelloducky", - "rshares": "92614447", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" }, { - "voter": "tcstix", - "rshares": "52740989", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" }, { - "voter": "friedwater", - "rshares": "49467477", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" }, { - "voter": "denisdiaz", - "rshares": "57366185", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" }, { - "voter": "loganarchy", - "rshares": "132070449", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" }, { - "voter": "love-spirit-nerd", - "rshares": "48811442", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" }, { - "voter": "dikanevn", - "rshares": "51549585", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" }, { - "voter": "zelious", - "rshares": "54017869", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" }, { - "voter": "freebornangel", - "rshares": "50129944", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" }, { - "voter": "f1111111", - "rshares": "53196086", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" }, { - "voter": "anomaly", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "anomaly" }, { - "voter": "jack8831", - "rshares": "52394017140", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" }, { - "voter": "buckland", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "buckland" }, { - "voter": "goldmatters", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" } ], + "author": "steemit", "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, "parent_author": "", "parent_permlink": "meta", - "url": "/meta/@steemit/firstpost", + "pending_payout_value": "0.000 HBD", + "percent_steem_dollars": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], "root_title": "Welcome to Steem!", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_hbd": 10000 + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" }, + "entry_id": 0, "reblogged_on": "1970-01-01T00:00:00" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_limit_100.pat.json b/hivemind/tavern/condenser_api_patterns/get_blog_limit_100.pat.json index 8c58e68f..9b916552 100644 --- a/hivemind/tavern/condenser_api_patterns/get_blog_limit_100.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_blog_limit_100.pat.json @@ -1,645 +1,645 @@ [ { "blog": "steemit", - "entry_id": 1, "comment": { - "post_id": 1, - "author": "steemit", - "permlink": "firstpost", - "category": "meta", - "title": "Welcome to Steem!", - "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", - "json_metadata": "{}", - "created": "2016-03-30T18:30:18", - "last_update": "2016-03-30T18:30:18", - "depth": 0, - "children": 36, - "net_rshares": 830053779138, - "last_payout": "2016-08-24T19:59:42", - "cashout_time": "1969-12-31T23:59:59", - "total_payout_value": "0.942 HBD", - "curator_payout_value": "0.756 HBD", - "pending_payout_value": "0.000 HBD", - "promoted": "0.000 HBD", - "replies": [], - "body_length": 224, "active_votes": [ { - "voter": "dantheman", - "rshares": "375241", "percent": "100", - "reputation": 0 + "reputation": 0, + "rshares": "375241", + "voter": "dantheman" }, { - "voter": "mr11acdee", - "rshares": "886132", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "886132", + "voter": "mr11acdee" }, { - "voter": "steemit78", - "rshares": "5100", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5100", + "voter": "steemit78" }, { - "voter": "anonymous", - "rshares": "1259167", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1259167", + "voter": "anonymous" }, { - "voter": "hello", - "rshares": "318519", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "318519", + "voter": "hello" }, { - "voter": "world", - "rshares": "153384", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "153384", + "voter": "world" }, { - "voter": "ned", - "rshares": "-936400", "percent": "-100", - "reputation": 0 + "reputation": 0, + "rshares": "-936400", + "voter": "ned" }, { - "voter": "fufubar1", - "rshares": "59412", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "59412", + "voter": "fufubar1" }, { - "voter": "anonymous1", - "rshares": "14997", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "14997", + "voter": "anonymous1" }, { - "voter": "red", - "rshares": "1441", "percent": "100", - "reputation": 0 + "reputation": 0, + "rshares": "1441", + "voter": "red" }, { - "voter": "liondani", - "rshares": "551390835500", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "551390835500", + "voter": "liondani" }, { - "voter": "roadscape", - "rshares": "82748", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "82748", + "voter": "roadscape" }, { - "voter": "xeroc", - "rshares": "10772", "percent": "100", - "reputation": 0 + "reputation": 0, + "rshares": "10772", + "voter": "xeroc" }, { - "voter": "markopaasila", - "rshares": "7685088000", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7685088000", + "voter": "markopaasila" }, { - "voter": "tshering-tamang", - "rshares": "454510724", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "454510724", + "voter": "tshering-tamang" }, { - "voter": "romangelsi", - "rshares": "681946946", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "681946946", + "voter": "romangelsi" }, { - "voter": "dedmatvey", - "rshares": "504895891", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "504895891", + "voter": "dedmatvey" }, { - "voter": "joelinux", - "rshares": "498863058", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "498863058", + "voter": "joelinux" }, { - "voter": "piranhax", - "rshares": "9590417", "percent": "0", - "reputation": 0 + "reputation": 0, + "rshares": "9590417", + "voter": "piranhax" }, { - "voter": "ned-reddit-login", - "rshares": "473258270", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "473258270", + "voter": "ned-reddit-login" }, { - "voter": "fernando-sanz", - "rshares": "0", "percent": "3600", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "fernando-sanz" }, { - "voter": "gekko", - "rshares": "425903066", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "425903066", + "voter": "gekko" }, { - "voter": "gilang-ramadhan", - "rshares": "381805870", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "381805870", + "voter": "gilang-ramadhan" }, { - "voter": "kamvreto", - "rshares": "392459059", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "392459059", + "voter": "kamvreto" }, { - "voter": "acidyo", - "rshares": "422984262", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "422984262", + "voter": "acidyo" }, { - "voter": "tosch", - "rshares": "47179379651", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "47179379651", + "voter": "tosch" }, { - "voter": "klye", - "rshares": "7831667988", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "7831667988", + "voter": "klye" }, { - "voter": "coar", - "rshares": "1019950749", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1019950749", + "voter": "coar" }, { - "voter": "murh", - "rshares": "1746058458", "percent": "1509", - "reputation": 0 + "reputation": 0, + "rshares": "1746058458", + "voter": "murh" }, { - "voter": "drinkzya", - "rshares": "22639073725", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "22639073725", + "voter": "drinkzya" }, { - "voter": "hien-tran", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "hien-tran" }, { - "voter": "patrick-g", - "rshares": "742566481", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "742566481", + "voter": "patrick-g" }, { - "voter": "ben99", - "rshares": "40624969", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "40624969", + "voter": "ben99" }, { - "voter": "sunshinecrypto", - "rshares": "1742755097", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1742755097", + "voter": "sunshinecrypto" }, { - "voter": "kingtylervvs", - "rshares": "108855472", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "108855472", + "voter": "kingtylervvs" }, { - "voter": "marinabogumil", - "rshares": "485112237", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "485112237", + "voter": "marinabogumil" }, { - "voter": "decrypt", - "rshares": "917398502", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "917398502", + "voter": "decrypt" }, { - "voter": "senseiteekay", - "rshares": "5067187498", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5067187498", + "voter": "senseiteekay" }, { - "voter": "r33drum", - "rshares": "5154897955", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5154897955", + "voter": "r33drum" }, { - "voter": "cryptosi", - "rshares": "5033902237", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "5033902237", + "voter": "cryptosi" }, { - "voter": "condra", - "rshares": "1037079223", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1037079223", + "voter": "condra" }, { - "voter": "jearson", - "rshares": "233032838", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "233032838", + "voter": "jearson" }, { - "voter": "tritium", - "rshares": "240809500", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "240809500", + "voter": "tritium" }, { - "voter": "allmonitors", - "rshares": "123321995", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "123321995", + "voter": "allmonitors" }, { - "voter": "artjedi", - "rshares": "226074637", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "226074637", + "voter": "artjedi" }, { - "voter": "anduweb", - "rshares": "931542394", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "931542394", + "voter": "anduweb" }, { - "voter": "inertia", - "rshares": "2292983350", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "2292983350", + "voter": "inertia" }, { - "voter": "maximkichev", - "rshares": "128561059", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "128561059", + "voter": "maximkichev" }, { - "voter": "a9inchcock", - "rshares": "183438273", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "183438273", + "voter": "a9inchcock" }, { - "voter": "desmonid", - "rshares": "266262926", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "266262926", + "voter": "desmonid" }, { - "voter": "madhatting", - "rshares": "71498008", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "71498008", + "voter": "madhatting" }, { - "voter": "ubg", - "rshares": "23726644841", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "23726644841", + "voter": "ubg" }, { - "voter": "royaltiffany", - "rshares": "3741408303", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3741408303", + "voter": "royaltiffany" }, { - "voter": "gribgo", - "rshares": "131577259", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "131577259", + "voter": "gribgo" }, { - "voter": "deanliu", - "rshares": "12371398765", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "12371398765", + "voter": "deanliu" }, { - "voter": "orm", - "rshares": "28907874049", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "28907874049", + "voter": "orm" }, { - "voter": "qonq99", - "rshares": "528988007", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "528988007", + "voter": "qonq99" }, { - "voter": "rd7783", - "rshares": "129537329", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "129537329", + "voter": "rd7783" }, { - "voter": "slava", - "rshares": "615020728", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "615020728", + "voter": "slava" }, { - "voter": "flyboyzombie", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "flyboyzombie" }, { - "voter": "sictransitgloria", - "rshares": "100102503", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "100102503", + "voter": "sictransitgloria" }, { - "voter": "curator", - "rshares": "95219365", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "95219365", + "voter": "curator" }, { - "voter": "dubovoy", - "rshares": "232295871", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "232295871", + "voter": "dubovoy" }, { - "voter": "solos", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "solos" }, { - "voter": "creatorgalaxy", - "rshares": "96945805", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "96945805", + "voter": "creatorgalaxy" }, { - "voter": "trigonice29", - "rshares": "99813231", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "99813231", + "voter": "trigonice29" }, { - "voter": "blysards", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "blysards" }, { - "voter": "uwe69", - "rshares": "3721016208", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "3721016208", + "voter": "uwe69" }, { - "voter": "nigmat", - "rshares": "1279854", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1279854", + "voter": "nigmat" }, { - "voter": "magicmonk", - "rshares": "13974353753", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "13974353753", + "voter": "magicmonk" }, { - "voter": "satoshifpv", - "rshares": "4968585456", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "4968585456", + "voter": "satoshifpv" }, { - "voter": "naturalista", - "rshares": "1660613178", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "1660613178", + "voter": "naturalista" }, { - "voter": "metrox", - "rshares": "10847083143", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "10847083143", + "voter": "metrox" }, { - "voter": "bestmalik", - "rshares": "18340928", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "18340928", + "voter": "bestmalik" }, { - "voter": "kolyan31", - "rshares": "59563315", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "59563315", + "voter": "kolyan31" }, { - "voter": "romancs", - "rshares": "710989138", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "710989138", + "voter": "romancs" }, { - "voter": "luke490", - "rshares": "59366614", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "59366614", + "voter": "luke490" }, { - "voter": "bro66", - "rshares": "58762473", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "58762473", + "voter": "bro66" }, { - "voter": "future24", - "rshares": "201822591", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "201822591", + "voter": "future24" }, { - "voter": "mythras", - "rshares": "58623688", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "58623688", + "voter": "mythras" }, { - "voter": "imarealboy777", - "rshares": "56536509", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "56536509", + "voter": "imarealboy777" }, { - "voter": "matrixdweller", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "matrixdweller" }, { - "voter": "smartguylabcoat", - "rshares": "48299362", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "48299362", + "voter": "smartguylabcoat" }, { - "voter": "mabiturm", - "rshares": "59157099", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "59157099", + "voter": "mabiturm" }, { - "voter": "captainamerica", - "rshares": "48283979", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "48283979", + "voter": "captainamerica" }, { - "voter": "edbriv", - "rshares": "54761612", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54761612", + "voter": "edbriv" }, { - "voter": "rittr", - "rshares": "865125771", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "865125771", + "voter": "rittr" }, { - "voter": "jelloducky", - "rshares": "92614447", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "92614447", + "voter": "jelloducky" }, { - "voter": "tcstix", - "rshares": "52740989", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52740989", + "voter": "tcstix" }, { - "voter": "friedwater", - "rshares": "49467477", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "49467477", + "voter": "friedwater" }, { - "voter": "denisdiaz", - "rshares": "57366185", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "57366185", + "voter": "denisdiaz" }, { - "voter": "loganarchy", - "rshares": "132070449", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "132070449", + "voter": "loganarchy" }, { - "voter": "love-spirit-nerd", - "rshares": "48811442", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "48811442", + "voter": "love-spirit-nerd" }, { - "voter": "dikanevn", - "rshares": "51549585", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "51549585", + "voter": "dikanevn" }, { - "voter": "zelious", - "rshares": "54017869", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "54017869", + "voter": "zelious" }, { - "voter": "freebornangel", - "rshares": "50129944", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "50129944", + "voter": "freebornangel" }, { - "voter": "f1111111", - "rshares": "53196086", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "53196086", + "voter": "f1111111" }, { - "voter": "anomaly", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "anomaly" }, { - "voter": "jack8831", - "rshares": "52394017140", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "52394017140", + "voter": "jack8831" }, { - "voter": "buckland", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "buckland" }, { - "voter": "goldmatters", - "rshares": "0", "percent": "10000", - "reputation": 0 + "reputation": 0, + "rshares": "0", + "voter": "goldmatters" } ], + "author": "steemit", "author_reputation": 0, + "beneficiaries": [], + "body": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.", + "body_length": 224, + "cashout_time": "1969-12-31T23:59:59", + "category": "meta", + "children": 36, + "created": "2016-03-30T18:30:18", + "curator_payout_value": "0.756 HBD", + "depth": 0, + "json_metadata": "{}", + "last_payout": "2016-08-24T19:59:42", + "last_update": "2016-03-30T18:30:18", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 830053779138, "parent_author": "", "parent_permlink": "meta", - "url": "/meta/@steemit/firstpost", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "firstpost", + "post_id": 1, + "promoted": "0.000 HBD", + "replies": [], "root_title": "Welcome to Steem!", - "beneficiaries": [], - "max_accepted_payout": "1000000.000 HBD", - "percent_hbd": 10000 + "title": "Welcome to Steem!", + "total_payout_value": "0.942 HBD", + "url": "/meta/@steemit/firstpost" }, + "entry_id": 0, "reblogged_on": "1970-01-01T00:00:00" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.pat.json index 8c58bda6..8eeff82e 100644 --- a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout_limit_100.pat.json @@ -81,7 +81,7 @@ "created": "2016-09-12T11:49:18", "curator_payout_value": "0.000 HBD", "depth": 1, - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/i.imgur.com\\/OG66bhF.jpg\"]}", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http://i.imgur.com/OG66bhF.jpg\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-12T13:26:51", "max_accepted_payout": "1000000.000 HBD", @@ -137,6 +137,82 @@ "total_payout_value": "0.000 HBD", "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z" }, + { + "active_votes": [ + { + "percent": "5000", + "reputation": 0, + "rshares": "77095774656", + "voter": "derekareith" + } + ], + "author": "bitcoiner", + "author_reputation": 0, + "beneficiaries": [], + "body": "Oh haha. Yes, I haven't signed a block for more than 24 hours!", + "body_length": 62, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 2, + "created": "2016-09-13T20:29:33", + "curator_payout_value": "0.000 HBD", + "depth": 4, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-13T20:29:33", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 77095774656, + "parent_author": "derekareith", + "parent_permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", + "post_id": 943539, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z" + }, + { + "active_votes": [ + { + "percent": "5000", + "reputation": 0, + "rshares": "77095774656", + "voter": "derekareith" + } + ], + "author": "bitcoiner", + "author_reputation": 0, + "beneficiaries": [], + "body": "All images get cached by img1.steemit.com.\nBut this will work with users of third party apps that view posts that don't use that caching server, like eSteem.", + "body_length": 157, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 5, + "created": "2016-09-13T20:23:15", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-13T20:23:15", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 77095774656, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z", + "post_id": 943502, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-page-view-counter-test-post-20160913t202316437z" + }, { "active_votes": [ { @@ -219,7 +295,7 @@ "created": "2016-09-15T15:53:06", "curator_payout_value": "0.000 HBD", "depth": 2, - "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@achim86\\/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung\"]}", + "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https://steemit.com/steemit/@achim86/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-15T17:05:36", "max_accepted_payout": "1000000.000 HBD", @@ -237,6 +313,44 @@ "total_payout_value": "0.000 HBD", "url": "/test/@achim86/test#@achim86/re-oaldamster-re-achim86-test-20160915t155303746z" }, + { + "active_votes": [ + { + "percent": "3000", + "reputation": 0, + "rshares": "46263835410", + "voter": "derekareith" + } + ], + "author": "freebornangel", + "author_reputation": 0, + "beneficiaries": [], + "body": "Http://minds.com/ottman has a pretty good counter set up.", + "body_length": 57, + "cashout_time": "2016-10-15T00:25:18", + "category": "test", + "children": 2, + "created": "2016-09-14T01:54:00", + "curator_payout_value": "0.000 HBD", + "depth": 1, + "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"Http://minds.com/ottman\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-14T01:57:12", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 46263835410, + "parent_author": "derekareith", + "parent_permlink": "page-view-counter-test-post", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z", + "post_id": 945943, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "Page View Counter [Test Post]", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-page-view-counter-test-post-20160914t015352577z" + }, { "active_votes": [ { @@ -364,7 +478,7 @@ "created": "2016-09-13T22:25:12", "curator_payout_value": "0.000 HBD", "depth": 5, - "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemd.com\\/test\\/@derekareith\\/page-view-counter-test-post\"]}", + "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https://steemd.com/test/@derekareith/page-view-counter-test-post\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-13T22:25:12", "max_accepted_payout": "1000000.000 HBD", @@ -544,44 +658,6 @@ "total_payout_value": "0.000 HBD", "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z" }, - { - "active_votes": [ - { - "percent": "5000", - "reputation": 0, - "rshares": "77095774656", - "voter": "derekareith" - } - ], - "author": "bitcoiner", - "author_reputation": 0, - "beneficiaries": [], - "body": "Oh haha. Yes, I haven't signed a block for more than 24 hours!", - "body_length": 62, - "cashout_time": "2016-10-15T00:25:18", - "category": "test", - "children": 2, - "created": "2016-09-13T20:29:33", - "curator_payout_value": "0.000 HBD", - "depth": 4, - "json_metadata": "{\"tags\":[\"test\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-13T20:29:33", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 77095774656, - "parent_author": "derekareith", - "parent_permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z", - "post_id": 943539, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Page View Counter [Test Post]", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z" - }, { "active_votes": [], "author": "earnest", @@ -1032,7 +1108,7 @@ "created": "2016-09-11T12:21:27", "curator_payout_value": "0.000 HBD", "depth": 3, - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/i64.tinypic.com\\/1zn8p6d.jpg\"]}", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https://img1.steemit.com/0x0/http://i64.tinypic.com/1zn8p6d.jpg\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-11T12:21:27", "max_accepted_payout": "1000000.000 HBD", @@ -1063,7 +1139,7 @@ "created": "2016-09-11T09:16:27", "curator_payout_value": "0.000 HBD", "depth": 3, - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/y43FolFlY78\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=y43FolFlY78\"]}", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https://img.youtube.com/vi/y43FolFlY78/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=y43FolFlY78\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-11T09:16:27", "max_accepted_payout": "1000000.000 HBD", @@ -1577,6 +1653,44 @@ "total_payout_value": "0.000 HBD", "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z" }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "14714651186", + "voter": "hellokitty" + } + ], + "author": "trogdor", + "author_reputation": 0, + "beneficiaries": [], + "body": "Looks like I caught the laonie swarm and two chinese bots. No wang yet, and no 800 spam votes yet...", + "body_length": 100, + "cashout_time": "2016-09-17T02:19:27", + "category": "test", + "children": 8, + "created": "2016-08-17T02:09:30", + "curator_payout_value": "0.000 HBD", + "depth": 2, + "json_metadata": "{\"tags\":[\"test\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-08-17T02:09:30", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 14714651186, + "parent_author": "royaltiffany", + "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", + "post_id": 635716, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "this is a test to see if i have been targeted by a spam bot army", + "title": "", + "total_payout_value": "0.000 HBD", + "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z" + }, { "active_votes": [ { @@ -1759,7 +1873,7 @@ "created": "2016-09-13T06:35:18", "curator_payout_value": "0.000 HBD", "depth": 2, - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-13T06:35:18", "max_accepted_payout": "1000000.000 HBD", @@ -2838,44 +2952,6 @@ "total_payout_value": "0.000 HBD", "url": "/test/@steembaby/test-my-posts-disappeared#@steembaby/re-ibringawareness-re-steembaby-test-my-posts-disappeared-20160825t150259870z" }, - { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "14714651186", - "voter": "hellokitty" - } - ], - "author": "trogdor", - "author_reputation": 0, - "beneficiaries": [], - "body": "Looks like I caught the laonie swarm and two chinese bots. No wang yet, and no 800 spam votes yet...", - "body_length": 100, - "cashout_time": "2016-09-17T02:19:27", - "category": "test", - "children": 8, - "created": "2016-08-17T02:09:30", - "curator_payout_value": "0.000 HBD", - "depth": 2, - "json_metadata": "{\"tags\":[\"test\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-08-17T02:09:30", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 14714651186, - "parent_author": "royaltiffany", - "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z", - "post_id": 635716, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "this is a test to see if i have been targeted by a spam bot army", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z" - }, { "active_votes": [], "author": "rawnetics", @@ -3000,82 +3076,6 @@ "total_payout_value": "0.000 HBD", "url": "/test/@derekareith/page-view-counter-test-post#@steemitqa/re-derekareith-page-view-counter-test-post-20160914t021242459z" }, - { - "active_votes": [ - { - "percent": "3000", - "reputation": 0, - "rshares": "46263835410", - "voter": "derekareith" - } - ], - "author": "freebornangel", - "author_reputation": 0, - "beneficiaries": [], - "body": "Http://minds.com/ottman has a pretty good counter set up.", - "body_length": 57, - "cashout_time": "2016-10-15T00:25:18", - "category": "test", - "children": 2, - "created": "2016-09-14T01:54:00", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"Http:\\/\\/minds.com\\/ottman\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-14T01:57:12", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 46263835410, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z", - "post_id": 945943, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Page View Counter [Test Post]", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-page-view-counter-test-post-20160914t015352577z" - }, - { - "active_votes": [ - { - "percent": "5000", - "reputation": 0, - "rshares": "77095774656", - "voter": "derekareith" - } - ], - "author": "bitcoiner", - "author_reputation": 0, - "beneficiaries": [], - "body": "All images get cached by img1.steemit.com.\nBut this will work with users of third party apps that view posts that don't use that caching server, like eSteem.", - "body_length": 157, - "cashout_time": "2016-10-15T00:25:18", - "category": "test", - "children": 5, - "created": "2016-09-13T20:23:15", - "curator_payout_value": "0.000 HBD", - "depth": 1, - "json_metadata": "{\"tags\":[\"test\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-13T20:23:15", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 77095774656, - "parent_author": "derekareith", - "parent_permlink": "page-view-counter-test-post", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z", - "post_id": 943502, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "Page View Counter [Test Post]", - "title": "", - "total_payout_value": "0.000 HBD", - "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-page-view-counter-test-post-20160913t202316437z" - }, { "active_votes": [ { @@ -3096,7 +3096,7 @@ "created": "2016-09-13T20:22:51", "curator_payout_value": "0.000 HBD", "depth": 1, - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/www.e-zeeinternet.com\\/count.php?page=1156943&style=blushdw&nbdigits=5\"],\"links\":[\"http:\\/\\/www.e-zeeinternet.com\\/\"]}", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http://www.e-zeeinternet.com/count.php?page=1156943&style=blushdw&nbdigits=5\"],\"links\":[\"http://www.e-zeeinternet.com/\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-13T20:22:51", "max_accepted_payout": "1000000.000 HBD", @@ -3134,7 +3134,7 @@ "created": "2016-09-13T20:19:51", "curator_payout_value": "0.000 HBD", "depth": 1, - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/simplehitcounter.com\\/hit.php?uid=2165971&f=16777215&b=0\"],\"links\":[\"http:\\/\\/www.marcleaningservices.com\"]}", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http://simplehitcounter.com/hit.php?uid=2165971&f=16777215&b=0\"],\"links\":[\"http://www.marcleaningservices.com\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-13T20:20:15", "max_accepted_payout": "1000000.000 HBD", @@ -3320,7 +3320,7 @@ "created": "2016-09-13T06:31:00", "curator_payout_value": "0.000 HBD", "depth": 1, - "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", + "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}", "last_payout": "1969-12-31T23:59:59", "last_update": "2016-09-13T06:33:45", "max_accepted_payout": "1000000.000 HBD", diff --git a/hivemind/tavern/condenser_api_patterns/get_multiple_accounts.orig.json b/hivemind/tavern/condenser_api_patterns/get_multiple_accounts.orig.json index 843c3add..3a5f5180 100644 --- a/hivemind/tavern/condenser_api_patterns/get_multiple_accounts.orig.json +++ b/hivemind/tavern/condenser_api_patterns/get_multiple_accounts.orig.json @@ -1,210 +1,211 @@ [ { - "id": 28, - "name": "steemit", - "owner": { - "weight_threshold": 1, + "active": { "account_auths": [], "key_auths": [ [ - "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", 1 ] - ] + ], + "weight_threshold": 1 }, - "active": { - "weight_threshold": 1, + "balance": "4778859.891 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:21", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838821 + }, + "guest_bloggers": [], + "id": 28, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-15T13:56:18", + "last_owner_update": "2016-07-15T13:56:18", + "last_post": "2016-03-30T18:30:18", + "last_root_post": "2016-03-30T18:30:18", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + "mined": true, + "name": "steemit", + "next_vesting_withdrawal": "2016-09-19T00:37:21", + "other_history": [], + "owner": { "account_auths": [], "key_auths": [ [ - "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", 1 ] - ] + ], + "weight_threshold": 1 }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 1, + "post_history": [], "posting": { - "weight_threshold": 1, "account_auths": [], "key_auths": [ [ "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", 1 ] - ] + ], + "weight_threshold": 1 }, - "memo_key": "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", - "json_metadata": "", "posting_json_metadata": "", + "posting_rewards": 3548, + "proxied_vsf_votes": [ + "23077504682", + 0, + 0, + 0 + ], "proxy": "", - "last_owner_update": "2016-07-15T13:56:18", - "last_account_update": "2016-07-15T13:56:18", - "created": "2016-03-24T17:00:21", - "mined": true, + "received_vesting_shares": "0.000000 VESTS", "recovery_account": "steem", - "last_account_recovery": "1970-01-01T00:00:00", + "reputation": "12944616889", "reset_account": "null", - "comment_count": 0, - "lifetime_vote_count": 0, - "post_count": 1, - "can_vote": true, - "voting_manabar": { - "current_mana": 10000, - "last_update_time": 1458838821 - }, - "downvote_manabar": { - "current_mana": 0, - "last_update_time": 1458838821 - }, - "voting_power": 10000, - "balance": "4778859.891 HIVE", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", "savings_balance": "0.000 HIVE", - "sbd_balance": "70337.438 HBD", - "sbd_seconds": "8923940509188", - "sbd_seconds_last_update": "2016-09-14T11:25:21", - "sbd_last_interest_payment": "2016-09-12T19:16:48", "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_sbd_seconds": "0", "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", - "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_withdraw_requests": 0, - "reward_sbd_balance": "0.000 HBD", - "reward_steem_balance": "0.000 HIVE", - "reward_vesting_balance": "0.000000 VESTS", - "reward_vesting_steem": "0.000 HIVE", - "vesting_shares": "225671901920.188893 VESTS", - "delegated_vesting_shares": "0.000000 VESTS", - "received_vesting_shares": "0.000000 VESTS", - "vesting_withdraw_rate": "2479910908.999260 VESTS", - "next_vesting_withdrawal": "2016-09-19T00:37:21", - "withdrawn": "32238841816990380", + "sbd_balance": "70337.438 HBD", + "sbd_last_interest_payment": "2016-09-12T19:16:48", + "sbd_seconds": "8923940509188", + "sbd_seconds_last_update": "2016-09-14T11:25:21", + "tags_usage": [], "to_withdraw": "257910734535923078", - "withdraw_routes": 0, - "curation_rewards": 0, - "posting_rewards": 3548, - "proxied_vsf_votes": [ - "23077504682", - 0, - 0, - 0 - ], - "witnesses_voted_for": 0, - "last_post": "2016-03-30T18:30:18", - "last_root_post": "2016-03-30T18:30:18", - "last_vote_time": "1970-01-01T00:00:00", - "post_bandwidth": 0, - "pending_claimed_accounts": 0, - "vesting_balance": "0.000 HIVE", - "reputation": "12944616889", "transfer_history": [], - "market_history": [], - "post_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "225671901920.188893 VESTS", + "vesting_withdraw_rate": "2479910908.999260 VESTS", "vote_history": [], - "other_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838821 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": "32238841816990380", "witness_votes": [], - "tags_usage": [], - "guest_bloggers": [] + "witnesses_voted_for": 0 }, { - "id": 17540, - "name": "biophil", - "owner": { - "weight_threshold": 1, + "active": { "account_auths": [], "key_auths": [ [ - "STM5mkaXCu5DT6XsaST1XFyyF842K54GxUAMUVm9wcm7HerBesz3i", + "STM5hB5S4MFqdEnBURe7L62HzL6FWnvy9Pb1R1UcPwCuGnUsfKzFc", 1 ] - ] + ], + "weight_threshold": 1 }, - "active": { - "weight_threshold": 1, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-07-12T14:47:00", + "curation_rewards": 20394, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1468334820 + }, + "guest_bloggers": [], + "id": 17540, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-15T05:11:21", + "last_owner_update": "2016-07-15T05:11:21", + "last_post": "2016-09-15T15:07:18", + "last_root_post": "2016-09-14T16:30:24", + "last_vote_time": "2016-09-15T16:00:45", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5zmYzafDpVkx7FCrxDAMLVqjyKX2ykDNUmtwDLvLtExXWvkovp", + "mined": false, + "name": "biophil", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { "account_auths": [], "key_auths": [ [ - "STM5hB5S4MFqdEnBURe7L62HzL6FWnvy9Pb1R1UcPwCuGnUsfKzFc", + "STM5mkaXCu5DT6XsaST1XFyyF842K54GxUAMUVm9wcm7HerBesz3i", 1 ] - ] + ], + "weight_threshold": 1 }, + "pending_claimed_accounts": 0, + "post_bandwidth": 12171, + "post_count": 752, + "post_history": [], "posting": { - "weight_threshold": 1, "account_auths": [], "key_auths": [ [ "STM52yaFZPJQMx5wWRZCYgHd69hEE4rkqx7qpq45NyY4Za6w3Jong", 1 ] - ] + ], + "weight_threshold": 1 }, - "memo_key": "STM5zmYzafDpVkx7FCrxDAMLVqjyKX2ykDNUmtwDLvLtExXWvkovp", - "json_metadata": "", "posting_json_metadata": "", + "posting_rewards": 3729894, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], "proxy": "", - "last_owner_update": "2016-07-15T05:11:21", - "last_account_update": "2016-07-15T05:11:21", - "created": "2016-07-12T14:47:00", - "mined": false, + "received_vesting_shares": "0.000000 VESTS", "recovery_account": "steem", - "last_account_recovery": "1970-01-01T00:00:00", + "reputation": "10077167197115", "reset_account": "null", - "comment_count": 0, - "lifetime_vote_count": 0, - "post_count": 752, - "can_vote": true, - "voting_manabar": { - "current_mana": 9475, - "last_update_time": 1473955245 - }, - "downvote_manabar": { - "current_mana": 0, - "last_update_time": 1468334820 - }, - "voting_power": 9475, - "balance": "0.000 HIVE", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", "savings_balance": "0.000 HIVE", - "sbd_balance": "902.828 HBD", - "sbd_seconds": "131701413987", - "sbd_seconds_last_update": "2016-09-15T19:28:54", - "sbd_last_interest_payment": "2016-09-13T12:08:48", "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_sbd_seconds": "0", "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", - "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_withdraw_requests": 0, - "reward_sbd_balance": "0.000 HBD", - "reward_steem_balance": "0.000 HIVE", - "reward_vesting_balance": "0.000000 VESTS", - "reward_vesting_steem": "0.000 HIVE", - "vesting_shares": "8128612.587095 VESTS", - "delegated_vesting_shares": "0.000000 VESTS", - "received_vesting_shares": "0.000000 VESTS", - "vesting_withdraw_rate": "0.000000 VESTS", - "next_vesting_withdrawal": "1969-12-31T23:59:59", - "withdrawn": 0, + "sbd_balance": "902.828 HBD", + "sbd_last_interest_payment": "2016-09-13T12:08:48", + "sbd_seconds": "131701413987", + "sbd_seconds_last_update": "2016-09-15T19:28:54", + "tags_usage": [], "to_withdraw": 0, - "withdraw_routes": 0, - "curation_rewards": 20394, - "posting_rewards": 3729894, - "proxied_vsf_votes": [ - 0, - 0, - 0, - 0 - ], - "witnesses_voted_for": 11, - "last_post": "2016-09-15T15:07:18", - "last_root_post": "2016-09-14T16:30:24", - "last_vote_time": "2016-09-15T16:00:45", - "post_bandwidth": 12171, - "pending_claimed_accounts": 0, - "vesting_balance": "0.000 HIVE", - "reputation": "10077167197115", "transfer_history": [], - "market_history": [], - "post_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "8128612.587095 VESTS", + "vesting_withdraw_rate": "0.000000 VESTS", "vote_history": [], - "other_history": [], + "voting_manabar": { + "current_mana": 9475, + "last_update_time": 1473955245 + }, + "voting_power": 9475, + "withdraw_routes": 0, + "withdrawn": 0, "witness_votes": [ "abit", "anyx", @@ -218,112 +219,111 @@ "steemed", "steve-walschot" ], - "tags_usage": [], - "guest_bloggers": [] + "witnesses_voted_for": 11 }, { - "id": 6566, - "name": "test", - "owner": { - "weight_threshold": 1, + "active": { "account_auths": [], "key_auths": [ [ - "STM6L7mdcoi371ddt2z5hDfRCHXjcLRBz3H8GYKWBgo5T8kiaqWKy", + "STM7iT2pWdfDqjX12hhQbjKveALEuWPss1wvrKVWDgm6Ud2ZTjoE4", 1 ] - ] + ], + "weight_threshold": 1 }, - "active": { - "weight_threshold": 1, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-04-28T14:35:57", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1461854157 + }, + "guest_bloggers": [], + "id": 6566, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7dz2kPEpL5B3AajPFnb3M3uJwiQ4sdzz6hTgwD8RRm7keT5Bwm", + "mined": false, + "name": "test", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { "account_auths": [], "key_auths": [ [ - "STM7iT2pWdfDqjX12hhQbjKveALEuWPss1wvrKVWDgm6Ud2ZTjoE4", + "STM6L7mdcoi371ddt2z5hDfRCHXjcLRBz3H8GYKWBgo5T8kiaqWKy", 1 ] - ] + ], + "weight_threshold": 1 }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], "posting": { - "weight_threshold": 1, "account_auths": [], "key_auths": [ [ "STM5PnVARAgGPTf5PqRnumGUyMJCfV9ti93z72Kct2dAucfLgaMxC", 1 ] - ] + ], + "weight_threshold": 1 }, - "memo_key": "STM7dz2kPEpL5B3AajPFnb3M3uJwiQ4sdzz6hTgwD8RRm7keT5Bwm", - "json_metadata": "", "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], "proxy": "", - "last_owner_update": "1970-01-01T00:00:00", - "last_account_update": "1970-01-01T00:00:00", - "created": "2016-04-28T14:35:57", - "mined": false, + "received_vesting_shares": "0.000000 VESTS", "recovery_account": "steem", - "last_account_recovery": "1970-01-01T00:00:00", + "reputation": 0, "reset_account": "null", - "comment_count": 0, - "lifetime_vote_count": 0, - "post_count": 0, - "can_vote": true, - "voting_manabar": { - "current_mana": 10000, - "last_update_time": 1461854157 - }, - "downvote_manabar": { - "current_mana": 0, - "last_update_time": 1461854157 - }, - "voting_power": 10000, - "balance": "0.000 HIVE", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", "savings_balance": "0.000 HIVE", - "sbd_balance": "0.001 HBD", - "sbd_seconds": "0", - "sbd_seconds_last_update": "2016-08-11T10:59:45", - "sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_sbd_seconds": "0", "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", - "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_withdraw_requests": 0, - "reward_sbd_balance": "0.000 HBD", - "reward_steem_balance": "0.000 HIVE", - "reward_vesting_balance": "0.000000 VESTS", - "reward_vesting_steem": "0.000 HIVE", - "vesting_shares": "146273.695970 VESTS", - "delegated_vesting_shares": "0.000000 VESTS", - "received_vesting_shares": "0.000000 VESTS", - "vesting_withdraw_rate": "0.000000 VESTS", - "next_vesting_withdrawal": "1969-12-31T23:59:59", - "withdrawn": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:59:45", + "tags_usage": [], "to_withdraw": 0, - "withdraw_routes": 0, - "curation_rewards": 0, - "posting_rewards": 0, - "proxied_vsf_votes": [ - 0, - 0, - 0, - 0 - ], - "witnesses_voted_for": 0, - "last_post": "1970-01-01T00:00:00", - "last_root_post": "1970-01-01T00:00:00", - "last_vote_time": "1970-01-01T00:00:00", - "post_bandwidth": 0, - "pending_claimed_accounts": 0, - "vesting_balance": "0.000 HIVE", - "reputation": 0, "transfer_history": [], - "market_history": [], - "post_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "146273.695970 VESTS", + "vesting_withdraw_rate": "0.000000 VESTS", "vote_history": [], - "other_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1461854157 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, "witness_votes": [], - "tags_usage": [], - "guest_bloggers": [] + "witnesses_voted_for": 0 } -] \ No newline at end of file +] diff --git a/hivemind/tavern/condenser_api_patterns/get_multiple_accounts.pat.json b/hivemind/tavern/condenser_api_patterns/get_multiple_accounts.pat.json index 843c3add..3a5f5180 100644 --- a/hivemind/tavern/condenser_api_patterns/get_multiple_accounts.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_multiple_accounts.pat.json @@ -1,210 +1,211 @@ [ { - "id": 28, - "name": "steemit", - "owner": { - "weight_threshold": 1, + "active": { "account_auths": [], "key_auths": [ [ - "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", + "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", 1 ] - ] + ], + "weight_threshold": 1 }, - "active": { - "weight_threshold": 1, + "balance": "4778859.891 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-03-24T17:00:21", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1458838821 + }, + "guest_bloggers": [], + "id": 28, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-15T13:56:18", + "last_owner_update": "2016-07-15T13:56:18", + "last_post": "2016-03-30T18:30:18", + "last_root_post": "2016-03-30T18:30:18", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + "mined": true, + "name": "steemit", + "next_vesting_withdrawal": "2016-09-19T00:37:21", + "other_history": [], + "owner": { "account_auths": [], "key_auths": [ [ - "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", + "STM7kyb6WK6Sg9Eu4uu7WGqjYdqJzdBeKEWVDaDEKsgvhvESJZ1vM", 1 ] - ] + ], + "weight_threshold": 1 }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 1, + "post_history": [], "posting": { - "weight_threshold": 1, "account_auths": [], "key_auths": [ [ "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", 1 ] - ] + ], + "weight_threshold": 1 }, - "memo_key": "STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH", - "json_metadata": "", "posting_json_metadata": "", + "posting_rewards": 3548, + "proxied_vsf_votes": [ + "23077504682", + 0, + 0, + 0 + ], "proxy": "", - "last_owner_update": "2016-07-15T13:56:18", - "last_account_update": "2016-07-15T13:56:18", - "created": "2016-03-24T17:00:21", - "mined": true, + "received_vesting_shares": "0.000000 VESTS", "recovery_account": "steem", - "last_account_recovery": "1970-01-01T00:00:00", + "reputation": "12944616889", "reset_account": "null", - "comment_count": 0, - "lifetime_vote_count": 0, - "post_count": 1, - "can_vote": true, - "voting_manabar": { - "current_mana": 10000, - "last_update_time": 1458838821 - }, - "downvote_manabar": { - "current_mana": 0, - "last_update_time": 1458838821 - }, - "voting_power": 10000, - "balance": "4778859.891 HIVE", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", "savings_balance": "0.000 HIVE", - "sbd_balance": "70337.438 HBD", - "sbd_seconds": "8923940509188", - "sbd_seconds_last_update": "2016-09-14T11:25:21", - "sbd_last_interest_payment": "2016-09-12T19:16:48", "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_sbd_seconds": "0", "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", - "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_withdraw_requests": 0, - "reward_sbd_balance": "0.000 HBD", - "reward_steem_balance": "0.000 HIVE", - "reward_vesting_balance": "0.000000 VESTS", - "reward_vesting_steem": "0.000 HIVE", - "vesting_shares": "225671901920.188893 VESTS", - "delegated_vesting_shares": "0.000000 VESTS", - "received_vesting_shares": "0.000000 VESTS", - "vesting_withdraw_rate": "2479910908.999260 VESTS", - "next_vesting_withdrawal": "2016-09-19T00:37:21", - "withdrawn": "32238841816990380", + "sbd_balance": "70337.438 HBD", + "sbd_last_interest_payment": "2016-09-12T19:16:48", + "sbd_seconds": "8923940509188", + "sbd_seconds_last_update": "2016-09-14T11:25:21", + "tags_usage": [], "to_withdraw": "257910734535923078", - "withdraw_routes": 0, - "curation_rewards": 0, - "posting_rewards": 3548, - "proxied_vsf_votes": [ - "23077504682", - 0, - 0, - 0 - ], - "witnesses_voted_for": 0, - "last_post": "2016-03-30T18:30:18", - "last_root_post": "2016-03-30T18:30:18", - "last_vote_time": "1970-01-01T00:00:00", - "post_bandwidth": 0, - "pending_claimed_accounts": 0, - "vesting_balance": "0.000 HIVE", - "reputation": "12944616889", "transfer_history": [], - "market_history": [], - "post_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "225671901920.188893 VESTS", + "vesting_withdraw_rate": "2479910908.999260 VESTS", "vote_history": [], - "other_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1458838821 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": "32238841816990380", "witness_votes": [], - "tags_usage": [], - "guest_bloggers": [] + "witnesses_voted_for": 0 }, { - "id": 17540, - "name": "biophil", - "owner": { - "weight_threshold": 1, + "active": { "account_auths": [], "key_auths": [ [ - "STM5mkaXCu5DT6XsaST1XFyyF842K54GxUAMUVm9wcm7HerBesz3i", + "STM5hB5S4MFqdEnBURe7L62HzL6FWnvy9Pb1R1UcPwCuGnUsfKzFc", 1 ] - ] + ], + "weight_threshold": 1 }, - "active": { - "weight_threshold": 1, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-07-12T14:47:00", + "curation_rewards": 20394, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1468334820 + }, + "guest_bloggers": [], + "id": 17540, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "2016-07-15T05:11:21", + "last_owner_update": "2016-07-15T05:11:21", + "last_post": "2016-09-15T15:07:18", + "last_root_post": "2016-09-14T16:30:24", + "last_vote_time": "2016-09-15T16:00:45", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM5zmYzafDpVkx7FCrxDAMLVqjyKX2ykDNUmtwDLvLtExXWvkovp", + "mined": false, + "name": "biophil", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { "account_auths": [], "key_auths": [ [ - "STM5hB5S4MFqdEnBURe7L62HzL6FWnvy9Pb1R1UcPwCuGnUsfKzFc", + "STM5mkaXCu5DT6XsaST1XFyyF842K54GxUAMUVm9wcm7HerBesz3i", 1 ] - ] + ], + "weight_threshold": 1 }, + "pending_claimed_accounts": 0, + "post_bandwidth": 12171, + "post_count": 752, + "post_history": [], "posting": { - "weight_threshold": 1, "account_auths": [], "key_auths": [ [ "STM52yaFZPJQMx5wWRZCYgHd69hEE4rkqx7qpq45NyY4Za6w3Jong", 1 ] - ] + ], + "weight_threshold": 1 }, - "memo_key": "STM5zmYzafDpVkx7FCrxDAMLVqjyKX2ykDNUmtwDLvLtExXWvkovp", - "json_metadata": "", "posting_json_metadata": "", + "posting_rewards": 3729894, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], "proxy": "", - "last_owner_update": "2016-07-15T05:11:21", - "last_account_update": "2016-07-15T05:11:21", - "created": "2016-07-12T14:47:00", - "mined": false, + "received_vesting_shares": "0.000000 VESTS", "recovery_account": "steem", - "last_account_recovery": "1970-01-01T00:00:00", + "reputation": "10077167197115", "reset_account": "null", - "comment_count": 0, - "lifetime_vote_count": 0, - "post_count": 752, - "can_vote": true, - "voting_manabar": { - "current_mana": 9475, - "last_update_time": 1473955245 - }, - "downvote_manabar": { - "current_mana": 0, - "last_update_time": 1468334820 - }, - "voting_power": 9475, - "balance": "0.000 HIVE", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", "savings_balance": "0.000 HIVE", - "sbd_balance": "902.828 HBD", - "sbd_seconds": "131701413987", - "sbd_seconds_last_update": "2016-09-15T19:28:54", - "sbd_last_interest_payment": "2016-09-13T12:08:48", "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_sbd_seconds": "0", "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", - "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_withdraw_requests": 0, - "reward_sbd_balance": "0.000 HBD", - "reward_steem_balance": "0.000 HIVE", - "reward_vesting_balance": "0.000000 VESTS", - "reward_vesting_steem": "0.000 HIVE", - "vesting_shares": "8128612.587095 VESTS", - "delegated_vesting_shares": "0.000000 VESTS", - "received_vesting_shares": "0.000000 VESTS", - "vesting_withdraw_rate": "0.000000 VESTS", - "next_vesting_withdrawal": "1969-12-31T23:59:59", - "withdrawn": 0, + "sbd_balance": "902.828 HBD", + "sbd_last_interest_payment": "2016-09-13T12:08:48", + "sbd_seconds": "131701413987", + "sbd_seconds_last_update": "2016-09-15T19:28:54", + "tags_usage": [], "to_withdraw": 0, - "withdraw_routes": 0, - "curation_rewards": 20394, - "posting_rewards": 3729894, - "proxied_vsf_votes": [ - 0, - 0, - 0, - 0 - ], - "witnesses_voted_for": 11, - "last_post": "2016-09-15T15:07:18", - "last_root_post": "2016-09-14T16:30:24", - "last_vote_time": "2016-09-15T16:00:45", - "post_bandwidth": 12171, - "pending_claimed_accounts": 0, - "vesting_balance": "0.000 HIVE", - "reputation": "10077167197115", "transfer_history": [], - "market_history": [], - "post_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "8128612.587095 VESTS", + "vesting_withdraw_rate": "0.000000 VESTS", "vote_history": [], - "other_history": [], + "voting_manabar": { + "current_mana": 9475, + "last_update_time": 1473955245 + }, + "voting_power": 9475, + "withdraw_routes": 0, + "withdrawn": 0, "witness_votes": [ "abit", "anyx", @@ -218,112 +219,111 @@ "steemed", "steve-walschot" ], - "tags_usage": [], - "guest_bloggers": [] + "witnesses_voted_for": 11 }, { - "id": 6566, - "name": "test", - "owner": { - "weight_threshold": 1, + "active": { "account_auths": [], "key_auths": [ [ - "STM6L7mdcoi371ddt2z5hDfRCHXjcLRBz3H8GYKWBgo5T8kiaqWKy", + "STM7iT2pWdfDqjX12hhQbjKveALEuWPss1wvrKVWDgm6Ud2ZTjoE4", 1 ] - ] + ], + "weight_threshold": 1 }, - "active": { - "weight_threshold": 1, + "balance": "0.000 HIVE", + "can_vote": true, + "comment_count": 0, + "created": "2016-04-28T14:35:57", + "curation_rewards": 0, + "delegated_vesting_shares": "0.000000 VESTS", + "downvote_manabar": { + "current_mana": 0, + "last_update_time": 1461854157 + }, + "guest_bloggers": [], + "id": 6566, + "json_metadata": "", + "last_account_recovery": "1970-01-01T00:00:00", + "last_account_update": "1970-01-01T00:00:00", + "last_owner_update": "1970-01-01T00:00:00", + "last_post": "1970-01-01T00:00:00", + "last_root_post": "1970-01-01T00:00:00", + "last_vote_time": "1970-01-01T00:00:00", + "lifetime_vote_count": 0, + "market_history": [], + "memo_key": "STM7dz2kPEpL5B3AajPFnb3M3uJwiQ4sdzz6hTgwD8RRm7keT5Bwm", + "mined": false, + "name": "test", + "next_vesting_withdrawal": "1969-12-31T23:59:59", + "other_history": [], + "owner": { "account_auths": [], "key_auths": [ [ - "STM7iT2pWdfDqjX12hhQbjKveALEuWPss1wvrKVWDgm6Ud2ZTjoE4", + "STM6L7mdcoi371ddt2z5hDfRCHXjcLRBz3H8GYKWBgo5T8kiaqWKy", 1 ] - ] + ], + "weight_threshold": 1 }, + "pending_claimed_accounts": 0, + "post_bandwidth": 0, + "post_count": 0, + "post_history": [], "posting": { - "weight_threshold": 1, "account_auths": [], "key_auths": [ [ "STM5PnVARAgGPTf5PqRnumGUyMJCfV9ti93z72Kct2dAucfLgaMxC", 1 ] - ] + ], + "weight_threshold": 1 }, - "memo_key": "STM7dz2kPEpL5B3AajPFnb3M3uJwiQ4sdzz6hTgwD8RRm7keT5Bwm", - "json_metadata": "", "posting_json_metadata": "", + "posting_rewards": 0, + "proxied_vsf_votes": [ + 0, + 0, + 0, + 0 + ], "proxy": "", - "last_owner_update": "1970-01-01T00:00:00", - "last_account_update": "1970-01-01T00:00:00", - "created": "2016-04-28T14:35:57", - "mined": false, + "received_vesting_shares": "0.000000 VESTS", "recovery_account": "steem", - "last_account_recovery": "1970-01-01T00:00:00", + "reputation": 0, "reset_account": "null", - "comment_count": 0, - "lifetime_vote_count": 0, - "post_count": 0, - "can_vote": true, - "voting_manabar": { - "current_mana": 10000, - "last_update_time": 1461854157 - }, - "downvote_manabar": { - "current_mana": 0, - "last_update_time": 1461854157 - }, - "voting_power": 10000, - "balance": "0.000 HIVE", + "reward_sbd_balance": "0.000 HBD", + "reward_steem_balance": "0.000 HIVE", + "reward_vesting_balance": "0.000000 VESTS", + "reward_vesting_steem": "0.000 HIVE", "savings_balance": "0.000 HIVE", - "sbd_balance": "0.001 HBD", - "sbd_seconds": "0", - "sbd_seconds_last_update": "2016-08-11T10:59:45", - "sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_sbd_balance": "0.000 HBD", + "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_sbd_seconds": "0", "savings_sbd_seconds_last_update": "1970-01-01T00:00:00", - "savings_sbd_last_interest_payment": "1970-01-01T00:00:00", "savings_withdraw_requests": 0, - "reward_sbd_balance": "0.000 HBD", - "reward_steem_balance": "0.000 HIVE", - "reward_vesting_balance": "0.000000 VESTS", - "reward_vesting_steem": "0.000 HIVE", - "vesting_shares": "146273.695970 VESTS", - "delegated_vesting_shares": "0.000000 VESTS", - "received_vesting_shares": "0.000000 VESTS", - "vesting_withdraw_rate": "0.000000 VESTS", - "next_vesting_withdrawal": "1969-12-31T23:59:59", - "withdrawn": 0, + "sbd_balance": "0.001 HBD", + "sbd_last_interest_payment": "1970-01-01T00:00:00", + "sbd_seconds": "0", + "sbd_seconds_last_update": "2016-08-11T10:59:45", + "tags_usage": [], "to_withdraw": 0, - "withdraw_routes": 0, - "curation_rewards": 0, - "posting_rewards": 0, - "proxied_vsf_votes": [ - 0, - 0, - 0, - 0 - ], - "witnesses_voted_for": 0, - "last_post": "1970-01-01T00:00:00", - "last_root_post": "1970-01-01T00:00:00", - "last_vote_time": "1970-01-01T00:00:00", - "post_bandwidth": 0, - "pending_claimed_accounts": 0, - "vesting_balance": "0.000 HIVE", - "reputation": 0, "transfer_history": [], - "market_history": [], - "post_history": [], + "vesting_balance": "0.000 HIVE", + "vesting_shares": "146273.695970 VESTS", + "vesting_withdraw_rate": "0.000000 VESTS", "vote_history": [], - "other_history": [], + "voting_manabar": { + "current_mana": 10000, + "last_update_time": 1461854157 + }, + "voting_power": 10000, + "withdraw_routes": 0, + "withdrawn": 0, "witness_votes": [], - "tags_usage": [], - "guest_bloggers": [] + "witnesses_voted_for": 0 } -] \ No newline at end of file +] diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.pat.json index 1c0767f0..7e9d70f0 100644 --- a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.pat.json +++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout_limit_20.pat.json @@ -1201,6 +1201,50 @@ "total_payout_value": "0.000 HBD", "url": "/test/@derekareith/page-view-counter-test-post" }, + { + "active_votes": [ + { + "percent": "10000", + "reputation": 0, + "rshares": "63736720", + "voter": "zionuziriel" + }, + { + "percent": "10000", + "reputation": 0, + "rshares": "55929928", + "voter": "uziriel" + } + ], + "author": "zionuziriel", + "author_reputation": 0, + "beneficiaries": [], + "body": "\n

Hello everyone :) Kindly upvote.
\n
\n-Test

\n", + "body_length": 69, + "cashout_time": "2016-10-09T06:17:03", + "category": "test", + "children": 1, + "created": "2016-09-08T05:23:21", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "json_metadata": "{\"tags\":[\"test\",\"upvote\"]}", + "last_payout": "1969-12-31T23:59:59", + "last_update": "2016-09-08T05:23:21", + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 69600101439, + "parent_author": "", + "parent_permlink": "test", + "pending_payout_value": "0.015 HBD", + "percent_hbd": 10000, + "permlink": "kindly-upvote", + "post_id": 889524, + "promoted": "0.000 HBD", + "replies": [], + "root_title": "KINDLY UPVOTE", + "title": "KINDLY UPVOTE", + "total_payout_value": "0.000 HBD", + "url": "/test/@zionuziriel/kindly-upvote" + }, { "active_votes": [ { @@ -1471,50 +1515,6 @@ "total_payout_value": "0.000 HBD", "url": "/test/@gregnie/test-again" }, - { - "active_votes": [ - { - "percent": "10000", - "reputation": 0, - "rshares": "63736720", - "voter": "zionuziriel" - }, - { - "percent": "10000", - "reputation": 0, - "rshares": "55929928", - "voter": "uziriel" - } - ], - "author": "zionuziriel", - "author_reputation": 0, - "beneficiaries": [], - "body": "\n

Hello everyone :) Kindly upvote.
\n
\n-Test

\n", - "body_length": 69, - "cashout_time": "2016-10-09T06:17:03", - "category": "test", - "children": 1, - "created": "2016-09-08T05:23:21", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "json_metadata": "{\"tags\":[\"test\",\"upvote\"]}", - "last_payout": "1969-12-31T23:59:59", - "last_update": "2016-09-08T05:23:21", - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 69600101439, - "parent_author": "", - "parent_permlink": "test", - "pending_payout_value": "0.015 HBD", - "percent_hbd": 10000, - "permlink": "kindly-upvote", - "post_id": 889524, - "promoted": "0.000 HBD", - "replies": [], - "root_title": "KINDLY UPVOTE", - "title": "KINDLY UPVOTE", - "total_payout_value": "0.000 HBD", - "url": "/test/@zionuziriel/kindly-upvote" - }, { "active_votes": [ { diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index b1d2af41..f895407d 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -61,8 +61,6 @@ # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest # original gives no error, just no result - - failing - - xfail # no error message, just no result (and while it is like in old version we need proper error) includes: - !include common.yaml @@ -95,7 +93,7 @@ marks: - patterntest - failing - - xfail # gray, flag_weight + - xfail # gray includes: - !include common.yaml @@ -153,9 +151,7 @@ test_name: Hivemind bridge_api.get_discussion non existing permlink patterns test # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - - patterntest # original gives no error, just no result - - failing - - xfail # no error message, just no result (and while it is like in old version we need proper error) + - patterntest includes: @@ -180,8 +176,6 @@ extra_kwargs: method: "get_discussion_not_existing_permlink" directory: "bridge_api_patterns" - error_response: true - ignore_tags: ["timestamp"] --- test_name: Hivemind bridge_api.get_post patterns test @@ -362,8 +356,6 @@ # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest - - failing - - xfail # flag_weight includes: - !include common.yaml @@ -627,7 +619,7 @@ marks: - patterntest - failing - - xfail # empty results (to be investigated) + - xfail # empty results caused by lack of is_grayed handling (same as gray elsewhere) includes: - !include common.yaml @@ -775,8 +767,6 @@ #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest # original gives no error, just no result - - failing - - xfail # no error message, just no result (and while it is like in old version we need proper error) includes: - !include common.yaml @@ -1045,9 +1035,7 @@ test_name: Hivemind bridge_api.get_community patterns test # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - - patterntest - - failing - - xfail # test should probably be removed from 5mln set since it will return error when incorrect community id is passed and communities did not exist then + - patterntest # communities do not exist in first 5mln, so only error response is possible includes: - !include common.yaml @@ -1071,6 +1059,7 @@ extra_kwargs: method: "get_community" directory: "bridge_api_patterns" + error_response: true --- test_name: Hivemind bridge_api.list_communities patterns test diff --git a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml index abab639e..86639a80 100644 --- a/hivemind/tavern/test_condenser_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_condenser_api_patterns.tavern.yaml @@ -870,7 +870,7 @@ marks: - patterntest - failing - - xfail # while this would be acceptable we should change it to invalid parameters over server error + - xfail # while this would be acceptable we should change it to invalid parameters over server error (code suggests we wanted to completely silence that, but rest passes is as generic error, old code was the same so...) includes: - !include common.yaml @@ -1196,7 +1196,7 @@ marks: - patterntest # differences in pending payout make it incomparable with original - failing - - xfail # wrong order, pending_payout_value (total actually, since it was just payout in old version) should be the key + - xfail # pattern needs to be ordered first but there are bigger differences includes: - !include common.yaml @@ -1315,7 +1315,7 @@ marks: - patterntest # differences in pending payout make it incomparable with original - failing - - xfail # wrong order, pending_payout_value (total actually, since it was just payout in old version) should be the key + - xfail # pattern needs to be ordered first but there are bigger differences includes: - !include common.yaml @@ -1432,7 +1432,7 @@ test_name: Hivemind condenser_api.get_blog invalid limit combination patterns test marks: - - patterntest # strange error - when limit exceeds the number of posts written by user it should return all posts - not error (to be investigated) + - patterntest # call returns post entries starting at start_entry_id going down towards 0 until limit, therefore limit <= start_entry_id + 1 (unless start_entry_id is 0 or -1) includes: - !include common.yaml @@ -1462,9 +1462,8 @@ test_name: Hivemind condenser_api.get_blog limit 100 patterns test marks: - - patterntest - - failing - - xfail # test should return all steemit account posts, issue: https://gitlab.syncad.com/hive/hivemind/-/issues/53 + - patterntest # original had trouble with the call, when limit exceeded number of post entries error was returned + # see https://gitlab.syncad.com/hive/hivemind/-/issues/53 - pattern/original prepared with limit 1 includes: - !include common.yaml @@ -1488,6 +1487,7 @@ extra_kwargs: method: "get_blog_limit_100" directory: "condenser_api_patterns" + --- test_name: Hivemind condenser_api.get_blog no results test @@ -1545,13 +1545,14 @@ method: "get_blog_over_limit" directory: "condenser_api_patterns" error_response: true + --- test_name: Hivemind condenser_api.get_blog non existing account test marks: - patterntest - failing - - xfail # wrong response, should be clean error + - xfail # wrong response, should be clean error (now there is no way to make difference between nonexisting account and account that does not blog) includes: - !include common.yaml @@ -1791,7 +1792,7 @@ marks: - patterntest - failing - - xfail # server error (to be investigated) + - xfail # results are so different that it looks like wrong routine is called (possible link to raw_json that is now empty) includes: - !include common.yaml @@ -1822,7 +1823,7 @@ marks: - patterntest - failing - - xfail # server error (to be investigated) + - xfail # results are so different that it looks like wrong routine is called (possible link to raw_json that is now empty) includes: - !include common.yaml diff --git a/hivemind/tavern/validate_response.py b/hivemind/tavern/validate_response.py index 0bd14d4a..8efc5b7d 100644 --- a/hivemind/tavern/validate_response.py +++ b/hivemind/tavern/validate_response.py @@ -46,16 +46,21 @@ def compare_response_with_pattern(response, method=None, directory=None, ignore_ response_json = remove_tag(response_json, ignore_tags) error = response_json.get("error", None) result = response_json.get("result", None) - if error_response: - result = error if error is not None and not error_response: msg = "Error detected in response: {}".format(error["message"]) - save_raw(response_fname, msg) + save_json(response_fname, response_json) + raise PatternDiffException(msg) + if error is None and error_response: + msg = "Error expected but got result: {}".format(result) + save_json(response_fname, response_json) raise PatternDiffException(msg) + + if error_response: + result = error if result is None: msg = "Error detected in response: result is null, json object was expected" - save_raw(response_fname, msg) + save_json(response_fname, response_json) raise PatternDiffException(msg) import deepdiff -- GitLab From f6d247993e4f4138ee265a5d1fb0f15298c91c7b Mon Sep 17 00:00:00 2001 From: Paulina Czempiel Date: Mon, 31 Aug 2020 09:31:29 +0200 Subject: [PATCH 47/49] database error patterns --- .../find_votes_author_error.pat.json | 27 ++++++++ .../find_votes_error.pat.json | 27 ++++++++ .../find_votes_no_data_error.pat.json | 26 ++++++++ .../find_votes_permlink_error.pat.json | 27 ++++++++ ...tes_by_comment_voter_author_error.pat.json | 26 ++++++++ ...s_by_comment_voter_permlink_error.pat.json | 26 ++++++++ ...tes_by_voter_comment_author_error.pat.json | 27 ++++++++ ...nt_author_not_full_permlink_error.pat.json | 26 ++++++++ ...s_by_voter_comment_permlink_error.pat.json | 27 ++++++++ ...y_voter_comment_wrong_order_error.pat.json | 26 ++++++++ .../test_database_api_patterns.tavern.yaml | 63 ++++++++++++------- 11 files changed, 305 insertions(+), 23 deletions(-) create mode 100644 hivemind/tavern/database_api_patterns/find_votes_author_error.pat.json create mode 100644 hivemind/tavern/database_api_patterns/find_votes_error.pat.json create mode 100644 hivemind/tavern/database_api_patterns/find_votes_no_data_error.pat.json create mode 100644 hivemind/tavern/database_api_patterns/find_votes_permlink_error.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_author_error.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_permlink_error.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_author_error.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_author_not_full_permlink_error.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_permlink_error.pat.json create mode 100644 hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_wrong_order_error.pat.json diff --git a/hivemind/tavern/database_api_patterns/find_votes_author_error.pat.json b/hivemind/tavern/database_api_patterns/find_votes_author_error.pat.json new file mode 100644 index 00000000..3420cd53 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/find_votes_author_error.pat.json @@ -0,0 +1,27 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1280, + "method": "find_votes", + "timestamp": "2020-08-31T07:27:49" + }, + "data": { + "a": "kental", + "p": "" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}" + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment kental/" + } + \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/find_votes_error.pat.json b/hivemind/tavern/database_api_patterns/find_votes_error.pat.json new file mode 100644 index 00000000..a99592d7 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/find_votes_error.pat.json @@ -0,0 +1,27 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1280, + "method": "find_votes", + "timestamp": "2020-08-31T07:26:47" + }, + "data": { + "a": "", + "p": "" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}" + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment /" + } + \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/find_votes_no_data_error.pat.json b/hivemind/tavern/database_api_patterns/find_votes_no_data_error.pat.json new file mode 100644 index 00000000..92571dc3 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/find_votes_no_data_error.pat.json @@ -0,0 +1,26 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1280, + "method": "find_votes", + "timestamp": "2020-08-31T07:30:10" + }, + "data": { + "a": "hiveio", + "p": "firstpost" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}" + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment hiveio/firstpost" + } \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/find_votes_permlink_error.pat.json b/hivemind/tavern/database_api_patterns/find_votes_permlink_error.pat.json new file mode 100644 index 00000000..01108204 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/find_votes_permlink_error.pat.json @@ -0,0 +1,27 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1280, + "method": "find_votes", + "timestamp": "2020-08-31T07:29:01" + }, + "data": { + "a": "", + "p": "hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}" + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment /hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava" + } + \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_author_error.pat.json b/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_author_error.pat.json new file mode 100644 index 00000000..627e1370 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_author_error.pat.json @@ -0,0 +1,26 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1215, + "method": "votes_impl", + "timestamp": "2020-08-31T07:17:50" + }, + "data": { + "a": "roelandp", + "p": "" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment roelandp/." +} diff --git a/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_permlink_error.pat.json b/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_permlink_error.pat.json new file mode 100644 index 00000000..d7fcc704 --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_votes_by_comment_voter_permlink_error.pat.json @@ -0,0 +1,26 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1215, + "method": "votes_impl", + "timestamp": "2020-08-31T07:19:48" + }, + "data": { + "a": "", + "p": "re-roelandp-tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours-20160825t212252221z" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment /re-roelandp-tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours-20160825t212252221z." +} diff --git a/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_author_error.pat.json b/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_author_error.pat.json new file mode 100644 index 00000000..b1cbc4ef --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_author_error.pat.json @@ -0,0 +1,27 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1215, + "method": "votes_impl", + "timestamp": "2020-08-31T07:19:48" + }, + "data": { + "a": "roelandp", + "p": "" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment roelandp/." + } + \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_author_not_full_permlink_error.pat.json b/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_author_not_full_permlink_error.pat.json new file mode 100644 index 00000000..7e70934b --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_author_not_full_permlink_error.pat.json @@ -0,0 +1,26 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1215, + "method": "votes_impl", + "timestamp": "2020-08-31T07:23:27" + }, + "data": { + "a": "roelandp", + "p": "tldr-an-exploration-in-st" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment roelandp/tldr-an-exploration-in-st." +} diff --git a/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_permlink_error.pat.json b/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_permlink_error.pat.json new file mode 100644 index 00000000..d3c229de --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_permlink_error.pat.json @@ -0,0 +1,27 @@ +{ + "code": -32003, + "data": { + "code": 10, + "message": "Assert Exception", + "name": "assert_exception", + "stack": [ + { + "context": { + "file": "database_api.cpp", + "hostname": "", + "level": "error", + "line": 1215, + "method": "votes_impl", + "timestamp": "2020-08-31T07:21:36" + }, + "data": { + "a": "", + "p": "tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours" + }, + "format": "comment != nullptr: Could not find comment ${a}/${p}." + } + ] + }, + "message": "Assert Exception:comment != nullptr: Could not find comment /tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours." + } + \ No newline at end of file diff --git a/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_wrong_order_error.pat.json b/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_wrong_order_error.pat.json new file mode 100644 index 00000000..e9fee6cc --- /dev/null +++ b/hivemind/tavern/database_api_patterns/list_votes_by_voter_comment_wrong_order_error.pat.json @@ -0,0 +1,26 @@ +{ + "code": -32000, + "data": { + "code": 7, + "message": "Bad Cast", + "name": "bad_cast_exception", + "stack": [ + { + "context": { + "file": "exception.cpp", + "hostname": "", + "level": "error", + "line": 226, + "method": "throw_bad_enum_cast", + "timestamp": "2020-08-31T07:25:10" + }, + "data": { + "enum": "steem::plugins::database_api::sort_order_type", + "key": "by_author" + }, + "format": "invalid name '${key}' in enum '${enum}'" + } + ] + }, + "message": "Bad Cast:invalid name 'by_author' in enum 'steem::plugins::database_api::sort_order_type'" + } \ No newline at end of file diff --git a/hivemind/tavern/test_database_api_patterns.tavern.yaml b/hivemind/tavern/test_database_api_patterns.tavern.yaml index eb2947e5..25a5526f 100644 --- a/hivemind/tavern/test_database_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_database_api_patterns.tavern.yaml @@ -1781,9 +1781,11 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:comment != nullptr: Could not find comment roelandp/." + method: "list_votes_by_comment_voter_author_error" + directory: "database_api_patterns" + error_response: true --- test_name: Hivemind database_api.list_votes patterns test order "by_comment_voter" permlink @@ -1814,10 +1816,11 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:comment != nullptr: Could not find comment /re-roelandp-tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours-20160825t212252221z." - + method: "list_votes_by_comment_voter_permlink_error" + directory: "database_api_patterns" + error_response: true ####################### VOTER COMMENT ###################### --- test_name: Hivemind database_api.list_votes patterns test order "by_voter_comment" no data @@ -1916,9 +1919,11 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:comment != nullptr: Could not find comment roelandp/." + method: "list_votes_by_voter_comment_author_error" + directory: "database_api_patterns" + error_response: true --- test_name: Hivemind database_api.list_votes patterns test order "by_voter_comment" permlink @@ -1949,10 +1954,11 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:comment != nullptr: Could not find comment /tldr-an-exploration-in-steem-botting-what-i-learned-since-it-s-inception-and-downfall-over-the-course-of-20-hours." - + method: "list_votes_by_voter_comment_permlink_error" + directory: "database_api_patterns" + error_response: true --- test_name: Hivemind database_api.list_votes patterns test order "by_voter_comment" author + permlink @@ -2017,9 +2023,11 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:comment != nullptr: Could not find comment roelandp/tldr-an-exploration-in-st." + method: "list_votes_by_voter_comment_author_not_full_permlink_error" + directory: "database_api_patterns" + error_response: true --- test_name: Hivemind database_api.list_votes patterns test order wrong order @@ -2050,9 +2058,11 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Bad Cast:invalid name 'by_author' in enum 'steem::plugins::database_api::sort_order_type'" + method: "list_votes_by_voter_comment_wrong_order_error" + directory: "database_api_patterns" + error_response: true ######################## FIND VOTES ######################## @@ -2133,9 +2143,11 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:comment != nullptr: Could not find comment /" + method: "find_votes_error" + directory: "database_api_patterns" + error_response: true --- test_name: Hivemind database_api.find_votes patterns test author @@ -2165,9 +2177,11 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:comment != nullptr: Could not find comment kental/" + method: "find_votes_author_error" + directory: "database_api_patterns" + error_response: true --- test_name: Hivemind database_api.find_votes patterns test permlink @@ -2197,10 +2211,11 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:comment != nullptr: Could not find comment /hi-steem-my-russian-trip-on-the-bike-big-party-in-moscow-tour-of-moscow-by-slava" - + method: "find_votes_permlink_error" + directory: "database_api_patterns" + error_response: true --- test_name: Hivemind database_api.find_votes patterns test no data @@ -2229,9 +2244,11 @@ stages: response: status_code: 200 verify_response_with: - function: validate_response:compare_error_message + function: validate_response:compare_response_with_pattern extra_kwargs: - message: "Assert Exception:comment != nullptr: Could not find comment hiveio/firstpost" + method: "find_votes_no_data_error" + directory: "database_api_patterns" + error_response: true ######################## FIND COMMENTS ######################## # commments instead of start -- GitLab From ee2531982a0f3d6c102e5db3cd77d28d3546e10d Mon Sep 17 00:00:00 2001 From: ABW Date: Mon, 31 Aug 2020 19:41:38 +0200 Subject: [PATCH 48/49] [ABW]: supplemented .orig files corrected patterns: indents, some error messages are slightly different added separate patterns for tests that incorrectly shared them removed DEADJOE --- DEADJOE | 144 ------------- .../get_account_posts_sort_blog.orig.json | 2 +- .../get_payout_stats_10.orig.json | 76 +++++++ .../get_payout_stats_10.pat.json | 149 +++++++------- ...et_relationship_between_accounts.orig.json | 11 +- ...get_relationship_between_accounts.pat.json | 8 +- ...between_accounts_change_accounts.orig.json | 6 + ..._between_accounts_change_accounts.pat.json | 11 +- ...ship_between_accounts_true_state.orig.json | 6 + ...nship_between_accounts_true_state.pat.json | 11 +- ...ip_between_accounts_true_state_2.orig.json | 6 + ...hip_between_accounts_true_state_2.pat.json | 11 +- ...n_accounts_true_state_2_observer.orig.json | 6 + ...en_accounts_true_state_2_observer.pat.json | 6 + .../list_all_subscriptions_pos_arg.orig.json | 1 + ...> list_all_subscriptions_pos_arg.pat.json} | 0 .../list_subscribers_pos_arg.orig.json | 1 + .../list_subscribers_pos_arg.pat.json | 1 + ...ommunity_context_community_error.orig.json | 5 + ...community_context_community_error.pat.json | 5 + ...ommunity_context_community_error.patj.json | 5 - .../get_payout_stats_empty_error.orig.json | 5 + .../get_payout_stats_empty_error.pat.json | 8 +- .../get_payout_stats_error.orig.json | 5 + .../get_payout_stats_error.pat.json | 8 +- .../get_payout_stats_error_v2.orig.json | 5 + .../get_payout_stats_error_v2.pat.json | 8 +- .../get_profile_empty_error.orig.json | 5 + .../get_profile_empty_error.pat.json | 8 +- .../get_profile_error.orig.json | 5 + .../get_profile_error.pat.json | 8 +- .../get_profile_number_account.orig.json | 1 + .../get_profile_number_account.pat.json | 5 + ...ationship_between_accounts_error.orig.json | 5 + ...lationship_between_accounts_error.pat.json | 8 +- ...onship_between_accounts_error_v2.orig.json | 5 + ...ionship_between_accounts_error_v2.pat.json | 8 +- ...onship_between_accounts_error_v3.orig.json | 5 + ...ionship_between_accounts_error_v3.pat.json | 8 +- ...onship_between_accounts_error_v4.orig.json | 5 + ...ionship_between_accounts_error_v4.pat.json | 8 +- ...t_trending_topics_negative_limit.orig.json | 5 + ...et_trending_topics_negative_limit.pat.json | 5 + ...ubscriptions_wrong_account_error.orig.json | 5 + ...subscriptions_wrong_account_error.pat.json | 8 +- ...criptions_wrong_account_error_v2.orig.json | 5 + ...scriptions_wrong_account_error_v2.pat.json | 8 +- ...criptions_wrong_account_error_v3.orig.json | 5 + ...scriptions_wrong_account_error_v3.pat.json | 8 +- ...list_pop_communities_empty_error.orig.json | 5 + .../list_pop_communities_empty_error.pat.json | 8 +- .../list_pop_communities_error.orig.json | 5 + .../list_pop_communities_error.pat.json | 8 +- ...list_pop_communities_limit_error.orig.json | 5 + .../list_pop_communities_limit_error.pat.json | 8 +- ...ist_pop_communities_server_error.orig.json | 5 + ...list_pop_communities_server_error.pat.json | 8 +- ...p_communities_to_many_args_error.orig.json | 5 + ...op_communities_to_many_args_error.pat.json | 8 +- .../list_subscribers_account_error.orig.json | 1 + .../list_subscribers_account_error.pat.json | 6 +- ...ist_subscribers_account_error_v2.orig.json | 5 + ...list_subscribers_account_error_v2.pat.json | 8 +- .../list_subscribers_error.orig.json | 5 + .../list_subscribers_error.pat.json | 8 +- .../post_notifications_author_error.orig.json | 5 + .../post_notifications_author_error.pat.json | 8 +- .../post_notifications_empty_error.orig.json | 5 + .../post_notifications_empty_error.pat.json | 8 +- .../test_bridge_api_patterns.tavern.yaml | 189 +++++------------- ...test_bridge_api_patterns_error.tavern.yaml | 113 ++++++++++- 71 files changed, 577 insertions(+), 492 deletions(-) delete mode 100644 DEADJOE create mode 100644 hivemind/tavern/bridge_api_patterns/get_payout_stats_10.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_change_accounts.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2_observer.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2_observer.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/list_all_subscriptions_pos_arg.orig.json rename hivemind/tavern/bridge_api_patterns/{list_pop_communities_author.pat.json => list_all_subscriptions_pos_arg.pat.json} (100%) create mode 100644 hivemind/tavern/bridge_api_patterns/list_subscribers_pos_arg.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns/list_subscribers_pos_arg.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/get_community_context_community_error.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/get_community_context_community_error.pat.json delete mode 100644 hivemind/tavern/bridge_api_patterns_error/get_community_context_community_error.patj.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/get_payout_stats_empty_error.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error_v2.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/get_profile_empty_error.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/get_profile_error.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/get_profile_number_account.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/get_profile_number_account.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v2.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v3.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v4.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/get_trending_topics_negative_limit.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/get_trending_topics_negative_limit.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v2.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v3.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/list_pop_communities_empty_error.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/list_pop_communities_error.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/list_pop_communities_limit_error.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/list_pop_communities_server_error.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/list_pop_communities_to_many_args_error.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error_v2.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/list_subscribers_error.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/post_notifications_author_error.orig.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/post_notifications_empty_error.orig.json diff --git a/DEADJOE b/DEADJOE deleted file mode 100644 index 256690ae..00000000 --- a/DEADJOE +++ /dev/null @@ -1,144 +0,0 @@ - -*** These modified files were found in JOE when it aborted on Mon Aug 17 14:35:36 2020 -*** JOE was aborted by UNIX signal 1 - -*** File '/home/dev/hivemind/.git/modules/tests/tests_api/COMMIT_EDITMSG' -remote-tracking branch 'origin/master' into pczempiel_new_tests - -# Conflicts: -# hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json -# -# It looks like you may be committing a merge. -# If this is not correct, please remove the file -# /home/dev/hivemind/.git/modules/tests/tests_api/MERGE_HEAD -# and try again. - - -# Please enter the commit message for your changes. Lines starting -# with '#' will be ignored, and an empty message aborts the commit. -# -# On branch pczempiel_new_tests -# All conflicts fixed but you are still merging. -# -# Changes to be committed: -# modified: hivemind/pyrest_tests/5000000/condenser_api/get_blog.pat.json -# modified: hivemind/pyrest_tests/5000000/condenser_api/get_comment_discussions_by_payout.pat.json -# modified: hivemind/pyrest_tests/5000000/condenser_api/get_content.pat.json -# modified: hivemind/pyrest_tests/5000000/condenser_api/get_content_replies.pat.json -# modified: hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_author_before_date.pat.json -# modified: hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_blog.pat.json -# modified: hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_comments.pat.json -# modified: hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_created.pat.json -# modified: hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_hot.pat.json -# modified: hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_promoted.pat.json -# modified: hivemind/pyrest_tests/5000000/condenser_api/get_discussions_by_trending.pat.json -# modified: hivemind/pyrest_tests/5000000/condenser_api/get_post_discussions_by_payout.pat.json -# modified: hivemind/pyrest_tests/5000000/condenser_api/get_replies_by_last_update.pat.json -# modified: hivemind/pyrest_tests/5000000/condenser_api/get_state.pat.json -# modified: hivemind/pyrest_tests/5000000/follow_api/get_blog.pat.json -# modified: hivemind/pyrest_tests/5000000/tags_api/get_comment_discussions_by_payout.pat.json -# modified: hivemind/pyrest_tests/5000000/tags_api/get_content_replies.pat.json -# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussion.pat.json -# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_author_before_date.pat.json -# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_blog.pat.json -# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_comments.pat.json -# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_created.pat.json -# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_hot.pat.json -# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_promoted.pat.json -# modified: hivemind/pyrest_tests/5000000/tags_api/get_discussions_by_trending.pat.json -# modified: hivemind/pyrest_tests/5000000/tags_api/get_post_discussions_by_payout.pat.json -# modified: hivemind/tavern/bridge_api_patterns/account_notifications.pat.json -# modified: hivemind/tavern/bridge_api_patterns/get_account_posts.pat.json -# modified: hivemind/tavern/bridge_api_patterns/get_discussion.pat.json -# modified: hivemind/tavern/bridge_api_patterns/get_payout_stats.pat.json -# modified: hivemind/tavern/bridge_api_patterns/get_post.pat.json -# modified: hivemind/tavern/bridge_api_patterns/get_profile.pat.json -# modified: hivemind/tavern/bridge_api_patterns/get_ranked_posts.pat.json -# modified: hivemind/tavern/bridge_api_patterns/get_trending_topics.pat.json -# copied: hivemind/tavern/bridge_api_patterns/account_notifications.pat.json -> hivemind/tavern/bridge_api_patterns/list_communities.pat.json -# modified: hivemind/tavern/bridge_api_patterns/post_notifications.pat.json -# modified: hivemind/tavern/bridge_api_patterns/unread_notifications.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_account_reputations.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_active_votes.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_blog.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_blog_entries.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_content.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_content_replies.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_discussions_by_blog.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_discussions_by_comments.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_discussions_by_created.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_discussions_by_hot.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_discussions_by_trending.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_followers.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_following.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_replies_by_last_update.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_state.pat.json -# modified: hivemind/tavern/condenser_api_patterns/get_trending_tags.pat.json -# modified: hivemind/tavern/database_api_patterns/find_comments.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_author_last_update.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_author_last_update_author_date.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_author_date.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_dap.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_author_last_update_corr_date.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_by_cashout_first_date.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_all_data.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_future_data.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_by_cashout_time_second.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_by_last_update_future_date.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_last_update_good_date.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_parent.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_parent_all_data.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_parent_no_data.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_parent_not_full_data.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_parent_parent_author.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_parent_required_data.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_permlink.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_permlink_good_params.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_permlink_good_permlink.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_permlink_permlink_no_data.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_root.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_root_all_values.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_root_no_data.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_root_required_values.pat.json -# modified: hivemind/tavern/database_api_patterns/list_comments_root_required_values_comments.pat.json -# modified: hivemind/tavern/follow_api_patterns/get_account_reputations.pat.json -# modified: hivemind/tavern/follow_api_patterns/get_blog.pat.json -# modified: hivemind/tavern/follow_api_patterns/get_blog_entries.pat.json -# modified: hivemind/tavern/follow_api_patterns/get_followers.pat.json -# modified: hivemind/tavern/follow_api_patterns/get_following.pat.json -# modified: hivemind/tavern/tags_api_patterns/get_comment_discussions_by_payout.pat.json -# modified: hivemind/tavern/tags_api_patterns/get_content_replies.pat.json -# modified: hivemind/tavern/tags_api_patterns/get_discussion.pat.json -# modified: hivemind/tavern/tags_api_patterns/get_discussions_by_author_before_date.pat.json -# modified: hivemind/tavern/tags_api_patterns/get_discussions_by_blog.pat.json -# modified: hivemind/tavern/tags_api_patterns/get_discussions_by_comments.pat.json -# modified: hivemind/tavern/tags_api_patterns/get_discussions_by_created.pat.json -# modified: hivemind/tavern/tags_api_patterns/get_discussions_by_hot.pat.json -# modified: hivemind/tavern/tags_api_patterns/get_discussions_by_promoted.pat.json -# modified: hivemind/tavern/tags_api_patterns/get_discussions_by_trending.pat.json -# modified: hivemind/tavern/tags_api_patterns/get_post_discussions_by_payout.pat.json -# modified: hivemind/tavern/test_bridge_api_patterns.tavern.yaml -# modified: hivemind/tavern/test_condenser_api_patterns.tavern.yaml -# modified: hivemind/tavern/test_database_api_patterns.tavern.yaml -# modified: hivemind/tavern/test_follow_api_patterns.tavern.yaml -# modified: hivemind/tavern/test_tags_api_patterns.tavern.yaml -# modified: hivemind/tavern/validate_response.py -# - -*** File '(Unnamed)' -./scripts/ci_start_api_smoketest.sh -./scripts/ci_start_api_smoketest.sh -./scripts/ci_start_api_smoketest.sh -jeden -/home/dev/hivemind/.git/modules/tests/tests_api/COMMIT_EDITMSG - -*** File '* Startup Log *' -Processing '/etc/joe/editorrc'... -Processing '/etc/joe/ftyperc'... -Finished processing /etc/joe/ftyperc -Finished processing /etc/joe/editorrc diff --git a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.orig.json b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.orig.json index 6c667880..486cb40a 100644 --- a/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.orig.json +++ b/hivemind/tavern/bridge_api_patterns/get_account_posts_sort_blog.orig.json @@ -439,4 +439,4 @@ "updated": "2016-03-30T18:30:18", "url": "/meta/@steemit/firstpost" } -] \ No newline at end of file +] diff --git a/hivemind/tavern/bridge_api_patterns/get_payout_stats_10.orig.json b/hivemind/tavern/bridge_api_patterns/get_payout_stats_10.orig.json new file mode 100644 index 00000000..b1c22b5e --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_payout_stats_10.orig.json @@ -0,0 +1,76 @@ +{ + "blogs": 1862448.272, + "items": [ + [ + "@charlieshrem", + "@charlieshrem", + 62129.025, + 142, + null + ], + [ + "@ericvancewalton", + "@ericvancewalton", + 58181.592, + 678, + null + ], + [ + "@gavvet", + "@gavvet", + 48153.825, + 206, + null + ], + [ + "@dollarvigilante", + "@dollarvigilante", + 36194.554, + 141, + null + ], + [ + "@knozaki2015", + "@knozaki2015", + 34414.827, + 918, + null + ], + [ + "@sirwinchester", + "@sirwinchester", + 31843.607, + 992, + null + ], + [ + "@calaber24p", + "@calaber24p", + 29554.962, + 181, + null + ], + [ + "@sascha", + "@sascha", + 27419.049, + 187, + null + ], + [ + "@terrycraft", + "@terrycraft", + 24246.728, + 200, + null + ], + [ + "@dragonslayer109", + "@dragonslayer109", + 23209.361, + 374, + null + ] + ], + "total": 1862448.272 +} diff --git a/hivemind/tavern/bridge_api_patterns/get_payout_stats_10.pat.json b/hivemind/tavern/bridge_api_patterns/get_payout_stats_10.pat.json index e6781158..4fb322df 100644 --- a/hivemind/tavern/bridge_api_patterns/get_payout_stats_10.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_payout_stats_10.pat.json @@ -1,77 +1,76 @@ { - "blogs": 1862448.272, - "items": [ - [ - "@charlieshrem", - "@charlieshrem", - 62129.025, - 142, - null - ], - [ - "@ericvancewalton", - "@ericvancewalton", - 58181.592, - 678, - null - ], - [ - "@gavvet", - "@gavvet", - 48153.825, - 206, - null - ], - [ - "@dollarvigilante", - "@dollarvigilante", - 36194.554, - 141, - null - ], - [ - "@knozaki2015", - "@knozaki2015", - 34414.827, - 918, - null - ], - [ - "@sirwinchester", - "@sirwinchester", - 31843.607, - 992, - null - ], - [ - "@calaber24p", - "@calaber24p", - 29554.962, - 181, - null - ], - [ - "@sascha", - "@sascha", - 27419.049, - 187, - null - ], - [ - "@terrycraft", - "@terrycraft", - 24246.728, - 200, - null - ], - [ - "@dragonslayer109", - "@dragonslayer109", - 23209.361, - 374, - null - ] + "blogs": 1866810.081, + "items": [ + [ + "@charlieshrem", + "@charlieshrem", + 62150.551, + 142, + null ], - "total": 1862448.272 - } - \ No newline at end of file + [ + "@ericvancewalton", + "@ericvancewalton", + 58178.554, + 678, + null + ], + [ + "@gavvet", + "@gavvet", + 48152.134, + 206, + null + ], + [ + "@dollarvigilante", + "@dollarvigilante", + 36198.94, + 141, + null + ], + [ + "@knozaki2015", + "@knozaki2015", + 34424.306, + 918, + null + ], + [ + "@sirwinchester", + "@sirwinchester", + 31862.079, + 992, + null + ], + [ + "@calaber24p", + "@calaber24p", + 29553.355, + 181, + null + ], + [ + "@sascha", + "@sascha", + 27422.313, + 187, + null + ], + [ + "@terrycraft", + "@terrycraft", + 24244.681, + 200, + null + ], + [ + "@dragonslayer109", + "@dragonslayer109", + 23214.814, + 374, + null + ] + ], + "total": 1866810.081 +} diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.orig.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.orig.json index 93da2992..8bd0de7b 100644 --- a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.orig.json +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.orig.json @@ -1,7 +1,6 @@ { - "follows": false, - "follows_blacklists": false, - "ignores": false, - "is_blacklisted": false - } - \ No newline at end of file + "follows": false, + "follows_blacklists": false, + "ignores": false, + "is_blacklisted": false +} diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.pat.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.pat.json index d8a2d9f2..8bd0de7b 100644 --- a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts.pat.json @@ -1,6 +1,6 @@ { - "follows": false, - "follows_blacklists": false, - "ignores": false, - "is_blacklisted": false + "follows": false, + "follows_blacklists": false, + "ignores": false, + "is_blacklisted": false } diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_change_accounts.orig.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_change_accounts.orig.json new file mode 100644 index 00000000..8bd0de7b --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_change_accounts.orig.json @@ -0,0 +1,6 @@ +{ + "follows": false, + "follows_blacklists": false, + "ignores": false, + "is_blacklisted": false +} diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_change_accounts.pat.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_change_accounts.pat.json index 93da2992..8bd0de7b 100644 --- a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_change_accounts.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_change_accounts.pat.json @@ -1,7 +1,6 @@ { - "follows": false, - "follows_blacklists": false, - "ignores": false, - "is_blacklisted": false - } - \ No newline at end of file + "follows": false, + "follows_blacklists": false, + "ignores": false, + "is_blacklisted": false +} diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state.orig.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state.orig.json new file mode 100644 index 00000000..04ef1c5a --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state.orig.json @@ -0,0 +1,6 @@ +{ + "follows": true, + "follows_blacklists": false, + "ignores": false, + "is_blacklisted": false +} diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state.pat.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state.pat.json index 74a70824..04ef1c5a 100644 --- a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state.pat.json @@ -1,7 +1,6 @@ { - "follows": true, - "follows_blacklists": false, - "ignores": false, - "is_blacklisted": false - } - \ No newline at end of file + "follows": true, + "follows_blacklists": false, + "ignores": false, + "is_blacklisted": false +} diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2.orig.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2.orig.json new file mode 100644 index 00000000..cd415f98 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2.orig.json @@ -0,0 +1,6 @@ +{ + "follows": false, + "follows_blacklists": false, + "ignores": true, + "is_blacklisted": false +} diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2.pat.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2.pat.json index f75de7a2..cd415f98 100644 --- a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2.pat.json +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2.pat.json @@ -1,7 +1,6 @@ { - "follows": false, - "follows_blacklists": false, - "ignores": true, - "is_blacklisted": false - } - \ No newline at end of file + "follows": false, + "follows_blacklists": false, + "ignores": true, + "is_blacklisted": false +} diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2_observer.orig.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2_observer.orig.json new file mode 100644 index 00000000..cd415f98 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2_observer.orig.json @@ -0,0 +1,6 @@ +{ + "follows": false, + "follows_blacklists": false, + "ignores": true, + "is_blacklisted": false +} diff --git a/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2_observer.pat.json b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2_observer.pat.json new file mode 100644 index 00000000..cd415f98 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/get_relationship_between_accounts_true_state_2_observer.pat.json @@ -0,0 +1,6 @@ +{ + "follows": false, + "follows_blacklists": false, + "ignores": true, + "is_blacklisted": false +} diff --git a/hivemind/tavern/bridge_api_patterns/list_all_subscriptions_pos_arg.orig.json b/hivemind/tavern/bridge_api_patterns/list_all_subscriptions_pos_arg.orig.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/list_all_subscriptions_pos_arg.orig.json @@ -0,0 +1 @@ +[] diff --git a/hivemind/tavern/bridge_api_patterns/list_pop_communities_author.pat.json b/hivemind/tavern/bridge_api_patterns/list_all_subscriptions_pos_arg.pat.json similarity index 100% rename from hivemind/tavern/bridge_api_patterns/list_pop_communities_author.pat.json rename to hivemind/tavern/bridge_api_patterns/list_all_subscriptions_pos_arg.pat.json diff --git a/hivemind/tavern/bridge_api_patterns/list_subscribers_pos_arg.orig.json b/hivemind/tavern/bridge_api_patterns/list_subscribers_pos_arg.orig.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/list_subscribers_pos_arg.orig.json @@ -0,0 +1 @@ +[] diff --git a/hivemind/tavern/bridge_api_patterns/list_subscribers_pos_arg.pat.json b/hivemind/tavern/bridge_api_patterns/list_subscribers_pos_arg.pat.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/list_subscribers_pos_arg.pat.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns_error/get_community_context_community_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/get_community_context_community_error.orig.json new file mode 100644 index 00000000..b08409bd --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/get_community_context_community_error.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "community not found", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_community_context_community_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/get_community_context_community_error.pat.json new file mode 100644 index 00000000..b08409bd --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/get_community_context_community_error.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "community not found", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_community_context_community_error.patj.json b/hivemind/tavern/bridge_api_patterns_error/get_community_context_community_error.patj.json deleted file mode 100644 index d453e0b9..00000000 --- a/hivemind/tavern/bridge_api_patterns_error/get_community_context_community_error.patj.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "code": -32602, - "data": "community not found", - "message": "Invalid parameters" -} \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_empty_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_empty_error.orig.json new file mode 100644 index 00000000..bdf88c65 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_empty_error.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32000, + "data": "ValueError: invalid literal for int() with base 10: ''", + "message": "Server error" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_empty_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_empty_error.pat.json index 83dc5f6a..bdf88c65 100644 --- a/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_empty_error.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_empty_error.pat.json @@ -1,5 +1,5 @@ { - "code": -32000, - "data": "ValueError: invalid literal for int() with base 10: ''", - "message": "Server error" -} \ No newline at end of file + "code": -32000, + "data": "ValueError: invalid literal for int() with base 10: ''", + "message": "Server error" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error.orig.json new file mode 100644 index 00000000..9f9bad6e --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit must be positive", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error.pat.json index 2656bb31..9f9bad6e 100644 --- a/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error.pat.json @@ -1,5 +1,5 @@ { - "code": -32602, - "data": "limit must be positive", - "message": "Invalid parameters" -} \ No newline at end of file + "code": -32602, + "data": "limit must be positive", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error_v2.orig.json b/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error_v2.orig.json new file mode 100644 index 00000000..3c877003 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error_v2.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "too many positional arguments", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error_v2.pat.json b/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error_v2.pat.json index eda3ac98..3c877003 100644 --- a/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error_v2.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/get_payout_stats_error_v2.pat.json @@ -1,5 +1,5 @@ { - "code": -32602, - "data": "too many positional arguments", - "message": "Invalid parameters" -} \ No newline at end of file + "code": -32602, + "data": "too many positional arguments", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_profile_empty_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/get_profile_empty_error.orig.json new file mode 100644 index 00000000..8501b1d0 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/get_profile_empty_error.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "'account' parameter lacking default value", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_profile_empty_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/get_profile_empty_error.pat.json index 5a4cc02b..a9190fad 100644 --- a/hivemind/tavern/bridge_api_patterns_error/get_profile_empty_error.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/get_profile_empty_error.pat.json @@ -1,5 +1,5 @@ { - "code": -32602, - "data": "'account' parameter lacking default value", - "message": "Invalid parameters" -} \ No newline at end of file + "code": -32602, + "data": "missing a required argument: 'account'", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_profile_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/get_profile_error.orig.json new file mode 100644 index 00000000..77223ceb --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/get_profile_error.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid account name type", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_profile_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/get_profile_error.pat.json index a1dc7412..77223ceb 100644 --- a/hivemind/tavern/bridge_api_patterns_error/get_profile_error.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/get_profile_error.pat.json @@ -1,5 +1,5 @@ { - "code": -32602, - "data": "invalid account name type", - "message": "Invalid parameters" -} \ No newline at end of file + "code": -32602, + "data": "invalid account name type", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_profile_number_account.orig.json b/hivemind/tavern/bridge_api_patterns_error/get_profile_number_account.orig.json new file mode 100644 index 00000000..ec747fa4 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/get_profile_number_account.orig.json @@ -0,0 +1 @@ +null \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns_error/get_profile_number_account.pat.json b/hivemind/tavern/bridge_api_patterns_error/get_profile_number_account.pat.json new file mode 100644 index 00000000..47229108 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/get_profile_number_account.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "account '468' does not exist", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error.orig.json new file mode 100644 index 00000000..84e44650 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "'account2' parameter lacking default value", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error.pat.json index 6b995e06..a631c607 100644 --- a/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error.pat.json @@ -1,5 +1,5 @@ { - "code": -32602, - "data": "'account2' parameter lacking default value", - "message": "Invalid parameters" -} \ No newline at end of file + "code": -32602, + "data": "missing a required argument: 'account2'", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v2.orig.json b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v2.orig.json new file mode 100644 index 00000000..b41fc15c --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v2.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "'account1' parameter lacking default value", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v2.pat.json b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v2.pat.json index 2703adc2..07b82fd8 100644 --- a/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v2.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v2.pat.json @@ -1,5 +1,5 @@ { - "code": -32602, - "data": "'account1' parameter lacking default value", - "message": "Invalid parameters" -} \ No newline at end of file + "code": -32602, + "data": "missing a required argument: 'account1'", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v3.orig.json b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v3.orig.json new file mode 100644 index 00000000..d6fea406 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v3.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid account (not specified)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v3.pat.json b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v3.pat.json index 58383e9b..d6fea406 100644 --- a/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v3.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v3.pat.json @@ -1,5 +1,5 @@ { - "code": -32700, - "data": "Expecting property name enclosed in double quotes: line 4 column 43 (char 118)", - "message": "Invalid JSON" -} \ No newline at end of file + "code": -32602, + "data": "invalid account (not specified)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v4.orig.json b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v4.orig.json new file mode 100644 index 00000000..d6fea406 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v4.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "invalid account (not specified)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v4.pat.json b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v4.pat.json index 6a02858a..d6fea406 100644 --- a/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v4.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/get_relationship_between_accounts_error_v4.pat.json @@ -1,5 +1,5 @@ { - "code": -32602, - "data": "invalid account (not specified)", - "message": "Invalid parameters" -} \ No newline at end of file + "code": -32602, + "data": "invalid account (not specified)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_trending_topics_negative_limit.orig.json b/hivemind/tavern/bridge_api_patterns_error/get_trending_topics_negative_limit.orig.json new file mode 100644 index 00000000..9f9bad6e --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/get_trending_topics_negative_limit.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit must be positive", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/get_trending_topics_negative_limit.pat.json b/hivemind/tavern/bridge_api_patterns_error/get_trending_topics_negative_limit.pat.json new file mode 100644 index 00000000..9f9bad6e --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/get_trending_topics_negative_limit.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit must be positive", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error.orig.json new file mode 100644 index 00000000..7fc7c91c --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "account not found: `wyuh`", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error.pat.json index d348a0ed..7fc7c91c 100644 --- a/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error.pat.json @@ -1,5 +1,5 @@ { - "code": -32602, - "data": "account not found: `wyuh`", - "message": "Invalid parameters" -} \ No newline at end of file + "code": -32602, + "data": "account not found: `wyuh`", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v2.orig.json b/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v2.orig.json new file mode 100644 index 00000000..d1cd43cc --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v2.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "no account name specified", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v2.pat.json b/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v2.pat.json index 11836bc5..d1cd43cc 100644 --- a/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v2.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v2.pat.json @@ -1,5 +1,5 @@ { - "code": -32602, - "data": "no account name specified", - "message": "Invalid parameters" -} \ No newline at end of file + "code": -32602, + "data": "no account name specified", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v3.orig.json b/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v3.orig.json new file mode 100644 index 00000000..8501b1d0 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v3.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "'account' parameter lacking default value", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v3.pat.json b/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v3.pat.json index 5a4cc02b..a9190fad 100644 --- a/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v3.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/list_all_subscriptions_wrong_account_error_v3.pat.json @@ -1,5 +1,5 @@ { - "code": -32602, - "data": "'account' parameter lacking default value", - "message": "Invalid parameters" -} \ No newline at end of file + "code": -32602, + "data": "missing a required argument: 'account'", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_empty_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_empty_error.orig.json new file mode 100644 index 00000000..bdf88c65 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_empty_error.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32000, + "data": "ValueError: invalid literal for int() with base 10: ''", + "message": "Server error" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_empty_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_empty_error.pat.json index 83dc5f6a..bdf88c65 100644 --- a/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_empty_error.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_empty_error.pat.json @@ -1,5 +1,5 @@ { - "code": -32000, - "data": "ValueError: invalid literal for int() with base 10: ''", - "message": "Server error" -} \ No newline at end of file + "code": -32000, + "data": "ValueError: invalid literal for int() with base 10: ''", + "message": "Server error" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_error.orig.json new file mode 100644 index 00000000..8ec756b2 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_error.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32000, + "data": "ValueError: invalid literal for int() with base 10: 'steemit'", + "message": "Server error" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_error.pat.json index 63457bb6..8ec756b2 100644 --- a/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_error.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_error.pat.json @@ -1,5 +1,5 @@ { - "code": -32000, - "data": "ValueError: invalid literal for int() with base 10: 'steemit'", - "message": "Server error" -} \ No newline at end of file + "code": -32000, + "data": "ValueError: invalid literal for int() with base 10: 'steemit'", + "message": "Server error" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_limit_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_limit_error.orig.json new file mode 100644 index 00000000..7eb1ef55 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_limit_error.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "limit exceeds max (77 > 25)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_limit_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_limit_error.pat.json index f9c57df0..7eb1ef55 100644 --- a/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_limit_error.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_limit_error.pat.json @@ -1,5 +1,5 @@ { - "code": -32602, - "data": "limit exceeds max (77 > 25)", - "message": "Invalid parameters" -} \ No newline at end of file + "code": -32602, + "data": "limit exceeds max (77 > 25)", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_server_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_server_error.orig.json new file mode 100644 index 00000000..62ad8d9c --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_server_error.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32000, + "data": "InvalidRequestError: A value is required for bind parameter 'cutoff' (Background on this error at: http://sqlalche.me/e/13/cd3x)", + "message": "Server error" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_server_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_server_error.pat.json index 4792e474..62ad8d9c 100644 --- a/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_server_error.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_server_error.pat.json @@ -1,5 +1,5 @@ { - "code": -32000, - "data": "InvalidRequestError: A value is required for bind parameter 'cutoff' (Background on this error at: http://sqlalche.me/e/13/cd3x)", - "message": "Server error" -} \ No newline at end of file + "code": -32000, + "data": "InvalidRequestError: A value is required for bind parameter 'cutoff' (Background on this error at: http://sqlalche.me/e/13/cd3x)", + "message": "Server error" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_to_many_args_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_to_many_args_error.orig.json new file mode 100644 index 00000000..3c877003 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_to_many_args_error.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "too many positional arguments", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_to_many_args_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_to_many_args_error.pat.json index eda3ac98..3c877003 100644 --- a/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_to_many_args_error.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/list_pop_communities_to_many_args_error.pat.json @@ -1,5 +1,5 @@ { - "code": -32602, - "data": "too many positional arguments", - "message": "Invalid parameters" -} \ No newline at end of file + "code": -32602, + "data": "too many positional arguments", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error.orig.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error.orig.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error.pat.json index fa51d7e1..fe51488c 100644 --- a/hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error.pat.json @@ -1,5 +1 @@ -{ - "code": -32700, - "data": "Expecting value: line 4 column 12 (char 70)", - "message": "Invalid JSON" -} \ No newline at end of file +[] diff --git a/hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error_v2.orig.json b/hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error_v2.orig.json new file mode 100644 index 00000000..106e2cec --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error_v2.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32000, + "data": "UndefinedFunction: operator does not exist: character varying = integer\nLINE 1: SELECT id FROM hive_communities WHERE name = 789\n ^\nHINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.\n", + "message": "Server error" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error_v2.pat.json b/hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error_v2.pat.json index ec62d81b..106e2cec 100644 --- a/hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error_v2.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/list_subscribers_account_error_v2.pat.json @@ -1,5 +1,5 @@ { - "code": -32000, - "data": "UndefinedFunction: operator does not exist: character varying = integer\nLINE 1: SELECT id FROM hive_communities WHERE name = 789\n ^\nHINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.\n", - "message": "Server error" -} \ No newline at end of file + "code": -32000, + "data": "UndefinedFunction: operator does not exist: character varying = integer\nLINE 1: SELECT id FROM hive_communities WHERE name = 789\n ^\nHINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.\n", + "message": "Server error" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_subscribers_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/list_subscribers_error.orig.json new file mode 100644 index 00000000..fc42bc75 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/list_subscribers_error.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "'community' parameter lacking default value", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/list_subscribers_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/list_subscribers_error.pat.json index c289ffd0..77446f4c 100644 --- a/hivemind/tavern/bridge_api_patterns_error/list_subscribers_error.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/list_subscribers_error.pat.json @@ -1,5 +1,5 @@ { - "code": -32602, - "data": "'community' parameter lacking default value", - "message": "Invalid parameters" -} \ No newline at end of file + "code": -32602, + "data": "missing a required argument: 'community'", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/post_notifications_author_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/post_notifications_author_error.orig.json new file mode 100644 index 00000000..ac87cbea --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/post_notifications_author_error.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "post id not found", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/post_notifications_author_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/post_notifications_author_error.pat.json index 6b8f8cfc..ac87cbea 100644 --- a/hivemind/tavern/bridge_api_patterns_error/post_notifications_author_error.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/post_notifications_author_error.pat.json @@ -1,5 +1,5 @@ { - "code": -32602, - "data": "post id not found", - "message": "Invalid parameters" -} \ No newline at end of file + "code": -32602, + "data": "post id not found", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/post_notifications_empty_error.orig.json b/hivemind/tavern/bridge_api_patterns_error/post_notifications_empty_error.orig.json new file mode 100644 index 00000000..c2cdccfc --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/post_notifications_empty_error.orig.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "'permlink' parameter lacking default value", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/bridge_api_patterns_error/post_notifications_empty_error.pat.json b/hivemind/tavern/bridge_api_patterns_error/post_notifications_empty_error.pat.json index 964d2e93..5b47a96a 100644 --- a/hivemind/tavern/bridge_api_patterns_error/post_notifications_empty_error.pat.json +++ b/hivemind/tavern/bridge_api_patterns_error/post_notifications_empty_error.pat.json @@ -1,5 +1,5 @@ { - "code": -32602, - "data": "'permlink' parameter lacking default value", - "message": "Invalid parameters" -} \ No newline at end of file + "code": -32602, + "data": "missing a required argument: 'permlink'", + "message": "Invalid parameters" +} diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index 69c88fcc..75ff36ea 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -56,8 +56,6 @@ method: "get_post_header_gtg" directory: "bridge_api_patterns" - - --- test_name: Hivemind bridge_api.get_discussion patterns test # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge @@ -118,36 +116,6 @@ method: "get_discussion_gtg" directory: "bridge_api_patterns" ---- - test_name: Hivemind bridge_api.get_discussion non existing permlink patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest - - - includes: - - !include common.yaml - - stages: - - name: get_discussion - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_discussion" - params: {"author":"gtg", "permlink":"not_existing_permlink"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_discussion_not_existing_permlink" - directory: "bridge_api_patterns" - --- test_name: Hivemind bridge_api.get_post patterns test # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge @@ -409,8 +377,6 @@ method: "get_ranked_posts" directory: "bridge_api_patterns" - - --- test_name: Hivemind bridge_api.get_ranked_posts hot patterns test @@ -439,13 +405,12 @@ extra_kwargs: method: "get_ranked_posts_hot" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_ranked_posts created patterns test marks: - patterntest - - failing - - xfail # beneficiaries as dictionary includes: - !include common.yaml @@ -498,6 +463,7 @@ extra_kwargs: method: "get_ranked_posts_promoted" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_ranked_posts payout patterns test @@ -526,6 +492,7 @@ extra_kwargs: method: "get_ranked_posts_payout" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_ranked_posts payout_comments patterns test @@ -556,6 +523,7 @@ extra_kwargs: method: "get_ranked_posts_payout_comments" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_ranked_posts muted patterns test @@ -705,8 +673,6 @@ method: "get_profile_gtg" directory: "bridge_api_patterns" - - --- test_name: Hivemind bridge_api.get_trending_topics patterns test # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge @@ -888,16 +854,16 @@ directory: "bridge_api_patterns" --- - test_name: Hivemind bridge_api.list_communities patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + test_name: Hivemind bridge_api.get_payout_stats patterns test 10 + marks: - - patterntest # no nonempty result possible for 5mln set + - patterntest includes: - !include common.yaml stages: - - name: list_communities + - name: get_payout_stats request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -906,19 +872,19 @@ json: jsonrpc: "2.0" id: 1 - method: "bridge.list_communities" - params: {"limit":1} + method: "bridge.get_payout_stats" + params: [10] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "list_communities" + method: "get_payout_stats_10" directory: "bridge_api_patterns" --- - test_name: Hivemind bridge_api.list_community_roles patterns test - + test_name: Hivemind bridge_api.list_communities patterns test + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest # no nonempty result possible for 5mln set @@ -926,7 +892,7 @@ - !include common.yaml stages: - - name: list_community_roles + - name: list_communities request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -935,19 +901,19 @@ json: jsonrpc: "2.0" id: 1 - method: "bridge.list_community_roles" - params: {"community":"hive-123456"} + method: "bridge.list_communities" + params: {"limit":1} response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "list_community_roles" + method: "list_communities" directory: "bridge_api_patterns" --- - test_name: Hivemind bridge_api.list_subscribers patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + test_name: Hivemind bridge_api.list_community_roles patterns test + marks: - patterntest # no nonempty result possible for 5mln set @@ -955,7 +921,7 @@ - !include common.yaml stages: - - name: list_subscribers + - name: list_community_roles request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -964,19 +930,19 @@ json: jsonrpc: "2.0" id: 1 - method: "bridge.list_subscribers" + method: "bridge.list_community_roles" params: {"community":"hive-123456"} response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "list_subscribers" + method: "list_community_roles" directory: "bridge_api_patterns" --- - test_name: Hivemind bridge_api.list_all_subscriptions patterns test - + test_name: Hivemind bridge_api.list_subscribers patterns test + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest # no nonempty result possible for 5mln set @@ -984,7 +950,7 @@ - !include common.yaml stages: - - name: list_all_subscriptions + - name: list_subscribers request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -993,27 +959,26 @@ json: jsonrpc: "2.0" id: 1 - method: "bridge.list_all_subscriptions" - params: {"account":"steemit"} + method: "bridge.list_subscribers" + params: {"community":"hive-123456"} response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "list_all_subscriptions" + method: "list_subscribers" directory: "bridge_api_patterns" --- - test_name: Hivemind bridge_api.list_all_subscriptions patterns test - + test_name: Hivemind bridge_api.list_subscribers patterns test # not documented marks: - - patterntest # same with params: {account: "steemit"} - # no nonempty result possible for 5mln set + - patterntest # no nonempty result possible for 5mln set + includes: - !include common.yaml stages: - - name: list_all_subscriptions + - name: list_subscribers request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -1022,26 +987,27 @@ json: jsonrpc: "2.0" id: 1 - method: "bridge.list_all_subscriptions" - params: ["steemit"] + method: "bridge.list_subscribers" + params: ["789"] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "list_all_subscriptions" + method: "list_subscribers_pos_arg" directory: "bridge_api_patterns" --- - test_name: Hivemind bridge_api.list_subscribers patterns test # not documented + test_name: Hivemind bridge_api.list_all_subscriptions patterns test + marks: - - patterntest + - patterntest # no nonempty result possible for 5mln set includes: - !include common.yaml stages: - - name: list_subscribers + - name: list_all_subscriptions request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -1050,8 +1016,8 @@ json: jsonrpc: "2.0" id: 1 - method: "bridge.list_subscribers" - params: ["789"] + method: "bridge.list_all_subscriptions" + params: {"account":"steemit"} response: status_code: 200 verify_response_with: @@ -1061,16 +1027,16 @@ directory: "bridge_api_patterns" --- - test_name: Hivemind bridge_api.get_payout_stats patterns test 10 + test_name: Hivemind bridge_api.list_all_subscriptions patterns test marks: - - patterntest + - patterntest # same with params: {account: "steemit"} # no nonempty result possible for 5mln set includes: - !include common.yaml stages: - - name: get_payout_stats + - name: list_all_subscriptions request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -1079,17 +1045,16 @@ json: jsonrpc: "2.0" id: 1 - method: "bridge.get_payout_stats" - params: [10] + method: "bridge.list_all_subscriptions" + params: ["steemit"] response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_payout_stats_10" + method: "list_all_subscriptions_pos_arg" directory: "bridge_api_patterns" - --- test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge @@ -1120,6 +1085,7 @@ extra_kwargs: method: "get_relationship_between_accounts" directory: "bridge_api_patterns" + --- test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge @@ -1208,7 +1174,7 @@ verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_relationship_between_accounts_true_state_2" + method: "get_relationship_between_accounts_true_state_2_observer" directory: "bridge_api_patterns" @@ -1241,61 +1207,6 @@ method: "get_relationship_between_accounts_change_accounts" directory: "bridge_api_patterns" - test_name: Hivemind bridge_api.get_profile patterns test - #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_profile - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_profile" - params: {"account":"468"} - response: - status_code: 200 - verify_response_with: - function: validate_response:null_result - - ---- - test_name: Hivemind bridge_api.get_trending_topics patterns over limit test - # not documented - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_trending_topics over limit - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_trending_topics" - params: {"limit": "-7"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_error_data - extra_kwargs: - data: "limit must be positive" - --- test_name: Hivemind bridge_api.get_relationship_between_accounts follows patterns test @@ -1353,5 +1264,5 @@ extra_kwargs: method: "get_relationship_between_accounts_ignores" directory: "bridge_api_patterns" - + # get_relationship_between_accounts is_blacklisted and follows_blacklists should be implemented after switching to tests over 5 mln blocks. diff --git a/hivemind/tavern/test_bridge_api_patterns_error.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns_error.tavern.yaml index 31bde8c4..7041d2a7 100644 --- a/hivemind/tavern/test_bridge_api_patterns_error.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns_error.tavern.yaml @@ -28,7 +28,37 @@ directory: "bridge_api_patterns_error" error_response: true ignore_tags: ["timestamp"] - + +--- + test_name: Hivemind bridge_api.get_discussion non existing permlink patterns test + # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + marks: + - patterntest + + + includes: + - !include common.yaml + + stages: + - name: get_discussion + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_discussion" + params: {"author":"gtg", "permlink":"not_existing_permlink"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_discussion_not_existing_permlink" + directory: "bridge_api_patterns_error" + --- test_name: Hivemind bridge_api.get_ranked_posts sort invalid patterns test @@ -90,6 +120,38 @@ error_response: true ignore_tags: ["timestamp"] +--- + test_name: Hivemind bridge_api.get_profile patterns test + #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + + marks: + - patterntest # original gives no error, just no result + + includes: + - !include common.yaml + + stages: + - name: get_profile + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_profile" + params: {"account":"468"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_profile_number_account" + directory: "bridge_api_patterns_error" + error_response: true + ignore_tags: ["timestamp"] + --- test_name: Hivemind bridge_api.get_trending_topics patterns over limit test @@ -120,6 +182,36 @@ directory: "bridge_api_patterns_error" error_response: true +--- + test_name: Hivemind bridge_api.get_trending_topics patterns over limit test + # not documented + marks: + - patterntest + + includes: + - !include common.yaml + + stages: + - name: get_trending_topics over limit + request: + url: "{service.proto:s}://{service.server:s}:{service.port}/" + method: POST + headers: + content-type: application/json + json: + jsonrpc: "2.0" + id: 1 + method: "bridge.get_trending_topics" + params: {"limit": "-7"} + response: + status_code: 200 + verify_response_with: + function: validate_response:compare_response_with_pattern + extra_kwargs: + method: "get_trending_topics_negative_limit" + directory: "bridge_api_patterns_error" + error_response: true + --- test_name: Hivemind bridge_api.get_payout_stats over limit test # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge @@ -302,11 +394,9 @@ --- test_name: Hivemind bridge_api.list_subscribers patterns test # not documented - # failed - tavern response: [] marks: - - patterntest - - xfail + - patterntest # error should be generated here, but we get empty result (like in original) includes: - !include common.yaml @@ -330,12 +420,11 @@ extra_kwargs: method: "list_subscribers_account_error" directory: "bridge_api_patterns_error" - error_response: true --- test_name: Hivemind bridge_api.list_subscribers patterns test # not documented marks: - - patterntest + - patterntest # change to proper error, missing check on type of argument includes: - !include common.yaml @@ -425,7 +514,7 @@ test_name: Hivemind bridge_api.get_payout_stats patterns test 10 marks: - - patterntest + - patterntest # it should be changed to proper error, currrent server error is barely acceptable in that case includes: - !include common.yaml @@ -456,7 +545,7 @@ # author and permlink must be both to find post id marks: - - patterntest + - patterntest # maybe post 'steemit/' not found would be better includes: - !include common.yaml @@ -518,7 +607,7 @@ # no nonempty result possible for 5mln set marks: - - patterntest + - patterntest # change to proper error, server error is barely acceptable here includes: @@ -549,7 +638,7 @@ test_name: Hivemind bridge_api.list_pop_communities patterns test # 8080 023 marks: - - patterntest + - patterntest # change to proper error, server error is barely acceptable here includes: - !include common.yaml @@ -639,7 +728,7 @@ test_name: Hivemind bridge_api.list_pop_communities patterns test # 8080 marks: - - patterntest + - patterntest # change to proper error, server error is barely acceptable here includes: - !include common.yaml @@ -664,6 +753,7 @@ method: "list_pop_communities_server_error" directory: "bridge_api_patterns_error" error_response: true + --- test_name: Hivemind bridge_api.get_community_context patterns test # 8080 # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge @@ -875,3 +965,4 @@ method: "get_profile_empty_error" directory: "bridge_api_patterns_error" error_response: true + -- GitLab From 7aaeec52790bf61ff237198680a1f30c4b5697e0 Mon Sep 17 00:00:00 2001 From: Paulina Czempiel Date: Tue, 1 Sep 2020 11:08:00 +0200 Subject: [PATCH 49/49] post_notifications tests --- ...st_notifications_account_permlink.pat.json | 803 ++++++++++ ...ns_account_permlink_last_it_votes.pat.json | 699 +++++++++ .../post_notifications_empty_params.pat.json | 5 + .../post_notifications_only_account.pat.json | 5 + hivemind/tavern/common.yaml | 2 +- hivemind/tavern/common.yaml~ | 9 + .../test_bridge_api_patterns.tavern.yaml | 1323 +---------------- ...test_bridge_api_patterns_error.tavern.yaml | 837 +---------- 8 files changed, 1546 insertions(+), 2137 deletions(-) create mode 100644 hivemind/tavern/bridge_api_patterns/post_notifications_account_permlink.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns/post_notifications_account_permlink_last_it_votes.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/post_notifications_empty_params.pat.json create mode 100644 hivemind/tavern/bridge_api_patterns_error/post_notifications_only_account.pat.json create mode 100644 hivemind/tavern/common.yaml~ diff --git a/hivemind/tavern/bridge_api_patterns/post_notifications_account_permlink.pat.json b/hivemind/tavern/bridge_api_patterns/post_notifications_account_permlink.pat.json new file mode 100644 index 00000000..e66f6a02 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/post_notifications_account_permlink.pat.json @@ -0,0 +1,803 @@ +[ + { + "date": "2020-04-23T19:44:15", + "id": 73298477, + "msg": "@nancybriti resteemed your post", + "score": 50, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-23T08:26:48", + "id": 73277652, + "msg": "@arabisouri voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-21T18:07:42", + "id": 73213313, + "msg": "@mdkironkhna resteemed your post", + "score": 30, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-21T15:52:06", + "id": 73208617, + "msg": "@lizelle resteemed your post", + "score": 50, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-21T15:51:51", + "id": 73208608, + "msg": "@lizelle voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-21T12:56:48", + "id": 73202012, + "msg": "@joanstewart resteemed your post", + "score": 50, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-18T22:52:21", + "id": 73098100, + "msg": "@yehey voted on your post ($0.49)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-18T13:38:33", + "id": 73079907, + "msg": "@karpnado voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T10:42:54", + "id": 73034548, + "msg": "@thepeakstudio voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T10:54:57", + "id": 73034547, + "msg": "@darthknight voted on your post ($18.97)", + "score": 100, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:00", + "id": 73034546, + "msg": "@vxn666 voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:21", + "id": 73034545, + "msg": "@steemonboarder voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:26:18", + "id": 73034544, + "msg": "@silverquest voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T19:01:12", + "id": 73034543, + "msg": "@roc75 voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:29:30", + "id": 73034542, + "msg": "@urtrailer voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:47:18", + "id": 73034541, + "msg": "@in-macro voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:18", + "id": 73034540, + "msg": "@coffeea.token voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T13:42:15", + "id": 73034539, + "msg": "@borjan voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:42:27", + "id": 73034538, + "msg": "@likwid voted on your post ($9.54)", + "score": 75, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:23:36", + "id": 73034537, + "msg": "@scholaris voted on your post ($0.09)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:26:51", + "id": 73034536, + "msg": "@star.lord voted on your post ($0.50)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T12:42:15", + "id": 73034535, + "msg": "@claudio83 voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T18:10:27", + "id": 73034534, + "msg": "@ttg voted on your post ($0.24)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T21:49:27", + "id": 73034533, + "msg": "@womic voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:54:30", + "id": 73034532, + "msg": "@eternalsuccess voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:15", + "id": 73034531, + "msg": "@smon-joa voted on your post ($0.06)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T20:20:33", + "id": 73034530, + "msg": "@jamesbattler voted on your post ($0.05)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T07:21:51", + "id": 73034529, + "msg": "@e-r-k-a-n voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T07:06:00", + "id": 73034528, + "msg": "@jeehun voted on your post ($0.24)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T12:54:42", + "id": 73034527, + "msg": "@pablo1601 voted on your post ($0.05)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:26:18", + "id": 73034526, + "msg": "@theycallmedan voted on your post ($2.79)", + "score": 75, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T05:50:09", + "id": 73034525, + "msg": "@michealb voted on your post ($1.07)", + "score": 75, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:26:15", + "id": 73034524, + "msg": "@milky-concrete voted on your post ($0.12)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:27", + "id": 73034523, + "msg": "@a-bot voted on your post ($0.07)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T10:55:00", + "id": 73034522, + "msg": "@tipsybosphorus voted on your post ($0.06)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T23:22:39", + "id": 73034521, + "msg": "@goumao voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T08:34:42", + "id": 73034520, + "msg": "@anttn voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:06", + "id": 73034519, + "msg": "@smartvote voted on your post ($0.16)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:39", + "id": 73034518, + "msg": "@therealnigerianp voted on your post ($0.08)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:00", + "id": 73034517, + "msg": "@blewitt voted on your post ($0.11)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-18T04:12:18", + "id": 73034516, + "msg": "@roger5120 voted on your post ($0.07)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T20:20:57", + "id": 73034515, + "msg": "@deepu7 voted on your post ($0.11)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:26:30", + "id": 73034514, + "msg": "@solarwarrior voted on your post ($0.51)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T22:55:51", + "id": 73034513, + "msg": "@cooltivar voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:12", + "id": 73034512, + "msg": "@steddyman voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:33:36", + "id": 73034511, + "msg": "@anggreklestari voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:39", + "id": 73034510, + "msg": "@competeapp voted on your post ($0.67)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:15", + "id": 73034509, + "msg": "@enforcer48 voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:24:24", + "id": 73034508, + "msg": "@nateaguila voted on your post ($0.11)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:30:30", + "id": 73034507, + "msg": "@pladozero voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:51:00", + "id": 73034506, + "msg": "@hafizullah voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:53:21", + "id": 73034505, + "msg": "@jancharlest voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:00", + "id": 73034504, + "msg": "@superlao voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:42:30", + "id": 73034503, + "msg": "@promobot voted on your post ($0.26)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-18T08:25:54", + "id": 73034502, + "msg": "@atmospheric-haze voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:44:15", + "id": 73034501, + "msg": "@payroll voted on your post ($0.18)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:22:54", + "id": 73034500, + "msg": "@kgakakillerg voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:50:57", + "id": 73034499, + "msg": "@hiddenblade voted on your post ($0.06)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:39", + "id": 73034498, + "msg": "@tsurmb voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:26:33", + "id": 73034497, + "msg": "@derangedvisions voted on your post ($0.48)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:26:09", + "id": 73034496, + "msg": "@dera123 voted on your post ($0.09)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:25:30", + "id": 73034495, + "msg": "@ronaldoavelino voted on your post ($0.17)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:59:33", + "id": 73034494, + "msg": "@abrockman voted on your post ($0.31)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:39", + "id": 73034493, + "msg": "@lionsuit voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:42", + "id": 73034492, + "msg": "@simplymike voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:48", + "id": 73034491, + "msg": "@tubcat voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:25:45", + "id": 73034490, + "msg": "@retinox voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:48", + "id": 73034489, + "msg": "@backinblackdevil voted on your post ($0.09)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:29:48", + "id": 73034488, + "msg": "@homeginkit voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:36:27", + "id": 73034487, + "msg": "@cryptictruth voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:25:18", + "id": 73034486, + "msg": "@whack.science voted on your post ($0.06)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:29:21", + "id": 73034485, + "msg": "@barge voted on your post ($0.06)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T12:01:15", + "id": 73034484, + "msg": "@shmoogleosukami voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:26:12", + "id": 73034483, + "msg": "@lemony-cricket voted on your post ($0.29)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:09", + "id": 73034482, + "msg": "@lunaticpandora voted on your post ($0.27)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T10:22:15", + "id": 73034481, + "msg": "@jlordc voted on your post ($0.05)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T13:12:36", + "id": 73034480, + "msg": "@luigiborla voted on your post ($0.23)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T08:02:33", + "id": 73034479, + "msg": "@lecumberre voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:38:48", + "id": 73034478, + "msg": "@vaansteam voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T04:43:57", + "id": 73034477, + "msg": "@jongolson voted on your post ($0.20)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T05:34:21", + "id": 73034476, + "msg": "@abitcoinskeptic voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:18", + "id": 73034475, + "msg": "@candyboy voted on your post ($0.12)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T22:59:33", + "id": 73034474, + "msg": "@olawalium voted on your post ($0.22)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:26:51", + "id": 73034473, + "msg": "@itchyfeetdonica voted on your post ($0.06)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T05:42:21", + "id": 73034472, + "msg": "@ocupation voted on your post ($0.08)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:54:30", + "id": 73034471, + "msg": "@hanen voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:23:00", + "id": 73034470, + "msg": "@xabi voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:24:24", + "id": 73034469, + "msg": "@imisstheoldkanye voted on your post ($0.09)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T14:22:00", + "id": 73034468, + "msg": "@familyprotection voted on your post ($0.28)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:29:51", + "id": 73034467, + "msg": "@ybanezkim26 voted on your post ($0.05)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:30", + "id": 73034466, + "msg": "@lays voted on your post ($0.22)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T20:05:12", + "id": 73034465, + "msg": "@traciyork voted on your post ($0.07)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T04:12:51", + "id": 73034464, + "msg": "@madushanka voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T05:33:09", + "id": 73034463, + "msg": "@florian-glechner voted on your post ($0.10)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T05:16:03", + "id": 73034462, + "msg": "@zoidsoft voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:30", + "id": 73034461, + "msg": "@andywong31 voted on your post ($0.35)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T07:38:54", + "id": 73034460, + "msg": "@krevasilis voted on your post ($0.08)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T11:44:42", + "id": 73034459, + "msg": "@revisesociology voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T04:21:00", + "id": 73034458, + "msg": "@joshman voted on your post ($0.17)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T05:26:06", + "id": 73034457, + "msg": "@celestal voted on your post ($0.22)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns/post_notifications_account_permlink_last_it_votes.pat.json b/hivemind/tavern/bridge_api_patterns/post_notifications_account_permlink_last_it_votes.pat.json new file mode 100644 index 00000000..37df2d67 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns/post_notifications_account_permlink_last_it_votes.pat.json @@ -0,0 +1,699 @@ +[ + { + "date": "2020-04-17T05:26:06", + "id": 73034457, + "msg": "@celestal voted on your post ($0.22)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T07:02:36", + "id": 73034456, + "msg": "@chinchilla voted on your post ($0.10)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T17:08:33", + "id": 73034455, + "msg": "@joalvarez voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:29:30", + "id": 73034454, + "msg": "@djlethalskillz voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:23:21", + "id": 73034453, + "msg": "@onetin84 voted on your post ($0.19)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:21", + "id": 73034452, + "msg": "@podnikatel voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-18T07:12:51", + "id": 73034451, + "msg": "@steemik voted on your post ($0.51)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T15:03:33", + "id": 73034450, + "msg": "@tegoshei voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:39", + "id": 73034449, + "msg": "@resiliencia voted on your post ($0.11)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-18T01:25:18", + "id": 73034448, + "msg": "@superhardness voted on your post ($2.32)", + "score": 75, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T16:34:33", + "id": 73034447, + "msg": "@bluemoon voted on your post ($0.06)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T19:38:15", + "id": 73034446, + "msg": "@jeffrey24864 voted on your post ($0.06)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T04:00:33", + "id": 73034445, + "msg": "@erickpinos voted on your post ($0.05)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:26:21", + "id": 73034444, + "msg": "@papilloncharity voted on your post ($0.08)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:30", + "id": 73034443, + "msg": "@theia7 voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:24:30", + "id": 73034442, + "msg": "@dandesign86 voted on your post ($0.07)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T09:36:45", + "id": 73034441, + "msg": "@ammonite voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T23:25:36", + "id": 73034440, + "msg": "@wf9877 voted on your post ($0.26)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:51", + "id": 73034439, + "msg": "@maxer27 voted on your post ($0.05)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:00", + "id": 73034438, + "msg": "@galenkp voted on your post ($0.51)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:24:21", + "id": 73034437, + "msg": "@steeminator3000 voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T12:25:24", + "id": 73034436, + "msg": "@giuatt07 voted on your post ($0.45)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:23:54", + "id": 73034435, + "msg": "@carolkean voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:26:09", + "id": 73034434, + "msg": "@djynn voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T04:24:06", + "id": 73034433, + "msg": "@trumpman voted on your post ($0.74)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:29:12", + "id": 73034432, + "msg": "@elteamgordo voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:39", + "id": 73034431, + "msg": "@stevelivingston voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T12:28:18", + "id": 73034430, + "msg": "@drag33 voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:30:00", + "id": 73034429, + "msg": "@htliao voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T06:16:00", + "id": 73034428, + "msg": "@sepracore voted on your post ($0.80)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T16:03:42", + "id": 73034427, + "msg": "@jarunik voted on your post ($0.90)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T04:16:45", + "id": 73034426, + "msg": "@preparedwombat voted on your post ($0.07)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T19:31:06", + "id": 73034425, + "msg": "@arsenal49 voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:32:18", + "id": 73034424, + "msg": "@diggndeeper.com voted on your post ($0.88)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T20:01:18", + "id": 73034423, + "msg": "@gric voted on your post ($0.05)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T14:02:51", + "id": 73034422, + "msg": "@teammo voted on your post ($0.15)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:51", + "id": 73034421, + "msg": "@nicewoody69 voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T07:13:51", + "id": 73034420, + "msg": "@denmarkguy voted on your post ($0.07)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:18", + "id": 73034419, + "msg": "@tarazkp voted on your post ($1.12)", + "score": 75, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T12:59:21", + "id": 73034418, + "msg": "@kotturinn voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:25:57", + "id": 73034417, + "msg": "@deadspace voted on your post ($0.02)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T04:15:42", + "id": 73034416, + "msg": "@v4vapid voted on your post ($2.61)", + "score": 75, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T19:05:54", + "id": 73034415, + "msg": "@judasp voted on your post ($0.33)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:35:39", + "id": 73034414, + "msg": "@created voted on your post ($5.52)", + "score": 75, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:24:00", + "id": 73034413, + "msg": "@techslut voted on your post ($0.10)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:39:45", + "id": 73034412, + "msg": "@t-bot voted on your post ($0.07)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:26:00", + "id": 73034411, + "msg": "@abh12345 voted on your post ($0.41)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:27:30", + "id": 73034410, + "msg": "@riseofth voted on your post ($0.32)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:29:30", + "id": 73034409, + "msg": "@daveks voted on your post ($0.21)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-18T00:21:42", + "id": 73034408, + "msg": "@runridefly voted on your post ($0.05)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:00", + "id": 73034407, + "msg": "@mattclarke voted on your post ($0.18)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T21:46:00", + "id": 73034406, + "msg": "@rubenalexander voted on your post ($0.10)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:26:33", + "id": 73034405, + "msg": "@borran voted on your post ($0.15)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T09:01:15", + "id": 73034404, + "msg": "@fingolfin voted on your post ($0.05)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:24:39", + "id": 73034403, + "msg": "@joele voted on your post ($2.17)", + "score": 75, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:24:24", + "id": 73034402, + "msg": "@jphamer1 voted on your post ($1.25)", + "score": 75, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T13:26:03", + "id": 73034401, + "msg": "@achim86 voted on your post ($0.09)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:38:21", + "id": 73034400, + "msg": "@timcliff voted on your post ($0.36)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T14:50:21", + "id": 73034399, + "msg": "@ace108 voted on your post ($0.06)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:09", + "id": 73034398, + "msg": "@arcange voted on your post ($0.04)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:36:18", + "id": 73034397, + "msg": "@herverisson voted on your post ($0.14)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:42:24", + "id": 73034396, + "msg": "@transisto voted on your post ($0.03)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T13:13:42", + "id": 73034395, + "msg": "@ssjsasha voted on your post ($0.31)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T10:22:48", + "id": 73034394, + "msg": "@vortac voted on your post ($1.96)", + "score": 75, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T10:54:09", + "id": 73034393, + "msg": "@ezzy voted on your post ($1.46)", + "score": 75, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:36:39", + "id": 73034392, + "msg": "@justtryme90 voted on your post ($0.17)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:30", + "id": 73034391, + "msg": "@kevinwong voted on your post ($2.23)", + "score": 75, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:39:42", + "id": 73034390, + "msg": "@nanzo-scoop voted on your post ($0.12)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:28:09", + "id": 73034389, + "msg": "@camilla voted on your post ($0.14)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T04:52:00", + "id": 73034388, + "msg": "@team voted on your post ($0.09)", + "score": 25, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T10:49:06", + "id": 73034387, + "msg": "@bue voted on your post ($0.28)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T04:10:45", + "id": 73034386, + "msg": "@steempty voted on your post ($3.54)", + "score": 75, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T04:10:54", + "id": 73034385, + "msg": "@fminerten voted on your post ($0.87)", + "score": 50, + "type": "vote", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:44:15", + "id": 73034384, + "msg": "@acidyo mentioned you", + "score": 70, + "type": "mention", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-18T04:12:18", + "id": 72807277, + "msg": "@roger5120 resteemed your post", + "score": 60, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-18T00:42:54", + "id": 72806914, + "msg": "@dtrade resteemed your post", + "score": 50, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T20:48:54", + "id": 72806364, + "msg": "@lichtblick resteemed your post", + "score": 60, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T20:05:21", + "id": 72806225, + "msg": "@traciyork resteemed your post", + "score": 50, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T15:39:39", + "id": 72805391, + "msg": "@yashny resteemed your post", + "score": 50, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T11:44:27", + "id": 72804762, + "msg": "@themanualbot resteemed your post", + "score": 50, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T10:53:12", + "id": 72804648, + "msg": "@angel33 resteemed your post", + "score": 40, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T05:50:09", + "id": 72803962, + "msg": "@sugandhaseth resteemed your post", + "score": 50, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T05:40:15", + "id": 72803939, + "msg": "@dwiazzahra resteemed your post", + "score": 40, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T04:48:27", + "id": 72803799, + "msg": "@dtrade resteemed your post", + "score": 50, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:47:33", + "id": 72803682, + "msg": "@in-macro resteemed your post", + "score": 50, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:24:21", + "id": 72803650, + "msg": "@acidyo pin @acidyo/announcing-askhive-community", + "score": 35, + "type": "pin_post", + "url": "@acidyo/announcing-askhive-community" + }, + { + "date": "2020-04-17T03:22:51", + "id": 72803644, + "msg": "@acidyo resteemed your post", + "score": 70, + "type": "reblog", + "url": "@acidyo/announcing-askhive-community" + } + ] + \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns_error/post_notifications_empty_params.pat.json b/hivemind/tavern/bridge_api_patterns_error/post_notifications_empty_params.pat.json new file mode 100644 index 00000000..99eb262c --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/post_notifications_empty_params.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "'author' parameter lacking default value", + "message": "Invalid parameters" +} \ No newline at end of file diff --git a/hivemind/tavern/bridge_api_patterns_error/post_notifications_only_account.pat.json b/hivemind/tavern/bridge_api_patterns_error/post_notifications_only_account.pat.json new file mode 100644 index 00000000..964d2e93 --- /dev/null +++ b/hivemind/tavern/bridge_api_patterns_error/post_notifications_only_account.pat.json @@ -0,0 +1,5 @@ +{ + "code": -32602, + "data": "'permlink' parameter lacking default value", + "message": "Invalid parameters" +} \ No newline at end of file diff --git a/hivemind/tavern/common.yaml b/hivemind/tavern/common.yaml index 0bfb0341..3eb628be 100644 --- a/hivemind/tavern/common.yaml +++ b/hivemind/tavern/common.yaml @@ -4,6 +4,6 @@ variables: service: - proto: http + proto: https server: "{tavern.env_vars.HIVEMIND_ADDRESS}" port: "{tavern.env_vars.HIVEMIND_PORT}" diff --git a/hivemind/tavern/common.yaml~ b/hivemind/tavern/common.yaml~ new file mode 100644 index 00000000..0bfb0341 --- /dev/null +++ b/hivemind/tavern/common.yaml~ @@ -0,0 +1,9 @@ +--- + name: Common test values + description: Common values for tests + + variables: + service: + proto: http + server: "{tavern.env_vars.HIVEMIND_ADDRESS}" + port: "{tavern.env_vars.HIVEMIND_PORT}" diff --git a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml index 69c88fcc..565f2fec 100644 --- a/hivemind/tavern/test_bridge_api_patterns.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns.tavern.yaml @@ -1,243 +1,8 @@ ---- - test_name: Hivemind bridge_api.get_post_header patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_post_header - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_post_header" - params: {"author":"steemit", "permlink":"firstpost"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_post_header" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_post_header gtg patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_post_header gtg - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_post_header" - params: {"author":"gtg", "permlink":"missing-rewards-while-mining"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_post_header_gtg" - directory: "bridge_api_patterns" - - - ---- - test_name: Hivemind bridge_api.get_discussion patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest - - failing - - xfail # gray - - includes: - - !include common.yaml - - stages: - - name: get_discussion - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_discussion" - params: {"author":"steemit", "permlink":"firstpost"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_discussion" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_discussion gtg patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_discussion - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_discussion" - params: {"author":"gtg", "permlink":"missing-rewards-while-mining"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_discussion_gtg" - directory: "bridge_api_patterns" ---- - test_name: Hivemind bridge_api.get_discussion non existing permlink patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest - - - includes: - - !include common.yaml - - stages: - - name: get_discussion - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_discussion" - params: {"author":"gtg", "permlink":"not_existing_permlink"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_discussion_not_existing_permlink" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_post patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_post - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_post" - params: {"author":"steemit", "permlink":"firstpost"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_post" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_post gtg patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_post - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_post" - params: {"author":"gtg", "permlink":"heavy-duty-witness-node-infrastructure"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_post_gtg" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_account_posts patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_account_posts - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_account_posts" - params: {"sort":"posts", "account":"steemit"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_account_posts" - directory: "bridge_api_patterns" +# get_relationship_between_accounts is_blacklisted and follows_blacklists should be implemented after switching to tests over 5 mln blocks. --- - test_name: Hivemind bridge_api.get_account_posts sort blog patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge + test_name: Hivemind bridge.post_notifications patterns test valid account and permlink # openapi marks: - patterntest @@ -245,36 +10,7 @@ - !include common.yaml stages: - - name: get_account_posts sort blog - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_account_posts" - params: {"sort":"blog", "account":"steemit"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_account_posts_sort_blog" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_account_posts sort feed patterns test - - marks: - - patterntest # should return posts, now its empty (hive3 hivemind) - - includes: - - !include common.yaml - - stages: - - name: get_account_posts sort feed + - name: bridge.post_notifications request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -283,85 +19,28 @@ json: jsonrpc: "2.0" id: 1 - method: "bridge.get_account_posts" - params: {"sort":"feed", "account":"steemit"} + method: "bridge.post_notifications" + params: {"author":"acidyo","permlink": "announcing-askhive-community"} response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_account_posts_sort_feed" + method: "post_notifications_account_permlink" directory: "bridge_api_patterns" --- - test_name: Hivemind bridge_api.get_account_posts sort comments patterns test - - marks: - - patterntest # should return posts, now its empty (hive3 hivemind) - - includes: - - !include common.yaml - - stages: - - name: get_account_posts sort comments - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_account_posts" - params: {"sort":"comments", "account":"steemit"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_account_posts_sort_comments" - directory: "bridge_api_patterns" + test_name: Hivemind bridge.post_notifications patterns test valid account, permlink and last_id # openapi ---- - test_name: Hivemind bridge_api.get_account_posts sort replies patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge marks: - patterntest + # show only votes (bc of last_it type - vote) includes: - !include common.yaml stages: - - name: get_account_posts sort replies - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_account_posts" - params: {"sort":"replies", "account":"steemit"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_account_posts_sort_replies" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_account_posts sort payout patterns test - - marks: - - patterntest # should return posts, now its empty (hive3 hivemind) - - includes: - - !include common.yaml - - stages: - - name: get_account_posts sort payout + - name: bridge.post_notifications request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -370,988 +49,12 @@ json: jsonrpc: "2.0" id: 1 - method: "bridge.get_account_posts" - params: {"sort":"payout", "account":"steemit"} + method: "bridge.post_notifications" + params: {"author":"acidyo", "permlink": "announcing-askhive-community", "last_id": "73034458"} response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_account_posts_sort_payout" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_ranked_posts patterns test - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_ranked_posts - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_ranked_posts" - params: {"sort":"trending","tag":"","observer":"steemit"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_ranked_posts" - directory: "bridge_api_patterns" - - - ---- - test_name: Hivemind bridge_api.get_ranked_posts hot patterns test - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_ranked_posts hot - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_ranked_posts" - params: {"sort":"hot","tag":"","observer":"alice"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_ranked_posts_hot" - directory: "bridge_api_patterns" ---- - test_name: Hivemind bridge_api.get_ranked_posts created patterns test - - marks: - - patterntest - - failing - - xfail # beneficiaries as dictionary - - includes: - - !include common.yaml - - stages: - - name: get_ranked_posts created - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_ranked_posts" - params: {"sort":"created","tag":"","observer":"alice"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_ranked_posts_created" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_ranked_posts promoted patterns test - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_ranked_posts promoted - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_ranked_posts" - params: {"sort":"promoted"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_ranked_posts_promoted" - directory: "bridge_api_patterns" ---- - test_name: Hivemind bridge_api.get_ranked_posts payout patterns test - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_ranked_posts payout - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_ranked_posts" - params: {"sort":"payout"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_ranked_posts_payout" - directory: "bridge_api_patterns" ---- - test_name: Hivemind bridge_api.get_ranked_posts payout_comments patterns test - - marks: - - patterntest - - failing - - xfail # gray - - includes: - - !include common.yaml - - stages: - - name: get_ranked_posts payout_comments - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_ranked_posts" - params: {"sort":"payout_comments"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_ranked_posts_payout_comments" - directory: "bridge_api_patterns" ---- - test_name: Hivemind bridge_api.get_ranked_posts muted patterns test - - marks: - - patterntest - - failing - - xfail # empty results caused by lack of is_grayed handling (same as gray elsewhere) - - includes: - - !include common.yaml - - stages: - - name: get_ranked_posts muted - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_ranked_posts" - params: {"sort":"muted"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_ranked_posts_muted" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_ranked_posts tag hive-123 patterns test - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_ranked_posts tag hive-123 - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_ranked_posts" - params: {"sort":"trending","tag":"hive-123"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_ranked_posts_tag_hive-123" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_ranked_posts tag petrodollar patterns test - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_ranked_posts tag petrodollar - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_ranked_posts" - params: {"sort":"trending","tag":"petrodollar","observer":"steemit"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_ranked_posts_tag_petrodollar" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_profile patterns test - #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_profile - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_profile" - params: {"account":"steemit"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_profile" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_profile gtg patterns test - #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest - - failing - - xfail # plenty of differences, as if the whole routine does not work at all - - includes: - - !include common.yaml - - stages: - - name: get_profile gtg - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_profile" - params: {"account":"gtg"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_profile_gtg" - directory: "bridge_api_patterns" - - - ---- - test_name: Hivemind bridge_api.get_trending_topics patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_trending_topics - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_trending_topics" - params: {} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_trending_topics" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_trending_topics patterns limit 2 test - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_trending_topics limit 2 - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_trending_topics" - params: {"limit": 2} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_trending_topics_limit_2" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.post_notifications patterns test - - marks: - - patterntest - - failing - - xfail # no results (underlying functionality is not working) - - includes: - - !include common.yaml - - stages: - - name: post_notifications - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.post_notifications" - params: {"author":"admin", "permlink":"firstpost", "min_score":15} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "post_notifications" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.account_notifications patterns test - - marks: - - patterntest - - failing - - xfail # no results (underlying functionality is not working) - - includes: - - !include common.yaml - - stages: - - name: account_notifications - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.account_notifications" - params: {"account":"steemit", "min_score": 15, "limit":20} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "account_notifications" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.unread_notifications patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest - - failing - - xfail # underlying mechanism seems to be nonfunctional (related hive_notifs table is empty but it shouldn't) - - includes: - - !include common.yaml - - stages: - - name: unread_notifications - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.unread_notifications" - params: {"account":"steemit", "min_score":15} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "unread_notifications" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_payout_stats patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_payout_stats - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_payout_stats" - params: [1.0] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_payout_stats" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.list_communities patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest # no nonempty result possible for 5mln set - - includes: - - !include common.yaml - - stages: - - name: list_communities - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_communities" - params: {"limit":1} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_communities" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.list_community_roles patterns test - - marks: - - patterntest # no nonempty result possible for 5mln set - - includes: - - !include common.yaml - - stages: - - name: list_community_roles - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_community_roles" - params: {"community":"hive-123456"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_community_roles" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.list_subscribers patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest # no nonempty result possible for 5mln set - - includes: - - !include common.yaml - - stages: - - name: list_subscribers - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_subscribers" - params: {"community":"hive-123456"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_subscribers" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.list_all_subscriptions patterns test - - marks: - - patterntest # no nonempty result possible for 5mln set - - includes: - - !include common.yaml - - stages: - - name: list_all_subscriptions - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_all_subscriptions" - params: {"account":"steemit"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_all_subscriptions" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.list_all_subscriptions patterns test - - marks: - - patterntest # same with params: {account: "steemit"} - # no nonempty result possible for 5mln set - includes: - - !include common.yaml - - stages: - - name: list_all_subscriptions - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_all_subscriptions" - params: ["steemit"] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_all_subscriptions" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.list_subscribers patterns test # not documented - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: list_subscribers - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_subscribers" - params: ["789"] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_all_subscriptions" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_payout_stats patterns test 10 - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_payout_stats - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_payout_stats" - params: [10] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_payout_stats_10" - directory: "bridge_api_patterns" - - ---- - test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - # no true from follow_blacklists and blacklisted for 5mln set - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_relationship_between_accounts - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_relationship_between_accounts" - params: {"account1": "chhaylin","account2": "cannabisclub"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_relationship_between_accounts" - directory: "bridge_api_patterns" ---- - test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - # no true from follow_blacklists and blacklisted for 5mln set - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_relationship_between_accounts - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_relationship_between_accounts" - params: {"account1": "jsc","account2": "max-keiser"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_relationship_between_accounts_true_state" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_relationship_between_accounts - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_relationship_between_accounts" - params: {"account1": "tinfoilfedora","account2": "tonyson"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_relationship_between_accounts_true_state_2" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - - name: get_relationship_between_accounts - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_relationship_between_accounts" - - params: {"account1": "tinfoilfedora","account2": "tonyson","observer": "tinfoilfedora"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_relationship_between_accounts_true_state_2" - directory: "bridge_api_patterns" - - ---- - test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_relationship_between_accounts - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_relationship_between_accounts" - params: {"account2": "tinfoilfedora","account1": "tonyson"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_relationship_between_accounts_change_accounts" - directory: "bridge_api_patterns" - - test_name: Hivemind bridge_api.get_profile patterns test - #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_profile - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_profile" - params: {"account":"468"} - response: - status_code: 200 - verify_response_with: - function: validate_response:null_result - - ---- - test_name: Hivemind bridge_api.get_trending_topics patterns over limit test - # not documented - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_trending_topics over limit - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_trending_topics" - params: {"limit": "-7"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_error_data - extra_kwargs: - data: "limit must be positive" - ---- - test_name: Hivemind bridge_api.get_relationship_between_accounts follows patterns test - - marks: - - patterntest # no nonempty result possible for 5mln set - - includes: - - !include common.yaml - - stages: - - name: get_relationship_between_accounts follows - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_relationship_between_accounts" - params: {"account1": "good-karma", "account2": "steemit"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_relationship_between_accounts_follows" - directory: "bridge_api_patterns" - ---- - test_name: Hivemind bridge_api.get_relationship_between_accounts ignores patterns test - - marks: - - patterntest # no nonempty result possible for 5mln set - - includes: - - !include common.yaml - - stages: - - name: get_relationship_between_accounts ignores - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_relationship_between_accounts" - params: {"account1": "tuck-fheman", "account2": "tonyson"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_relationship_between_accounts_ignores" - directory: "bridge_api_patterns" - -# get_relationship_between_accounts is_blacklisted and follows_blacklists should be implemented after switching to tests over 5 mln blocks. + method: "post_notifications_account_permlink_last_it_votes" + directory: "bridge_api_patterns" \ No newline at end of file diff --git a/hivemind/tavern/test_bridge_api_patterns_error.tavern.yaml b/hivemind/tavern/test_bridge_api_patterns_error.tavern.yaml index 31bde8c4..90099d1b 100644 --- a/hivemind/tavern/test_bridge_api_patterns_error.tavern.yaml +++ b/hivemind/tavern/test_bridge_api_patterns_error.tavern.yaml @@ -1,764 +1,8 @@ ---- - test_name: Hivemind bridge_api.get_post_header not existing permlink patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest # original gives no error, just no result - - includes: - - !include common.yaml - - stages: - - name: get_post_header gtg - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_post_header" - params: {"author":"gtg", "permlink":"not_existing_permlink"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_post_header_not_existing_permlink" - directory: "bridge_api_patterns_error" - error_response: true - ignore_tags: ["timestamp"] - ---- - test_name: Hivemind bridge_api.get_ranked_posts sort invalid patterns test - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_ranked_posts sort invalid - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_ranked_posts" - params: {"sort":"invalid_sort","tag":"","observer":"steemit"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_ranked_posts_invalid_sort" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.get_profile not existing patterns test - #not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest # original gives no error, just no result - - includes: - - !include common.yaml - - stages: - - name: get_profile gtg - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_profile" - params: {"account":"not.existing"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_profile_not_existing_account" - directory: "bridge_api_patterns_error" - error_response: true - ignore_tags: ["timestamp"] - ---- - test_name: Hivemind bridge_api.get_trending_topics patterns over limit test - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_trending_topics over limit - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_trending_topics" - params: {"limit": 26} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_trending_topics_over_limit" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.get_payout_stats over limit test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_payout_stats over limit - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_payout_stats" - params: {"limit": 251} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_payout_stats_over_limit" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.get_community patterns test - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - marks: - - patterntest # communities do not exist in first 5mln, so only error response is possible - - includes: - - !include common.yaml - - stages: - - name: get_community - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_community" - params: {"name":"hive-123456", "observer":"steemit"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_community" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.list_all_subscriptions patterns test wrong account - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: list_all_subscriptions - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_all_subscriptions" - params: {"account":"wyuh"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_all_subscriptions_wrong_account_error" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.list_all_subscriptions patterns test wrong account - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: list_all_subscriptions - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_all_subscriptions" - params: {"account":""} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_all_subscriptions_wrong_account_error_v2" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.list_all_subscriptions patterns test wrong account - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: list_all_subscriptions - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_all_subscriptions" - params: {"test":"gtg"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_all_subscriptions_wrong_account_error_v3" - directory: "bridge_api_patterns_error" - error_response: true - - ---- - test_name: Hivemind bridge_api.list_subscribers patterns test # not documented - marks: - - patterntest # no nonempty result possible for 5mln set - - includes: - - !include common.yaml - - stages: - - name: list_subscribers - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_subscribers" - params: [] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_subscribers_error" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.list_subscribers patterns test # not documented - # failed - tavern response: [] - - marks: - - patterntest - - xfail - - includes: - - !include common.yaml - - stages: - - name: list_subscribers - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_subscribers" - params: ['789'] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_subscribers_account_error" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.list_subscribers patterns test # not documented - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: list_subscribers - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_subscribers" - params: [789] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_subscribers_account_error_v2" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.get_payout_stats patterns test 10 - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_payout_stats - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_payout_stats" - params: [-1] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_payout_stats_error" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.get_payout_stats patterns test 10 - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_payout_stats - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_payout_stats" - params: ["10", ""] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_payout_stats_error_v2" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.get_payout_stats patterns test 10 - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_payout_stats - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_payout_stats" - params: [""] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_payout_stats_empty_error" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge.post_notifications patterns test - # author and permlink must be both to find post id - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: post_notifications - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.post_notifications" - params: ["steemit","", ""] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "post_notifications_author_error" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.post_notifications patterns test - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: post_notifications - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.post_notifications" - params: [""] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "post_notifications_empty_error" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.list_pop_communities patterns test # 8080 - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - # no nonempty result possible for 5mln set - - marks: - - patterntest - - - includes: - - !include common.yaml - - stages: - - name: list_pop_communities - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_pop_communities" - params: ["steemit"] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_pop_communities_error" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.list_pop_communities patterns test # 8080 023 - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: list_pop_communities - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_pop_communities" - params: [""] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_pop_communities_empty_error" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.list_pop_communities patterns test # 8080 - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: list_pop_communities - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_pop_communities" - params: ["", "1"] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_pop_communities_to_many_args_error" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.list_pop_communities patterns test # 8080 - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: list_pop_communities - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_pop_communities" - params: [77] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_pop_communities_limit_error" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.list_pop_communities patterns test # 8080 - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: list_pop_communities - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.list_pop_communities" - params: ["25"] - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "list_pop_communities_server_error" - directory: "bridge_api_patterns_error" - error_response: true ---- - test_name: Hivemind bridge_api.get_community_context patterns test # 8080 - # not documented on https://developers.hive.io/apidefinitions/#apidefinitions-bridge - # no communities for 5mln set - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_community_context - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_community_context" - params: {"account": "steemit","name": "Hive Gaming"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_community_context_community_error" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_relationship_between_accounts - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_relationship_between_accounts" - params: {"account1": "tinfoilfedora"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_relationship_between_accounts_error" - directory: "bridge_api_patterns_error" - error_response: true --- - test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_relationship_between_accounts - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_relationship_between_accounts" - params: {"account": "tinfoilfedora"} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_relationship_between_accounts_error_v2" - directory: "bridge_api_patterns_error" - error_response: true + test_name: Hivemind bridge.post_notifications patterns test no parames # openapi bc there is no notifs in 5mln set ---- - test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 - + # post_notifications(context, author, permlink, min_score=25, last_id=None, limit=100) last_id - notification id marks: - patterntest @@ -766,7 +10,7 @@ - !include common.yaml stages: - - name: get_relationship_between_accounts + - name: bridge.post_notifications request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -775,20 +19,19 @@ json: jsonrpc: "2.0" id: 1 - method: "bridge.get_relationship_between_accounts" - params: {"account1": "","account2": "",} + method: "bridge.post_notifications" + params: {} response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_relationship_between_accounts_error_v3" + method: "post_notifications_empty_params" directory: "bridge_api_patterns_error" error_response: true --- - test_name: Hivemind bridge_api.get_relationship_between_accounts patterns test # 8080 - + test_name: Hivemind bridge.post_notifications patterns test only account # openapi marks: - patterntest @@ -796,37 +39,7 @@ - !include common.yaml stages: - - name: get_relationship_between_accounts - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_relationship_between_accounts" - params: {"account1": "tinfoilfedora","account2": ""} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_relationship_between_accounts_error_v4" - directory: "bridge_api_patterns_error" - error_response: true - ---- - test_name: Hivemind bridge_api.get_profile patterns test - - marks: - - patterntest - - includes: - - !include common.yaml - - stages: - - name: get_profile + - name: bridge.post_notifications request: url: "{service.proto:s}://{service.server:s}:{service.port}/" method: POST @@ -835,43 +48,15 @@ json: jsonrpc: "2.0" id: 1 - method: "bridge.get_profile" - params: {"account":789} + method: "bridge.post_notifications" + params: {"author":"acidyo"} response: status_code: 200 verify_response_with: function: validate_response:compare_response_with_pattern extra_kwargs: - method: "get_profile_error" + method: "post_notifications_only_account" directory: "bridge_api_patterns_error" error_response: true ---- - test_name: Hivemind bridge_api.get_profile patterns test - - marks: - - patterntest - - includes: - - !include common.yaml - stages: - - name: get_profile - request: - url: "{service.proto:s}://{service.server:s}:{service.port}/" - method: POST - headers: - content-type: application/json - json: - jsonrpc: "2.0" - id: 1 - method: "bridge.get_profile" - params: {} - response: - status_code: 200 - verify_response_with: - function: validate_response:compare_response_with_pattern - extra_kwargs: - method: "get_profile_empty_error" - directory: "bridge_api_patterns_error" - error_response: true -- GitLab